public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: net-misc/pingu/
@ 2023-09-10 18:30 Arthur Zamarin
  0 siblings, 0 replies; 4+ messages in thread
From: Arthur Zamarin @ 2023-09-10 18:30 UTC (permalink / raw
  To: gentoo-commits

commit:     ae14a59c6f41e3405e6e163fe283a030a5074e78
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 10 18:30:36 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Sep 10 18:30:36 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae14a59c

net-misc/pingu: drop stale live ebuild

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 net-misc/pingu/pingu-9999.ebuild | 50 ----------------------------------------
 1 file changed, 50 deletions(-)

diff --git a/net-misc/pingu/pingu-9999.ebuild b/net-misc/pingu/pingu-9999.ebuild
deleted file mode 100644
index 30ea3b2eab70..000000000000
--- a/net-misc/pingu/pingu-9999.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit git-r3 systemd tmpfiles toolchain-funcs
-
-DESCRIPTION="Policy routing daemon with failover and load-balancing"
-HOMEPAGE="https://github.com/ncopa/pingu"
-SRC_URI=""
-EGIT_REPO_URI="https://github.com/ncopa/${PN}.git"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS=""
-IUSE="debug doc"
-
-RDEPEND="dev-libs/libev:="
-DEPEND="${RDEPEND}
-	sys-kernel/linux-headers
-	virtual/pkgconfig
-	doc? ( app-text/asciidoc )"
-
-# Fix QA with install into path /run/pingu must be created at runtime
-PATCHES=( "${FILESDIR}"/"${PN}"-1.5-makefile.patch )
-
-src_configure() {
-	./configure "$(use_enable debug)" "$(use_enable doc)" \
-		--prefix=/usr || die "configure failed"
-}
-
-src_compile() {
-	emake CC="$(tc-getCC)"
-}
-
-src_install() {
-	default
-
-	newtmpfiles "${FILESDIR}"/pingu.tmpfile pingu.conf
-	newinitd "${FILESDIR}"/pingu.initd pingu
-	newconfd "${FILESDIR}"/pingu.confd pingu
-	systemd_dounit "${FILESDIR}"/pingu.service
-	keepdir /var/lib/pingu
-	insinto /etc/pingu
-	newins pingu.conf pingu.conf.example
-}
-
-pkg_postinst() {
-	tmpfiles_process pingu.conf
-}


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-misc/pingu/
@ 2023-09-10 18:30 Arthur Zamarin
  0 siblings, 0 replies; 4+ messages in thread
From: Arthur Zamarin @ 2023-09-10 18:30 UTC (permalink / raw
  To: gentoo-commits

commit:     c4aa7bbe97926427b1b94057d6acf6f8ae4eafa1
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 10 18:29:14 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Sep 10 18:29:20 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4aa7bbe

net-misc/pingu: EAPI=8, fix implicit warning, cleanup

Closes: https://bugs.gentoo.org/900306
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 net-misc/pingu/pingu-1.5-r1.ebuild | 64 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 64 insertions(+)

diff --git a/net-misc/pingu/pingu-1.5-r1.ebuild b/net-misc/pingu/pingu-1.5-r1.ebuild
new file mode 100644
index 000000000000..95ee72e03c46
--- /dev/null
+++ b/net-misc/pingu/pingu-1.5-r1.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit edo systemd tmpfiles toolchain-funcs
+
+DESCRIPTION="Policy routing daemon with failover and load-balancing"
+HOMEPAGE="https://github.com/ncopa/pingu"
+SRC_URI="https://github.com/ncopa/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="debug doc"
+
+RDEPEND="dev-libs/libev"
+DEPEND="${RDEPEND}
+	sys-kernel/linux-headers"
+BDEPEND="
+	virtual/pkgconfig
+	doc? ( app-text/asciidoc )
+"
+
+# Fix QA with install into path /run/pingu must be created at runtime
+PATCHES=( "${FILESDIR}"/"${P}"-makefile.patch )
+
+QA_CONFIG_IMPL_DECL_SKIP=( 'strlcpy' )
+
+src_prepare() {
+	default
+
+	# Fix compilation issue
+	sed -e '/icp->un.frag.__unused = 0;/d' -i src/icmp.c || die
+}
+
+src_configure() {
+	local myconf=(
+		$(use_enable debug)
+		$(use_enable doc)
+		--prefix=/usr
+	)
+	edo ./configure "${myconf[@]}"
+}
+
+src_compile() {
+	emake CC="$(tc-getCC)"
+}
+
+src_install() {
+	default
+
+	newtmpfiles "${FILESDIR}"/pingu.tmpfile pingu.conf
+	newinitd "${FILESDIR}"/pingu.initd pingu
+	newconfd "${FILESDIR}"/pingu.confd pingu
+	systemd_dounit "${FILESDIR}"/pingu.service
+	keepdir /var/lib/pingu
+	insinto /etc/pingu
+	newins pingu.conf pingu.conf.example
+}
+
+pkg_postinst() {
+	tmpfiles_process pingu.conf
+}


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-misc/pingu/
@ 2024-04-11 10:59 Arthur Zamarin
  0 siblings, 0 replies; 4+ messages in thread
From: Arthur Zamarin @ 2024-04-11 10:59 UTC (permalink / raw
  To: gentoo-commits

commit:     10c273070f0b306721ae06f68e68615b5da421af
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 11 10:58:44 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Thu Apr 11 10:59:41 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10c27307

net-misc/pingu: drop 1.5, EAPI6--

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 net-misc/pingu/pingu-1.5.ebuild | 57 -----------------------------------------
 1 file changed, 57 deletions(-)

diff --git a/net-misc/pingu/pingu-1.5.ebuild b/net-misc/pingu/pingu-1.5.ebuild
deleted file mode 100644
index 1d074daa34ea..000000000000
--- a/net-misc/pingu/pingu-1.5.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit systemd tmpfiles toolchain-funcs
-
-DESCRIPTION="Policy routing daemon with failover and load-balancing"
-HOMEPAGE="https://github.com/ncopa/pingu"
-SRC_URI="https://github.com/ncopa/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="debug doc"
-
-RDEPEND="dev-libs/libev:="
-DEPEND="${RDEPEND}
-	sys-kernel/linux-headers
-	virtual/pkgconfig
-	doc? ( app-text/asciidoc )"
-
-# Fix QA with install into path /run/pingu must be created at runtime
-PATCHES=( "${FILESDIR}"/"${P}"-makefile.patch )
-
-src_prepare() {
-	default
-
-	# Fix compilation issue
-	sed -i '/icp->un.frag.__unused = 0;/d' src/icmp.c \
-		|| die "sed failed for src/icmp.c"
-}
-
-src_configure() {
-	./configure "$(use_enable debug)" "$(use_enable doc)" \
-		--prefix=/usr || die "configure failed"
-}
-
-src_compile() {
-	emake CC="$(tc-getCC)"
-}
-
-src_install() {
-	default
-
-	newtmpfiles "${FILESDIR}"/pingu.tmpfile pingu.conf
-	newinitd "${FILESDIR}"/pingu.initd pingu
-	newconfd "${FILESDIR}"/pingu.confd pingu
-	systemd_dounit "${FILESDIR}"/pingu.service
-	keepdir /var/lib/pingu
-	insinto /etc/pingu
-	newins pingu.conf pingu.conf.example
-}
-
-pkg_postinst() {
-	tmpfiles_process pingu.conf
-}


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-misc/pingu/
@ 2024-08-23  2:08 Eli Schwartz
  0 siblings, 0 replies; 4+ messages in thread
From: Eli Schwartz @ 2024-08-23  2:08 UTC (permalink / raw
  To: gentoo-commits

commit:     f8014ba6a6269c7d9cc06135709c9a36891266c0
Author:     Vladimir Pavljuchenkov <spiderx <AT> spiderx <DOT> dp <DOT> ua>
AuthorDate: Tue Aug 20 17:02:28 2024 +0000
Commit:     Eli Schwartz <eschwartz <AT> gentoo <DOT> org>
CommitDate: Fri Aug 23 02:03:14 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8014ba6

net-misc/pingu: add 1.5.1, wrt 937095

Closes: https://bugs.gentoo.org/937095

Signed-off-by: Vladimir Pavljuchenkov <spiderx <AT> spiderx.dp.ua>
Closes: https://github.com/gentoo/gentoo/pull/38220
Signed-off-by: Eli Schwartz <eschwartz <AT> gentoo.org>

 net-misc/pingu/Manifest           |  1 +
 net-misc/pingu/pingu-1.5.1.ebuild | 55 +++++++++++++++++++++++++++++++++++++++
 2 files changed, 56 insertions(+)

diff --git a/net-misc/pingu/Manifest b/net-misc/pingu/Manifest
index dff3f8cd1f88..52284a8b7b55 100644
--- a/net-misc/pingu/Manifest
+++ b/net-misc/pingu/Manifest
@@ -1 +1,2 @@
+DIST pingu-1.5.1.tar.gz 31574 BLAKE2B afc11958aace1a1f87dbd9051f40354f4f0bd77f599d17a4772de8ba2f7d8d7fec0e203c87f354517bf0e29d5238265459a97d950a157316b530a577a989f472 SHA512 1ec50ad5a1cb7318dc6ffb8ab8454f85dda9d31ea13503eaf001109b7255b6e93e165769e9b3c7fd95f2449f079e107f81a974b148b6f00f50f13ee8124d92fb
 DIST pingu-1.5.tar.gz 31565 BLAKE2B 13d1fa075f32d5a32cece55c5292cda08f72e711a8567cc8b25ce0e2bb0325395f1346e9feb96eb266c93d10d04609d87562192f7b7d0c22730fd4a8561c6c1a SHA512 71e5fbe93f831f24d168957cdeaff2817a22f407575316d6515755bec760d10724821070549eaab562924237b96976a1a776ca903d5fe0cd9f9b69a38eadd8c9

diff --git a/net-misc/pingu/pingu-1.5.1.ebuild b/net-misc/pingu/pingu-1.5.1.ebuild
new file mode 100644
index 000000000000..73a282c4fac8
--- /dev/null
+++ b/net-misc/pingu/pingu-1.5.1.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit edo systemd tmpfiles toolchain-funcs
+
+DESCRIPTION="Policy routing daemon with failover and load-balancing"
+HOMEPAGE="https://github.com/ncopa/pingu"
+SRC_URI="https://github.com/ncopa/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="debug doc"
+
+RDEPEND="dev-libs/libev"
+DEPEND="${RDEPEND}
+	sys-kernel/linux-headers"
+BDEPEND="virtual/pkgconfig
+	doc? ( app-text/asciidoc )"
+
+# Fix QA with install into path /run/pingu must be created at runtime
+PATCHES=( "${FILESDIR}"/"${PN}"-1.5-makefile.patch )
+
+QA_CONFIG_IMPL_DECL_SKIP=( 'strlcpy' )
+
+src_configure() {
+	local myconf=(
+		--prefix=/usr
+		"$(use_enable debug)"
+		"$(use_enable doc)"
+	)
+	edo ./configure "${myconf[@]}"
+}
+
+src_compile() {
+	emake CC="$(tc-getCC)"
+}
+
+src_install() {
+	default
+
+	newtmpfiles "${FILESDIR}"/pingu.tmpfile pingu.conf
+	newinitd "${FILESDIR}"/pingu.initd pingu
+	newconfd "${FILESDIR}"/pingu.confd pingu
+	systemd_dounit "${FILESDIR}"/pingu.service
+	keepdir /var/lib/pingu
+	insinto /etc/pingu
+	newins pingu.conf pingu.conf.example
+}
+
+pkg_postinst() {
+	tmpfiles_process pingu.conf
+}


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2024-08-23  2:08 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-04-11 10:59 [gentoo-commits] repo/gentoo:master commit in: net-misc/pingu/ Arthur Zamarin
  -- strict thread matches above, loose matches on Subject: below --
2024-08-23  2:08 Eli Schwartz
2023-09-10 18:30 Arthur Zamarin
2023-09-10 18:30 Arthur Zamarin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox