Remove expired ports:
2015-08-03 devel/java-util-concurrent: Included in all current JDKs by default 2015-08-03 devel/py-pyparsing15: Not used in the ports tree anymore
This commit is contained in:
parent
11058363ec
commit
0a80198448
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=393494
8 changed files with 2 additions and 98 deletions
2
MOVED
2
MOVED
|
@ -7751,3 +7751,5 @@ net-p2p/btqueue||2015-08-01|Has expired: Runtime broken (does not download anyth
|
||||||
sysutils/vhdtool||2015-08-01|Has expired: Use mkimg(1) instead
|
sysutils/vhdtool||2015-08-01|Has expired: Use mkimg(1) instead
|
||||||
www/rubygem-modernizr||2015-08-01|Has expired: This gem has been removed from rubygems.org by upstream
|
www/rubygem-modernizr||2015-08-01|Has expired: This gem has been removed from rubygems.org by upstream
|
||||||
sysutils/libzeitgeist|sysutils/zeitgeist|2015-07-26|Merged into zeitgeist
|
sysutils/libzeitgeist|sysutils/zeitgeist|2015-07-26|Merged into zeitgeist
|
||||||
|
devel/java-util-concurrent||2015-08-03|Has expired: Included in all current JDKs by default
|
||||||
|
devel/py-pyparsing15||2015-08-03|Has expired: Not used in the ports tree anymore
|
||||||
|
|
|
@ -986,7 +986,6 @@
|
||||||
SUBDIR += jam
|
SUBDIR += jam
|
||||||
SUBDIR += jansson
|
SUBDIR += jansson
|
||||||
SUBDIR += java-findbugs
|
SUBDIR += java-findbugs
|
||||||
SUBDIR += java-util-concurrent
|
|
||||||
SUBDIR += javolution
|
SUBDIR += javolution
|
||||||
SUBDIR += jclassinfo
|
SUBDIR += jclassinfo
|
||||||
SUBDIR += jcmdline
|
SUBDIR += jcmdline
|
||||||
|
@ -4110,7 +4109,6 @@
|
||||||
SUBDIR += py-pymarc
|
SUBDIR += py-pymarc
|
||||||
SUBDIR += py-pympler
|
SUBDIR += py-pympler
|
||||||
SUBDIR += py-pymtbl
|
SUBDIR += py-pymtbl
|
||||||
SUBDIR += py-pyparsing15
|
|
||||||
SUBDIR += py-pyrfc3339
|
SUBDIR += py-pyrfc3339
|
||||||
SUBDIR += py-pyro
|
SUBDIR += py-pyro
|
||||||
SUBDIR += py-pyshapelib
|
SUBDIR += py-pyshapelib
|
||||||
|
|
|
@ -1,45 +0,0 @@
|
||||||
# Created by: Herve Quiroz <hq@FreeBSD.org>
|
|
||||||
# $FreeBSD$
|
|
||||||
|
|
||||||
PORTNAME= util-concurrent
|
|
||||||
PORTVERSION= 1.3.4
|
|
||||||
PORTREVISION= 2
|
|
||||||
CATEGORIES= devel java
|
|
||||||
MASTER_SITES= http://gee.cs.oswego.edu/dl/classes/EDU/oswego/cs/dl/current/
|
|
||||||
PKGNAMEPREFIX= java-
|
|
||||||
DISTNAME= concurrent
|
|
||||||
|
|
||||||
MAINTAINER= ports@FreeBSD.org
|
|
||||||
COMMENT= Utility classes for concurrent Java programming
|
|
||||||
|
|
||||||
DEPRECATED= Included in all current JDKs by default
|
|
||||||
EXPIRATION_DATE=2015-08-03
|
|
||||||
|
|
||||||
USE_JAVA= yes
|
|
||||||
JAVA_VERSION= 1.6+
|
|
||||||
|
|
||||||
USE_ANT= yes
|
|
||||||
ALL_TARGET= dist
|
|
||||||
|
|
||||||
PLIST_FILES= %%JAVAJARDIR%%/${PORTNAME}.jar
|
|
||||||
PORTDOCS= apidocs index.html
|
|
||||||
|
|
||||||
OPTIONS_DEFINE= DOCS
|
|
||||||
|
|
||||||
.include <bsd.port.options.mk>
|
|
||||||
|
|
||||||
.if ${PORT_OPTIONS:MDOCS}
|
|
||||||
ALL_TARGET+= javadoc
|
|
||||||
.endif
|
|
||||||
|
|
||||||
do-install:
|
|
||||||
@${MKDIR} ${STAGEDIR}${JAVAJARDIR}
|
|
||||||
${INSTALL_DATA} ${WRKSRC}/lib/${DISTNAME}.jar \
|
|
||||||
${STAGEDIR}${JAVAJARDIR}/${PORTNAME}.jar
|
|
||||||
.if ${PORT_OPTIONS:MDOCS}
|
|
||||||
@${MKDIR} ${STAGEDIR}${DOCSDIR}/apidocs
|
|
||||||
(cd ${WRKSRC}/docs && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}/apidocs)
|
|
||||||
${INSTALL_DATA} ${WRKSRC}/intro.html ${STAGEDIR}${DOCSDIR}/index.html
|
|
||||||
.endif
|
|
||||||
|
|
||||||
.include <bsd.port.mk>
|
|
|
@ -1,2 +0,0 @@
|
||||||
SHA256 (concurrent.tar.gz) = a3903e7ba6224c9c3dda74066a99f97c7bbb7a73af3c5e21df0e60963e7e41ad
|
|
||||||
SIZE (concurrent.tar.gz) = 522717
|
|
|
@ -1,19 +0,0 @@
|
||||||
This package provides standardized, efficient versions of utility classes
|
|
||||||
commonly encountered in concurrent Java programming. This code consists of
|
|
||||||
implementations of ideas that have been around for ages, and is merely intended
|
|
||||||
to save you the trouble of coding them.
|
|
||||||
|
|
||||||
The package mainly consists of implementations of a few interfaces:
|
|
||||||
|
|
||||||
* Sync -- locks, conditions
|
|
||||||
* Channel -- queues, buffers
|
|
||||||
* Barrier -- multi-party synchronization
|
|
||||||
* SynchronizedVariable -- atomic ints, refs etc
|
|
||||||
* java.util.Collection -- collections
|
|
||||||
* Executor -- replacements for direct use of Thread
|
|
||||||
|
|
||||||
Plus some utilities and frameworks that build upon these.
|
|
||||||
|
|
||||||
This package was the precursor to java.util.concurrent.
|
|
||||||
|
|
||||||
WWW: http://gee.cs.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/concurrent/intro.html
|
|
|
@ -1,22 +0,0 @@
|
||||||
# Created by: Hye-Shik Chang
|
|
||||||
# $FreeBSD$
|
|
||||||
|
|
||||||
PORTNAME= pyparsing
|
|
||||||
PORTVERSION= 1.5.7
|
|
||||||
CATEGORIES= devel python
|
|
||||||
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
|
|
||||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
||||||
PKGNAMESUFFIX= 15
|
|
||||||
|
|
||||||
MAINTAINER= swills@FreeBSD.org
|
|
||||||
COMMENT= General parsing module for Python
|
|
||||||
|
|
||||||
LICENSE= MIT
|
|
||||||
|
|
||||||
DEPRECATED= Not used in the ports tree anymore
|
|
||||||
EXPIRATION_DATE= 2015-08-03
|
|
||||||
|
|
||||||
USES= python:2
|
|
||||||
USE_PYTHON= distutils autoplist
|
|
||||||
|
|
||||||
.include <bsd.port.mk>
|
|
|
@ -1,2 +0,0 @@
|
||||||
SHA256 (pyparsing-1.5.7.tar.gz) = 2b3a013582cbff858e71ff23129e01acc5e99f511578d106ffb1e74bde15e893
|
|
||||||
SIZE (pyparsing-1.5.7.tar.gz) = 939642
|
|
|
@ -1,6 +0,0 @@
|
||||||
Pyparsing is a general parsing module for Python. Grammars are
|
|
||||||
implemented directly in the client code using parsing objects,
|
|
||||||
instead of externally, as with lex/yacc-type tools. Includes simple
|
|
||||||
examples for parsing SQL, CORBA IDL, and 4-function math.
|
|
||||||
|
|
||||||
WWW: http://pyparsing.wikispaces.com/
|
|
Loading…
Reference in a new issue