From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6B2021382C5 for ; Wed, 28 Apr 2021 21:26:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C704FE084A; Wed, 28 Apr 2021 21:26:00 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B1764E084A for ; Wed, 28 Apr 2021 21:26:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9F92A340F4A for ; Wed, 28 Apr 2021 21:25:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3F8945C9 for ; Wed, 28 Apr 2021 21:25:58 +0000 (UTC) From: "Sergei Trofimovich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" Message-ID: <1619645155.8af307971f9af69a21d9a423650a5db5b9857ed2.slyfox@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-ftp/proftpd/files/, net-ftp/proftpd/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-ftp/proftpd/files/proftpd-1.3.7a-slibtool.patch net-ftp/proftpd/proftpd-1.3.7a-r1.ebuild X-VCS-Directories: net-ftp/proftpd/files/ net-ftp/proftpd/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: 8af307971f9af69a21d9a423650a5db5b9857ed2 X-VCS-Branch: master Date: Wed, 28 Apr 2021 21:25:58 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 2553421b-a87f-4972-a75d-ee3ad39fb69f X-Archives-Hash: e82dfb41509d4c9ba4cc44b2f50d9237 commit: 8af307971f9af69a21d9a423650a5db5b9857ed2 Author: Sergei Trofimovich gentoo org> AuthorDate: Wed Apr 28 21:25:45 2021 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Wed Apr 28 21:25:55 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8af30797 net-ftp/proftpd: backport upstream slibtool workaround Reported-by: Toralf Förster Closes: https://bugs.gentoo.org/778332 Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Sergei Trofimovich gentoo.org> .../proftpd/files/proftpd-1.3.7a-slibtool.patch | 34 ++++++++++++++++++++++ net-ftp/proftpd/proftpd-1.3.7a-r1.ebuild | 1 + 2 files changed, 35 insertions(+) diff --git a/net-ftp/proftpd/files/proftpd-1.3.7a-slibtool.patch b/net-ftp/proftpd/files/proftpd-1.3.7a-slibtool.patch new file mode 100644 index 00000000000..35676777da0 --- /dev/null +++ b/net-ftp/proftpd/files/proftpd-1.3.7a-slibtool.patch @@ -0,0 +1,34 @@ +https://bugs.gentoo.org/778332 +https://github.com/proftpd/proftpd/commit/4ffe04158840130e023ed3d3e558b8d70e28e20e + +From 2a15ce409f70c67ba9b1e09de67c3fca0b38eff8 Mon Sep 17 00:00:00 2001 +From: orbea +Date: Sun, 21 Mar 2021 12:38:52 -0700 +Subject: [PATCH] build: Fix linking the static libsupp.a library. + +--- + configure.in | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +--- a/configure.in ++++ b/configure.in +@@ -88,7 +88,7 @@ if test $ac_cv_prog_gcc = no -a "$OSTYPE" = "-DHPUX10"; then + CFLAGS="$CFLAGS -Ae" + fi + +-LDFLAGS="-L\$(top_srcdir)/lib -L\$(top_builddir)/lib $LDFLAGS" ++LDFLAGS="-Wl,-L\$(top_srcdir)/lib,-L\$(top_builddir)/lib $LDFLAGS" + + # AIX has issues with the -rdynamic linker flag. How many different AIX + # versions should we support here? +--- a/configure ++++ b/configure +@@ -14932,7 +14944,7 @@ if test $ac_cv_c_compiler_gnu = no -a "$OSTYPE" = "-DHPUX10"; then + CFLAGS="$CFLAGS -Ae" + fi + +-LDFLAGS="-L\$(top_srcdir)/lib -L\$(top_builddir)/lib $LDFLAGS" ++LDFLAGS="-Wl,-L\$(top_srcdir)/lib,-L\$(top_builddir)/lib $LDFLAGS" + + # AIX has issues with the -rdynamic linker flag. How many different AIX + # versions should we support here? diff --git a/net-ftp/proftpd/proftpd-1.3.7a-r1.ebuild b/net-ftp/proftpd/proftpd-1.3.7a-r1.ebuild index 249498784d2..7bef13f65e4 100644 --- a/net-ftp/proftpd/proftpd-1.3.7a-r1.ebuild +++ b/net-ftp/proftpd/proftpd-1.3.7a-r1.ebuild @@ -72,6 +72,7 @@ PATCHES=( "${FILESDIR}"/${PN}-1.3.6-use-trace.patch "${FILESDIR}"/${P}-tinfow-segv.patch "${FILESDIR}"/${P}-no-ncurses.patch + "${FILESDIR}"/${P}-slibtool.patch ) RESTRICT=test # Some tests are ran in chroot. Confuse sandbox.