From: "Lars Wendler" <polynomial-c@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/quota/
Date: Tue, 5 Sep 2017 20:40:13 +0000 (UTC) [thread overview]
Message-ID: <1504644007.7a763126417c545024f2b88aeb70d210e48b9ad7.polynomial-c@gentoo> (raw)
commit: 7a763126417c545024f2b88aeb70d210e48b9ad7
Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 5 20:33:13 2017 +0000
Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Tue Sep 5 20:40:07 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a763126
sys-fs/quota: Bump to version 4.04
Package-Manager: Portage-2.3.8, Repoman-2.3.3
sys-fs/quota/Manifest | 1 +
sys-fs/quota/quota-4.04.ebuild | 72 ++++++++++++++++++++++++++++++++++++++++++
2 files changed, 73 insertions(+)
diff --git a/sys-fs/quota/Manifest b/sys-fs/quota/Manifest
index 1311971bb79..a032eaee588 100644
--- a/sys-fs/quota/Manifest
+++ b/sys-fs/quota/Manifest
@@ -1,3 +1,4 @@
DIST quota-3.17.tar.gz 439168 SHA256 253320993bb132814c724ca268a6346368be41846ad600f65ee4232ec8597d6f SHA512 7d200862f5ebee024295352289d940a1b728cb017e7c2c4f422a5a98d58ba8f62130640a4c08bdec02f94ea0f4abe146fb494c039b43021fd410ec17fd32b238 WHIRLPOOL e334f22a7c2f8097a2f7145217d1cf134a135a1b6705470121e3a9c0492d59677508bfaa06bcb4eecb9992491910f5b29068e005cafb5086df39da591e375613
DIST quota-4.02.tar.gz 489289 SHA256 f4c2f48abf94bbdc396df33d276f2e9d19af58c232cb85eef9c174a747c33795 SHA512 547e08893b95928e5d183d29bee70d1932f85a675b96f64446e5a723d0759ad2d31223f8b6a5652cd698fce4907a15c294b91c18de32faddbef4975c9f22f2aa WHIRLPOOL eb102a14dfe780b7ed062c3c7abec1ef766beb31c18d92c5115ca703672ebb7e7bfb0479885c6c8c78520554aeb477bc1f4d48fbb76b0336047f42b55af49036
DIST quota-4.03.tar.gz 564352 SHA256 9c6c4d9ae7bf30506dd2aa3d8056c4ff2f8d087930d7c721616f5c093bdc674b SHA512 9603940048dcc0c4db6d6e14173769c815641ebc78a0cc457a0622dbfc597319bae1eaad4ef3281c52757995d47424b96dc66426ce540a8b538b996eea2dc5f8 WHIRLPOOL 4a6354f7732e6c60782dbfb60fbfae47c96c438315572dccaf7d2563b8dab5eb46072f999481abe237df8dafaf252b095c9bcd5d58beecdf75db6aca8d46f4ab
+DIST quota-4.04.tar.gz 577303 SHA256 735be1887e7f51f54165e778ae43fc859c04e44d88834ecb2f470e91d4ef8edf SHA512 adc33863d2a966b4c46983fa3926e6b6ba75e260ed21bdff646584237840e6beb0dcfbfd2f655969aa5675c3c398ac2e483afb933f03f983756ebb3352d0eaad WHIRLPOOL ac6466fffaa0954b13a812827bba4f8753640b80fefb6cbbd582a3c916cc7b302e865ddfb3919335a2fe23168bf5894032a7393b4f1ef4615b75f30adc501f3e
diff --git a/sys-fs/quota/quota-4.04.ebuild b/sys-fs/quota/quota-4.04.ebuild
new file mode 100644
index 00000000000..ab9d32e4f24
--- /dev/null
+++ b/sys-fs/quota/quota-4.04.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools
+
+DESCRIPTION="Linux quota tools"
+HOMEPAGE="https://sourceforge.net/projects/linuxquota/"
+SRC_URI="mirror://sourceforge/linuxquota/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+IUSE="ldap netlink nls rpc tcpd"
+
+RDEPEND="
+ ldap? ( >=net-nds/openldap-2.3.35 )
+ netlink? (
+ sys-apps/dbus
+ dev-libs/libnl:3
+ )
+ rpc? ( net-nds/rpcbind )
+ tcpd? ( sys-apps/tcp-wrappers )
+"
+DEPEND="
+ ${RDEPEND}
+ nls? ( sys-devel/gettext )
+"
+
+src_prepare() {
+ default
+ eautoreconf
+}
+
+src_configure() {
+ local myeconfargs=(
+ --docdir="${EPREFIX%/}/usr/share/doc/${PF}"
+ $(use_enable nls)
+ $(use_enable ldap ldapmail)
+ $(use_enable netlink)
+ $(use_enable rpc)
+ $(use_enable rpc rpcsetquota)
+ )
+ econf "${myeconfargs[@]}"
+}
+
+src_install() {
+ emake DESTDIR="${D}" install
+ dodoc doc/* README.* Changelog
+
+ insinto /etc
+ insopts -m0644
+ doins warnquota.conf quotatab
+
+ newinitd "${FILESDIR}"/quota.rc7 quota
+ newconfd "${FILESDIR}"/quota.confd quota
+
+ if use rpc ; then
+ newinitd "${FILESDIR}"/rpc.rquotad.initd rpc.rquotad
+ fi
+
+ if use ldap ; then
+ insinto /etc/openldap/schema
+ insopts -m0644
+ doins "${FILESDIR}"/ldap-scripts/quota.schema
+
+ exeinto /usr/share/quota/ldap-scripts
+ doexe "${FILESDIR}"/ldap-scripts/*.pl
+ doexe "${FILESDIR}"/ldap-scripts/edquota_editor
+ fi
+}
next reply other threads:[~2017-09-05 20:40 UTC|newest]
Thread overview: 73+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-09-05 20:40 Lars Wendler [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-05-01 3:43 [gentoo-commits] repo/gentoo:master commit in: sys-fs/quota/ Sam James
2025-01-10 10:13 WANG Xuerui
2024-11-01 16:56 Andreas K. Hüttel
2024-10-13 22:12 Sam James
2024-10-09 6:59 Arthur Zamarin
2024-10-09 0:06 Jakov Smolić
2024-10-05 13:58 Arthur Zamarin
2024-10-05 13:58 Arthur Zamarin
2024-10-05 12:58 Arthur Zamarin
2024-10-05 11:48 Arthur Zamarin
2023-06-28 7:50 Sam James
2022-11-04 8:16 Agostino Sarubbo
2022-11-03 19:13 Sam James
2022-11-03 18:41 Arthur Zamarin
2022-11-03 17:24 Arthur Zamarin
2022-11-03 17:24 Arthur Zamarin
2022-11-03 17:24 Arthur Zamarin
2022-04-28 22:56 Yixun Lan
2022-03-23 0:14 Sam James
2021-05-14 22:14 David Seifert
2021-03-07 14:41 Agostino Sarubbo
2021-03-06 15:37 Thomas Deutschmann
2021-03-06 7:26 Sam James
2021-03-05 22:14 Sam James
2021-03-05 21:42 Sam James
2021-03-05 20:33 Sam James
2021-03-05 20:32 Sam James
2020-11-10 13:34 Lars Wendler
2020-03-19 11:40 Mart Raudsepp
2020-01-27 11:25 Mikle Kolyada
2020-01-17 10:30 Agostino Sarubbo
2020-01-15 23:52 Sergei Trofimovich
2020-01-14 16:14 Agostino Sarubbo
2020-01-13 8:25 Sergei Trofimovich
2020-01-12 23:22 Sergei Trofimovich
2020-01-12 22:53 Sergei Trofimovich
2020-01-12 9:40 Jeroen Roovers
2020-01-11 17:36 Mike Gilbert
2019-04-28 20:14 Mikle Kolyada
2019-04-07 21:34 Sergei Trofimovich
2019-04-07 21:16 Sergei Trofimovich
2019-04-07 21:00 Sergei Trofimovich
2019-04-06 13:43 Mikle Kolyada
2019-04-02 9:09 Mikle Kolyada
2019-04-02 1:37 Thomas Deutschmann
2019-04-01 22:44 Sergei Trofimovich
2019-03-30 11:02 Lars Wendler
2019-03-30 11:02 Lars Wendler
2018-05-20 11:26 Mikle Kolyada
2018-05-14 8:15 Tobias Klausmann
2018-04-28 7:09 Mikle Kolyada
2018-04-26 6:41 Sergei Trofimovich
2018-04-26 5:09 Matt Turner
2018-04-26 5:09 Matt Turner
2018-04-24 18:55 Sergei Trofimovich
2018-04-22 23:40 Aaron Bauman
2018-04-22 16:15 Andreas Hüttel
2018-04-22 16:13 Andreas Hüttel
2018-01-05 1:07 Mart Raudsepp
2017-12-18 19:34 Andreas Hüttel
2017-10-06 12:23 Lars Wendler
2017-10-05 13:15 Sergei Trofimovich
2017-10-05 8:37 Sergei Trofimovich
2017-09-30 23:38 Thomas Deutschmann
2017-09-26 22:53 Manuel Rüger
2017-09-15 15:38 Tobias Klausmann
2017-09-10 20:46 Sergei Trofimovich
2017-09-09 19:20 Andreas Hüttel
2017-09-09 10:27 Markus Meier
2017-09-07 20:50 Sergei Trofimovich
2017-09-05 21:51 Sergei Trofimovich
2015-10-25 1:11 Mike Frysinger
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1504644007.7a763126417c545024f2b88aeb70d210e48b9ad7.polynomial-c@gentoo \
--to=polynomial-c@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox