* [gentoo-commits] repo/gentoo:master commit in: net-firewall/pglinux/
@ 2015-08-15 19:45 Julian Ospald
0 siblings, 0 replies; 23+ messages in thread
From: Julian Ospald @ 2015-08-15 19:45 UTC (permalink / raw
To: gentoo-commits
commit: 12598c240b7f77ee0ca7d3c191da6788ef1f2210
Author: Julian Ospald <hasufell <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 15 19:44:57 2015 +0000
Commit: Julian Ospald <hasufell <AT> gentoo <DOT> org>
CommitDate: Sat Aug 15 19:45:21 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12598c24
net-firewall/pglinux: version bump to 2.3.0
Gentoo-Bug: 538890
net-firewall/pglinux/Manifest | 1 +
net-firewall/pglinux/pglinux-2.3.0.ebuild | 98 +++++++++++++++++++++++++++++++
2 files changed, 99 insertions(+)
diff --git a/net-firewall/pglinux/Manifest b/net-firewall/pglinux/Manifest
index 07a835f..d57ec92 100644
--- a/net-firewall/pglinux/Manifest
+++ b/net-firewall/pglinux/Manifest
@@ -1 +1,2 @@
DIST pgl-2.2.4.tar.gz 608622 SHA256 26e91cb085a9da7faa643f9364192c0e3eeec64ccae56d0bb62de5174e185866 SHA512 d6daad259a904647917388e586d4bd7d6a73b078bf61974a5682b6eec2d8d2abb02760483838f23fefa13ae761b4bd40765ddb13e6d820d0b6e3ee65b0815f58 WHIRLPOOL 59de9ad6a3c95e2f9f553e7c311be948b488825bfe8db7e2fc78610d46d98c0cbef4ce4846a659b01b2a0b6548dfed13dde27c55ffc22cb37418b97cde0c0ca8
+DIST pgl-2.3.0.tar.gz 604284 SHA256 4183386a674e4778225f13165b0e9390eded89d9bc9445d4207a9c50078d0752 SHA512 535f13d6b17bbea099e415e9dd463ebf4e2ffa9af4d8ae96c7ace2667c84380f506018aca2b6b6a6d4ca1e2afd24fc6eaf9544eb00710645d562f2aa1fa5a1a7 WHIRLPOOL 959ed95aa89271c2632997d050031d97354fdc59ed33de527fffbcfb6a05d89dea1b2d03d35394af48b2342cc46c4dfe3180c65d727291c4df66b37d0f1519b9
diff --git a/net-firewall/pglinux/pglinux-2.3.0.ebuild b/net-firewall/pglinux/pglinux-2.3.0.ebuild
new file mode 100644
index 0000000..0f048b0
--- /dev/null
+++ b/net-firewall/pglinux/pglinux-2.3.0.ebuild
@@ -0,0 +1,98 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils gnome2-utils linux-info systemd
+
+MY_P="pgl-${PV}"
+
+DESCRIPTION="Privacy oriented firewall application"
+HOMEPAGE="https://sourceforge.net/projects/peerguardian/"
+SRC_URI="mirror://sourceforge/peerguardian/${MY_P}.tar.gz"
+
+LICENSE="GPL-3"
+KEYWORDS="~amd64 ~x86"
+SLOT="0"
+IUSE="cron dbus logrotate networkmanager qt4 zlib"
+
+COMMON_DEPEND="
+ net-libs/libnetfilter_queue
+ net-libs/libnfnetlink
+ dbus? ( sys-apps/dbus )
+ zlib? ( sys-libs/zlib )
+ qt4? ( sys-auth/polkit-qt[qt4(+)]
+ dev-qt/qtcore:4
+ dev-qt/qtdbus:4
+ dev-qt/qtgui:4
+ || ( kde-apps/kdesu x11-libs/gksu x11-misc/ktsuss )
+ )"
+DEPEND="${COMMON_DEPEND}
+ virtual/pkgconfig
+ sys-devel/libtool:2"
+RDEPEND="${COMMON_DEPEND}
+ net-firewall/iptables
+ sys-apps/sysvinit
+ cron? ( virtual/cron )
+ logrotate? ( app-admin/logrotate )
+ networkmanager? ( net-misc/networkmanager )"
+
+REQUIRED_USE="qt4? ( dbus )"
+
+CONFIG_CHECK="~NETFILTER_NETLINK
+ ~NETFILTER_NETLINK_QUEUE
+ ~NETFILTER_XTABLES
+ ~NETFILTER_XT_TARGET_NFQUEUE
+ ~NETFILTER_XT_MATCH_IPRANGE
+ ~NETFILTER_XT_MARK
+ ~NETFILTER_XT_MATCH_MULTIPORT
+ ~NETFILTER_XT_MATCH_STATE
+ ~NF_CONNTRACK
+ ~NF_CONNTRACK_IPV4
+ ~NF_DEFRAG_IPV4
+ ~IP_NF_FILTER
+ ~IP_NF_IPTABLES
+ ~IP_NF_TARGET_REJECT"
+
+S=${WORKDIR}/${MY_P}
+
+src_configure() {
+ econf \
+ --localstatedir=/var \
+ --docdir=/usr/share/doc/${PF} \
+ $(use_enable logrotate) \
+ $(use_enable cron) \
+ $(use_enable networkmanager) \
+ $(use_enable zlib) \
+ $(use_enable dbus) \
+ --disable-lowmem \
+ --with-iconsdir=/usr/share/icons/hicolor/128x128/apps \
+ --with-gentoo-init \
+ $(use_with qt4) \
+ --with-systemd="$(systemd_get_unitdir)"
+}
+
+src_install() {
+ default
+ keepdir /var/{lib,log,spool}/pgl
+ rm -rf "${ED%/}"/tmp
+}
+
+pkg_preinst() {
+ gnome2_icon_savelist
+}
+
+pkg_postinst() {
+ elog "optional dependencies:"
+ elog " app-arch/p7zip (needed for blocklists packed as .7z)"
+ elog " app-arch/unzip (needed for blocklists packed as .zip)"
+ elog " virtual/mta (needed to send informational (blocklist updates) and"
+ elog " warning mails (if pglcmd.wd detects a problem.))"
+
+ gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+ gnome2_icon_cache_update
+}
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/pglinux/
@ 2016-04-21 16:45 Amy Winston
0 siblings, 0 replies; 23+ messages in thread
From: Amy Winston @ 2016-04-21 16:45 UTC (permalink / raw
To: gentoo-commits
commit: 5018752105478d96e699b7f78c9d0902de49fc5a
Author: Amy Winston <amynka <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 21 16:45:33 2016 +0000
Commit: Amy Winston <amynka <AT> gentoo <DOT> org>
CommitDate: Thu Apr 21 16:45:33 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50187521
net-firewall/pglinux: version bump 2.3.1 bug #580588
Package-Manager: portage-2.2.26
net-firewall/pglinux/Manifest | 1 +
net-firewall/pglinux/pglinux-2.3.1.ebuild | 98 +++++++++++++++++++++++++++++++
2 files changed, 99 insertions(+)
diff --git a/net-firewall/pglinux/Manifest b/net-firewall/pglinux/Manifest
index d57ec92..8209230 100644
--- a/net-firewall/pglinux/Manifest
+++ b/net-firewall/pglinux/Manifest
@@ -1,2 +1,3 @@
DIST pgl-2.2.4.tar.gz 608622 SHA256 26e91cb085a9da7faa643f9364192c0e3eeec64ccae56d0bb62de5174e185866 SHA512 d6daad259a904647917388e586d4bd7d6a73b078bf61974a5682b6eec2d8d2abb02760483838f23fefa13ae761b4bd40765ddb13e6d820d0b6e3ee65b0815f58 WHIRLPOOL 59de9ad6a3c95e2f9f553e7c311be948b488825bfe8db7e2fc78610d46d98c0cbef4ce4846a659b01b2a0b6548dfed13dde27c55ffc22cb37418b97cde0c0ca8
DIST pgl-2.3.0.tar.gz 604284 SHA256 4183386a674e4778225f13165b0e9390eded89d9bc9445d4207a9c50078d0752 SHA512 535f13d6b17bbea099e415e9dd463ebf4e2ffa9af4d8ae96c7ace2667c84380f506018aca2b6b6a6d4ca1e2afd24fc6eaf9544eb00710645d562f2aa1fa5a1a7 WHIRLPOOL 959ed95aa89271c2632997d050031d97354fdc59ed33de527fffbcfb6a05d89dea1b2d03d35394af48b2342cc46c4dfe3180c65d727291c4df66b37d0f1519b9
+DIST pgl-2.3.1.tar.gz 605656 SHA256 1b5c6d233baa943b42254c95ed2853d036f3f246feaebc073e3c91c05a4c98b4 SHA512 f23d44ad6448814ba0a2c90292ff4a933d31fed942886d63c50bb62fb56e1af70df72e09070ad3cd27c878f322576326040c330fbdbda63128ad304375b02a1e WHIRLPOOL f36f2d740f2b760d70e90de2e8004932289130b76119af80e478b0e8136d0dffb167c941b54b602a6f1857c9a3f8df1e7b4c6ed5c02099c008bec601ab967e2b
diff --git a/net-firewall/pglinux/pglinux-2.3.1.ebuild b/net-firewall/pglinux/pglinux-2.3.1.ebuild
new file mode 100644
index 0000000..a9d5e40
--- /dev/null
+++ b/net-firewall/pglinux/pglinux-2.3.1.ebuild
@@ -0,0 +1,98 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit gnome2-utils linux-info systemd
+
+MY_P="pgl-${PV}"
+
+DESCRIPTION="Privacy oriented firewall application"
+HOMEPAGE="https://sourceforge.net/projects/peerguardian/"
+SRC_URI="mirror://sourceforge/peerguardian/${MY_P}.tar.gz"
+
+LICENSE="GPL-3"
+KEYWORDS="~amd64 ~x86"
+SLOT="0"
+IUSE="cron dbus logrotate networkmanager qt4 zlib"
+
+COMMON_DEPEND="
+ net-libs/libnetfilter_queue
+ net-libs/libnfnetlink
+ dbus? ( sys-apps/dbus )
+ zlib? ( sys-libs/zlib )
+ qt4? ( sys-auth/polkit-qt[qt4(+)]
+ dev-qt/qtcore:4
+ dev-qt/qtdbus:4
+ dev-qt/qtgui:4
+ || ( kde-apps/kdesu x11-libs/gksu x11-misc/ktsuss )
+ )"
+DEPEND="${COMMON_DEPEND}
+ virtual/pkgconfig
+ sys-devel/libtool:2"
+RDEPEND="${COMMON_DEPEND}
+ net-firewall/iptables
+ sys-apps/sysvinit
+ cron? ( virtual/cron )
+ logrotate? ( app-admin/logrotate )
+ networkmanager? ( net-misc/networkmanager )"
+
+REQUIRED_USE="qt4? ( dbus )"
+
+CONFIG_CHECK="~NETFILTER_NETLINK
+ ~NETFILTER_NETLINK_QUEUE
+ ~NETFILTER_XTABLES
+ ~NETFILTER_XT_TARGET_NFQUEUE
+ ~NETFILTER_XT_MATCH_IPRANGE
+ ~NETFILTER_XT_MARK
+ ~NETFILTER_XT_MATCH_MULTIPORT
+ ~NETFILTER_XT_MATCH_STATE
+ ~NF_CONNTRACK
+ ~NF_CONNTRACK_IPV4
+ ~NF_DEFRAG_IPV4
+ ~IP_NF_FILTER
+ ~IP_NF_IPTABLES
+ ~IP_NF_TARGET_REJECT"
+
+S=${WORKDIR}/${MY_P}
+
+src_configure() {
+ econf \
+ --localstatedir=/var \
+ --docdir=/usr/share/doc/${PF} \
+ $(use_enable logrotate) \
+ $(use_enable cron) \
+ $(use_enable networkmanager) \
+ $(use_enable zlib) \
+ $(use_enable dbus) \
+ --disable-lowmem \
+ --with-iconsdir=/usr/share/icons/hicolor/128x128/apps \
+ --with-gentoo-init \
+ $(use_with qt4) \
+ --with-systemd="$(systemd_get_systemunitdir)"
+}
+
+src_install() {
+ default
+ keepdir /var/{lib,log,spool}/pgl
+ rm -rf "${ED%/}"/tmp || die
+}
+
+pkg_preinst() {
+ gnome2_icon_savelist
+}
+
+pkg_postinst() {
+ elog "optional dependencies:"
+ elog " app-arch/p7zip (needed for blocklists packed as .7z)"
+ elog " app-arch/unzip (needed for blocklists packed as .zip)"
+ elog " virtual/mta (needed to send informational (blocklist updates) and"
+ elog " warning mails (if pglcmd.wd detects a problem.))"
+
+ gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+ gnome2_icon_cache_update
+}
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/pglinux/
@ 2016-07-07 19:48 Austin English
0 siblings, 0 replies; 23+ messages in thread
From: Austin English @ 2016-07-07 19:48 UTC (permalink / raw
To: gentoo-commits
commit: ee461b816f2ed5d066879504d08c043c4e7af637
Author: Austin English <wizardedit <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 7 19:35:08 2016 +0000
Commit: Austin English <wizardedit <AT> gentoo <DOT> org>
CommitDate: Thu Jul 7 19:47:00 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee461b81
net-firewall/pglinux: add maintainer-needed
Package-Manager: portage-2.2.28
net-firewall/pglinux/metadata.xml | 1 +
1 file changed, 1 insertion(+)
diff --git a/net-firewall/pglinux/metadata.xml b/net-firewall/pglinux/metadata.xml
index 7d83061..cd9a336 100644
--- a/net-firewall/pglinux/metadata.xml
+++ b/net-firewall/pglinux/metadata.xml
@@ -1,6 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
+ <!-- maintainer-needed -->
<upstream>
<changelog>https://sourceforge.net/news/?group_id=131687</changelog>
<doc lang="en">https://sourceforge.net/projects/peerguardian/support</doc>
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/pglinux/
@ 2016-09-18 11:54 Pacho Ramos
0 siblings, 0 replies; 23+ messages in thread
From: Pacho Ramos @ 2016-09-18 11:54 UTC (permalink / raw
To: gentoo-commits
commit: 0ed97f4088e7227b1aa1165355ae820c3b058051
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 18 11:46:52 2016 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sun Sep 18 11:46:52 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ed97f40
net-firewall/pglinux: Drop old
Package-Manager: portage-2.3.0
net-firewall/pglinux/Manifest | 1 -
net-firewall/pglinux/pglinux-2.3.0.ebuild | 98 -------------------------------
2 files changed, 99 deletions(-)
diff --git a/net-firewall/pglinux/Manifest b/net-firewall/pglinux/Manifest
index 8209230..2b57368 100644
--- a/net-firewall/pglinux/Manifest
+++ b/net-firewall/pglinux/Manifest
@@ -1,3 +1,2 @@
DIST pgl-2.2.4.tar.gz 608622 SHA256 26e91cb085a9da7faa643f9364192c0e3eeec64ccae56d0bb62de5174e185866 SHA512 d6daad259a904647917388e586d4bd7d6a73b078bf61974a5682b6eec2d8d2abb02760483838f23fefa13ae761b4bd40765ddb13e6d820d0b6e3ee65b0815f58 WHIRLPOOL 59de9ad6a3c95e2f9f553e7c311be948b488825bfe8db7e2fc78610d46d98c0cbef4ce4846a659b01b2a0b6548dfed13dde27c55ffc22cb37418b97cde0c0ca8
-DIST pgl-2.3.0.tar.gz 604284 SHA256 4183386a674e4778225f13165b0e9390eded89d9bc9445d4207a9c50078d0752 SHA512 535f13d6b17bbea099e415e9dd463ebf4e2ffa9af4d8ae96c7ace2667c84380f506018aca2b6b6a6d4ca1e2afd24fc6eaf9544eb00710645d562f2aa1fa5a1a7 WHIRLPOOL 959ed95aa89271c2632997d050031d97354fdc59ed33de527fffbcfb6a05d89dea1b2d03d35394af48b2342cc46c4dfe3180c65d727291c4df66b37d0f1519b9
DIST pgl-2.3.1.tar.gz 605656 SHA256 1b5c6d233baa943b42254c95ed2853d036f3f246feaebc073e3c91c05a4c98b4 SHA512 f23d44ad6448814ba0a2c90292ff4a933d31fed942886d63c50bb62fb56e1af70df72e09070ad3cd27c878f322576326040c330fbdbda63128ad304375b02a1e WHIRLPOOL f36f2d740f2b760d70e90de2e8004932289130b76119af80e478b0e8136d0dffb167c941b54b602a6f1857c9a3f8df1e7b4c6ed5c02099c008bec601ab967e2b
diff --git a/net-firewall/pglinux/pglinux-2.3.0.ebuild b/net-firewall/pglinux/pglinux-2.3.0.ebuild
deleted file mode 100644
index 0f048b0..00000000
--- a/net-firewall/pglinux/pglinux-2.3.0.ebuild
+++ /dev/null
@@ -1,98 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit eutils gnome2-utils linux-info systemd
-
-MY_P="pgl-${PV}"
-
-DESCRIPTION="Privacy oriented firewall application"
-HOMEPAGE="https://sourceforge.net/projects/peerguardian/"
-SRC_URI="mirror://sourceforge/peerguardian/${MY_P}.tar.gz"
-
-LICENSE="GPL-3"
-KEYWORDS="~amd64 ~x86"
-SLOT="0"
-IUSE="cron dbus logrotate networkmanager qt4 zlib"
-
-COMMON_DEPEND="
- net-libs/libnetfilter_queue
- net-libs/libnfnetlink
- dbus? ( sys-apps/dbus )
- zlib? ( sys-libs/zlib )
- qt4? ( sys-auth/polkit-qt[qt4(+)]
- dev-qt/qtcore:4
- dev-qt/qtdbus:4
- dev-qt/qtgui:4
- || ( kde-apps/kdesu x11-libs/gksu x11-misc/ktsuss )
- )"
-DEPEND="${COMMON_DEPEND}
- virtual/pkgconfig
- sys-devel/libtool:2"
-RDEPEND="${COMMON_DEPEND}
- net-firewall/iptables
- sys-apps/sysvinit
- cron? ( virtual/cron )
- logrotate? ( app-admin/logrotate )
- networkmanager? ( net-misc/networkmanager )"
-
-REQUIRED_USE="qt4? ( dbus )"
-
-CONFIG_CHECK="~NETFILTER_NETLINK
- ~NETFILTER_NETLINK_QUEUE
- ~NETFILTER_XTABLES
- ~NETFILTER_XT_TARGET_NFQUEUE
- ~NETFILTER_XT_MATCH_IPRANGE
- ~NETFILTER_XT_MARK
- ~NETFILTER_XT_MATCH_MULTIPORT
- ~NETFILTER_XT_MATCH_STATE
- ~NF_CONNTRACK
- ~NF_CONNTRACK_IPV4
- ~NF_DEFRAG_IPV4
- ~IP_NF_FILTER
- ~IP_NF_IPTABLES
- ~IP_NF_TARGET_REJECT"
-
-S=${WORKDIR}/${MY_P}
-
-src_configure() {
- econf \
- --localstatedir=/var \
- --docdir=/usr/share/doc/${PF} \
- $(use_enable logrotate) \
- $(use_enable cron) \
- $(use_enable networkmanager) \
- $(use_enable zlib) \
- $(use_enable dbus) \
- --disable-lowmem \
- --with-iconsdir=/usr/share/icons/hicolor/128x128/apps \
- --with-gentoo-init \
- $(use_with qt4) \
- --with-systemd="$(systemd_get_unitdir)"
-}
-
-src_install() {
- default
- keepdir /var/{lib,log,spool}/pgl
- rm -rf "${ED%/}"/tmp
-}
-
-pkg_preinst() {
- gnome2_icon_savelist
-}
-
-pkg_postinst() {
- elog "optional dependencies:"
- elog " app-arch/p7zip (needed for blocklists packed as .7z)"
- elog " app-arch/unzip (needed for blocklists packed as .zip)"
- elog " virtual/mta (needed to send informational (blocklist updates) and"
- elog " warning mails (if pglcmd.wd detects a problem.))"
-
- gnome2_icon_cache_update
-}
-
-pkg_postrm() {
- gnome2_icon_cache_update
-}
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/pglinux/
@ 2016-09-18 11:54 Pacho Ramos
0 siblings, 0 replies; 23+ messages in thread
From: Pacho Ramos @ 2016-09-18 11:54 UTC (permalink / raw
To: gentoo-commits
commit: 6ce6f4d0a3af80afedd80e3c68bfcd6b10fd5e41
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 18 11:46:38 2016 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sun Sep 18 11:46:38 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ce6f4d0
net-firewall/pglinux: gksu is deprecated for years and vulnerable (#534540)
Package-Manager: portage-2.3.0
net-firewall/pglinux/pglinux-2.3.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-firewall/pglinux/pglinux-2.3.1.ebuild b/net-firewall/pglinux/pglinux-2.3.1.ebuild
index a9d5e40..a762801 100644
--- a/net-firewall/pglinux/pglinux-2.3.1.ebuild
+++ b/net-firewall/pglinux/pglinux-2.3.1.ebuild
@@ -26,7 +26,7 @@ COMMON_DEPEND="
dev-qt/qtcore:4
dev-qt/qtdbus:4
dev-qt/qtgui:4
- || ( kde-apps/kdesu x11-libs/gksu x11-misc/ktsuss )
+ || ( kde-apps/kdesu x11-misc/ktsuss )
)"
DEPEND="${COMMON_DEPEND}
virtual/pkgconfig
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/pglinux/
@ 2016-11-03 11:19 Pacho Ramos
0 siblings, 0 replies; 23+ messages in thread
From: Pacho Ramos @ 2016-11-03 11:19 UTC (permalink / raw
To: gentoo-commits
commit: 868a4432ae40853116a7679b243042e15209da03
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 3 10:56:46 2016 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Thu Nov 3 11:19:03 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=868a4432
net-firewall/pglinux: Drop .la files, we don't need to specify docdir with eapi6, fix init.d script to call openrc-run, set subslot for NM dep as it will be needed in the future
Package-Manager: portage-2.3.2
net-firewall/pglinux/pglinux-2.3.1.ebuild | 24 +++++++++++++++---------
1 file changed, 15 insertions(+), 9 deletions(-)
diff --git a/net-firewall/pglinux/pglinux-2.3.1.ebuild b/net-firewall/pglinux/pglinux-2.3.1.ebuild
index a762801..7a3b7ba 100644
--- a/net-firewall/pglinux/pglinux-2.3.1.ebuild
+++ b/net-firewall/pglinux/pglinux-2.3.1.ebuild
@@ -3,8 +3,7 @@
# $Id$
EAPI=6
-
-inherit gnome2-utils linux-info systemd
+inherit eutils gnome2-utils linux-info systemd
MY_P="pgl-${PV}"
@@ -16,6 +15,7 @@ LICENSE="GPL-3"
KEYWORDS="~amd64 ~x86"
SLOT="0"
IUSE="cron dbus logrotate networkmanager qt4 zlib"
+REQUIRED_USE="qt4? ( dbus )"
COMMON_DEPEND="
net-libs/libnetfilter_queue
@@ -27,18 +27,19 @@ COMMON_DEPEND="
dev-qt/qtdbus:4
dev-qt/qtgui:4
|| ( kde-apps/kdesu x11-misc/ktsuss )
- )"
+ )
+"
DEPEND="${COMMON_DEPEND}
virtual/pkgconfig
- sys-devel/libtool:2"
+ sys-devel/libtool:2
+"
RDEPEND="${COMMON_DEPEND}
net-firewall/iptables
sys-apps/sysvinit
cron? ( virtual/cron )
logrotate? ( app-admin/logrotate )
- networkmanager? ( net-misc/networkmanager )"
-
-REQUIRED_USE="qt4? ( dbus )"
+ networkmanager? ( net-misc/networkmanager:= )
+"
CONFIG_CHECK="~NETFILTER_NETLINK
~NETFILTER_NETLINK_QUEUE
@@ -55,12 +56,16 @@ CONFIG_CHECK="~NETFILTER_NETLINK
~IP_NF_IPTABLES
~IP_NF_TARGET_REJECT"
-S=${WORKDIR}/${MY_P}
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+ default
+ sed -i -e 's:/sbin/runscript:/sbin/openrc-run:' pglcmd/init/pgl.gentoo.in || die
+}
src_configure() {
econf \
--localstatedir=/var \
- --docdir=/usr/share/doc/${PF} \
$(use_enable logrotate) \
$(use_enable cron) \
$(use_enable networkmanager) \
@@ -77,6 +82,7 @@ src_install() {
default
keepdir /var/{lib,log,spool}/pgl
rm -rf "${ED%/}"/tmp || die
+ prune_libtool_files --modules
}
pkg_preinst() {
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/pglinux/
@ 2016-11-03 11:19 Pacho Ramos
0 siblings, 0 replies; 23+ messages in thread
From: Pacho Ramos @ 2016-11-03 11:19 UTC (permalink / raw
To: gentoo-commits
commit: 7877f9dbd4d44e17ba877153ed97cf955794d75b
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 3 10:57:29 2016 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Thu Nov 3 11:19:05 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7877f9db
net-firewall/pglinux: amd64/x86 stable, bug #596676
Package-Manager: portage-2.3.2
net-firewall/pglinux/pglinux-2.3.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-firewall/pglinux/pglinux-2.3.1.ebuild b/net-firewall/pglinux/pglinux-2.3.1.ebuild
index 7a3b7ba..b251dec 100644
--- a/net-firewall/pglinux/pglinux-2.3.1.ebuild
+++ b/net-firewall/pglinux/pglinux-2.3.1.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="https://sourceforge.net/projects/peerguardian/"
SRC_URI="mirror://sourceforge/peerguardian/${MY_P}.tar.gz"
LICENSE="GPL-3"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
SLOT="0"
IUSE="cron dbus logrotate networkmanager qt4 zlib"
REQUIRED_USE="qt4? ( dbus )"
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/pglinux/
@ 2016-11-03 11:19 Pacho Ramos
0 siblings, 0 replies; 23+ messages in thread
From: Pacho Ramos @ 2016-11-03 11:19 UTC (permalink / raw
To: gentoo-commits
commit: 4acd3ffc19c322a575f3d03bdbd9d3ae161506cc
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 3 10:57:48 2016 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Thu Nov 3 11:19:08 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4acd3ffc
net-firewall/pglinux: Drop old
Package-Manager: portage-2.3.2
net-firewall/pglinux/Manifest | 1 -
net-firewall/pglinux/pglinux-2.2.4.ebuild | 98 -------------------------------
2 files changed, 99 deletions(-)
diff --git a/net-firewall/pglinux/Manifest b/net-firewall/pglinux/Manifest
index 2b57368..fe23639 100644
--- a/net-firewall/pglinux/Manifest
+++ b/net-firewall/pglinux/Manifest
@@ -1,2 +1 @@
-DIST pgl-2.2.4.tar.gz 608622 SHA256 26e91cb085a9da7faa643f9364192c0e3eeec64ccae56d0bb62de5174e185866 SHA512 d6daad259a904647917388e586d4bd7d6a73b078bf61974a5682b6eec2d8d2abb02760483838f23fefa13ae761b4bd40765ddb13e6d820d0b6e3ee65b0815f58 WHIRLPOOL 59de9ad6a3c95e2f9f553e7c311be948b488825bfe8db7e2fc78610d46d98c0cbef4ce4846a659b01b2a0b6548dfed13dde27c55ffc22cb37418b97cde0c0ca8
DIST pgl-2.3.1.tar.gz 605656 SHA256 1b5c6d233baa943b42254c95ed2853d036f3f246feaebc073e3c91c05a4c98b4 SHA512 f23d44ad6448814ba0a2c90292ff4a933d31fed942886d63c50bb62fb56e1af70df72e09070ad3cd27c878f322576326040c330fbdbda63128ad304375b02a1e WHIRLPOOL f36f2d740f2b760d70e90de2e8004932289130b76119af80e478b0e8136d0dffb167c941b54b602a6f1857c9a3f8df1e7b4c6ed5c02099c008bec601ab967e2b
diff --git a/net-firewall/pglinux/pglinux-2.2.4.ebuild b/net-firewall/pglinux/pglinux-2.2.4.ebuild
deleted file mode 100644
index daf6e73..00000000
--- a/net-firewall/pglinux/pglinux-2.2.4.ebuild
+++ /dev/null
@@ -1,98 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit eutils gnome2-utils linux-info systemd
-
-MY_P="pgl-${PV}"
-
-DESCRIPTION="Privacy oriented firewall application"
-HOMEPAGE="https://sourceforge.net/projects/peerguardian/"
-SRC_URI="mirror://sourceforge/peerguardian/${MY_P}.tar.gz"
-
-LICENSE="GPL-3"
-KEYWORDS="amd64 x86"
-SLOT="0"
-IUSE="cron dbus logrotate networkmanager qt4 zlib"
-
-COMMON_DEPEND="
- net-libs/libnetfilter_queue
- net-libs/libnfnetlink
- dbus? ( sys-apps/dbus )
- zlib? ( sys-libs/zlib )
- qt4? ( sys-auth/polkit-qt[qt4(+)]
- dev-qt/qtcore:4
- dev-qt/qtdbus:4
- dev-qt/qtgui:4
- || ( kde-apps/kdesu x11-libs/gksu x11-misc/ktsuss )
- )"
-DEPEND="${COMMON_DEPEND}
- virtual/pkgconfig
- sys-devel/libtool:2"
-RDEPEND="${COMMON_DEPEND}
- net-firewall/iptables
- sys-apps/sysvinit
- cron? ( virtual/cron )
- logrotate? ( app-admin/logrotate )
- networkmanager? ( net-misc/networkmanager )"
-
-REQUIRED_USE="qt4? ( dbus )"
-
-CONFIG_CHECK="~NETFILTER_NETLINK
- ~NETFILTER_NETLINK_QUEUE
- ~NETFILTER_XTABLES
- ~NETFILTER_XT_TARGET_NFQUEUE
- ~NETFILTER_XT_MATCH_IPRANGE
- ~NETFILTER_XT_MARK
- ~NETFILTER_XT_MATCH_MULTIPORT
- ~NETFILTER_XT_MATCH_STATE
- ~NF_CONNTRACK
- ~NF_CONNTRACK_IPV4
- ~NF_DEFRAG_IPV4
- ~IP_NF_FILTER
- ~IP_NF_IPTABLES
- ~IP_NF_TARGET_REJECT"
-
-S=${WORKDIR}/${MY_P}
-
-src_configure() {
- econf \
- --localstatedir=/var \
- --docdir=/usr/share/doc/${PF} \
- $(use_enable logrotate) \
- $(use_enable cron) \
- $(use_enable networkmanager) \
- $(use_enable zlib) \
- $(use_enable dbus) \
- --disable-lowmem \
- --with-iconsdir=/usr/share/icons/hicolor/128x128/apps \
- --with-gentoo-init \
- $(use_with qt4) \
- --with-systemd="$(systemd_get_unitdir)"
-}
-
-src_install() {
- default
- keepdir /var/{lib,log,spool}/pgl
- rm -rf "${ED%/}"/tmp
-}
-
-pkg_preinst() {
- gnome2_icon_savelist
-}
-
-pkg_postinst() {
- elog "optional dependencies:"
- elog " app-arch/p7zip (needed for blocklists packed as .7z)"
- elog " app-arch/unzip (needed for blocklists packed as .zip)"
- elog " virtual/mta (needed to send informational (blocklist updates) and"
- elog " warning mails (if pglcmd.wd detects a problem.))"
-
- gnome2_icon_cache_update
-}
-
-pkg_postrm() {
- gnome2_icon_cache_update
-}
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/pglinux/
@ 2017-05-06 20:05 Andreas Sturmlechner
0 siblings, 0 replies; 23+ messages in thread
From: Andreas Sturmlechner @ 2017-05-06 20:05 UTC (permalink / raw
To: gentoo-commits
commit: 25a1887c450068543d5e38b7f583f1630316ef1b
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat May 6 14:28:19 2017 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat May 6 20:01:49 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25a1887c
net-firewall/pglinux: Add kde-plasma/kde-cli-tools[kdesu] alt. RDEPEND
Package-Manager: Portage-2.3.5, Repoman-2.3.1
net-firewall/pglinux/pglinux-2.3.1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-firewall/pglinux/pglinux-2.3.1.ebuild b/net-firewall/pglinux/pglinux-2.3.1.ebuild
index 06b0575b2f3..46fd2e91739 100644
--- a/net-firewall/pglinux/pglinux-2.3.1.ebuild
+++ b/net-firewall/pglinux/pglinux-2.3.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -25,7 +25,7 @@ COMMON_DEPEND="
dev-qt/qtcore:4
dev-qt/qtdbus:4
dev-qt/qtgui:4
- || ( kde-apps/kdesu x11-misc/ktsuss )
+ || ( kde-plasma/kde-cli-tools[kdesu] kde-apps/kdesu x11-misc/ktsuss )
)
"
DEPEND="${COMMON_DEPEND}
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/pglinux/
@ 2018-01-23 1:20 Andreas Sturmlechner
0 siblings, 0 replies; 23+ messages in thread
From: Andreas Sturmlechner @ 2018-01-23 1:20 UTC (permalink / raw
To: gentoo-commits
commit: 95f00ead8f01b5b42411d9ac7394e5898e4a2286
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 23 00:55:16 2018 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Tue Jan 23 01:17:35 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95f00ead
net-firewall/pglinux: Drop gnome2_icon_savelist
Package-Manager: Portage-2.3.20, Repoman-2.3.6
net-firewall/pglinux/pglinux-2.3.1.ebuild | 4 ----
1 file changed, 4 deletions(-)
diff --git a/net-firewall/pglinux/pglinux-2.3.1.ebuild b/net-firewall/pglinux/pglinux-2.3.1.ebuild
index 91f1ead1d9b..30e9caebcca 100644
--- a/net-firewall/pglinux/pglinux-2.3.1.ebuild
+++ b/net-firewall/pglinux/pglinux-2.3.1.ebuild
@@ -84,10 +84,6 @@ src_install() {
prune_libtool_files --modules
}
-pkg_preinst() {
- gnome2_icon_savelist
-}
-
pkg_postinst() {
elog "optional dependencies:"
elog " app-arch/p7zip (needed for blocklists packed as .7z)"
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/pglinux/
@ 2018-01-23 1:20 Andreas Sturmlechner
0 siblings, 0 replies; 23+ messages in thread
From: Andreas Sturmlechner @ 2018-01-23 1:20 UTC (permalink / raw
To: gentoo-commits
commit: c9c87c6c1fb355cb7ee457cbdcc9a087d6fd7f85
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 23 00:54:20 2018 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Tue Jan 23 01:17:26 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9c87c6c
net-firewall/pglinux: Drop invalid alt. depend
Package-Manager: Portage-2.3.20, Repoman-2.3.6
net-firewall/pglinux/pglinux-2.3.1.ebuild | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/net-firewall/pglinux/pglinux-2.3.1.ebuild b/net-firewall/pglinux/pglinux-2.3.1.ebuild
index e524edf5a01..91f1ead1d9b 100644
--- a/net-firewall/pglinux/pglinux-2.3.1.ebuild
+++ b/net-firewall/pglinux/pglinux-2.3.1.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
-inherit eutils gnome2-utils linux-info systemd
MY_P="pgl-${PV}"
+inherit eutils gnome2-utils linux-info systemd
DESCRIPTION="Privacy oriented firewall application"
HOMEPAGE="https://sourceforge.net/projects/peerguardian/"
@@ -25,7 +25,7 @@ COMMON_DEPEND="
dev-qt/qtcore:4
dev-qt/qtdbus:4
dev-qt/qtgui:4
- || ( kde-plasma/kde-cli-tools[kdesu] kde-apps/kdesu x11-misc/ktsuss )
+ || ( kde-plasma/kde-cli-tools[kdesu] x11-misc/ktsuss )
)
"
DEPEND="${COMMON_DEPEND}
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/pglinux/
@ 2018-04-08 20:11 Andreas Sturmlechner
0 siblings, 0 replies; 23+ messages in thread
From: Andreas Sturmlechner @ 2018-04-08 20:11 UTC (permalink / raw
To: gentoo-commits
commit: 42666d3e96349be58cfd34a0b5fa8e283ce8716b
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 8 20:03:01 2018 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Apr 8 20:10:50 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42666d3e
net-firewall/pglinux: Add 2.3.1_p20171006 Qt5-based snapshot
Dropped keywords because completely runtime-untested.
Bug: https://bugs.gentoo.org/645432
Package-Manager: Portage-2.3.28, Repoman-2.3.9
net-firewall/pglinux/Manifest | 1 +
.../pglinux/pglinux-2.3.1_p20171006.ebuild | 107 +++++++++++++++++++++
2 files changed, 108 insertions(+)
diff --git a/net-firewall/pglinux/Manifest b/net-firewall/pglinux/Manifest
index c9691e92c28..fa229c952e0 100644
--- a/net-firewall/pglinux/Manifest
+++ b/net-firewall/pglinux/Manifest
@@ -1 +1,2 @@
DIST pgl-2.3.1.tar.gz 605656 BLAKE2B 1fbce4b3c7d116915b303093ef18f434c8bb9dd23e1065d42dc573face9274c68321477529b536868eca9c03f23f3aad67f371960d7e547ae8c07fdee09f6d10 SHA512 f23d44ad6448814ba0a2c90292ff4a933d31fed942886d63c50bb62fb56e1af70df72e09070ad3cd27c878f322576326040c330fbdbda63128ad304375b02a1e
+DIST pglinux-2.3.1_p20171006.zip 340253 BLAKE2B a39ecad1290dd31b126ed58c22f2de1162a4081e07f576509b5d77adffeb4a74b5aeb489f8f63134b0fc37d174e61b6631bdb350c3277729456092ba0ae3c600 SHA512 ea30076d7a21fa71d5e352c479cb1a463c9f244d675f5c7f9d5d25a33b27f4c7f1a39d173f2fd156e3f2cb0652da0a06c078fc38972275073f38d48f207e42f3
diff --git a/net-firewall/pglinux/pglinux-2.3.1_p20171006.ebuild b/net-firewall/pglinux/pglinux-2.3.1_p20171006.ebuild
new file mode 100644
index 00000000000..2fabdd344ba
--- /dev/null
+++ b/net-firewall/pglinux/pglinux-2.3.1_p20171006.ebuild
@@ -0,0 +1,107 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+COMMIT=9d91ab6a8e6bc2b41e985aa698eb5c1eb364fea8
+MY_PN="peerguardian"
+MY_P="${MY_PN}-${PV}"
+inherit autotools gnome2-utils linux-info systemd
+
+DESCRIPTION="Privacy oriented firewall application"
+HOMEPAGE="https://sourceforge.net/projects/peerguardian/"
+SRC_URI="https://sourceforge.net/code-snapshots/git/p/pe/peerguardian/code.git/peerguardian-code-${COMMIT}.zip -> ${P}.zip"
+
+LICENSE="GPL-3"
+KEYWORDS=""
+SLOT="0"
+IUSE="cron dbus logrotate networkmanager qt5 zlib"
+REQUIRED_USE="qt5? ( dbus )"
+
+COMMON_DEPEND="
+ net-libs/libnetfilter_queue
+ net-libs/libnfnetlink
+ dbus? ( sys-apps/dbus )
+ qt5? ( sys-auth/polkit-qt[qt5(+)]
+ dev-qt/qtcore:5
+ dev-qt/qtdbus:5
+ dev-qt/qtgui:5
+ dev-qt/qtwidgets:5
+ || ( kde-plasma/kde-cli-tools[kdesu] x11-misc/ktsuss )
+ )
+ zlib? ( sys-libs/zlib )
+"
+DEPEND="${COMMON_DEPEND}
+ virtual/pkgconfig
+ sys-devel/libtool:2
+"
+RDEPEND="${COMMON_DEPEND}
+ net-firewall/iptables
+ sys-apps/sysvinit
+ cron? ( virtual/cron )
+ logrotate? ( app-admin/logrotate )
+ networkmanager? ( net-misc/networkmanager:= )
+"
+
+CONFIG_CHECK="~NETFILTER_NETLINK
+ ~NETFILTER_NETLINK_QUEUE
+ ~NETFILTER_XTABLES
+ ~NETFILTER_XT_TARGET_NFQUEUE
+ ~NETFILTER_XT_MATCH_IPRANGE
+ ~NETFILTER_XT_MARK
+ ~NETFILTER_XT_MATCH_MULTIPORT
+ ~NETFILTER_XT_MATCH_STATE
+ ~NF_CONNTRACK
+ ~NF_CONNTRACK_IPV4
+ ~NF_DEFRAG_IPV4
+ ~IP_NF_FILTER
+ ~IP_NF_IPTABLES
+ ~IP_NF_TARGET_REJECT"
+
+S="${WORKDIR}/${MY_PN}-code-${COMMIT}"
+
+src_prepare() {
+ default
+ sed -e 's:/sbin/runscript:/sbin/openrc-run:' \
+ -i pglcmd/init/pgl.gentoo.in || die "Failed to convert to openrc-run"
+
+ eautoreconf
+}
+
+src_configure() {
+ local myeconfargs=(
+ --disable-lowmem
+ --with-iconsdir=/usr/share/icons/hicolor/128x128/apps
+ --with-gentoo-init
+ --localstatedir=/var
+ $(use_enable cron)
+ $(use_enable dbus)
+ $(use_enable logrotate)
+ $(use_enable networkmanager)
+ $(use_with qt5)
+ $(use_enable zlib)
+ --with-systemd="$(systemd_get_systemunitdir)"
+ )
+ econf "${myeconfargs[@]}"
+}
+
+src_install() {
+ default
+ keepdir /var/{lib,log,spool}/pgl
+ rm -rf "${ED%/}"/tmp || die
+ find "${ED}" -name '*.la' -delete || die
+}
+
+pkg_postinst() {
+ elog "Optional dependencies:"
+ elog " app-arch/p7zip (needed for blocklists packed as .7z)"
+ elog " app-arch/unzip (needed for blocklists packed as .zip)"
+ elog " virtual/mta (needed to send informational (blocklist updates) and"
+ elog " warning mails (if pglcmd.wd detects a problem.))"
+
+ gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+ gnome2_icon_cache_update
+}
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/pglinux/
@ 2018-04-08 20:13 Andreas Sturmlechner
0 siblings, 0 replies; 23+ messages in thread
From: Andreas Sturmlechner @ 2018-04-08 20:13 UTC (permalink / raw
To: gentoo-commits
commit: e16dcbac364838fc643b748e3c49bcbb2ba27a04
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 8 20:13:47 2018 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Apr 8 20:13:47 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e16dcbac
net-firewall/pglinux: Drop obsolete DEPEND
Package-Manager: Portage-2.3.28, Repoman-2.3.9
net-firewall/pglinux/pglinux-2.3.1_p20171006.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-firewall/pglinux/pglinux-2.3.1_p20171006.ebuild b/net-firewall/pglinux/pglinux-2.3.1_p20171006.ebuild
index 2fabdd344ba..d388a36ddce 100644
--- a/net-firewall/pglinux/pglinux-2.3.1_p20171006.ebuild
+++ b/net-firewall/pglinux/pglinux-2.3.1_p20171006.ebuild
@@ -22,7 +22,7 @@ COMMON_DEPEND="
net-libs/libnetfilter_queue
net-libs/libnfnetlink
dbus? ( sys-apps/dbus )
- qt5? ( sys-auth/polkit-qt[qt5(+)]
+ qt5? (
dev-qt/qtcore:5
dev-qt/qtdbus:5
dev-qt/qtgui:5
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/pglinux/
@ 2018-04-13 9:40 Andreas Sturmlechner
0 siblings, 0 replies; 23+ messages in thread
From: Andreas Sturmlechner @ 2018-04-13 9:40 UTC (permalink / raw
To: gentoo-commits
commit: 07a68a03aa780fd138254a577990bc5f095babc7
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 13 09:39:45 2018 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Fri Apr 13 09:39:45 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07a68a03
net-firewall/pglinux: Restore keywords
Package-Manager: Portage-2.3.28, Repoman-2.3.9
net-firewall/pglinux/pglinux-2.3.1_p20171006.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-firewall/pglinux/pglinux-2.3.1_p20171006.ebuild b/net-firewall/pglinux/pglinux-2.3.1_p20171006.ebuild
index d388a36ddce..8f0826099c3 100644
--- a/net-firewall/pglinux/pglinux-2.3.1_p20171006.ebuild
+++ b/net-firewall/pglinux/pglinux-2.3.1_p20171006.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://sourceforge.net/projects/peerguardian/"
SRC_URI="https://sourceforge.net/code-snapshots/git/p/pe/peerguardian/code.git/peerguardian-code-${COMMIT}.zip -> ${P}.zip"
LICENSE="GPL-3"
-KEYWORDS=""
+KEYWORDS="~amd64 ~x86"
SLOT="0"
IUSE="cron dbus logrotate networkmanager qt5 zlib"
REQUIRED_USE="qt5? ( dbus )"
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/pglinux/
@ 2018-04-13 20:00 Andreas Sturmlechner
0 siblings, 0 replies; 23+ messages in thread
From: Andreas Sturmlechner @ 2018-04-13 20:00 UTC (permalink / raw
To: gentoo-commits
commit: 1330c6e86cb313ee831761be05bef3112a44d900
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 13 19:46:24 2018 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Fri Apr 13 19:59:49 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1330c6e8
net-firewall/pglinux: Drop old Qt4-based
Closes: https://bugs.gentoo.org/645432
Package-Manager: Portage-2.3.28, Repoman-2.3.9
net-firewall/pglinux/Manifest | 1 -
net-firewall/pglinux/pglinux-2.3.1.ebuild | 99 -------------------------------
2 files changed, 100 deletions(-)
diff --git a/net-firewall/pglinux/Manifest b/net-firewall/pglinux/Manifest
index fa229c952e0..5f9ce458f22 100644
--- a/net-firewall/pglinux/Manifest
+++ b/net-firewall/pglinux/Manifest
@@ -1,2 +1 @@
-DIST pgl-2.3.1.tar.gz 605656 BLAKE2B 1fbce4b3c7d116915b303093ef18f434c8bb9dd23e1065d42dc573face9274c68321477529b536868eca9c03f23f3aad67f371960d7e547ae8c07fdee09f6d10 SHA512 f23d44ad6448814ba0a2c90292ff4a933d31fed942886d63c50bb62fb56e1af70df72e09070ad3cd27c878f322576326040c330fbdbda63128ad304375b02a1e
DIST pglinux-2.3.1_p20171006.zip 340253 BLAKE2B a39ecad1290dd31b126ed58c22f2de1162a4081e07f576509b5d77adffeb4a74b5aeb489f8f63134b0fc37d174e61b6631bdb350c3277729456092ba0ae3c600 SHA512 ea30076d7a21fa71d5e352c479cb1a463c9f244d675f5c7f9d5d25a33b27f4c7f1a39d173f2fd156e3f2cb0652da0a06c078fc38972275073f38d48f207e42f3
diff --git a/net-firewall/pglinux/pglinux-2.3.1.ebuild b/net-firewall/pglinux/pglinux-2.3.1.ebuild
deleted file mode 100644
index 30e9caebcca..00000000000
--- a/net-firewall/pglinux/pglinux-2.3.1.ebuild
+++ /dev/null
@@ -1,99 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-MY_P="pgl-${PV}"
-inherit eutils gnome2-utils linux-info systemd
-
-DESCRIPTION="Privacy oriented firewall application"
-HOMEPAGE="https://sourceforge.net/projects/peerguardian/"
-SRC_URI="mirror://sourceforge/peerguardian/${MY_P}.tar.gz"
-
-LICENSE="GPL-3"
-KEYWORDS="amd64 x86"
-SLOT="0"
-IUSE="cron dbus logrotate networkmanager qt4 zlib"
-REQUIRED_USE="qt4? ( dbus )"
-
-COMMON_DEPEND="
- net-libs/libnetfilter_queue
- net-libs/libnfnetlink
- dbus? ( sys-apps/dbus )
- zlib? ( sys-libs/zlib )
- qt4? ( sys-auth/polkit-qt[qt4]
- dev-qt/qtcore:4
- dev-qt/qtdbus:4
- dev-qt/qtgui:4
- || ( kde-plasma/kde-cli-tools[kdesu] x11-misc/ktsuss )
- )
-"
-DEPEND="${COMMON_DEPEND}
- virtual/pkgconfig
- sys-devel/libtool:2
-"
-RDEPEND="${COMMON_DEPEND}
- net-firewall/iptables
- sys-apps/sysvinit
- cron? ( virtual/cron )
- logrotate? ( app-admin/logrotate )
- networkmanager? ( net-misc/networkmanager:= )
-"
-
-CONFIG_CHECK="~NETFILTER_NETLINK
- ~NETFILTER_NETLINK_QUEUE
- ~NETFILTER_XTABLES
- ~NETFILTER_XT_TARGET_NFQUEUE
- ~NETFILTER_XT_MATCH_IPRANGE
- ~NETFILTER_XT_MARK
- ~NETFILTER_XT_MATCH_MULTIPORT
- ~NETFILTER_XT_MATCH_STATE
- ~NF_CONNTRACK
- ~NF_CONNTRACK_IPV4
- ~NF_DEFRAG_IPV4
- ~IP_NF_FILTER
- ~IP_NF_IPTABLES
- ~IP_NF_TARGET_REJECT"
-
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
- default
- sed -i -e 's:/sbin/runscript:/sbin/openrc-run:' pglcmd/init/pgl.gentoo.in || die
-}
-
-src_configure() {
- econf \
- --localstatedir=/var \
- $(use_enable logrotate) \
- $(use_enable cron) \
- $(use_enable networkmanager) \
- $(use_enable zlib) \
- $(use_enable dbus) \
- --disable-lowmem \
- --with-iconsdir=/usr/share/icons/hicolor/128x128/apps \
- --with-gentoo-init \
- $(use_with qt4) \
- --with-systemd="$(systemd_get_systemunitdir)"
-}
-
-src_install() {
- default
- keepdir /var/{lib,log,spool}/pgl
- rm -rf "${ED%/}"/tmp || die
- prune_libtool_files --modules
-}
-
-pkg_postinst() {
- elog "optional dependencies:"
- elog " app-arch/p7zip (needed for blocklists packed as .7z)"
- elog " app-arch/unzip (needed for blocklists packed as .zip)"
- elog " virtual/mta (needed to send informational (blocklist updates) and"
- elog " warning mails (if pglcmd.wd detects a problem.))"
-
- gnome2_icon_cache_update
-}
-
-pkg_postrm() {
- gnome2_icon_cache_update
-}
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/pglinux/
@ 2018-08-18 17:40 Andreas Sturmlechner
0 siblings, 0 replies; 23+ messages in thread
From: Andreas Sturmlechner @ 2018-08-18 17:40 UTC (permalink / raw
To: gentoo-commits
commit: f5e40894f9ba93f953c49b867bbadcc44cce2e44
Author: Francesco Turco <fturco <AT> fastmail <DOT> fm>
AuthorDate: Sat Aug 18 16:26:17 2018 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Aug 18 17:39:44 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5e40894
net-firewall/pglinux: update links to changelog and bug tracker
Closes: https://github.com/gentoo/gentoo/pull/9614
net-firewall/pglinux/metadata.xml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-firewall/pglinux/metadata.xml b/net-firewall/pglinux/metadata.xml
index cd9a336cff5..dcc75e5ecdc 100644
--- a/net-firewall/pglinux/metadata.xml
+++ b/net-firewall/pglinux/metadata.xml
@@ -3,9 +3,9 @@
<pkgmetadata>
<!-- maintainer-needed -->
<upstream>
- <changelog>https://sourceforge.net/news/?group_id=131687</changelog>
+ <changelog>https://sourceforge.net/p/peerguardian/news/</changelog>
<doc lang="en">https://sourceforge.net/projects/peerguardian/support</doc>
- <bugs-to>https://sourceforge.net/tracker/?group_id=131687</bugs-to>
+ <bugs-to>https://sourceforge.net/p/peerguardian/bugs/</bugs-to>
<remote-id type="sourceforge">peerguardian</remote-id>
</upstream>
<use>
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/pglinux/
@ 2021-01-08 0:00 Andreas Sturmlechner
0 siblings, 0 replies; 23+ messages in thread
From: Andreas Sturmlechner @ 2021-01-08 0:00 UTC (permalink / raw
To: gentoo-commits
commit: 5d1ac316f534cca585af27a755f68c375cb391e9
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 7 21:46:55 2021 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Thu Jan 7 23:56:49 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d1ac316
net-firewall/pglinux: EAPI-7, gnome2-utils->xdg-utils, use qmake-utils
Closes: https://bugs.gentoo.org/764341
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
.../pglinux/pglinux-2.3.1_p20171006.ebuild | 35 ++++++++++++----------
1 file changed, 20 insertions(+), 15 deletions(-)
diff --git a/net-firewall/pglinux/pglinux-2.3.1_p20171006.ebuild b/net-firewall/pglinux/pglinux-2.3.1_p20171006.ebuild
index eafaafe2ee8..615e1a8fc7a 100644
--- a/net-firewall/pglinux/pglinux-2.3.1_p20171006.ebuild
+++ b/net-firewall/pglinux/pglinux-2.3.1_p20171006.ebuild
@@ -1,24 +1,24 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=6
+EAPI=7
COMMIT=9d91ab6a8e6bc2b41e985aa698eb5c1eb364fea8
MY_PN="peerguardian"
MY_P="${MY_PN}-${PV}"
-inherit autotools gnome2-utils linux-info systemd
+inherit autotools qmake-utils linux-info systemd xdg-utils
DESCRIPTION="Privacy oriented firewall application"
HOMEPAGE="https://sourceforge.net/projects/peerguardian/"
SRC_URI="https://sourceforge.net/code-snapshots/git/p/pe/peerguardian/code.git/peerguardian-code-${COMMIT}.zip -> ${P}.zip"
LICENSE="GPL-3"
-KEYWORDS="~amd64 ~x86"
SLOT="0"
+KEYWORDS="~amd64 ~x86"
IUSE="cron dbus logrotate networkmanager qt5 zlib"
REQUIRED_USE="qt5? ( dbus )"
-COMMON_DEPEND="
+DEPEND="
net-libs/libnetfilter_queue
net-libs/libnfnetlink
dbus? ( sys-apps/dbus )
@@ -31,17 +31,17 @@ COMMON_DEPEND="
)
zlib? ( sys-libs/zlib )
"
-DEPEND="${COMMON_DEPEND}
- virtual/pkgconfig
- sys-devel/libtool:2
-"
-RDEPEND="${COMMON_DEPEND}
+RDEPEND="${DEPEND}
net-firewall/iptables
sys-apps/sysvinit
cron? ( virtual/cron )
logrotate? ( app-admin/logrotate )
networkmanager? ( net-misc/networkmanager:= )
"
+BDEPEND="
+ sys-devel/libtool:2
+ virtual/pkgconfig
+"
CONFIG_CHECK="~NETFILTER_NETLINK
~NETFILTER_NETLINK_QUEUE
@@ -58,9 +58,8 @@ CONFIG_CHECK="~NETFILTER_NETLINK
~IP_NF_IPTABLES
~IP_NF_TARGET_REJECT"
-PATCHES=(
- "${FILESDIR}"/${P}-fno-common.patch
-)
+PATCHES=( "${FILESDIR}"/${P}-fno-common.patch )
+
S="${WORKDIR}/${MY_PN}-code-${COMMIT}"
src_prepare() {
@@ -82,6 +81,12 @@ src_configure() {
$(use_enable logrotate)
$(use_enable networkmanager)
$(use_with qt5)
+ LRELEASE=$(qt5_get_bindir)/lrelease
+ LUPDATE=$(qt5_get_bindir)/lupdate
+ MOC=$(qt5_get_bindir)/moc
+ QMAKE=$(qt5_get_bindir)/qmake
+ RCC=$(qt5_get_bindir)/rcc
+ UIC=$(qt5_get_bindir)/uic
$(use_enable zlib)
--with-systemd="$(systemd_get_systemunitdir)"
)
@@ -102,9 +107,9 @@ pkg_postinst() {
elog " virtual/mta (needed to send informational (blocklist updates) and"
elog " warning mails (if pglcmd.wd detects a problem.))"
- gnome2_icon_cache_update
+ xdg_icon_cache_update
}
pkg_postrm() {
- gnome2_icon_cache_update
+ xdg_icon_cache_update
}
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/pglinux/
@ 2021-01-08 0:14 Andreas Sturmlechner
0 siblings, 0 replies; 23+ messages in thread
From: Andreas Sturmlechner @ 2021-01-08 0:14 UTC (permalink / raw
To: gentoo-commits
commit: ccd374875e0d8d880b2db3254ab79af722808ca3
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 8 00:14:07 2021 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Fri Jan 8 00:14:07 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ccd37487
net-firewall/pglinux: Fix UnnecessarySlashStrip
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
net-firewall/pglinux/pglinux-2.3.1_p20171006.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-firewall/pglinux/pglinux-2.3.1_p20171006.ebuild b/net-firewall/pglinux/pglinux-2.3.1_p20171006.ebuild
index 615e1a8fc7a..89228dc6173 100644
--- a/net-firewall/pglinux/pglinux-2.3.1_p20171006.ebuild
+++ b/net-firewall/pglinux/pglinux-2.3.1_p20171006.ebuild
@@ -96,7 +96,7 @@ src_configure() {
src_install() {
default
keepdir /var/{lib,log,spool}/pgl
- rm -rf "${ED%/}"/tmp || die
+ rm -rf "${ED}"/tmp || die
find "${ED}" -name '*.la' -delete || die
}
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/pglinux/
@ 2021-01-17 4:10 Sam James
0 siblings, 0 replies; 23+ messages in thread
From: Sam James @ 2021-01-17 4:10 UTC (permalink / raw
To: gentoo-commits
commit: 90cc95809e5cb7a7c0d0f01a5b900029d8de444d
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 17 03:41:59 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Jan 17 04:10:23 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90cc9580
net-firewall/pglinux: fix MissingUnpackerDep
Package-Manager: Portage-3.0.12.0.2-prefix, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-firewall/pglinux/pglinux-2.3.1_p20171006.ebuild | 1 +
1 file changed, 1 insertion(+)
diff --git a/net-firewall/pglinux/pglinux-2.3.1_p20171006.ebuild b/net-firewall/pglinux/pglinux-2.3.1_p20171006.ebuild
index 89228dc6173..4c8bd3811e7 100644
--- a/net-firewall/pglinux/pglinux-2.3.1_p20171006.ebuild
+++ b/net-firewall/pglinux/pglinux-2.3.1_p20171006.ebuild
@@ -39,6 +39,7 @@ RDEPEND="${DEPEND}
networkmanager? ( net-misc/networkmanager:= )
"
BDEPEND="
+ app-arch/unzip
sys-devel/libtool:2
virtual/pkgconfig
"
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/pglinux/
@ 2021-07-31 0:33 Sam James
0 siblings, 0 replies; 23+ messages in thread
From: Sam James @ 2021-07-31 0:33 UTC (permalink / raw
To: gentoo-commits
commit: ab8b0d3c153afeb3447963dcc4807fc41a288df6
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 31 00:32:45 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jul 31 00:32:53 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab8b0d3c
net-firewall/pglinux: [QA] unconditionally install logrotate files
QA policy [0] says that we don't conditionalise installation of
small files. It's a wasteful rebuild and inconsistent across packages
for when users desire completions to be available.
[0] https://projects.gentoo.org/qa/policy-guide/installed-files.html#pg0301
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-firewall/pglinux/metadata.xml | 1 -
...inux-2.3.1_p20171006.ebuild => pglinux-2.3.1_p20171006-r1.ebuild} | 5 ++---
2 files changed, 2 insertions(+), 4 deletions(-)
diff --git a/net-firewall/pglinux/metadata.xml b/net-firewall/pglinux/metadata.xml
index dcc75e5ecdc..e2699e133a8 100644
--- a/net-firewall/pglinux/metadata.xml
+++ b/net-firewall/pglinux/metadata.xml
@@ -10,7 +10,6 @@
</upstream>
<use>
<flag name="cron">Install cron script</flag>
- <flag name="logrotate">Install logrotate.d file</flag>
</use>
<longdescription lang="en">
PeerGuardian Linux (pgl) is a privacy oriented firewall application. It blocks
diff --git a/net-firewall/pglinux/pglinux-2.3.1_p20171006.ebuild b/net-firewall/pglinux/pglinux-2.3.1_p20171006-r1.ebuild
similarity index 95%
rename from net-firewall/pglinux/pglinux-2.3.1_p20171006.ebuild
rename to net-firewall/pglinux/pglinux-2.3.1_p20171006-r1.ebuild
index 4c8bd3811e7..c3893308ef3 100644
--- a/net-firewall/pglinux/pglinux-2.3.1_p20171006.ebuild
+++ b/net-firewall/pglinux/pglinux-2.3.1_p20171006-r1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="https://sourceforge.net/code-snapshots/git/p/pe/peerguardian/code.git/p
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
-IUSE="cron dbus logrotate networkmanager qt5 zlib"
+IUSE="cron dbus networkmanager qt5 zlib"
REQUIRED_USE="qt5? ( dbus )"
DEPEND="
@@ -35,7 +35,6 @@ RDEPEND="${DEPEND}
net-firewall/iptables
sys-apps/sysvinit
cron? ( virtual/cron )
- logrotate? ( app-admin/logrotate )
networkmanager? ( net-misc/networkmanager:= )
"
BDEPEND="
@@ -77,9 +76,9 @@ src_configure() {
--with-iconsdir=/usr/share/icons/hicolor/128x128/apps
--with-gentoo-init
--localstatedir=/var
+ --enable-logrotate
$(use_enable cron)
$(use_enable dbus)
- $(use_enable logrotate)
$(use_enable networkmanager)
$(use_with qt5)
LRELEASE=$(qt5_get_bindir)/lrelease
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/pglinux/
@ 2023-12-23 9:13 Andreas Sturmlechner
0 siblings, 0 replies; 23+ messages in thread
From: Andreas Sturmlechner @ 2023-12-23 9:13 UTC (permalink / raw
To: gentoo-commits
commit: 108fb7859858b74aa8d37ad40d17de8ff712b69d
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 23 00:28:52 2023 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Dec 23 08:35:51 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=108fb785
net-firewall/pglinux: Add kde-plasma/kde-cli-tools:* slot op
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
net-firewall/pglinux/pglinux-2.3.1_p20171006-r1.ebuild | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/net-firewall/pglinux/pglinux-2.3.1_p20171006-r1.ebuild b/net-firewall/pglinux/pglinux-2.3.1_p20171006-r1.ebuild
index c3893308ef37..aea2819037a2 100644
--- a/net-firewall/pglinux/pglinux-2.3.1_p20171006-r1.ebuild
+++ b/net-firewall/pglinux/pglinux-2.3.1_p20171006-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -27,7 +27,10 @@ DEPEND="
dev-qt/qtdbus:5
dev-qt/qtgui:5
dev-qt/qtwidgets:5
- || ( kde-plasma/kde-cli-tools[kdesu] x11-misc/ktsuss )
+ || (
+ kde-plasma/kde-cli-tools:*[kdesu]
+ x11-misc/ktsuss
+ )
)
zlib? ( sys-libs/zlib )
"
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/pglinux/
@ 2024-09-04 11:45 Andreas Sturmlechner
0 siblings, 0 replies; 23+ messages in thread
From: Andreas Sturmlechner @ 2024-09-04 11:45 UTC (permalink / raw
To: gentoo-commits
commit: 25e9a32357e8afd630d040f5fb8c0fbca9e52aaf
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 3 17:43:52 2024 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed Sep 4 11:45:37 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25e9a323
net-firewall/pglinux: Use kde-plasma/kdesu-gui instead of kde-cli-tools
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
.../pglinux/pglinux-2.3.1_p20171006-r2.ebuild | 118 +++++++++++++++++++++
1 file changed, 118 insertions(+)
diff --git a/net-firewall/pglinux/pglinux-2.3.1_p20171006-r2.ebuild b/net-firewall/pglinux/pglinux-2.3.1_p20171006-r2.ebuild
new file mode 100644
index 000000000000..4d46a3319fb3
--- /dev/null
+++ b/net-firewall/pglinux/pglinux-2.3.1_p20171006-r2.ebuild
@@ -0,0 +1,118 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+COMMIT=9d91ab6a8e6bc2b41e985aa698eb5c1eb364fea8
+MY_PN="peerguardian"
+MY_P="${MY_PN}-${PV}"
+inherit autotools qmake-utils linux-info systemd xdg-utils
+
+DESCRIPTION="Privacy oriented firewall application"
+HOMEPAGE="https://sourceforge.net/projects/peerguardian/"
+SRC_URI="https://sourceforge.net/code-snapshots/git/p/pe/peerguardian/code.git/peerguardian-code-${COMMIT}.zip -> ${P}.zip"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="cron dbus networkmanager qt5 zlib"
+REQUIRED_USE="qt5? ( dbus )"
+
+DEPEND="
+ net-libs/libnetfilter_queue
+ net-libs/libnfnetlink
+ dbus? ( sys-apps/dbus )
+ qt5? (
+ dev-qt/qtcore:5
+ dev-qt/qtdbus:5
+ dev-qt/qtgui:5
+ dev-qt/qtwidgets:5
+ )
+ zlib? ( sys-libs/zlib )
+"
+RDEPEND="${DEPEND}
+ net-firewall/iptables
+ sys-apps/sysvinit
+ cron? ( virtual/cron )
+ networkmanager? ( net-misc/networkmanager:= )
+ qt5? ( || (
+ kde-plasma/kdesu-gui
+ x11-misc/ktsuss
+ ) )
+"
+BDEPEND="
+ app-arch/unzip
+ dev-build/libtool:2
+ virtual/pkgconfig
+"
+
+CONFIG_CHECK="~NETFILTER_NETLINK
+ ~NETFILTER_NETLINK_QUEUE
+ ~NETFILTER_XTABLES
+ ~NETFILTER_XT_TARGET_NFQUEUE
+ ~NETFILTER_XT_MATCH_IPRANGE
+ ~NETFILTER_XT_MARK
+ ~NETFILTER_XT_MATCH_MULTIPORT
+ ~NETFILTER_XT_MATCH_STATE
+ ~NF_CONNTRACK
+ ~NF_CONNTRACK_IPV4
+ ~NF_DEFRAG_IPV4
+ ~IP_NF_FILTER
+ ~IP_NF_IPTABLES
+ ~IP_NF_TARGET_REJECT"
+
+PATCHES=( "${FILESDIR}"/${P}-fno-common.patch )
+
+S="${WORKDIR}/${MY_PN}-code-${COMMIT}"
+
+src_prepare() {
+ default
+ sed -e 's:/sbin/runscript:/sbin/openrc-run:' \
+ -i pglcmd/init/pgl.gentoo.in || die "Failed to convert to openrc-run"
+
+ eautoreconf
+}
+
+src_configure() {
+ local myeconfargs=(
+ --disable-lowmem
+ --with-iconsdir=/usr/share/icons/hicolor/128x128/apps
+ --with-gentoo-init
+ --localstatedir=/var
+ --enable-logrotate
+ $(use_enable cron)
+ $(use_enable dbus)
+ $(use_enable networkmanager)
+ $(use_with qt5)
+ LRELEASE=$(qt5_get_bindir)/lrelease
+ LUPDATE=$(qt5_get_bindir)/lupdate
+ MOC=$(qt5_get_bindir)/moc
+ QMAKE=$(qt5_get_bindir)/qmake
+ RCC=$(qt5_get_bindir)/rcc
+ UIC=$(qt5_get_bindir)/uic
+ $(use_enable zlib)
+ --with-systemd="$(systemd_get_systemunitdir)"
+ )
+ econf "${myeconfargs[@]}"
+}
+
+src_install() {
+ default
+ keepdir /var/{lib,log,spool}/pgl
+ rm -rf "${ED}"/tmp || die
+ find "${ED}" -name '*.la' -delete || die
+}
+
+pkg_postinst() {
+ elog "Optional dependencies:"
+ elog " app-arch/p7zip (needed for blocklists packed as .7z)"
+ elog " app-arch/unzip (needed for blocklists packed as .zip)"
+ elog " virtual/mta (needed to send informational (blocklist updates) and"
+ elog " warning mails (if pglcmd.wd detects a problem.))"
+
+ xdg_icon_cache_update
+}
+
+pkg_postrm() {
+ xdg_icon_cache_update
+}
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-firewall/pglinux/
@ 2024-09-04 11:45 Andreas Sturmlechner
0 siblings, 0 replies; 23+ messages in thread
From: Andreas Sturmlechner @ 2024-09-04 11:45 UTC (permalink / raw
To: gentoo-commits
commit: df715bad5eaed6aaa570a3d09b191b957872edd2
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 3 17:44:11 2024 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed Sep 4 11:45:37 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df715bad
net-firewall/pglinux: drop 2.3.1_p20171006-r1
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
.../pglinux/pglinux-2.3.1_p20171006-r1.ebuild | 118 ---------------------
1 file changed, 118 deletions(-)
diff --git a/net-firewall/pglinux/pglinux-2.3.1_p20171006-r1.ebuild b/net-firewall/pglinux/pglinux-2.3.1_p20171006-r1.ebuild
deleted file mode 100644
index dce22e6b5022..000000000000
--- a/net-firewall/pglinux/pglinux-2.3.1_p20171006-r1.ebuild
+++ /dev/null
@@ -1,118 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-COMMIT=9d91ab6a8e6bc2b41e985aa698eb5c1eb364fea8
-MY_PN="peerguardian"
-MY_P="${MY_PN}-${PV}"
-inherit autotools qmake-utils linux-info systemd xdg-utils
-
-DESCRIPTION="Privacy oriented firewall application"
-HOMEPAGE="https://sourceforge.net/projects/peerguardian/"
-SRC_URI="https://sourceforge.net/code-snapshots/git/p/pe/peerguardian/code.git/peerguardian-code-${COMMIT}.zip -> ${P}.zip"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="cron dbus networkmanager qt5 zlib"
-REQUIRED_USE="qt5? ( dbus )"
-
-DEPEND="
- net-libs/libnetfilter_queue
- net-libs/libnfnetlink
- dbus? ( sys-apps/dbus )
- qt5? (
- dev-qt/qtcore:5
- dev-qt/qtdbus:5
- dev-qt/qtgui:5
- dev-qt/qtwidgets:5
- || (
- kde-plasma/kde-cli-tools:*[kdesu]
- x11-misc/ktsuss
- )
- )
- zlib? ( sys-libs/zlib )
-"
-RDEPEND="${DEPEND}
- net-firewall/iptables
- sys-apps/sysvinit
- cron? ( virtual/cron )
- networkmanager? ( net-misc/networkmanager:= )
-"
-BDEPEND="
- app-arch/unzip
- dev-build/libtool:2
- virtual/pkgconfig
-"
-
-CONFIG_CHECK="~NETFILTER_NETLINK
- ~NETFILTER_NETLINK_QUEUE
- ~NETFILTER_XTABLES
- ~NETFILTER_XT_TARGET_NFQUEUE
- ~NETFILTER_XT_MATCH_IPRANGE
- ~NETFILTER_XT_MARK
- ~NETFILTER_XT_MATCH_MULTIPORT
- ~NETFILTER_XT_MATCH_STATE
- ~NF_CONNTRACK
- ~NF_CONNTRACK_IPV4
- ~NF_DEFRAG_IPV4
- ~IP_NF_FILTER
- ~IP_NF_IPTABLES
- ~IP_NF_TARGET_REJECT"
-
-PATCHES=( "${FILESDIR}"/${P}-fno-common.patch )
-
-S="${WORKDIR}/${MY_PN}-code-${COMMIT}"
-
-src_prepare() {
- default
- sed -e 's:/sbin/runscript:/sbin/openrc-run:' \
- -i pglcmd/init/pgl.gentoo.in || die "Failed to convert to openrc-run"
-
- eautoreconf
-}
-
-src_configure() {
- local myeconfargs=(
- --disable-lowmem
- --with-iconsdir=/usr/share/icons/hicolor/128x128/apps
- --with-gentoo-init
- --localstatedir=/var
- --enable-logrotate
- $(use_enable cron)
- $(use_enable dbus)
- $(use_enable networkmanager)
- $(use_with qt5)
- LRELEASE=$(qt5_get_bindir)/lrelease
- LUPDATE=$(qt5_get_bindir)/lupdate
- MOC=$(qt5_get_bindir)/moc
- QMAKE=$(qt5_get_bindir)/qmake
- RCC=$(qt5_get_bindir)/rcc
- UIC=$(qt5_get_bindir)/uic
- $(use_enable zlib)
- --with-systemd="$(systemd_get_systemunitdir)"
- )
- econf "${myeconfargs[@]}"
-}
-
-src_install() {
- default
- keepdir /var/{lib,log,spool}/pgl
- rm -rf "${ED}"/tmp || die
- find "${ED}" -name '*.la' -delete || die
-}
-
-pkg_postinst() {
- elog "Optional dependencies:"
- elog " app-arch/p7zip (needed for blocklists packed as .7z)"
- elog " app-arch/unzip (needed for blocklists packed as .zip)"
- elog " virtual/mta (needed to send informational (blocklist updates) and"
- elog " warning mails (if pglcmd.wd detects a problem.))"
-
- xdg_icon_cache_update
-}
-
-pkg_postrm() {
- xdg_icon_cache_update
-}
^ permalink raw reply related [flat|nested] 23+ messages in thread
end of thread, other threads:[~2024-09-04 11:45 UTC | newest]
Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-04-21 16:45 [gentoo-commits] repo/gentoo:master commit in: net-firewall/pglinux/ Amy Winston
-- strict thread matches above, loose matches on Subject: below --
2024-09-04 11:45 Andreas Sturmlechner
2024-09-04 11:45 Andreas Sturmlechner
2023-12-23 9:13 Andreas Sturmlechner
2021-07-31 0:33 Sam James
2021-01-17 4:10 Sam James
2021-01-08 0:14 Andreas Sturmlechner
2021-01-08 0:00 Andreas Sturmlechner
2018-08-18 17:40 Andreas Sturmlechner
2018-04-13 20:00 Andreas Sturmlechner
2018-04-13 9:40 Andreas Sturmlechner
2018-04-08 20:13 Andreas Sturmlechner
2018-04-08 20:11 Andreas Sturmlechner
2018-01-23 1:20 Andreas Sturmlechner
2018-01-23 1:20 Andreas Sturmlechner
2017-05-06 20:05 Andreas Sturmlechner
2016-11-03 11:19 Pacho Ramos
2016-11-03 11:19 Pacho Ramos
2016-11-03 11:19 Pacho Ramos
2016-09-18 11:54 Pacho Ramos
2016-09-18 11:54 Pacho Ramos
2016-07-07 19:48 Austin English
2015-08-15 19:45 Julian Ospald
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox