Compare commits
26 commits
F-13-split
...
rawhide
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b14ccd63b1 | ||
|
|
583e3a712a | ||
|
|
f45d2e76a4 | ||
|
|
a1802c1c82 | ||
|
|
5b57bbf5bc | ||
|
|
9e0d9b610a | ||
|
|
1f61f47913 | ||
|
|
84836ec0f7 | ||
|
|
e58ac5834c | ||
|
|
e7a73332ff | ||
|
|
71c558ce00 | ||
|
|
98e851a7f9 | ||
|
|
cfdce8f6b4 | ||
|
|
0dc55e42ad | ||
|
|
bafa49b39d | ||
|
|
03b7a69973 | ||
|
|
3e3b7e198b | ||
|
|
76c9061571 | ||
|
|
dd0d93d339 | ||
|
|
382cad82c0 | ||
|
|
e7db0843ca | ||
|
|
d340366d60 | ||
|
|
5b73d0826f | ||
|
|
071872e587 | ||
|
|
fa067a60e0 | ||
|
|
b0295b3150 |
5 changed files with 1 additions and 99 deletions
|
|
@ -1 +0,0 @@
|
||||||
vtkdata-5.4.2.tar.gz
|
|
||||||
21
Makefile
21
Makefile
|
|
@ -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)
|
|
||||||
1
dead.package
Normal file
1
dead.package
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
Merged with main vtk package
|
||||||
1
sources
1
sources
|
|
@ -1 +0,0 @@
|
||||||
3b05eadd4446bbf3f863e744b7bee14a vtkdata-5.4.2.tar.gz
|
|
||||||
76
vtkdata.spec
76
vtkdata.spec
|
|
@ -1,76 +0,0 @@
|
||||||
Summary: Example data file for VTK
|
|
||||||
Name: vtkdata
|
|
||||||
Version: 5.4.2
|
|
||||||
Release: 13%{?dist}
|
|
||||||
# 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 Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.4.2-12
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Jun 6 2009 Axel Thimm <Axel.Thimm@ATrpms.net> - 5.4.2-11
|
|
||||||
- Update to 5.4.2.
|
|
||||||
|
|
||||||
* Wed Mar 11 2009 Orion Poplawski <orion@cora.nwra.com> - 5.2.1-10
|
|
||||||
- Update to 5.2.1
|
|
||||||
|
|
||||||
* 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.
|
|
||||||
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue