summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* - quilt/pop.in: get rid of tac.Andreas Gruenbacher2005-09-156-76/+68
|
* - quilt/mail.in: Remove stray getopt line. If --subject is given,Andreas Gruenbacher2005-09-146-54/+81
| | | | actually fill in the subject in the message template.
* - Makefile.in: Use @BASH@ instead of bash (John Vandenberg).Jean Delvare2005-09-142-5/+11
| | | | | - Makefile.in: Use `foo` instead of $$(foo) for compatibility. - Makefile.in: Drop call to chmod --reference (Gary V. Vaughan).
* - quilt/annotate.in: New option "-p patch" to stop checking for changesJean Delvare2005-09-134-5/+74
| | | | | | at the specified rather than the topmost patch. - bash_completion: Support the new -p option. - test/annotation.test: Test the new -p option.
* - quilt/annotate.in: Rework the annotation algorithm (AndreasJean Delvare2005-09-131-20/+15
| | | | Gruenbacher). The new code is shorter and faster.
* - quilt/annotate.in: Update help text to mention that only applied patchesJean Delvare2005-09-112-2/+9
| | | | | will show (Andreas Gruenbacher). Optimize by using applied_patches() instead of cat_series().
* - Add a missing dependency.Andreas Gruenbacher2005-09-111-1/+1
|
* - test/*.test: Fix sed compatibility issues: do not use inplace (-i); doJean Delvare2005-09-098-25/+38
| | | | | | not filter out tabs in patches, it's no more needed now that --no-timestamps is used; do not use the "a" command. Based on a patch by John Vandenberg.
* - scripts/patchfns.in: New quilt_command function for running anotherJean Delvare2005-09-094-3/+20
| | | | | | quilt command. - quilt/delete.in, quilt/edit.in: Use the new quilt_command function. Patch from Joe Green.
* - quilt/delete.in: Fix the quilt pop invocation when attempting to deleteJean Delvare2005-09-072-1/+6
| | | | the top patch (default). Patch by Joe Green.
* - Japanese translation update contributed by Satoru Takeuchi and YasushiJean Delvare2005-09-062-16/+26
| | | | Shoji.
* - It is now possible to set EDITOR in ~/.quiltrc in order to use aJean Delvare2005-09-064-0/+26
| | | | different editor for quilt and for the other tasks.
* - doc/README needs the same $EDITOR filtering quirk we just added forJean Delvare2005-09-062-1/+9
| | | | doc/quilt.1.
* - scripts/patchfns.in: Rewrite files_in_patch_ordered() so as to notJean Delvare2005-09-063-13/+62
| | | | | | | require the awk asort function, which is not available on all versions of awk. - test/sort.test: Add more files to better test the ordering and sorting issues. Original patch by John Vandenberg.
* - Merge doc/sample.quiltrc into quilt.quiltrc, and delete it. It will beJean Delvare2005-09-063-21/+4
| | | | easier to maintain a single configuration file.
* - Makefile.in: Filter out expanded $EDITOR in quilt.1. This value beingJean Delvare2005-09-062-1/+9
| | | | set at installation time may be irrelevant at execution time.
* - Fix test/perms.test for LANG=POSIX (from John VandenbergAndreas Gruenbacher2005-09-063-7/+14
| | | | | <jayvdb@gmail.com>), and always run the test cases with LANG set to POSIX.
* - quilt/diff.in: Fix incorrect error message when incompatible optionsJean Delvare2005-09-046-9/+20
| | | | are used. Fix direct call to awk.
* Resync line numbers (refresh.in and patchfns.in.)Jean Delvare2005-09-024-16/+16
|
* scripts/patchfns.in: Fix permissions of .pc/applied-patches being lost inJean Delvare2005-09-022-6/+13
| | | | remove_from_db() and rename_in_db().
* refresh.in: Drop a useless line in the awk script replacing the diffstatJean Delvare2005-09-022-2/+10
| | | | | section in patch headers. Improve the regular expression matching diffstat lines. Original patch from John Vandenberg.
* - configure.ac, Makefile.in: Support GCC and other compilers. AllowJean Delvare2005-08-283-4/+24
| | | | executable extensions (non-Unix.) Original patch from John Vandenberg.
* - quilt/delete.in: Drop extra spaces in usage line.Jean Delvare2005-08-268-24/+46
| | | | | | - quilt/graph.in: Add missing -T option to usage line. - quilt/push.in: Add missing --interactive and --color options to usage line.
* - quilt/header.in, quilt/refresh.in: Drop trailing tab character in helpJean Delvare2005-08-266-11/+10
| | | | message.
* - quilt/delete.in: Add options -r (remove patch file) and --backupJean Delvare2005-08-267-34/+140
| | | | (backup rather than remove.) Patch from Joe Green.
* - scripts/patchfns.in: insert_in_series(): Insert new patchesAndreas Gruenbacher2005-08-266-30/+38
| | | | | | before the following patch instead of after the top patch. When no patch is in the series file, insert the new patch at the end (i.e., after comments from setup, etc.) instead of at the top.
* Fix error path when imported patch doesn't exist.Jean Delvare2005-08-262-3/+7
|
* - quilt/edit.in: Check exit status after adding files, and failAndreas Gruenbacher2005-08-244-7/+14
| | | | except when files have already been added.
* - quilt/fold.in: fold did not work when invoked from aAndreas Gruenbacher2005-08-227-48/+83
| | | | subdirectory; update test case.
* - quilt/edit.in: Check exit status after adding files.Andreas Gruenbacher2005-08-172-1/+6
|
* - configure.ac: Do not check for diffstat version if --without-diffstatJean Delvare2005-08-122-3/+10
| | | | is used.
* improve description of the import command [Joe Green]Martin Quinson2005-08-112-2/+4
|
* add completion of the header command [Joe Green]Martin Quinson2005-08-112-2/+11
|
* Updating my email addressMartin Quinson2005-08-063-3/+3
|
* - test/delete.test: New test case for the delete command.Jean Delvare2005-07-292-0/+66
|
* - Makefile.in: add test/Makefile and test/test.quiltrc to SRC, so thatJean Delvare2005-07-292-1/+8
| | | | they get included into the tarball by make dist.
* - test/missing.test: Fix test case.Andreas Gruenbacher2005-07-272-2/+7
|
* - Bump version to 0.42.v0.42Jean Delvare2005-07-262-2/+7
|
* - Mike Fabian <mfabian@suse.de> fixed two fuzzy Japanese messagesAndreas Gruenbacher2005-07-262-4/+8
| | | | for us -- thanks!
* - Fix one fuzzy message in French translation.Jean Delvare2005-07-252-2/+6
|
* - Japanese translation update from Yasushi SHOJIAndreas Gruenbacher2005-07-256-118/+141
| | | | <yashi@atmark-techno.com>.
* - Let the perl scripts (edmail, parse-patch and remove-trailing-ws) workJean Delvare2005-07-248-62/+119
| | | | without Locale::gettext.
* - Makefile.in: Drop pointless dependency between quilt commandJean Delvare2005-07-222-2/+6
| | | | files and scripts.
* - We don't need the translation statistics twice.Andreas Gruenbacher2005-07-191-2/+1
|
* - Update French translation.Jean Delvare2005-07-192-46/+65
|
* - Another translation fix.Andreas Gruenbacher2005-07-196-8/+8
|
* - Fix a few translation bugs; update german translation.Andreas Gruenbacher2005-07-1910-753/+794
|
* - Rename test/create-delete.diff to *.test and fix the test.Andreas Gruenbacher2005-07-182-7/+8
|
* - Add internationalization support to Perl scripts as well.Andreas Gruenbacher2005-07-1811-608/+1245
|
* Add new header command.Jean Delvare2005-07-181-0/+1
|