Compare commits
10 Commits
05857b9224
...
3f2b82ce95
Author | SHA1 | Date | |
---|---|---|---|
|
3f2b82ce95 | ||
|
2cc1f025f7 | ||
|
8d30860c48 | ||
|
2891d49a53 | ||
|
abdf2ecbef | ||
|
4b80fc3c5f | ||
|
8abd3891e4 | ||
|
7a1d427dc2 | ||
|
c6eb32c54e | ||
|
8b1e0da00e |
2
.gitignore
vendored
2
.gitignore
vendored
@ -26,3 +26,5 @@ xrdp-cvs-03-17-2010.tar.gz
|
||||
/xrdp-0.9.20.tar.gz
|
||||
/xrdp-0.9.21.tar.gz
|
||||
/xrdp-0.9.22.tar.gz
|
||||
/xrdp-0.9.22.1.tar.gz
|
||||
/xrdp-0.9.23.tar.gz
|
||||
|
2
sources
2
sources
@ -1 +1 @@
|
||||
SHA512 (xrdp-0.9.22.tar.gz) = 9bef87d7fdf1fe0321c5091471f17b3148891a7ef9036ec08f84e4193b4ccb104879e2fcb556672f50d1f6d0e2c49e6193d142ff3ec756b20bc3929b928dfe78
|
||||
SHA512 (xrdp-0.9.23.tar.gz) = 95d20e9f8aedb9d5d77d5103f58190232e2d510f8d77a4dae5d764ac61b18a5a2d1a2ec0c857da38940c9c10e930204b87e2e39dfc7b512d05124a613a5b79bd
|
||||
|
16
xrdp-0.9.22.1-no-c99.patch
Normal file
16
xrdp-0.9.22.1-no-c99.patch
Normal file
@ -0,0 +1,16 @@
|
||||
diff -rup xrdp-0.9.22.1-v/sesman/chansrv/sound.c xrdp-0.9.22.1/sesman/chansrv/sound.c
|
||||
--- xrdp-0.9.22.1-v/sesman/chansrv/sound.c 2023-05-23 10:18:50.000000000 +1000
|
||||
+++ xrdp-0.9.22.1/sesman/chansrv/sound.c 2023-05-23 12:35:50.273215167 +1000
|
||||
@@ -1116,9 +1116,11 @@ process_pcm_message(int id, int size, st
|
||||
char *buf = (char *) g_malloc(g_bbuf_size, 0);
|
||||
if (buf != NULL)
|
||||
{
|
||||
+ int i;
|
||||
+
|
||||
silence_start_time = g_time3();
|
||||
sending_silence = 1;
|
||||
- for (int i = 0; i < send_silence_times; i++)
|
||||
+ for (i = 0; i < send_silence_times; i++)
|
||||
{
|
||||
g_memset(buf, 0, g_bbuf_size);
|
||||
sound_send_wave_data_chunk(buf, g_bbuf_size);
|
167
xrdp.spec
167
xrdp.spec
@ -16,8 +16,8 @@
|
||||
Summary: Open source remote desktop protocol (RDP) server
|
||||
Name: xrdp
|
||||
Epoch: 1
|
||||
Version: 0.9.22
|
||||
Release: 4%{?dist}
|
||||
Version: 0.9.23
|
||||
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%{version}/xrdp-%{version}.tar.gz
|
||||
@ -38,6 +38,9 @@ Patch6: xrdp-0.9.18-vnc-uninit.patch
|
||||
%if 0%{?fedora} >= 32 || 0%{?rhel} >= 8
|
||||
Patch7: xrdp-0.9.20-sesman-ini.patch
|
||||
%endif
|
||||
%if ! 0%{?fedora} && 0%{?rhel} <= 7
|
||||
Patch8: xrdp-0.9.22.1-no-c99.patch
|
||||
%endif
|
||||
|
||||
BuildRequires: make
|
||||
BuildRequires: gcc
|
||||
@ -78,6 +81,8 @@ Requires(posttrans): systemd
|
||||
%package devel
|
||||
Summary: Headers and pkg-config files needed to compile xrdp backends
|
||||
|
||||
Requires: %{name} = %{epoch}:%{version}-%{release}
|
||||
|
||||
%description
|
||||
xrdp provides a fully functional RDP server compatible with a wide range
|
||||
of RDP clients, including FreeRDP and Microsoft RDP client.
|
||||
@ -254,7 +259,9 @@ fi
|
||||
%{_mandir}/man5/*
|
||||
%{_mandir}/man8/*
|
||||
%{_mandir}/man1/*
|
||||
%{_libdir}/librfxencode.so*
|
||||
%{_libdir}/xrdp/lib*.so*
|
||||
%exclude %{_libdir}/librfxencode.so
|
||||
%exclude %{_libdir}/xrdp/libcommon.so
|
||||
%exclude %{_libdir}/xrdp/libscp.so
|
||||
%exclude %{_libdir}/xrdp/libxrdp.so
|
||||
@ -278,10 +285,12 @@ fi
|
||||
%{_includedir}/ms-*
|
||||
%{_includedir}/xrdp*
|
||||
%{_includedir}/rfxcodec_*.h
|
||||
%{_libdir}/librfxencode.so
|
||||
%{_libdir}/xrdp/libcommon.so
|
||||
%{_libdir}/xrdp/libscp.so
|
||||
%{_libdir}/xrdp/libxrdp.so
|
||||
%{_libdir}/xrdp/libxrdpapi.so
|
||||
%{_libdir}/pkgconfig/rfxcodec.pc
|
||||
%{_libdir}/pkgconfig/xrdp.pc
|
||||
|
||||
%files selinux
|
||||
@ -289,94 +298,114 @@ fi
|
||||
%{_datadir}/selinux/*/%{name}.pp
|
||||
|
||||
%changelog
|
||||
* Wed May 17 2023 Bojan Smojver <bojan@rexurive.com> - 1:0.9.22-4
|
||||
- Put back .so files into %%libdir/xrdp directory
|
||||
* Fri Sep 1 2023 Bojan Smojver <bojan@rexursive.com> - 1:0.9.23-1
|
||||
- Update to 0.9.23
|
||||
- CVE-2023-40184
|
||||
|
||||
* Sat Jul 22 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1:0.9.22.1-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
* Tue Jun 13 2023 Leigh Scott <leigh123linux@gmail.com> - 1:0.9.22.1-3
|
||||
- Rebuild fo new imlib2
|
||||
|
||||
* Tue May 23 2023 Bojan Smojver <bojan@rexursive.com> - 1:0.9.22.1-2
|
||||
- Remove C99 loop initialisation on EPEL7
|
||||
|
||||
* Tue May 23 2023 Bojan Smojver <bojan@rexursive.com> - 1:0.9.22.1-1
|
||||
- Update to 0.9.22.1
|
||||
|
||||
* Fri May 19 2023 Bojan Smojver <bojan@rexursive.com> - 1:0.9.22-5
|
||||
- Patch session chooser segfault
|
||||
- Bugs #2208015 and #2208248
|
||||
|
||||
* Wed May 17 2023 Bojan Smojver <bojan@rexursive.com> - 1:0.9.22-4
|
||||
- Put back .so files into %%_libdir/xrdp directory
|
||||
- Bug #2207733
|
||||
|
||||
* Mon May 8 2023 Bojan Smojver <bojan@rexurive.com> - 1:0.9.22-3
|
||||
* Mon May 8 2023 Bojan Smojver <bojan@rexursive.com> - 1:0.9.22-3
|
||||
- Exclude rfxcodec.pc - shared library no longer created
|
||||
|
||||
* Sun May 7 2023 Bojan Smojver <bojan@rexurive.com> - 1:0.9.22-2
|
||||
* Sun May 7 2023 Bojan Smojver <bojan@rexursive.com> - 1:0.9.22-2
|
||||
- Explicitly exclude .la files on RHEL
|
||||
|
||||
* Sun May 7 2023 Bojan Smojver <bojan@rexurive.com> - 1:0.9.22-1
|
||||
* Sun May 7 2023 Bojan Smojver <bojan@rexursive.com> - 1:0.9.22-1
|
||||
- Bump up to 0.9.22
|
||||
|
||||
* Sat Jan 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1:0.9.21-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Sun Dec 11 2022 Bojan Smojver <bojan@rexurive.com> - 1:0.9.21-1
|
||||
* Sun Dec 11 2022 Bojan Smojver <bojan@rexursive.com> - 1:0.9.21-1
|
||||
- Bump up to 0.9.21
|
||||
- CVE-2022-23468 CVE-2022-23477 CVE-2022-23478 CVE-2022-23479 CVE-2022-23480
|
||||
- CVE-2022-23481 CVE-2022-23483 CVE-2022-23482 CVE-2022-23484 CVE-2022-23493
|
||||
|
||||
* Thu Sep 15 2022 Bojan Smojver <bojan@rexurive.com> - 1:0.9.20-1
|
||||
* Thu Sep 15 2022 Bojan Smojver <bojan@rexursive.com> - 1:0.9.20-1
|
||||
- Bump up to 0.9.20
|
||||
|
||||
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1:0.9.19-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Thu Mar 17 2022 Bojan Smojver <bojan@rexurive.com> - 1:0.9.19-1
|
||||
* Thu Mar 17 2022 Bojan Smojver <bojan@rexursive.com> - 1:0.9.19-1
|
||||
- Bump up to 0.9.19
|
||||
|
||||
* Tue Feb 8 2022 Bojan Smojver <bojan@rexurive.com> - 1:0.9.18-5
|
||||
* Tue Feb 8 2022 Bojan Smojver <bojan@rexursive.com> - 1:0.9.18-5
|
||||
- Add patch for CVE-2022-23613
|
||||
|
||||
* Sat Jan 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1:0.9.18-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Fri Jan 14 2022 Bojan Smojver <bojan@rexurive.com> - 1:0.9.18-3
|
||||
* Fri Jan 14 2022 Bojan Smojver <bojan@rexursive.com> - 1:0.9.18-3
|
||||
- Add patch for imlib2 on RHEL7/8
|
||||
|
||||
* Wed Jan 12 2022 Bojan Smojver <bojan@rexurive.com> - 1:0.9.18-2
|
||||
* Wed Jan 12 2022 Bojan Smojver <bojan@rexursive.com> - 1:0.9.18-2
|
||||
- Bump release up for rebuild
|
||||
|
||||
* Tue Jan 11 2022 Bojan Smojver <bojan@rexurive.com> - 1:0.9.18-1
|
||||
* Tue Jan 11 2022 Bojan Smojver <bojan@rexursive.com> - 1:0.9.18-1
|
||||
- Bump up to 0.9.18
|
||||
|
||||
* Sat Jan 8 2022 Bojan Smojver <bojan@rexurive.com> - 1:0.9.17-6
|
||||
* Sat Jan 8 2022 Bojan Smojver <bojan@rexursive.com> - 1:0.9.17-6
|
||||
- Adjust hardlink condition for EPEL 9
|
||||
|
||||
* Thu Dec 9 2021 Bojan Smojver <bojan@rexurive.com> - 1:0.9.17-5
|
||||
* Thu Dec 9 2021 Bojan Smojver <bojan@rexursive.com> - 1:0.9.17-5
|
||||
- Enable (experimental) IPv6 support (bug #2028630)
|
||||
|
||||
* Thu Nov 11 2021 Bojan Smojver <bojan@rexurive.com> - 1:0.9.17-4
|
||||
* Thu Nov 11 2021 Bojan Smojver <bojan@rexursive.com> - 1:0.9.17-4
|
||||
- Add -Wno-error=deprecated-declarations to CFLAGS to avoid build errors
|
||||
|
||||
* Tue Sep 14 2021 Sahana Prasad <sahana@redhat.com> - 1:0.9.17-3
|
||||
- Rebuilt with OpenSSL 3.0.0
|
||||
|
||||
* Mon Sep 6 2021 Bojan Smojver <bojan@rexurive.com> - 1:0.9.17-2
|
||||
* Mon Sep 6 2021 Bojan Smojver <bojan@rexursive.com> - 1:0.9.17-2
|
||||
- Trivially implement missing rfb_get_eds_status_msg() function
|
||||
|
||||
* Wed Sep 1 2021 Bojan Smojver <bojan@rexurive.com> - 1:0.9.17-1
|
||||
* Wed Sep 1 2021 Bojan Smojver <bojan@rexursive.com> - 1:0.9.17-1
|
||||
- Bump up to 0.9.17
|
||||
|
||||
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1:0.9.16-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Wed Jul 14 2021 Bojan Smojver <bojan@rexurive.com> - 1:0.9.16-2
|
||||
* Wed Jul 14 2021 Bojan Smojver <bojan@rexursive.com> - 1:0.9.16-2
|
||||
- Bring logrotate file in line with defaults (BZ #1977175).
|
||||
|
||||
* Sat May 1 2021 Bojan Smojver <bojan@rexurive.com> - 1:0.9.16-1
|
||||
* Sat May 1 2021 Bojan Smojver <bojan@rexursive.com> - 1:0.9.16-1
|
||||
- Bump up to 0.9.16
|
||||
|
||||
* Thu Jan 28 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1:0.9.15-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Sat Jan 2 2021 Bojan Smojver <bojan@rexurive.com> - 1:0.9.15-3
|
||||
* Sat Jan 2 2021 Bojan Smojver <bojan@rexursive.com> - 1:0.9.15-3
|
||||
- Remove setpriv patch and adjust SELinux policy to match
|
||||
|
||||
* Fri Jan 1 2021 Bojan Smojver <bojan@rexurive.com> - 1:0.9.15-2
|
||||
* Fri Jan 1 2021 Bojan Smojver <bojan@rexursive.com> - 1:0.9.15-2
|
||||
- Use /usr/libexec/Xorg or Xorg session of Fedora and RHEL8+
|
||||
|
||||
* Tue Dec 29 2020 Bojan Smojver <bojan@rexurive.com> - 1:0.9.15-1
|
||||
* Tue Dec 29 2020 Bojan Smojver <bojan@rexursive.com> - 1:0.9.15-1
|
||||
- Bump up to 0.9.15
|
||||
|
||||
* Tue Sep 1 2020 Bojan Smojver <bojan@rexurive.com> - 1:0.9.14-3
|
||||
* Tue Sep 1 2020 Bojan Smojver <bojan@rexursive.com> - 1:0.9.14-3
|
||||
- Add a patch for uninitialised variables, courtesy of Dan Horák
|
||||
|
||||
* Mon Aug 31 2020 Bojan Smojver <bojan@rexurive.com> - 1:0.9.14-2
|
||||
* Mon Aug 31 2020 Bojan Smojver <bojan@rexursive.com> - 1:0.9.14-2
|
||||
- Bump up to 0.9.14
|
||||
- Add a set of patches to deal with new GCC warnings/errors
|
||||
- Do not emit warning on failed architecture detection
|
||||
@ -389,14 +418,14 @@ fi
|
||||
* 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
|
||||
* Tue Jun 30 2020 Bojan Smojver <bojan@rexursive.com> - 1:0.9.13.1-1
|
||||
- Bump up to 0.9.13.1
|
||||
- CVE-2022-4044
|
||||
|
||||
* Thu May 14 2020 Bojan Smojver <bojan@rexurive.com> - 1:0.9.13-2
|
||||
* Thu May 14 2020 Bojan Smojver <bojan@rexursive.com> - 1:0.9.13-2
|
||||
- Move sockets to /run/xrdp, bug #1834178
|
||||
|
||||
* Wed Mar 11 2020 Bojan Smojver <bojan@rexurive.com> - 1:0.9.13-1
|
||||
* Wed Mar 11 2020 Bojan Smojver <bojan@rexursive.com> - 1:0.9.13-1
|
||||
- Bump up to 0.9.13
|
||||
|
||||
* Sat Feb 22 2020 Bojan Smojver <bojan@rexursive.com> - 1:0.9.12-6
|
||||
@ -406,98 +435,98 @@ fi
|
||||
* Thu Feb 20 2020 Tom Callaway <spot@fedoraproject.org> - 1:0.9.12-5
|
||||
- fix license tag (bz1804932)
|
||||
|
||||
* Thu Jan 30 2020 Bojan Smojver <bojan@rexurive.com> - 1:0.9.12-4
|
||||
* Thu Jan 30 2020 Bojan Smojver <bojan@rexursive.com> - 1:0.9.12-4
|
||||
- README.Fedora: VSOCK support
|
||||
- README.Fedora: possibly incorrect SELinux context of the sessions
|
||||
- Add polkit-1 rules for colord access and repo refresh
|
||||
|
||||
* Mon Jan 13 2020 Bojan Smojver <bojan@rexurive.com> - 1:0.9.12-3
|
||||
* Mon Jan 13 2020 Bojan Smojver <bojan@rexursive.com> - 1:0.9.12-3
|
||||
- Add vsock items to SELinux policy (thanks to mm19827 of gmail.com)
|
||||
|
||||
* Sun Jan 12 2020 Bojan Smojver <bojan@rexurive.com> - 1:0.9.12-2
|
||||
* Sun Jan 12 2020 Bojan Smojver <bojan@rexursive.com> - 1:0.9.12-2
|
||||
- Enable vsock (bug #1787953)
|
||||
|
||||
* Sun Dec 29 2019 Bojan Smojver <bojan@rexurive.com> - 1:0.9.12-1
|
||||
* Sun Dec 29 2019 Bojan Smojver <bojan@rexursive.com> - 1:0.9.12-1
|
||||
- Bump up to 0.9.12
|
||||
|
||||
* Mon Sep 23 2019 Bojan Smojver <bojan@rexurive.com> - 1:0.9.11-5
|
||||
* Mon Sep 23 2019 Bojan Smojver <bojan@rexursive.com> - 1:0.9.11-5
|
||||
- Make xrdp-selinux a weak dependency on versions that support them.
|
||||
- Drop xrdp-selinux dependency completely.
|
||||
|
||||
* Sun Sep 15 2019 Bojan Smojver <bojan@rexurive.com> - 1:0.9.11-3
|
||||
* Sun Sep 15 2019 Bojan Smojver <bojan@rexursive.com> - 1:0.9.11-3
|
||||
- Decouple xrdp from xorgxrdp, causing repeated installation issues in RHEL.
|
||||
|
||||
* Tue Aug 27 2019 Bojan Smojver <bojan@rexurive.com> - 1:0.9.11-2
|
||||
* Tue Aug 27 2019 Bojan Smojver <bojan@rexursive.com> - 1:0.9.11-2
|
||||
- Increment release for rebuild in F31.
|
||||
|
||||
* Thu Aug 22 2019 Bojan Smojver <bojan@rexurive.com> - 1:0.9.11-1
|
||||
* Thu Aug 22 2019 Bojan Smojver <bojan@rexursive.com> - 1:0.9.11-1
|
||||
- Bump up to 0.9.11
|
||||
|
||||
* Sat Aug 10 2019 Bojan Smojver <bojan@rexurive.com> - 1:0.9.10-3
|
||||
* Sat Aug 10 2019 Bojan Smojver <bojan@rexursive.com> - 1:0.9.10-3
|
||||
- Make sure rsakeys.ini exists (bug #1739176).
|
||||
|
||||
* Sat Jul 27 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1:0.9.10-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Fri May 3 2019 Bojan Smojver <bojan@rexurive.com> - 1:0.9.10-1
|
||||
* Fri May 3 2019 Bojan Smojver <bojan@rexursive.com> - 1:0.9.10-1
|
||||
- Bump up to 0.9.10
|
||||
|
||||
* Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1:0.9.9-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Fri Jan 11 2019 Bojan Smojver <bojan@rexurive.com> - 1:0.9.9-1
|
||||
* Fri Jan 11 2019 Bojan Smojver <bojan@rexursive.com> - 1:0.9.9-1
|
||||
- Bump up to 0.9.9
|
||||
- Fix sesman.ini patch
|
||||
- Fix xrdp.ini patch
|
||||
|
||||
* Wed Nov 14 2018 Bojan Smojver <bojan@rexurive.com> - 1:0.9.8-2
|
||||
* Wed Nov 14 2018 Bojan Smojver <bojan@rexursive.com> - 1:0.9.8-2
|
||||
- Make main and selinux packages codependent
|
||||
|
||||
* Wed Sep 26 2018 Bojan Smojver <bojan@rexurive.com> - 1:0.9.8-1
|
||||
* Wed Sep 26 2018 Bojan Smojver <bojan@rexursive.com> - 1:0.9.8-1
|
||||
- Bump up to 0.9.8
|
||||
|
||||
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1:0.9.7-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Wed Jul 4 2018 Bojan Smojver <bojan@rexurive.com> - 1:0.9.7-1
|
||||
* Wed Jul 4 2018 Bojan Smojver <bojan@rexursive.com> - 1:0.9.7-1
|
||||
- Bump up to 0.9.7
|
||||
|
||||
* Mon Apr 23 2018 Bojan Smojver <bojan@rexurive.com> - 1:0.9.6-4
|
||||
* Mon Apr 23 2018 Bojan Smojver <bojan@rexursive.com> - 1:0.9.6-4
|
||||
- mark files in /etc/xrdp/pulse as configs
|
||||
- add null command on postun, so that it is never empty
|
||||
|
||||
* Mon Apr 23 2018 Bojan Smojver <bojan@rexurive.com> - 1:0.9.6-3
|
||||
* Mon Apr 23 2018 Bojan Smojver <bojan@rexursive.com> - 1:0.9.6-3
|
||||
- mark files in /etc/xrdp as configs
|
||||
- run ldconfig
|
||||
- remove chmod of certs/keys
|
||||
- fix script interpreter
|
||||
|
||||
* Sun Apr 22 2018 Bojan Smojver <bojan@rexurive.com> - 1:0.9.6-2
|
||||
* Sun Apr 22 2018 Bojan Smojver <bojan@rexursive.com> - 1:0.9.6-2
|
||||
- Allow oddjob-mkhomedir in SELinux policy (stolen from grishin-a)
|
||||
- Allow no new privileges transition in SELinux policy
|
||||
|
||||
* Tue Mar 27 2018 Bojan Smojver <bojan@rexurive.com> - 1:0.9.6-1
|
||||
* Tue Mar 27 2018 Bojan Smojver <bojan@rexursive.com> - 1:0.9.6-1
|
||||
- Bump up to 0.9.6
|
||||
|
||||
* Fri Mar 9 2018 Bojan Smojver <bojan@rexurive.com> - 1:0.9.5-2
|
||||
* Fri Mar 9 2018 Bojan Smojver <bojan@rexursive.com> - 1:0.9.5-2
|
||||
- add gcc build requirement
|
||||
|
||||
* Fri Feb 09 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1:0.9.5-2
|
||||
- Escape macros in %%changelog
|
||||
|
||||
* Sat Dec 30 2017 Bojan Smojver <bojan@rexurive.com> - 1:0.9.5-1
|
||||
* Sat Dec 30 2017 Bojan Smojver <bojan@rexursive.com> - 1:0.9.5-1
|
||||
- Bump up to 0.9.5
|
||||
|
||||
* Fri Nov 24 2017 Bojan Smojver <bojan@rexurive.com> - 1:0.9.4-2
|
||||
* Fri Nov 24 2017 Bojan Smojver <bojan@rexursive.com> - 1:0.9.4-2
|
||||
- Patch CVE-2017-16927
|
||||
|
||||
* Fri Oct 6 2017 Bojan Smojver <bojan@rexurive.com> - 1:0.9.4-1
|
||||
* Fri Oct 6 2017 Bojan Smojver <bojan@rexursive.com> - 1:0.9.4-1
|
||||
- Bump up to 0.9.4
|
||||
|
||||
* Tue Sep 19 2017 Bojan Smojver <bojan@rexurive.com> - 1:0.9.3-2
|
||||
* Tue Sep 19 2017 Bojan Smojver <bojan@rexursive.com> - 1:0.9.3-2
|
||||
- Add patch to clean up sockets
|
||||
|
||||
* Thu Aug 10 2017 Bojan Smojver <bojan@rexurive.com> - 1:0.9.3-1
|
||||
* Thu Aug 10 2017 Bojan Smojver <bojan@rexursive.com> - 1:0.9.3-1
|
||||
- Bump up to 0.9.3
|
||||
|
||||
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:0.9.2-14
|
||||
@ -506,46 +535,46 @@ fi
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:0.9.2-13
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Thu May 18 2017 Bojan Smojver <bojan@rexurive.com> - 1:0.9.2-12
|
||||
* Thu May 18 2017 Bojan Smojver <bojan@rexursive.com> - 1:0.9.2-12
|
||||
- Document problems/workaround with clipboard support in TigerVNC 1.8.0
|
||||
|
||||
* Thu May 18 2017 Bojan Smojver <bojan@rexurive.com> - 1:0.9.2-11
|
||||
* Thu May 18 2017 Bojan Smojver <bojan@rexursive.com> - 1:0.9.2-11
|
||||
- Add a patch that allows equal signs in ini file values
|
||||
|
||||
* Thu Apr 13 2017 Bojan Smojver <bojan@rexurive.com> - 1:0.9.2-10
|
||||
* Thu Apr 13 2017 Bojan Smojver <bojan@rexursive.com> - 1:0.9.2-10
|
||||
- Use epoch in version dependency
|
||||
- Provide selinux sub-package scriptlets
|
||||
|
||||
* Thu Apr 13 2017 Bojan Smojver <bojan@rexurive.com> - 1:0.9.2-9
|
||||
* Thu Apr 13 2017 Bojan Smojver <bojan@rexursive.com> - 1:0.9.2-9
|
||||
- Adjust Fedora README file for SELinux changes
|
||||
|
||||
* Wed Apr 12 2017 Bojan Smojver <bojan@rexurive.com> - 1:0.9.2-8
|
||||
* Wed Apr 12 2017 Bojan Smojver <bojan@rexursive.com> - 1:0.9.2-8
|
||||
- Add SELinux policy sub-package
|
||||
|
||||
* Tue Apr 11 2017 Bojan Smojver <bojan@rexurive.com> - 1:0.9.2-7
|
||||
* Tue Apr 11 2017 Bojan Smojver <bojan@rexursive.com> - 1:0.9.2-7
|
||||
- Own /usr/libexec/xrdp directory
|
||||
|
||||
* Tue Apr 11 2017 Bojan Smojver <bojan@rexurive.com> - 1:0.9.2-6
|
||||
* Tue Apr 11 2017 Bojan Smojver <bojan@rexursive.com> - 1:0.9.2-6
|
||||
- Move scripts to /usr/libexec/xrdp, so that they get labelled as bin_t
|
||||
|
||||
* Sat Apr 8 2017 Bojan Smojver <bojan@rexurive.com> - 1:0.9.2-5
|
||||
* Sat Apr 8 2017 Bojan Smojver <bojan@rexursive.com> - 1:0.9.2-5
|
||||
- Rework call to Xorg to use setpriv instead, properly
|
||||
|
||||
* Fri Apr 7 2017 Bojan Smojver <bojan@rexurive.com> - 1:0.9.2-4
|
||||
* Fri Apr 7 2017 Bojan Smojver <bojan@rexursive.com> - 1:0.9.2-4
|
||||
- Do not call prctl() from xrdp, use setpriv instead
|
||||
|
||||
* Tue Apr 4 2017 Bojan Smojver <bojan@rexurive.com> - 1:0.9.2-3
|
||||
* Tue Apr 4 2017 Bojan Smojver <bojan@rexursive.com> - 1:0.9.2-3
|
||||
- Do not attempt xrdp restarts, may cause dnf transaction problems
|
||||
- Stop depending on Xorg server, xorgxrdp already does
|
||||
- Add README.Fedora
|
||||
|
||||
* Mon Apr 3 2017 Bojan Smojver <bojan@rexurive.com> - 1:0.9.2-2
|
||||
* Mon Apr 3 2017 Bojan Smojver <bojan@rexursive.com> - 1:0.9.2-2
|
||||
- Stop using /usr/libexec/Xorg, not present on EL7
|
||||
|
||||
* Fri Mar 31 2017 Bojan Smojver <bojan@rexurive.com> - 1:0.9.2-1
|
||||
* Fri Mar 31 2017 Bojan Smojver <bojan@rexursive.com> - 1:0.9.2-1
|
||||
- Bump up to 0.9.2
|
||||
|
||||
* Tue Mar 14 2017 Bojan Smojver <bojan@rexurive.com> - 1:0.9.1-8
|
||||
* Tue Mar 14 2017 Bojan Smojver <bojan@rexursive.com> - 1:0.9.1-8
|
||||
- Require tigervnc-server-minimal again, make it default
|
||||
- Comment out references to X11rdp
|
||||
|
||||
@ -559,14 +588,14 @@ fi
|
||||
- Make Xorg backend default
|
||||
- Call /usr/libexec/Xorg directly to avoid permission checks
|
||||
|
||||
* Tue Feb 21 2017 Bojan Smojver <bojan@rexurive.com> - 1:0.9.1-5
|
||||
* Tue Feb 21 2017 Bojan Smojver <bojan@rexursive.com> - 1:0.9.1-5
|
||||
- Require openssl in posttrans phase
|
||||
- Move conditional restart to posttrans phase
|
||||
|
||||
* Mon Feb 20 2017 Bojan Smojver <bojan@rexurive.com> - 1:0.9.1-4
|
||||
* Mon Feb 20 2017 Bojan Smojver <bojan@rexursive.com> - 1:0.9.1-4
|
||||
- Move key/cert generation to posttrans stage
|
||||
|
||||
* Thu Feb 16 2017 Bojan Smojver <bojan@rexurive.com> - 1:0.9.1-3
|
||||
* Thu Feb 16 2017 Bojan Smojver <bojan@rexursive.com> - 1:0.9.1-3
|
||||
- Fix log file rotation
|
||||
|
||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:0.9.1-2
|
||||
|
Loading…
Reference in New Issue
Block a user