summaryrefslogtreecommitdiff
path: root/Data/DefaultContent/Libraries/luafun/debian
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2021-10-26 11:32:46 +0800
committerchai <chaifix@163.com>2021-10-26 11:32:46 +0800
commit0549b1e5a8a3132005e275d6026db8003cb067d2 (patch)
treef0d7751ec32ecf5c4d23997fa0ffd3450a5a755a /Data/DefaultContent/Libraries/luafun/debian
parent32345800737b668011a87328cd3dcce59ec2934c (diff)
*rename folder
Diffstat (limited to 'Data/DefaultContent/Libraries/luafun/debian')
-rw-r--r--Data/DefaultContent/Libraries/luafun/debian/.gitignore8
-rw-r--r--Data/DefaultContent/Libraries/luafun/debian/changelog5
-rw-r--r--Data/DefaultContent/Libraries/luafun/debian/compat1
-rw-r--r--Data/DefaultContent/Libraries/luafun/debian/control20
-rw-r--r--Data/DefaultContent/Libraries/luafun/debian/copyright31
-rw-r--r--Data/DefaultContent/Libraries/luafun/debian/lua-fun.docs1
-rw-r--r--Data/DefaultContent/Libraries/luafun/debian/lua5.1.dh-lua.conf4
-rw-r--r--Data/DefaultContent/Libraries/luafun/debian/lua5.2.dh-lua.conf1
-rw-r--r--Data/DefaultContent/Libraries/luafun/debian/lua5.3.dh-lua.conf1
-rw-r--r--Data/DefaultContent/Libraries/luafun/debian/patches/series0
-rw-r--r--Data/DefaultContent/Libraries/luafun/debian/rules12
-rw-r--r--Data/DefaultContent/Libraries/luafun/debian/source/format1
-rw-r--r--Data/DefaultContent/Libraries/luafun/debian/watch6
13 files changed, 91 insertions, 0 deletions
diff --git a/Data/DefaultContent/Libraries/luafun/debian/.gitignore b/Data/DefaultContent/Libraries/luafun/debian/.gitignore
new file mode 100644
index 0000000..aa3e6bf
--- /dev/null
+++ b/Data/DefaultContent/Libraries/luafun/debian/.gitignore
@@ -0,0 +1,8 @@
+lua-fun/
+tmp/
+trash
+files
+lua_versions
+*.install
+*.substvars
+*.log
diff --git a/Data/DefaultContent/Libraries/luafun/debian/changelog b/Data/DefaultContent/Libraries/luafun/debian/changelog
new file mode 100644
index 0000000..262c02d
--- /dev/null
+++ b/Data/DefaultContent/Libraries/luafun/debian/changelog
@@ -0,0 +1,5 @@
+lua-fun (0.1.3-1) unstable; urgency=medium
+
+ * Initial release. (Closes: #811482)
+
+ -- Roman Tsisyk <roman@tarantool.org> Mon, 18 Jan 2016 10:00:00 +0300
diff --git a/Data/DefaultContent/Libraries/luafun/debian/compat b/Data/DefaultContent/Libraries/luafun/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/Data/DefaultContent/Libraries/luafun/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/Data/DefaultContent/Libraries/luafun/debian/control b/Data/DefaultContent/Libraries/luafun/debian/control
new file mode 100644
index 0000000..f93b318
--- /dev/null
+++ b/Data/DefaultContent/Libraries/luafun/debian/control
@@ -0,0 +1,20 @@
+Source: lua-fun
+Section: interpreters
+Priority: optional
+Maintainer: Roman Tsisyk <roman@tarantool.org>
+Build-Depends: debhelper (>= 9), dh-lua (>= 19)
+Standards-Version: 3.9.6
+Homepage: https://github.com/luafun/luafun
+Vcs-Git: git://github.com/luafun/luafun.git
+Vcs-Browser: https://github.com/luafun/luafun
+
+Package: lua-fun
+Architecture: all
+Depends: ${misc:Depends}
+Provides: ${lua:Provides}
+XB-Lua-Versions: ${lua:Versions}
+Description: High-performance functional programming library for Lua
+ Lua Fun provides a set of more than 50 programming primitives typically
+ found in languages like Standard ML, Haskell, Erlang, JavaScript, Python and
+ even Lisp. High-order functions such as map, filter, reduce, zip, etc.,
+ make it easy to write simple and efficient functional code.
diff --git a/Data/DefaultContent/Libraries/luafun/debian/copyright b/Data/DefaultContent/Libraries/luafun/debian/copyright
new file mode 100644
index 0000000..34f24ad
--- /dev/null
+++ b/Data/DefaultContent/Libraries/luafun/debian/copyright
@@ -0,0 +1,31 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: luafun
+Upstream-Contact: Roman Tsisyk <roman@tsisyk.com>
+Source: https://github.com/luafun/luafun
+
+Files: *
+Copyright: 2013-2017 Roman Tsisyk <roman@tsisyk.com>
+Comment: In the Lua community this license is better known as "MIT".
+ Unfortunately other variants of this license are also known as "MIT".
+ To obtain a machine intepretable copyright file Debian prefers to name this
+ version of the MIT license using the non ambiguous term "Expat".
+License: Expat
+ 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.
diff --git a/Data/DefaultContent/Libraries/luafun/debian/lua-fun.docs b/Data/DefaultContent/Libraries/luafun/debian/lua-fun.docs
new file mode 100644
index 0000000..b43bf86
--- /dev/null
+++ b/Data/DefaultContent/Libraries/luafun/debian/lua-fun.docs
@@ -0,0 +1 @@
+README.md
diff --git a/Data/DefaultContent/Libraries/luafun/debian/lua5.1.dh-lua.conf b/Data/DefaultContent/Libraries/luafun/debian/lua5.1.dh-lua.conf
new file mode 100644
index 0000000..fa57bb6
--- /dev/null
+++ b/Data/DefaultContent/Libraries/luafun/debian/lua5.1.dh-lua.conf
@@ -0,0 +1,4 @@
+PKG_NAME=fun
+LUA_MODNAME=fun
+LUA_SOURCES=fun.lua
+LUA_TEST=tests/runtest tests/*.lua
diff --git a/Data/DefaultContent/Libraries/luafun/debian/lua5.2.dh-lua.conf b/Data/DefaultContent/Libraries/luafun/debian/lua5.2.dh-lua.conf
new file mode 100644
index 0000000..ba875b6
--- /dev/null
+++ b/Data/DefaultContent/Libraries/luafun/debian/lua5.2.dh-lua.conf
@@ -0,0 +1 @@
+lua5.1.dh-lua.conf \ No newline at end of file
diff --git a/Data/DefaultContent/Libraries/luafun/debian/lua5.3.dh-lua.conf b/Data/DefaultContent/Libraries/luafun/debian/lua5.3.dh-lua.conf
new file mode 100644
index 0000000..ba875b6
--- /dev/null
+++ b/Data/DefaultContent/Libraries/luafun/debian/lua5.3.dh-lua.conf
@@ -0,0 +1 @@
+lua5.1.dh-lua.conf \ No newline at end of file
diff --git a/Data/DefaultContent/Libraries/luafun/debian/patches/series b/Data/DefaultContent/Libraries/luafun/debian/patches/series
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/Data/DefaultContent/Libraries/luafun/debian/patches/series
diff --git a/Data/DefaultContent/Libraries/luafun/debian/rules b/Data/DefaultContent/Libraries/luafun/debian/rules
new file mode 100644
index 0000000..9e473ed
--- /dev/null
+++ b/Data/DefaultContent/Libraries/luafun/debian/rules
@@ -0,0 +1,12 @@
+#!/usr/bin/make -f
+
+VERSION := $(shell dpkg-parsechangelog|grep ^Version|awk '{print $$2}')
+UVERSION := $(shell echo $(VERSION)|sed 's/-[[:digit:]]\+$$//')
+
+%:
+ dh $@ --buildsystem=lua --with lua
+
+tarball: clean
+ tar --exclude=.git --exclude=debian --exclude rpm \
+ --transform='s,^\.,luafun-$(UVERSION),S' \
+ -czf ../luafun-$(UVERSION).orig.tar.gz .
diff --git a/Data/DefaultContent/Libraries/luafun/debian/source/format b/Data/DefaultContent/Libraries/luafun/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/Data/DefaultContent/Libraries/luafun/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/Data/DefaultContent/Libraries/luafun/debian/watch b/Data/DefaultContent/Libraries/luafun/debian/watch
new file mode 100644
index 0000000..40bc2ca
--- /dev/null
+++ b/Data/DefaultContent/Libraries/luafun/debian/watch
@@ -0,0 +1,6 @@
+# test this watch file using:
+# uscan --watchfile debian/watch --upstream-version 0.0.1 --package lua-fun
+# https://wiki.debian.org/debian/watch#GitHub
+version=3
+opts=filenamemangle=s/.+\/v?(\d\S*)\.tar\.gz/luafun-$1\.tar\.gz/ \
+ https://github.com/luafun/luafun/tags .*/v?(\d\S*)\.tar\.gz