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 EFDA1138359 for ; Thu, 20 Aug 2020 15:21:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1775DE0C5A; Thu, 20 Aug 2020 15:21:18 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 EF969E0C5A for ; Thu, 20 Aug 2020 15:21:17 +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 C152234F3B0 for ; Thu, 20 Aug 2020 15:21:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 41CEA2EE for ; Thu, 20 Aug 2020 15:21:15 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1597936866.339cd2fbceb72e5a41f149efee1661d6ac0bc60c.whissi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/cramfs/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/cramfs/Manifest sys-fs/cramfs/cramfs-2.1.ebuild X-VCS-Directories: sys-fs/cramfs/ X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: 339cd2fbceb72e5a41f149efee1661d6ac0bc60c X-VCS-Branch: master Date: Thu, 20 Aug 2020 15:21:15 +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: 4e701d1f-e0c5-4128-b47f-9d7137deda43 X-Archives-Hash: ccf36668963ca3c4bb5181cf6e4a943a commit: 339cd2fbceb72e5a41f149efee1661d6ac0bc60c Author: Thomas Deutschmann gentoo org> AuthorDate: Thu Aug 20 15:21:06 2020 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Thu Aug 20 15:21:06 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=339cd2fb sys-fs/cramfs: bump to v2.1 Switched to (new) upstream on GitHub. Package-Manager: Portage-3.0.3, Repoman-3.0.0 Signed-off-by: Thomas Deutschmann gentoo.org> sys-fs/cramfs/Manifest | 1 + sys-fs/cramfs/cramfs-2.1.ebuild | 30 ++++++++++++++++++++++++++++++ 2 files changed, 31 insertions(+) diff --git a/sys-fs/cramfs/Manifest b/sys-fs/cramfs/Manifest index dd080da59d9..e1ec6d7cd35 100644 --- a/sys-fs/cramfs/Manifest +++ b/sys-fs/cramfs/Manifest @@ -1 +1,2 @@ DIST cramfs-1.1.tar.gz 24179 BLAKE2B adb5d1682dbc7405333b735f145cdaffea770c09a60c15a79d1973a365b2f013ebbd728e05f5a20559bace237a6f685c6afba557249ee2049bb6827d5da3e9f8 SHA512 6c18dbe32df57f7d132fb2a59a917ad381156ca1f720c1ad0997ca81c62e82fd43ebb0339c5a66d5b144a72ce5c7ae93596522fe2698259f2b68c31db26e3b63 +DIST cramfs-2.1.tar.gz 33595 BLAKE2B 599f9af8f02cb7c17f58b78dde59f162bbcbe9008d2941fb4f8f9accfd4e6d371b9f31ae1a65a3e3d10458b53acd927fdab9049c082a132f139abdddb9f6890c SHA512 76137d1347fa7d1907590cfd7f3c5b48f2422bc2dd95fb2ae5b33561e5d5f179634a98d117f1f1344c15362f4282bce87cf9d527b5512f9badb1a2c024755eee diff --git a/sys-fs/cramfs/cramfs-2.1.ebuild b/sys-fs/cramfs/cramfs-2.1.ebuild new file mode 100644 index 00000000000..856b3d1d26a --- /dev/null +++ b/sys-fs/cramfs/cramfs-2.1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +inherit toolchain-funcs + +DESCRIPTION="Linux filesystem designed to be simple, small, and to compress things well" +HOMEPAGE="https://github.com/npitre/cramfs-tools" +SRC_URI="https://github.com/npitre/cramfs-tools/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86" +IUSE="" + +DEPEND="sys-libs/zlib:=" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/cramfs-tools-${PV}" + +src_compile() { + emake CFLAGS="${CFLAGS}" CC="$(tc-getCC)" +} + +src_install() { + into / + dosbin mkcramfs cramfsck + dodoc README NOTES +}