diff options
author | obrien <obrien@FreeBSD.org> | 1999-08-14 22:33:55 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 1999-08-14 22:33:55 +0000 |
commit | 335166fc5554b4d11648ade585693044e9a72e6b (patch) | |
tree | 6d05bcc5fa009210af6092eadde46d20d0b2c779 | |
parent | d3366f3614b2562d53c4f804642d2b94932d1754 (diff) | |
download | FreeBSD-src-335166fc5554b4d11648ade585693044e9a72e6b.zip FreeBSD-src-335166fc5554b4d11648ade585693044e9a72e6b.tar.gz |
Document how I imported this.
-rw-r--r-- | contrib/bison/FREEBSD-Xlist | 12 | ||||
-rw-r--r-- | contrib/bison/FREEBSD-upgrade | 41 |
2 files changed, 53 insertions, 0 deletions
diff --git a/contrib/bison/FREEBSD-Xlist b/contrib/bison/FREEBSD-Xlist new file mode 100644 index 0000000..c8a261a --- /dev/null +++ b/contrib/bison/FREEBSD-Xlist @@ -0,0 +1,12 @@ +*po +*intl +*ABOUT-NLS +*ChangeLog.* +*FAQ +*OChangeLog* +*ansi2knr.[1c] +*bison.info +*mdate-sh +*missing +*stamp-h.in +*texinfo.tex diff --git a/contrib/bison/FREEBSD-upgrade b/contrib/bison/FREEBSD-upgrade new file mode 100644 index 0000000..de7358c --- /dev/null +++ b/contrib/bison/FREEBSD-upgrade @@ -0,0 +1,41 @@ +# ex:ts=8 + +GNU Bison 1.28 + +For the import of Bison several directories and files were removed. +The stripped down version was created using FreeBSD-Xlist during extraction: + + tar -X FREEBSD-Xlist -xvzf bison-1.28.tar.gz + +Bison 1.28 changes the directory structure from previous releases. +In addition, v1.25 seems to have had a spammed ChangeLog. Bison v1.26 fixed +this. Thus the reason 1.28's ChangeLog's are hard to corelate with v1.25's. + +To reduce the size of import, and to make it so the changes from 1.25 and +1.28 are easy to determine, the 1.28 directory structure is munged before +import: + + cd bison-1.28 + mv src/ChangeLog ChangeLog.src + mv src/bison.s1 bison.simple + mv src/* . + rmdir src + mv doc/ChangeLog ChangeLog.doc + mv -i doc/* . # answer "no" to all questions + rm -rf doc + + +Imported by: + + cvs import -ko -m 'Virgin import of GNU Bison 1.28' \ + src/contrib/bison FSF v1_28 + + +To make local changes to Bison, simply patch and commit to the main +branch (aka HEAD). Never make local changes on the vendor (FSF) branch. + +All local changes should be submitted to the FSF for inclusion in the +next vendor release. + +obrien@NUXI.com +14-Aug-1999 |