Blame SPECS/freerdp.spec

da742c
# Can be rebuilt with FFmpeg/H264 support enabled by passing "--with=ffmpeg",
da742c
# "--with=x264" or "--with=openh264" to mock/rpmbuild; or by globally setting
da742c
# these variables:
da742c
da742c
#global _with_ffmpeg 1
da742c
#global _with_x264 1
da742c
#global _with_openh264 1
da742c
da742c
# Momentarily disable GSS support
da742c
# https://github.com/FreeRDP/FreeRDP/issues/4348
da742c
#global _with_gss 1
da742c
da742c
# Disable server support in RHEL
da742c
# https://bugzilla.redhat.com/show_bug.cgi?id=1639165
da742c
%{!?rhel:%global _with_server 1}
da742c
da742c
# Disable support for missing codecs in RHEL
da742c
%{!?rhel:%global _with_soxr 1}
da742c
%if 0%{?fedora} || 0%{?rhel} >= 8
da742c
%global _with_lame 1
da742c
%endif
da742c
da742c
Name:           freerdp
da742c
Version:        2.4.1
da742c
Release:        2%{?dist}
da742c
Epoch:          2
da742c
Summary:        Free implementation of the Remote Desktop Protocol (RDP)
da742c
License:        ASL 2.0
da742c
URL:            http://www.freerdp.com/
da742c
da742c
Source0:        https://github.com/FreeRDP/FreeRDP/archive/%{version}/FreeRDP-%{version}.tar.gz
da742c
da742c
# https://github.com/FreeRDP/FreeRDP/issues/7436
da742c
Patch0:         Fixed-7436-Datatype-mismatch-to-crypto_base64_decode.patch
da742c
Patch1:         Fixed-7436-Datatype-mismatch.patch
da742c
da742c
# https://github.com/FreeRDP/FreeRDP/pull/7448
da742c
Patch2:         winpr-ssl-Load-legacy-provider-when-initializing-Ope.patch
da742c
da742c
BuildRequires:  gcc
da742c
BuildRequires:  gcc-c++
da742c
BuildRequires:  alsa-lib-devel
da742c
BuildRequires:  cmake >= 2.8
da742c
BuildRequires:  cups-devel
da742c
BuildRequires:  gsm-devel
da742c
%{?_with_lame:BuildRequires:  lame-devel}
da742c
BuildRequires:  libicu-devel
da742c
BuildRequires:  libjpeg-turbo-devel
da742c
BuildRequires:  libX11-devel
da742c
BuildRequires:  libXcursor-devel
da742c
BuildRequires:  libXdamage-devel
da742c
BuildRequires:  libXext-devel
da742c
BuildRequires:  libXi-devel
da742c
BuildRequires:  libXinerama-devel
da742c
BuildRequires:  libxkbfile-devel
da742c
BuildRequires:  libXrandr-devel
da742c
%{?_with_server:BuildRequires:  libXtst-devel}
da742c
BuildRequires:  libXv-devel
da742c
%{?_with_openh264:BuildRequires:  openh264-devel}
da742c
%{?_with_x264:BuildRequires:  x264-devel}
da742c
%{?_with_server:BuildRequires:  pam-devel}
da742c
BuildRequires:  xmlto
da742c
BuildRequires:  zlib-devel
da742c
BuildRequires:  multilib-rpm-config
da742c
da742c
BuildRequires:  pkgconfig(cairo)
da742c
BuildRequires:  pkgconfig(dbus-1)
da742c
BuildRequires:  pkgconfig(dbus-glib-1)
da742c
BuildRequires:  pkgconfig(glib-2.0)
da742c
BuildRequires:  pkgconfig(gstreamer-1.0)
da742c
BuildRequires:  pkgconfig(gstreamer-base-1.0)
da742c
BuildRequires:  pkgconfig(gstreamer-app-1.0)
da742c
BuildRequires:  pkgconfig(gstreamer-audio-1.0)
da742c
BuildRequires:  pkgconfig(gstreamer-fft-1.0)
da742c
BuildRequires:  pkgconfig(gstreamer-pbutils-1.0)
da742c
BuildRequires:  pkgconfig(gstreamer-video-1.0)
da742c
%{?_with_gss:BuildRequires:  pkgconfig(krb5) >= 1.13}
da742c
BuildRequires:  pkgconfig(libpcsclite)
da742c
BuildRequires:  pkgconfig(libpulse)
da742c
BuildRequires:  pkgconfig(libsystemd)
da742c
BuildRequires:  pkgconfig(libusb-1.0)
da742c
BuildRequires:  pkgconfig(openssl)
da742c
%{?_with_soxr:BuildRequires:  pkgconfig(soxr)}
da742c
BuildRequires:  pkgconfig(wayland-client)
da742c
BuildRequires:  pkgconfig(wayland-scanner)
da742c
BuildRequires:  pkgconfig(xkbcommon)
da742c
da742c
%{?_with_ffmpeg:
da742c
BuildRequires:  pkgconfig(libavcodec) >= 57.48.101
da742c
BuildRequires:  pkgconfig(libavutil)
da742c
}
da742c
da742c
Provides:       xfreerdp = %{?epoch}:%{version}-%{release}
da742c
Requires:       %{name}-libs%{?_isa} = %{?epoch}:%{version}-%{release}
da742c
Requires:       libwinpr%{?_isa} = %{?epoch}:%{version}-%{release}
da742c
da742c
%description
da742c
The xfreerdp & wlfreerdp Remote Desktop Protocol (RDP) clients from the FreeRDP
da742c
project.
da742c
da742c
xfreerdp & wlfreerdp can connect to RDP servers such as Microsoft Windows
da742c
machines, xrdp and VirtualBox.
da742c
da742c
%package        libs
da742c
Summary:        Core libraries implementing the RDP protocol
da742c
Requires:       libwinpr%{?_isa} = %{?epoch}:%{version}-%{release}
da742c
Obsoletes:      %{name}-plugins < 1:1.1.0
da742c
Provides:       %{name}-plugins = %{?epoch}:%{version}-%{release}
da742c
%description    libs
da742c
libfreerdp-core can be embedded in applications.
da742c
da742c
libfreerdp-channels and libfreerdp-kbd might be convenient to use in X
da742c
applications together with libfreerdp-core.
da742c
da742c
libfreerdp-core can be extended with plugins handling RDP channels.
da742c
da742c
%package        devel
da742c
Summary:        Development files for %{name}
da742c
Requires:       %{name}-libs%{?_isa} = %{?epoch}:%{version}-%{release}
da742c
Requires:       pkgconfig
da742c
Requires:       cmake >= 2.8
da742c
da742c
%description    devel
da742c
The %{name}-devel package contains libraries and header files for developing
da742c
applications that use %{name}-libs.
da742c
da742c
%{?_with_server:
da742c
%package        server
da742c
Summary:        Server support for %{name}
da742c
Requires:       libwinpr%{?_isa} = %{?epoch}:%{version}-%{release}
da742c
Requires:       %{name}-libs%{?_isa} = %{?epoch}:%{version}-%{release}
da742c
da742c
%description    server
da742c
The %{name}-server package contains servers which can export a desktop via
da742c
the RDP protocol.
da742c
}
da742c
da742c
%package -n     libwinpr
da742c
Summary:        Windows Portable Runtime
da742c
Provides:       %{name}-libwinpr = %{?epoch}:%{version}-%{release}
da742c
Obsoletes:      %{name}-libwinpr < 1:1.2.0
da742c
da742c
%description -n libwinpr
da742c
WinPR provides API compatibility for applications targeting non-Windows
da742c
environments. When on Windows, the original native API is being used instead of
da742c
the equivalent WinPR implementation, without having to modify the code using it.
da742c
da742c
%package -n     libwinpr-devel
da742c
Summary:        Windows Portable Runtime development files
da742c
Requires:       libwinpr%{?_isa} = %{?epoch}:%{version}-%{release}
da742c
Requires:       pkgconfig
da742c
Requires:       cmake >= 2.8
da742c
da742c
%description -n libwinpr-devel
da742c
The %{name}-libwinpr-devel package contains libraries and header files for
da742c
developing applications that use %{name}-libwinpr.
da742c
da742c
%prep
da742c
%autosetup -p1 -n FreeRDP-%{version}
da742c
da742c
# Rpmlint fixes
da742c
find . -name "*.h" -exec chmod 664 {} \;
da742c
find . -name "*.c" -exec chmod 664 {} \;
da742c
da742c
%build
da742c
%cmake %{?_cmake_skip_rpath} \
da742c
    -DCMAKE_INSTALL_LIBDIR:PATH=%{_lib} \
da742c
    -DWITH_ALSA=ON \
da742c
    -DWITH_CAIRO=ON \
da742c
    -DWITH_CUPS=ON \
da742c
    -DWITH_CHANNELS=ON -DBUILTIN_CHANNELS=OFF \
da742c
    -DWITH_CLIENT=ON \
da742c
    -DWITH_DIRECTFB=OFF \
da742c
    -DWITH_FFMPEG=%{?_with_ffmpeg:ON}%{?!_with_ffmpeg:OFF} \
da742c
    -DWITH_GSM=ON \
da742c
    -DWITH_GSSAPI=%{?_with_gss:ON}%{?!_with_gss:OFF} \
da742c
    -DWITH_GSTREAMER_1_0=ON -DWITH_GSTREAMER_0_10=OFF \
da742c
    -DWITH_ICU=ON \
da742c
    -DWITH_IPP=OFF \
da742c
    -DWITH_JPEG=ON \
da742c
    -DWITH_LAME=%{?_with_lame:ON}%{?!_with_lame:OFF} \
da742c
    -DWITH_MANPAGES=ON \
da742c
    -DWITH_OPENH264=%{?_with_openh264:ON}%{?!_with_openh264:OFF} \
da742c
    -DWITH_OPENSSL=ON \
da742c
    -DWITH_PCSC=ON \
da742c
    -DWITH_PULSE=ON \
da742c
    -DWITH_SERVER=%{?_with_server:ON}%{?!_with_server:OFF} \
da742c
    -DWITH_SERVER_INTERFACE=%{?_with_server:ON}%{?!_with_server:OFF} \
da742c
    -DWITH_SHADOW_X11=%{?_with_server:ON}%{?!_with_server:OFF} \
da742c
    -DWITH_SHADOW_MAC=%{?_with_server:ON}%{?!_with_server:OFF} \
da742c
    -DWITH_SOXR=%{?_with_soxr:ON}%{?!_with_soxr:OFF} \
da742c
    -DWITH_WAYLAND=ON \
da742c
    -DWITH_X11=ON \
da742c
    -DWITH_X264=%{?_with_x264:ON}%{?!_with_x264:OFF} \
da742c
    -DWITH_XCURSOR=ON \
da742c
    -DWITH_XEXT=ON \
da742c
    -DWITH_XKBFILE=ON \
da742c
    -DWITH_XI=ON \
da742c
    -DWITH_XINERAMA=ON \
da742c
    -DWITH_XRENDER=ON \
da742c
    -DWITH_XTEST=%{?_with_server:ON}%{?!_with_server:OFF} \
da742c
    -DWITH_XV=ON \
da742c
    -DWITH_ZLIB=ON \
da742c
%ifarch x86_64
da742c
    -DWITH_SSE2=ON \
da742c
    -DWITH_VAAPI=%{?_with_ffmpeg:ON}%{?!_with_ffmpeg:OFF} \
da742c
%else
da742c
    -DWITH_SSE2=OFF \
da742c
%endif
da742c
%ifarch armv7hl
da742c
    -DARM_FP_ABI=hard \
da742c
    -DWITH_NEON=OFF \
da742c
%endif
da742c
%ifarch armv7hnl
da742c
    -DARM_FP_ABI=hard \
da742c
    -DWITH_NEON=ON \
da742c
%endif
da742c
%ifarch armv5tel armv6l armv7l
da742c
    -DARM_FP_ABI=soft \
da742c
    -DWITH_NEON=OFF \
da742c
%endif
da742c
    .
da742c
da742c
%cmake_build
da742c
da742c
%install
da742c
%cmake_install
da742c
da742c
find %{buildroot} -name "*.a" -delete
da742c
da742c
%multilib_fix_c_header --file %{_includedir}/freerdp2/freerdp/build-config.h
da742c
da742c
%files
da742c
%{_bindir}/winpr-hash
da742c
%{_bindir}/winpr-makecert
da742c
%{_bindir}/wlfreerdp
da742c
%{_bindir}/xfreerdp
da742c
%{_mandir}/man1/winpr-hash.1*
da742c
%{_mandir}/man1/winpr-makecert.1*
da742c
%{_mandir}/man1/wlfreerdp.1*
da742c
%{_mandir}/man1/xfreerdp.1*
da742c
da742c
%files libs
da742c
%license LICENSE
da742c
%doc README.md ChangeLog
da742c
%{_libdir}/freerdp2/
da742c
%{_libdir}/libfreerdp-client2.so.*
da742c
%{?_with_server:
da742c
%{_libdir}/libfreerdp-server2.so.*
da742c
%{_libdir}/libfreerdp-shadow2.so.*
da742c
%{_libdir}/libfreerdp-shadow-subsystem2.so.*
da742c
}
da742c
%{_libdir}/libfreerdp2.so.*
da742c
%{_libdir}/libuwac0.so.*
da742c
%{_mandir}/man7/wlog.*
da742c
da742c
%files devel
da742c
%{_includedir}/freerdp2
da742c
%{_includedir}/uwac0
da742c
%{_libdir}/cmake/FreeRDP2
da742c
%{_libdir}/cmake/FreeRDP-Client2
da742c
%{?_with_server:
da742c
%{_libdir}/cmake/FreeRDP-Server2
da742c
%{_libdir}/cmake/FreeRDP-Shadow2
da742c
}
da742c
%{_libdir}/cmake/uwac0
da742c
%{_libdir}/libfreerdp-client2.so
da742c
%{?_with_server:
da742c
%{_libdir}/libfreerdp-server2.so
da742c
%{_libdir}/libfreerdp-shadow2.so
da742c
%{_libdir}/libfreerdp-shadow-subsystem2.so
da742c
}
da742c
%{_libdir}/libfreerdp2.so
da742c
%{_libdir}/libuwac0.so
da742c
%{_libdir}/pkgconfig/freerdp2.pc
da742c
%{_libdir}/pkgconfig/freerdp-client2.pc
da742c
%{?_with_server:
da742c
%{_libdir}/pkgconfig/freerdp-server2.pc
da742c
%{_libdir}/pkgconfig/freerdp-shadow2.pc
da742c
}
da742c
%{_libdir}/pkgconfig/uwac0.pc
da742c
da742c
%{?_with_server:
da742c
%files server
da742c
%{_bindir}/freerdp-proxy
da742c
%{_bindir}/freerdp-shadow-cli
da742c
%{_mandir}/man1/freerdp-shadow-cli.1*
da742c
}
da742c
da742c
%files -n libwinpr
da742c
%license LICENSE
da742c
%doc README.md ChangeLog
da742c
%{_libdir}/libwinpr2.so.*
da742c
%{_libdir}/libwinpr-tools2.so.*
da742c
da742c
%files -n libwinpr-devel
da742c
%{_libdir}/cmake/WinPR2
da742c
%{_includedir}/winpr2
da742c
%{_libdir}/libwinpr2.so
da742c
%{_libdir}/libwinpr-tools2.so
da742c
%{_libdir}/pkgconfig/winpr2.pc
da742c
%{_libdir}/pkgconfig/winpr-tools2.pc
da742c
da742c
%changelog
da742c
* Fri Nov 26 2021 Ondrej Holy <oholy@redhat.com> - 2:2.4.1-2
da742c
- Fix datatype mismatch / big-endian breakage
da742c
- Load legacy provider when initializing OpenSSL 3.0
da742c
da742c
* Wed Nov 10 2021 Ondrej Holy <oholy@redhat.com> - 2:2.4.1-1
da742c
- Update to 2.4.1 (CVE-2021-41159, CVE-2021-41160).
da742c
da742c
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 2:2.4.0-3
da742c
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
da742c
  Related: rhbz#1991688
da742c
da742c
* Tue Aug 03 2021 Ondrej Holy <oholy@redhat.com> - 2:2.4.0-2
da742c
- Load legacy provider to fix rc4 with OpenSSL 3.0 (#1988443).
da742c
da742c
* Thu Jul 29 2021 Ondrej Holy <oholy@redhat.com> - 2:2.4.0-1
da742c
- Update to 2.4.0.
da742c
da742c
* Wed Jun 16 2021 Mohan Boddu <mboddu@redhat.com> - 2:2.3.2-2
da742c
- Rebuilt for RHEL 9 BETA for openssl 3.0
da742c
  Related: rhbz#1971065
da742c
da742c
* Mon May 17 2021 Ondrej Holy <oholy@redhat.com> - 2:2.3.2-1
da742c
- Update to 2.3.2 (#1951123).
da742c
da742c
* Mon May 17 2021 Ondrej Holy <oholy@redhat.com> - 2:2.2.0-8
da742c
- Fix build with OpenSSL 3.0 (#1952937).
da742c
da742c
* Thu Apr 15 2021 Mohan Boddu <mboddu@redhat.com> - 2:2.2.0-7
da742c
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
da742c
da742c
* Tue Mar 23 2021 Simone Caronni <negativo17@gmail.com> - 2:2.2.0-6
da742c
- Explicitly enable Cairo support (#1938393).
da742c
da742c
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2:2.2.0-5
da742c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
da742c
da742c
* Tue Aug 11 2020 Ondrej Holy <oholy@redhat.com> - 2:2.2.0-4
da742c
- Use %%cmake_ macros to fix out-of-source builds (#1863586)
da742c
da742c
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2:2.2.0-3
da742c
- Second attempt - Rebuilt for
da742c
  https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
da742c
da742c
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2:2.2.0-2
da742c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
da742c
da742c
* Thu Jul 23 2020 Simone Caronni <negativo17@gmail.com> - 2:2.2.0-1
da742c
- Update to 2.2.0.
da742c
da742c
* Tue Jun 30 2020 Simone Caronni <negativo17@gmail.com> - 2:2.1.2-1
da742c
- Update to 2.1.2.
da742c
da742c
* Thu May 21 2020 Ondrej Holy <oholy@redhat.com> - 2:2.1.1-1
da742c
- Update to 2.1.1.
da742c
da742c
* Fri May 15 2020 Ondrej Holy <oholy@redhat.com> - 2:2.1.0-1
da742c
- Update to 2.1.0 (#1833540).
da742c
da742c
* Fri May 15 2020 Pete Walter <pwalter@fedoraproject.org> - 2:2.0.0-57.20200207git245fc60
da742c
- Rebuild for ICU 67
da742c
da742c
* Fri Feb 07 2020 Simone Caronni <negativo17@gmail.com> - 2:2.0.0-56.20200207git245fc60
da742c
- Update to latest snapshot.
da742c
da742c
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2:2.0.0-55.20190820git6015229
da742c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
da742c
da742c
* Fri Nov 01 2019 Pete Walter <pwalter@fedoraproject.org> - 2:2.0.0-54.20190820git6015229
da742c
- Rebuild for ICU 65
da742c
da742c
* Tue Aug 20 2019 Simone Caronni <negativo17@gmail.com> - 2:2.0.0-53.20190820git6015229
da742c
- Update to latest snapshot.
da742c
da742c
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2:2.0.0-52.20190918git5e672d4
da742c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
da742c
da742c
* Sun Jul 21 2019 Simone Caronni <negativo17@gmail.com> - 2:2.0.0-51.20190918git5e672d4
da742c
- Update to latest snapshot.
da742c
da742c
* Sat May 18 2019 Simone Caronni <negativo17@gmail.com> - 2:2.0.0-50.20190517gitb907324
da742c
- Update to latest snapshot.
da742c
da742c
* Wed Mar 06 2019 Simone Caronni <negativo17@gmail.com> - 2:2.0.0-49.20190304git435872b
da742c
- Fix for GFX color depth (Windows 10).
da742c
da742c
* Thu Feb 28 2019 Simone Caronni <negativo17@gmail.com> - 2:2.0.0-48.20190228gitce386c8
da742c
- Update to latest snapshot post rc4.
da742c
- CVE-2018-1000852 (#1661642).
da742c
da742c
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2:2.0.0-47.rc4.1
da742c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
da742c
da742c
* Thu Nov 29 2018 Ondrej Holy <oholy@redhat.com> - 2:2.0.0-47.rc4
da742c
- Update to 2.0.0-rc4
da742c
da742c
* Mon Oct 15 2018 Simone Caronni <negativo17@gmail.com> - 2:2.0.0-46.20181008git00af869
da742c
- Enable Xtest option (#1559606).
da742c
da742c
* Mon Oct 15 2018 Simone Caronni <negativo17@gmail.com> - 2:2.0.0-45.20181008git00af869
da742c
- Update to last snapshot post 2.0.0-rc3.
da742c
da742c
* Mon Aug 20 2018 Simone Caronni <negativo17@gmail.com> - 2:2.0.0-44.rc3
da742c
- Update SPEC file.
da742c
da742c
* Sat Aug 04 2018 Mike DePaulo <mikedep333@fedoraproject.org> - 2:2.0.0-43.20180801.rc3
da742c
- Update to 2.0.0-rc3
da742c
da742c
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2:2.0.0-42.20180405gita9ecd6a
da742c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
da742c
da742c
* Mon Apr 09 2018 Simone Caronni <negativo17@gmail.com> - 2:2.0.0-41.20180405gita9ecd6a
da742c
- Update to latest snapshot.
da742c
da742c
* Wed Mar 21 2018 Simone Caronni <negativo17@gmail.com> - 2:2.0.0-40.20180320gitde83f4d
da742c
- Add PAM support (fixes freerdp-shadow-cli). Thanks Paolo Zeppegno.
da742c
- Update to latest snapshot.
da742c
da742c
* Thu Mar 15 2018 Simone Caronni <negativo17@gmail.com> - 2:2.0.0-39.20180314gitf8baeb7
da742c
- Update to latest snapshot.
da742c
- Fixes connection to RDP servers with the latest Microsoft patches:
da742c
  https://github.com/FreeRDP/FreeRDP/issues/4449
da742c
da742c
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2:2.0.0-38.20180115git8f52c7e
da742c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
da742c
da742c
* Thu Jan 18 2018 Karsten Hopp <karsten@redhat.com> - 2.0.0-37git}
da742c
- use versioned build requirement on pkgconfig(openssl) to prevent using
da742c
  compat-openssl10-devel instead of openssl-devel
da742c
da742c
* Tue Jan 16 2018 Simone Caronni <negativo17@gmail.com> - 2:2.0.0-36.20180115git8f52c7e
da742c
- Update to latest snapshot.
da742c
- Make GSS support optional and disable it for now (#1534094 and FreeRDP #4348,
da742c
  #1435, #4363).
da742c
da742c
* Wed Dec 20 2017 Simone Caronni <negativo17@gmail.com> - 2:2.0.0-35.20171220gitbfe8359
da742c
- Update to latest snapshot post 2.0.0rc1.
da742c
da742c
* Mon Sep 11 2017 Simone Caronni <negativo17@gmail.com> - 2:2.0.0-34.20170831git3b83526
da742c
- Update to latest snapshot.
da742c
- Trim changelog.
da742c
da742c
* Mon Aug 07 2017 Björn Esser <besser82@fedoraproject.org> - 2:2.0.0-33.20170724gitf8c9f43
da742c
- Rebuilt for AutoReq cmake-filesystem
da742c
da742c
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2:2.0.0-32.20170724gitf8c9f43
da742c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
da742c
da742c
* Thu Jul 27 2017 Simone Caronni <negativo17@gmail.com> - 2:2.0.0-31.20170724gitf8c9f43
da742c
- Update to latest snapshot, Talos security fixes.
da742c
da742c
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2:2.0.0-30.20170710gitf580bea
da742c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
da742c
da742c
* Wed Jul 12 2017 Simone Caronni <negativo17@gmail.com> - 2:2.0.0-29.20170710gitf580bea
da742c
- Update to latest snapshot.
da742c
da742c
* Mon Jun 26 2017 Simone Caronni <negativo17@gmail.com> - 2:2.0.0-28.20170623git9904c32
da742c
- Update to latest snapshot.
da742c
da742c
* Mon May 15 2017 Simone Caronni <negativo17@gmail.com> - 2:2.0.0-27.20170512gitb1df835
da742c
- Update to latest snapshot.
da742c
da742c
* Thu Apr 20 2017 Simone Caronni <negativo17@gmail.com> - 2:2.0.0-26.20170419gitbfcf8e7
da742c
- Update to latest 2.0 snapshot.
da742c
da742c
* Thu Apr 13 2017 Orion Poplawski <orion@cora.nwra.com> - 2:2.0.0-25.20170317git8c68761
da742c
- Install tools via make install
da742c
da742c
* Wed Mar 22 2017 Simone Caronni <negativo17@gmail.com> - 2:2.0.0-24.20170317git8c68761
da742c
- Update to latest snapshot.
da742c
da742c
* Mon Mar 06 2017 Simone Caronni <negativo17@gmail.com> - 2:2.0.0-23.20170302git210de68
da742c
- Remove shared libxfreerdp-client shared library.
da742c
da742c
* Thu Mar 02 2017 Simone Caronni <negativo17@gmail.com> - 2:2.0.0-22.20170302git210de68
da742c
- Move libxfreerdp-client shared object into devel subpackage.
da742c
da742c
* Thu Mar 02 2017 Simone Caronni <negativo17@gmail.com> - 2:2.0.0-21.20170302git210de68
da742c
- Update to latest snapshot.
da742c
- Update build requirements, tune build options.
da742c
da742c
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2:2.0.0-20.20161228git90877f5
da742c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
da742c
da742c
* Mon Jan 09 2017 Simone Caronni <negativo17@gmail.com> - 2:2.0.0-19.20161228git90877f5
da742c
- Update to latest snapshot.