From 1297e923a7419c615b3dd984057540ef6edabf2b Mon Sep 17 00:00:00 2001 From: Fernando Cladera Date: Mon, 7 Dec 2015 11:55:43 -0300 Subject: [PATCH 01/41] Initial build --- .SRCINFO | 19 +++++++++++++++++++ .gitignore | 1 + PKGBUILD | 35 +++++++++++++++++++++++++++++++++++ 3 files changed, 55 insertions(+) create mode 100644 .SRCINFO create mode 100644 .gitignore create mode 100644 PKGBUILD diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..567898a --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,19 @@ +# Generated by mksrcinfo v8 +# Mon Dec 7 14:54:40 UTC 2015 +pkgbase = python-plotly + pkgdesc = An interactive, browser-based charting library for python + pkgver = 1.6.12.r715.g20102d6 + pkgrel = 1 + url = https://plot.ly/python/ + arch = i686 + arch = x86_64 + license = MIT + makedepends = git + makedepends = python + depends = python-requests + depends = python-pytz + source = git+https://github.com/plotly/plotly.py.git + md5sums = SKIP + +pkgname = python-plotly + diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1377554 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.swp diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..77f2dd5 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,35 @@ +# Maintainer: fclad + +_pkgname=plotly.py +pkgname=python-plotly +pkgver=1.6.12.r715.g20102d6 +pkgrel=1 +pkgdesc="An interactive, browser-based charting library for python" +arch=('i686' 'x86_64') +url="https://plot.ly/python/" +license=('MIT') +depends=('python-requests' 'python-pytz') +makedepends=('git' 'python') +source=("git+https://github.com/plotly/plotly.py.git") +md5sums=('SKIP') + +pkgver() { + cd "$srcdir/$_pkgname" + git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g' +} + +build() { + cd "$srcdir/$_pkgname" + + #[ -d build ] && rm -rf build + #mkdir build + #cd build + + #python config.py -auto + python setup.py build +} + +package() { + cd "$srcdir/$_pkgname" + python setup.py install --root="${pkgdir}" --prefix=/usr +} From 8dc439693e9b705347fabd3b57bfc2f03dac31f8 Mon Sep 17 00:00:00 2001 From: Fernando Cladera Date: Tue, 19 Apr 2016 11:38:47 -0300 Subject: [PATCH 02/41] Add python-setuptools as build dependency --- PKGBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PKGBUILD b/PKGBUILD index 77f2dd5..6f5ff23 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -9,7 +9,7 @@ arch=('i686' 'x86_64') url="https://plot.ly/python/" license=('MIT') depends=('python-requests' 'python-pytz') -makedepends=('git' 'python') +makedepends=('git' 'python' 'python-setuptools') source=("git+https://github.com/plotly/plotly.py.git") md5sums=('SKIP') From 48fb80d6507f35ee742b9391cb76c9c10a3dc73d Mon Sep 17 00:00:00 2001 From: Fernando Cladera Date: Tue, 19 Apr 2016 11:42:25 -0300 Subject: [PATCH 03/41] Use revision number instead of tags to get the revision --- PKGBUILD | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/PKGBUILD b/PKGBUILD index 6f5ff23..0461870 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ _pkgname=plotly.py pkgname=python-plotly -pkgver=1.6.12.r715.g20102d6 +pkgver=r1780.d88c5d0 pkgrel=1 pkgdesc="An interactive, browser-based charting library for python" arch=('i686' 'x86_64') @@ -14,8 +14,8 @@ source=("git+https://github.com/plotly/plotly.py.git") md5sums=('SKIP') pkgver() { - cd "$srcdir/$_pkgname" - git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g' + cd "$srcdir/$_pkgname" + printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" } build() { From 3dd780d92064bda85abebbbde4af597764078298 Mon Sep 17 00:00:00 2001 From: Fernando Cladera Date: Thu, 21 Apr 2016 16:05:53 -0300 Subject: [PATCH 04/41] Use Pypi instead of git --- .SRCINFO | 10 ++++------ PKGBUILD | 27 ++++++++------------------- 2 files changed, 12 insertions(+), 25 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 567898a..dc20760 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,18 +1,16 @@ -# Generated by mksrcinfo v8 -# Mon Dec 7 14:54:40 UTC 2015 pkgbase = python-plotly pkgdesc = An interactive, browser-based charting library for python - pkgver = 1.6.12.r715.g20102d6 + pkgver = 1.9.9 pkgrel = 1 url = https://plot.ly/python/ - arch = i686 - arch = x86_64 + arch = any license = MIT makedepends = git makedepends = python + makedepends = python-setuptools depends = python-requests depends = python-pytz - source = git+https://github.com/plotly/plotly.py.git + source = https://pypi.python.org/packages/source/p/plotly/plotly-1.9.9.tar.gz md5sums = SKIP pkgname = python-plotly diff --git a/PKGBUILD b/PKGBUILD index 0461870..656bf6a 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,35 +1,24 @@ # Maintainer: fclad -_pkgname=plotly.py +_pkgname=plotly pkgname=python-plotly -pkgver=r1780.d88c5d0 +pkgver=1.9.9 pkgrel=1 pkgdesc="An interactive, browser-based charting library for python" -arch=('i686' 'x86_64') +arch=('any') url="https://plot.ly/python/" license=('MIT') depends=('python-requests' 'python-pytz') makedepends=('git' 'python' 'python-setuptools') -source=("git+https://github.com/plotly/plotly.py.git") +source=('https://pypi.python.org/packages/source/p/'$_pkgname'/'$_pkgname'-'$pkgver'.tar.gz') md5sums=('SKIP') -pkgver() { - cd "$srcdir/$_pkgname" - printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" -} - build() { - cd "$srcdir/$_pkgname" - - #[ -d build ] && rm -rf build - #mkdir build - #cd build - - #python config.py -auto - python setup.py build + cd $srcdir/$_pkgname-$pkgver + python setup.py build } package() { - cd "$srcdir/$_pkgname" - python setup.py install --root="${pkgdir}" --prefix=/usr + cd $srcdir/$_pkgname-$pkgver + python setup.py install --root="$pkgdir" --optimize=1 } From 028deb317e09f85d34f1d863b76a59ee9cb2f51d Mon Sep 17 00:00:00 2001 From: Fernando Cladera Date: Thu, 21 Jul 2016 01:05:16 -0300 Subject: [PATCH 05/41] Version 1.12.4 --- .SRCINFO | 4 ++-- PKGBUILD | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index dc20760..51f22f1 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = python-plotly pkgdesc = An interactive, browser-based charting library for python - pkgver = 1.9.9 + pkgver = 1.12.4 pkgrel = 1 url = https://plot.ly/python/ arch = any @@ -10,7 +10,7 @@ pkgbase = python-plotly makedepends = python-setuptools depends = python-requests depends = python-pytz - source = https://pypi.python.org/packages/source/p/plotly/plotly-1.9.9.tar.gz + source = https://pypi.python.org/packages/02/e0/5b739403c3180298ebe277cbc9f5ee99e546ab24768b1732a2d6b381091b/plotly-1.12.4.tar.gz md5sums = SKIP pkgname = python-plotly diff --git a/PKGBUILD b/PKGBUILD index 656bf6a..44f1aac 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ _pkgname=plotly pkgname=python-plotly -pkgver=1.9.9 +pkgver=1.12.4 pkgrel=1 pkgdesc="An interactive, browser-based charting library for python" arch=('any') @@ -10,7 +10,8 @@ url="https://plot.ly/python/" license=('MIT') depends=('python-requests' 'python-pytz') makedepends=('git' 'python' 'python-setuptools') -source=('https://pypi.python.org/packages/source/p/'$_pkgname'/'$_pkgname'-'$pkgver'.tar.gz') +source=('https://pypi.python.org/packages/02/e0/5b739403c3180298ebe277cbc9f5ee99e546ab24768b1732a2d6b381091b/'$_pkgname'-'$pkgver'.tar.gz') +#source=('https://pypi.python.org/packages/source/p/'$_pkgname'/'$_pkgname'-'$pkgver'.tar.gz') md5sums=('SKIP') build() { From 50305629954d3f03604ddc9c33037efa464d2ff2 Mon Sep 17 00:00:00 2001 From: Fernando Cladera Date: Mon, 5 Sep 2016 10:15:46 -0300 Subject: [PATCH 06/41] Version 1.12.9 --- .SRCINFO | 4 ++-- PKGBUILD | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 51f22f1..541eca6 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = python-plotly pkgdesc = An interactive, browser-based charting library for python - pkgver = 1.12.4 + pkgver = 1.12.9 pkgrel = 1 url = https://plot.ly/python/ arch = any @@ -10,7 +10,7 @@ pkgbase = python-plotly makedepends = python-setuptools depends = python-requests depends = python-pytz - source = https://pypi.python.org/packages/02/e0/5b739403c3180298ebe277cbc9f5ee99e546ab24768b1732a2d6b381091b/plotly-1.12.4.tar.gz + source = https://pypi.python.org/packages/ce/4b/1b7c4bb89b7708d4127b4ebcb2b6e5961c9e1bc3847b4705d57fdc66212f/plotly-1.12.9.tar.gz md5sums = SKIP pkgname = python-plotly diff --git a/PKGBUILD b/PKGBUILD index 44f1aac..897a7ac 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ _pkgname=plotly pkgname=python-plotly -pkgver=1.12.4 +pkgver=1.12.9 pkgrel=1 pkgdesc="An interactive, browser-based charting library for python" arch=('any') @@ -10,7 +10,7 @@ url="https://plot.ly/python/" license=('MIT') depends=('python-requests' 'python-pytz') makedepends=('git' 'python' 'python-setuptools') -source=('https://pypi.python.org/packages/02/e0/5b739403c3180298ebe277cbc9f5ee99e546ab24768b1732a2d6b381091b/'$_pkgname'-'$pkgver'.tar.gz') +source=('https://pypi.python.org/packages/ce/4b/1b7c4bb89b7708d4127b4ebcb2b6e5961c9e1bc3847b4705d57fdc66212f/'$_pkgname'-'$pkgver'.tar.gz') #source=('https://pypi.python.org/packages/source/p/'$_pkgname'/'$_pkgname'-'$pkgver'.tar.gz') md5sums=('SKIP') From f2ea857e95b6ee96ca371735ff3a6ae250b8e10b Mon Sep 17 00:00:00 2001 From: Fernando Cladera Date: Tue, 24 Jan 2017 13:00:54 -0300 Subject: [PATCH 07/41] Version 1.13.0 --- .SRCINFO | 4 ++-- PKGBUILD | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 541eca6..610c2ae 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = python-plotly pkgdesc = An interactive, browser-based charting library for python - pkgver = 1.12.9 + pkgver = 1.13.0 pkgrel = 1 url = https://plot.ly/python/ arch = any @@ -10,7 +10,7 @@ pkgbase = python-plotly makedepends = python-setuptools depends = python-requests depends = python-pytz - source = https://pypi.python.org/packages/ce/4b/1b7c4bb89b7708d4127b4ebcb2b6e5961c9e1bc3847b4705d57fdc66212f/plotly-1.12.9.tar.gz + source = https://pypi.python.org/packages/a6/77/f58428e17a3251a9d245fb5920e7e6af56ae8de8de12fa8431c176fce329/plotly-1.13.0.tar.gz md5sums = SKIP pkgname = python-plotly diff --git a/PKGBUILD b/PKGBUILD index 897a7ac..510f006 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ _pkgname=plotly pkgname=python-plotly -pkgver=1.12.9 +pkgver=1.13.0 pkgrel=1 pkgdesc="An interactive, browser-based charting library for python" arch=('any') @@ -10,7 +10,7 @@ url="https://plot.ly/python/" license=('MIT') depends=('python-requests' 'python-pytz') makedepends=('git' 'python' 'python-setuptools') -source=('https://pypi.python.org/packages/ce/4b/1b7c4bb89b7708d4127b4ebcb2b6e5961c9e1bc3847b4705d57fdc66212f/'$_pkgname'-'$pkgver'.tar.gz') +source=('https://pypi.python.org/packages/a6/77/f58428e17a3251a9d245fb5920e7e6af56ae8de8de12fa8431c176fce329/'$_pkgname'-'$pkgver'.tar.gz') #source=('https://pypi.python.org/packages/source/p/'$_pkgname'/'$_pkgname'-'$pkgver'.tar.gz') md5sums=('SKIP') From 78539e4db3185661051d6bb133a0d45f85fba7fb Mon Sep 17 00:00:00 2001 From: Fernando Cladera Date: Sat, 8 Apr 2017 23:52:58 -0300 Subject: [PATCH 08/41] Version 2.0.7 --- .SRCINFO | 4 ++-- PKGBUILD | 7 +++---- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 610c2ae..ad3ade3 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = python-plotly pkgdesc = An interactive, browser-based charting library for python - pkgver = 1.13.0 + pkgver = 2.0.7 pkgrel = 1 url = https://plot.ly/python/ arch = any @@ -10,7 +10,7 @@ pkgbase = python-plotly makedepends = python-setuptools depends = python-requests depends = python-pytz - source = https://pypi.python.org/packages/a6/77/f58428e17a3251a9d245fb5920e7e6af56ae8de8de12fa8431c176fce329/plotly-1.13.0.tar.gz + source = https://pypi.python.org/packages/8c/4a/9e42d13f74a2c7872ba6e7a868b152bd815c01038144570ec729ff13c065/plotly-2.0.7.tar.gz md5sums = SKIP pkgname = python-plotly diff --git a/PKGBUILD b/PKGBUILD index 510f006..003d6f2 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,8 +1,8 @@ -# Maintainer: fclad +#Maintainer: fclad _pkgname=plotly pkgname=python-plotly -pkgver=1.13.0 +pkgver=2.0.7 pkgrel=1 pkgdesc="An interactive, browser-based charting library for python" arch=('any') @@ -10,8 +10,7 @@ url="https://plot.ly/python/" license=('MIT') depends=('python-requests' 'python-pytz') makedepends=('git' 'python' 'python-setuptools') -source=('https://pypi.python.org/packages/a6/77/f58428e17a3251a9d245fb5920e7e6af56ae8de8de12fa8431c176fce329/'$_pkgname'-'$pkgver'.tar.gz') -#source=('https://pypi.python.org/packages/source/p/'$_pkgname'/'$_pkgname'-'$pkgver'.tar.gz') +source=('https://pypi.python.org/packages/8c/4a/9e42d13f74a2c7872ba6e7a868b152bd815c01038144570ec729ff13c065/'$_pkgname'-'$pkgver'.tar.gz') md5sums=('SKIP') build() { From 0e6131929cbfd96ff5ea4fde6c63bbaef996e405 Mon Sep 17 00:00:00 2001 From: Fernando Cladera Date: Thu, 15 Jun 2017 16:04:52 -0300 Subject: [PATCH 09/41] Updated with NicoHood modifications --- LICENSE | 21 +++++++++++++++++++++ PKGBUILD | 52 ++++++++++++++++++++++++++++++++++++---------------- 2 files changed, 57 insertions(+), 16 deletions(-) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..7c4610a --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2016-2017 Plotly, Inc + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/PKGBUILD b/PKGBUILD index 003d6f2..883d4ee 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,24 +1,44 @@ -#Maintainer: fclad +# Maintainer: NicoHood +# PGP ID: 97312D5EB9D7AE7D0BD4307351DAE9B7C1AE9161 +# Contributor: fclad -_pkgname=plotly -pkgname=python-plotly -pkgver=2.0.7 +_pkgname=python-plotly +_pypiname=plotly +pkgbase=python-plotly +pkgname=('python-plotly' 'python2-plotly') +pkgver=2.0.9 pkgrel=1 -pkgdesc="An interactive, browser-based charting library for python" -arch=('any') url="https://plot.ly/python/" license=('MIT') -depends=('python-requests' 'python-pytz') -makedepends=('git' 'python' 'python-setuptools') -source=('https://pypi.python.org/packages/8c/4a/9e42d13f74a2c7872ba6e7a868b152bd815c01038144570ec729ff13c065/'$_pkgname'-'$pkgver'.tar.gz') -md5sums=('SKIP') +arch=("any") +makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools') +source=("${_pkgname}-${pkgver}.tar.gz::https://pypi.org/packages/source/p/${_pypiname}/${_pypiname}-${pkgver}.tar.gz" + "LICENSE") +sha512sums=('0353091e204cbd42b2f425a739d58b8c35087045ceced229b594178706695009588f7a92a62f83583db2a5629570d9823dc9ff4687e270e790dcedaacf6a8556' + '1f27d546f594955e443a3d8a72aa4f18afa9d946336a9fd0585de3c8120e3ef262ce109eea0ee8d97510616864b8d01f8e4d48ebc0fc1486fd490bf8ba3a7f89') +#validpgpkeys=('') # TODO https://github.com/plotly/plotly.py/issues/764 -build() { - cd $srcdir/$_pkgname-$pkgver - python setup.py build +prepare() { + # Create a copy for the python2 package + cp -r "${_pypiname}-${pkgver}" "python2-${_pypiname}-${pkgver}" } -package() { - cd $srcdir/$_pkgname-$pkgver - python setup.py install --root="$pkgdir" --optimize=1 +package_python-plotly() { + pkgdesc="An interactive, browser-based graphing library for Python3" + depends=('python' 'python-requests' 'python-pytz' 'python-six') + + cd "${srcdir}/${_pypiname}-${pkgver}" + python setup.py install --root="${pkgdir}" --optimize=1 + + install -Dm644 "${srcdir}/LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +} + +package_python2-plotly() { + pkgdesc="An interactive, browser-based graphing library for Python2" + depends=('python2' 'python2-requests' 'python2-pytz' 'python2-six') + + cd "${srcdir}/python2-${_pypiname}-${pkgver}" + python2 setup.py install --root="${pkgdir}" --optimize=1 + + install -Dm644 "${srcdir}/LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" } From e5b1b0da0722577a8e7d59edf75b5061d694581e Mon Sep 17 00:00:00 2001 From: Fernando Cladera Date: Fri, 30 Jun 2017 11:06:38 -0300 Subject: [PATCH 10/41] Bump to 2.0.11, add numpy as dependency --- .SRCINFO | 28 +++++++++++++++++++++------- PKGBUILD | 10 ++++++---- 2 files changed, 27 insertions(+), 11 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index ad3ade3..468d601 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,17 +1,31 @@ pkgbase = python-plotly - pkgdesc = An interactive, browser-based charting library for python - pkgver = 2.0.7 + pkgver = 2.0.11 pkgrel = 1 url = https://plot.ly/python/ arch = any license = MIT - makedepends = git makedepends = python makedepends = python-setuptools - depends = python-requests - depends = python-pytz - source = https://pypi.python.org/packages/8c/4a/9e42d13f74a2c7872ba6e7a868b152bd815c01038144570ec729ff13c065/plotly-2.0.7.tar.gz - md5sums = SKIP + makedepends = python2 + makedepends = python2-setuptools + source = python-plotly-2.0.11.tar.gz::https://pypi.org/packages/source/p/plotly/plotly-2.0.11.tar.gz + source = LICENSE + sha512sums = 6fd89d962fc73d365b189788132c2a6fe7fc35454fb1086a659a87ec5acc3778adcec0025b0c5c864627365a5aee334c8f0c65ca746ca5705375d7a84b980d91 + sha512sums = 1f27d546f594955e443a3d8a72aa4f18afa9d946336a9fd0585de3c8120e3ef262ce109eea0ee8d97510616864b8d01f8e4d48ebc0fc1486fd490bf8ba3a7f89 pkgname = python-plotly + pkgdesc = An interactive, browser-based graphing library for Python3 + depends = python + depends = python-requests + depends = python-pytz + depends = python-six + depends = python-numpy + +pkgname = python2-plotly + pkgdesc = An interactive, browser-based graphing library for Python2 + depends = python2 + depends = python2-requests + depends = python2-pytz + depends = python2-six + depends = python2-numpy diff --git a/PKGBUILD b/PKGBUILD index 883d4ee..d2e7e6d 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -6,7 +6,7 @@ _pkgname=python-plotly _pypiname=plotly pkgbase=python-plotly pkgname=('python-plotly' 'python2-plotly') -pkgver=2.0.9 +pkgver=2.0.11 pkgrel=1 url="https://plot.ly/python/" license=('MIT') @@ -14,7 +14,7 @@ arch=("any") makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools') source=("${_pkgname}-${pkgver}.tar.gz::https://pypi.org/packages/source/p/${_pypiname}/${_pypiname}-${pkgver}.tar.gz" "LICENSE") -sha512sums=('0353091e204cbd42b2f425a739d58b8c35087045ceced229b594178706695009588f7a92a62f83583db2a5629570d9823dc9ff4687e270e790dcedaacf6a8556' +sha512sums=('6fd89d962fc73d365b189788132c2a6fe7fc35454fb1086a659a87ec5acc3778adcec0025b0c5c864627365a5aee334c8f0c65ca746ca5705375d7a84b980d91' '1f27d546f594955e443a3d8a72aa4f18afa9d946336a9fd0585de3c8120e3ef262ce109eea0ee8d97510616864b8d01f8e4d48ebc0fc1486fd490bf8ba3a7f89') #validpgpkeys=('') # TODO https://github.com/plotly/plotly.py/issues/764 @@ -25,7 +25,8 @@ prepare() { package_python-plotly() { pkgdesc="An interactive, browser-based graphing library for Python3" - depends=('python' 'python-requests' 'python-pytz' 'python-six') + depends=('python' 'python-requests' 'python-pytz' 'python-six' + 'python-numpy') cd "${srcdir}/${_pypiname}-${pkgver}" python setup.py install --root="${pkgdir}" --optimize=1 @@ -35,7 +36,8 @@ package_python-plotly() { package_python2-plotly() { pkgdesc="An interactive, browser-based graphing library for Python2" - depends=('python2' 'python2-requests' 'python2-pytz' 'python2-six') + depends=('python2' 'python2-requests' 'python2-pytz' 'python2-six' + 'python2-numpy') cd "${srcdir}/python2-${_pypiname}-${pkgver}" python2 setup.py install --root="${pkgdir}" --optimize=1 From 31896c8298d062d4d85154a15e3e5bb49abda4dc Mon Sep 17 00:00:00 2001 From: NicoHood Date: Wed, 5 Jul 2017 22:36:12 +0200 Subject: [PATCH 11/41] Updated to 2.0.12 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 468d601..80e23b9 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,5 +1,5 @@ pkgbase = python-plotly - pkgver = 2.0.11 + pkgver = 2.0.12 pkgrel = 1 url = https://plot.ly/python/ arch = any @@ -8,9 +8,9 @@ pkgbase = python-plotly makedepends = python-setuptools makedepends = python2 makedepends = python2-setuptools - source = python-plotly-2.0.11.tar.gz::https://pypi.org/packages/source/p/plotly/plotly-2.0.11.tar.gz + source = python-plotly-2.0.12.tar.gz::https://pypi.org/packages/source/p/plotly/plotly-2.0.12.tar.gz source = LICENSE - sha512sums = 6fd89d962fc73d365b189788132c2a6fe7fc35454fb1086a659a87ec5acc3778adcec0025b0c5c864627365a5aee334c8f0c65ca746ca5705375d7a84b980d91 + sha512sums = 0570ba9e329b8f0582451b33c618c48e96404a06e7c6ea5b0b65e56d0e9ba63f744fec8d33de25bfcf429c8f85c01050e7c6943534f725d02f94fce43e8c90a3 sha512sums = 1f27d546f594955e443a3d8a72aa4f18afa9d946336a9fd0585de3c8120e3ef262ce109eea0ee8d97510616864b8d01f8e4d48ebc0fc1486fd490bf8ba3a7f89 pkgname = python-plotly diff --git a/PKGBUILD b/PKGBUILD index d2e7e6d..2c9e3d4 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -6,7 +6,7 @@ _pkgname=python-plotly _pypiname=plotly pkgbase=python-plotly pkgname=('python-plotly' 'python2-plotly') -pkgver=2.0.11 +pkgver=2.0.12 pkgrel=1 url="https://plot.ly/python/" license=('MIT') @@ -14,7 +14,7 @@ arch=("any") makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools') source=("${_pkgname}-${pkgver}.tar.gz::https://pypi.org/packages/source/p/${_pypiname}/${_pypiname}-${pkgver}.tar.gz" "LICENSE") -sha512sums=('6fd89d962fc73d365b189788132c2a6fe7fc35454fb1086a659a87ec5acc3778adcec0025b0c5c864627365a5aee334c8f0c65ca746ca5705375d7a84b980d91' +sha512sums=('0570ba9e329b8f0582451b33c618c48e96404a06e7c6ea5b0b65e56d0e9ba63f744fec8d33de25bfcf429c8f85c01050e7c6943534f725d02f94fce43e8c90a3' '1f27d546f594955e443a3d8a72aa4f18afa9d946336a9fd0585de3c8120e3ef262ce109eea0ee8d97510616864b8d01f8e4d48ebc0fc1486fd490bf8ba3a7f89') #validpgpkeys=('') # TODO https://github.com/plotly/plotly.py/issues/764 From 1cce537c71074c932588427bef7ff884f09cf988 Mon Sep 17 00:00:00 2001 From: NicoHood Date: Sat, 5 Aug 2017 09:39:59 +0200 Subject: [PATCH 12/41] Update 2.0.13 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 80e23b9..aa4889f 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,5 +1,5 @@ pkgbase = python-plotly - pkgver = 2.0.12 + pkgver = 2.0.13 pkgrel = 1 url = https://plot.ly/python/ arch = any @@ -8,9 +8,9 @@ pkgbase = python-plotly makedepends = python-setuptools makedepends = python2 makedepends = python2-setuptools - source = python-plotly-2.0.12.tar.gz::https://pypi.org/packages/source/p/plotly/plotly-2.0.12.tar.gz + source = python-plotly-2.0.13.tar.gz::https://pypi.org/packages/source/p/plotly/plotly-2.0.13.tar.gz source = LICENSE - sha512sums = 0570ba9e329b8f0582451b33c618c48e96404a06e7c6ea5b0b65e56d0e9ba63f744fec8d33de25bfcf429c8f85c01050e7c6943534f725d02f94fce43e8c90a3 + sha512sums = e378a16dab8f4d5aa63429c208d50a39d23f111682097af87034c09785a1d7061da41c667f298ee773dc0519c5121b1676b6153926353381eb1570d5113efc3b sha512sums = 1f27d546f594955e443a3d8a72aa4f18afa9d946336a9fd0585de3c8120e3ef262ce109eea0ee8d97510616864b8d01f8e4d48ebc0fc1486fd490bf8ba3a7f89 pkgname = python-plotly diff --git a/PKGBUILD b/PKGBUILD index 2c9e3d4..2db227f 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -6,7 +6,7 @@ _pkgname=python-plotly _pypiname=plotly pkgbase=python-plotly pkgname=('python-plotly' 'python2-plotly') -pkgver=2.0.12 +pkgver=2.0.13 pkgrel=1 url="https://plot.ly/python/" license=('MIT') @@ -14,7 +14,7 @@ arch=("any") makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools') source=("${_pkgname}-${pkgver}.tar.gz::https://pypi.org/packages/source/p/${_pypiname}/${_pypiname}-${pkgver}.tar.gz" "LICENSE") -sha512sums=('0570ba9e329b8f0582451b33c618c48e96404a06e7c6ea5b0b65e56d0e9ba63f744fec8d33de25bfcf429c8f85c01050e7c6943534f725d02f94fce43e8c90a3' +sha512sums=('e378a16dab8f4d5aa63429c208d50a39d23f111682097af87034c09785a1d7061da41c667f298ee773dc0519c5121b1676b6153926353381eb1570d5113efc3b' '1f27d546f594955e443a3d8a72aa4f18afa9d946336a9fd0585de3c8120e3ef262ce109eea0ee8d97510616864b8d01f8e4d48ebc0fc1486fd490bf8ba3a7f89') #validpgpkeys=('') # TODO https://github.com/plotly/plotly.py/issues/764 From 02286bda57f84c7c0162395ac9359cf554755ab4 Mon Sep 17 00:00:00 2001 From: NicoHood Date: Sat, 25 Nov 2017 19:32:33 +0100 Subject: [PATCH 13/41] Update 2.2.2 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index aa4889f..64287a5 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,5 +1,5 @@ pkgbase = python-plotly - pkgver = 2.0.13 + pkgver = 2.2.2 pkgrel = 1 url = https://plot.ly/python/ arch = any @@ -8,9 +8,9 @@ pkgbase = python-plotly makedepends = python-setuptools makedepends = python2 makedepends = python2-setuptools - source = python-plotly-2.0.13.tar.gz::https://pypi.org/packages/source/p/plotly/plotly-2.0.13.tar.gz + source = python-plotly-2.2.2.tar.gz::https://pypi.org/packages/source/p/plotly/plotly-2.2.2.tar.gz source = LICENSE - sha512sums = e378a16dab8f4d5aa63429c208d50a39d23f111682097af87034c09785a1d7061da41c667f298ee773dc0519c5121b1676b6153926353381eb1570d5113efc3b + sha512sums = 45341a30e0cf5cd00abca6cd3830c4240b52b572233e3eeec6b3f4784468f7db775fdb8a927a3eb60c96efddc143be84a0b9eca244b66e9511319b2e156a21d1 sha512sums = 1f27d546f594955e443a3d8a72aa4f18afa9d946336a9fd0585de3c8120e3ef262ce109eea0ee8d97510616864b8d01f8e4d48ebc0fc1486fd490bf8ba3a7f89 pkgname = python-plotly diff --git a/PKGBUILD b/PKGBUILD index 2db227f..8345192 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -6,7 +6,7 @@ _pkgname=python-plotly _pypiname=plotly pkgbase=python-plotly pkgname=('python-plotly' 'python2-plotly') -pkgver=2.0.13 +pkgver=2.2.2 pkgrel=1 url="https://plot.ly/python/" license=('MIT') @@ -14,7 +14,7 @@ arch=("any") makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools') source=("${_pkgname}-${pkgver}.tar.gz::https://pypi.org/packages/source/p/${_pypiname}/${_pypiname}-${pkgver}.tar.gz" "LICENSE") -sha512sums=('e378a16dab8f4d5aa63429c208d50a39d23f111682097af87034c09785a1d7061da41c667f298ee773dc0519c5121b1676b6153926353381eb1570d5113efc3b' +sha512sums=('45341a30e0cf5cd00abca6cd3830c4240b52b572233e3eeec6b3f4784468f7db775fdb8a927a3eb60c96efddc143be84a0b9eca244b66e9511319b2e156a21d1' '1f27d546f594955e443a3d8a72aa4f18afa9d946336a9fd0585de3c8120e3ef262ce109eea0ee8d97510616864b8d01f8e4d48ebc0fc1486fd490bf8ba3a7f89') #validpgpkeys=('') # TODO https://github.com/plotly/plotly.py/issues/764 From 3b436e592584223562a55014c11e63e194d5dd6a Mon Sep 17 00:00:00 2001 From: Fernando Cladera Date: Sat, 27 Jan 2018 17:53:47 -0500 Subject: [PATCH 14/41] Bump to 2.3.0 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 64287a5..37dd8de 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,5 +1,5 @@ pkgbase = python-plotly - pkgver = 2.2.2 + pkgver = 2.3.0 pkgrel = 1 url = https://plot.ly/python/ arch = any @@ -8,9 +8,9 @@ pkgbase = python-plotly makedepends = python-setuptools makedepends = python2 makedepends = python2-setuptools - source = python-plotly-2.2.2.tar.gz::https://pypi.org/packages/source/p/plotly/plotly-2.2.2.tar.gz + source = python-plotly-2.3.0.tar.gz::https://pypi.org/packages/source/p/plotly/plotly-2.3.0.tar.gz source = LICENSE - sha512sums = 45341a30e0cf5cd00abca6cd3830c4240b52b572233e3eeec6b3f4784468f7db775fdb8a927a3eb60c96efddc143be84a0b9eca244b66e9511319b2e156a21d1 + sha512sums = e1307872e6dde529322120c77b27a530048763433c1ac7e285c7c982ea9167fb7c6d6cffc5c29a1005e03cc2287c2308a3ca74c310b776f06c8a8c3ca66c7f8c sha512sums = 1f27d546f594955e443a3d8a72aa4f18afa9d946336a9fd0585de3c8120e3ef262ce109eea0ee8d97510616864b8d01f8e4d48ebc0fc1486fd490bf8ba3a7f89 pkgname = python-plotly diff --git a/PKGBUILD b/PKGBUILD index 8345192..87d97e3 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -6,7 +6,7 @@ _pkgname=python-plotly _pypiname=plotly pkgbase=python-plotly pkgname=('python-plotly' 'python2-plotly') -pkgver=2.2.2 +pkgver=2.3.0 pkgrel=1 url="https://plot.ly/python/" license=('MIT') @@ -14,7 +14,7 @@ arch=("any") makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools') source=("${_pkgname}-${pkgver}.tar.gz::https://pypi.org/packages/source/p/${_pypiname}/${_pypiname}-${pkgver}.tar.gz" "LICENSE") -sha512sums=('45341a30e0cf5cd00abca6cd3830c4240b52b572233e3eeec6b3f4784468f7db775fdb8a927a3eb60c96efddc143be84a0b9eca244b66e9511319b2e156a21d1' +sha512sums=('e1307872e6dde529322120c77b27a530048763433c1ac7e285c7c982ea9167fb7c6d6cffc5c29a1005e03cc2287c2308a3ca74c310b776f06c8a8c3ca66c7f8c' '1f27d546f594955e443a3d8a72aa4f18afa9d946336a9fd0585de3c8120e3ef262ce109eea0ee8d97510616864b8d01f8e4d48ebc0fc1486fd490bf8ba3a7f89') #validpgpkeys=('') # TODO https://github.com/plotly/plotly.py/issues/764 From dbb0d0e5fce13afc1cdcd411aa99baa64e10d02d Mon Sep 17 00:00:00 2001 From: NicoHood Date: Mon, 2 Jul 2018 18:50:43 +0200 Subject: [PATCH 15/41] update 2.7.0 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 64287a5..0f86bc7 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,5 +1,5 @@ pkgbase = python-plotly - pkgver = 2.2.2 + pkgver = 2.7.0 pkgrel = 1 url = https://plot.ly/python/ arch = any @@ -8,9 +8,9 @@ pkgbase = python-plotly makedepends = python-setuptools makedepends = python2 makedepends = python2-setuptools - source = python-plotly-2.2.2.tar.gz::https://pypi.org/packages/source/p/plotly/plotly-2.2.2.tar.gz + source = python-plotly-2.7.0.tar.gz::https://pypi.org/packages/source/p/plotly/plotly-2.7.0.tar.gz source = LICENSE - sha512sums = 45341a30e0cf5cd00abca6cd3830c4240b52b572233e3eeec6b3f4784468f7db775fdb8a927a3eb60c96efddc143be84a0b9eca244b66e9511319b2e156a21d1 + sha512sums = 208715263a768948a22bb4380853ea20a75dc46cf43d28cd3a5143f7183ab2155cb51d68e88b8188233aafb151cfe9985437ac08abf4e0866ea13794b1963ac6 sha512sums = 1f27d546f594955e443a3d8a72aa4f18afa9d946336a9fd0585de3c8120e3ef262ce109eea0ee8d97510616864b8d01f8e4d48ebc0fc1486fd490bf8ba3a7f89 pkgname = python-plotly diff --git a/PKGBUILD b/PKGBUILD index 8345192..bdc4639 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -6,7 +6,7 @@ _pkgname=python-plotly _pypiname=plotly pkgbase=python-plotly pkgname=('python-plotly' 'python2-plotly') -pkgver=2.2.2 +pkgver=2.7.0 pkgrel=1 url="https://plot.ly/python/" license=('MIT') @@ -14,7 +14,7 @@ arch=("any") makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools') source=("${_pkgname}-${pkgver}.tar.gz::https://pypi.org/packages/source/p/${_pypiname}/${_pypiname}-${pkgver}.tar.gz" "LICENSE") -sha512sums=('45341a30e0cf5cd00abca6cd3830c4240b52b572233e3eeec6b3f4784468f7db775fdb8a927a3eb60c96efddc143be84a0b9eca244b66e9511319b2e156a21d1' +sha512sums=('208715263a768948a22bb4380853ea20a75dc46cf43d28cd3a5143f7183ab2155cb51d68e88b8188233aafb151cfe9985437ac08abf4e0866ea13794b1963ac6' '1f27d546f594955e443a3d8a72aa4f18afa9d946336a9fd0585de3c8120e3ef262ce109eea0ee8d97510616864b8d01f8e4d48ebc0fc1486fd490bf8ba3a7f89') #validpgpkeys=('') # TODO https://github.com/plotly/plotly.py/issues/764 From 3e9be3f8ab65b84950b0d3eec2ba6ab32783f72d Mon Sep 17 00:00:00 2001 From: NicoHood Date: Mon, 1 Oct 2018 17:48:55 +0200 Subject: [PATCH 16/41] Update 3.3.0 --- .SRCINFO | 12 +++++++----- .gitignore | 1 - PKGBUILD | 17 ++++++++--------- 3 files changed, 15 insertions(+), 15 deletions(-) delete mode 100644 .gitignore diff --git a/.SRCINFO b/.SRCINFO index f5797a9..c0a380c 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,5 +1,6 @@ pkgbase = python-plotly - pkgver = 2.7.0 + pkgdesc = An interactive, browser-based graphing library for Python + pkgver = 3.3.0 pkgrel = 1 url = https://plot.ly/python/ arch = any @@ -8,10 +9,8 @@ pkgbase = python-plotly makedepends = python-setuptools makedepends = python2 makedepends = python2-setuptools - source = python-plotly-2.7.0.tar.gz::https://pypi.org/packages/source/p/plotly/plotly-2.7.0.tar.gz - source = LICENSE - sha512sums = 208715263a768948a22bb4380853ea20a75dc46cf43d28cd3a5143f7183ab2155cb51d68e88b8188233aafb151cfe9985437ac08abf4e0866ea13794b1963ac6 - sha512sums = 1f27d546f594955e443a3d8a72aa4f18afa9d946336a9fd0585de3c8120e3ef262ce109eea0ee8d97510616864b8d01f8e4d48ebc0fc1486fd490bf8ba3a7f89 + source = python-plotly-3.3.0.tar.gz::https://pypi.org/packages/source/p/plotly/plotly-3.3.0.tar.gz + sha512sums = 9198673b268ab4e1fec25b46399e3af59e403a3aa0fb9063330d34e0b3179cedc61351f95f791c72cb80b62e4eb3521f8e7a8e03be7fcc5ae9c343a979468084 pkgname = python-plotly pkgdesc = An interactive, browser-based graphing library for Python3 @@ -20,6 +19,7 @@ pkgname = python-plotly depends = python-pytz depends = python-six depends = python-numpy + depends = python-retrying pkgname = python2-plotly pkgdesc = An interactive, browser-based graphing library for Python2 @@ -28,3 +28,5 @@ pkgname = python2-plotly depends = python2-pytz depends = python2-six depends = python2-numpy + depends = python-retrying + diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 1377554..0000000 --- a/.gitignore +++ /dev/null @@ -1 +0,0 @@ -*.swp diff --git a/PKGBUILD b/PKGBUILD index bdc4639..640acd2 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -6,16 +6,15 @@ _pkgname=python-plotly _pypiname=plotly pkgbase=python-plotly pkgname=('python-plotly' 'python2-plotly') -pkgver=2.7.0 +pkgdesc="An interactive, browser-based graphing library for Python" +pkgver=3.3.0 pkgrel=1 url="https://plot.ly/python/" license=('MIT') arch=("any") makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools') -source=("${_pkgname}-${pkgver}.tar.gz::https://pypi.org/packages/source/p/${_pypiname}/${_pypiname}-${pkgver}.tar.gz" - "LICENSE") -sha512sums=('208715263a768948a22bb4380853ea20a75dc46cf43d28cd3a5143f7183ab2155cb51d68e88b8188233aafb151cfe9985437ac08abf4e0866ea13794b1963ac6' - '1f27d546f594955e443a3d8a72aa4f18afa9d946336a9fd0585de3c8120e3ef262ce109eea0ee8d97510616864b8d01f8e4d48ebc0fc1486fd490bf8ba3a7f89') +source=("${_pkgname}-${pkgver}.tar.gz::https://pypi.org/packages/source/p/${_pypiname}/${_pypiname}-${pkgver}.tar.gz") +sha512sums=('9198673b268ab4e1fec25b46399e3af59e403a3aa0fb9063330d34e0b3179cedc61351f95f791c72cb80b62e4eb3521f8e7a8e03be7fcc5ae9c343a979468084') #validpgpkeys=('') # TODO https://github.com/plotly/plotly.py/issues/764 prepare() { @@ -26,21 +25,21 @@ prepare() { package_python-plotly() { pkgdesc="An interactive, browser-based graphing library for Python3" depends=('python' 'python-requests' 'python-pytz' 'python-six' - 'python-numpy') + 'python-numpy' 'python-retrying') cd "${srcdir}/${_pypiname}-${pkgver}" python setup.py install --root="${pkgdir}" --optimize=1 - install -Dm644 "${srcdir}/LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" + install -Dm644 "${srcdir}/${_pypiname}-${pkgver}/LICENSE.txt" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" } package_python2-plotly() { pkgdesc="An interactive, browser-based graphing library for Python2" depends=('python2' 'python2-requests' 'python2-pytz' 'python2-six' - 'python2-numpy') + 'python2-numpy' 'python-retrying') cd "${srcdir}/python2-${_pypiname}-${pkgver}" python2 setup.py install --root="${pkgdir}" --optimize=1 - install -Dm644 "${srcdir}/LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" + install -Dm644 "${srcdir}/python2-${_pypiname}-${pkgver}/LICENSE.txt" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" } From fa8ddef5eaf4ef5f0c8356e6728012f2d476f086 Mon Sep 17 00:00:00 2001 From: NicoHood Date: Wed, 6 Feb 2019 18:18:38 +0100 Subject: [PATCH 17/41] Update 3.6.0 --- .SRCINFO | 13 ++++++++++--- PKGBUILD | 6 +++--- 2 files changed, 13 insertions(+), 6 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index c0a380c..049b2cb 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = python-plotly pkgdesc = An interactive, browser-based graphing library for Python - pkgver = 3.3.0 + pkgver = 3.6.0 pkgrel = 1 url = https://plot.ly/python/ arch = any @@ -9,8 +9,15 @@ pkgbase = python-plotly makedepends = python-setuptools makedepends = python2 makedepends = python2-setuptools - source = python-plotly-3.3.0.tar.gz::https://pypi.org/packages/source/p/plotly/plotly-3.3.0.tar.gz - sha512sums = 9198673b268ab4e1fec25b46399e3af59e403a3aa0fb9063330d34e0b3179cedc61351f95f791c72cb80b62e4eb3521f8e7a8e03be7fcc5ae9c343a979468084 + makedepends = python-numpy + makedepends = python-pytz + makedepends = python-requests + makedepends = python-retrying + makedepends = python2-numpy + makedepends = python2-pytz + makedepends = python2-requests + source = python-plotly-3.6.0.tar.gz::https://pypi.org/packages/source/p/plotly/plotly-3.6.0.tar.gz + sha512sums = 416fb81eac125071ecabaff79948611576c7b7a7a941c50253e100ef61d272b57b26e8bd3fb5d4f82f93513551050c20bad79f26cad240b2916548cd5cca05c4 pkgname = python-plotly pkgdesc = An interactive, browser-based graphing library for Python3 diff --git a/PKGBUILD b/PKGBUILD index 640acd2..1ffe743 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -7,14 +7,14 @@ _pypiname=plotly pkgbase=python-plotly pkgname=('python-plotly' 'python2-plotly') pkgdesc="An interactive, browser-based graphing library for Python" -pkgver=3.3.0 +pkgver=3.6.0 pkgrel=1 url="https://plot.ly/python/" license=('MIT') arch=("any") -makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools') +makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools' 'python-numpy' 'python-pytz' 'python-requests' 'python-retrying' 'python2-numpy' 'python2-pytz' 'python2-requests') source=("${_pkgname}-${pkgver}.tar.gz::https://pypi.org/packages/source/p/${_pypiname}/${_pypiname}-${pkgver}.tar.gz") -sha512sums=('9198673b268ab4e1fec25b46399e3af59e403a3aa0fb9063330d34e0b3179cedc61351f95f791c72cb80b62e4eb3521f8e7a8e03be7fcc5ae9c343a979468084') +sha512sums=('416fb81eac125071ecabaff79948611576c7b7a7a941c50253e100ef61d272b57b26e8bd3fb5d4f82f93513551050c20bad79f26cad240b2916548cd5cca05c4') #validpgpkeys=('') # TODO https://github.com/plotly/plotly.py/issues/764 prepare() { From 95fac21ec738c1e8556c4f80695cb0692f03b85d Mon Sep 17 00:00:00 2001 From: NicoHood Date: Mon, 11 Feb 2019 19:07:16 +0100 Subject: [PATCH 18/41] 3.6.1 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 049b2cb..ca0d01a 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = python-plotly pkgdesc = An interactive, browser-based graphing library for Python - pkgver = 3.6.0 + pkgver = 3.6.1 pkgrel = 1 url = https://plot.ly/python/ arch = any @@ -16,8 +16,8 @@ pkgbase = python-plotly makedepends = python2-numpy makedepends = python2-pytz makedepends = python2-requests - source = python-plotly-3.6.0.tar.gz::https://pypi.org/packages/source/p/plotly/plotly-3.6.0.tar.gz - sha512sums = 416fb81eac125071ecabaff79948611576c7b7a7a941c50253e100ef61d272b57b26e8bd3fb5d4f82f93513551050c20bad79f26cad240b2916548cd5cca05c4 + source = python-plotly-3.6.1.tar.gz::https://pypi.org/packages/source/p/plotly/plotly-3.6.1.tar.gz + sha512sums = 8e81eb1e584ce0cf87e3647642477dde8313b658ff4f9521c86270c8f7f9e526f16ddd8042f50be83a49dec2eeecc0ac5c08713d253bae19dfcd0f226302e9a8 pkgname = python-plotly pkgdesc = An interactive, browser-based graphing library for Python3 diff --git a/PKGBUILD b/PKGBUILD index 1ffe743..90f05ef 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -7,14 +7,14 @@ _pypiname=plotly pkgbase=python-plotly pkgname=('python-plotly' 'python2-plotly') pkgdesc="An interactive, browser-based graphing library for Python" -pkgver=3.6.0 +pkgver=3.6.1 pkgrel=1 url="https://plot.ly/python/" license=('MIT') arch=("any") makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools' 'python-numpy' 'python-pytz' 'python-requests' 'python-retrying' 'python2-numpy' 'python2-pytz' 'python2-requests') source=("${_pkgname}-${pkgver}.tar.gz::https://pypi.org/packages/source/p/${_pypiname}/${_pypiname}-${pkgver}.tar.gz") -sha512sums=('416fb81eac125071ecabaff79948611576c7b7a7a941c50253e100ef61d272b57b26e8bd3fb5d4f82f93513551050c20bad79f26cad240b2916548cd5cca05c4') +sha512sums=('8e81eb1e584ce0cf87e3647642477dde8313b658ff4f9521c86270c8f7f9e526f16ddd8042f50be83a49dec2eeecc0ac5c08713d253bae19dfcd0f226302e9a8') #validpgpkeys=('') # TODO https://github.com/plotly/plotly.py/issues/764 prepare() { From 91f3cdcbb2c2c9013633b1d23a39d4524baa9a9e Mon Sep 17 00:00:00 2001 From: NicoHood Date: Sat, 30 Mar 2019 17:45:44 +0100 Subject: [PATCH 19/41] Update 3.7.1 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index ca0d01a..5ccc143 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = python-plotly pkgdesc = An interactive, browser-based graphing library for Python - pkgver = 3.6.1 + pkgver = 3.7.1 pkgrel = 1 url = https://plot.ly/python/ arch = any @@ -16,8 +16,8 @@ pkgbase = python-plotly makedepends = python2-numpy makedepends = python2-pytz makedepends = python2-requests - source = python-plotly-3.6.1.tar.gz::https://pypi.org/packages/source/p/plotly/plotly-3.6.1.tar.gz - sha512sums = 8e81eb1e584ce0cf87e3647642477dde8313b658ff4f9521c86270c8f7f9e526f16ddd8042f50be83a49dec2eeecc0ac5c08713d253bae19dfcd0f226302e9a8 + source = python-plotly-3.7.1.tar.gz::https://pypi.org/packages/source/p/plotly/plotly-3.7.1.tar.gz + sha512sums = ca9a3b289ee073dd0c3590e3dd7bf5733e0fe3336e8f226f0bc8d114a8bc7ef580677dcef47a3ac33c5b992b9b96ba63eb613c1969d9a46052e4dc23d1272a5f pkgname = python-plotly pkgdesc = An interactive, browser-based graphing library for Python3 diff --git a/PKGBUILD b/PKGBUILD index 90f05ef..63a6e02 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -7,14 +7,14 @@ _pypiname=plotly pkgbase=python-plotly pkgname=('python-plotly' 'python2-plotly') pkgdesc="An interactive, browser-based graphing library for Python" -pkgver=3.6.1 +pkgver=3.7.1 pkgrel=1 url="https://plot.ly/python/" license=('MIT') arch=("any") makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools' 'python-numpy' 'python-pytz' 'python-requests' 'python-retrying' 'python2-numpy' 'python2-pytz' 'python2-requests') source=("${_pkgname}-${pkgver}.tar.gz::https://pypi.org/packages/source/p/${_pypiname}/${_pypiname}-${pkgver}.tar.gz") -sha512sums=('8e81eb1e584ce0cf87e3647642477dde8313b658ff4f9521c86270c8f7f9e526f16ddd8042f50be83a49dec2eeecc0ac5c08713d253bae19dfcd0f226302e9a8') +sha512sums=('ca9a3b289ee073dd0c3590e3dd7bf5733e0fe3336e8f226f0bc8d114a8bc7ef580677dcef47a3ac33c5b992b9b96ba63eb613c1969d9a46052e4dc23d1272a5f') #validpgpkeys=('') # TODO https://github.com/plotly/plotly.py/issues/764 prepare() { From 59e4a28f73c90fcd807f646afed026920cb6bd0c Mon Sep 17 00:00:00 2001 From: NicoHood Date: Wed, 7 Aug 2019 21:40:10 +0200 Subject: [PATCH 20/41] Update 4.1.0 --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 5ccc143..b5e889c 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = python-plotly pkgdesc = An interactive, browser-based graphing library for Python - pkgver = 3.7.1 + pkgver = 4.1.0 pkgrel = 1 url = https://plot.ly/python/ arch = any @@ -16,8 +16,8 @@ pkgbase = python-plotly makedepends = python2-numpy makedepends = python2-pytz makedepends = python2-requests - source = python-plotly-3.7.1.tar.gz::https://pypi.org/packages/source/p/plotly/plotly-3.7.1.tar.gz - sha512sums = ca9a3b289ee073dd0c3590e3dd7bf5733e0fe3336e8f226f0bc8d114a8bc7ef580677dcef47a3ac33c5b992b9b96ba63eb613c1969d9a46052e4dc23d1272a5f + source = python-plotly-4.1.0.tar.gz::https://pypi.org/packages/source/p/plotly/plotly-4.1.0.tar.gz + sha512sums = b7249ce8acc98d642ede4eec3f18cdd251969d8da9a1dba467afed40d84b568ac2f3c8471bb98b386dde82d027c1f9f03cdab6d8271fa85349a428f1a507dde1 pkgname = python-plotly pkgdesc = An interactive, browser-based graphing library for Python3 diff --git a/PKGBUILD b/PKGBUILD index 63a6e02..4de8a52 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -7,14 +7,14 @@ _pypiname=plotly pkgbase=python-plotly pkgname=('python-plotly' 'python2-plotly') pkgdesc="An interactive, browser-based graphing library for Python" -pkgver=3.7.1 +pkgver=4.1.0 pkgrel=1 url="https://plot.ly/python/" license=('MIT') arch=("any") makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools' 'python-numpy' 'python-pytz' 'python-requests' 'python-retrying' 'python2-numpy' 'python2-pytz' 'python2-requests') source=("${_pkgname}-${pkgver}.tar.gz::https://pypi.org/packages/source/p/${_pypiname}/${_pypiname}-${pkgver}.tar.gz") -sha512sums=('ca9a3b289ee073dd0c3590e3dd7bf5733e0fe3336e8f226f0bc8d114a8bc7ef580677dcef47a3ac33c5b992b9b96ba63eb613c1969d9a46052e4dc23d1272a5f') +sha512sums=('b7249ce8acc98d642ede4eec3f18cdd251969d8da9a1dba467afed40d84b568ac2f3c8471bb98b386dde82d027c1f9f03cdab6d8271fa85349a428f1a507dde1') #validpgpkeys=('') # TODO https://github.com/plotly/plotly.py/issues/764 prepare() { From aebf1ed022e8e370c7cb521e0dd380b1ec4190e3 Mon Sep 17 00:00:00 2001 From: Grey Christoforo Date: Sun, 2 Feb 2020 16:23:42 +0000 Subject: [PATCH 21/41] bump version and drop python2 --- .SRCINFO | 43 ++++++++++++------------------------------ .gitignore | 4 ++++ PKGBUILD | 55 ++++++++++++++++++------------------------------------ 3 files changed, 34 insertions(+), 68 deletions(-) create mode 100644 .gitignore diff --git a/.SRCINFO b/.SRCINFO index b5e889c..8b2f146 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,39 +1,20 @@ pkgbase = python-plotly - pkgdesc = An interactive, browser-based graphing library for Python - pkgver = 4.1.0 + pkgdesc = An open-source, interactive graphing library + pkgver = 4.5.0 pkgrel = 1 - url = https://plot.ly/python/ + url = https://github.com/coin3d/pivy arch = any license = MIT - makedepends = python makedepends = python-setuptools - makedepends = python2 - makedepends = python2-setuptools - makedepends = python-numpy - makedepends = python-pytz - makedepends = python-requests - makedepends = python-retrying - makedepends = python2-numpy - makedepends = python2-pytz - makedepends = python2-requests - source = python-plotly-4.1.0.tar.gz::https://pypi.org/packages/source/p/plotly/plotly-4.1.0.tar.gz - sha512sums = b7249ce8acc98d642ede4eec3f18cdd251969d8da9a1dba467afed40d84b568ac2f3c8471bb98b386dde82d027c1f9f03cdab6d8271fa85349a428f1a507dde1 + depends = python + depends = python-matplotlib + depends = python-numpy + depends = python-six + depends = python-retrying + optdepends = ipython + optdepends = python-ipywidgets + source = https://github.com/plotly/plotly.py/archive/v4.5.0.tar.gz + md5sums = 3f02b2337e062b6d367a1476c2300921 pkgname = python-plotly - pkgdesc = An interactive, browser-based graphing library for Python3 - depends = python - depends = python-requests - depends = python-pytz - depends = python-six - depends = python-numpy - depends = python-retrying - -pkgname = python2-plotly - pkgdesc = An interactive, browser-based graphing library for Python2 - depends = python2 - depends = python2-requests - depends = python2-pytz - depends = python2-six - depends = python2-numpy - depends = python-retrying diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..32f0ae1 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +src/ +pkg/ +*.tar.gz +*.tar.xz diff --git a/PKGBUILD b/PKGBUILD index 4de8a52..ce6ed51 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,45 +1,26 @@ -# Maintainer: NicoHood -# PGP ID: 97312D5EB9D7AE7D0BD4307351DAE9B7C1AE9161 -# Contributor: fclad +# Maintainer: Grey Christoforo -_pkgname=python-plotly -_pypiname=plotly -pkgbase=python-plotly -pkgname=('python-plotly' 'python2-plotly') -pkgdesc="An interactive, browser-based graphing library for Python" -pkgver=4.1.0 +pkgname=python-plotly +pkgver=4.5.0 pkgrel=1 -url="https://plot.ly/python/" +pkgdesc="An open-source, interactive graphing library" +url="https://github.com/coin3d/pivy" +depends=('python' 'python-matplotlib' 'python-numpy' 'python-six' 'python-retrying') +optdepends=('ipython' 'python-ipywidgets') +makedepends=('python-setuptools') license=('MIT') -arch=("any") -makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools' 'python-numpy' 'python-pytz' 'python-requests' 'python-retrying' 'python2-numpy' 'python2-pytz' 'python2-requests') -source=("${_pkgname}-${pkgver}.tar.gz::https://pypi.org/packages/source/p/${_pypiname}/${_pypiname}-${pkgver}.tar.gz") -sha512sums=('b7249ce8acc98d642ede4eec3f18cdd251969d8da9a1dba467afed40d84b568ac2f3c8471bb98b386dde82d027c1f9f03cdab6d8271fa85349a428f1a507dde1') -#validpgpkeys=('') # TODO https://github.com/plotly/plotly.py/issues/764 +arch=('any') +source=("https://github.com/plotly/plotly.py/archive/v${pkgver}.tar.gz") +md5sums=('3f02b2337e062b6d367a1476c2300921') -prepare() { - # Create a copy for the python2 package - cp -r "${_pypiname}-${pkgver}" "python2-${_pypiname}-${pkgver}" +build() { + cd plotly.py-${pkgver}/packages/python/plotly + python setup.py build } -package_python-plotly() { - pkgdesc="An interactive, browser-based graphing library for Python3" - depends=('python' 'python-requests' 'python-pytz' 'python-six' - 'python-numpy' 'python-retrying') +package() { + cd plotly.py-${pkgver}/packages/python/plotly + python setup.py install --root="${pkgdir}" --optimize=1 --skip-build - cd "${srcdir}/${_pypiname}-${pkgver}" - python setup.py install --root="${pkgdir}" --optimize=1 - - install -Dm644 "${srcdir}/${_pypiname}-${pkgver}/LICENSE.txt" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" -} - -package_python2-plotly() { - pkgdesc="An interactive, browser-based graphing library for Python2" - depends=('python2' 'python2-requests' 'python2-pytz' 'python2-six' - 'python2-numpy' 'python-retrying') - - cd "${srcdir}/python2-${_pypiname}-${pkgver}" - python2 setup.py install --root="${pkgdir}" --optimize=1 - - install -Dm644 "${srcdir}/python2-${_pypiname}-${pkgver}/LICENSE.txt" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" + install -Dm644 LICENSE.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" } From 22abd8f8e60d265a3cd532fb006848ede5c1d284 Mon Sep 17 00:00:00 2001 From: Grey Christoforo Date: Fri, 21 Feb 2020 19:38:09 +0000 Subject: [PATCH 22/41] bump version --- .SRCINFO | 8 ++++---- PKGBUILD | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 8b2f146..6a8de3f 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,8 +1,8 @@ pkgbase = python-plotly pkgdesc = An open-source, interactive graphing library - pkgver = 4.5.0 + pkgver = 4.5.1 pkgrel = 1 - url = https://github.com/coin3d/pivy + url = https://plot.ly/python/ arch = any license = MIT makedepends = python-setuptools @@ -13,8 +13,8 @@ pkgbase = python-plotly depends = python-retrying optdepends = ipython optdepends = python-ipywidgets - source = https://github.com/plotly/plotly.py/archive/v4.5.0.tar.gz - md5sums = 3f02b2337e062b6d367a1476c2300921 + source = https://github.com/plotly/plotly.py/archive/v4.5.1.tar.gz + md5sums = 4999464c5d264c83bcea4764d7b4d2ba pkgname = python-plotly diff --git a/PKGBUILD b/PKGBUILD index ce6ed51..7f8038b 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,17 +1,17 @@ # Maintainer: Grey Christoforo pkgname=python-plotly -pkgver=4.5.0 +pkgver=4.5.1 pkgrel=1 pkgdesc="An open-source, interactive graphing library" -url="https://github.com/coin3d/pivy" +url="https://plot.ly/python/" depends=('python' 'python-matplotlib' 'python-numpy' 'python-six' 'python-retrying') optdepends=('ipython' 'python-ipywidgets') makedepends=('python-setuptools') license=('MIT') arch=('any') source=("https://github.com/plotly/plotly.py/archive/v${pkgver}.tar.gz") -md5sums=('3f02b2337e062b6d367a1476c2300921') +md5sums=('4999464c5d264c83bcea4764d7b4d2ba') build() { cd plotly.py-${pkgver}/packages/python/plotly From 135356267fee26b267fefc547ae4de7e3d67b5a8 Mon Sep 17 00:00:00 2001 From: Grey Christoforo Date: Wed, 4 Mar 2020 12:02:23 +0000 Subject: [PATCH 23/41] bump version --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 6a8de3f..0a7460a 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = python-plotly pkgdesc = An open-source, interactive graphing library - pkgver = 4.5.1 + pkgver = 4.5.2 pkgrel = 1 url = https://plot.ly/python/ arch = any @@ -13,8 +13,8 @@ pkgbase = python-plotly depends = python-retrying optdepends = ipython optdepends = python-ipywidgets - source = https://github.com/plotly/plotly.py/archive/v4.5.1.tar.gz - md5sums = 4999464c5d264c83bcea4764d7b4d2ba + source = https://github.com/plotly/plotly.py/archive/v4.5.2.tar.gz + md5sums = 507097b4f9631878deddab646477fd93 pkgname = python-plotly diff --git a/PKGBUILD b/PKGBUILD index 7f8038b..06a4ad9 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Grey Christoforo pkgname=python-plotly -pkgver=4.5.1 +pkgver=4.5.2 pkgrel=1 pkgdesc="An open-source, interactive graphing library" url="https://plot.ly/python/" @@ -11,7 +11,7 @@ makedepends=('python-setuptools') license=('MIT') arch=('any') source=("https://github.com/plotly/plotly.py/archive/v${pkgver}.tar.gz") -md5sums=('4999464c5d264c83bcea4764d7b4d2ba') +md5sums=('507097b4f9631878deddab646477fd93') build() { cd plotly.py-${pkgver}/packages/python/plotly From 3b07c4ee2529f817b04a7abddee1661873da7d38 Mon Sep 17 00:00:00 2001 From: Grey Christoforo Date: Thu, 12 Mar 2020 11:25:38 +0000 Subject: [PATCH 24/41] bump version --- PKGBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PKGBUILD b/PKGBUILD index 06a4ad9..5e2cdf0 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Grey Christoforo pkgname=python-plotly -pkgver=4.5.2 +pkgver=4.5.4 pkgrel=1 pkgdesc="An open-source, interactive graphing library" url="https://plot.ly/python/" @@ -11,7 +11,7 @@ makedepends=('python-setuptools') license=('MIT') arch=('any') source=("https://github.com/plotly/plotly.py/archive/v${pkgver}.tar.gz") -md5sums=('507097b4f9631878deddab646477fd93') +md5sums=('e33b0a074bd545786dc59e8d893b8c85') build() { cd plotly.py-${pkgver}/packages/python/plotly From d362a8b7c928c8f7750242ad32f25dc9232e9b3f Mon Sep 17 00:00:00 2001 From: Greyson Christoforo Date: Fri, 17 Apr 2020 12:38:36 +0100 Subject: [PATCH 25/41] bump version --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 0a7460a..982de88 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = python-plotly pkgdesc = An open-source, interactive graphing library - pkgver = 4.5.2 + pkgver = 4.6.0 pkgrel = 1 url = https://plot.ly/python/ arch = any @@ -13,8 +13,8 @@ pkgbase = python-plotly depends = python-retrying optdepends = ipython optdepends = python-ipywidgets - source = https://github.com/plotly/plotly.py/archive/v4.5.2.tar.gz - md5sums = 507097b4f9631878deddab646477fd93 + source = https://github.com/plotly/plotly.py/archive/v4.6.0.tar.gz + md5sums = 2da939a7c1d08fb0888c9b3fda135f9f pkgname = python-plotly diff --git a/PKGBUILD b/PKGBUILD index 5e2cdf0..f527e4b 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Grey Christoforo pkgname=python-plotly -pkgver=4.5.4 +pkgver=4.6.0 pkgrel=1 pkgdesc="An open-source, interactive graphing library" url="https://plot.ly/python/" @@ -11,7 +11,7 @@ makedepends=('python-setuptools') license=('MIT') arch=('any') source=("https://github.com/plotly/plotly.py/archive/v${pkgver}.tar.gz") -md5sums=('e33b0a074bd545786dc59e8d893b8c85') +md5sums=('2da939a7c1d08fb0888c9b3fda135f9f') build() { cd plotly.py-${pkgver}/packages/python/plotly From 451746dcf09f0c71917e228f8d55e9bb2756814a Mon Sep 17 00:00:00 2001 From: Greyson Christoforo Date: Sat, 23 May 2020 22:08:08 +0100 Subject: [PATCH 26/41] bump version --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 982de88..3f57334 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = python-plotly pkgdesc = An open-source, interactive graphing library - pkgver = 4.6.0 + pkgver = 4.7.1 pkgrel = 1 url = https://plot.ly/python/ arch = any @@ -13,8 +13,8 @@ pkgbase = python-plotly depends = python-retrying optdepends = ipython optdepends = python-ipywidgets - source = https://github.com/plotly/plotly.py/archive/v4.6.0.tar.gz - md5sums = 2da939a7c1d08fb0888c9b3fda135f9f + source = https://github.com/plotly/plotly.py/archive/v4.7.1.tar.gz + md5sums = 2dfdea10f5b1d2254bb052d8822e5b7d pkgname = python-plotly diff --git a/PKGBUILD b/PKGBUILD index f527e4b..b8fd10f 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Grey Christoforo pkgname=python-plotly -pkgver=4.6.0 +pkgver=4.7.1 pkgrel=1 pkgdesc="An open-source, interactive graphing library" url="https://plot.ly/python/" @@ -11,7 +11,7 @@ makedepends=('python-setuptools') license=('MIT') arch=('any') source=("https://github.com/plotly/plotly.py/archive/v${pkgver}.tar.gz") -md5sums=('2da939a7c1d08fb0888c9b3fda135f9f') +md5sums=('2dfdea10f5b1d2254bb052d8822e5b7d') build() { cd plotly.py-${pkgver}/packages/python/plotly From d5f764d18817216a1e43288c1cb0d6125148c45a Mon Sep 17 00:00:00 2001 From: Greyson Christoforo Date: Fri, 29 May 2020 15:40:43 +0100 Subject: [PATCH 27/41] bump version --- .SRCINFO | 8 ++++---- PKGBUILD | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 3f57334..cdd3690 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,8 +1,8 @@ pkgbase = python-plotly pkgdesc = An open-source, interactive graphing library - pkgver = 4.7.1 + pkgver = 4.8.1 pkgrel = 1 - url = https://plot.ly/python/ + url = https://github.com/plotly/plotly.py arch = any license = MIT makedepends = python-setuptools @@ -13,8 +13,8 @@ pkgbase = python-plotly depends = python-retrying optdepends = ipython optdepends = python-ipywidgets - source = https://github.com/plotly/plotly.py/archive/v4.7.1.tar.gz - md5sums = 2dfdea10f5b1d2254bb052d8822e5b7d + source = https://github.com/plotly/plotly.py/archive/v4.8.1.tar.gz + md5sums = da6296bd75eb5db022e6d92eb5ff27b2 pkgname = python-plotly diff --git a/PKGBUILD b/PKGBUILD index b8fd10f..7f9bbee 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,17 +1,17 @@ # Maintainer: Grey Christoforo pkgname=python-plotly -pkgver=4.7.1 +pkgver=4.8.1 pkgrel=1 pkgdesc="An open-source, interactive graphing library" -url="https://plot.ly/python/" +url="https://github.com/plotly/plotly.py" depends=('python' 'python-matplotlib' 'python-numpy' 'python-six' 'python-retrying') optdepends=('ipython' 'python-ipywidgets') makedepends=('python-setuptools') license=('MIT') arch=('any') source=("https://github.com/plotly/plotly.py/archive/v${pkgver}.tar.gz") -md5sums=('2dfdea10f5b1d2254bb052d8822e5b7d') +md5sums=('da6296bd75eb5db022e6d92eb5ff27b2') build() { cd plotly.py-${pkgver}/packages/python/plotly From 882b1b86255b7d7d722bdba8b437aee195cbcba9 Mon Sep 17 00:00:00 2001 From: Greyson Christoforo Date: Fri, 29 May 2020 16:05:13 +0100 Subject: [PATCH 28/41] change checksum method --- .SRCINFO | 2 +- PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index cdd3690..1a109b4 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -14,7 +14,7 @@ pkgbase = python-plotly optdepends = ipython optdepends = python-ipywidgets source = https://github.com/plotly/plotly.py/archive/v4.8.1.tar.gz - md5sums = da6296bd75eb5db022e6d92eb5ff27b2 + sha256sums = 7f85fa498bb40a373f8eb75933eb47add578f81feea5b3ed2619b5cc6817f145 pkgname = python-plotly diff --git a/PKGBUILD b/PKGBUILD index 7f9bbee..277fa4c 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -11,7 +11,7 @@ makedepends=('python-setuptools') license=('MIT') arch=('any') source=("https://github.com/plotly/plotly.py/archive/v${pkgver}.tar.gz") -md5sums=('da6296bd75eb5db022e6d92eb5ff27b2') +sha256sums=('7f85fa498bb40a373f8eb75933eb47add578f81feea5b3ed2619b5cc6817f145') build() { cd plotly.py-${pkgver}/packages/python/plotly From 3de613f812a457e6e96e6c1821db68181a3c694b Mon Sep 17 00:00:00 2001 From: Greyson Christoforo Date: Fri, 29 May 2020 16:14:17 +0100 Subject: [PATCH 29/41] change checksum method again --- .SRCINFO | 2 +- PKGBUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 1a109b4..c333262 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -14,7 +14,7 @@ pkgbase = python-plotly optdepends = ipython optdepends = python-ipywidgets source = https://github.com/plotly/plotly.py/archive/v4.8.1.tar.gz - sha256sums = 7f85fa498bb40a373f8eb75933eb47add578f81feea5b3ed2619b5cc6817f145 + sha512sums = 55fefb9a2e93b7789139006f9256a2b08f22a8210cdb5df9333dca884c60bcb6f250493776a4cf750a23cffaa6e4731c6eda6f7c27992b666aeedc93ad93c054 pkgname = python-plotly diff --git a/PKGBUILD b/PKGBUILD index 277fa4c..e14a0d2 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -11,7 +11,7 @@ makedepends=('python-setuptools') license=('MIT') arch=('any') source=("https://github.com/plotly/plotly.py/archive/v${pkgver}.tar.gz") -sha256sums=('7f85fa498bb40a373f8eb75933eb47add578f81feea5b3ed2619b5cc6817f145') +sha512sums=('55fefb9a2e93b7789139006f9256a2b08f22a8210cdb5df9333dca884c60bcb6f250493776a4cf750a23cffaa6e4731c6eda6f7c27992b666aeedc93ad93c054') build() { cd plotly.py-${pkgver}/packages/python/plotly From 5d06ecb694eb3f5b5595a064239aab88021199ba Mon Sep 17 00:00:00 2001 From: Grey Christoforo Date: Fri, 31 Jul 2020 17:56:33 +0100 Subject: [PATCH 30/41] bump version --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index c333262..da66422 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = python-plotly pkgdesc = An open-source, interactive graphing library - pkgver = 4.8.1 + pkgver = 4.9.0 pkgrel = 1 url = https://github.com/plotly/plotly.py arch = any @@ -13,8 +13,8 @@ pkgbase = python-plotly depends = python-retrying optdepends = ipython optdepends = python-ipywidgets - source = https://github.com/plotly/plotly.py/archive/v4.8.1.tar.gz - sha512sums = 55fefb9a2e93b7789139006f9256a2b08f22a8210cdb5df9333dca884c60bcb6f250493776a4cf750a23cffaa6e4731c6eda6f7c27992b666aeedc93ad93c054 + source = https://github.com/plotly/plotly.py/archive/v4.9.0.tar.gz + sha512sums = 2e48df60dfbda2bb3978ea574937259f89fcd850800301b88bb42e8d24434e422e783cc1dff88aa04e7021842cc4091ddbbadc0aa53c142b1c586243c057743c pkgname = python-plotly diff --git a/PKGBUILD b/PKGBUILD index e14a0d2..79cdbeb 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Grey Christoforo pkgname=python-plotly -pkgver=4.8.1 +pkgver=4.9.0 pkgrel=1 pkgdesc="An open-source, interactive graphing library" url="https://github.com/plotly/plotly.py" @@ -11,7 +11,7 @@ makedepends=('python-setuptools') license=('MIT') arch=('any') source=("https://github.com/plotly/plotly.py/archive/v${pkgver}.tar.gz") -sha512sums=('55fefb9a2e93b7789139006f9256a2b08f22a8210cdb5df9333dca884c60bcb6f250493776a4cf750a23cffaa6e4731c6eda6f7c27992b666aeedc93ad93c054') +sha512sums=('2e48df60dfbda2bb3978ea574937259f89fcd850800301b88bb42e8d24434e422e783cc1dff88aa04e7021842cc4091ddbbadc0aa53c142b1c586243c057743c') build() { cd plotly.py-${pkgver}/packages/python/plotly From e92c27112016e5c42b198edbd14ae42d387ca4d1 Mon Sep 17 00:00:00 2001 From: Greyson Christoforo Date: Sun, 2 Aug 2020 10:30:45 +0100 Subject: [PATCH 31/41] rename source download --- PKGBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PKGBUILD b/PKGBUILD index 79cdbeb..21571b3 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -10,7 +10,7 @@ optdepends=('ipython' 'python-ipywidgets') makedepends=('python-setuptools') license=('MIT') arch=('any') -source=("https://github.com/plotly/plotly.py/archive/v${pkgver}.tar.gz") +source=("${pkgname}-${pkgver}.tar.gz::https://github.com/plotly/plotly.py/archive/v${pkgver}.tar.gz") sha512sums=('2e48df60dfbda2bb3978ea574937259f89fcd850800301b88bb42e8d24434e422e783cc1dff88aa04e7021842cc4091ddbbadc0aa53c142b1c586243c057743c') build() { From c583a85f03258a818cdb192cee903ab8167c0118 Mon Sep 17 00:00:00 2001 From: Greyson Christoforo Date: Tue, 22 Sep 2020 10:51:42 +0100 Subject: [PATCH 32/41] bump version --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index da66422..341f1e7 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = python-plotly pkgdesc = An open-source, interactive graphing library - pkgver = 4.9.0 + pkgver = 4.10.0 pkgrel = 1 url = https://github.com/plotly/plotly.py arch = any @@ -13,8 +13,8 @@ pkgbase = python-plotly depends = python-retrying optdepends = ipython optdepends = python-ipywidgets - source = https://github.com/plotly/plotly.py/archive/v4.9.0.tar.gz - sha512sums = 2e48df60dfbda2bb3978ea574937259f89fcd850800301b88bb42e8d24434e422e783cc1dff88aa04e7021842cc4091ddbbadc0aa53c142b1c586243c057743c + source = python-plotly-4.10.0.tar.gz::https://github.com/plotly/plotly.py/archive/v4.10.0.tar.gz + sha512sums = 83dcfdb52f54ad45de6600329691215b753298d5015db1c11d7bd3da8b2da528a961a2db542cce7f3d5b71fc54603450b69cecb14aadde55dcf01a066b254d98 pkgname = python-plotly diff --git a/PKGBUILD b/PKGBUILD index 21571b3..9b41923 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Grey Christoforo pkgname=python-plotly -pkgver=4.9.0 +pkgver=4.10.0 pkgrel=1 pkgdesc="An open-source, interactive graphing library" url="https://github.com/plotly/plotly.py" @@ -11,7 +11,7 @@ makedepends=('python-setuptools') license=('MIT') arch=('any') source=("${pkgname}-${pkgver}.tar.gz::https://github.com/plotly/plotly.py/archive/v${pkgver}.tar.gz") -sha512sums=('2e48df60dfbda2bb3978ea574937259f89fcd850800301b88bb42e8d24434e422e783cc1dff88aa04e7021842cc4091ddbbadc0aa53c142b1c586243c057743c') +sha512sums=('83dcfdb52f54ad45de6600329691215b753298d5015db1c11d7bd3da8b2da528a961a2db542cce7f3d5b71fc54603450b69cecb14aadde55dcf01a066b254d98') build() { cd plotly.py-${pkgver}/packages/python/plotly From 7a77ed5e9f97050eba12f3376ecf27cba1cf64ec Mon Sep 17 00:00:00 2001 From: Greyson Christoforo Date: Fri, 9 Oct 2020 17:32:53 +0100 Subject: [PATCH 33/41] bump version --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 341f1e7..4c1b8bf 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = python-plotly pkgdesc = An open-source, interactive graphing library - pkgver = 4.10.0 + pkgver = 4.11.0 pkgrel = 1 url = https://github.com/plotly/plotly.py arch = any @@ -13,8 +13,8 @@ pkgbase = python-plotly depends = python-retrying optdepends = ipython optdepends = python-ipywidgets - source = python-plotly-4.10.0.tar.gz::https://github.com/plotly/plotly.py/archive/v4.10.0.tar.gz - sha512sums = 83dcfdb52f54ad45de6600329691215b753298d5015db1c11d7bd3da8b2da528a961a2db542cce7f3d5b71fc54603450b69cecb14aadde55dcf01a066b254d98 + source = python-plotly-4.11.0.tar.gz::https://github.com/plotly/plotly.py/archive/v4.11.0.tar.gz + sha512sums = 813c619859f76f27437f7b66714934acef4495fc589bfcf1167632a069d41e2c85939901714bde25fba20487b18cc60e94eb83713024e75d36df90f3f8c8624f pkgname = python-plotly diff --git a/PKGBUILD b/PKGBUILD index 9b41923..c454f6c 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Grey Christoforo pkgname=python-plotly -pkgver=4.10.0 +pkgver=4.11.0 pkgrel=1 pkgdesc="An open-source, interactive graphing library" url="https://github.com/plotly/plotly.py" @@ -11,7 +11,7 @@ makedepends=('python-setuptools') license=('MIT') arch=('any') source=("${pkgname}-${pkgver}.tar.gz::https://github.com/plotly/plotly.py/archive/v${pkgver}.tar.gz") -sha512sums=('83dcfdb52f54ad45de6600329691215b753298d5015db1c11d7bd3da8b2da528a961a2db542cce7f3d5b71fc54603450b69cecb14aadde55dcf01a066b254d98') +sha512sums=('813c619859f76f27437f7b66714934acef4495fc589bfcf1167632a069d41e2c85939901714bde25fba20487b18cc60e94eb83713024e75d36df90f3f8c8624f') build() { cd plotly.py-${pkgver}/packages/python/plotly From 1128653be811ea17c0e16b64d9ef78c289cbbc3a Mon Sep 17 00:00:00 2001 From: Grey Christoforo Date: Sun, 1 Nov 2020 21:03:33 +0100 Subject: [PATCH 34/41] bump version --- .SRCINFO | 6 +++--- LICENSE | 21 --------------------- PKGBUILD | 4 ++-- 3 files changed, 5 insertions(+), 26 deletions(-) delete mode 100644 LICENSE diff --git a/.SRCINFO b/.SRCINFO index 4c1b8bf..e7921a5 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = python-plotly pkgdesc = An open-source, interactive graphing library - pkgver = 4.11.0 + pkgver = 4.12.0 pkgrel = 1 url = https://github.com/plotly/plotly.py arch = any @@ -13,8 +13,8 @@ pkgbase = python-plotly depends = python-retrying optdepends = ipython optdepends = python-ipywidgets - source = python-plotly-4.11.0.tar.gz::https://github.com/plotly/plotly.py/archive/v4.11.0.tar.gz - sha512sums = 813c619859f76f27437f7b66714934acef4495fc589bfcf1167632a069d41e2c85939901714bde25fba20487b18cc60e94eb83713024e75d36df90f3f8c8624f + source = python-plotly-4.12.0.tar.gz::https://github.com/plotly/plotly.py/archive/v4.12.0.tar.gz + sha512sums = 403da230da682df93bf9b4aea562a90b743c9ccff492861d0735251f5cdf3f9a21920d652c748a389fbee4861404dd2900c57a2e9c09b4553a23e502e817b380 pkgname = python-plotly diff --git a/LICENSE b/LICENSE deleted file mode 100644 index 7c4610a..0000000 --- a/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -The MIT License (MIT) - -Copyright (c) 2016-2017 Plotly, Inc - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. diff --git a/PKGBUILD b/PKGBUILD index c454f6c..558e9aa 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Grey Christoforo pkgname=python-plotly -pkgver=4.11.0 +pkgver=4.12.0 pkgrel=1 pkgdesc="An open-source, interactive graphing library" url="https://github.com/plotly/plotly.py" @@ -11,7 +11,7 @@ makedepends=('python-setuptools') license=('MIT') arch=('any') source=("${pkgname}-${pkgver}.tar.gz::https://github.com/plotly/plotly.py/archive/v${pkgver}.tar.gz") -sha512sums=('813c619859f76f27437f7b66714934acef4495fc589bfcf1167632a069d41e2c85939901714bde25fba20487b18cc60e94eb83713024e75d36df90f3f8c8624f') +sha512sums=('403da230da682df93bf9b4aea562a90b743c9ccff492861d0735251f5cdf3f9a21920d652c748a389fbee4861404dd2900c57a2e9c09b4553a23e502e817b380') build() { cd plotly.py-${pkgver}/packages/python/plotly From d967a8775eaea95fddfd902d31d58f9ff3fe365f Mon Sep 17 00:00:00 2001 From: Greyson Christoforo Date: Fri, 27 Nov 2020 11:13:21 +0000 Subject: [PATCH 35/41] bump version --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index e7921a5..801c968 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = python-plotly pkgdesc = An open-source, interactive graphing library - pkgver = 4.12.0 + pkgver = 4.13.0 pkgrel = 1 url = https://github.com/plotly/plotly.py arch = any @@ -13,8 +13,8 @@ pkgbase = python-plotly depends = python-retrying optdepends = ipython optdepends = python-ipywidgets - source = python-plotly-4.12.0.tar.gz::https://github.com/plotly/plotly.py/archive/v4.12.0.tar.gz - sha512sums = 403da230da682df93bf9b4aea562a90b743c9ccff492861d0735251f5cdf3f9a21920d652c748a389fbee4861404dd2900c57a2e9c09b4553a23e502e817b380 + source = python-plotly-4.13.0.tar.gz::https://github.com/plotly/plotly.py/archive/v4.13.0.tar.gz + sha512sums = f98660bd14617c49aa175dbd62dacc40e89ce37c96f41db97b84db3882f691cb2f9f91975ca5b6d61c2d7c77557ab46cbfa8f927ceff965e24b9ddd7b23502df pkgname = python-plotly diff --git a/PKGBUILD b/PKGBUILD index 558e9aa..5f39b8f 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Grey Christoforo pkgname=python-plotly -pkgver=4.12.0 +pkgver=4.13.0 pkgrel=1 pkgdesc="An open-source, interactive graphing library" url="https://github.com/plotly/plotly.py" @@ -11,7 +11,7 @@ makedepends=('python-setuptools') license=('MIT') arch=('any') source=("${pkgname}-${pkgver}.tar.gz::https://github.com/plotly/plotly.py/archive/v${pkgver}.tar.gz") -sha512sums=('403da230da682df93bf9b4aea562a90b743c9ccff492861d0735251f5cdf3f9a21920d652c748a389fbee4861404dd2900c57a2e9c09b4553a23e502e817b380') +sha512sums=('f98660bd14617c49aa175dbd62dacc40e89ce37c96f41db97b84db3882f691cb2f9f91975ca5b6d61c2d7c77557ab46cbfa8f927ceff965e24b9ddd7b23502df') build() { cd plotly.py-${pkgver}/packages/python/plotly From 4892312b1878f22980b385b029807d7ad9daeeb0 Mon Sep 17 00:00:00 2001 From: Greyson Christoforo Date: Sun, 13 Dec 2020 13:49:05 +0000 Subject: [PATCH 36/41] bump version --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 801c968..6f24136 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = python-plotly pkgdesc = An open-source, interactive graphing library - pkgver = 4.13.0 + pkgver = 4.14.1 pkgrel = 1 url = https://github.com/plotly/plotly.py arch = any @@ -13,8 +13,8 @@ pkgbase = python-plotly depends = python-retrying optdepends = ipython optdepends = python-ipywidgets - source = python-plotly-4.13.0.tar.gz::https://github.com/plotly/plotly.py/archive/v4.13.0.tar.gz - sha512sums = f98660bd14617c49aa175dbd62dacc40e89ce37c96f41db97b84db3882f691cb2f9f91975ca5b6d61c2d7c77557ab46cbfa8f927ceff965e24b9ddd7b23502df + source = python-plotly-4.14.1.tar.gz::https://github.com/plotly/plotly.py/archive/v4.14.1.tar.gz + sha512sums = 3f1901a081daeef724424aa15787a4237307b11290635a27109668241d8e43897f0342b797a028c97cc8b55096cebc9b20ac4bb59fd29b80e25176d1305a30df pkgname = python-plotly diff --git a/PKGBUILD b/PKGBUILD index 5f39b8f..0296878 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Grey Christoforo pkgname=python-plotly -pkgver=4.13.0 +pkgver=4.14.1 pkgrel=1 pkgdesc="An open-source, interactive graphing library" url="https://github.com/plotly/plotly.py" @@ -11,7 +11,7 @@ makedepends=('python-setuptools') license=('MIT') arch=('any') source=("${pkgname}-${pkgver}.tar.gz::https://github.com/plotly/plotly.py/archive/v${pkgver}.tar.gz") -sha512sums=('f98660bd14617c49aa175dbd62dacc40e89ce37c96f41db97b84db3882f691cb2f9f91975ca5b6d61c2d7c77557ab46cbfa8f927ceff965e24b9ddd7b23502df') +sha512sums=('3f1901a081daeef724424aa15787a4237307b11290635a27109668241d8e43897f0342b797a028c97cc8b55096cebc9b20ac4bb59fd29b80e25176d1305a30df') build() { cd plotly.py-${pkgver}/packages/python/plotly From 128c646f639a070140fdb16f24da5e196fd5531e Mon Sep 17 00:00:00 2001 From: Greyson Christoforo Date: Thu, 18 Mar 2021 11:26:12 +0000 Subject: [PATCH 37/41] bump version --- .SRCINFO | 6 +++--- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 6f24136..0813363 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = python-plotly pkgdesc = An open-source, interactive graphing library - pkgver = 4.14.1 + pkgver = 4.14.3 pkgrel = 1 url = https://github.com/plotly/plotly.py arch = any @@ -13,8 +13,8 @@ pkgbase = python-plotly depends = python-retrying optdepends = ipython optdepends = python-ipywidgets - source = python-plotly-4.14.1.tar.gz::https://github.com/plotly/plotly.py/archive/v4.14.1.tar.gz - sha512sums = 3f1901a081daeef724424aa15787a4237307b11290635a27109668241d8e43897f0342b797a028c97cc8b55096cebc9b20ac4bb59fd29b80e25176d1305a30df + source = python-plotly-4.14.3.tar.gz::https://github.com/plotly/plotly.py/archive/v4.14.3.tar.gz + sha512sums = 8b53a0e15c44d7fdd3bd1968b2c02bdf8816fdeaabd7e636215fc35c60563992de8f34dc0b1901bfd9ae21862b4ff852f0b0bf259d4abbb02cd35c1bf47424dd pkgname = python-plotly diff --git a/PKGBUILD b/PKGBUILD index 0296878..48132ab 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Grey Christoforo pkgname=python-plotly -pkgver=4.14.1 +pkgver=4.14.3 pkgrel=1 pkgdesc="An open-source, interactive graphing library" url="https://github.com/plotly/plotly.py" @@ -11,7 +11,7 @@ makedepends=('python-setuptools') license=('MIT') arch=('any') source=("${pkgname}-${pkgver}.tar.gz::https://github.com/plotly/plotly.py/archive/v${pkgver}.tar.gz") -sha512sums=('3f1901a081daeef724424aa15787a4237307b11290635a27109668241d8e43897f0342b797a028c97cc8b55096cebc9b20ac4bb59fd29b80e25176d1305a30df') +sha512sums=('8b53a0e15c44d7fdd3bd1968b2c02bdf8816fdeaabd7e636215fc35c60563992de8f34dc0b1901bfd9ae21862b4ff852f0b0bf259d4abbb02cd35c1bf47424dd') build() { cd plotly.py-${pkgver}/packages/python/plotly From 04e37446d3755d976ca9a9b6afd7758668957197 Mon Sep 17 00:00:00 2001 From: Greyson Christoforo Date: Sun, 27 Jun 2021 22:13:31 +0100 Subject: [PATCH 38/41] bump version --- .SRCINFO | 7 +++---- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 0813363..7ca3e91 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = python-plotly pkgdesc = An open-source, interactive graphing library - pkgver = 4.14.3 + pkgver = 5.0.0 pkgrel = 1 url = https://github.com/plotly/plotly.py arch = any @@ -13,8 +13,7 @@ pkgbase = python-plotly depends = python-retrying optdepends = ipython optdepends = python-ipywidgets - source = python-plotly-4.14.3.tar.gz::https://github.com/plotly/plotly.py/archive/v4.14.3.tar.gz - sha512sums = 8b53a0e15c44d7fdd3bd1968b2c02bdf8816fdeaabd7e636215fc35c60563992de8f34dc0b1901bfd9ae21862b4ff852f0b0bf259d4abbb02cd35c1bf47424dd + source = python-plotly-5.0.0.tar.gz::https://github.com/plotly/plotly.py/archive/v5.0.0.tar.gz + sha256sums = 0bac50ca5744d465479d0304c608eba1abb5ce5fc0f1b07790cc58ebd42427cd pkgname = python-plotly - diff --git a/PKGBUILD b/PKGBUILD index 48132ab..db31e77 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Grey Christoforo pkgname=python-plotly -pkgver=4.14.3 +pkgver=5.0.0 pkgrel=1 pkgdesc="An open-source, interactive graphing library" url="https://github.com/plotly/plotly.py" @@ -11,7 +11,7 @@ makedepends=('python-setuptools') license=('MIT') arch=('any') source=("${pkgname}-${pkgver}.tar.gz::https://github.com/plotly/plotly.py/archive/v${pkgver}.tar.gz") -sha512sums=('8b53a0e15c44d7fdd3bd1968b2c02bdf8816fdeaabd7e636215fc35c60563992de8f34dc0b1901bfd9ae21862b4ff852f0b0bf259d4abbb02cd35c1bf47424dd') +sha256sums=('0bac50ca5744d465479d0304c608eba1abb5ce5fc0f1b07790cc58ebd42427cd') build() { cd plotly.py-${pkgver}/packages/python/plotly From f7d399e99e9ad41685e17016b0862271579ab70c Mon Sep 17 00:00:00 2001 From: Grey Christoforo Date: Mon, 28 Jun 2021 22:34:38 +0100 Subject: [PATCH 39/41] bump version, add mising dep --- .SRCINFO | 9 +++++---- PKGBUILD | 13 +++++++++---- 2 files changed, 14 insertions(+), 8 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 7ca3e91..6b55930 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,19 +1,20 @@ pkgbase = python-plotly pkgdesc = An open-source, interactive graphing library - pkgver = 5.0.0 + pkgver = 5.1.0 pkgrel = 1 url = https://github.com/plotly/plotly.py - arch = any + arch = x86_64 license = MIT makedepends = python-setuptools depends = python + depends = jupyterlab depends = python-matplotlib depends = python-numpy depends = python-six depends = python-retrying optdepends = ipython optdepends = python-ipywidgets - source = python-plotly-5.0.0.tar.gz::https://github.com/plotly/plotly.py/archive/v5.0.0.tar.gz - sha256sums = 0bac50ca5744d465479d0304c608eba1abb5ce5fc0f1b07790cc58ebd42427cd + source = python-plotly-5.1.0.tar.gz::https://github.com/plotly/plotly.py/archive/v5.1.0.tar.gz + sha256sums = ed17ece01fc462c5e257567241fda1d202e3cac8c27fa44185bd680bb1457f02 pkgname = python-plotly diff --git a/PKGBUILD b/PKGBUILD index db31e77..36818b9 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,17 +1,22 @@ # Maintainer: Grey Christoforo pkgname=python-plotly -pkgver=5.0.0 +pkgver=5.1.0 pkgrel=1 pkgdesc="An open-source, interactive graphing library" url="https://github.com/plotly/plotly.py" -depends=('python' 'python-matplotlib' 'python-numpy' 'python-six' 'python-retrying') +depends=(python +jupyterlab +python-matplotlib +python-numpy +python-six +python-retrying) optdepends=('ipython' 'python-ipywidgets') makedepends=('python-setuptools') license=('MIT') -arch=('any') +arch=('x86_64') source=("${pkgname}-${pkgver}.tar.gz::https://github.com/plotly/plotly.py/archive/v${pkgver}.tar.gz") -sha256sums=('0bac50ca5744d465479d0304c608eba1abb5ce5fc0f1b07790cc58ebd42427cd') +sha256sums=('ed17ece01fc462c5e257567241fda1d202e3cac8c27fa44185bd680bb1457f02') build() { cd plotly.py-${pkgver}/packages/python/plotly From 67caacfd0d5965dfbd441d027d3be5beaea10eff Mon Sep 17 00:00:00 2001 From: Greyson Christoforo Date: Thu, 1 Jul 2021 12:34:03 +0100 Subject: [PATCH 40/41] fix missing makedep --- .SRCINFO | 1 + PKGBUILD | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.SRCINFO b/.SRCINFO index 6b55930..3a64674 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -6,6 +6,7 @@ pkgbase = python-plotly arch = x86_64 license = MIT makedepends = python-setuptools + makedepends = npm depends = python depends = jupyterlab depends = python-matplotlib diff --git a/PKGBUILD b/PKGBUILD index 36818b9..452f246 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -12,7 +12,8 @@ python-numpy python-six python-retrying) optdepends=('ipython' 'python-ipywidgets') -makedepends=('python-setuptools') +makedepends=(python-setuptools +npm) license=('MIT') arch=('x86_64') source=("${pkgname}-${pkgver}.tar.gz::https://github.com/plotly/plotly.py/archive/v${pkgver}.tar.gz") From 24c9bd23ff15c08a662fa4e539ad5d58d2febf4a Mon Sep 17 00:00:00 2001 From: Greyson Christoforo Date: Thu, 15 Jul 2021 13:16:08 +0100 Subject: [PATCH 41/41] add some makedeps --- .SRCINFO | 3 +++ PKGBUILD | 3 +++ 2 files changed, 6 insertions(+) diff --git a/.SRCINFO b/.SRCINFO index 3a64674..f64fc16 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -6,6 +6,9 @@ pkgbase = python-plotly arch = x86_64 license = MIT makedepends = python-setuptools + makedepends = python-jupyter_core + makedepends = python-tornado + makedepends = jupyterlab makedepends = npm depends = python depends = jupyterlab diff --git a/PKGBUILD b/PKGBUILD index 452f246..7aa2482 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -13,6 +13,9 @@ python-six python-retrying) optdepends=('ipython' 'python-ipywidgets') makedepends=(python-setuptools +python-jupyter_core +python-tornado +jupyterlab npm) license=('MIT') arch=('x86_64')