wok-next diff gpgme/receipt @ rev 21383
updated nbd again (3.3 -> 3.20)
author | Hans-G?nter Theisgen |
---|---|
date | Thu Apr 16 17:34:38 2020 +0100 (2020-04-16) |
parents | d5aab818505e |
children | 5befc219d484 |
line diff
1.1 --- a/gpgme/receipt Fri Nov 02 14:15:08 2018 +0200 1.2 +++ b/gpgme/receipt Thu Apr 16 17:34:38 2020 +0100 1.3 @@ -1,7 +1,7 @@ 1.4 # SliTaz package receipt v2. 1.5 1.6 PACKAGE="gpgme" 1.7 -VERSION="1.11.1" 1.8 +VERSION="1.12.0" 1.9 CATEGORY="security" 1.10 SHORT_DESC="Support for cryptography" 1.11 MAINTAINER="devel@slitaz.org" 1.12 @@ -11,12 +11,25 @@ 1.13 1.14 TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.15 WGET_URL="https://www.gnupg.org/ftp/gcrypt/gpgme/$TARBALL" 1.16 -# Integrity check: https://www.gnupg.org/download/integrity_check.html 1.17 -TARBALL_SHA1="95b1fc427871ca8d30d6d3b1985c816fe0b5077b" 1.18 +TARBALL_SHA1="6f1828fcd7de4366ca063e57f35e4ab24bc91baf" 1.19 +# Integrity check: https://www.gnupg.org/download/integrity_check.html 1.20 + 1.21 +COOKOPTS="force-arch" # architecture in gpgme-dev file /usr/bin/gpgme-config 1.22 1.23 BUILD_DEPENDS="libgpg-error-dev libassuan-dev gnupg swig python-dev" 1.24 SPLIT="python-gpgme $PACKAGE-lisp $PACKAGE $PACKAGE-dev" 1.25 1.26 +COPY_python_gpgme="python2.7/" 1.27 +COPY_lisp="common-lisp/" 1.28 + 1.29 +CAT_python_gpgme="security|Python bindings" 1.30 +CAT_lisp="security|Common Lisp bindings" 1.31 + 1.32 +DEPENDS_python_gpgme="$PACKAGE python" 1.33 +DEPENDS_lisp="$PACKAGE" 1.34 +DEPENDS_std="libassuan libgpg-error gnupg" 1.35 +DEPENDS_dev="$PACKAGE libgpg-error-dev" 1.36 + 1.37 compile_rules() { 1.38 ./configure \ 1.39 --enable-languages=cl,python \ 1.40 @@ -25,27 +38,3 @@ 1.41 make && 1.42 make install 1.43 } 1.44 - 1.45 -genpkg_rules() { 1.46 - case $PACKAGE in 1.47 - python-gpgme) 1.48 - copy python2.7/ 1.49 - DEPENDS="gpgme python" 1.50 - CAT="security|Python bindings" 1.51 - ;; 1.52 - gpgme-lisp) 1.53 - copy common-lisp/ 1.54 - DEPENDS="gpgme" 1.55 - CAT="security|Common Lisp bindings" 1.56 - ;; 1.57 - gpgme) 1.58 - copy @std @rm 1.59 - rm -r $fs/usr/lib/python2.7/ # empty dirs 1.60 - DEPENDS="libassuan libgpg-error gnupg" 1.61 - ;; 1.62 - *-dev) 1.63 - copy @dev 1.64 - DEPENDS="gpgme libgpg-error-dev" 1.65 - ;; 1.66 - esac 1.67 -}