Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] python3-future: fix pycompile modules.
@ 2019-12-28 22:31 voidlinux-github
  2019-12-29 11:41 ` [PR PATCH] [Updated] " voidlinux-github
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: voidlinux-github @ 2019-12-28 22:31 UTC (permalink / raw)
  To: ml

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

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

https://github.com/k4leg/void-packages test
https://github.com/void-linux/void-packages/pull/17849

python3-future: fix pycompile modules.
When I installing `python3-future-0.17.1_2`:
```
python3-future-0.17.1_2: configuring ...
Byte-compiling python3.8 code for module _dummy_thread...
Can't list 'usr/lib/python3.8/site-packages/_dummy_thread'
Can't list 'usr/lib/python3.8/site-packages/_dummy_thread'
Byte-compiling python3.8 code for module _markupbase...
Can't list 'usr/lib/python3.8/site-packages/_markupbase'
Can't list 'usr/lib/python3.8/site-packages/_markupbase'
Byte-compiling python3.8 code for module _thread...
Can't list 'usr/lib/python3.8/site-packages/_thread'
Can't list 'usr/lib/python3.8/site-packages/_thread'
Byte-compiling python3.8 code for module builtins...
Can't list 'usr/lib/python3.8/site-packages/builtins'
Can't list 'usr/lib/python3.8/site-packages/builtins'
Byte-compiling python3.8 code for module copyreg...
Can't list 'usr/lib/python3.8/site-packages/copyreg'
Can't list 'usr/lib/python3.8/site-packages/copyreg'
Byte-compiling python3.8 code for module future...
Byte-compiling python3.8 code for module html...
Can't list 'usr/lib/python3.8/site-packages/html'
Can't list 'usr/lib/python3.8/site-packages/html'
Byte-compiling python3.8 code for module http...
Can't list 'usr/lib/python3.8/site-packages/http'
Can't list 'usr/lib/python3.8/site-packages/http'
Byte-compiling python3.8 code for module libfuturize...
Byte-compiling python3.8 code for module libpasteurize...
Byte-compiling python3.8 code for module past...
Byte-compiling python3.8 code for module queue...
Can't list 'usr/lib/python3.8/site-packages/queue'
Can't list 'usr/lib/python3.8/site-packages/queue'
Byte-compiling python3.8 code for module reprlib...
Can't list 'usr/lib/python3.8/site-packages/reprlib'
Can't list 'usr/lib/python3.8/site-packages/reprlib'
Byte-compiling python3.8 code for module socketserver...
Can't list 'usr/lib/python3.8/site-packages/socketserver'
Can't list 'usr/lib/python3.8/site-packages/socketserver'
Byte-compiling python3.8 code for module tkinter...
Can't list 'usr/lib/python3.8/site-packages/tkinter'
Can't list 'usr/lib/python3.8/site-packages/tkinter'
Byte-compiling python3.8 code for module winreg...
Can't list 'usr/lib/python3.8/site-packages/winreg'
Can't list 'usr/lib/python3.8/site-packages/winreg'
Byte-compiling python3.8 code for module xmlrpc...
Can't list 'usr/lib/python3.8/site-packages/xmlrpc'
Can't list 'usr/lib/python3.8/site-packages/xmlrpc'
Updating ldconfig(8) cache...
python3-future-0.17.1_2: installed successfully.
```

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

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

From 2110f1a29ad7f5575fc076f2f4a471462d0dde97 Mon Sep 17 00:00:00 2001
From: k4leg <d0xi@inbox.ru>
Date: Sun, 29 Dec 2019 01:27:06 +0300
Subject: [PATCH] python3-future: fix pycompile modules.

---
 srcpkgs/python-future/template | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/python-future/template b/srcpkgs/python-future/template
index 6cd53908823..f467ec08264 100644
--- a/srcpkgs/python-future/template
+++ b/srcpkgs/python-future/template
@@ -1,7 +1,7 @@
 # Template file for 'python-future'
 pkgname=python-future
 version=0.17.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="future-${version}"
 build_style=python-module
@@ -30,9 +30,7 @@ python3-future_package() {
 	 future:futurize:/usr/bin/futurize3
 	 future:pasteurize:/usr/bin/pasteurize3"
 	archs=noarch
-	pycompile_module="_dummy_thread _markupbase _thread builtins
-	 copyreg future html http libfuturize libpasteurize past queue reprlib
-	 socketserver tkinter winreg xmlrpc"
+	pycompile_module="future libfuturize libpasteurize past"
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {

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

* Re: [PR PATCH] [Updated] python3-future: fix pycompile modules.
  2019-12-28 22:31 [PR PATCH] python3-future: fix pycompile modules voidlinux-github
@ 2019-12-29 11:41 ` voidlinux-github
  2019-12-31 14:42 ` voidlinux-github
  2019-12-31 14:43 ` [PR PATCH] [Closed]: " voidlinux-github
  2 siblings, 0 replies; 4+ messages in thread
From: voidlinux-github @ 2019-12-29 11:41 UTC (permalink / raw)
  To: ml

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

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

https://github.com/k4leg/void-packages test
https://github.com/void-linux/void-packages/pull/17849

python3-future: fix pycompile modules.
When I installing `python3-future-0.17.1_2`:
```
python3-future-0.17.1_2: configuring ...
Byte-compiling python3.8 code for module _dummy_thread...
Can't list 'usr/lib/python3.8/site-packages/_dummy_thread'
Can't list 'usr/lib/python3.8/site-packages/_dummy_thread'
Byte-compiling python3.8 code for module _markupbase...
Can't list 'usr/lib/python3.8/site-packages/_markupbase'
Can't list 'usr/lib/python3.8/site-packages/_markupbase'
Byte-compiling python3.8 code for module _thread...
Can't list 'usr/lib/python3.8/site-packages/_thread'
Can't list 'usr/lib/python3.8/site-packages/_thread'
Byte-compiling python3.8 code for module builtins...
Can't list 'usr/lib/python3.8/site-packages/builtins'
Can't list 'usr/lib/python3.8/site-packages/builtins'
Byte-compiling python3.8 code for module copyreg...
Can't list 'usr/lib/python3.8/site-packages/copyreg'
Can't list 'usr/lib/python3.8/site-packages/copyreg'
Byte-compiling python3.8 code for module future...
Byte-compiling python3.8 code for module html...
Can't list 'usr/lib/python3.8/site-packages/html'
Can't list 'usr/lib/python3.8/site-packages/html'
Byte-compiling python3.8 code for module http...
Can't list 'usr/lib/python3.8/site-packages/http'
Can't list 'usr/lib/python3.8/site-packages/http'
Byte-compiling python3.8 code for module libfuturize...
Byte-compiling python3.8 code for module libpasteurize...
Byte-compiling python3.8 code for module past...
Byte-compiling python3.8 code for module queue...
Can't list 'usr/lib/python3.8/site-packages/queue'
Can't list 'usr/lib/python3.8/site-packages/queue'
Byte-compiling python3.8 code for module reprlib...
Can't list 'usr/lib/python3.8/site-packages/reprlib'
Can't list 'usr/lib/python3.8/site-packages/reprlib'
Byte-compiling python3.8 code for module socketserver...
Can't list 'usr/lib/python3.8/site-packages/socketserver'
Can't list 'usr/lib/python3.8/site-packages/socketserver'
Byte-compiling python3.8 code for module tkinter...
Can't list 'usr/lib/python3.8/site-packages/tkinter'
Can't list 'usr/lib/python3.8/site-packages/tkinter'
Byte-compiling python3.8 code for module winreg...
Can't list 'usr/lib/python3.8/site-packages/winreg'
Can't list 'usr/lib/python3.8/site-packages/winreg'
Byte-compiling python3.8 code for module xmlrpc...
Can't list 'usr/lib/python3.8/site-packages/xmlrpc'
Can't list 'usr/lib/python3.8/site-packages/xmlrpc'
Updating ldconfig(8) cache...
python3-future-0.17.1_2: installed successfully.
```

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

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

From e57b5d1e2e213ee8c8799831fa9b80101e3a69e9 Mon Sep 17 00:00:00 2001
From: k4leg <d0xi@inbox.ru>
Date: Sun, 29 Dec 2019 01:27:06 +0300
Subject: [PATCH] python3-future: fix pycompile modules.

---
 srcpkgs/python-future/template | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/python-future/template b/srcpkgs/python-future/template
index 6cd53908823..6c314c00cee 100644
--- a/srcpkgs/python-future/template
+++ b/srcpkgs/python-future/template
@@ -1,7 +1,7 @@
 # Template file for 'python-future'
 pkgname=python-future
 version=0.17.1
-revision=2
+revision=3
 archs=noarch
 wrksrc="future-${version}"
 build_style=python-module
@@ -12,8 +12,8 @@ hostmakedepends="python-setuptools python3-setuptools"
 depends="python-setuptools"
 short_desc="Clean single-source support for Python 3 and 2 (Python2)"
 maintainer="Alessio Sergi <al3hex@gmail.com>"
-homepage="https://python-future.org/"
 license="MIT"
+homepage="https://python-future.org/"
 distfiles="${PYPI_SITE}/f/future/future-${version}.tar.gz"
 checksum=67045236dcfd6816dc439556d009594abf643e5eb48992e36beac09c2ca659b8
 
@@ -30,9 +30,7 @@ python3-future_package() {
 	 future:futurize:/usr/bin/futurize3
 	 future:pasteurize:/usr/bin/pasteurize3"
 	archs=noarch
-	pycompile_module="_dummy_thread _markupbase _thread builtins
-	 copyreg future html http libfuturize libpasteurize past queue reprlib
-	 socketserver tkinter winreg xmlrpc"
+	pycompile_module="future libfuturize libpasteurize past"
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {

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

* Re: python3-future: fix pycompile modules.
  2019-12-28 22:31 [PR PATCH] python3-future: fix pycompile modules voidlinux-github
  2019-12-29 11:41 ` [PR PATCH] [Updated] " voidlinux-github
@ 2019-12-31 14:42 ` voidlinux-github
  2019-12-31 14:43 ` [PR PATCH] [Closed]: " voidlinux-github
  2 siblings, 0 replies; 4+ messages in thread
From: voidlinux-github @ 2019-12-31 14:42 UTC (permalink / raw)
  To: ml

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

New comment by k4leg on void-packages repository

https://github.com/void-linux/void-packages/pull/17849#issuecomment-569939219

Comment:
The problem was [solved](https://github.com/void-linux/void-packages/pull/17915).

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

* Re: [PR PATCH] [Closed]: python3-future: fix pycompile modules.
  2019-12-28 22:31 [PR PATCH] python3-future: fix pycompile modules voidlinux-github
  2019-12-29 11:41 ` [PR PATCH] [Updated] " voidlinux-github
  2019-12-31 14:42 ` voidlinux-github
@ 2019-12-31 14:43 ` voidlinux-github
  2 siblings, 0 replies; 4+ messages in thread
From: voidlinux-github @ 2019-12-31 14:43 UTC (permalink / raw)
  To: ml

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

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

python3-future: fix pycompile modules.
https://github.com/void-linux/void-packages/pull/17849

Description:
When I installing `python3-future-0.17.1_2`:
```
python3-future-0.17.1_2: configuring ...
Byte-compiling python3.8 code for module _dummy_thread...
Can't list 'usr/lib/python3.8/site-packages/_dummy_thread'
Can't list 'usr/lib/python3.8/site-packages/_dummy_thread'
Byte-compiling python3.8 code for module _markupbase...
Can't list 'usr/lib/python3.8/site-packages/_markupbase'
Can't list 'usr/lib/python3.8/site-packages/_markupbase'
Byte-compiling python3.8 code for module _thread...
Can't list 'usr/lib/python3.8/site-packages/_thread'
Can't list 'usr/lib/python3.8/site-packages/_thread'
Byte-compiling python3.8 code for module builtins...
Can't list 'usr/lib/python3.8/site-packages/builtins'
Can't list 'usr/lib/python3.8/site-packages/builtins'
Byte-compiling python3.8 code for module copyreg...
Can't list 'usr/lib/python3.8/site-packages/copyreg'
Can't list 'usr/lib/python3.8/site-packages/copyreg'
Byte-compiling python3.8 code for module future...
Byte-compiling python3.8 code for module html...
Can't list 'usr/lib/python3.8/site-packages/html'
Can't list 'usr/lib/python3.8/site-packages/html'
Byte-compiling python3.8 code for module http...
Can't list 'usr/lib/python3.8/site-packages/http'
Can't list 'usr/lib/python3.8/site-packages/http'
Byte-compiling python3.8 code for module libfuturize...
Byte-compiling python3.8 code for module libpasteurize...
Byte-compiling python3.8 code for module past...
Byte-compiling python3.8 code for module queue...
Can't list 'usr/lib/python3.8/site-packages/queue'
Can't list 'usr/lib/python3.8/site-packages/queue'
Byte-compiling python3.8 code for module reprlib...
Can't list 'usr/lib/python3.8/site-packages/reprlib'
Can't list 'usr/lib/python3.8/site-packages/reprlib'
Byte-compiling python3.8 code for module socketserver...
Can't list 'usr/lib/python3.8/site-packages/socketserver'
Can't list 'usr/lib/python3.8/site-packages/socketserver'
Byte-compiling python3.8 code for module tkinter...
Can't list 'usr/lib/python3.8/site-packages/tkinter'
Can't list 'usr/lib/python3.8/site-packages/tkinter'
Byte-compiling python3.8 code for module winreg...
Can't list 'usr/lib/python3.8/site-packages/winreg'
Can't list 'usr/lib/python3.8/site-packages/winreg'
Byte-compiling python3.8 code for module xmlrpc...
Can't list 'usr/lib/python3.8/site-packages/xmlrpc'
Can't list 'usr/lib/python3.8/site-packages/xmlrpc'
Updating ldconfig(8) cache...
python3-future-0.17.1_2: installed successfully.
```

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

end of thread, other threads:[~2019-12-31 14:43 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-28 22:31 [PR PATCH] python3-future: fix pycompile modules voidlinux-github
2019-12-29 11:41 ` [PR PATCH] [Updated] " voidlinux-github
2019-12-31 14:42 ` voidlinux-github
2019-12-31 14:43 ` [PR PATCH] [Closed]: " 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).