diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2022-08-28 17:05:22 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2022-08-29 21:43:39 +0200 |
commit | 45761fc435bc86572659144f86f335dbc5b4688c (patch) | |
tree | c6d114418f3c3bdffd2d8e5bcd227660b1cb8d43 /dev-libs/tre | |
parent | app-misc/wcd: drop 6.0.2-r1, 6.0.3-r1, EAPI-6-- (diff) | |
download | gentoo-45761fc435bc86572659144f86f335dbc5b4688c.tar.gz gentoo-45761fc435bc86572659144f86f335dbc5b4688c.tar.bz2 gentoo-45761fc435bc86572659144f86f335dbc5b4688c.zip |
dev-libs/tre: drop 0.8.0-r2, 0.8.0_p20210321, EAPI-6--
Closes: https://bugs.gentoo.org/851972
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'dev-libs/tre')
-rw-r--r-- | dev-libs/tre/Manifest | 1 | ||||
-rw-r--r-- | dev-libs/tre/tre-0.8.0-r2.ebuild | 67 | ||||
-rw-r--r-- | dev-libs/tre/tre-0.8.0_p20210321.ebuild | 112 |
3 files changed, 0 insertions, 180 deletions
diff --git a/dev-libs/tre/Manifest b/dev-libs/tre/Manifest index 92f10ffb9446..8a3e6468e4cc 100644 --- a/dev-libs/tre/Manifest +++ b/dev-libs/tre/Manifest @@ -1,2 +1 @@ -DIST tre-0.8.0.tar.bz2 380714 BLAKE2B b2af6e805e9e19fd69debf2f881ddfb591317f69db4e29a04e1899eb69100b8ac7744f86fa438530509ca2ee8aa1d346d416c6391f13247cd9398f4c59c2ed85 SHA512 db7465993e0d25eee8e52f974427b8a040234cf0f017769eb94ee88bc6261821336aad7f762bfa82db7e2212d8449bc221592586f061c528a59a550773cbc263 DIST tre-0.8.0_p20210321.tar.gz 146294 BLAKE2B d740bd0e99f50f5e4d8105f5260e43a81b6af9857a21e386e437ab8d48a9e0de23eae03e96cf6b9f4d2d37f72d0fa73ef7343086271ea80f166bdba3f04475a9 SHA512 950c81f681970fc737cfdd6815445f05a018fc742b964cea3ce19f0249c677dd715ece4ff8e543fa9f3fd23b503eafa00aea00dbae063af9bc7e08dc1bc33aed diff --git a/dev-libs/tre/tre-0.8.0-r2.ebuild b/dev-libs/tre/tre-0.8.0-r2.ebuild deleted file mode 100644 index 4558fd3f46e8..000000000000 --- a/dev-libs/tre/tre-0.8.0-r2.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit multilib - -DESCRIPTION="Lightweight, robust, and efficient POSIX compliant regexp matching library" -HOMEPAGE="https://laurikari.net/tre/ https://github.com/laurikari/tre/" -SRC_URI="https://laurikari.net/tre/${P}.tar.bz2" - -LICENSE="BSD-2" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~x86-solaris" -IUSE="nls static-libs" - -RDEPEND=" - !app-text/agrep - !dev-ruby/amatch - !app-misc/glimpse" - -DEPEND=" - ${RDEPEND} - virtual/pkgconfig - nls? ( sys-devel/gettext )" - -PATCHES=( - "${FILESDIR}/${PV}-pkgcfg.patch" - "${FILESDIR}/${PV}-CVE-2016-8559.patch" -) - -src_prepare() { - default -} - -src_configure() { - econf \ - --enable-agrep \ - --enable-system-abi \ - $(use_enable nls) \ - $(use_enable static-libs static) -} - -src_test() { - if locale -a | grep -iq en_US.iso88591; then - emake -j1 check - else - ewarn "If you like to run the test," - ewarn "please make sure en_US.ISO-8859-1 is installed." - die "en_US.ISO-8859-1 locale is missing" - fi -} - -src_install() { - local HTML_DOCS=( doc/*.{css,html} ) - - default - - # 626480 - mv "${ED%/}"/usr/bin/agrep{,-tre}$(get_exeext) || die -} - -pkg_postinst() { - ewarn "app-misc/glimpse, app-text/agrep and this package all provide agrep." - ewarn "If this causes any unforeseen incompatibilities please file a bug" - ewarn "on https://bugs.gentoo.org." -} diff --git a/dev-libs/tre/tre-0.8.0_p20210321.ebuild b/dev-libs/tre/tre-0.8.0_p20210321.ebuild deleted file mode 100644 index f45acf24a58f..000000000000 --- a/dev-libs/tre/tre-0.8.0_p20210321.ebuild +++ /dev/null @@ -1,112 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -COMMIT="6092368aabdd0dbb0fbceb2766a37b98e0ff6911" -PYTHON_COMPAT=( python3_{8..10} pypy3 ) - -inherit autotools distutils-r1 - -DESCRIPTION="Lightweight, robust, and efficient POSIX compliant regexp matching library" -HOMEPAGE=" - https://laurikari.net/tre/ - https://github.com/laurikari/tre -" -SRC_URI="https://github.com/laurikari/tre/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" -S="${WORKDIR}/${PN}-${COMMIT}" - -LICENSE="BSD-2" -SLOT="0" -KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~x86-solaris" -IUSE="+agrep +alloca +approx debug nls profile python" - -RDEPEND=" - agrep? ( - !app-text/agrep - !dev-ruby/amatch - !app-misc/glimpse - ) - python? ( ${PYTHON_DEPS} ) -" -DEPEND=" - ${RDEPEND} - nls? ( sys-devel/gettext ) -" -BDEPEND="virtual/pkgconfig" - -REQUIRED_USE=" - agrep? ( approx ) - python? ( ${PYTHON_REQUIRED_USE} ) -" - -PATCHES=( - "${FILESDIR}/0.8.0-pkgcfg.patch" - "${FILESDIR}/0.8.0-CVE-2016-8559.patch" - "${FILESDIR}/${PN}-chicken.patch" - "${FILESDIR}/${PN}-issue37.patch" - "${FILESDIR}/${PN}-issue50.patch" - "${FILESDIR}/${PN}-issue55-part1.patch" - "${FILESDIR}/${PN}-issue55-part2.patch" - "${FILESDIR}/${PN}-python3.patch" - "${FILESDIR}/${PN}-tests.patch" -) - -src_prepare() { - default - eautoreconf -} - -src_configure() { - local myconf=( - --disable-static - --disable-system-abi - --enable-multibyte - --enable-wchar - $(use_enable agrep) - $(use_enable approx) - $(use_enable debug) - $(use_enable nls) - $(use_enable profile) - $(use_with alloca) - ) - econf "${myconf[@]}" -} - -src_test() { - if locale -a | grep -iq en_US.iso88591; then - emake -j1 check - else - ewarn "If you like to run the test," - ewarn "please make sure en_US.ISO-8859-1 is installed." - die "en_US.ISO-8859-1 locale is missing" - fi -} - -src_compile() { - default - if use python; then - pushd "python" || die - python_foreach_impl distutils-r1_python_compile - popd || die - fi -} - -src_install() { - local HTML_DOCS=( doc/*.{css,html} ) - - default - use python && python_foreach_impl python_install -} - -pkg_postinst() { - ewarn "app-misc/glimpse, app-text/agrep and this package all provide agrep." - ewarn "If this causes any unforeseen incompatibilities please file a bug" - ewarn "on https://bugs.gentoo.org." -} - -python_install() { - pushd "python" || die - distutils-r1_python_install - popd || die -} |