Compare commits

..

8 commits

Author SHA1 Message Date
Fedora Release Engineering
9e76656438 dist-git conversion 2010-07-29 15:10:12 +00:00
Bill Nottingham
4b6f92a87d Fix typo that causes a failure to update the common directory. (releng
#2781)
2009-11-26 01:15:55 +00:00
athimm
983a4881d9 Bump release again, cvs/koji complain about tagged/untagged 9.1 release (?) 2008-10-05 09:38:36 +00:00
athimm
33e9d4b08c Fix Source URL. 2008-10-05 09:27:27 +00:00
athimm
1f5c90b0b7 Fix Source URL. 2008-10-05 09:17:46 +00:00
athimm
c13e70db19 Update to 5.2.0. 2008-10-05 09:06:27 +00:00
athimm
6a2d27a816 Fix license tag. 2008-08-25 11:42:02 +00:00
Jesse Keating
485dc59d87 Initialize branch F-9 for vtkdata 2008-04-22 00:54:01 +00:00
4 changed files with 69 additions and 1 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
vtkdata-5.2.0.tar.gz

View file

@ -1 +0,0 @@
Merged with main vtk package

1
sources Normal file
View file

@ -0,0 +1 @@
4da83c829cf38663f9c77b681f29a921 vtkdata-5.2.0.tar.gz

67
vtkdata.spec Normal file
View file

@ -0,0 +1,67 @@
Summary: Example data file for VTK
Name: vtkdata
Version: 5.2.0
Release: 10
# This is a variant BSD license, a cross between BSD and ZLIB.
# For all intents, it has the same rights and restrictions as BSD.
# http://fedoraproject.org/wiki/Licensing/BSD#VTKBSDVariant
# This file tree has no indication of license, but upstream confirms it
# is the same as the vtk code.
License: BSD
Group: Development/Libraries
URL: http://www.vtk.org/
Source0: http://www.vtk.org/files/release/5.2/%{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 Oct 5 2008 Axel Thimm <Axel.Thimm@ATrpms.net> - 5.2.0-9
- Update to 5.2.0.
* Wed May 21 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 5.0.4-8
- fix license tag
* Sat Feb 23 2008 Axel Thimm <Axel.Thimm@ATrpms.net> - 5.0.4-7
- Update to 5.0.4.
* Sun Apr 15 2007 Axel Thimm <Axel.Thimm@ATrpms.net> - 5.0.3-6
- Update to 5.0.3.
* Mon Sep 11 2006 Axel Thimm <Axel.Thimm@ATrpms.net> - 5.0.2-5
- Update to 5.0.2.
* Wed Jul 19 2006 Axel Thimm <Axel.Thimm@ATrpms.net> - 5.0.1-4
- Fix some permissions.
* Thu Jul 13 2006 Axel Thimm <Axel.Thimm@ATrpms.net> - 5.0.1-3
- Update to 5.0.1.
* Thu Jun 1 2006 Axel Thimm <Axel.Thimm@ATrpms.net>
- Initial build.