Compare commits
6 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
798cf60c43 | ||
|
|
37f335d802 | ||
|
|
aef19b3d67 | ||
|
|
e93f9281cd | ||
|
|
c31624e11c | ||
|
|
e33253a4bf |
6 changed files with 39 additions and 26 deletions
|
|
@ -1 +0,0 @@
|
|||
xchat-gnome-0.24.0.tar.bz2
|
||||
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
xchat-gnome-0.24.1.tar.bz2
|
||||
21
Makefile
21
Makefile
|
|
@ -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)
|
||||
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
925010f01f593e6ff7027f2ba523c607 xchat-gnome-0.24.0.tar.bz2
|
||||
34738e4bfd0cb4a6627f6b40a99932d2 xchat-gnome-0.24.1.tar.bz2
|
||||
|
|
|
|||
|
|
@ -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
20
xchat-topic-update.patch
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue