quassel/quassel.spec

259 lines
8.1 KiB
RPMSpec
Raw Normal View History

2008-07-02 18:42:19 +00:00
Name: quassel
2010-08-18 17:05:59 +00:00
Summary: A modern distributed IRC system
2015-08-03 16:42:52 +00:00
Version: 0.12.2
Release: 4%{?dist}
2008-07-02 18:42:19 +00:00
License: GPLv2 or GPLv3
2010-08-18 17:02:05 +00:00
Group: Applications/Internet
2008-07-02 18:42:19 +00:00
URL: http://quassel-irc.org/
Source0: http://quassel-irc.org/pub/quassel-%{version}.tar.bz2
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
Buildrequires: cmake
2008-07-02 18:42:19 +00:00
BuildRequires: desktop-file-utils
buildRequires: kdebase-workspace-devel
BuildRequires: kde-filesystem
BuildRequires: openssl-devel
BuildRequires: qt4-devel
2014-07-09 14:10:54 +00:00
BuildRequires: qt4-webkit-devel
Requires: oxygen-icon-theme
Provides: %{name}-gui = %{version}-%{release}
Requires: %{name}-common = %{version}-%{release}
2008-07-02 18:42:19 +00:00
2015-03-24 14:11:52 +00:00
# BZ1205130 - CTCP query Denial of Service
## Upstream patch git commit id b5e38970ffd55e2dd9f706ce75af9a8d7730b1b8
2015-08-03 16:42:52 +00:00
#Patch0: quassel-0.11.0-CTCP-query-crash.patch
2015-03-24 14:11:52 +00:00
2008-07-02 18:42:19 +00:00
%description
Quassel IRC is a modern, distributed IRC client,
meaning that one (or multiple) client(s) can attach
to and detach from a central core --
much like the popular combination of screen and a
text-based IRC client such as WeeChat, but graphical
%package common
Summary: Quassel common/shared files
Group: Applications/Internet
# not strictly required, but helps this get pulled out when
# someone removes %%name or %%name-client
Requires: %{name}-gui = %{version}-%{release}
# put here for convenience, instead of all subpkgs which
# provide %%{name}-gui
%{?_kde4_version:Requires: kdelibs4 >= %{_kde4_version}}
%{?_qt4_version:Requires: qt4 >= %{_qt4_version}}
BuildArch: noarch
%description common
%{summary}.
2008-07-02 18:42:19 +00:00
%package core
Summary: Quassel core component
Group: Applications/Internet
%description core
The Quassel IRC Core maintains a connection with the
server, and allows for multiple clients to connect
%package client
Summary: Quassel client
Group: Applications/Internet
Provides: %{name}-gui = %{version}-%{release}
Requires: %{name}-common = %{version}-%{release}
2008-07-02 18:42:19 +00:00
%description client
Quassel client
2008-07-02 18:42:19 +00:00
%prep
2010-02-16 11:47:18 +00:00
%setup -q -n %{name}-%{version}
2008-07-02 18:42:19 +00:00
2015-08-03 16:42:52 +00:00
#%patch0 -p1
2015-03-24 14:11:52 +00:00
2008-07-02 18:42:19 +00:00
%build
2008-07-05 21:40:32 +00:00
mkdir build
pushd build
2009-04-14 23:40:24 +00:00
%{cmake_kde4} .. -DWANT_MONO=1 -DWITH_KDE=1
popd
make %{?_smp_mflags} -C build
2008-07-02 18:42:19 +00:00
%install
2009-04-14 23:40:24 +00:00
rm -rf $RPM_BUILD_ROOT
2008-07-02 18:42:19 +00:00
make install/fast DESTDIR=${RPM_BUILD_ROOT} -C build
2009-04-14 23:40:24 +00:00
# unpackaged files
rm -f $RPM_BUILD_ROOT%{_datadir}/pixmaps/quassel.png
2008-07-02 18:42:19 +00:00
%clean
2009-04-14 23:40:24 +00:00
rm -rf $RPM_BUILD_ROOT
2008-07-02 18:42:19 +00:00
%post common
2010-05-02 16:16:08 +00:00
touch --no-create %{_kde4_iconsdir}/hicolor &> /dev/null || :
2009-04-14 23:40:24 +00:00
%postun common
if [ $1 -eq 0 ] ; then
2010-05-02 16:19:31 +00:00
touch --no-create %{_kde4_iconsdir}/hicolor &> /dev/null
2010-05-02 16:16:08 +00:00
gtk-update-icon-cache %{_kde4_iconsdir}/hicolor &> /dev/null || :
fi
%posttrans common
2010-05-02 16:16:08 +00:00
gtk-update-icon-cache %{_kde4_iconsdir}/hicolor &> /dev/null || :
2009-04-14 23:40:24 +00:00
%files
2008-07-02 18:42:19 +00:00
%defattr(-,root,root,-)
%{_kde4_bindir}/quassel
2009-04-14 23:40:24 +00:00
%{_kde4_datadir}/applications/kde4/quassel.desktop
2008-07-02 18:42:19 +00:00
%files common
%defattr(-,root,root,-)
%doc COPYING README
%doc gpl-2.0.txt gpl-3.0.txt
%{_kde4_appsdir}/quassel/
%{_kde4_iconsdir}/hicolor/*/*/*
2008-07-02 18:42:19 +00:00
%files core
%defattr(-,root,root,-)
%doc COPYING README
%doc gpl-2.0.txt gpl-3.0.txt
%{_kde4_bindir}/quasselcore
2008-07-02 18:42:19 +00:00
2009-04-14 23:40:24 +00:00
%files client
2008-07-02 18:42:19 +00:00
%defattr(-,root,root,-)
%{_kde4_bindir}/quasselclient
2009-04-14 23:40:24 +00:00
%{_kde4_datadir}/applications/kde4/quasselclient.desktop
2008-07-02 18:42:19 +00:00
2008-07-02 18:42:19 +00:00
%changelog
* Thu Sep 24 2015 Adam Miller <maxamillion@fedoraproject.org> - 0.12.2-3
- Add oxygen-icon-theme requirement for BZ#1198788
2015-09-16 16:42:36 +00:00
* Wed Sep 16 2015 Richard Hughes <rhughes@redhat.com> - 0.12.2-2
- Remove the AppData file as the desktop file is no longer valid.
2015-08-03 16:42:52 +00:00
* Mon Aug 03 2015 Adam Miller <maxamillion@fedoraproject.org> - 0.12.2-1
- Update to latest upstream release.
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.11.0-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
2015-05-02 15:20:48 +00:00
* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 0.11.0-4
- Rebuilt for GCC 5 C++11 ABI change
* Thu Mar 26 2015 Richard Hughes <rhughes@redhat.com> - 0.11.0-3
- Add an AppData file for the software center
2015-03-24 14:11:52 +00:00
* Tue Mar 24 2015 Adam Miller <maxamillion@fedoraproject.org> - 0.11.0-2
- BZ1205130 - patch for CTCP Denial of Service
2014-09-24 20:22:17 +00:00
* Wed Sep 24 2014 Adam Miller <maxamillion@fedoraproject.org> - 0.11.0-1
- Update to latest upstream
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.10.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
2014-07-09 14:10:54 +00:00
* Wed Jul 09 2014 Adam Miller <maxamillion@fedoraproject.org> - 0.10.0-1
- Update to latest upstream release
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.2-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
2014-01-24 18:52:01 +00:00
* Fri Jan 24 2014 Adam Miller <maxamillion@fedoraproject.org> - 0.9.2-1
- Update to latest upstream release
* Tue Oct 15 2013 Adam Miller <maxamillion@fedoraproject.org> - 0.9.1-1
- Update to latest upstream release
- Fix for CVE-2013-4422 (BZ#1017437)
2013-08-27 22:44:17 +00:00
* Tue Aug 27 2013 Adam Miller <maxamillion@fedoraproject.org> - 0.9.0-1
- Update to latest upstream release
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.0-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
2013-07-17 13:35:35 +00:00
* Wed Jul 17 2013 Petr Pisar <ppisar@redhat.com> - 0.8.0-3
- Perl 5.18 rebuild
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
2013-01-22 01:33:18 +00:00
* Mon Jan 21 2013 Steven M. Parrish <smparrish@gmail.com> - 0.8.0
- New release
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.3-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
2012-02-28 19:51:55 +00:00
* Tue Feb 28 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.3-3
- Rebuilt for c++ ABI breakage
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.3-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
* Mon Sep 12 2011 Jaroslav Reznik <jreznik@redhat.com> - 0.7.3-1
- 0.7.3 (fixes - CVE-2011-3354 invalid CTCP handling causes DoS, rhbz#736868)
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
2010-11-07 15:56:57 +00:00
* Sun Nov 7 2010 Steven M. Parrish <smparrish@gmail.com> - 0.7.1-1
- New ustream release
* Sat May 01 2010 Rex Dieter <rdieter@fedoraproject.org> - 0.6.1-1
- quassel-0.6.1
- -common subpkg
- add minimal qt4/kdelibs4 deps
2010-02-16 11:47:18 +00:00
* Mon Feb 15 2010 Steven Parrish <smparrish@gmail.com> - 0.5.2-1
- New bugfix release
* Wed Nov 25 2009 Kevin Kofler <Kevin@tigcc.ticalc.org> - 0.5.0-2
- Rebuild for Qt 4.6.0 RC1 in F13 (was built against Beta 1 with unstable ABI)
2009-10-25 15:41:58 +00:00
* Fri Oct 23 2009 Steven M. Parrish <smparrish@gmail.com> - 0.5.0-1
- Official 0.5.0 release
2009-09-04 12:43:29 +00:00
* Thu Sep 03 2009 Steven M. Parrish <smparrish@gmail.com> - 0.5-0.1.rc1
- New release candidate
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.1-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
* Thu Jun 25 2009 Rex Dieter <rdieter@fedoraproject.org> - 0.4.1-2
- cleanup dir ownership
- optimize scriptlets
2009-04-25 19:35:46 +00:00
* Fri Apr 24 2009 Steven M. Parrish <tuxbrewr@fedoraproject.org> - 0.4.1-1
- New upstream release
2009-04-14 23:40:24 +00:00
2009-04-25 19:35:46 +00:00
* Tue Apr 13 2009 Steven M. Parrish <tuxbrewr@fedoraproject.org> - 0.4.0-2
- Enabled KDE integration
2009-02-20 20:20:51 +00:00
* Fri Feb 20 2009 Steven M. Parirsh <tuxbrewr@fedoraproject.org> 0.4.0-1
- New upstream release
2008-12-29 15:40:46 +00:00
* Mon Dec 29 2008 Steven M. Parrish <tuxbrewr@fedoraproject.org> 0.3.1-2
- Fix bug #477850
2008-11-28 14:06:09 +00:00
* Fri Nov 28 2008 Steven M. Parrish <smparrish@shallowcreek.net> 0.3.1-1
- New upstream release
2008-11-12 20:14:38 +00:00
* Wed Nov 12 2008 Steven M. Parrish <smparrish@shallowcreek.net> 0.3.0.3-1
- New upstream release fixes a security issue with CTCP handling in
- Quassel Core, that could potentially be exploited to send
- arbitrary IRC commands on your behalf.
* Tue Sep 16 2008 Steven M. Parrish <smparrish@shallowcreek.net> 0.3.0.1-1
2008-09-16 14:55:23 +00:00
- New upstream release
2008-07-05 21:40:32 +00:00
* Fri Jul 04 2008 Steven Parrish <smparrish@shallowcreek.net> 0.1.rc1
- New upstream release. Now uses cmake instead of qmake
2008-07-02 18:42:19 +00:00
* Wed Jul 02 2008 Steven Parrish <smparrish@shallowcreek.net> - 0.3.beta1
- Final spec for initial release to F9 and rawhide
* Tue Jun 24 2008 Steven Parrish <smparrish[at]shallowcreek.net>
- Revised spec file based on comments from package reviewer.
* Mon Jun 23 2008 Steven Parrish <smparrish[at]shallowcreek.net>
- initial RPM