public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-dns/libidn2/
Date: Fri, 16 Dec 2022 15:45:40 +0000 (UTC)	[thread overview]
Message-ID: <1671205511.3fe8b0c9e231f04b1e16573debf95ce1a2ba7ac3.mgorny@gentoo> (raw)

commit:     3fe8b0c9e231f04b1e16573debf95ce1a2ba7ac3
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 16 15:45:11 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Dec 16 15:45:11 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3fe8b0c9

net-dns/libidn2: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 net-dns/libidn2/Manifest             |  2 --
 net-dns/libidn2/libidn2-2.3.3.ebuild | 60 ------------------------------------
 2 files changed, 62 deletions(-)

diff --git a/net-dns/libidn2/Manifest b/net-dns/libidn2/Manifest
index 98e58e524def..d8fae3a9db17 100644
--- a/net-dns/libidn2/Manifest
+++ b/net-dns/libidn2/Manifest
@@ -1,4 +1,2 @@
-DIST libidn2-2.3.3.tar.gz 2116946 BLAKE2B 47847aee34951aa2ba4fd2c3fdfdf6f1cee24bfdff8513f17896bb60fa4fae770b400ff5b78226ac5da6a3ce4120754483bafb9586c52131e7345a5ea51c4509 SHA512 2dd0201b5224b3eb6a5667e53c9a2beb6e6aefefab23060a70f143bb5d447029e8f4200e4e0460a4fab51767f0bdfc9583a0cc757652bee58f5593106dd18274
-DIST libidn2-2.3.3.tar.gz.sig 228 BLAKE2B 47b861c6234e14fc03d606a67a0dd6de829434cb06ba3e3c0fabade59fa3a761d6e5cb81553c74b4356064744efb6a0736cb55a2680ce6f90cd13b0f1001efed SHA512 bad901350e21ff39f0385685c13b3f366cd77dad59c736547773f9555531bc56022982c3fb6fffd5b82624bdd3ea8bd1806e531f80a06c77e4e46b08f18f08a9
 DIST libidn2-2.3.4.tar.gz 2083823 BLAKE2B 26ef58894ad51ca9775cf07edb1353a8aeb7af0df36ce8698425be216a067903797cdbc50c7644292c7e05b23c7bba35c9fe5e38c70e6f55784d8bcdd9c2fdb2 SHA512 a6e90ccef56cfd0b37e3333ab3594bb3cec7ca42a138ca8c4f4ce142da208fa792f6c78ca00c01001c2bc02831abcbaf1cf9bcc346a5290fd7b30708f5a462f3
 DIST libidn2-2.3.4.tar.gz.sig 228 BLAKE2B 0aa25bbd58b76724dc7f6d7a40dd578bf28f4b786c32933fae330c4330da8fabd549c45b579bfc0ef0178b10122e59c6b33bd78a8425c744dff2ace7e75018dd SHA512 d2a575723326ae256a60e3edf7766af65434f716e11f963bb7ac29b6b2ff2872b41684a1bd1c6f3a3921e8a083512eff1faf2b0fc02513095c2bcf3563312fe0

diff --git a/net-dns/libidn2/libidn2-2.3.3.ebuild b/net-dns/libidn2/libidn2-2.3.3.ebuild
deleted file mode 100644
index aa0909da9a82..000000000000
--- a/net-dns/libidn2/libidn2-2.3.3.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-VERIFY_SIG_OPENPGP_KEY_PATH="${BROOT}"/usr/share/openpgp-keys/libidn.asc
-inherit multilib-minimal toolchain-funcs verify-sig
-
-DESCRIPTION="An implementation of the IDNA2008 specifications (RFCs 5890, 5891, 5892, 5893)"
-HOMEPAGE="https://www.gnu.org/software/libidn/#libidn2 https://gitlab.com/libidn/libidn2"
-SRC_URI="
-	mirror://gnu/libidn/${P}.tar.gz
-	verify-sig? ( mirror://gnu/libidn/${P}.tar.gz.sig )
-"
-S="${WORKDIR}"/${P/a/}
-
-LICENSE="GPL-2+ LGPL-3+"
-SLOT="0/2"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="nls static-libs"
-
-RDEPEND="
-	dev-libs/libunistring:=[${MULTILIB_USEDEP}]
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
-	dev-lang/perl
-	sys-apps/help2man
-	nls? ( sys-devel/gettext )
-	verify-sig? ( sec-keys/openpgp-keys-libidn )
-"
-
-src_prepare() {
-	default
-
-	if [[ ${CHOST} == *-darwin* ]] ; then
-		# Darwin ar chokes when TMPDIR doesn't exist (as done for some
-		# reason in the Makefile)
-		sed -i -e '/^TMPDIR = /d' Makefile.in || die
-		export TMPDIR="${T}"
-	fi
-
-	multilib_copy_sources
-}
-
-multilib_src_configure() {
-	econf \
-		CC_FOR_BUILD="$(tc-getBUILD_CC)" \
-		$(use_enable static-libs static) \
-		$(multilib_native_use_enable nls) \
-		--disable-doc \
-		--disable-gcc-warnings \
-		--disable-gtk-doc
-}
-
-multilib_src_install() {
-	default
-
-	find "${ED}" -name '*.la' -delete || die
-}


             reply	other threads:[~2022-12-16 15:45 UTC|newest]

Thread overview: 162+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-12-16 15:45 Michał Górny [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-05-22  1:06 [gentoo-commits] repo/gentoo:master commit in: net-dns/libidn2/ Sam James
2024-03-19  5:52 Michał Górny
2024-03-02 15:14 Arthur Zamarin
2024-03-02 10:43 Arthur Zamarin
2024-02-18 11:30 Sam James
2024-02-18  0:15 Sam James
2024-02-17 21:42 Jakov Smolić
2024-01-28  9:04 Sam James
2024-01-28  3:51 Michał Górny
2024-01-25 11:37 Michał Górny
2024-01-25  5:48 Sam James
2024-01-25  3:14 Sam James
2024-01-25  3:14 Sam James
2024-01-24 19:21 Michał Górny
2024-01-24 19:05 Michał Górny
2024-01-24 19:05 Michał Górny
2024-01-24 18:59 Michał Górny
2024-01-24 18:59 Michał Górny
2024-01-03 10:40 Sam James
2023-10-27 12:56 Michał Górny
2023-10-27  2:34 Sam James
2023-10-23 14:05 Arthur Zamarin
2023-09-20 21:11 Andreas K. Hüttel
2023-09-15 20:18 Andreas K. Hüttel
2023-07-23 22:23 Sam James
2023-01-14 19:17 Sam James
2022-10-24  5:14 Michał Górny
2022-08-30 16:55 Sam James
2022-08-27  8:42 Michał Górny
2022-08-27  8:27 Agostino Sarubbo
2022-08-26 10:43 Arthur Zamarin
2022-08-26 10:18 Arthur Zamarin
2022-08-26 10:08 Sam James
2022-08-26  9:44 Arthur Zamarin
2022-08-26  9:44 Arthur Zamarin
2022-08-26  9:44 Arthur Zamarin
2022-08-26  8:23 Arthur Zamarin
2022-07-12  5:58 Sam James
2022-06-21 22:01 Sam James
2021-10-07 13:42 Michał Górny
2021-10-07  6:37 Sam James
2021-09-04 21:39 Sam James
2021-09-03  6:40 Agostino Sarubbo
2021-09-03  6:34 Agostino Sarubbo
2021-09-01 18:32 Sam James
2021-08-31 17:47 Sam James
2021-08-31 17:44 Sam James
2021-08-31 17:44 Sam James
2021-07-31 13:40 Michał Górny
2021-06-26 12:09 Sergei Trofimovich
2021-06-25 19:36 Sam James
2021-06-19 21:10 Sergei Trofimovich
2021-06-17 20:24 Sam James
2021-06-17 20:24 Sam James
2021-06-17 20:24 Sam James
2021-06-17 20:24 Sam James
2021-06-17 20:23 Sam James
2021-05-17 22:24 Sam James
2021-05-17 22:24 Sam James
2021-05-13  8:56 Michał Górny
2021-01-06 14:36 Fabian Groffen
2020-12-27 17:50 Fabian Groffen
2020-11-04 12:02 Andreas K. Hüttel
2020-11-03 22:23 Michał Górny
2020-11-03 22:23 Michał Górny
2020-06-14 16:08 Mike Gilbert
2020-03-30  4:03 Jeroen Roovers
2020-03-29 10:25 Sergei Trofimovich
2020-03-18 15:22 Agostino Sarubbo
2020-03-18 11:31 Agostino Sarubbo
2020-03-18 11:18 Agostino Sarubbo
2020-03-18 11:11 Agostino Sarubbo
2020-03-18  9:49 Agostino Sarubbo
2020-03-18  9:46 Agostino Sarubbo
2020-03-17 18:44 Agostino Sarubbo
2020-03-17 18:00 Sergei Trofimovich
2020-03-17 13:02 Mart Raudsepp
2019-11-27 23:14 Jeroen Roovers
2019-11-14 10:38 Jeroen Roovers
2019-11-14 10:38 Jeroen Roovers
2019-05-27 15:24 Jeroen Roovers
2019-05-05 20:33 Andreas K. Hüttel
2019-05-04 19:32 Andreas K. Hüttel
2019-05-03 11:36 Jeroen Roovers
2019-05-02 16:19 Jeroen Roovers
2019-05-02 15:31 Matt Turner
2019-05-01  6:22 Matt Turner
2019-05-01  6:22 Matt Turner
2019-04-27 20:50 Sergei Trofimovich
2019-04-18 11:51 Jeroen Roovers
2019-04-18 11:43 Jeroen Roovers
2019-04-18 10:15 Jeroen Roovers
2019-04-10 14:45 Aaron Bauman
2019-04-08 21:01 Andreas K. Hüttel
2019-04-08  6:05 Matt Turner
2019-04-08  2:18 Thomas Deutschmann
2019-04-02 12:08 Mikle Kolyada
2019-04-02 12:08 Mikle Kolyada
2019-03-24 17:00 Mikle Kolyada
2019-03-16 14:01 Mikle Kolyada
2019-03-15 10:01 Mikle Kolyada
2019-03-14 19:41 Sergei Trofimovich
2019-02-10 13:06 Jeroen Roovers
2019-02-09 12:39 Jeroen Roovers
2019-02-09 12:28 Jeroen Roovers
2019-02-09 12:11 Andreas K. Hüttel
2019-01-07 13:51 Alexis Ballier
2019-01-06 14:37 Jeroen Roovers
2018-05-19 11:44 Jeroen Roovers
2018-03-02  8:31 Michał Górny
2018-01-12  4:10 Mike Frysinger
2017-10-14  6:19 Markus Meier
2017-10-08 19:32 Sergei Trofimovich
2017-10-07 13:03 Jeroen Roovers
2017-10-03 10:53 Agostino Sarubbo
2017-10-03  8:57 Sergei Trofimovich
2017-09-28 21:14 Jeroen Roovers
2017-09-12 10:32 Jeroen Roovers
2017-08-31 11:05 Jeroen Roovers
2017-08-18 23:26 Thomas Deutschmann
2017-07-31  9:01 Tobias Klausmann
2017-07-28  4:42 Markus Meier
2017-07-25  4:18 Jeroen Roovers
2017-07-22 21:09 Sergei Trofimovich
2017-05-08 14:29 Jeroen Roovers
2017-05-08 14:29 Jeroen Roovers
2017-04-26  8:10 Jeroen Roovers
2017-04-18  8:30 Fabian Groffen
2017-04-17  4:45 Jeroen Roovers
2017-04-15 12:24 Jeroen Roovers
2017-04-15 12:24 Jeroen Roovers
2017-03-20  8:05 Jeroen Roovers
2017-03-20  6:54 Mike Frysinger
2017-03-20  6:17 Matt Turner
2017-03-20  1:05 Matt Turner
2017-03-17 17:10 Agostino Sarubbo
2017-03-17 10:42 Agostino Sarubbo
2017-03-17 10:34 Agostino Sarubbo
2017-03-17 10:15 Agostino Sarubbo
2017-03-17 10:01 Fabian Groffen
2017-03-16  8:46 Michael Weber
2017-03-14 16:22 Jeroen Roovers
2017-03-14  2:26 Mike Frysinger
2017-02-04  5:59 Mart Raudsepp
2017-01-29 19:33 Fabian Groffen
2017-01-15 11:52 Jeroen Roovers
2017-01-15 11:52 Jeroen Roovers
2017-01-02 12:27 Jeroen Roovers
2017-01-02  0:18 Jeroen Roovers
2016-12-31 13:29 Jeroen Roovers
2016-12-24  9:12 Jeroen Roovers
2016-12-22  8:36 Fabian Groffen
2016-11-15 15:34 Tobias Klausmann
2016-11-04 17:13 Anthony G. Basile
2016-11-04  9:38 Anthony G. Basile
2016-11-03 12:39 Jeroen Roovers
2016-11-03 12:39 Jeroen Roovers
2016-11-03 11:46 Jeroen Roovers
2016-11-03 11:15 Jeroen Roovers
2016-11-02 22:37 Anthony G. Basile
2016-07-23 12:03 Jeroen Roovers

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=1671205511.3fe8b0c9e231f04b1e16573debf95ce1a2ba7ac3.mgorny@gentoo \
    --to=mgorny@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