diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /dev-util/cccc/files | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.xz |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'dev-util/cccc/files')
-rw-r--r-- | dev-util/cccc/files/cccc-3.1.4-gcc-4.7.patch | 11 | ||||
-rw-r--r-- | dev-util/cccc/files/cccc-3.1.4-unbundle-pccts.patch | 47 |
2 files changed, 58 insertions, 0 deletions
diff --git a/dev-util/cccc/files/cccc-3.1.4-gcc-4.7.patch b/dev-util/cccc/files/cccc-3.1.4-gcc-4.7.patch new file mode 100644 index 00000000000..dcbe7aa26b4 --- /dev/null +++ b/dev-util/cccc/files/cccc-3.1.4-gcc-4.7.patch @@ -0,0 +1,11 @@ +--- cccc/cccc_tbl.cc ++++ cccc/cccc_tbl.cc +@@ -96,7 +96,7 @@ + typename map_t::iterator value_iterator=map_t::find(old_item_ptr->key()); + if(value_iterator!=map_t::end()) + { +- erase(value_iterator); ++ this->erase(value_iterator); + retval=true; + } + return retval; diff --git a/dev-util/cccc/files/cccc-3.1.4-unbundle-pccts.patch b/dev-util/cccc/files/cccc-3.1.4-unbundle-pccts.patch new file mode 100644 index 00000000000..d5fed684df0 --- /dev/null +++ b/dev-util/cccc/files/cccc-3.1.4-unbundle-pccts.patch @@ -0,0 +1,47 @@ +--- cccc/posixgcc.mak ++++ cccc/posixgcc.mak +@@ -24,9 +24,11 @@ + + PATHSEP=/ + ++PCCTS_INC = /usr/include/pccts/ ++ + CCC=g++ + LD=g++ +-CFLAGS=-c -I../pccts/h $(CFLAGS_DEBUG) -x c++ ++CFLAGS=-c -I$(PCCTS_INC) $(CFLAGS_DEBUG) -x c++ + C_OFLAG=-o + LDFLAGS=$(LDFLAGS_DEBUG) + LD_OFLAG=-o + +--- cccc/rules.mak ++++ cccc/rules.mak +@@ -39,8 +39,8 @@ + + # locations and flags for antlr and dlg (don't change the flags unless you + # understand PCCTS) +-ANTLR = $(PCCTS_BIN)$(PATHSEP)antlr +-DLG = $(PCCTS_BIN)$(PATHSEP)dlg ++ANTLR = antlr ++DLG = dlg + # Flags for ANTLR: + # -CC = generate C++ output + # -k 2 = use at least 2 tokens of lookahead +@@ -164,14 +164,14 @@ + # to cover this is to add explicit rules for the three + # PCCTS support files which give rise to linkable object + # files. +-AParser.$(OBJEXT): $(PCCTS_H)$(PATHSEP)AParser.cpp +- $(CCC) $(CFLAGS) $(PCCTS_H)$(PATHSEP)AParser.cpp $(C_OFLAG)$*.$(OBJEXT) ++AParser.$(OBJEXT): $(PCCTS_INC)$(PATHSEP)AParser.cpp ++ $(CCC) $(CFLAGS) $(PCCTS_INC)$(PATHSEP)AParser.cpp $(C_OFLAG)$*.$(OBJEXT) + +-DLexerBase.$(OBJEXT): $(PCCTS_H)$(PATHSEP)DLexerBase.cpp +- $(CCC) $(CFLAGS) $(PCCTS_H)$(PATHSEP)DLexerBase.cpp $(C_OFLAG)$*.$(OBJEXT) ++DLexerBase.$(OBJEXT): $(PCCTS_INC)$(PATHSEP)DLexerBase.cpp ++ $(CCC) $(CFLAGS) $(PCCTS_INC)$(PATHSEP)DLexerBase.cpp $(C_OFLAG)$*.$(OBJEXT) + +-ATokenBuffer.$(OBJEXT): $(PCCTS_H)$(PATHSEP)ATokenBuffer.cpp +- $(CCC) $(CFLAGS) $(PCCTS_H)$(PATHSEP)ATokenBuffer.cpp $(C_OFLAG)$*.$(OBJEXT) ++ATokenBuffer.$(OBJEXT): $(PCCTS_INC)$(PATHSEP)ATokenBuffer.cpp ++ $(CCC) $(CFLAGS) $(PCCTS_INC)$(PATHSEP)ATokenBuffer.cpp $(C_OFLAG)$*.$(OBJEXT) |