From 6c4223b1cb4bdd88a038cd8d30870c71c9a62949 Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Mon, 24 Oct 2016 20:40:31 -0400 Subject: [PATCH 1/2] Update to 1.10.0 - https://github.com/libuv/libuv/blob/v1.10.0/ChangeLog --- .gitignore | 1 + libuv.spec | 6 +++++- sources | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 4c5f5bd..f07d6b0 100644 --- a/.gitignore +++ b/.gitignore @@ -29,3 +29,4 @@ /libuv-v1.8.0.tar.gz /libuv-v1.9.0.tar.gz /libuv-v1.9.1.tar.gz +/libuv-v1.10.0.tar.gz diff --git a/libuv.spec b/libuv.spec index 5771850..02110a1 100644 --- a/libuv.spec +++ b/libuv.spec @@ -1,7 +1,7 @@ Name: libuv Epoch: 1 -Version: 1.9.1 +Version: 1.10.0 Release: 1%{?dist} Summary: Platform layer for node.js @@ -75,6 +75,10 @@ rm -f %{buildroot}%{_libdir}/libuv.la %{_libdir}/libuv.a %changelog +* Mon Oct 24 2016 Stephen Gallagher - 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 - 1.9.1-1 - Update to 1.9.1 - https://github.com/libuv/libuv/blob/v1.9.1/ChangeLog diff --git a/sources b/sources index 5d17b5e..0855279 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -654bf6783ac7fc10435c84ec86720a6e libuv-v1.9.1.tar.gz +87b6a192a8131931baf9c89bd048b9ef libuv-v1.10.0.tar.gz From 68aabdc45b0eb6912503d94bf38f9794e9b167a1 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Sat, 19 Nov 2016 09:37:02 +0100 Subject: [PATCH 2/2] Update to 1.10.1 (RHBZ #1395927) Signed-off-by: Igor Gnatenko --- .gitignore | 1 + libuv.spec | 52 ++++++++++++++++++++++++---------------------------- sources | 2 +- 3 files changed, 26 insertions(+), 29 deletions(-) diff --git a/.gitignore b/.gitignore index f07d6b0..6541ea4 100644 --- a/.gitignore +++ b/.gitignore @@ -30,3 +30,4 @@ /libuv-v1.9.0.tar.gz /libuv-v1.9.1.tar.gz /libuv-v1.10.0.tar.gz +/libuv-v1.10.1.tar.gz diff --git a/libuv.spec b/libuv.spec index 02110a1..a785e77 100644 --- a/libuv.spec +++ b/libuv.spec @@ -1,20 +1,18 @@ -Name: libuv -Epoch: 1 -Version: 1.10.0 -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,20 @@ 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 - 1.10.1-1 +- Update to 1.10.1 (RHBZ #1395927) + * Mon Oct 24 2016 Stephen Gallagher - 1.10.0-1 - Update to 1.10.0 - https://github.com/libuv/libuv/blob/v1.10.0/ChangeLog diff --git a/sources b/sources index 0855279..74143a0 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -87b6a192a8131931baf9c89bd048b9ef libuv-v1.10.0.tar.gz +1d41d7fbc10e7154d21da5591f8b6976 libuv-v1.10.1.tar.gz