pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/devel/hs-lens
Module Name: pkgsrc
Committed By: pho
Date: Thu Jan 30 07:59:00 UTC 2025
Modified Files:
pkgsrc/devel/hs-lens: DESCR Makefile buildlink3.mk
Log Message:
devel/hs-lens: update to lens-5.3.3
5.3.3 [2024.12.28]
------------------
* Add `makeFieldsId`, which generates overloaded field accessors using the
same names as the underlying fields. This is intended for use with the
`NoFieldSelectors` and `DuplicateRecordFields` language extensions.
Also add `classIdFields :: LensRules` and `classIdNamer :: FieldNamer`, both
of which use the same naming rules as `makeFieldsId`.
* Update the `Prism`s in `Language.Haskell.TH.Lens` to reflect additions to
`template-haskell-2.23.0.0`:
* Add an `_OrP` `Prism` for the `Pat` data type.
* Add `_ForallE`, `_ForallVisE`, and `_ConstrainedE` `Prism`s for the `Exp`
data type.
5.3.2 [2024.05.12]
------------------
* Define the following lenses that perform an operation and result the old
result:
* `(<<<>:~)` (prepend to the front via `(<>)` and return the old result)
* `(<<<|~)` (prepend to the front via `(<|)` and return the old result)
* `(<<|>~)` (append to the back via `(|>)` and return the old result)
Each of these also has a variant that end with `=` instead of `~` (e.g.,
`(<<<>:=)`) for working in a `MonadState` setting.
* Re-export `(<>:~)`, `(<<>:~)`, `(<|~)`, `(<<|~)`, `(|>~)`, and `(<|>~)` (as
well as their variants which end with `=` instead of `~`, and their variants
which return the old result) from `Control.Lens.Operators`.
5.3.1 [2024.05.05]
------------------
* Add a `Magnify` instance for the CPS variant of `RWST` when building with
`mtl-2.3` or later.
5.3 [2024.05.04]
----------------
* Allow building with GHC 9.10.
* Update the `Prism`s in `Language.Haskell.TH.Lens` to reflect additions to
`template-haskell-2.22.0.0`:
* The `_InfixD` `Prism` now focuses on `(Fixity, NamespaceSpecifier, Name)`
when building with `template-haskell-2.22.0.0` or later.
* Add `Prism`s for the newly introduced `NamespaceSpecifier` data type.
* Add `_TypeP` and `_InvisP` `Prism`s for the `Pat` data type.
* Add a `_TypeE` `Prism` for the `Exp` data type.
* Add a `_SCCP` `Prism` for the `Pragma` data type.
* Add the following `Setter`s for prepending and appending elements:
* `(<>:~)`: prepend an element to the front via `(<>)`.
* `(<<>:~)`: prepend an element to the front via `(<>)` and return the result.
* `(<|~)`: cons an element to the front via `(<|)`.
* `(<<|~)`: cons an element to the front via `(<|)` and return the result.
* `(|>~)`: snoc an element to the back via `(|>)`.
* `(<|>~)`: snoc an element to the back via `(|>)` and return the result.
Each of these also has a variant that end with `=` instead of `~` (e.g.,
`(<>:=)`) for working in a `MonadState` setting.
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/hs-lens/DESCR
cvs rdiff -u -r1.10 -r1.11 pkgsrc/devel/hs-lens/Makefile
cvs rdiff -u -r1.8 -r1.9 pkgsrc/devel/hs-lens/buildlink3.mk
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/devel/hs-lens/DESCR
diff -u pkgsrc/devel/hs-lens/DESCR:1.1 pkgsrc/devel/hs-lens/DESCR:1.2
--- pkgsrc/devel/hs-lens/DESCR:1.1 Wed Feb 16 10:00:52 2022
+++ pkgsrc/devel/hs-lens/DESCR Thu Jan 30 07:59:00 2025
@@ -1,2 +1,10 @@
-This package provides families of lenses, isomorphisms, folds, traversals,
-getters and setters.
+This package comes "Batteries Included" with many useful lenses for the types
+commonly used from the Haskell Platform, and with tools for automatically
+generating lenses and isomorphisms for user-supplied data types.
+
+The combinators in Control.Lens provide a highly generic toolbox for composing
+families of getters, folds, isomorphisms, traversals, setters and lenses and
+their indexed variants.
+
+An overview, with a large number of examples can be found in the README
+(https://github.com/ekmett/lens#lens-lenses-folds-and-traversals).
Index: pkgsrc/devel/hs-lens/Makefile
diff -u pkgsrc/devel/hs-lens/Makefile:1.10 pkgsrc/devel/hs-lens/Makefile:1.11
--- pkgsrc/devel/hs-lens/Makefile:1.10 Thu May 9 01:32:01 2024
+++ pkgsrc/devel/hs-lens/Makefile Thu Jan 30 07:59:00 2025
@@ -1,17 +1,12 @@
-# $NetBSD: Makefile,v 1.10 2024/05/09 01:32:01 pho Exp $
+# $NetBSD: Makefile,v 1.11 2025/01/30 07:59:00 pho Exp $
-DISTNAME= lens-5.2.3
-PKGREVISION= 2
+DISTNAME= lens-5.3.3
CATEGORIES= devel
MAINTAINER= pkgsrc-users%NetBSD.org@localhost
COMMENT= Lenses, Folds and Traversals
LICENSE= 2-clause-bsd
-HASKELL_UNRESTRICT_DEPENDENCIES+= \
- text \
- th-abstraction
-
.include "../../devel/hs-assoc/buildlink3.mk"
.include "../../devel/hs-base-orphans/buildlink3.mk"
.include "../../math/hs-bifunctors/buildlink3.mk"
Index: pkgsrc/devel/hs-lens/buildlink3.mk
diff -u pkgsrc/devel/hs-lens/buildlink3.mk:1.8 pkgsrc/devel/hs-lens/buildlink3.mk:1.9
--- pkgsrc/devel/hs-lens/buildlink3.mk:1.8 Thu May 9 01:32:01 2024
+++ pkgsrc/devel/hs-lens/buildlink3.mk Thu Jan 30 07:59:00 2025
@@ -1,12 +1,12 @@
-# $NetBSD: buildlink3.mk,v 1.8 2024/05/09 01:32:01 pho Exp $
+# $NetBSD: buildlink3.mk,v 1.9 2025/01/30 07:59:00 pho Exp $
BUILDLINK_TREE+= hs-lens
.if !defined(HS_LENS_BUILDLINK3_MK)
HS_LENS_BUILDLINK3_MK:=
-BUILDLINK_API_DEPENDS.hs-lens+= hs-lens>=5.2
-BUILDLINK_ABI_DEPENDS.hs-lens+= hs-lens>=5.2.3nb2
+BUILDLINK_API_DEPENDS.hs-lens+= hs-lens>=5.3.3
+BUILDLINK_ABI_DEPENDS.hs-lens+= hs-lens>=5.3.3
BUILDLINK_PKGSRCDIR.hs-lens?= ../../devel/hs-lens
.include "../../devel/hs-assoc/buildlink3.mk"
Home |
Main Index |
Thread Index |
Old Index