SHA256
1
0
forked from pool/npth
Jan Engelhardt 2012-09-04 05:12:29 +00:00 committed by Git OBS Bridge
parent 8fba06eb19
commit 6c63139947
5 changed files with 20 additions and 14 deletions

View File

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

3
npth-0.91.tar.bz2 Normal file
View File

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

BIN
npth-0.91.tar.bz2.sig Normal file

Binary file not shown.

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Tue Sep 4 05:11:40 UTC 2012 - jengelh@inai.de
- Update to new upstream release 0.91
* npth_init does now return an error on failure.
* Provide a pselect emulation for OpenBSD et al.
------------------------------------------------------------------- -------------------------------------------------------------------
Tue May 29 09:15:53 UTC 2012 - jengelh@inai.de Tue May 29 09:15:53 UTC 2012 - jengelh@inai.de

View File

@ -14,22 +14,24 @@
# Please submit bugfixes or comments via http://bugs.opensuse.org/ # Please submit bugfixes or comments via http://bugs.opensuse.org/
# #
Name: npth Name: npth
%define lname libnpth0 %define lname libnpth0
Summary: New GNU Portable Threads library Summary: New GNU Portable Threads library
Version: 0.90+git21
Release: 0
URL: http://gnupg.org/
License: LGPL-3.0+ or GPL-2.0+ License: LGPL-3.0+ or GPL-2.0+
Group: Development/Libraries/C and C++ Group: Development/Libraries/C and C++
Version: 0.91
Release: 0
Url: http://gnupg.org/
#DL-URL: ftp://ftp.gnupg.org/gcrypt/npth/npth-%version.tar.bz2 #DL-URL: ftp://ftp.gnupg.org/gcrypt/npth/npth-%version.tar.bz2
#Git-Clone: git://git.gnupg.org/npth #Git-Clone: git://git.gnupg.org/npth
Source: %name-%version.tar.xz Source: %name-%version.tar.bz2
Source2: %name-%version.tar.bz2.sig
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: autoconf >= 2.67, automake >= 1.11 #BuildRequires: autoconf >= 2.67, automake >= 1.11
BuildRequires: libtool >= 2.2.6 #BuildRequires: libtool >= 2.2.6
BuildRequires: xz
%description %description
nPth is a non-preemptive threads implementation using an API very nPth is a non-preemptive threads implementation using an API very
@ -59,12 +61,9 @@ based on the system's standard threads implementation. Thus, nPth
allows the use of libraries which are not compatible to GNU Pth. allows the use of libraries which are not compatible to GNU Pth.
%prep %prep
%setup -qn %name %setup -q
%build %build
if [ ! -e configure ]; then
autoreconf -fi;
fi;
%configure %configure
make %{?_smp_mflags}; make %{?_smp_mflags};