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 F1637138359 for ; Sun, 23 Aug 2020 17:02:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4B4CDE0830; Sun, 23 Aug 2020 17:02:00 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 3371AE0831 for ; Sun, 23 Aug 2020 17:02:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 F26E434090F for ; Sun, 23 Aug 2020 17:01:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5150F33B for ; Sun, 23 Aug 2020 17:01:54 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1598202091.9cb2f52e90d4c3895338713b9ee8fcecad15936b.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/glpk/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-mathematics/glpk/glpk-4.65.ebuild X-VCS-Directories: sci-mathematics/glpk/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 9cb2f52e90d4c3895338713b9ee8fcecad15936b X-VCS-Branch: master Date: Sun, 23 Aug 2020 17:01:54 +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: f6efb6a9-a60a-4847-804b-f6f4455b35e6 X-Archives-Hash: b044e5d7e9aab9b986835956360e5939 commit: 9cb2f52e90d4c3895338713b9ee8fcecad15936b Author: David Seifert gentoo org> AuthorDate: Sun Aug 23 17:01:31 2020 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Aug 23 17:01:31 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9cb2f52e sci-mathematics/glpk: Remove libtool archives Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: David Seifert gentoo.org> sci-mathematics/glpk/glpk-4.65.ebuild | 22 +++++++++++++++------- 1 file changed, 15 insertions(+), 7 deletions(-) diff --git a/sci-mathematics/glpk/glpk-4.65.ebuild b/sci-mathematics/glpk/glpk-4.65.ebuild index a08a4af54c4..30668cbb935 100644 --- a/sci-mathematics/glpk/glpk-4.65.ebuild +++ b/sci-mathematics/glpk/glpk-4.65.ebuild @@ -6,13 +6,13 @@ EAPI=7 inherit autotools flag-o-matic toolchain-funcs DESCRIPTION="GNU Linear Programming Kit" -LICENSE="GPL-3" HOMEPAGE="https://www.gnu.org/software/glpk/" SRC_URI="mirror://gnu/${PN}/${P}.tar.gz" +LICENSE="GPL-3" SLOT="0/40" -IUSE="doc examples gmp odbc mysql static-libs" KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~x86-macos" +IUSE="doc examples gmp odbc mysql" BDEPEND="virtual/pkgconfig" DEPEND=" @@ -21,13 +21,18 @@ DEPEND=" sys-libs/zlib:0= gmp? ( dev-libs/gmp:0= ) mysql? ( dev-db/mysql-connector-c ) - odbc? ( || ( dev-db/libiodbc:0 dev-db/unixODBC:0 ) )" + odbc? ( + || ( + dev-db/libiodbc:0 + dev-db/unixODBC:0 + ) + )" RDEPEND="${DEPEND}" PATCHES=( - "${FILESDIR}/${PN}-4.65-fix-mysql-include-prefix.patch" - "${FILESDIR}/${PN}-4.65-debundle-system-libs.patch" - "${FILESDIR}/${PN}-4.65-longstep_verbosity.patch" + "${FILESDIR}"/${PN}-4.65-fix-mysql-include-prefix.patch + "${FILESDIR}"/${PN}-4.65-debundle-system-libs.patch + "${FILESDIR}"/${PN}-4.65-longstep_verbosity.patch ) src_prepare() { @@ -52,9 +57,9 @@ src_configure() { fi econf ${myconf} \ + --disable-static \ $(use_enable mysql) \ $(use_enable odbc) \ - $(use_enable static-libs static) \ $(use_with gmp) } @@ -66,4 +71,7 @@ src_install() { docompress -x "/usr/share/doc/${PF}/examples" fi use doc && dodoc doc/*.pdf doc/notes/*.pdf doc/*.txt + + # no static archives + find "${D}" -name '*.la' -delete || die }