summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Trygve Kalleberg <karltk@gentoo.org>2004-03-28 18:04:06 +0000
committerKarl Trygve Kalleberg <karltk@gentoo.org>2004-03-28 18:04:06 +0000
commitd83c77ae4050e5f046a0b6234c4ae5a654046d59 (patch)
tree67347b5e87b7e103e2452a717e3322ce87971d22 /dev-util/astyle/files
parentfixed for gtk2.4 (#45510) (Manifest recommit) (diff)
downloadgentoo-2-d83c77ae4050e5f046a0b6234c4ae5a654046d59.tar.gz
gentoo-2-d83c77ae4050e5f046a0b6234c4ae5a654046d59.tar.bz2
gentoo-2-d83c77ae4050e5f046a0b6234c4ae5a654046d59.zip
Fixes #43091
Diffstat (limited to 'dev-util/astyle/files')
-rw-r--r--dev-util/astyle/files/cmd-line-fix.diff139
-rw-r--r--dev-util/astyle/files/digest-astyle-1.15.3-r11
2 files changed, 140 insertions, 0 deletions
diff --git a/dev-util/astyle/files/cmd-line-fix.diff b/dev-util/astyle/files/cmd-line-fix.diff
new file mode 100644
index 000000000000..353dfa8d4108
--- /dev/null
+++ b/dev-util/astyle/files/cmd-line-fix.diff
@@ -0,0 +1,139 @@
+--- astyle_main.cpp 2002-03-07 08:22:30.000000000 +0100
++++ /root/astyle_main.cpp.fixed 2004-02-25 22:05:13.841700600 +0100
+@@ -267,22 +267,22 @@
+ {
+ manuallySetJavaStyle(formatter);
+ }
+- else if ( IS_OPTIONS(arg, "t", "indent=tab=") )
+- {
+- int spaceNum = 4;
+- string spaceNumParam = GET_PARAMS(arg, "t", "indent=tab=");
+- if (spaceNumParam.length() > 0)
+- spaceNum = atoi(spaceNumParam.c_str());
+- formatter.setTabIndentation(spaceNum, false);
+- }
+- else if ( IS_OPTIONS(arg, "T", "force-indent=tab=") )
+- {
+- int spaceNum = 4;
+- string spaceNumParam = GET_PARAMS(arg, "T", "force-indent=tab=");
+- if (spaceNumParam.length() > 0)
+- spaceNum = atoi(spaceNumParam.c_str());
+- formatter.setTabIndentation(spaceNum, true);
+- }
++ else if ( IS_PARAM_OPTIONS(arg, "t", "indent=tab=") )
++ {
++ int spaceNum = 4;
++ string spaceNumParam = GET_PARAMS(arg, "t", "indent=tab=");
++ if (spaceNumParam.length() > 0)
++ spaceNum = atoi(spaceNumParam.c_str());
++ formatter.setTabIndentation(spaceNum, false);
++ }
++ else if ( IS_PARAM_OPTIONS(arg, "T", "force-indent=tab=") )
++ {
++ int spaceNum = 4;
++ string spaceNumParam = GET_PARAMS(arg, "T", "force-indent=tab=");
++ if (spaceNumParam.length() > 0)
++ spaceNum = atoi(spaceNumParam.c_str());
++ formatter.setTabIndentation(spaceNum, true);
++ }
+ else if ( IS_PARAM_OPTION(arg, "indent=tab") )
+ {
+ formatter.setTabIndentation(4);
+@@ -343,10 +343,10 @@
+ {
+ formatter.setLabelIndent(true);
+ }
+- else if ( IS_OPTION(arg, "brackets=break-closing-headers") )
+- {
+- formatter.setBreakClosingHeaderBracketsMode(true);
+- }
++ else if ( IS_OPTION(arg, "brackets=break-closing-headers") )
++ {
++ formatter.setBreakClosingHeaderBracketsMode(true);
++ }
+ else if ( IS_OPTIONS(arg, "b", "brackets=break") )
+ {
+ formatter.setBracketFormatMode(BREAK_MODE);
+@@ -400,10 +400,10 @@
+ else if (IS_OPTION(arg, "break-blocks"))
+ {
+ formatter.setBreakBlocksMode(true);
+- }
+- else if (IS_OPTION(arg, "break-elseifs"))
+- {
+- formatter.setBreakElseIfsMode(true);
++ }
++ else if (IS_OPTION(arg, "break-elseifs"))
++ {
++ formatter.setBreakElseIfsMode(true);
+ }
+ else if ( IS_OPTIONS(arg, "X", "errors-to-standard-output") )
+ {
+@@ -528,20 +528,20 @@
+ (*_err) << " -j OR --mode=java\n";
+ (*_err) << " Indent a Java(TM) source file\n";
+ (*_err) << endl;
+- (*_err) << " -s OR -s# OR --indent=spaces=#\n";
+- (*_err) << " Indent using # spaces per indent. Not specifying #\n" ;
+- (*_err) << " will result in a default of 4 spacec per indent.\n" ;
+- (*_err) << endl;
++ (*_err) << " -s OR -s# OR --indent=spaces=#\n";
++ (*_err) << " Indent using # spaces per indent. Not specifying #\n" ;
++ (*_err) << " will result in a default of 4 spacec per indent.\n" ;
++ (*_err) << endl;
+ (*_err) << " -t OR -t# OR --indent=tab=#\n";
+ (*_err) << " Indent using tab characters, assuming that each\n";
+ (*_err) << " tab is # spaces long. Not specifying # will result\n";
+ (*_err) << " in a default assumption of 4 spaces per tab.\n" ;
+- (*_err) << endl;
+- (*_err) << " -T# OR --force-indent=tab=#";
+- (*_err) << " Indent using tab characters, assuming that each\n";
+- (*_err) << " tab is # spaces long. Force tabs to be used in areas\n";
+- (*_err) << " Astyle would prefer to use spaces.\n" ;
+- (*_err) << endl;
++ (*_err) << endl;
++ (*_err) << " -T# OR --force-indent=tab=#";
++ (*_err) << " Indent using tab characters, assuming that each\n";
++ (*_err) << " tab is # spaces long. Force tabs to be used in areas\n";
++ (*_err) << " Astyle would prefer to use spaces.\n" ;
++ (*_err) << endl;
+ (*_err) << " -C OR --indent-classes\n";
+ (*_err) << " Indent 'class' blocks, so that the inner 'public:',\n";
+ (*_err) << " 'protected:' and 'private: headers are indented in\n";
+@@ -596,10 +596,10 @@
+ (*_err) << " Break definition-block brackets and attach command-block\n";
+ (*_err) << " brackets.\n";
+ (*_err) << endl;
+- (*_err) << " --brackets=break-closing-headers\n";
+- (*_err) << " Break brackets before closing headers (e.g. 'else', 'catch', ..).\n";
+- (*_err) << " Should be appended to --brackets=attach or --brackets=linux.\n";
+- (*_err) << endl;
++ (*_err) << " --brackets=break-closing-headers\n";
++ (*_err) << " Break brackets before closing headers (e.g. 'else', 'catch', ..).\n";
++ (*_err) << " Should be appended to --brackets=attach or --brackets=linux.\n";
++ (*_err) << endl;
+ (*_err) << " -o OR --one-line=keep-statements\n";
+ (*_err) << " Don't break lines containing multiple statements into\n";
+ (*_err) << " multiple single-statement lines.\n";
+@@ -626,9 +626,9 @@
+ (*_err) << " Like --break-blocks, except also insert empty lines \n";
+ (*_err) << " around closing headers (e.g. 'else', 'catch', ...).\n";
+ (*_err) << endl;
+- (*_err) << " --break-elseifs\n";
+- (*_err) << " Break 'else if()' statements into two different lines.\n";
+- (*_err) << endl;
++ (*_err) << " --break-elseifs\n";
++ (*_err) << " Break 'else if()' statements into two different lines.\n";
++ (*_err) << endl;
+ (*_err) << "Other options:\n";
+ (*_err) << "-------------\n";
+ (*_err) << " --suffix=####\n";
+@@ -762,7 +762,7 @@
+
+ if (shouldPrintHelp)
+ {
+- printHelp();
++ printHelp();
+ exit(1);
+ }
+
diff --git a/dev-util/astyle/files/digest-astyle-1.15.3-r1 b/dev-util/astyle/files/digest-astyle-1.15.3-r1
new file mode 100644
index 000000000000..ec517fbb7f79
--- /dev/null
+++ b/dev-util/astyle/files/digest-astyle-1.15.3-r1
@@ -0,0 +1 @@
+MD5 4d8adbcd8703aea00fcd2670be090ddd astyle_1.15.3.zip 60880