r283 - in /packages/gnash/trunk/debian: changelog control h2m/cygnal.1 h2m/gnash.1 h2m/gprocessor.1 h2m/klash.1 mozilla-plugin-gnash.links mozilla-plugin-gnash.postinst mozilla-plugin-gnash.prerm

miriam at users.alioth.debian.org miriam at users.alioth.debian.org
Tue Aug 12 22:29:09 UTC 2008


Author: miriam
Date: Tue Aug 12 22:29:09 2008
New Revision: 283

URL: http://svn.debian.org/wsvn/pkg-flash/?sc=1&rev=283
Log:
Added support for alternatives
Clean dependencies
Remove pre-built man pages


Added:
    packages/gnash/trunk/debian/mozilla-plugin-gnash.postinst
    packages/gnash/trunk/debian/mozilla-plugin-gnash.prerm
Removed:
    packages/gnash/trunk/debian/h2m/cygnal.1
    packages/gnash/trunk/debian/h2m/gnash.1
    packages/gnash/trunk/debian/h2m/gprocessor.1
    packages/gnash/trunk/debian/h2m/klash.1
Modified:
    packages/gnash/trunk/debian/changelog
    packages/gnash/trunk/debian/control
    packages/gnash/trunk/debian/mozilla-plugin-gnash.links

Modified: packages/gnash/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-flash/packages/gnash/trunk/debian/changelog?rev=283&op=diff
==============================================================================
--- packages/gnash/trunk/debian/changelog (original)
+++ packages/gnash/trunk/debian/changelog Tue Aug 12 22:29:09 2008
@@ -1,11 +1,24 @@
-gnash (0.8.3+bzr20080811.1234-1) experimental; urgency=low
+gnash (0.8.3+bzr20080812.1800-1) experimental; urgency=low
 
   * New Upstream Release. Downloaded from Bazaar.
   * Replaced get-cvs-source by get-bzr-source in debian/rules to get latest
     changes from the Bazaar repository.
-  * Added build dependencies: libungif4-dev, haxe, mtasc, swfmill
-
- -- Miriam Ruiz <little_miry at yahoo.es>  Mon, 11 Aug 2008 14:49:18 +0200
+  * Added build dependency: libungif4-dev
+
+ -- Miriam Ruiz <little_miry at yahoo.es>  Tue, 12 Aug 2008 20:10:41 +0200
+
+gnash (0.8.3-5) unstable; urgency=low
+
+  [ Miriam Ruiz ]
+  * Reached an agreement between swfdec and gnash maintainers to use
+    the alternatives system to handle the installation of multiple swf player
+    plugins for mozilla. The common name for the alternatives link and for the
+    plugin will be flash-mozilla.so.
+  * Added debian/postinst and debian/prerm to handle alternatives
+  * Removed direct symbolic links to usr/lib/gnash/libgnashplugin.so in the
+    browsers' plugins directories.
+
+ -- Miriam Ruiz <little_miry at yahoo.es>  Tue, 12 Aug 2008 19:21:46 +0200
 
 gnash (0.8.3-4) unstable; urgency=low
 

Modified: packages/gnash/trunk/debian/control
URL: http://svn.debian.org/wsvn/pkg-flash/packages/gnash/trunk/debian/control?rev=283&op=diff
==============================================================================
--- packages/gnash/trunk/debian/control (original)
+++ packages/gnash/trunk/debian/control Tue Aug 12 22:29:09 2008
@@ -11,7 +11,7 @@
  libcurl4-gnutls-dev | libcurl3-gnutls-dev | libcurl4-openssl-dev | libcurl3-openssl-dev,
  libcaca-dev, libavcodec-dev, libavformat-dev, libming-dev,
  libming-util, libgstreamer-plugins-base0.10-dev, libqt3-mt-dev (>=3:3.3.8),
- libboost-serialization-dev, python, libungif4-dev, haxe, mtasc, swfmill
+ libboost-serialization-dev, libungif4-dev, python
 Standards-Version: 3.8.0
 Section: utils
 Homepage: http://www.gnu.org/software/gnash/

Modified: packages/gnash/trunk/debian/mozilla-plugin-gnash.links
URL: http://svn.debian.org/wsvn/pkg-flash/packages/gnash/trunk/debian/mozilla-plugin-gnash.links?rev=283&op=diff
==============================================================================
--- packages/gnash/trunk/debian/mozilla-plugin-gnash.links (original)
+++ packages/gnash/trunk/debian/mozilla-plugin-gnash.links Tue Aug 12 22:29:09 2008
@@ -1,5 +1,0 @@
-usr/lib/gnash/libgnashplugin.so usr/lib/mozilla/plugins/libgnashplugin.so
-usr/lib/gnash/libgnashplugin.so usr/lib/firefox/plugins/libgnashplugin.so
-usr/lib/gnash/libgnashplugin.so usr/lib/seamonkey/plugins/libgnashplugin.so
-usr/lib/gnash/libgnashplugin.so usr/lib/iceweasel/plugins/libgnashplugin.so
-usr/lib/gnash/libgnashplugin.so usr/lib/iceape/plugins/libgnashplugin.so

Added: packages/gnash/trunk/debian/mozilla-plugin-gnash.postinst
URL: http://svn.debian.org/wsvn/pkg-flash/packages/gnash/trunk/debian/mozilla-plugin-gnash.postinst?rev=283&op=file
==============================================================================
--- packages/gnash/trunk/debian/mozilla-plugin-gnash.postinst (added)
+++ packages/gnash/trunk/debian/mozilla-plugin-gnash.postinst Tue Aug 12 22:29:09 2008
@@ -1,0 +1,46 @@
+#!/bin/sh
+# postinst script for #PACKAGE#
+#
+# see: dh_installdeb(1)
+
+set -e
+
+# summary of how this script can be called:
+#        * <postinst> `configure' <most-recently-configured-version>
+#        * <old-postinst> `abort-upgrade' <new version>
+#        * <conflictor's-postinst> `abort-remove' `in-favour' <package>
+#          <new-version>
+#        * <postinst> `abort-remove'
+#        * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
+#          <failed-install-package> <version> `removing'
+#          <conflicting-package> <version>
+# for details, see http://www.debian.org/doc/debian-policy/ or
+# the debian-policy package
+
+
+case "$1" in
+    configure)
+        update-alternatives --quiet --install \
+            /usr/lib/mozilla/plugins/flash-mozilla.so \
+            flash-mozilla.so \
+            /usr/lib/gnash/libgnashplugin.so \
+           10
+    ;;
+
+    abort-upgrade|abort-remove|abort-deconfigure)
+    ;;
+
+    *)
+        echo "postinst 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
+
+

Added: packages/gnash/trunk/debian/mozilla-plugin-gnash.prerm
URL: http://svn.debian.org/wsvn/pkg-flash/packages/gnash/trunk/debian/mozilla-plugin-gnash.prerm?rev=283&op=file
==============================================================================
--- packages/gnash/trunk/debian/mozilla-plugin-gnash.prerm (added)
+++ packages/gnash/trunk/debian/mozilla-plugin-gnash.prerm Tue Aug 12 22:29:09 2008
@@ -1,0 +1,43 @@
+#!/bin/sh
+# prerm script for #PACKAGE#
+#
+# see: dh_installdeb(1)
+
+set -e
+
+# summary of how this script can be called:
+#        * <prerm> `remove'
+#        * <old-prerm> `upgrade' <new-version>
+#        * <new-prerm> `failed-upgrade' <old-version>
+#        * <conflictor's-prerm> `remove' `in-favour' <package> <new-version>
+#        * <deconfigured's-prerm> `deconfigure' `in-favour'
+#          <package-being-installed> <version> `removing'
+#          <conflicting-package> <version>
+# for details, see http://www.debian.org/doc/debian-policy/ or
+# the debian-policy package
+
+
+case "$1" in
+    remove|upgrade|deconfigure)
+        update-alternatives --quiet --remove \
+            flash-mozilla.so \
+            /usr/lib/gnash/libgnashplugin.so
+    ;;
+
+    failed-upgrade)
+    ;;
+
+    *)
+        echo "prerm 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
+
+




More information about the pkg-flash-devel mailing list