[Pkg-xfce-commits] r3724 - goodies/trunk/xfce4-notes-plugin/debian

Yves-Alexis Perez corsac at alioth.debian.org
Mon Dec 21 10:03:34 UTC 2009


Author: corsac
Date: 2009-12-21 22:03:22 +0000 (Mon, 21 Dec 2009)
New Revision: 3724

Added:
   goodies/trunk/xfce4-notes-plugin/debian/xfce4-notes-plugin.install
   goodies/trunk/xfce4-notes-plugin/debian/xfce4-notes.install
Modified:
   goodies/trunk/xfce4-notes-plugin/debian/changelog
   goodies/trunk/xfce4-notes-plugin/debian/control
   goodies/trunk/xfce4-notes-plugin/debian/rules
Log:
* New upstream release.
* debian/control:
  - add build-dep on libunique-dev.
  - add a new xfce4-notes binary package so users can run notes without
    needing xfce4-panel.
* debian/rules rewritten using debhelper 7 because CDBS fails dh_install
  --fail-missing when using multiple packages.
* bump debhelper build-dep because we use overrides.

Modified: goodies/trunk/xfce4-notes-plugin/debian/changelog
===================================================================
--- goodies/trunk/xfce4-notes-plugin/debian/changelog	2009-12-12 16:05:55 UTC (rev 3723)
+++ goodies/trunk/xfce4-notes-plugin/debian/changelog	2009-12-21 22:03:22 UTC (rev 3724)
@@ -1,3 +1,16 @@
+xfce4-notes-plugin (1.7.2-1) UNRELEASED; urgency=low
+
+  * New upstream release.
+  * debian/control:
+    - add build-dep on libunique-dev.
+    - add a new xfce4-notes binary package so users can run notes without
+      needing xfce4-panel.
+  * debian/rules rewritten using debhelper 7 because CDBS fails dh_install
+    --fail-missing when using multiple packages.
+  * bump debhelper build-dep because we use overrides.
+
+ -- Yves-Alexis Perez <corsac at debian.org>  Mon, 21 Dec 2009 22:02:45 +0100
+
 xfce4-notes-plugin (1.7.1-1) unstable; urgency=low
 
   * New upstream release.

Modified: goodies/trunk/xfce4-notes-plugin/debian/control
===================================================================
--- goodies/trunk/xfce4-notes-plugin/debian/control	2009-12-12 16:05:55 UTC (rev 3723)
+++ goodies/trunk/xfce4-notes-plugin/debian/control	2009-12-21 22:03:22 UTC (rev 3724)
@@ -2,22 +2,34 @@
 Section: xfce
 Priority: optional
 Maintainer: Debian Xfce Maintainers <pkg-xfce-devel at lists.alioth.debian.org>
-Build-Depends: autotools-dev, cdbs, debhelper (>= 7), 
+Build-Depends: autotools-dev, cdbs, debhelper (>= 7.0.50~),
  xfce4-panel-dev (>= 4.4.1), libxml2-dev, libxml-parser-perl, intltool, 
  libx11-dev, pkg-config, libgtk2.0-dev, libxfcegui4-dev,
- libthunar-vfs-1-dev, libxfconf-0-dev
+ libthunar-vfs-1-dev, libxfconf-0-dev, binutils-gold, libunique-dev
 Uploaders: Emanuele Rocca <ema at debian.org>, Simon Huggins <huggie at earth.li>, Yves-Alexis Perez <corsac at debian.org>
 Standards-Version: 3.8.3
 Homepage: http://goodies.xfce.org/projects/panel-plugins/xfce4-notes-plugin
 Vcs-Svn: svn://svn.debian.org/pkg-xfce/goodies/trunk/xfce4-notes-plugin/
 Vcs-Browser: http://svn.debian.org/wsvn/pkg-xfce/goodies/trunk/xfce4-notes-plugin/
 
+Package: xfce4-notes
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: Notes application for the Xfce4 desktop
+ The notes tool provides you a simple text editor in a little window for the 
+ Xfce 4 desktop.  Notes are especially useful for temporary stuff.
+ .
+ It supports multiple notes through a notebook. Click on the upper left
+ corner button to open a new note.
+
 Package: xfce4-notes-plugin
 Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}
+Depends: xfce4-notes, ${shlibs:Depends}, ${misc:Depends}
 Description: Notes plugin for the Xfce4 desktop
- The notes plugin provides you a simple text editor in a little window for the 
- Xfce 4.4 desktop.  Notes are especially useful for temporary stuff.
+ The notes tool provides you a simple text editor in a little window for the 
+ Xfce 4 desktop.  Notes are especially useful for temporary stuff.
  .
- This plugin supports multiple notes through a notebook. Click on the upper left
+ It supports multiple notes through a notebook. Click on the upper left
  corner button to open a new note.
+ .
+ This package contains the xfce4-panel plugin.

Modified: goodies/trunk/xfce4-notes-plugin/debian/rules
===================================================================
--- goodies/trunk/xfce4-notes-plugin/debian/rules	2009-12-12 16:05:55 UTC (rev 3723)
+++ goodies/trunk/xfce4-notes-plugin/debian/rules	2009-12-21 22:03:22 UTC (rev 3724)
@@ -1,11 +1,14 @@
 #!/usr/bin/make -f
 
-include /usr/share/cdbs/1/rules/debhelper.mk
-include /usr/share/cdbs/1/rules/simple-patchsys.mk
-include /usr/share/cdbs/1/class/autotools.mk
+LDFLAGS+=-Wl,-z,defs -Wl,--as-needed
 
-DEB_CONFIGURE_EXTRA_FLAGS := --enable-fs-monitor
+override_dh_auto_configure:
+	dh_auto_configure -- --enable-fs-monitor
 
-binary-post-install/xfce4-notes-plugin::
-	-rm -rf debian/xfce4-notes-plugin/usr/lib/xfce4/panel-plugins/*.a
-	-rm -rf debian/xfce4-notes-plugin/usr/lib/xfce4/panel-plugins/*.la
+override_dh_install:
+	-rm -rf debian/tmp/usr/lib/xfce4/panel-plugins/*.a
+	-rm -rf debian/tmp/usr/lib/xfce4/panel-plugins/*.la
+	dh_install --list-missing
+
+%:
+	dh $@

Added: goodies/trunk/xfce4-notes-plugin/debian/xfce4-notes-plugin.install
===================================================================
--- goodies/trunk/xfce4-notes-plugin/debian/xfce4-notes-plugin.install	                        (rev 0)
+++ goodies/trunk/xfce4-notes-plugin/debian/xfce4-notes-plugin.install	2009-12-21 22:03:22 UTC (rev 3724)
@@ -0,0 +1,2 @@
+usr/share/xfce4
+usr/lib

Added: goodies/trunk/xfce4-notes-plugin/debian/xfce4-notes.install
===================================================================
--- goodies/trunk/xfce4-notes-plugin/debian/xfce4-notes.install	                        (rev 0)
+++ goodies/trunk/xfce4-notes-plugin/debian/xfce4-notes.install	2009-12-21 22:03:22 UTC (rev 3724)
@@ -0,0 +1,6 @@
+etc
+usr/bin
+usr/share/applications
+usr/share/icons
+usr/share/locale
+usr/share




More information about the Pkg-xfce-commits mailing list