forked from pool/libHX
This commit is contained in:
parent
50494a340a
commit
a936f0a109
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:54de801da0b83148b95201613a5a031509bb1e7bbdb553ceef7e1bf371474f7d
|
|
||||||
size 772905
|
|
3
libHX-2.7.tar.bz2
Normal file
3
libHX-2.7.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:4d386ab667dd7cc4e0cdfb6a519b4fcc621a1cda120899a442220fdeb30a0192
|
||||||
|
size 780561
|
@ -1,3 +1,13 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon May 11 11:18:17 CEST 2009 - mc@suse.de
|
||||||
|
|
||||||
|
- update to version 2.7
|
||||||
|
- update ducumentation
|
||||||
|
- arbtree: add "flat view" operation
|
||||||
|
- misc: added HX_fls
|
||||||
|
- misc: make HX_time_compare otime-capable
|
||||||
|
- add wx_helper.hpp
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Feb 18 12:22:28 CET 2009 - mc@suse.de
|
Wed Feb 18 12:22:28 CET 2009 - mc@suse.de
|
||||||
|
|
||||||
|
27
libHX.spec
27
libHX.spec
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package libHX (Version 2.5)
|
# spec file for package libHX (Version 2.7)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
@ -20,17 +20,17 @@
|
|||||||
|
|
||||||
Name: libHX
|
Name: libHX
|
||||||
%define lname libHX18
|
%define lname libHX18
|
||||||
BuildRequires: gcc-c++ libxml2-devel
|
BuildRequires: gcc-c++
|
||||||
Summary: General-purpose Library
|
Summary: General-purpose Library
|
||||||
Version: 2.5
|
Version: 2.7
|
||||||
Release: 1
|
Release: 1
|
||||||
License: LGPL v2.1 or later; LGPL v3 or later
|
License: LGPL v2.1 only; LGPL v3 only
|
||||||
Prefix: /usr
|
Prefix: /usr
|
||||||
Group: System/Libraries
|
Group: System/Libraries
|
||||||
Source: %{name}-%{version}.tar.bz2
|
Source: %{name}-%{version}.tar.bz2
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%define debug_package_requires libHX18 = %{version}-%{release}
|
%define debug_package_requires libHX18 = %{version}-%{release}
|
||||||
Url: http://jengelh.medozas.de/projects/libHX/
|
Url: http://libhx.sf.net/
|
||||||
|
|
||||||
%description
|
%description
|
||||||
A library for: * A+R/B trees to use for lists or maps (associative
|
A library for: * A+R/B trees to use for lists or maps (associative
|
||||||
@ -96,7 +96,7 @@ Authors:
|
|||||||
License: LGPL v2.1 or later
|
License: LGPL v2.1 or later
|
||||||
Summary: General-purpose library
|
Summary: General-purpose library
|
||||||
Group: Development/Libraries/C and C++
|
Group: Development/Libraries/C and C++
|
||||||
Requires: %{lname} = %{version} libstdc++-devel libxml2-devel
|
Requires: %{lname} = %{version}
|
||||||
|
|
||||||
%description devel
|
%description devel
|
||||||
A library for: - A+R/B trees to use for lists or maps (associative
|
A library for: - A+R/B trees to use for lists or maps (associative
|
||||||
@ -130,16 +130,16 @@ Authors:
|
|||||||
|
|
||||||
%build
|
%build
|
||||||
./autogen.sh;
|
./autogen.sh;
|
||||||
%configure --with-pic --with-pkgconfigdir=/%_libdir/pkgconfig/
|
%configure --with-pkgconfigdir=/%_libdir/pkgconfig/
|
||||||
make %{?jobs:-j%jobs};
|
make %{?jobs:-j%jobs};
|
||||||
perl -i -pe 's/^shouldnotlink=yes/shouldnotlink=no/;' \
|
perl -i -pe 's/^shouldnotlink=yes/shouldnotlink=no/;' \
|
||||||
src/%{name}.la src/.libs/%{name}.lai;
|
src/%{name}.la src/.libs/%{name}.lai;
|
||||||
|
|
||||||
%install
|
%install
|
||||||
make install DESTDIR=${RPM_BUILD_ROOT}
|
make install DESTDIR=${RPM_BUILD_ROOT} docdir=%{_defaultdocdir}/%{name}
|
||||||
mkdir -p "${RPM_BUILD_ROOT}/%_docdir";
|
mkdir -p "${RPM_BUILD_ROOT}/%_docdir";
|
||||||
cp -a doc "${RPM_BUILD_ROOT}/%{_defaultdocdir}/%{name}";
|
install -pm0644 doc/* "${RPM_BUILD_ROOT}/%{_defaultdocdir}/%{name}"
|
||||||
rm -f ${RPM_BUILD_ROOT}/%{_defaultdocdir}/%{name}/.gitignore
|
rm -f ${RPM_BUILD_ROOT}/%{_defaultdocdir}/%{name}/Makefile*
|
||||||
rm -f ${RPM_BUILD_ROOT}/%{_libdir}/%{name}.la
|
rm -f ${RPM_BUILD_ROOT}/%{_libdir}/%{name}.la
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
@ -162,6 +162,13 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%_libdir/pkgconfig/*.pc
|
%_libdir/pkgconfig/*.pc
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon May 11 2009 mc@suse.de
|
||||||
|
- update to version 2.7
|
||||||
|
- update ducumentation
|
||||||
|
- arbtree: add "flat view" operation
|
||||||
|
- misc: added HX_fls
|
||||||
|
- misc: make HX_time_compare otime-capable
|
||||||
|
- add wx_helper.hpp
|
||||||
* Wed Feb 18 2009 mc@suse.de
|
* Wed Feb 18 2009 mc@suse.de
|
||||||
- update to version 2.5
|
- update to version 2.5
|
||||||
* a lot of new features and fixes
|
* a lot of new features and fixes
|
||||||
|
Loading…
Reference in New Issue
Block a user