Date: Friday, October 8, 2021 @ 16:12:52 Author: grazzolini Revision: 1028034
archrelease: copy trunk to community-x86_64 Added: libressl/repos/community-x86_64/PKGBUILD (from rev 1028033, libressl/trunk/PKGBUILD) Deleted: libressl/repos/community-x86_64/PKGBUILD ----------+ PKGBUILD | 112 ++++++++++++++++++++++++++++++------------------------------- 1 file changed, 56 insertions(+), 56 deletions(-) Deleted: PKGBUILD =================================================================== --- PKGBUILD 2021-10-08 16:12:14 UTC (rev 1028033) +++ PKGBUILD 2021-10-08 16:12:52 UTC (rev 1028034) @@ -1,56 +0,0 @@ -# Maintainer: Levente Polyak <anthr...@archlinux.org> -# Maintainer: Bruno Pagani <archa...@archlinux.org> -# Contributor: Maarten de Vries <maar...@de-vri.es> -# Contributor: Reventlov <cont...@volcanis.me> -# Contributor: kpcyrd <g...@rxv.cc> - -pkgname=libressl -pkgver=3.3.4 -pkgrel=1 -pkgdesc="Free version of the TLS/crypto stack forked from OpenSSL" -arch=(x86_64) -url="https://www.libressl.org/" -license=(ISC custom:OpenSSL) -depends=(glibc) -optdepends=(ca-certificates) -backup=(etc/libressl/openssl.cnf) -source=(https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-${pkgver}.tar.gz{,.asc}) -sha256sums=('bcce767a3fed252bfd1210f8a7e3505a2b54d3008f66e43d9b95e3f30c072931' - 'SKIP') -validpgpkeys=(A1EB079B8D3EB92B4EBD3139663AF51BD5E4D8D5) # Brent Cook <bc...@openbsd.org> - -prepare() { - cd ${pkgname}-${pkgver} - autoreconf -vfi -} - -build() { - cd ${pkgname}-${pkgver} - ./configure \ - --prefix=/usr \ - --with-openssldir=/etc/libressl \ - --libdir=/usr/lib/libressl \ - --includedir=/usr/include/libressl \ - --program-prefix "libressl-" - sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool - make -} - -check() { - cd ${pkgname}-${pkgver} - make check -} - -package() { - cd ${pkgname}-${pkgver} - make DESTDIR="${pkgdir}" install - install -Dm644 COPYING -t "${pkgdir}"/usr/share/licenses/${pkgname}/ - - # Remove symlink man pages, that actually points to OpenSSL ones since the prefix is not accounted for - for manlink in $(find -L "${pkgdir}"/usr/share/man/man3/ -type l) ; - do - rm "${manlink}" ; - done -} - -# vim: ts=4 sw=4 et: Copied: libressl/repos/community-x86_64/PKGBUILD (from rev 1028033, libressl/trunk/PKGBUILD) =================================================================== --- PKGBUILD (rev 0) +++ PKGBUILD 2021-10-08 16:12:52 UTC (rev 1028034) @@ -0,0 +1,56 @@ +# Maintainer: Levente Polyak <anthr...@archlinux.org> +# Maintainer: Bruno Pagani <archa...@archlinux.org> +# Contributor: Maarten de Vries <maar...@de-vri.es> +# Contributor: Reventlov <cont...@volcanis.me> +# Contributor: kpcyrd <g...@rxv.cc> + +pkgname=libressl +pkgver=3.3.5 +pkgrel=1 +pkgdesc="Free version of the TLS/crypto stack forked from OpenSSL" +arch=(x86_64) +url="https://www.libressl.org/" +license=(ISC custom:OpenSSL) +depends=(glibc) +optdepends=(ca-certificates) +backup=(etc/libressl/openssl.cnf) +source=(https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-${pkgver}.tar.gz{,.asc}) +sha256sums=('0a51393f0df1cf27e070054a2788a4d073339f363d79cd594076a1b4c48be9a5' + 'SKIP') +validpgpkeys=(A1EB079B8D3EB92B4EBD3139663AF51BD5E4D8D5) # Brent Cook <bc...@openbsd.org> + +prepare() { + cd ${pkgname}-${pkgver} + autoreconf -vfi +} + +build() { + cd ${pkgname}-${pkgver} + ./configure \ + --prefix=/usr \ + --with-openssldir=/etc/libressl \ + --libdir=/usr/lib/libressl \ + --includedir=/usr/include/libressl \ + --program-prefix "libressl-" + sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool + make +} + +check() { + cd ${pkgname}-${pkgver} + make check +} + +package() { + cd ${pkgname}-${pkgver} + make DESTDIR="${pkgdir}" install + install -Dm644 COPYING -t "${pkgdir}"/usr/share/licenses/${pkgname}/ + + # Remove symlink man pages, that actually points to OpenSSL ones since the prefix is not accounted for + for manlink in $(find -L "${pkgdir}"/usr/share/man/man3/ -type l) ; + do + rm "${manlink}" ; + done +} + +# vim: ts=4 sw=4 et: