Accepting request 354393 from home:jengelh:dev
OBS-URL: https://build.opensuse.org/request/show/354393 OBS-URL: https://build.opensuse.org/package/show/science/librsb?expand=0&rev=1
This commit is contained in:
commit
bbae90d83b
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@ -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
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
.osc
|
3
librsb-1.2.0-rc2.tar.gz
Normal file
3
librsb-1.2.0-rc2.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:9f43e1910efddda0720dd477f74359de7d78c8a838e9a508a049fa1bc307a5f7
|
||||||
|
size 2212819
|
4
librsb.changes
Normal file
4
librsb.changes
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Jan 17 14:15:30 UTC 2016 - jengelh@inai.de
|
||||||
|
|
||||||
|
- Initial package (versoin 1.2.0~rc2) for build.opensuse.org
|
76
librsb.spec
Normal file
76
librsb.spec
Normal file
@ -0,0 +1,76 @@
|
|||||||
|
#
|
||||||
|
# spec file for package librsb
|
||||||
|
#
|
||||||
|
# Copyright (c) 2014 SUSE LINUX Products 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/
|
||||||
|
#
|
||||||
|
|
||||||
|
|
||||||
|
Name: librsb
|
||||||
|
%define rversion 1.2.0-rc2
|
||||||
|
Version: 1.2.0~rc2
|
||||||
|
Release: 0
|
||||||
|
Summary: A shared memory parallel sparse matrix library including Sparse BLAS
|
||||||
|
License: LGPL-3.0+
|
||||||
|
Group: Productivity/Scientific/Math
|
||||||
|
URL: http://librsb.sf.net/
|
||||||
|
Source: http://downloads.sf.net/%name/%name-%rversion.tar.gz
|
||||||
|
BuildRequires: fdupes
|
||||||
|
BuildRequires: gsl-devel
|
||||||
|
BuildRequires: zlib-devel
|
||||||
|
BuildRoot: %_tmppath/%name-%version-build
|
||||||
|
|
||||||
|
%description
|
||||||
|
librsb is a library for sparse matrix computations featuring the
|
||||||
|
Recursive Sparse Blocks (RSB) matrix format. This format allows cache
|
||||||
|
efficient and multi-threaded (that is, shared memory parallel)
|
||||||
|
operations on large sparse matrices.
|
||||||
|
|
||||||
|
librsb implements the Sparse BLAS standard, as specified in the BLAS
|
||||||
|
Forum documents.
|
||||||
|
|
||||||
|
%package devel
|
||||||
|
Summary: Development files for librsb, a Recursive Sparse Blocks matrix format lirary
|
||||||
|
Group: Development/Libraries/C and C++
|
||||||
|
|
||||||
|
%description devel
|
||||||
|
librsb is a library for sparse matrix computations featuring the
|
||||||
|
Recursive Sparse Blocks (RSB) matrix format. This format allows cache
|
||||||
|
efficient and multi-threaded (that is, shared memory parallel)
|
||||||
|
operations on large sparse matrices.
|
||||||
|
|
||||||
|
This subpackage contains libraries and header files for developing
|
||||||
|
applications that want to make use of librsb.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -qn librsb-%rversion
|
||||||
|
|
||||||
|
%build
|
||||||
|
%configure --docdir="%_docdir/%name"
|
||||||
|
make %{?_smp_mflags}
|
||||||
|
%fdupes %buildroot/%_prefix
|
||||||
|
|
||||||
|
%install
|
||||||
|
%make_install
|
||||||
|
rm -f "%buildroot/%_libdir"/*.la
|
||||||
|
|
||||||
|
%files devel
|
||||||
|
%defattr(-,root,root)
|
||||||
|
%_includedir/*.h
|
||||||
|
%_bindir/rsbench
|
||||||
|
%_bindir/librsb-config
|
||||||
|
%_libdir/librsb.a
|
||||||
|
%_docdir/%name/
|
||||||
|
%doc COPYING README
|
||||||
|
|
||||||
|
%changelog
|
Loading…
Reference in New Issue
Block a user