108 lines
3.4 KiB
Bash
108 lines
3.4 KiB
Bash
#!/usr/bin/bash
|
|
# JOBoRun : Jwm OpenBox Obarun RUNit
|
|
# Maintainer : Joe Bo Run <joborun@disroot.org>
|
|
# PkgSource : url="https://gittea.disroot.org/joborun-pkg/jobcore/$pkgname"
|
|
# Website : https://pozol.eu
|
|
#-----------------------------------------| DESCRIPTION |---------------------------------------
|
|
|
|
pkgbase=gpgme
|
|
#pkgname=(gpgme qgpgme-qt5 qgpgme-qt6 python-gpgme)
|
|
pkgname=(gpgme python-gpgme qgpgme)
|
|
pkgver=1.20.0
|
|
pkgrel=03
|
|
pkgdesc="A C wrapper library for GnuPG"
|
|
#options=('debug') ## uncomment this to have the debug pkg produced
|
|
url='https://www.gnupg.org/related_software/gpgme/'
|
|
makedepends=('gnupg' 'libgpg-error' 'python' 'python-setuptools' 'python-build' 'python-installer' 'python-setuptools' 'python-wheel' 'swig' 'qt5-base')
|
|
source=("https://www.gnupg.org/ftp/gcrypt/${pkgbase}/${pkgbase}-${pkgver}.tar.bz2"{,.sig})
|
|
|
|
# # joborun: it is not supported but Arch is forcing it to support both qt5&6
|
|
# # get the qt pkgs from Arch then because we would rather live without Qt than allow it to penetrate deeper
|
|
# # QT's licensing shouldn't be perceived as free any more, Arch tries to support unsupported qt5 and qt6
|
|
# # Arch note below:
|
|
#prepare() {
|
|
## Building qt5 and qt6 bindings in the same source tree is not supported
|
|
# cp -r ${pkgbase}-${pkgver}{,-qt6}
|
|
#}
|
|
|
|
build() {
|
|
cd ${pkgbase}-${pkgver}
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--disable-fd-passing \
|
|
--disable-static \
|
|
--disable-gpgsm-test
|
|
make
|
|
|
|
(
|
|
# use a PEP517 workflow to get a reproducible Python package
|
|
# NOTE: top_builddir is required so that the build takes place against local gpgme, not system gpgme
|
|
cd lang/python/
|
|
top_builddir="$srcdir/$pkgbase-$pkgver" python -m build --wheel --no-isolation
|
|
)
|
|
|
|
}
|
|
|
|
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')
|
|
provides=('qgpgme-qt5')
|
|
conflicts=('qgpgme-qt5')
|
|
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
|
|
python -m installer --destdir="$pkgdir" dist/*.whl
|
|
}
|
|
|
|
#---- arch license gpg-key & sha256sums ----
|
|
|
|
arch=(x86_64)
|
|
|
|
license=('LGPL')
|
|
|
|
validpgpkeys=('6DAA6E64A76D2840571B4902528897B826403ADA' # Werner Koch (dist signing 2020)
|
|
'AC8E115BF73E2D8D47FA9908E98E9B2D19C6C8BD') # Niibe Yutaka (GnuPG Release Key)
|
|
|
|
sha256sums=(25a5785a5da356689001440926b94e967d02e13c49eb7743e35ef0cf22e42750 # gpgme-1.20.0.tar.bz2
|
|
f32a7e1c6c132ca06dde763b243ab0f4055fb360ced1761829c7dc8b38528db6) # gpgme-1.20.0.tar.bz2.sig
|
|
|
|
## 8e42d5e48d46fa5b421ac2a8c62c75c074a1eb92798a4ee1c50572eff77af393 gpgme-1.20.0-03-x86_64.pkg.tar.lz
|
|
## baebbe004fa495fea3ebea586af85d4509d3c782da4ddced5233888c1dc4fda0 python-gpgme-1.20.0-03-x86_64.pkg.tar.lz
|
|
## 3e68c606a394b039971d04e2d3474100b51dd6aec6d84704c29d31d35764deb9 qgpgme-1.20.0-03-x86_64.pkg.tar.lz
|
|
|