public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Guilherme Amadio" <amadio@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/pacparser/
Date: Wed,  3 Jul 2024 09:20:42 +0000 (UTC)	[thread overview]
Message-ID: <1719998430.0206c0249d1cefbdcb6d645be92788f0a5bb1885.amadio@gentoo> (raw)

commit:     0206c0249d1cefbdcb6d645be92788f0a5bb1885
Author:     Guilherme Amadio <amadio <AT> gentoo <DOT> org>
AuthorDate: Tue Jul  2 11:48:04 2024 +0000
Commit:     Guilherme Amadio <amadio <AT> gentoo <DOT> org>
CommitDate: Wed Jul  3 09:20:30 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0206c024

net-libs/pacparser: add 1.4.5

Signed-off-by: Guilherme Amadio <amadio <AT> gentoo.org>

 net-libs/pacparser/Manifest               |  1 +
 net-libs/pacparser/pacparser-1.4.5.ebuild | 66 +++++++++++++++++++++++++++++++
 2 files changed, 67 insertions(+)

diff --git a/net-libs/pacparser/Manifest b/net-libs/pacparser/Manifest
index 9b5284ae8405..b3e20146ec71 100644
--- a/net-libs/pacparser/Manifest
+++ b/net-libs/pacparser/Manifest
@@ -1,3 +1,4 @@
 DIST pacparser-1.4.0.tar.gz 902919 BLAKE2B da29b34654764b1569d9d37648e4ccb608142becaf34c65cdf37b2bd81aa073b1945d840fb50aa7cb986687bbdc086c862a05bc421adb08d44e1add637b712ed SHA512 9574068dc4da3db27ddc1242cf98d98ebc7515864789e95b700cd2ce1433a7cff84160f1507976488fab7529839cabe9cf2aa16ddbefc0c83009fa6c0d2ad6b3
 DIST pacparser-1.4.2.tar.gz 903425 BLAKE2B 6b46fd87487feacb3915ddd3705eb60f795257adc5361fddbfc550c537471276f464f367b57124efc49f57666f232c297df763f2adea34d7642bd1e3271f47b4 SHA512 65d12421ee79a969b867d7dcec1527ac9b2596c25f6be2502742ba1b3788f05afeed2fcd5406dfb39485d1d56ef161684acabe6a95008725385c3c5336f331b1
 DIST pacparser-1.4.3.tar.gz 905231 BLAKE2B bffe42154a8de9798c4c7b986e5797c19cbb103ed2977545014278f63a770c7cd9ed6b7fc6a9fff96514a71457b9dbc35104a51d9e5e331e2d19f3baeb86e621 SHA512 cc0d6c0a7b1fd9d55dece6c4ad80711d3d1055a0cde120dbb6e8274508631b325e7d876545b40ca05cefc6dce15aa1476e5b2936527e3183ad86114e4cd661a5
+DIST pacparser-1.4.5.tar.gz 905331 BLAKE2B 4c0346e76ad86a6fc54d870688595432f36fc535564b79edc74816f0fa2c45be109c4734d36af5ded50ac208177cfe9fc775d0917060e3f2b4ea5445da67b077 SHA512 fabbfa5c5ebd2a884187e53db27015b16587cba2ae30da1fdec92ca211b1f0ecd2839222341cd0eca9e709ada4e9efcd686b713e4f1e5621507070a6300ad164

diff --git a/net-libs/pacparser/pacparser-1.4.5.ebuild b/net-libs/pacparser/pacparser-1.4.5.ebuild
new file mode 100644
index 000000000000..b1a976c8a7f8
--- /dev/null
+++ b/net-libs/pacparser/pacparser-1.4.5.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{9..13} )
+
+inherit python-r1 toolchain-funcs
+
+DESCRIPTION="Library to parse proxy auto-config files"
+HOMEPAGE="http://pacparser.manugarg.com/"
+SRC_URI="https://github.com/manugarg/${PN}/archive/v${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/^SMCFLAGS.*/SMCFLAGS = -DHAVE_VA_COPY -DVA_COPY=va_copy -DHAVE_VA_LIST_AS_ARRAY/' \
+		-i src/Makefile || die
+	sed -e '/CC = gcc/d' \
+		-i src/spidermonkey/js/src/config/Linux_All.mk || die
+
+	export NO_INTERNET=yes
+	export VERSION="${PV}"
+	tc-export CC AR RANLIB
+}
+
+src_compile() {
+	# Upstream parallel compilation bug, do that first to work around
+	emake -C src -j1
+	use python && python_foreach_impl emake -C src pymod
+}
+
+src_install() {
+	emake \
+		LIB_PREFIX="${ED}/usr/$(get_libdir)" \
+		DOC_PREFIX="${ED}/usr/share/doc/${PF}" \
+		BIN_PREFIX="${ED}"/usr/bin \
+		INC_PREFIX="${ED}"/usr/include \
+		MAN_PREFIX="${ED}"/usr/share/man \
+		-C src install
+	dodoc README.md
+
+	if use python; then
+		python_foreach_impl emake DESTDIR="${D}" -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
+}


             reply	other threads:[~2024-07-03  9:20 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-07-03  9:20 Guilherme Amadio [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-05-29  6:26 [gentoo-commits] repo/gentoo:master commit in: net-libs/pacparser/ Jakov Smolić
2024-03-10 18:28 Guilherme Amadio
2024-03-10 17:54 Guilherme Amadio
2023-10-27  6:56 Guilherme Amadio
2022-09-19 12:38 Guilherme Amadio
2022-09-19 12:38 Guilherme Amadio
2022-06-07  5:22 Sam James
2022-06-07  5:21 Sam James
2021-06-16  8:35 Guilherme Amadio
2021-06-16  8:35 Guilherme Amadio
2021-05-31 23:19 Sam James
2021-04-03 19:53 Sam James
2020-06-08 13:41 Joonas Niilola
2020-06-08 13:41 Joonas Niilola
2020-06-08 13:41 Joonas Niilola
2020-02-10 21:25 Michał Górny
2018-01-03 10:40 Michael Palimaka
2017-07-18 16:12 Sebastien Fabbro
2017-07-18 16:12 Sebastien Fabbro
2017-05-29 16:33 Pacho Ramos
2015-09-01 19:55 Tobias Klausmann

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1719998430.0206c0249d1cefbdcb6d645be92788f0a5bb1885.amadio@gentoo \
    --to=amadio@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox