[Git][haskell-team/DHG_packages][master] Add happy-lib

Clint Adams (@clint) gitlab at salsa.debian.org
Mon Jan 5 03:57:43 GMT 2026



Clint Adams pushed to branch master at Debian Haskell Group / DHG_packages


Commits:
410f8ea5 by Clint Adams at 2026-01-04T22:57:24-05:00
Add happy-lib

- - - - -


7 changed files:

- + p/haskell-happy-lib/debian/changelog
- + p/haskell-happy-lib/debian/control
- + p/haskell-happy-lib/debian/copyright
- + p/haskell-happy-lib/debian/haskell-happy-lib-data.install
- + p/haskell-happy-lib/debian/rules
- + p/haskell-happy-lib/debian/source/format
- + p/haskell-happy-lib/debian/watch


Changes:

=====================================
p/haskell-happy-lib/debian/changelog
=====================================
@@ -0,0 +1,5 @@
+haskell-happy-lib (2.1.2-1) unstable; urgency=low
+
+  * Initial release
+
+ -- Clint Adams <clint at debian.org>  Sun, 04 Jan 2026 21:22:01 -0500


=====================================
p/haskell-happy-lib/debian/control
=====================================
@@ -0,0 +1,92 @@
+Source: haskell-happy-lib
+Maintainer: Debian Haskell Group <pkg-haskell-maintainers at lists.alioth.debian.org>
+Uploaders: Clint Adams <clint at debian.org>
+Priority: optional
+Section: haskell
+Rules-Requires-Root: no
+Build-Depends: debhelper-compat (= 13),
+ haskell-devscripts-minimal | haskell-devscripts (>= 0.16.42),
+ dh-sequence-haskell,
+ ghc,
+ ghc-prof,
+Build-Depends-Indep: ghc-doc,
+Standards-Version: 4.7.3
+Homepage: https://www.haskell.org/happy/
+Description: parser generator for Haskell
+ Happy is a parser generator for Haskell.  Given a grammar
+ specification in BNF, Happy generates Haskell code to parse the
+ grammar.  Happy works in a similar way to the yacc tool for C.
+ .
+ This library provides the following functionality:
+ .
+   * Data type definitions for the Grammar AST type, capturing
+     the information in .y-files (Happy.Grammar)
+ .
+   * A parser for happy grammar files (.y) to produce a Grammar
+     (Happy.Frontend.*)
+ .
+   * Implementations of the text book algorithms that compute the
+     LR action and goto tables for the given 'Grammar'
+     (Happy.Tabular.*)
+ .
+   * An LALR code generator to produce table-driven, deterministic
+     parsing code in Haskell (Happy.Backend.LALR.*)
+ .
+   * A (less maintained) GLR code generator to produce
+     table-driven, non-deterministic parsing code in Haskell,
+     where ambiguous parses produce multiple parse trees
+     (Happy.Backend.GLR.*)
+
+Package: libghc-happy-lib-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-happy-lib-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-happy-lib-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}
+
+Package: haskell-happy-lib-data
+Architecture: all
+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}


=====================================
p/haskell-happy-lib/debian/copyright
=====================================
@@ -0,0 +1,35 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: happy-lib
+Upstream-Contact: https://github.com/haskell/happy
+Source: https://hackage.haskell.org/package/happy-lib
+
+Files: *
+Copyright: Andy Gill, Simon Marlow
+License: BSD-2-clause
+
+Files: debian/*
+Copyright: held by the contributors mentioned in debian/changelog
+License: BSD-2-clause
+
+License: BSD-2-clause
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are met:
+ .
+ - Redistributions of source code must retain the above copyright notice,
+ this list of conditions and the following disclaimer.
+ .
+ - Redistributions in binary form must reproduce the above copyright notice,
+ this list of conditions and the following disclaimer in the documentation
+ and/or other materials provided with the distribution.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS "AS IS" AND ANY
+ EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE
+ LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
+ BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+ WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
+ OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
+ IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.


=====================================
p/haskell-happy-lib/debian/haskell-happy-lib-data.install
=====================================
@@ -0,0 +1,3 @@
+data/GLR_Base.hs usr/share/happy-lib/.
+data/GLR_Lib.hs usr/share/happy-lib/.
+data/HappyTemplate.hs usr/share/happy-lib/.


=====================================
p/haskell-happy-lib/debian/rules
=====================================
@@ -0,0 +1,4 @@
+#!/usr/bin/make -f
+
+%:
+	dh $@


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


=====================================
p/haskell-happy-lib/debian/watch
=====================================
@@ -0,0 +1,2 @@
+version=4
+https://hackage.haskell.org/package/happy-lib/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/410f8ea5e02e1a000c8cffc13d1291b52270cebc

-- 
View it on GitLab: https://salsa.debian.org/haskell-team/DHG_packages/-/commit/410f8ea5e02e1a000c8cffc13d1291b52270cebc
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/20260105/097cb8c1/attachment-0001.htm>


More information about the Pkg-haskell-commits mailing list