pkgsrc-WIP-changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
hs-semigroupoids: remove; It is already in the main pkgsrc tree
Module Name: pkgsrc-wip
Committed By: PHO <pho%cielonegro.org@localhost>
Pushed By: pho
Date: Wed Feb 1 18:25:14 2023 +0900
Changeset: 44ac60f8abdbe7362d3ff95c920bbee87550931b
Modified Files:
Makefile
hs-comonad-transformers/Makefile
hs-comonad-transformers/buildlink3.mk
hs-groupoids/Makefile
hs-semigroupoid-extras/Makefile
hs-transformers-abort/Makefile
hs-transformers-abort/buildlink3.mk
Removed Files:
hs-semigroupoids/DESCR
hs-semigroupoids/Makefile
hs-semigroupoids/PLIST
hs-semigroupoids/buildlink3.mk
hs-semigroupoids/distinfo
Log Message:
hs-semigroupoids: remove; It is already in the main pkgsrc tree
To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=44ac60f8abdbe7362d3ff95c920bbee87550931b
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
diffstat:
Makefile | 1 -
hs-comonad-transformers/Makefile | 2 +-
hs-comonad-transformers/buildlink3.mk | 2 +-
hs-groupoids/Makefile | 2 +-
hs-semigroupoid-extras/Makefile | 2 +-
hs-semigroupoids/DESCR | 18 -------
hs-semigroupoids/Makefile | 16 ------
hs-semigroupoids/PLIST | 97 -----------------------------------
hs-semigroupoids/buildlink3.mk | 19 -------
hs-semigroupoids/distinfo | 4 --
hs-transformers-abort/Makefile | 4 +-
hs-transformers-abort/buildlink3.mk | 4 +-
12 files changed, 8 insertions(+), 163 deletions(-)
diffs:
diff --git a/Makefile b/Makefile
index 2d26729b06..17d23f161f 100644
--- a/Makefile
+++ b/Makefile
@@ -1663,7 +1663,6 @@ SUBDIR+= hs-rosezipper
SUBDIR+= hs-rosezipper1
SUBDIR+= hs-safer-file-handles
SUBDIR+= hs-semigroupoid-extras
-SUBDIR+= hs-semigroupoids
SUBDIR+= hs-shake
SUBDIR+= hs-simple-sendfile
SUBDIR+= hs-storable-record
diff --git a/hs-comonad-transformers/Makefile b/hs-comonad-transformers/Makefile
index e579e08588..92cf24c992 100644
--- a/hs-comonad-transformers/Makefile
+++ b/hs-comonad-transformers/Makefile
@@ -12,7 +12,7 @@ LICENSE= modified-bsd
.include "../../math/hs-comonad/buildlink3.mk"
.include "../../math/hs-contravariant/buildlink3.mk"
.include "../../math/hs-distributive/buildlink3.mk"
-.include "../../wip/hs-semigroupoids/buildlink3.mk"
+.include "../../math/hs-semigroupoids/buildlink3.mk"
.include "../../math/hs-semigroups/buildlink3.mk"
.include "../../devel/hs-transformers/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
diff --git a/hs-comonad-transformers/buildlink3.mk b/hs-comonad-transformers/buildlink3.mk
index 010719ad2b..0519343fcc 100644
--- a/hs-comonad-transformers/buildlink3.mk
+++ b/hs-comonad-transformers/buildlink3.mk
@@ -12,7 +12,7 @@ BUILDLINK_PKGSRCDIR.hs-comonad-transformers?= ../../wip/hs-comonad-transformers
.include "../../math/hs-comonad/buildlink3.mk"
.include "../../math/hs-contravariant/buildlink3.mk"
.include "../../math/hs-distributive/buildlink3.mk"
-.include "../../wip/hs-semigroupoids/buildlink3.mk"
+.include "../../math/hs-semigroupoids/buildlink3.mk"
.include "../../math/hs-semigroups/buildlink3.mk"
.include "../../devel/hs-transformers/buildlink3.mk"
.endif # HS_COMONAD_TRANSFORMERS_BUILDLINK3_MK
diff --git a/hs-groupoids/Makefile b/hs-groupoids/Makefile
index 485b569ad2..4aacaf67c2 100644
--- a/hs-groupoids/Makefile
+++ b/hs-groupoids/Makefile
@@ -9,5 +9,5 @@ LICENSE= modified-bsd
.include "../../wip/mk/haskell.mk"
-.include "../../wip/hs-semigroupoids/buildlink3.mk"
+.include "../../math/hs-semigroupoids/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
diff --git a/hs-semigroupoid-extras/Makefile b/hs-semigroupoid-extras/Makefile
index af63c1c341..67315098a7 100644
--- a/hs-semigroupoid-extras/Makefile
+++ b/hs-semigroupoid-extras/Makefile
@@ -12,5 +12,5 @@ LICENSE= modified-bsd
.include "../../math/hs-comonad/buildlink3.mk"
.include "../../math/hs-distributive/buildlink3.mk"
.include "../../wip/hs-groupoids/buildlink3.mk"
-.include "../../wip/hs-semigroupoids/buildlink3.mk"
+.include "../../math/hs-semigroupoids/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
diff --git a/hs-semigroupoids/DESCR b/hs-semigroupoids/DESCR
deleted file mode 100644
index 0b8875a1c4..0000000000
--- a/hs-semigroupoids/DESCR
+++ /dev/null
@@ -1,18 +0,0 @@
-Provides a wide array of (semi)groupoids and operations for working with them.
-
-A Semigroupoid is a Category without the requirement of identity arrows
-for every object in the category.
-
-A Category is any Semigroupoid for which the Yoneda lemma holds.
-
-When working with comonads you often have the <*> portion of an Applicative,
-but not the pure. This was captured in Uustalu and Vene's
-"Essence of Dataflow Programming" in the form of the ComonadZip class
-in the days before Applicative. Apply provides a weaker invariant,
-but for the comonads used for data flow programming
-(found in the streams package), this invariant is preserved.
-Applicative function composition forms a semigroupoid.
-
-Similarly many structures are nearly a comonad, but not quite,
-for instance lists provide a reasonable extend operation in the form of tails,
-but do not always contain a value.
diff --git a/hs-semigroupoids/Makefile b/hs-semigroupoids/Makefile
deleted file mode 100644
index 3e0df12e1d..0000000000
--- a/hs-semigroupoids/Makefile
+++ /dev/null
@@ -1,16 +0,0 @@
-# $NetBSD: Makefile,v 1.10 2014/09/03 21:16:18 szptvlfn Exp $
-
-DISTNAME= semigroupoids-4.2
-CATEGORIES= math
-
-MAINTAINER= pho%cielonegro.org@localhost
-COMMENT= Semigroupoids: Category sans id
-LICENSE= 2-clause-bsd
-
-.include "../../wip/mk/haskell.mk"
-.include "../../math/hs-comonad/buildlink3.mk"
-.include "../../math/hs-contravariant/buildlink3.mk"
-.include "../../math/hs-distributive/buildlink3.mk"
-.include "../../math/hs-semigroups/buildlink3.mk"
-.include "../../devel/hs-transformers/buildlink3.mk"
-.include "../../mk/bsd.pkg.mk"
diff --git a/hs-semigroupoids/PLIST b/hs-semigroupoids/PLIST
deleted file mode 100644
index a912d0f88e..0000000000
--- a/hs-semigroupoids/PLIST
+++ /dev/null
@@ -1,97 +0,0 @@
-@comment $NetBSD: PLIST,v 1.4 2014/04/21 09:11:38 szptvlfn Exp $
-lib/semigroupoids-${PKGVERSION}/${HASKELL_VERSION}/Data/Functor/Alt.hi
-lib/semigroupoids-${PKGVERSION}/${HASKELL_VERSION}/Data/Functor/Alt.p_hi
-lib/semigroupoids-${PKGVERSION}/${HASKELL_VERSION}/Data/Functor/Apply.hi
-lib/semigroupoids-${PKGVERSION}/${HASKELL_VERSION}/Data/Functor/Apply.p_hi
-lib/semigroupoids-${PKGVERSION}/${HASKELL_VERSION}/Data/Functor/Bind.hi
-lib/semigroupoids-${PKGVERSION}/${HASKELL_VERSION}/Data/Functor/Bind.p_hi
-lib/semigroupoids-${PKGVERSION}/${HASKELL_VERSION}/Data/Functor/Bind/Trans.hi
-lib/semigroupoids-${PKGVERSION}/${HASKELL_VERSION}/Data/Functor/Bind/Trans.p_hi
-lib/semigroupoids-${PKGVERSION}/${HASKELL_VERSION}/Data/Functor/Extend.hi
-lib/semigroupoids-${PKGVERSION}/${HASKELL_VERSION}/Data/Functor/Extend.p_hi
-lib/semigroupoids-${PKGVERSION}/${HASKELL_VERSION}/Data/Functor/Plus.hi
-lib/semigroupoids-${PKGVERSION}/${HASKELL_VERSION}/Data/Functor/Plus.p_hi
-lib/semigroupoids-${PKGVERSION}/${HASKELL_VERSION}/Data/Groupoid.hi
-lib/semigroupoids-${PKGVERSION}/${HASKELL_VERSION}/Data/Groupoid.p_hi
-lib/semigroupoids-${PKGVERSION}/${HASKELL_VERSION}/Data/Isomorphism.hi
-lib/semigroupoids-${PKGVERSION}/${HASKELL_VERSION}/Data/Isomorphism.p_hi
-lib/semigroupoids-${PKGVERSION}/${HASKELL_VERSION}/Data/Semifunctor.hi
-lib/semigroupoids-${PKGVERSION}/${HASKELL_VERSION}/Data/Semifunctor.p_hi
-lib/semigroupoids-${PKGVERSION}/${HASKELL_VERSION}/Data/Semifunctor/Associative.hi
-lib/semigroupoids-${PKGVERSION}/${HASKELL_VERSION}/Data/Semifunctor/Associative.p_hi
-lib/semigroupoids-${PKGVERSION}/${HASKELL_VERSION}/Data/Semifunctor/Braided.hi
-lib/semigroupoids-${PKGVERSION}/${HASKELL_VERSION}/Data/Semifunctor/Braided.p_hi
-lib/semigroupoids-${PKGVERSION}/${HASKELL_VERSION}/Data/Semigroup/Foldable.hi
-lib/semigroupoids-${PKGVERSION}/${HASKELL_VERSION}/Data/Semigroup/Foldable.p_hi
-lib/semigroupoids-${PKGVERSION}/${HASKELL_VERSION}/Data/Semigroup/Traversable.hi
-lib/semigroupoids-${PKGVERSION}/${HASKELL_VERSION}/Data/Semigroup/Traversable.p_hi
-lib/semigroupoids-${PKGVERSION}/${HASKELL_VERSION}/Data/Semigroupoid.hi
-lib/semigroupoids-${PKGVERSION}/${HASKELL_VERSION}/Data/Semigroupoid.p_hi
-lib/semigroupoids-${PKGVERSION}/${HASKELL_VERSION}/Data/Semigroupoid/Coproduct.hi
-lib/semigroupoids-${PKGVERSION}/${HASKELL_VERSION}/Data/Semigroupoid/Coproduct.p_hi
-lib/semigroupoids-${PKGVERSION}/${HASKELL_VERSION}/Data/Semigroupoid/Dual.hi
-lib/semigroupoids-${PKGVERSION}/${HASKELL_VERSION}/Data/Semigroupoid/Dual.p_hi
-lib/semigroupoids-${PKGVERSION}/${HASKELL_VERSION}/Data/Semigroupoid/Ob.hi
-lib/semigroupoids-${PKGVERSION}/${HASKELL_VERSION}/Data/Semigroupoid/Ob.p_hi
-lib/semigroupoids-${PKGVERSION}/${HASKELL_VERSION}/Data/Semigroupoid/Product.hi
-lib/semigroupoids-${PKGVERSION}/${HASKELL_VERSION}/Data/Semigroupoid/Product.p_hi
-lib/semigroupoids-${PKGVERSION}/${HASKELL_VERSION}/Data/Semigroupoid/Static.hi
-lib/semigroupoids-${PKGVERSION}/${HASKELL_VERSION}/Data/Semigroupoid/Static.p_hi
-lib/semigroupoids-${PKGVERSION}/${HASKELL_VERSION}/Data/Traversable/Instances.hi
-lib/semigroupoids-${PKGVERSION}/${HASKELL_VERSION}/Data/Traversable/Instances.p_hi
-lib/semigroupoids-${PKGVERSION}/${HASKELL_VERSION}/HSsemigroupoids-${PKGVERSION}.o
-lib/semigroupoids-${PKGVERSION}/${HASKELL_VERSION}/libHSsemigroupoids-${PKGVERSION}.a
-lib/semigroupoids-${PKGVERSION}/${HASKELL_VERSION}/libHSsemigroupoids-${PKGVERSION}_p.a
-lib/semigroupoids-${PKGVERSION}/${HASKELL_VERSION}/package-description
-share/doc/semigroupoids-${PKGVERSION}/LICENSE
-${PLIST.doc}share/doc/semigroupoids-${PKGVERSION}/html/Data-Functor-Alt.html
-${PLIST.doc}share/doc/semigroupoids-${PKGVERSION}/html/Data-Functor-Apply.html
-${PLIST.doc}share/doc/semigroupoids-${PKGVERSION}/html/Data-Functor-Bind-Trans.html
-${PLIST.doc}share/doc/semigroupoids-${PKGVERSION}/html/Data-Functor-Bind.html
-${PLIST.doc}share/doc/semigroupoids-${PKGVERSION}/html/Data-Functor-Extend.html
-${PLIST.doc}share/doc/semigroupoids-${PKGVERSION}/html/Data-Functor-Plus.html
-${PLIST.doc}share/doc/semigroupoids-${PKGVERSION}/html/Data-Groupoid.html
-${PLIST.doc}share/doc/semigroupoids-${PKGVERSION}/html/Data-Isomorphism.html
-${PLIST.doc}share/doc/semigroupoids-${PKGVERSION}/html/Data-Semifunctor-Associative.html
-${PLIST.doc}share/doc/semigroupoids-${PKGVERSION}/html/Data-Semifunctor-Braided.html
-${PLIST.doc}share/doc/semigroupoids-${PKGVERSION}/html/Data-Semifunctor.html
-${PLIST.doc}share/doc/semigroupoids-${PKGVERSION}/html/Data-Semigroup-Foldable.html
-${PLIST.doc}share/doc/semigroupoids-${PKGVERSION}/html/Data-Semigroup-Traversable.html
-${PLIST.doc}share/doc/semigroupoids-${PKGVERSION}/html/Data-Semigroupoid-Coproduct.html
-${PLIST.doc}share/doc/semigroupoids-${PKGVERSION}/html/Data-Semigroupoid-Dual.html
-${PLIST.doc}share/doc/semigroupoids-${PKGVERSION}/html/Data-Semigroupoid-Ob.html
-${PLIST.doc}share/doc/semigroupoids-${PKGVERSION}/html/Data-Semigroupoid-Product.html
-${PLIST.doc}share/doc/semigroupoids-${PKGVERSION}/html/Data-Semigroupoid-Static.html
-${PLIST.doc}share/doc/semigroupoids-${PKGVERSION}/html/Data-Semigroupoid.html
-${PLIST.doc}share/doc/semigroupoids-${PKGVERSION}/html/Data-Traversable-Instances.html
-${PLIST.doc}share/doc/semigroupoids-${PKGVERSION}/html/doc-index.html
-${PLIST.doc}share/doc/semigroupoids-${PKGVERSION}/html/frames.html
-${PLIST.doc}share/doc/semigroupoids-${PKGVERSION}/html/haddock-util.js
-${PLIST.doc}share/doc/semigroupoids-${PKGVERSION}/html/hslogo-16.png
-${PLIST.doc}share/doc/semigroupoids-${PKGVERSION}/html/index-frames.html
-${PLIST.doc}share/doc/semigroupoids-${PKGVERSION}/html/index.html
-${PLIST.doc}share/doc/semigroupoids-${PKGVERSION}/html/mini_Data-Functor-Alt.html
-${PLIST.doc}share/doc/semigroupoids-${PKGVERSION}/html/mini_Data-Functor-Apply.html
-${PLIST.doc}share/doc/semigroupoids-${PKGVERSION}/html/mini_Data-Functor-Bind-Trans.html
-${PLIST.doc}share/doc/semigroupoids-${PKGVERSION}/html/mini_Data-Functor-Bind.html
-${PLIST.doc}share/doc/semigroupoids-${PKGVERSION}/html/mini_Data-Functor-Extend.html
-${PLIST.doc}share/doc/semigroupoids-${PKGVERSION}/html/mini_Data-Functor-Plus.html
-${PLIST.doc}share/doc/semigroupoids-${PKGVERSION}/html/mini_Data-Groupoid.html
-${PLIST.doc}share/doc/semigroupoids-${PKGVERSION}/html/mini_Data-Isomorphism.html
-${PLIST.doc}share/doc/semigroupoids-${PKGVERSION}/html/mini_Data-Semifunctor-Associative.html
-${PLIST.doc}share/doc/semigroupoids-${PKGVERSION}/html/mini_Data-Semifunctor-Braided.html
-${PLIST.doc}share/doc/semigroupoids-${PKGVERSION}/html/mini_Data-Semifunctor.html
-${PLIST.doc}share/doc/semigroupoids-${PKGVERSION}/html/mini_Data-Semigroup-Foldable.html
-${PLIST.doc}share/doc/semigroupoids-${PKGVERSION}/html/mini_Data-Semigroup-Traversable.html
-${PLIST.doc}share/doc/semigroupoids-${PKGVERSION}/html/mini_Data-Semigroupoid-Coproduct.html
-${PLIST.doc}share/doc/semigroupoids-${PKGVERSION}/html/mini_Data-Semigroupoid-Dual.html
-${PLIST.doc}share/doc/semigroupoids-${PKGVERSION}/html/mini_Data-Semigroupoid-Ob.html
-${PLIST.doc}share/doc/semigroupoids-${PKGVERSION}/html/mini_Data-Semigroupoid-Product.html
-${PLIST.doc}share/doc/semigroupoids-${PKGVERSION}/html/mini_Data-Semigroupoid-Static.html
-${PLIST.doc}share/doc/semigroupoids-${PKGVERSION}/html/mini_Data-Semigroupoid.html
-${PLIST.doc}share/doc/semigroupoids-${PKGVERSION}/html/mini_Data-Traversable-Instances.html
-${PLIST.doc}share/doc/semigroupoids-${PKGVERSION}/html/minus.gif
-${PLIST.doc}share/doc/semigroupoids-${PKGVERSION}/html/ocean.css
-${PLIST.doc}share/doc/semigroupoids-${PKGVERSION}/html/plus.gif
-${PLIST.doc}share/doc/semigroupoids-${PKGVERSION}/html/semigroupoids.haddock
-${PLIST.doc}share/doc/semigroupoids-${PKGVERSION}/html/synopsis.png
diff --git a/hs-semigroupoids/buildlink3.mk b/hs-semigroupoids/buildlink3.mk
deleted file mode 100644
index 4eea1504fa..0000000000
--- a/hs-semigroupoids/buildlink3.mk
+++ /dev/null
@@ -1,19 +0,0 @@
-# $NetBSD: buildlink3.mk,v 1.10 2014/09/03 21:16:18 szptvlfn Exp $
-
-BUILDLINK_TREE+= hs-semigroupoids
-
-.if !defined(HS_SEMIGROUPOIDS_BUILDLINK3_MK)
-HS_SEMIGROUPOIDS_BUILDLINK3_MK:=
-
-BUILDLINK_API_DEPENDS.hs-semigroupoids+= hs-semigroupoids>=4.2
-BUILDLINK_ABI_DEPENDS.hs-semigroupoids+= hs-semigroupoids>=4.2
-BUILDLINK_PKGSRCDIR.hs-semigroupoids?= ../../wip/hs-semigroupoids
-
-.include "../../math/hs-comonad/buildlink3.mk"
-.include "../../math/hs-contravariant/buildlink3.mk"
-.include "../../math/hs-distributive/buildlink3.mk"
-.include "../../math/hs-semigroups/buildlink3.mk"
-.include "../../devel/hs-transformers/buildlink3.mk"
-.endif # HS_SEMIGROUPOIDS_BUILDLINK3_MK
-
-BUILDLINK_TREE+= -hs-semigroupoids
diff --git a/hs-semigroupoids/distinfo b/hs-semigroupoids/distinfo
deleted file mode 100644
index db00fc2ff1..0000000000
--- a/hs-semigroupoids/distinfo
+++ /dev/null
@@ -1,4 +0,0 @@
-$NetBSD: distinfo,v 1.6 2014/09/03 21:16:18 szptvlfn Exp $
-
-RMD160 (semigroupoids-4.2.tar.gz) = b2a0dc7495e3ecb078ba6a79368eb26be90f5b31
-Size (semigroupoids-4.2.tar.gz) = 16395 bytes
diff --git a/hs-transformers-abort/Makefile b/hs-transformers-abort/Makefile
index 1cffe51416..255b8b9af8 100644
--- a/hs-transformers-abort/Makefile
+++ b/hs-transformers-abort/Makefile
@@ -12,8 +12,8 @@ LICENSE= modified-bsd
.include "../../devel/hs-data-default/buildlink3.mk"
.include "../../wip/hs-failure/buildlink3.mk"
.include "../../devel/hs-monad-control/buildlink3.mk"
-.include "../../math/hs-pointed/buildlink3.mk"
-.include "../../wip/hs-semigroupoids/buildlink3.mk"
+.include "../../devel/hs-pointed/buildlink3.mk"
+.include "../../math/hs-semigroupoids/buildlink3.mk"
.include "../../devel/hs-transformers/buildlink3.mk"
.include "../../devel/hs-transformers-base/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
diff --git a/hs-transformers-abort/buildlink3.mk b/hs-transformers-abort/buildlink3.mk
index 57aad59fab..dd47626e8d 100644
--- a/hs-transformers-abort/buildlink3.mk
+++ b/hs-transformers-abort/buildlink3.mk
@@ -12,8 +12,8 @@ BUILDLINK_PKGSRCDIR.hs-transformers-abort?= ../../devel/hs-transformers-abort
.include "../../devel/hs-data-default/buildlink3.mk"
.include "../../wip/hs-failure/buildlink3.mk"
.include "../../devel/hs-monad-control/buildlink3.mk"
-.include "../../math/hs-pointed/buildlink3.mk"
-.include "../../wip/hs-semigroupoids/buildlink3.mk"
+.include "../../devel/hs-pointed/buildlink3.mk"
+.include "../../math/hs-semigroupoids/buildlink3.mk"
.include "../../devel/hs-transformers/buildlink3.mk"
.include "../../devel/hs-transformers-base/buildlink3.mk"
.endif # HS_TRANSFORMERS_ABORT_BUILDLINK3_MK
Home |
Main Index |
Thread Index |
Old Index