You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
231 lines
8.0 KiB
231 lines
8.0 KiB
%if 0%{?fedora} >= 22 || 0%{?rhel} > 7
|
|
%define luaver 5.3
|
|
%else
|
|
%if 0%{?fedora} >= 20
|
|
%define luaver 5.2
|
|
%else
|
|
%define luaver 5.1
|
|
%endif
|
|
%endif
|
|
|
|
%define luacompatver 5.1
|
|
%define luacompatlibdir %{_libdir}/lua/%{luacompatver}
|
|
%define luacompatpkgdir %{_datadir}/lua/%{luacompatver}
|
|
%define lua51dir %{_builddir}/lua51-%{name}-%{version}-%{release}
|
|
|
|
%define lualibdir %{_libdir}/lua/%{luaver}
|
|
%define luapkgdir %{_datadir}/lua/%{luaver}
|
|
%global baseversion 3.0-rc1
|
|
%global upstreamname luasocket
|
|
|
|
Name: lua-socket
|
|
Version: 3.0
|
|
Release: 0.17.rc1%{?dist}
|
|
Summary: Network support for the Lua language
|
|
|
|
Group: Development/Libraries
|
|
License: MIT
|
|
URL: http://www.tecgraf.puc-rio.br/~diego/professional/luasocket/
|
|
#Source0: http://luaforge.net/frs/download.php/2664/luasocket-%{baseversion}.tar.gz
|
|
Source0: https://github.com/diegonehab/%{upstreamname}/archive/v%{baseversion}.tar.gz
|
|
Patch0: luasocket-optflags.patch
|
|
# All changes in the upstream repo from %{baseversion} tag to the
|
|
# current master. Seems to be harmless.
|
|
Patch1: luasocket-no-global-vars.patch
|
|
Patch2: luasocket-3.0-settimeout.patch
|
|
|
|
BuildRequires: lua >= %{luaver}, lua-devel >= %{luaver}
|
|
BuildRequires: /usr/bin/iconv
|
|
Requires: lua >= %{luaver}
|
|
|
|
%package devel
|
|
Summary: Development files for %{name}
|
|
Group: Development/Languages
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
|
|
%description
|
|
LuaSocket is a Lua extension library that is composed by two parts: a C core
|
|
that provides support for the TCP and UDP transport layers, and a set of Lua
|
|
modules that add support for functionality commonly needed by applications
|
|
that deal with the Internet.
|
|
|
|
Among the support modules, the most commonly used implement the SMTP, HTTP
|
|
and FTP. In addition there are modules for MIME, URL handling and LTN12.
|
|
|
|
%description devel
|
|
Header files and libraries for building an extension library for the
|
|
Lua using %{name}
|
|
|
|
%if 0%{?fedora} >= 20
|
|
%package compat
|
|
Summary: Network support for the Lua language 5.1
|
|
Group: Development/Libraries
|
|
BuildRequires: compat-lua >= %{luacompatver}, compat-lua-devel >= %{luacompatver}
|
|
|
|
%description compat
|
|
LuaSocket is a Lua extension library that is composed by two parts: a C core
|
|
that provides support for the TCP and UDP transport layers, and a set of Lua
|
|
modules that add support for functionality commonly needed by applications
|
|
that deal with the Internet.
|
|
|
|
Among the support modules, the most commonly used implement the SMTP, HTTP
|
|
and FTP. In addition there are modules for MIME, URL handling and LTN12.
|
|
%endif
|
|
|
|
%prep
|
|
%setup -q -n %{upstreamname}-%{baseversion}
|
|
%patch0 -p1 -b .optflags
|
|
%patch1 -p1 -b .noglobal
|
|
%patch2 -p1 -b .settimeout
|
|
|
|
%if 0%{?fedora} >= 20
|
|
rm -rf %{lua51dir}
|
|
cp -a . %{lua51dir}
|
|
%endif
|
|
|
|
%build
|
|
make %{?_smp_mflags} LUAV=%{luaver} OPTFLAGS="%{optflags} -fPIC" \
|
|
LDFLAGS="%{build_ldflags} -shared -o " linux
|
|
/usr/bin/iconv -f ISO8859-1 -t UTF8 LICENSE >LICENSE.UTF8
|
|
mv -f LICENSE.UTF8 LICENSE
|
|
|
|
%if 0%{?fedora} >= 20
|
|
pushd %{lua51dir}
|
|
make %{?_smp_mflags} LUAV=%{luacompatver} \
|
|
LUAINC_linux=%{_includedir}/lua-%{luacompatver} \
|
|
OPTFLAGS="%{optflags} -fPIC" \
|
|
LDFLAGS="%{build_ldflags} -O -shared -fpic -o " linux
|
|
/usr/bin/iconv -f ISO8859-1 -t UTF8 LICENSE >LICENSE.UTF8
|
|
mv -f LICENSE.UTF8 LICENSE
|
|
popd
|
|
%endif
|
|
|
|
%install
|
|
rm -rf $RPM_BUILD_ROOT
|
|
make install-unix OPTFLAGS="%{optflags}" INSTALL_TOP=$RPM_BUILD_ROOT \
|
|
INSTALL_TOP_CDIR=$RPM_BUILD_ROOT%{lualibdir} \
|
|
INSTALL_TOP_LDIR=$RPM_BUILD_ROOT%{luapkgdir}
|
|
|
|
# install development files
|
|
install -d $RPM_BUILD_ROOT%{_includedir}/%{upstreamname}
|
|
install -p src/*.h $RPM_BUILD_ROOT%{_includedir}/%{upstreamname}
|
|
|
|
%if 0%{?fedora} >= 20
|
|
pushd %{lua51dir}
|
|
make install-unix OPTFLAGS="%{optflags}" INSTALL_TOP=$RPM_BUILD_ROOT \
|
|
INSTALL_TOP_CDIR=$RPM_BUILD_ROOT%{luacompatlibdir} \
|
|
INSTALL_TOP_LDIR=$RPM_BUILD_ROOT%{luacompatpkgdir}
|
|
popd
|
|
%endif
|
|
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
%{!?_licensedir:%global license %%doc}
|
|
%license LICENSE
|
|
%doc README doc/*
|
|
%{lualibdir}/*
|
|
%{luapkgdir}/*
|
|
|
|
%files devel
|
|
%defattr(-,root,root,-)
|
|
%{_includedir}/%{upstreamname}
|
|
|
|
%if 0%{?fedora} >= 20
|
|
%files compat
|
|
%defattr(-,root,root,-)
|
|
%{!?_licensedir:%global license %%doc}
|
|
%license LICENSE
|
|
%doc README doc/*
|
|
%{luacompatlibdir}/*
|
|
%{luacompatpkgdir}/*
|
|
%endif
|
|
|
|
%changelog
|
|
* Wed Jul 26 2023 MSVSphere Packaging Team <packager@msvsphere.ru> - 3.0-0.17.rc1
|
|
- Rebuilt for MSVSphere 8.8
|
|
|
|
* Mon Apr 16 2018 Rafael dos Santos <rdossant@redhat.com> - 3.0-0.17.rc1
|
|
- Use standard Fedora linker flags (bug #1548713)
|
|
|
|
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.0-0.16.rc1
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.0-0.15.rc1
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.0-0.14.rc1
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.0-0.13.rc1
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.0-0.12.rc1
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0-0.11.rc1
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
* Sun May 10 2015 Robert Scheck <robert@fedoraproject.org> 3.0-0.10.rc1
|
|
- Added upstream patch to fix settimeout() bug (#1220171)
|
|
|
|
* Mon May 04 2015 Robert Scheck <robert@fedoraproject.org> 3.0-0.9.rc1
|
|
- Fix broken release tag
|
|
|
|
* Fri Mar 20 2015 Bastien Nocera <bnocera@redhat.com> 3.0-0.8rc1.1
|
|
- Rebuild for new lua
|
|
|
|
* Fri Jan 16 2015 Tom Callaway <spot@fedoraproject.org> - 3.0-0.8rc1
|
|
- lua 5.3
|
|
|
|
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0-0.7rc1
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0-0.6rc1
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
* Thu May 22 2014 Jan Kaluza <jkaluza@redhat.com> - 3.0-0.5rc1
|
|
- build -compat subpackage against compat-lua
|
|
|
|
* Mon Sep 09 2013 Matěj Cepl <mcepl@redhat.com> - 3.0-0.4rc1
|
|
- Add -devel package.
|
|
|
|
* Fri Aug 23 2013 Matěj Cepl <mcepl@redhat.com> - 3.0-0.3rc1
|
|
- update to the 3.0rc1 from git
|
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1-0.2.rc1
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
* Fri May 10 2013 Tom Callaway <spot@fedoraproject.org> - 2.1-0.1.rc1
|
|
- update to 2.1rc1 from git
|
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.2-9
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.2-8
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.2-7
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
* Mon Oct 10 2011 Matthew Garrett <mjg@redhat.com> - 2.0.2-6
|
|
- Build support for Unix domain sockets (rhbz: #720692)
|
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.2-5
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.2-4
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.2-3
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
* Sat Apr 05 2008 Tim Niemueller <tim@niemueller.de> - 2.0.2-2
|
|
- Pass proper CFLAGS to produce valid debuginfo
|
|
- Pass LICENSE file through iconv to produce proper UTF8
|
|
|
|
* Fri Apr 04 2008 Tim Niemueller <tim@niemueller.de> - 2.0.2-1
|
|
- Initial package
|
|
|