[Git][haskell-team/DHG_packages][master] Initial packaging of ram
Clint Adams (@clint)
gitlab at salsa.debian.org
Sat Jul 11 20:55:08 BST 2026
Clint Adams pushed to branch master at Debian Haskell Group / DHG_packages
Commits:
dd42af38 by Clint Adams at 2026-07-11T15:51:38-04:00
Initial packaging of ram
- - - - -
6 changed files:
- + p/haskell-ram/debian/changelog
- + p/haskell-ram/debian/control
- + p/haskell-ram/debian/copyright
- + p/haskell-ram/debian/rules
- + p/haskell-ram/debian/source/format
- + p/haskell-ram/debian/watch
Changes:
=====================================
p/haskell-ram/debian/changelog
=====================================
@@ -0,0 +1,5 @@
+haskell-ram (0.19.0-1) unstable; urgency=low
+
+ * Initial version.
+
+ -- Clint Adams <clint at debian.org> Sat, 11 Jul 2026 15:41:17 -0400
=====================================
p/haskell-ram/debian/control
=====================================
@@ -0,0 +1,67 @@
+Source: haskell-ram
+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.4
+Homepage: https://github.com/jappeace/ram
+Vcs-Browser: https://salsa.debian.org/haskell-team/DHG_packages/tree/master/p/haskell-ram
+Vcs-Git: https://salsa.debian.org/haskell-team/DHG_packages.git [p/haskell-ram]
+Description: memory and related abstraction stuff
+ This is a fork of the memory library, which provides chunk of memory,
+ polymorphic byte array management and manipulation.
+ .
+ - A polymorphic byte array abstraction and function
+ similar to strict ByteString.
+ - Different type of byte array abstraction.
+ - Raw memory IO operations (memory set, memory copy, ..)
+ - Aliasing with endianness support.
+ - Encoding : Base16, Base32, Base64.
+ - Hashing : FNV, SipHash
+
+Package: libghc-ram-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-ram-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-ram-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-ram/debian/copyright
=====================================
@@ -0,0 +1,43 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: ram
+Upstream-Contact: hi at jappie.me
+Source: https://hackage.haskell.org/package/ram
+
+Files: *
+Copyright: 2014-2018 Vincent Hanquez
+License: BSD-3-clause
+
+Files: Data/ByteArray/Pack/Internal.hs
+ Data/ByteArray/Pack.hs
+Copyright: 2014-2018 Nicolas DI PRIMA
+License: BSD-3-clause
+
+Files: debian/*
+Copyright: held by the contributors mentioned in debian/changelog
+License: BSD-3-clause
+
+License: BSD-3-clause
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+ .
+ 1. Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ 2. 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.
+ 3. Neither the name of the author nor the names of his contributors
+ may be used to endorse or promote products derived from this software
+ without specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS 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 AUTHORS OR CONTRIBUTORS 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-ram/debian/rules
=====================================
@@ -0,0 +1,4 @@
+#!/usr/bin/make -f
+
+%:
+ dh $@
=====================================
p/haskell-ram/debian/source/format
=====================================
@@ -0,0 +1 @@
+3.0 (quilt)
=====================================
p/haskell-ram/debian/watch
=====================================
@@ -0,0 +1,2 @@
+version=4
+https://hackage.haskell.org/package/ram/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/dd42af38ec69c73c5261c94d62ec42ff9a5b233d
--
View it on GitLab: https://salsa.debian.org/haskell-team/DHG_packages/-/commit/dd42af38ec69c73c5261c94d62ec42ff9a5b233d
You're receiving this email because of your account on salsa.debian.org. Manage all notifications: https://salsa.debian.org/-/profile/notifications | Help: https://salsa.debian.org/help
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-haskell-commits/attachments/20260711/6ef61550/attachment-0001.htm>
More information about the Pkg-haskell-commits
mailing list