summaryrefslogtreecommitdiff
path: root/www/hs-HTTP
diff options
context:
space:
mode:
Diffstat (limited to 'www/hs-HTTP')
-rw-r--r--www/hs-HTTP/Makefile23
-rw-r--r--www/hs-HTTP/distinfo3
-rw-r--r--www/hs-HTTP/files/patch-HTTP.cabal20
-rw-r--r--www/hs-HTTP/pkg-descr18
4 files changed, 0 insertions, 64 deletions
diff --git a/www/hs-HTTP/Makefile b/www/hs-HTTP/Makefile
deleted file mode 100644
index 16e234718053..000000000000
--- a/www/hs-HTTP/Makefile
+++ /dev/null
@@ -1,23 +0,0 @@
-# Created by: Giuseppe Pilichi aka Jacula Modyun <jacula@gmail.com>
-# $FreeBSD$
-
-PORTNAME= HTTP
-PORTVERSION= 4000.3.12
-PORTREVISION= 1
-CATEGORIES= www haskell
-
-MAINTAINER= haskell@FreeBSD.org
-COMMENT= Library for client-side HTTP
-
-LICENSE= BSD3CLAUSE
-
-DEPRECATED= Haskell libraries are getting pushed out of the ports tree. If you are using this port for development, consider switching to cabal sandboxes (old way), cabal new-build (new way), or use devel/stack. If you believe this port shouldn't be removed, contact haskell@FreeBSD.org
-EXPIRATION_DATE= 2019-04-14
-
-USE_CABAL= mtl>=2.0 network>=2.6 network-uri>=2.6 old-time>=1.0.0.0
-
-FLAGS_ENABLE= network-uri
-FLAGS_DISABLE= mtl1 warn-as-error network23 conduit10 warp-tests
-
-.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk"
-.include <bsd.port.mk>
diff --git a/www/hs-HTTP/distinfo b/www/hs-HTTP/distinfo
deleted file mode 100644
index 3ea99e54af9b..000000000000
--- a/www/hs-HTTP/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-TIMESTAMP = 1545834704
-SHA256 (cabal/HTTP-4000.3.12.tar.gz) = a3ff6a9c93771079121083f1691188fe45f84380118e0f76bc4578153c361990
-SIZE (cabal/HTTP-4000.3.12.tar.gz) = 71800
diff --git a/www/hs-HTTP/files/patch-HTTP.cabal b/www/hs-HTTP/files/patch-HTTP.cabal
deleted file mode 100644
index 6bc94f4441a2..000000000000
--- a/www/hs-HTTP/files/patch-HTTP.cabal
+++ /dev/null
@@ -1,20 +0,0 @@
---- HTTP.cabal.orig 2018-06-09 15:12:09 UTC
-+++ HTTP.cabal
-@@ -109,7 +109,7 @@ Library
-
- -- note the test harness constraints should be kept in sync with these
- -- where dependencies are shared
-- Build-depends: base >= 4.3.0.0 && < 4.12, parsec >= 2.0 && < 3.2
-+ Build-depends: base >= 4.3.0.0 && < 4.13, parsec >= 2.0 && < 3.2
- Build-depends: array >= 0.3.0.2 && < 0.6, bytestring >= 0.9.1.5 && < 0.11
- Build-depends: time >= 1.1.2.3 && < 1.10
-
-@@ -151,7 +151,7 @@ Test-Suite test
- bytestring >= 0.9.1.5 && < 0.11,
- deepseq >= 1.3.0.0 && < 1.5,
- pureMD5 >= 0.2.4 && < 2.2,
-- base >= 4.3.0.0 && < 4.12,
-+ base >= 4.3.0.0 && < 4.13,
- split >= 0.1.3 && < 0.3,
- test-framework >= 0.2.0 && < 0.9,
- test-framework-hunit >= 0.3.0 && <0.4
diff --git a/www/hs-HTTP/pkg-descr b/www/hs-HTTP/pkg-descr
deleted file mode 100644
index 0f391dc0f467..000000000000
--- a/www/hs-HTTP/pkg-descr
+++ /dev/null
@@ -1,18 +0,0 @@
-The HTTP package supports client-side web programming in Haskell. It lets
-you set up HTTP connections, transmitting requests and processing the
-responses coming back, all from within the comforts of Haskell. It's
-dependent on the network package to operate, but other than that, the
-implementation is all written in Haskell.
-
-A basic API for issuing single HTTP requests + receiving responses is
-provided. On top of that, a session-level abstraction is also on offer
-(the BrowserAction monad); it taking care of handling the management of
-persistent connections, proxies, state (cookies) and authentication
-credentials required to handle multi-step interactions with a web server.
-
-The representation of the bytes flowing across is extensible via the use
-of a type class, letting you pick the representation of requests and
-responses that best fits your use. Some pre-packaged, common instances
-are provided for you (ByteString, String.)
-
-WWW: https://github.com/haskell/HTTP