From ea6062f4ba2e7d793daf6dd29fd37632d1423a5f Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Thu, 24 Nov 2022 23:28:26 +0000 Subject: [PATCH 01/12] Added the README --- README.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..4cab8f9 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# ykocli + +The ykocli package From f7e93a6c0eccdc88fad23e5ef6db6ebf11975c97 Mon Sep 17 00:00:00 2001 From: gbcox Date: Fri, 25 Nov 2022 07:40:26 -0800 Subject: [PATCH 02/12] rhbz 2144611 initial import --- .gitignore | 1 + sources | 1 + ykocli.rpmlintrc | 2 ++ ykocli.spec | 51 ++++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 55 insertions(+) create mode 100644 .gitignore create mode 100644 sources create mode 100644 ykocli.rpmlintrc create mode 100644 ykocli.spec diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7d557d7 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/ykocli-fa77017fc78f.tar.gz diff --git a/sources b/sources new file mode 100644 index 0000000..0e14b63 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (ykocli-fa77017fc78f.tar.gz) = 957af5a289ed8b0d53f89233b903f4905b974b03cf3f49e9474c27ead58dc977c59668db34680e98243ea193f7611bf7c97955bbd9c7aa265582e9399b84c110 diff --git a/ykocli.rpmlintrc b/ykocli.rpmlintrc new file mode 100644 index 0000000..ca0dbdf --- /dev/null +++ b/ykocli.rpmlintrc @@ -0,0 +1,2 @@ +# SPELLING ERRORS +addFilter(r" spelling-error .* (Transcode|lossy|transcodes)") diff --git a/ykocli.spec b/ykocli.spec new file mode 100644 index 0000000..365b371 --- /dev/null +++ b/ykocli.spec @@ -0,0 +1,51 @@ +%global owner gbcox +%global commit fa77017fc78f62dbcf97702512b89b03ed68dc64 +%global shortcommit %(c=%{commit}; echo ${c:0:12}) + +Name: ykocli +Version: 1.0.1 +Release: 1%{?dist} +Summary: Front-end script for ykman to obtain TOTP tokens + +License: GPL-3.0-or-later +URL: https://bitbucket.org/%{owner}/%{name} +Source0: https://bitbucket.org/%{owner}/%{name}/get/%{commit}.tar.gz#/%{name}-%{shortcommit}.tar.gz +Source1: %{name}.rpmlintrc + +BuildArch: noarch +BuildRequires: make +Requires: figlet +Requires: copyq +Requires: yubikey-manager + +%description +ykocli is a front-end command line utility (actually, a bash script) +that places ykman obtained TOTP tokens into the CopyQ clipboard. + +%prep +%autosetup -n %{owner}-%{name}-%{shortcommit} + +%build + +%install +%make_install prefix=%{_prefix} sysconfdir=%{_sysconfdir} + +%files +%license LICENSE.md +%doc README.md contributors.txt +%config(noreplace) %{_sysconfdir}/ykocli.conf +%{_bindir}/ykocli +%dir %{_libexecdir}/%{name} +%{_libexecdir}/%{name}/src-yko-set-colors.sh +%{_libexecdir}/%{name}/src-yko-ck-input.sh +%{_libexecdir}/%{name}/src-yko-figlet.sh +%{_libexecdir}/%{name}/src-yko-help.sh +%{_libexecdir}/%{name}/src-yko-time.sh +%{_mandir}/man1/ykocli.1* + +%changelog +* Wed Nov 23 2022 Gerald Cox - 1.0.1-1 +- Fedora Review rhgz#2144611 + +* Mon Nov 21 2022 Gerald Cox - 1.0.0-1 +- Fedora Review rhbz#2144611 From edb3c54d4a68e35a921d2371356c64eb346c0edf Mon Sep 17 00:00:00 2001 From: gbcox Date: Wed, 28 Dec 2022 18:02:00 -0800 Subject: [PATCH 03/12] Add optional background mode --- .gitignore | 1 + sources | 2 +- ykocli.rpmlintrc | 1 - ykocli.spec | 11 ++++++++--- 4 files changed, 10 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 7d557d7..35ad695 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /ykocli-fa77017fc78f.tar.gz +/ykocli-9cb5f4278e9f.tar.gz diff --git a/sources b/sources index 0e14b63..9fb42d7 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ykocli-fa77017fc78f.tar.gz) = 957af5a289ed8b0d53f89233b903f4905b974b03cf3f49e9474c27ead58dc977c59668db34680e98243ea193f7611bf7c97955bbd9c7aa265582e9399b84c110 +SHA512 (ykocli-9cb5f4278e9f.tar.gz) = a828429a0c6b0a27f45e09edec0c3b6b18048ce574c4d0ab3587112d36ce58d74a3a0d3a5fe99ebcf219b658409ace353d454e74d8d38f7dacf85c03ac711f36 diff --git a/ykocli.rpmlintrc b/ykocli.rpmlintrc index ca0dbdf..49db0af 100644 --- a/ykocli.rpmlintrc +++ b/ykocli.rpmlintrc @@ -1,2 +1 @@ # SPELLING ERRORS -addFilter(r" spelling-error .* (Transcode|lossy|transcodes)") diff --git a/ykocli.spec b/ykocli.spec index 365b371..4c8b7c4 100644 --- a/ykocli.spec +++ b/ykocli.spec @@ -1,9 +1,9 @@ %global owner gbcox -%global commit fa77017fc78f62dbcf97702512b89b03ed68dc64 +%global commit 9cb5f4278e9fa473ac39968fc78bf19b52a875f1 %global shortcommit %(c=%{commit}; echo ${c:0:12}) Name: ykocli -Version: 1.0.1 +Version: 1.0.2 Release: 1%{?dist} Summary: Front-end script for ykman to obtain TOTP tokens @@ -32,7 +32,7 @@ that places ykman obtained TOTP tokens into the CopyQ clipboard. %files %license LICENSE.md -%doc README.md contributors.txt +%doc README.md contributors.txt examples/ %config(noreplace) %{_sysconfdir}/ykocli.conf %{_bindir}/ykocli %dir %{_libexecdir}/%{name} @@ -40,10 +40,15 @@ that places ykman obtained TOTP tokens into the CopyQ clipboard. %{_libexecdir}/%{name}/src-yko-ck-input.sh %{_libexecdir}/%{name}/src-yko-figlet.sh %{_libexecdir}/%{name}/src-yko-help.sh +%{_libexecdir}/%{name}/src-yko-main.sh %{_libexecdir}/%{name}/src-yko-time.sh +%{_libexecdir}/%{name}/src-yko-trap.sh %{_mandir}/man1/ykocli.1* %changelog +* Wed Dec 28 2022 Gerald Cox - 1.0.2-1 +- Add optional background mode + * Wed Nov 23 2022 Gerald Cox - 1.0.1-1 - Fedora Review rhgz#2144611 From c6b498e51b7f8e9699b98e0574c9bdd5e3a8337b Mon Sep 17 00:00:00 2001 From: gbcox Date: Mon, 16 Jan 2023 11:01:11 -0800 Subject: [PATCH 04/12] Refactor for Add, Delete, Rename functionality --- .gitignore | 1 + sources | 2 +- ykocli.spec | 14 +++++++++++--- 3 files changed, 13 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 35ad695..4926126 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /ykocli-fa77017fc78f.tar.gz /ykocli-9cb5f4278e9f.tar.gz +/ykocli-4fc150aa6e66.tar.gz diff --git a/sources b/sources index 9fb42d7..b03fe04 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ykocli-9cb5f4278e9f.tar.gz) = a828429a0c6b0a27f45e09edec0c3b6b18048ce574c4d0ab3587112d36ce58d74a3a0d3a5fe99ebcf219b658409ace353d454e74d8d38f7dacf85c03ac711f36 +SHA512 (ykocli-4fc150aa6e66.tar.gz) = 5299f9510bf8503155942896fd357a195bcf3c75e27bb5ebaeba09e6c2007b5f7805e9f0b4fcf02304340857b4aa3dd001bf0bf0a29d66efb0834feb6e14ab5f diff --git a/ykocli.spec b/ykocli.spec index 4c8b7c4..6c554cd 100644 --- a/ykocli.spec +++ b/ykocli.spec @@ -1,9 +1,9 @@ %global owner gbcox -%global commit 9cb5f4278e9fa473ac39968fc78bf19b52a875f1 +%global commit 4fc150aa6e666fbea9544d928bdc642af49a220b %global shortcommit %(c=%{commit}; echo ${c:0:12}) Name: ykocli -Version: 1.0.2 +Version: 1.1.0 Release: 1%{?dist} Summary: Front-end script for ykman to obtain TOTP tokens @@ -17,6 +17,7 @@ BuildRequires: make Requires: figlet Requires: copyq Requires: yubikey-manager +Requires: zbar %description ykocli is a front-end command line utility (actually, a bash script) @@ -40,12 +41,19 @@ that places ykman obtained TOTP tokens into the CopyQ clipboard. %{_libexecdir}/%{name}/src-yko-ck-input.sh %{_libexecdir}/%{name}/src-yko-figlet.sh %{_libexecdir}/%{name}/src-yko-help.sh -%{_libexecdir}/%{name}/src-yko-main.sh +%{_libexecdir}/%{name}/src-yko-table.sh %{_libexecdir}/%{name}/src-yko-time.sh %{_libexecdir}/%{name}/src-yko-trap.sh +%{_libexecdir}/%{name}/src-yko-totp.sh +%{_libexecdir}/%{name}/src-yko-add.sh +%{_libexecdir}/%{name}/src-yko-delete.sh +%{_libexecdir}/%{name}/src-yko-rename.sh %{_mandir}/man1/ykocli.1* %changelog +* Mon Jan 16 2023 Gerald Cox - 1.1.0-1 +- Refactor for Add, Delete, Rename functionality + * Wed Dec 28 2022 Gerald Cox - 1.0.2-1 - Add optional background mode From 123d6b4777c1b8675e3a4af3421dc1b5bde5c1c1 Mon Sep 17 00:00:00 2001 From: gbcox Date: Tue, 17 Jan 2023 07:49:36 -0800 Subject: [PATCH 05/12] Allow multiple yubikeys rhbz#2161474 --- .gitignore | 1 + sources | 2 +- ykocli.spec | 8 ++++++-- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 4926126..650a1e0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /ykocli-fa77017fc78f.tar.gz /ykocli-9cb5f4278e9f.tar.gz /ykocli-4fc150aa6e66.tar.gz +/ykocli-5b9f62d5eb60.tar.gz diff --git a/sources b/sources index b03fe04..c2ffb11 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ykocli-4fc150aa6e66.tar.gz) = 5299f9510bf8503155942896fd357a195bcf3c75e27bb5ebaeba09e6c2007b5f7805e9f0b4fcf02304340857b4aa3dd001bf0bf0a29d66efb0834feb6e14ab5f +SHA512 (ykocli-5b9f62d5eb60.tar.gz) = b049c7daefe5f8f062bc783de5a48a88da1bc29f916f213f6fde1a178dff48711ba56e3725a55cd93e240a4251d24d05f3c6547f9b904eb9cb88eced25e4c2e0 diff --git a/ykocli.spec b/ykocli.spec index 6c554cd..ced7e4b 100644 --- a/ykocli.spec +++ b/ykocli.spec @@ -1,9 +1,9 @@ %global owner gbcox -%global commit 4fc150aa6e666fbea9544d928bdc642af49a220b +%global commit 5b9f62d5eb60861afa0e4369dd014ee13d564be7 %global shortcommit %(c=%{commit}; echo ${c:0:12}) Name: ykocli -Version: 1.1.0 +Version: 1.1.1 Release: 1%{?dist} Summary: Front-end script for ykman to obtain TOTP tokens @@ -48,9 +48,13 @@ that places ykman obtained TOTP tokens into the CopyQ clipboard. %{_libexecdir}/%{name}/src-yko-add.sh %{_libexecdir}/%{name}/src-yko-delete.sh %{_libexecdir}/%{name}/src-yko-rename.sh +%{_libexecdir}/%{name}/src-yko-devinfo.sh %{_mandir}/man1/ykocli.1* %changelog +* Tue Jan 17 2023 Gerald Cox - 1.1.1-1 +- Allow multiple yubikeys rhbz#2161474 + * Mon Jan 16 2023 Gerald Cox - 1.1.0-1 - Refactor for Add, Delete, Rename functionality From 45cb311b47ae8579eaf2927c8a794e64c826adbf Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 21 Jan 2023 08:05:54 +0000 Subject: [PATCH 06/12] Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ykocli.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ykocli.spec b/ykocli.spec index ced7e4b..43bf6df 100644 --- a/ykocli.spec +++ b/ykocli.spec @@ -4,7 +4,7 @@ Name: ykocli Version: 1.1.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Front-end script for ykman to obtain TOTP tokens License: GPL-3.0-or-later @@ -52,6 +52,9 @@ that places ykman obtained TOTP tokens into the CopyQ clipboard. %{_mandir}/man1/ykocli.1* %changelog +* Sat Jan 21 2023 Fedora Release Engineering - 1.1.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + * Tue Jan 17 2023 Gerald Cox - 1.1.1-1 - Allow multiple yubikeys rhbz#2161474 From e22fb81c129145adebcfeecb57ff3bc8f49ba58d Mon Sep 17 00:00:00 2001 From: gbcox Date: Mon, 23 Jan 2023 07:12:48 -0800 Subject: [PATCH 07/12] Add Touch Mode; mod cfg ovrd rhbz#2162909; rhbz#2162885 --- .gitignore | 1 + sources | 2 +- ykocli.spec | 12 +++++++++--- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 650a1e0..1deef4d 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ /ykocli-9cb5f4278e9f.tar.gz /ykocli-4fc150aa6e66.tar.gz /ykocli-5b9f62d5eb60.tar.gz +/ykocli-32c32fc2b2d6.tar.gz diff --git a/sources b/sources index c2ffb11..2406418 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ykocli-5b9f62d5eb60.tar.gz) = b049c7daefe5f8f062bc783de5a48a88da1bc29f916f213f6fde1a178dff48711ba56e3725a55cd93e240a4251d24d05f3c6547f9b904eb9cb88eced25e4c2e0 +SHA512 (ykocli-32c32fc2b2d6.tar.gz) = 93449f96777e0f12531edd04c62ffab9138425251b88dff3e7e9f08943a7a990a59a5660c4a00b3205018557048fcbe45a1538a89f29b6b1f00980cb279f3e78 diff --git a/ykocli.spec b/ykocli.spec index 43bf6df..5a73958 100644 --- a/ykocli.spec +++ b/ykocli.spec @@ -1,10 +1,10 @@ %global owner gbcox -%global commit 5b9f62d5eb60861afa0e4369dd014ee13d564be7 +%global commit 32c32fc2b2d61e1532d745f048580bf80c93e902 %global shortcommit %(c=%{commit}; echo ${c:0:12}) Name: ykocli -Version: 1.1.1 -Release: 2%{?dist} +Version: 1.2.0 +Release: 1%{?dist} Summary: Front-end script for ykman to obtain TOTP tokens License: GPL-3.0-or-later @@ -38,7 +38,10 @@ that places ykman obtained TOTP tokens into the CopyQ clipboard. %{_bindir}/ykocli %dir %{_libexecdir}/%{name} %{_libexecdir}/%{name}/src-yko-set-colors.sh +%{_libexecdir}/%{name}/src-yko-set-variables.sh +%{_libexecdir}/%{name}/src-yko-conf-override.sh %{_libexecdir}/%{name}/src-yko-ck-input.sh +%{_libexecdir}/%{name}/src-yko-ck-touch.sh %{_libexecdir}/%{name}/src-yko-figlet.sh %{_libexecdir}/%{name}/src-yko-help.sh %{_libexecdir}/%{name}/src-yko-table.sh @@ -52,6 +55,9 @@ that places ykman obtained TOTP tokens into the CopyQ clipboard. %{_mandir}/man1/ykocli.1* %changelog +* Mon Jan 23 2023 Gerald Cox - 1.2.0-1 +- Add Touch Mode; mod cfg ovrd rhbz#2162909; rhbz#2162885 + * Sat Jan 21 2023 Fedora Release Engineering - 1.1.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild From ae3ef45c4547b4f72356084b492b2dd6f0174e4c Mon Sep 17 00:00:00 2001 From: gbcox Date: Mon, 23 Jan 2023 09:21:40 -0800 Subject: [PATCH 08/12] Add Touch Mode; mod cfg ovrd rhbz#2162909; rhbz#2162885 --- .gitignore | 1 + sources | 2 +- ykocli.spec | 9 ++++++--- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 1deef4d..37dde12 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ /ykocli-4fc150aa6e66.tar.gz /ykocli-5b9f62d5eb60.tar.gz /ykocli-32c32fc2b2d6.tar.gz +/ykocli-01500f50f2ae.tar.gz diff --git a/sources b/sources index 2406418..b11963d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ykocli-32c32fc2b2d6.tar.gz) = 93449f96777e0f12531edd04c62ffab9138425251b88dff3e7e9f08943a7a990a59a5660c4a00b3205018557048fcbe45a1538a89f29b6b1f00980cb279f3e78 +SHA512 (ykocli-01500f50f2ae.tar.gz) = 301bab19c0e0e2c74f534a67eb41a44db9ff14170859c41c10d2bd4b9c256b19df1ce0164d7511f26a338f127b9a07d4062099fa9d2957f9db43b3016eff1c75 diff --git a/ykocli.spec b/ykocli.spec index 5a73958..b52bff7 100644 --- a/ykocli.spec +++ b/ykocli.spec @@ -1,9 +1,9 @@ %global owner gbcox -%global commit 32c32fc2b2d61e1532d745f048580bf80c93e902 +%global commit 01500f50f2aeb7ba0e397e632854c74eef9f77a5 %global shortcommit %(c=%{commit}; echo ${c:0:12}) Name: ykocli -Version: 1.2.0 +Version: 1.2.1 Release: 1%{?dist} Summary: Front-end script for ykman to obtain TOTP tokens @@ -34,7 +34,7 @@ that places ykman obtained TOTP tokens into the CopyQ clipboard. %files %license LICENSE.md %doc README.md contributors.txt examples/ -%config(noreplace) %{_sysconfdir}/ykocli.conf +%config %{_sysconfdir}/ykocli.conf %{_bindir}/ykocli %dir %{_libexecdir}/%{name} %{_libexecdir}/%{name}/src-yko-set-colors.sh @@ -55,6 +55,9 @@ that places ykman obtained TOTP tokens into the CopyQ clipboard. %{_mandir}/man1/ykocli.1* %changelog +* Mon Jan 23 2023 Gerald Cox - 1.2.1-1 +- Add Touch Mode; mod cfg ovrd rhbz#2162909; rhbz#2162885 + * Mon Jan 23 2023 Gerald Cox - 1.2.0-1 - Add Touch Mode; mod cfg ovrd rhbz#2162909; rhbz#2162885 From 1c23743dca1c8ac313f07130b25d7b4c7372f501 Mon Sep 17 00:00:00 2001 From: gbcox Date: Wed, 25 Jan 2023 16:43:19 -0800 Subject: [PATCH 09/12] Add Color Overrides rhbz#2162880 --- .gitignore | 1 + sources | 2 +- ykocli.spec | 7 +++++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 37dde12..7f39d62 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ /ykocli-5b9f62d5eb60.tar.gz /ykocli-32c32fc2b2d6.tar.gz /ykocli-01500f50f2ae.tar.gz +/ykocli-e4538038bcd2.tar.gz diff --git a/sources b/sources index b11963d..5a37864 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ykocli-01500f50f2ae.tar.gz) = 301bab19c0e0e2c74f534a67eb41a44db9ff14170859c41c10d2bd4b9c256b19df1ce0164d7511f26a338f127b9a07d4062099fa9d2957f9db43b3016eff1c75 +SHA512 (ykocli-e4538038bcd2.tar.gz) = 8c3a87a4732293479cf214ec53b8b446ba72934838c2080a18838edd0a6339c95ac4c71214f929f11380e99dedb73b91a4aa8a3c09c8d1d64ec1bc0d7b4889dc diff --git a/ykocli.spec b/ykocli.spec index b52bff7..900b35d 100644 --- a/ykocli.spec +++ b/ykocli.spec @@ -1,9 +1,9 @@ %global owner gbcox -%global commit 01500f50f2aeb7ba0e397e632854c74eef9f77a5 +%global commit e4538038bcd2b2f2c9df3ccf7e860d03f14acaa9 %global shortcommit %(c=%{commit}; echo ${c:0:12}) Name: ykocli -Version: 1.2.1 +Version: 1.3.0 Release: 1%{?dist} Summary: Front-end script for ykman to obtain TOTP tokens @@ -55,6 +55,9 @@ that places ykman obtained TOTP tokens into the CopyQ clipboard. %{_mandir}/man1/ykocli.1* %changelog +* Wed Jan 25 2023 Gerald Cox - 1.3.0-1 +- Add Color Overrides rhbz#2162880 + * Mon Jan 23 2023 Gerald Cox - 1.2.1-1 - Add Touch Mode; mod cfg ovrd rhbz#2162909; rhbz#2162885 From 37aa2b2a5d0a5f9e004132f26bd0588c9e10b51e Mon Sep 17 00:00:00 2001 From: gbcox Date: Wed, 25 Jan 2023 18:46:03 -0800 Subject: [PATCH 10/12] Add Color Overrides rhbz#2162880 --- .gitignore | 1 + sources | 2 +- ykocli.spec | 7 +++++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 7f39d62..13645eb 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ /ykocli-32c32fc2b2d6.tar.gz /ykocli-01500f50f2ae.tar.gz /ykocli-e4538038bcd2.tar.gz +/ykocli-b1c0c5503ce5.tar.gz diff --git a/sources b/sources index 5a37864..2b2faa2 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ykocli-e4538038bcd2.tar.gz) = 8c3a87a4732293479cf214ec53b8b446ba72934838c2080a18838edd0a6339c95ac4c71214f929f11380e99dedb73b91a4aa8a3c09c8d1d64ec1bc0d7b4889dc +SHA512 (ykocli-b1c0c5503ce5.tar.gz) = 9a669b282b0f76bd1e03498003e530da97e4a147274b9303d7490c5dd536839a6db96e9000a94cf0a5d7af17bebacf4d5ec16541016b40637dd764ad7702dfb3 diff --git a/ykocli.spec b/ykocli.spec index 900b35d..bcec09b 100644 --- a/ykocli.spec +++ b/ykocli.spec @@ -1,9 +1,9 @@ %global owner gbcox -%global commit e4538038bcd2b2f2c9df3ccf7e860d03f14acaa9 +%global commit b1c0c5503ce58989d94c139eb2b6b950986f0dc7 %global shortcommit %(c=%{commit}; echo ${c:0:12}) Name: ykocli -Version: 1.3.0 +Version: 1.3.1 Release: 1%{?dist} Summary: Front-end script for ykman to obtain TOTP tokens @@ -55,6 +55,9 @@ that places ykman obtained TOTP tokens into the CopyQ clipboard. %{_mandir}/man1/ykocli.1* %changelog +* Wed Jan 25 2023 Gerald Cox - 1.3.1-1 +- Add Color Overrides rhbz#2162880 + * Wed Jan 25 2023 Gerald Cox - 1.3.0-1 - Add Color Overrides rhbz#2162880 From 83edd8cb3eb66bc65a5c940d6708d9c71880a502 Mon Sep 17 00:00:00 2001 From: gbcox Date: Wed, 8 Feb 2023 08:09:30 -0800 Subject: [PATCH 11/12] Documentation correction --- .gitignore | 1 + sources | 2 +- ykocli.spec | 7 +++++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 13645eb..ca690b1 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ /ykocli-01500f50f2ae.tar.gz /ykocli-e4538038bcd2.tar.gz /ykocli-b1c0c5503ce5.tar.gz +/ykocli-386b17dd1b51.tar.gz diff --git a/sources b/sources index 2b2faa2..0d37e61 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ykocli-b1c0c5503ce5.tar.gz) = 9a669b282b0f76bd1e03498003e530da97e4a147274b9303d7490c5dd536839a6db96e9000a94cf0a5d7af17bebacf4d5ec16541016b40637dd764ad7702dfb3 +SHA512 (ykocli-386b17dd1b51.tar.gz) = 9f777fc655d2af9c09b1abfd8e247daa858f70db15498ac9802622ffeea31247d915ed7251b3faffa41600e186219cd9f303ff310da9e0c6a232c4d4e7a09b90 diff --git a/ykocli.spec b/ykocli.spec index bcec09b..c371e8f 100644 --- a/ykocli.spec +++ b/ykocli.spec @@ -1,9 +1,9 @@ %global owner gbcox -%global commit b1c0c5503ce58989d94c139eb2b6b950986f0dc7 +%global commit 386b17dd1b5173ce98bc439e51b5d46dc29d425d %global shortcommit %(c=%{commit}; echo ${c:0:12}) Name: ykocli -Version: 1.3.1 +Version: 1.3.2 Release: 1%{?dist} Summary: Front-end script for ykman to obtain TOTP tokens @@ -55,6 +55,9 @@ that places ykman obtained TOTP tokens into the CopyQ clipboard. %{_mandir}/man1/ykocli.1* %changelog +* Wed Feb 08 2023 Gerald Cox - 1.3.2-1 +- Documentation correction + * Wed Jan 25 2023 Gerald Cox - 1.3.1-1 - Add Color Overrides rhbz#2162880 From f8d4095d820fbb85ce4e0bd75089d27d5e2c697c Mon Sep 17 00:00:00 2001 From: MSVSphere Packaging Team Date: Tue, 31 Oct 2023 00:36:58 +0300 Subject: [PATCH 12/12] Remove unnecessary files --- README.md | 3 --- sources | 1 - 2 files changed, 4 deletions(-) delete mode 100644 README.md delete mode 100644 sources diff --git a/README.md b/README.md deleted file mode 100644 index 4cab8f9..0000000 --- a/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# ykocli - -The ykocli package diff --git a/sources b/sources deleted file mode 100644 index 0d37e61..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -SHA512 (ykocli-386b17dd1b51.tar.gz) = 9f777fc655d2af9c09b1abfd8e247daa858f70db15498ac9802622ffeea31247d915ed7251b3faffa41600e186219cd9f303ff310da9e0c6a232c4d4e7a09b90