[Git][haskell-team/DHG_packages][master] 2 commits: hOpenPGP: Upgrading from 2.7 to 2.7.1

Clint Adams gitlab at salsa.debian.org
Sun Jul 15 04:11:01 BST 2018


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


Commits:
608b4dff by Clint Adams at 2018-07-14T21:54:50-04:00
hOpenPGP: Upgrading from 2.7 to 2.7.1

- - - - -
03e52dd4 by Clint Adams at 2018-07-14T23:10:28-04:00
Add autopkgtest

- - - - -


5 changed files:

- p/haskell-hopenpgp/debian/changelog
- p/haskell-hopenpgp/debian/compat
- p/haskell-hopenpgp/debian/control
- + p/haskell-hopenpgp/debian/tests/compile
- + p/haskell-hopenpgp/debian/tests/control


Changes:

=====================================
p/haskell-hopenpgp/debian/changelog
=====================================
--- a/p/haskell-hopenpgp/debian/changelog
+++ b/p/haskell-hopenpgp/debian/changelog
@@ -1,3 +1,10 @@
+haskell-hopenpgp (2.7.1-1) unstable; urgency=medium
+
+  * New upstream version.
+  * Add autopkgtest.
+
+ -- Clint Adams <clint at debian.org>  Sat, 14 Jul 2018 21:53:17 -0400
+
 haskell-hopenpgp (2.7-1) unstable; urgency=medium
 
   * New upstream release


=====================================
p/haskell-hopenpgp/debian/compat
=====================================
--- a/p/haskell-hopenpgp/debian/compat
+++ b/p/haskell-hopenpgp/debian/compat
@@ -1 +1 @@
-9
+10


=====================================
p/haskell-hopenpgp/debian/control
=====================================
--- a/p/haskell-hopenpgp/debian/control
+++ b/p/haskell-hopenpgp/debian/control
@@ -7,7 +7,7 @@ Section: haskell
 Rules-Requires-Root: no
 Build-Depends:
  cdbs,
- debhelper (>= 9),
+ debhelper (>= 10),
  ghc (>= 8),
  ghc-prof,
  haskell-devscripts (>= 0.13),
@@ -79,7 +79,8 @@ Build-Depends:
  libghc-unordered-containers-prof,
  libghc-zlib-dev,
  libghc-zlib-prof,
- libghc-quickcheck2-dev,
+ libghc-quickcheck2-dev (>> 2.9),
+ libghc-quickcheck2-prof,
  libghc-conduit-dev (>= 1.3),
  libghc-conduit-extra-dev,
  libghc-network-dev (>= 2.6),
@@ -120,7 +121,7 @@ Build-Depends-Indep: ghc-doc,
  libghc-unliftio-core-doc,
  libghc-unordered-containers-doc,
  libghc-zlib-doc,
-Standards-Version: 4.1.4
+Standards-Version: 4.1.5
 Homepage: https://salsa.debian.org/clint/hOpenPGP
 Vcs-Browser: https://salsa.debian.org/haskell-team/DHG_packages/tree/master/p/haskell-hopenpgp
 Vcs-Git: https://salsa.debian.org/haskell-team/DHG_packages.git [p/haskell-hopenpgp]


=====================================
p/haskell-hopenpgp/debian/tests/compile
=====================================
--- /dev/null
+++ b/p/haskell-hopenpgp/debian/tests/compile
@@ -0,0 +1,31 @@
+#!/bin/sh
+
+set -e
+
+WORKDIR=$(mktemp -d)
+trap "rm -rf $WORKDIR" 0 INT QUIT ABRT PIPE TERM
+
+cat >${WORKDIR}/blah.hs <<EOF
+import Codec.Encryption.OpenPGP.Types
+
+main :: IO ()
+main = print (fromFVal AES256 == 9)
+EOF
+
+cd ${WORKDIR}
+
+ghc -o ${WORKDIR}/blah ${WORKDIR}/blah.hs
+echo "build: OK"
+
+truth=$(${WORKDIR}/blah)
+
+case "${truth}" in
+  (True)
+  echo "run: OK"
+  ;;
+  (*)
+  echo >&2 "unexpected result (${truth}): failure"
+  exit 1
+  ;;
+esac
+


=====================================
p/haskell-hopenpgp/debian/tests/control
=====================================
--- /dev/null
+++ b/p/haskell-hopenpgp/debian/tests/control
@@ -0,0 +1,2 @@
+Tests: compile
+Depends: @, ghc



View it on GitLab: https://salsa.debian.org/haskell-team/DHG_packages/compare/ba1b3e7d7f13e25d4198325440a08623c5bd0fc7...03e52dd448dae79ef7fd46d8d878d46bcc69116d

-- 
View it on GitLab: https://salsa.debian.org/haskell-team/DHG_packages/compare/ba1b3e7d7f13e25d4198325440a08623c5bd0fc7...03e52dd448dae79ef7fd46d8d878d46bcc69116d
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/20180715/a6747bb1/attachment-0001.html>


More information about the Pkg-haskell-commits mailing list