summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Gamble2019-01-05 20:07:09 +1100
committerMatthew Gamble2019-01-05 20:07:09 +1100
commita87ed20e46a6bc6f2b73aa4e093adb9634e89060 (patch)
tree764375a86973a02f2474acf93748811c1b256a55
parent271ba41c52d683f1de873aeda02ede870e9997f3 (diff)
downloadaur-a87ed20e46a6bc6f2b73aa4e093adb9634e89060.tar.gz
Rebuild for python3.7, add license file to package
-rw-r--r--.SRCINFO4
-rw-r--r--.gitignore4
-rw-r--r--PKGBUILD7
3 files changed, 10 insertions, 5 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 83827b6209bf..8d029b94507e 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,9 +1,9 @@
# Generated by mksrcinfo v8
-# Sat Jan 7 02:40:03 UTC 2017
+# Sat Jan 5 09:07:01 UTC 2019
pkgbase = python-wire
pkgdesc = A convenience wrapper around the built-in SQLite3 module in python
pkgver = 1.0.0
- pkgrel = 2
+ pkgrel = 3
url = https://github.com/djmattyg007/python-wire
arch = any
license = GPL3
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000000..3adfa93ba7a6
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,4 @@
+*.zip
+*.pkg.tar.xz
+/pkg/
+/src/
diff --git a/PKGBUILD b/PKGBUILD
index c4d99c1b342e..eee1aadb3773 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=python-wire
pkgver=1.0.0
-pkgrel=2
+pkgrel=3
pkgdesc="A convenience wrapper around the built-in SQLite3 module in python"
arch=("any")
url="https://github.com/djmattyg007/python-wire"
@@ -13,6 +13,7 @@ source=("https://github.com/djmattyg007/python-wire/archive/${pkgver}.zip")
sha256sums=("0aaf5e3c280756fd723bf1b0fd68430da6f228d4b21a7eb9f9b18c33660bf978")
package() {
- cd "python-wire-$pkgver"
- python setup.py install --root="$pkgdir" --optimize=1
+ cd "python-wire-${pkgver}"
+ python setup.py install --root="${pkgdir}" --optimize=1
+ install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/python-wire/LICENSE"
}