diff -Nru fonts-eeyek-1.0/debian/changelog fonts-eeyek-1.0/debian/changelog --- fonts-eeyek-1.0/debian/changelog 2012-02-10 17:37:10.000000000 +0000 +++ fonts-eeyek-1.0/debian/changelog 2013-06-15 18:27:16.000000000 +0000 @@ -1,3 +1,29 @@ +fonts-eeyek (1.0-3) unstable; urgency=low + + * Added myself as uploader. + * Bumped Standards-Version to 3.9.4. + * Use canonical anonscm.d.o URI's for Vcs-* field. + * Marked the package as multi-arch foreign. + * Removed unwanted dh-make comments. + * Remove ./ prefix from paths in debian/install. + * Added myself to the copyright holders for debian folder. + + -- Vasudev Kamath Sat, 15 Jun 2013 23:56:58 +0530 + +fonts-eeyek (1.0-2) unstable; urgency=low + + * Updated installation path to + '/usr/share/fonts/truetype/eeyek/' + * debian/preinst + + Added preinst to handle upgradation from old version + * Fixed bug of test file installtion. + * debian/control: + + Updated Standards-Version to 3.9.3 + * debian/copyright: + + Updated to copyright-format 1.0 + + -- Muneeb Shaikh Mon, 27 Feb 2012 20:07:10 +0530 + fonts-eeyek (1.0-1) unstable; urgency=low * Initial release (Closes: #628045) diff -Nru fonts-eeyek-1.0/debian/control fonts-eeyek-1.0/debian/control --- fonts-eeyek-1.0/debian/control 2012-02-10 18:17:52.000000000 +0000 +++ fonts-eeyek-1.0/debian/control 2013-06-15 18:27:16.000000000 +0000 @@ -2,15 +2,17 @@ Section: fonts Priority: optional Maintainer: Debian-IN Team -Uploaders: Muneeb Shaikh +Uploaders: Muneeb Shaikh , + Vasudev Kamath Build-Depends: debhelper (>= 8.0.0) -Standards-Version: 3.9.2 +Standards-Version: 3.9.4 Homepage: http://tabish.freeshell.org/eeyek/ -Vcs-Git: git://git.debian.org/debian-in/fonts-eeyek.git -Vcs-Browser: http://git.debian.org/?p=debian-in/fonts-eeyek.git;a=summary +Vcs-Git: git://anonscm.debian.org/debian-in/fonts-eeyek.git +Vcs-Browser: http://anonscm.debian.org/?p=debian-in/fonts-eeyek.git Package: fonts-eeyek Architecture: all +Multi-Arch: foreign Depends: ${misc:Depends} Description: Eeyek TrueType font for Meetei Mayek script Eeyek TrueType is font for Meetei Mayek script which was used to write diff -Nru fonts-eeyek-1.0/debian/copyright fonts-eeyek-1.0/debian/copyright --- fonts-eeyek-1.0/debian/copyright 2012-02-10 17:50:37.000000000 +0000 +++ fonts-eeyek-1.0/debian/copyright 2013-06-15 18:27:16.000000000 +0000 @@ -1,4 +1,4 @@ -Format: http://anonscm.debian.org/gitweb/?p=dbnpolicy/policy.git;a=blob;f=copyright-format/copyright-format.xml;hb=HEAD +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: Eeyek Unicode Source: http://tabish.freeshell.org/eeyek/download.html @@ -8,6 +8,9 @@ Files: debian/* Copyright: 2012, Muneeb Shaikh + 2013, Vasudev Kamath +License: GPL-2+ + License: GPL-2+ This package is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff -Nru fonts-eeyek-1.0/debian/install fonts-eeyek-1.0/debian/install --- fonts-eeyek-1.0/debian/install 2012-02-10 16:44:45.000000000 +0000 +++ fonts-eeyek-1.0/debian/install 2013-06-15 18:27:16.000000000 +0000 @@ -1 +1,2 @@ -./Eeyek.ttf usr/share/fonts/truetype/fonts-eeyek/ +Eeyek.ttf usr/share/fonts/truetype/eeyek/ +unicode_meetei_mayek_editor.html /usr/share/doc/fonts-eeyek/tests/ diff -Nru fonts-eeyek-1.0/debian/preinst fonts-eeyek-1.0/debian/preinst --- fonts-eeyek-1.0/debian/preinst 1970-01-01 00:00:00.000000000 +0000 +++ fonts-eeyek-1.0/debian/preinst 2013-06-15 18:27:16.000000000 +0000 @@ -0,0 +1,38 @@ +#!/bin/sh +# preinst script for #PACKAGE# +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `install' +# * `install' +# * `upgrade' +# * `abort-upgrade' +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package + + +case "$1" in + install|upgrade) + if [ -d /usr/share/fonts/truetype/fonts-eeyek ]; then + rm -rf /usr/share/fonts/truetype/fonts-eeyek/ + fi + ;; + + abort-upgrade) + ;; + + *) + echo "preinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 diff -Nru fonts-eeyek-1.0/debian/rules fonts-eeyek-1.0/debian/rules --- fonts-eeyek-1.0/debian/rules 2012-02-10 17:37:35.000000000 +0000 +++ fonts-eeyek-1.0/debian/rules 2013-06-15 18:27:16.000000000 +0000 @@ -1,10 +1,5 @@ #!/usr/bin/make -f -# This file was originally written by Joey Hess and Craig Small. -# As a special exception, when this file is copied by dh-make into a -# dh-make output file, you may use that output file without restriction. -# This special exception was added by Craig Small in version 0.37 of dh-make. - # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1