diff options
author | Guilherme Amadio <amadio@gentoo.org> | 2022-09-19 14:19:20 +0200 |
---|---|---|
committer | Guilherme Amadio <amadio@gentoo.org> | 2022-09-19 14:38:16 +0200 |
commit | 7d5268668b1aa62ed26246c1c75996593ea44faa (patch) | |
tree | 0b2b07eefce5c9d4fd399db10e32c2ad9745e4b3 /net-libs | |
parent | www-apps/prowlarr: add 0.4.6.1969 (diff) | |
download | gentoo-7d5268668b1aa62ed26246c1c75996593ea44faa.tar.gz gentoo-7d5268668b1aa62ed26246c1c75996593ea44faa.tar.bz2 gentoo-7d5268668b1aa62ed26246c1c75996593ea44faa.zip |
net-libs/pacparser: drop 1.3.7-r1
Closes: https://bugs.gentoo.org/659726
Closes: https://bugs.gentoo.org/842120
Signed-off-by: Guilherme Amadio <amadio@gentoo.org>
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/pacparser/Manifest | 1 | ||||
-rw-r--r-- | net-libs/pacparser/pacparser-1.3.7-r1.ebuild | 67 |
2 files changed, 0 insertions, 68 deletions
diff --git a/net-libs/pacparser/Manifest b/net-libs/pacparser/Manifest index 72238f10a507..a74af7829e92 100644 --- a/net-libs/pacparser/Manifest +++ b/net-libs/pacparser/Manifest @@ -1,2 +1 @@ -DIST pacparser-1.3.7.tar.gz 905596 BLAKE2B 122127b6e1d8f68fde4c5ca98207bf2a0fa2a081dbb60aaf34126700a3de9d861e7b5f881e78d3eefdd2a9af97a9ba677339ca2b2a0b4459d26e60a62226e839 SHA512 979238204cd352ecf502a5a6216a35d7c47e82a173c32c6f0a5166f1fe790c66ac74ec1d9d0a58b54038d19e893f8b365ed868664f84ab9d5e653584bf20130b DIST pacparser-1.4.0.tar.gz 902919 BLAKE2B da29b34654764b1569d9d37648e4ccb608142becaf34c65cdf37b2bd81aa073b1945d840fb50aa7cb986687bbdc086c862a05bc421adb08d44e1add637b712ed SHA512 9574068dc4da3db27ddc1242cf98d98ebc7515864789e95b700cd2ce1433a7cff84160f1507976488fab7529839cabe9cf2aa16ddbefc0c83009fa6c0d2ad6b3 diff --git a/net-libs/pacparser/pacparser-1.3.7-r1.ebuild b/net-libs/pacparser/pacparser-1.3.7-r1.ebuild deleted file mode 100644 index 911a5d5ce27f..000000000000 --- a/net-libs/pacparser/pacparser-1.3.7-r1.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7,8,9} ) - -inherit python-r1 toolchain-funcs - -DESCRIPTION="Library to parse proxy auto-config files" -HOMEPAGE="http://pacparser.manugarg.com/" -SRC_URI="https://github.com/pacparser/${PN}/releases/download/${PV}/${P}.tar.gz" - -LICENSE="LGPL-3" -SLOT="0/1" -KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux" -IUSE="doc python" - -DEPEND="python? ( ${PYTHON_DEPS} )" -RDEPEND="${DEPEND}" -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" - -# spidermonkey-1.7.0 is bundled -# tested unbundling with spidermonkey-1.8* and 1.7 -# and got many failures: unbundling not worth it. - -src_prepare() { - default - sed -e 's|CFLAGS = |CFLAGS := $(CFLAGS) |' \ - -e 's|= $(PREFIX)|:= $(PREFIX)|g' \ - -e "s|share/doc.*pacparser|share/doc/${PF}|g" \ - -e "s|/lib|/$(get_libdir)|g" \ - -i src/Makefile || die - export NO_INTERNET=yes - tc-export CC AR RANLIB -} - -src_compile() { - emake -C src spidermonkey/js/src - sed -e '/CC = gcc/d' \ - -i src/spidermonkey/js/src/config/Linux_All.mk || die - # Upstream parallel compilation bug, do that first to work around - emake -C src/spidermonkey - emake -C src - use python && python_foreach_impl emake -C src pymod -} - -src_test() { - emake -C src testpactester -} - -src_install() { - emake DESTDIR="${ED}" LIB_PREFIX="${ED}/usr/$(get_libdir)" -C src install - dodoc README.md - - if use python; then - python_foreach_impl emake DESTDIR="${D}" \ - LIB_PREFIX="${D}/usr/$(get_libdir)" -C src install-pymod - python_foreach_impl python_optimize - fi - - if use doc; then - docompress -x /usr/share/doc/${PF}/{html,examples} - else - rm -r "${ED}"/usr/share/doc/${PF}/{html,examples} || die - fi -} |