The package rpms/appstream-generator.git has added or updated architecture specific content in its spec file (ExclusiveArch/ExcludeArch or %ifarch/%ifnarch) in commit(s): https://src.fedoraproject.org/cgit/rpms/appstream-generator.git/commit/?id=5....
Change: +ExclusiveArch: %{ldc_arches}
Thanks.
Full change: ============
commit 2e088686f9cad70ef83a43088dfae7f0f48ff320 Author: Neal Gompa ngompa@fedoraproject.org Date: Sat Aug 28 20:08:12 2021 -0400
Add missing patch
diff --git a/0001-Fix-build-with-GLib-2.69.patch b/0001-Fix-build-with-GLib-2.69.patch new file mode 100644 index 0000000..a5af3b1 --- /dev/null +++ b/0001-Fix-build-with-GLib-2.69.patch @@ -0,0 +1,134 @@ +From 0644bc10d13fc68ab39b4328a386033f700b8410 Mon Sep 17 00:00:00 2001 +From: Matthias Klumpp matthias@tenstral.net +Date: Sun, 29 Aug 2021 01:45:29 +0200 +Subject: [PATCH] Fix build with GLib >= 2.69 + +GLibD for GLib 2.69 changed some API, so we need to account for that +while still having the code build for older versions of GLib. +--- + meson.build | 1 + + src/app.d | 1 - + src/asgen/defines.d.in | 3 ++ + src/asgen/handlers/screenshothandler.d | 46 ++++++++++++++++++-------- + src/asgen/meson.build | 5 +++ + 5 files changed, 41 insertions(+), 15 deletions(-) + +diff --git a/meson.build b/meson.build +index f4b0aa9..dc32699 100644 +--- a/meson.build ++++ b/meson.build +@@ -15,6 +15,7 @@ build_root = meson.build_root() + # + src_dir = include_directories('src/') + ++glib_dep = dependency('glib-2.0') + glibd_dep = dependency('glibd-2.0') + appstream_dep = dependency('appstream', version : '>= 0.14.5') + ascompose_dep = dependency('appstream-compose', version : '>= 0.14.5') +diff --git a/src/app.d b/src/app.d +index 070c980..d9b61ea 100644 +--- a/src/app.d ++++ b/src/app.d +@@ -224,7 +224,6 @@ void main(string[] args) + default: + writeln (format ("The command '%s' is unknown.", command)); + exit (1); +- break; + } + } + +diff --git a/src/asgen/defines.d.in b/src/asgen/defines.d.in +index af49792..16cccba 100644 +--- a/src/asgen/defines.d.in ++++ b/src/asgen/defines.d.in +@@ -25,3 +25,6 @@ public enum DATADIR = "@datadir@"; + + // current version of the tool + public enum ASGEN_VERSION = "@asgen_version@"; ++ ++// Used for GLib/GLibD API change tests ++public enum GLIB_GE_2_69 = @glib_ge_2_29@; +diff --git a/src/asgen/handlers/screenshothandler.d b/src/asgen/handlers/screenshothandler.d +index 26dcd12..14a346c 100644 +--- a/src/asgen/handlers/screenshothandler.d ++++ b/src/asgen/handlers/screenshothandler.d +@@ -35,6 +35,7 @@ import ascompose.c.types : ImageFormat, ImageLoadFlags, ImageSaveFlags; + static import ascompose.Image; + static import std.file; + ++import asgen.defines : GLIB_GE_2_69; + import asgen.config : Config; + import asgen.result : GeneratorResult; + import asgen.downloader : Downloader; +@@ -124,20 +125,37 @@ private VideoInfo checkVideoInfo (GeneratorResult gres, Component cpt, const Con + try { + // NOTE: We are currently extracting information from ffprobe's simple output, but it also has a JSON + // mode. Parsing JSON is a bit slower, but if it is more reliable we should switch to that. +- Spawn.sync (null, // working directory +- [conf.ffprobeBinary, +- "-v", "quiet", +- "-show_entries", "stream=width,height,codec_name,codec_type", +- "-show_entries", "format=format_name", +- "-of", "default=noprint_wrappers=1", +- vidFname], +- [], // envp +- SpawnFlags.LEAVE_DESCRIPTORS_OPEN, +- null, // child setup +- null, // user data +- ffStdout, // out stdout +- ffStderr, // out stderr +- exitStatus); ++ static if (GLIB_GE_2_69) { ++ Spawn.sync (null, // working directory ++ [conf.ffprobeBinary, ++ "-v", "quiet", ++ "-show_entries", "stream=width,height,codec_name,codec_type", ++ "-show_entries", "format=format_name", ++ "-of", "default=noprint_wrappers=1", ++ vidFname], ++ [], // envp ++ SpawnFlags.LEAVE_DESCRIPTORS_OPEN, ++ null, // child setup ++ null, // user data ++ ffStdout, // out stdout ++ ffStderr, // out stderr ++ &exitStatus); ++ } else { ++ Spawn.sync (null, // working directory ++ [conf.ffprobeBinary, ++ "-v", "quiet", ++ "-show_entries", "stream=width,height,codec_name,codec_type", ++ "-show_entries", "format=format_name", ++ "-of", "default=noprint_wrappers=1", ++ vidFname], ++ [], // envp ++ SpawnFlags.LEAVE_DESCRIPTORS_OPEN, ++ null, // child setup ++ null, // user data ++ ffStdout, // out stdout ++ ffStderr, // out stderr ++ exitStatus); ++ } + } catch (Exception e) { + logError ("Failed to spawn ffprobe: %s", e.to!string); + gres.addHint (cpt, "metainfo-screenshot-but-no-media", ["fname": vidFname.baseName, "msg": e.to!string]); +diff --git a/src/asgen/meson.build b/src/asgen/meson.build +index 48f64a5..26f47d7 100644 +--- a/src/asgen/meson.build ++++ b/src/asgen/meson.build +@@ -1,7 +1,12 @@ + ++glib_ge_2_29 = 'false' ++if glib_dep.version().version_compare('>=2.69') ++ glib_ge_2_29 = 'true' ++endif + conf_data = configuration_data() + conf_data.set('datadir', join_paths(get_option('prefix'), get_option('datadir'), 'appstream')) + conf_data.set('asgen_version', asgen_version) ++conf_data.set('glib_ge_2_29', glib_ge_2_29) + configure_file(input : 'defines.d.in', + output: 'defines.d', + configuration: conf_data +-- +2.31.1 +
commit 9ab0cbf47384a43dc0a4cd40e1e4269b0907e52d Author: Neal Gompa ngompa@fedoraproject.org Date: Sat Aug 28 20:05:58 2021 -0400
Update to 0.8.5
diff --git a/.gitignore b/.gitignore index fb74bfd..c7e64db 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ /appstream-generator-nodemodules.tar.gz /appstream-generator-0.8.2.tar.gz /appstream-generator-0.8.4.tar.gz +/appstream-generator-0.8.5.tar.gz diff --git a/0001-Fix-compilation-due-to-broken-generated-GdkPixbuf-co.patch b/0001-Fix-compilation-due-to-broken-generated-GdkPixbuf-co.patch deleted file mode 100644 index f56671c..0000000 --- a/0001-Fix-compilation-due-to-broken-generated-GdkPixbuf-co.patch +++ /dev/null @@ -1,40 +0,0 @@ -From d5dad3b174eea7e9fbe0ed6e7b55a366b8eb203d Mon Sep 17 00:00:00 2001 -From: Dan Printzell xwildn00bx@gmail.com -Date: Sun, 2 May 2021 23:54:47 +0200 -Subject: [PATCH] Fix compilation due to broken generated GdkPixbuf code - -Gir-to-d tries to handle the return value of 'gdk_pixdata_from_pixbuf' -as if it is zero-terminated. -Which causes it to try to use 'getArrayLength' on a void*, causing a -compilation error. -Temporary fix for now is to just not export that function. - -Additionally, Add missing include for 'FILE*' that GdkPixbufModule needs -inside 'girepo/gdkpixbuf/c/types.d'. - -Signed-off-by: Dan Printzell xwildn00bx@gmail.com ---- - contrib/girwrap/APILookupGdkPixbuf.txt | 10 ++++++++++ - 1 file changed, 10 insertions(+) - -diff --git a/contrib/girwrap/APILookupGdkPixbuf.txt b/contrib/girwrap/APILookupGdkPixbuf.txt -index a72ca04..d5edb36 100644 ---- a/contrib/girwrap/APILookupGdkPixbuf.txt -+++ b/contrib/girwrap/APILookupGdkPixbuf.txt -@@ -224,3 +224,13 @@ struct: Pixdata - noProperty: pixel_data - - move: pixbuf_from_pixdata Pixbuf from_pixdata -+ -+# Gir-to-d tries to handle the return value of 'gdk_pixdata_from_pixbuf' as if it is zero-terminated. -+# Which causes it to try to use 'getArrayLength' on a void*, causing a compilation error. -+# Temporary fix for now is to just not export that function. -+noCode: from_pixbuf -+ -+# Add missing include for FILE* that GdkPixbufModule needs inside 'girepo/gdkpixbuf/c/types.d'. -+addAliases: start -+private import core.stdc.stdio : FILE; -+addAliases: end --- -2.31.1 - diff --git a/appstream-generator.spec b/appstream-generator.spec index da17d99..945ceeb 100644 --- a/appstream-generator.spec +++ b/appstream-generator.spec @@ -5,7 +5,7 @@ %bcond_without vendored_js
Name: appstream-generator -Version: 0.8.4 +Version: 0.8.5 Release: 1%{?dist} Summary: Fast AppStream metadata generator
@@ -20,14 +20,14 @@ Source0: %{url}/archive/v%{version}/%{name}-%{version}.tar.gz Source1: %{name}-nodemodules.tar.gz
# Backports from upstream -Patch0001: 0001-Fix-compilation-due-to-broken-generated-GdkPixbuf-co.patch +Patch0001: 0001-Fix-build-with-GLib-2.69.patch
BuildRequires: pkgconfig(glib-2.0) BuildRequires: pkgconfig(gobject-2.0) BuildRequires: pkgconfig(gio-2.0) BuildRequires: pkgconfig(glibd-2.0) -BuildRequires: pkgconfig(appstream) >= 0.14.2 -BuildRequires: pkgconfig(appstream-compose) >= 0.14.2 +BuildRequires: pkgconfig(appstream) >= 0.14.5 +BuildRequires: pkgconfig(appstream-compose) >= 0.14.5 BuildRequires: pkgconfig(lmdb) >= 0.9 BuildRequires: pkgconfig(libarchive) >= 3.2 BuildRequires: pkgconfig(libcurl) @@ -119,6 +119,9 @@ install contrib/setup/node_modules/jquery-flot/jquery.flot*.js -t %{buildroot}%{ %{_datadir}/metainfo/org.freedesktop.appstream.generator.metainfo.xml
%changelog +* Sat Aug 28 2021 Neal Gompa ngompa@fedoraproject.org - 0.8.5-1 +- Update to 0.8.5 + * Wed Aug 18 2021 Neal Gompa ngompa@fedoraproject.org - 0.8.4-1 - Update to 0.8.4 (#1924378)
diff --git a/sources b/sources index d169fa7..a114664 100644 --- a/sources +++ b/sources @@ -1,2 +1,2 @@ -SHA512 (appstream-generator-0.8.4.tar.gz) = 62f2c8293ce8abd57d75a4132114ad8316e92835bed94924f5ff2f3c9e8c38d1c218751c9b6b73cf730c303647502597514050572fd365ffae4f642ab50f9afb +SHA512 (appstream-generator-0.8.5.tar.gz) = cf2d392583efd4f241d81cff93d793221640c603601974e2d7bdecb5a2ccc381b0ae6e9f21d224680c0d5ef276e439d5625b50cb6bd9ae90cc93fde53725bc22 SHA512 (appstream-generator-nodemodules.tar.gz) = 723cc10816ca38b02c1ca8257b7d128772c049f2f39e2d0717aae4790f61e61696f585024de5be6cc7aa448e8f7db4e1d28ecc52d24995941d3d8bd5b1bf9eeb
commit 83d239b41f966f93d3dc75e44d390b511e8f6c40 Author: Neal Gompa ngompa@fedoraproject.org Date: Thu Aug 19 09:24:28 2021 -0400
Backport fix for broken generated GdkPixbuf code
diff --git a/0001-Fix-compilation-due-to-broken-generated-GdkPixbuf-co.patch b/0001-Fix-compilation-due-to-broken-generated-GdkPixbuf-co.patch new file mode 100644 index 0000000..f56671c --- /dev/null +++ b/0001-Fix-compilation-due-to-broken-generated-GdkPixbuf-co.patch @@ -0,0 +1,40 @@ +From d5dad3b174eea7e9fbe0ed6e7b55a366b8eb203d Mon Sep 17 00:00:00 2001 +From: Dan Printzell xwildn00bx@gmail.com +Date: Sun, 2 May 2021 23:54:47 +0200 +Subject: [PATCH] Fix compilation due to broken generated GdkPixbuf code + +Gir-to-d tries to handle the return value of 'gdk_pixdata_from_pixbuf' +as if it is zero-terminated. +Which causes it to try to use 'getArrayLength' on a void*, causing a +compilation error. +Temporary fix for now is to just not export that function. + +Additionally, Add missing include for 'FILE*' that GdkPixbufModule needs +inside 'girepo/gdkpixbuf/c/types.d'. + +Signed-off-by: Dan Printzell xwildn00bx@gmail.com +--- + contrib/girwrap/APILookupGdkPixbuf.txt | 10 ++++++++++ + 1 file changed, 10 insertions(+) + +diff --git a/contrib/girwrap/APILookupGdkPixbuf.txt b/contrib/girwrap/APILookupGdkPixbuf.txt +index a72ca04..d5edb36 100644 +--- a/contrib/girwrap/APILookupGdkPixbuf.txt ++++ b/contrib/girwrap/APILookupGdkPixbuf.txt +@@ -224,3 +224,13 @@ struct: Pixdata + noProperty: pixel_data + + move: pixbuf_from_pixdata Pixbuf from_pixdata ++ ++# Gir-to-d tries to handle the return value of 'gdk_pixdata_from_pixbuf' as if it is zero-terminated. ++# Which causes it to try to use 'getArrayLength' on a void*, causing a compilation error. ++# Temporary fix for now is to just not export that function. ++noCode: from_pixbuf ++ ++# Add missing include for FILE* that GdkPixbufModule needs inside 'girepo/gdkpixbuf/c/types.d'. ++addAliases: start ++private import core.stdc.stdio : FILE; ++addAliases: end +-- +2.31.1 + diff --git a/appstream-generator.spec b/appstream-generator.spec index 7463207..da17d99 100644 --- a/appstream-generator.spec +++ b/appstream-generator.spec @@ -19,6 +19,9 @@ Source0: %{url}/archive/v%{version}/%{name}-%{version}.tar.gz # $ cd ../../ && tar czvf %{name}-nodemodules.tar.gz contrib/setup/node_modules Source1: %{name}-nodemodules.tar.gz
+# Backports from upstream +Patch0001: 0001-Fix-compilation-due-to-broken-generated-GdkPixbuf-co.patch + BuildRequires: pkgconfig(glib-2.0) BuildRequires: pkgconfig(gobject-2.0) BuildRequires: pkgconfig(gio-2.0) @@ -71,6 +74,7 @@ as JSON documents and HTML pages. %if %{with vendored_js} %setup -q -T -D -a 1 %endif +%autopatch -p1
%build # Drop '-specs=/usr/lib/rpm/redhat/redhat-hardened-ld' as LDC doesn't support it
commit c6e7318744879556489fed086dd10f3cd41fcb16 Author: Neal Gompa ngompa@fedoraproject.org Date: Wed Aug 18 15:44:44 2021 -0400
Update to 0.8.4 (#1924378)
diff --git a/.gitignore b/.gitignore index 5e6cc18..fb74bfd 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ /appstream-generator-0.8.1.tar.gz /appstream-generator-nodemodules.tar.gz /appstream-generator-0.8.2.tar.gz +/appstream-generator-0.8.4.tar.gz diff --git a/appstream-generator.spec b/appstream-generator.spec index 545a551..7463207 100644 --- a/appstream-generator.spec +++ b/appstream-generator.spec @@ -5,8 +5,8 @@ %bcond_without vendored_js
Name: appstream-generator -Version: 0.8.2 -Release: 4%{?dist} +Version: 0.8.4 +Release: 1%{?dist} Summary: Fast AppStream metadata generator
License: LGPLv3+ and MIT @@ -23,17 +23,11 @@ BuildRequires: pkgconfig(glib-2.0) BuildRequires: pkgconfig(gobject-2.0) BuildRequires: pkgconfig(gio-2.0) BuildRequires: pkgconfig(glibd-2.0) -BuildRequires: pkgconfig(appstream) >= 0.12.10 +BuildRequires: pkgconfig(appstream) >= 0.14.2 +BuildRequires: pkgconfig(appstream-compose) >= 0.14.2 BuildRequires: pkgconfig(lmdb) >= 0.9 BuildRequires: pkgconfig(libarchive) >= 3.2 -BuildRequires: pkgconfig(cairo) >= 1.12 -BuildRequires: pkgconfig(gdk-pixbuf-2.0) -BuildRequires: pkgconfig(librsvg-2.0) -BuildRequires: pkgconfig(libsoup-2.4) BuildRequires: pkgconfig(libcurl) -BuildRequires: pkgconfig(freetype2) -BuildRequires: pkgconfig(pango) -BuildRequires: pkgconfig(fontconfig) BuildRequires: pkgconfig(gobject-introspection-1.0) BuildRequires: gir-to-d >= 0.18.0 BuildRequires: ldc >= 1:1.1.0 @@ -109,8 +103,7 @@ install contrib/setup/node_modules/jquery-flot/jquery.flot*.js -t %{buildroot}%{
%check -# Cf. https://github.com/ximion/appstream-generator/issues/72 -(%meson_test) || : +%meson_test
%files @@ -122,6 +115,9 @@ install contrib/setup/node_modules/jquery-flot/jquery.flot*.js -t %{buildroot}%{ %{_datadir}/metainfo/org.freedesktop.appstream.generator.metainfo.xml
%changelog +* Wed Aug 18 2021 Neal Gompa ngompa@fedoraproject.org - 0.8.4-1 +- Update to 0.8.4 (#1924378) + * Wed Jul 21 2021 Fedora Release Engineering releng@fedoraproject.org - 0.8.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
diff --git a/sources b/sources index db05c32..d169fa7 100644 --- a/sources +++ b/sources @@ -1,2 +1,2 @@ -SHA512 (appstream-generator-0.8.2.tar.gz) = fb5264817f54da80e4baa51624e1c9fa9cb0c85a6115211adb8fc2918755477d12e519185173c532404f200eabacf77d61d05266980b6fca11378ca7153d2b4e +SHA512 (appstream-generator-0.8.4.tar.gz) = 62f2c8293ce8abd57d75a4132114ad8316e92835bed94924f5ff2f3c9e8c38d1c218751c9b6b73cf730c303647502597514050572fd365ffae4f642ab50f9afb SHA512 (appstream-generator-nodemodules.tar.gz) = 723cc10816ca38b02c1ca8257b7d128772c049f2f39e2d0717aae4790f61e61696f585024de5be6cc7aa448e8f7db4e1d28ecc52d24995941d3d8bd5b1bf9eeb
commit 5bc8480b2ad3713a9dfb73a7e1f8ab468a3b4d06 Author: Fedora Release Engineering releng@fedoraproject.org Date: Wed Jul 21 17:47:43 2021 +0000
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
Signed-off-by: Fedora Release Engineering releng@fedoraproject.org
diff --git a/appstream-generator.spec b/appstream-generator.spec index 9abd7e0..545a551 100644 --- a/appstream-generator.spec +++ b/appstream-generator.spec @@ -6,7 +6,7 @@
Name: appstream-generator Version: 0.8.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Fast AppStream metadata generator
License: LGPLv3+ and MIT @@ -122,6 +122,9 @@ install contrib/setup/node_modules/jquery-flot/jquery.flot*.js -t %{buildroot}%{ %{_datadir}/metainfo/org.freedesktop.appstream.generator.metainfo.xml
%changelog +* Wed Jul 21 2021 Fedora Release Engineering releng@fedoraproject.org - 0.8.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Mon Feb 22 2021 Kalev Lember klember@redhat.com - 0.8.2-3 - Use ldc_arches macro rather than hardcoding supported arches - Rebuilt for ldc 1.25
commit 72e2c807f507ea6f8115ab7fe72a3004346b699d Author: Fedora Release Engineering releng@fedoraproject.org Date: Wed Jul 21 12:51:39 2021 +0000
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
Signed-off-by: Fedora Release Engineering releng@fedoraproject.org
commit 5bd604d54425e39b425088d7d2db13fdfd25d791 Author: Kalev Lember klember@redhat.com Date: Mon Feb 22 16:29:08 2021 +0100
Rebuilt for ldc 1.25
diff --git a/appstream-generator.spec b/appstream-generator.spec index 95b3892..9abd7e0 100644 --- a/appstream-generator.spec +++ b/appstream-generator.spec @@ -124,6 +124,7 @@ install contrib/setup/node_modules/jquery-flot/jquery.flot*.js -t %{buildroot}%{ %changelog * Mon Feb 22 2021 Kalev Lember klember@redhat.com - 0.8.2-3 - Use ldc_arches macro rather than hardcoding supported arches +- Rebuilt for ldc 1.25
* Tue Jan 26 2021 Fedora Release Engineering releng@fedoraproject.org - 0.8.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
commit 57c6e2e65968eb678db2d9ec15f37b29d151f6a1 Author: Kalev Lember klember@redhat.com Date: Mon Feb 22 16:28:26 2021 +0100
Use ldc_arches macro rather than hardcoding supported arches
diff --git a/appstream-generator.spec b/appstream-generator.spec index f021b86..95b3892 100644 --- a/appstream-generator.spec +++ b/appstream-generator.spec @@ -6,7 +6,7 @@
Name: appstream-generator Version: 0.8.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Fast AppStream metadata generator
License: LGPLv3+ and MIT @@ -60,8 +60,7 @@ Requires: js-highlight Requires: js-jquery %endif
-# These are the only architectures upstream supports currently... -ExclusiveArch: x86_64 %{ix86} %{arm} +ExclusiveArch: %{ldc_arches}
Recommends: optipng
@@ -123,6 +122,9 @@ install contrib/setup/node_modules/jquery-flot/jquery.flot*.js -t %{buildroot}%{ %{_datadir}/metainfo/org.freedesktop.appstream.generator.metainfo.xml
%changelog +* Mon Feb 22 2021 Kalev Lember klember@redhat.com - 0.8.2-3 +- Use ldc_arches macro rather than hardcoding supported arches + * Tue Jan 26 2021 Fedora Release Engineering releng@fedoraproject.org - 0.8.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
commit 610582c18dffd7cf3bbd430d59dd05a4166c4b14 Author: Fedora Release Engineering releng@fedoraproject.org Date: Tue Jan 26 00:19:16 2021 +0000
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
Signed-off-by: Fedora Release Engineering releng@fedoraproject.org
diff --git a/appstream-generator.spec b/appstream-generator.spec index c780e54..f021b86 100644 --- a/appstream-generator.spec +++ b/appstream-generator.spec @@ -6,7 +6,7 @@
Name: appstream-generator Version: 0.8.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Fast AppStream metadata generator
License: LGPLv3+ and MIT @@ -123,6 +123,9 @@ install contrib/setup/node_modules/jquery-flot/jquery.flot*.js -t %{buildroot}%{ %{_datadir}/metainfo/org.freedesktop.appstream.generator.metainfo.xml
%changelog +* Tue Jan 26 2021 Fedora Release Engineering releng@fedoraproject.org - 0.8.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Mon Sep 21 2020 Neal Gompa ngompa13@gmail.com - 0.8.2-1 - Update to 0.8.2 (#1834975)
arch-excludes@lists.fedoraproject.org