summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* rename: Fix parameter quotingJean Delvare2012-12-052-12/+13
|
* top: Fix parameter quotingJean Delvare2012-12-052-1/+6
|
* push: Fix variable usage in interruptJean Delvare2012-12-052-1/+8
| | | | | While bash allows poking at a function caller's variables, that's not something we normally do in quilt.
* Fix handling of patch files with ':' in their nameBenjamin Poirier2012-12-053-2/+60
| | | | | | | | | | | | avoids errors like this: $ quilt refresh sed: -e expression #1, char 21: unknown option to `s' Nothing in patch patches/strange:name [Satoru Takeuchi: suggested first alternative implementation not relying on find -printf.] [Jean Delvare: added missing quoting and a new test file for this case.]
* push: Always let the user force pushing a patchJean Delvare2012-12-032-2/+6
| | | | | | Let the user force pushing a patch even if patch returns with error code 2. The user should know better. This happens when pushing a patch with a header but no actual contents, for example.
* pop: Fix timestamp comparisonJean Delvare2012-12-032-2/+7
| | | | | | | | | The timestamps recorded on file systems have a limited resolution. For this reason, a patch or file with a timestamp exactly equal to .timestamp should be considered as more recent than .timestamp, i.e. potentially modified since the last push or refresh. This is particularly important for the test suite, as we can do many actions in the same second there.
* Fix typos in the Japanese translationJean Delvare2012-10-252-3/+8
| | | | | Anonymous contribution from the bug tracker: https://savannah.nongnu.org/bugs/index.php?37495
* inspect: Refactor code to pwd_to_dirJean Delvare2012-10-252-22/+20
| | | | | Move the code deriving the directory from $PWD to a separate function to avoid code duplication.
* setup: Check for existing directories before unpackingJean Delvare2012-10-253-1/+29
| | | | Check for existing directories before unpacking.
* setup: Fix white space handling by check_for_existing_filesJean Delvare2012-10-252-3/+9
| | | | | | | | Fix handling of directory names including white spaces by check_for_existing_files. awk can't deal with tokens which include white spaces, so use bash's read function instead. As a side bonus, we get rid of the undocumented dependency to "uniq".
* setup/inspect: Handle zip archivesJean Delvare2012-10-253-2/+50
| | | | Let quilt setup handle zip archives.
* setup: Run create_dbJean Delvare2012-10-253-2/+33
| | | | | Run create_db() as part of quilt setup, so that $QUILT_PATCHES and $QUILT_SERIES are recorded for future quilt commands.
* setup: Try alternative patches/series namesJean Delvare2012-10-252-1/+8
| | | | | setup: If a tar file contains a patches directory or a series file, automatically try alternative names which are less likely to collide.
* setup: Check for existing files after unpackingJean Delvare2012-10-252-2/+7
| | | | | | setup: check for existing files after unpacking the tar files, not before, otherwise we check too early and a tar file containing a "patches" directory will not be handled properly.
* Keep reference entries sortedJean Delvare2012-10-252-1/+6
| | | | | Make function $(wildcard ...) is not guaranteed to sort the results, so explicitly sort the entries in the reference documentation file.
* Modify quilt.changes to explaing changes for quiilt.el.Satoru Takeuchi2012-03-111-0/+10
|
* quilt-el: fix `quilt-patch-list' to call `quilt series'..Satoru Takeuchi2012-03-101-1/+1
| | | | It's a regression problem caused by a106d99d754c88c049c111f6ccdfb06c2bede4f2.
* quilt-el: remove `Version' and `URL' tags in the documentSatoru Takeuchi2012-03-101-2/+0
| | | | Now quilt-el is a part of quilt itself. So above tags are no longer needed.
* quilt-el: make it byte compile cleanSatoru Takeuchi2012-03-101-8/+6
|
* quilt-el: make it checkdoc clean.Satoru Takeuchi2012-03-101-54/+82
|
* quilt-el: supporting multiple quilt treesSatoru Takeuchi2012-03-101-31/+75
|
* quilt-el: cleanup codes by introducing `quilt-cmd-to-list' function.Satoru Takeuchi2012-03-101-9/+10
|
* quilt-el: fix polluting namespace by nested function.Satoru Takeuchi2012-03-101-33/+29
|
* quilt-el: return to the original cwd even if `shell-command' failed.Satoru Takeuchi2012-03-101-4/+6
|
* quilt-el: update the maintainer's email addres.Satoru Takeuchi2012-03-101-1/+1
|
* quilt-el: optimize `quilt-revert'Satoru Takeuchi2012-03-101-1/+2
|
* quilt-el: considering default-directory' is nilSatoru Takeuchi2012-03-101-1/+2
|
* quilt-el: simplify quilt-revertSatoru Takeuchi2012-03-101-6/+2
|
* quilt-el: be aware of QUILT_PATCHESSatoru Takeuchi2012-03-101-2/+14
|
* Be less strict on changelog formatv0.60Jean Delvare2012-02-291-3/+0
| | | | Unrecognized lines are simply discarded now.
* Set version to 0.60 "Happy Birthday Lina".Jean Delvare2012-02-293-10/+15
|
* Update French translationJean Delvare2012-02-292-8/+14
|
* Resync translation files.Jean Delvare2012-02-295-194/+240
|
* Document the previous fixes.Jean Delvare2012-02-291-0/+9
|
* quilt: unset POSIXLY_CORRECT to ensure that patch works non-interactivelyRaphaël Hertzog2012-02-292-0/+5
| | | | | | | | | POSIXLY_CORRECT=1 breaks quilt because quilt relies on patch working non-interactively which is not the case in POSIX mode. Bug-Debian: http://bugs.debian.org/462578 Reported-by: Brian M. Carlson <sandals@crustytoothpaste.ath.cx> Signed-off-by: Raphaël Hertzog <hertzog@debian.org>
* Ensure quilt(1) documents the correct patches directoryJulien Viard de Galbert2012-02-291-1/+1
| | | | | | | | | | | | | Within the Debian source package, .pc/quilt_patches ensures that QUILT_PATCHES is set to debian/patches but when we build the documentation we want the real default directory used by quilt, aka "patches". We achieve this by tricking quilt into using a non-existing .pc directory so that we get the real default value. Bug-Debian: http://bugs.debian.org/585438 Signed-off-by: Raphaël Hertzog <hertzog@debian.org>
* Update quilt.changes and configure after merge.Jean Delvare2012-02-292-3/+18
|
* Merge remote branch 'origin/fixes-0.51'Jean Delvare2012-02-293-19/+58
|\
| * quilt mail: Implement option -M to read the introduction message from a filefixes-0.51Andreas Gruenbacher2012-02-161-4/+21
| |
| * Relax the bash version requirement to version 3.0Andreas Gruenbacher2012-02-161-2/+14
| | | | | | | | | | Apparently bash versions older than 3.2 are still in use. Reinstate the configure check for the quoting bug in bash 3.1 which broke quilt.
| * quilt mail: Skip additional recipients with "bad" email addressesAndreas Gruenbacher2012-02-111-1/+1
| | | | | | | | | | | | Instead of failing when a proper email address cannot be extracted from a Signed-off-by, Acked-by, Suggested-by, Reviewed-by, Requested-by, Reported-by, Tested-by, To, or Cc line, give a warning and skip that line.
| * edmail: Allow to add "good" recipient addresses while skipping "bad" onesAndreas Gruenbacher2012-02-111-3/+16
| |
| * quilt mail: Fix wrong use of edmailAndreas Gruenbacher2012-02-111-1/+1
| | | | | | | | | | It makes no sense to pass the recipient addresses to edmail when removing Bcc lines.
| * quilt mail: Require a "reasonable looking" email address in patch headersAndreas Gruenbacher2012-02-111-4/+4
| | | | | | | | | | | | | | In particular, empty strings will not work as email addresses. Also, use sed's "I" flag for case-insensitive searching; "i" will sometimes be mistaken for the "insert" operator.
| * quilt mail: Don't use localized date format in From linesAndreas Gruenbacher2012-02-111-1/+1
| |
| * quilt mail: Improve error reporting (requires bash 3.2)Andreas Gruenbacher2012-02-112-17/+14
| | | | | | | | | | | | | | Improve error checking by using the "pipefail" option, available since bash 3. Since bash 3.1 is known to be broken already, require bash 3.2 directly. Report the patch name as well when "quilt mail" finds a problem with a patch.
* | Regenerate pdf documentation (English version)Jean Delvare2012-02-221-0/+0
| |
* | Document the patch grouping featureJean Delvare2012-02-223-3/+10
| | | | | | | | This fixes bug #12428.
* | Add files generated for the russian documentation.Jean Delvare2012-02-221-3/+6
| |
* | README: Update the list of helper scripts/filesJean Delvare2012-02-171-5/+2
| |