diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..9efa9c7 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +lua-uri (0.1+20130926+git14fa255d-1) unstable; urgency=low + + * Initial release (Closes: #724679) + + -- Victor Seva Thu, 26 Sep 2013 17:21:34 +0200 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..45a4fb7 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +8 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..1e1970b --- /dev/null +++ b/debian/control @@ -0,0 +1,32 @@ +Source: lua-uri +Section: interpreters +Priority: optional +Maintainer: Victor Seva +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. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..735d62a --- /dev/null +++ b/debian/copyright @@ -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 +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 +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 + . + On Debian systems, the complete text of the GNU General + Public License version 2 can be found in "/usr/share/common-licenses/GPL-2". diff --git a/debian/lua-uri-dev.examples b/debian/lua-uri-dev.examples new file mode 100644 index 0000000..62897a2 --- /dev/null +++ b/debian/lua-uri-dev.examples @@ -0,0 +1,3 @@ +test +lunit.lua +uri-test.lua diff --git a/debian/lua-uri.manpages b/debian/lua-uri.manpages new file mode 100644 index 0000000..116e48e --- /dev/null +++ b/debian/lua-uri.manpages @@ -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 diff --git a/debian/lua5.1.dh-lua.conf b/debian/lua5.1.dh-lua.conf new file mode 100644 index 0000000..b210b8c --- /dev/null +++ b/debian/lua5.1.dh-lua.conf @@ -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 diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..379c3e6 --- /dev/null +++ b/debian/rules @@ -0,0 +1,8 @@ +#!/usr/bin/make -f + +%: + dh $@ --buildsystem=lua --with lua + +override_dh_auto_build: + ${MAKE} all + dh_auto_build \ No newline at end of file diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt)