Compare commits

...

10 Commits
rawhide ... f9

Author SHA1 Message Date
Fedora Release Engineering f3a4d2921d dist-git conversion 2010-07-29 11:11:39 +00:00
Bill Nottingham 0eaa809126 Fix typo that causes a failure to update the common directory. (releng
#2781)
2009-11-26 01:18:30 +00:00
Steven M. Parrish 8a2737ee6d Fix for bug 477850 2008-12-29 15:36:36 +00:00
Steven M. Parrish 7f4431990e New upstream release 2008-11-28 14:36:38 +00:00
Steven M. Parrish df82323546 New upstream release 2008-11-12 19:57:55 +00:00
Steven M. Parrish 111f887981 New Upstream Release 2008-09-16 15:17:35 +00:00
Steven M. Parrish bd9a64715c New upstream release 2008-07-05 21:52:47 +00:00
Steven M. Parrish dcb5606377 Added .desktop files 2008-07-02 18:59:04 +00:00
Steven M. Parrish e74a0bbcb3 Initial Fedora release 2008-07-02 18:50:49 +00:00
Kevin Fenzi 69e6a245ed Initialize branch F-9 for quassel 2008-07-02 16:42:47 +00:00
9 changed files with 146 additions and 21 deletions

View File

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
quassel-0.3.1.tar.bz2

View File

@ -1,21 +0,0 @@
# Makefile for source rpm: quassel
# $Id$
NAME := quassel
SPECFILE = $(firstword $(wildcard *.spec))
define find-makefile-common
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
endef
MAKEFILE_COMMON := $(shell $(find-makefile-common))
ifeq ($(MAKEFILE_COMMON),)
# attept a checkout
define checkout-makefile-common
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
endef
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
endif
include $(MAKEFILE_COMMON)

11
quassel.desktop Normal file
View File

@ -0,0 +1,11 @@
[Desktop Entry]
Version=1.0
Encoding=UTF-8
Name=Quassel IRC
Exec=quassel
Icon=quassel
Terminal=false
Type=Application
Categories=Qt;Network;IRCClient;

BIN
quassel.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

113
quassel.spec Executable file
View File

@ -0,0 +1,113 @@
Name: quassel
Summary: QT4 Based distrubuted IRC system
Version: 0.3.1
Release: 2%{?dist}
License: GPLv2 or GPLv3
Group: Applications/Internet
URL: http://quassel-irc.org/
Source0: http://quassel-irc.org/system/files/quassel-%{version}.tar.bz2
Source1: %{name}.desktop
Source2: %{name}core.desktop
Source3: %{name}client.desktop
Source4: %{name}.png
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
Requires: qt-sqlite, openssl
BuildRequires: qt-devel, openssl-devel
BuildRequires: cmake
BuildRequires: desktop-file-utils
%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 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
%description client
Quassel client
%prep
%setup -q -n quassel-%{version}
%build
mkdir build
cd build
cmake .. -DWANT_MONO=1
make
%install
rm -rf %{buildroot}
cd build
install -d -m755 %{buildroot}%{_bindir}
install -m755 quassel %{buildroot}%{_bindir}
install -m755 quasselclient %{buildroot}%{_bindir}
install -m755 quasselcore %{buildroot}%{_bindir}
%{__install} -p -D %{SOURCE4} $RPM_BUILD_ROOT%{_datadir}/pixmaps/%{name}.png
desktop-file-install --vendor="fedora" --dir=${RPM_BUILD_ROOT}%{_datadir}/applications %{SOURCE1}
desktop-file-install --vendor="fedora" --dir=${RPM_BUILD_ROOT}%{_datadir}/applications %{SOURCE2}
desktop-file-install --vendor="fedora" --dir=${RPM_BUILD_ROOT}%{_datadir}/applications %{SOURCE3}
%clean
rm -rf %{buildroot}
%files
%defattr(-,root,root,-)
%attr(755,root,root) %{_bindir}/quassel
%doc COPYING gpl-2.0.txt gpl-3.0.txt README
%{_datadir}/applications/fedora-quassel.desktop
%attr(644,root,root) %{_datadir}/pixmaps/quassel.png
%files core
%defattr(-,root,root,-)
%attr(755,root,root) %{_bindir}/quasselcore
%doc COPYING gpl-2.0.txt gpl-3.0.txt README
%{_datadir}/applications/fedora-quasselcore.desktop
%attr(644,root,root) %{_datadir}/pixmaps/quassel.png
%files client
%defattr(-,root,root,-)
%attr(755,root,root) %{_bindir}/quasselclient
%doc COPYING gpl-2.0.txt gpl-3.0.txt README
%{_datadir}/applications/fedora-quasselclient.desktop
%attr(644,root,root) %{_datadir}/pixmaps/quassel.png
%changelog
* Mon Dec 29 2008 Steven M. Parrish <tuxbrewr@fedoraproject.org> 0.3.1-2
- Fix bug #477850
* Fri Nov 28 2008 Steven M. Parrish <smparrish@shallowcreek.net> 0.3.1-1
- New upstream release
* 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
- New upstream release
* Fri Jul 04 2008 Steven Parrish <smparrish@shallowcreek.net> 0.1.rc1
- New upstream release. Now uses cmake instead of qmake
* 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

9
quasselclient.desktop Normal file
View File

@ -0,0 +1,9 @@
[Desktop Entry]
Version=1.0
Encoding=UTF-8
Name=Quassel client
Exec=quasselclient
Icon=quassel
Terminal=false
Type=Application
Categories=Qt;Network;IRCClient;

11
quasselcore.desktop Normal file
View File

@ -0,0 +1,11 @@
[Desktop Entry]
Version=1.0
Encoding=UTF-8
Name=Quassel IRC Core
Exec=quasselcore
Icon=quassel
Terminal=false
Type=Application
Categories=Qt;Network;IRCClient;

View File

@ -0,0 +1 @@
c75fdc99e5d296a2b7db3b58994c501b quassel-0.3.1.tar.bz2