forked from pool/libuv
* test: use last matching qemu version (cjihrig) * win, util: rearrange uv_hrtime (Bartosz Sosnowski) * test: skip signal_multiple_loops test on QEMU (gengjiawen) * build: add android build to CI (gengjiawen) * test: extend fs_event_error_reporting timeout (cjihrig) * build: link libkvm on netbsd only (Alexander Tokmakov) * linux: refactor /proc file reader logic (Ben Noordhuis) * linux: read load average from /proc/loadavg (Ben Noordhuis) * android: remove patch code for below 21 (gengjiawen) * win: fix visual studio 2008 build (Arenoros) * win,tty: fix deadlock caused by inconsistent state (lander0s) * unix: use relaxed loads/stores for feature checks (Ben Noordhuis) * build: don't .gitignore m4/ax_pthread.m4 (Ben Noordhuis) * unix: fix gcc atomics feature check (Ben Noordhuis) * darwin: work around clock jumping back in time (Ben Noordhuis) * udp: fix write_queue cleanup on sendmmsg error (Santiago Gimeno) * src: build fix for Android (David Carlier) * win: remove dep on GetQueuedCompletionStatusEx (Colin Finck) * doc: correct source lines (Shohei YOSHIDA) * build,android: fix typo (twosee) * doc: uv_cancel() handles uv_random_t requests (Philip Chimento) * doc: fix unescaped character (Philip Chimento) * build,cmake: fix compilation on old MinGW (erw7) * build: remove unnessesary MSVC warnings (Bartosz Sosnowski) * win: make uv_udp_init_ex() accept UV_UDP_RECVMMSG (Ben Noordhuis) * unix: simplify uv__udp_init_ex() (Ben Noordhuis) * win: remove MAX_PATH limitations (Bartosz Sosnowski) * build, win: add long path aware manifest (Bartosz Sosnowski) * doc: check/idle/prepare functions always succeed (Ben Noordhuis) OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libuv?expand=0&rev=43
94 lines
2.7 KiB
RPMSpec
94 lines
2.7 KiB
RPMSpec
#
|
|
# spec file for package libuv
|
|
#
|
|
# Copyright (c) 2020 SUSE LLC
|
|
#
|
|
# 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.38.1
|
|
Release: 0
|
|
Summary: Asychronous I/O support library
|
|
License: MIT
|
|
URL: https://libuv.org
|
|
Source0: https://dist.libuv.org/dist/v%{version}/libuv-v%{version}.tar.gz
|
|
Source1: https://dist.libuv.org/dist/v%{version}/libuv-v%{version}.tar.gz.sign
|
|
# https://github.com/libuv/libuv/blob/v1.x/MAINTAINERS.md
|
|
Source2: %{name}.keyring
|
|
Source3: baselibs.conf
|
|
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
|
|
|
|
%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
|
|
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 -n %{name}-v%{version}
|
|
%autopatch -p1
|
|
|
|
%build
|
|
./autogen.sh
|
|
%configure \
|
|
--disable-static
|
|
%make_build
|
|
|
|
%install
|
|
%make_install
|
|
find %{buildroot} -type f -name "*.la" -delete -print
|
|
|
|
%check
|
|
%make_build check
|
|
|
|
%post -n libuv%{somajor} -p /sbin/ldconfig
|
|
%postun -n libuv%{somajor} -p /sbin/ldconfig
|
|
|
|
%files -n libuv%{somajor}
|
|
%license LICENSE
|
|
%{_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
|