pagure pushed to rpms/python-geotiler (rawhide). "Patch for Pillow
10 (fix RHBZ#2220253, fix RHBZ#2226199)"
by notificationsï¼ fedoraproject.org
Notification time stamped 2023-07-31 23:16:35 UTC
From b198c4c3351873d1e3e2b685a01f1b7a948dfaeb Mon Sep 17 00:00:00 2001
From: Benjamin A. Beasley <code(a)musicinmybrain.net>
Date: Jul 31 2023 23:04:58 +0000
Subject: Patch for Pillow 10 (fix RHBZ#2220253, fix RHBZ#2226199)
---
diff --git a/geotiler-0.14.7-pillow10.patch b/geotiler-0.14.7-pillow10.patch
new file mode 100644
index 0000000..d841472
--- /dev/null
+++ b/geotiler-0.14.7-pillow10.patch
@@ -0,0 +1,44 @@
+From 5e0cfbafcda83ca14cfe6c63b2a791d4ad6c338b Mon Sep 17 00:00:00 2001
+From: wrobell <wrobell(a)riseup.net>
+Date: Mon, 31 Jul 2023 21:54:13 +0100
+Subject: [PATCH] Update GeoTiler to use Pillow newer API
+
+Some Pillow API got deprecated, so let's use the latest version of the
+library.
+---
+ geotiler/tile/img.py | 8 ++++++--
+ setup.cfg | 2 +-
+ 2 files changed, 7 insertions(+), 3 deletions(-)
+
+diff --git a/geotiler/tile/img.py b/geotiler/tile/img.py
+index d5349a0..aa775b4 100644
+--- a/geotiler/tile/img.py
++++ b/geotiler/tile/img.py
+@@ -84,8 +84,12 @@ def _error_image(width, height):
+ img = PIL.Image.new('RGBA', (width, height))
+ draw = PIL.ImageDraw.Draw(img)
+ msg = 'Error downloading map tile.'
+- tw, th = draw.textsize(msg)
+- draw.text(((width - tw) // 2, (height - th) // 2), msg, 'red')
++ x0 = width / 2
++ y0 = height / 2
++ bb_l, bb_t, bb_r, bb_b = draw.textbbox((int(x0), int(y0)), msg)
++ x = x0 + (bb_r - bb_l) / 2
++ y = y0 + (bb_b - bb_t) / 2
++ draw.text((int(x), int(y)), msg, 'red')
+ return img
+
+ def _tile_image(data):
+diff --git a/setup.cfg b/setup.cfg
+index bc9b04e..170303a 100644
+--- a/setup.cfg
++++ b/setup.cfg
+@@ -28,7 +28,7 @@ scripts =
+ bin/geotiler-route
+ bin/geotiler-fetch
+ install_requires =
+- Pillow
++ Pillow >= 10.0.0
+ cytoolz >= 0.8.2
+ aiohttp >= 2.3.5
+ setuptools
diff --git a/python-geotiler.spec b/python-geotiler.spec
index 3477e29..45a5a3e 100644
--- a/python-geotiler.spec
+++ b/python-geotiler.spec
@@ -38,6 +38,10 @@ Source4: geotiler-route.1
# https://github.com/wrobell/geotiler/pull/37
# Rebased on the PyPI sdist, which has different whitespace in setup.cfg.
Patch: geotiler-0.14.7-tests.patch
+# Update GeoTiler to use Pillow newer API
+# https://github.com/wrobell/geotiler/commit/5e0cfbafcda83ca14cfe6c63b2a791...
+# Rebased on the 0.14.7 PyPI sdist (whitespace differs in setup.cfg)
+Patch: geotiler-0.14.7-pillow10.patch
BuildRequires: python3-devel
BuildRequires: make
@@ -133,6 +137,7 @@ install -t '%{buildroot}%{_mandir}/man1' -D -p -m 0644 \
%changelog
* Mon Jul 31 2023 Benjamin A. Beasley <code(a)musicinmybrain.net> - 0.14.7-4
- Patch out unused uvloop test dependency
+- Patch for Pillow 10 (fix RHBZ#2220253, fix RHBZ#2226199)
* Fri Jul 21 2023 Fedora Release Engineering <releng(a)fedoraproject.org> - 0.14.7-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
https://src.fedoraproject.org/rpms/python-geotiler/c/b198c4c3351873d1e3e2...
4Â months, 1Â week
pagure pushed to rpms/python-geotiler (rawhide). "Patch out unused
uvloop test dependency (python-uvloop currently FTI/FTBFS)"
by notificationsï¼ fedoraproject.org
Notification time stamped 2023-07-31 23:16:35 UTC
From cdd1ece08589d6dd018d2facae659f2e20ce29e8 Mon Sep 17 00:00:00 2001
From: Benjamin A. Beasley <code(a)musicinmybrain.net>
Date: Jul 31 2023 23:04:58 +0000
Subject: Patch out unused uvloop test dependency (python-uvloop currently FTI/FTBFS)
---
diff --git a/geotiler-0.14.7-tests.patch b/geotiler-0.14.7-tests.patch
new file mode 100644
index 0000000..83271d1
--- /dev/null
+++ b/geotiler-0.14.7-tests.patch
@@ -0,0 +1,12 @@
+diff -Naur geotiler-0.14.7-original/setup.cfg geotiler-0.14.7/setup.cfg
+--- geotiler-0.14.7-original/setup.cfg 2022-12-29 11:07:21.959903200 -0500
++++ geotiler-0.14.7/setup.cfg 2023-07-30 13:32:37.167893223 -0400
+@@ -33,7 +33,7 @@
+ setuptools
+
+ [options.extras_require]
+-tests = mypy; pytest-cov; pytest-timeout; pytest-asyncio; uvloop
++tests = mypy; pytest-cov; pytest-timeout; pytest-asyncio; numpy
+
+ [tool:pytest]
+ addopts = --cov geotiler --cov-report=term-missing
diff --git a/python-geotiler.spec b/python-geotiler.spec
index 81cd9e8..3477e29 100644
--- a/python-geotiler.spec
+++ b/python-geotiler.spec
@@ -11,7 +11,7 @@ graphs.}
Name: python-%{pypi_name}
Version: 0.14.7
-Release: 3%{?dist}
+Release: 4%{?dist}
Summary: GeoTiler is a library to create map using tiles from a map provider
License: GPLv3+
@@ -32,6 +32,13 @@ Source2: geotiler-fetch.1
Source3: geotiler-lint.1
Source4: geotiler-route.1
+# Adjust dependencies for tests extra
+# Drop uvloop, which seems to be unused.
+# Add numpy, which is imported directly in the test suite.
+# https://github.com/wrobell/geotiler/pull/37
+# Rebased on the PyPI sdist, which has different whitespace in setup.cfg.
+Patch: geotiler-0.14.7-tests.patch
+
BuildRequires: python3-devel
BuildRequires: make
@@ -71,7 +78,7 @@ Summary: %{summary}
Documentation for %{name}.
%prep
-%autosetup -n %{pypi_name}-%{version}
+%autosetup -n %{pypi_name}-%{version} -p1
cp -p %{SOURCE1} %{SOURCE2} %{SOURCE3} %{SOURCE4} .
rm -fv poetry.lock
@@ -124,6 +131,9 @@ install -t '%{buildroot}%{_mandir}/man1' -D -p -m 0644 \
%doc _latex/geotiler.pdf
%changelog
+* Mon Jul 31 2023 Benjamin A. Beasley <code(a)musicinmybrain.net> - 0.14.7-4
+- Patch out unused uvloop test dependency
+
* Fri Jul 21 2023 Fedora Release Engineering <releng(a)fedoraproject.org> - 0.14.7-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
https://src.fedoraproject.org/rpms/python-geotiler/c/cdd1ece08589d6dd018d...
4Â months, 1Â week
pagure pushed to rpms/python-geotiler (rawhide). "Patch out unwanted
linting and coverage test dependencies"
by notificationsï¼ fedoraproject.org
Notification time stamped 2023-07-31 23:16:35 UTC
From 7a7bdebed6345d04a9a4926b64b3028bffe471f8 Mon Sep 17 00:00:00 2001
From: Benjamin A. Beasley <code(a)musicinmybrain.net>
Date: Jul 31 2023 23:04:58 +0000
Subject: Patch out unwanted linting and coverage test dependencies
---
diff --git a/geotiler-0.14.7-linters.patch b/geotiler-0.14.7-linters.patch
new file mode 100644
index 0000000..d2846a4
--- /dev/null
+++ b/geotiler-0.14.7-linters.patch
@@ -0,0 +1,16 @@
+diff -Naur geotiler-0.14.7-original/setup.cfg geotiler-0.14.7/setup.cfg
+--- geotiler-0.14.7-original/setup.cfg 2023-07-31 18:51:55.975315601 -0400
++++ geotiler-0.14.7/setup.cfg 2023-07-31 18:52:49.325050815 -0400
+@@ -33,10 +33,10 @@
+ setuptools
+
+ [options.extras_require]
+-tests = mypy; pytest-cov; pytest-timeout; pytest-asyncio; numpy
++tests = pytest-timeout; pytest-asyncio; numpy
+
+ [tool:pytest]
+-addopts = --cov geotiler --cov-report=term-missing
++addopts =
+
+ [tool:coverage:report]
+ show_missing = 1
diff --git a/python-geotiler.spec b/python-geotiler.spec
index 45a5a3e..c124e61 100644
--- a/python-geotiler.spec
+++ b/python-geotiler.spec
@@ -42,6 +42,9 @@ Patch: geotiler-0.14.7-tests.patch
# https://github.com/wrobell/geotiler/commit/5e0cfbafcda83ca14cfe6c63b2a791...
# Rebased on the 0.14.7 PyPI sdist (whitespace differs in setup.cfg)
Patch: geotiler-0.14.7-pillow10.patch
+# Downstream-only: patch out linting and coverage dependencies
+# https://docs.fedoraproject.org/en-US/packaging-guidelines/Python/#_linters
+Patch: geotiler-0.14.7-linters.patch
BuildRequires: python3-devel
BuildRequires: make
@@ -138,6 +141,7 @@ install -t '%{buildroot}%{_mandir}/man1' -D -p -m 0644 \
* Mon Jul 31 2023 Benjamin A. Beasley <code(a)musicinmybrain.net> - 0.14.7-4
- Patch out unused uvloop test dependency
- Patch for Pillow 10 (fix RHBZ#2220253, fix RHBZ#2226199)
+- Patch out unwanted linting and coverage test dependencies
* Fri Jul 21 2023 Fedora Release Engineering <releng(a)fedoraproject.org> - 0.14.7-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
https://src.fedoraproject.org/rpms/python-geotiler/c/7a7bdebed6345d04a9a4...
4Â months, 1Â week
gbcox pushed to rpms/transflac (f37). "Upstream release - 2227958"
by notificationsï¼ fedoraproject.org
Notification time stamped 2023-07-31 22:39:31 UTC
From 1fa96d74e96c3cb799c295fcd14366624e15f164 Mon Sep 17 00:00:00 2001
From: gbcox <gbcox(a)bzb.us>
Date: Jul 31 2023 22:37:23 +0000
Subject: Upstream release - 2227958
---
diff --git a/.gitignore b/.gitignore
index bf52a89..d14ebd2 100644
--- a/.gitignore
+++ b/.gitignore
@@ -5,3 +5,4 @@
/transflac-1.1.1-1.20230725gite940e80.fc39.src.rpm
/gbcox-transflac-21001004b207.tar.bz2
/gbcox-transflac-22e93e00187f.tar.bz2
+/gbcox-transflac-884f17e71b29.tar.bz2
diff --git a/sources b/sources
index 271f692..0070586 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (gbcox-transflac-22e93e00187f.tar.bz2) = f0bbc84a97704d432fe05a2fdb9489300e482a6bb38e8e2d391bf6ad87bfdac104aa555382318add7d10fba5d77049b186eb9f0685bd56b640a6a7aaa8fcca23
+SHA512 (gbcox-transflac-884f17e71b29.tar.bz2) = f0d5411ece4df3acadc4d03aa8fb65f1960df270bf4432adfd982258a385ea3a5caf5da3e04edf6256ade0ce501358bf04f9555c7195118dc784cad4b343ab7d
diff --git a/transflac.spec b/transflac.spec
index 9e79978..7444072 100644
--- a/transflac.spec
+++ b/transflac.spec
@@ -1,8 +1,8 @@
%global forgeurl https://bitbucket.org/gbcox/transflac/
-%global commit 22e93e00187f
+%global commit 884f17e71b29
Name: transflac
-Version: 1.2.1
+Version: 1.2.2
Summary: Transcode FLAC to lossy formats
License: GPL-3.0-or-later
https://src.fedoraproject.org/rpms/transflac/c/1fa96d74e96c3cb799c295fcd1...
4Â months, 1Â week
defolos pushed to rpms/emacs (emacs-29). "New upstream release 29.1,
fixes rhbz#2227492"
by notificationsï¼ fedoraproject.org
Notification time stamped 2023-07-31 22:39:16 UTC
From 88be4b7fa7ce3307e26558d682b7b75f45c4c8c2 Mon Sep 17 00:00:00 2001
From: Dan Čermák <dan.cermak(a)cgc-instruments.com>
Date: Jul 31 2023 22:38:52 +0000
Subject: New upstream release 29.1, fixes rhbz#2227492
---
diff --git a/.gitignore b/.gitignore
index 0546e5c..bd11d19 100644
--- a/.gitignore
+++ b/.gitignore
@@ -33,3 +33,5 @@
/emacs-28.1.tar.xz.sig
/emacs-28.2.tar.xz
/emacs-28.2.tar.xz.sig
+/emacs-29.1.tar.xz
+/emacs-29.1.tar.xz.sig
diff --git a/emacs.spec b/emacs.spec
index 147d0d2..ffdb33d 100644
--- a/emacs.spec
+++ b/emacs.spec
@@ -4,8 +4,8 @@
Summary: GNU Emacs text editor
Name: emacs
Epoch: 1
-Version: 28.2
-Release: 10%{?dist}
+Version: 29.1
+Release: 1%{?dist}
License: GPL-3.0-or-later AND CC0-1.0
URL: http://www.gnu.org/software/emacs/
Source0: https://ftp.gnu.org/gnu/emacs/emacs-%{version}.tar.xz
@@ -525,6 +525,9 @@ desktop-file-validate %{buildroot}/%{_datadir}/applications/*.desktop
%{_includedir}/emacs-module.h
%changelog
+* Mon Jul 31 2023 Dan Čermák <dan.cermak(a)cgc-instruments.com> - 1:29.1-1
+- New upstream release 29.1, fixes rhbz#2227492
+
* Tue Jul 25 2023 Scott Talbert <swt(a)techie.net> - 1:28.2-10
- Rebuild for libotf soname bump
diff --git a/sources b/sources
index fcd9d25..2292cd8 100644
--- a/sources
+++ b/sources
@@ -1,2 +1,2 @@
-SHA512 (emacs-28.2.tar.xz) = a7cec7e3e82367815a1442f69af54102dbfc434069810a9dec5938a6660cb8b076e6f1fb0bfff9695b15603dbbe05eb9c7dfd92e90cf40fc4d1e5746bce83bd8
-SHA512 (emacs-28.2.tar.xz.sig) = de40bc10088051b2707fc9764a5a5fb49687c05bf0e27bd7ad6f5a952ad324904366ca10dbd58015e1d3d5206b900da99cf4485d7f048220e4dda657180f3d1c
+SHA512 (emacs-29.1.tar.xz) = de10f2af462682019af680e6a82fd33feb05ce6d995bedf5756264fa06e29d90cab02c5884b0aeade1c5ab39cf064e0fb6ff9f78d9eedbd162f0a985945b9ec2
+SHA512 (emacs-29.1.tar.xz.sig) = 0177a372ab5cc0fc21f90b26d4e19c2e8feee887d5807291319ee5d7fafee2d8752923f24a928492c53cc1b1f2f8e2ea5ce8b55459b2af56bfc95cf0a6b0f399
https://src.fedoraproject.org/rpms/emacs/c/88be4b7fa7ce3307e26558d682b7b7...
4Â months, 1Â week
gbcox pushed to rpms/transflac (f38). "Upstream release - 2227958"
by notificationsï¼ fedoraproject.org
Notification time stamped 2023-07-31 22:38:42 UTC
From 1fa96d74e96c3cb799c295fcd14366624e15f164 Mon Sep 17 00:00:00 2001
From: gbcox <gbcox(a)bzb.us>
Date: Jul 31 2023 22:37:23 +0000
Subject: Upstream release - 2227958
---
diff --git a/.gitignore b/.gitignore
index bf52a89..d14ebd2 100644
--- a/.gitignore
+++ b/.gitignore
@@ -5,3 +5,4 @@
/transflac-1.1.1-1.20230725gite940e80.fc39.src.rpm
/gbcox-transflac-21001004b207.tar.bz2
/gbcox-transflac-22e93e00187f.tar.bz2
+/gbcox-transflac-884f17e71b29.tar.bz2
diff --git a/sources b/sources
index 271f692..0070586 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (gbcox-transflac-22e93e00187f.tar.bz2) = f0bbc84a97704d432fe05a2fdb9489300e482a6bb38e8e2d391bf6ad87bfdac104aa555382318add7d10fba5d77049b186eb9f0685bd56b640a6a7aaa8fcca23
+SHA512 (gbcox-transflac-884f17e71b29.tar.bz2) = f0d5411ece4df3acadc4d03aa8fb65f1960df270bf4432adfd982258a385ea3a5caf5da3e04edf6256ade0ce501358bf04f9555c7195118dc784cad4b343ab7d
diff --git a/transflac.spec b/transflac.spec
index 9e79978..7444072 100644
--- a/transflac.spec
+++ b/transflac.spec
@@ -1,8 +1,8 @@
%global forgeurl https://bitbucket.org/gbcox/transflac/
-%global commit 22e93e00187f
+%global commit 884f17e71b29
Name: transflac
-Version: 1.2.1
+Version: 1.2.2
Summary: Transcode FLAC to lossy formats
License: GPL-3.0-or-later
https://src.fedoraproject.org/rpms/transflac/c/1fa96d74e96c3cb799c295fcd1...
4Â months, 1Â week
gbcox pushed to rpms/transflac (rawhide). "Upstream release - 2227958"
by notificationsï¼ fedoraproject.org
Notification time stamped 2023-07-31 22:37:46 UTC
From 1fa96d74e96c3cb799c295fcd14366624e15f164 Mon Sep 17 00:00:00 2001
From: gbcox <gbcox(a)bzb.us>
Date: Jul 31 2023 22:37:23 +0000
Subject: Upstream release - 2227958
---
diff --git a/.gitignore b/.gitignore
index bf52a89..d14ebd2 100644
--- a/.gitignore
+++ b/.gitignore
@@ -5,3 +5,4 @@
/transflac-1.1.1-1.20230725gite940e80.fc39.src.rpm
/gbcox-transflac-21001004b207.tar.bz2
/gbcox-transflac-22e93e00187f.tar.bz2
+/gbcox-transflac-884f17e71b29.tar.bz2
diff --git a/sources b/sources
index 271f692..0070586 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (gbcox-transflac-22e93e00187f.tar.bz2) = f0bbc84a97704d432fe05a2fdb9489300e482a6bb38e8e2d391bf6ad87bfdac104aa555382318add7d10fba5d77049b186eb9f0685bd56b640a6a7aaa8fcca23
+SHA512 (gbcox-transflac-884f17e71b29.tar.bz2) = f0d5411ece4df3acadc4d03aa8fb65f1960df270bf4432adfd982258a385ea3a5caf5da3e04edf6256ade0ce501358bf04f9555c7195118dc784cad4b343ab7d
diff --git a/transflac.spec b/transflac.spec
index 9e79978..7444072 100644
--- a/transflac.spec
+++ b/transflac.spec
@@ -1,8 +1,8 @@
%global forgeurl https://bitbucket.org/gbcox/transflac/
-%global commit 22e93e00187f
+%global commit 884f17e71b29
Name: transflac
-Version: 1.2.1
+Version: 1.2.2
Summary: Transcode FLAC to lossy formats
License: GPL-3.0-or-later
https://src.fedoraproject.org/rpms/transflac/c/1fa96d74e96c3cb799c295fcd1...
4Â months, 1Â week
mikelo2 pushed to rpms/golang-github-t3rm1n4l-mega (rawhide).
"Update to latest commit"
by notificationsï¼ fedoraproject.org
Notification time stamped 2023-07-31 21:58:03 UTC
From 9b5d23d7144c716de7eeab726a4ccdd4c8f40c62 Mon Sep 17 00:00:00 2001
From: Mikel Olasagasti Uranga <mikel(a)olasagasti.info>
Date: Jul 31 2023 21:57:47 +0000
Subject: Update to latest commit
---
diff --git a/.gitignore b/.gitignore
index ec87932..f8fd482 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
/go-mega-72151b53bb4462c0a776acc547a44b987b689d63.tar.gz
/go-mega-ffad7fcb44b8abfd3827611d1e74c15f1661c547.tar.gz
+/go-mega-a01a2cda13caa9eb92c23017ec999c5166d77b41.tar.gz
diff --git a/golang-github-t3rm1n4l-mega.spec b/golang-github-t3rm1n4l-mega.spec
index d79d840..feeb10a 100644
--- a/golang-github-t3rm1n4l-mega.spec
+++ b/golang-github-t3rm1n4l-mega.spec
@@ -1,11 +1,12 @@
-# Generated by go2rpm
+# Generated by go2rpm 1.9.0
%bcond_without check
+%global debug_package %{nil}
# https://github.com/t3rm1n4l/go-mega
%global goipath github.com/t3rm1n4l/go-mega
-%global commit ffad7fcb44b8abfd3827611d1e74c15f1661c547
+%global commit a01a2cda13caa9eb92c23017ec999c5166d77b41
-%gometa
+%gometa -f
%global common_description %{expand:
A client library in go for mega.co.nz storage service.}
@@ -15,22 +16,23 @@ A client library in go for mega.co.nz storage service.}
Name: %{goname}
Version: 0
-Release: 0.17%{?dist}
+Release: 0.18%{?dist}
Summary: Client library in go for mega.co.nz storage service
License: MIT
URL: %{gourl}
-Source0: %{gosource}
+Source: %{gosource}
-BuildRequires: golang(golang.org/x/crypto/pbkdf2)
-
-%description
-%{common_description}
+%description %{common_description}
%gopkg
%prep
%goprep
+%autopatch -p1
+
+%generate_buildrequires
+%go_generate_buildrequires
%install
%gopkginstall
@@ -43,6 +45,9 @@ BuildRequires: golang(golang.org/x/crypto/pbkdf2)
%gopkgfiles
%changelog
+* Mon Jul 31 2023 Mikel Olasagasti Uranga <mikel(a)olasagasti.info> - 0-0.18
+- Update to latest commit
+
* Thu Jul 20 2023 Fedora Release Engineering <releng(a)fedoraproject.org> - 0-0.17
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
diff --git a/sources b/sources
index ab52efb..e6dfb49 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (go-mega-ffad7fcb44b8abfd3827611d1e74c15f1661c547.tar.gz) = 2a250665d369bba4269e5a2531034bdfcbb561c9ec24e2a44a3f45f6e422d1592a3bffd6dfc42d3c6643d6421cdf79c27c73e6cfcaebd5223b8609f44e7c98ba
+SHA512 (go-mega-a01a2cda13caa9eb92c23017ec999c5166d77b41.tar.gz) = 5d283fef5f685ce84df5e90abc6f990d08b2f12f22ce9fa90473007953c64f612181eb4c15dbd1e671e1fe098a97346c2c8f9f947de53b57de754369f39c5b77
https://src.fedoraproject.org/rpms/golang-github-t3rm1n4l-mega/c/9b5d23d7...
4Â months, 1Â week
mikelo2 pushed to rpms/shdoc (epel7). "Update to 1.2 - Closes rhbz#2227944"
by notificationsï¼ fedoraproject.org
Notification time stamped 2023-07-31 21:52:13 UTC
From 6ef4ded01ab5642c31664f844b3c8982f7d410d8 Mon Sep 17 00:00:00 2001
From: Mikel Olasagasti Uranga <mikel(a)olasagasti.info>
Date: Jul 31 2023 21:49:24 +0000
Subject: Update to 1.2 - Closes rhbz#2227944
---
diff --git a/.gitignore b/.gitignore
index a15094b..c163b3b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
/shdoc-b64998d.tar.gz
/shdoc-1.1.tar.gz
+/shdoc-1.2.tar.gz
diff --git a/shdoc.spec b/shdoc.spec
index 5ad233c..30cdc85 100644
--- a/shdoc.spec
+++ b/shdoc.spec
@@ -1,5 +1,5 @@
Name: shdoc
-Version: 1.1
+Version: 1.2
Release: %autorelease
Summary: Documentation generator for bash/zsh/sh for generating documentation in Markdown
diff --git a/sources b/sources
index 492ebfc..9e3c191 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (shdoc-1.1.tar.gz) = f5dc1be88d21abeb24de6d31a9e5fbc0797283daae3a706513f08d9c3428ec212594359ccc7a043ff7c749d178fa3209e7b88cb326adb0dab2641cacc9a85755
+SHA512 (shdoc-1.2.tar.gz) = 92ae42f9a51b6f09208b3a0877ad1fdb7f0fb0197a6cf4abb7dc268c326bad0aba5d8b631c7b5ea958c207029a8607eecdee0a40ca66d8425d61116caf3215ec
https://src.fedoraproject.org/rpms/shdoc/c/6ef4ded01ab5642c31664f844b3c89...
4Â months, 1Â week