[Pkg-xfce-commits] r2124 - in goodies/xfce4-screenshooter-plugin/debian: . patches

corsac at alioth.debian.org corsac at alioth.debian.org
Tue Jun 17 18:02:02 UTC 2008


Author: corsac
Date: 2008-06-17 18:01:59 +0000 (Tue, 17 Jun 2008)
New Revision: 2124

Added:
   goodies/xfce4-screenshooter-plugin/debian/xfce4-screenshooter.1
Removed:
   goodies/xfce4-screenshooter-plugin/debian/patches/01_filename-generation.patch
   goodies/xfce4-screenshooter-plugin/debian/patches/02_dont-save-on-cancel.patch
Modified:
   goodies/xfce4-screenshooter-plugin/debian/changelog
   goodies/xfce4-screenshooter-plugin/debian/control
   goodies/xfce4-screenshooter-plugin/debian/rules
Log:
* debian/control:
  - update my email address.
  - remove Rudy Godoy, Martin Loschwitz from Uploaders:.
  - update standards version to 3.8.0.
* debian/patches:
  - drop 01_filename-generation, merged upstream.
  - drop 02_dont-save-on-cancel, merged upstream.
* debian/xfce4-screenshooter.1 manpage added.
* debian/rules:
  - install xfce4-screenshooter manpage.

Modified: goodies/xfce4-screenshooter-plugin/debian/changelog
===================================================================
--- goodies/xfce4-screenshooter-plugin/debian/changelog	2008-06-17 17:44:10 UTC (rev 2123)
+++ goodies/xfce4-screenshooter-plugin/debian/changelog	2008-06-17 18:01:59 UTC (rev 2124)
@@ -1,12 +1,22 @@
-xfce4-screenshooter-plugin (1.0.1-1) UNRELEASED; urgency=low
+xfce4-screenshooter-plugin (1.1.0-1) UNRELEASED; urgency=low
 
   [ Simon Huggins ]
   * Add Vcs-* headers to debian/control
 
   [ Yves-Alexis Perez ]
   * New upstream release.
+  * debian/control:
+    - update my email address.
+    - remove Rudy Godoy, Martin Loschwitz from Uploaders:.
+    - update standards version to 3.8.0.
+  * debian/patches:
+    - drop 01_filename-generation, merged upstream.
+    - drop 02_dont-save-on-cancel, merged upstream.
+  * debian/xfce4-screenshooter.1 manpage added.
+  * debian/rules:
+    - install xfce4-screenshooter manpage.
 
- -- Yves-Alexis Perez <corsac at debian.org>  Tue, 17 Jun 2008 19:42:25 +0200
+ -- Yves-Alexis Perez <corsac at debian.org>  Tue, 17 Jun 2008 19:58:29 +0200
 
 xfce4-screenshooter-plugin (1.0.0-3) unstable; urgency=low
   

Modified: goodies/xfce4-screenshooter-plugin/debian/control
===================================================================
--- goodies/xfce4-screenshooter-plugin/debian/control	2008-06-17 17:44:10 UTC (rev 2123)
+++ goodies/xfce4-screenshooter-plugin/debian/control	2008-06-17 18:01:59 UTC (rev 2124)
@@ -2,9 +2,9 @@
 Section: x11
 Priority: optional
 Maintainer: Debian Xfce Maintainers <pkg-xfce-devel at lists.alioth.debian.org>
-Uploaders: Yves-Alexis Perez <corsac at corsac.net>, Emanuele Rocca <ema at debian.org>, Simon Huggins <huggie at earth.li>, Rudy Godoy <rudy at kernel-panik.org>, Martin Loschwitz <madkiss at debian.org>
+Uploaders: Yves-Alexis Perez <corsac at debian.org>, Emanuele Rocca <ema at debian.org>, Simon Huggins <huggie at earth.li>
 Build-Depends: debhelper (>= 4.1.0), autotools-dev, cdbs, libexo-0.3-dev (>= 0.3.2), xfce4-panel-dev (>= 4.4.1), libxml-parser-perl
-Standards-Version: 3.7.2
+Standards-Version: 3.8.0
 Vcs-Svn: svn://svn.debian.org/pkg-xfce/goodies/xfce4-screenshooter-plugin/
 Vcs-Browser: http://svn.debian.org/wsvn/pkg-xfce/goodies/xfce4-screenshooter-plugin/
 

Deleted: goodies/xfce4-screenshooter-plugin/debian/patches/01_filename-generation.patch
===================================================================
--- goodies/xfce4-screenshooter-plugin/debian/patches/01_filename-generation.patch	2008-06-17 17:44:10 UTC (rev 2123)
+++ goodies/xfce4-screenshooter-plugin/debian/patches/01_filename-generation.patch	2008-06-17 18:01:59 UTC (rev 2124)
@@ -1,19 +0,0 @@
---- panel-plugin/screenshooter.c.old	2007-06-03 23:16:08.000000000 +0200
-+++ panel-plugin/screenshooter.c	2007-06-04 00:14:53.000000000 +0200
-@@ -199,7 +199,7 @@
-     if(uri == NULL)
-         return NULL;
-     file_name = g_strdup ("Screenshot.png");
--    if((test=open(file_name,O_RDWR,MODE))==-1)
-+    if((test=open(g_build_filename(uri, file_name, NULL),O_RDWR,MODE))==-1)
-     {
-         return file_name;
-     }
-@@ -208,7 +208,7 @@
-         g_free (file_name);
-         file_name = g_strdup_printf ("Screenshot-%d.png",i);
-     }
--    while((test=open(file_name,O_RDWR,MODE))!=-1);
-+    while((test=open(g_build_filename(uri, file_name, NULL),O_RDWR,MODE))!=-1);
- 
-     return file_name;

Deleted: goodies/xfce4-screenshooter-plugin/debian/patches/02_dont-save-on-cancel.patch
===================================================================
--- goodies/xfce4-screenshooter-plugin/debian/patches/02_dont-save-on-cancel.patch	2008-06-17 17:44:10 UTC (rev 2123)
+++ goodies/xfce4-screenshooter-plugin/debian/patches/02_dont-save-on-cancel.patch	2008-06-17 18:01:59 UTC (rev 2124)
@@ -1,37 +0,0 @@
---- panel-plugin/screenshooter.c.old	2007-06-03 23:16:08.000000000 +0200
-+++ panel-plugin/screenshooter.c	2007-06-04 00:14:53.000000000 +0200
-@@ -227,6 +227,7 @@
- 
-     gint width;
-     gint height;
-+    gint dialog_response;
- 
-     gchar * filename = NULL;
-     gchar * basename = NULL;
-@@ -266,12 +267,14 @@
-     
-     gtk_image_set_from_pixbuf (GTK_IMAGE (sd->preview), thumbnail);
-     g_object_unref (thumbnail);
--            filename = generate_filename_for_uri (xfce_file_chooser_get_current_folder(XFCE_FILE_CHOOSER (sd->chooser)));
-+    filename = generate_filename_for_uri (xfce_file_chooser_get_current_folder(XFCE_FILE_CHOOSER (sd->chooser)));
-     
-     if (sd->ask_for_file && filename)
-     {    
-         gtk_file_chooser_set_current_name (GTK_FILE_CHOOSER (sd->chooser), filename);
--        if (gtk_dialog_run (GTK_DIALOG (sd->chooser)) == GTK_RESPONSE_ACCEPT)
-+        
-+        dialog_response = gtk_dialog_run (GTK_DIALOG (sd->chooser));
-+        if (dialog_response == GTK_RESPONSE_ACCEPT)
-         {    
-         filename = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER(sd->chooser));
-         }
-@@ -289,7 +292,8 @@
-     }
-     
-     if (filename) {
--        gdk_pixbuf_save (screenshot, filename, "png", NULL, NULL);
-+        if (!(sd->ask_for_file) || dialog_response == GTK_RESPONSE_ACCEPT) 
-+            gdk_pixbuf_save (screenshot, filename, "png", NULL, NULL);
-         g_free (filename);
-     }
- }

Modified: goodies/xfce4-screenshooter-plugin/debian/rules
===================================================================
--- goodies/xfce4-screenshooter-plugin/debian/rules	2008-06-17 17:44:10 UTC (rev 2123)
+++ goodies/xfce4-screenshooter-plugin/debian/rules	2008-06-17 18:01:59 UTC (rev 2124)
@@ -3,4 +3,5 @@
 include /usr/share/cdbs/1/rules/simple-patchsys.mk
 include /usr/share/cdbs/1/class/autotools.mk
 
-DEB_CONFIGURE_EXTRA_FLAGS := --enable-final
+binary-post-install/xfce4-screenshooter-plugin::
+	dh_installman debian/xfce4-screenshooter.1

Added: goodies/xfce4-screenshooter-plugin/debian/xfce4-screenshooter.1
===================================================================
--- goodies/xfce4-screenshooter-plugin/debian/xfce4-screenshooter.1	                        (rev 0)
+++ goodies/xfce4-screenshooter-plugin/debian/xfce4-screenshooter.1	2008-06-17 18:01:59 UTC (rev 2124)
@@ -0,0 +1,31 @@
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.36.
+.TH XFCE4-SCREENSHOOTER-PLUGIN "1" "June 2008" "xfce4-screenshooter-plugin 1.1.0" "User Commands"
+.SH NAME
+xfce4-screenshooter-plugin \- Take a screenshot
+.SH DESCRIPTION
+.SS "Usage:"
+.IP
+xfce4\-screenshooter [OPTION...]
+.SS "Help Options:"
+.TP
+\-?, \fB\-\-help\fR
+Show help options
+.TP
+\fB\-\-help\-all\fR
+Show all help options
+.TP
+\fB\-\-help\-gtk\fR
+Show GTK+ Options
+.SS "Application Options:"
+.TP
+\fB\-v\fR, \fB\-\-version\fR
+Version information
+.TP
+\fB\-w\fR, \fB\-\-window\fR
+Take a screenshot of the active window
+.TP
+\fB\-d\fR, \fB\-\-delay\fR
+Delay in seconds before taking the screenshot
+.TP
+\fB\-\-display\fR=\fIDISPLAY\fR
+X display to use




More information about the Pkg-xfce-commits mailing list