~ubuntu-branches/ubuntu/precise/emacs-goodies-el/precise-proposed

« back to all changes in this revision

Viewing changes to debian/patches/9_missing_provide.dpatch

  • Committer: Bazaar Package Importer
  • Author(s): Bhavani Shankar
  • Date: 2010-06-22 19:03:03 UTC
  • mfrom: (4.1.20 sid)
  • Revision ID: james.westby@ubuntu.com-20100622190303-ygrbht6kae9ukl8m
Tags: 33.6ubuntu1
* Merge from debian unstable.  Remaining changes: LP: #597284
  - Add {hardy,jaunty,karmic,lucid}-proposed distribution targets
    to dpkg-dev-el.
  - Add maverick{,-proposed} distribution targets; drop out the lucid
    non-proposed target, since uploads to the release pocket are not
    permitted for stable releases.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh -e
2
 
## 9_missing_provide.dpatch.dpatch by Peter S Galbraith <psg@debian.org>
3
 
##
4
 
## All lines beginning with `## DP:' are a description of the patch.
5
 
## DP: No description.
6
 
 
7
 
if [ $# -ne 1 ]; then
8
 
    echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
9
 
    exit 1
10
 
fi
11
 
 
12
 
[ -f debian/patches/00patch-opts ] && . debian/patches/00patch-opts
13
 
patch_opts="${patch_opts:--f --no-backup-if-mismatch}"
14
 
 
15
 
case "$1" in
16
 
       -patch) patch $patch_opts -p1 < $0;;
17
 
       -unpatch) patch $patch_opts -p1 -R < $0;;
18
 
        *)
19
 
                echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
20
 
                exit 1;;
21
 
esac
22
 
 
23
 
exit 0
24
 
 
25
 
@DPATCH@
26
 
diff -urNad emacs-goodies-el~/elisp/emacs-goodies-el/align-string.el emacs-goodies-el/elisp/emacs-goodies-el/align-string.el
27
 
--- emacs-goodies-el~/elisp/emacs-goodies-el/align-string.el    2001-11-08 07:26:56.000000000 -0500
28
 
+++ emacs-goodies-el/elisp/emacs-goodies-el/align-string.el     2009-09-03 09:53:49.000000000 -0400
29
 
@@ -98,3 +98,5 @@
30
 
          (setq i (1+ i)))))
31
 
     ;; Clear end marker.
32
 
     (set-marker end nil)))
33
 
+
34
 
+(provide 'align-string)
35
 
+;;; align-string.el ends here
36
 
diff -urNad emacs-goodies-el~/elisp/emacs-goodies-el/cyclebuffer.el emacs-goodies-el/elisp/emacs-goodies-el/cyclebuffer.el
37
 
--- emacs-goodies-el~/elisp/emacs-goodies-el/cyclebuffer.el     2009-07-17 16:53:08.000000000 -0400
38
 
+++ emacs-goodies-el/elisp/emacs-goodies-el/cyclebuffer.el      2009-09-03 09:52:08.000000000 -0400
39
 
@@ -105,3 +105,5 @@
40
 
 visited buffers."
41
 
   (interactive)
42
 
   (cyclebuffer-forward -1))
43
 
+
44
 
+(provide 'cyclebuffer)