Gentoo Archives: gentoo-commits

From: Michael Orlitzky <mjo@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/apply-default-acl/
Date: Wed, 27 May 2020 00:40:33
Message-Id: 1590539943.6076bef915626b716b5b7f8e832d28b043745f4e.mjo@gentoo
1 commit: 6076bef915626b716b5b7f8e832d28b043745f4e
2 Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
3 AuthorDate: Wed May 27 00:38:50 2020 +0000
4 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
5 CommitDate: Wed May 27 00:39:03 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6076bef9
7
8 sys-apps/apply-default-acl: new version 0.4.3.
9
10 This new version includes a pkg-config file, and some upstream fixes
11 for bugs that were reported on Gentoo.
12
13 Closes: https://bugs.gentoo.org/712844
14 Closes: https://bugs.gentoo.org/725536
15 Package-Manager: Portage-2.3.99, Repoman-2.3.22
16 Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>
17
18 sys-apps/apply-default-acl/Manifest | 1 +
19 .../apply-default-acl-0.4.3.ebuild | 26 ++++++++++++++++++++++
20 2 files changed, 27 insertions(+)
21
22 diff --git a/sys-apps/apply-default-acl/Manifest b/sys-apps/apply-default-acl/Manifest
23 index 2ccca958fba..19ce38577d4 100644
24 --- a/sys-apps/apply-default-acl/Manifest
25 +++ b/sys-apps/apply-default-acl/Manifest
26 @@ -1 +1,2 @@
27 DIST apply-default-acl-0.4.2.tar.xz 246660 BLAKE2B dfb698d6a220b426ea607a70e1c51295629e6ac4637de72cf64a8fe577ed83ceaf6beb7f8b1507ed0d059e6f16e88e1b58a24e641dd6280765c55a70fa30712c SHA512 afe3a0182b76689e41d3a6922a8459587f6013112767ab0d9b60e5197d677ee0cdabd9ebd18f9cb59d4e373b4df2f5845cabddbd382c2743a80c3a20205aa861
28 +DIST apply-default-acl-0.4.3.tar.xz 251744 BLAKE2B 81803993ba20a7098de2767650b452df11b065e9d130199c1b12fed52f48d4676cbc8d826735d6a62d16211f51d67131e8b379feb1f0464b8ee3999cfce77e74 SHA512 d0b14bc685129e62f244a21921f271bc7baf7f2bea1c7a3689768e4205b10092154cc84cc8136b7afd37abf0259aaa23e5049b67476a8afddcc3a2be894bc423
29
30 diff --git a/sys-apps/apply-default-acl/apply-default-acl-0.4.3.ebuild b/sys-apps/apply-default-acl/apply-default-acl-0.4.3.ebuild
31 new file mode 100644
32 index 00000000000..956755978ea
33 --- /dev/null
34 +++ b/sys-apps/apply-default-acl/apply-default-acl-0.4.3.ebuild
35 @@ -0,0 +1,26 @@
36 +# Copyright 1999-2020 Gentoo Authors
37 +# Distributed under the terms of the GNU General Public License v2
38 +
39 +EAPI=7
40 +
41 +DESCRIPTION="Apply default POSIX ACLs to files and directories"
42 +HOMEPAGE="http://michael.orlitzky.com/code/apply-default-acl.xhtml"
43 +SRC_URI="http://michael.orlitzky.com/code/releases/${P}.tar.xz"
44 +
45 +LICENSE="AGPL-3"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~x86"
48 +
49 +DEPEND="sys-apps/acl"
50 +RDEPEND="${DEPEND}"
51 +
52 +DOCS=( doc/README )
53 +
54 +# tests need to be executed on filesystem with ACL support
55 +# skipping them for now
56 +RESTRICT="test"
57 +
58 +src_install() {
59 + default
60 + find "${ED}" -name '*.la' -delete || die
61 +}