From 5805d3fd7efaa6673ad367a248c5642c132a5f72 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Sat, 6 Jan 2024 01:28:28 +0100 Subject: [PATCH] package created using the webbuild interface [release 23.08.0-1mamba;Sun Aug 27 2023] --- README.md | 5 ++++ keysmith.spec | 66 +++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 71 insertions(+) create mode 100644 keysmith.spec diff --git a/README.md b/README.md index 1db5b1b..991ab83 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,7 @@ # keysmith +Keysmith is an application to generate two-factor authentication (2FA) tokens when logging in to your (online) accounts. Currently it supports both HOTP and TOTP tokens. +Some todo items include: +- QR code scanning +- Backup and Restore of accounts + diff --git a/keysmith.spec b/keysmith.spec new file mode 100644 index 0000000..ec4b7ee --- /dev/null +++ b/keysmith.spec @@ -0,0 +1,66 @@ +%define majver %(echo %version | cut -d. -f1-2) + +Name: keysmith +Version: 23.08.0 +Release: 1mamba +Summary: A KDE application to generate two-factor authentication (2FA) tokens +Group: Graphical Desktop/Applications/Security +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://kde.org +Source: https://download.kde.org/stable/release-service/%{version}/src/keysmith-%{version}.tar.xz +License: GPL, BSD +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +BuildRequires: libQt5Svg-devel +BuildRequires: libX11-devel +BuildRequires: libgcc +BuildRequires: libkdbusaddons-devel +BuildRequires: libki18n-devel +BuildRequires: libkwindowsystem-devel +BuildRequires: libsodium-devel +BuildRequires: libstdc++6-devel +BuildRequires: qt5-qtbase-devel +BuildRequires: qt5-qtdeclarative-devel +BuildRequires: qt5-qtquickcontrols2-devel +## AUTOBUILDREQ-END +BuildRequires: cmake +BuildRequires: rpm-macros-kde5 +BuildRequires: extra-cmake-modules + +%description +Keysmith is an application to generate two-factor authentication (2FA) tokens when logging in to your (online) accounts. Currently it supports both HOTP and TOTP tokens. +Some todo items include: +- QR code scanning +- Backup and Restore of accounts + +%debug_package + +%prep +%setup -q + +%build +%cmake_kde5 -d build +%make + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%makeinstall -C build + +%find_lang %{name}5_qt --with-qt --with-man --with-html --all-name || touch %{name}5_qt.lang + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%files -f %{name}5_qt.lang +%defattr(-,root,root) +%{_bindir}/keysmith +%{_datadir}/applications/org.kde.keysmith.desktop +%{_datadir}/metainfo/org.kde.keysmith.appdata.xml +%{_datadir}/icons/hicolor/scalable/apps/keysmith.svg +%doc COPYING LICENSES + +%changelog +* Sun Aug 27 2023 Silvan Calarco 23.08.0-1mamba +- package created using the webbuild interface