Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/quota/
Date: Fri, 14 May 2021 22:14:15
Message-Id: 1621030421.e02c7a67a1fa28c9d82c1d0e03f84f597a346342.soap@gentoo
1 commit: e02c7a67a1fa28c9d82c1d0e03f84f597a346342
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 14 22:13:41 2021 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Fri May 14 22:13:41 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e02c7a67
7
8 sys-fs/quota: drop 4.05-r1
9
10 Signed-off-by: David Seifert <soap <AT> gentoo.org>
11
12 sys-fs/quota/Manifest | 1 -
13 sys-fs/quota/quota-4.05-r1.ebuild | 80 ---------------------------------------
14 2 files changed, 81 deletions(-)
15
16 diff --git a/sys-fs/quota/Manifest b/sys-fs/quota/Manifest
17 index 54bfef226d5..ebd4c38e434 100644
18 --- a/sys-fs/quota/Manifest
19 +++ b/sys-fs/quota/Manifest
20 @@ -1,2 +1 @@
21 -DIST quota-4.05.tar.gz 577313 BLAKE2B ab0adc04a2bee46f5b4f528c3a1b7f1dfbfc93cc153aebef91cf563e0b03344479b4d465f7d91cfee60c533052f27ce54f24a937c0c1ec312a5fff763cb82bd1 SHA512 a13ca93fb6fad032cb032874dda2f5d792e619b41e89b481e6aaa4f06ac5774e2728b09dd625addfbe22efccb1d85892b093736084c72f75675a60df168b92f2
22 DIST quota-4.06.tar.gz 520448 BLAKE2B 2cbadeade228d0154f3a8d455cc1aa6e85c9ad7854007e3188c9035abe4d5fdbdf97985fd2fa6308f486ffbe60461e0fe1139f1ec0ca415ce08292d74e0ddde1 SHA512 cece46b8e3a82e8afcf8bfc9f6b310ec91afe034102cebc031bc7d7e04287fdbffb21ab1d3e6e1825175cffa4bad0a4ecbefec0efee028d961b14ac626d5c871
23
24 diff --git a/sys-fs/quota/quota-4.05-r1.ebuild b/sys-fs/quota/quota-4.05-r1.ebuild
25 deleted file mode 100644
26 index 25220c8565b..00000000000
27 --- a/sys-fs/quota/quota-4.05-r1.ebuild
28 +++ /dev/null
29 @@ -1,80 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -inherit autotools
36 -
37 -DESCRIPTION="Linux quota tools"
38 -HOMEPAGE="https://sourceforge.net/projects/linuxquota/"
39 -SRC_URI="mirror://sourceforge/linuxquota/${P}.tar.gz"
40 -
41 -LICENSE="GPL-2"
42 -SLOT="0"
43 -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86"
44 -IUSE="ldap netlink nls rpc tcpd"
45 -
46 -RDEPEND="
47 - sys-fs/e2fsprogs
48 - ldap? ( >=net-nds/openldap-2.3.35 )
49 - netlink? (
50 - sys-apps/dbus
51 - dev-libs/libnl:3
52 - )
53 - rpc? (
54 - elibc_glibc? ( sys-libs/glibc[-rpc(-)] )
55 - net-libs/libtirpc
56 - net-libs/rpcsvc-proto
57 - )
58 - tcpd? ( sys-apps/tcp-wrappers )
59 -"
60 -DEPEND="
61 - ${RDEPEND}
62 - nls? ( sys-devel/gettext )
63 -"
64 -PDEPEND="
65 - rpc? ( net-nds/rpcbind )
66 -"
67 -
68 -src_prepare() {
69 - default
70 - eautoreconf
71 -}
72 -
73 -src_configure() {
74 - local myeconfargs=(
75 - --enable-ext2direct
76 - $(use_enable nls)
77 - $(use_enable ldap ldapmail)
78 - $(use_enable netlink)
79 - $(use_enable rpc)
80 - $(use_enable rpc rpcsetquota)
81 - )
82 - econf "${myeconfargs[@]}"
83 -}
84 -
85 -src_install() {
86 - emake DESTDIR="${D}" install
87 - dodoc doc/* README.* Changelog
88 -
89 - insinto /etc
90 - insopts -m0644
91 - doins warnquota.conf quotatab
92 -
93 - newinitd "${FILESDIR}"/quota.rc7 quota
94 - newconfd "${FILESDIR}"/quota.confd quota
95 -
96 - if use rpc ; then
97 - newinitd "${FILESDIR}"/rpc.rquotad.initd rpc.rquotad
98 - fi
99 -
100 - if use ldap ; then
101 - insinto /etc/openldap/schema
102 - insopts -m0644
103 - doins "${FILESDIR}"/ldap-scripts/quota.schema
104 -
105 - exeinto /usr/share/quota/ldap-scripts
106 - doexe "${FILESDIR}"/ldap-scripts/*.pl
107 - doexe "${FILESDIR}"/ldap-scripts/edquota_editor
108 - fi
109 -}