public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/termshark/
@ 2022-05-16  5:26 Sam James
  0 siblings, 0 replies; 6+ messages in thread
From: Sam James @ 2022-05-16  5:26 UTC (permalink / raw
  To: gentoo-commits

commit:     ede1ced544c48c380337cf212f0d04d840def1d3
Author:     Mario Haustein <mario.haustein <AT> hrz <DOT> tu-chemnitz <DOT> de>
AuthorDate: Sat Jan 29 20:51:31 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon May 16 05:17:45 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ede1ced5

net-analyzer/termshark: new ebuild

(sam: modified to use dep tarball)

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Mario Haustein <mario.haustein <AT> hrz.tu-chemnitz.de>
Closes: https://github.com/gentoo/gentoo/pull/24019
Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-analyzer/termshark/Manifest               |  2 ++
 net-analyzer/termshark/metadata.xml           | 15 +++++++++++
 net-analyzer/termshark/termshark-2.3.0.ebuild | 38 +++++++++++++++++++++++++++
 3 files changed, 55 insertions(+)

diff --git a/net-analyzer/termshark/Manifest b/net-analyzer/termshark/Manifest
new file mode 100644
index 000000000000..fe40fed940d0
--- /dev/null
+++ b/net-analyzer/termshark/Manifest
@@ -0,0 +1,2 @@
+DIST termshark-2.3.0-deps.tar.xz 142126384 BLAKE2B 3693a5b5470c338a510aa964059e001f3f4d68a3f824191bb7debefa61976e30d10c77ce5e7ef68836732c7a317e2d9a20c170b3a4565b456c130b9b8999a16a SHA512 ccf3576bba18cf429610deea7c69479fae06368d12e584fd9bd0e3d7409069d6994fa3ecc27fe84f38bcc2606018587de1bf28cde103e9477e39351c94dd2c31
+DIST termshark-2.3.0.tar.gz 382710 BLAKE2B 7c2953188829d950bc005cc2b9d568ece6fdc636c1bdf2e6d29c03af5358894238aff072848e51e8298e317c6b5467c6e1a6823c1abd5a432c819ca44d5f4f9a SHA512 0ed780ec1ba86d2a6eb11c940f00475c750075d5e1ae4a6022f465572717126df941e933e2db7123d802b721f8e1187014f02d4c5dfd84c1a55009045dce5a88

diff --git a/net-analyzer/termshark/metadata.xml b/net-analyzer/termshark/metadata.xml
new file mode 100644
index 000000000000..09186a431868
--- /dev/null
+++ b/net-analyzer/termshark/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>mario.haustein@hrz.tu-chemnitz.de</email>
+		<name>Mario Haustein</name>
+	</maintainer>
+	<maintainer type="person">
+		<email>sam@gentoo.org</email>
+		<name>Sam James</name>
+	</maintainer>
+	<upstream>
+		<remote-id type="github">gcla/termshark</remote-id>
+	</upstream>
+</pkgmetadata>

diff --git a/net-analyzer/termshark/termshark-2.3.0.ebuild b/net-analyzer/termshark/termshark-2.3.0.ebuild
new file mode 100644
index 000000000000..4d036b919eed
--- /dev/null
+++ b/net-analyzer/termshark/termshark-2.3.0.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit go-module
+
+DESCRIPTION="A terminal UI for tshark, inspired by Wireshark"
+HOMEPAGE="https://termshark.io/"
+SRC_URI="https://github.com/gcla/termshark/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+SRC_URI+=" https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${P}-deps.tar.xz"
+
+LICENSE="Apache-2.0 BSD-2 BSD MIT MPL-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+RESTRICT="mirror"
+
+# termshark doesn't link against wireshark. It reads data via IPC during
+# runtime.
+RDEPEND="
+	net-analyzer/wireshark[dumpcap,pcap,tshark]
+"
+
+src_compile() {
+	ego build ./...
+}
+
+src_test() {
+	ego test ./...
+}
+
+src_install() {
+	GOBIN="${S}/bin" ego install ./...
+
+	dobin bin/${PN}
+	dodoc README.md
+	dodoc docs/*
+}


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

* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/termshark/
@ 2022-05-17  8:40 Sam James
  0 siblings, 0 replies; 6+ messages in thread
From: Sam James @ 2022-05-17  8:40 UTC (permalink / raw
  To: gentoo-commits

commit:     672aa5935ba0becccb4a697463cf951f1f50224a
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue May 17 08:40:42 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue May 17 08:40:46 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=672aa593

net-analyzer/termshark: drop obsolete RESTRICT=mirror

left over from overlay import

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-analyzer/termshark/termshark-2.3.0.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/net-analyzer/termshark/termshark-2.3.0.ebuild b/net-analyzer/termshark/termshark-2.3.0.ebuild
index 4d036b919eed..5a3dcf379bba 100644
--- a/net-analyzer/termshark/termshark-2.3.0.ebuild
+++ b/net-analyzer/termshark/termshark-2.3.0.ebuild
@@ -13,7 +13,6 @@ SRC_URI+=" https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${P}-deps.tar
 LICENSE="Apache-2.0 BSD-2 BSD MIT MPL-2.0"
 SLOT="0"
 KEYWORDS="~amd64"
-RESTRICT="mirror"
 
 # termshark doesn't link against wireshark. It reads data via IPC during
 # runtime.


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

* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/termshark/
@ 2022-07-14  4:36 Sam James
  0 siblings, 0 replies; 6+ messages in thread
From: Sam James @ 2022-07-14  4:36 UTC (permalink / raw
  To: gentoo-commits

commit:     532cb832d9081b3d808ad159b9684d1ac7a0b8d0
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 14 04:27:23 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Jul 14 04:27:23 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=532cb832

net-analyzer/termshark: add 2.4.0

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-analyzer/termshark/Manifest               |  2 ++
 net-analyzer/termshark/termshark-2.4.0.ebuild | 37 +++++++++++++++++++++++++++
 2 files changed, 39 insertions(+)

diff --git a/net-analyzer/termshark/Manifest b/net-analyzer/termshark/Manifest
index fe40fed940d0..adb08055fa39 100644
--- a/net-analyzer/termshark/Manifest
+++ b/net-analyzer/termshark/Manifest
@@ -1,2 +1,4 @@
 DIST termshark-2.3.0-deps.tar.xz 142126384 BLAKE2B 3693a5b5470c338a510aa964059e001f3f4d68a3f824191bb7debefa61976e30d10c77ce5e7ef68836732c7a317e2d9a20c170b3a4565b456c130b9b8999a16a SHA512 ccf3576bba18cf429610deea7c69479fae06368d12e584fd9bd0e3d7409069d6994fa3ecc27fe84f38bcc2606018587de1bf28cde103e9477e39351c94dd2c31
 DIST termshark-2.3.0.tar.gz 382710 BLAKE2B 7c2953188829d950bc005cc2b9d568ece6fdc636c1bdf2e6d29c03af5358894238aff072848e51e8298e317c6b5467c6e1a6823c1abd5a432c819ca44d5f4f9a SHA512 0ed780ec1ba86d2a6eb11c940f00475c750075d5e1ae4a6022f465572717126df941e933e2db7123d802b721f8e1187014f02d4c5dfd84c1a55009045dce5a88
+DIST termshark-2.4.0-deps.tar.xz 188885928 BLAKE2B d6b16b91e5457902d3762715f53f6fbaefd63342a999fda580863cc3b370d0e6d4c5f213df700c7df3691077026f7a8f06339786bf7bbf816bb2551f43b8d2db SHA512 4b6da25c5e6a2077004b45149a430096e0f3ff8c159cf4bccbf18cf2ea299d9fd7922c97d23d4a86ba7b9c4068c55846e3375bc0517f3cfc6017e5fcfb448371
+DIST termshark-2.4.0.tar.gz 427503 BLAKE2B df232595477d62480ba8ba994e635f01bc5a5ffd09378da37c01847d899e4938a92c8304e26ea425b7a72cfd71f918686a4683e1a04883c3c92e26104b9f84be SHA512 378bb67ff50a8dfa80f614540371f326627e73bdf63bceb183ed73afbbf9dead4e0597fb969ba49c4ee3d3de00ac7bb91166421c19c788df47ff8d9fcbc5b9fc

diff --git a/net-analyzer/termshark/termshark-2.4.0.ebuild b/net-analyzer/termshark/termshark-2.4.0.ebuild
new file mode 100644
index 000000000000..5a3dcf379bba
--- /dev/null
+++ b/net-analyzer/termshark/termshark-2.4.0.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit go-module
+
+DESCRIPTION="A terminal UI for tshark, inspired by Wireshark"
+HOMEPAGE="https://termshark.io/"
+SRC_URI="https://github.com/gcla/termshark/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+SRC_URI+=" https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${P}-deps.tar.xz"
+
+LICENSE="Apache-2.0 BSD-2 BSD MIT MPL-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+
+# termshark doesn't link against wireshark. It reads data via IPC during
+# runtime.
+RDEPEND="
+	net-analyzer/wireshark[dumpcap,pcap,tshark]
+"
+
+src_compile() {
+	ego build ./...
+}
+
+src_test() {
+	ego test ./...
+}
+
+src_install() {
+	GOBIN="${S}/bin" ego install ./...
+
+	dobin bin/${PN}
+	dodoc README.md
+	dodoc docs/*
+}


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

* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/termshark/
@ 2022-07-26  4:26 Sam James
  0 siblings, 0 replies; 6+ messages in thread
From: Sam James @ 2022-07-26  4:26 UTC (permalink / raw
  To: gentoo-commits

commit:     867042439424a8231246106df306d334f77b5b00
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 26 04:24:23 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jul 26 04:25:25 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86704243

net-analyzer/termshark: drop 2.3.0

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-analyzer/termshark/Manifest               |  2 --
 net-analyzer/termshark/termshark-2.3.0.ebuild | 37 ---------------------------
 2 files changed, 39 deletions(-)

diff --git a/net-analyzer/termshark/Manifest b/net-analyzer/termshark/Manifest
index adb08055fa39..83d6fdc3a7d9 100644
--- a/net-analyzer/termshark/Manifest
+++ b/net-analyzer/termshark/Manifest
@@ -1,4 +1,2 @@
-DIST termshark-2.3.0-deps.tar.xz 142126384 BLAKE2B 3693a5b5470c338a510aa964059e001f3f4d68a3f824191bb7debefa61976e30d10c77ce5e7ef68836732c7a317e2d9a20c170b3a4565b456c130b9b8999a16a SHA512 ccf3576bba18cf429610deea7c69479fae06368d12e584fd9bd0e3d7409069d6994fa3ecc27fe84f38bcc2606018587de1bf28cde103e9477e39351c94dd2c31
-DIST termshark-2.3.0.tar.gz 382710 BLAKE2B 7c2953188829d950bc005cc2b9d568ece6fdc636c1bdf2e6d29c03af5358894238aff072848e51e8298e317c6b5467c6e1a6823c1abd5a432c819ca44d5f4f9a SHA512 0ed780ec1ba86d2a6eb11c940f00475c750075d5e1ae4a6022f465572717126df941e933e2db7123d802b721f8e1187014f02d4c5dfd84c1a55009045dce5a88
 DIST termshark-2.4.0-deps.tar.xz 188885928 BLAKE2B d6b16b91e5457902d3762715f53f6fbaefd63342a999fda580863cc3b370d0e6d4c5f213df700c7df3691077026f7a8f06339786bf7bbf816bb2551f43b8d2db SHA512 4b6da25c5e6a2077004b45149a430096e0f3ff8c159cf4bccbf18cf2ea299d9fd7922c97d23d4a86ba7b9c4068c55846e3375bc0517f3cfc6017e5fcfb448371
 DIST termshark-2.4.0.tar.gz 427503 BLAKE2B df232595477d62480ba8ba994e635f01bc5a5ffd09378da37c01847d899e4938a92c8304e26ea425b7a72cfd71f918686a4683e1a04883c3c92e26104b9f84be SHA512 378bb67ff50a8dfa80f614540371f326627e73bdf63bceb183ed73afbbf9dead4e0597fb969ba49c4ee3d3de00ac7bb91166421c19c788df47ff8d9fcbc5b9fc

diff --git a/net-analyzer/termshark/termshark-2.3.0.ebuild b/net-analyzer/termshark/termshark-2.3.0.ebuild
deleted file mode 100644
index 5a3dcf379bba..000000000000
--- a/net-analyzer/termshark/termshark-2.3.0.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit go-module
-
-DESCRIPTION="A terminal UI for tshark, inspired by Wireshark"
-HOMEPAGE="https://termshark.io/"
-SRC_URI="https://github.com/gcla/termshark/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-SRC_URI+=" https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${P}-deps.tar.xz"
-
-LICENSE="Apache-2.0 BSD-2 BSD MIT MPL-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-
-# termshark doesn't link against wireshark. It reads data via IPC during
-# runtime.
-RDEPEND="
-	net-analyzer/wireshark[dumpcap,pcap,tshark]
-"
-
-src_compile() {
-	ego build ./...
-}
-
-src_test() {
-	ego test ./...
-}
-
-src_install() {
-	GOBIN="${S}/bin" ego install ./...
-
-	dobin bin/${PN}
-	dodoc README.md
-	dodoc docs/*
-}


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

* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/termshark/
@ 2023-04-25 19:49 Sam James
  0 siblings, 0 replies; 6+ messages in thread
From: Sam James @ 2023-04-25 19:49 UTC (permalink / raw
  To: gentoo-commits

commit:     6d964b10e2c646686428642781ec4a46b93cd619
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 25 19:48:35 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Apr 25 19:48:51 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d964b10

net-analyzer/termshark: Keyword 2.4.0 arm64, #905061

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-analyzer/termshark/termshark-2.4.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-analyzer/termshark/termshark-2.4.0.ebuild b/net-analyzer/termshark/termshark-2.4.0.ebuild
index 5a3dcf379bba..8c20d52c4d9d 100644
--- a/net-analyzer/termshark/termshark-2.4.0.ebuild
+++ b/net-analyzer/termshark/termshark-2.4.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -12,7 +12,7 @@ SRC_URI+=" https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${P}-deps.tar
 
 LICENSE="Apache-2.0 BSD-2 BSD MIT MPL-2.0"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~arm64"
 
 # termshark doesn't link against wireshark. It reads data via IPC during
 # runtime.


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

* [gentoo-commits] repo/gentoo:master commit in: net-analyzer/termshark/
@ 2024-02-27 22:37 Sam James
  0 siblings, 0 replies; 6+ messages in thread
From: Sam James @ 2024-02-27 22:37 UTC (permalink / raw
  To: gentoo-commits

commit:     0514a13f46dc012abb0ff6a86448e23a689fde9b
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 27 22:16:23 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Feb 27 22:16:23 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0514a13f

net-analyzer/termshark: recreate Go dep tarball

Much smaller with the cached .zips dropped.

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-analyzer/termshark/Manifest | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-analyzer/termshark/Manifest b/net-analyzer/termshark/Manifest
index 83d6fdc3a7d9..759fadd45ab8 100644
--- a/net-analyzer/termshark/Manifest
+++ b/net-analyzer/termshark/Manifest
@@ -1,2 +1,2 @@
-DIST termshark-2.4.0-deps.tar.xz 188885928 BLAKE2B d6b16b91e5457902d3762715f53f6fbaefd63342a999fda580863cc3b370d0e6d4c5f213df700c7df3691077026f7a8f06339786bf7bbf816bb2551f43b8d2db SHA512 4b6da25c5e6a2077004b45149a430096e0f3ff8c159cf4bccbf18cf2ea299d9fd7922c97d23d4a86ba7b9c4068c55846e3375bc0517f3cfc6017e5fcfb448371
+DIST termshark-2.4.0-deps.tar.xz 64667348 BLAKE2B 2406756070dfcb813a7e24ce4eb0790a17b4ecf865440c801bbaa07d0d5eb8c2eed1a37111bd59e8104f450464aa702d07fb483d4d7b2f51fb3cd272994bf6f6 SHA512 78d964d8fe317b4a70ba18bbd6bcf02cb1208c02b6d95018dfb49561996c3d3e0ba898d483cd4814b4ee0f28f1f757dc937829af5f6ffb4c36f98c480e8e324b
 DIST termshark-2.4.0.tar.gz 427503 BLAKE2B df232595477d62480ba8ba994e635f01bc5a5ffd09378da37c01847d899e4938a92c8304e26ea425b7a72cfd71f918686a4683e1a04883c3c92e26104b9f84be SHA512 378bb67ff50a8dfa80f614540371f326627e73bdf63bceb183ed73afbbf9dead4e0597fb969ba49c4ee3d3de00ac7bb91166421c19c788df47ff8d9fcbc5b9fc


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

end of thread, other threads:[~2024-02-27 22:37 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-02-27 22:37 [gentoo-commits] repo/gentoo:master commit in: net-analyzer/termshark/ Sam James
  -- strict thread matches above, loose matches on Subject: below --
2023-04-25 19:49 Sam James
2022-07-26  4:26 Sam James
2022-07-14  4:36 Sam James
2022-05-17  8:40 Sam James
2022-05-16  5:26 Sam James

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