public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: net-p2p/tremc/
@ 2020-05-31  6:58 Michał Górny
  0 siblings, 0 replies; 14+ messages in thread
From: Michał Górny @ 2020-05-31  6:58 UTC (permalink / raw
  To: gentoo-commits

commit:     62606c169d1f914885780448f10420835d630f43
Author:     John Helmert III <jchelmert3 <AT> posteo <DOT> net>
AuthorDate: Sat May 30 22:21:06 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun May 31 06:58:46 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62606c16

net-p2p/tremc: Fix maintainer email

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: John Helmert III <jchelmert3 <AT> posteo.net>
Closes: https://github.com/gentoo/gentoo/pull/16022
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 net-p2p/tremc/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-p2p/tremc/metadata.xml b/net-p2p/tremc/metadata.xml
index 8e79439699d..9a9bca13525 100644
--- a/net-p2p/tremc/metadata.xml
+++ b/net-p2p/tremc/metadata.xml
@@ -2,7 +2,7 @@
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
 	<maintainer type="person">
-		<email>jchelmertt3@gmail.com</email>
+		<email>jchelmert3@posteo.net</email>
 		<name>John Helmert III</name>
 	</maintainer>
 	<maintainer type="project">


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

* [gentoo-commits] repo/gentoo:master commit in: net-p2p/tremc/
@ 2020-06-29  6:09 Joonas Niilola
  0 siblings, 0 replies; 14+ messages in thread
From: Joonas Niilola @ 2020-06-29  6:09 UTC (permalink / raw
  To: gentoo-commits

commit:     b33ab4027efae1115964c3baed69c8759693eed0
Author:     John Helmert III <jchelmert3 <AT> posteo <DOT> net>
AuthorDate: Wed Jun 17 19:17:12 2020 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Mon Jun 29 06:08:56 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b33ab402

net-p2p/tremc: Add version 0.9.2

Closes: https://bugs.gentoo.org/728552
Package-Manager: Portage-2.3.101, Repoman-2.3.22
Signed-off-by: John Helmert III <jchelmert3 <AT> posteo.net>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 net-p2p/tremc/Manifest           |  1 +
 net-p2p/tremc/tremc-0.9.2.ebuild | 39 +++++++++++++++++++++++++++++++++++++++
 2 files changed, 40 insertions(+)

diff --git a/net-p2p/tremc/Manifest b/net-p2p/tremc/Manifest
index 5304ec87b78..57e343bbe67 100644
--- a/net-p2p/tremc/Manifest
+++ b/net-p2p/tremc/Manifest
@@ -1 +1,2 @@
 DIST tremc-0.9.1.tar.gz 315482 BLAKE2B c4e94ef13cc9d716cdbcbff061b1956d17c6babe765e192d675d08ad5d76a22cf171a4fb3f5f2952b971f59a16a2768ccd360d10df5b0f3325fd63ff9716f209 SHA512 ed16080c6544ce9019e6a0c4d660310992cae0f139a2a78e9eaa51841e293cefb22160a105794b5f03a4bfd47a2c50402879f2a17302a96265a9c9acb3174c39
+DIST tremc-0.9.2.tar.gz 315631 BLAKE2B f5ed154fbfcbdb3e77b678a5827d3f68a6be4033530d6d4e451d57808d43cd5737fff32cf62445d246bfce4d8f02e4cac0c1156603e220e228e61b725d6deaf8 SHA512 d6d6d155ddac918d329226d5c3b53c63fd4fa0b98e30f1eb2cd2226ea598bd7dd81d72f747dc11f4a508bcc0453d90d774c1d8db6dac05ae1ecbc217290b7db3

diff --git a/net-p2p/tremc/tremc-0.9.2.ebuild b/net-p2p/tremc/tremc-0.9.2.ebuild
new file mode 100644
index 00000000000..2c02ce97e8d
--- /dev/null
+++ b/net-p2p/tremc/tremc-0.9.2.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7,8} )
+PYTHON_REQ_USE="ncurses"
+inherit bash-completion-r1 eutils python-single-r1
+
+DESCRIPTION="Ncurses interface for the Transmission BitTorrent client"
+HOMEPAGE="https://github.com/tremc/tremc"
+SRC_URI="https://github.com/tremc/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+RDEPEND="${PYTHON_DEPS}"
+
+# Specify a no-op src_compile so upstream's broken Makefile doesn't get used
+src_compile() {
+	:
+}
+
+src_install() {
+	python_doscript tremc
+	newbashcomp completion/bash/tremc.sh tremc
+	insinto /usr/share/zsh/site-functions
+	doins completion/zsh/_tremc
+	doman tremc.1
+	dodoc NEWS README.md
+}
+
+pkg_postinst() {
+	optfeature "GeoIP support" dev-python/geoip-python
+	optfeature "Extract ipv4 from ipv6 addresses" dev-python/ipy
+	optfeature "Clipboard support" dev-python/pyperclip
+}


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

* [gentoo-commits] repo/gentoo:master commit in: net-p2p/tremc/
@ 2020-09-07  8:55 David Seifert
  0 siblings, 0 replies; 14+ messages in thread
From: David Seifert @ 2020-09-07  8:55 UTC (permalink / raw
  To: gentoo-commits

commit:     96df8507794acd3ccbabd6652aeee675df15f351
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Mon Sep  7 08:53:42 2020 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Mon Sep  7 08:53:42 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96df8507

net-p2p/tremc: Inherit optfeature.eclass

Package-Manager: Portage-3.0.5, Repoman-3.0.1
Signed-off-by: David Seifert <soap <AT> gentoo.org>

 net-p2p/tremc/tremc-0.9.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-p2p/tremc/tremc-0.9.2.ebuild b/net-p2p/tremc/tremc-0.9.2.ebuild
index 2c02ce97e8d..056716a8bbd 100644
--- a/net-p2p/tremc/tremc-0.9.2.ebuild
+++ b/net-p2p/tremc/tremc-0.9.2.ebuild
@@ -5,7 +5,7 @@ EAPI=7
 
 PYTHON_COMPAT=( python3_{7,8} )
 PYTHON_REQ_USE="ncurses"
-inherit bash-completion-r1 eutils python-single-r1
+inherit bash-completion-r1 optfeature python-single-r1
 
 DESCRIPTION="Ncurses interface for the Transmission BitTorrent client"
 HOMEPAGE="https://github.com/tremc/tremc"


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

* [gentoo-commits] repo/gentoo:master commit in: net-p2p/tremc/
@ 2021-02-22  1:57 John Helmert III
  0 siblings, 0 replies; 14+ messages in thread
From: John Helmert III @ 2021-02-22  1:57 UTC (permalink / raw
  To: gentoo-commits

commit:     71f5e5928d815234eec3eab7c5c562917dc4a20c
Author:     John Helmert III <ajak <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 22 01:57:44 2021 +0000
Commit:     John Helmert III <ajak <AT> gentoo <DOT> org>
CommitDate: Mon Feb 22 01:57:44 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71f5e592

net-p2p/tremc: add python3_9

Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: John Helmert III <ajak <AT> gentoo.org>

 net-p2p/tremc/tremc-0.9.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-p2p/tremc/tremc-0.9.2.ebuild b/net-p2p/tremc/tremc-0.9.2.ebuild
index 056716a8bbd..745cb109d76 100644
--- a/net-p2p/tremc/tremc-0.9.2.ebuild
+++ b/net-p2p/tremc/tremc-0.9.2.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{7,8} )
+PYTHON_COMPAT=( python3_{7,8,9} )
 PYTHON_REQ_USE="ncurses"
 inherit bash-completion-r1 optfeature python-single-r1
 


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

* [gentoo-commits] repo/gentoo:master commit in: net-p2p/tremc/
@ 2021-06-11 19:37 John Helmert III
  0 siblings, 0 replies; 14+ messages in thread
From: John Helmert III @ 2021-06-11 19:37 UTC (permalink / raw
  To: gentoo-commits

commit:     2b57da707a4e35d340eb9811c2603d40d0a912c3
Author:     John Helmert III <ajak <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 11 14:24:02 2021 +0000
Commit:     John Helmert III <ajak <AT> gentoo <DOT> org>
CommitDate: Fri Jun 11 19:33:01 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b57da70

net-p2p/tremc: add 0.9.2_p20201101

Signed-off-by: John Helmert III <ajak <AT> gentoo.org>

 net-p2p/tremc/Manifest                     |  1 +
 net-p2p/tremc/tremc-0.9.2_p20201101.ebuild | 44 ++++++++++++++++++++++++++++++
 2 files changed, 45 insertions(+)

diff --git a/net-p2p/tremc/Manifest b/net-p2p/tremc/Manifest
index 7e7b6b1bb16..fefad98dd61 100644
--- a/net-p2p/tremc/Manifest
+++ b/net-p2p/tremc/Manifest
@@ -1 +1,2 @@
 DIST tremc-0.9.2.tar.gz 315631 BLAKE2B f5ed154fbfcbdb3e77b678a5827d3f68a6be4033530d6d4e451d57808d43cd5737fff32cf62445d246bfce4d8f02e4cac0c1156603e220e228e61b725d6deaf8 SHA512 d6d6d155ddac918d329226d5c3b53c63fd4fa0b98e30f1eb2cd2226ea598bd7dd81d72f747dc11f4a508bcc0453d90d774c1d8db6dac05ae1ecbc217290b7db3
+DIST tremc-0.9.2_p20201101.tar.gz 334602 BLAKE2B 916274775cb51948b3322f0d037d3130e2032ef31acdbbd2b7c42b17c639a82b9dccfe413db4936e9bd580caa7c1ec140091ad09b06058138e8fc0e4882b6c21 SHA512 acae099b2fd24362c02f24b5a6aca85e5b6b0608080a79e0a9a6950a3f61135e271415d0db60d04e39195272ea6e2e494ee85345db454811d6de430c75b5bece

diff --git a/net-p2p/tremc/tremc-0.9.2_p20201101.ebuild b/net-p2p/tremc/tremc-0.9.2_p20201101.ebuild
new file mode 100644
index 00000000000..df6a3896db7
--- /dev/null
+++ b/net-p2p/tremc/tremc-0.9.2_p20201101.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{9,10} )
+PYTHON_REQ_USE="ncurses"
+
+COMMIT="8b6b29163295e5cf12d9d874e80203c5906619c8"
+
+inherit bash-completion-r1 optfeature python-single-r1
+
+DESCRIPTION="Ncurses interface for the Transmission BitTorrent client"
+HOMEPAGE="https://github.com/tremc/tremc"
+SRC_URI="https://github.com/tremc/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+RDEPEND="${PYTHON_DEPS}"
+
+S="${WORKDIR}/${PN}-${COMMIT}"
+
+# Specify a no-op src_compile so upstream's broken Makefile doesn't get used
+src_compile() {
+	:
+}
+
+src_install() {
+	python_doscript tremc
+	newbashcomp completion/bash/tremc.sh tremc
+	insinto /usr/share/zsh/site-functions
+	doins completion/zsh/_tremc
+	doman tremc.1
+	dodoc NEWS README.md
+}
+
+pkg_postinst() {
+	optfeature "GeoIP support" dev-python/geoip-python
+	optfeature "Extract ipv4 from ipv6 addresses" dev-python/ipy
+	optfeature "Clipboard support" dev-python/pyperclip
+}


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

* [gentoo-commits] repo/gentoo:master commit in: net-p2p/tremc/
@ 2021-06-11 19:37 John Helmert III
  0 siblings, 0 replies; 14+ messages in thread
From: John Helmert III @ 2021-06-11 19:37 UTC (permalink / raw
  To: gentoo-commits

commit:     f84b92f0cc86f50c91563c7e766dc4aa2682fe2a
Author:     John Helmert III <ajak <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 11 19:24:15 2021 +0000
Commit:     John Helmert III <ajak <AT> gentoo <DOT> org>
CommitDate: Fri Jun 11 19:33:01 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f84b92f0

net-p2p/tremc: revbump to drop python3_9

Due to https://github.com/tremc/tremc/issues/99 tremc doesn't support
>python3.8, but with the patch it breaks <=python3.8. Simpler to
snapshot to support newer Pythons and revbump the original and drop 3.9
from it to suppor the older.

Closes: https://bugs.gentoo.org/795150
Signed-off-by: John Helmert III <ajak <AT> gentoo.org>

 net-p2p/tremc/{tremc-0.9.2.ebuild => tremc-0.9.2-r1.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-p2p/tremc/tremc-0.9.2.ebuild b/net-p2p/tremc/tremc-0.9.2-r1.ebuild
similarity index 96%
rename from net-p2p/tremc/tremc-0.9.2.ebuild
rename to net-p2p/tremc/tremc-0.9.2-r1.ebuild
index 745cb109d76..1609aa817fe 100644
--- a/net-p2p/tremc/tremc-0.9.2.ebuild
+++ b/net-p2p/tremc/tremc-0.9.2-r1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{7,8,9} )
+PYTHON_COMPAT=( python3_{7,8} )
 PYTHON_REQ_USE="ncurses"
 inherit bash-completion-r1 optfeature python-single-r1
 


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

* [gentoo-commits] repo/gentoo:master commit in: net-p2p/tremc/
@ 2021-10-17 16:08 John Helmert III
  0 siblings, 0 replies; 14+ messages in thread
From: John Helmert III @ 2021-10-17 16:08 UTC (permalink / raw
  To: gentoo-commits

commit:     6f2413724f536acbeb60125d1d59e12f14c9274b
Author:     John Helmert III <ajak <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 17 14:22:40 2021 +0000
Commit:     John Helmert III <ajak <AT> gentoo <DOT> org>
CommitDate: Sun Oct 17 16:08:02 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f241372

net-p2p/tremc: drop 0.9.2-r1

Signed-off-by: John Helmert III <ajak <AT> gentoo.org>

 net-p2p/tremc/Manifest              |  1 -
 net-p2p/tremc/tremc-0.9.2-r1.ebuild | 39 -------------------------------------
 2 files changed, 40 deletions(-)

diff --git a/net-p2p/tremc/Manifest b/net-p2p/tremc/Manifest
index fefad98dd61..bf328bea173 100644
--- a/net-p2p/tremc/Manifest
+++ b/net-p2p/tremc/Manifest
@@ -1,2 +1 @@
-DIST tremc-0.9.2.tar.gz 315631 BLAKE2B f5ed154fbfcbdb3e77b678a5827d3f68a6be4033530d6d4e451d57808d43cd5737fff32cf62445d246bfce4d8f02e4cac0c1156603e220e228e61b725d6deaf8 SHA512 d6d6d155ddac918d329226d5c3b53c63fd4fa0b98e30f1eb2cd2226ea598bd7dd81d72f747dc11f4a508bcc0453d90d774c1d8db6dac05ae1ecbc217290b7db3
 DIST tremc-0.9.2_p20201101.tar.gz 334602 BLAKE2B 916274775cb51948b3322f0d037d3130e2032ef31acdbbd2b7c42b17c639a82b9dccfe413db4936e9bd580caa7c1ec140091ad09b06058138e8fc0e4882b6c21 SHA512 acae099b2fd24362c02f24b5a6aca85e5b6b0608080a79e0a9a6950a3f61135e271415d0db60d04e39195272ea6e2e494ee85345db454811d6de430c75b5bece

diff --git a/net-p2p/tremc/tremc-0.9.2-r1.ebuild b/net-p2p/tremc/tremc-0.9.2-r1.ebuild
deleted file mode 100644
index 1609aa817fe..00000000000
--- a/net-p2p/tremc/tremc-0.9.2-r1.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7,8} )
-PYTHON_REQ_USE="ncurses"
-inherit bash-completion-r1 optfeature python-single-r1
-
-DESCRIPTION="Ncurses interface for the Transmission BitTorrent client"
-HOMEPAGE="https://github.com/tremc/tremc"
-SRC_URI="https://github.com/tremc/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-RDEPEND="${PYTHON_DEPS}"
-
-# Specify a no-op src_compile so upstream's broken Makefile doesn't get used
-src_compile() {
-	:
-}
-
-src_install() {
-	python_doscript tremc
-	newbashcomp completion/bash/tremc.sh tremc
-	insinto /usr/share/zsh/site-functions
-	doins completion/zsh/_tremc
-	doman tremc.1
-	dodoc NEWS README.md
-}
-
-pkg_postinst() {
-	optfeature "GeoIP support" dev-python/geoip-python
-	optfeature "Extract ipv4 from ipv6 addresses" dev-python/ipy
-	optfeature "Clipboard support" dev-python/pyperclip
-}


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

* [gentoo-commits] repo/gentoo:master commit in: net-p2p/tremc/
@ 2022-05-30 22:20 John Helmert III
  0 siblings, 0 replies; 14+ messages in thread
From: John Helmert III @ 2022-05-30 22:20 UTC (permalink / raw
  To: gentoo-commits

commit:     631a1e5cd0e3adb5cc71d7cbfb30580529aea4e6
Author:     John Helmert III <ajak <AT> gentoo <DOT> org>
AuthorDate: Mon May 30 22:17:38 2022 +0000
Commit:     John Helmert III <ajak <AT> gentoo <DOT> org>
CommitDate: Mon May 30 22:20:13 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=631a1e5c

net-p2p/tremc: add 0.9.3

Signed-off-by: John Helmert III <ajak <AT> gentoo.org>

 net-p2p/tremc/Manifest           |  1 +
 net-p2p/tremc/tremc-0.9.3.ebuild | 43 ++++++++++++++++++++++++++++++++++++++++
 2 files changed, 44 insertions(+)

diff --git a/net-p2p/tremc/Manifest b/net-p2p/tremc/Manifest
index bf328bea1731..99bae34ad814 100644
--- a/net-p2p/tremc/Manifest
+++ b/net-p2p/tremc/Manifest
@@ -1 +1,2 @@
 DIST tremc-0.9.2_p20201101.tar.gz 334602 BLAKE2B 916274775cb51948b3322f0d037d3130e2032ef31acdbbd2b7c42b17c639a82b9dccfe413db4936e9bd580caa7c1ec140091ad09b06058138e8fc0e4882b6c21 SHA512 acae099b2fd24362c02f24b5a6aca85e5b6b0608080a79e0a9a6950a3f61135e271415d0db60d04e39195272ea6e2e494ee85345db454811d6de430c75b5bece
+DIST tremc-0.9.3.tar.gz 334602 BLAKE2B 916274775cb51948b3322f0d037d3130e2032ef31acdbbd2b7c42b17c639a82b9dccfe413db4936e9bd580caa7c1ec140091ad09b06058138e8fc0e4882b6c21 SHA512 acae099b2fd24362c02f24b5a6aca85e5b6b0608080a79e0a9a6950a3f61135e271415d0db60d04e39195272ea6e2e494ee85345db454811d6de430c75b5bece

diff --git a/net-p2p/tremc/tremc-0.9.3.ebuild b/net-p2p/tremc/tremc-0.9.3.ebuild
new file mode 100644
index 000000000000..f08595a9ba3e
--- /dev/null
+++ b/net-p2p/tremc/tremc-0.9.3.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{9,10} )
+PYTHON_REQ_USE="ncurses"
+
+inherit bash-completion-r1 optfeature python-single-r1
+
+DESCRIPTION="Ncurses interface for the Transmission BitTorrent client"
+HOMEPAGE="https://github.com/tremc/tremc"
+SRC_URI="https://github.com/tremc/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
+COMMIT="8b6b29163295e5cf12d9d874e80203c5906619c8"
+S="${WORKDIR}/${PN}-${COMMIT}"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+RDEPEND="${PYTHON_DEPS}"
+
+# Github tag tarballs include the repo with commit in the dir's name
+# Specify a no-op src_compile so upstream's broken Makefile doesn't get used
+src_compile() {
+	:
+}
+
+src_install() {
+	python_doscript tremc
+	newbashcomp completion/bash/tremc.sh tremc
+	insinto /usr/share/zsh/site-functions
+	doins completion/zsh/_tremc
+	doman tremc.1
+	dodoc NEWS README.md
+}
+
+pkg_postinst() {
+	optfeature "GeoIP support" dev-python/geoip-python
+	optfeature "Extract ipv4 from ipv6 addresses" dev-python/ipy
+	optfeature "Clipboard support" dev-python/pyperclip
+}


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

* [gentoo-commits] repo/gentoo:master commit in: net-p2p/tremc/
@ 2022-05-31 16:29 John Helmert III
  0 siblings, 0 replies; 14+ messages in thread
From: John Helmert III @ 2022-05-31 16:29 UTC (permalink / raw
  To: gentoo-commits

commit:     3c29bc6ae4221dc0feed451b2325fb0e57b3df38
Author:     John Helmert III <ajak <AT> gentoo <DOT> org>
AuthorDate: Tue May 31 16:25:45 2022 +0000
Commit:     John Helmert III <ajak <AT> gentoo <DOT> org>
CommitDate: Tue May 31 16:29:41 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c29bc6a

et-p2p/tremc: fix manifest

Due to modifying SRC_URI I accidentally ended up with the same tarball
as the previous version, which ended up reflected in Manifest.

Closes: https://bugs.gentoo.org/848696
Signed-off-by: John Helmert III <ajak <AT> gentoo.org>

 net-p2p/tremc/Manifest           | 2 +-
 net-p2p/tremc/tremc-0.9.3.ebuild | 2 --
 2 files changed, 1 insertion(+), 3 deletions(-)

diff --git a/net-p2p/tremc/Manifest b/net-p2p/tremc/Manifest
index 99bae34ad814..30ca8d52886c 100644
--- a/net-p2p/tremc/Manifest
+++ b/net-p2p/tremc/Manifest
@@ -1,2 +1,2 @@
 DIST tremc-0.9.2_p20201101.tar.gz 334602 BLAKE2B 916274775cb51948b3322f0d037d3130e2032ef31acdbbd2b7c42b17c639a82b9dccfe413db4936e9bd580caa7c1ec140091ad09b06058138e8fc0e4882b6c21 SHA512 acae099b2fd24362c02f24b5a6aca85e5b6b0608080a79e0a9a6950a3f61135e271415d0db60d04e39195272ea6e2e494ee85345db454811d6de430c75b5bece
-DIST tremc-0.9.3.tar.gz 334602 BLAKE2B 916274775cb51948b3322f0d037d3130e2032ef31acdbbd2b7c42b17c639a82b9dccfe413db4936e9bd580caa7c1ec140091ad09b06058138e8fc0e4882b6c21 SHA512 acae099b2fd24362c02f24b5a6aca85e5b6b0608080a79e0a9a6950a3f61135e271415d0db60d04e39195272ea6e2e494ee85345db454811d6de430c75b5bece
+DIST tremc-0.9.3.tar.gz 334457 BLAKE2B 328f158c96c4927fb910a58508fb3a74aa43d6ab74dfcdde7a99eee0ba70aa7020e00f19197ba0d3ae641b169cf147fc0ea04c1ef4e638a41a29311a042df284 SHA512 cbc40ce36eec1f641a6754933e7b009ca3d47e9a2d5091f7677f8005c466f6d0c744023b92e6b5aa93e736828390917c2b5f2f87ba6634d74016960b764467eb

diff --git a/net-p2p/tremc/tremc-0.9.3.ebuild b/net-p2p/tremc/tremc-0.9.3.ebuild
index f08595a9ba3e..bd259f46580c 100644
--- a/net-p2p/tremc/tremc-0.9.3.ebuild
+++ b/net-p2p/tremc/tremc-0.9.3.ebuild
@@ -11,8 +11,6 @@ inherit bash-completion-r1 optfeature python-single-r1
 DESCRIPTION="Ncurses interface for the Transmission BitTorrent client"
 HOMEPAGE="https://github.com/tremc/tremc"
 SRC_URI="https://github.com/tremc/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
-COMMIT="8b6b29163295e5cf12d9d874e80203c5906619c8"
-S="${WORKDIR}/${PN}-${COMMIT}"
 
 LICENSE="GPL-3"
 SLOT="0"


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

* [gentoo-commits] repo/gentoo:master commit in: net-p2p/tremc/
@ 2022-07-31 18:38 Jakov Smolić
  0 siblings, 0 replies; 14+ messages in thread
From: Jakov Smolić @ 2022-07-31 18:38 UTC (permalink / raw
  To: gentoo-commits

commit:     0a0c86e50520b891696a94c2b244f714b864225c
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 31 18:30:04 2022 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Sun Jul 31 18:37:17 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a0c86e5

net-p2p/tremc: Remove dev-python/geoip-python optfeature

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 net-p2p/tremc/tremc-0.9.2_p20201101.ebuild | 3 +--
 net-p2p/tremc/tremc-0.9.3.ebuild           | 1 -
 2 files changed, 1 insertion(+), 3 deletions(-)

diff --git a/net-p2p/tremc/tremc-0.9.2_p20201101.ebuild b/net-p2p/tremc/tremc-0.9.2_p20201101.ebuild
index df6a3896db78..1fe156a2937d 100644
--- a/net-p2p/tremc/tremc-0.9.2_p20201101.ebuild
+++ b/net-p2p/tremc/tremc-0.9.2_p20201101.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -38,7 +38,6 @@ src_install() {
 }
 
 pkg_postinst() {
-	optfeature "GeoIP support" dev-python/geoip-python
 	optfeature "Extract ipv4 from ipv6 addresses" dev-python/ipy
 	optfeature "Clipboard support" dev-python/pyperclip
 }

diff --git a/net-p2p/tremc/tremc-0.9.3.ebuild b/net-p2p/tremc/tremc-0.9.3.ebuild
index bd259f46580c..5c1cdd12b4f6 100644
--- a/net-p2p/tremc/tremc-0.9.3.ebuild
+++ b/net-p2p/tremc/tremc-0.9.3.ebuild
@@ -35,7 +35,6 @@ src_install() {
 }
 
 pkg_postinst() {
-	optfeature "GeoIP support" dev-python/geoip-python
 	optfeature "Extract ipv4 from ipv6 addresses" dev-python/ipy
 	optfeature "Clipboard support" dev-python/pyperclip
 }


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

* [gentoo-commits] repo/gentoo:master commit in: net-p2p/tremc/
@ 2022-10-21 19:56 John Helmert III
  0 siblings, 0 replies; 14+ messages in thread
From: John Helmert III @ 2022-10-21 19:56 UTC (permalink / raw
  To: gentoo-commits

commit:     20b7729a4676211871afe2458d493c253b7b86a8
Author:     John Helmert III <ajak <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 21 19:46:48 2022 +0000
Commit:     John Helmert III <ajak <AT> gentoo <DOT> org>
CommitDate: Fri Oct 21 19:56:36 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20b7729a

net-p2p/tremc: enable py3.11

Signed-off-by: John Helmert III <ajak <AT> gentoo.org>

 net-p2p/tremc/tremc-0.9.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-p2p/tremc/tremc-0.9.3.ebuild b/net-p2p/tremc/tremc-0.9.3.ebuild
index 5c1cdd12b4f6..31c79ede0c06 100644
--- a/net-p2p/tremc/tremc-0.9.3.ebuild
+++ b/net-p2p/tremc/tremc-0.9.3.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{9,10} )
+PYTHON_COMPAT=( python3_{9..11} )
 PYTHON_REQ_USE="ncurses"
 
 inherit bash-completion-r1 optfeature python-single-r1


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

* [gentoo-commits] repo/gentoo:master commit in: net-p2p/tremc/
@ 2022-10-21 19:56 John Helmert III
  0 siblings, 0 replies; 14+ messages in thread
From: John Helmert III @ 2022-10-21 19:56 UTC (permalink / raw
  To: gentoo-commits

commit:     6a6653d061341eae5eee91a56da7f4c1917ca67a
Author:     John Helmert III <ajak <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 21 19:45:04 2022 +0000
Commit:     John Helmert III <ajak <AT> gentoo <DOT> org>
CommitDate: Fri Oct 21 19:56:36 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a6653d0

net-p2p/tremc: drop 0.9.2_p20201101

Signed-off-by: John Helmert III <ajak <AT> gentoo.org>

 net-p2p/tremc/Manifest                     |  1 -
 net-p2p/tremc/tremc-0.9.2_p20201101.ebuild | 43 ------------------------------
 2 files changed, 44 deletions(-)

diff --git a/net-p2p/tremc/Manifest b/net-p2p/tremc/Manifest
index 30ca8d52886c..f15840486e81 100644
--- a/net-p2p/tremc/Manifest
+++ b/net-p2p/tremc/Manifest
@@ -1,2 +1 @@
-DIST tremc-0.9.2_p20201101.tar.gz 334602 BLAKE2B 916274775cb51948b3322f0d037d3130e2032ef31acdbbd2b7c42b17c639a82b9dccfe413db4936e9bd580caa7c1ec140091ad09b06058138e8fc0e4882b6c21 SHA512 acae099b2fd24362c02f24b5a6aca85e5b6b0608080a79e0a9a6950a3f61135e271415d0db60d04e39195272ea6e2e494ee85345db454811d6de430c75b5bece
 DIST tremc-0.9.3.tar.gz 334457 BLAKE2B 328f158c96c4927fb910a58508fb3a74aa43d6ab74dfcdde7a99eee0ba70aa7020e00f19197ba0d3ae641b169cf147fc0ea04c1ef4e638a41a29311a042df284 SHA512 cbc40ce36eec1f641a6754933e7b009ca3d47e9a2d5091f7677f8005c466f6d0c744023b92e6b5aa93e736828390917c2b5f2f87ba6634d74016960b764467eb

diff --git a/net-p2p/tremc/tremc-0.9.2_p20201101.ebuild b/net-p2p/tremc/tremc-0.9.2_p20201101.ebuild
deleted file mode 100644
index 1fe156a2937d..000000000000
--- a/net-p2p/tremc/tremc-0.9.2_p20201101.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{9,10} )
-PYTHON_REQ_USE="ncurses"
-
-COMMIT="8b6b29163295e5cf12d9d874e80203c5906619c8"
-
-inherit bash-completion-r1 optfeature python-single-r1
-
-DESCRIPTION="Ncurses interface for the Transmission BitTorrent client"
-HOMEPAGE="https://github.com/tremc/tremc"
-SRC_URI="https://github.com/tremc/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-RDEPEND="${PYTHON_DEPS}"
-
-S="${WORKDIR}/${PN}-${COMMIT}"
-
-# Specify a no-op src_compile so upstream's broken Makefile doesn't get used
-src_compile() {
-	:
-}
-
-src_install() {
-	python_doscript tremc
-	newbashcomp completion/bash/tremc.sh tremc
-	insinto /usr/share/zsh/site-functions
-	doins completion/zsh/_tremc
-	doman tremc.1
-	dodoc NEWS README.md
-}
-
-pkg_postinst() {
-	optfeature "Extract ipv4 from ipv6 addresses" dev-python/ipy
-	optfeature "Clipboard support" dev-python/pyperclip
-}


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

* [gentoo-commits] repo/gentoo:master commit in: net-p2p/tremc/
@ 2023-05-28 18:32 John Helmert III
  0 siblings, 0 replies; 14+ messages in thread
From: John Helmert III @ 2023-05-28 18:32 UTC (permalink / raw
  To: gentoo-commits

commit:     60d324664c386e3bd32b3820a72a3d8c9d497f9c
Author:     John Helmert III <ajak <AT> gentoo <DOT> org>
AuthorDate: Sun May 28 18:30:52 2023 +0000
Commit:     John Helmert III <ajak <AT> gentoo <DOT> org>
CommitDate: Sun May 28 18:32:34 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60d32466

net-p2p/tremc: add 0.9.3_p20230506

And slide PYTHON_COMPAT window forward.

Bug: https://bugs.gentoo.org/902907
Signed-off-by: John Helmert III <ajak <AT> gentoo.org>

 net-p2p/tremc/Manifest                     |  1 +
 net-p2p/tremc/tremc-0.9.3_p20230506.ebuild | 42 ++++++++++++++++++++++++++++++
 2 files changed, 43 insertions(+)

diff --git a/net-p2p/tremc/Manifest b/net-p2p/tremc/Manifest
index f15840486e81..c2583532cd2e 100644
--- a/net-p2p/tremc/Manifest
+++ b/net-p2p/tremc/Manifest
@@ -1 +1,2 @@
 DIST tremc-0.9.3.tar.gz 334457 BLAKE2B 328f158c96c4927fb910a58508fb3a74aa43d6ab74dfcdde7a99eee0ba70aa7020e00f19197ba0d3ae641b169cf147fc0ea04c1ef4e638a41a29311a042df284 SHA512 cbc40ce36eec1f641a6754933e7b009ca3d47e9a2d5091f7677f8005c466f6d0c744023b92e6b5aa93e736828390917c2b5f2f87ba6634d74016960b764467eb
+DIST tremc-0.9.3_p20230506.tar.gz 337178 BLAKE2B 64e9443bb11d1151a1d9d811ddeaacf67e6e68c37faca3b0267291822d124370f8b1e382c408b2b18f164549a1179dd9c613c4e54f0a93effd501cef76910485 SHA512 f13abd1ae5d8bfca4d7d1c10d870e654e974ffd06d7fd46b5d10ae3e6480f9e462c18e7e5cbfbf5bea5c19f8443e76e50e7e3f536db9e1993b4c6bed040c9d66

diff --git a/net-p2p/tremc/tremc-0.9.3_p20230506.ebuild b/net-p2p/tremc/tremc-0.9.3_p20230506.ebuild
new file mode 100644
index 000000000000..dbe299c4ad08
--- /dev/null
+++ b/net-p2p/tremc/tremc-0.9.3_p20230506.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+COMMIT=d8deaa5ac25bb45a2ca3a930309d6ecc74836a54
+PYTHON_COMPAT=( python3_{10..12} )
+PYTHON_REQ_USE="ncurses"
+
+inherit bash-completion-r1 optfeature python-single-r1
+
+DESCRIPTION="Ncurses interface for the Transmission BitTorrent client"
+HOMEPAGE="https://github.com/tremc/tremc"
+SRC_URI="https://github.com/tremc/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/${PN}-${COMMIT}"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+RDEPEND="${PYTHON_DEPS}"
+
+# Github tag tarballs include the repo with commit in the dir's name
+# Specify a no-op src_compile so upstream's broken Makefile doesn't get used
+src_compile() {
+	:
+}
+
+src_install() {
+	python_doscript tremc
+	newbashcomp completion/bash/tremc.sh tremc
+	insinto /usr/share/zsh/site-functions
+	doins completion/zsh/_tremc
+	doman tremc.1
+	dodoc NEWS README.md
+}
+
+pkg_postinst() {
+	optfeature "Extract ipv4 from ipv6 addresses" dev-python/ipy
+	optfeature "Clipboard support" dev-python/pyperclip
+}


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

* [gentoo-commits] repo/gentoo:master commit in: net-p2p/tremc/
@ 2024-07-28 18:51 John Helmert III
  0 siblings, 0 replies; 14+ messages in thread
From: John Helmert III @ 2024-07-28 18:51 UTC (permalink / raw
  To: gentoo-commits

commit:     96619c20127c3c461465a833c59ea03064ae1d32
Author:     John Helmert III <ajak <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 28 18:40:14 2024 +0000
Commit:     John Helmert III <ajak <AT> gentoo <DOT> org>
CommitDate: Sun Jul 28 18:42:40 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96619c20

net-p2p/tremc: drop 0.9.3

Signed-off-by: John Helmert III <ajak <AT> gentoo.org>

 net-p2p/tremc/Manifest           |  1 -
 net-p2p/tremc/tremc-0.9.3.ebuild | 40 ----------------------------------------
 2 files changed, 41 deletions(-)

diff --git a/net-p2p/tremc/Manifest b/net-p2p/tremc/Manifest
index c2583532cd2e..a612e6ebf084 100644
--- a/net-p2p/tremc/Manifest
+++ b/net-p2p/tremc/Manifest
@@ -1,2 +1 @@
-DIST tremc-0.9.3.tar.gz 334457 BLAKE2B 328f158c96c4927fb910a58508fb3a74aa43d6ab74dfcdde7a99eee0ba70aa7020e00f19197ba0d3ae641b169cf147fc0ea04c1ef4e638a41a29311a042df284 SHA512 cbc40ce36eec1f641a6754933e7b009ca3d47e9a2d5091f7677f8005c466f6d0c744023b92e6b5aa93e736828390917c2b5f2f87ba6634d74016960b764467eb
 DIST tremc-0.9.3_p20230506.tar.gz 337178 BLAKE2B 64e9443bb11d1151a1d9d811ddeaacf67e6e68c37faca3b0267291822d124370f8b1e382c408b2b18f164549a1179dd9c613c4e54f0a93effd501cef76910485 SHA512 f13abd1ae5d8bfca4d7d1c10d870e654e974ffd06d7fd46b5d10ae3e6480f9e462c18e7e5cbfbf5bea5c19f8443e76e50e7e3f536db9e1993b4c6bed040c9d66

diff --git a/net-p2p/tremc/tremc-0.9.3.ebuild b/net-p2p/tremc/tremc-0.9.3.ebuild
deleted file mode 100644
index 31c79ede0c06..000000000000
--- a/net-p2p/tremc/tremc-0.9.3.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{9..11} )
-PYTHON_REQ_USE="ncurses"
-
-inherit bash-completion-r1 optfeature python-single-r1
-
-DESCRIPTION="Ncurses interface for the Transmission BitTorrent client"
-HOMEPAGE="https://github.com/tremc/tremc"
-SRC_URI="https://github.com/tremc/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-RDEPEND="${PYTHON_DEPS}"
-
-# Github tag tarballs include the repo with commit in the dir's name
-# Specify a no-op src_compile so upstream's broken Makefile doesn't get used
-src_compile() {
-	:
-}
-
-src_install() {
-	python_doscript tremc
-	newbashcomp completion/bash/tremc.sh tremc
-	insinto /usr/share/zsh/site-functions
-	doins completion/zsh/_tremc
-	doman tremc.1
-	dodoc NEWS README.md
-}
-
-pkg_postinst() {
-	optfeature "Extract ipv4 from ipv6 addresses" dev-python/ipy
-	optfeature "Clipboard support" dev-python/pyperclip
-}


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

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

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-10-17 16:08 [gentoo-commits] repo/gentoo:master commit in: net-p2p/tremc/ John Helmert III
  -- strict thread matches above, loose matches on Subject: below --
2024-07-28 18:51 John Helmert III
2023-05-28 18:32 John Helmert III
2022-10-21 19:56 John Helmert III
2022-10-21 19:56 John Helmert III
2022-07-31 18:38 Jakov Smolić
2022-05-31 16:29 John Helmert III
2022-05-30 22:20 John Helmert III
2021-06-11 19:37 John Helmert III
2021-06-11 19:37 John Helmert III
2021-02-22  1:57 John Helmert III
2020-09-07  8:55 David Seifert
2020-06-29  6:09 Joonas Niilola
2020-05-31  6:58 Michał Górny

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