Gentoo Archives: gentoo-commits

From: Patrick McLean <chutzpah@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-iptables/
Date: Sat, 09 May 2020 02:55:08
Message-Id: 1588992890.2126aaa89c0f96dc9cb033d10b742adea7bea903.chutzpah@gentoo
1 commit: 2126aaa89c0f96dc9cb033d10b742adea7bea903
2 Author: Patrick McLean <patrick.mclean <AT> sony <DOT> com>
3 AuthorDate: Sat May 9 02:31:29 2020 +0000
4 Commit: Patrick McLean <chutzpah <AT> gentoo <DOT> org>
5 CommitDate: Sat May 9 02:54:50 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2126aaa8
7
8 app-eselect/eselect-iptables-20200508: Version bump (bug #721578)
9
10 Bug: https://bugs.gentoo.org/721578
11 Copyright: Sony Interactive Entertainment Inc.
12 Package-Manager: Portage-2.3.99, Repoman-2.3.22
13 Signed-off-by: Patrick McLean <chutzpah <AT> gentoo.org>
14
15 app-eselect/eselect-iptables/Manifest | 1 +
16 .../eselect-iptables-20200508.ebuild | 24 ++++++++++++++++++++++
17 2 files changed, 25 insertions(+)
18
19 diff --git a/app-eselect/eselect-iptables/Manifest b/app-eselect/eselect-iptables/Manifest
20 index f9fd8ed3b7b..5f3cbd0b4f7 100644
21 --- a/app-eselect/eselect-iptables/Manifest
22 +++ b/app-eselect/eselect-iptables/Manifest
23 @@ -1 +1,2 @@
24 DIST eselect-iptables-20200319.tar.xz 1584 BLAKE2B be7cad34ef41a6b3c1b25470f2cef7bc2de33d83b5b0846a52695c0d09d9770368abd8d59a00a4edbc0ecbc91b83648de2e6686c7ee8a46036369558f5ed1e16 SHA512 828d8b0b1f41af2ad807c33f4e529411dc5feb21b37c76e8f19f0b7bf3d90ccb61db6b2e0b2ef353acfa4ea95b4a375da4fe769132b1fc6a7879acef6e10db9a
25 +DIST eselect-iptables-20200508.tar.xz 2152 BLAKE2B e28e566d15116134308ae122443dddb8e66bcbdbbe6f6448bab0b7061710cb3b5610a9f058f43c41c3b130150c5046a6b00b0697d28fea6f2c9049485486c3c4 SHA512 b76734a53a8d1a14e662758516e0bd6d5eefbf8bca5718dae67c912365e21aecc800d63ab9dee626807db8e065469d4019f9b5369937a5b123e25f91faa43d2e
26
27 diff --git a/app-eselect/eselect-iptables/eselect-iptables-20200508.ebuild b/app-eselect/eselect-iptables/eselect-iptables-20200508.ebuild
28 new file mode 100644
29 index 00000000000..f033207e969
30 --- /dev/null
31 +++ b/app-eselect/eselect-iptables/eselect-iptables-20200508.ebuild
32 @@ -0,0 +1,24 @@
33 +# Copyright 1999-2020 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +DESCRIPTION="Manages the {,/usr}/sbin/iptables symlink"
39 +HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
40 +SRC_URI="https://dev.gentoo.org/~chutzpah/dist/iptables/${P}.tar.xz"
41 +
42 +LICENSE="GPL-2"
43 +SLOT="0"
44 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
45 +
46 +RDEPEND="app-admin/eselect"
47 +
48 +src_install() {
49 + insinto /usr/share/eselect/modules
50 + doins iptables.eselect
51 +
52 + local symlink
53 + for symlink in {eb,arp}tables; do
54 + dosym iptables.eselect /usr/share/eselect/modules/${symlink}.eselect
55 + done
56 +}