public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: net-irc/pounce/
@ 2022-05-30 17:47 Anna Vyalkova
  0 siblings, 0 replies; 2+ messages in thread
From: Anna Vyalkova @ 2022-05-30 17:47 UTC (permalink / raw
  To: gentoo-commits

commit:     03e01169d7e51b431ac07c169dacdd0e561230a0
Author:     Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Mon May 30 15:18:43 2022 +0000
Commit:     Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Mon May 30 17:46:52 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=03e01169

net-irc/pounce: edo

Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>

 net-irc/pounce/pounce-3.0.ebuild | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/net-irc/pounce/pounce-3.0.ebuild b/net-irc/pounce/pounce-3.0.ebuild
index 94675d8f1..1bc2ada8b 100644
--- a/net-irc/pounce/pounce-3.0.ebuild
+++ b/net-irc/pounce/pounce-3.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-inherit toolchain-funcs
+inherit edo toolchain-funcs
 
 DESCRIPTION="Multi-client, TLS-only IRC bouncer"
 HOMEPAGE="https://git.causal.agency/pounce/about/"
@@ -30,25 +30,25 @@ BDEPEND="
 DOCS=( {QUIRKS,README}.7 )
 
 src_configure() {
+	tc-export CC
+
 	local confargs=(
 		--prefix="${EPREFIX}/usr"
 		--mandir="${EPREFIX}/usr/share/man"
 	)
 
 	# note: not an autoconf configure script
-	./configure "${confargs[@]}" || die
+	edo ./configure "${confargs[@]}"
 
 	pushd extra/notify >/dev/null || die
-	./configure "${confargs[@]}" || die
+	edo ./configure "${confargs[@]}"
 	popd >/dev/null || die
 
 	if use palaver; then
 		pushd extra/palaver >/dev/null || die
-		./configure "${confargs[@]}" || die
+		edo ./configure "${confargs[@]}"
 		popd >/dev/null || die
 	fi
-
-	tc-export CC
 }
 
 src_compile() {


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

* [gentoo-commits] repo/proj/guru:dev commit in: net-irc/pounce/
@ 2023-03-12 10:53 Anna Vyalkova
  0 siblings, 0 replies; 2+ messages in thread
From: Anna Vyalkova @ 2023-03-12 10:53 UTC (permalink / raw
  To: gentoo-commits

commit:     145212f44fcfb8923d6a1994b6e20e53d18ee292
Author:     Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Sun Mar 12 10:11:10 2023 +0000
Commit:     Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Sun Mar 12 10:11:10 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=145212f4

net-irc/pounce: add 3.1

Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>

 net-irc/pounce/Manifest          |  1 +
 net-irc/pounce/pounce-3.1.ebuild | 58 ++++++++++++++++++++++++++++++++++++++++
 2 files changed, 59 insertions(+)

diff --git a/net-irc/pounce/Manifest b/net-irc/pounce/Manifest
index e69a997fa..63edbe1f3 100644
--- a/net-irc/pounce/Manifest
+++ b/net-irc/pounce/Manifest
@@ -1 +1,2 @@
 DIST pounce-3.0.tar.gz 50497 BLAKE2B 2c86ca02110b5bcfdcfa8d2a1fd75c804a64c382fc428550a5d8cd2489c60ecfffac55fa01cd6a6f9f0347ac64d6fe599c454c77e0247e26d9661ac47a2196ce SHA512 76fce4820c877202720505a96d45394027d88f9755fe9a96fb69e305699022d61f8dba7db524b0bc5058b5f999bcd02b82904525d3284b34a29ffbe64c1c3bc0
+DIST pounce-3.1.tar.gz 50801 BLAKE2B f18a6a347a8332ce3ffdb43dc5a6f0b2ef0a533e9a3b7b451c9834c93f6e030ba27382a3c6a39e793df94f4b6c9f196ba3c9e5b4a97f84e60c08fa0c26ee3e61 SHA512 b2c2481e152368080e6ce9b3be2d7920eb4cac630dabb994e31170fb44977e2235c0ff30a7f08e826a329da69371a3ff2dae33831cb93b18655f98fc6569da7d

diff --git a/net-irc/pounce/pounce-3.1.ebuild b/net-irc/pounce/pounce-3.1.ebuild
new file mode 100644
index 000000000..1a26d25bc
--- /dev/null
+++ b/net-irc/pounce/pounce-3.1.ebuild
@@ -0,0 +1,58 @@
+# Copyright 2022-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit edo toolchain-funcs
+
+DESCRIPTION="Multi-client, TLS-only IRC bouncer"
+HOMEPAGE="https://git.causal.agency/pounce/about/"
+SRC_URI="https://git.causal.agency/${PN}/snapshot/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="palaver"
+
+DEPEND="
+	dev-libs/libretls:=
+	virtual/libcrypt:=
+	palaver? (
+		dev-db/sqlite:3
+		net-misc/curl
+	)
+"
+RDEPEND="${DEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+DOCS=( {QUIRKS,README}.7 )
+
+src_configure() {
+	tc-export CC
+
+	local confargs=(
+		--enable-notify
+		$(use_enable palaver)
+
+		--prefix="${EPREFIX}/usr"
+		--mandir="${EPREFIX}/usr/share/man"
+	)
+
+	# note: not an autoconf configure script
+	edo ./configure "${confargs[@]}"
+}
+
+src_compile() {
+	emake all
+}
+
+src_install() {
+	emake DESTDIR="${D}" install
+	einstalldocs
+
+	newinitd "${FILESDIR}"/pounce.initd pounce
+	newconfd "${FILESDIR}"/pounce.confd pounce
+
+	insinto /etc/pounce
+	doins "${FILESDIR}"/example.conf
+}


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

end of thread, other threads:[~2023-03-12 10:53 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-05-30 17:47 [gentoo-commits] repo/proj/guru:dev commit in: net-irc/pounce/ Anna Vyalkova
  -- strict thread matches above, loose matches on Subject: below --
2023-03-12 10:53 Anna Vyalkova

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