diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2019-05-20 00:00:38 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2019-05-20 00:01:33 +0200 |
commit | 2f28ec399e41bf4239e92d8ff36073823a01c796 (patch) | |
tree | 2a2c22b858fabacba6a51dfecf27309ae06651a0 /kde-misc/kdiff3/files | |
parent | kde-misc/kdiff3: 1.8.1 amd64 stable (diff) | |
download | gentoo-2f28ec399e41bf4239e92d8ff36073823a01c796.tar.gz gentoo-2f28ec399e41bf4239e92d8ff36073823a01c796.tar.bz2 gentoo-2f28ec399e41bf4239e92d8ff36073823a01c796.zip |
kde-misc/kdiff3: Drop 0.9.98_p20170219-r1
Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-misc/kdiff3/files')
-rw-r--r-- | kde-misc/kdiff3/files/kdiff3-0.9.98_p20170219-cli-args.patch | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/kde-misc/kdiff3/files/kdiff3-0.9.98_p20170219-cli-args.patch b/kde-misc/kdiff3/files/kdiff3-0.9.98_p20170219-cli-args.patch deleted file mode 100644 index 3312b504e58a..000000000000 --- a/kde-misc/kdiff3/files/kdiff3-0.9.98_p20170219-cli-args.patch +++ /dev/null @@ -1,51 +0,0 @@ -commit b849851d3317903a8ab7c040966921384d9e6508 -Author: Peter Urbanec <git.user@urbanec.net> -Date: Thu May 11 16:09:12 2017 +1000 - - Implement most of the missing command line options - - A number of command line options were missing, which caused kdiff3 from - failing to work properly when used as the mergetool in git. In particular, - git relies on the -L group of options and without those it would fail. - - Signed-off-by: Peter Urbanec <git.user@urbanec.net> - -diff --git a/src/main.cpp b/src/main.cpp -index 3549c92..fed486d 100644 ---- a/src/main.cpp -+++ b/src/main.cpp -@@ -67,24 +67,23 @@ int main(int argc, char *argv[]) - parser.addOption(QCommandLineOption(QStringList()<<QStringLiteral("b")<<QStringLiteral("base"),i18n("Explicit base file. For compatibility with certain tools."),QStringLiteral("file"))); - parser.addOption(QCommandLineOption(QStringList()<<QStringLiteral("o")<<QStringLiteral("out")<<QStringLiteral("output"),i18n("Output file. Implies -m."),QStringLiteral("file"))); - parser.addOption(QCommandLineOption(QStringLiteral("auto"),i18n("No GUI if all conflicts are auto-solvable. Needs -o file."))); -+ parser.addOption(QCommandLineOption(QStringLiteral("qall"),i18n("Don't solve conflicts automatically."))); -+ parser.addOption(QCommandLineOption(QStringLiteral("L1"),i18n("Visible name replacement for input file 1 (base)."),QStringLiteral("alias1"))); -+ parser.addOption(QCommandLineOption(QStringLiteral("L2"),i18n("Visible name replacement for input file 2."),QStringLiteral("alias2"))); -+ parser.addOption(QCommandLineOption(QStringLiteral("L3"),i18n("Visible name replacement for input file 3."),QStringLiteral("alias3"))); -+ parser.addOption(QCommandLineOption(QStringList()<<QStringLiteral("L")<<QStringLiteral("fname"),i18n("Alternative visible name replacement. Supply this once for every input."),QStringLiteral("alias"))); -+ parser.addOption(QCommandLineOption(QStringLiteral("cs"),i18n("Override a config setting. Use once for every setting. E.g.: --cs \"AutoAdvance=1\""),QStringLiteral("string"))); -+ parser.addOption(QCommandLineOption(QStringLiteral("confighelp"),i18n("Show list of config settings and current values."))); - parser.addPositionalArgument(QStringLiteral("file1"), i18n("File1 to open (base, if not specified via --base).")); - parser.addPositionalArgument(QStringLiteral("file2"), i18n("File2 to open.")); - parser.addPositionalArgument(QStringLiteral("file3"), i18n("File3 to open (optional).")); - -- aboutData.setupCommandLine(&parser); -- parser.process(app); -- aboutData.processCommandLine(&parser); -- - // TODO KF5 --// options.add( "qall", ki18n("Don't solve conflicts automatically.") ); --// options.add( "L1 alias1", ki18n("Visible name replacement for input file 1 (base).") ); --// options.add( "L2 alias2", ki18n("Visible name replacement for input file 2.") ); --// options.add( "L3 alias3", ki18n("Visible name replacement for input file 3.") ); --// options.add( "L" ).add( "fname alias", ki18n("Alternative visible name replacement. Supply this once for every input.") ); --// options.add( "cs string", ki18n("Override a config setting. Use once for every setting. E.g.: --cs \"AutoAdvance=1\"") ); --// options.add( "confighelp", ki18n("Show list of config settings and current values.") ); - // options.add( "config file", ki18n("Use a different config file.") ); - -+ aboutData.setupCommandLine(&parser); -+ parser.process(app); -+ aboutData.processCommandLine(&parser); - - KDiff3Shell *p = new KDiff3Shell(&parser); - p->show(); |