public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: net-dns/doggo/
@ 2024-09-07 15:46 Sam James
  0 siblings, 0 replies; 3+ messages in thread
From: Sam James @ 2024-09-07 15:46 UTC (permalink / raw
  To: gentoo-commits

commit:     39a980e781b71e9119167c6fdf0c5051da87d406
Author:     Holger Hoffstätte <holger <AT> applied-asynchrony <DOT> com>
AuthorDate: Sat Sep  7 10:52:09 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Sep  7 15:45:11 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39a980e7

net-dns/doggo: new ebuild, add 1.0.4

dig/host now require a full bind installation, so doggo can
act as standalone replacement. It has many nice features too.

Signed-off-by: Holger Hoffstätte <holger <AT> applied-asynchrony.com>
Closes: https://github.com/gentoo/gentoo/pull/38496
Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-dns/doggo/Manifest           |  2 ++
 net-dns/doggo/doggo-1.0.4.ebuild | 33 +++++++++++++++++++++++++++++++++
 net-dns/doggo/metadata.xml       | 15 +++++++++++++++
 3 files changed, 50 insertions(+)

diff --git a/net-dns/doggo/Manifest b/net-dns/doggo/Manifest
new file mode 100644
index 000000000000..2a8d2a5373b5
--- /dev/null
+++ b/net-dns/doggo/Manifest
@@ -0,0 +1,2 @@
+DIST doggo-1.0.4-deps.tar.xz 11780788 BLAKE2B 3a79c3d3b7a9b34a6f7d5193774674e87ce9469233b20c770d1731c126ed972e7010b9b7964afed2f7e239bf32a92322026df0c1985f72c9dc1bddc7aa011ae6 SHA512 2de9a23d69feccb7cfa427a81163e3223cd322a6d3e4cce143e5863b95d469d0f7d15ba707fc946e7ff314c03396322a8b871c71f83527966ca7a194628f83ba
+DIST doggo-1.0.4.tar.gz 2436385 BLAKE2B adeb97fbe3ae6cf280d579a8ea5bb7790c79535f4df46041bd45aa0fa2add9f5d8bb228deb374787d1ecb3a3bc02bf9ed6545c74adb1a55262c63f1db347857e SHA512 10b59b5fa735ef42dc218a0b704292e4840b29880029f870e30fad77bc0d544bdb1d24630e3d0cc8be27542268f49c24f3ff4f0b72449195a2546d83b7942d2d

diff --git a/net-dns/doggo/doggo-1.0.4.ebuild b/net-dns/doggo/doggo-1.0.4.ebuild
new file mode 100644
index 000000000000..cb4e40048fc1
--- /dev/null
+++ b/net-dns/doggo/doggo-1.0.4.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit go-module shell-completion
+
+DESCRIPTION="Command-line DNS Client for Humans"
+HOMEPAGE="https://github.com/mr-karan/doggo"
+
+SRC_URI="https://github.com/mr-karan/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
+	https://www.applied-asynchrony.com/distfiles/${P}-deps.tar.xz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+
+src_compile() {
+	emake build-cli VERSION=${PV}
+}
+
+src_install() {
+	newbin bin/${PN}.bin ${PN}
+
+	local comp
+	for comp in bash fish zsh; do
+		bin/${PN}.bin completions $comp > "${WORKDIR}"/${PN}.$comp || die
+	done
+
+	newbashcomp "${WORKDIR}"/${PN}.bash ${PN}
+	newfishcomp "${WORKDIR}"/${PN}.fish ${PN}.fish
+	newzshcomp "${WORKDIR}"/${PN}.zsh _${PN}
+}

diff --git a/net-dns/doggo/metadata.xml b/net-dns/doggo/metadata.xml
new file mode 100644
index 000000000000..b4febebbbc53
--- /dev/null
+++ b/net-dns/doggo/metadata.xml
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person" proxied="yes">
+		<email>holger@applied-asynchrony.com</email>
+		<name>Holger Hoffstätte</name>
+	</maintainer>
+	<maintainer type="project" proxied="proxy">
+		<email>proxy-maint@gentoo.org</email>
+		<name>Proxy Maintainers</name>
+	</maintainer>
+	<upstream>
+		<remote-id type="github">mr-karan/doggo</remote-id>
+	</upstream>
+</pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: net-dns/doggo/
@ 2024-09-08  7:50 Sam James
  0 siblings, 0 replies; 3+ messages in thread
From: Sam James @ 2024-09-08  7:50 UTC (permalink / raw
  To: gentoo-commits

commit:     f36df670802410ba30e1fb58dd54d7b17e4b6e4b
Author:     Holger Hoffstätte <holger <AT> applied-asynchrony <DOT> com>
AuthorDate: Sun Sep  8 06:58:16 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Sep  8 07:50:11 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f36df670

net-misc/doggo: fix Manifest

Closes: https://bugs.gentoo.org/939305
Signed-off-by: Holger Hoffstätte <holger <AT> applied-asynchrony.com>
Closes: https://github.com/gentoo/gentoo/pull/38519
Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-dns/doggo/Manifest | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-dns/doggo/Manifest b/net-dns/doggo/Manifest
index 2a8d2a5373b5..19aa3edbfe11 100644
--- a/net-dns/doggo/Manifest
+++ b/net-dns/doggo/Manifest
@@ -1,2 +1,2 @@
-DIST doggo-1.0.4-deps.tar.xz 11780788 BLAKE2B 3a79c3d3b7a9b34a6f7d5193774674e87ce9469233b20c770d1731c126ed972e7010b9b7964afed2f7e239bf32a92322026df0c1985f72c9dc1bddc7aa011ae6 SHA512 2de9a23d69feccb7cfa427a81163e3223cd322a6d3e4cce143e5863b95d469d0f7d15ba707fc946e7ff314c03396322a8b871c71f83527966ca7a194628f83ba
+DIST doggo-1.0.4-deps.tar.xz 11679916 BLAKE2B c11bf091b6ff94fa6dc44c0d11dcfdea3834a765edf5e7548aa6edf48fcc73a78abbdd9afae643663141ef7fb06692e3887a5b45b95fabd2dad512676442a830 SHA512 222cc3dc1599eb67ed3b274cae39b342b900eb2a09ac8d8230c3bc2e60b3bacd7a43fcf6744d3432743802413924ad4cab5c76fb313071e747f6b76d6c5c2d49
 DIST doggo-1.0.4.tar.gz 2436385 BLAKE2B adeb97fbe3ae6cf280d579a8ea5bb7790c79535f4df46041bd45aa0fa2add9f5d8bb228deb374787d1ecb3a3bc02bf9ed6545c74adb1a55262c63f1db347857e SHA512 10b59b5fa735ef42dc218a0b704292e4840b29880029f870e30fad77bc0d544bdb1d24630e3d0cc8be27542268f49c24f3ff4f0b72449195a2546d83b7942d2d


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

* [gentoo-commits] repo/gentoo:master commit in: net-dns/doggo/
@ 2024-10-07  3:27 Eli Schwartz
  0 siblings, 0 replies; 3+ messages in thread
From: Eli Schwartz @ 2024-10-07  3:27 UTC (permalink / raw
  To: gentoo-commits

commit:     1fded06dc46bf437239928fd2c77ca72c534b3e8
Author:     Holger Hoffstätte <holger <AT> applied-asynchrony <DOT> com>
AuthorDate: Fri Oct  4 12:32:43 2024 +0000
Commit:     Eli Schwartz <eschwartz <AT> gentoo <DOT> org>
CommitDate: Mon Oct  7 03:23:58 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1fded06d

net-dns/doggo: add 1.0.5

Signed-off-by: Holger Hoffstätte <holger <AT> applied-asynchrony.com>
Closes: https://github.com/gentoo/gentoo/pull/38874
Signed-off-by: Eli Schwartz <eschwartz <AT> gentoo.org>

 net-dns/doggo/Manifest           |  2 ++
 net-dns/doggo/doggo-1.0.5.ebuild | 33 +++++++++++++++++++++++++++++++++
 2 files changed, 35 insertions(+)

diff --git a/net-dns/doggo/Manifest b/net-dns/doggo/Manifest
index 19aa3edbfe11..a6817a16ee32 100644
--- a/net-dns/doggo/Manifest
+++ b/net-dns/doggo/Manifest
@@ -1,2 +1,4 @@
 DIST doggo-1.0.4-deps.tar.xz 11679916 BLAKE2B c11bf091b6ff94fa6dc44c0d11dcfdea3834a765edf5e7548aa6edf48fcc73a78abbdd9afae643663141ef7fb06692e3887a5b45b95fabd2dad512676442a830 SHA512 222cc3dc1599eb67ed3b274cae39b342b900eb2a09ac8d8230c3bc2e60b3bacd7a43fcf6744d3432743802413924ad4cab5c76fb313071e747f6b76d6c5c2d49
 DIST doggo-1.0.4.tar.gz 2436385 BLAKE2B adeb97fbe3ae6cf280d579a8ea5bb7790c79535f4df46041bd45aa0fa2add9f5d8bb228deb374787d1ecb3a3bc02bf9ed6545c74adb1a55262c63f1db347857e SHA512 10b59b5fa735ef42dc218a0b704292e4840b29880029f870e30fad77bc0d544bdb1d24630e3d0cc8be27542268f49c24f3ff4f0b72449195a2546d83b7942d2d
+DIST doggo-1.0.5-deps.tar.xz 13365492 BLAKE2B 4f583509b70e83b2d7bf80dba587e86b67de08276b7b7171a3270f37b50d7d66a3a1348fc72899868637ef5890ae3f3b88a0bc5bcf5c60bce757f208ecb5588f SHA512 50b7cc03fab4ce1b40b1a290e84afe7b6006ef194ab7f19bfe7b21f97cc35b6050830f765b6e9c069aafd86ae5581ffdc4b6e69cf05dc8303fdec2a2b4b33ce7
+DIST doggo-1.0.5.tar.gz 2438614 BLAKE2B caae6dc359e990a72387f9794e506b4b31dea202ba857cfbf8271c95b8290e82bcdbb8aa1cd0cc07455a6899cccac2fdf7039a7aea12479d5fb5ea841bcc3bee SHA512 95e3524a5c121f0817dc40a5adf86811d8a3897d4e2374e0a51abc483d145cbf9c8aa27af2ba4acc0fad84b96ee1cf6e482f936ecbe9476c6a134b927d71730b

diff --git a/net-dns/doggo/doggo-1.0.5.ebuild b/net-dns/doggo/doggo-1.0.5.ebuild
new file mode 100644
index 000000000000..cb4e40048fc1
--- /dev/null
+++ b/net-dns/doggo/doggo-1.0.5.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit go-module shell-completion
+
+DESCRIPTION="Command-line DNS Client for Humans"
+HOMEPAGE="https://github.com/mr-karan/doggo"
+
+SRC_URI="https://github.com/mr-karan/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
+	https://www.applied-asynchrony.com/distfiles/${P}-deps.tar.xz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+
+src_compile() {
+	emake build-cli VERSION=${PV}
+}
+
+src_install() {
+	newbin bin/${PN}.bin ${PN}
+
+	local comp
+	for comp in bash fish zsh; do
+		bin/${PN}.bin completions $comp > "${WORKDIR}"/${PN}.$comp || die
+	done
+
+	newbashcomp "${WORKDIR}"/${PN}.bash ${PN}
+	newfishcomp "${WORKDIR}"/${PN}.fish ${PN}.fish
+	newzshcomp "${WORKDIR}"/${PN}.zsh _${PN}
+}


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

end of thread, other threads:[~2024-10-07  3:28 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-07  3:27 [gentoo-commits] repo/gentoo:master commit in: net-dns/doggo/ Eli Schwartz
  -- strict thread matches above, loose matches on Subject: below --
2024-09-08  7:50 Sam James
2024-09-07 15:46 Sam James

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