public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Lars Wendler" <polynomial-c@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libpsl/
Date: Wed, 17 Apr 2019 12:20:30 +0000 (UTC)	[thread overview]
Message-ID: <1555503625.1e474561c433802204379d91553f024b8f4be590.polynomial-c@gentoo> (raw)

commit:     1e474561c433802204379d91553f024b8f4be590
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 17 12:20:02 2019 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Wed Apr 17 12:20:25 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e474561

net-libs/libpsl: Bump to version 0.21.0

Package-Manager: Portage-2.3.63, Repoman-2.3.12
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>

 net-libs/libpsl/Manifest             |  1 +
 net-libs/libpsl/libpsl-0.21.0.ebuild | 74 ++++++++++++++++++++++++++++++++++++
 2 files changed, 75 insertions(+)

diff --git a/net-libs/libpsl/Manifest b/net-libs/libpsl/Manifest
index e9fbf64bcb0..dc145ccabd7 100644
--- a/net-libs/libpsl/Manifest
+++ b/net-libs/libpsl/Manifest
@@ -1 +1,2 @@
 DIST libpsl-0.20.2.tar.gz 9228099 BLAKE2B d53b8a036ba557704c4d3a498b35fd25e3dfc466d5161040d02b7d8d47af2138cce2bdbb8203fca0591408440f1b4cfab776fe0d2ecd68959f426d903cab08d4 SHA512 fa9f6f7f0447d9fe00f5dfca5262c56ff26217eea44d0f7fc1e5d982224c41874e753f0aa06dd9e5d7d03d4f04e3dacd4f36034cc8dd0fc6e2c28b49a23e62fe
+DIST libpsl-0.21.0.tar.gz 9217951 BLAKE2B fd93b71ae4969bb920af26e10e0e419dab62db37197046b0f4e4a0e009a150582df6d4c8fe33218fa8be869e6ad9688d3c325c3f635da5560e29269daa461668 SHA512 165c4f0b0640a813d512bd916e1532e32e43c8c81a5efd048f3a5b07b1b3c9129b4c4b5008b8b11a7c1b3914caea17564321389cd350bf1d687d53a97f2afa4d

diff --git a/net-libs/libpsl/libpsl-0.21.0.ebuild b/net-libs/libpsl/libpsl-0.21.0.ebuild
new file mode 100644
index 00000000000..fd6aa857e23
--- /dev/null
+++ b/net-libs/libpsl/libpsl-0.21.0.ebuild
@@ -0,0 +1,74 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=(python{2_7,3_{5,6,7}})
+
+inherit multilib-minimal python-any-r1
+
+DESCRIPTION="C library for the Public Suffix List"
+HOMEPAGE="https://github.com/rockdaboot/libpsl"
+SRC_URI="https://github.com/rockdaboot/${PN}/releases/download/${P}/${P}.tar.gz"
+LICENSE="MIT"
+SLOT="0"
+
+KEYWORDS="~amd64 ~arm64 ~hppa ~ia64 ~s390 ~sparc ~x86"
+IUSE="icu +idn +man"
+
+RDEPEND="
+	icu? ( !idn? ( dev-libs/icu:=[${MULTILIB_USEDEP}] ) )
+	idn? (
+		dev-libs/libunistring[${MULTILIB_USEDEP}]
+		net-dns/libidn2:=[${MULTILIB_USEDEP}]
+	)
+"
+
+DEPEND="
+	${RDEPEND}
+"
+BDEPEND="
+	${PYTHON_DEPS}
+	dev-util/gtk-doc-am
+	sys-devel/gettext
+	virtual/pkgconfig
+	man? ( dev-libs/libxslt )
+"
+
+pkg_pretend() {
+	if use icu && use idn ; then
+		ewarn "\"icu\" and \"idn\" USE flags are enabled."
+		ewarn "Using \"idn\"."
+	fi
+}
+
+multilib_src_configure() {
+	local myeconfargs=(
+		--disable-asan
+		--disable-cfi
+		--disable-ubsan
+		$(use_enable man)
+	)
+
+	# Prefer idn even if icu is in USE as well
+	if use idn ; then
+		myeconfargs+=(
+			--enable-builtin=libidn2
+			--enable-runtime=libidn2
+		)
+	elif use icu ; then
+		myeconfargs+=(
+			--enable-builtin=libicu
+			--enable-runtime=libicu
+		)
+	else
+		myeconfargs+=( --disable-runtime )
+	fi
+
+	ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
+}
+
+multilib_src_install() {
+	default
+
+	find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die
+}


             reply	other threads:[~2019-04-17 12:20 UTC|newest]

Thread overview: 67+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-04-17 12:20 Lars Wendler [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-11-04 11:02 [gentoo-commits] repo/gentoo:master commit in: net-libs/libpsl/ Sam James
2024-10-09 17:31 Eli Schwartz
2024-08-20 15:45 Eli Schwartz
2024-03-19  3:42 Ionen Wolkens
2024-03-02 18:34 Arthur Zamarin
2024-03-02 10:18 Arthur Zamarin
2024-02-29 22:17 Sam James
2024-02-21  0:38 Sam James
2024-02-21  0:38 Sam James
2024-02-21  0:38 Sam James
2024-02-21  0:38 Sam James
2024-02-13 21:31 Matt Jolly
2024-01-20 20:17 Fabian Groffen
2024-01-14  2:30 Sam James
2023-06-22  3:28 Matt Turner
2023-03-17 17:30 Sam James
2023-03-17 17:22 Sam James
2023-03-17 16:45 Arthur Zamarin
2023-03-17 16:09 Arthur Zamarin
2023-03-17 16:04 Arthur Zamarin
2022-12-27 10:42 Sam James
2022-12-19  8:56 Florian Schmaus
2022-12-18 12:46 Sam James
2022-12-18 12:11 Sam James
2022-12-18 12:11 Sam James
2022-12-18 11:39 Sam James
2022-12-18 11:34 Sam James
2022-12-18 11:32 Sam James
2022-11-06 18:25 Matt Turner
2022-11-06 18:25 Matt Turner
2022-05-17 12:48 WANG Xuerui
2022-03-24 22:21 Lars Wendler
2021-08-15 22:45 James Le Cuirot
2021-05-24  4:30 Joshua Kinard
2020-10-06 15:07 Lars Wendler
2020-07-19  7:39 Lars Wendler
2020-07-19  7:29 Lars Wendler
2020-04-17 18:55 Andreas Sturmlechner
2020-04-17 18:55 Andreas Sturmlechner
2020-01-11 20:01 Mart Raudsepp
2019-07-13 12:08 Sergei Trofimovich
2019-07-03  7:11 Agostino Sarubbo
2019-06-27 12:35 Agostino Sarubbo
2019-06-17 19:40 Sergei Trofimovich
2019-06-17 10:07 Mikle Kolyada
2019-06-12 11:21 Lars Wendler
2019-05-23 13:02 Mikle Kolyada
2019-05-10 17:49 Mikle Kolyada
2019-05-10 17:33 Mikle Kolyada
2019-05-09 20:04 Aaron Bauman
2019-05-08  9:33 Mikle Kolyada
2019-05-07 20:48 Matt Turner
2019-05-01 19:52 Sergei Trofimovich
2019-05-01 19:52 Sergei Trofimovich
2019-04-08 22:48 Aaron Bauman
2019-03-28  6:41 Lars Wendler
2019-03-25 11:43 Mikle Kolyada
2019-03-24 19:38 Sergei Trofimovich
2019-03-24 13:08 Sergei Trofimovich
2019-03-20 19:37 Sergei Trofimovich
2019-03-19 16:00 Lars Wendler
2019-03-19 12:21 Alexis Ballier
2019-03-19  9:40 Lars Wendler
2019-03-18 16:34 Lars Wendler
2019-03-18 16:24 Lars Wendler
2019-03-18 16:20 Lars Wendler

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=1555503625.1e474561c433802204379d91553f024b8f4be590.polynomial-c@gentoo \
    --to=polynomial-c@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