The package rpms/xrdp.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/xrdp.git/commit/?id=24c536a7243c1b73....
Change: +ExcludeArch: ppc64le s390x
Thanks.
Full change: ============
commit 9f02eae37082d577ff0d440b511c478a2cbd17c5 Author: Bojan Smojver bojan@rexursive.com Date: Mon Aug 31 21:54:13 2020 +1000
Only exclude s390x and ppc64le on Fedora 34 and above.
diff --git a/xrdp.spec b/xrdp.spec index aa05ad5..5a29349 100644 --- a/xrdp.spec +++ b/xrdp.spec @@ -34,7 +34,9 @@ Patch6: xrdp-0.9.14-log-snprintf.patch Patch7: xrdp-0.9.14-xfree86-evdev.patch Patch8: xrdp-0.9.14-fuse-pointer.patch
+%if 0%{?fedora} >= 34 ExcludeArch: ppc64le s390x +%endif
BuildRequires: gcc BuildRequires: libX11-devel
commit 24c536a7243c1b73c36d311bb7a3bf5effd9099e Author: Bojan Smojver bojan@rexursive.com Date: Mon Aug 31 21:28:01 2020 +1000
Exclude ppc64le and s390x for now.
diff --git a/xrdp-0.9.14-arch.patch b/xrdp-0.9.14-arch.patch deleted file mode 100644 index b2597c9..0000000 --- a/xrdp-0.9.14-arch.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff -ruN xrdp-0.9.14-v/common/arch.h xrdp-0.9.14/common/arch.h ---- xrdp-0.9.14-v/common/arch.h 2020-06-26 21:13:58.000000000 +1000 -+++ xrdp-0.9.14/common/arch.h 2020-08-31 20:50:39.860660903 +1000 -@@ -80,7 +80,8 @@ - defined(__AIX__) || defined(__mips__) || \ - defined(__ia64__) || defined(__arm__) || \ - (defined(__PPC__) && defined(__BIG_ENDIAN__)) || \ -- (defined(__ppc__) && defined(__BIG_ENDIAN__)) -+ (defined(__ppc__) && defined(__BIG_ENDIAN__)) || \ -+ defined(__ppc64__) || defined(__s390__) - #define NEED_ALIGN - #elif defined(__x86__) || defined(__x86_64__) || \ - defined(__AMD64__) || defined(_M_IX86) || defined (_M_AMD64) || \ diff --git a/xrdp.spec b/xrdp.spec index 37b7589..aa05ad5 100644 --- a/xrdp.spec +++ b/xrdp.spec @@ -33,7 +33,8 @@ Patch5: xrdp-0.9.6-script-interpreter.patch Patch6: xrdp-0.9.14-log-snprintf.patch Patch7: xrdp-0.9.14-xfree86-evdev.patch Patch8: xrdp-0.9.14-fuse-pointer.patch -Patch9: xrdp-0.9.14-arch.patch + +ExcludeArch: ppc64le s390x
BuildRequires: gcc BuildRequires: libX11-devel
commit 7a6ace4d323953bc947c3a592ff54abbede8d2b2 Author: Bojan Smojver bojan@rexursive.com Date: Mon Aug 31 21:20:36 2020 +1000
Try slightly different arch macros.
diff --git a/xrdp-0.9.14-arch.patch b/xrdp-0.9.14-arch.patch index cee81dc..b2597c9 100644 --- a/xrdp-0.9.14-arch.patch +++ b/xrdp-0.9.14-arch.patch @@ -7,7 +7,7 @@ diff -ruN xrdp-0.9.14-v/common/arch.h xrdp-0.9.14/common/arch.h (defined(__PPC__) && defined(__BIG_ENDIAN__)) || \ - (defined(__ppc__) && defined(__BIG_ENDIAN__)) + (defined(__ppc__) && defined(__BIG_ENDIAN__)) || \ -+ defined(__ppc64le__) || defined(__s390x__) ++ defined(__ppc64__) || defined(__s390__) #define NEED_ALIGN #elif defined(__x86__) || defined(__x86_64__) || \ defined(__AMD64__) || defined(_M_IX86) || defined (_M_AMD64) || \
commit aad790d02dcfae7790a51314b4353d04e09e89e9 Author: Bojan Smojver bojan@rexursive.com Date: Mon Aug 31 20:57:54 2020 +1000
Fix missing bracket in arch patch.
diff --git a/xrdp-0.9.14-arch.patch b/xrdp-0.9.14-arch.patch index af229b3..cee81dc 100644 --- a/xrdp-0.9.14-arch.patch +++ b/xrdp-0.9.14-arch.patch @@ -7,7 +7,7 @@ diff -ruN xrdp-0.9.14-v/common/arch.h xrdp-0.9.14/common/arch.h (defined(__PPC__) && defined(__BIG_ENDIAN__)) || \ - (defined(__ppc__) && defined(__BIG_ENDIAN__)) + (defined(__ppc__) && defined(__BIG_ENDIAN__)) || \ -+ defined(__ppc64le__ || defined(__s390x__) ++ defined(__ppc64le__) || defined(__s390x__) #define NEED_ALIGN #elif defined(__x86__) || defined(__x86_64__) || \ defined(__AMD64__) || defined(_M_IX86) || defined (_M_AMD64) || \
commit 751c5c3ced83c02f6cea7b4063a0df2b00578237 Author: Bojan Smojver bojan@rexursive.com Date: Mon Aug 31 20:51:45 2020 +1000
Add ppc64le and s390x arch, as needing alignment (hopefully true).
diff --git a/xrdp-0.9.14-arch.patch b/xrdp-0.9.14-arch.patch new file mode 100644 index 0000000..af229b3 --- /dev/null +++ b/xrdp-0.9.14-arch.patch @@ -0,0 +1,13 @@ +diff -ruN xrdp-0.9.14-v/common/arch.h xrdp-0.9.14/common/arch.h +--- xrdp-0.9.14-v/common/arch.h 2020-06-26 21:13:58.000000000 +1000 ++++ xrdp-0.9.14/common/arch.h 2020-08-31 20:50:39.860660903 +1000 +@@ -80,7 +80,8 @@ + defined(__AIX__) || defined(__mips__) || \ + defined(__ia64__) || defined(__arm__) || \ + (defined(__PPC__) && defined(__BIG_ENDIAN__)) || \ +- (defined(__ppc__) && defined(__BIG_ENDIAN__)) ++ (defined(__ppc__) && defined(__BIG_ENDIAN__)) || \ ++ defined(__ppc64le__ || defined(__s390x__) + #define NEED_ALIGN + #elif defined(__x86__) || defined(__x86_64__) || \ + defined(__AMD64__) || defined(_M_IX86) || defined (_M_AMD64) || \ diff --git a/xrdp.spec b/xrdp.spec index 5462579..37b7589 100644 --- a/xrdp.spec +++ b/xrdp.spec @@ -33,6 +33,7 @@ Patch5: xrdp-0.9.6-script-interpreter.patch Patch6: xrdp-0.9.14-log-snprintf.patch Patch7: xrdp-0.9.14-xfree86-evdev.patch Patch8: xrdp-0.9.14-fuse-pointer.patch +Patch9: xrdp-0.9.14-arch.patch
BuildRequires: gcc BuildRequires: libX11-devel
commit 717065fa31cfc63e054ceab0651880d987ec8a1c Author: Bojan Smojver bojan@rexursive.com Date: Mon Aug 31 20:26:23 2020 +1000
Fix patch numbering.
diff --git a/xrdp.spec b/xrdp.spec index aea5530..5462579 100644 --- a/xrdp.spec +++ b/xrdp.spec @@ -32,7 +32,7 @@ Patch4: xrdp-0.9.10-scripts-libexec.patch Patch5: xrdp-0.9.6-script-interpreter.patch Patch6: xrdp-0.9.14-log-snprintf.patch Patch7: xrdp-0.9.14-xfree86-evdev.patch -Patch7: xrdp-0.9.14-fuse-pointer.patch +Patch8: xrdp-0.9.14-fuse-pointer.patch
BuildRequires: gcc BuildRequires: libX11-devel
commit 7f91e143e3f3b90bc5409870cf1b2592826ad495 Author: Bojan Smojver bojan@rexursive.com Date: Mon Aug 31 20:25:25 2020 +1000
Try to fix fuse pointer warnings.
diff --git a/xrdp-0.9.14-fuse-pointer.patch b/xrdp-0.9.14-fuse-pointer.patch new file mode 100644 index 0000000..6e42d7a --- /dev/null +++ b/xrdp-0.9.14-fuse-pointer.patch @@ -0,0 +1,39 @@ +diff -ruN xrdp-0.9.14-v/sesman/chansrv/chansrv_fuse.c xrdp-0.9.14/sesman/chansrv/chansrv_fuse.c +--- xrdp-0.9.14-v/sesman/chansrv/chansrv_fuse.c 2020-06-26 21:13:58.000000000 +1000 ++++ xrdp-0.9.14/sesman/chansrv/chansrv_fuse.c 2020-08-31 20:24:21.516983364 +1000 +@@ -1607,7 +1607,7 @@ + log_error("inode %ld is not valid", ino); + fuse_reply_err(req, ENOENT); + } +- else if ((dh = (struct xfs_dir_handle *) fi->fh) == NULL) ++ else if ((dh = (struct xfs_dir_handle *) (unsigned long)fi->fh) == NULL) + { + /* something seriously wrong somewhere! */ + fuse_reply_buf(req, 0, 0); +@@ -2095,7 +2095,7 @@ + + log_debug("want_bytes %zd bytes at off %lld", size, (long long) off); + +- if ((fh = (XFUSE_HANDLE *)fi->fh) == NULL) ++ if ((fh = (XFUSE_HANDLE *) (unsigned long)fi->fh) == NULL) + { + fuse_reply_err(req, EINVAL); + } +@@ -2168,7 +2168,7 @@ + log_debug("write %zd bytes at off %lld to inode=%ld", + size, (long long) off, ino); + +- if ((fh = (XFUSE_HANDLE *)fi->fh) == NULL) ++ if ((fh = (XFUSE_HANDLE *) (unsigned long)fi->fh) == NULL) + { + log_error("file handle fi->fh is NULL"); + fuse_reply_err(req, EINVAL); +@@ -2436,7 +2436,7 @@ + static void xfuse_cb_releasedir(fuse_req_t req, fuse_ino_t ino, + struct fuse_file_info *fi) + { +- struct xfs_dir_handle *dh = (struct xfs_dir_handle *) fi->fh; ++ struct xfs_dir_handle *dh = (struct xfs_dir_handle *) (unsigned long)fi->fh; + xfs_closedir(g_xfs, dh); + fuse_reply_err(req, 0); + } diff --git a/xrdp.spec b/xrdp.spec index a1ef5b9..aea5530 100644 --- a/xrdp.spec +++ b/xrdp.spec @@ -32,6 +32,7 @@ Patch4: xrdp-0.9.10-scripts-libexec.patch Patch5: xrdp-0.9.6-script-interpreter.patch Patch6: xrdp-0.9.14-log-snprintf.patch Patch7: xrdp-0.9.14-xfree86-evdev.patch +Patch7: xrdp-0.9.14-fuse-pointer.patch
BuildRequires: gcc BuildRequires: libX11-devel
commit eb5d092c15977f4a8831b73f4320ee9db1e37e28 Author: Bojan Smojver bojan@rexursive.com Date: Mon Aug 31 19:56:40 2020 +1000
Add patch for mismatch of xfree_to_evdev declarations.
diff --git a/xrdp-0.9.14-xfree86-evdev.patch b/xrdp-0.9.14-xfree86-evdev.patch new file mode 100644 index 0000000..6d2f0d8 --- /dev/null +++ b/xrdp-0.9.14-xfree86-evdev.patch @@ -0,0 +1,12 @@ +diff -ruN xrdp-0.9.14-v/genkeymap/genkeymap.c xrdp-0.9.14/genkeymap/genkeymap.c +--- xrdp-0.9.14-v/genkeymap/genkeymap.c 2020-08-26 12:32:21.000000000 +1000 ++++ xrdp-0.9.14/genkeymap/genkeymap.c 2020-08-31 19:55:04.773214339 +1000 +@@ -44,7 +44,7 @@ + #include <X11/XKBlib.h> + #include <locale.h> + +-extern int xfree86_to_evdev[137-8]; ++extern int xfree86_to_evdev[137-8+1]; + + int main(int argc, char **argv) + { diff --git a/xrdp.spec b/xrdp.spec index 95b1339..a1ef5b9 100644 --- a/xrdp.spec +++ b/xrdp.spec @@ -31,6 +31,7 @@ Patch3: xrdp-0.9.2-setpriv.patch Patch4: xrdp-0.9.10-scripts-libexec.patch Patch5: xrdp-0.9.6-script-interpreter.patch Patch6: xrdp-0.9.14-log-snprintf.patch +Patch7: xrdp-0.9.14-xfree86-evdev.patch
BuildRequires: gcc BuildRequires: libX11-devel
commit b9f38139973e6a32f6c8caae7628428303dd37f0 Author: Bojan Smojver bojan@rexursive.com Date: Mon Aug 31 19:47:59 2020 +1000
Adjust snprintf() log patch to use absolute values only.
diff --git a/xrdp-0.9.14-log-snprintf.patch b/xrdp-0.9.14-log-snprintf.patch index 5b57019..41c5548 100644 --- a/xrdp-0.9.14-log-snprintf.patch +++ b/xrdp-0.9.14-log-snprintf.patch @@ -1,7 +1,7 @@ diff -ruN xrdp-0.9.14-v/common/log.c xrdp-0.9.14/common/log.c --- xrdp-0.9.14-v/common/log.c 2020-08-26 12:32:21.000000000 +1000 -+++ xrdp-0.9.14/common/log.c 2020-08-31 19:23:06.347581743 +1000 -@@ -555,9 +555,10 @@ ++++ xrdp-0.9.14/common/log.c 2020-08-31 19:47:18.283542606 +1000 +@@ -555,9 +555,11 @@ now_t = time(&now_t); now = localtime(&now_t);
@@ -9,9 +9,10 @@ diff -ruN xrdp-0.9.14-v/common/log.c xrdp-0.9.14/common/log.c - now->tm_mon + 1, now->tm_mday, now->tm_hour, now->tm_min, - now->tm_sec); + snprintf(buff, 21, "[%.4d%.2d%.2d-%.2d:%.2d:%.2d] ", -+ (now->tm_year + 1900) % 10000, -+ (now->tm_mon + 1) % 100, now->tm_mday % 100, now->tm_hour % 100, -+ now->tm_min % 100, now->tm_sec % 100); ++ abs((now->tm_year + 1900) % 10000), ++ abs((now->tm_mon + 1) % 100), abs(now->tm_mday % 100), ++ abs(now->tm_hour % 100), abs(now->tm_min % 100), ++ abs(now->tm_sec % 100));
internal_log_lvl2str(lvl, buff + 20);
commit 6c60f795c67ea67eeea7bee57da4fa218ed95792 Author: Bojan Smojver bojan@rexursive.com Date: Mon Aug 31 19:24:54 2020 +1000
Add patch for snprintf() truncation in logging.
diff --git a/xrdp-0.9.14-log-snprintf.patch b/xrdp-0.9.14-log-snprintf.patch new file mode 100644 index 0000000..5b57019 --- /dev/null +++ b/xrdp-0.9.14-log-snprintf.patch @@ -0,0 +1,17 @@ +diff -ruN xrdp-0.9.14-v/common/log.c xrdp-0.9.14/common/log.c +--- xrdp-0.9.14-v/common/log.c 2020-08-26 12:32:21.000000000 +1000 ++++ xrdp-0.9.14/common/log.c 2020-08-31 19:23:06.347581743 +1000 +@@ -555,9 +555,10 @@ + now_t = time(&now_t); + now = localtime(&now_t); + +- snprintf(buff, 21, "[%.4d%.2d%.2d-%.2d:%.2d:%.2d] ", now->tm_year + 1900, +- now->tm_mon + 1, now->tm_mday, now->tm_hour, now->tm_min, +- now->tm_sec); ++ snprintf(buff, 21, "[%.4d%.2d%.2d-%.2d:%.2d:%.2d] ", ++ (now->tm_year + 1900) % 10000, ++ (now->tm_mon + 1) % 100, now->tm_mday % 100, now->tm_hour % 100, ++ now->tm_min % 100, now->tm_sec % 100); + + internal_log_lvl2str(lvl, buff + 20); + diff --git a/xrdp.spec b/xrdp.spec index e0d2f95..95b1339 100644 --- a/xrdp.spec +++ b/xrdp.spec @@ -30,6 +30,7 @@ Patch2: xrdp-0.9.4-service.patch Patch3: xrdp-0.9.2-setpriv.patch Patch4: xrdp-0.9.10-scripts-libexec.patch Patch5: xrdp-0.9.6-script-interpreter.patch +Patch6: xrdp-0.9.14-log-snprintf.patch
BuildRequires: gcc BuildRequires: libX11-devel
commit 0698533d4023215d6ac1463cc6c597f51bcb4806 Author: Bojan Smojver bojan@rexursive.com Date: Mon Aug 31 18:00:45 2020 +1000
Adjust patch version for xrdp.ini.
diff --git a/xrdp.spec b/xrdp.spec index 6d18a49..e0d2f95 100644 --- a/xrdp.spec +++ b/xrdp.spec @@ -25,7 +25,7 @@ Source5: README.Fedora Source6: xrdp.te Source7: xrdp-polkit-1.rules Patch0: xrdp-0.9.9-sesman.patch -Patch1: xrdp-0.9.11-xrdp-ini.patch +Patch1: xrdp-0.9.14-xrdp-ini.patch Patch2: xrdp-0.9.4-service.patch Patch3: xrdp-0.9.2-setpriv.patch Patch4: xrdp-0.9.10-scripts-libexec.patch
commit 8dcc5c2dc5c47c86675d221c660aeac3da112c0f Author: Bojan Smojver bojan@rexursive.com Date: Mon Aug 31 18:00:01 2020 +1000
Clean up xrdp.ini patch.
diff --git a/xrdp-0.9.11-xrdp-ini.patch b/xrdp-0.9.14-xrdp-ini.patch similarity index 81% rename from xrdp-0.9.11-xrdp-ini.patch rename to xrdp-0.9.14-xrdp-ini.patch index 469f4d1..f592102 100644 --- a/xrdp-0.9.11-xrdp-ini.patch +++ b/xrdp-0.9.14-xrdp-ini.patch @@ -1,6 +1,6 @@ -diff -ruN xrdp-0.9.11-v/xrdp/xrdp.ini xrdp-0.9.11/xrdp/xrdp.ini ---- xrdp-0.9.11-v/xrdp/xrdp.ini 2019-08-20 01:41:37.000000000 +1000 -+++ xrdp-0.9.11/xrdp/xrdp.ini 2019-09-15 21:30:19.352135681 +1000 +diff -ruN xrdp-0.9.14-v/xrdp/xrdp.ini xrdp-0.9.14/xrdp/xrdp.ini +--- xrdp-0.9.14-v/xrdp/xrdp.ini 2020-08-31 16:33:40.000000000 +1000 ++++ xrdp-0.9.14/xrdp/xrdp.ini 2020-08-31 17:57:37.560243121 +1000 @@ -178,14 +178,14 @@ ; Some session types such as Xorg, X11rdp and Xvnc start a display server. ; Startup command-line parameters for the display server are configured @@ -24,9 +24,9 @@ diff -ruN xrdp-0.9.11-v/xrdp/xrdp.ini xrdp-0.9.11/xrdp/xrdp.ini
[Xvnc] name=Xvnc -@@ -197,25 +197,25 @@ - #xserverbpp=24 - #delay_ms=2000 +@@ -201,25 +201,25 @@ + #disabled_encodings_mask=0 +
-[vnc-any] -name=vnc-any
commit 19eec6ad1049929ccc3360fc1a9e6e05a044179f Author: Bojan Smojver bojan@rexursive.com Date: Mon Aug 31 17:53:43 2020 +1000
Bump up to 0.9.14.
diff --git a/.gitignore b/.gitignore index d6074db..f5f8d8a 100644 --- a/.gitignore +++ b/.gitignore @@ -17,3 +17,4 @@ xrdp-cvs-03-17-2010.tar.gz /xrdp-0.9.12.tar.gz /xrdp-0.9.13.tar.gz /xrdp-0.9.13.1.tar.gz +/xrdp-0.9.14.tar.gz diff --git a/sources b/sources index 2dbd3c3..92eda94 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (xrdp-0.9.13.1.tar.gz) = 36350aaf4bf4b49907cb31fd15c375a50a0d13d4b66aa14982c9d4da64212395391ff7e169def853337ef97960a109d6d7c85d510834fac44de12caed3632a26 +SHA512 (xrdp-0.9.14.tar.gz) = 5c0a8f8b25e8482ac871e227227c030521df5af2bb7ab0f5000888a02969aae8c275e7b9b1b1d42cb83ffd86e6dc1f9eef1b254bf3984f9a1eb48623bfb0a2ef diff --git a/xrdp.spec b/xrdp.spec index 1836e77..6d18a49 100644 --- a/xrdp.spec +++ b/xrdp.spec @@ -12,8 +12,8 @@ Summary: Open source remote desktop protocol (RDP) server Name: xrdp Epoch: 1 -Version: 0.9.13.1 -Release: 3%{?dist} +Version: 0.9.14 +Release: 1%{?dist} License: ASL 2.0 and GPLv2+ and MIT URL: http://www.xrdp.org/ Source0: https://github.com/neutrinolabs/xrdp/releases/download/v%%7Bversion%7D/xrdp-... @@ -275,6 +275,9 @@ fi %{_datadir}/selinux/*/%{name}.pp
%changelog +* Mon Aug 31 2020 Bojan Smojver bojan@rexurive.com - 1:0.9.14-1 +- Bump up to 0.9.14 + * Sat Aug 01 2020 Fedora Release Engineering releng@fedoraproject.org - 1:0.9.13.1-3 - Second attempt - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
commit 9c711329715ab816cc449f119e49b1508fda1f0e Author: Fedora Release Engineering releng@fedoraproject.org Date: Sat Aug 1 09:48:22 2020 +0000
- Second attempt - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
Signed-off-by: Fedora Release Engineering releng@fedoraproject.org
diff --git a/xrdp.spec b/xrdp.spec index a804f13..1836e77 100644 --- a/xrdp.spec +++ b/xrdp.spec @@ -13,7 +13,7 @@ Summary: Open source remote desktop protocol (RDP) server Name: xrdp Epoch: 1 Version: 0.9.13.1 -Release: 2%{?dist} +Release: 3%{?dist} License: ASL 2.0 and GPLv2+ and MIT URL: http://www.xrdp.org/ Source0: https://github.com/neutrinolabs/xrdp/releases/download/v%%7Bversion%7D/xrdp-... @@ -275,6 +275,10 @@ fi %{_datadir}/selinux/*/%{name}.pp
%changelog +* Sat Aug 01 2020 Fedora Release Engineering releng@fedoraproject.org - 1:0.9.13.1-3 +- Second attempt - Rebuilt for + https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Wed Jul 29 2020 Fedora Release Engineering releng@fedoraproject.org - 1:0.9.13.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
commit 83bc43642cc17c02cf517feba71fa37623166fea Author: Fedora Release Engineering releng@fedoraproject.org Date: Wed Jul 29 15:04:00 2020 +0000
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
Signed-off-by: Fedora Release Engineering releng@fedoraproject.org
diff --git a/xrdp.spec b/xrdp.spec index 4a9311c..a804f13 100644 --- a/xrdp.spec +++ b/xrdp.spec @@ -13,7 +13,7 @@ Summary: Open source remote desktop protocol (RDP) server Name: xrdp Epoch: 1 Version: 0.9.13.1 -Release: 1%{?dist} +Release: 2%{?dist} License: ASL 2.0 and GPLv2+ and MIT URL: http://www.xrdp.org/ Source0: https://github.com/neutrinolabs/xrdp/releases/download/v%%7Bversion%7D/xrdp-... @@ -275,6 +275,9 @@ fi %{_datadir}/selinux/*/%{name}.pp
%changelog +* Wed Jul 29 2020 Fedora Release Engineering releng@fedoraproject.org - 1:0.9.13.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Tue Jun 30 2020 Bojan Smojver bojan@rexurive.com - 1:0.9.13.1-1 - Bump up to 0.9.13.1 - CVE-2022-4044
arch-excludes@lists.fedoraproject.org