Merge lp:~jelmer/bzr-builddeb/quilt-base into lp:bzr-builddeb

Proposed by Jelmer Vernooij
Status: Merged
Approved by: James Westby
Approved revision: 671
Merged at revision: 671
Proposed branch: lp:~jelmer/bzr-builddeb/quilt-base
Merge into: lp:bzr-builddeb
Diff against target: 64 lines (+44/-0)
3 files modified
merge_quilt.py (+23/-0)
tests/__init__.py (+1/-0)
tests/test_merge_quilt.py (+20/-0)
To merge this branch: bzr merge lp:~jelmer/bzr-builddeb/quilt-base
Reviewer Review Type Date Requested Status
James Westby Approve
Review via email: mp+86411@code.launchpad.net

Description of the change

Add a file for quilt merge related code.

I'm going to propose a few different branches that all put things into these files, which will use this branch as prerequisite.

To post a comment you must log in.
lp:~jelmer/bzr-builddeb/quilt-base updated
671. By Jelmer Vernooij

Add base files for quilt handling.

Revision history for this message
James Westby (james-w) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== added file 'merge_quilt.py'
2--- merge_quilt.py 1970-01-01 00:00:00 +0000
3+++ merge_quilt.py 2011-12-20 15:01:24 +0000
4@@ -0,0 +1,23 @@
5+# quilt.py -- Quilt patch handling
6+# Copyright (C) 2011 Canonical Ltd.
7+#
8+# This file is part of bzr-builddeb.
9+#
10+# bzr-builddeb is free software; you can redistribute it and/or modify
11+# it under the terms of the GNU General Public License as published by
12+# the Free Software Foundation; either version 2 of the License, or
13+# (at your option) any later version.
14+#
15+# bzr-builddeb is distributed in the hope that it will be useful,
16+# but WITHOUT ANY WARRANTY; without even the implied warranty of
17+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18+# GNU General Public License for more details.
19+#
20+# You should have received a copy of the GNU General Public License
21+# along with bzr-builddeb; if not, write to the Free Software
22+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
23+#
24+
25+"""Quilt patch handling."""
26+
27+from __future__ import absolute_import
28
29=== modified file 'tests/__init__.py'
30--- tests/__init__.py 2011-10-24 16:34:02 +0000
31+++ tests/__init__.py 2011-12-20 15:01:24 +0000
32@@ -133,6 +133,7 @@
33 'test_import_dsc',
34 'test_merge_changelog',
35 'test_merge_package',
36+ 'test_merge_quilt',
37 'test_merge_upstream',
38 'test_repack_tarball_extra',
39 'test_revspec',
40
41=== added file 'tests/test_merge_quilt.py'
42--- tests/test_merge_quilt.py 1970-01-01 00:00:00 +0000
43+++ tests/test_merge_quilt.py 2011-12-20 15:01:24 +0000
44@@ -0,0 +1,20 @@
45+# Copyright (C) 2011 Canonical Ltd
46+#
47+# This file is part of bzr-builddeb.
48+#
49+# bzr-builddeb is free software; you can redistribute it and/or modify
50+# it under the terms of the GNU General Public License as published by
51+# the Free Software Foundation; either version 2 of the License, or
52+# (at your option) any later version.
53+#
54+# bzr-builddeb is distributed in the hope that it will be useful,
55+# but WITHOUT ANY WARRANTY; without even the implied warranty of
56+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
57+# GNU General Public License for more details.
58+#
59+# You should have received a copy of the GNU General Public License
60+# along with bzr-builddeb; if not, write to the Free Software
61+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
62+#
63+
64+"""Tests for the merge_quilt code."""

Subscribers

People subscribed via source and target branches