summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* - test/run: Support regex matching in test scripts.Andreas Gruenbacher2006-01-212-9/+21
|
* - Check whether cp -l works.Andreas Gruenbacher2006-01-212-1/+18
|
* - Default to use NLS when NLS binaries are available (minorAndreas Gruenbacher2006-01-213-10/+35
| | | | changes by agruen@suse.de).
* - Split off strip_diffstat from header command.Andreas Gruenbacher2006-01-2110-74/+208
| | | | | - import command: compare patch headers to prevent destruction; add -d option to choose which header(s) to keep.
* - import command: catch several error conditions. Patches inAndreas Gruenbacher2006-01-218-83/+167
| | | | QUILT_PATCHES can now e imported. A minor fix in the output.
* - Fix delete -n when no patches are applied.Andreas Gruenbacher2006-01-219-92/+186
|
* - Add the .*.ok files to .cvsignore.Andreas Gruenbacher2006-01-201-0/+1
|
* - Tru64 /bin/sh complains when $(call ) is used without ; on eachAndreas Gruenbacher2006-01-202-4/+10
| | | | line of the define.
* - Clear up the internal make rules so make -d is not so verbose.Andreas Gruenbacher2006-01-202-0/+15
|
* - Check if arguments to --with-<prog> exist, warn if they do not,Andreas Gruenbacher2006-01-202-1/+17
| | | | | and fail if they do but are no executables. (Based on a patch from jayvdb@gmail.com).
* - configure.in: Document to use --without-foo instead ofAndreas Gruenbacher2006-01-203-4/+13
| | | | --with-foo=none.
* - German translation update.Andreas Gruenbacher2006-01-201-13/+4
|
* - Make sure quilt diff --snapshot visits files in a defined order.Andreas Gruenbacher2006-01-192-1/+6
|
* - Move patch parameter checks into patchfns.in, adding quotesJohn Mark Vandenberg2006-01-1927-670/+494
| | | | | around all patch parameters, and reporting 'No patches in series' - quilt/annonate.in: Fix case where no patches have been applied.
* - test/three.test, test/import.test: Add various tests.Andreas Gruenbacher2006-01-163-0/+296
|
* - Always use full command names in the test suite.Andreas Gruenbacher2006-01-163-3/+8
|
* - doc/README and doc/quilt.1 depend on compat/getopt being builtAndreas Gruenbacher2006-01-162-11/+17
| | | | | | | prior to their generation. As the phony target 'compat' cant be used as a prereq, except to other phony targets, $(COMPAT) has been added to refer to all necessary compat/ objects. - bin/*.in should be regenerated after a change to Makefile.
* - Change the rules for splitting a patch into header and body soAndreas Gruenbacher2006-01-166-27/+24
| | | | that it will work for git extanded patches as well.
* - John Vandenberg <jayvdb@gmail.com>: Make check depends onAndreas Gruenbacher2006-01-157-373/+426
| | | | | | | | | | programs that have been configured with --with-<name>=<prog>. Make dependencies would get confused by symlinks, so create wrappers in compat/ for make check. - Remove binaries in compat/ that are not listed in COMPAT_PROGRAMS or COMPAT_SYMLINKS. - configure.ac: use --without-$foo instead of --with-foo=none. - Fix processing of translations again, and update de.po.
* - Move scripts directory to quilt/scripts to simplify running quiltAndreas Gruenbacher2006-01-1411-189/+163
| | | | | | directly from the source tree. - test/Makefile: merge into Makefile.in (target check). - Makefile.in: clean up.
* *** empty log message ***Andreas Gruenbacher2006-01-141-2/+0
|
* - Use better variable names to avoid name clashes.Andreas Gruenbacher2006-01-1434-136/+133
|
* - Use the quilt version in the source tree instead of theAndreas Gruenbacher2006-01-1439-136/+158
| | | | installed version for running the test suite.
* - test/null-bug.test: Fix the original directory creation so thatJean Delvare2006-01-105-5/+15
| | | | | | | the test doesn't fail if any higher-level directory contains a patches/ sub-directory. - test/*.test: Fix the test suite after the December 8th, 2005 change to quilt diff. Contributed by Markus Oberhumer.
* Translation updates:Jean Delvare2006-01-045-86/+59
| | | | | | - po/quilt.pot, po/de.po: Resync with code. - po/ja.po: Update from Yasushi Shoji. - po/fr.po: Update from Jean Delvare.
* - scripts/inspect.in (setup command): add heuristic to check forAndreas Gruenbacher2005-12-083-6/+28
| | | | | | | input files specified on the command line in the tar/patch wrapper. - quilt/diff.in: Degrade the ``More recent patches modify files in patch'' message to a warning.
* Resync the CVS with the content of the packageMartin Quinson2005-12-0110-53/+421
|
* Document last changesMartin Quinson2005-12-011-0/+7
|
* Document options common to all commandsMartin Quinson2005-12-011-0/+17
|
* Make sure that the manpage is generated without translation in it, ↵Martin Quinson2005-12-011-4/+4
| | | | disregarding the settings of the build host
* s/ocnfiguration/configuration/Martin Quinson2005-12-011-1/+1
|
* - Oops, the /dev/null "fix" broke create-delete.test. Back out this changeAndreas Gruenbacher2005-11-287-28/+40
| | | | and fix only the specific -p0 case.
* - quilt/diff.in, quilt/refresh.in: stop using /dev/null for addedAndreas Gruenbacher2005-11-284-7/+43
| | | | | | | | | | | | or removed files: GNU diff does not do that either, and for removed files this leads to headers that only reference $file.orig and /dev/null, so the actual file is not found. (This is only truly fixes -p0 style patches as -p1 style patches use dir.orig/file instead of dir/file.orig so the filename is not lost, but stopping to use /dev/null makes sense for -p style patches just the same. - files command: remove a redundant find_patch(). - Make top_patch() fail if there is no top patch.
* - Makefile.in: don't strip the backup-files binary in the installAndreas Gruenbacher2005-11-043-3/+11
| | | | | | target. - quilt.spec.in: set the CFLAGS to $RPM_OPT_FLAGS, and pass on the RPM release number when building quilt.
* - scripts/inspect.in: remove unnecessary path_search() functionAndreas Gruenbacher2005-10-126-63/+52
| | | | and let the shell search the path internally.
* Prevent patch_header and patch_body from mistakenly considering "---"Jean Delvare2005-10-042-2/+9
| | | | | | alone on its header line as the beginning of the patch body. This fixes a bug which had been reported on LKML: http://lkml.org/lkml/2005/10/3/147
* - quilt/files.in: Sort the file names rather than respecting the originalJean Delvare2005-09-231-1/+1
| | | | | order of the files in patches. This is slightly faster, and we don't much care about the original order.
* - configure.ac: Let the user select the find binary. Test that findJean Delvare2005-09-232-1/+22
| | | | supports -path.
* Sync with the recent behavior change of "quilt diff".Jean Delvare2005-09-231-4/+16
|
* - quilt/files.in: Sort the file names rather than respecting the originalJean Delvare2005-09-231-0/+7
| | | | | order of the files in patches. This is slightly faster, and we don't much care about the original order.
* - Fix the test suite so that directories leftover from a previouslyJean Delvare2005-09-2328-0/+33
| | | | interrupted test won't cause a test to fail.
* - Drop test/reorder.test, it duplicates test/sort.test but is lessJean Delvare2005-09-232-60/+6
| | | | complete.
* - test/run: Do not depend on Term::ReadKey.Jean Delvare2005-09-232-2/+6
|
* - Fix the test suite so that it doesn't fail if any higher-levelAndreas Gruenbacher2005-09-2326-32/+33
| | | | | directory contains a patches/ sub-directory (iow, if quilt itself is patched with quilt).
* - Makefile.in: Fix extra spaces in foreach command which were causingJean Delvare2005-09-222-1/+7
| | | | "missing separator" errors. Patch from Gary V. Vaughan.
* - configure.ac: Test sed support for (foo|bar) constructs.Jean Delvare2005-09-222-1/+20
|
* - test/sort.test: Quote grep arguments, as some grep implementations seemJean Delvare2005-09-211-4/+4
| | | | to otherwise choke on them. Original patch from John Vandenberg.
* Hide generated scripts from CVS commands.Jean Delvare2005-09-211-0/+5
|
* - configure.ac, Makefile.in: Make the cp, date and tr binariesJean Delvare2005-09-213-2/+42
| | | | | user-selectable. - configure.ac: Test grep and tr features.
* - aclocal.m4: Fix typo causing binaries with alternative names not to beJean Delvare2005-09-212-2/+8
| | | | properly handled.