From ab3dbdc4e6b79f8f487b83ee33780c9a18f69bddcf2d8a82fd44dbc9c4a53cae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Mail=C3=A4nder?= Date: Sat, 5 Aug 2017 09:26:36 +0000 Subject: [PATCH] Accepting request 512846 from home:badshah400:Staging New package: paraviewdata -- Example data files for Paraview OBS-URL: https://build.opensuse.org/request/show/512846 OBS-URL: https://build.opensuse.org/package/show/science/paraviewdata?expand=0&rev=1 --- .gitattributes | 23 ++++++++++++++ .gitignore | 1 + ParaViewData-v5.4.0.tar.gz | 3 ++ paraviewdata.changes | 4 +++ paraviewdata.spec | 61 ++++++++++++++++++++++++++++++++++++++ 5 files changed, 92 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 ParaViewData-v5.4.0.tar.gz create mode 100644 paraviewdata.changes create mode 100644 paraviewdata.spec diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/ParaViewData-v5.4.0.tar.gz b/ParaViewData-v5.4.0.tar.gz new file mode 100644 index 0000000..5ca11a6 --- /dev/null +++ b/ParaViewData-v5.4.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b18eda039e341d93fa6823f795a0ef8cb629dc7c1afff9ade8d6be31866b1f0 +size 178500620 diff --git a/paraviewdata.changes b/paraviewdata.changes new file mode 100644 index 0000000..8539dc3 --- /dev/null +++ b/paraviewdata.changes @@ -0,0 +1,4 @@ +------------------------------------------------------------------- +Thu Jul 27 21:22:37 UTC 2017 - badshah400@gmail.com + +- Initial package. diff --git a/paraviewdata.spec b/paraviewdata.spec new file mode 100644 index 0000000..12b476e --- /dev/null +++ b/paraviewdata.spec @@ -0,0 +1,61 @@ +# +# spec file for package paraviewdata +# +# Copyright (c) 2017 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 +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# 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/ +# + +%define major_ver 5.4 +Name: paraviewdata +Version: 5.4.0 +Release: 0 +Summary: Examples for Paraview +License: BSD-3-Clause +Group: Productivity/Scientific/Physics +Url: http://www.paraview.org +Source0: http://www.paraview.org/files/v%{major_ver}/ParaViewData-v%{version}.tar.gz +BuildRequires: fdupes +BuildRoot: %{_tmppath}/%{name}-%{version}-build +BuildArch: noarch + +%description +ParaView is an application designed with the need to visualize large data +sets in mind. + +ParaView runs on distributed and shared memory parallel as well as single +processor systems and has been successfully tested on Windows, Linux and +various Unix workstations and clusters. Under the hood, ParaView uses the +Visualization Toolkit as the data processing and rendering engine and has a +user interface written using a unique blend of Tcl/Tk and C++. + +This package contains some example data for Paraview. + +%prep +%setup -q -n ParaView-v%{version} + +%build + +%install +mkdir -p %{buildroot}%{_docdir}/paraviewdata +mkdir -p %{buildroot}%{_datadir} + +cp -a $RPM_BUILD_DIR/ParaView-v%{version} %{buildroot}%{_datadir}/paraviewdata + +%fdupes %{buildroot}%{_datadir}/paraviewdata + +%files +%defattr(-,root,root,-) +%doc %{_docdir}/paraviewdata +%{_datadir}/paraviewdata/ + +%changelog