From 3bdf095afc7ba974492e0bcf04f790ccd6adde71 Mon Sep 17 00:00:00 2001 From: Robert Schuster Date: Fri, 18 Sep 2009 14:46:04 +0200 Subject: commons-beanutils 1.8.0: New recipe (from Jalimo SVN). commons-cli 1.1: Dito. commons-collections 2.1.1: Dito. commons-collections3 3.2.1: Dito. commons-configuration 1.5: Dito. commons-digester 1.8: Dito. commons-discovery 0.4: Dito. commons-el 1.0: Dito. commons-fileupload 1.2.1: Dito. commons-httpclient 3.1: Dito. commons-io 1.4: Dito. commons-jxpath 1.3: Dito. commons-lang 2.4: Dito. commons-net: Dito. commons-net-native: Dito. commons-pool 1.4: Dito. --- recipes/jakarta-commons/commons-beanutils_1.8.0.bb | 10 ++++++++++ recipes/jakarta-commons/commons-cli_1.1.bb | 7 +++++++ recipes/jakarta-commons/commons-codec_1.3.bb | 7 +++++++ recipes/jakarta-commons/commons-collections3_3.2.1.bb | 8 ++++++++ recipes/jakarta-commons/commons-collections_2.1.1.bb | 6 ++++++ recipes/jakarta-commons/commons-configuration_1.5.bb | 19 +++++++++++++++++++ recipes/jakarta-commons/commons-digester_1.8.bb | 12 ++++++++++++ recipes/jakarta-commons/commons-discovery_0.4.bb | 10 ++++++++++ recipes/jakarta-commons/commons-el_1.0.bb | 14 ++++++++++++++ recipes/jakarta-commons/commons-fileupload_1.2.1.bb | 14 ++++++++++++++ recipes/jakarta-commons/commons-httpclient_3.1.bb | 13 +++++++++++++ recipes/jakarta-commons/commons-io_1.4.bb | 5 +++++ recipes/jakarta-commons/commons-jxpath_1.3.bb | 10 ++++++++++ recipes/jakarta-commons/commons-lang_2.4.bb | 6 ++++++ recipes/jakarta-commons/commons-net-native_1.4.1.bb | 7 +++++++ recipes/jakarta-commons/commons-net_1.4.1.bb | 14 ++++++++++++++ recipes/jakarta-commons/commons-pool_1.4.bb | 5 +++++ 17 files changed, 167 insertions(+) create mode 100644 recipes/jakarta-commons/commons-beanutils_1.8.0.bb create mode 100644 recipes/jakarta-commons/commons-cli_1.1.bb create mode 100644 recipes/jakarta-commons/commons-codec_1.3.bb create mode 100644 recipes/jakarta-commons/commons-collections3_3.2.1.bb create mode 100644 recipes/jakarta-commons/commons-collections_2.1.1.bb create mode 100644 recipes/jakarta-commons/commons-configuration_1.5.bb create mode 100644 recipes/jakarta-commons/commons-digester_1.8.bb create mode 100644 recipes/jakarta-commons/commons-discovery_0.4.bb create mode 100644 recipes/jakarta-commons/commons-el_1.0.bb create mode 100644 recipes/jakarta-commons/commons-fileupload_1.2.1.bb create mode 100644 recipes/jakarta-commons/commons-httpclient_3.1.bb create mode 100644 recipes/jakarta-commons/commons-io_1.4.bb create mode 100644 recipes/jakarta-commons/commons-jxpath_1.3.bb create mode 100644 recipes/jakarta-commons/commons-lang_2.4.bb create mode 100644 recipes/jakarta-commons/commons-net-native_1.4.1.bb create mode 100644 recipes/jakarta-commons/commons-net_1.4.1.bb create mode 100644 recipes/jakarta-commons/commons-pool_1.4.bb (limited to 'recipes/jakarta-commons') diff --git a/recipes/jakarta-commons/commons-beanutils_1.8.0.bb b/recipes/jakarta-commons/commons-beanutils_1.8.0.bb new file mode 100644 index 0000000000..092752a253 --- /dev/null +++ b/recipes/jakarta-commons/commons-beanutils_1.8.0.bb @@ -0,0 +1,10 @@ +require jakarta-commons.inc + +DESCRIPTION = "Static utility methods useful in manipulating Java classes that conform to the JavaBeans Specification" + +SRC_URI = "http://www.apache.org/dist/commons/beanutils/source/${BP}-src.tar.gz" + +DEPENDS += "commons-collections3 commons-logging" +RDEPENDS = "libcommons-collections3-java libcommons-logging-java" + +CP = "commons-collections3 commons-logging" diff --git a/recipes/jakarta-commons/commons-cli_1.1.bb b/recipes/jakarta-commons/commons-cli_1.1.bb new file mode 100644 index 0000000000..ca09789494 --- /dev/null +++ b/recipes/jakarta-commons/commons-cli_1.1.bb @@ -0,0 +1,7 @@ +require jakarta-commons.inc + +DESCRIPTION = "Java argument parsing helper classes" + +SRC_URI = "http://www.apache.org/dist/commons/cli/source/${BP}-src.tar.gz" + + diff --git a/recipes/jakarta-commons/commons-codec_1.3.bb b/recipes/jakarta-commons/commons-codec_1.3.bb new file mode 100644 index 0000000000..9ad18a12ea --- /dev/null +++ b/recipes/jakarta-commons/commons-codec_1.3.bb @@ -0,0 +1,7 @@ +require jakarta-commons.inc + +DESCRIPTION = "Java library with simple encoder and decoders for various formats such as Base64 and Hexadecimal" + +SRC_URI = "http://www.apache.org/dist/commons/codec/source/${BP}-src.tar.gz" + +S = "${WORKDIR}/${BP}" diff --git a/recipes/jakarta-commons/commons-collections3_3.2.1.bb b/recipes/jakarta-commons/commons-collections3_3.2.1.bb new file mode 100644 index 0000000000..dcde0c74f5 --- /dev/null +++ b/recipes/jakarta-commons/commons-collections3_3.2.1.bb @@ -0,0 +1,8 @@ +require jakarta-commons.inc + +DESCRIPTION = "A set of abstract data type interfaces and implementations that offer a wealth of useful functionality and a solid foundation for extending that functionality" + +SRC_URI = "http://www.apache.org/dist/commons/collections/source/commons-collections-${PV}-src.tar.gz" + +S = "${WORKDIR}/commons-collections-${PV}-src" + diff --git a/recipes/jakarta-commons/commons-collections_2.1.1.bb b/recipes/jakarta-commons/commons-collections_2.1.1.bb new file mode 100644 index 0000000000..23766abf25 --- /dev/null +++ b/recipes/jakarta-commons/commons-collections_2.1.1.bb @@ -0,0 +1,6 @@ +require jakarta-commons.inc + +DESCRIPTION = "A set of abstract data type interfaces and implementations that offer a wealth of useful functionality and a solid foundation for extending that functionality" + +SRC_URI = "http://www.apache.org/dist/commons/collections/source/${BP}-src.tar.gz" + diff --git a/recipes/jakarta-commons/commons-configuration_1.5.bb b/recipes/jakarta-commons/commons-configuration_1.5.bb new file mode 100644 index 0000000000..b30b8d998f --- /dev/null +++ b/recipes/jakarta-commons/commons-configuration_1.5.bb @@ -0,0 +1,19 @@ +require jakarta-commons.inc + +DESCRIPTION = "Generic configuration interface for Java applications" + +SRC_URI = "\ + http://www.apache.org/dist/commons/configuration/source/${BP}-src.tar.gz \ + http://ftp.hosting-studio.de/pub/linux/apache/ant/source/apache-ant-1.7.1-src.tar.bz2 \ +" + +DEPENDS += "commons-logging commons-collections3 commons-beanutils commons-codec commons-digester commons-jxpath commons-lang servlet2.4" +RDEPENDS = "libcommons-logging-java libcommons-collections3-java libcommons-beanutils-java libcommons-codec-java libcommons-digester-java libcommons-jxpath-java libcommons-lang-java libservlet2.4-java" + +CP = "commons-logging commons-collections3 commons-beanutils commons-codec commons-digester commons-jxpath commons-lang servlet-api-2.4" + +# Makes use of -sourcepath hack: We inject Ant sourcefiles into the build and remove them +# afterwards. +COMPILE_SOURCEPATH = "${WORKDIR}/apache-ant-1.7.1/src/main:src/java" + +CLEAN_PATH = "build/org/apache/tools" diff --git a/recipes/jakarta-commons/commons-digester_1.8.bb b/recipes/jakarta-commons/commons-digester_1.8.bb new file mode 100644 index 0000000000..28bcef3881 --- /dev/null +++ b/recipes/jakarta-commons/commons-digester_1.8.bb @@ -0,0 +1,12 @@ +require jakarta-commons.inc + +DESCRIPTION = "Converts XML to a Java object by a set of mapping rules." + +SRC_URI = "http://www.apache.org/dist/commons/digester/source/${BP}-src.tar.gz" + +DEPENDS += "commons-logging commons-beanutils" +RDEPENDS = "libcommons-logging-java libcommons-beanutils-java" + +CP = "commons-logging commons-beanutils" + +FINDARGS = "-name '*.dtd'" diff --git a/recipes/jakarta-commons/commons-discovery_0.4.bb b/recipes/jakarta-commons/commons-discovery_0.4.bb new file mode 100644 index 0000000000..a16fb5e3fe --- /dev/null +++ b/recipes/jakarta-commons/commons-discovery_0.4.bb @@ -0,0 +1,10 @@ +require jakarta-commons.inc + +DESCRIPTION = "discovering, or finding, implementations for pluggable interfaces" + +SRC_URI = "http://www.apache.org/dist/commons/discovery/source/${BP}-src.tar.gz" + +DEPENDS += "commons-logging" +RDEPENDS = "libcommons-logging-java" + +CP = "commons-logging" diff --git a/recipes/jakarta-commons/commons-el_1.0.bb b/recipes/jakarta-commons/commons-el_1.0.bb new file mode 100644 index 0000000000..03d2a9b88c --- /dev/null +++ b/recipes/jakarta-commons/commons-el_1.0.bb @@ -0,0 +1,14 @@ +require jakarta-commons.inc + +DESCRIPTION = "Implementation of the JSP2.0 Expression Language API" + +SRC_URI = "http://www.apache.org/dist/commons/el/source/${BP}-src.tar.gz" + +DEPENDS += "jsp2.0 servlet2.4" +RDEPENDS = "libjsp2.0-java libservlet2.4-java" + +CP = "jsp-api-2.0 servlet-api-2.4" + +FINDARGS = "\( -name '*.properties' -or -name '*.jj' \)" + + diff --git a/recipes/jakarta-commons/commons-fileupload_1.2.1.bb b/recipes/jakarta-commons/commons-fileupload_1.2.1.bb new file mode 100644 index 0000000000..063a14bac6 --- /dev/null +++ b/recipes/jakarta-commons/commons-fileupload_1.2.1.bb @@ -0,0 +1,14 @@ +require jakarta-commons.inc + +DESCRIPTION = "Robust, high-performance, file upload capability for Java servlets and web applications" + +SRC_URI = "http://www.apache.org/dist/commons/fileupload/source/${BP}-src.tar.gz" + +DEPENDS += "commons-beanutils commons-io servlet2.3" +RDEPENDS = "libcommons-beanutils-java libcommons-io-java libservlet2.3-java" + +CP = "commons-beanutils commons-io servlet-2.3" + +# Exclude portlet stuff from compilation like Debian does. +COMPILE_FINDARGS = "-name '*.java' -not -wholename '*portlet*'" + diff --git a/recipes/jakarta-commons/commons-httpclient_3.1.bb b/recipes/jakarta-commons/commons-httpclient_3.1.bb new file mode 100644 index 0000000000..18e2980888 --- /dev/null +++ b/recipes/jakarta-commons/commons-httpclient_3.1.bb @@ -0,0 +1,13 @@ +require jakarta-commons.inc + +DESCRIPTION = "Efficient, up-to-date, and feature-rich package implementing the client side of the most recent HTTP standards and recommendations" + +SRC_URI = "http://www.apache.org/dist/httpcomponents/commons-httpclient/source/${BP}-src.tar.gz" + +S = "${WORKDIR}/${BP}" + +DEPENDS += "commons-logging commons-codec" +RDEPENDS = "libcommons-logging-java libcommons-codec-java" + +CP = "commons-logging commons-codec" + diff --git a/recipes/jakarta-commons/commons-io_1.4.bb b/recipes/jakarta-commons/commons-io_1.4.bb new file mode 100644 index 0000000000..76fdec829c --- /dev/null +++ b/recipes/jakarta-commons/commons-io_1.4.bb @@ -0,0 +1,5 @@ +require jakarta-commons.inc + +DESCRIPTION = "Java library with utility classes, stream implementations, file filters and endian classes" + +SRC_URI = "http://www.apache.org/dist/commons/io/source/${BP}-src.tar.gz" diff --git a/recipes/jakarta-commons/commons-jxpath_1.3.bb b/recipes/jakarta-commons/commons-jxpath_1.3.bb new file mode 100644 index 0000000000..5fabef04cd --- /dev/null +++ b/recipes/jakarta-commons/commons-jxpath_1.3.bb @@ -0,0 +1,10 @@ +require jakarta-commons.inc + +DESCRIPTION = "JXPath interpreter for Java" + +SRC_URI = "http://www.apache.org/dist/commons/jxpath/source/${BP}-src.tar.gz" + +DEPENDS += "commons-logging commons-collections3 commons-beanutils servlet2.3 jdom" +RDEPENDS = "libcommons-logging-java libcommons-collections3-java libcommons-beanutils-java libservlet2.3-java libjdom-java" + +CP = "commons-logging commons-collections3 commons-beanutils servlet-2.3 jdom" diff --git a/recipes/jakarta-commons/commons-lang_2.4.bb b/recipes/jakarta-commons/commons-lang_2.4.bb new file mode 100644 index 0000000000..2b7e6986aa --- /dev/null +++ b/recipes/jakarta-commons/commons-lang_2.4.bb @@ -0,0 +1,6 @@ +require jakarta-commons.inc + +DESCRIPTION = "Set of Java classes that provide helper methods for the standard java.lang classes" + +SRC_URI = "http://www.apache.org/dist/commons/lang/source/${BP}-src.tar.gz" + diff --git a/recipes/jakarta-commons/commons-net-native_1.4.1.bb b/recipes/jakarta-commons/commons-net-native_1.4.1.bb new file mode 100644 index 0000000000..f1d39ea8c2 --- /dev/null +++ b/recipes/jakarta-commons/commons-net-native_1.4.1.bb @@ -0,0 +1,7 @@ +require commons-net_${PV}.bb + +inherit java-native + +DEPENDS = "fastjar-native oro-native" +RDEPENDS = "" + diff --git a/recipes/jakarta-commons/commons-net_1.4.1.bb b/recipes/jakarta-commons/commons-net_1.4.1.bb new file mode 100644 index 0000000000..4fccea5cdf --- /dev/null +++ b/recipes/jakarta-commons/commons-net_1.4.1.bb @@ -0,0 +1,14 @@ +require jakarta-commons.inc + +DESCRIPTION = "Java Internet protocol suite library" + +SRC_URI = "http://www.apache.org/dist/commons/net/source/${BP}-src.tar.gz" + +S = "${WORKDIR}/${BP}" + +DEPENDS += "oro" +RDEPENDS = "liboro-java" + +CP = "oro" + +MAINSOURCES = "src/java/org" diff --git a/recipes/jakarta-commons/commons-pool_1.4.bb b/recipes/jakarta-commons/commons-pool_1.4.bb new file mode 100644 index 0000000000..152f429916 --- /dev/null +++ b/recipes/jakarta-commons/commons-pool_1.4.bb @@ -0,0 +1,5 @@ +require jakarta-commons.inc + +DESCRIPTION = "Java Object-pooling API" + +SRC_URI = "http://www.apache.org/dist/commons/pool/source/${BP}-src.tar.gz" -- cgit v1.2.3