summaryrefslogtreecommitdiffstats
path: root/quilt.changes
Commit message (Collapse)AuthorAgeFilesLines
* Document last changeAndreas Gruenbacher2003-11-251-0/+5
|
* - Error check for `quilt diff -z filelist' was too strict; relax.Andreas Gruenbacher2003-11-241-0/+5
|
* - Add new command `quilt fold' to fold one patch into another.Andreas Gruenbacher2003-11-171-0/+10
| | | | | | | | - Fix bug in `quilt files': Files that are neither present in the working directory and have an empty backup copy sometimes were still listed. - Some minor cleanups in apatch. - Add test/fold.test, and fix a now-useless check in one.test.
* - Merge some changes from wangdi:Andreas Gruenbacher2003-11-151-0/+8
| | | | | | + Use -f (force) option of GNU patch in `quilt diff -z'. + Build source and binary RPMs in `make rpm' target. + Simplify sed expression in Makefile.in.
* Bump version number to 0.29 (cvs tag VER_0_29).Andreas Gruenbacher2003-11-121-0/+1
|
* - Add introductory paper to CVS repository.Andreas Gruenbacher2003-11-121-0/+6
| | | | - Remove obsolete documentation.
* - Fix the timestamp check in scripts/rpatch.in for missing files.Andreas Gruenbacher2003-11-041-0/+1
|
* - `quilt setup' sometimes forgot to create the patches sub-dir.Andreas Gruenbacher2003-11-041-0/+1
|
* - Add failpop.test that checks if modified patches are recognized.Andreas Gruenbacher2003-11-041-0/+7
| | | | | - Fix the check for modified patches: That broke with the .pc file removal.
* Bump version number to 0.28.v0.28Andreas Gruenbacher2003-10-311-0/+5
|
* - No longer verify if patches remove cleanly by reverse applyingAndreas Gruenbacher2003-10-311-0/+11
| | | | | | | | | them: This doesn't always succeed, and the the equivalent of `quilt diff -z' should suffice, anyway. - Add `touch .pc/$patch' after successful refresh: Speeds up `quilt pop' after a refresh. - Update test suite. - apatch was printing a spurious newline.
* - If a patch does not apply cleanly and `quilt push' removesAndreas Gruenbacher2003-10-291-0/+7
| | | | | rejects files it GNU patch left behind, change the output from ``saving rejects to file x.rej'' to ``rejects in file x''.
* - Add change log entry.v0.27Andreas Gruenbacher2003-10-281-0/+7
| | | | - Bump version number to 0.27 (cvs tag VER_0_27).
* - Change name and semantics of PATCHSCRIPTS variable: Before, ifAndreas Gruenbacher2003-10-281-0/+8
| | | | | | PATCHSCRIPTS was set, the patches were in $PATCHSCRIPTS/patches. Now, if QUILT_PATCHES is set, the patches are in $QUILT_PATCHES. QUILT_PATCHES defaults to "patches", like before.
* - Get rid of patches_per cache_in `quilt patches'. RemoveAndreas Gruenbacher2003-10-261-0/+7
| | | | | patches_per_file and associated functions. `quilt patches' now is a bit slow for unapplied patches.
* - Rename snapshot directory from ".snap0" to ".snap".Andreas Gruenbacher2003-10-261-2/+13
| | | | | | | | | - `quilt diff: Speed up file list generation in `quilt diff'. Don't use modified_files anymore. Instead, add first_modified_by function. I want to get rid of the patches_per_file cache; it sometimes was not brought up to date. Some cleanups. - Add test/snapshot.test. - Fix two errors in the date format in quilt.changes.
* - `quilt add': Return exit code 2 when a file has already been added.Andreas Gruenbacher2003-10-231-0/+9
| | | | | | - Add `quilt edit' command: Does a `quilt add' and then invokes $EDITOR (fallback is `vi'). Files that don't exist after editing are again removed from the patch.
* - `Quilt fork' should better fork the next patch instead of theAndreas Gruenbacher2003-10-211-0/+7
| | | | | topmost one. Also fix a bug in updating the series file when forking. The rename_in_db() function is no longer needed.
* - Add `quilt fork' command.v0.26Andreas Gruenbacher2003-10-211-0/+7
| | | | | - Add `quilt snapshot' command and `quilt diff --snapshot' option. - Bump the version number to 0.26.
* Document my changesMartin Quinson2003-09-091-0/+9
|
* - Pipe rpmbuild output to /dev/null in spec2series (seems to beAndreas Gruenbacher2003-09-021-0/+6
| | | | necessary since rpm4).
* - Use %{find_lang} macro in spec file.Andreas Gruenbacher2003-07-271-0/+5
|
* - Pushing is only possible if the topmost file is found in theAndreas Gruenbacher2003-07-261-0/+6
| | | | series file. Fix from Tom Wang <wangdi@clusterfs.com>.
* - When popping files, go through the list of applied patchesAndreas Gruenbacher2003-07-261-0/+7
| | | | | instead of looking at the series file: The series file may have changed.
* - Install package documentation into $RPM_DOC_DIR if thisAndreas Gruenbacher2003-07-261-0/+9
| | | | | | | environment variable is set. On RedHat 9 $RPM_DOC_DIR points to /usr/share/doc/packages, but documentation lives in /usr/share/doc. This is a bug in RedHat's RPM configuration; working around it would break other distributions.
* - Update spec2series accordingly.Andreas Gruenbacher2003-07-231-0/+1
|
* - Add Autoconf test for rpmbuild vs. rpm (needed for `make rpm').Andreas Gruenbacher2003-07-231-0/+5
|
* - lib/backup-files.c: Copy files if hard linking is not possible,Andreas Gruenbacher2003-07-191-2/+9
| | | | e.g., because the backups go to a ram disc, etc.
* Document last changesMartin Quinson2003-06-261-1/+7
|
* Comment the last changesMartin Quinson2003-06-251-0/+7
|
* Preserve permissions of files added with `quilt add'.Andreas Gruenbacher2003-05-201-0/+5
|
* Do not add the whole /usr/share/locale directory to the RPMAndreas Gruenbacher2003-05-181-0/+7
| | | | | file list, but only the quilt message catalogs: Otherwise RPM complains when uninstalling.
* - Rename DIFF_OPTS environment variable to QUILT_DIFF_OPTSAndreas Gruenbacher2003-05-161-0/+7
| | | | | - Add ~/.quiltrc resource file (this file is sourced from the patchfsn file, which is used by all commands).
* Convert all times to CET/CEST timezone -- our scripts don't understandAndreas Gruenbacher2003-04-111-15/+15
| | | | other timezones :-(
* - Apply patches with `patch -f' by default. Add --interactiveAndreas Gruenbacher2003-04-111-0/+7
| | | | | option top `quilt push' to allow applying patches without `patch -f'.
* - Remove awk hacks in Makefile.in with shell loop and sed hack:Andreas Gruenbacher2003-04-091-0/+6
| | | | The awk hack(s) didn't work for Martin Quinson.
* - Never reorder files in patches. (Previously the file listAndreas Gruenbacher2003-04-091-0/+8
| | | | | | was run through (sort | uniq) to remove duplicate entries.) - Update test script to new format, and add regression test cases.
* The change from Mar 24 caused empty lines to be removed inAndreas Gruenbacher2003-04-091-0/+6
| | | | patch descriptions.
* `head -1' and `tail -1' is non-standard and deprecated, andAndreas Gruenbacher2003-04-071-0/+6
| | | | does not work with coreutils-5.0 any longer.
* Improve error checking of `quilt diff'Andreas Gruenbacher2003-04-051-0/+5
|
* Fix patch_description functionAndreas Gruenbacher2003-03-241-0/+8
|
* Update test script to reflect recent patch format changes.Andreas Gruenbacher2003-03-231-0/+5
|
* - Also substitute @SED@ and @AWK@.Andreas Gruenbacher2003-03-221-0/+7
| | | | | - Some versions of sed don't like '\t'. Expand those in the shell instead.
* Bump version number to 0.23 (CVS tag VER_0_23)v0.23Andreas Gruenbacher2003-03-211-0/+5
|
* Remove quilt guidiffAndreas Gruenbacher2003-02-141-0/+1
|
* A little more I18N and messages stuffAndreas Gruenbacher2003-02-141-0/+5
|
* Implement i18n, french l10n and bump version numberMartin Quinson2003-02-141-0/+6
|
* Merge James Rowe's quilt-help.diff patch that fixes several help messages.Andreas Gruenbacher2003-02-081-0/+6
|
* refresh: create sub-directories automaticallyAndreas Gruenbacher2003-02-061-0/+6
|
* *** empty log message ***Andreas Gruenbacher2003-02-051-1/+1
|