public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Andreas Sturmlechner" <asturm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-dns/idnkit/files/, net-dns/idnkit/
Date: Sun, 18 Apr 2021 17:55:18 +0000 (UTC)	[thread overview]
Message-ID: <1618768504.a4739023a6623f7ba3b820527e7ef67b4a0efcf3.asturm@gentoo> (raw)

commit:     a4739023a6623f7ba3b820527e7ef67b4a0efcf3
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 18 10:18:43 2021 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Apr 18 17:55:04 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4739023

net-dns/idnkit: Drop 1.0-r2

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 net-dns/idnkit/Manifest                            |  1 -
 net-dns/idnkit/files/idnkit-1.0-autotools.patch    | 64 ----------------------
 net-dns/idnkit/files/idnkit-1.0-test-subdirs.patch | 10 ----
 net-dns/idnkit/idnkit-1.0-r2.ebuild                | 42 --------------
 4 files changed, 117 deletions(-)

diff --git a/net-dns/idnkit/Manifest b/net-dns/idnkit/Manifest
index 05f1c89fabb..addf7170975 100644
--- a/net-dns/idnkit/Manifest
+++ b/net-dns/idnkit/Manifest
@@ -1,2 +1 @@
-DIST idnkit-1.0-src.tar.gz 432823 BLAKE2B 4e96bed174ea704ec0eb5c6655cb65145ed808b2bf9582ec9b6dcb8606de7a006937a2f8d8fce386dbc328e074b95ca504464c1ed6d16acc7be82d9904f2c2b4 SHA512 74f2db007a1991610f62a7a060d534f724f08395a16a7d76fda0824e9017aa47ffe4e251c90d0481218b70534fcd2b32724a66223042f59c1e16c1ff39f3be19
 DIST idnkit-2.3.tar.bz2 1473267 BLAKE2B efc2a93527c217b32bfd0e2546944b30d39c3fa046e17c11f2084721f966dc838bfa821c88378c0604cbeafb8d4970cf3c19122182448d5e48c2d392a42225c6 SHA512 a0cbc111d4b7d5f444c9b79ae76378fd2edf18097adca27d5ebf811e12091f609ec45d2c62a95b1e295bd1fa644bd8a38d79841f7f4e85dcd1f6a1cd5ca622e4

diff --git a/net-dns/idnkit/files/idnkit-1.0-autotools.patch b/net-dns/idnkit/files/idnkit-1.0-autotools.patch
deleted file mode 100644
index d0918bc9184..00000000000
--- a/net-dns/idnkit/files/idnkit-1.0-autotools.patch
+++ /dev/null
@@ -1,64 +0,0 @@
---- a/configure.in	2003-03-11 00:53:20.000000000 +0100
-+++ b/configure.in	2010-03-12 14:15:24.000000000 +0100
-@@ -629,6 +629,41 @@
-     fi
- fi
- 
-+AC_DEFUN(AC_FIND_SYSTEM_SHOBJ,[
-+AC_MSG_CHECKING(for $1 shared object)
-+shobj_name=$1
-+shobj_path=
-+case "$host" in
-+*-hpux*)
-+    SOEXT=sl
-+    ;;
-+*)
-+    SOEXT=so
-+    ;;
-+esac
-+for shobj_libdir in /lib /usr/lib; do
-+    if test -f $shobj_libdir/$shobj_name.$SOEXT; then
-+        shobj_path=$shobj_libdir/$shobj_name.$SOEXT
-+    else
-+        shobj_path=`ls -r $shobj_libdir/$shobj_name.$SOEXT* 2>/dev/null | head -1`
-+	if test "$shobj_path" != "" -a -f "$shobj_path"; then
-+	    :
-+	else
-+	    shobj_path=
-+	fi
-+    fi
-+    if test "$shobj_path" != ""; then
-+	AC_MSG_RESULT($shobj_path)
-+        shobj_pathsymbol=SOPATH_`echo $shobj_name | sed 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'`
-+	AC_DEFINE_UNQUOTED($shobj_pathsymbol, "$shobj_path")
-+	break
-+    fi
-+done
-+if test "$shobj_path" = ""; then
-+    AC_MSG_RESULT(no)
-+fi
-+])dnl
-+
- dnl Find system shared object paths.
- AC_FIND_SYSTEM_SHOBJ(libc)
- if test "$install_runidn" = yes ; then
---- a/lib/Makefile.in	2003-03-12 17:14:41.000000000 +0100
-+++ b/lib/Makefile.in	2010-03-12 15:54:35.000000000 +0100
-@@ -241,7 +241,7 @@
- 
- install-common:
- 	$(MKINSTALLDIRS) $(DESTDIR)$(libdir)
--	$(LIBTOOL) $(INSTALL_DATA) $(LITELIB).la \
-+	$(LIBTOOL) --mode=install $(INSTALL_DATA) $(LITELIB).la \
- 	    $(DESTDIR)$(libdir)/$(LITELIB).la
- 	-[ -f $(DESTDIR)$(libdir)/$(LITELIB).a ] \
- 	    && $(RANLIB) $(DESTDIR)$(libdir)/$(LITELIB).a
-@@ -262,7 +262,7 @@
- 
- install-nolite:
- 	$(MKINSTALLDIRS) $(DESTDIR)$(libdir)
--	$(LIBTOOL) $(INSTALL_DATA) $(LIB).la \
-+	$(LIBTOOL) --mode=install $(INSTALL_DATA) $(LIB).la \
- 	    $(DESTDIR)$(libdir)/$(LIB).la
- 	-[ -f $(DESTDIR)$(libdir)/$(LIB).a ] \
- 	    && $(RANLIB) $(DESTDIR)$(libdir)/$(LIB).a

diff --git a/net-dns/idnkit/files/idnkit-1.0-test-subdirs.patch b/net-dns/idnkit/files/idnkit-1.0-test-subdirs.patch
deleted file mode 100644
index 3e6dcf13b15..00000000000
--- a/net-dns/idnkit/files/idnkit-1.0-test-subdirs.patch
+++ /dev/null
@@ -1,10 +0,0 @@
---- a/lib/Makefile.in
-+++ b/lib/Makefile.in
-@@ -296,6 +296,7 @@
- 	rm -f Makefile
- 
- test check: test-localdir test-subdirs
-+test-subdirs: test-localdir
- 
- @LITEONLY_TRUE@test-localdir: $(TESTLITELIB).la $(SAMPLES)
- @LITEONLY_FALSE@test-localdir: $(TESTLIB).la $(TESTLITELIB).la $(SAMPLES)

diff --git a/net-dns/idnkit/idnkit-1.0-r2.ebuild b/net-dns/idnkit/idnkit-1.0-r2.ebuild
deleted file mode 100644
index 318812138e9..00000000000
--- a/net-dns/idnkit/idnkit-1.0-r2.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-inherit autotools epatch
-
-DESCRIPTION="Toolkit for Internationalized Domain Names (IDN)"
-HOMEPAGE="https://www.nic.ad.jp/ja/idn/idnkit/download/"
-SRC_URI="https://www.nic.ad.jp/ja/idn/idnkit/download/sources/${P}-src.tar.gz"
-
-LICENSE="JNIC"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc x86"
-IUSE="static-libs"
-
-DEPEND="virtual/libiconv"
-
-S=${WORKDIR}/${P}-src
-
-src_prepare() {
-	# Bug 263135, old broken libtool bundled
-	rm -f aclocal.m4 || die "rm failed"
-	epatch "${FILESDIR}"/${P}-autotools.patch
-	epatch "${FILESDIR}"/${P}-test-subdirs.patch
-	mv configure.{in,ac} || die
-	eautoreconf
-}
-
-src_configure() {
-	local myconf=""
-	if has_version dev-libs/libiconv; then
-		myconf="--with-iconv"
-	fi
-	econf $(use_enable static-libs static) ${myconf}
-}
-
-src_install() {
-	default
-	use static-libs || find "${ED}" -name 'lib*.la' -delete
-	dodoc ChangeLog DISTFILES NEWS README README.ja
-}


             reply	other threads:[~2021-04-18 17:55 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-04-18 17:55 Andreas Sturmlechner [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-02-10  9:01 [gentoo-commits] repo/gentoo:master commit in: net-dns/idnkit/files/, net-dns/idnkit/ Sam James
2018-03-05 14:53 Jeroen Roovers
2018-03-01 19:08 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=1618768504.a4739023a6623f7ba3b820527e7ef67b4a0efcf3.asturm@gentoo \
    --to=asturm@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