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 AEFCF138359 for ; Wed, 5 Aug 2020 06:40:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DE82AE087F; Wed, 5 Aug 2020 06:40:35 +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 C72EAE087F for ; Wed, 5 Aug 2020 06:40:35 +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 8336A34F0AE for ; Wed, 5 Aug 2020 06:40:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EACFE303 for ; Wed, 5 Aug 2020 06:40:03 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1596609597.f969b88e97f9d8ee016f2838f1afd351981bfb67.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/exfatprogs/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/exfatprogs/Manifest sys-fs/exfatprogs/exfatprogs-1.0.4.ebuild sys-fs/exfatprogs/exfatprogs-9999.ebuild sys-fs/exfatprogs/metadata.xml X-VCS-Directories: sys-fs/exfatprogs/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: f969b88e97f9d8ee016f2838f1afd351981bfb67 X-VCS-Branch: master Date: Wed, 5 Aug 2020 06:40:03 +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: cd8bcd94-2cae-49c8-a79c-03a79e5b31cc X-Archives-Hash: cfb24342e4d59ea2c888733930ebc2de commit: f969b88e97f9d8ee016f2838f1afd351981bfb67 Author: Lars Wendler gentoo org> AuthorDate: Wed Aug 5 06:21:02 2020 +0000 Commit: Lars Wendler gentoo org> CommitDate: Wed Aug 5 06:39:57 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f969b88e sys-fs/exfatprogs: Initial commit Reported-by: Alexander Tsoy tsoy.me> Closes: https://bugs.gentoo.org/735980 Package-Manager: Portage-3.0.1, Repoman-2.3.23 Signed-off-by: Lars Wendler gentoo.org> sys-fs/exfatprogs/Manifest | 1 + sys-fs/exfatprogs/exfatprogs-1.0.4.ebuild | 25 +++++++++++++++++++++++++ sys-fs/exfatprogs/exfatprogs-9999.ebuild | 25 +++++++++++++++++++++++++ sys-fs/exfatprogs/metadata.xml | 11 +++++++++++ 4 files changed, 62 insertions(+) diff --git a/sys-fs/exfatprogs/Manifest b/sys-fs/exfatprogs/Manifest new file mode 100644 index 00000000000..6df02c6aa3d --- /dev/null +++ b/sys-fs/exfatprogs/Manifest @@ -0,0 +1 @@ +DIST exfatprogs-1.0.4.tar.xz 255736 BLAKE2B de2d64853e94944dd5c1f961a94daf5d31266a4b8f51e20a0528344fed24a5482ae6412f39d47b7da9807d5b8d10f87106b88818318f26339c0c8e05d52b247d SHA512 c3d9b92101b9461d47a9b3c7a43a99b90160ec81121662b04947aea18ad1b2381dc1d71c491bc4a5f2439120d6c21533ba2714a548134d9c918c4b1c72063d45 diff --git a/sys-fs/exfatprogs/exfatprogs-1.0.4.ebuild b/sys-fs/exfatprogs/exfatprogs-1.0.4.ebuild new file mode 100644 index 00000000000..f262a17592a --- /dev/null +++ b/sys-fs/exfatprogs/exfatprogs-1.0.4.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Userspace utilities for new exfat filesystem (kernel 5.7+)" +HOMEPAGE="https://github.com/exfatprogs/exfatprogs" +if [[ "${PV}" == *9999 ]] ; then + inherit autotools git-r3 + EGIT_REPO_URI="https://github.com/exfatprogs/exfatprogs.git" +else + SRC_URI="https://github.com/${PN}/${PN}/releases/download/${PV}/${P}.tar.xz" + KEYWORDS="~amd64 ~x86" +fi +LICENSE="GPL-2" +SLOT="0" + +IUSE="" + +RDEPEND="!sys-fs/exfat-utils" + +src_prepare() { + default + [[ "${PV}" == *9999 ]] && eautoreconf +} diff --git a/sys-fs/exfatprogs/exfatprogs-9999.ebuild b/sys-fs/exfatprogs/exfatprogs-9999.ebuild new file mode 100644 index 00000000000..f262a17592a --- /dev/null +++ b/sys-fs/exfatprogs/exfatprogs-9999.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Userspace utilities for new exfat filesystem (kernel 5.7+)" +HOMEPAGE="https://github.com/exfatprogs/exfatprogs" +if [[ "${PV}" == *9999 ]] ; then + inherit autotools git-r3 + EGIT_REPO_URI="https://github.com/exfatprogs/exfatprogs.git" +else + SRC_URI="https://github.com/${PN}/${PN}/releases/download/${PV}/${P}.tar.xz" + KEYWORDS="~amd64 ~x86" +fi +LICENSE="GPL-2" +SLOT="0" + +IUSE="" + +RDEPEND="!sys-fs/exfat-utils" + +src_prepare() { + default + [[ "${PV}" == *9999 ]] && eautoreconf +} diff --git a/sys-fs/exfatprogs/metadata.xml b/sys-fs/exfatprogs/metadata.xml new file mode 100644 index 00000000000..f694d91a6b5 --- /dev/null +++ b/sys-fs/exfatprogs/metadata.xml @@ -0,0 +1,11 @@ + + + + + base-system@gentoo.org + Gentoo Base System + + + exfatprogs/exfatprogs + +