libsecret: 0.20.5 -> 0.21.0

This commit is contained in:
Tim Biermann 2023-08-11 18:22:48 +02:00
parent 22cd6bd9b7
commit 792b566e73
Signed by: tb
GPG Key ID: 42F8B4E30B673606
2 changed files with 22 additions and 22 deletions

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/TEnOKT7cco/hals2MpSxFkvIj4rsAJNuO7tjiWftKFUFkqjcif3ZHE1UOeuIJ10APwib9ZnQ5LomA3ml+UTvgc=
SHA256 (Pkgfile) = 8f915d16f8736911435ef96c7b3919f96d415a86a79c3516efb1f6fbbde34cd8
RWSE3ohX2g5d/QnE7D1lpFJK8uWOHBzfZ4c2oxG3U2JvN1u9vJS1spxqP7mV2CVdUG3SfXaUEa+bxGSqHaP/W1UOwgIJQrs5+gU=
SHA256 (Pkgfile) = c2b6116d2c1b10c074c9d19c5a5c8922a05ce1feb2198c7267485073f8cb38cc
SHA256 (.footprint) = 992be0c263bea1b77cd025873e7e5a2bd1b27a2f0357371742b7f67f1dcf14cc
SHA256 (libsecret-0.20.5.tar.xz) = 3fb3ce340fcd7db54d87c893e69bfc2b1f6e4d4b279065ffe66dac9f0fd12b4d
SHA256 (libsecret-0.21.0.tar.xz) = 2735b29d1cc0e5b12ba90bee88bd21774ac8db4ae1a4b716f46c409c19a14613

View File

@ -1,29 +1,29 @@
# Description: Library for storing and retrieving passwords and other secrets.
# Description: Library for storing and retrieving passwords and other secrets
# URL: https://wiki.gnome.org/Projects/Libsecret
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: gobject-introspection intltool libgcrypt
# Optional: vala docbook-xsl
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: gobject-introspection libgcrypt
# Optional: bash-completion docbook-xsl vala
name=libsecret
version=0.20.5
version=0.21.0
release=1
source=(https://download.gnome.org/sources/$name/${version:0:4}/$name-$version.tar.xz)
build() {
prt-get isinst bash-completion || \
PKGMK_LIBSECRET+=' -D bash_completion=disabled'
prt-get isinst docbook-xsl || PKGMK_LIBSECRET+=' -D manpage=false'
prt-get isinst vala || PKGMK_LIBSECRET+=' -D vapi=false'
prt-get isinst bash-completion || \
PKGMK_LIBSECRET+=' -D bash_completion=disabled'
prt-get isinst docbook-xsl || PKGMK_LIBSECRET+=' -D manpage=false'
prt-get isinst vala || PKGMK_LIBSECRET+=' -D vapi=false'
meson setup build $name-$version $PKGMK_LIBSECRET \
--prefix=/usr \
--buildtype=plain \
--wrap-mode nodownload \
-D b_lto=true \
-D b_pie=true \
-D gtk_doc=false
meson compile -C build -j ${JOBS:-1}
DESTDIR=$PKG meson install -C build
meson setup build $name-$version $PKGMK_LIBSECRET \
--prefix=/usr \
--buildtype=plain \
--wrap-mode nodownload \
-D b_lto=true \
-D b_pie=true \
-D gtk_doc=false
meson compile -C build -j ${JOBS:-1}
DESTDIR=$PKG meson install -C build
rm -r $PKG/usr/share/locale
rm -r $PKG/usr/share/locale
}