From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 45C2258973 for ; Wed, 27 Jan 2016 14:49:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9B91A21C015; Wed, 27 Jan 2016 14:49:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 43F7021C015 for ; Wed, 27 Jan 2016 14:49:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D6CA43407B8 for ; Wed, 27 Jan 2016 14:49:23 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9420E1068 for ; Wed, 27 Jan 2016 14:49:17 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1453906151.b8680d26f53304b6dc2f9122fb1dfb012c4af3fe.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/pdlzip/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-arch/pdlzip/Manifest app-arch/pdlzip/pdlzip-1.6.ebuild X-VCS-Directories: app-arch/pdlzip/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: b8680d26f53304b6dc2f9122fb1dfb012c4af3fe X-VCS-Branch: master Date: Wed, 27 Jan 2016 14:49:17 +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-Archives-Salt: f61ee98b-0f4b-4dca-b602-702044e804da X-Archives-Hash: d730adfc4f6084ee546ecd83220ae0ba commit: b8680d26f53304b6dc2f9122fb1dfb012c4af3fe Author: Michał Górny gentoo org> AuthorDate: Wed Jan 27 14:48:12 2016 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Jan 27 14:49:11 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8680d26 app-arch/pdlzip: Bump to 1.6 app-arch/pdlzip/Manifest | 1 + app-arch/pdlzip/pdlzip-1.6.ebuild | 26 ++++++++++++++++++++++++++ 2 files changed, 27 insertions(+) diff --git a/app-arch/pdlzip/Manifest b/app-arch/pdlzip/Manifest index 4c4215a..40407ae 100644 --- a/app-arch/pdlzip/Manifest +++ b/app-arch/pdlzip/Manifest @@ -1 +1,2 @@ DIST pdlzip-1.5.tar.gz 64443 SHA256 0c2e354cfe62f34ab2e12ac69f45242d8befcfdbdca645a62f039a66d3e63367 SHA512 2e900b591c13c1be50f3dcd76d9a46495f90c1335787fedb09e7c7694371d9cd117bc9158748ff8d12a09369ad4d56e2a33026779bae45f7e7d4adbaceb12585 WHIRLPOOL a86aa8d285f6b8d5efc26051c82ee2033c2a49ba296aacd6404914fc2b149a00ad65b3b49609b8bc3d137e2ca14096c390453d1ad5e37e0ccc56531b79a51071 +DIST pdlzip-1.6.tar.gz 64843 SHA256 6520a45e96487374b4b66997f9855d67bc5dd7beab4ffbca03dff6ae7b40b9ff SHA512 befdcde0826fb8d9f7809b10ed8f9cb7be34d86b19f426bd18637589d66d70275025d51bcd063c837a5db0ed274664f7170468f087501ab764d0edc96cadde5f WHIRLPOOL 081441d87f512e1f7a86e6178139cf995876c58d33ff943f0fa00bf8f868022a0c0897875c4a0e898b4c48e38c43e7629fdf3bce8f37930c2e0f437633ed3ec5 diff --git a/app-arch/pdlzip/pdlzip-1.6.ebuild b/app-arch/pdlzip/pdlzip-1.6.ebuild new file mode 100644 index 0000000..4c1b4e4 --- /dev/null +++ b/app-arch/pdlzip/pdlzip-1.6.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit toolchain-funcs + +DESCRIPTION="Public-domain version of lzip compressor" +HOMEPAGE="http://www.nongnu.org/lzip/pdlzip.html" +SRC_URI="http://download.savannah.gnu.org/releases-noredirect/lzip/pdlzip/${P}.tar.gz" + +LICENSE="public-domain" +SLOT="0" +KEYWORDS="~amd64 ~mips ~x86 ~x86-fbsd" +IUSE="" + +src_configure() { + # not autotools-based + ./configure \ + --prefix="${EPREFIX}"/usr \ + CC="$(tc-getCC)" \ + CPPFLAGS="${CPPFLAGS}" \ + CFLAGS="${CFLAGS}" \ + LDFLAGS="${LDFLAGS}" || die +}