Accepting request 121935 from devel:libraries:c_c++

Rename (step 2/2)

OBS-URL: https://build.opensuse.org/request/show/121935
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libatomic_ops?expand=0&rev=1
This commit is contained in:
Ismail Dönmez 2012-05-23 13:11:29 +00:00 committed by Git OBS Bridge
commit b90c0a8afa
5 changed files with 147 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

View File

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

53
libatomic_ops.changes Normal file
View File

@ -0,0 +1,53 @@
-------------------------------------------------------------------
Wed May 23 12:45:39 UTC 2012 - jengelh@inai.de
- Rename package to upstream name (libatomic-ops-devel ->
libatomic_ops)
-------------------------------------------------------------------
Wed Dec 21 10:31:39 UTC 2011 - coolo@suse.com
- remove call to suse_update_config (very old work around)
-------------------------------------------------------------------
Fri Dec 2 16:34:32 UTC 2011 - coolo@suse.com
- add automake as buildrequire to avoid implicit dependency
-------------------------------------------------------------------
Tue Oct 18 23:37:21 UTC 2011 - adrian@suse.de
- update to current 7.2alpha6 version
* fixes armv7 builds
* obsoletes all our patches
- run test cases, except when running in not thread safe qemu
- cleanup spec file
- add official URLs to home page and source
- use original upstream tar ball
- fix build for sle 11
-------------------------------------------------------------------
Fri Dec 18 13:57:19 CET 2009 - jengelh@medozas.de
- enable parallel building
-------------------------------------------------------------------
Sat Jun 20 13:14:14 CEST 2009 - coolo@novell.com
- fix build with automake 1.11
-------------------------------------------------------------------
Thu Aug 2 12:53:01 CEST 2007 - tiwai@suse.de
- fix ppc bugs in PPC assembler codes.
-------------------------------------------------------------------
Tue Jun 12 16:28:37 CEST 2007 - tiwai@suse.de
- fixed the build with s390.
-------------------------------------------------------------------
Fri Jun 8 14:40:40 CEST 2007 - tiwai@suse.de
- initial version: 1.2

67
libatomic_ops.spec Normal file
View File

@ -0,0 +1,67 @@
#
# spec file for package libatomic-ops-devel
#
# Copyright (c) 2011 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: libatomic_ops
Summary: A portable library for atomic memory operations
License: GPL-2.0+ ; MIT
Group: Development/Languages/C and C++
Version: 7.2alpha6
Release: 0
Url: http://www.hpl.hp.com/research/linux/atomic_ops/
Source: http://www.hpl.hp.com/research/linux/atomic_ops/download/libatomic_ops-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: autoconf automake
%description
This package provides semi-portable access to hardware provided atomic
memory operations.
%package devel
Summary: A portable library for atomic memory operations
Group: Development/Languages/C and C++
Obsoletes: libatomic-ops-devel < %version-%release
Provides: libatomic-ops-devel = %version-%release
%description devel
This package provides semi-portable access to hardware provided atomic
memory operations.
%prep
%setup -q
%build
autoreconf -fi
%configure
make %{?_smp_mflags}
%install
make DESTDIR=%{buildroot} install
# remove unnecessary documents
rm -rf $RPM_BUILD_ROOT%{_datadir}/libatomic_ops
%check
%if !0%{?qemu_user_space_build:1}
make check
%endif
%files devel
%defattr(-, root, root)
%doc README COPYING AUTHORS ChangeLog
%doc doc/*.txt
%{_libdir}/lib*
%{_includedir}/*
%changelog