[Git][haskell-team/DHG_packages][master] hslua-marshalling: Initial release

Ilias Tsitsimpis (@iliastsi) gitlab at salsa.debian.org
Wed Aug 3 19:06:26 BST 2022



Ilias Tsitsimpis pushed to branch master at Debian Haskell Group / DHG_packages


Commits:
723978c2 by Ilias Tsitsimpis at 2022-08-03T21:03:01+03:00
hslua-marshalling: Initial release

- - - - -


7 changed files:

- + p/haskell-hslua-marshalling/debian/changelog
- + p/haskell-hslua-marshalling/debian/compat
- + p/haskell-hslua-marshalling/debian/control
- + p/haskell-hslua-marshalling/debian/copyright
- + p/haskell-hslua-marshalling/debian/rules
- + p/haskell-hslua-marshalling/debian/source/format
- + p/haskell-hslua-marshalling/debian/watch


Changes:

=====================================
p/haskell-hslua-marshalling/debian/changelog
=====================================
@@ -0,0 +1,5 @@
+haskell-hslua-marshalling (2.1.0-1) unstable; urgency=low
+
+  * Initial release
+
+ -- Ilias Tsitsimpis <iliastsi at debian.org>  Wed, 03 Aug 2022 20:55:22 +0300


=====================================
p/haskell-hslua-marshalling/debian/compat
=====================================
@@ -0,0 +1 @@
+10


=====================================
p/haskell-hslua-marshalling/debian/control
=====================================
@@ -0,0 +1,66 @@
+Source: haskell-hslua-marshalling
+Maintainer: Debian Haskell Group <pkg-haskell-maintainers at lists.alioth.debian.org>
+Uploaders: Ilias Tsitsimpis <iliastsi at debian.org>
+Priority: optional
+Section: haskell
+Rules-Requires-Root: no
+Build-Depends: debhelper (>= 10),
+ haskell-devscripts-minimal | haskell-devscripts (>= 0.13),
+ cdbs,
+ ghc,
+ ghc-prof,
+ libghc-hslua-core-dev (>= 2.0),
+ libghc-hslua-core-dev (<< 2.2),
+ libghc-hslua-core-prof,
+Build-Depends-Indep: ghc-doc,
+ libghc-hslua-core-doc,
+Standards-Version: 4.6.1
+Homepage: https://hslua.org/
+Vcs-Browser: https://salsa.debian.org/haskell-team/DHG_packages/tree/master/p/haskell-hslua-marshalling
+Vcs-Git: https://salsa.debian.org/haskell-team/DHG_packages.git
+X-Description: Marshalling of values between Haskell and Lua
+ This package provides functions to marshal values from Haskell to Lua, and
+ vice versa.
+ .
+ This package is part of HsLua, a Haskell framework built around the embeddable
+ scripting language.
+
+Package: libghc-hslua-marshalling-dev
+Architecture: any
+Depends: ${haskell:Depends},
+ ${misc:Depends},
+ ${shlibs:Depends},
+Recommends: ${haskell:Recommends},
+Suggests: ${haskell:Suggests},
+Conflicts: ${haskell:Conflicts},
+Provides: ${haskell:Provides},
+Description: ${haskell:ShortDescription}${haskell:ShortBlurb}
+ ${haskell:LongDescription}
+ .
+ ${haskell:Blurb}
+
+Package: libghc-hslua-marshalling-prof
+Architecture: any
+Depends: ${haskell:Depends},
+ ${misc:Depends},
+Recommends: ${haskell:Recommends},
+Suggests: ${haskell:Suggests},
+Conflicts: ${haskell:Conflicts},
+Provides: ${haskell:Provides},
+Description: ${haskell:ShortDescription}${haskell:ShortBlurb}
+ ${haskell:LongDescription}
+ .
+ ${haskell:Blurb}
+
+Package: libghc-hslua-marshalling-doc
+Architecture: all
+Section: doc
+Depends: ${haskell:Depends},
+ ${misc:Depends},
+Recommends: ${haskell:Recommends},
+Suggests: ${haskell:Suggests},
+Conflicts: ${haskell:Conflicts},
+Description: ${haskell:ShortDescription}${haskell:ShortBlurb}
+ ${haskell:LongDescription}
+ .
+ ${haskell:Blurb}


=====================================
p/haskell-hslua-marshalling/debian/copyright
=====================================
@@ -0,0 +1,41 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: hslua-marshalling
+Upstream-Contact: albert+hslua at zeitkraut.de
+Source: https://hackage.haskell.org/package/hslua-marshalling
+
+Files: *
+Copyright:
+ © 1994-2020 Lua.org, PUC-Rio.
+ © 2007-2012 Gracjan Polak
+ © 2012-2016 Ömer Sinan Ağacan
+ © 2016-2022 Albert Krewinkel
+License: Expat
+
+Files: debian/*
+Copyright: held by the contributors mentioned in debian/changelog
+License: Expat
+
+License: Expat
+ Copyright © 1994-2020 Lua.org, PUC-Rio.
+ Copyright © 2007-2012 Gracjan Polak
+ Copyright © 2012-2015 Ömer Sinan Ağacan
+ Copyright © 2016-2022 Albert Krewinkel
+ .
+ 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.


=====================================
p/haskell-hslua-marshalling/debian/rules
=====================================
@@ -0,0 +1,6 @@
+#!/usr/bin/make -f
+
+DEB_ENABLE_TESTS = no # Missing tasty-hslua package
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/hlibrary.mk


=====================================
p/haskell-hslua-marshalling/debian/source/format
=====================================
@@ -0,0 +1 @@
+3.0 (quilt)


=====================================
p/haskell-hslua-marshalling/debian/watch
=====================================
@@ -0,0 +1,2 @@
+version=4
+https://hackage.haskell.org/package/hslua-marshalling/distro-monitor .*-([0-9\.]+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))



View it on GitLab: https://salsa.debian.org/haskell-team/DHG_packages/-/commit/723978c2b8d816037f35d0b7c909a50d027a42d1

-- 
View it on GitLab: https://salsa.debian.org/haskell-team/DHG_packages/-/commit/723978c2b8d816037f35d0b7c909a50d027a42d1
You're receiving this email because of your account on salsa.debian.org.


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-haskell-commits/attachments/20220803/ce3b2db2/attachment-0001.htm>


More information about the Pkg-haskell-commits mailing list