sm-commit AT lists.ibiblio.org
Subject: Source Mage code commit list
List archive
[[SM-Commit] ] GIT changes to master grimoire by Ismael Luceno (000953932309995d5d38e910aee6ed2a33da8410)
- From: Ismael Luceno <scm AT sourcemage.org>
- To: sm-commit AT lists.ibiblio.org, sm-commit AT lists.sourcemage.org
- Subject: [[SM-Commit] ] GIT changes to master grimoire by Ismael Luceno (000953932309995d5d38e910aee6ed2a33da8410)
- Date: Tue, 18 Aug 2026 05:27:59 +0000
GIT changes to master grimoire by Ismael Luceno <ismael AT sourcemage.org>:
ChangeLog |
1
haskell/haskell-async/0001-relax-versions-of-dependencies.patch |
33 ----------
haskell/haskell-async/DEPENDS |
3
haskell/haskell-async/DETAILS |
8 +-
haskell/haskell-async/HISTORY |
4 +
haskell/haskell-async/PRE_BUILD |
5 -
haskell/haskell-atomic-counter/DEPENDS |
1
haskell/haskell-atomic-counter/DETAILS |
19 +++++
haskell/haskell-atomic-counter/HISTORY |
3
haskell/haskell-base16-bytestring/DEPENDS |
2
haskell/haskell-base16-bytestring/DETAILS |
7 +-
haskell/haskell-base16-bytestring/HISTORY |
3
haskell/haskell-base16-bytestring/PRE_BUILD |
5 +
haskell/haskell-base64-bytestring/DETAILS |
9 +-
haskell/haskell-base64-bytestring/HISTORY |
3
haskell/haskell-base64-bytestring/PRE_BUILD |
5 +
haskell/haskell-echo/0001-fix-dependencies.patch |
25 -------
haskell/haskell-echo/DEPENDS |
3
haskell/haskell-echo/DETAILS |
4 -
haskell/haskell-echo/HISTORY |
4 +
haskell/haskell-echo/PRE_BUILD |
5 -
haskell/haskell-unordered-containers/0001-relax-hashable-version.patch |
25 -------
haskell/haskell-unordered-containers/DEPENDS |
3
haskell/haskell-unordered-containers/DETAILS |
7 +-
haskell/haskell-unordered-containers/HISTORY |
4 +
haskell/haskell-unordered-containers/PRE_BUILD |
5 -
26 files changed, 81 insertions(+), 115 deletions(-)
New commits:
commit 000953932309995d5d38e910aee6ed2a33da8410
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>
haskell-base64-bytestring 1.2.1.0
commit 99929726dfcdadc4be64d33cdbc7d36f45ade4db
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>
haskell-base16-bytestring 1.0.2.0
commit 3d63b8fe03b18f76f098d2ca3f20f679909000e6
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>
haskell-atomic-counter: new spell, Mutable counters that can be modified
with atomic operatinos
commit a1cba79369054ade00861504118f487a4a33746a
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>
haskell-async 2.2.6
commit 5eb3ecd5a5e38c46888cdc8aa6f3afdfec5767e1
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>
haskell-unordered-containers 0.2.21
commit ca2bd683cb216fbcd2474787b2984f504e9048d2
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>
haskell-echo 0.1.4
diff --git a/ChangeLog b/ChangeLog
index 1a568871..3d9bc96 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,7 @@
* haskell/FUNCTIONS: added handling for sdists not shipping a setup
file
* haskell/haskell-process: new spell, Process libraries
* haskell/haskell-splitmix: new spell, Fast Splittable PRNG
+ * haskell/haskell-atomic-counter: new spell, Mutable counters that
can be modified with atomic operatinos
2026-08-16 Treeve Jelbert <treeve AT sourcemage.org>
* poetry_core: added
diff --git a/haskell/haskell-async/0001-relax-versions-of-dependencies.patch
b/haskell/haskell-async/0001-relax-versions-of-dependencies.patch
deleted file mode 100644
index 7c35272..0000000
--- a/haskell/haskell-async/0001-relax-versions-of-dependencies.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-From 0d0f0c22a6ce79ac25a30b22a96c67d47414e6a4 Mon Sep 17 00:00:00 2001
-From: Florian Franzmann <bwlf AT bandrate.org>
-Date: Thu, 1 Nov 2018 17:33:19 +0100
-Subject: [PATCH] relax versions of dependencies
-
----
- async.cabal | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/async.cabal b/async.cabal
-index 7f700c5..819fbf8 100644
---- a/async.cabal
-+++ b/async.cabal
-@@ -50,14 +50,14 @@ library
- if impl(ghc>=7.1)
- other-extensions: Trustworthy
- exposed-modules: Control.Concurrent.Async
-- build-depends: base >= 4.3 && < 4.12, hashable >= 1.1.1.0 && <
1.3, stm >= 2.2 && < 2.5
-+ build-depends: base >= 4.3, hashable >= 1.1.1.0 && < 1.3, stm >=
2.2
-
- test-suite test-async
- default-language: Haskell2010
- type: exitcode-stdio-1.0
- hs-source-dirs: test
- main-is: test-async.hs
-- build-depends: base >= 4.3 && < 4.12,
-+ build-depends: base >= 4.3,
- async,
- stm,
- test-framework,
---
-2.19.1
-
diff --git a/haskell/haskell-async/DEPENDS b/haskell/haskell-async/DEPENDS
index 9a29680..fdd809b 100755
--- a/haskell/haskell-async/DEPENDS
+++ b/haskell/haskell-async/DEPENDS
@@ -1,2 +1,3 @@
depends ghc &&
-depends haskell-stm
+depends haskell-hashable &&
+depends haskell-unordered-containers
diff --git a/haskell/haskell-async/DETAILS b/haskell/haskell-async/DETAILS
index 7a0b36e..094c802 100755
--- a/haskell/haskell-async/DETAILS
+++ b/haskell/haskell-async/DETAILS
@@ -1,10 +1,10 @@
SPELL=haskell-async
- VERSION=2.2.1
+ VERSION=2.2.6
SOURCE="async-${VERSION}.tar.gz"
-
SOURCE_URL[0]=http://hackage.haskell.org/package/async-${VERSION}/${SOURCE}
-
SOURCE_HASH=sha512:65daa880d2c10fb235ddd431f7b1d80b2c3cc78c8dfba7deb7f1f60a6b6495f159daffa560ad84908687b083309c300765b4ba45a6f787b24d364f3c0e070749
+
SOURCE_URL[0]=https://hackage.haskell.org/package/async-${VERSION}/${SOURCE}
+
SOURCE_HASH=sha512:eecbb9b44ae2a04716d0e6029637eb01b58c58d29e2e5daefc148f634d202f14c2cb06e68d0e0a4a9b9382bf49be57dcb424e37cd783ee879baa604848bf1ce1
SOURCE_DIRECTORY="${BUILD_DIRECTORY}/async-${VERSION}"
- WEB_SITE="http://hackage.haskell.org/package/async"
+ WEB_SITE="https://hackage.haskell.org/package/async"
LICENSE[0]=BSD
ENTERED=20131025
SHORT="a higher-level interface over threads"
diff --git a/haskell/haskell-async/HISTORY b/haskell/haskell-async/HISTORY
index c5a17be..b356cbc 100644
--- a/haskell/haskell-async/HISTORY
+++ b/haskell/haskell-async/HISTORY
@@ -1,3 +1,7 @@
+2026-08-18 Ismael Luceno <ismael AT sourcemage.org>
+ * 0001-relax-versions-of-dependencies.patch, DEPENDS, DETAILS,
+ PRE_BUILD: version 2.2.6
+
2018-11-01 Florian Franzmann <bwlf AT bandrate.org>
* PRE_BUILD, 0001-relax-versions-of-dependencies.patch: fix build
with ghc 8.6.1
diff --git a/haskell/haskell-async/PRE_BUILD b/haskell/haskell-async/PRE_BUILD
deleted file mode 100755
index 9a32c4e..0000000
--- a/haskell/haskell-async/PRE_BUILD
+++ /dev/null
@@ -1,5 +0,0 @@
-default_pre_build &&
-cd "$SOURCE_DIRECTORY" &&
-
-patch -p1 < "$SPELL_DIRECTORY/0001-relax-versions-of-dependencies.patch"
-
diff --git a/haskell/haskell-atomic-counter/DEPENDS
b/haskell/haskell-atomic-counter/DEPENDS
new file mode 100755
index 0000000..8eace53
--- /dev/null
+++ b/haskell/haskell-atomic-counter/DEPENDS
@@ -0,0 +1 @@
+depends ghc
diff --git a/haskell/haskell-atomic-counter/DETAILS
b/haskell/haskell-atomic-counter/DETAILS
new file mode 100755
index 0000000..956c041
--- /dev/null
+++ b/haskell/haskell-atomic-counter/DETAILS
@@ -0,0 +1,19 @@
+ SPELL=haskell-atomic-counter
+ VERSION=0.1.2.4
+ SOURCE="atomic-counter-${VERSION}.tar.gz"
+
SOURCE_URL[0]=https://hackage.haskell.org/package/atomic-counter-${VERSION}/${SOURCE}
+
SOURCE_HASH=sha512:b0bcc09026469d4ee3bd4865e5abc0c39e901f3804ef00a7dc262250abd89b4bea62336a989564840bf11d4f7a6098b1ce3a2f54a9900fdc2647331e73bd4eb0
+SOURCE_DIRECTORY="${BUILD_DIRECTORY}/atomic-counter-${VERSION}"
+ WEB_SITE="https://hackage.haskell.org/package/atomic-counter"
+ LICENSE[0]=APACHE
+ ENTERED=20260817
+ SHORT="Mutable counters that can be modified with atomic
operatinos"
+cat << EOF
+This package defines Counter type that can be safely modified concurrently
+from multiple threads. The type supports only few operations, namely read,
+write, cas (compare and swap), add, subtract and a few bitwise ones like or,
+and xor.
+
+Most common use case is having a shared counter that multiple threads
+increment. Another potential use case is lightweight locks.
+EOF
diff --git a/haskell/haskell-atomic-counter/HISTORY
b/haskell/haskell-atomic-counter/HISTORY
new file mode 100644
index 0000000..190ab5e
--- /dev/null
+++ b/haskell/haskell-atomic-counter/HISTORY
@@ -0,0 +1,3 @@
+2026-08-18 Ismael Luceno <ismael AT sourcemage.org>
+ * DEPENDS, DETAILS: spell created, mutable counters that can be
+ modified with atomic operatinos
diff --git a/haskell/haskell-base16-bytestring/DEPENDS
b/haskell/haskell-base16-bytestring/DEPENDS
index 3ee8620..8eace53 100755
--- a/haskell/haskell-base16-bytestring/DEPENDS
+++ b/haskell/haskell-base16-bytestring/DEPENDS
@@ -1 +1 @@
-depends ghc
+depends ghc
diff --git a/haskell/haskell-base16-bytestring/DETAILS
b/haskell/haskell-base16-bytestring/DETAILS
index bfbe0a5..f69ceec 100755
--- a/haskell/haskell-base16-bytestring/DETAILS
+++ b/haskell/haskell-base16-bytestring/DETAILS
@@ -1,8 +1,11 @@
SPELL=haskell-base16-bytestring
- VERSION=0.1.1.6
+ VERSION=1.0.2.0
SOURCE="base16-bytestring-${VERSION}.tar.gz"
SOURCE_URL[0]=https://hackage.haskell.org/package/base16-bytestring-${VERSION}/${SOURCE}
-
SOURCE_HASH=sha512:699bc1f7819a1c0cea0154626f8799301bc9360bc997a5e9313a605ec33ea04d77219b100693021fd43e01d8d979374db07e6e3fabef5301c411f335e30a8cba
+
SOURCE_HASH=sha512:61e483c08f3cd81c0ffa891bd6f4aa5ff222d8184880deb5aeeae8184bd6efdbb373ca6bece2cd597490492107c91a2f4fd6ca9c71c712e298bce7418b9f7135
+ SOURCE2="base16-bytestring-${VERSION}-rev1.cabal"
+
SOURCE2_URL[0]=https://hackage.haskell.org/package/base16-bytestring-${VERSION}/revision/1.cabal
+
SOURCE2_HASH=sha512:e420afb74caaefaaa646224f7fb81a1b00d7928b4a5475002662e03e876fe1ec3776f3bc10b4325c889f83903fa9240e1bb84f69e64b54ea4b587471ccf06885
SOURCE_DIRECTORY="${BUILD_DIRECTORY}/base16-bytestring-${VERSION}"
WEB_SITE="http://github.com/bos/base16-bytestring"
LICENSE[0]=BSD
diff --git a/haskell/haskell-base16-bytestring/HISTORY
b/haskell/haskell-base16-bytestring/HISTORY
index 5b4e0f2..0c5345a 100644
--- a/haskell/haskell-base16-bytestring/HISTORY
+++ b/haskell/haskell-base16-bytestring/HISTORY
@@ -1,3 +1,6 @@
+2026-08-18 Ismael Luceno <ismael AT sourcemage.org>
+ * DEPENDS, DETAILS, PRE_BUILD: version 1.0.2.0
+
2015-08-02 Florian Franzmann <bwlf AT bandrate.org>
* DEPENDS, DETAILS: spell created
diff --git a/haskell/haskell-base16-bytestring/PRE_BUILD
b/haskell/haskell-base16-bytestring/PRE_BUILD
new file mode 100755
index 0000000..691f014
--- /dev/null
+++ b/haskell/haskell-base16-bytestring/PRE_BUILD
@@ -0,0 +1,5 @@
+default_pre_build &&
+verify_file 2 &&
+
+# Hackage revision 1: relaxed dependency bounds, not in the sdist tarball.
+cp -v "$SOURCE_CACHE/$SOURCE2" "$SOURCE_DIRECTORY/base16-bytestring.cabal"
diff --git a/haskell/haskell-base64-bytestring/DETAILS
b/haskell/haskell-base64-bytestring/DETAILS
index e303147..3559800 100755
--- a/haskell/haskell-base64-bytestring/DETAILS
+++ b/haskell/haskell-base64-bytestring/DETAILS
@@ -1,8 +1,11 @@
SPELL=haskell-base64-bytestring
- VERSION=1.0.0.1
+ VERSION=1.2.1.0
SOURCE="base64-bytestring-$VERSION.tar.gz"
-
SOURCE_URL[0]=http://hackage.haskell.org/package/base64-bytestring-$VERSION/$SOURCE
-
SOURCE_HASH=sha512:6936b34955b89a275f5bd71c74bbad2be6ff9e2023ac652bdbc9c5b10dd624e3862fc348849858fdb5c7b8aacc36ab4cda8bc6ea797c129b6b28d7e2e2e610e7
+
SOURCE_URL[0]=https://hackage.haskell.org/package/base64-bytestring-$VERSION/$SOURCE
+
SOURCE_HASH=sha512:730d5fd7bd1cf90792d0eea75de1fd333c6cab73f4d178db6d3c7006d77f222734a53bb10ef3a296862ca31338e2ae387acfdd44b119014cff7a0a13362e6e96
+ SOURCE2="base64-bytestring-${VERSION}-rev1.cabal"
+
SOURCE2_URL[0]=https://hackage.haskell.org/package/base64-bytestring-${VERSION}/revision/1.cabal
+
SOURCE2_HASH=sha512:28c2a71d6174ba06b43f6ae287f6f74723c0a7f4cc283951f60670c06720f37a37da53bf5f208f46872b4e324c864f80c3f9725388a9901c4e8e6d1227348d53
SOURCE_DIRECTORY="$BUILD_DIRECTORY/base64-bytestring-$VERSION"
WEB_SITE="https://github.com/bos/base64-bytestring"
LICENSE[0]="BSD3"
diff --git a/haskell/haskell-base64-bytestring/HISTORY
b/haskell/haskell-base64-bytestring/HISTORY
index bed0eed..99f2f94 100644
--- a/haskell/haskell-base64-bytestring/HISTORY
+++ b/haskell/haskell-base64-bytestring/HISTORY
@@ -1,2 +1,5 @@
+2026-08-18 Ismael Luceno <ismael AT sourcemage.org>
+ * DEPENDS, DETAILS, PRE_BUILD: version 1.2.1.0
+
2015-06-26 Ismael Luceno <ismael AT sourcemage.org>
* DEPENDS, DETAILS: spell created
diff --git a/haskell/haskell-base64-bytestring/PRE_BUILD
b/haskell/haskell-base64-bytestring/PRE_BUILD
new file mode 100755
index 0000000..bd018ea
--- /dev/null
+++ b/haskell/haskell-base64-bytestring/PRE_BUILD
@@ -0,0 +1,5 @@
+default_pre_build &&
+verify_file 2 &&
+
+# Hackage revision 1: relaxed dependency bounds, not in the sdist tarball.
+cp -v "$SOURCE_CACHE/$SOURCE2" "$SOURCE_DIRECTORY/base64-bytestring.cabal"
diff --git a/haskell/haskell-echo/0001-fix-dependencies.patch
b/haskell/haskell-echo/0001-fix-dependencies.patch
deleted file mode 100644
index 400e632..0000000
--- a/haskell/haskell-echo/0001-fix-dependencies.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From 2db4f5aa6d7a0bba5fcca46d998fff2a65ebf8af Mon Sep 17 00:00:00 2001
-From: Florian Franzmann <bwlf AT bandrate.org>
-Date: Wed, 17 Jan 2018 20:24:21 +0100
-Subject: [PATCH] fix dependencies
-
----
- echo.cabal | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/echo.cabal b/echo.cabal
-index 4a18d27..e8de149 100644
---- a/echo.cabal
-+++ b/echo.cabal
-@@ -39,7 +39,7 @@ library
- System.IO.Echo.Internal
-
- build-depends: base >= 4.3 && < 5
-- , process >= 1.0.1.1 && < 1.5
-+ , process >= 1.0.1.1 && < 1.7
- if os(windows)
- cpp-options: "-DWINDOWS"
- build-depends: mintty >= 0.1 && < 0.2
---
-2.15.1
-
diff --git a/haskell/haskell-echo/DEPENDS b/haskell/haskell-echo/DEPENDS
index 3ee8620..4165889 100755
--- a/haskell/haskell-echo/DEPENDS
+++ b/haskell/haskell-echo/DEPENDS
@@ -1 +1,2 @@
-depends ghc
+depends ghc &&
+depends haskell-process
diff --git a/haskell/haskell-echo/DETAILS b/haskell/haskell-echo/DETAILS
index 7bc8ff0..410a865 100755
--- a/haskell/haskell-echo/DETAILS
+++ b/haskell/haskell-echo/DETAILS
@@ -1,8 +1,8 @@
SPELL=haskell-echo
- VERSION=0.1.3
+ VERSION=0.1.4
SOURCE="echo-${VERSION}.tar.gz"
SOURCE_URL[0]=https://hackage.haskell.org/package/echo-${VERSION}/${SOURCE}
-
SOURCE_HASH=sha512:26a2398af231a8805b6b0a866348f848b8b8f21fe95a2fa3c781aaeae150df978335df573d46d5b07d7e4df19d6377d997f85c77049abaf0c5cb3e9998439c6f
+
SOURCE_HASH=sha512:25fa868be5cbbc96adb4457b0e6a2fb7060b889e0dead9acef21038fd438d1ca1ee3c57ee03d91f75271e97cfea71b1d3589f800af70e15cb8cee6a60e041477
SOURCE_DIRECTORY="${BUILD_DIRECTORY}/echo-${VERSION}"
WEB_SITE="https://github.com/RyanGlScott/echo"
LICENSE[0]=BSD
diff --git a/haskell/haskell-echo/HISTORY b/haskell/haskell-echo/HISTORY
index c8239f2..4016153 100644
--- a/haskell/haskell-echo/HISTORY
+++ b/haskell/haskell-echo/HISTORY
@@ -1,3 +1,7 @@
+2026-08-18 Ismael Luceno <ismael AT sourcemage.org>
+ * 0001-fix-dependencies.patch, DEPENDS, DETAILS, PRE_BUILD:
+ version 0.1.4
+
2018-01-17 Florian Franzmann <bwlf AT bandrate.org>
* DEPENDS, DETAILS, PRE_BUILD, 0001-fix-dependencies.patch: spell
created
diff --git a/haskell/haskell-echo/PRE_BUILD b/haskell/haskell-echo/PRE_BUILD
deleted file mode 100755
index 7a6560c..0000000
--- a/haskell/haskell-echo/PRE_BUILD
+++ /dev/null
@@ -1,5 +0,0 @@
-default_pre_build &&
-cd "$SOURCE_DIRECTORY" &&
-
-patch -p1 < "$SPELL_DIRECTORY/0001-fix-dependencies.patch"
-
diff --git
a/haskell/haskell-unordered-containers/0001-relax-hashable-version.patch
b/haskell/haskell-unordered-containers/0001-relax-hashable-version.patch
deleted file mode 100644
index ac1f70e..0000000
--- a/haskell/haskell-unordered-containers/0001-relax-hashable-version.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From 468e5f413739714ca8bbb535a2aedb24b772370d Mon Sep 17 00:00:00 2001
-From: Florian Franzmann <bwlf AT bandrate.org>
-Date: Wed, 25 Sep 2019 18:59:03 +0200
-Subject: [PATCH] relax hashable version
-
----
- unordered-containers.cabal | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/unordered-containers.cabal b/unordered-containers.cabal
-index 90cf643..31cd481 100644
---- a/unordered-containers.cabal
-+++ b/unordered-containers.cabal
-@@ -43,7 +43,7 @@ library
- build-depends:
- base >= 4.7 && < 5,
- deepseq >= 1.1,
-- hashable >= 1.0.1.1 && < 1.3
-+ hashable >= 1.0.1.1
-
- default-language: Haskell2010
-
---
-2.23.0
-
diff --git a/haskell/haskell-unordered-containers/DEPENDS
b/haskell/haskell-unordered-containers/DEPENDS
index 8eace53..3ef7c2e 100755
--- a/haskell/haskell-unordered-containers/DEPENDS
+++ b/haskell/haskell-unordered-containers/DEPENDS
@@ -1 +1,2 @@
-depends ghc
+depends ghc &&
+depends haskell-hashable
diff --git a/haskell/haskell-unordered-containers/DETAILS
b/haskell/haskell-unordered-containers/DETAILS
index 6c9b1fb..cfc588d 100755
--- a/haskell/haskell-unordered-containers/DETAILS
+++ b/haskell/haskell-unordered-containers/DETAILS
@@ -1,8 +1,11 @@
SPELL=haskell-unordered-containers
- VERSION=0.2.10.0
+ VERSION=0.2.21
SOURCE="unordered-containers-${VERSION}.tar.gz"
SOURCE_URL[0]=https://hackage.haskell.org/package/${SOURCE%.tar.*}/${SOURCE}
-
SOURCE_HASH=sha512:450e5e839e0092b2476a0abfc3eb2f45fba634a9e782cddf25b3db3730d16dd2e65673f46678ab4ad23be71525ae5f72888b89b03402cb70e20fc33feb765766
+
SOURCE_HASH=sha512:b54ebd840d40e92baf303cd2867d7592d3f3f839aa5986c6277014775db4157fab6cae58f92ff32dbd5cc75dfe626b17c5849259397643aa7149484d60acae22
+ SOURCE2="unordered-containers-${VERSION}-rev2.cabal"
+
SOURCE2_URL[0]=https://hackage.haskell.org/package/unordered-containers-${VERSION}/revision/2.cabal
+
SOURCE2_HASH=sha512:82421e40c6958a16d0a4fa089730d9842f7ea93a2906f54a9e49f7c194a959fb86f4a787b73f0b5b3da048b499d2fef83a2ca897838f2f73c20a0cd989c1fa2c
SOURCE_DIRECTORY="${BUILD_DIRECTORY}/unordered-containers-${VERSION}"
WEB_SITE="Homepage:
https://github.com/tibbe/unordered-containers"
LICENSE[0]=BSD3
diff --git a/haskell/haskell-unordered-containers/HISTORY
b/haskell/haskell-unordered-containers/HISTORY
index d09b870..8c2d0bb 100644
--- a/haskell/haskell-unordered-containers/HISTORY
+++ b/haskell/haskell-unordered-containers/HISTORY
@@ -1,3 +1,7 @@
+2026-08-18 Ismael Luceno <ismael AT sourcemage.org>
+ * 0001-relax-hashable-version.patch, DEPENDS, DETAILS, PRE_BUILD:
+ version 0.2.21
+
2019-09-24 Florian Franzmann <bwlf AT bandrate.org>
* PRE_BUILD, 0001-relax-hashable-version.patch: fix version constraint
on hashable
diff --git a/haskell/haskell-unordered-containers/PRE_BUILD
b/haskell/haskell-unordered-containers/PRE_BUILD
deleted file mode 100755
index e5dd0fa..0000000
--- a/haskell/haskell-unordered-containers/PRE_BUILD
+++ /dev/null
@@ -1,5 +0,0 @@
-default_pre_build &&
-cd "$SOURCE_DIRECTORY" &&
-
-patch -p1 < "$SPELL_DIRECTORY/0001-relax-hashable-version.patch"
-
- [[SM-Commit] ] GIT changes to master grimoire by Ismael Luceno (000953932309995d5d38e910aee6ed2a33da8410), Ismael Luceno, 08/18/2026
Archive powered by MHonArc 2.6.24.