diff -Nru x-face-el-1.3.6.24/debian/changelog x-face-el-1.3.6.24/debian/changelog --- x-face-el-1.3.6.24/debian/changelog 2012-04-27 17:26:34.000000000 +0000 +++ x-face-el-1.3.6.24/debian/changelog 2013-12-27 23:17:13.000000000 +0000 @@ -1,3 +1,12 @@ +x-face-el (1.3.6.24-13) unstable; urgency=low + + * Workaround for emacsen-common <2 and debhelper <9.20131104 + * Add Vcs-Git and Vcs-Browser + * Update debian/copyright + * Update Standards-Version to 3.9.5 + + -- Tatsuya Kinoshita Sat, 28 Dec 2013 08:17:09 +0900 + x-face-el (1.3.6.24-12) unstable; urgency=low * debian/control: diff -Nru x-face-el-1.3.6.24/debian/control x-face-el-1.3.6.24/debian/control --- x-face-el-1.3.6.24/debian/control 2012-04-27 17:05:43.000000000 +0000 +++ x-face-el-1.3.6.24/debian/control 2013-12-27 23:03:44.000000000 +0000 @@ -3,7 +3,9 @@ Priority: optional Maintainer: Tatsuya Kinoshita Build-Depends: debhelper (>= 5) -Standards-Version: 3.9.3 +Standards-Version: 3.9.5 +Vcs-Git: git://anonscm.debian.org/collab-maint/x-face-el.git +Vcs-Browser: http://anonscm.debian.org/gitweb/?p=collab-maint/x-face-el.git Homepage: http://www.jpl.org/ftp/pub/elisp/ Package: x-face-el diff -Nru x-face-el-1.3.6.24/debian/copyright x-face-el-1.3.6.24/debian/copyright --- x-face-el-1.3.6.24/debian/copyright 2012-04-27 17:12:46.000000000 +0000 +++ x-face-el-1.3.6.24/debian/copyright 2013-12-27 23:02:59.000000000 +0000 @@ -33,16 +33,11 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. . - You should have received a copy of the GNU General Public License - with the Debian distribution in file `/usr/share/common-licenses/GPL'; - if not, write to the Free Software Foundation, Inc., 51 Franklin St, - Fifth Floor, Boston, MA 02110-1301, USA. - . On Debian systems, the complete text of the GNU General Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'. Files: debian/* -Copyright: 2003-2012 Tatsuya Kinoshita +Copyright: 2003-2013 Tatsuya Kinoshita 1999-2002 Takuo KITAME License: The Debian packaging is distributed under the same conditions as the diff -Nru x-face-el-1.3.6.24/debian/postinst x-face-el-1.3.6.24/debian/postinst --- x-face-el-1.3.6.24/debian/postinst 1970-01-01 00:00:00.000000000 +0000 +++ x-face-el-1.3.6.24/debian/postinst 2013-12-27 22:58:09.000000000 +0000 @@ -0,0 +1,10 @@ +#!/bin/sh +set -e +# Workaround to compatible with emacsen-common <2.0.0 +if [ ! -e /var/lib/emacsen-common/state/package/installed/emacsen-common ]; then + if [ "$1" = "configure" ] && [ -x /usr/lib/emacsen-common/emacs-package-install ]; then + /usr/lib/emacsen-common/emacs-package-install x-face-el + fi +else +#DEBHELPER# +fi diff -Nru x-face-el-1.3.6.24/debian/prerm x-face-el-1.3.6.24/debian/prerm --- x-face-el-1.3.6.24/debian/prerm 1970-01-01 00:00:00.000000000 +0000 +++ x-face-el-1.3.6.24/debian/prerm 2013-12-27 22:58:18.000000000 +0000 @@ -0,0 +1,10 @@ +#!/bin/sh +set -e +# Workaround to compatible with emacsen-common <2.0.0 +if [ ! -e /var/lib/emacsen-common/state/package/installed/emacsen-common ]; then + if [ -x /usr/lib/emacsen-common/emacs-package-remove ]; then + /usr/lib/emacsen-common/emacs-package-remove x-face-el + fi +else +#DEBHELPER# +fi