From 7a2a03e23647da0ddcb084ea5d03773d91afaf18 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Thu, 9 Apr 2009 21:26:53 +0000 Subject: [PATCH 1/4] Initialize branch F-9 for shntool --- branch | 1 + 1 file changed, 1 insertion(+) create mode 100644 branch diff --git a/branch b/branch new file mode 100644 index 0000000..1c26f78 --- /dev/null +++ b/branch @@ -0,0 +1 @@ +F-9 From 5fc25d1352fc9edc98ced277f375e67e113128b4 Mon Sep 17 00:00:00 2001 From: Felix Kaechele Date: Fri, 10 Apr 2009 16:41:07 +0000 Subject: [PATCH 2/4] initial import --- .cvsignore | 1 + import.log | 1 + shntool.spec | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 4 files changed, 55 insertions(+) create mode 100644 import.log create mode 100644 shntool.spec diff --git a/.cvsignore b/.cvsignore index e69de29..c921d86 100644 --- a/.cvsignore +++ b/.cvsignore @@ -0,0 +1 @@ +shntool-3.0.10.tar.gz diff --git a/import.log b/import.log new file mode 100644 index 0000000..5ced3b6 --- /dev/null +++ b/import.log @@ -0,0 +1 @@ +shntool-3_0_10-1_fc11:F-9:shntool-3.0.10-1.fc11.src.rpm:1239381631 diff --git a/shntool.spec b/shntool.spec new file mode 100644 index 0000000..b02b07f --- /dev/null +++ b/shntool.spec @@ -0,0 +1,52 @@ +Name: shntool +Version: 3.0.10 +Release: 1%{?dist} +Summary: A multi-purpose WAVE data processing and reporting utility + +Group: Applications/Multimedia +License: GPLv2+ +URL: http://etree.org/shnutils/shntool +Source0: http://etree.org/shnutils/shntool/dist/src/%{name}-%{version}.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +%description +A multi-purpose WAVE data processing and reporting utility. File +formats are abstracted from its core, so it can process any file that contains +WAVE data, compressed or not - provided there exists a format module to handle +that particular file type. + +%prep +%setup -q + + +%build +%configure +make %{?_smp_mflags} + + +%install +rm -rf $RPM_BUILD_ROOT +make install DESTDIR=$RPM_BUILD_ROOT + + +%clean +rm -rf $RPM_BUILD_ROOT + + +%files +%defattr(-,root,root,-) +%doc AUTHORS ChangeLog COPYING NEWS README +%doc doc/* +%{_bindir}/shn* +%{_mandir}/man1/%{name}.1.gz + + +%changelog +* Thu Apr 09 2009 Felix Kaechele - 3.0.10-1 +- 3.0.10 + +* Sun Mar 29 2009 Felix Kaechele - 3.0.9-1 +- 3.0.9 + +* Tue Mar 03 2009 Felix Kaechele - 3.0.8-1 +- initial build diff --git a/sources b/sources index e69de29..7739f27 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +5d41f8f42c3c15e3145a7a43539c3eae shntool-3.0.10.tar.gz From 3e078270a9496b9db51778d0534de0c1f8114b91 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 01:39:29 +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 54e733b..9c987ad 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ NAME := shntool 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 81b3f701e6aa630bf852954e546df17938f60554 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 12:44:31 +0000 Subject: [PATCH 4/4] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- branch | 1 - import.log | 1 - 4 files changed, 23 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 branch delete mode 100644 import.log 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 9c987ad..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: shntool -# $Id$ -NAME := shntool -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 1c26f78..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -F-9 diff --git a/import.log b/import.log deleted file mode 100644 index 5ced3b6..0000000 --- a/import.log +++ /dev/null @@ -1 +0,0 @@ -shntool-3_0_10-1_fc11:F-9:shntool-3.0.10-1.fc11.src.rpm:1239381631