From 0dec316c6167d817175bf45918da492d1eb91f97 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Tue, 29 Sep 2009 07:13:29 +0000 Subject: [PATCH 1/4] Initialize branch F-12 for urlview --- branch | 1 + 1 file changed, 1 insertion(+) create mode 100644 branch diff --git a/branch b/branch new file mode 100644 index 0000000..06de2d2 --- /dev/null +++ b/branch @@ -0,0 +1 @@ +F-12 From 56f0422326710cdc18d068041806a595323f6d8f Mon Sep 17 00:00:00 2001 From: Miroslav Lichvar Date: Thu, 8 Oct 2009 12:31:39 +0000 Subject: [PATCH 2/4] - add man page link for urlview.conf (#526162) --- urlview.spec | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/urlview.spec b/urlview.spec index fe1d4e7..ed43bbc 100644 --- a/urlview.spec +++ b/urlview.spec @@ -1,6 +1,6 @@ Name: urlview Version: 0.9 -Release: 6%{?dist} +Release: 7%{?dist} Summary: URL extractor/launcher Group: Applications/Internet @@ -33,10 +33,11 @@ make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT -mkdir -p $RPM_BUILD_ROOT{%{_sysconfdir},%{_bindir},%{_mandir}/man1} +mkdir -p $RPM_BUILD_ROOT{%{_sysconfdir},%{_bindir},%{_mandir}/man{1,5}} install -p -m644 urlview.conf.suse $RPM_BUILD_ROOT%{_sysconfdir}/urlview.conf install -p urlview url_handler.sh $RPM_BUILD_ROOT%{_bindir} install -p -m644 urlview.man $RPM_BUILD_ROOT%{_mandir}/man1/urlview.1 +echo '.so man1/urlview.1' > $RPM_BUILD_ROOT%{_mandir}/man5/urlview.conf.5 %clean rm -rf $RPM_BUILD_ROOT @@ -48,8 +49,12 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/urlview %{_bindir}/url_handler.sh %{_mandir}/man1/urlview.1* +%{_mandir}/man5/urlview.conf.5* %changelog +* Tue Sep 29 2009 Miroslav Lichvar 0.9-7 +- add man page link for urlview.conf (#526162) + * Sun Jul 26 2009 Fedora Release Engineering - 0.9-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From 509eb6776033d154cf7980298321da522d770ada Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 01:16:05 +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 62f9f83..001a8c6 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Makefile for source rpm: urlview -# $Id$ +# $Id: Makefile,v 1.1 2007/07/09 17:23:57 wtogami Exp $ NAME := urlview 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 62b7035892d4cef3e30126b5d0948fed2796dd68 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 14:47:16 +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 001a8c6..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: urlview -# $Id: Makefile,v 1.1 2007/07/09 17:23:57 wtogami Exp $ -NAME := urlview -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 06de2d2..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -F-12