summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Gamble2021-01-03 12:22:20 +1100
committerMatthew Gamble2021-01-03 12:22:20 +1100
commitadc9e80f1ea14d5b84f0f835a22f0fb251351bea (patch)
treeed8fa28feccda36c42979f9e449a9ea9a25d4352
parenta5213b121d8e12d516263a4bafa3960a3f3fc437 (diff)
downloadaur-adc9e80f1ea14d5b84f0f835a22f0fb251351bea.tar.gz
Bump pkgrel for python3.9 rebuild
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD7
2 files changed, 5 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 560c30298932..ab09a9f8613a 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = python-verboselogs
pkgdesc = Verbose logging level for Python's logging module
pkgver = 1.7
- pkgrel = 3
+ pkgrel = 4
url = https://github.com/xolox/python-verboselogs
arch = any
license = MIT
diff --git a/PKGBUILD b/PKGBUILD
index 4a03b16a4b9a..9484190576f6 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,9 @@
# Maintainer: Maikel Wever <maikelwever@gmail.com>
+# Co-Maintainer: Matthew Gamble <git@matthewgamble.net>
+
pkgname=python-verboselogs
pkgver=1.7
-pkgrel=3
+pkgrel=4
pkgdesc="Verbose logging level for Python's logging module"
url="https://github.com/xolox/python-verboselogs"
license=('MIT')
@@ -14,8 +16,7 @@ arch=('any')
package() {
cd "$srcdir/$pkgname-$pkgver"
python setup.py install --root="$pkgdir/" --optimize=1
- mkdir -p ${pkgdir}/usr/share/licenses/${pkgname}
- cp LICENSE.txt ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.txt
+ install -Dm644 LICENSE.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.txt"
}
# vim:set ts=2 sw=2 et: