From: fsLeg Date: Sun, 4 Jun 2023 14:16:41 +0000 (+0300) Subject: yubikey-manager-qt: added X-Git-Url: https://git.t-rg.ws/?a=commitdiff_plain;h=908c5e759e2b94bdfa708d4ce4b40d0f8bb606dd;p=slackbuilds.git yubikey-manager-qt: added --- diff --git a/yubikey-manager-qt/README b/yubikey-manager-qt/README new file mode 100644 index 0000000..28acc9d --- /dev/null +++ b/yubikey-manager-qt/README @@ -0,0 +1,18 @@ +Cross-platform application for configuring any YubiKey over all USB +interfaces. + +This application provides an easy way to perform the most common +configuration tasks on a YubiKey. + +The current version can: + - Display the serial number and firmware version of a YubiKey + - Configure a FIDO2 PIN + - Reset the FIDO Applications + - Configure the OTP Application. A YubiKey have two slots (Short + Touch and Long Touch), which may both be configured for different + functionality. This tool can configure a Yubico OTP credential, + a static password, a challenge-response credential or an OATH HOTP + credential in both of these slots. + - Manage certificates and PINs for the PIV Application + - Swap the credentials between two configured slots + - Enable and disable USB and NFC interfaces diff --git a/yubikey-manager-qt/slack-desc b/yubikey-manager-qt/slack-desc new file mode 100644 index 0000000..25d28f9 --- /dev/null +++ b/yubikey-manager-qt/slack-desc @@ -0,0 +1,12 @@ + |-----handy-ruler------------------------------------------------------| +yubikey-manager-qt: yubikey-manager-qt (Graphical application for configuring a YubiKey) +yubikey-manager-qt: +yubikey-manager-qt: Cross-platform application for configuring any YubiKey over all USB +yubikey-manager-qt: interfaces. It provides an easy way to perform the most common +yubikey-manager-qt: configuration tasks on a YubiKey. +yubikey-manager-qt: +yubikey-manager-qt: Website: https://developers.yubico.com/yubikey-manager-qt/ +yubikey-manager-qt: +yubikey-manager-qt: +yubikey-manager-qt: +yubikey-manager-qt: diff --git a/yubikey-manager-qt/yubikey-manager-qt.SlackBuild b/yubikey-manager-qt/yubikey-manager-qt.SlackBuild new file mode 100755 index 0000000..90897e0 --- /dev/null +++ b/yubikey-manager-qt/yubikey-manager-qt.SlackBuild @@ -0,0 +1,116 @@ +#!/bin/bash + +# Slackware build script for yubikey-manager-qt + +# Copyright 2023 Vladislav Borisov, Moscow, Russia +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +cd $(dirname $0) ; CWD=$(pwd) + +PRGNAM=yubikey-manager-qt +VERSION=${VERSION:-1.2.5} +BUILD=${BUILD:-1} +TAG=${TAG:-fsleg} +PKGTYPE=${PKGTYPE:-txz} + +# Use parallel building if possible +if [ -z "$NUMJOBS" ]; then + NUMJOBS=$(nproc) +fi + +# Automatically determine the architecture we're building on: +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i586 ;; + arm*) ARCH=arm ;; + # Unless $ARCH is already set, use uname -m for all other archs: + *) ARCH=$( uname -m ) ;; + esac +fi + +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i586" ]; then + SLKCFLAGS="-O2 -march=i586 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" +elif [ "$ARCH" = "aarch64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" +fi + +set -e # Exit on most errors + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz +cd $PRGNAM +chown -R root:root . +find -L . \ + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -o -perm 511 \) -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + +qmake +CFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCFLAGS" \ +make -j${NUMJOBS} +make install INSTALL_ROOT=$PKG + +# Strip binaries and libraries +find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true + +# Copy desktop-related files +mkdir -p $PKG/usr/share/pixmaps +cp -a resources/icons/ykman.png $PKG/usr/share/pixmaps +mkdir -p $PKG/usr/share/metainfo/ +cp -a resources/com.yubico.yubikey_manager.metainfo.xml $PKG/usr/share/metainfo/ +mkdir -p $PKG/usr/share/applications +cp -a resources/ykman-gui.desktop $PKG/usr/share/applications + +# Copy program documentation into the package +# Also, include the SlackBuild script in the documentation directory +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a \ + COPYING NEWS README \ + $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +# Copy the slack-desc into ./install +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc + +# Make the package +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE diff --git a/yubikey-manager-qt/yubikey-manager-qt.info b/yubikey-manager-qt/yubikey-manager-qt.info new file mode 100644 index 0000000..8d76558 --- /dev/null +++ b/yubikey-manager-qt/yubikey-manager-qt.info @@ -0,0 +1,10 @@ +PRGNAM="yubikey-manager-qt" +VERSION="1.2.5" +HOMEPAGE="https://developers.yubico.com/yubikey-manager-qt/" +DOWNLOAD="https://github.com/Yubico/yubikey-manager-qt/archive/refs/tags/yubikey-manager-qt-1.2.5.tar.gz" +MD5SUM="036dd3f0cf2b77c68edef4c471d19c66" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="yubikey-manager pyotherside" +MAINTAINER="Vladislav Borisov" +EMAIL="fsleg@t-rg.ws"