~diwic/dpkg/original-maintainer

« back to all changes in this revision

Viewing changes to dselect/pkgcmds.cc

  • Committer: James Westby
  • Author(s): Raphael Hertzog
  • Date: 2009-12-07 09:24:31 UTC
  • mto: (1.2.2 experimental)
  • mto: This revision was merged to the branch mainline in revision 71.
  • Revision ID: james.westby@canonical.com-20091207092431-julffpexyz8z8d26
* Fix Dpkg::Index::get() and remove(). Thanks to Roderich Schupp
  <roderich.schupp@googlemail.com> for the patch. Closes: #558595
* Modify implementation of "3.0 (quilt)" source format to not be
  behave differently depending on whether quilt is installed or not.
  The option --without-quilt is thus gone and dpkg-source creates
  and relies on the .pc directory to know whether patches are applied
  or not. Closes: #557667
* Add new dpkg-source option --single-debian-patch supported by the source
  format "3.0 (quilt)" so that it behaves more like 1.0 and its single diff
  that is constantly updated with all upstream changes. Useful if the
  workflow is VCS based and can't generate a full patch set.
* dpkg-source now uses debian/source/patch-header as header of the automatic
  Debian patch in format "3.0 (quilt)".
* Fix Debian changelog parser so that the trailer line is again checked.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
 * Copyright © 1994,1995 Ian Jackson <ian@chiark.greenend.org.uk>
6
6
 *
7
7
 * This is free software; you can redistribute it and/or modify
8
 
 * it under the terms of the GNU General Public License as
9
 
 * published by the Free Software Foundation; either version 2,
10
 
 * or (at your option) any later version.
 
8
 * it under the terms of the GNU General Public License as published by
 
9
 * the Free Software Foundation; either version 2 of the License, or
 
10
 * (at your option) any later version.
11
11
 *
12
 
 * This is distributed in the hope that it will be useful, but
13
 
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 * This is distributed in the hope that it will be useful,
 
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
15
 * GNU General Public License for more details.
16
16
 *
17
 
 * You should have received a copy of the GNU General Public
18
 
 * License along with this; if not, write to the Free Software
19
 
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
17
 * You should have received a copy of the GNU General Public License
 
18
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
19
 */
21
20
 
22
21
#include <config.h>
23
22
#include <compat.h>
24
23
 
 
24
#include <string.h>
25
25
#include <stdio.h>
26
 
#include <string.h>
27
26
 
28
27
#include <dpkg/dpkg.h>
29
28
#include <dpkg/dpkg-db.h>