summaryrefslogtreecommitdiff
path: root/sys-fs/quotatool
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-12 19:09:37 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-12 19:09:37 -0500
commitb590c8d7572b727d565cc0b8ff660d43569845de (patch)
tree06f7a4102ea4e845df8b66660f252920d52952f9 /sys-fs/quotatool
parent24f9cbfc4c34fdb6a6e03311674414e881ceab47 (diff)
downloadbaldeagleos-repo-b590c8d7572b727d565cc0b8ff660d43569845de.tar.gz
baldeagleos-repo-b590c8d7572b727d565cc0b8ff660d43569845de.tar.xz
baldeagleos-repo-b590c8d7572b727d565cc0b8ff660d43569845de.zip
Adding metadata
Diffstat (limited to 'sys-fs/quotatool')
-rw-r--r--sys-fs/quotatool/Manifest1
-rw-r--r--sys-fs/quotatool/metadata.xml9
-rw-r--r--sys-fs/quotatool/quotatool-1.6.5.ebuild27
3 files changed, 37 insertions, 0 deletions
diff --git a/sys-fs/quotatool/Manifest b/sys-fs/quotatool/Manifest
new file mode 100644
index 000000000000..7c57c1a771d2
--- /dev/null
+++ b/sys-fs/quotatool/Manifest
@@ -0,0 +1 @@
+DIST quotatool-1.6.5.gh.tar.gz 108551 BLAKE2B 709d239b3157fd3751305b68374e4fd3ff4196aba268a8e134ef0d7794e2e3b8c9cfc81f44573fded3fac26089aa654023850b34dfa7a7801cdb9a144f19d073 SHA512 b22278445b5c2c0c71277f95a7d79862e96da4b644679efdfd99f18bc74780e88ae732f8e1dba81d50a97f132e6111b0000e34c2e1d1b1a05735654967a56268
diff --git a/sys-fs/quotatool/metadata.xml b/sys-fs/quotatool/metadata.xml
new file mode 100644
index 000000000000..f308c62eb267
--- /dev/null
+++ b/sys-fs/quotatool/metadata.xml
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://docs.baldeagleos.com/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="project">
+ <email>base-system@gentoo.org</email>
+ <name>Gentoo Base System</name>
+ </maintainer>
+ <origin>baldeagleos-repo</origin>
+</pkgmetadata>
diff --git a/sys-fs/quotatool/quotatool-1.6.5.ebuild b/sys-fs/quotatool/quotatool-1.6.5.ebuild
new file mode 100644
index 000000000000..667fdde6d922
--- /dev/null
+++ b/sys-fs/quotatool/quotatool-1.6.5.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2024 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_prepare() {
+ default
+ sed -e 's/gcc/${CC}/' -i tools/depend.sh || die # bug 931077
+}
+
+src_configure() {
+ tc-export CC
+ default
+}