From 30854b29d6b34ecd2eb85f4a740a8ae133867adf Mon Sep 17 00:00:00 2001 From: Warren Togami Date: Wed, 29 Nov 2006 22:50:18 +0000 Subject: [PATCH 1/4] Initialize branch FC-6 for urlgfe --- branch | 1 + 1 file changed, 1 insertion(+) create mode 100644 branch diff --git a/branch b/branch new file mode 100644 index 0000000..d5b6362 --- /dev/null +++ b/branch @@ -0,0 +1 @@ +FC-6 From f83cbc327af641efee65e5e4208aa1ea0d51ae9b Mon Sep 17 00:00:00 2001 From: Mamoru Tasaka Date: Wed, 29 Aug 2007 15:51:41 +0000 Subject: [PATCH 2/4] - 1.0.2 --- .cvsignore | 2 +- sources | 2 +- urlgfe.spec | 17 ++++++++++++++--- 3 files changed, 16 insertions(+), 5 deletions(-) diff --git a/.cvsignore b/.cvsignore index eda5b24..0d82924 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -urlgfe-1.0.tar.gz +urlgfe-1.0.2.tar.gz diff --git a/sources b/sources index 01335f1..2345a6c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -9a5284665e09cac3397c3ea5d7baf6d8 urlgfe-1.0.tar.gz +d54bacbb107ae29a611dd3ec7bd597a2 urlgfe-1.0.2.tar.gz diff --git a/urlgfe.spec b/urlgfe.spec index 200ecc1..fcce804 100644 --- a/urlgfe.spec +++ b/urlgfe.spec @@ -1,16 +1,17 @@ Name: urlgfe -Version: 1.0 +Version: 1.0.2 Release: 1%{?dist} Summary: Urlgfe download manager Group: Applications/Internet -License: LGPL +License: LGPLv2+ URL: http://urlget.sourceforge.net/ -Source0: http://superb-west.dl.sourceforge.net/sourceforge/urlget/%{name}-%{version}.tar.gz +Source0: http://downloads.sourceforge.net/urlget/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: curl-devel BuildRequires: expat-devel +BuildRequires: gawk BuildRequires: gtk2-devel BuildRequires: krb5-devel BuildRequires: pcre-devel @@ -29,6 +30,7 @@ each download in that category. %build %configure +%{__sed} -i.mkdir -e 's|@MKINSTALLDIRS@|install-sh -d|' po/Makefile %{__make} %{?_smp_mflags} %install @@ -61,5 +63,14 @@ done %{_datadir}/applications/fedora-%{name}.desktop %changelog +* Wed Aug 29 2007 Mamoru Tasaka - 1.0.2-1 +- 1.0.2 + +* Wed Aug 22 2007 Mamoru Tasaka - 1.0-1.dist.2 +- Mass rebuild (buildID or binutils issue) + +* Fri Aug 3 2007 Mamoru Tasaka - 1.0-1.dist.1 +- License update + * Wed Nov 29 2006 Mamoru Tasaka - 1.0-1 - Initial packaging to import to Fedora Extras. From a8404b12219504e36a7321902ba1b97f50a69199 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 01:16:03 +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 15a6db2..e290d2a 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Makefile for source rpm: urlgfe -# $Id$ +# $Id: Makefile,v 1.1 2006/11/29 09:54:14 mtasaka Exp $ NAME := urlgfe 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 54aa6f8d773372a665a4810a595ca8ebce385452 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 14:47:13 +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 e290d2a..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: urlgfe -# $Id: Makefile,v 1.1 2006/11/29 09:54:14 mtasaka Exp $ -NAME := urlgfe -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),) -# 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) diff --git a/branch b/branch deleted file mode 100644 index d5b6362..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -FC-6