libuv/libuv.spec
Marcus Meissner fdb0fe989c Accepting request 713180 from home:mcepl:neovim
- Upgrade to 1.30.1:
  * doc: fix incorrect versionchanged (cjihrig)
  * test: allow UV_ECONNRESET in tcp_try_write_error (cjihrig)
  * unix: add uv_get_constrained_memory() cygwin stub (cjihrig)
  * build: fix android cmake build (Ben Noordhuis)
  * unix: squelch -Wcast-function-type warning (Ben Noordhuis)
  * build: fix compile error with uClibc (zlargon)* darwin: fall
    back to F_BARRIERFSYNC (Ben Noordhuis)
  * darwin: add 32 bit close$NOCANCEL implementation
    (ken-cunningham-webuse)
  * build, core, unix: add support for Haiku (Leorize)
  * darwin,linux: more conservative minimum stack size (Ben Noordhuis)
  * threadpool: increase UV_THREADPOOL_SIZE limit (Vlad A)
  * unix: return actual error from `uv_try_write()` (Anna Henningsen)
  * darwin: fix build error with macos 10.10 (Ben Noordhuis)
  * unix: make uv_cwd() report UV_ENOBUFS (Ben Noordhuis)
  * unix: make uv_fs_read() fill all buffers (Ben Noordhuis)
  * test: give hrtime test a custom 10s timeout (Ben Noordhuis)
  * fs: fix uv_fs_copyfile if same src and dst (Santiago Gimeno)
  * build: add cmake option to skip building tests (Niels Lohmann)
  * doc: add link to nodejs.org (Jenil Christo)
  * unix: fix a comment typo in signal.c (Evgeny Ermakov)
  * unix: remove redundant cast in process.c (gengjiawen)
  * doc: fix wrong mutex function prototypes (Leo Chung)
  * unix: simplify uv/posix.h include logic (cjihrig)
  * test: increase test timeout (cjihrig)
  * linux: fix sscanf() overflows reading from /proc (Ben Noordhuis)
  * ibmi: read memory and CPU usage info (Xu Meng)
  * doc: update the cmake testing instruction (zlargon)
  * unix: fix race condition in uv_async_send() (Ben Noordhuis)

OBS-URL: https://build.opensuse.org/request/show/713180
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libuv?expand=0&rev=33
2019-07-07 13:44:19 +00:00

96 lines
2.9 KiB
RPMSpec

#
# spec file for package libuv
#
# Copyright (c) 2019 SUSE LINUX 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 https://bugs.opensuse.org/
#
%define somajor 1
Name: libuv
Version: 1.30.1
Release: 0
Summary: Asychronous I/O support library
License: MIT
Group: Development/Libraries/C and C++
URL: http://libuv.org
# Using URL from upstream project fails due to ipv6 redirect
# Source0: http://dist.libuv.org/dist/v%{version}/libuv-v%{version}.tar.gz
# Source1: http://dist.libuv.org/dist/v%{version}/libuv-v%{version}.tar.gz.sign
# Source2: %{name}.keyring
Source0: https://github.com/libuv/libuv/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
Patch1: fix_tests.patch
BuildRequires: autoconf
BuildRequires: automake
BuildRequires: libtool
BuildRequires: pkgconfig
%description
libuv is a support library with a focus on asynchronous I/O. It was
primarily developed for use by Node.js, but it is also used by
Mozilla's Rust language, Luvit, Julia, pyuv, and others.
%package -n libuv%{somajor}
Summary: Asychronous I/O support library
Group: System/Libraries
%description -n libuv%{somajor}
libuv is a support library with a focus on asynchronous I/O. It was
primarily developed for use by Node.js, but it is also used by
Mozilla's Rust language, Luvit, Julia, pyuv, and others.
%package devel
Summary: Development libraries for libuv
Group: Development/Libraries/C and C++
BuildRequires: glibc-devel
Requires: libuv%{somajor} = %{version}
%description devel
Development files for libuv.
libuv is a support library with a focus on asynchronous I/O. It was
primarily developed for use by Node.js, but it is also used by
Mozilla's Rust language, Luvit, Julia, pyuv, and others.
%prep
%setup -q
%patch1 -p1
%build
./autogen.sh
%configure \
--disable-static
make %{?_smp_mflags} V=1
%install
%make_install
find %{buildroot} -type f -name "*.la" -delete -print
%check
make %{?_smp_mflags} check
%post -n libuv%{somajor} -p /sbin/ldconfig
%postun -n libuv%{somajor} -p /sbin/ldconfig
%files -n libuv%{somajor}
%{_libdir}/libuv.so.%{somajor}*
%files devel
%doc AUTHORS CONTRIBUTING.md ChangeLog README.md
%license LICENSE
%{_libdir}/libuv.so
%{_includedir}/uv*
%{_libdir}/pkgconfig/libuv.pc
%changelog