Compare commits

...
Sign in to create a new pull request.

6 commits

Author SHA1 Message Date
Fedora Release Engineering
798cf60c43 dist-git conversion 2010-07-29 15:35:37 +00:00
Bill Nottingham
37f335d802 Fix typo that causes a failure to update the common directory. (releng
#2781)
2009-11-26 01:29:43 +00:00
Brian Pepple
aef19b3d67 - Fix topic patch. 2009-06-22 00:03:59 +00:00
Brian Pepple
e93f9281cd - Add patch to fix topic entry bug. (#483839) 2009-05-10 12:01:51 +00:00
Brian Pepple
c31624e11c - Update to 0.24.1.
- Update Source URL.
2008-11-27 02:46:29 +00:00
Jesse Keating
e33253a4bf Initialize branch F-10 for xchat-gnome 2008-11-07 04:27:32 +00:00
6 changed files with 39 additions and 26 deletions

View file

@ -1 +0,0 @@
xchat-gnome-0.24.0.tar.bz2

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
xchat-gnome-0.24.1.tar.bz2

View file

@ -1,21 +0,0 @@
# Makefile for source rpm: xchat-gnome
# $Id$
NAME := xchat-gnome
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)

View file

@ -1 +1 @@
925010f01f593e6ff7027f2ba523c607 xchat-gnome-0.24.0.tar.bz2
34738e4bfd0cb4a6627f6b40a99932d2 xchat-gnome-0.24.1.tar.bz2

View file

@ -1,14 +1,17 @@
Name: xchat-gnome
Version: 0.24.0
Release: 1%{?dist}
Version: 0.24.1
Release: 3%{?dist}
Summary: GNOME front-end to xchat
Group: Applications/Internet
License: GPLv2+
URL: http://%{name}.navi.cx/
Source0: http://flapjack.navi.cx/releases/%{name}/%{name}-%{version}.tar.bz2
Source0: http://ftp.acc.umu.se/pub/gnome/sources/%{name}/0.24/%{name}-%{version}.tar.bz2
# Patch specific to Fedora to use .xchat-gnome, instead of .xchat2
Patch0: %{name}-0.23.92-config.patch
# Patch to fix pressing "enter" in the middle of editing channel topic.
# RH Bug #483839
Patch1: xchat-topic-update.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: openssl-devel
@ -48,6 +51,7 @@ common settings will be included in the main user interface. .
%prep
%setup -q -n %{name}-%{version}
%patch0 -p1 -b .config
%patch1 -p1 -b .topic
%build
@ -136,6 +140,16 @@ fi
%changelog
* Sun Jun 21 2009 Brian Pepple <bpepple@fedoraproject.org> - 0.24.1-3
- Fix topic patch.
* Sun May 10 2009 Brian Pepple <bpepple@fedoraproject.org> - 0.24.1-2
- Add patch to fix topic entry bug. (#483839)
* Wed Nov 26 2008 Brian Pepple <bpepple@fedoraproject.org> - 0.24.1-1
- Update to 0.24.1.
- Update Source URL.
* Tue Sep 23 2008 Brian Pepple <bpepple@fedoraproject.org> - 0.24.0-1
- Update to 0.24.0.
- Drop deps patch. Fixed upstream.

20
xchat-topic-update.patch Normal file
View file

@ -0,0 +1,20 @@
From 6d1a939a14de918de4a79c010d82796f8035bcfa Mon Sep 17 00:00:00 2001
From: Josselin Mouette <^Css@malsain.org>
Date: Thu, 18 Jun 2009 09:41:33 +0000
Subject: Bug 536916 Pressing "Enter" in the middle of editing channel topic truncates it.
---
diff --git a/src/fe-gnome/topic-label.c b/src/fe-gnome/topic-label.c
index a7d1883..977d29c 100644
--- a/src/fe-gnome/topic-label.c
+++ b/src/fe-gnome/topic-label.c
@@ -315,6 +315,7 @@ static void
topic_entry_activate (GtkTextBuffer *textbuffer, GtkTextIter *arg1, gchar *text, gint len, GtkDialog *dialog)
{
if (strncmp (text, "\n", len) == 0) {
+ g_signal_stop_emission_by_name (G_OBJECT (textbuffer), "insert-text");
gtk_dialog_response (dialog, GTK_RESPONSE_OK);
}
}
--
cgit v0.8.2