summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Bermond2018-10-17 21:17:08 +0000
committerDaniel Bermond2018-10-17 21:17:08 +0000
commit1535c8785194ae7579d47e872c3c9001605be5d3 (patch)
treedee96763f408886d4badd3c1c19a1ad9f0a74318
parenteaea04dc6d7df246992999d833408dfe8ea3e655 (diff)
downloadaur-1535c8785194ae7579d47e872c3c9001605be5d3.tar.gz
Remove makepkg internal function. Cosmetic changes.
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD10
2 files changed, 6 insertions, 8 deletions
diff --git a/.SRCINFO b/.SRCINFO
index e79feab60594..79ef0d87a7e9 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,8 +1,6 @@
-# Generated by mksrcinfo v8
-# Tue May 2 02:09:53 UTC 2017
pkgbase = python-ninja-syntax
pkgver = 1.7.2
- pkgrel = 1
+ pkgrel = 2
url = https://pypi.python.org/pypi/ninja_syntax/
arch = any
license = APACHE
diff --git a/PKGBUILD b/PKGBUILD
index 594883c86ba2..541fa0784cac 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,10 +3,10 @@
pkgbase=python-ninja-syntax
pkgname=('python-ninja-syntax' 'python2-ninja-syntax')
pkgver=1.7.2
-pkgrel=1
-_commondesc="module for generating .ninja files"
+pkgrel=2
+_commondesc='module for generating .ninja files'
arch=('any')
-url="https://pypi.python.org/pypi/ninja_syntax/"
+url='https://pypi.python.org/pypi/ninja_syntax/'
license=('APACHE')
makedepends=('python-setuptools' 'python2-setuptools')
source=("https://pypi.python.org/packages/4b/c3/303da27e7d72aeae5d1879d592048fcd5e8c0c333505b76dda136ab342c0/ninja_syntax-${pkgver}.tar.gz")
@@ -17,11 +17,11 @@ prepare() {
}
build() {
- msg2 "Building for Python3..."
+ printf '%s\n' ' -> Building for Python3...'
cd "ninja_syntax-${pkgver}"
python setup.py build
- msg2 "Building for Python2..."
+ printf '%s\n' ' -> Building for Python2...'
cd "${srcdir}/ninja_syntax-${pkgver}-py2"
python2 setup.py build
}