[arch-commits] Commit in xfce4-terminal/repos (6 files)

2016-12-31 Thread Evangelos Foutras
Date: Saturday, December 31, 2016 @ 15:17:31
  Author: foutrelis
Revision: 284990

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  xfce4-terminal/repos/extra-i686/PKGBUILD
(from rev 284989, xfce4-terminal/trunk/PKGBUILD)
  xfce4-terminal/repos/extra-x86_64/PKGBUILD
(from rev 284989, xfce4-terminal/trunk/PKGBUILD)
Deleted:
  
xfce4-terminal/repos/extra-i686/0001-Set-window-hints-properly-showes-columns-rows-when-r.patch
  xfce4-terminal/repos/extra-i686/PKGBUILD
  
xfce4-terminal/repos/extra-x86_64/0001-Set-window-hints-properly-showes-columns-rows-when-r.patch
  xfce4-terminal/repos/extra-x86_64/PKGBUILD

--+
 /PKGBUILD| 
  78 ++
 extra-i686/0001-Set-window-hints-properly-showes-columns-rows-when-r.patch   | 
  77 -
 extra-i686/PKGBUILD  | 
  39 -
 extra-x86_64/0001-Set-window-hints-properly-showes-columns-rows-when-r.patch | 
  77 -
 extra-x86_64/PKGBUILD| 
  39 -
 5 files changed, 78 insertions(+), 232 deletions(-)

Deleted: 
extra-i686/0001-Set-window-hints-properly-showes-columns-rows-when-r.patch
===
--- extra-i686/0001-Set-window-hints-properly-showes-columns-rows-when-r.patch  
2016-12-31 15:17:17 UTC (rev 284989)
+++ extra-i686/0001-Set-window-hints-properly-showes-columns-rows-when-r.patch  
2016-12-31 15:17:31 UTC (rev 284990)
@@ -1,77 +0,0 @@
-From 980003baf92afed64c7958dbaf1a92c3aca402cb Mon Sep 17 00:00:00 2001
-From: Igor 
-Date: Tue, 18 Oct 2016 14:56:47 +0300
-Subject: [PATCH] Set window hints properly; showes columns/rows when resizing
-
-Fixes https://bugzilla.xfce.org/show_bug.cgi?id=12793

- terminal/terminal-screen.c | 36 
- 1 file changed, 24 insertions(+), 12 deletions(-)
-
-diff --git a/terminal/terminal-screen.c b/terminal/terminal-screen.c
-index 0351437..311f02f 100644
 a/terminal/terminal-screen.c
-+++ b/terminal/terminal-screen.c
-@@ -1673,35 +1673,47 @@ terminal_screen_get_geometry (TerminalScreen *screen,
-  *
-  * I don't like this way, but its required to work-around a Gtk+
-  * bug (maybe also caused by a Vte bug, not sure).
-+ *
-+ * Code borrowed from gnome-terminal (terminal_window_update_geometry).
-  **/
- void
- terminal_screen_set_window_geometry_hints (TerminalScreen *screen,
-GtkWindow  *window)
- {
--  GdkGeometry  hints;
--  gint xpad;
--  gint ypad;
--  glongchar_width;
--  glongchar_height;
-+  GdkGeometryhints;
-+  GtkRequisition vbox_request;
-+  GtkAllocation  toplevel_allocation, vbox_allocation;
-+  glong  char_width, char_height;
-+  glong  grid_width, grid_height;
-+  glong  chrome_width, chrome_height;
-+  gint   csd_width, csd_height;
- 
-   terminal_return_if_fail (TERMINAL_IS_SCREEN (screen));
-   terminal_return_if_fail (VTE_IS_TERMINAL (screen->terminal));
-   terminal_return_if_fail (gtk_widget_get_realized (screen));
-   terminal_return_if_fail (gtk_widget_get_realized (window));
- 
--  terminal_screen_get_geometry (screen,
--&char_width, &char_height,
--&xpad, &ypad);
-+  terminal_screen_get_geometry (screen, &char_width, &char_height, NULL, 
NULL);
-+  terminal_screen_get_size (screen, &grid_width, &grid_height);
-+
-+  gtk_widget_get_preferred_size (TERMINAL_WINDOW (window)->vbox, NULL, 
&vbox_request);
-+  chrome_width = vbox_request.width - (char_width * grid_width);
-+  chrome_height = vbox_request.height - (char_height * grid_height);
-+
-+  gtk_widget_get_allocation (TERMINAL_WINDOW (window)->vbox, 
&vbox_allocation);
-+  gtk_widget_get_allocation (GTK_WIDGET (window), &toplevel_allocation);
-+  csd_width = toplevel_allocation.width - vbox_allocation.width;
-+  csd_height = toplevel_allocation.height - vbox_allocation.height;
- 
--  hints.base_width = xpad;
--  hints.base_height = ypad;
-+  hints.base_width = chrome_width + csd_width;
-+  hints.base_height = chrome_height + csd_height;
-   hints.width_inc = char_width;
-   hints.height_inc = char_height;
-   hints.min_width = hints.base_width + hints.width_inc * 4;
-   hints.min_height = hints.base_height + hints.height_inc * 2;
- 
--  gtk_window_set_geometry_hints (GTK_WINDOW (window),
-- screen->terminal,
-+  gtk_window_set_geometry_hints (window,
-+ NULL,
-  &hints,
-  GDK_HINT_RESIZE_INC
-  | GDK_HINT_MIN_SIZE
--- 
-2.10.0
-

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/

[arch-commits] Commit in xfce4-terminal/repos (6 files)

2016-10-18 Thread Evangelos Foutras
Date: Tuesday, October 18, 2016 @ 13:52:03
  Author: foutrelis
Revision: 278922

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  
xfce4-terminal/repos/testing-i686/0001-Set-window-hints-properly-showes-columns-rows-when-r.patch
(from rev 278920, 
xfce4-terminal/trunk/0001-Set-window-hints-properly-showes-columns-rows-when-r.patch)
  xfce4-terminal/repos/testing-i686/PKGBUILD
(from rev 278920, xfce4-terminal/trunk/PKGBUILD)
  
xfce4-terminal/repos/testing-x86_64/0001-Set-window-hints-properly-showes-columns-rows-when-r.patch
(from rev 278920, 
xfce4-terminal/trunk/0001-Set-window-hints-properly-showes-columns-rows-when-r.patch)
  xfce4-terminal/repos/testing-x86_64/PKGBUILD
(from rev 278920, xfce4-terminal/trunk/PKGBUILD)
Deleted:
  xfce4-terminal/repos/testing-i686/PKGBUILD
  xfce4-terminal/repos/testing-x86_64/PKGBUILD

+
 /PKGBUILD  
|   96 ++
 testing-i686/0001-Set-window-hints-properly-showes-columns-rows-when-r.patch   
|   77 
 testing-i686/PKGBUILD  
|   39 
 testing-x86_64/0001-Set-window-hints-properly-showes-columns-rows-when-r.patch 
|   77 
 testing-x86_64/PKGBUILD
|   39 
 5 files changed, 250 insertions(+), 78 deletions(-)

Copied: 
xfce4-terminal/repos/testing-i686/0001-Set-window-hints-properly-showes-columns-rows-when-r.patch
 (from rev 278920, 
xfce4-terminal/trunk/0001-Set-window-hints-properly-showes-columns-rows-when-r.patch)
===
--- 
testing-i686/0001-Set-window-hints-properly-showes-columns-rows-when-r.patch
(rev 0)
+++ 
testing-i686/0001-Set-window-hints-properly-showes-columns-rows-when-r.patch
2016-10-18 13:52:03 UTC (rev 278922)
@@ -0,0 +1,77 @@
+From 980003baf92afed64c7958dbaf1a92c3aca402cb Mon Sep 17 00:00:00 2001
+From: Igor 
+Date: Tue, 18 Oct 2016 14:56:47 +0300
+Subject: [PATCH] Set window hints properly; showes columns/rows when resizing
+
+Fixes https://bugzilla.xfce.org/show_bug.cgi?id=12793
+---
+ terminal/terminal-screen.c | 36 
+ 1 file changed, 24 insertions(+), 12 deletions(-)
+
+diff --git a/terminal/terminal-screen.c b/terminal/terminal-screen.c
+index 0351437..311f02f 100644
+--- a/terminal/terminal-screen.c
 b/terminal/terminal-screen.c
+@@ -1673,35 +1673,47 @@ terminal_screen_get_geometry (TerminalScreen *screen,
+  *
+  * I don't like this way, but its required to work-around a Gtk+
+  * bug (maybe also caused by a Vte bug, not sure).
++ *
++ * Code borrowed from gnome-terminal (terminal_window_update_geometry).
+  **/
+ void
+ terminal_screen_set_window_geometry_hints (TerminalScreen *screen,
+GtkWindow  *window)
+ {
+-  GdkGeometry  hints;
+-  gint xpad;
+-  gint ypad;
+-  glongchar_width;
+-  glongchar_height;
++  GdkGeometryhints;
++  GtkRequisition vbox_request;
++  GtkAllocation  toplevel_allocation, vbox_allocation;
++  glong  char_width, char_height;
++  glong  grid_width, grid_height;
++  glong  chrome_width, chrome_height;
++  gint   csd_width, csd_height;
+ 
+   terminal_return_if_fail (TERMINAL_IS_SCREEN (screen));
+   terminal_return_if_fail (VTE_IS_TERMINAL (screen->terminal));
+   terminal_return_if_fail (gtk_widget_get_realized (screen));
+   terminal_return_if_fail (gtk_widget_get_realized (window));
+ 
+-  terminal_screen_get_geometry (screen,
+-&char_width, &char_height,
+-&xpad, &ypad);
++  terminal_screen_get_geometry (screen, &char_width, &char_height, NULL, 
NULL);
++  terminal_screen_get_size (screen, &grid_width, &grid_height);
++
++  gtk_widget_get_preferred_size (TERMINAL_WINDOW (window)->vbox, NULL, 
&vbox_request);
++  chrome_width = vbox_request.width - (char_width * grid_width);
++  chrome_height = vbox_request.height - (char_height * grid_height);
++
++  gtk_widget_get_allocation (TERMINAL_WINDOW (window)->vbox, 
&vbox_allocation);
++  gtk_widget_get_allocation (GTK_WIDGET (window), &toplevel_allocation);
++  csd_width = toplevel_allocation.width - vbox_allocation.width;
++  csd_height = toplevel_allocation.height - vbox_allocation.height;
+ 
+-  hints.base_width = xpad;
+-  hints.base_height = ypad;
++  hints.base_width = chrome_width + csd_width;
++  hints.base_height = chrome_height + csd_height;
+   hints.width_inc = char_width;
+   hints.height_inc = char_height;
+   hints.min_width = hints.base_width + hints.width_inc * 4;
+   hints.min_height = hints.base_height + hints.height_inc * 2;
+ 
+-  gtk_window_set_geometry_hints (GTK_WINDOW (window),
+- sc

[arch-commits] Commit in xfce4-terminal/repos (6 files)

2013-01-01 Thread Evangelos Foutras
Date: Tuesday, January 1, 2013 @ 07:50:48
  Author: foutrelis
Revision: 174007

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  xfce4-terminal/repos/extra-i686/
  xfce4-terminal/repos/extra-i686/PKGBUILD
(from rev 174006, xfce4-terminal/trunk/PKGBUILD)
  xfce4-terminal/repos/extra-i686/xfce4-terminal.install
(from rev 174006, xfce4-terminal/trunk/xfce4-terminal.install)
  xfce4-terminal/repos/extra-x86_64/
  xfce4-terminal/repos/extra-x86_64/PKGBUILD
(from rev 174006, xfce4-terminal/trunk/PKGBUILD)
  xfce4-terminal/repos/extra-x86_64/xfce4-terminal.install
(from rev 174006, xfce4-terminal/trunk/xfce4-terminal.install)

-+
 extra-i686/PKGBUILD |   41 ++
 extra-i686/xfce4-terminal.install   |   13 ++
 extra-x86_64/PKGBUILD   |   41 ++
 extra-x86_64/xfce4-terminal.install |   13 ++
 4 files changed, 108 insertions(+)

Copied: xfce4-terminal/repos/extra-i686/PKGBUILD (from rev 174006, 
xfce4-terminal/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-01-01 12:50:48 UTC (rev 174007)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+# Contributor: tobias 
+# Contributor: Aurelien Foret 
+
+pkgname=xfce4-terminal
+pkgver=0.6.1
+pkgrel=1
+pkgdesc="A modern terminal emulator primarly for the Xfce desktop environment"
+arch=('i686' 'x86_64')
+url="http://www.xfce.org/";
+license=('GPL2')
+groups=('xfce4')
+depends=('libxfce4ui' 'vte' 'hicolor-icon-theme')
+makedepends=('intltool')
+conflicts=('terminal')
+replaces=('terminal')
+options=('!libtool')
+install=$pkgname.install
+source=(http://archive.xfce.org/src/apps/$pkgname/0.6/$pkgname-$pkgver.tar.bz2)
+sha256sums=('61346427e55af79e86511572bfabb2e025cb13720879226ea1b98a92f0bcd4c8')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib/xfce4 \
+--localstatedir=/var \
+--disable-static \
+--disable-debug
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: xfce4-terminal/repos/extra-i686/xfce4-terminal.install (from rev 
174006, xfce4-terminal/trunk/xfce4-terminal.install)
===
--- extra-i686/xfce4-terminal.install   (rev 0)
+++ extra-i686/xfce4-terminal.install   2013-01-01 12:50:48 UTC (rev 174007)
@@ -0,0 +1,13 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: xfce4-terminal/repos/extra-x86_64/PKGBUILD (from rev 174006, 
xfce4-terminal/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-01-01 12:50:48 UTC (rev 174007)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+# Contributor: tobias 
+# Contributor: Aurelien Foret 
+
+pkgname=xfce4-terminal
+pkgver=0.6.1
+pkgrel=1
+pkgdesc="A modern terminal emulator primarly for the Xfce desktop environment"
+arch=('i686' 'x86_64')
+url="http://www.xfce.org/";
+license=('GPL2')
+groups=('xfce4')
+depends=('libxfce4ui' 'vte' 'hicolor-icon-theme')
+makedepends=('intltool')
+conflicts=('terminal')
+replaces=('terminal')
+options=('!libtool')
+install=$pkgname.install
+source=(http://archive.xfce.org/src/apps/$pkgname/0.6/$pkgname-$pkgver.tar.bz2)
+sha256sums=('61346427e55af79e86511572bfabb2e025cb13720879226ea1b98a92f0bcd4c8')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib/xfce4 \
+--localstatedir=/var \
+--disable-static \
+--disable-debug
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: xfce4-terminal/repos/extra-x86_64/xfce4-terminal.install (from rev 
174006, xfce4-terminal/trunk/xfce4-terminal.install)
===
--- extra-x86_64/xfce4-terminal.install (rev 0)
+++ extra-x86_64/xfce4-terminal.install 2013-01-01 12:50:48 UTC (rev 174007)
@@ -0,0 +1,13 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}
+
+# vim:set ts=2 sw=2 et: