From 053a12b3e80493953f199593fee9e2a7e0d45328 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Sun, 3 Jun 2007 18:35:34 +0000 Subject: [PATCH 1/4] Initialize branch FC-6 for vtkdata --- 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 a30d175c9e7cce0ecc4ba3d0ebb779de631f96e4 Mon Sep 17 00:00:00 2001 From: athimm Date: Sun, 3 Jun 2007 22:58:53 +0000 Subject: [PATCH 2/4] Build for non-devel --- sources | 1 + vtkdata.spec | 53 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 54 insertions(+) create mode 100644 vtkdata.spec diff --git a/sources b/sources index e69de29..1f7caa4 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +4752aa5a363eae72abf3cb5c1f0fe4d9 vtkdata-5.0.3.tar.gz diff --git a/vtkdata.spec b/vtkdata.spec new file mode 100644 index 0000000..bff399e --- /dev/null +++ b/vtkdata.spec @@ -0,0 +1,53 @@ +Summary: Example data file for VTK +Name: vtkdata +Version: 5.0.3 +Release: 6%{?dist} +License: BSD-like +Group: Development/Libraries +URL: http://www.vtk.org/ +Source0: http://www.vtk.org/files/release/5.0/%{name}-%{version}.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root +BuildArch: noarch + +%description +Example data file for VTK + +%install +rm -rf %{buildroot} +mkdir -p %{buildroot}%{_datadir} +cd %{buildroot}%{_datadir} +tar -zpxf %{SOURCE0} +mv VTKData %{name}-%{version} + +# (Verbosely) fix 0555 permissions +find . -type f -perm 0555 | xargs -r echo chmod 0755 | sh -x +# Remove execute bits from not-scripts +for file in `find . -type f -perm 0755`; do + head -1 $file | grep '^#!' > /dev/null && continue + chmod 0644 $file +done + +%clean +rm -rf %{buildroot} + + +%files +%defattr(-,root,root,-) +%{_datadir}/* + +%changelog +* Sun Apr 15 2007 Axel Thimm - 5.0.3-6 +- Update to 5.0.3. + +* Mon Sep 11 2006 Axel Thimm - 5.0.2-5 +- Update to 5.0.2. + +* Wed Jul 19 2006 Axel Thimm - 5.0.1-4 +- Fix some permissions. + +* Thu Jul 13 2006 Axel Thimm - 5.0.1-3 +- Update to 5.0.1. + +* Thu Jun 1 2006 Axel Thimm +- Initial build. + From 8fa8d7d9b11d8d0bbdafe16bc49b012009a3b37c Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 01:15:56 +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 b7d4a84..8259819 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ NAME := vtkdata 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 8fc1765e4a1786c2eae1b3da684371afee3f76b4 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 15:10:14 +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 8259819..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: vtkdata -# $Id$ -NAME := vtkdata -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