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 5AFC31382C5 for ; Mon, 15 Feb 2021 15:33:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 85E9EE08FC; Mon, 15 Feb 2021 15:33:54 +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 4B9D4E08FC for ; Mon, 15 Feb 2021 15:33:54 +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 E3652340FCD for ; Mon, 15 Feb 2021 15:33:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 49DFC478 for ; Mon, 15 Feb 2021 15:33:51 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1613403217.06dc77c945127aabaaa05943d3a46729f916c364.vapier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblzw/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/liblzw/Manifest dev-libs/liblzw/liblzw-0.3.ebuild X-VCS-Directories: dev-libs/liblzw/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 06dc77c945127aabaaa05943d3a46729f916c364 X-VCS-Branch: master Date: Mon, 15 Feb 2021 15:33:51 +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: e89095ac-cd13-4c07-a117-ab55f6765736 X-Archives-Hash: 9a37467119bb5df6ddebc58615e66eb7 commit: 06dc77c945127aabaaa05943d3a46729f916c364 Author: Mike Frysinger gentoo org> AuthorDate: Mon Feb 15 15:31:51 2021 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Mon Feb 15 15:33:37 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06dc77c9 dev-libs/liblzw: version bump to 0.3 Signed-off-by: Mike Frysinger gentoo.org> dev-libs/liblzw/Manifest | 1 + dev-libs/liblzw/liblzw-0.3.ebuild | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+) diff --git a/dev-libs/liblzw/Manifest b/dev-libs/liblzw/Manifest index 5a78d53640f..fd28ca8653f 100644 --- a/dev-libs/liblzw/Manifest +++ b/dev-libs/liblzw/Manifest @@ -1 +1,2 @@ DIST liblzw-0.2.tar.lzma 868300 BLAKE2B 6346fb0aa5d2a199276faf04a7ac6fd571d0dd06952028ff5b49c7ec312b0ba77b219be6d5a000b4477f6c84ab30ac3818e58e1165033746f675265f4fb38ef2 SHA512 46b14fe83793e9611c9ee969f699fe752f4d2df46a53b0f975fbce9805259fe4024c42df6f4946fc6dd7270b9b15307c54f31417309806ab6c616abcee73d9bf +DIST liblzw-0.3.tar.xz 901084 BLAKE2B 4aa9689f82567b5ad1ac399eed8f58dfb1964f91c74cba2b291458dac89b0c4ce6a110b24b5a8f69bbcddfb0cf14fa0f80107275c16b7553375bbf38e035262a SHA512 d7fcb5c424c87a3692a8a18cd9f4cf57a7faa4f59f01cfdeff335633fb3be6c577409d996d59273f4453eb157dd9bc8fa6ec2868dbca635147d27d3fd00016f9 diff --git a/dev-libs/liblzw/liblzw-0.3.ebuild b/dev-libs/liblzw/liblzw-0.3.ebuild new file mode 100644 index 00000000000..ffb0f9291ca --- /dev/null +++ b/dev-libs/liblzw/liblzw-0.3.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +DESCRIPTION="small C library for reading LZW compressed files (.Z)" +HOMEPAGE="https://github.com/vapier/liblzw" +SRC_URI="https://github.com/vapier/liblzw/releases/download/v${PV}/${P}.tar.xz" + +LICENSE="public-domain" +SLOT="0" +KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~m68k ~s390 ~x86" +IUSE="static" + +src_configure() { + econf --disable-werror $(use_enable static) +} + +src_install() { + default + find "${D}" -name '*.la' -delete || die +}