mirror of
https://github.com/bertptrs/aur.git
synced 2025-12-27 13:30:31 +01:00
Bump to 2.0.11, add numpy as dependency
This commit is contained in:
28
.SRCINFO
28
.SRCINFO
@@ -1,17 +1,31 @@
|
|||||||
pkgbase = python-plotly
|
pkgbase = python-plotly
|
||||||
pkgdesc = An interactive, browser-based charting library for python
|
pkgver = 2.0.11
|
||||||
pkgver = 2.0.7
|
|
||||||
pkgrel = 1
|
pkgrel = 1
|
||||||
url = https://plot.ly/python/
|
url = https://plot.ly/python/
|
||||||
arch = any
|
arch = any
|
||||||
license = MIT
|
license = MIT
|
||||||
makedepends = git
|
|
||||||
makedepends = python
|
makedepends = python
|
||||||
makedepends = python-setuptools
|
makedepends = python-setuptools
|
||||||
depends = python-requests
|
makedepends = python2
|
||||||
depends = python-pytz
|
makedepends = python2-setuptools
|
||||||
source = https://pypi.python.org/packages/8c/4a/9e42d13f74a2c7872ba6e7a868b152bd815c01038144570ec729ff13c065/plotly-2.0.7.tar.gz
|
source = python-plotly-2.0.11.tar.gz::https://pypi.org/packages/source/p/plotly/plotly-2.0.11.tar.gz
|
||||||
md5sums = SKIP
|
source = LICENSE
|
||||||
|
sha512sums = 6fd89d962fc73d365b189788132c2a6fe7fc35454fb1086a659a87ec5acc3778adcec0025b0c5c864627365a5aee334c8f0c65ca746ca5705375d7a84b980d91
|
||||||
|
sha512sums = 1f27d546f594955e443a3d8a72aa4f18afa9d946336a9fd0585de3c8120e3ef262ce109eea0ee8d97510616864b8d01f8e4d48ebc0fc1486fd490bf8ba3a7f89
|
||||||
|
|
||||||
pkgname = python-plotly
|
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
|
||||||
|
|
||||||
|
|||||||
10
PKGBUILD
10
PKGBUILD
@@ -6,7 +6,7 @@ _pkgname=python-plotly
|
|||||||
_pypiname=plotly
|
_pypiname=plotly
|
||||||
pkgbase=python-plotly
|
pkgbase=python-plotly
|
||||||
pkgname=('python-plotly' 'python2-plotly')
|
pkgname=('python-plotly' 'python2-plotly')
|
||||||
pkgver=2.0.9
|
pkgver=2.0.11
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
url="https://plot.ly/python/"
|
url="https://plot.ly/python/"
|
||||||
license=('MIT')
|
license=('MIT')
|
||||||
@@ -14,7 +14,7 @@ arch=("any")
|
|||||||
makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools')
|
makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools')
|
||||||
source=("${_pkgname}-${pkgver}.tar.gz::https://pypi.org/packages/source/p/${_pypiname}/${_pypiname}-${pkgver}.tar.gz"
|
source=("${_pkgname}-${pkgver}.tar.gz::https://pypi.org/packages/source/p/${_pypiname}/${_pypiname}-${pkgver}.tar.gz"
|
||||||
"LICENSE")
|
"LICENSE")
|
||||||
sha512sums=('0353091e204cbd42b2f425a739d58b8c35087045ceced229b594178706695009588f7a92a62f83583db2a5629570d9823dc9ff4687e270e790dcedaacf6a8556'
|
sha512sums=('6fd89d962fc73d365b189788132c2a6fe7fc35454fb1086a659a87ec5acc3778adcec0025b0c5c864627365a5aee334c8f0c65ca746ca5705375d7a84b980d91'
|
||||||
'1f27d546f594955e443a3d8a72aa4f18afa9d946336a9fd0585de3c8120e3ef262ce109eea0ee8d97510616864b8d01f8e4d48ebc0fc1486fd490bf8ba3a7f89')
|
'1f27d546f594955e443a3d8a72aa4f18afa9d946336a9fd0585de3c8120e3ef262ce109eea0ee8d97510616864b8d01f8e4d48ebc0fc1486fd490bf8ba3a7f89')
|
||||||
#validpgpkeys=('') # TODO https://github.com/plotly/plotly.py/issues/764
|
#validpgpkeys=('') # TODO https://github.com/plotly/plotly.py/issues/764
|
||||||
|
|
||||||
@@ -25,7 +25,8 @@ prepare() {
|
|||||||
|
|
||||||
package_python-plotly() {
|
package_python-plotly() {
|
||||||
pkgdesc="An interactive, browser-based graphing library for Python3"
|
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}"
|
cd "${srcdir}/${_pypiname}-${pkgver}"
|
||||||
python setup.py install --root="${pkgdir}" --optimize=1
|
python setup.py install --root="${pkgdir}" --optimize=1
|
||||||
@@ -35,7 +36,8 @@ package_python-plotly() {
|
|||||||
|
|
||||||
package_python2-plotly() {
|
package_python2-plotly() {
|
||||||
pkgdesc="An interactive, browser-based graphing library for Python2"
|
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}"
|
cd "${srcdir}/python2-${_pypiname}-${pkgver}"
|
||||||
python2 setup.py install --root="${pkgdir}" --optimize=1
|
python2 setup.py install --root="${pkgdir}" --optimize=1
|
||||||
|
|||||||
Reference in New Issue
Block a user