forked from pool/libuv
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
This commit is contained in:
commit
be3e79c5ca
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@ -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
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
.osc
|
31
libuv.changes
Normal file
31
libuv.changes
Normal file
@ -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
|
84
libuv.spec
Normal file
84
libuv.spec
Normal file
@ -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
|
3
v0.11.29.tar.gz
Normal file
3
v0.11.29.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:fac45e72c2df30ddc9cbdf5002fc1363281d0e433831e3d43acb1036c2cabfc6
|
||||||
|
size 486768
|
Loading…
Reference in New Issue
Block a user