IMPORTING 1020 B

1234567891011121314151617181920212223242526272829303132
  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. To do a new import:
  7. * Download the RI from the source repository.
  8. http://gee.cs.oswego.edu/cgi-bin/viewcvs.cgi/jsr166/src/main/java
  9. I clicked on the "download tarball" link.
  10. * Unpack the tarball in a fresh directory.
  11. mkdir tmp; cd tmp; tar zxvvf .../java.tar.gz
  12. * Clean up the results.
  13. .../classpath/scripts/sanitize-jsr166
  14. * Import these using 'cvs import' into the appropriate subdirectory.
  15. The vendor branch name is 'JSR166'.
  16. * Merge the vendor branch onto the branch you're using (currently
  17. the generics branch, but eventually it will be the trunk).
  18. * Build the result.
  19. * When it works, check it in.
  20. In general we try to avoid divergence from upstream as much
  21. as possible. You may need to write new classes or methods in
  22. order for the build to succeed.