OSDN Git Service

2013.10.24
[uclinux-h8/uClinux-dist.git] / lib / classpath / external / jsr166 / IMPORTING
1 The code in this directory comes from the JSR 166
2 reference implementation.  The RI consists of a public
3 domain part and a part that is copyright Sun.  We remove
4 the copyrighted code prior to import so as not to taint
5 our source repository.
6
7 To do a new import:
8
9 * Download the RI from the source repository.
10   http://gee.cs.oswego.edu/cgi-bin/viewcvs.cgi/jsr166/src/main/java
11   I clicked on the "download tarball" link.
12
13 * Unpack the tarball in a fresh directory.
14   mkdir tmp; cd tmp; tar zxvvf .../java.tar.gz
15
16 * Clean up the results.
17   .../classpath/scripts/sanitize-jsr166
18
19 * Import these using 'cvs import' into the appropriate subdirectory.
20   The vendor branch name is 'JSR166'.
21
22 * Merge the vendor branch onto the branch you're using (currently
23   the generics branch, but eventually it will be the trunk).
24
25 * Build the result.
26
27 * When it works, check it in.
28
29 In general we try to avoid divergence from upstream as much
30 as possible.  You may need to write new classes or methods in
31 order for the build to succeed.