From 0f558761aa2dee1017b4751e4017205e015a9560 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Wed, 29 Jun 2022 12:04:12 +0100 Subject: gentoo resync : 29.12.2022 --- dev-util/rats/Manifest | 2 +- dev-util/rats/rats-2.4-r1.ebuild | 41 ++++++++++++++++++++++++++++++++++++++++ dev-util/rats/rats-2.4.ebuild | 40 --------------------------------------- 3 files changed, 42 insertions(+), 41 deletions(-) create mode 100644 dev-util/rats/rats-2.4-r1.ebuild delete mode 100644 dev-util/rats/rats-2.4.ebuild (limited to 'dev-util/rats') diff --git a/dev-util/rats/Manifest b/dev-util/rats/Manifest index 9a6a2942c790..1ea9cc901406 100644 --- a/dev-util/rats/Manifest +++ b/dev-util/rats/Manifest @@ -1,4 +1,4 @@ AUX rats-2.4-fix-build-system.patch 1131 BLAKE2B a9890ebe1af624e2ede486da6ede63318a7de2775028df5d37f004b575e35890cd833cfc1211196b4cc772b3fff13b6b0f76e0dd0558b781b1e54b96a9a2af4e SHA512 d56accaedbb5b0fa5961c79ee19510ddd36428d3a96b6066ffd304a3167df5cd510041f3eeee9aabfe66b71a29090a9199125d14ae6be6443b5e490e2cdeaf07 DIST rats-2.4.tgz 393114 BLAKE2B 73dfefc42cd99420edba9ac28d56b51e058b144d9deaf9f1e322e7fe4331e16d05cff049efccd344723fe1634c3691f911dd71001671058c5912f84cfdc0bdbb SHA512 f402717fc935a2f9c2464e1623807575044258fd998cabc8f115c063141004b5978bad739021f109cbbd1abd84231155eb59671ae202aefb40e1fd6733d8ac6d -EBUILD rats-2.4.ebuild 1116 BLAKE2B 280012112245d7384056b91fb439f2d9aa545e9864e11721559b4199092fd37924bea3717eb36403e7a89ad2381a929d4c4fb1f5310cb1a779c36f74eb774560 SHA512 8b0765fc1514dc9ad1297f240cb9993ba8add606463788e95a3bb4d41a0b10b4779c70b93ee2c329f8b073adbda915b0855009c0c7712c223dab21e63a7e2cd8 +EBUILD rats-2.4-r1.ebuild 1154 BLAKE2B 1510929a583786215cfbcd1905e4944cb07b86e4d34aa429b7680de5731baaece91f4999d090d357ddfe0640e44c6e21ef76760bfdaee2c99b8979f6945f6730 SHA512 38493b4ff10a2d22a3d4bbded72945972180ec9c83c473d5a6782c8de144007d08c3270a9cbd040189bd56d5fa91983788bc7a166d425924238695c3d2eed022 MISC metadata.xml 605 BLAKE2B ea96e9eb1c3825686cb489932999757ea528884683ffcf7e32980ec8f7dd6d46a68572c3338e4a65faafee03cd7722c243e3a598c8fb118cdbbb38b3a42898bc SHA512 aa5d794e47ca793b3aada256539a0a03a049bac639531d0e42e5bfb27801b4a73a95efa6e62b342229ed192010097f6d12f3b1393485b1a527c067f0ca4db8c8 diff --git a/dev-util/rats/rats-2.4-r1.ebuild b/dev-util/rats/rats-2.4-r1.ebuild new file mode 100644 index 000000000000..d252d30fb296 --- /dev/null +++ b/dev-util/rats/rats-2.4-r1.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit edos2unix + +DESCRIPTION="RATS - Rough Auditing Tool for Security" +HOMEPAGE="https://github.com/andrew-d/rough-auditing-tool-for-security" +# No tags available in the GitHub port +SRC_URI="https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/rough-auditing-tool-for-security/${P}.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 ~ppc ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos" +IUSE="" + +RDEPEND="dev-libs/expat:=" +DEPEND="${RDEPEND}" + +PATCHES=( "${FILESDIR}"/${PN}-2.4-fix-build-system.patch ) + +src_prepare() { + default + + local f + while IFS="" read -d $'\0' -r f; do + einfo "Converting ${f} from CRLF to LF" + edos2unix "${f}" + done < <(find \( -name '*.[chl]' -o -name '*.in' -o -name '*.am' \) -print0) +} + +src_configure() { + econf --datadir="${EPREFIX}/usr/share/${PN}/" +} + +pkg_postinst() { + ewarn "Please be careful when using this program with it's force language" + ewarn "option, '--language ' it may take huge amounts of memory when" + ewarn "it tries to treat binary files as some other type." +} diff --git a/dev-util/rats/rats-2.4.ebuild b/dev-util/rats/rats-2.4.ebuild deleted file mode 100644 index 7f63c3779f30..000000000000 --- a/dev-util/rats/rats-2.4.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit edos2unix - -DESCRIPTION="RATS - Rough Auditing Tool for Security" -HOMEPAGE="https://code.google.com/p/rough-auditing-tool-for-security/" -SRC_URI="https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/rough-auditing-tool-for-security/${P}.tgz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos" -IUSE="" - -RDEPEND="dev-libs/expat:=" -DEPEND="${RDEPEND}" - -PATCHES=( "${FILESDIR}"/${PN}-2.4-fix-build-system.patch ) - -src_prepare() { - default - - local f - while IFS="" read -d $'\0' -r f; do - einfo "Converting ${f} from CRLF to LF" - edos2unix "${f}" - done < <(find \( -name '*.[chl]' -o -name '*.in' -o -name '*.am' \) -print0) -} - -src_configure() { - econf --datadir="${EPREFIX}/usr/share/${PN}/" -} - -pkg_postinst() { - ewarn "Please be careful when using this program with it's force language" - ewarn "option, '--language ' it may take huge amounts of memory when" - ewarn "it tries to treat binary files as some other type." -} -- cgit v1.2.3