forked from pool/libHX
Accepting request 58443 from devel:libraries:c_c++
Accepted submit request 58443 from user jengelh OBS-URL: https://build.opensuse.org/request/show/58443 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libHX?expand=0&rev=21
This commit is contained in:
commit
ae8beb2f01
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:54381e45549141140496612a031023617bd4a93595595e569145c9996c6f7699
|
|
||||||
size 781076
|
|
@ -1,7 +0,0 @@
|
|||||||
-----BEGIN PGP SIGNATURE-----
|
|
||||||
Version: GnuPG v2.0.15 (GNU/Linux)
|
|
||||||
|
|
||||||
iEYEABECAAYFAkz2qksACgkQ92gFgoRMQ2C1ugCfb92JatpPhUo6fkFBDwASX16Q
|
|
||||||
F+cAmwUFm2lTSIyYpCZVl6qITqgL24VI
|
|
||||||
=drzu
|
|
||||||
-----END PGP SIGNATURE-----
|
|
3
libHX-3.9.1.tar.xz
Normal file
3
libHX-3.9.1.tar.xz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:513c527b53ed336ba5a759aaa07da3caae2a7ed1ae661ed4e78e3e24f93af552
|
||||||
|
size 786236
|
7
libHX-3.9.1.tar.xz.asc
Normal file
7
libHX-3.9.1.tar.xz.asc
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
-----BEGIN PGP SIGNATURE-----
|
||||||
|
Version: GnuPG v2.0.15 (GNU/Linux)
|
||||||
|
|
||||||
|
iEYEABECAAYFAk0zjK8ACgkQ92gFgoRMQ2CwAACfaINIYE1+kucEcTAR2jqzJxwp
|
||||||
|
880AnjFevE197PhsgSL+sDHAVR7ktF/q
|
||||||
|
=1Sxy
|
||||||
|
-----END PGP SIGNATURE-----
|
@ -1,3 +1,19 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 17 00:31:26 UTC 2011 - jengelh@medozas.de
|
||||||
|
|
||||||
|
- Update to new upstream release 3.9.1
|
||||||
|
* Package missing header file
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Jan 15 02:47:46 UTC 2011 - jengelh@medozas.de
|
||||||
|
|
||||||
|
- Update to new upstream release 3.9
|
||||||
|
* Add missing includes and guard to public include files
|
||||||
|
* For filesystem/filehandle-related functions, io.h should now be
|
||||||
|
included in userspace programs instead of misc.h
|
||||||
|
* hxdirstamp: new development helper program for library users
|
||||||
|
* io: new functions HXio_full{read,write}
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Dec 1 20:48:36 UTC 2010 - jengelh@medozas.de
|
Wed Dec 1 20:48:36 UTC 2010 - jengelh@medozas.de
|
||||||
|
|
||||||
|
66
libHX.spec
66
libHX.spec
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package libHX (Version 3.8)
|
# spec file for package libHX (Version 3.9)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
@ -22,7 +22,7 @@ Name: libHX
|
|||||||
%define lname libHX25
|
%define lname libHX25
|
||||||
BuildRequires: gcc-c++ xz
|
BuildRequires: gcc-c++ xz
|
||||||
Summary: Useful collection of routines for C and C++ programming
|
Summary: Useful collection of routines for C and C++ programming
|
||||||
Version: 3.8
|
Version: 3.9.1
|
||||||
Release: 1
|
Release: 1
|
||||||
License: LGPL v2+
|
License: LGPL v2+
|
||||||
Group: System/Libraries
|
Group: System/Libraries
|
||||||
@ -34,15 +34,17 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|||||||
Url: http://libhx.sf.net/
|
Url: http://libhx.sf.net/
|
||||||
|
|
||||||
%description
|
%description
|
||||||
A library for:
|
libHX is a C library (with some C++ bindings available) that provides
|
||||||
- hash/rbtree-based maps/sets
|
data structures and functions commonly needed, such as maps, deques,
|
||||||
- double-ended queues (stacks/fifos/lists)
|
linked lists, string formatting and autoresizing, option and config
|
||||||
- platform-independent opendir-style directory access
|
file parsing, type checking casts and more.
|
||||||
- platform-independent dlopen-style shared library access
|
|
||||||
- auto-storage strings with direct access
|
libHX aids in quickly writing up C and C++ data processing programs,
|
||||||
- command line option (argv) parser
|
by consolidating tasks that often happen to be open-coded, such as
|
||||||
- shconfig-style config file parser
|
(simple) config file reading, option parsing, directory traversal,
|
||||||
- various string, memory and zvec ops
|
and others, into a library. The focus is on reducing the amount of
|
||||||
|
time (and secondarily, the amount of code) a developer has to spend
|
||||||
|
for otherwise implementing such.
|
||||||
|
|
||||||
|
|
||||||
Authors:
|
Authors:
|
||||||
@ -57,15 +59,17 @@ Summary: Useful collection of routines for C and C++ programming
|
|||||||
Group: System/Libraries
|
Group: System/Libraries
|
||||||
|
|
||||||
%description -n %lname
|
%description -n %lname
|
||||||
A library for:
|
libHX is a C library (with some C++ bindings available) that provides
|
||||||
- hash/rbtree-based maps/sets
|
data structures and functions commonly needed, such as maps, deques,
|
||||||
- double-ended queues (stacks/fifos/lists)
|
linked lists, string formatting and autoresizing, option and config
|
||||||
- platform-independent opendir-style directory access
|
file parsing, type checking casts and more.
|
||||||
- platform-independent dlopen-style shared library access
|
|
||||||
- auto-storage strings with direct access
|
libHX aids in quickly writing up C and C++ data processing programs,
|
||||||
- command line option (argv) parser
|
by consolidating tasks that often happen to be open-coded, such as
|
||||||
- shconfig-style config file parser
|
(simple) config file reading, option parsing, directory traversal,
|
||||||
- various string, memory and zvec ops
|
and others, into a library. The focus is on reducing the amount of
|
||||||
|
time (and secondarily, the amount of code) a developer has to spend
|
||||||
|
for otherwise implementing such.
|
||||||
|
|
||||||
|
|
||||||
Authors:
|
Authors:
|
||||||
@ -80,15 +84,17 @@ Group: Development/Libraries/C and C++
|
|||||||
Requires: %lname = %version
|
Requires: %lname = %version
|
||||||
|
|
||||||
%description devel
|
%description devel
|
||||||
A library for:
|
libHX is a C library (with some C++ bindings available) that provides
|
||||||
- hash/rbtree-based maps/sets
|
data structures and functions commonly needed, such as maps, deques,
|
||||||
- double-ended queues (stacks/fifos/lists)
|
linked lists, string formatting and autoresizing, option and config
|
||||||
- platform-independent opendir-style directory access
|
file parsing, type checking casts and more.
|
||||||
- platform-independent dlopen-style shared library access
|
|
||||||
- auto-storage strings with direct access
|
libHX aids in quickly writing up C and C++ data processing programs,
|
||||||
- command line option (argv) parser
|
by consolidating tasks that often happen to be open-coded, such as
|
||||||
- shconfig-style config file parser
|
(simple) config file reading, option parsing, directory traversal,
|
||||||
- various string, memory and zvec ops
|
and others, into a library. The focus is on reducing the amount of
|
||||||
|
time (and secondarily, the amount of code) a developer has to spend
|
||||||
|
for otherwise implementing such.
|
||||||
|
|
||||||
|
|
||||||
Authors:
|
Authors:
|
||||||
@ -125,6 +131,8 @@ make check
|
|||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
|
%_bindir/*
|
||||||
|
%_mandir/*/*
|
||||||
%docdir %_docdir/%name
|
%docdir %_docdir/%name
|
||||||
%_docdir/%name
|
%_docdir/%name
|
||||||
%_includedir/%{name}*
|
%_includedir/%{name}*
|
||||||
|
Loading…
Reference in New Issue
Block a user