[arch-commits] Commit in gpgme/repos (testing-x86_64 testing-x86_64/PKGBUILD)
Christian Hesse
eworm at archlinux.org
Fri Jan 8 19:50:07 UTC 2021
Date: Friday, January 8, 2021 @ 19:50:07
Author: eworm
Revision: 405748
archrelease: copy trunk to testing-x86_64
Added:
gpgme/repos/testing-x86_64/
gpgme/repos/testing-x86_64/PKGBUILD
(from rev 405747, gpgme/trunk/PKGBUILD)
----------+
PKGBUILD | 82 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 82 insertions(+)
Copied: gpgme/repos/testing-x86_64/PKGBUILD (from rev 405747, gpgme/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2021-01-08 19:50:07 UTC (rev 405748)
@@ -0,0 +1,82 @@
+# Maintainer: Tobias Powalowski <tpowa at archlinux.org>
+# Contributor: Roman Kyrylych <roman at archlinux.org>
+# Contributor: Sarah Hay <sarah at archlinux.org>
+
+pkgbase=gpgme
+pkgname=(gpgme qgpgme python-gpgme)
+pkgver=1.15.1
+pkgrel=1
+_python_ver=3.9
+pkgdesc="A C wrapper library for GnuPG"
+arch=('x86_64')
+url='https://www.gnupg.org/related_software/gpgme/'
+license=('LGPL')
+makedepends=('libgpg-error' 'gnupg' 'qt5-base' 'python' 'swig')
+validpgpkeys=('6DAA6E64A76D2840571B4902528897B826403ADA') # Werner Koch (dist signing 2020)
+source=("https://www.gnupg.org/ftp/gcrypt/${pkgbase}/${pkgbase}-${pkgver}.tar.bz2"{,.sig})
+sha256sums=('eebc3c1b27f1c8979896ff361ba9bb4778b508b2496c2fc10e3775a40b1de1ad'
+ 'SKIP')
+
+build() {
+ cd ${pkgbase}-${pkgver}
+
+ export PYTHONHASHSEED=0
+ ./configure \
+ --prefix=/usr \
+ --disable-fd-passing \
+ --disable-static \
+ --disable-gpgsm-test
+ make
+
+ # ensure reproducibility of .pyc files
+ touch -d @$SOURCE_DATE_EPOCH lang/python/version.py
+ touch -d @$SOURCE_DATE_EPOCH lang/python/python${_python_ver}-gpg/lib.linux-x86_64-${_python_ver}/gpg/gpgme.py
+
+ # .pyc files will be created if check() is used - generate them here
+
+}
+
+check() {
+ cd ${pkgbase}-${pkgver}
+
+ # this test fails with gnupg (FS#66572)
+ sed -i 's#"t-keylist-secret",##' tests/json/t-json.c
+
+ make check
+
+ # ensure reproducibilty whether test-suite is run or not
+ find . -name *.pyc -exec rm {} +
+}
+
+package_gpgme() {
+ depends=('libgpg-error' 'gnupg>=2')
+ options=('!emptydirs')
+ provides=('libgpgme.so'
+ 'libgpgmepp.so')
+
+ cd ${pkgbase}-${pkgver}
+
+ make DESTDIR="${pkgdir}" install
+
+ # split qgpgme
+ rm -r "${pkgdir}"/usr/include/{qgpgme,QGpgME}/
+ rm -r "${pkgdir}"/usr/lib/{cmake/QGpgme/,libqgpgme.*}
+ rm -r "${pkgdir}"/usr/lib/python*
+}
+
+package_qgpgme() {
+ pkgdesc="Qt bindings for GPGme"
+ depends=('gpgme' 'qt5-base')
+
+ cd ${pkgbase}-${pkgver}/lang/qt
+
+ make DESTDIR="${pkgdir}" install
+}
+
+package_python-gpgme() {
+ pkgdesc="Python bindings for GPGme"
+ depends=('gpgme' 'python')
+
+ cd ${pkgbase}-${pkgver}/lang/python
+ make DESTDIR="${pkgdir}" install
+}
More information about the arch-commits
mailing list