-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #61 from tsirakisn/add-quilt-cfg
[docker] Add quilt configuration files to container
- Loading branch information
Showing
4 changed files
with
68 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Options passed to GNU diff when generating patches | ||
QUILT_DIFF_OPTS="--show-c-function" | ||
|
||
# Options passed to GNU patch when applying patches. | ||
QUILT_PATCH_OPTS="--unified" | ||
|
||
# Do not include index lines | ||
QUILT_NO_DIFF_INDEX=1 | ||
# Do not include timestamps | ||
QUILT_NO_DIFF_TIMESTAMPS=1 | ||
|
||
# Options to pass to commands (QUILT_${COMMAND}_ARGS) | ||
# Generate a/ b/ patches to cut down on churn | ||
#QUILT_DIFF_ARGS="--no-timestamps --color=auto -p ab" | ||
#QUILT_REFRESH_ARGS="--no-timestamps --backup -p ab" | ||
QUILT_DIFF_ARGS="--color=auto -p ab" | ||
QUILT_REFRESH_ARGS="--backup -p ab" | ||
QUILT_PUSH_ARGS="--color=auto" | ||
QUILT_SERIES_ARGS="--color=auto" | ||
QUILT_PATCHES_ARGS="--color=auto" | ||
QUILT_NEW_ARGS="-p ab" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
################################################################################ | ||
SHORT DESCRIPTION: | ||
################################################################################ | ||
One or two lines... | ||
|
||
################################################################################ | ||
LONG DESCRIPTION: | ||
################################################################################ | ||
As many lines as it takes for describe the patch. If this patch is really just | ||
a port from somewhere else, you can just reference the original patches | ||
information. | ||
|
||
################################################################################ | ||
CHANGELOG | ||
################################################################################ | ||
Original: John Doe, [email protected] | ||
Ported: Jane Doe, [email protected], 8/27/2015 | ||
etc... | ||
|
||
################################################################################ | ||
REMOVAL | ||
################################################################################ | ||
If there are conditions where it can be removed, explain them here. If not then | ||
leave it blank. | ||
|
||
################################################################################ | ||
UPSTREAM PLAN | ||
################################################################################ | ||
If there is a plan to upstream it, explain it here. If there is none, leave it | ||
blank. | ||
|
||
################################################################################ | ||
INTERNAL DEPENDENCIES | ||
################################################################################ | ||
Does this patch have dependencies on other patches etc. If not, leave it blank. | ||
|
||
################################################################################ | ||
PATCHES | ||
################################################################################ |