Dominique Leuenberger 2018-11-27 09:43:55 +00:00 committed by Git OBS Bridge
commit 621faa191d
8 changed files with 84 additions and 15 deletions

34
Copyright.txt Normal file
View File

@ -0,0 +1,34 @@
/*=========================================================================
Program: Visualization Toolkit
Module: Copyright.txt
Copyright (c) 1993-2015 Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither name of Ken Martin, Will Schroeder, or Bill Lorensen nor the names
of any contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS''
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
=========================================================================*/

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a3cbcbdfc7af97ce0ae53295285b25a4c45a7c52d21396b3b425bfa9776b401e
size 260205646

3
VTKData-8.1.2.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:330af5bae437d32f1717f4d2e507dfc49b188ce8b6847d0cf802da329be0b991
size 283110489

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d45bf7861058645f370ad1dcaa03b980c25f1907382da38dc30a35053b469f3a
size 166991606

8
_constraints Normal file
View File

@ -0,0 +1,8 @@
<constraints>
<hardware>
<disk>
<size unit="G">2</size>
</disk>
</hardware>
</constraints>

2
vtkdata-rpmlintrc Normal file
View File

@ -0,0 +1,2 @@
addFilter("vtkdata.* hidden-file-or-dir .*/.ExternalData")
addFilter("vtkdata.* zero-length .*/.ExternalData/MD5/.*")

View File

@ -1,3 +1,18 @@
-------------------------------------------------------------------
Thu Nov 22 15:41:50 UTC 2018 - Todd R <toddrme2178@gmail.com>
- Update to version 8.1.2
* Issue error if vtkAlgorithm::GetInputConnection called on wrong port
* Added explicit cast to pacify UBSans “implicit-integer-truncation”
* Make some orientation marker widget methods virtual
* vtkImageBlend bug fix for compound mode
* vtkFlyingEdges2D: Properly color multiple isocontour values
* Invoke DeletePointEvent before deleting vtkSeedWidget seed
* Fix compilation issue due to Python3.7 API change
* Fix bug where re-enabling seed widget wouldn't move existing seeds
- Include VTKLargeData also
- Include license from source repository
-------------------------------------------------------------------
Thu Jul 27 21:06:01 UTC 2017 - badshah400@gmail.com

View File

@ -1,7 +1,7 @@
#
# spec file for package vtkdata
#
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -12,21 +12,26 @@
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
Name: vtkdata
Version: 8.0.0
Version: 8.1.2
Release: 0
%define series 8.0
%define series 8.1
Summary: Kitware VTK Library Data
License: BSD-3-Clause
Group: Productivity/Scientific/Other
Url: http://www.vtk.org
Source: http://www.vtk.org/files/release/%{series}/VTKData-%{version}.tar.gz
Url: https://www.vtk.org
Source0: https://www.vtk.org/files/release/%{series}/VTKData-%{version}.tar.gz
Source1: https://www.vtk.org/files/release/%{series}/VTKLargeData-%{version}.tar.gz
Source10: https://gitlab.kitware.com/vtk/vtk/raw/v%{version}/Copyright.txt
Source99: vtkdata-rpmlintrc
BuildRequires: cmake >= 3.4
BuildRequires: fdupes
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Requires: cmake >= 3.4
Provides: vtklargedata = %{version}
BuildArch: noarch
%description
@ -39,20 +44,22 @@ This package contains some example data for the Toolkit.
%prep
%setup -q -n VTK-%{version}
%setup -T -D -b 1 -q -n VTK-%{version}
cp %{SOURCE10} .
%build
# Not needed
%install
mkdir -p %{buildroot}%{_docdir}/vtkdata
mkdir -p %{buildroot}%{_datadir}
mkdir -p %{buildroot}%{_datadir}/vtkdata
cp -a $RPM_BUILD_DIR/VTK-%{version} %{buildroot}%{_datadir}/vtkdata
cp -a .ExternalData %{buildroot}%{_datadir}/vtkdata/
%fdupes %{buildroot}%{_datadir}/vtkdata
%files
%defattr(-,root,root,-)
%doc %{_docdir}/vtkdata
%license Copyright.txt
%doc %{_datadir}/vtkdata/.ExternalData/README.rst
%{_datadir}/vtkdata/
%changelog