diff options
author | rene <rene@FreeBSD.org> | 2017-08-21 17:51:29 +0800 |
---|---|---|
committer | rene <rene@FreeBSD.org> | 2017-08-21 17:51:29 +0800 |
commit | 8fe262a5b75ac32a90c799bd8b208d497308b554 (patch) | |
tree | 7dbb57f0d33710428e4f15858f93373ac5876fb3 /lang | |
parent | 3ac9157c07f7b1456e6ce36ecf137c4ca427f790 (diff) | |
download | freebsd-ports-gnome-8fe262a5b75ac32a90c799bd8b208d497308b554.tar.gz freebsd-ports-gnome-8fe262a5b75ac32a90c799bd8b208d497308b554.tar.zst freebsd-ports-gnome-8fe262a5b75ac32a90c799bd8b208d497308b554.zip |
Remove expired port:
2017-08-21 lang/whitespace: Mastersite disappeared
Diffstat (limited to 'lang')
-rw-r--r-- | lang/Makefile | 1 | ||||
-rw-r--r-- | lang/whitespace/Makefile | 46 | ||||
-rw-r--r-- | lang/whitespace/distinfo | 2 | ||||
-rw-r--r-- | lang/whitespace/files/patch-Makefile | 41 | ||||
-rw-r--r-- | lang/whitespace/files/patch-VM.hs | 10 | ||||
-rw-r--r-- | lang/whitespace/files/patch-main.hs | 11 | ||||
-rw-r--r-- | lang/whitespace/pkg-descr | 8 |
7 files changed, 0 insertions, 119 deletions
diff --git a/lang/Makefile b/lang/Makefile index a5828dd4c9ab..bfac94f65e41 100644 --- a/lang/Makefile +++ b/lang/Makefile @@ -363,7 +363,6 @@ SUBDIR += v8-devel SUBDIR += vala SUBDIR += visualworks - SUBDIR += whitespace SUBDIR += x10 SUBDIR += yabasic SUBDIR += yap diff --git a/lang/whitespace/Makefile b/lang/whitespace/Makefile deleted file mode 100644 index c2491228ece0..000000000000 --- a/lang/whitespace/Makefile +++ /dev/null @@ -1,46 +0,0 @@ -# Created by: Li-Lun Wang <llwang@infor.org> -# $FreeBSD$ - -PORTNAME= whitespace -PORTVERSION= 0.3 -PORTREVISION= 7 -CATEGORIES= lang -MASTER_SITES= http://compsoc.dur.ac.uk/whitespace/downloads/ -DISTNAME= wspace-${PORTVERSION} - -MAINTAINER= ports@FreeBSD.org -COMMENT= Interpreter for the Whitespace programming language - -LICENSE= GPLv2+ -LICENSE_FILE= ${WRKSRC}/COPYING - -BUILD_DEPENDS= ghc:lang/ghc -LIB_DEPENDS= libgmp.so:math/gmp \ - libffi.so.6:devel/libffi - -DEPRECATED= Mastersite disappeared -EXPIRATION_DATE= 2017-08-21 - -USES= perl5 gmake tar:tgz -USE_PERL5= build -WRKSRC= ${WRKDIR}/WSpace -ALL_TARGET= ${TARGET} - -PLIST_FILES= bin/wspace -PORTEXAMPLES= * -PORTDOCS= * - -OPTIONS_DEFINE= DOCS EXAMPLES - -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/wspace ${STAGEDIR}${PREFIX}/bin - -do-install-EXAMPLES-on: - @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} - ${INSTALL_DATA} ${WRKSRC}/examples/* ${STAGEDIR}${EXAMPLESDIR} - -do-install-DOCS-on: - @${MKDIR} ${STAGEDIR}${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/docs/tutorial.html ${STAGEDIR}${DOCSDIR} - -.include <bsd.port.mk> diff --git a/lang/whitespace/distinfo b/lang/whitespace/distinfo deleted file mode 100644 index 1270867741a7..000000000000 --- a/lang/whitespace/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (wspace-0.3.tgz) = 53e47bf05df991c1d0f88a75cf5208bfc42d42b87f8fe3e8ee6a05ac78544a73 -SIZE (wspace-0.3.tgz) = 15471 diff --git a/lang/whitespace/files/patch-Makefile b/lang/whitespace/files/patch-Makefile deleted file mode 100644 index f99c69775daa..000000000000 --- a/lang/whitespace/files/patch-Makefile +++ /dev/null @@ -1,41 +0,0 @@ ---- Makefile.orig 2003-03-31 12:39:29 UTC -+++ Makefile -@@ -2,13 +2,12 @@ GHC = ghc - GHCI = ghci - - SRCS = main.hs Input.hs VM.hs Tokens.hs --OBJS = main.o Input.o VM.o Tokens.o --OPTS = -O -fvia-C -+OPTS = -O - - TARGET = wspace - --$TARGET: ${OBJS} -- ${GHC} ${OPTS} ${OBJS} -o ${TARGET} -+$TARGET: ${SRCS} -+ ${GHC} --make ${OPTS} ${SRCS} -o ${TARGET} - - ghci: - ${GHCI} ${OPTS} main.hs -@@ -19,21 +18,3 @@ depend: - clean: - rm -f ${TARGET} ${OBJS} - rm -f *~ *.hi -- --%.o: %.hs -- ${GHC} -c ${OPTS} $< -o $@ -- --%.hi: %.o -- @: -- --# DO NOT DELETE: Beginning of Haskell dependencies --main.o : main.hs --main.o : ./Tokens.hi --main.o : ./VM.hi --main.o : ./Input.hi --Input.o : Input.hs --Input.o : ./Tokens.hi --Input.o : ./VM.hi --VM.o : VM.hs --Tokens.o : Tokens.hs --# DO NOT DELETE: End of Haskell dependencies diff --git a/lang/whitespace/files/patch-VM.hs b/lang/whitespace/files/patch-VM.hs deleted file mode 100644 index ff979ee8ed7c..000000000000 --- a/lang/whitespace/files/patch-VM.hs +++ /dev/null @@ -1,10 +0,0 @@ ---- VM.hs.orig 2004-05-04 17:10:41 UTC -+++ VM.hs -@@ -1,6 +1,6 @@ - module VM where - --import IO -+import System.IO - - {- Stack machine for running whitespace programs -} - diff --git a/lang/whitespace/files/patch-main.hs b/lang/whitespace/files/patch-main.hs deleted file mode 100644 index 0e3685dd822d..000000000000 --- a/lang/whitespace/files/patch-main.hs +++ /dev/null @@ -1,11 +0,0 @@ ---- main.hs.orig 2003-03-31 15:33:44 UTC -+++ main.hs -@@ -26,7 +26,7 @@ import Input - import VM - import Tokens - --import System(getArgs) -+import System.Environment (getArgs) - - main :: IO () - main = do diff --git a/lang/whitespace/pkg-descr b/lang/whitespace/pkg-descr deleted file mode 100644 index 0a7960ea3bff..000000000000 --- a/lang/whitespace/pkg-descr +++ /dev/null @@ -1,8 +0,0 @@ -Whitespace is a imperative stack-based programming language that, -contrary to most languages, ignores any non-whitespace characters. -Only spaces, tabs, and newlines are considered syntax in Whitespace. - -This port is a prototype interpreter for the Whitespace programming -language written in Haskell. - -WWW: http://compsoc.dur.ac.uk/whitespace/ |