Accepting request 102973 from devel:libraries:c_c++
- fix baselibs.conf - Name library package according to shlib policy - Update description, source text from GNU homepage - Remove redundant tags/sections - Replace /usr/%_lib by simpler %_libdir OBS-URL: https://build.opensuse.org/request/show/102973 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/gdbm?expand=0&rev=21
This commit is contained in:
commit
2de67deb49
@ -1,2 +1,4 @@
|
||||
gdbm
|
||||
libgdbm3
|
||||
gdbm-devel
|
||||
requires -gdbm-<targettype>
|
||||
requires "libgdbm3-<targettype> = <version>"
|
||||
|
17
gdbm.changes
17
gdbm.changes
@ -1,3 +1,20 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 7 08:02:10 UTC 2012 - coolo@suse.com
|
||||
|
||||
- fix baselibs.conf
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 5 17:48:43 UTC 2012 - jengelh@medozas.de
|
||||
|
||||
- Name library package according to shlib policy
|
||||
- Update description, source text from GNU homepage
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 5 16:36:13 UTC 2012 - jengelh@medozas.de
|
||||
|
||||
- Remove redundant tags/sections
|
||||
- Replace /usr/%_lib by simpler %_libdir
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 1 05:39:11 UTC 2011 - coolo@suse.com
|
||||
|
||||
|
78
gdbm.spec
78
gdbm.spec
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package gdbm
|
||||
#
|
||||
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2012 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
|
||||
@ -15,24 +15,21 @@
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
# norootforbuild
|
||||
|
||||
|
||||
Name: gdbm
|
||||
%define lname libgdbm3
|
||||
Url: http://directory.fsf.org/GNU/gdbm.html
|
||||
#!BuildIgnore: man
|
||||
Prefix: /usr
|
||||
License: GPL-2.0+
|
||||
Group: System/Libraries
|
||||
AutoReqProv: on
|
||||
# bug437293
|
||||
%ifarch ppc64
|
||||
Obsoletes: gdbm-64bit
|
||||
%endif
|
||||
#
|
||||
Version: 1.8.3
|
||||
Release: 383
|
||||
Summary: GNU Database Routines
|
||||
Release: 0
|
||||
Summary: GNU dbm key/data database
|
||||
License: GPL-2.0+
|
||||
Group: System/Libraries
|
||||
Source: ftp://prep.ai.mit.edu/gnu/gdbm/gdbm-%{version}.tar.bz2
|
||||
Source2: baselibs.conf
|
||||
Patch: gdbm-%{version}.dif
|
||||
@ -44,18 +41,54 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
BuildRequires: libtool
|
||||
|
||||
%description
|
||||
A static and dynamic library for the GNU database routines.
|
||||
GNU dbm is a library of database functions that use extensible
|
||||
hashing and work similar to the standard UNIX dbm. These routines are
|
||||
provided to a programmer needing to create and manipulate a hashed
|
||||
database.
|
||||
|
||||
The basic use of GDBM is to store key/data pairs in a data file. Each
|
||||
key must be unique and each key is paired with only one data item.
|
||||
|
||||
The library provides primitives for storing key/data pairs, searching
|
||||
and retrieving the data by its key and deleting a key along with its
|
||||
data. It also support sequential iteration over all key/data pairs in
|
||||
a database.
|
||||
|
||||
For compatibility with programs using old UNIX dbm function, the
|
||||
package also provides traditional dbm and ndbm interfaces.
|
||||
|
||||
%package -n %lname
|
||||
Summary: GNU dbm key/data database
|
||||
License: GPL-2.0+
|
||||
Group: System/Libraries
|
||||
# O/P added in 12.2
|
||||
Obsoletes: gdbm < %version-%release
|
||||
Provides: gdbm = %version-%release
|
||||
|
||||
%description -n %lname
|
||||
GNU dbm is a library of database functions that use extensible
|
||||
hashing and work similar to the standard UNIX dbm. These routines are
|
||||
provided to a programmer needing to create and manipulate a hashed
|
||||
database.
|
||||
|
||||
The basic use of GDBM is to store key/data pairs in a data file. Each
|
||||
key must be unique and each key is paired with only one data item.
|
||||
|
||||
The library provides primitives for storing key/data pairs, searching
|
||||
and retrieving the data by its key and deleting a key along with its
|
||||
data. It also support sequential iteration over all key/data pairs in
|
||||
a database.
|
||||
|
||||
For compatibility with programs using old UNIX dbm function, the
|
||||
package also provides traditional dbm and ndbm interfaces.
|
||||
|
||||
%package devel
|
||||
License: GPL-2.0+ ; LGPL-2.1+
|
||||
Summary: Include Files and Libraries mandatory for Development
|
||||
License: GPL-2.0+ ; LGPL-2.1+
|
||||
Group: Development/Libraries/C and C++
|
||||
Requires: gdbm = %{version}
|
||||
Provides: gdbm:/usr/lib/libgdbm.so
|
||||
PreReq: %install_info_prereq
|
||||
AutoReqProv: on
|
||||
# bug437293
|
||||
%ifarch ppc64
|
||||
Obsoletes: gdbm-devel-64bit
|
||||
@ -97,26 +130,23 @@ make install-compat INSTALL_ROOT=$RPM_BUILD_ROOT
|
||||
echo "/* GNU ld script
|
||||
Use the shared library, but some functions are only in
|
||||
the static library, so try that secondarily. */
|
||||
GROUP ( /usr/%{_lib}/libgdbm.so /usr/%{_lib}/libgdbm_compat.so )" > $RPM_BUILD_ROOT/%{_libdir}/libndbm.so
|
||||
GROUP ( %_libdir/libgdbm.so %_libdir/libgdbm_compat.so )" > $RPM_BUILD_ROOT/%{_libdir}/libndbm.so
|
||||
echo "/* GNU ld script
|
||||
Use the shared library, but some functions are only in
|
||||
the static library, so try that secondarily. */
|
||||
GROUP ( /usr/%{_lib}/libgdbm.a /usr/%{_lib}/libgdbm_compat.a )" > $RPM_BUILD_ROOT/%{_libdir}/libndbm.a
|
||||
GROUP ( %_libdir/libgdbm.a %_libdir/libgdbm_compat.a )" > $RPM_BUILD_ROOT/%{_libdir}/libndbm.a
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
%post -n %lname -p /sbin/ldconfig
|
||||
|
||||
%post -p /sbin/ldconfig
|
||||
%postun -n %lname -p /sbin/ldconfig
|
||||
|
||||
%postun -p /sbin/ldconfig
|
||||
|
||||
%files
|
||||
%files -n %lname
|
||||
%defattr(-,root,root)
|
||||
%doc COPYING README NEWS
|
||||
%{_prefix}/%{_lib}/libgdbm.so.3
|
||||
%{_prefix}/%{_lib}/libgdbm.so.3.0.0
|
||||
%{_prefix}/%{_lib}/libgdbm_compat.so.3
|
||||
%{_prefix}/%{_lib}/libgdbm_compat.so.3.0.0
|
||||
%_libdir/libgdbm.so.3
|
||||
%_libdir/libgdbm.so.3.0.0
|
||||
%_libdir/libgdbm_compat.so.3
|
||||
%_libdir/libgdbm_compat.so.3.0.0
|
||||
|
||||
%files devel
|
||||
%defattr(-,root,root)
|
||||
|
Loading…
Reference in New Issue
Block a user