Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: python3-scikit-image-0.17.2 and dependencies
@ 2020-07-10 15:51 ahesford
  2020-07-13  2:56 ` [PR PATCH] [Updated] " ahesford
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: ahesford @ 2020-07-10 15:51 UTC (permalink / raw)
  To: ml

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

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

https://github.com/ahesford/void-packages scikit
https://github.com/void-linux/void-packages/pull/23510

New package: python3-scikit-image-0.17.2 and dependencies


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

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

From ad76e81572a6fedd39d76d94a8968487ded89a13 Mon Sep 17 00:00:00 2001
From: "Andrew J. Hesford" <ajh@sideband.org>
Date: Fri, 10 Jul 2020 11:10:02 -0400
Subject: [PATCH 1/4] New package: python3-tifffile-2020.7.4

---
 srcpkgs/python3-tifffile/template | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)
 create mode 100644 srcpkgs/python3-tifffile/template

diff --git a/srcpkgs/python3-tifffile/template b/srcpkgs/python3-tifffile/template
new file mode 100644
index 00000000000..a297e0ea868
--- /dev/null
+++ b/srcpkgs/python3-tifffile/template
@@ -0,0 +1,18 @@
+# Template file for 'python3-tifffile'
+pkgname=python3-tifffile
+version=2020.7.4
+revision=1
+wrksrc="${pkgname#python3-}-${version}"
+build_style=python3-module
+hostmakedepends="python3-setuptools"
+depends="python3-numpy"
+short_desc="Read and write TIFF files"
+maintainer="Andrew J. Hesford <ajh@sideband.org>"
+license="BSD-3-Clause"
+homepage="https://github.com/cgohlke/tifffile"
+distfiles="${homepage}/archive/v${version}.tar.gz"
+checksum=0bdd2be3d4235c20ba5b9c266c1b835c387df539b9c1abeb0ca7e55846503676
+
+post_install() {
+	vlicense LICENSE
+}

From 6dacfe7838005575bac48687f5cbca0a6d846aaf Mon Sep 17 00:00:00 2001
From: "Andrew J. Hesford" <ajh@sideband.org>
Date: Fri, 10 Jul 2020 11:10:06 -0400
Subject: [PATCH 2/4] New package: python3-imageio-2.9.0

---
 srcpkgs/python3-imageio/template | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)
 create mode 100644 srcpkgs/python3-imageio/template

diff --git a/srcpkgs/python3-imageio/template b/srcpkgs/python3-imageio/template
new file mode 100644
index 00000000000..52e5ef22d8f
--- /dev/null
+++ b/srcpkgs/python3-imageio/template
@@ -0,0 +1,18 @@
+# Template file for 'python3-imageio'
+pkgname=python3-imageio
+version=2.9.0
+revision=1
+wrksrc="${pkgname#python3-}-${version}"
+build_style=python3-module
+hostmakedepends="python3-setuptools"
+depends="python3-numpy python3-Pillow"
+short_desc="Python library for reading and writing image data"
+maintainer="Andrew J. Hesford <ajh@sideband.org>"
+license="BSD-2-Clause"
+homepage="https://github.com/imageio/imageio"
+distfiles="${homepage}/archive/v${version}.tar.gz"
+checksum=6a4bb17127d1af103bf146f8b0bd68ccb647a926002e8a6800c6d7859048661a
+
+post_install() {
+	vlicense LICENSE
+}

From 9f0cd4ce336ac63c643f7fa633d3cc450fc5deba Mon Sep 17 00:00:00 2001
From: "Andrew J. Hesford" <ajh@sideband.org>
Date: Fri, 10 Jul 2020 11:10:10 -0400
Subject: [PATCH 3/4] New package: python3-pywt-1.1.1

---
 srcpkgs/python3-pywt/template | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)
 create mode 100644 srcpkgs/python3-pywt/template

diff --git a/srcpkgs/python3-pywt/template b/srcpkgs/python3-pywt/template
new file mode 100644
index 00000000000..e9dd32a4552
--- /dev/null
+++ b/srcpkgs/python3-pywt/template
@@ -0,0 +1,25 @@
+# Template file for 'python3-pywt'
+pkgname=python3-pywt
+version=1.1.1
+revision=1
+wrksrc="${pkgname#python3-}-${version}"
+build_style=python3-module
+hostmakedepends="python3-setuptools python3-Cython python3-numpy"
+makedepends="python3-devel python3-numpy"
+depends="python3-numpy"
+short_desc="PyWavelets wavelet transform module for Python"
+maintainer="Andrew J. Hesford <ajh@sideband.org>"
+license="MIT"
+homepage="https://github.com/PyWavelets/pywt"
+distfiles="${homepage}/archive/v${version}.tar.gz"
+checksum=50fe2aae1b6d2462cf9e9b0dcc18dbcbd0b5ed65225abb4a272ed188dbcbceb0
+
+if [ "$CROSS_BUILD" ]; then
+	# Make sure headers and libs for target arch are found before those for host
+	CFLAGS+=" -I${XBPS_CROSS_BASE}/${py3_sitelib}/numpy/core/include"
+	LDFLAGS+=" -L${XBPS_CROSS_BASE}/${py3_sitelib}/numpy/core/lib"
+fi
+
+post_install() {
+	vlicense LICENSE
+}

From 859d8d56c4ae478cb58cbbbf773bdc1ecb3493c7 Mon Sep 17 00:00:00 2001
From: "Andrew J. Hesford" <ajh@sideband.org>
Date: Fri, 10 Jul 2020 11:24:09 -0400
Subject: [PATCH 4/4] New package: python3-scikit-image-0.17.2

---
 srcpkgs/python3-scikit-image/template | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)
 create mode 100644 srcpkgs/python3-scikit-image/template

diff --git a/srcpkgs/python3-scikit-image/template b/srcpkgs/python3-scikit-image/template
new file mode 100644
index 00000000000..0e8b950336a
--- /dev/null
+++ b/srcpkgs/python3-scikit-image/template
@@ -0,0 +1,26 @@
+# Template file for 'python3-scikit-image'
+pkgname=python3-scikit-image
+version=0.17.2
+revision=1
+wrksrc="${pkgname#python3-}-${version}"
+build_style=python3-module
+hostmakedepends="python3-setuptools python3-Cython python3-numpy"
+makedepends="python3-devel"
+depends="python3-scipy python3-matplotlib python3-networkx
+ python3-imageio python3-tifffile python3-pywt"
+short_desc="Image processing in Python"
+maintainer="Andrew J. Hesford <ajh@sideband.org>"
+license="BSD-3-Clause, MIT"
+homepage="https://scikit-image.org/"
+distfiles="https://github.com/scikit-image/scikit-image/archive/v${version}.tar.gz"
+checksum=54165f1c7365aacbd94df6c89ff72554260c3ea8fd8abdfb596d5d93b25d22ab
+
+if [ "$CROSS_BUILD" ]; then
+	# Make sure headers and libs for target arch are found before those for host
+	CFLAGS+=" -I${XBPS_CROSS_BASE}/${py3_sitelib}/numpy/core/include"
+	LDFLAGS+=" -L${XBPS_CROSS_BASE}/${py3_sitelib}/numpy/core/lib"
+fi
+
+post_install() {
+	vlicense LICENSE.txt
+}

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

* Re: [PR PATCH] [Updated] New package: python3-scikit-image-0.17.2 and dependencies
  2020-07-10 15:51 [PR PATCH] New package: python3-scikit-image-0.17.2 and dependencies ahesford
@ 2020-07-13  2:56 ` ahesford
  2020-07-13  4:34 ` ahesford
  2020-07-13  5:13 ` [PR PATCH] [Merged]: " ahesford
  2 siblings, 0 replies; 4+ messages in thread
From: ahesford @ 2020-07-13  2:56 UTC (permalink / raw)
  To: ml

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

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

https://github.com/ahesford/void-packages scikit
https://github.com/void-linux/void-packages/pull/23510

New package: python3-scikit-image-0.17.2 and dependencies


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

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

From a5b9722d6f1e2f32ead337854dd1ffc5a3a4554c Mon Sep 17 00:00:00 2001
From: "Andrew J. Hesford" <ajh@sideband.org>
Date: Fri, 10 Jul 2020 11:10:02 -0400
Subject: [PATCH 1/4] New package: python3-tifffile-2020.7.4

---
 srcpkgs/python3-tifffile/template | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)
 create mode 100644 srcpkgs/python3-tifffile/template

diff --git a/srcpkgs/python3-tifffile/template b/srcpkgs/python3-tifffile/template
new file mode 100644
index 00000000000..a297e0ea868
--- /dev/null
+++ b/srcpkgs/python3-tifffile/template
@@ -0,0 +1,18 @@
+# Template file for 'python3-tifffile'
+pkgname=python3-tifffile
+version=2020.7.4
+revision=1
+wrksrc="${pkgname#python3-}-${version}"
+build_style=python3-module
+hostmakedepends="python3-setuptools"
+depends="python3-numpy"
+short_desc="Read and write TIFF files"
+maintainer="Andrew J. Hesford <ajh@sideband.org>"
+license="BSD-3-Clause"
+homepage="https://github.com/cgohlke/tifffile"
+distfiles="${homepage}/archive/v${version}.tar.gz"
+checksum=0bdd2be3d4235c20ba5b9c266c1b835c387df539b9c1abeb0ca7e55846503676
+
+post_install() {
+	vlicense LICENSE
+}

From 832adf13a6974a2528dd8d93571c0ae3e6602225 Mon Sep 17 00:00:00 2001
From: "Andrew J. Hesford" <ajh@sideband.org>
Date: Fri, 10 Jul 2020 11:10:06 -0400
Subject: [PATCH 2/4] New package: python3-imageio-2.9.0

---
 srcpkgs/python3-imageio/template | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)
 create mode 100644 srcpkgs/python3-imageio/template

diff --git a/srcpkgs/python3-imageio/template b/srcpkgs/python3-imageio/template
new file mode 100644
index 00000000000..52e5ef22d8f
--- /dev/null
+++ b/srcpkgs/python3-imageio/template
@@ -0,0 +1,18 @@
+# Template file for 'python3-imageio'
+pkgname=python3-imageio
+version=2.9.0
+revision=1
+wrksrc="${pkgname#python3-}-${version}"
+build_style=python3-module
+hostmakedepends="python3-setuptools"
+depends="python3-numpy python3-Pillow"
+short_desc="Python library for reading and writing image data"
+maintainer="Andrew J. Hesford <ajh@sideband.org>"
+license="BSD-2-Clause"
+homepage="https://github.com/imageio/imageio"
+distfiles="${homepage}/archive/v${version}.tar.gz"
+checksum=6a4bb17127d1af103bf146f8b0bd68ccb647a926002e8a6800c6d7859048661a
+
+post_install() {
+	vlicense LICENSE
+}

From c5b30572733019fa7b172debc1f64abb2e9a9d0d Mon Sep 17 00:00:00 2001
From: "Andrew J. Hesford" <ajh@sideband.org>
Date: Fri, 10 Jul 2020 11:10:10 -0400
Subject: [PATCH 3/4] New package: python3-pywt-1.1.1

---
 srcpkgs/python3-pywt/template | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)
 create mode 100644 srcpkgs/python3-pywt/template

diff --git a/srcpkgs/python3-pywt/template b/srcpkgs/python3-pywt/template
new file mode 100644
index 00000000000..d2a28c6e98c
--- /dev/null
+++ b/srcpkgs/python3-pywt/template
@@ -0,0 +1,20 @@
+# Template file for 'python3-pywt'
+pkgname=python3-pywt
+version=1.1.1
+revision=1
+wrksrc="${pkgname#python3-}-${version}"
+build_style=python3-module
+build_helper="numpy"
+hostmakedepends="python3-setuptools python3-Cython"
+makedepends="python3-devel"
+depends="python3-numpy"
+short_desc="PyWavelets wavelet transform module for Python"
+maintainer="Andrew J. Hesford <ajh@sideband.org>"
+license="MIT"
+homepage="https://github.com/PyWavelets/pywt"
+distfiles="${homepage}/archive/v${version}.tar.gz"
+checksum=50fe2aae1b6d2462cf9e9b0dcc18dbcbd0b5ed65225abb4a272ed188dbcbceb0
+
+post_install() {
+	vlicense LICENSE
+}

From 1d0842bc794f0871b18f5414e76f74c6515210ee Mon Sep 17 00:00:00 2001
From: "Andrew J. Hesford" <ajh@sideband.org>
Date: Fri, 10 Jul 2020 11:24:09 -0400
Subject: [PATCH 4/4] New package: python3-scikit-image-0.17.2

---
 srcpkgs/python3-scikit-image/template | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)
 create mode 100644 srcpkgs/python3-scikit-image/template

diff --git a/srcpkgs/python3-scikit-image/template b/srcpkgs/python3-scikit-image/template
new file mode 100644
index 00000000000..f0d3f97a815
--- /dev/null
+++ b/srcpkgs/python3-scikit-image/template
@@ -0,0 +1,21 @@
+# Template file for 'python3-scikit-image'
+pkgname=python3-scikit-image
+version=0.17.2
+revision=1
+wrksrc="${pkgname#python3-}-${version}"
+build_style=python3-module
+build_helper="numpy"
+hostmakedepends="python3-setuptools python3-Cython"
+makedepends="python3-devel"
+depends="python3-scipy python3-matplotlib python3-networkx
+ python3-imageio python3-tifffile python3-pywt"
+short_desc="Image processing in Python"
+maintainer="Andrew J. Hesford <ajh@sideband.org>"
+license="BSD-3-Clause, MIT"
+homepage="https://scikit-image.org/"
+distfiles="https://github.com/scikit-image/scikit-image/archive/v${version}.tar.gz"
+checksum=54165f1c7365aacbd94df6c89ff72554260c3ea8fd8abdfb596d5d93b25d22ab
+
+post_install() {
+	vlicense LICENSE.txt
+}

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

* Re: [PR PATCH] [Updated] New package: python3-scikit-image-0.17.2 and dependencies
  2020-07-10 15:51 [PR PATCH] New package: python3-scikit-image-0.17.2 and dependencies ahesford
  2020-07-13  2:56 ` [PR PATCH] [Updated] " ahesford
@ 2020-07-13  4:34 ` ahesford
  2020-07-13  5:13 ` [PR PATCH] [Merged]: " ahesford
  2 siblings, 0 replies; 4+ messages in thread
From: ahesford @ 2020-07-13  4:34 UTC (permalink / raw)
  To: ml

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

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

https://github.com/ahesford/void-packages scikit
https://github.com/void-linux/void-packages/pull/23510

New package: python3-scikit-image-0.17.2 and dependencies


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

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

From a5b9722d6f1e2f32ead337854dd1ffc5a3a4554c Mon Sep 17 00:00:00 2001
From: "Andrew J. Hesford" <ajh@sideband.org>
Date: Fri, 10 Jul 2020 11:10:02 -0400
Subject: [PATCH 1/4] New package: python3-tifffile-2020.7.4

---
 srcpkgs/python3-tifffile/template | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)
 create mode 100644 srcpkgs/python3-tifffile/template

diff --git a/srcpkgs/python3-tifffile/template b/srcpkgs/python3-tifffile/template
new file mode 100644
index 00000000000..a297e0ea868
--- /dev/null
+++ b/srcpkgs/python3-tifffile/template
@@ -0,0 +1,18 @@
+# Template file for 'python3-tifffile'
+pkgname=python3-tifffile
+version=2020.7.4
+revision=1
+wrksrc="${pkgname#python3-}-${version}"
+build_style=python3-module
+hostmakedepends="python3-setuptools"
+depends="python3-numpy"
+short_desc="Read and write TIFF files"
+maintainer="Andrew J. Hesford <ajh@sideband.org>"
+license="BSD-3-Clause"
+homepage="https://github.com/cgohlke/tifffile"
+distfiles="${homepage}/archive/v${version}.tar.gz"
+checksum=0bdd2be3d4235c20ba5b9c266c1b835c387df539b9c1abeb0ca7e55846503676
+
+post_install() {
+	vlicense LICENSE
+}

From 832adf13a6974a2528dd8d93571c0ae3e6602225 Mon Sep 17 00:00:00 2001
From: "Andrew J. Hesford" <ajh@sideband.org>
Date: Fri, 10 Jul 2020 11:10:06 -0400
Subject: [PATCH 2/4] New package: python3-imageio-2.9.0

---
 srcpkgs/python3-imageio/template | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)
 create mode 100644 srcpkgs/python3-imageio/template

diff --git a/srcpkgs/python3-imageio/template b/srcpkgs/python3-imageio/template
new file mode 100644
index 00000000000..52e5ef22d8f
--- /dev/null
+++ b/srcpkgs/python3-imageio/template
@@ -0,0 +1,18 @@
+# Template file for 'python3-imageio'
+pkgname=python3-imageio
+version=2.9.0
+revision=1
+wrksrc="${pkgname#python3-}-${version}"
+build_style=python3-module
+hostmakedepends="python3-setuptools"
+depends="python3-numpy python3-Pillow"
+short_desc="Python library for reading and writing image data"
+maintainer="Andrew J. Hesford <ajh@sideband.org>"
+license="BSD-2-Clause"
+homepage="https://github.com/imageio/imageio"
+distfiles="${homepage}/archive/v${version}.tar.gz"
+checksum=6a4bb17127d1af103bf146f8b0bd68ccb647a926002e8a6800c6d7859048661a
+
+post_install() {
+	vlicense LICENSE
+}

From c5b30572733019fa7b172debc1f64abb2e9a9d0d Mon Sep 17 00:00:00 2001
From: "Andrew J. Hesford" <ajh@sideband.org>
Date: Fri, 10 Jul 2020 11:10:10 -0400
Subject: [PATCH 3/4] New package: python3-pywt-1.1.1

---
 srcpkgs/python3-pywt/template | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)
 create mode 100644 srcpkgs/python3-pywt/template

diff --git a/srcpkgs/python3-pywt/template b/srcpkgs/python3-pywt/template
new file mode 100644
index 00000000000..d2a28c6e98c
--- /dev/null
+++ b/srcpkgs/python3-pywt/template
@@ -0,0 +1,20 @@
+# Template file for 'python3-pywt'
+pkgname=python3-pywt
+version=1.1.1
+revision=1
+wrksrc="${pkgname#python3-}-${version}"
+build_style=python3-module
+build_helper="numpy"
+hostmakedepends="python3-setuptools python3-Cython"
+makedepends="python3-devel"
+depends="python3-numpy"
+short_desc="PyWavelets wavelet transform module for Python"
+maintainer="Andrew J. Hesford <ajh@sideband.org>"
+license="MIT"
+homepage="https://github.com/PyWavelets/pywt"
+distfiles="${homepage}/archive/v${version}.tar.gz"
+checksum=50fe2aae1b6d2462cf9e9b0dcc18dbcbd0b5ed65225abb4a272ed188dbcbceb0
+
+post_install() {
+	vlicense LICENSE
+}

From e1cef9ba186e58a8eba47476b206d58e926e95f2 Mon Sep 17 00:00:00 2001
From: "Andrew J. Hesford" <ajh@sideband.org>
Date: Fri, 10 Jul 2020 11:24:09 -0400
Subject: [PATCH 4/4] New package: python3-scikit-image-0.17.2

---
 srcpkgs/python3-scikit-image/template | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)
 create mode 100644 srcpkgs/python3-scikit-image/template

diff --git a/srcpkgs/python3-scikit-image/template b/srcpkgs/python3-scikit-image/template
new file mode 100644
index 00000000000..f0d3f97a815
--- /dev/null
+++ b/srcpkgs/python3-scikit-image/template
@@ -0,0 +1,21 @@
+# Template file for 'python3-scikit-image'
+pkgname=python3-scikit-image
+version=0.17.2
+revision=1
+wrksrc="${pkgname#python3-}-${version}"
+build_style=python3-module
+build_helper="numpy"
+hostmakedepends="python3-setuptools python3-Cython"
+makedepends="python3-devel"
+depends="python3-scipy python3-matplotlib python3-networkx
+ python3-imageio python3-tifffile python3-pywt"
+short_desc="Image processing in Python"
+maintainer="Andrew J. Hesford <ajh@sideband.org>"
+license="BSD-3-Clause, MIT"
+homepage="https://scikit-image.org/"
+distfiles="https://github.com/scikit-image/scikit-image/archive/v${version}.tar.gz"
+checksum=54165f1c7365aacbd94df6c89ff72554260c3ea8fd8abdfb596d5d93b25d22ab
+
+post_install() {
+	vlicense LICENSE.txt
+}

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

* Re: [PR PATCH] [Merged]: New package: python3-scikit-image-0.17.2 and dependencies
  2020-07-10 15:51 [PR PATCH] New package: python3-scikit-image-0.17.2 and dependencies ahesford
  2020-07-13  2:56 ` [PR PATCH] [Updated] " ahesford
  2020-07-13  4:34 ` ahesford
@ 2020-07-13  5:13 ` ahesford
  2 siblings, 0 replies; 4+ messages in thread
From: ahesford @ 2020-07-13  5:13 UTC (permalink / raw)
  To: ml

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

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

New package: python3-scikit-image-0.17.2 and dependencies
https://github.com/void-linux/void-packages/pull/23510

Description:


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

end of thread, other threads:[~2020-07-13  5:13 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-10 15:51 [PR PATCH] New package: python3-scikit-image-0.17.2 and dependencies ahesford
2020-07-13  2:56 ` [PR PATCH] [Updated] " ahesford
2020-07-13  4:34 ` ahesford
2020-07-13  5:13 ` [PR PATCH] [Merged]: " ahesford

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).