summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkibi-guest <>2007-10-18 11:45:37 +0000
committerkibi-guest <>2007-10-18 11:45:37 +0000
commit335f2f6e2144a62d622dd4710cfb199841304dd9 (patch)
treecc71ad5b357234aad210773bd11e2a88906f69fc
parentacb0d2b0a4c17a73fd1e320960ddc4bad7923d82 (diff)
emacs-goodies-el: Update markdown-mode.el to V1.5. dpkg-dev-el: Rename XS-Vcs-* to Vcs-*, due to new dpkg
-rw-r--r--debian-control-mode.el10
1 files changed, 7 insertions, 3 deletions
diff --git a/debian-control-mode.el b/debian-control-mode.el
index 3130e33..0b7a57a 100644
--- a/debian-control-mode.el
+++ b/debian-control-mode.el
@@ -32,6 +32,10 @@
;;; Change Log:
+;; V1.1 (2007-10-18) Cyril Brulebois <cyril.brulebois@enst-bretagne.fr>
+;; - Renamed "XS-Vcs-*" fields into "Vcs-*", officially supported since
+;; dpkg/1.14.7.
+
;; V1.0 (2007-10-01) Cyril Brulebois <cyril.brulebois@enst-bretagne.fr>
;; - Add "Homepage" field to source fields.
;; - Add "XS-Vcs-*" fields to source fields, patch contributed by
@@ -158,14 +162,14 @@
;; http://svn.debian.org/wsvn/qa/trunk/pts/www/bin/common.py?op=file
(defvar debian-control-vcs-names
'("Arch" "Bzr" "Cvs" "Darcs" "Git" "Hg" "Mtn" "Svn")
- "Valid VCS names for the XS-Vcs-* field.")
+ "Valid VCS names for the Vcs-* field.")
(defvar debian-control-source-fields
(append
'("Section" "Priority" "Maintainer" "Build-Depends" "Build-Depends-Indep"
"Build-Conflicts" "Build-Conflicts-Indep" "Standards-Version" "Uploaders"
- "Homepage" "XS-Vcs-Browser")
- (mapcar (lambda (elt) (concat "XS-Vcs-" elt))
+ "Homepage" "Vcs-Browser")
+ (mapcar (lambda (elt) (concat "Vcs-" elt))
debian-control-vcs-names))
"Valid source package field names, collected from several policy sections.")