[Pkg-mono-svn-commits] rev 3763 - in gluezilla/trunk/debian: . patches

Mirco Bauer meebey at alioth.debian.org
Sun Nov 16 20:47:02 UTC 2008


Author: meebey
Date: 2008-11-16 20:47:02 +0000 (Sun, 16 Nov 2008)
New Revision: 3763

Added:
   gluezilla/trunk/debian/rules.hacky
Modified:
   gluezilla/trunk/debian/changelog
   gluezilla/trunk/debian/compat
   gluezilla/trunk/debian/control
   gluezilla/trunk/debian/patches/00list
   gluezilla/trunk/debian/rules
Log:
  * debian/control:
    + Added myself to Uploaders.
    + Replaced cdbs build-dep with debhelper >= 7
    + Added Enhances, Vcs-Browser and Vcs-Svn fields.
    + Enhanced package description.
  * debian/rules:
    + Migrated from cdbs to dh7.
  * debian/compat:
    + Bumped to 7.



Modified: gluezilla/trunk/debian/changelog
===================================================================
--- gluezilla/trunk/debian/changelog	2008-11-16 18:23:38 UTC (rev 3762)
+++ gluezilla/trunk/debian/changelog	2008-11-16 20:47:02 UTC (rev 3763)
@@ -1,12 +1,24 @@
-gluezilla (2.0-1) UNRELEASED; urgency=low
+gluezilla (2.0-1) experimental; urgency=low
 
+  [ Jo Shields ]
   * New upstream release.
   * Add myself to Uploaders.
   * No-change standards bump.
   * Build against Xulrunner 1.9 instead of 1.8.
 
- -- Jo Shields <directhex at apebox.org>  Thu, 16 Oct 2008 09:22:16 +0100
+  [ Mirco Bauer ]
+  * debian/control:
+    + Added myself to Uploaders.
+    + Replaced cdbs build-dep with debhelper >= 7
+    + Added Enhances, Vcs-Browser and Vcs-Svn fields.
+    + Enhanced package description.
+  * debian/rules:
+    + Migrated from cdbs to dh7.
+  * debian/compat:
+    + Bumped to 7.
 
+ -- Mirco Bauer <meebey at debian.org>  Sun, 16 Nov 2008 19:33:42 +0100
+
 gluezilla (1.9-1) unstable; urgency=high
 
   * New upstream release.

Modified: gluezilla/trunk/debian/compat
===================================================================
--- gluezilla/trunk/debian/compat	2008-11-16 18:23:38 UTC (rev 3762)
+++ gluezilla/trunk/debian/compat	2008-11-16 20:47:02 UTC (rev 3763)
@@ -1 +1 @@
-5
+7

Modified: gluezilla/trunk/debian/control
===================================================================
--- gluezilla/trunk/debian/control	2008-11-16 18:23:38 UTC (rev 3762)
+++ gluezilla/trunk/debian/control	2008-11-16 20:47:02 UTC (rev 3763)
@@ -2,13 +2,22 @@
 Section: libs
 Priority: optional
 Maintainer: Debian Mono Group <pkg-mono-group at lists.alioth.debian.org>
-Uploaders: Sebastian Dröge <slomo at debian.org>, Jo Shields <directhex at apebox.org>
-Build-Depends: debhelper (>= 5), cdbs, dpatch, libgtk2.0-dev, libmono-dev, libnspr4-dev, libnss3-dev, xulrunner-1.9-dev | xulrunner-dev (>= 1.9)
+Uploaders: Sebastian Dröge <slomo at debian.org>, Mirco Bauer <meebey at debian.org>, Jo Shields <directhex at apebox.org>
+Build-Depends: debhelper (>= 7),
+ dpatch,
+ libgtk2.0-dev,
+ libmono-dev,
+ libnspr4-dev,
+ libnss3-dev,
+ xulrunner-dev (>= 1.9) | xulrunner-1.9-dev
 Standards-Version: 3.8.0
+Vcs-Svn: svn://svn.debian.org/svn/pkg-mono/gluezilla/trunk
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-mono/gluezilla/trunk/
 
 Package: libgluezilla
 Architecture: i386 kfreebsd-i386 powerpc amd64 kfreebsd-amd64 ia64 arm armeb armel sparc s390 lpia
 Depends: ${shlibs:Depends}, ${misc:Depends}
-Description: Glue library to embed Gecko for the Mono Winforms WebControl
- A simple glue library to embed Gecko/xulrunner for the Mono Winforms
- WebControl.
+Enhances: libmono-winforms1.0-cil, libmono-winforms2.0-cil
+Description: glue library to embed Gecko in Mono's WebControl
+ This package contains a simple glue library to embed Gecko/xulrunner in the
+ WinForms implementation of Mono's WebControl class.

Modified: gluezilla/trunk/debian/patches/00list
===================================================================
--- gluezilla/trunk/debian/patches/00list	2008-11-16 18:23:38 UTC (rev 3762)
+++ gluezilla/trunk/debian/patches/00list	2008-11-16 20:47:02 UTC (rev 3763)
@@ -1 +1 @@
-02_missing-license-files.dpatch
+02_missing-license-files

Modified: gluezilla/trunk/debian/rules
===================================================================
--- gluezilla/trunk/debian/rules	2008-11-16 18:23:38 UTC (rev 3762)
+++ gluezilla/trunk/debian/rules	2008-11-16 20:47:02 UTC (rev 3763)
@@ -1,12 +1,28 @@
 #!/usr/bin/make -f
+export DH_VERBOSE=1
 
-include /usr/share/cdbs/1/rules/dpatch.mk
-include /usr/share/cdbs/1/rules/debhelper.mk
-include /usr/share/cdbs/1/class/autotools.mk
-include /usr/share/cdbs/1/rules/utils.mk
+include /usr/share/dpatch/dpatch.make
 
-common-binary-post-install-arch:: list-missing
+build: patch-stamp build-stamp
+build-stamp:
+	dh build
+	touch build-stamp
 
-install/libgluezilla::
+clean: clean-patched unpatch
+clean-patched:
+	dh clean
+
+install: build
+	dh $@
 	rm -f debian/libgluezilla/usr/lib/libgluezilla.la
 
+binary: binary-indep binary-arch
+
+binary-indep: install
+	dh $@
+
+binary-arch: install
+	dh $@
+
+%:
+	dh $@

Added: gluezilla/trunk/debian/rules.hacky
===================================================================
--- gluezilla/trunk/debian/rules.hacky	                        (rev 0)
+++ gluezilla/trunk/debian/rules.hacky	2008-11-16 20:47:02 UTC (rev 3763)
@@ -0,0 +1,16 @@
+#!/usr/bin/make -f
+export DH_VERBOSE=1
+
+include /usr/share/dpatch/dpatch.make
+
+build: patch-stamp
+	dh $@
+
+clean: unpatch
+	dh $@
+
+binary:
+	[ ! -f patch-stamp ] && echo "Don't call binary target directly, call build then binary" && exit 1
+
+%:
+	dh $@


Property changes on: gluezilla/trunk/debian/rules.hacky
___________________________________________________________________
Name: svn:executable
   + *




More information about the Pkg-mono-svn-commits mailing list