[Pkg-cli-apps-commits] r3673 - in /packages/gshare/trunk/debian: changelog control patches/03_invalid-cast.patch patches/99_autoreconf.patch rules watch

slomo at users.alioth.debian.org slomo at users.alioth.debian.org
Sat Jan 5 06:12:08 UTC 2008


Author: slomo
Date: Sat Jan  5 06:12:08 2008
New Revision: 3673

URL: http://svn.debian.org/wsvn/pkg-cli-apps/?sc=1&rev=3673
Log:
* debian/watch:
  + Remove watch file, upstream seems to be dead and there is no official
    gshare homepage anymore (Closes: #449942).
* debian/control:
  + Update Standards-Version to 3.7.3, no additional changes needed.
* debian/patches/03_invalid-cast.patch:
  + Don't try to implicitely cast from a EventHandler to a ThreadStart.
    Remove the method in question completely as it isn't used 
    anywhere (Closes: #458671).
* debian/rules,
  debian/patches/99_autoreconf.patch:
  + Remove AssemblyInfo.cs in clean instead of removing it in the patch
    which will cause a FTBFS if built twice from the same source tree
    (Closes: #424380).
* debian/rules:
  + Call dh_clifixperms instead of using manual find magic to fix
    file permissions.

Added:
    packages/gshare/trunk/debian/patches/03_invalid-cast.patch
Removed:
    packages/gshare/trunk/debian/watch
Modified:
    packages/gshare/trunk/debian/changelog
    packages/gshare/trunk/debian/control
    packages/gshare/trunk/debian/patches/99_autoreconf.patch
    packages/gshare/trunk/debian/rules

Modified: packages/gshare/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-cli-apps/packages/gshare/trunk/debian/changelog?rev=3673&op=diff
==============================================================================
--- packages/gshare/trunk/debian/changelog (original)
+++ packages/gshare/trunk/debian/changelog Sat Jan  5 06:12:08 2008
@@ -1,3 +1,25 @@
+gshare (0.94-4) unstable; urgency=low
+
+  * debian/watch:
+    + Remove watch file, upstream seems to be dead and there is no official
+      gshare homepage anymore (Closes: #449942).
+  * debian/control:
+    + Update Standards-Version to 3.7.3, no additional changes needed.
+  * debian/patches/03_invalid-cast.patch:
+    + Don't try to implicitely cast from a EventHandler to a ThreadStart.
+      Remove the method in question completely as it isn't used 
+      anywhere (Closes: #458671).
+  * debian/rules,
+    debian/patches/99_autoreconf.patch:
+    + Remove AssemblyInfo.cs in clean instead of removing it in the patch
+      which will cause a FTBFS if built twice from the same source tree
+      (Closes: #424380).
+  * debian/rules:
+    + Call dh_clifixperms instead of using manual find magic to fix
+      file permissions.
+
+ -- Sebastian Dröge <slomo at debian.org>  Sat, 05 Jan 2008 06:56:54 +0100
+
 gshare (0.94-3) unstable; urgency=low
 
   * Upload to unstable

Modified: packages/gshare/trunk/debian/control
URL: http://svn.debian.org/wsvn/pkg-cli-apps/packages/gshare/trunk/debian/control?rev=3673&op=diff
==============================================================================
--- packages/gshare/trunk/debian/control (original)
+++ packages/gshare/trunk/debian/control Sat Jan  5 06:12:08 2008
@@ -3,7 +3,7 @@
 Priority: optional
 Maintainer: Sebastian Dröge <slomo at debian.org>
 Build-Depends: debhelper (>= 5), cdbs, cli-common-dev (>= 0.4.4), libmono-dev (>= 1.1.10), mono-gmcs (>= 1.1.13) | c-sharp-2.0-compiler, libmono2.0-cil, libgtk2.0-cil (>= 2.8), libgconf2.0-cil (>= 2.8), libglade2.0-cil (>= 2.6), libgnome2.0-cil (>= 2.8), libavahi1.0-cil (>= 0.6.5), pkg-config, intltool (>= 0.23), scrollkeeper, libndesk-dbus1.0-cil (>= 0.4), libndesk-dbus-glib1.0-cil (>= 0.3)
-Standards-Version: 3.7.2
+Standards-Version: 3.7.3
 
 Package: gshare
 Architecture: all

Added: packages/gshare/trunk/debian/patches/03_invalid-cast.patch
URL: http://svn.debian.org/wsvn/pkg-cli-apps/packages/gshare/trunk/debian/patches/03_invalid-cast.patch?rev=3673&op=file
==============================================================================
--- packages/gshare/trunk/debian/patches/03_invalid-cast.patch (added)
+++ packages/gshare/trunk/debian/patches/03_invalid-cast.patch Sat Jan  5 06:12:08 2008
@@ -1,0 +1,16 @@
+--- src/gsharelib/consts.cs.in.old	2008-01-05 07:04:15.000000000 +0100
++++ src/gsharelib/consts.cs.in	2008-01-05 07:04:24.000000000 +0100
+@@ -170,13 +170,6 @@
+ 
+         }
+ 
+-        public static void InvokeLater(EventHandler code)
+-        {
+-            Thread thread = new Thread(new ThreadStart(code));
+-            thread.IsBackground = true;
+-            thread.Start();
+-        }
+-        
+         public delegate void BackgroundTask();
+         
+         public static void InvokeLater(BackgroundTask code)

Modified: packages/gshare/trunk/debian/patches/99_autoreconf.patch
URL: http://svn.debian.org/wsvn/pkg-cli-apps/packages/gshare/trunk/debian/patches/99_autoreconf.patch?rev=3673&op=diff
==============================================================================
--- packages/gshare/trunk/debian/patches/99_autoreconf.patch (original)
+++ packages/gshare/trunk/debian/patches/99_autoreconf.patch Sat Jan  5 06:12:08 2008
@@ -14803,18 +14803,6 @@
  errstatus=0
  dirmode=
  
-diff -x'*config.sub' -x'*config.guess' -Naur gshare-0.94-automake/src/gshared/AssemblyInfo.cs gshare-0.94/src/gshared/AssemblyInfo.cs
---- gshare-0.94-automake/src/gshared/AssemblyInfo.cs	2007-02-25 04:49:43.000000000 +0100
-+++ gshare-0.94/src/gshared/AssemblyInfo.cs	1970-01-01 01:00:00.000000000 +0100
-@@ -1,8 +0,0 @@
--using System.Reflection;
--using System.Runtime.CompilerServices;
--
--[assembly: AssemblyVersion("0.94")]
--[assembly: AssemblyTitle("gshared")]
--[assembly: AssemblyDescription("GShare Service")]
--[assembly: AssemblyCopyright("Copyright (c) 2006 Celso Pinto")]
--
 diff -x'*config.sub' -x'*config.guess' -Naur gshare-0.94-automake/src/gshared/Makefile.in gshare-0.94/src/gshared/Makefile.in
 --- gshare-0.94-automake/src/gshared/Makefile.in	2007-02-25 04:49:24.000000000 +0100
 +++ gshare-0.94/src/gshared/Makefile.in	2007-02-25 23:27:12.360801960 +0100

Modified: packages/gshare/trunk/debian/rules
URL: http://svn.debian.org/wsvn/pkg-cli-apps/packages/gshare/trunk/debian/rules?rev=3673&op=diff
==============================================================================
--- packages/gshare/trunk/debian/rules (original)
+++ packages/gshare/trunk/debian/rules Sat Jan  5 06:12:08 2008
@@ -9,13 +9,12 @@
 install/gshare::
 	# remove scrollkeeper stuff
 	rm -rf debian/gshare/var
-	# fix permissions of CIL binaries
-	-find debian/ -type f -name "*.dll" -or -name "*.mdb" -or -name "*.cs" -or -name "*.config" | xargs chmod -x
-	-find debian/ -type f -name "*.exe" | xargs chmod +x
 	
 common-binary-predeb-indep::
+	dh_clifixperms
 	dh_clideps -d
 
 clean::
 	rm -rf $(MONO_SHARED_DIR)/.wapi
+	rm -f src/gshared/AssemblyInfo.cs
 




More information about the Pkg-cli-apps-commits mailing list