From 7587c34f598db246a44b1c74c8027e689547cfeb Mon Sep 17 00:00:00 2001 From: kth5 Date: Tue, 10 Dec 2024 14:09:47 +0100 Subject: [PATCH] * update easy-rsa to 3.2.1-2 --- easy-rsa/.SRCINFO | 6 ++++-- easy-rsa/PKGBUILD | 13 +++++++++---- 2 files changed, 13 insertions(+), 6 deletions(-) diff --git a/easy-rsa/.SRCINFO b/easy-rsa/.SRCINFO index fb41f05e26..c0fdb45c5c 100644 --- a/easy-rsa/.SRCINFO +++ b/easy-rsa/.SRCINFO @@ -1,10 +1,10 @@ pkgbase = easy-rsa pkgdesc = Simple shell based CA utility pkgver = 3.2.1 - pkgrel = 1 + pkgrel = 2 url = https://github.com/OpenVPN/easy-rsa arch = any - license = custom + license = GPL-2.0-only depends = openssl depends = sh depends = grep @@ -12,9 +12,11 @@ pkgbase = easy-rsa backup = etc/easy-rsa/vars source = https://github.com/OpenVPN/easy-rsa/releases/download/v3.2.1/EasyRSA-3.2.1.tgz source = https://github.com/OpenVPN/easy-rsa/releases/download/v3.2.1/EasyRSA-3.2.1.tgz.sig + source = https://raw.githubusercontent.com/OpenVPN/easy-rsa/refs/tags/v3.2.1/dev/easyrsa-tools.lib validpgpkeys = 65FF3F24AA08E882CB444C94D731D97A606FD463 validpgpkeys = 6F4056821152F03B6B24F2FCF8489F839D7367F3 sha256sums = ec0fdca46c07afef341e0e0eeb2bf0cfe74a11322b77163e5d764d28cb4eec89 sha256sums = SKIP + sha256sums = eea232959d41f49330e032bf94a49b4b6b0574d75e199dd219096f1739077b3e pkgname = easy-rsa diff --git a/easy-rsa/PKGBUILD b/easy-rsa/PKGBUILD index e252499c30..986bd8e57c 100644 --- a/easy-rsa/PKGBUILD +++ b/easy-rsa/PKGBUILD @@ -3,20 +3,22 @@ pkgname=easy-rsa pkgver=3.2.1 -pkgrel=1 +pkgrel=2 pkgdesc='Simple shell based CA utility' arch=(any) url='https://github.com/OpenVPN/easy-rsa' depends=('openssl' 'sh' 'grep') -license=('custom') +license=('GPL-2.0-only') backup=('etc/easy-rsa/openssl-easyrsa.cnf' 'etc/easy-rsa/vars') validpgpkeys=( '65FF3F24AA08E882CB444C94D731D97A606FD463' # Josh Cepek '6F4056821152F03B6B24F2FCF8489F839D7367F3') # Eric Crist -source=("https://github.com/OpenVPN/easy-rsa/releases/download/v${pkgver}/EasyRSA-${pkgver}.tgz"{,.sig}) +source=("https://github.com/OpenVPN/easy-rsa/releases/download/v${pkgver}/EasyRSA-${pkgver}.tgz"{,.sig} + "https://raw.githubusercontent.com/OpenVPN/easy-rsa/refs/tags/v${pkgver}/dev/easyrsa-tools.lib") sha256sums=('ec0fdca46c07afef341e0e0eeb2bf0cfe74a11322b77163e5d764d28cb4eec89' - 'SKIP') + 'SKIP' + 'eea232959d41f49330e032bf94a49b4b6b0574d75e199dd219096f1739077b3e') package() { cd EasyRSA-${pkgver}/ @@ -32,5 +34,8 @@ package() { install -m0644 doc/* ChangeLog "${pkgdir}"/usr/share/doc/easy-rsa/ install -D -m0644 COPYING.md "${pkgdir}"/usr/share/licenses/easy-rsa/COPYING + + # this is missing in release tarball... + install -D -m0755 "${srcdir}"/easyrsa-tools.lib "${pkgdir}"/usr/share/easy-rsa/easyrsa-tools.lib }