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