summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2022-06-24 02:54:31 +0100
committerSam James <sam@gentoo.org>2022-06-24 04:13:48 +0100
commit224ff5c0a1644a08dd906a3dae8ce7ad0ab47c5b (patch)
treefcc59c8b37f0ea5ef602281e5f5b5eb2b9e7ef72
parentapp-admin/selint: fix build on musl (diff)
downloadgentoo-224ff5c0.tar.gz
gentoo-224ff5c0.tar.bz2
gentoo-224ff5c0.zip
app-admin/selint: drop 1.1.0
Bug: https://bugs.gentoo.org/828696 Signed-off-by: Sam James <sam@gentoo.org>
-rw-r--r--app-admin/selint/Manifest1
-rw-r--r--app-admin/selint/selint-1.1.0.ebuild39
2 files changed, 0 insertions, 40 deletions
diff --git a/app-admin/selint/Manifest b/app-admin/selint/Manifest
index 3631c040e7a5..fc9ed12aa925 100644
--- a/app-admin/selint/Manifest
+++ b/app-admin/selint/Manifest
@@ -1,3 +1,2 @@
-DIST selint-1.1.0.tar.gz 283926 BLAKE2B 0908f8830ce4b569c54e8c025dd92c39af59172fee0b8061f5b8cdaf61222979a78c3726a5647af9161ce7e4a7ddd5bee64772afecd2024368afa76294b3d317 SHA512 3af358e0f42a285a0360ce2b4db9014ef1e4f0b792623007f88cf510799080975d9e44817e8911bbd32b141704a7fd11e1b4d8f91e124d0fa91c38f71a978c91
DIST selint-1.2.0.tar.gz 306527 BLAKE2B 842d796d3beea327ac937b977123a9248f317f0ab88e8187ff5ef7b7da2efd9b6c4bccda2dc1fd4661691904f90f346df0120f9398733e62942e70bef5c3c5ab SHA512 e289cb0a25454b1fd5f5435e11f3d956e6c545bbbbe79b7a47d40681746d8eb66bb78bdb541f2629a4f23435853568a8e52d10e6f8dde8e8ddb03f4493ea7504
DIST selint-1.2.1.tar.gz 307680 BLAKE2B 792ab2f79bc449faa6f94c13ce86f805ef36ebd11873019b36ae5f3d7450017d699d046771fc8359442d8aa24b096e1767e78054b8b2173cab6ac9bf0bb30cad SHA512 2b790cb41cab7dddb34dc9b9365641ae94c22356e3e85b5319ec23090cba633ce09e05a9b97eaba8617208057971f8fbdc8bd360b32a1f7ad0178c11c8711888
diff --git a/app-admin/selint/selint-1.1.0.ebuild b/app-admin/selint/selint-1.1.0.ebuild
deleted file mode 100644
index dadbf3ec6cb9..000000000000
--- a/app-admin/selint/selint-1.1.0.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-inherit toolchain-funcs
-
-DESCRIPTION="Policy Analysis Tools for SELinux"
-HOMEPAGE="https://github.com/TresysTechnology/selint/wiki"
-
-if [[ ${PV} == 9999 ]] ; then
- inherit autotools git-r3
- EGIT_REPO_URI="https://github.com/TresysTechnology/selint.git"
-else
- SRC_URI="https://github.com/TresysTechnology/selint/releases/download/v${PV}/${P}.tar.gz"
- KEYWORDS="amd64 ~arm x86"
-fi
-
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- dev-libs/confuse:=
- dev-libs/uthash"
-
-DEPEND="${RDEPEND}
- test? ( dev-libs/check )"
-
-src_prepare() {
- [[ ${PV} == 9999 ]] && eautoreconf
-
- eapply_user
-}
-
-src_configure() {
- econf $(use_with test check)
-}