irssi/devel: updated to 0.8.10a / massrebuild stuff
This commit is contained in:
parent
9586035a89
commit
9df7ec409c
@ -1 +1 @@
|
||||
irssi-0.8.10.tar.bz2
|
||||
irssi-0.8.10a.tar.bz2
|
||||
|
14
irssi-0.8.10-dcc-unregister.patch
Normal file
14
irssi-0.8.10-dcc-unregister.patch
Normal file
@ -0,0 +1,14 @@
|
||||
--- src/irc/dcc/dcc.c 2006-04-25 01:06:44.000000000 -0500
|
||||
+++ src/irc/dcc/dcc.c 2006-04-25 01:30:52.000000000 -0500
|
||||
@@ -58,8 +58,9 @@
|
||||
|
||||
pos = gslist_find_string(dcc_types, type);
|
||||
if (pos != NULL) {
|
||||
- dcc_types = g_slist_remove(dcc_types, pos->data);
|
||||
- g_free(pos->data);
|
||||
+ gchar *data = pos->data;
|
||||
+ dcc_types = g_slist_remove(dcc_types, pos->data);
|
||||
+ g_free(data);
|
||||
}
|
||||
}
|
||||
|
@ -1,12 +0,0 @@
|
||||
--- src/irc/dcc/dcc.c 2005-12-25 02:12:48.000000000 -0600
|
||||
+++ src/irc/dcc/dcc.c 2005-12-25 02:12:55.000000000 -0600
|
||||
@@ -58,8 +58,8 @@
|
||||
|
||||
pos = gslist_find_string(dcc_types, type);
|
||||
if (pos != NULL) {
|
||||
- dcc_types = g_slist_remove(dcc_types, pos->data);
|
||||
g_free(pos->data);
|
||||
+ dcc_types = g_slist_remove(dcc_types, pos->data);
|
||||
}
|
||||
}
|
||||
|
@ -3,13 +3,13 @@
|
||||
Summary: Modular text mode IRC client with Perl scripting
|
||||
Name: irssi
|
||||
Version: 0.8.10
|
||||
Release: 4%{?dist}
|
||||
Release: 5.a%{?dist}
|
||||
|
||||
License: GPL
|
||||
Group: Applications/Communications
|
||||
URL: http://irssi.org/
|
||||
Source0: http://irssi.org/files/irssi-%{version}.tar.bz2
|
||||
Patch0: irssi-0.8.10-glibc-invalid-pointer.patch
|
||||
Patch0: irssi-0.8.10-dcc-unregister.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
|
||||
BuildRequires: ncurses-devel openssl-devel zlib-devel
|
||||
BuildRequires: pkgconfig glib2-devel
|
||||
@ -85,6 +85,10 @@ rm -rf $RPM_BUILD_ROOT
|
||||
%{_includedir}/irssi
|
||||
|
||||
%changelog
|
||||
* Sun Sep 17 2006 Dams <anvil[AT]livna.org> - 0.8.10-5.a
|
||||
- Updated to 0.8.10a
|
||||
- Updated Patch1 still from Saleem
|
||||
|
||||
* Wed Mar 15 2006 Dams <anvil[AT]livna.org> - 0.8.10-4
|
||||
- Added patch from Saleem Abdulrasool to fix invalid pointer.
|
||||
|
||||
|
@ -1 +0,0 @@
|
||||
http://fedoraproject.org/wiki/Extras/Schedule/FC6MassRebuild
|
Loading…
Reference in New Issue
Block a user