-
Notifications
You must be signed in to change notification settings - Fork 164
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
2.1.5 [2019.08.27] * Fix a bug in which reifyNat would yield incorrect results for very large Integers on GHC 8.2 or later. 2.1.4 [2018.07.02] * Allow building with GHC 8.6. 2.1.3 [2018.01.18] * Add Semigroup instance for ReflectedMonoid. 2.1.2 * Support cross-compilation and unregistered GHC builds. 2.1.1.1 * Fixed typos in the documentation. 2.1.1 * Fixed support for GHC 7.0 2.1 * Added ReifiedMonoid and ReifiedApplicative. 2 * Added reifyNat and reifySymbol for GHC 7.8+, capable of reflecting into the KnownNat and KnownSymbol classes respectively for use with other APIs. * Back-ported reifyTypeable from lens. This enables us to perform a (less efficient) form of Typeable reflection. 1.5.2 * Renamed the flag for disabling the use of template-haskell, to -f-template-haskell for consistency with my other packages. 1.5.1.2 * Builds warning-free on GHC 7.10. * Added a dynamic FromJSON example. 1.5.1.1 * Updated the link to the paper. * More examples.
- Loading branch information
1 parent
28d6c01
commit 81a4994
Showing
4 changed files
with
12 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
# $NetBSD: Makefile,v 1.1 2014/11/07 13:07:56 szptvlfn Exp $ | ||
# $NetBSD: Makefile,v 1.2 2020/01/02 07:16:27 pho Exp $ | ||
|
||
DISTNAME= reflection-1.5.1 | ||
DISTNAME= reflection-2.1.5 | ||
CATEGORIES= devel | ||
|
||
MAINTAINER= szptvlfn@NetBSD.org | ||
COMMENT= Reifies arbitrary terms into types | ||
LICENSE= modified-bsd | ||
|
||
.include "../../mk/haskell.mk" | ||
.include "../../devel/hs-tagged/buildlink3.mk" | ||
.include "../../math/hs-semigroups/buildlink3.mk" | ||
.include "../../mk/bsd.pkg.mk" |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
# $NetBSD: buildlink3.mk,v 1.1 2014/11/07 13:07:56 szptvlfn Exp $ | ||
# $NetBSD: buildlink3.mk,v 1.2 2020/01/02 07:16:27 pho Exp $ | ||
|
||
BUILDLINK_TREE+= hs-reflection | ||
|
||
.if !defined(HS_REFLECTION_BUILDLINK3_MK) | ||
HS_REFLECTION_BUILDLINK3_MK:= | ||
|
||
BUILDLINK_API_DEPENDS.hs-reflection+= hs-reflection>=1.5.1 | ||
BUILDLINK_ABI_DEPENDS.hs-reflection+= hs-reflection>=1.5.1 | ||
BUILDLINK_API_DEPENDS.hs-reflection+= hs-reflection>=2.1.5 | ||
BUILDLINK_ABI_DEPENDS.hs-reflection+= hs-reflection>=2.1.5 | ||
BUILDLINK_PKGSRCDIR.hs-reflection?= ../../devel/hs-reflection | ||
|
||
.include "../../devel/hs-tagged/buildlink3.mk" | ||
.include "../../math/hs-semigroups/buildlink3.mk" | ||
.endif # HS_REFLECTION_BUILDLINK3_MK | ||
|
||
BUILDLINK_TREE+= -hs-reflection |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
$NetBSD: distinfo,v 1.2 2015/11/03 03:27:33 agc Exp $ | ||
$NetBSD: distinfo,v 1.3 2020/01/02 07:16:27 pho Exp $ | ||
|
||
SHA1 (reflection-1.5.1.tar.gz) = cb0c9630b562667fe4044b329309c8aae792b9fe | ||
RMD160 (reflection-1.5.1.tar.gz) = 2069fc51ecc5e26e733929c3172bc4bb131c7849 | ||
SHA512 (reflection-1.5.1.tar.gz) = 8872bb50c2e059455f4dc80803747f2dcb08953176db99ddd2b49e55933a85278f6a354425145d32957055b7925d47677b4b85a88560b73263c54ae4700de451 | ||
Size (reflection-1.5.1.tar.gz) = 9436 bytes | ||
SHA1 (reflection-2.1.5.tar.gz) = 4cafda8b1f6e88d138b5d6d1ca3bcbac24d09188 | ||
RMD160 (reflection-2.1.5.tar.gz) = 70dd58a3e57667dd1720ab7ef0b09b419034cb17 | ||
SHA512 (reflection-2.1.5.tar.gz) = 4b7c909d61ba6d19f8e120e9e53de7bf9e3fb69038cfa7e3027160e4c6e22b415d1d0cce60476e14bf0a205b848d53f1751915bdebfe83a400003f4aaf6286eb | ||
Size (reflection-2.1.5.tar.gz) = 19532 bytes |