* relocated current package database to the trunk of the package sub-project

git-svn-id: svn://svn.opensde.net/opensde/package/trunk@20072 10447126-35f2-4685-b0cf-6dd780d3921f
This commit is contained in:
Alejandro Mery
2007-01-27 18:03:57 +00:00
commit 12b79fecfa
8806 changed files with 372084 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
[TIMESTAMP] 1133840758 Tue Dec 6 04:45:58 2005
[BUILDTIME] 5 (5) ERROR
[SIZE] 0.01 MB, 7 files
[DEP] 00-dirtree
[DEP] bash
[DEP] bzip2
[DEP] coreutils
[DEP] diffutils
[DEP] gcc
[DEP] grep
[DEP] java-dirtree
[DEP] patch
[DEP] sed
[DEP] sysfiles
[DEP] tar
+25
View File
@@ -0,0 +1,25 @@
# --- T2-COPYRIGHT-NOTE-BEGIN ---
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
#
# T2 SDE: package/.../commons-codec/commons-codec.conf
# Copyright (C) 2004 - 2006 The T2 SDE Project
#
# More information can be found in the files COPYING and README.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License. A copy of the
# GNU General Public License can be found in the file COPYING.
# --- T2-COPYRIGHT-NOTE-END ---
buildtarget="jar javadoc"
buildjardir=dist
builddocdir=dist/docs
cc-custextract() {
echo "Extracting $1 ($taropt) ... "
mkdir $pkg-$ver
tar -v $taropt $1 -C $pkg-$ver | sed 's,^,$pkg-$ver/,' > untar.txt
}
custextract=cc-custextract
+35
View File
@@ -0,0 +1,35 @@
[COPY] --- T2-COPYRIGHT-NOTE-BEGIN ---
[COPY] This copyright note is auto-generated by ./scripts/Create-CopyPatch.
[COPY]
[COPY] T2 SDE: package/.../commons-codec/commons-codec.desc
[COPY] Copyright (C) 2004 - 2006 The T2 SDE Project
[COPY]
[COPY] More information can be found in the files COPYING and README.
[COPY]
[COPY] This program is free software; you can redistribute it and/or modify
[COPY] it under the terms of the GNU General Public License as published by
[COPY] the Free Software Foundation; version 2 of the License. A copy of the
[COPY] GNU General Public License can be found in the file COPYING.
[COPY] --- T2-COPYRIGHT-NOTE-END ---
[I] Jakarta Commons Codec
[T] Commons Codec provides implementations of common encoders and
[T] decoders such as Base64, Hex, various phonetic encodings, and
[T] URLs.
[U] http://jakarta.apache.org/commons/codec/
[A] Apache Jakarta Commons team
[M] Minto van der Sluis <Minto@MultiMach.com>
[C] extra/development
[L] OpenSource
[S] Stable
[V] 1.3
[P] X -----5---9 800.100
[O] . $base/package/*/*/java-conf.in BUILD_TYPE=ANT
[D] 3002247071 commons-codec-1.3-src.tar.gz http://www.eu.apache.org/dist/jakarta/commons/codec/source/
+34
View File
@@ -0,0 +1,34 @@
# --- T2-COPYRIGHT-NOTE-BEGIN ---
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
#
# T2 SDE: package/.../commons-codec/licensedir.patch
# Copyright (C) 2004 - 2006 The T2 SDE Project
#
# More information can be found in the files COPYING and README.
#
# This patch file is dual-licensed. It is available under the license the
# patched project is licensed under, as long as it is an OpenSource license
# as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
# of the GNU General Public License as published by the Free Software
# Foundation; either version 2 of the License, or (at your option) any later
# version.
# --- T2-COPYRIGHT-NOTE-END ---
--- commons-codec-1.3/build.xml 2004-05-24 01:30:33.000000000 +0200
+++ commons-codec-1.3-patch/build.xml 2005-07-26 21:56:39.104650128 +0200
@@ -90,14 +90,14 @@
</target>
<target name="dist" depends="compile,javadoc" description="Create binary distribution">
<mkdir dir="${dist.home}"/>
- <copy file="../LICENSE" todir="${dist.home}"/>
+ <copy file="LICENSE.txt" todir="${dist.home}"/>
<copy file="${basedir}/RELEASE-NOTES.txt" todir="${dist.home}"/>
<antcall target="jar"/>
</target>
<target name="jar" depends="compile" description="Create jar">
<mkdir dir="${dist.home}"/>
<mkdir dir="${build.home}/classes/META-INF"/>
- <copy file="../LICENSE" tofile="${build.home}/classes/META-INF/LICENSE.txt"/>
+ <copy file="LICENSE.txt" tofile="${build.home}/classes/META-INF/LICENSE.txt"/>
<jar jarfile="${dist.home}/${final.name}.jar" basedir="${build.home}/classes" manifest="${build.home}/conf/MANIFEST.MF"/>
</target>
<target name="install-jar" depends="jar" description="--> Installs jar file in ${lib.repo}">