From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 660051382C5 for ; Mon, 8 Jun 2020 13:41:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 63FEEE090A; Mon, 8 Jun 2020 13:41:48 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4DEC4E090A for ; Mon, 8 Jun 2020 13:41:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3646034F34A for ; Mon, 8 Jun 2020 13:41:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9C83F2A0 for ; Mon, 8 Jun 2020 13:41:43 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1591623687.6018bb93cc024c25626ba0fa86bd9521ec5a4ef2.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/pacparser/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/pacparser/pacparser-1.3.7.ebuild X-VCS-Directories: net-libs/pacparser/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 6018bb93cc024c25626ba0fa86bd9521ec5a4ef2 X-VCS-Branch: master Date: Mon, 8 Jun 2020 13:41:43 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a1dbabd1-0279-402e-8952-b606922410fe X-Archives-Hash: 1bc83d86dd70ef19c0f626cba3d7dcfe commit: 6018bb93cc024c25626ba0fa86bd9521ec5a4ef2 Author: Joonas Niilola gentoo org> AuthorDate: Mon Jun 8 13:32:38 2020 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Mon Jun 8 13:41:27 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6018bb93 net-libs/pacparser: remove old 1.3.7 Signed-off-by: Joonas Niilola gentoo.org> net-libs/pacparser/pacparser-1.3.7.ebuild | 61 ------------------------------- 1 file changed, 61 deletions(-) diff --git a/net-libs/pacparser/pacparser-1.3.7.ebuild b/net-libs/pacparser/pacparser-1.3.7.ebuild deleted file mode 100644 index f3f2162bb12..00000000000 --- a/net-libs/pacparser/pacparser-1.3.7.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python3_6 ) - -inherit eutils 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. - -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 - emake -j1 -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 - use python && python_foreach_impl \ - emake DESTDIR="${D}" \ - LIB_PREFIX="${D}/usr/$(get_libdir)" -C src install-pymod - if use doc; then - docompress -x /usr/share/doc/${PF}/{html,examples} - else - rm -r "${ED}"/usr/share/doc/${PF}/{html,examples} || die - fi -}