[Git][haskell-team/DHG_packages][master] nettle: Upgrading from 0.3.0 to 0.3.1.1
Clint Adams (@clint)
gitlab at salsa.debian.org
Thu Oct 3 14:15:07 BST 2024
Clint Adams pushed to branch master at Debian Haskell Group / DHG_packages
Commits:
c7ddaa17 by Clint Adams at 2024-10-03T09:14:54-04:00
nettle: Upgrading from 0.3.0 to 0.3.1.1
- - - - -
4 changed files:
- p/haskell-nettle/debian/changelog
- − p/haskell-nettle/debian/patches/fix-tests
- − p/haskell-nettle/debian/patches/newer-deps
- − p/haskell-nettle/debian/patches/series
Changes:
=====================================
p/haskell-nettle/debian/changelog
=====================================
@@ -1,8 +1,12 @@
-haskell-nettle (0.3.0-7) UNRELEASED; urgency=medium
+haskell-nettle (0.3.1.1-1) unstable; urgency=medium
+ [ Ilias Tsitsimpis ]
* Declare compliance with Debian policy 4.7.0
- -- Ilias Tsitsimpis <iliastsi at debian.org> Wed, 11 Sep 2024 15:17:56 +0300
+ [ Clint Adams ]
+ * New upstream release
+
+ -- Clint Adams <clint at debian.org> Thu, 03 Oct 2024 09:12:18 -0400
haskell-nettle (0.3.0-6) unstable; urgency=medium
=====================================
p/haskell-nettle/debian/patches/fix-tests deleted
=====================================
@@ -1,53 +0,0 @@
-Index: b/src/Tests/HexUtils.hs
-===================================================================
---- a/src/Tests/HexUtils.hs
-+++ b/src/Tests/HexUtils.hs
-@@ -19,7 +19,7 @@ import Data.Word (Word8)
- import qualified Data.ByteString as B
- import qualified Data.Array.IArray as A
-
--readHex' :: Monad m => String -> m [Word8]
-+readHex' :: MonadFail m => String -> m [Word8]
- readHex' [] = return []
- readHex' (' ':xs) = readHex' xs
- readHex' (a:' ':xs) = readHex' $ a:xs
-Index: b/src/Tests/VectorsHMAC.hs
-===================================================================
---- a/src/Tests/VectorsHMAC.hs
-+++ b/src/Tests/VectorsHMAC.hs
-@@ -171,5 +171,5 @@ hmacTestVectors =
-
- findHmacTestVectors :: Monad m => String -> m [(B.ByteString, B.ByteString, String)]
- findHmacTestVectors key = case filter ((key == ) . fst) hmacTestVectors of
-- [] -> fail $ "unknown HMAC: " ++ key
-+ [] -> error $ "unknown HMAC: " ++ key
- l -> return $ concatMap snd l
-Index: b/src/Tests/Ciphers.hs
-===================================================================
---- a/src/Tests/Ciphers.hs
-+++ b/src/Tests/Ciphers.hs
-@@ -23,11 +23,11 @@ genByteString :: Int -> Gen B.ByteString
- genByteString len = liftM B.pack $ vectorOf len (choose (0,255))
-
- runEither :: (Monad m, Show e) => Either e x -> m x
--runEither (Left e) = fail $ show e
-+runEither (Left e) = error $ show e
- runEither (Right x) = return x
-
- runMaybe :: (Monad m) => Maybe x -> m x
--runMaybe Nothing = fail "got nothing"
-+runMaybe Nothing = error "got nothing"
- runMaybe (Just x) = return x
-
- genKey' :: KeySizeSpecifier -> Gen B.ByteString
-Index: b/src/Tests/VectorsHash.hs
-===================================================================
---- a/src/Tests/VectorsHash.hs
-+++ b/src/Tests/VectorsHash.hs
-@@ -1199,5 +1199,5 @@ hashTestVectors =
-
- findHashTestVectors :: Monad m => String -> m [(B.ByteString, String)]
- findHashTestVectors key = case filter ((key == ) . fst) hashTestVectors of
-- [] -> fail $ "unknown Hash: " ++ key
-+ [] -> error $ "unknown Hash: " ++ key
- l -> return $ concatMap snd l
=====================================
p/haskell-nettle/debian/patches/newer-deps deleted
=====================================
@@ -1,58 +0,0 @@
-Index: b/nettle.cabal
-===================================================================
---- a/nettle.cabal
-+++ b/nettle.cabal
-@@ -1,5 +1,6 @@
- Name: nettle
- Version: 0.3.0
-+x-revision: 2
- Synopsis: safe nettle binding
- Description:
- safe binding for the nettle (<http://www.lysator.liu.se/~nisse/nettle/nettle.html>) library.
-@@ -26,8 +27,8 @@ Flag UsePkgConfig
-
- Library
- hs-source-dirs: src
-- Build-Depends: base >= 4 && < 5
-- , bytestring >= 0.10.8 && < 0.11
-+ Build-Depends: base >= 4.4 && < 5
-+ , bytestring >= 0.10.8 && < 0.12
- , byteable >= 0.1.1 && < 0.2
- , tagged >= 0.8.5 && < 0.9
- , securemem >= 0.1.9 && < 0.2
-@@ -57,7 +58,7 @@ Test-Suite test-ciphers
- hs-source-dirs: src/Tests
- Main-Is: Ciphers.hs
- Build-depends: base >= 4 && < 5
-- , bytestring >= 0.10.8 && < 0.11
-+ , bytestring >= 0.10.8 && < 0.12
- , QuickCheck >= 2 && < 3
- , array >= 0.5.1 && < 0.6
- , test-framework >= 0.3.3 && > 0.4
-@@ -72,7 +73,7 @@ Test-Suite test-hashes
- hs-source-dirs: src/Tests
- Main-Is: Hash.hs
- Build-depends: base >= 4 && < 5
-- , bytestring >= 0.10.8 && < 0.11
-+ , bytestring >= 0.10.8 && < 0.12
- , tagged >= 0.8.5 && < 0.9
- , array >= 0.5.1 && < 0.6
- , test-framework >= 0.3.3 && > 0.4
-@@ -86,7 +87,7 @@ Test-Suite test-hmac
- hs-source-dirs: src/Tests
- Main-Is: HMAC.hs
- Build-depends: base >= 4 && < 5
-- , bytestring >= 0.10.8 && < 0.11
-+ , bytestring >= 0.10.8 && < 0.12
- , tagged >= 0.8.5 && < 0.9
- , array >= 0.5.1 && < 0.6
- , test-framework >= 0.3.3 && > 0.4
-@@ -100,7 +101,7 @@ Test-Suite test-umac
- hs-source-dirs: src/Tests
- Main-Is: UMAC.hs
- Build-depends: base >= 4 && < 5
-- , bytestring >= 0.10.8 && < 0.11
-+ , bytestring >= 0.10.8 && < 0.12
- , tagged >= 0.8.5 && < 0.9
- , array >= 0.5.1 && < 0.6
- , test-framework >= 0.3.3 && > 0.4
=====================================
p/haskell-nettle/debian/patches/series deleted
=====================================
@@ -1,2 +0,0 @@
-newer-deps
-fix-tests
View it on GitLab: https://salsa.debian.org/haskell-team/DHG_packages/-/commit/c7ddaa1770b72a03dd13fcdbf579e02bf9927c38
--
View it on GitLab: https://salsa.debian.org/haskell-team/DHG_packages/-/commit/c7ddaa1770b72a03dd13fcdbf579e02bf9927c38
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/20241003/8568bf8a/attachment-0001.htm>
More information about the Pkg-haskell-commits
mailing list