summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorXavierCLL2017-05-02 11:27:04 -0500
committerXavierCLL2017-05-02 11:27:04 -0500
commit4f8aa399567388f2abeb18ff69c4aa616cea8c22 (patch)
treeea1026e87d9ce33bfd012c39f210161f6c909013
parent55713ef004d8ea9216baabf56a969d91791e4d42 (diff)
downloadaur-4f8aa399567388f2abeb18ff69c4aa616cea8c22.tar.gz
Fixed missing version file
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD3
2 files changed, 3 insertions, 2 deletions
diff --git a/.SRCINFO b/.SRCINFO
index f0ae76132ceb..4a7bf2adf41a 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = python-bcolz
pkgdesc = columnar and compressed data containers.
pkgver = 1.1.1
- pkgrel = 1
+ pkgrel = 2
url = https://bcolz.readthedocs.org/
arch = any
license = BSD
diff --git a/PKGBUILD b/PKGBUILD
index d45c028f16d5..ef879e6794df 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
pkgname=python-bcolz
_pkgname=bcolz
pkgver=1.1.1
-pkgrel=1
+pkgrel=2
pkgdesc="columnar and compressed data containers."
arch=('any')
url="https://bcolz.readthedocs.org/"
@@ -16,6 +16,7 @@ sha256sums=('1d1acbeb25012d82ee3a81e61243ffd9923e43a18e241b376dfd1d28d189d372'
build() {
cd "$srcdir/$_pkgname-$pkgver"
patch -Np1 -i ../fix_version setup.py
+ echo "version='$pkgver'" > bcolz/version.py
python setup.py build
}