From 4876596b4ebdf25f4b7bc3f533184b18552b7b82 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Wed, 15 Apr 2009 06:55:41 +0000 Subject: [PATCH 1/4] Initialize branch F-11 for intltool --- branch | 1 + 1 file changed, 1 insertion(+) create mode 100644 branch diff --git a/branch b/branch new file mode 100644 index 0000000..25c7708 --- /dev/null +++ b/branch @@ -0,0 +1 @@ +F-11 From ed1ae715e37dc6338bc34549867644da6dac562e Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Wed, 12 Aug 2009 16:37:40 +0000 Subject: [PATCH 2/4] 0.4.10 --- intltool.spec | 14 +++++++++----- sources | 2 +- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/intltool.spec b/intltool.spec index 5b80f05..9402d51 100644 --- a/intltool.spec +++ b/intltool.spec @@ -3,11 +3,11 @@ Name: intltool Summary: Utility for internationalizing various kinds of data files -Version: 0.40.6 +Version: 0.41.0 Release: 1%{?dist} License: GPLv2 with exceptions Group: Development/Tools -Source: http://download.gnome.org/sources/intltool/0.40/%{name}-%{version}.tar.bz2 +Source: http://edge.launchpad.net/intltool/trunk/0.41.0/+download/intltool-%{version}.tar.gz URL: http://www.gnome.org BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch @@ -32,7 +32,7 @@ them in the po files. %build %configure -make +make %install rm -rf $RPM_BUILD_ROOT @@ -44,13 +44,17 @@ rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root) -%doc AUTHORS COPYING NEWS README +%doc AUTHORS COPYING README %{_bindir}/* %{_datadir}/intltool %{_datadir}/aclocal/* %{_mandir}/man*/* %changelog +* Wed Aug 12 2009 Matthias Clasen - 0.41.0-1 +- Update to 0.41.0 +- Convert specfile to UTF-8. + * Mon Mar 16 2009 Matthias Clasen - 0.40.6-1 - Update to 0.40.6 @@ -270,7 +274,7 @@ rm -rf $RPM_BUILD_ROOT * Wed Aug 8 2001 Jonathan Blandford - Fix bug #45699 and #50634 by upgrading version. -* Mon Jul 16 2001 Trond Eivind Glomsrød +* Mon Jul 16 2001 Trond Eivind Glomsrød - s/Copyright/License/ - Shorter summary - Remove empty post/postun scripts diff --git a/sources b/sources index bd1a124..3c5cfea 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -69bc0353323112f42ad4f9cf351bc3e5 intltool-0.40.6.tar.bz2 +8a6e4afd3fc93637dcd70e36ab899364 intltool-0.41.0.tar.gz From 22cde21ac8b69c66c93d833a45b4ab1cedd0ba04 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 01:21:25 +0000 Subject: [PATCH 3/4] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index d0673ed..5c84add 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Makefile for source rpm: intltool -# $Id: Makefile,v 1.1 2004/09/09 06:17:57 cvsdist Exp $ +# $Id: Makefile,v 1.2 2007/10/15 18:53:06 notting Exp $ NAME := intltool 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 +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) From 43b50786a33fb79e02d87cc1f65453dac41c363b Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 28 Jul 2010 18:20:45 +0000 Subject: [PATCH 4/4] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- branch | 1 - 3 files changed, 22 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 branch diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index 5c84add..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: intltool -# $Id: Makefile,v 1.2 2007/10/15 18:53:06 notting Exp $ -NAME := intltool -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 $$d/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),) -# attempt 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) diff --git a/branch b/branch deleted file mode 100644 index 25c7708..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -F-11