[Pkg-voip-commits] r7898 - in /dahdi-firmware/trunk/debian: changelog control copyright postrm
tzafrir-guest at alioth.debian.org
tzafrir-guest at alioth.debian.org
Fri Dec 18 23:34:58 UTC 2009
Author: tzafrir-guest
Date: Fri Dec 18 23:34:57 2009
New Revision: 7898
URL: http://svn.debian.org/wsvn/pkg-voip/?sc=1&rev=7898
Log:
* Purge downloaded files
* Fix copyright statement.
* Bump standard version (no change needed).
Added:
dahdi-firmware/trunk/debian/postrm (with props)
Modified:
dahdi-firmware/trunk/debian/changelog
dahdi-firmware/trunk/debian/control
dahdi-firmware/trunk/debian/copyright
Modified: dahdi-firmware/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-voip/dahdi-firmware/trunk/debian/changelog?rev=7898&op=diff
==============================================================================
--- dahdi-firmware/trunk/debian/changelog (original)
+++ dahdi-firmware/trunk/debian/changelog Fri Dec 18 23:34:57 2009
@@ -1,4 +1,4 @@
-dahdi-firmware (1:2.2.0.2-1) UNRELEASED; urgency=low
+dahdi-firmware (1:2.2.1~rc2-1) UNRELEASED; urgency=low
[ Tzafrir Cohen ]
* Initial release (Closes: #524119).
@@ -6,4 +6,4 @@
[ Victor Seva ]
* Fix debian/watch
- -- Tzafrir Cohen <tzafrir.cohen at xorcom.com> Thu, 20 Nov 2008 12:01:53 +0200
+ -- Tzafrir Cohen <tzafrir.cohen at xorcom.com> Sat, 19 Dec 2009 01:04:23 +0200
Modified: dahdi-firmware/trunk/debian/control
URL: http://svn.debian.org/wsvn/pkg-voip/dahdi-firmware/trunk/debian/control?rev=7898&op=diff
==============================================================================
--- dahdi-firmware/trunk/debian/control (original)
+++ dahdi-firmware/trunk/debian/control Fri Dec 18 23:34:57 2009
@@ -4,7 +4,7 @@
Maintainer: Debian VoIP Team <pkg-voip-maintainers at lists.alioth.debian.org>
Uploaders: Tzafrir Cohen <tzafrir.cohen at xorcom.com>
Build-Depends: debhelper, cdbs
-Standards-Version: 3.8.1
+Standards-Version: 3.8.3
Homepage: http://www.asterisk.org/
Vcs-Svn: svn://svn.debian.org/pkg-voip/dahdi-firmware/trunk/
Vcs-Browser: http://svn.debian.org/viewsvn/pkg-voip/dahdi-firmware/
Modified: dahdi-firmware/trunk/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-voip/dahdi-firmware/trunk/debian/copyright?rev=7898&op=diff
==============================================================================
--- dahdi-firmware/trunk/debian/copyright (original)
+++ dahdi-firmware/trunk/debian/copyright Fri Dec 18 23:34:57 2009
@@ -11,7 +11,7 @@
The firmware files (*.hex) in this directory are software for the
Astribank itself and not intended to run on the Linux system itself.
-They are generally freely distriributable (see exact terms below).
+They are freely distriributable (see exact terms below).
/****************************************************************************/
/* Copyright (c) 2004-2006 Xorcom Inc. All Rights Reserved. */
@@ -47,9 +47,8 @@
/****************************************************************************/
-TODO: include drivers/dahdi/firmware/Makefile ,
-drivers/dahdi/firmware/make_firmware_object.in
-
+drivers/dahdi/firmware/Makefile is, as most other parts of DAHDI,
+is license under the terms of GPLv2 .
I will not include here a complete review of the package. See the
package dahdi-linux that uses the same source tarball (except those
Added: dahdi-firmware/trunk/debian/postrm
URL: http://svn.debian.org/wsvn/pkg-voip/dahdi-firmware/trunk/debian/postrm?rev=7898&op=file
==============================================================================
--- dahdi-firmware/trunk/debian/postrm (added)
+++ dahdi-firmware/trunk/debian/postrm Fri Dec 18 23:34:57 2009
@@ -1,0 +1,42 @@
+#!/bin/sh
+# postrm script for #PACKAGE#
+#
+# see: dh_installdeb(1)
+
+set -e
+
+# summary of how this script can be called:
+# * <postrm> `remove'
+# * <postrm> `purge'
+# * <old-postrm> `upgrade' <new-version>
+# * <new-postrm> `failed-upgrade' <old-version>
+# * <new-postrm> `abort-install'
+# * <new-postrm> `abort-install' <old-version>
+# * <new-postrm> `abort-upgrade' <old-version>
+# * <disappearer's-postrm> `disappear' <overwriter>
+# <overwriter-version>
+# for details, see http://www.debian.org/doc/debian-policy/ or
+# the debian-policy package
+
+
+case "$1" in
+ purge)
+ rm -f /var/lib/dahdi/digium-firm/dahdi-*
+ ;;
+ remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
+ ;;
+
+ *)
+ echo "postrm 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
+
+
Propchange: dahdi-firmware/trunk/debian/postrm
------------------------------------------------------------------------------
svn:executable = *
More information about the Pkg-voip-commits
mailing list