[Pkg-haskell-commits] darcs: haskell-hslua: Initial Check-In
Clint Adams
clint at debian.org
Sat Nov 9 20:13:19 UTC 2013
Sat Nov 9 20:12:41 UTC 2013 Clint Adams <clint at debian.org>
* Initial Check-In
A ./changelog
A ./compat
A ./control
A ./copyright
A ./patches/
A ./patches/series
A ./patches/system-lua.diff
A ./rules
A ./source/
A ./source/format
A ./watch
Sat Nov 9 20:12:41 UTC 2013 Clint Adams <clint at debian.org>
* Initial Check-In
diff -rN -u old-haskell-hslua/changelog new-haskell-hslua/changelog
--- old-haskell-hslua/changelog 1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-hslua/changelog 2013-11-09 20:13:19.483047881 +0000
@@ -0,0 +1,5 @@
+haskell-hslua (0.3.8-1) unstable; urgency=low
+
+ * Initial release.
+
+ -- Clint Adams <clint at debian.org> Sat, 09 Nov 2013 14:54:33 -0500
diff -rN -u old-haskell-hslua/compat new-haskell-hslua/compat
--- old-haskell-hslua/compat 1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-hslua/compat 2013-11-09 20:13:19.483047881 +0000
@@ -0,0 +1 @@
+9
diff -rN -u old-haskell-hslua/control new-haskell-hslua/control
--- old-haskell-hslua/control 1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-hslua/control 2013-11-09 20:13:19.483047881 +0000
@@ -0,0 +1,60 @@
+Source: haskell-hslua
+Section: haskell
+Priority: extra
+Maintainer: Debian Haskell Group <pkg-haskell-maintainers at lists.alioth.debian.org>
+Uploaders: Clint Adams <clint at debian.org>
+Build-Depends: debhelper (>= 9)
+ , cdbs
+ , haskell-devscripts (>= 0.8.15)
+ , ghc
+ , ghc-prof
+ , libghc-mtl-dev (>= 2.1)
+ , libghc-mtl-prof
+ , pkg-config
+ , liblua5.1-0-dev
+Build-Depends-Indep: ghc-doc
+ , libghc-mtl-doc
+Standards-Version: 3.9.5
+Homepage: http://hackage.haskell.org/package/hslua
+Vcs-Darcs: http://darcs.debian.org/pkg-haskell/haskell-hslua
+Vcs-Browser: http://darcs.debian.org/cgi-bin/darcsweb.cgi?r=pkg-haskell/haskell-hslua
+X-Description: Lua language interpreter embedding in Haskell
+ The Scripting.Lua module is a wrapper of Lua language interpreter as
+ described in www.lua.org.
+
+Package: libghc-hslua-dev
+Architecture: any
+Depends: ${haskell:Depends}
+ , ${shlibs:Depends}
+ , ${misc:Depends}
+ , liblua5.1-0-dev
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Provides: ${haskell:Provides}
+Description: ${haskell:ShortDescription}${haskell:ShortBlurb}
+ ${haskell:LongDescription}
+ .
+ ${haskell:Blurb}
+
+Package: libghc-hslua-prof
+Architecture: any
+Depends: ${haskell:Depends}
+ , ${misc:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Provides: ${haskell:Provides}
+Description: ${haskell:ShortDescription}${haskell:ShortBlurb}
+ ${haskell:LongDescription}
+ .
+ ${haskell:Blurb}
+
+Package: libghc-hslua-doc
+Section: doc
+Architecture: all
+Depends: ${misc:Depends}, ${haskell:Depends}
+Recommends: ${haskell:Recommends}
+Suggests: ${haskell:Suggests}
+Description: ${haskell:ShortDescription}${haskell:ShortBlurb}
+ ${haskell:LongDescription}
+ .
+ ${haskell:Blurb}
diff -rN -u old-haskell-hslua/copyright new-haskell-hslua/copyright
--- old-haskell-hslua/copyright 1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-hslua/copyright 2013-11-09 20:13:19.483047881 +0000
@@ -0,0 +1,43 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: hslua
+Upstream-Contact: Ãmer Sinan AÄacan <omeragacan at gmail.com>
+Source: http://hackage.haskell.org/package/hslua
+
+Files: *
+Copyright: 2007-2012 Gracjan Polak
+License: Expat
+
+Files: src/*
+Copyright: 1994-2008 Lua.org, PUC-Rio
+License: Expat
+
+Files: src/Scripting/Lua/ConfigFile.hs
+Copyright: 2011, 2013 Benjamin Geer
+License: Expat
+
+Files: src/Scripting/Lua.hs
+Copyright: 2007 Gracjan Polak 2007
+License: Expat
+
+Files: debian/*
+Copyright: 2013 Clint Adams
+License: 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 -rN -u old-haskell-hslua/patches/series new-haskell-hslua/patches/series
--- old-haskell-hslua/patches/series 1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-hslua/patches/series 2013-11-09 20:13:19.487041058 +0000
@@ -0,0 +1 @@
+system-lua.diff
diff -rN -u old-haskell-hslua/patches/system-lua.diff new-haskell-hslua/patches/system-lua.diff
--- old-haskell-hslua/patches/system-lua.diff 1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-hslua/patches/system-lua.diff 2013-11-09 20:13:19.487041058 +0000
@@ -0,0 +1,19 @@
+--- a/hslua.cabal
++++ b/hslua.cabal
+@@ -23,14 +23,14 @@
+
+ flag system-lua
+ description: Use the system-wide lua instead of the bundled copy
+- default: False
++ default: True
+
+ Library
+ Build-depends: base==4.*, mtl >= 2.1
+ Exposed-modules: Scripting.Lua, Scripting.Lua.ConfigFile
+ Hs-source-dirs: src
+ if flag(system-lua)
+- Pkgconfig-depends: lua
++ Pkgconfig-depends: lua5.1
+ C-sources: cbits/ntrljmp.c
+ Include-dirs: cbits
+ else
diff -rN -u old-haskell-hslua/rules new-haskell-hslua/rules
--- old-haskell-hslua/rules 1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-hslua/rules 2013-11-09 20:13:19.491046868 +0000
@@ -0,0 +1,6 @@
+#!/usr/bin/make -f
+
+# DEB_ENABLE_TESTS = yes
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/hlibrary.mk
diff -rN -u old-haskell-hslua/source/format new-haskell-hslua/source/format
--- old-haskell-hslua/source/format 1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-hslua/source/format 2013-11-09 20:13:19.491046868 +0000
@@ -0,0 +1 @@
+3.0 (quilt)
diff -rN -u old-haskell-hslua/watch new-haskell-hslua/watch
--- old-haskell-hslua/watch 1970-01-01 00:00:00.000000000 +0000
+++ new-haskell-hslua/watch 2013-11-09 20:13:19.491046868 +0000
@@ -0,0 +1,2 @@
+version=3
+http://hackage.haskell.org/package/hslua/distro-monitor .*-([0-9\.]+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))
More information about the Pkg-haskell-commits
mailing list