Update package version to 2.5.20

This commit is contained in:
2026-05-17 16:18:34 +03:00
parent 919e0c9bed
commit e6fe56459c
2 changed files with 4 additions and 9 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
name: gnupg name: gnupg
description: Complete and free implementation of the OpenPGP standard description: Complete and free implementation of the OpenPGP standard
version: 2.5.19 version: 2.5.20
revision: 1 revision: 1
url: https://www.gnupg.org/ url: https://www.gnupg.org/
license: BSD-2-Clause,BSD-3-Clause,BSD-4-Clause,CC0-1.0,GPL2-or-later,GPL3-or-later,LGPL2.1-or-later,LGPL3-or-later or GPL2-or-later,MIT,Unicode-TOU license: BSD-2-Clause,BSD-3-Clause,BSD-4-Clause,CC0-1.0,GPL2-or-later,GPL3-or-later,LGPL2.1-or-later,LGPL3-or-later or GPL2-or-later,MIT,Unicode-TOU
@@ -31,4 +31,4 @@ downloads:
- url: https://www.gnupg.org/ftp/gcrypt/gnupg/gnupg-${BPM_PKG_VERSION}.tar.bz2 - url: https://www.gnupg.org/ftp/gcrypt/gnupg/gnupg-${BPM_PKG_VERSION}.tar.bz2
extract_to: ${BPM_SOURCE} extract_to: ${BPM_SOURCE}
extract_strip_components: 1 extract_strip_components: 1
checksum: 722aa8a426dd9b44e0d194b73bfee3a3e617d65674cd4d1d062e6df29f1788c6 checksum: 6461266e99c308419a379abe6c356d54c214136c4589bd65951091138989ffc6
+2 -7
View File
@@ -16,7 +16,7 @@ build() {
# This function is used to run tests to verify the package has been compiled correctly # This function is used to run tests to verify the package has been compiled correctly
check() { check() {
cd build cd build
make check make check
} }
@@ -28,10 +28,5 @@ package() {
make DESTDIR="$BPM_OUTPUT" install make DESTDIR="$BPM_OUTPUT" install
# Install package licenses # Install package licenses
install -Dm644 "$BPM_SOURCE"/COPYING.CC0 "$BPM_OUTPUT"/usr/share/licenses/gnupg/COPYING.CC0 install -Dm644 "$BPM_SOURCE"/COPYING* -t "$BPM_OUTPUT"/usr/share/licenses/gnupg/
install -Dm644 "$BPM_SOURCE"/COPYING.GPL2 "$BPM_OUTPUT"/usr/share/licenses/gnupg/COPYING.GPL2
install -Dm644 "$BPM_SOURCE"/COPYING.LGPL3 "$BPM_OUTPUT"/usr/share/licenses/gnupg/COPYING.LGPL3
install -Dm644 "$BPM_SOURCE"/COPYING "$BPM_OUTPUT"/usr/share/licenses/gnupg/COPYING
install -Dm644 "$BPM_SOURCE"/COPYING.other "$BPM_OUTPUT"/usr/share/licenses/gnupg/COPYING.other
install -Dm644 "$BPM_SOURCE"/COPYING.LGPL21 "$BPM_OUTPUT"/usr/share/licenses/gnupg/COPYING.LGPL21
} }