parent
2c9b8a671d
commit
23c1364fad
@ -0,0 +1,5 @@
|
||||
lua-lemock (0.6-1) UNRELEASED; urgency=low
|
||||
|
||||
* Initial release. (Closes: #703166)
|
||||
|
||||
-- Victor Seva <linuxmaniac@torreviejawireless.org> Thu, 07 Mar 2013 20:18:14 +0100
|
||||
@ -0,0 +1 @@
|
||||
8
|
||||
@ -0,0 +1,37 @@
|
||||
Source: lua-lemock
|
||||
Section: interpreters
|
||||
Priority: optional
|
||||
Maintainer: Victor Seva <linuxmaniac@torreviejawireless.org>
|
||||
Build-Depends: debhelper (>= 8), dh-lua (>= 16)
|
||||
Standards-Version: 3.9.3
|
||||
Vcs-Git: git://git.debian.org/git/pkg-lua/lua-lemock.git
|
||||
Vcs-Browser: http://git.debian.org/?p=pkg-lua/lua-lemock.git
|
||||
Homepage: http://lemock.luaforge.net/README.html
|
||||
|
||||
Package: lua-lemock
|
||||
Architecture: any
|
||||
Multi-Arch: same
|
||||
Pre-Depends: multiarch-support
|
||||
Depends: ${shlibs:Depends}, ${misc:Depends}
|
||||
Provides: ${lua:Provides}
|
||||
Suggests: lua-unit
|
||||
XB-Lua-Versions: ${lua:Versions}
|
||||
Description: LeMock (Lua Easy Mock) for unit test
|
||||
LeMock is a mock creation module intended for use together
|
||||
with a unit test framework such as lunit or lunity. It is inspired by
|
||||
EasyMock (for Java), and strives to be easy to use.
|
||||
|
||||
Package: lua-lemock-dev
|
||||
Section: libdevel
|
||||
Architecture: any
|
||||
Multi-Arch: same
|
||||
Pre-Depends: multiarch-support
|
||||
Depends: lua-unit (= ${binary:Version}), ${misc:Depends}
|
||||
Provides: ${lua:Provides}
|
||||
XB-Lua-Versions: ${lua:Versions}
|
||||
Description: LeMock (Lua Easy Mock) for unit test
|
||||
LeMock is a mock creation module intended for use together
|
||||
with a unit test framework such as lunit or lunity. It is inspired by
|
||||
EasyMock (for Java), and strives to be easy to use.
|
||||
.
|
||||
This package contains docs and test files.
|
||||
@ -0,0 +1,46 @@
|
||||
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||
Upstream-Name: lemock
|
||||
Upstream-Contact: Tommy Petterson <ptp@lysator.liu.se>
|
||||
Source: https://github.com/LuaDist/lemock/
|
||||
|
||||
File: *
|
||||
Copyright: 2009 Tommy Petterson <ptp@lysator.liu.se>
|
||||
License: MIT
|
||||
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.0+
|
||||
|
||||
License: GPL-2.0+
|
||||
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".
|
||||
@ -0,0 +1,8 @@
|
||||
LUA_VERSION=5.1
|
||||
PKG_NAME=lemock
|
||||
|
||||
LUA_HEADER=
|
||||
LUA_SOURCES=build/lemock.lua
|
||||
LUA_SOURCES_MANGLER=
|
||||
LUA_MODNAME=lemock
|
||||
LUA_TEST=
|
||||
@ -0,0 +1,2 @@
|
||||
build/htdocs/
|
||||
build/unit/
|
||||
@ -0,0 +1,3 @@
|
||||
README
|
||||
HISTORY
|
||||
|
||||
@ -0,0 +1,4 @@
|
||||
PKG_NAME=lemock
|
||||
|
||||
LUA_SOURCES=build/lemock.lua
|
||||
LUA_MODNAME=lemock
|
||||
@ -0,0 +1 @@
|
||||
lua5.1.dh-lua.conf
|
||||
@ -0,0 +1,4 @@
|
||||
#!/usr/bin/make -f
|
||||
|
||||
%:
|
||||
dh $@ --buildsystem=lua --with lua
|
||||
@ -0,0 +1 @@
|
||||
3.0 (quilt)
|
||||
@ -0,0 +1,3 @@
|
||||
version=3
|
||||
opts=uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha|b|a)\d*)$/$1~$2/,dversionmangle=s/\+(debian|dfsg|ds|deb)\d*$// \
|
||||
https://github.com/LuaDist/lemock/tags .*/v?(\d.*)\.(?:tgz|tbz2|txz|tar\.(?:gz|bz2|xz))
|
||||
Loading…
Reference in new issue