blob: 65be00defd4354faf03f5f44b626d70200e1af2e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
# Maintainer: brent s. <bts[at]square-r00t[dot]net>
validpgpkeys=('748231EBCBD808A14F5E85D28C004C2F93481F6B')
# Bug reports can be filed at https://bugs.square-r00t.net/index.php?project=3
# News updates for packages can be followed at https://devblog.square-r00t.net
pkgname=('python-pygpgme-rshk-git' 'python2-pygpgme-rshk-git')
pkgver=r18.6c7566b
pkgrel=4
pkgdesc="A Python interface to the gpgme GnuPG library (rshk fork)"
arch=('x86_64' )
url="https://github.com/rshk/pygpgme"
license=( 'LGPL' )
depends=( 'python' 'python2' 'gpgme' )
makedepends=( 'python' 'python2' 'python-setuptools' 'python2-setuptools' 'gpgme' )
_pkgname=pygpgme
conflicts=( 'python-pygpgme')
provides=( 'python-pygpgme' )
install=
changelog=
noextract=()
source=("git+https://github.com/rshk/pygpgme.git")
# see https://wiki.archlinux.org/index.php/VCS_package_guidelines#Git_Submodules if you require git submodules
sha512sums=('SKIP')
pkgver() {
cd "${srcdir}/${_pkgname}"
# no tags, so number of revisions e.g. r1142.a17a017
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
## most recent annotated tag e.g. 2.0.r6.ga17a017
#git describe --long | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
## most recent un-annotated tag e.g. 0.71.r115.gd95ee07
#git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
## or:
##git describe --long --tags | sed 's/-/.r/;s/-/./'
## project uses tags with prefix. e.g. v...
#git describe --long | sed 's/^foo-//;s/\([^-]*-g\)/r\1/;s/-/./g'
## both with fallback, e.g. 0.9.9.r27.g2b039da with tags, else r1581.2b039da
#( set -o pipefail
# git describe --long 2>/dev/null | sed 's/\([^-]*-g\)/r\1/;s/-/./g' ||
# printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
#)
}
package_python-pygpgme-rshk-git() {
depends=('python' 'gpgme')
cd "${srcdir}/${_pkgname}"
python setup.py install --root="${pkgdir}" --optimize=1
}
package_python2-pygpgme-rshk-git() {
depends=('python2' 'gpgme')
cd "${srcdir}/${_pkgname}"
python2 setup.py install --root="${pkgdir}" --optimize=1
}
|