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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id AEC57158089 for ; Sun, 8 Oct 2023 03:11:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 89BAB2BC01F; Sun, 8 Oct 2023 03:11:04 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6BDDC2BC01C for ; Sun, 8 Oct 2023 03:11:04 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 722EB335D12 for ; Sun, 8 Oct 2023 03:11:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BCF5A9F5 for ; Sun, 8 Oct 2023 03:11:01 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1696734556.916f8ad7636d53c5a648c9b0da10c641355e99a9.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/quotatool/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/quotatool/Manifest sys-fs/quotatool/quotatool-1.6.3.ebuild X-VCS-Directories: sys-fs/quotatool/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 916f8ad7636d53c5a648c9b0da10c641355e99a9 X-VCS-Branch: master Date: Sun, 8 Oct 2023 03:11:01 +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: 89bdd993-9bf1-482c-b0bd-a555c23130ec X-Archives-Hash: 45babd785c0c0919468b020ef235de75 commit: 916f8ad7636d53c5a648c9b0da10c641355e99a9 Author: Sam James gentoo org> AuthorDate: Sun Oct 8 03:09:16 2023 +0000 Commit: Sam James gentoo org> CommitDate: Sun Oct 8 03:09:16 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=916f8ad7 sys-fs/quotatool: add 1.6.3 Signed-off-by: Sam James gentoo.org> sys-fs/quotatool/Manifest | 1 + sys-fs/quotatool/quotatool-1.6.3.ebuild | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+) diff --git a/sys-fs/quotatool/Manifest b/sys-fs/quotatool/Manifest index dffdf12dfa58..bb35f21a5def 100644 --- a/sys-fs/quotatool/Manifest +++ b/sys-fs/quotatool/Manifest @@ -1 +1,2 @@ DIST quotatool-1.6.2.tar.gz 147691 BLAKE2B 22eb1f5012b0dd19d52a795a493e7a51e9bab0d6e71b10d632a4f61faf6b54db5b0b6096fdc38b0fdd2879ebc2a4cb44e7279e735e09436a9def5018814b3478 SHA512 882bdc43e49ef69b1b2899da01faf7853524f67585b716bba195ea89a250a90a7796a225b7d141b68bf45c7524d9fe506000998e6e7dc113b559f95e6ed21e2c +DIST quotatool-1.6.3.gh.tar.gz 105408 BLAKE2B aad673bab49071122c3ddb64a6f9e3006b2fa2b958e00be35decf13b4cf8fb0d6e2f06278287275a90ae04a31e48e492e2be9f7abbc8522e9c454b86aaaa5271 SHA512 d21f41bf4d45116241885b9ba249ad49cd55043773ca1b6663b0d7ad2ad531d7411bc812338973e82b50c402987bf3910edd455ab83a8fd66c2b369c22297693 diff --git a/sys-fs/quotatool/quotatool-1.6.3.ebuild b/sys-fs/quotatool/quotatool-1.6.3.ebuild new file mode 100644 index 000000000000..d5327b38b5c1 --- /dev/null +++ b/sys-fs/quotatool/quotatool-1.6.3.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit toolchain-funcs + +DESCRIPTION="Command-line utility for filesystem quotas" +HOMEPAGE="https://quotatool.ekenberg.se/" +#SRC_URI="https://quotatool.ekenberg.se/${P}.tar.gz" +SRC_URI="https://github.com/ekenberg/quotatool/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86" + +RDEPEND="sys-fs/quota" + +src_configure() { + tc-export CC + default +}