commit 6d88f812f73ce437240a996c897035a695080cda1a14c6d878199489e44b02a3 Author: Matthias Mailänder Date: Tue May 21 17:01:04 2013 +0000 Accepting request 176199 from home:jengelh:branches:science OBS-URL: https://build.opensuse.org/request/show/176199 OBS-URL: https://build.opensuse.org/package/show/science/fflas-ffpack?expand=0&rev=1 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/fflas-ffpack-1.6.0.tar.xz b/fflas-ffpack-1.6.0.tar.xz new file mode 100644 index 0000000..c685603 --- /dev/null +++ b/fflas-ffpack-1.6.0.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:985e1dd5097072a45ef2d2aed519fc3da4dcdbf87f60d6dafeb2cde504fe93e0 +size 338648 diff --git a/fflas-ffpack.changes b/fflas-ffpack.changes new file mode 100644 index 0000000..ca3d591 --- /dev/null +++ b/fflas-ffpack.changes @@ -0,0 +1,4 @@ +------------------------------------------------------------------- +Mon May 20 11:02:40 UTC 2013 - jengelh@inai.de + +- Initial package (version 1.6.0) for build.opensuse.org diff --git a/fflas-ffpack.spec b/fflas-ffpack.spec new file mode 100644 index 0000000..ca0ad24 --- /dev/null +++ b/fflas-ffpack.spec @@ -0,0 +1,92 @@ +# +# spec file for package fflas-ffpack +# +# Copyright (c) 2013 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: fflas-ffpack +%define lname libfflas0 +Version: 1.6.0 +Release: 0 +Summary: Finite Field Linear Algebra Subroutines +License: LGPL-2.1+ +Group: Productivity/Scientific/Math +Url: http://linalg.org/projects/fflas-ffpack + +#DL-URL: http://linalg.org/fflas-ffpack-1.6.0.tar.gz +Source: %name-%version.tar.xz +BuildRequires: doxygen +BuildRequires: fdupes +BuildRequires: gcc-c++ +BuildRequires: givaro-devel +BuildRequires: gmp-devel >= 3.1.1 +BuildRequires: lapack-devel +BuildRequires: libatlas3-devel +BuildRequires: xz +BuildRoot: %{_tmppath}/%{name}-%{version}-build + +%description +The FFLAS-FFPACK library provides functionalities for dense linear +algebra over word size prime finite field. + +%package devel +Summary: Development files for FFLAS-FFPACK +Group: Development/Libraries/C and C++ + +%description devel +The FFLAS-FFPACK library provides functionalities for dense linear +algebra over word size prime finite field. + +This subpackage contains the include files and library links for +developing against the Givaro library. + +%package doc +Summary: API documentation for FFLAS-FFPACK +Group: Documentation/HTML +BuildArch: noarch + +%description doc +The FFLAS-FFPACK library provides functionalities for dense linear +algebra over word size prime finite field. + +This subpackage contains the Doxygen-generated HTML documentation for +the FFLAS-FFPACK API. + +%prep +%setup -q + +%build +%configure \ + --with-cblas="%_libdir/atlas" \ + --enable-doc --with-docdir="%_docdir/%name" +make %{?_smp_mflags} + +%install +b="%buildroot"; +make install DESTDIR="$b"; +%fdupes %buildroot/%_prefix + +%files devel +%defattr(-,root,root) +%_bindir/fflas-ffpack-config +%_includedir/fflas-ffpack/ + +%files doc +%defattr(-,root,root) +%dir %_docdir/%name/ +%_docdir/%name/fflas-ffpack.html +%_docdir/%name/fflas-ffpack-html/ + +%changelog