b3d784
# Can be rebuilt with FFmpeg/H264 support enabled by passing "--with=ffmpeg",
b3d784
# "--with=x264" or "--with=openh264" to mock/rpmbuild; or by globally setting
b3d784
# these variables:
b3d784
b3d784
#global _with_ffmpeg 1
b3d784
#global _with_x264 1
b3d784
#global _with_openh264 1
b3d784
b3d784
# Momentarily disable GSS support
b3d784
# https://github.com/FreeRDP/FreeRDP/issues/4348
b3d784
#global _with_gss 1
d7ca03
b3d784
# Disable server support in RHEL
b3d784
# https://bugzilla.redhat.com/show_bug.cgi?id=1639165
b3d784
%{!?rhel:%global _with_server 1}
b3d784
3926b3
# Disable support for missing codecs in RHEL
3926b3
%{!?rhel:%global _with_soxr 1}
3926b3
%if 0%{?fedora} || 0%{?rhel} >= 8
3926b3
%global _with_lame 1
3926b3
%endif
3926b3
b3d784
Name:           freerdp
3926b3
Version:        2.1.1
5ade8a
Release:        5%{?dist}
b3d784
Summary:        Free implementation of the Remote Desktop Protocol (RDP)
d7ca03
License:        ASL 2.0
d7ca03
URL:            http://www.freerdp.com/
d7ca03
3926b3
Source0:        https://github.com/FreeRDP/FreeRDP/archive/%{version}/FreeRDP-%{version}.tar.gz
b3d784
Source1:        build-config.h
b3d784
3926b3
Patch1:         winpr-library-Use-RTLD_GLOBAL-for-dlopen.patch
5ade8a
Patch0:         Add-checks-for-bitmap-and-glyph-width-heigth-values.patch
5ade8a
# CVE-2021-41159 freerdp: improper client input validation for gateway connections allows to overwrite memory
5ade8a
Patch2:         Refactored-RPC-gateway-parser.patch
bd57e3
b3d784
BuildRequires:  gcc
b3d784
BuildRequires:  gcc-c++
b3d784
BuildRequires:  alsa-lib-devel
b3d784
BuildRequires:  cmake >= 2.8
b3d784
BuildRequires:  cups-devel
b3d784
BuildRequires:  gsm-devel
3926b3
%{?_with_lame:BuildRequires:  lame-devel}
3926b3
BuildRequires:  libicu-devel
b3d784
BuildRequires:  libjpeg-turbo-devel
d7ca03
BuildRequires:  libX11-devel
d7ca03
BuildRequires:  libXcursor-devel
d7ca03
BuildRequires:  libXdamage-devel
b3d784
BuildRequires:  libXext-devel
b3d784
BuildRequires:  libXi-devel
b3d784
BuildRequires:  libXinerama-devel
d7ca03
BuildRequires:  libxkbfile-devel
b3d784
BuildRequires:  libXrandr-devel
b3d784
%{?_with_server:BuildRequires:  libXtst-devel}
b3d784
BuildRequires:  libXv-devel
b3d784
%{?_with_openh264:BuildRequires:  openh264-devel}
b3d784
%{?_with_x264:BuildRequires:  x264-devel}
b3d784
%{?_with_server:BuildRequires:  pam-devel}
b3d784
BuildRequires:  xmlto
b3d784
BuildRequires:  zlib-devel
b3d784
3926b3
BuildRequires:  pkgconfig(cairo)
b3d784
BuildRequires:  pkgconfig(dbus-1)
b3d784
BuildRequires:  pkgconfig(dbus-glib-1)
b3d784
BuildRequires:  pkgconfig(glib-2.0)
b3d784
BuildRequires:  pkgconfig(gstreamer-1.0)
b3d784
BuildRequires:  pkgconfig(gstreamer-base-1.0)
b3d784
BuildRequires:  pkgconfig(gstreamer-app-1.0)
b3d784
BuildRequires:  pkgconfig(gstreamer-audio-1.0)
b3d784
BuildRequires:  pkgconfig(gstreamer-fft-1.0)
b3d784
BuildRequires:  pkgconfig(gstreamer-pbutils-1.0)
b3d784
BuildRequires:  pkgconfig(gstreamer-video-1.0)
b3d784
%{?_with_gss:BuildRequires:  pkgconfig(krb5) >= 1.13}
b3d784
BuildRequires:  pkgconfig(libpcsclite)
b3d784
BuildRequires:  pkgconfig(libpulse)
b3d784
BuildRequires:  pkgconfig(libsystemd)
3926b3
BuildRequires:  pkgconfig(libusb-1.0)
b3d784
BuildRequires:  pkgconfig(openssl)
3926b3
%{?_with_soxr:BuildRequires:  pkgconfig(soxr)}
b3d784
BuildRequires:  pkgconfig(wayland-client)
b3d784
BuildRequires:  pkgconfig(wayland-scanner)
b3d784
BuildRequires:  pkgconfig(xkbcommon)
b3d784
b3d784
%{?_with_ffmpeg:
b3d784
BuildRequires:  pkgconfig(libavcodec) >= 57.48.101
b3d784
BuildRequires:  pkgconfig(libavutil)
b3d784
}
d7ca03
d7ca03
Provides:       xfreerdp = %{version}-%{release}
d7ca03
Requires:       %{name}-libs%{?_isa} = %{version}-%{release}
b3d784
Requires:       libwinpr%{?_isa} = %{version}-%{release}
0c73ee
d7ca03
%description
b3d784
The xfreerdp & wlfreerdp Remote Desktop Protocol (RDP) clients from the FreeRDP
d7ca03
project.
d7ca03
b3d784
xfreerdp & wlfreerdp can connect to RDP servers such as Microsoft Windows
d7ca03
machines, xrdp and VirtualBox.
d7ca03
d7ca03
%package        libs
d7ca03
Summary:        Core libraries implementing the RDP protocol
b3d784
Requires:       libwinpr%{?_isa} = %{version}-%{release}
b3d784
Obsoletes:      %{name}-plugins < 2.0.0
b3d784
Provides:       %{name}-plugins = %{version}-%{release}
d7ca03
%description    libs
d7ca03
libfreerdp-core can be embedded in applications.
d7ca03
d7ca03
libfreerdp-channels and libfreerdp-kbd might be convenient to use in X
d7ca03
applications together with libfreerdp-core.
d7ca03
d7ca03
libfreerdp-core can be extended with plugins handling RDP channels.
d7ca03
d7ca03
%package        devel
d7ca03
Summary:        Development files for %{name}
d7ca03
Requires:       %{name}-libs%{?_isa} = %{version}-%{release}
d7ca03
Requires:       pkgconfig
b3d784
Requires:       cmake >= 2.8
d7ca03
d7ca03
%description    devel
b3d784
The %{name}-devel package contains libraries and header files for developing
b3d784
applications that use %{name}-libs.
d7ca03
b3d784
%{?_with_server:
b3d784
%package        server
b3d784
Summary:        Server support for %{name}
b3d784
Requires:       libwinpr%{?_isa} = %{version}-%{release}
b3d784
Requires:       %{name}-libs%{?_isa} = %{version}-%{release}
d7ca03
b3d784
%description    server
b3d784
The %{name}-server package contains servers which can export a desktop via
b3d784
the RDP protocol.
b3d784
}
d7ca03
b3d784
%package -n     libwinpr
b3d784
Summary:        Windows Portable Runtime
b3d784
Provides:       %{name}-libwinpr = %{version}-%{release}
d7ca03
b3d784
%description -n libwinpr
b3d784
WinPR provides API compatibility for applications targeting non-Windows
b3d784
environments. When on Windows, the original native API is being used instead of
b3d784
the equivalent WinPR implementation, without having to modify the code using it.
d7ca03
b3d784
%package -n     libwinpr-devel
b3d784
Summary:        Windows Portable Runtime development files
b3d784
Requires:       libwinpr%{?_isa} = %{version}-%{release}
b3d784
Requires:       pkgconfig
b3d784
Requires:       cmake >= 2.8
d7ca03
b3d784
%description -n libwinpr-devel
b3d784
The %{name}-libwinpr-devel package contains libraries and header files for
b3d784
developing applications that use %{name}-libwinpr.
d7ca03
b3d784
%prep
3926b3
%autosetup -p1 -n FreeRDP-%{version}
d7ca03
b3d784
# Rpmlint fixes
b3d784
find . -name "*.h" -exec chmod 664 {} \;
b3d784
find . -name "*.c" -exec chmod 664 {} \;
d7ca03
b3d784
%build
b3d784
%cmake %{?_cmake_skip_rpath} \
b3d784
    -DCMAKE_INSTALL_LIBDIR:PATH=%{_lib} \
b3d784
    -DWITH_ALSA=ON \
b3d784
    -DWITH_CUPS=ON \
b3d784
    -DWITH_CHANNELS=ON -DBUILTIN_CHANNELS=OFF \
b3d784
    -DWITH_CLIENT=ON \
b3d784
    -DWITH_DIRECTFB=OFF \
b3d784
    -DWITH_FFMPEG=%{?_with_ffmpeg:ON}%{?!_with_ffmpeg:OFF} \
b3d784
    -DWITH_GSM=ON \
b3d784
    -DWITH_GSSAPI=%{?_with_gss:ON}%{?!_with_gss:OFF} \
b3d784
    -DWITH_GSTREAMER_1_0=ON -DWITH_GSTREAMER_0_10=OFF \
b3d784
    -DGSTREAMER_1_0_INCLUDE_DIRS=%{_includedir}/gstreamer-1.0 \
3926b3
    -DWITH_ICU=ON \
b3d784
    -DWITH_IPP=OFF \
b3d784
    -DWITH_JPEG=ON \
3926b3
    -DWITH_LAME=%{?_with_lame:ON}%{?!_with_lame:OFF} \
b3d784
    -DWITH_MANPAGES=ON \
b3d784
    -DWITH_OPENH264=%{?_with_openh264:ON}%{?!_with_openh264:OFF} \
b3d784
    -DWITH_OPENSSL=ON \
b3d784
    -DWITH_PCSC=ON \
b3d784
    -DWITH_PULSE=ON \
b3d784
    -DWITH_SERVER=%{?_with_server:ON}%{?!_with_server:OFF} \
b3d784
    -DWITH_SERVER_INTERFACE=%{?_with_server:ON}%{?!_with_server:OFF} \
b3d784
    -DWITH_SHADOW_X11=%{?_with_server:ON}%{?!_with_server:OFF} \
b3d784
    -DWITH_SHADOW_MAC=%{?_with_server:ON}%{?!_with_server:OFF} \
3926b3
    -DWITH_SOXR=%{?_with_soxr:ON}%{?!_with_soxr:OFF} \
b3d784
    -DWITH_WAYLAND=ON \
b3d784
    -DWITH_X11=ON \
b3d784
    -DWITH_X264=%{?_with_x264:ON}%{?!_with_x264:OFF} \
b3d784
    -DWITH_XCURSOR=ON \
b3d784
    -DWITH_XEXT=ON \
b3d784
    -DWITH_XKBFILE=ON \
b3d784
    -DWITH_XI=ON \
b3d784
    -DWITH_XINERAMA=ON \
b3d784
    -DWITH_XRENDER=ON \
b3d784
    -DWITH_XTEST=%{?_with_server:ON}%{?!_with_server:OFF} \
b3d784
    -DWITH_XV=ON \
b3d784
    -DWITH_ZLIB=ON \
b3d784
%ifarch x86_64
b3d784
    -DWITH_SSE2=ON \
3926b3
    -DWITH_VAAPI=%{?_with_ffmpeg:ON}%{?!_with_ffmpeg:OFF} \
b3d784
%else
b3d784
    -DWITH_SSE2=OFF \
b3d784
%endif
b3d784
%ifarch armv7hl
b3d784
    -DARM_FP_ABI=hard \
b3d784
    -DWITH_NEON=OFF \
b3d784
%endif
b3d784
%ifarch armv7hnl
b3d784
    -DARM_FP_ABI=hard \
b3d784
    -DWITH_NEON=ON \
b3d784
%endif
b3d784
%ifarch armv5tel armv6l armv7l
b3d784
    -DARM_FP_ABI=soft \
b3d784
    -DWITH_NEON=OFF \
b3d784
%endif
b3d784
    .
d7ca03
3926b3
%make_build
d7ca03
b3d784
pushd winpr/tools/makecert-cli
3926b3
%make_build
b3d784
popd
d7ca03
b3d784
%install
b3d784
%make_install
b3d784
%make_install COMPONENT=tools
d7ca03
b3d784
find %{buildroot} -name "*.a" -delete
d7ca03
b3d784
# build-config.h is not multilib clean and multilib-rpm-config is not available
b3d784
mv $RPM_BUILD_ROOT/%{_includedir}/freerdp2/freerdp/build-config.h $RPM_BUILD_ROOT/%{_includedir}/freerdp2/freerdp/build-config-`getconf LONG_BIT`.h
b3d784
install -m 644 %{SOURCE1} $RPM_BUILD_ROOT/%{_includedir}/freerdp2/freerdp/
d7ca03
d7ca03
%files
b3d784
%{_bindir}/winpr-hash
b3d784
%{_bindir}/winpr-makecert
b3d784
%{_bindir}/wlfreerdp
d7ca03
%{_bindir}/xfreerdp
3926b3
%{_mandir}/man1/winpr-hash.1*
3926b3
%{_mandir}/man1/winpr-makecert.1*
3926b3
%{_mandir}/man1/wlfreerdp.1*
3926b3
%{_mandir}/man1/xfreerdp.1*
d7ca03
d7ca03
%files libs
b3d784
%license LICENSE
3926b3
%doc README.md ChangeLog
b3d784
%{_libdir}/freerdp2/
b3d784
%{_libdir}/libfreerdp-client2.so.*
b3d784
%{?_with_server:
b3d784
%{_libdir}/libfreerdp-server2.so.*
b3d784
%{_libdir}/libfreerdp-shadow2.so.*
b3d784
%{_libdir}/libfreerdp-shadow-subsystem2.so.*
b3d784
}
b3d784
%{_libdir}/libfreerdp2.so.*
b3d784
%{_libdir}/libuwac0.so.*
b3d784
%{_mandir}/man7/wlog.*
d7ca03
d7ca03
%files devel
b3d784
%{_includedir}/freerdp2
b3d784
%{_includedir}/uwac0
b3d784
%{_libdir}/cmake/FreeRDP2
b3d784
%{_libdir}/cmake/FreeRDP-Client2
b3d784
%{?_with_server:
b3d784
%{_libdir}/cmake/FreeRDP-Server2
b3d784
%{_libdir}/cmake/FreeRDP-Shadow2
b3d784
}
b3d784
%{_libdir}/cmake/uwac0
b3d784
%{_libdir}/libfreerdp-client2.so
b3d784
%{?_with_server:
b3d784
%{_libdir}/libfreerdp-server2.so
b3d784
%{_libdir}/libfreerdp-shadow2.so
b3d784
%{_libdir}/libfreerdp-shadow-subsystem2.so
b3d784
}
b3d784
%{_libdir}/libfreerdp2.so
b3d784
%{_libdir}/libuwac0.so
b3d784
%{_libdir}/pkgconfig/freerdp2.pc
b3d784
%{_libdir}/pkgconfig/freerdp-client2.pc
b3d784
%{?_with_server:
b3d784
%{_libdir}/pkgconfig/freerdp-server2.pc
b3d784
%{_libdir}/pkgconfig/freerdp-shadow2.pc
b3d784
}
b3d784
%{_libdir}/pkgconfig/uwac0.pc
b3d784
b3d784
%{?_with_server:
b3d784
%files server
3926b3
%{_bindir}/freerdp-proxy
b3d784
%{_bindir}/freerdp-shadow-cli
3926b3
%{_mandir}/man1/freerdp-shadow-cli.1*
b3d784
}
b3d784
b3d784
%files -n libwinpr
b3d784
%license LICENSE
3926b3
%doc README.md ChangeLog
b3d784
%{_libdir}/libwinpr2.so.*
b3d784
%{_libdir}/libwinpr-tools2.so.*
b3d784
b3d784
%files -n libwinpr-devel
b3d784
%{_libdir}/cmake/WinPR2
b3d784
%{_includedir}/winpr2
b3d784
%{_libdir}/libwinpr2.so
b3d784
%{_libdir}/libwinpr-tools2.so
b3d784
%{_libdir}/pkgconfig/winpr2.pc
b3d784
%{_libdir}/pkgconfig/winpr-tools2.pc
d7ca03
d7ca03
%changelog
5ade8a
* Tue Nov 09 2021 Jan Grulich <jgrulich@redhat.com> - 2:2.2.0-5
5ade8a
- Update: Refactored RPC gateway parser (rhbz#2017944)
5ade8a
  + fix issues discovered by Covscan
5ade8a
5ade8a
* Mon Nov 08 2021 Jan Grulich <jgrulich@redhat.com> - 2:2.2.0-4
5ade8a
- Refactored RPC gateway parser (rhbz#2017944)
5ade8a
5ade8a
* Fri Nov 05 2021 Felipe Borges <feborges@redhat.com> - 2.1.1-3
5ade8a
- Add checks for bitmap and glyph width/heigth values (rhbz#2017951)
5ade8a
3926b3
* Mon May 25 2020 Ondrej Holy <oholy@redhat.com> - 2.1.1-2
3926b3
- Update to 2.1.1 (#1834286)
b460d2
b460d2
* Wed May 20 2020 Ondrej Holy <oholy@redhat.com> - 2.0.0-4.rc4
b460d2
- CVE-2020-11521: Fix out-of-bounds write in planar.c (#1837621)
b460d2
- CVE-2020-11523: Fix integer overflow in region.c (#1837622)
b460d2
- CVE-2020-11524: Fix out-of-bounds write in interleaved.c (#1837623)
b460d2
bd57e3
* Mon Mar 30 2020 Ondrej Holy <oholy@redhat.com> - 2.0.0-2.rc4
bd57e3
- Fix SCARD_INSUFFICIENT_BUFFER error (#1765199)
bd57e3
b3d784
* Wed Feb 20 2019 Ondrej Holy <oholy@redhat.com> - 2.0.0-1.rc4
b3d784
- Update to 2.0.0-rc4 (#1291254)
0c73ee
56112c
* Wed Jan 31 2018 Ondrej Holy <oholy@redhat.com> - 1.0.2-15
56112c
- Fix smartcard usage in manpage (#1428041)
56112c
56112c
* Thu Nov 23 2017 Ondrej Holy <oholy@redhat.com> - 1.0.2-14
56112c
- Add FIPS mode support (#1363811)
56112c
56112c
* Thu Oct 5 2017 Ondrej Holy <oholy@redhat.com> - 1.0.2-13
56112c
- Fix NTLM on big endian (#1204742)
56112c
- Fix colors on big endian (#1308810)
56112c
56112c
* Thu Sep 21 2017 Ondrej Holy <oholy@redhat.com> - 1.0.2-12
56112c
- Add description for available plugins (#1428041)
56112c
56112c
* Thu Sep 7 2017 Ondrej Holy <oholy@redhat.com> - 1.0.2-11
56112c
- Use boolean types defined stdbool.h (#1404575)
56112c
- Prevent stucked keys on focus out and unmap events (#1415069)
56112c
- Fix crashes when copying images (#1417536)
56112c
- Enable TLS 1.1 connections and later (#1312967)
56112c
24c59a
* Mon Apr 18 2016 Ondrej Holy <oholy@redhat.com> - 1.0.2-10
24c59a
- Add support for wildcard certificates (#1275241)
24c59a
24c59a
* Wed Apr 6 2016 Ondrej Holy <oholy@redhat.com> - 1.0.2-9
24c59a
- Fix crash if requested bitmap isn't in cache (#1311164)
24c59a
24c59a
* Wed Apr 6 2016 Ondrej Holy <oholy@redhat.com> - 1.0.2-8
24c59a
- Fix crash if pulseaudio device isn't specified (#1067543)
24c59a
24c59a
* Fri Jan 15 2016 Ondrej Holy <oholy@redhat.com> - 1.0.2-7
ad3fed
- Fix crashes in pulseaudio
24c59a
- Resolves: #1210049
ad3fed
ad3fed
* Thu Mar 19 2015 Ondrej Holy <oholy@redhat.com> - 1.0.2-6
8fdfec
- Fix crash during CA verification caused by invalid pointer dereference
ad3fed
- Resolves: #1186916
8fdfec
53bdd9
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 1.0.2-5
53bdd9
- Mass rebuild 2014-01-24
53bdd9
53bdd9
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 1.0.2-4
53bdd9
- Mass rebuild 2013-12-27
53bdd9
53bdd9
* Thu Dec 19 2013 Soren Sandmann <ssp@redhat.com> - 1.0.2-3
53bdd9
- Man page fixes
53bdd9
  - Document that multiple connections don't work (988294)
53bdd9
  - Document the list of plugins (988307, 988308)
53bdd9
d7ca03
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.2-2
d7ca03
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
d7ca03
d7ca03
* Wed Jan 02 2013 Mads Kiilerich <mads@kiilerich.com> - 1.0.2-1
d7ca03
- freerdp-1.0.2
d7ca03
d7ca03
* Sun Sep 30 2012 Mads Kiilerich <mads@kiilerich.com> - 1.0.1-7
d7ca03
- merge f17 1.0.1-6 - Backport fix for bug 816692
d7ca03
d7ca03
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.1-6
d7ca03
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
d7ca03
d7ca03
* Wed Feb 29 2012 Mads Kiilerich <mads@kiilerich.com> - 1.0.1-5
d7ca03
- Use new upstream tar with standard naming
d7ca03
- Use _isa for subpackage dependencies
d7ca03
d7ca03
* Tue Feb 28 2012 Mads Kiilerich <mads@kiilerich.com> - 1.0.1-4
d7ca03
- Include patch for sending invalid extra data
d7ca03
d7ca03
* Tue Feb 28 2012 Mads Kiilerich <mads@kiilerich.com> - 1.0.1-3
d7ca03
- Install a freedesktop .desktop file and a high-res icon instead of relying on
d7ca03
  _NET_WM_ICON
d7ca03
d7ca03
* Sat Feb 25 2012 Mads Kiilerich <mads@kiilerich.com> - 1.0.1-2
d7ca03
- Explicit build requirement for xmlto - needed for EL6
d7ca03
d7ca03
* Wed Feb 22 2012 Mads Kiilerich <mads@kiilerich.com> - 1.0.1-1
d7ca03
- FreeRDP-1.0.1 - major upstream rewrite and relicensing under Apache license
d7ca03
d7ca03
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.2-4
d7ca03
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
d7ca03
d7ca03
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.2-3
d7ca03
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
d7ca03
d7ca03
* Fri Jan 28 2011 Mads Kiilerich <mads@kiilerich.com> - 0.8.2-2
d7ca03
- rebuild on rawhide because of broken dependencies
d7ca03
d7ca03
* Tue Nov 16 2010 Mads Kiilerich <mads@kiilerich.com> - 0.8.2-1
d7ca03
- freerdp-0.8.2
d7ca03
d7ca03
* Mon Nov 08 2010 Mads Kiilerich <mads@kiilerich.com> - 0.8.1-2
d7ca03
- make -devel require pkgconfig
d7ca03
- first official Fedora package
d7ca03
d7ca03
* Sun Nov 07 2010 Mads Kiilerich <mads@kiilerich.com> - 0.8.1-1
d7ca03
- freerdp-0.8.1
d7ca03
d7ca03
* Sat Sep 25 2010 Mads Kiilerich <mads@kiilerich.com> - 0.7.4-2
d7ca03
- hack the generated libtool to not set rpath on x86_64
d7ca03
- configure with alsa explicitly
d7ca03
d7ca03
* Tue Aug 24 2010 Mads Kiilerich <mads@kiilerich.com> - 0.7.4-1
d7ca03
- freerdp-0.7.4
d7ca03
- cleanup of packaging structure
d7ca03
d7ca03
* Wed Jul 28 2010 Mads Kiilerich <mads@kiilerich.com> - 0.7.3-1
d7ca03
- 0.7.3
d7ca03
- fix some minor pylint warnings
d7ca03
d7ca03
* Fri Jul 23 2010 Mads Kiilerich <mads@kiilerich.com> - 0.7.2-2
d7ca03
- 0.7.2
d7ca03
- Address many comments from cwickert:
d7ca03
- - cleanup of old formatting, alignment with spectemplate-lib.spec and
d7ca03
    cwickert spec from #616193
d7ca03
- - add alsa as build requirement
d7ca03
- - remove superfluous configure options and disable static libs
d7ca03
- - add missing rpm groups
d7ca03
d7ca03
* Sun Jun 13 2010 Mads Kiilerich <mads@kiilerich.com> - 0.7.0-1
d7ca03
- First official release, first review request