Update of /cvsroot/fink/experimental/rangerrick/finkinfo/libs
In directory sc8-pr-cvs1:/tmp/cvs-serv13319

Added Files:
        commons-beanutils-1.5-1.info commons-beanutils-1.5-1.patch 
        commons-collections-2.1-1.info commons-collections-2.1-1.patch 
        commons-logging-1.0.2-1.info commons-logging-1.0.2-1.patch 
Removed Files:
        commons-beanutils-1.4.1-1.info commons-beanutils-1.4.1-1.patch 
        commons-collections-2.0-1.info commons-collections-2.0-1.patch 
        commons-logging-1.0.1-1.info commons-logging-1.0.1-1.patch 
Log Message:
no workie, committing so I can play with them on my laptop

--- NEW FILE: commons-beanutils-1.5-1.info ---
Package: commons-beanutils
Version: 1.5
Revision: 1
Source: 
http://jakarta.apache.org/builds/jakarta-commons/release/%n/v%v/%n-%v-src.tar.gz
SourceDirectory: %n-%v-src/beanutils
PatchScript: sed 's:@PREFIX@:%p:g' <%a/%f.patch | patch -p1
CompileScript: /usr/bin/true
JarFiles: lib/*.jar
InstallScript: <<
 mkdir -p %i/share/doc/%n
 cp -R index.html doc/* %i/share/doc/%n/
 find %i/share/doc/%n -type d -exec chmod 755 {} \;
 find %i/share/doc/%n -type f -exec chmod 644 {} \;
 mkdir -p %i/etc/profile.d
 install -m 755 scripts/%n.sh %i/etc/profile.d/
 install -m 755 scripts/%n.csh %i/etc/profile.d/
<<
DocFiles: LICENSE
Homepage: http://java.sun.com/products/JavaManagement/
Maintainer: Benjamin Reed <[EMAIL PROTECTED]>
Description: Java Management Extensions
DescDetail: <<
Java Management Extensions (JMX) represent a universal, open technology for
management, ready to be deployed across all industries, wherever management
is or will be needed. By design, this new standard is suitable for adapting
legacy systems, implementing new management solutions and plugging into those
of the future. 
<<
DescPort: <<
Parts of the JMX distribution are from the Java2 Enterprise Edition and are not
available in source form.
<<
License: Restrictive

--- NEW FILE: commons-beanutils-1.5-1.patch ---
diff -uNrb commons-collections-old/scripts/commons-collections.csh 
commons-collections/scripts/commons-collections.csh
--- commons-collections-old/scripts/commons-collections.csh     Wed Dec 31 19:00:00 
1969
+++ commons-collections/scripts/commons-collections.csh Sat Jan  5 18:46:09 2002
@@ -0,0 +1,8 @@
+#!/bin/csh
+set chemin = "@PREFIX@/share/java/commons-collections/commons-collections.jar"
+if ($?CLASSPATH) then
+       setenv CLASSPATH "${CLASSPATH}:$chemin"
+else
+       setenv CLASSPATH "$chemin"
+endif
+unset chemin
diff -uNrb commons-collections-old/scripts/commons-collections.sh 
commons-collections/scripts/commons-collections.sh
--- commons-collections-old/scripts/commons-collections.sh      Wed Dec 31 19:00:00 
1969
+++ commons-collections/scripts/commons-collections.sh  Sat Jan  5 18:46:20 2002
@@ -0,0 +1,9 @@
+#!/bin/sh
+chemin="@PREFIX@/share/java/commons-collections/commons-collections.jar"
+if (test "$CLASSPATH")
+then
+       export  CLASSPATH="${CLASSPATH}:$chemin"
+else
+       export  CLASSPATH="$chemin"
+fi
+

--- NEW FILE: commons-collections-2.1-1.info ---
Package: commons-collections
Version: 2.1
Revision: 1
BuildDepends: ant
Source: 
http://jakarta.apache.org/builds/jakarta-commons/release/%n/v%v/%n-%v-src.tar.gz
SourceDirectory: %n-%v-src
PatchScript: sed 's:@PREFIX@:%p:g' <%a/%f.patch | patch -p1
CompileScript: ant dist
JarFiles: dist/*.jar
InstallScript: <<
 mkdir -p %i/share/doc/%n
 ( cd dist/docs; tar -cf - . | (cd %i/share/doc/%n; tar -xf -) )
 find %i/share/doc/%n -type d -exec chmod 755 {} \;
 find %i/share/doc/%n -type f -exec chmod 644 {} \;
 mkdir -p %i/etc/profile.d
 install -m 755 scripts/%n.sh %i/etc/profile.d/
 install -m 755 scripts/%n.csh %i/etc/profile.d/
<<
DocFiles: LICENSE PROPOSAL.html README.txt RELEASE-NOTES-2.0.html STATUS.html
Homepage: 
Maintainer: Benjamin Reed <[EMAIL PROTECTED]>
Description: Java Collections From The Apache Jakarta Project
DescDetail: <<
The introduction of the Collections API by Sun in JDK 1.2 has been a boon
to quick and effective Java programming.  Ready access to powerful data
structures has accelerated development by reducing the need for custom
container classes around each core object.  Most Java2 APIs are significantly
easier to use because of the Collections API.

However, there are certain holes left unfilled by Sun's implementations, and
the Jakarta-Commons Collections Component strives to fulfill them.  Among the
features of this package are:

* Special-purpose implementations of Lists and Maps for fast access
* Adapter classes from Java1-style containers (arrays, enumerations) to
  Java2-style collections.
* Methods to test or create typical set-theory properties of collections such
  as union, intersection, and closure.
<<
License: BSD

--- NEW FILE: commons-collections-2.1-1.patch ---
diff -uNrb commons-collections-old/scripts/commons-collections.csh 
commons-collections/scripts/commons-collections.csh
--- commons-collections-old/scripts/commons-collections.csh     Wed Dec 31 19:00:00 
1969
+++ commons-collections/scripts/commons-collections.csh Sat Jan  5 18:46:09 2002
@@ -0,0 +1,8 @@
+#!/bin/csh
+set chemin = "@PREFIX@/share/java/commons-collections/commons-collections.jar"
+if ($?CLASSPATH) then
+       setenv CLASSPATH "${CLASSPATH}:$chemin"
+else
+       setenv CLASSPATH "$chemin"
+endif
+unset chemin
diff -uNrb commons-collections-old/scripts/commons-collections.sh 
commons-collections/scripts/commons-collections.sh
--- commons-collections-old/scripts/commons-collections.sh      Wed Dec 31 19:00:00 
1969
+++ commons-collections/scripts/commons-collections.sh  Sat Jan  5 18:46:20 2002
@@ -0,0 +1,9 @@
+#!/bin/sh
+chemin="@PREFIX@/share/java/commons-collections/commons-collections.jar"
+if (test "$CLASSPATH")
+then
+       export  CLASSPATH="${CLASSPATH}:$chemin"
+else
+       export  CLASSPATH="$chemin"
+fi
+

--- NEW FILE: commons-logging-1.0.2-1.info ---
Package: commons-logging
Version: 1.0.2
Revision: 1
BuildDepends: ant
Source: 
http://jakarta.apache.org/builds/jakarta-commons/release/%n/v%v/%n-%v-src.tar.gz
SourceDirectory: %n-%v-src/logging
PatchScript: sed 's:@PREFIX@:%p:g' <%a/%f.patch | patch -p1
CompileScript: ant dist
JarFiles: dist/*.jar
InstallScript: <<
 mkdir -p %i/share/doc/%n
 ( cd dist/docs; tar -cf - . | (cd %i/share/doc/%n; tar -xf -) )
 find %i/share/doc/%n -type d -exec chmod 755 {} \;
 find %i/share/doc/%n -type f -exec chmod 644 {} \;
 mkdir -p %i/etc/profile.d
 install -m 755 scripts/%n.sh %i/etc/profile.d/
 install -m 755 scripts/%n.csh %i/etc/profile.d/
<<
DocFiles: LICENSE.txt PROPOSAL.html RELEASE-NOTES.txt STATUS.html
Homepage: http://jakarta.apache.org/commons/logging.html
Maintainer: Benjamin Reed <[EMAIL PROTECTED]>
Description: Java Logging From The Apache Jakarta Project
DescDetail: <<
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.
<<
License: BSD

--- NEW FILE: commons-logging-1.0.2-1.patch ---
diff -uNrb commons-collections-old/scripts/commons-collections.csh 
commons-collections/scripts/commons-collections.csh
--- commons-collections-old/scripts/commons-collections.csh     Wed Dec 31 19:00:00 
1969
+++ commons-collections/scripts/commons-collections.csh Sat Jan  5 18:46:09 2002
@@ -0,0 +1,8 @@
+#!/bin/csh
+set chemin = "@PREFIX@/share/java/commons-collections/commons-collections.jar"
+if ($?CLASSPATH) then
+       setenv CLASSPATH "${CLASSPATH}:$chemin"
+else
+       setenv CLASSPATH "$chemin"
+endif
+unset chemin
diff -uNrb commons-collections-old/scripts/commons-collections.sh 
commons-collections/scripts/commons-collections.sh
--- commons-collections-old/scripts/commons-collections.sh      Wed Dec 31 19:00:00 
1969
+++ commons-collections/scripts/commons-collections.sh  Sat Jan  5 18:46:20 2002
@@ -0,0 +1,9 @@
+#!/bin/sh
+chemin="@PREFIX@/share/java/commons-collections/commons-collections.jar"
+if (test "$CLASSPATH")
+then
+       export  CLASSPATH="${CLASSPATH}:$chemin"
+else
+       export  CLASSPATH="$chemin"
+fi
+

--- commons-beanutils-1.4.1-1.info DELETED ---

--- commons-beanutils-1.4.1-1.patch DELETED ---

--- commons-collections-2.0-1.info DELETED ---

--- commons-collections-2.0-1.patch DELETED ---

--- commons-logging-1.0.1-1.info DELETED ---

--- commons-logging-1.0.1-1.patch DELETED ---



-------------------------------------------------------
This SF.NET email is sponsored by: Geek Gift Procrastinating?
Get the perfect geek gift now!  Before the Holidays pass you by.
T H I N K G E E K . C O M      http://www.thinkgeek.com/sf/
_______________________________________________
Fink-commits mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-commits

Reply via email to