Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] python-pytest, python-importlib_metadata: add dependencies
@ 2019-12-31 13:24 voidlinux-github
  2019-12-31 13:32 ` [PR PATCH] [Updated] " voidlinux-github
  2019-12-31 13:46 ` [PR PATCH] [Merged]: " voidlinux-github
  0 siblings, 2 replies; 3+ messages in thread
From: voidlinux-github @ 2019-12-31 13:24 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Chocimier/void-packages-org importlib
https://github.com/void-linux/void-packages/pull/17934

python-pytest, python-importlib_metadata: add dependencies


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

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

From c8381a6d0d4a0a41af0e91c183dc653cd0b00a42 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Piotr=20W=C3=B3jcik?= <chocimier@tlen.pl>
Date: Tue, 31 Dec 2019 14:19:05 +0100
Subject: [PATCH 1/2] python-importlib_metadata: add dependencies, fix tests

---
 srcpkgs/python3-importlib_metadata/template | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/python3-importlib_metadata/template b/srcpkgs/python3-importlib_metadata/template
index fa80b295033..ccf63f56be2 100644
--- a/srcpkgs/python3-importlib_metadata/template
+++ b/srcpkgs/python3-importlib_metadata/template
@@ -1,14 +1,14 @@
 # Template file for 'python3-importlib_metadata'
 pkgname=python3-importlib_metadata
 version=1.2.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="importlib_metadata-${version}"
 build_style=python-module
 pycompile_module=importlib_metadata
 hostmakedepends="python-setuptools python3-setuptools"
 depends="python3-zipp"
-checkdepends="${depends}"
+checkdepends="${depends} python3-packaging"
 short_desc="Read metadata from Python packages"
 maintainer="Piotr Wójcik <chocimier@tlen.pl>"
 license="Apache-2.0"
@@ -17,8 +17,12 @@ changelog="https://importlib-metadata.readthedocs.io/en/latest/changelog%20(link
 distfiles="${PYPI_SITE}/i/importlib_metadata/importlib_metadata-${version}.tar.gz"
 checksum=41e688146d000891f32b1669e8573c57e39e5060e7f5f647aa617cd9a9568278
 
+do_check() {
+	python3 setup.py test
+}
+
 python-importlib_metadata_package() {
-	depends=python-zipp
+	depends="python-zipp python-backports.configparser python-contextlib2"
 	short_desc="${short_desc/Python/Python 2/}"
 	pkg_install() {
 		vmove "usr/lib/python2.7"

From 9ab573e0b8cd7b176a5e123f3ac3feff585ed043 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Piotr=20W=C3=B3jcik?= <chocimier@tlen.pl>
Date: Tue, 31 Dec 2019 14:19:44 +0100
Subject: [PATCH 2/2] python-pytest: add dependencies

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

diff --git a/srcpkgs/python-pytest/template b/srcpkgs/python-pytest/template
index a88c5709737..21ca51dad59 100644
--- a/srcpkgs/python-pytest/template
+++ b/srcpkgs/python-pytest/template
@@ -1,7 +1,7 @@
 # Template file for 'python-pytest'
 pkgname=python-pytest
 version=4.6.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python2-module
@@ -9,7 +9,8 @@ pycompile_module="_pytest pytest.py"
 hostmakedepends="python-setuptools"
 depends="python-atomicwrites python-attrs python-funcsigs python-more-itertools
  python-pluggy python-py python-setuptools python-pathlib2 python-six
- python-wcwidth python-hypothesis python-importlib_metadata"
+ python-wcwidth python-hypothesis python-importlib_metadata
+ python-packaging"
 checkdepends="$depends tox"
 short_desc="Simple powerful testing with Python 2"
 maintainer="Orphaned <orphan@voidlinux.org>"

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

* Re: [PR PATCH] [Updated] python-pytest, python-importlib_metadata: add dependencies
  2019-12-31 13:24 [PR PATCH] python-pytest, python-importlib_metadata: add dependencies voidlinux-github
@ 2019-12-31 13:32 ` voidlinux-github
  2019-12-31 13:46 ` [PR PATCH] [Merged]: " voidlinux-github
  1 sibling, 0 replies; 3+ messages in thread
From: voidlinux-github @ 2019-12-31 13:32 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Chocimier/void-packages-org importlib
https://github.com/void-linux/void-packages/pull/17934

python-pytest, python-importlib_metadata: add dependencies


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

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

From 5b72cd02a89e4e20190301fb07858675281541cc Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Piotr=20W=C3=B3jcik?= <chocimier@tlen.pl>
Date: Tue, 31 Dec 2019 14:19:05 +0100
Subject: [PATCH 1/2] python-importlib_metadata: add dependencies, fix tests

---
 srcpkgs/python3-importlib_metadata/template | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/python3-importlib_metadata/template b/srcpkgs/python3-importlib_metadata/template
index fa80b295033..bd1aa83266f 100644
--- a/srcpkgs/python3-importlib_metadata/template
+++ b/srcpkgs/python3-importlib_metadata/template
@@ -1,14 +1,13 @@
 # Template file for 'python3-importlib_metadata'
 pkgname=python3-importlib_metadata
 version=1.2.0
-revision=2
+revision=3
 archs=noarch
 wrksrc="importlib_metadata-${version}"
 build_style=python-module
-pycompile_module=importlib_metadata
 hostmakedepends="python-setuptools python3-setuptools"
 depends="python3-zipp"
-checkdepends="${depends}"
+checkdepends="${depends} python3-packaging"
 short_desc="Read metadata from Python packages"
 maintainer="Piotr Wójcik <chocimier@tlen.pl>"
 license="Apache-2.0"
@@ -17,8 +16,12 @@ changelog="https://importlib-metadata.readthedocs.io/en/latest/changelog%20(link
 distfiles="${PYPI_SITE}/i/importlib_metadata/importlib_metadata-${version}.tar.gz"
 checksum=41e688146d000891f32b1669e8573c57e39e5060e7f5f647aa617cd9a9568278
 
+do_check() {
+	python3 setup.py test
+}
+
 python-importlib_metadata_package() {
-	depends=python-zipp
+	depends="python-zipp python-backports.configparser python-contextlib2"
 	short_desc="${short_desc/Python/Python 2/}"
 	pkg_install() {
 		vmove "usr/lib/python2.7"

From a95819d169ebe9c0803718a5ffb08818a551cf4f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Piotr=20W=C3=B3jcik?= <chocimier@tlen.pl>
Date: Tue, 31 Dec 2019 14:19:44 +0100
Subject: [PATCH 2/2] python-pytest: add dependencies

---
 srcpkgs/python-pytest/template | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/python-pytest/template b/srcpkgs/python-pytest/template
index a88c5709737..1ccc6481e34 100644
--- a/srcpkgs/python-pytest/template
+++ b/srcpkgs/python-pytest/template
@@ -1,15 +1,15 @@
 # Template file for 'python-pytest'
 pkgname=python-pytest
 version=4.6.7
-revision=1
+revision=2
 archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python2-module
-pycompile_module="_pytest pytest.py"
 hostmakedepends="python-setuptools"
 depends="python-atomicwrites python-attrs python-funcsigs python-more-itertools
  python-pluggy python-py python-setuptools python-pathlib2 python-six
- python-wcwidth python-hypothesis python-importlib_metadata"
+ python-wcwidth python-hypothesis python-importlib_metadata
+ python-packaging"
 checkdepends="$depends tox"
 short_desc="Simple powerful testing with Python 2"
 maintainer="Orphaned <orphan@voidlinux.org>"

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

* Re: [PR PATCH] [Merged]: python-pytest, python-importlib_metadata: add dependencies
  2019-12-31 13:24 [PR PATCH] python-pytest, python-importlib_metadata: add dependencies voidlinux-github
  2019-12-31 13:32 ` [PR PATCH] [Updated] " voidlinux-github
@ 2019-12-31 13:46 ` voidlinux-github
  1 sibling, 0 replies; 3+ messages in thread
From: voidlinux-github @ 2019-12-31 13:46 UTC (permalink / raw)
  To: ml

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

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

python-pytest, python-importlib_metadata: add dependencies
https://github.com/void-linux/void-packages/pull/17934

Description:


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

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

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-31 13:24 [PR PATCH] python-pytest, python-importlib_metadata: add dependencies voidlinux-github
2019-12-31 13:32 ` [PR PATCH] [Updated] " voidlinux-github
2019-12-31 13:46 ` [PR PATCH] [Merged]: " 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).