From be3e79c5ca75797f7df49d35921ce74e011e4fb8f942e497354f28a5ac650fa3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ismail=20D=C3=B6nmez?= Date: Tue, 16 Sep 2014 10:17:12 +0000 Subject: [PATCH] Accepting request 249525 from home:ldieckow:branches:devel:languages:parrot libuv is a multi-platform support library with a focus on asynchronous I/O. It was primarily developed for use by Node.js, but it's also used by Mozilla's Rust language, Luvit, Julia, pyuv, and others. OBS-URL: https://build.opensuse.org/request/show/249525 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libuv?expand=0&rev=1 --- .gitattributes | 23 ++++++++++++++ .gitignore | 1 + libuv.changes | 31 ++++++++++++++++++ libuv.spec | 84 +++++++++++++++++++++++++++++++++++++++++++++++++ v0.11.29.tar.gz | 3 ++ 5 files changed, 142 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 libuv.changes create mode 100644 libuv.spec create mode 100644 v0.11.29.tar.gz diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/libuv.changes b/libuv.changes new file mode 100644 index 0000000..d36957d --- /dev/null +++ b/libuv.changes @@ -0,0 +1,31 @@ +------------------------------------------------------------------- +Mon Sep 15 2014 00:00:00 UTC - daxim@cpan.org + +- update to v0.11.29 + +------------------------------------------------------------------- +Mon Aug 11 2014 00:00:00 UTC - daxim@cpan.org + +- update to v0.11.28 + +------------------------------------------------------------------- +Wed Apr 30 2014 00:00:00 UTC - dmacvicar@suse.de + +- update to 0.11.24 +- install pkg-config file + +------------------------------------------------------------------- +Sun Apr 13 00:00:00 UTC 2014 - dmitry_r@opensuse.org + +- Update to version 0.11.23 + * bug fixes + +------------------------------------------------------------------- +Mon Mar 10 00:00:00 UTC 2014 - daxim@cpan.org + +- update to v0.11.21 + +------------------------------------------------------------------- +Fri Jan 31 00:00:00 UTC 2014 - daxim@cpan.org + +- initial packaging of v0.11.19 diff --git a/libuv.spec b/libuv.spec new file mode 100644 index 0000000..6f40ed0 --- /dev/null +++ b/libuv.spec @@ -0,0 +1,84 @@ +# +# spec file for package libuv +# +# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany. +# +# 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 http://bugs.opensuse.org/ +# + + +Name: libuv +Version: 0.11.29 +Release: 17.1 +%define somajor 11 +Summary: Cross-platform asychronous I/O +License: MIT +Group: Development/Libraries/C and C++ +Url: https://github.com/joyent/libuv +Source0: https://github.com/joyent/libuv/archive/v%{version}.tar.gz +BuildRequires: libtool +BuildRequires: pkg-config +BuildRoot: %{_tmppath}/%{name}-%{version}-build + +%description +libuv is a multi-platform support library with a focus on asynchronous I/O. It +was primarily developed for use by Node.js, but it's also used by Mozilla's +Rust language, Luvit, Julia, pyuv, and others. + +%package -n libuv%{somajor} +Summary: Cross-platform asychronous I/O +Group: System/Libraries + +%description -n libuv%{somajor} +libuv is a multi-platform support library with a focus on asynchronous I/O. It +was primarily developed for use by Node.js, but it's also used by Mozilla's +Rust language, Luvit, Julia, pyuv, and others. + +%package devel +Summary: Development libraries for libuv +Group: Development/Libraries/C and C++ +Requires: libuv%{somajor} = %{version} +BuildRequires: glibc-devel + +%description devel +Development files for libuv + +libuv is a multi-platform support library with a focus on asynchronous I/O. It +was primarily developed for use by Node.js, but it's also used by Mozilla's +Rust language, Luvit, Julia, pyuv, and others. + +%prep +%setup -q -n %{name}-%{version} +%_buildshell autogen.sh + +%build +%configure --disable-static + +%install +%make_install +find %{buildroot}%{_libdir} -name '*.la' -type f -delete -print + +%post -n libuv%{somajor} -p /sbin/ldconfig +%postun -n libuv%{somajor} -p /sbin/ldconfig + +%files -n libuv%{somajor} +%defattr(-,root,root) +%{_libdir}/libuv.so.%{somajor}* + +%files devel +%defattr(-,root,root) +%doc AUTHORS CONTRIBUTING.md ChangeLog LICENSE README.md +%{_libdir}/libuv.so +%{_includedir}/uv* +%{_libdir}/pkgconfig/libuv.pc + +%changelog diff --git a/v0.11.29.tar.gz b/v0.11.29.tar.gz new file mode 100644 index 0000000..9272a7a --- /dev/null +++ b/v0.11.29.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fac45e72c2df30ddc9cbdf5002fc1363281d0e433831e3d43acb1036c2cabfc6 +size 486768