public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Ace/, dev-perl/Ace/files/
@ 2018-04-01 16:49 Kent Fredric
  0 siblings, 0 replies; 2+ messages in thread
From: Kent Fredric @ 2018-04-01 16:49 UTC (permalink / raw
  To: gentoo-commits

commit:     7070a6dc14c2adb697e05dbe898da461729916b0
Author:     Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Sun Apr  1 16:47:27 2018 +0000
Commit:     Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Sun Apr  1 16:47:58 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7070a6dc

dev-perl/Ace: Fixes for bugs #637102 and #637330

- Use toolchain-funcs for Darwin support ( #637102 )
- Fix 'non-void function should return a value' ( #637330 )
- Migrate sed patches to git-am patches where possible

Closes: https://bugs.gentoo.org/637330
Bug: https://bugs.gentoo.org/637102
Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-perl/Ace/Ace-1.920.0-r3.ebuild            | 12 ++++++-----
 dev-perl/Ace/files/Ace-1.92-gcc-nonvoid.patch | 31 +++++++++++++++++++++++++++
 dev-perl/Ace/files/Ace-1.92-glibc26.patch     | 29 +++++++++++++++++++++++++
 dev-perl/Ace/files/Ace-1.92-rpcxs.patch       | 25 +++++++++++++++++++++
 4 files changed, 92 insertions(+), 5 deletions(-)

diff --git a/dev-perl/Ace/Ace-1.920.0-r3.ebuild b/dev-perl/Ace/Ace-1.920.0-r3.ebuild
index c8263c2086b..e46cfba0c5e 100644
--- a/dev-perl/Ace/Ace-1.920.0-r3.ebuild
+++ b/dev-perl/Ace/Ace-1.920.0-r3.ebuild
@@ -7,7 +7,7 @@ DIST_NAME=AcePerl
 DIST_AUTHOR=LDS
 DIST_VERSION=1.92
 DIST_EXAMPLES=("examples/*")
-inherit perl-module
+inherit perl-module toolchain-funcs
 
 DESCRIPTION="Object-Oriented Access to ACEDB Databases"
 
@@ -23,18 +23,20 @@ RDEPEND="virtual/perl-Digest-MD5
 DEPEND="${RDEPEND}"
 
 src_prepare() {
-	sed -i 's/", "1")/", "3")/' "${S}/Makefile.PL" || die "Can't patch config"
+	eapply "${FILESDIR}/${PN}-1.92-rpcxs.patch"
+	eapply "${FILESDIR}/${PN}-1.92-gcc-nonvoid.patch"
+
 	cat > "${S}/acelib/wmake/DARWIN_DEF" <<EOF
 NAME = DARWIN
-COMPILER = clang -fwritable-strings -DACEDB4 -DPOSIX
-LINKER = clang
+COMPILER = $(tc-getCC) -fwritable-strings -DACEDB4 -DPOSIX
+LINKER = $(tc-getLD)
 
 LIBS = -lm
 
 EOF
 
 	if use elibc_glibc ; then
-		sed -i -e 's:^USEROPTS=:USEROPTS=-I/usr/include/tirpc :g' -e 's:^LIBS =:LIBS = -ltirpc:g' "${S}/acelib/wmake/LINUX_DEF"
+		eapply "${FILESDIR}/${PN}-1.92-glibc26.patch"
 		export LIBS="-ltirpc"
 	fi
 

diff --git a/dev-perl/Ace/files/Ace-1.92-gcc-nonvoid.patch b/dev-perl/Ace/files/Ace-1.92-gcc-nonvoid.patch
new file mode 100644
index 00000000000..78c0572ed6f
--- /dev/null
+++ b/dev-perl/Ace/files/Ace-1.92-gcc-nonvoid.patch
@@ -0,0 +1,31 @@
+From c36659030eab65bcf7017e099377bf87a04d1667 Mon Sep 17 00:00:00 2001
+From: Anton Molyboha <anton.stay.connected@gmail.com>
+Date: Fri, 10 Nov 2017 17:37:54 -0500
+Subject: Fix compile with newer gcc "non-void function 'constant' should ..."
+
+Bug: https://bugs.gentoo.org/637330
+Bug: https://rt.cpan.org/Ticket/Display.html?id=123593
+---
+ RPC/RPC.xs | 6 ------
+ 1 file changed, 6 deletions(-)
+
+diff --git a/RPC/RPC.xs b/RPC/RPC.xs
+index 3e059c0..cd4f6fa 100644
+--- a/RPC/RPC.xs
++++ b/RPC/RPC.xs
+@@ -152,12 +152,6 @@ int arg;
+     case 'Z':
+ 	break;
+     case '_':
+-	if (strEQ(name, "_ACECLIENT_"))
+-#ifdef _ACECLIENT_
+-	    return _ACECLIENT_;
+-#else
+-	    goto not_there;
+-#endif
+ 	break;
+     }
+     errno = EINVAL;
+-- 
+2.16.2
+

diff --git a/dev-perl/Ace/files/Ace-1.92-glibc26.patch b/dev-perl/Ace/files/Ace-1.92-glibc26.patch
new file mode 100644
index 00000000000..93913485b2f
--- /dev/null
+++ b/dev-perl/Ace/files/Ace-1.92-glibc26.patch
@@ -0,0 +1,29 @@
+From 79cbe4803f73eab5474e709b20ed570a44071182 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Andreas=20K=2E=20H=C3=BCttel?= <dilfridge@gentoo.org>
+Date: Sat, 31 Mar 2018 08:12:32 +1300
+Subject: Fix building with GlibC 2.26
+
+Bug: https://bugs.gentoo.org/637114
+---
+ acelib/wmake/LINUX_DEF | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/acelib/wmake/LINUX_DEF b/acelib/wmake/LINUX_DEF
+index ba96774..bd89334 100644
+--- a/acelib/wmake/LINUX_DEF
++++ b/acelib/wmake/LINUX_DEF
+@@ -18,9 +18,9 @@
+ NAME = LINUX
+ COMPILER = gcc -g -Wall -O2 -DACEDB4
+ LINKER = gcc -g
+-USEROPTS=-fPIC
++USEROPTS=-I/usr/include/tirpc -fPIC
+ 
+-LIBS = -lm
++LIBS = -ltirpc -lm
+ Xt_LIBS = -L/usr/X11R6/lib -lXaw -lXt -lXmu -lXext -lX11
+ LEX_LIBS = 
+ 
+-- 
+2.16.2
+

diff --git a/dev-perl/Ace/files/Ace-1.92-rpcxs.patch b/dev-perl/Ace/files/Ace-1.92-rpcxs.patch
new file mode 100644
index 00000000000..be67f6fe116
--- /dev/null
+++ b/dev-perl/Ace/files/Ace-1.92-rpcxs.patch
@@ -0,0 +1,25 @@
+From f44e3b39758057e3a5af7654768d40de2b249ae5 Mon Sep 17 00:00:00 2001
+From: Kent Fredric <kentnl@gentoo.org>
+Date: Fri, 13 Oct 2017 17:30:57 +1300
+Subject: Enable RPC and XS support
+
+---
+ Makefile.PL | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/Makefile.PL b/Makefile.PL
+index 232bc42..7a312fd 100644
+--- a/Makefile.PL
++++ b/Makefile.PL
+@@ -10,7 +10,7 @@ while (!$choice) {
+ 		  "  1) Interface to Ace socket server and local databases (pure Perl)\n" .
+ 		  "  2) The above plus XS optimizations (requires C compiler)\n" .
+ 		  "  3) The above plus RPC server interface (requires C compiler)\n\n" .
+-		  "Enter your choice: ", "1");
++		  "Enter your choice: ", "3");
+   if ($reply =~ /(\d+)/) {
+     $choice = $1;
+     die "invalid choice: $choice!" if $choice < 1  ||  $choice > 3;
+-- 
+2.16.2
+


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Ace/, dev-perl/Ace/files/
@ 2020-08-06 15:55 Kent Fredric
  0 siblings, 0 replies; 2+ messages in thread
From: Kent Fredric @ 2020-08-06 15:55 UTC (permalink / raw
  To: gentoo-commits

commit:     f20b2d96120529ca33344e38840b454b56beff86
Author:     Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Thu Aug  6 15:53:22 2020 +0000
Commit:     Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Thu Aug  6 15:54:57 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f20b2d96

dev-perl/Ace: Cleanup old 1.920.0-r{3,4,5}

Closes: https://bugs.gentoo.org/723152
Closes: https://bugs.gentoo.org/716266
Package-Manager: Portage-2.3.103, Repoman-2.3.22
Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>

 dev-perl/Ace/Ace-1.920.0-r3.ebuild        | 116 -------------------------
 dev-perl/Ace/Ace-1.920.0-r4.ebuild        | 137 -----------------------------
 dev-perl/Ace/Ace-1.920.0-r5.ebuild        | 139 ------------------------------
 dev-perl/Ace/files/Ace-1.92-glibc26.patch |  29 -------
 4 files changed, 421 deletions(-)

diff --git a/dev-perl/Ace/Ace-1.920.0-r3.ebuild b/dev-perl/Ace/Ace-1.920.0-r3.ebuild
deleted file mode 100644
index 202d5f70f02..00000000000
--- a/dev-perl/Ace/Ace-1.920.0-r3.ebuild
+++ /dev/null
@@ -1,116 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DIST_NAME=AcePerl
-DIST_AUTHOR=LDS
-DIST_VERSION=1.92
-DIST_EXAMPLES=("examples/*")
-inherit perl-module toolchain-funcs
-
-DESCRIPTION="Object-Oriented Access to ACEDB Databases"
-
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="virtual/perl-Digest-MD5
-	dev-perl/Cache-Cache
-	dev-perl/GD
-	elibc_glibc? ( net-libs/libtirpc net-libs/rpcsvc-proto )
-"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
-	eapply "${FILESDIR}/${PN}-1.92-rpcxs.patch"
-	eapply "${FILESDIR}/${PN}-1.92-gcc-nonvoid.patch"
-
-	cat > "${S}/acelib/wmake/DARWIN_DEF" <<EOF
-NAME = DARWIN
-COMPILER = $(tc-getCC) -fwritable-strings -DACEDB4 -DPOSIX
-LINKER = $(tc-getLD)
-
-LIBS = -lm
-
-EOF
-
-	if use elibc_glibc ; then
-		eapply "${FILESDIR}/${PN}-1.92-glibc26.patch"
-		export LIBS="-ltirpc"
-	fi
-
-	export MAKEOPTS="-j1"
-	perl-module_src_prepare
-}
-
-src_test() {
-	local MODULES=(
-		"Ace ${DIST_VERSION}"
-		"Ace::Freesubs 1.00"
-		"Ace::Graphics::Fk" # NO VERSION
-		"Ace::Graphics::Glyph"
-		"Ace::Graphics::Glyph::anchored_arrow"
-		"Ace::Graphics::Glyph::arrow"
-		"Ace::Graphics::Glyph::box"
-		"Ace::Graphics::Glyph::crossbox"
-		"Ace::Graphics::Glyph::dot"
-		"Ace::Graphics::Glyph::ex"
-		"Ace::Graphics::Glyph::graded_segments"
-		"Ace::Graphics::Glyph::group"
-		"Ace::Graphics::Glyph::line"
-		"Ace::Graphics::Glyph::primers"
-		"Ace::Graphics::Glyph::segments"
-		"Ace::Graphics::Glyph::span"
-		"Ace::Graphics::Glyph::toomany"
-		"Ace::Graphics::Glyph::transcript"
-		"Ace::Graphics::Glyph::triangle"
-		"Ace::Graphics::GlyphFactory"
-		"Ace::Graphics::Panel"
-		"Ace::Graphics::Track"
-		"Ace::Iterator 1.51"
-		"Ace::Local 1.05"
-		"Ace::Model 1.51"
-		"Ace::Object 1.66"
-		"Ace::Object::Wormbase"
-		"Ace::RPC 1.00"
-		"Ace::Sequence 1.51"
-		"Ace::Sequence::Feature"
-		"Ace::Sequence::FeatureList"
-		"Ace::Sequence::GappedAlignment 1.20"
-		"Ace::Sequence::Gene"
-		"Ace::Sequence::Homol"
-		"Ace::Sequence::Multi"
-		"Ace::Sequence::Transcript"
-		"Ace::SocketServer 1.01"
-		"GFF::Filehandle"
-# Need Ace::Browser
-# 		"Ace::Browser::AceSubs ${DIST_VERSION}"
-#		"Ace::Browser::GeneSubs ${DIST_VERSION}"
-#		"Ace::Browser::SearchSubs ${DIST_VERSION}"
-#		"Ace::Browser::SiteDefs ${DIST_VERSION}"
-#		"Ace::Browser::TreeSubs ${DIST_VERSION}"
-	)
-	local failed=()
-	for dep in "${MODULES[@]}"; do
-		ebegin "Compile testing ${dep}"
-			perl -Mblib="${S}" -M"${dep} ()" -e1
-		eend $? || failed+=( "$dep" )
-	done
-	if [[ ${failed[@]} ]]; then
-		echo
-		eerror "One or more modules failed compile:";
-		for dep in "${failed[@]}"; do
-			eerror "  ${dep}"
-		done
-		die "Failing due to module compilation errors";
-	fi
-	if ! has "network" "${DIST_TEST_OVERRIDE:-${DIST_TEST:-do parallel}}"; then
-		ewarn "This package needs network access to run its full test suite"
-		ewarn "For details, see:"
-		ewarn "https://wiki.gentoo.org/wiki/Project:Perl/maint-nodes/dev-perl/Ace"
-	else
-		perl-module_src_test
-	fi
-}

diff --git a/dev-perl/Ace/Ace-1.920.0-r4.ebuild b/dev-perl/Ace/Ace-1.920.0-r4.ebuild
deleted file mode 100644
index ceb1838ad0a..00000000000
--- a/dev-perl/Ace/Ace-1.920.0-r4.ebuild
+++ /dev/null
@@ -1,137 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DIST_NAME=AcePerl
-DIST_AUTHOR=LDS
-DIST_VERSION=1.92
-DIST_EXAMPLES=("examples/*")
-inherit perl-module toolchain-funcs
-
-DESCRIPTION="Object-Oriented Access to ACEDB Databases"
-
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test ) mirror"
-# License note: Indemnification and Attribution-if-Used bug #718936
-RDEPEND="
-	virtual/perl-Digest-MD5
-	dev-perl/Cache-Cache
-	dev-perl/GD
-"
-DEPEND="
-	elibc_glibc? (  net-libs/libtirpc net-libs/rpcsvc-proto )
-	elibc_musl? (   net-libs/libtirpc net-libs/rpcsvc-proto )
-	elibc_uclibc? ( net-libs/libtirpc net-libs/rpcsvc-proto )
-"
-BDEPEND="
-	${RDEPEND}
-	${DEPEND}
-"
-mydoc="DISCLAIMER.txt"
-src_prepare() {
-	eapply "${FILESDIR}/${PN}-1.92-rpcxs.patch"
-	eapply "${FILESDIR}/${PN}-1.92-gcc-nonvoid.patch"
-
-	cat > "${S}/acelib/wmake/DARWIN_DEF" <<EOF
-NAME = DARWIN
-COMPILER = $(tc-getCC) -fwritable-strings -DACEDB4 -DPOSIX
-LINKER = $(tc-getLD)
-
-LIBS = -lm
-
-EOF
-
-	if use elibc_glibc || use elibc_musl || use elibc_uclibc ; then
-		# Confusing name, should have been not specific to glibc
-		eapply "${FILESDIR}/${PN}-1.92-glibc26.patch"
-		export LIBS="-ltirpc"
-	fi
-
-	export MAKEOPTS="-j1"
-	perl-module_src_prepare
-}
-
-src_test() {
-	local MODULES=(
-		"Ace ${DIST_VERSION}"
-		"Ace::Freesubs 1.00"
-		"Ace::Graphics::Fk" # NO VERSION
-		"Ace::Graphics::Glyph"
-		"Ace::Graphics::Glyph::anchored_arrow"
-		"Ace::Graphics::Glyph::arrow"
-		"Ace::Graphics::Glyph::box"
-		"Ace::Graphics::Glyph::crossbox"
-		"Ace::Graphics::Glyph::dot"
-		"Ace::Graphics::Glyph::ex"
-		"Ace::Graphics::Glyph::graded_segments"
-		"Ace::Graphics::Glyph::group"
-		"Ace::Graphics::Glyph::line"
-		"Ace::Graphics::Glyph::primers"
-		"Ace::Graphics::Glyph::segments"
-		"Ace::Graphics::Glyph::span"
-		"Ace::Graphics::Glyph::toomany"
-		"Ace::Graphics::Glyph::transcript"
-		"Ace::Graphics::Glyph::triangle"
-		"Ace::Graphics::GlyphFactory"
-		"Ace::Graphics::Panel"
-		"Ace::Graphics::Track"
-		"Ace::Iterator 1.51"
-		"Ace::Local 1.05"
-		"Ace::Model 1.51"
-		"Ace::Object 1.66"
-		"Ace::Object::Wormbase"
-		"Ace::RPC 1.00"
-		"Ace::Sequence 1.51"
-		"Ace::Sequence::Feature"
-		"Ace::Sequence::FeatureList"
-		"Ace::Sequence::GappedAlignment 1.20"
-		"Ace::Sequence::Gene"
-		"Ace::Sequence::Homol"
-		"Ace::Sequence::Multi"
-		"Ace::Sequence::Transcript"
-		"Ace::SocketServer 1.01"
-		"GFF::Filehandle"
-# Need Ace::Browser
-# 		"Ace::Browser::AceSubs ${DIST_VERSION}"
-#		"Ace::Browser::GeneSubs ${DIST_VERSION}"
-#		"Ace::Browser::SearchSubs ${DIST_VERSION}"
-#		"Ace::Browser::SiteDefs ${DIST_VERSION}"
-#		"Ace::Browser::TreeSubs ${DIST_VERSION}"
-	)
-	local failed=()
-	for dep in "${MODULES[@]}"; do
-		ebegin "Compile testing ${dep}"
-			perl -Mblib="${S}" -M"${dep} ()" -e1
-		eend $? || failed+=( "$dep" )
-	done
-	if [[ ${failed[@]} ]]; then
-		echo
-		eerror "One or more modules failed compile:";
-		for dep in "${failed[@]}"; do
-			eerror "  ${dep}"
-		done
-		die "Failing due to module compilation errors";
-	fi
-	if ! has "network" "${DIST_TEST_OVERRIDE:-${DIST_TEST:-do parallel}}"; then
-		ewarn "This package needs network access to run its full test suite"
-		ewarn "For details, see:"
-		ewarn "https://wiki.gentoo.org/wiki/Project:Perl/maint-nodes/dev-perl/Ace"
-		ewarn ""
-	else
-		perl-module_src_test
-	fi
-}
-
-pkg_postinst() {
-	ewarn "This package requests that publications that made use of this software"
-	ewarn "in the process of their research attribute it."
-	ewarn ""
-	ewarn "This package's licensing terms also include indemnification clauses"
-	ewarn "which may apply to you, and are currently under decision in"
-	ewarn " Bug: https://bugs.gentoo.org/718936"
-	ewarn ""
-	ewarn "Please read ${EROOT}/usr/share/doc/${PF}/DISCLAIMER.*"
-}

diff --git a/dev-perl/Ace/Ace-1.920.0-r5.ebuild b/dev-perl/Ace/Ace-1.920.0-r5.ebuild
deleted file mode 100644
index 8d33aff5d25..00000000000
--- a/dev-perl/Ace/Ace-1.920.0-r5.ebuild
+++ /dev/null
@@ -1,139 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DIST_NAME=AcePerl
-DIST_AUTHOR=LDS
-DIST_VERSION=1.92
-DIST_EXAMPLES=("examples/*")
-inherit perl-module toolchain-funcs
-
-DESCRIPTION="Object-Oriented Access to ACEDB Databases"
-
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test ) mirror"
-# License note: Indemnification and Attribution-if-Used bug #718936
-RDEPEND="
-	virtual/perl-Digest-MD5
-	dev-perl/Cache-Cache
-	dev-perl/GD
-"
-DEPEND="
-	elibc_glibc? (  net-libs/libtirpc net-libs/rpcsvc-proto )
-	elibc_musl? (   net-libs/libtirpc net-libs/rpcsvc-proto )
-	elibc_uclibc? ( net-libs/libtirpc net-libs/rpcsvc-proto )
-"
-BDEPEND="
-	${RDEPEND}
-	${DEPEND}
-"
-mydoc="DISCLAIMER.txt"
-src_prepare() {
-	eapply "${FILESDIR}/${PN}-1.92-rpcxs.patch"
-	eapply "${FILESDIR}/${PN}-1.92-gcc-nonvoid.patch"
-	eapply "${FILESDIR}/${PN}-1.92-toolchain.patch"
-	cp "${FILESDIR}/${PN}-1.92-DARWIN_DEF" "${S}/acelib/wmake/DARWIN_DEF" || die "can't copy DARWIN_DEF"
-	if use elibc_glibc || use elibc_musl || use elibc_uclibc ; then
-		export LIBS="-ltirpc"
-	fi
-	export MAKEOPTS="-j1"
-	perl-module_src_prepare
-}
-src_compile() {
-	mymake=(
-		"AR=$(tc-getAR)"
-		"TARGET_CC=$(tc-getCC)"
-		"TARGET_LD=$(tc-getLD)"
-		"RANLIB=$(tc-getRANLIB)"
-	)
-	if use elibc_glibc || use elibc_musl || use elibc_uclibc ; then
-		mymake+=( "LIBS=-ltirpc -lm" )
-		mymake+=( "USEROPTS=-I/usr/include/tirpc -fPIC" )
-	fi
-	perl-module_src_compile
-}
-
-src_test() {
-	local MODULES=(
-		"Ace ${DIST_VERSION}"
-		"Ace::Freesubs 1.00"
-		"Ace::Graphics::Fk" # NO VERSION
-		"Ace::Graphics::Glyph"
-		"Ace::Graphics::Glyph::anchored_arrow"
-		"Ace::Graphics::Glyph::arrow"
-		"Ace::Graphics::Glyph::box"
-		"Ace::Graphics::Glyph::crossbox"
-		"Ace::Graphics::Glyph::dot"
-		"Ace::Graphics::Glyph::ex"
-		"Ace::Graphics::Glyph::graded_segments"
-		"Ace::Graphics::Glyph::group"
-		"Ace::Graphics::Glyph::line"
-		"Ace::Graphics::Glyph::primers"
-		"Ace::Graphics::Glyph::segments"
-		"Ace::Graphics::Glyph::span"
-		"Ace::Graphics::Glyph::toomany"
-		"Ace::Graphics::Glyph::transcript"
-		"Ace::Graphics::Glyph::triangle"
-		"Ace::Graphics::GlyphFactory"
-		"Ace::Graphics::Panel"
-		"Ace::Graphics::Track"
-		"Ace::Iterator 1.51"
-		"Ace::Local 1.05"
-		"Ace::Model 1.51"
-		"Ace::Object 1.66"
-		"Ace::Object::Wormbase"
-		"Ace::RPC 1.00"
-		"Ace::Sequence 1.51"
-		"Ace::Sequence::Feature"
-		"Ace::Sequence::FeatureList"
-		"Ace::Sequence::GappedAlignment 1.20"
-		"Ace::Sequence::Gene"
-		"Ace::Sequence::Homol"
-		"Ace::Sequence::Multi"
-		"Ace::Sequence::Transcript"
-		"Ace::SocketServer 1.01"
-		"GFF::Filehandle"
-# Need Ace::Browser
-# 		"Ace::Browser::AceSubs ${DIST_VERSION}"
-#		"Ace::Browser::GeneSubs ${DIST_VERSION}"
-#		"Ace::Browser::SearchSubs ${DIST_VERSION}"
-#		"Ace::Browser::SiteDefs ${DIST_VERSION}"
-#		"Ace::Browser::TreeSubs ${DIST_VERSION}"
-	)
-	local failed=()
-	for dep in "${MODULES[@]}"; do
-		ebegin "Compile testing ${dep}"
-			perl -Mblib="${S}" -M"${dep} ()" -e1
-		eend $? || failed+=( "$dep" )
-	done
-	if [[ ${failed[@]} ]]; then
-		echo
-		eerror "One or more modules failed compile:";
-		for dep in "${failed[@]}"; do
-			eerror "  ${dep}"
-		done
-		die "Failing due to module compilation errors";
-	fi
-	if ! has "network" "${DIST_TEST_OVERRIDE:-${DIST_TEST:-do parallel}}"; then
-		ewarn "This package needs network access to run its full test suite"
-		ewarn "For details, see:"
-		ewarn "https://wiki.gentoo.org/wiki/Project:Perl/maint-nodes/dev-perl/Ace"
-		ewarn ""
-	else
-		perl-module_src_test
-	fi
-}
-
-pkg_postinst() {
-	ewarn "This package requests that publications that made use of this software"
-	ewarn "in the process of their research attribute it."
-	ewarn ""
-	ewarn "This package's licensing terms also include indemnification clauses"
-	ewarn "which may apply to you, and are currently under decision in"
-	ewarn " Bug: https://bugs.gentoo.org/718936"
-	ewarn ""
-	ewarn "Please read ${EROOT}/usr/share/doc/${PF}/DISCLAIMER.*"
-}

diff --git a/dev-perl/Ace/files/Ace-1.92-glibc26.patch b/dev-perl/Ace/files/Ace-1.92-glibc26.patch
deleted file mode 100644
index 93913485b2f..00000000000
--- a/dev-perl/Ace/files/Ace-1.92-glibc26.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-From 79cbe4803f73eab5474e709b20ed570a44071182 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Andreas=20K=2E=20H=C3=BCttel?= <dilfridge@gentoo.org>
-Date: Sat, 31 Mar 2018 08:12:32 +1300
-Subject: Fix building with GlibC 2.26
-
-Bug: https://bugs.gentoo.org/637114
----
- acelib/wmake/LINUX_DEF | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/acelib/wmake/LINUX_DEF b/acelib/wmake/LINUX_DEF
-index ba96774..bd89334 100644
---- a/acelib/wmake/LINUX_DEF
-+++ b/acelib/wmake/LINUX_DEF
-@@ -18,9 +18,9 @@
- NAME = LINUX
- COMPILER = gcc -g -Wall -O2 -DACEDB4
- LINKER = gcc -g
--USEROPTS=-fPIC
-+USEROPTS=-I/usr/include/tirpc -fPIC
- 
--LIBS = -lm
-+LIBS = -ltirpc -lm
- Xt_LIBS = -L/usr/X11R6/lib -lXaw -lXt -lXmu -lXext -lX11
- LEX_LIBS = 
- 
--- 
-2.16.2
-


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-08-06 15:55 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-08-06 15:55 [gentoo-commits] repo/gentoo:master commit in: dev-perl/Ace/, dev-perl/Ace/files/ Kent Fredric
  -- strict thread matches above, loose matches on Subject: below --
2018-04-01 16:49 Kent Fredric

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox