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 E0FEB1382C5 for ; Sat, 6 Mar 2021 09:55:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 29CA6E0858; Sat, 6 Mar 2021 09:55:57 +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 0E160E0858 for ; Sat, 6 Mar 2021 09:55:57 +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 EAB84340E82 for ; Sat, 6 Mar 2021 09:55:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5937053 for ; Sat, 6 Mar 2021 09:55:54 +0000 (UTC) From: "Hanno Böck" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Hanno Böck" Message-ID: <1615024548.6e1f76a56c7dfe8ceaef8e7793d266ccdc567add.hanno@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/courier-unicode/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/courier-unicode/Manifest net-libs/courier-unicode/courier-unicode-2.1.2.ebuild X-VCS-Directories: net-libs/courier-unicode/ X-VCS-Committer: hanno X-VCS-Committer-Name: Hanno Böck X-VCS-Revision: 6e1f76a56c7dfe8ceaef8e7793d266ccdc567add X-VCS-Branch: master Date: Sat, 6 Mar 2021 09:55: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: 17e1808e-8b3b-4247-bd69-a269f99de6ea X-Archives-Hash: c706e70afc5c1c849e49e483af409fa3 commit: 6e1f76a56c7dfe8ceaef8e7793d266ccdc567add Author: Hanno Böck gentoo org> AuthorDate: Sat Mar 6 09:55:48 2021 +0000 Commit: Hanno Böck gentoo org> CommitDate: Sat Mar 6 09:55:48 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e1f76a5 net-libs/courier-unicode: Version bump Signed-off-by: Hanno Böck gentoo.org> Package-Manager: Portage-3.0.16, Repoman-3.0.2 net-libs/courier-unicode/Manifest | 1 + .../courier-unicode/courier-unicode-2.1.2.ebuild | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+) diff --git a/net-libs/courier-unicode/Manifest b/net-libs/courier-unicode/Manifest index ac9ea4ec33d..5fcf3d6ef70 100644 --- a/net-libs/courier-unicode/Manifest +++ b/net-libs/courier-unicode/Manifest @@ -1 +1,2 @@ +DIST courier-unicode-2.1.2.tar.bz2 445242 BLAKE2B 118afeefbb0d957f3a0b7a39e573edbdc3fa1d85c1028f4aca46137402f01a6b4d5df11c48e9d8235483ba277e187863d3f8f7b1cf426a1b5f2d40eb243cca4f SHA512 97d1c12917a1d415b4dfb8155e2573e0e4101112433107e252e393765fa88edd5aa8d349a2c201ea951bf0e9d51ac0f0c6444494c308fbe9909929364661bc24 DIST courier-unicode-2.1.tar.bz2 447917 BLAKE2B 0d225849322ccaacea9eef49225952ac5219ab2967f30ca1c0412b73790b77682a077c2c08cff7b606cc1fdc6542db7e0895afdf7ba34f73e2a71aba5311df99 SHA512 1ee0bb3a548bfae4ebdc92ff8eeff5d22705c0df55e37e98880a12f1bfb186034e0c1ea2e1f03073b40e1d11147828304be93467d5d51e394fe39fd57bbbb46e diff --git a/net-libs/courier-unicode/courier-unicode-2.1.2.ebuild b/net-libs/courier-unicode/courier-unicode-2.1.2.ebuild new file mode 100644 index 00000000000..6948fe87918 --- /dev/null +++ b/net-libs/courier-unicode/courier-unicode-2.1.2.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Unicode library used by the courier mail server" +HOMEPAGE="https://www.courier-mta.org/" +SRC_URI="mirror://sourceforge/courier/${P}.tar.bz2" +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" +IUSE="" + +src_configure() { + econf --disable-static +} + +src_install() { + default + find "${D}" -name '*.la' -delete || die + dodoc AUTHORS ChangeLog README +}