From d82d15ca5615f1deee63dc27f494abb91a14065f Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Fri, 25 Jan 2008 19:50:40 +0000 Subject: [PATCH 1/4] Initialize branch F-8 for wavextract --- branch | 1 + 1 file changed, 1 insertion(+) create mode 100644 branch diff --git a/branch b/branch new file mode 100644 index 0000000..e9e7ccd --- /dev/null +++ b/branch @@ -0,0 +1 @@ +F-8 From aac01d3eb6ed4af2762069c90d457a7a0d53340e Mon Sep 17 00:00:00 2001 From: Krzysztof Kurzawski Date: Sat, 26 Jan 2008 13:58:30 +0000 Subject: [PATCH 2/4] import wavextract 1.0.0 --- .cvsignore | 1 + sources | 1 + wavextract.spec | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 51 insertions(+) create mode 100644 wavextract.spec diff --git a/.cvsignore b/.cvsignore index e69de29..4e47f54 100644 --- a/.cvsignore +++ b/.cvsignore @@ -0,0 +1 @@ +wavextract-1.0.0.tar.gz diff --git a/sources b/sources index e69de29..8cd1b9e 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +d0987179afd5ec70a0c6d2f9bf5d4289 wavextract-1.0.0.tar.gz diff --git a/wavextract.spec b/wavextract.spec new file mode 100644 index 0000000..af887af --- /dev/null +++ b/wavextract.spec @@ -0,0 +1,49 @@ +Name: wavextract +Version: 1.0.0 +Release: 3%{?dist} +Summary: Program for extracting embedded audio data from JPEG images +Summary(pl): Program do wyciągania zagnieżdżonych danych audio z plików JPEG +Group: Applications/Multimedia +License: GPLv2+ +URL: http://developer.berlios.de/projects/wavextract +Source0: http://download.berlios.de/wavextract/%name-%version.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +BuildArch: noarch +Requires: python python-imaging + +%description +Program for extracting embedded audio data from JPEG images. + +%description -l pl +Program do wyciągania zagnieżdżonych danych audio z plików JPEG. + +%prep +%setup -qn %{name} + +%build +#nothing to build + +%install +rm -rf $RPM_BUILD_ROOT +mkdir -p $RPM_BUILD_ROOT%{_bindir} +cp %{name} $RPM_BUILD_ROOT%{_bindir}/%{name} + +%clean +rm -rf $RPM_BUILD_ROOT + +%files +%defattr(-,root,root,-) +%doc README COPYING +%{_bindir}/%{name} + +%changelog +* Sat Jan 26 2008 Krzysztof Kurzawski - 1.0.0-3 +- Add polish description and summary + +* Mon Dec 24 2007 Krzysztof Kurzawski - 1.0.0-2 +- Correct license tag +- Correct Source0 +- Correct BuildRoot + +* Mon Dec 24 2007 Krzysztof Kurzawski - 1.0.0-1 +- First release From 4601e6ce5ba675d16b9f37620a4b7657481c33d6 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 01:15:24 +0000 Subject: [PATCH 3/4] 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 3de1330..e93db29 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ NAME := wavextract 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 b43d2514f027a7ddcdc69b41b882aed9f5061c29 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 15:12:56 +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 e93db29..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: wavextract -# $Id$ -NAME := wavextract -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 e9e7ccd..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -F-8