Initial version

mr3.2.1
Victor Seva 12 years ago
parent ed606df300
commit 128d0e4f45

5
debian/changelog vendored

@ -0,0 +1,5 @@
lua-uri (0.1+20130926+git14fa255d-1) unstable; urgency=low
* Initial release (Closes: #724679)
-- Victor Seva <linuxmaniac@torreviejawireless.org> Thu, 26 Sep 2013 17:21:34 +0200

1
debian/compat vendored

@ -0,0 +1 @@
8

32
debian/control vendored

@ -0,0 +1,32 @@
Source: lua-uri
Section: interpreters
Priority: optional
Maintainer: Victor Seva <linuxmaniac@torreviejawireless.org>
Build-Depends: debhelper (>= 8~), dh-lua (>= 16~)
Standards-Version: 3.9.4
Vcs-Git: git://git.debian.org/git/pkg-lua/lua-uri.git
Vcs-Browser: http://git.debian.org/?p=pkg-lua/lua-uri.git
Homepage: http://www.geoffrichards.co.uk/lua/uri/
Package: lua-uri
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Provides: ${lua:Provides}
XB-Lua-Versions: ${lua:Versions}
Description: pure Lua library to normalize and validate URIs/URLs
Provides methods for manipulating URIs in various ways.
In particular, you can resolve relative URI references
to create absolute URIs, and extract parts of URIs.
Package: lua-uri-dev
Section: libdevel
Architecture: any
Depends: lua-uri (= ${binary:Version}), ${misc:Depends}
Provides: ${lua:Provides}
XB-Lua-Versions: ${lua:Versions}
Description:pure Lua library to normalize and validate URIs/URLs
Provides methods for manipulating URIs in various ways.
In particular, you can resolve relative URI references
to create absolute URIs, and extract parts of URIs.
.
This package contains examples and test files.

49
debian/copyright vendored

@ -0,0 +1,49 @@
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: lua-uri
Source: https://git.gitorious.org/lua-uri/mainline.git
Files: *
Copyright: 2007 Geoff Richards <geoff@geoffrichards.co.uk>
License: Expat
This software and documentation is distributed under the same terms as
Lua version 5.0, the MIT/X Consortium license. The full terms are as
follows:
.
Copyright (C) 2007 Geoff Richards
.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
.
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
Files: debian/*
Copyright: 2013 Victor Seva <linuxmaniac@torreviejawireless.org>
License: GPL-2+
This package is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
.
This package is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>
.
On Debian systems, the complete text of the GNU General
Public License version 2 can be found in "/usr/share/common-licenses/GPL-2".

@ -0,0 +1,3 @@
test
lunit.lua
uri-test.lua

@ -0,0 +1,14 @@
doc/lua-uri-_login.3
doc/lua-uri-_util.3
doc/lua-uri-data.3
doc/lua-uri-file.3
doc/lua-uri-ftp.3
doc/lua-uri-http.3
doc/lua-uri-pop.3
doc/lua-uri-rtsp.3
doc/lua-uri-telnet.3
doc/lua-uri-urn-isbn.3
doc/lua-uri-urn-issn.3
doc/lua-uri-urn-oid.3
doc/lua-uri-urn.3
doc/lua-uri.3

@ -0,0 +1,5 @@
PKG_NAME=uri
LUA_SOURCES=uri.lua $(wildcard uri/*.lua) $(wildcard uri/*/*.lua)
LUA_MODNAME=uri
LUA_TEST=uri-test.lua

8
debian/rules vendored

@ -0,0 +1,8 @@
#!/usr/bin/make -f
%:
dh $@ --buildsystem=lua --with lua
override_dh_auto_build:
${MAKE} all
dh_auto_build

@ -0,0 +1 @@
3.0 (quilt)
Loading…
Cancel
Save