6 Commits

Author SHA256 Message Date
7c17dee17b Accepting request 1314610 from X11:Utilities
OBS-URL: https://build.opensuse.org/request/show/1314610
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/qrtool?expand=0&rev=10
2025-10-31 15:28:04 +00:00
dee1e9f2c3 - Update to version 0.13.1
* Add more archive formats for releases
  * Add support for encoding rMQR code
  * Add EPS rendering support
  * Remove --symbol-version from the required options of --variant

OBS-URL: https://build.opensuse.org/package/show/X11:Utilities/qrtool?expand=0&rev=20
2025-10-30 22:35:39 +00:00
2dbef2d8c2 Accepting request 1285254 from X11:Utilities
OBS-URL: https://build.opensuse.org/request/show/1285254
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/qrtool?expand=0&rev=9
2025-06-13 16:44:51 +00:00
0d6878784c - Update to version 0.12.0
* Restore demo animation
  * Change the license for documents and assets to CC BY 4.0
  * Replace --generate-completion with completion subcommand
  * Remove help text for after auto-generated --help
  * Make the message for --version the same as the message for -V
  * Allow partial matches of subcommand names
- Removed cargo_audit from _service due that contains vendor now

OBS-URL: https://build.opensuse.org/package/show/X11:Utilities/qrtool?expand=0&rev=18
2025-06-12 19:05:20 +00:00
88781b99b4 Accepting request 1219708 from X11:Utilities
OBS-URL: https://build.opensuse.org/request/show/1219708
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/qrtool?expand=0&rev=8
2024-10-31 15:09:30 +00:00
83c26114cf - Update to version 0.11.6
* Add Supports decoding from XBM
  * Fixed fall-back to decoding an inverted image

OBS-URL: https://build.opensuse.org/package/show/X11:Utilities/qrtool?expand=0&rev=16
2024-10-30 19:02:55 +00:00
6 changed files with 47 additions and 13 deletions

View File

@@ -5,5 +5,4 @@
<param name="compression">zst</param>
<param name="update">true</param>
</service>
<service name="cargo_audit" mode="manual"/>
</services>

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:66f27a53b09acd13dec681a9cd8c0805b7e6bf5a3482fd7a22e66a9a39237138
size 152390

3
qrtool-0.13.1.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3271127e2be7ef3e51cd22648b5f6168e1da00d19cd4b35c1b752029be08d41a
size 233213

View File

@@ -1,4 +1,32 @@
-------------------------------------------------------------------
Thu Oct 30 21:46:36 UTC 2025 - Muhammad Akbar Yanuar Mantari <mantarimay@pm.me>
- Update to version 0.13.1
* Add more archive formats for releases
* Add support for encoding rMQR code
* Add EPS rendering support
* Remove --symbol-version from the required options of --variant
-------------------------------------------------------------------
Thu Jun 12 18:39:24 UTC 2025 - Muhammad Akbar Yanuar Mantari <mantarimay@pm.me>
- Update to version 0.12.0
* Restore demo animation
* Change the license for documents and assets to CC BY 4.0
* Replace --generate-completion with completion subcommand
* Remove help text for after auto-generated --help
* Make the message for --version the same as the message for -V
* Allow partial matches of subcommand names
- Removed cargo_audit from _service due that contains vendor now
-------------------------------------------------------------------
Tue Oct 29 22:19:53 UTC 2024 - Muhammad Akbar Yanuar Mantari <mantarimay@pm.me>
- Update to version 0.11.6
* Add Supports decoding from XBM
* Fixed fall-back to decoding an inverted image
------------------------------------------------------------------
Sun Sep 22 19:12:07 UTC 2024 - Muhammad Akbar Yanuar Mantari <mantarimay@pm.me>
- Update to version 0.11.5

View File

@@ -1,7 +1,7 @@
#
# spec file for package qrtool
#
# Copyright (c) 2024 mantarimay
# Copyright (c) 2025 mantarimay
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -22,7 +22,7 @@
%bcond_without test
%endif
Name: qrtool
Version: 0.11.5
Version: 0.13.1
Release: 0
Summary: An utility for encoding or decoding QR code
License: MIT AND CC-BY-4.0 AND Apache-2.0
@@ -42,15 +42,22 @@ qrtool is a command-line utility for encoding or decoding QR code.
%build
%{cargo_build}
%install
install -Dm755 target/release/%{name} -t %{buildroot}%{_bindir}
install -Dm644 target/release/build/qrtool*/out/*.? -t %{buildroot}%{_mandir}/man1
asciidoctor -b manpage "docs/man/man1/%{name}.1.adoc"
asciidoctor -b manpage "docs/man/man1/%{name}-encode.1.adoc"
asciidoctor -b manpage "docs/man/man1/%{name}-decode.1.adoc"
asciidoctor -b manpage "docs/man/man1/%{name}-completion.1.adoc"
comp="target/release/%{name} --generate-completion"
comp="target/release/%{name} completion"
$comp bash >"target/release/%{name}.bash"
$comp fish >"target/release/%{name}.fish"
$comp zsh >"target/release/_%{name}"
%install
install -Dm755 target/release/%{name} -t %{buildroot}%{_bindir}
install -Dm644 docs/man/man1/%{name}*.1 -t \
%{buildroot}%{_mandir}/man1/
install -Dm644 target/release/%{name}.bash -t \
%{buildroot}%{_datadir}/bash-completion/completions
install -Dm644 target/release/%{name}.fish -t \
@@ -64,7 +71,7 @@ install -Dm644 target/release/_%{name} -t \
%endif
%files
%license LICENSE*
%license LICENSE-*
%doc README* CHANGELOG.adoc
%{_bindir}/%{name}
%{_mandir}/man1/qrtool*

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:15e6c05c8c5a575f1f41d76030408b8aef007d572a63067edea83572922e1d84
size 20374660
oid sha256:ccb69e86685339a392378c0ec92c5b9eb55cdffe5c869e115683f741c1337844
size 18827774