From b3af042973001626014ba3449897da3f227608e4 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Oct 02 2019 16:52:56 +0000 Subject: Initial release --- diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a13530d --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/luv-1.30.1.1.tar.gz diff --git a/lua-luv.spec b/lua-luv.spec new file mode 100644 index 0000000..5a0c838 --- /dev/null +++ b/lua-luv.spec @@ -0,0 +1,197 @@ +%global lua_53_version 5.3 +%global lua_53_incdir %{_includedir}/lua-%{lua_53_version} +%global lua_53_libdir %{_libdir}/lua/%{lua_53_version} +%global lua_53_pkgdir %{_datadir}/lua/%{lua_53_version} +%global lua_53_builddir obj-lua53 + +%global lua_51_version 5.1 +%global lua_51_incdir %{_includedir}/lua-%{lua_51_version} +%global lua_51_libdir %{_libdir}/lua/%{lua_51_version} +%global lua_51_pkgdir %{_datadir}/lua/%{lua_51_version} +%global lua_51_builddir obj-lua51 + +%global real_version 1.30.1 +%global extra_version 1 + +BuildRequires: cmake +BuildRequires: gcc +BuildRequires: libuv-devel +BuildRequires: lua >= %{lua_53_version} +BuildRequires: lua-devel >= %{lua_53_version} +BuildRequires: compat-lua >= %{lua_51_version} +BuildRequires: compat-lua-devel >= %{lua_51_version} +BuildRequires: lua5.1-compat53 + +Name: lua-luv +Version: %{real_version}.%{extra_version} +Release: 5%{?dist} + +License: ASL 2.0 +Summary: Bare libuv bindings for lua +Url: https://github.com/luvit/luv + +Requires: lua(abi) = %{lua_53_version} + +Source0: https://github.com/luvit/luv/archive/%{real_version}-%{extra_version}/luv-%{version}.tar.gz + +%description +This library makes libuv available to lua scripts. It was made +for the luvit project but should usable from nearly any lua +project. + +The library can be used by multiple threads at once. Each thread +is assumed to load the library from a different lua_State. Luv +will create a unique uv_loop_t for each state. You can't share uv +handles between states/loops. + +The best docs currently are the libuv docs themselves. Hopefully +soon we'll have a copy locally tailored for lua. + +%package devel +Summary: Development files for lua-luv +Requires: lua-luv%{?_isa} = %{version}-%{release} + +%description devel +Files required for lua-luv development + +%package -n lua5.1-luv +Summary: Bare libuv bindings for lua 5.1 +Requires: lua(abi) = %{lua_51_version} + +%description -n lua5.1-luv +This library makes libuv available to lua scripts. It was made +for the luvit project but should usable from nearly any lua +project. + +The library can be used by multiple threads at once. Each thread +is assumed to load the library from a different lua_State. Luv +will create a unique uv_loop_t for each state. You can't share uv +handles between states/loops. + +The best docs currently are the libuv docs themselves. Hopefully +soon we'll have a copy locally tailored for lua. + +%package -n lua5.1-luv-devel +Summary: Development files for lua5.1-luv +Requires: lua5.1-luv%{?_isa} = %{version}-%{release} + +%description -n lua5.1-luv-devel +Files required for lua5.1-luv development + +%prep +%autosetup -p1 -n luv-%{real_version}-%{extra_version} + +# Remove bundled dependencies +rm -rf deps + +# Remove network sensitive tests gh#luvit/luv#340 +rm -f tests/test-dns.lua + +%build +# lua +mkdir -p %{lua_53_builddir} + +pushd %{lua_53_builddir} +%cmake .. \ + -DWITH_SHARED_LIBUV=ON \ + -DBUILD_MODULE=ON \ + -DBUILD_SHARED_LIBS=ON \ + -DWITH_LUA_ENGINE=Lua \ + -DLUA_BUILD_TYPE=System \ + -DINSTALL_LIB_DIR=%{_libdir} \ + +%make_build +popd + +# lua-compat +mkdir -p %{lua_51_builddir} + +pushd %{lua_51_builddir} +%cmake .. \ + -DWITH_SHARED_LIBUV=ON \ + -DBUILD_MODULE=ON \ + -DBUILD_SHARED_LIBS=ON \ + -DWITH_LUA_ENGINE=Lua \ + -DLUA_BUILD_TYPE=System \ + -DINSTALL_LIB_DIR=%{_libdir} \ + -DLUA_COMPAT53_DIR=%{lua_51_incdir} \ + -DLUA_LIBRARIES=%{_libdir}/liblua-%{lua_51_version}.so + +%make_build +popd + +%install +# lua-5.3 +install -d -m 0755 %{buildroot}%{lua_53_libdir} +install -m 0755 -p %{lua_53_builddir}/luv.so %{buildroot}%{lua_53_libdir}/luv.so + +install -d -m 0755 %{buildroot}%{lua_53_incdir}/luv +for f in lhandle.h lreq.h luv.h util.h; do + install -m 0644 -p src/$f %{buildroot}%{lua_53_incdir}/luv/$f +done + +# lua-5.1 +install -d -m 0755 %{buildroot}%{lua_51_libdir} +install -m 0755 -p %{lua_51_builddir}/luv.so %{buildroot}%{lua_51_libdir}/luv.so + +install -d -m 0755 %{buildroot}%{lua_51_incdir}/luv +for f in lhandle.h lreq.h luv.h util.h; do + install -m 0644 -p src/$f %{buildroot}%{lua_51_incdir}/luv/$f +done + +%check +# lua-5.3 +ln -sf %{lua_53_builddir}/luv.so luv.so +lua tests/run.lua + +# lua-5.1 +ln -sf %{lua_51_builddir}/luv.so luv.so +lua-5.1 tests/run.lua + +%files +%doc README.md +%license LICENSE.txt +%{lua_libdir}/luv.so + +%files devel +%dir %{lua_53_incdir} +%dir %{lua_53_incdir}/luv/ +%{lua_53_incdir}/luv/lhandle.h +%{lua_53_incdir}/luv/lreq.h +%{lua_53_incdir}/luv/luv.h +%{lua_53_incdir}/luv/util.h + +%files -n lua5.1-luv +%doc README.md +%license LICENSE.txt +%{lua_51_libdir}/luv.so + +%files -n lua5.1-luv-devel +%dir %{lua_51_incdir} +%dir %{lua_51_incdir}/luv/ +%{lua_51_incdir}/luv/lhandle.h +%{lua_51_incdir}/luv/lreq.h +%{lua_51_incdir}/luv/luv.h +%{lua_51_incdir}/luv/util.h + +%changelog +* Tue Oct 01 2019 Andreas Schneider - 1.30.1.1-5 +- Fixed versioning + +* Tue Oct 01 2019 Andreas Schneider - 1.30.1-4.1 +- Update to version 1.30.1-1 +- Removed luv-1.30-include_lua_header.patch +- Added missing Requires for devel packages +- Fixed source URL +- Fixed license +- Preserved timestamps + +* Mon Sep 30 2019 Andreas Schneider - 1.30.1-3 +- Fixed BR for lua 5.3 + +* Mon Sep 30 2019 Andreas Schneider - 1.30.1-2 +- Added BR for gcc +- Renamed lua globals + +* Tue Sep 24 2019 Andreas Schneider - 1.30.1-1 +- Initial version 1.30.1-0 diff --git a/sources b/sources new file mode 100644 index 0000000..121bedb --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (luv-1.30.1.1.tar.gz) = c9001cbea2f58a867b6ddf11ac54d16bfaa15f37f3453758d303c58b960177c7c1a65e8c5636ce07161711c898af7dfda0ed9cb4cfb8d7d6430b3843fd0acfa2