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 2E150138334 for ; Sun, 20 Oct 2019 22:37:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B815CE0B33; Sun, 20 Oct 2019 22:37:29 +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 9EF83E0B33 for ; Sun, 20 Oct 2019 22:37:29 +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 1AF9134C0BE for ; Sun, 20 Oct 2019 22:37:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8E598838 for ; Sun, 20 Oct 2019 22:37:25 +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: <1571611017.fdce6d04465e2e25a6915f286965521b702ded70.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/colm/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/colm/colm-0.13.0.6-r1.ebuild X-VCS-Directories: dev-util/colm/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: fdce6d04465e2e25a6915f286965521b702ded70 X-VCS-Branch: master Date: Sun, 20 Oct 2019 22:37:25 +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: 0b20af83-e798-4705-a774-8f1921893804 X-Archives-Hash: 9fec2a390143fe3896eb6176d00fc353 commit: fdce6d04465e2e25a6915f286965521b702ded70 Author: Alessandro Barbieri gmail com> AuthorDate: Sun Oct 20 22:20:08 2019 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Oct 20 22:36:57 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fdce6d04 dev-util/colm: various fixes * EAPI 7 * license fix * do not install static library Closes: https://bugs.gentoo.org/698066 Closes: https://github.com/gentoo/gentoo/pull/13293 Package-Manager: Portage-2.3.77, Repoman-2.3.17 Signed-off-by: Alessandro Barbieri gmail.com> Signed-off-by: David Seifert gentoo.org> dev-util/colm/colm-0.13.0.6-r1.ebuild | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/dev-util/colm/colm-0.13.0.6-r1.ebuild b/dev-util/colm/colm-0.13.0.6-r1.ebuild new file mode 100644 index 00000000000..24c79169a62 --- /dev/null +++ b/dev-util/colm/colm-0.13.0.6-r1.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="COmputer Language Manipulation" +HOMEPAGE="https://www.colm.net/open-source/colm/" +SRC_URI="https://www.colm.net/files/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~x86 ~amd64-linux ~x86-linux" + +BDEPEND="app-text/asciidoc" + +src_configure() { + econf --disable-static +} + +src_install() { + default + find "${D}" -name '*.la' -delete || die +}