Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH]  python3-stem: update to 1.8.0
@ 2019-12-31  4:28 voidlinux-github
  2020-01-04 18:14 ` [PR PATCH] [Updated] " voidlinux-github
                   ` (9 more replies)
  0 siblings, 10 replies; 11+ messages in thread
From: voidlinux-github @ 2019-12-31  4:28 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 320 bytes --]

There is a new pull request by ndowens against master on the void-packages repository

https://github.com/ndowens/void-packages python-stem
https://github.com/void-linux/void-packages/pull/17926

 python3-stem: update to 1.8.0 


A patch file from https://github.com/void-linux/void-packages/pull/17926.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-python-stem-17926.patch --]
[-- Type: text/x-diff, Size: 3712 bytes --]

From 3afe6042163f58856a3e90ebe6fb96eb6a489ba6 Mon Sep 17 00:00:00 2001
From: Nathan Owens <ndowens04@gmail.com>
Date: Mon, 30 Dec 2019 21:42:11 -0600
Subject: [PATCH 1/2] python-stem: set to meta for removal

---
 srcpkgs/python-stem/template | 18 +-----------------
 1 file changed, 1 insertion(+), 17 deletions(-)

diff --git a/srcpkgs/python-stem/template b/srcpkgs/python-stem/template
index e16e79d84bb..937a6dfdc0f 100644
--- a/srcpkgs/python-stem/template
+++ b/srcpkgs/python-stem/template
@@ -3,11 +3,7 @@ pkgname=python-stem
 version=1.7.1
 revision=2
 archs=noarch
-wrksrc="stem-${version/b/}"
-build_style=python-module
-pycompile_module="stem"
-hostmakedepends="python-devel python3-devel"
-depends="python-cryptography"
+build_style=meta
 short_desc="Python2 controller library for Tor"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="LGPL-3"
@@ -16,15 +12,3 @@ changelog="https://stem.torproject.org/change_log.html#version-1-7"
 distfiles="${PYPI_SITE}/s/stem/stem-${version}.tar.gz"
 checksum=c9eaf3116cb60c15995cbd3dec3a5cbc50e9bb6e062c4d6d42201e566f498ca2
 alternatives="stem:tor-prompt:/usr/bin/tor-prompt2"
-
-python3-stem_package() {
-	archs=noarch
-	depends="python3-cryptography"
-	pycompile_module="stem"
-	short_desc="${short_desc/Python2/Python3}"
-	alternatives="stem:tor-prompt:/usr/bin/tor-prompt3"
-	pkg_install() {
-		vmove usr/bin/tor-prompt3
-		vmove usr/lib/python3*
-	}
-}

From 453d88b38199c32281278ab2d83f11a5e28b5c2e Mon Sep 17 00:00:00 2001
From: Nathan Owens <ndowens04@gmail.com>
Date: Mon, 30 Dec 2019 21:44:02 -0600
Subject: [PATCH 2/2] python3-stem: update to 1.8.0

Signed-off-by: Nathan Owens <ndowens04@gmail.com>
---
 srcpkgs/python-stem/template  |  7 ++-----
 srcpkgs/python3-stem          |  1 -
 srcpkgs/python3-stem/template | 17 +++++++++++++++++
 3 files changed, 19 insertions(+), 6 deletions(-)
 delete mode 120000 srcpkgs/python3-stem
 create mode 100644 srcpkgs/python3-stem/template

diff --git a/srcpkgs/python-stem/template b/srcpkgs/python-stem/template
index 937a6dfdc0f..6c503da03e0 100644
--- a/srcpkgs/python-stem/template
+++ b/srcpkgs/python-stem/template
@@ -4,11 +4,8 @@ version=1.7.1
 revision=2
 archs=noarch
 build_style=meta
-short_desc="Python2 controller library for Tor"
+short_desc="Python2 controller library for Tor(removed package)"
 maintainer="Orphaned <orphan@voidlinux.org>"
-license="LGPL-3"
+license="LGPL-3.0-only"
 homepage="https://stem.torproject.org/"
-changelog="https://stem.torproject.org/change_log.html#version-1-7"
-distfiles="${PYPI_SITE}/s/stem/stem-${version}.tar.gz"
-checksum=c9eaf3116cb60c15995cbd3dec3a5cbc50e9bb6e062c4d6d42201e566f498ca2
 alternatives="stem:tor-prompt:/usr/bin/tor-prompt2"
diff --git a/srcpkgs/python3-stem b/srcpkgs/python3-stem
deleted file mode 120000
index abe2e35c54c..00000000000
--- a/srcpkgs/python3-stem
+++ /dev/null
@@ -1 +0,0 @@
-python-stem
\ No newline at end of file
diff --git a/srcpkgs/python3-stem/template b/srcpkgs/python3-stem/template
new file mode 100644
index 00000000000..0855106732e
--- /dev/null
+++ b/srcpkgs/python3-stem/template
@@ -0,0 +1,17 @@
+# Template file for 'python3-stem'
+pkgname=python3-stem
+version=1.8.0
+revision=1
+archs=noarch
+wrksrc="stem-${version}"
+build_style=python3-module
+pycompile_module="stem"
+hostmakedepends="python3-devel"
+depends="python-cryptography"
+short_desc="Python controller library for Tor"
+maintainer="Orphaned <orphan@voidlinux.org>"
+license="LGPL-3.0-only"
+homepage="https://stem.torproject.org/"
+changelog="https://stem.torproject.org/change_log.html#version-1-7"
+distfiles="${PYPI_SITE}/s/stem/stem-${version}.tar.gz"
+checksum=a0b48ea6224e95f22aa34c0bc3415f0eb4667ddeae3dfb5e32a6920c185568c2

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

* Re: [PR PATCH] [Updated]  python3-stem: update to 1.8.0
  2019-12-31  4:28 [PR PATCH] python3-stem: update to 1.8.0 voidlinux-github
  2020-01-04 18:14 ` [PR PATCH] [Updated] " voidlinux-github
@ 2020-01-04 18:14 ` voidlinux-github
  2020-01-04 18:29 ` voidlinux-github
                   ` (7 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: voidlinux-github @ 2020-01-04 18:14 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 325 bytes --]

There is an updated pull request by ndowens against master on the void-packages repository

https://github.com/ndowens/void-packages python-stem
https://github.com/void-linux/void-packages/pull/17926

 python3-stem: update to 1.8.0 


A patch file from https://github.com/void-linux/void-packages/pull/17926.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-python-stem-17926.patch --]
[-- Type: text/x-diff, Size: 3713 bytes --]

From 5970c09c1d922c8296deb98d081ecf6d6d8a2825 Mon Sep 17 00:00:00 2001
From: Nathan Owens <ndowens04@gmail.com>
Date: Mon, 30 Dec 2019 21:42:11 -0600
Subject: [PATCH 1/2] python-stem: set to meta for removal

---
 srcpkgs/python-stem/template | 18 +-----------------
 1 file changed, 1 insertion(+), 17 deletions(-)

diff --git a/srcpkgs/python-stem/template b/srcpkgs/python-stem/template
index e16e79d84bb..937a6dfdc0f 100644
--- a/srcpkgs/python-stem/template
+++ b/srcpkgs/python-stem/template
@@ -3,11 +3,7 @@ pkgname=python-stem
 version=1.7.1
 revision=2
 archs=noarch
-wrksrc="stem-${version/b/}"
-build_style=python-module
-pycompile_module="stem"
-hostmakedepends="python-devel python3-devel"
-depends="python-cryptography"
+build_style=meta
 short_desc="Python2 controller library for Tor"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="LGPL-3"
@@ -16,15 +12,3 @@ changelog="https://stem.torproject.org/change_log.html#version-1-7"
 distfiles="${PYPI_SITE}/s/stem/stem-${version}.tar.gz"
 checksum=c9eaf3116cb60c15995cbd3dec3a5cbc50e9bb6e062c4d6d42201e566f498ca2
 alternatives="stem:tor-prompt:/usr/bin/tor-prompt2"
-
-python3-stem_package() {
-	archs=noarch
-	depends="python3-cryptography"
-	pycompile_module="stem"
-	short_desc="${short_desc/Python2/Python3}"
-	alternatives="stem:tor-prompt:/usr/bin/tor-prompt3"
-	pkg_install() {
-		vmove usr/bin/tor-prompt3
-		vmove usr/lib/python3*
-	}
-}

From e4d7cbb175ea4cab4d2544a5d31c00152cc6f35c Mon Sep 17 00:00:00 2001
From: Nathan Owens <ndowens04@gmail.com>
Date: Mon, 30 Dec 2019 21:44:02 -0600
Subject: [PATCH 2/2] python3-stem: update to 1.8.0

Signed-off-by: Nathan Owens <ndowens04@gmail.com>
---
 srcpkgs/python-stem/template  |  8 ++------
 srcpkgs/python3-stem          |  1 -
 srcpkgs/python3-stem/template | 17 +++++++++++++++++
 3 files changed, 19 insertions(+), 7 deletions(-)
 delete mode 120000 srcpkgs/python3-stem
 create mode 100644 srcpkgs/python3-stem/template

diff --git a/srcpkgs/python-stem/template b/srcpkgs/python-stem/template
index 937a6dfdc0f..f23e1616ecd 100644
--- a/srcpkgs/python-stem/template
+++ b/srcpkgs/python-stem/template
@@ -4,11 +4,7 @@ version=1.7.1
 revision=2
 archs=noarch
 build_style=meta
-short_desc="Python2 controller library for Tor"
+short_desc="Python2 controller library for Tor(removed package)"
 maintainer="Orphaned <orphan@voidlinux.org>"
-license="LGPL-3"
+license="LGPL-3.0-only"
 homepage="https://stem.torproject.org/"
-changelog="https://stem.torproject.org/change_log.html#version-1-7"
-distfiles="${PYPI_SITE}/s/stem/stem-${version}.tar.gz"
-checksum=c9eaf3116cb60c15995cbd3dec3a5cbc50e9bb6e062c4d6d42201e566f498ca2
-alternatives="stem:tor-prompt:/usr/bin/tor-prompt2"
diff --git a/srcpkgs/python3-stem b/srcpkgs/python3-stem
deleted file mode 120000
index abe2e35c54c..00000000000
--- a/srcpkgs/python3-stem
+++ /dev/null
@@ -1 +0,0 @@
-python-stem
\ No newline at end of file
diff --git a/srcpkgs/python3-stem/template b/srcpkgs/python3-stem/template
new file mode 100644
index 00000000000..0855106732e
--- /dev/null
+++ b/srcpkgs/python3-stem/template
@@ -0,0 +1,17 @@
+# Template file for 'python3-stem'
+pkgname=python3-stem
+version=1.8.0
+revision=1
+archs=noarch
+wrksrc="stem-${version}"
+build_style=python3-module
+pycompile_module="stem"
+hostmakedepends="python3-devel"
+depends="python-cryptography"
+short_desc="Python controller library for Tor"
+maintainer="Orphaned <orphan@voidlinux.org>"
+license="LGPL-3.0-only"
+homepage="https://stem.torproject.org/"
+changelog="https://stem.torproject.org/change_log.html#version-1-7"
+distfiles="${PYPI_SITE}/s/stem/stem-${version}.tar.gz"
+checksum=a0b48ea6224e95f22aa34c0bc3415f0eb4667ddeae3dfb5e32a6920c185568c2

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

* Re: [PR PATCH] [Updated]  python3-stem: update to 1.8.0
  2019-12-31  4:28 [PR PATCH] python3-stem: update to 1.8.0 voidlinux-github
@ 2020-01-04 18:14 ` voidlinux-github
  2020-01-04 18:14 ` voidlinux-github
                   ` (8 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: voidlinux-github @ 2020-01-04 18:14 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 325 bytes --]

There is an updated pull request by ndowens against master on the void-packages repository

https://github.com/ndowens/void-packages python-stem
https://github.com/void-linux/void-packages/pull/17926

 python3-stem: update to 1.8.0 


A patch file from https://github.com/void-linux/void-packages/pull/17926.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-python-stem-17926.patch --]
[-- Type: text/x-diff, Size: 3713 bytes --]

From 5970c09c1d922c8296deb98d081ecf6d6d8a2825 Mon Sep 17 00:00:00 2001
From: Nathan Owens <ndowens04@gmail.com>
Date: Mon, 30 Dec 2019 21:42:11 -0600
Subject: [PATCH 1/2] python-stem: set to meta for removal

---
 srcpkgs/python-stem/template | 18 +-----------------
 1 file changed, 1 insertion(+), 17 deletions(-)

diff --git a/srcpkgs/python-stem/template b/srcpkgs/python-stem/template
index e16e79d84bb..937a6dfdc0f 100644
--- a/srcpkgs/python-stem/template
+++ b/srcpkgs/python-stem/template
@@ -3,11 +3,7 @@ pkgname=python-stem
 version=1.7.1
 revision=2
 archs=noarch
-wrksrc="stem-${version/b/}"
-build_style=python-module
-pycompile_module="stem"
-hostmakedepends="python-devel python3-devel"
-depends="python-cryptography"
+build_style=meta
 short_desc="Python2 controller library for Tor"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="LGPL-3"
@@ -16,15 +12,3 @@ changelog="https://stem.torproject.org/change_log.html#version-1-7"
 distfiles="${PYPI_SITE}/s/stem/stem-${version}.tar.gz"
 checksum=c9eaf3116cb60c15995cbd3dec3a5cbc50e9bb6e062c4d6d42201e566f498ca2
 alternatives="stem:tor-prompt:/usr/bin/tor-prompt2"
-
-python3-stem_package() {
-	archs=noarch
-	depends="python3-cryptography"
-	pycompile_module="stem"
-	short_desc="${short_desc/Python2/Python3}"
-	alternatives="stem:tor-prompt:/usr/bin/tor-prompt3"
-	pkg_install() {
-		vmove usr/bin/tor-prompt3
-		vmove usr/lib/python3*
-	}
-}

From e4d7cbb175ea4cab4d2544a5d31c00152cc6f35c Mon Sep 17 00:00:00 2001
From: Nathan Owens <ndowens04@gmail.com>
Date: Mon, 30 Dec 2019 21:44:02 -0600
Subject: [PATCH 2/2] python3-stem: update to 1.8.0

Signed-off-by: Nathan Owens <ndowens04@gmail.com>
---
 srcpkgs/python-stem/template  |  8 ++------
 srcpkgs/python3-stem          |  1 -
 srcpkgs/python3-stem/template | 17 +++++++++++++++++
 3 files changed, 19 insertions(+), 7 deletions(-)
 delete mode 120000 srcpkgs/python3-stem
 create mode 100644 srcpkgs/python3-stem/template

diff --git a/srcpkgs/python-stem/template b/srcpkgs/python-stem/template
index 937a6dfdc0f..f23e1616ecd 100644
--- a/srcpkgs/python-stem/template
+++ b/srcpkgs/python-stem/template
@@ -4,11 +4,7 @@ version=1.7.1
 revision=2
 archs=noarch
 build_style=meta
-short_desc="Python2 controller library for Tor"
+short_desc="Python2 controller library for Tor(removed package)"
 maintainer="Orphaned <orphan@voidlinux.org>"
-license="LGPL-3"
+license="LGPL-3.0-only"
 homepage="https://stem.torproject.org/"
-changelog="https://stem.torproject.org/change_log.html#version-1-7"
-distfiles="${PYPI_SITE}/s/stem/stem-${version}.tar.gz"
-checksum=c9eaf3116cb60c15995cbd3dec3a5cbc50e9bb6e062c4d6d42201e566f498ca2
-alternatives="stem:tor-prompt:/usr/bin/tor-prompt2"
diff --git a/srcpkgs/python3-stem b/srcpkgs/python3-stem
deleted file mode 120000
index abe2e35c54c..00000000000
--- a/srcpkgs/python3-stem
+++ /dev/null
@@ -1 +0,0 @@
-python-stem
\ No newline at end of file
diff --git a/srcpkgs/python3-stem/template b/srcpkgs/python3-stem/template
new file mode 100644
index 00000000000..0855106732e
--- /dev/null
+++ b/srcpkgs/python3-stem/template
@@ -0,0 +1,17 @@
+# Template file for 'python3-stem'
+pkgname=python3-stem
+version=1.8.0
+revision=1
+archs=noarch
+wrksrc="stem-${version}"
+build_style=python3-module
+pycompile_module="stem"
+hostmakedepends="python3-devel"
+depends="python-cryptography"
+short_desc="Python controller library for Tor"
+maintainer="Orphaned <orphan@voidlinux.org>"
+license="LGPL-3.0-only"
+homepage="https://stem.torproject.org/"
+changelog="https://stem.torproject.org/change_log.html#version-1-7"
+distfiles="${PYPI_SITE}/s/stem/stem-${version}.tar.gz"
+checksum=a0b48ea6224e95f22aa34c0bc3415f0eb4667ddeae3dfb5e32a6920c185568c2

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

* Re: [PR PATCH] [Updated]  python3-stem: update to 1.8.0
  2019-12-31  4:28 [PR PATCH] python3-stem: update to 1.8.0 voidlinux-github
  2020-01-04 18:14 ` [PR PATCH] [Updated] " voidlinux-github
  2020-01-04 18:14 ` voidlinux-github
@ 2020-01-04 18:29 ` voidlinux-github
  2020-01-04 18:29 ` voidlinux-github
                   ` (6 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: voidlinux-github @ 2020-01-04 18:29 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 325 bytes --]

There is an updated pull request by ndowens against master on the void-packages repository

https://github.com/ndowens/void-packages python-stem
https://github.com/void-linux/void-packages/pull/17926

 python3-stem: update to 1.8.0 


A patch file from https://github.com/void-linux/void-packages/pull/17926.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-python-stem-17926.patch --]
[-- Type: text/x-diff, Size: 3785 bytes --]

From 5970c09c1d922c8296deb98d081ecf6d6d8a2825 Mon Sep 17 00:00:00 2001
From: Nathan Owens <ndowens04@gmail.com>
Date: Mon, 30 Dec 2019 21:42:11 -0600
Subject: [PATCH 1/2] python-stem: set to meta for removal

---
 srcpkgs/python-stem/template | 18 +-----------------
 1 file changed, 1 insertion(+), 17 deletions(-)

diff --git a/srcpkgs/python-stem/template b/srcpkgs/python-stem/template
index e16e79d84bb..937a6dfdc0f 100644
--- a/srcpkgs/python-stem/template
+++ b/srcpkgs/python-stem/template
@@ -3,11 +3,7 @@ pkgname=python-stem
 version=1.7.1
 revision=2
 archs=noarch
-wrksrc="stem-${version/b/}"
-build_style=python-module
-pycompile_module="stem"
-hostmakedepends="python-devel python3-devel"
-depends="python-cryptography"
+build_style=meta
 short_desc="Python2 controller library for Tor"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="LGPL-3"
@@ -16,15 +12,3 @@ changelog="https://stem.torproject.org/change_log.html#version-1-7"
 distfiles="${PYPI_SITE}/s/stem/stem-${version}.tar.gz"
 checksum=c9eaf3116cb60c15995cbd3dec3a5cbc50e9bb6e062c4d6d42201e566f498ca2
 alternatives="stem:tor-prompt:/usr/bin/tor-prompt2"
-
-python3-stem_package() {
-	archs=noarch
-	depends="python3-cryptography"
-	pycompile_module="stem"
-	short_desc="${short_desc/Python2/Python3}"
-	alternatives="stem:tor-prompt:/usr/bin/tor-prompt3"
-	pkg_install() {
-		vmove usr/bin/tor-prompt3
-		vmove usr/lib/python3*
-	}
-}

From d5b2185753f5d98ea0931ba2a960540b39995d23 Mon Sep 17 00:00:00 2001
From: Nathan Owens <ndowens04@gmail.com>
Date: Mon, 30 Dec 2019 21:44:02 -0600
Subject: [PATCH 2/2] python3-stem: update to 1.8.0

Signed-off-by: Nathan Owens <ndowens04@gmail.com>
---
 srcpkgs/python-stem/template  | 10 +++-------
 srcpkgs/python3-stem          |  1 -
 srcpkgs/python3-stem/template | 17 +++++++++++++++++
 3 files changed, 20 insertions(+), 8 deletions(-)
 delete mode 120000 srcpkgs/python3-stem
 create mode 100644 srcpkgs/python3-stem/template

diff --git a/srcpkgs/python-stem/template b/srcpkgs/python-stem/template
index 937a6dfdc0f..01df054fe23 100644
--- a/srcpkgs/python-stem/template
+++ b/srcpkgs/python-stem/template
@@ -1,14 +1,10 @@
 # Template file for 'python-stem'
 pkgname=python-stem
 version=1.7.1
-revision=2
+revision=3
 archs=noarch
 build_style=meta
-short_desc="Python2 controller library for Tor"
+short_desc="Python2 controller library for Tor(removed package)"
 maintainer="Orphaned <orphan@voidlinux.org>"
-license="LGPL-3"
+license="LGPL-3.0-only"
 homepage="https://stem.torproject.org/"
-changelog="https://stem.torproject.org/change_log.html#version-1-7"
-distfiles="${PYPI_SITE}/s/stem/stem-${version}.tar.gz"
-checksum=c9eaf3116cb60c15995cbd3dec3a5cbc50e9bb6e062c4d6d42201e566f498ca2
-alternatives="stem:tor-prompt:/usr/bin/tor-prompt2"
diff --git a/srcpkgs/python3-stem b/srcpkgs/python3-stem
deleted file mode 120000
index abe2e35c54c..00000000000
--- a/srcpkgs/python3-stem
+++ /dev/null
@@ -1 +0,0 @@
-python-stem
\ No newline at end of file
diff --git a/srcpkgs/python3-stem/template b/srcpkgs/python3-stem/template
new file mode 100644
index 00000000000..0855106732e
--- /dev/null
+++ b/srcpkgs/python3-stem/template
@@ -0,0 +1,17 @@
+# Template file for 'python3-stem'
+pkgname=python3-stem
+version=1.8.0
+revision=1
+archs=noarch
+wrksrc="stem-${version}"
+build_style=python3-module
+pycompile_module="stem"
+hostmakedepends="python3-devel"
+depends="python-cryptography"
+short_desc="Python controller library for Tor"
+maintainer="Orphaned <orphan@voidlinux.org>"
+license="LGPL-3.0-only"
+homepage="https://stem.torproject.org/"
+changelog="https://stem.torproject.org/change_log.html#version-1-7"
+distfiles="${PYPI_SITE}/s/stem/stem-${version}.tar.gz"
+checksum=a0b48ea6224e95f22aa34c0bc3415f0eb4667ddeae3dfb5e32a6920c185568c2

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

* Re: [PR PATCH] [Updated]  python3-stem: update to 1.8.0
  2019-12-31  4:28 [PR PATCH] python3-stem: update to 1.8.0 voidlinux-github
                   ` (2 preceding siblings ...)
  2020-01-04 18:29 ` voidlinux-github
@ 2020-01-04 18:29 ` voidlinux-github
  2020-01-04 18:35 ` voidlinux-github
                   ` (5 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: voidlinux-github @ 2020-01-04 18:29 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 325 bytes --]

There is an updated pull request by ndowens against master on the void-packages repository

https://github.com/ndowens/void-packages python-stem
https://github.com/void-linux/void-packages/pull/17926

 python3-stem: update to 1.8.0 


A patch file from https://github.com/void-linux/void-packages/pull/17926.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-python-stem-17926.patch --]
[-- Type: text/x-diff, Size: 3785 bytes --]

From 5970c09c1d922c8296deb98d081ecf6d6d8a2825 Mon Sep 17 00:00:00 2001
From: Nathan Owens <ndowens04@gmail.com>
Date: Mon, 30 Dec 2019 21:42:11 -0600
Subject: [PATCH 1/2] python-stem: set to meta for removal

---
 srcpkgs/python-stem/template | 18 +-----------------
 1 file changed, 1 insertion(+), 17 deletions(-)

diff --git a/srcpkgs/python-stem/template b/srcpkgs/python-stem/template
index e16e79d84bb..937a6dfdc0f 100644
--- a/srcpkgs/python-stem/template
+++ b/srcpkgs/python-stem/template
@@ -3,11 +3,7 @@ pkgname=python-stem
 version=1.7.1
 revision=2
 archs=noarch
-wrksrc="stem-${version/b/}"
-build_style=python-module
-pycompile_module="stem"
-hostmakedepends="python-devel python3-devel"
-depends="python-cryptography"
+build_style=meta
 short_desc="Python2 controller library for Tor"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="LGPL-3"
@@ -16,15 +12,3 @@ changelog="https://stem.torproject.org/change_log.html#version-1-7"
 distfiles="${PYPI_SITE}/s/stem/stem-${version}.tar.gz"
 checksum=c9eaf3116cb60c15995cbd3dec3a5cbc50e9bb6e062c4d6d42201e566f498ca2
 alternatives="stem:tor-prompt:/usr/bin/tor-prompt2"
-
-python3-stem_package() {
-	archs=noarch
-	depends="python3-cryptography"
-	pycompile_module="stem"
-	short_desc="${short_desc/Python2/Python3}"
-	alternatives="stem:tor-prompt:/usr/bin/tor-prompt3"
-	pkg_install() {
-		vmove usr/bin/tor-prompt3
-		vmove usr/lib/python3*
-	}
-}

From d5b2185753f5d98ea0931ba2a960540b39995d23 Mon Sep 17 00:00:00 2001
From: Nathan Owens <ndowens04@gmail.com>
Date: Mon, 30 Dec 2019 21:44:02 -0600
Subject: [PATCH 2/2] python3-stem: update to 1.8.0

Signed-off-by: Nathan Owens <ndowens04@gmail.com>
---
 srcpkgs/python-stem/template  | 10 +++-------
 srcpkgs/python3-stem          |  1 -
 srcpkgs/python3-stem/template | 17 +++++++++++++++++
 3 files changed, 20 insertions(+), 8 deletions(-)
 delete mode 120000 srcpkgs/python3-stem
 create mode 100644 srcpkgs/python3-stem/template

diff --git a/srcpkgs/python-stem/template b/srcpkgs/python-stem/template
index 937a6dfdc0f..01df054fe23 100644
--- a/srcpkgs/python-stem/template
+++ b/srcpkgs/python-stem/template
@@ -1,14 +1,10 @@
 # Template file for 'python-stem'
 pkgname=python-stem
 version=1.7.1
-revision=2
+revision=3
 archs=noarch
 build_style=meta
-short_desc="Python2 controller library for Tor"
+short_desc="Python2 controller library for Tor(removed package)"
 maintainer="Orphaned <orphan@voidlinux.org>"
-license="LGPL-3"
+license="LGPL-3.0-only"
 homepage="https://stem.torproject.org/"
-changelog="https://stem.torproject.org/change_log.html#version-1-7"
-distfiles="${PYPI_SITE}/s/stem/stem-${version}.tar.gz"
-checksum=c9eaf3116cb60c15995cbd3dec3a5cbc50e9bb6e062c4d6d42201e566f498ca2
-alternatives="stem:tor-prompt:/usr/bin/tor-prompt2"
diff --git a/srcpkgs/python3-stem b/srcpkgs/python3-stem
deleted file mode 120000
index abe2e35c54c..00000000000
--- a/srcpkgs/python3-stem
+++ /dev/null
@@ -1 +0,0 @@
-python-stem
\ No newline at end of file
diff --git a/srcpkgs/python3-stem/template b/srcpkgs/python3-stem/template
new file mode 100644
index 00000000000..0855106732e
--- /dev/null
+++ b/srcpkgs/python3-stem/template
@@ -0,0 +1,17 @@
+# Template file for 'python3-stem'
+pkgname=python3-stem
+version=1.8.0
+revision=1
+archs=noarch
+wrksrc="stem-${version}"
+build_style=python3-module
+pycompile_module="stem"
+hostmakedepends="python3-devel"
+depends="python-cryptography"
+short_desc="Python controller library for Tor"
+maintainer="Orphaned <orphan@voidlinux.org>"
+license="LGPL-3.0-only"
+homepage="https://stem.torproject.org/"
+changelog="https://stem.torproject.org/change_log.html#version-1-7"
+distfiles="${PYPI_SITE}/s/stem/stem-${version}.tar.gz"
+checksum=a0b48ea6224e95f22aa34c0bc3415f0eb4667ddeae3dfb5e32a6920c185568c2

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

* Re: [PR PATCH] [Updated]  python3-stem: update to 1.8.0
  2019-12-31  4:28 [PR PATCH] python3-stem: update to 1.8.0 voidlinux-github
                   ` (4 preceding siblings ...)
  2020-01-04 18:35 ` voidlinux-github
@ 2020-01-04 18:35 ` voidlinux-github
  2020-01-04 18:48 ` voidlinux-github
                   ` (3 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: voidlinux-github @ 2020-01-04 18:35 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 325 bytes --]

There is an updated pull request by ndowens against master on the void-packages repository

https://github.com/ndowens/void-packages python-stem
https://github.com/void-linux/void-packages/pull/17926

 python3-stem: update to 1.8.0 


A patch file from https://github.com/void-linux/void-packages/pull/17926.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-python-stem-17926.patch --]
[-- Type: text/x-diff, Size: 3759 bytes --]

From 5970c09c1d922c8296deb98d081ecf6d6d8a2825 Mon Sep 17 00:00:00 2001
From: Nathan Owens <ndowens04@gmail.com>
Date: Mon, 30 Dec 2019 21:42:11 -0600
Subject: [PATCH 1/2] python-stem: set to meta for removal

---
 srcpkgs/python-stem/template | 18 +-----------------
 1 file changed, 1 insertion(+), 17 deletions(-)

diff --git a/srcpkgs/python-stem/template b/srcpkgs/python-stem/template
index e16e79d84bb..937a6dfdc0f 100644
--- a/srcpkgs/python-stem/template
+++ b/srcpkgs/python-stem/template
@@ -3,11 +3,7 @@ pkgname=python-stem
 version=1.7.1
 revision=2
 archs=noarch
-wrksrc="stem-${version/b/}"
-build_style=python-module
-pycompile_module="stem"
-hostmakedepends="python-devel python3-devel"
-depends="python-cryptography"
+build_style=meta
 short_desc="Python2 controller library for Tor"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="LGPL-3"
@@ -16,15 +12,3 @@ changelog="https://stem.torproject.org/change_log.html#version-1-7"
 distfiles="${PYPI_SITE}/s/stem/stem-${version}.tar.gz"
 checksum=c9eaf3116cb60c15995cbd3dec3a5cbc50e9bb6e062c4d6d42201e566f498ca2
 alternatives="stem:tor-prompt:/usr/bin/tor-prompt2"
-
-python3-stem_package() {
-	archs=noarch
-	depends="python3-cryptography"
-	pycompile_module="stem"
-	short_desc="${short_desc/Python2/Python3}"
-	alternatives="stem:tor-prompt:/usr/bin/tor-prompt3"
-	pkg_install() {
-		vmove usr/bin/tor-prompt3
-		vmove usr/lib/python3*
-	}
-}

From 62f1cbfb31887e96009b68440a0b541b4af15bc4 Mon Sep 17 00:00:00 2001
From: Nathan Owens <ndowens04@gmail.com>
Date: Mon, 30 Dec 2019 21:44:02 -0600
Subject: [PATCH 2/2] python3-stem: update to 1.8.0

Signed-off-by: Nathan Owens <ndowens04@gmail.com>
---
 srcpkgs/python-stem/template  | 10 +++-------
 srcpkgs/python3-stem          |  1 -
 srcpkgs/python3-stem/template | 16 ++++++++++++++++
 3 files changed, 19 insertions(+), 8 deletions(-)
 delete mode 120000 srcpkgs/python3-stem
 create mode 100644 srcpkgs/python3-stem/template

diff --git a/srcpkgs/python-stem/template b/srcpkgs/python-stem/template
index 937a6dfdc0f..01df054fe23 100644
--- a/srcpkgs/python-stem/template
+++ b/srcpkgs/python-stem/template
@@ -1,14 +1,10 @@
 # Template file for 'python-stem'
 pkgname=python-stem
 version=1.7.1
-revision=2
+revision=3
 archs=noarch
 build_style=meta
-short_desc="Python2 controller library for Tor"
+short_desc="Python2 controller library for Tor(removed package)"
 maintainer="Orphaned <orphan@voidlinux.org>"
-license="LGPL-3"
+license="LGPL-3.0-only"
 homepage="https://stem.torproject.org/"
-changelog="https://stem.torproject.org/change_log.html#version-1-7"
-distfiles="${PYPI_SITE}/s/stem/stem-${version}.tar.gz"
-checksum=c9eaf3116cb60c15995cbd3dec3a5cbc50e9bb6e062c4d6d42201e566f498ca2
-alternatives="stem:tor-prompt:/usr/bin/tor-prompt2"
diff --git a/srcpkgs/python3-stem b/srcpkgs/python3-stem
deleted file mode 120000
index abe2e35c54c..00000000000
--- a/srcpkgs/python3-stem
+++ /dev/null
@@ -1 +0,0 @@
-python-stem
\ No newline at end of file
diff --git a/srcpkgs/python3-stem/template b/srcpkgs/python3-stem/template
new file mode 100644
index 00000000000..9d8980ad88f
--- /dev/null
+++ b/srcpkgs/python3-stem/template
@@ -0,0 +1,16 @@
+# Template file for 'python3-stem'
+pkgname=python3-stem
+version=1.8.0
+revision=1
+archs=noarch
+wrksrc="stem-${version}"
+build_style=python3-module
+hostmakedepends="python3-devel"
+depends="python-cryptography"
+short_desc="Python controller library for Tor"
+maintainer="Orphaned <orphan@voidlinux.org>"
+license="LGPL-3.0-only"
+homepage="https://stem.torproject.org/"
+changelog="https://stem.torproject.org/change_log.html#version-1-7"
+distfiles="${PYPI_SITE}/s/stem/stem-${version}.tar.gz"
+checksum=a0b48ea6224e95f22aa34c0bc3415f0eb4667ddeae3dfb5e32a6920c185568c2

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

* Re: [PR PATCH] [Updated]  python3-stem: update to 1.8.0
  2019-12-31  4:28 [PR PATCH] python3-stem: update to 1.8.0 voidlinux-github
                   ` (3 preceding siblings ...)
  2020-01-04 18:29 ` voidlinux-github
@ 2020-01-04 18:35 ` voidlinux-github
  2020-01-04 18:35 ` voidlinux-github
                   ` (4 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: voidlinux-github @ 2020-01-04 18:35 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 325 bytes --]

There is an updated pull request by ndowens against master on the void-packages repository

https://github.com/ndowens/void-packages python-stem
https://github.com/void-linux/void-packages/pull/17926

 python3-stem: update to 1.8.0 


A patch file from https://github.com/void-linux/void-packages/pull/17926.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-python-stem-17926.patch --]
[-- Type: text/x-diff, Size: 3759 bytes --]

From 5970c09c1d922c8296deb98d081ecf6d6d8a2825 Mon Sep 17 00:00:00 2001
From: Nathan Owens <ndowens04@gmail.com>
Date: Mon, 30 Dec 2019 21:42:11 -0600
Subject: [PATCH 1/2] python-stem: set to meta for removal

---
 srcpkgs/python-stem/template | 18 +-----------------
 1 file changed, 1 insertion(+), 17 deletions(-)

diff --git a/srcpkgs/python-stem/template b/srcpkgs/python-stem/template
index e16e79d84bb..937a6dfdc0f 100644
--- a/srcpkgs/python-stem/template
+++ b/srcpkgs/python-stem/template
@@ -3,11 +3,7 @@ pkgname=python-stem
 version=1.7.1
 revision=2
 archs=noarch
-wrksrc="stem-${version/b/}"
-build_style=python-module
-pycompile_module="stem"
-hostmakedepends="python-devel python3-devel"
-depends="python-cryptography"
+build_style=meta
 short_desc="Python2 controller library for Tor"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="LGPL-3"
@@ -16,15 +12,3 @@ changelog="https://stem.torproject.org/change_log.html#version-1-7"
 distfiles="${PYPI_SITE}/s/stem/stem-${version}.tar.gz"
 checksum=c9eaf3116cb60c15995cbd3dec3a5cbc50e9bb6e062c4d6d42201e566f498ca2
 alternatives="stem:tor-prompt:/usr/bin/tor-prompt2"
-
-python3-stem_package() {
-	archs=noarch
-	depends="python3-cryptography"
-	pycompile_module="stem"
-	short_desc="${short_desc/Python2/Python3}"
-	alternatives="stem:tor-prompt:/usr/bin/tor-prompt3"
-	pkg_install() {
-		vmove usr/bin/tor-prompt3
-		vmove usr/lib/python3*
-	}
-}

From 62f1cbfb31887e96009b68440a0b541b4af15bc4 Mon Sep 17 00:00:00 2001
From: Nathan Owens <ndowens04@gmail.com>
Date: Mon, 30 Dec 2019 21:44:02 -0600
Subject: [PATCH 2/2] python3-stem: update to 1.8.0

Signed-off-by: Nathan Owens <ndowens04@gmail.com>
---
 srcpkgs/python-stem/template  | 10 +++-------
 srcpkgs/python3-stem          |  1 -
 srcpkgs/python3-stem/template | 16 ++++++++++++++++
 3 files changed, 19 insertions(+), 8 deletions(-)
 delete mode 120000 srcpkgs/python3-stem
 create mode 100644 srcpkgs/python3-stem/template

diff --git a/srcpkgs/python-stem/template b/srcpkgs/python-stem/template
index 937a6dfdc0f..01df054fe23 100644
--- a/srcpkgs/python-stem/template
+++ b/srcpkgs/python-stem/template
@@ -1,14 +1,10 @@
 # Template file for 'python-stem'
 pkgname=python-stem
 version=1.7.1
-revision=2
+revision=3
 archs=noarch
 build_style=meta
-short_desc="Python2 controller library for Tor"
+short_desc="Python2 controller library for Tor(removed package)"
 maintainer="Orphaned <orphan@voidlinux.org>"
-license="LGPL-3"
+license="LGPL-3.0-only"
 homepage="https://stem.torproject.org/"
-changelog="https://stem.torproject.org/change_log.html#version-1-7"
-distfiles="${PYPI_SITE}/s/stem/stem-${version}.tar.gz"
-checksum=c9eaf3116cb60c15995cbd3dec3a5cbc50e9bb6e062c4d6d42201e566f498ca2
-alternatives="stem:tor-prompt:/usr/bin/tor-prompt2"
diff --git a/srcpkgs/python3-stem b/srcpkgs/python3-stem
deleted file mode 120000
index abe2e35c54c..00000000000
--- a/srcpkgs/python3-stem
+++ /dev/null
@@ -1 +0,0 @@
-python-stem
\ No newline at end of file
diff --git a/srcpkgs/python3-stem/template b/srcpkgs/python3-stem/template
new file mode 100644
index 00000000000..9d8980ad88f
--- /dev/null
+++ b/srcpkgs/python3-stem/template
@@ -0,0 +1,16 @@
+# Template file for 'python3-stem'
+pkgname=python3-stem
+version=1.8.0
+revision=1
+archs=noarch
+wrksrc="stem-${version}"
+build_style=python3-module
+hostmakedepends="python3-devel"
+depends="python-cryptography"
+short_desc="Python controller library for Tor"
+maintainer="Orphaned <orphan@voidlinux.org>"
+license="LGPL-3.0-only"
+homepage="https://stem.torproject.org/"
+changelog="https://stem.torproject.org/change_log.html#version-1-7"
+distfiles="${PYPI_SITE}/s/stem/stem-${version}.tar.gz"
+checksum=a0b48ea6224e95f22aa34c0bc3415f0eb4667ddeae3dfb5e32a6920c185568c2

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

* Re:  python3-stem: update to 1.8.0
  2019-12-31  4:28 [PR PATCH] python3-stem: update to 1.8.0 voidlinux-github
                   ` (6 preceding siblings ...)
  2020-01-04 18:48 ` voidlinux-github
@ 2020-01-04 18:48 ` voidlinux-github
  2020-01-18 15:44 ` [PR PATCH] [Closed]: " voidlinux-github
  2020-01-18 15:44 ` voidlinux-github
  9 siblings, 0 replies; 11+ messages in thread
From: voidlinux-github @ 2020-01-04 18:48 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 448 bytes --]

New comment by Chocimier on void-packages repository

https://github.com/void-linux/void-packages/pull/17926#issuecomment-570809355

Comment:
> Revbump

@xtraeme, could we stop furtively remove packages from user systems with empty packages, and go for something explicit like adding this operation to xbps or [remove-packages](https://github.com/void-linux/void-packages/pull/17578) + [unindex](https://github.com/void-linux/xbps-bulk/pull/2) ?

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

* Re:  python3-stem: update to 1.8.0
  2019-12-31  4:28 [PR PATCH] python3-stem: update to 1.8.0 voidlinux-github
                   ` (5 preceding siblings ...)
  2020-01-04 18:35 ` voidlinux-github
@ 2020-01-04 18:48 ` voidlinux-github
  2020-01-04 18:48 ` voidlinux-github
                   ` (2 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: voidlinux-github @ 2020-01-04 18:48 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 448 bytes --]

New comment by Chocimier on void-packages repository

https://github.com/void-linux/void-packages/pull/17926#issuecomment-570809355

Comment:
> Revbump

@xtraeme, could we stop furtively remove packages from user systems with empty packages, and go for something explicit like adding this operation to xbps or [remove-packages](https://github.com/void-linux/void-packages/pull/17578) + [unindex](https://github.com/void-linux/xbps-bulk/pull/2) ?

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

* Re: [PR PATCH] [Closed]:  python3-stem: update to 1.8.0
  2019-12-31  4:28 [PR PATCH] python3-stem: update to 1.8.0 voidlinux-github
                   ` (7 preceding siblings ...)
  2020-01-04 18:48 ` voidlinux-github
@ 2020-01-18 15:44 ` voidlinux-github
  2020-01-18 15:44 ` voidlinux-github
  9 siblings, 0 replies; 11+ messages in thread
From: voidlinux-github @ 2020-01-18 15:44 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 165 bytes --]

There's a closed pull request on the void-packages repository

 python3-stem: update to 1.8.0 
https://github.com/void-linux/void-packages/pull/17926

Description:


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

* Re: [PR PATCH] [Closed]:  python3-stem: update to 1.8.0
  2019-12-31  4:28 [PR PATCH] python3-stem: update to 1.8.0 voidlinux-github
                   ` (8 preceding siblings ...)
  2020-01-18 15:44 ` [PR PATCH] [Closed]: " voidlinux-github
@ 2020-01-18 15:44 ` voidlinux-github
  9 siblings, 0 replies; 11+ messages in thread
From: voidlinux-github @ 2020-01-18 15:44 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 165 bytes --]

There's a closed pull request on the void-packages repository

 python3-stem: update to 1.8.0 
https://github.com/void-linux/void-packages/pull/17926

Description:


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

end of thread, other threads:[~2020-01-18 15:44 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-31  4:28 [PR PATCH] python3-stem: update to 1.8.0 voidlinux-github
2020-01-04 18:14 ` [PR PATCH] [Updated] " voidlinux-github
2020-01-04 18:14 ` voidlinux-github
2020-01-04 18:29 ` voidlinux-github
2020-01-04 18:29 ` voidlinux-github
2020-01-04 18:35 ` voidlinux-github
2020-01-04 18:35 ` voidlinux-github
2020-01-04 18:48 ` voidlinux-github
2020-01-04 18:48 ` voidlinux-github
2020-01-18 15:44 ` [PR PATCH] [Closed]: " voidlinux-github
2020-01-18 15:44 ` voidlinux-github

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).