Accepting request 330811 from OFED:Factory

OBS-URL: https://build.opensuse.org/request/show/330811
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/openucx?expand=0&rev=1
This commit is contained in:
Stephan Kulow 2015-10-08 06:24:03 +00:00 committed by Git OBS Bridge
commit c69bff694e
5 changed files with 207 additions and 0 deletions

23
.gitattributes vendored Normal file
View 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
View File

@ -0,0 +1 @@
.osc

10
openucx.changes Normal file
View File

@ -0,0 +1,10 @@
-------------------------------------------------------------------
Sun Sep 13 18:35:15 UTC 2015 - jengelh@inai.de
- Update to snapshot 0~git862
* License clarification on upstream's behalf
-------------------------------------------------------------------
Mon Jul 27 18:32:48 UTC 2015 - jengelh@inai.de
- Initial package for build.opensuse.org (version 0~git713)

170
openucx.spec Normal file
View File

@ -0,0 +1,170 @@
#
# spec file for package openucx
#
# Copyright (c) 2015 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/
#
Name: openucx
Summary: Unifieid Communication X
License: BSD-3-Clause
Group: Development/Libraries/C and C++
Version: 0~git862
Release: 0
Url: http://openucx.org/
#Git-Clone: git://github.com/openucx/ucx
#Git-Web: https://github.com/openucx/ucx
#Snapshot: c3a0e0a96e0168796132b9408039ea3792f30c76
Source: ucx-%version.tar.xz
BuildRequires: autoconf >= 2.63
BuildRequires: automake >= 1.10
BuildRequires: doxygen
BuildRequires: gcc-c++
BuildRequires: libibverbs-devel
BuildRequires: libtool
BuildRequires: pkg-config
BuildRequires: zlib-devel
BuildRoot: %{_tmppath}/%{name}-%{version}-build
ExclusiveArch: aarch64 %power64 x86_64
%description
UCX is a communication library implementing high-performance
messaging for MPI/PGAS frameworks.
%package tools
Summary: OpenUCX utilities
Group: System/Console
%description tools
Miscallaneous utilities for Unified Communication X.
%package -n libucp2
Summary: Infiniband Unified Communication Protocols
Group: System/Libraries
%description -n libucp2
High-level API uses UCT framework to construct protocols commonly
found in applications (MPI, OpenSHMEM, PGAS, etc.)
%package -n libucp-devel
Summary: Development files for Unified Communication Protocols (UC-P)
Group: Development/Libraries/C and C++
Requires: libucp2 = %version
%description -n libucp-devel
High-level API uses UCT framework to construct protocols commonly
found in applications (MPI, OpenSHMEM, PGAS, etc.)
%package -n libucs2
Summary: Infiniband Unicified Communication Services
Group: System/Libraries
%description -n libucs2
This framework provides basic infrastructure for component based
programming, memory management, and useful system utilities.
%package -n libucs-devel
Summary: Development files for Unified Communication Services (UC-S)
Group: Development/Libraries/C and C++
Requires: libucs2 = %version
%description -n libucs-devel
This framework provides basic infrastructure for component based
programming, memory management, and useful system utilities.
%package -n libuct2
Summary: Infiniband Unified Communication Transport
Group: System/Libraries
%description -n libuct2
Low-level API that expose basic network operations supported by
underlying hardware.
%package -n libuct-devel
Summary: Development files for Unified Communication Transport (UC-T)
Group: Development/Libraries/C and C++
Requires: libuct2 = %version
%description -n libuct-devel
Low-level API that expose basic network operations supported by
underlying hardware.
%package -n libucxmalloc0
Summary: Allocation library for Unified Communication X
Group: System/Libraries
%description -n libucxmalloc0
%prep
%setup -qn ucx
%build
autoreconf -fi
%configure --disable-static
make %{?_smp_mflags}
%post -n libucp2 -p /sbin/ldconfig
%postun -n libucp2 -p /sbin/ldconfig
%post -n libucs2 -p /sbin/ldconfig
%postun -n libucs2 -p /sbin/ldconfig
%post -n libuct2 -p /sbin/ldconfig
%postun -n libuct2 -p /sbin/ldconfig
%post -n libucxmalloc0 -p /sbin/ldconfig
%postun -n libucxmalloc0 -p /sbin/ldconfig
%install
%make_install
rm -fv "%buildroot/%_libdir"/*.la
# no headers for this lib
rm -f "%buildroot/%_libdir/libucxmalloc.so"
%files tools
%defattr(-,root,root)
%_bindir/ucx_*
%_datadir/ucx/
%doc LICENSE
%files -n libucp2
%defattr(-,root,root)
%_libdir/libucp.so.*
%files -n libucp-devel
%defattr(-,root,root)
%_includedir/ucp/
%_libdir/libucp.so
%files -n libucs2
%defattr(-,root,root)
%_libdir/libucs.so.*
%files -n libucs-devel
%defattr(-,root,root)
%_includedir/ucs/
%_libdir/libucs.so
%files -n libuct2
%defattr(-,root,root)
%_libdir/libuct.so.*
%files -n libuct-devel
%defattr(-,root,root)
%_includedir/uct/
%_libdir/libuct.so
%files -n libucxmalloc0
%defattr(-,root,root)
%_libdir/libucxmalloc.so.*
%changelog

3
ucx-0~git862.tar.xz Normal file
View File

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