~ubuntu-dev/ubuntu/lucid/devscripts/lucid-201002110859

« back to all changes in this revision

Viewing changes to scripts/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): أحمد المحمودي (Ahmed El-Mahmoudy), أحمد المحمودي (Ahmed El-Mahmoudy), James Westby
  • Date: 2009-08-16 19:15:16 UTC
  • Revision ID: james.westby@ubuntu.com-20090816191516-y59mt9rqfgc6gsqf
Tags: 2.10.53ubuntu1
[ أحمد المحمودي (Ahmed El-Mahmoudy) ]
* Resynchronise with Debian. Remaining changes: (LP: #511269)
  - rmadison: Change default URL parameter to ubuntu.
  - scripts/debchange.pl:
    + Adjust --security template for Ubuntu.
    + Add -U/--upstream flag that forces original "just increment
      the end" behaviour; Ubuntu is upstream for some pieces of software.
    + Add --distributor= to override lsb_release output.
    + Default to "karmic" as distribution.
    + Add "ubuntu1" to version string for new versions, with tweaks for
      special cases.
    + Add -R/--rebuild flag for Ubuntu's no-change rebuilds.
  - Add test/debchange.pl, test/Makefile: debchange test suite; call it
    during build in debian/rules. Also add lsb-release build dependency for
    this, so that debchange uses Ubuntu mode.
  - scripts/debuild.pl: Enforce Ubuntu merge policy.
  - scripts/debsign.{sh,1}: Implement DEBSIGN_ALWAYS_RESIGN variable to skip
    the "Would you like to use the current signature?" question. (Debian
    #447955)
  - scripts/uupdate.{sh,1}: Use -0ubuntu1 default revision on Ubuntu.
  - scripts/dscverify.pl: Add Ubuntu keyrings.
  - Drop universe packages from Recommends to Suggests:
    + libcrypt-ssleay-perl: only needed for a corner case (uscan on SSL
      download sites), wasn't installed by default in previous releases
      either, and seems quite dead upstream
    + libsoap-lite-perl: only needed for one less common command ("select")
      for bts, which isn't useful for Ubuntu itself, and pulls in a lot of
      other universe Perl libraries
    + debian-{keyring,maintainers}: not useful enough in Ubuntu
    + equivs: too much of a hack to install by default
    + libyaml-syck-perl: transition-check is fairly Debian-specific

[ James Westby ]
* Revert to use Vcs-* rather than XS-Vcs-*.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
GEN_MAN1S = bts.1 build-rdeps.1 chdist.1 dcontrol.1 debcheckout.1 debcommit.1 \
17
17
            deb-reversion.1 desktop2menu.1 dget.1 licensecheck.1 mass-bug.1 \
18
18
            mk-build-deps.1 namecheck.1 rmadison.1 svnpath.1 tagpending.1 \
19
 
            transition-check.1
 
19
            transition-check.1 devscripts.1
20
20
 
21
21
BINDIR = /usr/bin
22
22
LIBDIR = /usr/lib/devscripts
36
36
        cp $< $@
37
37
        chmod +x $@
38
38
 
 
39
        
39
40
%.1: %.pl
40
41
        podchecker $<
41
42
        pod2man --center=" " --release="Debian Utilities" $< > $@
43
44
        xsltproc --nonet -o $@ \
44
45
          /usr/share/sgml/docbook/stylesheet/xsl/nwalsh/manpages/docbook.xsl $<
45
46
 
 
47
devscripts.1: devscripts.1.in
 
48
        cat $+ > $@
 
49
        perl ../debian/genmanpage.pl >> $@
 
50
 
46
51
devscripts.%: %.bash_completion
47
52
        cp $< $@
48
53