qtkeychain6: initial commit, version 0.13.0

This commit is contained in:
Tim Biermann 2021-11-07 13:31:57 +01:00
parent 9948b9d2c8
commit ffded4f6ea
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 50 additions and 0 deletions

19
qtkeychain6/.footprint Normal file
View File

@ -0,0 +1,19 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/include/
drwxr-xr-x root/root usr/include/qt6keychain/
-rw-r--r-- root/root usr/include/qt6keychain/keychain.h
-rw-r--r-- root/root usr/include/qt6keychain/qkeychain_export.h
drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/cmake/
drwxr-xr-x root/root usr/lib/cmake/Qt6Keychain/
-rw-r--r-- root/root usr/lib/cmake/Qt6Keychain/Qt6KeychainConfig.cmake
-rw-r--r-- root/root usr/lib/cmake/Qt6Keychain/Qt6KeychainConfigVersion.cmake
-rw-r--r-- root/root usr/lib/cmake/Qt6Keychain/Qt6KeychainLibraryDepends.cmake
-rw-r--r-- root/root usr/lib/cmake/Qt6Keychain/Qt6KeychainLibraryDepends-release.cmake
-rwxr-xr-x root/root usr/lib/libqt6keychain.so.0.13.0
lrwxrwxrwx root/root usr/lib/libqt6keychain.so.1 -> libqt6keychain.so.0.13.0
lrwxrwxrwx root/root usr/lib/libqt6keychain.so -> libqt6keychain.so.1
drwxr-xr-x root/root usr/mkspecs/
drwxr-xr-x root/root usr/mkspecs/modules/
-rw-r--r-- root/root usr/mkspecs/modules/qt_Qt6Keychain.pri
drwxr-xr-x root/root usr/share/

5
qtkeychain6/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF361ZPZPfKrO+Nomj1ZUz+lO5lWylI1v6bKU2h8OlLePmnqaCKSdXjNnCLXdOb0fFp31hwcvJ3seHs/48aALEVgI=
SHA256 (Pkgfile) = 561fc145bb8ff4bd163110e1a4d94cedd9f2bb50a635f3f77c5b446976d97027
SHA256 (.footprint) = be5d32594f541577876580fc7a7d17ef0ef84dd0c373da1fae8085c588a5f9d8
SHA256 (qtkeychain-0.13.0.tar.gz) = 5c04ad1c2f1142197544ddbce249c73b45c724bd683e6dc89bdefbc8e6be36e7

26
qtkeychain6/Pkgfile Normal file
View File

@ -0,0 +1,26 @@
# Description: QtKeychain is a QT API to store passwords and other secret data securely
# URL: https://github.com/frankosterfeld/qtkeychain
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: libsecret qt6-tools
name=qtkeychain6
version=0.13.0
release=1
source=(https://github.com/frankosterfeld/qtkeychain/archive/v$version/qtkeychain-$version.tar.gz)
build() {
cmake -S qtkeychain-$version -B build -G Ninja \
-D CMAKE_INSTALL_PREFIX=/usr \
-D CMAKE_INSTALL_LIBDIR=lib \
-D CMAKE_INSTALL_LIBEXECDIR=lib/$name \
-D CMAKE_BUILD_TYPE=Release \
-D CMAKE_CXX_FLAGS_RELEASE="$CXXFLAGS" \
-D CMAKE_C_FLAGS_RELEASE="$CFLAGS" \
-D BUILD_WITH_QT6=ON \
-D BUILD_WITH_QT5=OFF \
-Wno-dev
cmake --build build
DESTDIR=$PKG cmake --install build
rm -fr $PKG/usr/share/qt6*
}