Merge branch 'master' into epel7
This commit is contained in:
commit
ea63b34778
2
.gitignore
vendored
2
.gitignore
vendored
@ -30,3 +30,5 @@
|
||||
/libuv-v1.8.0.tar.gz
|
||||
/libuv-v1.9.0.tar.gz
|
||||
/libuv-v1.9.1.tar.gz
|
||||
/libuv-v1.10.0.tar.gz
|
||||
/libuv-v1.10.1.tar.gz
|
||||
|
56
libuv.spec
56
libuv.spec
@ -1,20 +1,18 @@
|
||||
|
||||
Name: libuv
|
||||
Epoch: 1
|
||||
Version: 1.9.1
|
||||
Release: 1%{?dist}
|
||||
Summary: Platform layer for node.js
|
||||
Name: libuv
|
||||
Epoch: 1
|
||||
Version: 1.10.1
|
||||
Release: 1%{?dist}
|
||||
Summary: Platform layer for node.js
|
||||
|
||||
Group: System Environment/Libraries
|
||||
# the licensing breakdown is described in detail in the LICENSE file
|
||||
License: MIT and BSD and ISC
|
||||
URL: http://libuv.org/
|
||||
Source0: http://dist.libuv.org/dist/v%{version}/libuv-v%{version}.tar.gz
|
||||
Source2: libuv.pc.in
|
||||
License: MIT and BSD and ISC
|
||||
URL: http://libuv.org/
|
||||
Source0: http://dist.libuv.org/dist/v%{version}/libuv-v%{version}.tar.gz
|
||||
Source2: %{name}.pc.in
|
||||
|
||||
BuildRequires: autoconf automake libtool
|
||||
Requires(post): /sbin/ldconfig
|
||||
Requires(postun): /sbin/ldconfig
|
||||
BuildRequires: autoconf automake libtool
|
||||
BuildRequires: gcc
|
||||
|
||||
%description
|
||||
libuv is a new platform layer for Node. Its purpose is to abstract IOCP on
|
||||
@ -22,20 +20,15 @@ Windows and libev on Unix systems. We intend to eventually contain all platform
|
||||
differences in this library.
|
||||
|
||||
%package devel
|
||||
Summary: Development libraries for libuv
|
||||
Group: Development/Libraries
|
||||
Requires: %{name}%{?_isa} = %{epoch}:%{version}-%{release}
|
||||
Requires: pkgconfig
|
||||
Requires(post): /sbin/ldconfig
|
||||
Requires(postun): /sbin/ldconfig
|
||||
Summary: Development libraries for libuv
|
||||
Requires: %{name}%{?_isa} = %{epoch}:%{version}-%{release}
|
||||
|
||||
%description devel
|
||||
Development libraries for libuv
|
||||
|
||||
%package static
|
||||
Summary: Platform layer for node.js - static library
|
||||
Group: Development/Libraries
|
||||
Requires: %{name}-devel = %{epoch}:%{version}-%{release}
|
||||
Summary: Platform layer for node.js - static library
|
||||
Requires: %{name}-devel = %{epoch}:%{version}-%{release}
|
||||
|
||||
%description static
|
||||
Static library (.a) version of libuv.
|
||||
@ -46,10 +39,10 @@ Static library (.a) version of libuv.
|
||||
%build
|
||||
./autogen.sh
|
||||
%configure
|
||||
make %{?_smp_mflags}
|
||||
%make_build
|
||||
|
||||
%install
|
||||
make DESTDIR=%{buildroot} install
|
||||
%make_install
|
||||
rm -f %{buildroot}%{_libdir}/libuv.la
|
||||
|
||||
%check
|
||||
@ -64,17 +57,24 @@ rm -f %{buildroot}%{_libdir}/libuv.la
|
||||
%files
|
||||
%doc README.md AUTHORS
|
||||
%license LICENSE
|
||||
%{_libdir}/libuv.so.*
|
||||
%{_libdir}/%{name}.so.*
|
||||
|
||||
%files devel
|
||||
%{_libdir}/libuv.so
|
||||
%{_libdir}/pkgconfig/libuv.pc
|
||||
%{_libdir}/%{name}.so
|
||||
%{_libdir}/pkgconfig/%{name}.pc
|
||||
%{_includedir}/uv*.h
|
||||
|
||||
%files static
|
||||
%{_libdir}/libuv.a
|
||||
%{_libdir}/%{name}.a
|
||||
|
||||
%changelog
|
||||
* Sat Nov 19 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 1.10.1-1
|
||||
- Update to 1.10.1 (RHBZ #1395927)
|
||||
|
||||
* Mon Oct 24 2016 Stephen Gallagher <sgallagh@redhat.com> - 1.10.0-1
|
||||
- Update to 1.10.0
|
||||
- https://github.com/libuv/libuv/blob/v1.10.0/ChangeLog
|
||||
|
||||
* Wed May 18 2016 Stephen Gallagher <sgallagh@redhat.com> - 1.9.1-1
|
||||
- Update to 1.9.1
|
||||
- https://github.com/libuv/libuv/blob/v1.9.1/ChangeLog
|
||||
|
Loading…
Reference in New Issue
Block a user