You are not logged in.

#1 2016-05-02 03:25:24

AtheistSpacePony
Banned
Registered: 2016-04-30
Posts: 26
Website

Unknown Public Key... trying to install steam-native[AUR]

I'm installing steam-native from the AUR... well... trying to... and now I'm trying to compile gnutls. It claims some of the keys can't be verified. I tried telling it to skip the keys... as you can see:

==> Retrieving sources...
  -> Found gnutls-3.3.22.tar.xz
  -> Found gnutls-3.3.22.tar.xz.sig
  -> Found fix-ocsp-test.patch
==> Validating source files with sha256sums...
    gnutls-3.3.22.tar.xz ... Skipped
    gnutls-3.3.22.tar.xz.sig ... Skipped
    fix-ocsp-test.patch ... Skipped
==> Verifying source file signatures with gpg...
    gnutls-3.3.22.tar.xz ... FAILED (unknown public key 9D5EAAF69013B842)
==> ERROR: One or more PGP signatures could not be verified!
==> ERROR: Makepkg was unable to build gnutls28.
==> Restart building gnutls28 ? [y/N]
==> ---------------------------------
==> 

...complete failure.

This is the pkgbuild:

# Maintainer: Dan Ziemba <zman0900@gmail.com>
# Contributor: Manuel Hüsers <manuel.huesers@uni-ol.de>
# Contributor: Florian Pritz <bluewind@xinu.at>
# Contributor: Christoph Vigano <mail at cvigano dot de>
# Contributor: Biru Ionut <ionut@archlinux.ro>
# Contributor: Pierre Schmitz <pierre@archlinux.de>
# Contributor: Mikko Seppälä <t-r-a-y@mbnet.fi>

_pkgbasename=gnutls
pkgname=${_pkgbasename}28
pkgver=3.3.22
pkgrel=3
pkgdesc="A library which provides a secure layer over a reliable transport layer (legacy version)"
arch=('i686' 'x86_64')
license=('GPL3' 'LGPL2.1')
url="http://gnutls.org/"
depends=('zlib' 'nettle' 'p11-kit' 'libtasn1' 'libidn')
provides=('libgnutls28')
conflicts=('libgnutls28')
_downloadUrl="ftp://ftp.gnutls.org/gcrypt/gnutls/v3.3/${_pkgbasename}-${pkgver}.tar.xz"
source=("${_downloadUrl}"
        "${_downloadUrl}.sig"
        'fix-ocsp-test.patch'
       )
 sha256sums=('SKIP'
             'SKIP'
             'SKIP')
 validpgpkeys=('SKIP')

prepare() {
    cd "${srcdir}/${_pkgbasename}-${pkgver}"

    patch -p1 -i "${srcdir}/fix-ocsp-test.patch"
}

build() {
  cd "${srcdir}/${_pkgbasename}-${pkgver}"

  # Guile disabled for conflict with 3.4.x package
  # CXX disabled because 3.4.x builds same version libgnutlsxx.so.28.1.0
  # openssl, dane, tpm disabled to match 3.4.x package even when building
  #   outside chroot where those deps are installed
  # local libopts enabled to prevent build issue when autogen is installed
  ./configure --prefix=/usr --libdir=/usr/lib \
    --includedir=/usr/include/gnutls28 \
    --program-suffix=28 \
    --with-zlib \
    --disable-static \
    --disable-guile \
    --with-default-trust-store-pkcs11="pkcs11:model=p11-kit-trust;manufacturer=PKCS%2311%20Kit" \
    --disable-cxx \
    --disable-openssl-compatibility \
    --enable-local-libopts \
    --disable-libdane \
    --without-tpm \
    --disable-valgrind-tests
  make
}

check() {
  cd ${srcdir}/${_pkgbasename}-${pkgver}
  make -k check
}

package() {
  cd "${srcdir}/${_pkgbasename}-${pkgver}"
  make DESTDIR="${pkgdir}" install

  mv "${pkgdir}"/usr/lib/pkgconfig/gnutls{,28}.pc
  rm -rf "${pkgdir}"/usr/{lib/*.so,share/{info,locale}}
}

Is there any way around this? Thanks a bunch.

Last edited by AtheistSpacePony (2016-05-02 03:26:12)


Wew lads... that is all...

Offline

#2 2016-05-02 07:05:06

TheChickenMan
Member
From: United States
Registered: 2015-07-25
Posts: 354

Re: Unknown Public Key... trying to install steam-native[AUR]

gpg --recv-keys 9D5EAAF69013B842

If quantum mechanics hasn't profoundly shocked you, you haven't understood it yet.
Niels Bohr

Offline

#3 2016-05-02 11:11:48

Scimmia
Fellow
Registered: 2012-09-01
Posts: 11,559

Re: Unknown Public Key... trying to install steam-native[AUR]

Offline

Board footer

Powered by FluxBB