diff options
author | Pedro F. Giffuni <pfg@FreeBSD.org> | 2019-10-06 19:08:14 +0000 |
---|---|---|
committer | Pedro F. Giffuni <pfg@FreeBSD.org> | 2019-10-06 19:08:14 +0000 |
commit | c937a4ccc9f8c084344ae2b95fda9e50dfe7ab03 (patch) | |
tree | d1f15965fd21b7db5e3b21c1d8dc8442e6e2f50e /java/jakarta-commons-logging | |
parent | bbc7901e66f498ae60a9b87b783813dc5fb0edf2 (diff) |
rename most cases of jakarta- to apache-
The Apache Softare Foundation used to maintain an umbrella project named
Jakarta but it was retired on 2011. This name now conflicts with the new
name for Java EE under the Eclipse Foundation.
Rename most of the packages to be more consistent. Some other packages remain
but they will require intervention by their corresponding maintainers.
Approved by: thierry (mentor), makc
Differential Revision: https://reviews.freebsd.org/D21902
Notes
Notes:
svn path=/head/; revision=513899
Diffstat (limited to 'java/jakarta-commons-logging')
-rw-r--r-- | java/jakarta-commons-logging/Makefile | 35 | ||||
-rw-r--r-- | java/jakarta-commons-logging/distinfo | 2 | ||||
-rw-r--r-- | java/jakarta-commons-logging/pkg-descr | 12 |
3 files changed, 0 insertions, 49 deletions
diff --git a/java/jakarta-commons-logging/Makefile b/java/jakarta-commons-logging/Makefile deleted file mode 100644 index 7271807ca0a5..000000000000 --- a/java/jakarta-commons-logging/Makefile +++ /dev/null @@ -1,35 +0,0 @@ -# Created by: Ernst de Haan <znerd@FreeBSD.org> -# $FreeBSD$ - -PORTNAME= commons-logging -PORTVERSION= 1.2 -CATEGORIES= java devel -MASTER_SITES= APACHE_COMMONS_BINARIES -PKGNAMEPREFIX= jakarta- -DISTNAME= ${PORTNAME}-${PORTVERSION}-bin - -MAINTAINER= makc@FreeBSD.org -COMMENT= Generic logging wrapper library - -LICENSE= APACHE20 - -WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} - -OPTIONS_DEFINE= DOCS - -USE_JAVA= yes -JAVA_VERSION= 1.6+ -NO_BUILD= yes - -JARFILE= ${PORTNAME}-${PORTVERSION}.jar - -PORTDOCS= * -PLIST_FILES= %%JAVAJARDIR%%/${PORTNAME}.jar \ - %%JAVAJARDIR%%/${JARFILE} - -do-install: - ${INSTALL_DATA} ${WRKSRC}/${JARFILE} ${STAGEDIR}${JAVAJARDIR} - ${LN} -sf ${JARFILE} ${STAGEDIR}${JAVAJARDIR}/${PORTNAME}.jar - (cd ${WRKSRC}/apidocs && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}) - -.include <bsd.port.mk> diff --git a/java/jakarta-commons-logging/distinfo b/java/jakarta-commons-logging/distinfo deleted file mode 100644 index a8e6b728f678..000000000000 --- a/java/jakarta-commons-logging/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (commons-logging-1.2-bin.tar.gz) = 3f758805c7290d9c6d22d1451587c9f7232744aef4c984e88aa683cdea0587bd -SIZE (commons-logging-1.2-bin.tar.gz) = 315429 diff --git a/java/jakarta-commons-logging/pkg-descr b/java/jakarta-commons-logging/pkg-descr deleted file mode 100644 index cca5492a557b..000000000000 --- a/java/jakarta-commons-logging/pkg-descr +++ /dev/null @@ -1,12 +0,0 @@ -Jakarta Commons Logging library. - -There is a great need for debugging and logging information inside of Commons -components such as HTTPClient and DBCP. However, there are many logging APIs -out there and it is difficult to choose among them. - -The Logging package is an ultra-thin bridge between different logging -libraries. Commons components may use the Logging API to remove compile-time -and run-time dependencies on any particular logging package, and contributors -may write Log implementations for the library of their choice. - -WWW: http://jakarta.apache.org/commons/logging/ |