From 8df06f9ca4647d15d9fc80d04717eefee8ecfaee Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Tue, 29 Sep 2009 07:15:47 +0000 Subject: [PATCH 1/7] Initialize branch F-12 for videodog --- 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 b937bd2bb0553502df6eae99278791aa856663ed Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Wed, 25 Nov 2009 22:43:21 +0000 Subject: [PATCH 2/7] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d9ec8d4..b9060d0 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ NAME := videodog 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 dce8c7f74bf47f454c46f61fd3cb60c74abe2599 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 01:13:42 +0000 Subject: [PATCH 3/7] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d9ec8d4..b9060d0 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ NAME := videodog 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 aaf994b1856f0d725465054de8e3c1a1ad00e23c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 14:58:22 +0000 Subject: [PATCH 4/7] 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 b9060d0..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: videodog -# $Id$ -NAME := videodog -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 From e26b3b8017c04e18a03cda8c3bc4fb0ac2cd5d2c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 14:58:23 +0000 Subject: [PATCH 5/7] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- 2 files changed, 21 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile 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 b9060d0..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: videodog -# $Id$ -NAME := videodog -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) From f993af8b09762885eeb5778000498edc83e924d6 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Mon, 7 Feb 2011 19:26:17 -0600 Subject: [PATCH 6/7] - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild --- videodog.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/videodog.spec b/videodog.spec index 28130e8..31cc872 100644 --- a/videodog.spec +++ b/videodog.spec @@ -1,6 +1,6 @@ Name: videodog Version: 0.31 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Command-line video4linux frame-grabber Group: Applications/Multimedia @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Feb 07 2011 Fedora Release Engineering - 0.31-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + * Sun Jul 26 2009 Fedora Release Engineering - 0.31-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From 712a8eb7e7ac2a4d945ddafecc5013541bf91217 Mon Sep 17 00:00:00 2001 From: Patrick Laughton Date: Tue, 22 Feb 2011 21:17:16 -0600 Subject: [PATCH 7/7] retiring abandonware: videodog --- dead.package | 2 ++ sources | 1 - videodog.spec | 76 --------------------------------------------------- 3 files changed, 2 insertions(+), 77 deletions(-) create mode 100644 dead.package delete mode 100644 sources delete mode 100644 videodog.spec diff --git a/dead.package b/dead.package new file mode 100644 index 0000000..0024b51 --- /dev/null +++ b/dead.package @@ -0,0 +1,2 @@ +Upstream gone since at least 2008-04-23; limped along without build errors +until 2011-02-22. diff --git a/sources b/sources deleted file mode 100644 index b5cb550..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -0bdc30ad64b5bbb602b351463bc26127 videodog0.31.tar.gz diff --git a/videodog.spec b/videodog.spec deleted file mode 100644 index 31cc872..0000000 --- a/videodog.spec +++ /dev/null @@ -1,76 +0,0 @@ -Name: videodog -Version: 0.31 -Release: 9%{?dist} -Summary: Command-line video4linux frame-grabber - -Group: Applications/Multimedia -License: LGPLv2+ -URL: http://paginas.terra.com.br/informatica/gleicon/video4linux/videodog.html -Source0: http://paginas.terra.com.br/informatica/gleicon/video4linux/videodog%{version}.tar.gz -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) - -BuildRequires: libjpeg-devel - -%description -VideoDog is a command line tool to grab frames from a -Video4linux-compliant device. It can export a file in raw, PNM, or JPG -formats. It can also do loop capture using multiple buffers, or just be -used to set/retrieve device data or scripts. - -%prep -%setup -q -n %{name}-%{version} -sed -i -e 's/-O3 -Wall/%{optflags}/' Makefile - -%build -make %{?_smp_mflags} - - -%install -rm -rf $RPM_BUILD_ROOT -mkdir -p $RPM_BUILD_ROOT%{_bindir} $RPM_BUILD_ROOT%{_mandir}/man1 \ - $RPM_BUILD_ROOT%{_sysconfdir} -install -m 755 videodog $RPM_BUILD_ROOT%{_bindir} -install videodog.man $RPM_BUILD_ROOT%{_mandir}/man1/videodog.1 -install -m 644 vd.conf $RPM_BUILD_ROOT%{_sysconfdir} - - -%clean -rm -rf $RPM_BUILD_ROOT - - -%files -%defattr(-,root,root,-) -%doc ALPHABLEND CHANGELOG CONFIG_FILE EFFECTS LICENSE MOTION README TODO USAGE -%config(noreplace) %{_sysconfdir}/vd.conf -%{_bindir}/videodog -%{_mandir}/man1/videodog.1* - - -%changelog -* Mon Feb 07 2011 Fedora Release Engineering - 0.31-9 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild - -* Sun Jul 26 2009 Fedora Release Engineering - 0.31-8 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild - -* Wed Feb 25 2009 Fedora Release Engineering - 0.31-7 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild - -* Wed Feb 13 2008 Patrick "Jima" Laughton 0.31-6 -- Bump-n-build for GCC 4.3 - -* Tue Aug 21 2007 Patrick "Jima" Laughton 0.31-5 -- Rebuild for BuildID -- License clarification - -* Mon Aug 28 2006 Patrick "Jima" Laughton 0.31-4 -- Rebuild for FC6 - -* Sun May 21 2006 Patrick "Jima" Laughton 0.31-3 -- Fixed bug 192609 (thanks, Ville) - -* Mon Apr 24 2006 Jima 0.31-2 -- Cleaned up URLs as per Andreas Thienemann's recommendation - -* Mon Apr 24 2006 Jima 0.31-1 -- Initial Fedora Extras RPM