Skip to content
Permalink
b86c11f5ba
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
@pmenzel
Latest commit c63abd3 Sep 28, 2019 History
The GPG tests fail, because our GPG installation is outdated.

    Making all in gpgsm
    make[2]: Entering directory '/dev/shm/bee-root/gpgme/gpgme-1.13.1-0/build/tests/gpgsm'
    echo disable-crl-checks > ./gpgsm.conf
    echo 32100C27173EF6E9C4E9A25D3D69F86D37A4F939 > ./trustlist.txt
    GNUPGHOME=/dev/shm/bee-root/gpgme/gpgme-1.13.1-0/build/tests/gpgsm LC_ALL=C GPG_AGENT_INFO= top_srcdir=/dev/shm/bee-root/gpgme/gpgme-1.13.1-0/source gpgconf --kill all
    echo faked-system-time 1008241200 >> ./gpgsm.conf
    echo >> ./trustlist.txt
    /bin/sh: gpgconf: command not found
    make[2]: [Makefile:938: gpg-sample.stamp] Error 127 (ignored)
    /bin/mkdir -p ./private-keys-v1.d
    cp /dev/shm/bee-root/gpgme/gpgme-1.13.1-0/source/tests/gpgsm/32100C27173EF6E9C4E9A25D3D69F86D37A4F939 private-keys-v1.d/32100C27173EF6E9C4E9A25D3D69F86D37A4F939.key
    echo x > ./gpg-sample.stamp
    echo "agent-program `which gpg-agent`|--debug-quick-random" >> ./gpgsm.conf
    echo "# CN=test cert 1,OU=Aegypten Project,O=g10 Code GmbH,L=Düsseldorf,C=DE" >> ./trustlist.txt
    GNUPGHOME=/dev/shm/bee-root/gpgme/gpgme-1.13.1-0/build/tests/gpgsm LC_ALL=C GPG_AGENT_INFO= top_srcdir=/dev/shm/bee-root/gpgme/gpgme-1.13.1-0/source gpgsm --import /dev/shm/bee-root/gpgme/gpgme-1.13.1-0/source/tests/gpgsm/cert_g10code_test1.der
    echo "3CF405464F66ED4A7DF45BBDD1E4282E33BDB76E S" >> ./trustlist.txt
    which: no gpg-agent in (/bin:/usr/bin:/usr/sbin:/usr/X11R6/bin:/usr/local/package/bin:/usr/local/bin:/home/pmenzel/bin:/home/pmenzel/.cargo/bin)
    /bin/sh: gpgsm: command not found
    make[2]: *** [Makefile:929: pubring-stamp] Error 127
    make[2]: *** Waiting for unfinished jobs....
    make[2]: Leaving directory '/dev/shm/bee-root/gpgme/gpgme-1.13.1-0/build/tests/gpgsm'
    make[1]: *** [Makefile:720: all-recursive] Error 1
    make[1]: Leaving directory '/dev/shm/bee-root/gpgme/gpgme-1.13.1-0/build/tests'
    make: *** [Makefile:534: all-recursive] Error 1
    Command exited with non-zero status 2

http://www.linuxfromscratch.org/blfs/view/svn/postlfs/gpgme.html

> --disable-gpg-test: if this parameter is not passed to configure, the test programs are built during make stage, which requires GnuPG-2.2.17. This parameter is not needed if GnuPG-2.2.17 is installed.
1 contributor

Users who have contributed to this file

executable file 36 lines (25 sloc) 458 Bytes
#!/usr/bin/env beesh
# BEE_VERSION gpgme-1.13.1-0
SRCURL[0]="https://www.gnupg.org/ftp/gcrypt/gpgme/gpgme-${PKGVERSION}.tar.bz2"
# PATCHURL+=()
# build_in_sourcedir
# sourcesubdir_append src
#mee_extract() {
# bee_extract "${@}"
#}
#mee_patch() {
# bee_patch "${@}"
#}
mee_configure() {
bee_configure \
--disable-gpg-test
}
#mee_build() {
# bee_build
#}
#mee_install() {
# bee_install
#}
#mee_install_post() {
# exit
#}