[compat-libuv010/f22] initial import (RHBZ#1194212)

T.C. Hollingsworth patches at fedoraproject.org
Thu Feb 19 20:10:18 UTC 2015


commit adfdc69704d825526022960990c96ada9079a0ef
Author: T.C. Hollingsworth <tchollingsworth at gmail.com>
Date:   Thu Feb 19 13:07:46 2015 -0700

    initial import (RHBZ#1194212)

 .gitignore           |   1 +
 compat-libuv010.spec | 243 +++++++++++++++++++++++++++++++++++++++++++++++++++
 libuv.pc.in          |  11 +++
 sources              |   1 +
 4 files changed, 256 insertions(+)
---
diff --git a/.gitignore b/.gitignore
index e69de29..5c4ed90 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/libuv-v0.10.33.tar.gz
diff --git a/compat-libuv010.spec b/compat-libuv010.spec
new file mode 100644
index 0000000..7267496
--- /dev/null
+++ b/compat-libuv010.spec
@@ -0,0 +1,243 @@
+#we only need major.minor in the SONAME in the stable (even numbered) series
+#this should be changed to %%{version} in unstable (odd numbered) releases
+%global sover 0.10
+
+Name: compat-libuv010
+Epoch:   1
+Version: 0.10.33
+Release: 2%{?dist}
+Summary: Platform layer for node.js - compatibility library for nodejs 0.10.x
+
+Group: Development/Tools
+# the licensing breakdown is described in detail in the LICENSE file
+License: MIT and BSD and ISC
+URL: http://libuv.org/
+Source0: http://libuv.org/dist/v%{version}/libuv-v%{version}.tar.gz
+Source2: libuv.pc.in
+
+BuildRequires: gyp
+Requires(post): /sbin/ldconfig
+Requires(postun): /sbin/ldconfig
+
+%description
+Compatibility libuv library for nodejs 0.10.x.
+
+%package devel
+Summary: Development headers for compatibility libuv library for nodejs 0.10x
+Group: Development/Tools
+Requires: %{name} = %{epoch}:%{version}-%{release}
+Requires: pkgconfig
+
+%description devel
+Development headers for the compatibility libuv library for nodejs 0.10.x.
+
+%prep
+%setup -q -n libuv-v%{version}
+
+%build
+export CFLAGS='%{optflags}'
+export CXXFLAGS='%{optflags}'
+%{__python} gyp_uv.py -Dcomponent=shared_library -Dlibrary=shared_library
+
+make %{?_smp_mflags} V=1 -C out BUILDTYPE=Release
+
+mv out out-shared
+
+# build a static version for rust
+%{__python} gyp_uv.py
+make %{?_smp_mflags} V=1 -C out BUILDTYPE=Release
+mv out out-static
+
+%install
+# Copy the shared lib into the libdir
+mkdir -p %{buildroot}/%{_libdir}/
+cp out-shared/Release/obj.target/libuv.so %{buildroot}/%{_libdir}/libuv.so.%{sover}
+
+# Copy the headers into the include path
+mkdir -p %{buildroot}/%{_includedir}/%{name}/uv-private
+
+cp include/uv.h \
+   %{buildroot}/%{_includedir}/%{name}
+
+cp \
+   include/uv-private/ngx-queue.h \
+   include/uv-private/tree.h \
+   include/uv-private/uv-linux.h \
+   include/uv-private/uv-unix.h \
+   %{buildroot}/%{_includedir}/%{name}/uv-private
+
+# Create the pkgconfig file
+mkdir -p %{buildroot}/%{_libdir}/pkgconfig
+
+sed -e "s#@prefix@#%{_prefix}#g" \
+    -e "s#@exec_prefix@#%{_exec_prefix}#g" \
+    -e "s#@libdir@#%{_libdir}#g" \
+    -e "s#@includedir@#%{_includedir}/%{name}#g" \
+    -e "s#@version@#%{version}.git%{git_snapshot}#g" \
+    %SOURCE2 > %{buildroot}/%{_libdir}/pkgconfig/%{name}.pc
+
+%check
+# Tests are currently disabled because some require network access
+# Working with upstream to split these out
+#./run-tests
+#./run-benchmarks
+
+%post -p /sbin/ldconfig
+%postun -p /sbin/ldconfig
+
+%files
+%doc README.md AUTHORS LICENSE
+%{_libdir}/libuv.so.%{sover}
+
+%files devel
+%{_libdir}/pkgconfig/%{name}.pc
+%{_includedir}/%{name}
+
+%changelog
+* Thu Feb 19 2015 T.C. Hollingsworth <tchollingsworth at gmail.com> - 1:0.10.33-2
+- create compat 0.10 version for nodejs 0.10.x
+
+* Thu Feb 19 2015 T.C. Hollingsworth <tchollingsworth at gmail.com> - 1:0.10.33-1
+- new upstream release 0.10.33
+  https://github.com/joyent/libuv/blob/v0.10.33/ChangeLog
+- update URL to point to the new libuv.org
+
+* Wed Nov 19 2014 T.C. Hollingsworth <tchollingsworth at gmail.com> - 1:0.10.29-1
+- new upstream release 0.10.29
+  https://github.com/joyent/libuv/blob/v0.10.29/ChangeLog
+
+* Sun Aug 17 2014 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 1:0.10.28-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
+
+* Fri Aug 01 2014 T.C. Hollingsworth <tchollingsworth at gmail.com> - 1:0.10.28-1
+- new upstream release 0.10.28
+  https://github.com/joyent/libuv/blob/v0.10.28/ChangeLog
+
+* Thu Jul 03 2014 T.C. Hollingsworth <tchollingsworth at gmail.com> - 1:0.10.27-3
+- build static library for rust (RHBZ#1115975)
+
+* Sat Jun 07 2014 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 1:0.10.27-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
+
+* Fri May 02 2014 T.C. Hollingsworth <tchollingsworth at gmail.com> - 1:0.10.27-1
+- new upstream release 0.10.27
+  https://github.com/joyent/libuv/blob/v0.10.27/ChangeLog
+
+* Thu Feb 20 2014 T.C. Hollingsworth <tchollingsworth at gmail.com> - 1:0.10.25-1
+- new upstream release 0.10.25
+  https://github.com/joyent/libuv/blob/v0.10.25/ChangeLog
+
+* Mon Jan 27 2014 T.C. Hollingsworth <tchollingsworth at gmail.com> - 1:0.10.23-1
+- new upstream release 0.10.23
+  https://github.com/joyent/libuv/blob/v0.10.23/ChangeLog
+
+* Thu Dec 19 2013 T.C. Hollingsworth <tchollingsworth at gmail.com> - 1:0.10.21-1
+- new upstream release 0.10.21
+  https://github.com/joyent/libuv/blob/v0.10.21/ChangeLog
+
+* Thu Dec 12 2013 T.C. Hollingsworth <tchollingsworth at gmail.com> - 1:0.10.20-1
+- new upstream release 0.10.20
+  https://github.com/joyent/libuv/blob/v0.10.20/ChangeLog
+
+* Tue Nov 12 2013 T.C. Hollingsworth <tchollingsworth at gmail.com> - 1:0.10.19-1
+- new upstream release 0.10.19
+  https://github.com/joyent/libuv/blob/v0.10.19/ChangeLog
+
+* Fri Oct 18 2013 T.C. Hollingsworth <tchollingsworth at gmail.com> - 1:0.10.18-1
+- new upstream release 0.10.18
+  https://github.com/joyent/libuv/blob/v0.10.18/ChangeLog
+
+* Wed Sep 25 2013 T.C. Hollingsworth <tchollingsworth at gmail.com> - 1:0.10.17-1
+- new upstream release 0.10.17
+  https://github.com/joyent/libuv/blob/v0.10.17/ChangeLog
+
+* Fri Sep 06 2013 T.C. Hollingsworth <tchollingsworth at gmail.com> - 1:0.10.15-1
+- new upstream release 0.10.15
+  https://github.com/joyent/libuv/blob/v0.10.15/ChangeLog
+
+* Tue Aug 27 2013 T.C. Hollingsworth <tchollingsworth at gmail.com> - 1:0.10.14-1
+- new upstream release 0.10.14
+  https://github.com/joyent/libuv/blob/v0.10.14/ChangeLog
+
+* Thu Jul 25 2013 T.C. Hollingsworth <tchollingsworth at gmail.com> - 1:0.10.13-1
+- new upstream release 0.10.13
+  https://github.com/joyent/libuv/blob/v0.10.13/ChangeLog
+
+* Wed Jul 10 2013 T.C. Hollingsworth <tchollingsworth at gmail.com> - 1:0.10.12-1
+- new upstream release 0.10.12
+
+* Wed Jun 19 2013 T.C. Hollingsworth <tchollingsworth at gmail.com> - 1:0.10.11-1
+- new upstream release 0.10.11
+
+* Fri May 31 2013 T.C. Hollingsworth <tchollingsworth at gmail.com> - 1:0.10.9-1
+- new upstream release 0.10.9
+
+* Wed May 29 2013 T.C. Hollingsworth <tchollingsworth at gmail.com> - 1:0.10.8-2
+- fix License tag (RHBZ#968226)
+
+* Wed May 29 2013 T.C. Hollingsworth <tchollingsworth at gmail.com> - 1:0.10.8-1
+- new upstream release 0.10.8
+
+* Wed May 29 2013 T.C. Hollingsworth <tchollingsworth at gmail.com> - 1:0.10.7-1
+- new upstream release 0.10.7
+- drop upstreamed patch from 0.10.5-2
+
+* Mon May 13 2013 T.C. Hollingsworth <tchollingsworth at gmail.com> - 1:0.10.5-3
+- don't sed the soname in the spec anymore; the patch takes care of it now
+- drop leftover global define for git revision
+
+* Mon May 13 2013 Stephen Gallagher <sgallagh at redhat.com> - 1:0.10.5-2
+- Add patch to properly report soname version information
+  This patch will be included upstream in 0.10.6 and can be dropped then.
+- Remove Bundles(ev) as this has not been true since 0.9.5
+
+* Wed Apr 24 2013 T.C. Hollingsworth <tchollingsworth at gmail.com> - 1:0.10.5-1
+- new upstream release 0.10.5
+
+* Mon Apr 15 2013 T.C. Hollingsworth <tchollingsworth at gmail.com> - 1:0.10.4-1
+- new upstream release 0.10.4
+- drop upstreamed patch
+
+* Thu Apr 04 2013 T.C. Hollingsworth <tchollingsworth at gmail.com> - 1:0.10.3-2
+- backport patch that fixes FTBFS in nodejs-0.10.3
+
+* Sun Mar 31 2013 tchollingsworth at gmail.com - 1:0.10.3-1
+- rebase to 0.10.3
+- upstream now does proper releases
+
+* Tue Mar 12 2013 T.C. Hollingsworth <tchollingsworth at gmail.com> - 1:0.10.0-2.git5462dab
+- drop the patchlevel from the SONAME since libuv will retain binary
+  compatibility for the life of the 0.10.x series
+
+* Mon Mar 11 2013 Stephen Gallagher <sgallagh at redhat.com> - 1:0.10.0-1.git5462dab
+- Upgrade to 0.10.0 release to match stable Node.js release
+
+* Thu Feb 28 2013 Stephen Gallagher <sgallagh at redhat.com> - 1:0.9.4-4.gitdc559a5
+- Bump epoch for the version downgrade
+- The 0.9.7 version hit the Rawhide repo due to the mass rebuild, we need a
+  clean upgrade path.
+
+* Thu Feb 21 2013 Stephen Gallagher <sgallagh at redhat.com> - 0.9.4-3.gitdc559a5
+- Revert to version 0.9.4 (since 0.9.7 is breaking builds)
+
+* Thu Feb 14 2013 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 0.9.7-2.git4ba03dd
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
+
+* Tue Jan 22 2013 Stephen Gallagher <sgallagh at redhat.com> - 0.9.7-1.git4ba03dd
+- Bump to version included with Node.js 0.9.7
+
+* Wed Dec 26 2012 T.C. Hollingsworth <tchollingsworth at gmail.com> - 0.9.4-0.1.gitdc559a5
+- bump to version included with node 0.9.4
+- drop upstreamed patch
+- respect optflags
+
+* Thu Nov 15 2012 Stephen Gallagher <sgallagh at redhat.com> - 0.9.3-0.3.git09b0222
+- Add patch to export uv_inet_*
+
+* Wed Nov 14 2012 Stephen Gallagher <sgallagh at redhat.com> - 0.9.3-0.2.git09b0222
+- Fixes from package review
+- Removed doubly-listed include directory
+- Update git tarball to the latest upstream code
+
+* Thu Nov 08 2012 Stephen Gallagher <sgallagh at redhat.com> - 0.9.3-0.1.gitd56434a
+- Initial package
diff --git a/libuv.pc.in b/libuv.pc.in
new file mode 100644
index 0000000..43236a5
--- /dev/null
+++ b/libuv.pc.in
@@ -0,0 +1,11 @@
+prefix=@prefix@
+exec_prefix=@exec_prefix@
+libdir=@libdir@
+includedir=@includedir@
+
+Name: libuv
+Description: Development libraries for libuv
+Version: @version@
+Libs: -L${libdir} -luv -lrt -ldl
+Cflags:
+URL: http://nodejs.org/
diff --git a/sources b/sources
index e69de29..7e765af 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+3189f552d9b67b9b61b067f0f32df144  libuv-v0.10.33.tar.gz


More information about the scm-commits mailing list