summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>1999-08-14 22:33:55 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>1999-08-14 22:33:55 +0000
commit95fecd2fa7e003a97fd090a0df236fd4f91eb096 (patch)
tree2ebc0bd9212178ed594f7d3f7e4dab0f8d18da60
parent880f7ea13b460eba3d71c2cb49b0ee758bdfc08c (diff)
Notes
-rw-r--r--contrib/bison/FREEBSD-Xlist12
-rw-r--r--contrib/bison/FREEBSD-upgrade41
2 files changed, 53 insertions, 0 deletions
diff --git a/contrib/bison/FREEBSD-Xlist b/contrib/bison/FREEBSD-Xlist
new file mode 100644
index 000000000000..c8a261aa0e45
--- /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 000000000000..de7358cefe24
--- /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