commit: a07b5870e80a8f7332b16ba6969c109263d61752 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Sat Jan 18 23:38:09 2025 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sat Jan 18 23:38:09 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a07b5870
sys-apps/bfs: drop 3.3.1, 4.0.1, 4.0.2, 4.0.3 Signed-off-by: Sam James <sam <AT> gentoo.org> sys-apps/bfs/Manifest | 4 --- sys-apps/bfs/bfs-3.3.1.ebuild | 57 ----------------------------------------- sys-apps/bfs/bfs-4.0.1.ebuild | 57 ----------------------------------------- sys-apps/bfs/bfs-4.0.2.ebuild | 59 ------------------------------------------- sys-apps/bfs/bfs-4.0.3.ebuild | 59 ------------------------------------------- 5 files changed, 236 deletions(-) diff --git a/sys-apps/bfs/Manifest b/sys-apps/bfs/Manifest index cee154e22909..12fd1e198df4 100644 --- a/sys-apps/bfs/Manifest +++ b/sys-apps/bfs/Manifest @@ -1,6 +1,2 @@ -DIST bfs-3.3.1.tar.gz 262841 BLAKE2B bc848f4daa98172531e6c13100dcd1f3b722f4282acc5fd3677b2c4a83effa49e681d0cac3fa2c104fd1db03543c4f0a6ca9bc494ee3737d0c927f0170171eac SHA512 e31153ef244483e4337bd2bb64fc4ddf55d56048b5af54003a917287868114c81befb771b6cfc7473e384d3157b24cbec7ca27336362a438c7803eb7fc85d8d3 -DIST bfs-4.0.1.tar.gz 272678 BLAKE2B c25165b469ea52ef2e0b73ae0cbcef485a739d25cd3c49d25cd0543ab97009b256637d0dab5cb1ce01c3da7ab77519ac6a5b9cff36634c81415ec309d46c7d1d SHA512 0697aab71e2101638fbb5923ec57b9439d6fdd212dccd2f1b90cd4a1bc9c72acca5dca92e9aa6efef06696b324cb6754784602064f35b529ff97d1933672d73c -DIST bfs-4.0.2.tar.gz 274986 BLAKE2B d87dd646a0c6bced3881426f8a82501e9a8ab19b0d4a249fd44d774cac9fd37a7a0cb01551a2af343b4f0c64f7b9e926cee8db67f5217bd39dd469a85b0b434e SHA512 a3ce3ccee27576a4a0ffb2bd46635aaabc5718cbe53eef5da52bc510dcf629a613802d0b2f95da47d009873e6ab1b87eb84087b30c227b27676bb14cac9f6e97 -DIST bfs-4.0.3.tar.gz 277809 BLAKE2B c275e65ed6265dab81a10c70fd4012c0140aca0083a903535bb5a1ec7d9bcfb0637addf051430b7e370109d4ac843d7f6d3d4976cd469033d903ade3b5713c30 SHA512 444fa5a012f3b3222794f295f818358897f38c081714b593daeccddf2bb821884df8f9a6eaf3b0426ed7fe83483e31417abc9d97c34019b2e28e948654a5c304 DIST bfs-4.0.4.tar.gz 278447 BLAKE2B 47a82b0e96d18891815799bd2878266368d3582aeb3aa0b1df9fa79b1eed9125a64dfe061d6f11f9a6265b47c2f3c9d38e21b2d82c7e7f1f9fb313b61d1478f8 SHA512 b372e68fc13624cd410edb64a0429fbb1dac2d01417c78821570b3b1d0e4f6d239d93acffcb5c077f84409edb013c9fec0b2bed50646ed52d62df90d6b1893fb DIST bfs-4.0.5.tar.gz 286765 BLAKE2B 9dbcc11a218c0504c2235c23a367a1694e7c8d4739ec92b5acb88a6046698468711ef4257c39495ee92c0a44ad95190f1a2ffd39952b5f4cfed7704053ef1718 SHA512 bc72d81da1b014e7dd9ee792b1b34b6d74aa87d9c3c0a54f1b0e72845a45f36a1ac83bd130634f05c93b440dd9e543892d4ee82bf2d1447879e40a78eb5ec187 diff --git a/sys-apps/bfs/bfs-3.3.1.ebuild b/sys-apps/bfs/bfs-3.3.1.ebuild deleted file mode 100644 index 265ded51c383..000000000000 --- a/sys-apps/bfs/bfs-3.3.1.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit edo flag-o-matic toolchain-funcs - -DESCRIPTION="Breadth-first version of the UNIX find command" -HOMEPAGE="https://tavianator.com/projects/bfs.html" -SRC_URI="https://github.com/tavianator/bfs/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="0BSD" -SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc" -IUSE="acl caps debug io-uring selinux unicode" - -DEPEND=" - acl? ( virtual/acl ) - caps? ( sys-libs/libcap ) - io-uring? ( sys-libs/liburing:= ) - selinux? ( sys-libs/libselinux ) - unicode? ( dev-libs/oniguruma:= ) -" -RDEPEND="${DEPEND}" - -QA_CONFIG_IMPL_DECL_SKIP=( - # Not available on Linux - acl_is_trivial_np acl_trivial fdclosedir getdents getprogname - posix_spawn_file_actions_addfchdir getmntinfo posix_getdents strtofflags -) - -src_configure() { - tc-export CC PKG_CONFIG - use debug || append-cppflags -DNDEBUG - - edo ./configure \ - $(use_with acl libacl) \ - $(use_with caps libcap) \ - $(use_with selinux libselinux) \ - $(use_with io-uring liburing) \ - $(use_with unicode oniguruma) \ - V=1 -} - -src_compile() { - emake V=1 -} - -src_test() { - # -n check gets confused so need manual src_test definition? - emake V=1 check -} - -src_install() { - emake V=1 DESTDIR="${D}" install - einstalldocs -} diff --git a/sys-apps/bfs/bfs-4.0.1.ebuild b/sys-apps/bfs/bfs-4.0.1.ebuild deleted file mode 100644 index 265ded51c383..000000000000 --- a/sys-apps/bfs/bfs-4.0.1.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit edo flag-o-matic toolchain-funcs - -DESCRIPTION="Breadth-first version of the UNIX find command" -HOMEPAGE="https://tavianator.com/projects/bfs.html" -SRC_URI="https://github.com/tavianator/bfs/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="0BSD" -SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc" -IUSE="acl caps debug io-uring selinux unicode" - -DEPEND=" - acl? ( virtual/acl ) - caps? ( sys-libs/libcap ) - io-uring? ( sys-libs/liburing:= ) - selinux? ( sys-libs/libselinux ) - unicode? ( dev-libs/oniguruma:= ) -" -RDEPEND="${DEPEND}" - -QA_CONFIG_IMPL_DECL_SKIP=( - # Not available on Linux - acl_is_trivial_np acl_trivial fdclosedir getdents getprogname - posix_spawn_file_actions_addfchdir getmntinfo posix_getdents strtofflags -) - -src_configure() { - tc-export CC PKG_CONFIG - use debug || append-cppflags -DNDEBUG - - edo ./configure \ - $(use_with acl libacl) \ - $(use_with caps libcap) \ - $(use_with selinux libselinux) \ - $(use_with io-uring liburing) \ - $(use_with unicode oniguruma) \ - V=1 -} - -src_compile() { - emake V=1 -} - -src_test() { - # -n check gets confused so need manual src_test definition? - emake V=1 check -} - -src_install() { - emake V=1 DESTDIR="${D}" install - einstalldocs -} diff --git a/sys-apps/bfs/bfs-4.0.2.ebuild b/sys-apps/bfs/bfs-4.0.2.ebuild deleted file mode 100644 index f98d49a5b7c4..000000000000 --- a/sys-apps/bfs/bfs-4.0.2.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit edo flag-o-matic toolchain-funcs - -DESCRIPTION="Breadth-first version of the UNIX find command" -HOMEPAGE="https://tavianator.com/projects/bfs.html" -SRC_URI="https://github.com/tavianator/bfs/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="0BSD" -SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc" -IUSE="acl caps debug io-uring selinux unicode" - -DEPEND=" - acl? ( virtual/acl ) - caps? ( sys-libs/libcap ) - io-uring? ( sys-libs/liburing:= ) - selinux? ( sys-libs/libselinux ) - unicode? ( dev-libs/oniguruma:= ) -" -RDEPEND="${DEPEND}" - -QA_CONFIG_IMPL_DECL_SKIP=( - # Not available on Linux - acl_is_trivial_np acl_trivial fdclosedir getdents getprogname - posix_spawn_file_actions_addfchdir getmntinfo posix_getdents strtofflags - # Seems to be in POSIX 2024 but not yet in ncurses? - tcgetwinsize -) - -src_configure() { - tc-export CC PKG_CONFIG - use debug || append-cppflags -DNDEBUG - - edo ./configure \ - $(use_with acl libacl) \ - $(use_with caps libcap) \ - $(use_with selinux libselinux) \ - $(use_with io-uring liburing) \ - $(use_with unicode oniguruma) \ - V=1 -} - -src_compile() { - emake V=1 -} - -src_test() { - # -n check gets confused so need manual src_test definition? - emake V=1 check -} - -src_install() { - emake V=1 DESTDIR="${D}" install - einstalldocs -} diff --git a/sys-apps/bfs/bfs-4.0.3.ebuild b/sys-apps/bfs/bfs-4.0.3.ebuild deleted file mode 100644 index f98d49a5b7c4..000000000000 --- a/sys-apps/bfs/bfs-4.0.3.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit edo flag-o-matic toolchain-funcs - -DESCRIPTION="Breadth-first version of the UNIX find command" -HOMEPAGE="https://tavianator.com/projects/bfs.html" -SRC_URI="https://github.com/tavianator/bfs/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="0BSD" -SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc" -IUSE="acl caps debug io-uring selinux unicode" - -DEPEND=" - acl? ( virtual/acl ) - caps? ( sys-libs/libcap ) - io-uring? ( sys-libs/liburing:= ) - selinux? ( sys-libs/libselinux ) - unicode? ( dev-libs/oniguruma:= ) -" -RDEPEND="${DEPEND}" - -QA_CONFIG_IMPL_DECL_SKIP=( - # Not available on Linux - acl_is_trivial_np acl_trivial fdclosedir getdents getprogname - posix_spawn_file_actions_addfchdir getmntinfo posix_getdents strtofflags - # Seems to be in POSIX 2024 but not yet in ncurses? - tcgetwinsize -) - -src_configure() { - tc-export CC PKG_CONFIG - use debug || append-cppflags -DNDEBUG - - edo ./configure \ - $(use_with acl libacl) \ - $(use_with caps libcap) \ - $(use_with selinux libselinux) \ - $(use_with io-uring liburing) \ - $(use_with unicode oniguruma) \ - V=1 -} - -src_compile() { - emake V=1 -} - -src_test() { - # -n check gets confused so need manual src_test definition? - emake V=1 check -} - -src_install() { - emake V=1 DESTDIR="${D}" install - einstalldocs -}
