[arch-commits] Commit in xfce4-weather-plugin/repos/extra-x86_64 (3 files)

2020-11-09 Thread Evangelos Foutras via arch-commits
Date: Tuesday, November 10, 2020 @ 03:30:17
  Author: foutrelis
Revision: 399952

archrelease: copy trunk to extra-x86_64

Added:
  xfce4-weather-plugin/repos/extra-x86_64/PKGBUILD
(from rev 399951, xfce4-weather-plugin/trunk/PKGBUILD)
Deleted:
  xfce4-weather-plugin/repos/extra-x86_64/PKGBUILD
  
xfce4-weather-plugin/repos/extra-x86_64/improve-contrast-in-weather-report.patch

--+
 PKGBUILD |   83 +
 improve-contrast-in-weather-report.patch |   37 
 2 files changed, 40 insertions(+), 80 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-11-10 03:30:13 UTC (rev 399951)
+++ PKGBUILD2020-11-10 03:30:17 UTC (rev 399952)
@@ -1,43 +0,0 @@
-# Maintainer: Evangelos Foutras 
-# Contributor: Suzy Williams 
-
-pkgname=xfce4-weather-plugin
-pkgver=0.10.1
-pkgrel=2
-pkgdesc="A weather plugin for the Xfce4 panel"
-arch=('x86_64')
-url="https://docs.xfce.org/panel-plugins/xfce4-weather-plugin;
-license=('GPL2')
-groups=('xfce4-goodies')
-depends=('xfce4-panel' 'libxml2' 'libsoup' 'hicolor-icon-theme')
-makedepends=('intltool')
-source=(https://archive.xfce.org/src/panel-plugins/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2
-improve-contrast-in-weather-report.patch)
-sha256sums=('afb2af5f3effc2ea6181636ed0e82e6dafd556ec1b8478100802f85a5d167a89'
-'da52ea354f740b3543ca74eba41cd5c279a2de0a22dbf8526805839cdc5c75db')
-
-prepare() {
-  cd "$srcdir/$pkgname-$pkgver"
-  patch -Np1 -i ../improve-contrast-in-weather-report.patch
-}
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib \
---localstatedir=/var \
---disable-static \
---disable-debug \
---disable-upower
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: xfce4-weather-plugin/repos/extra-x86_64/PKGBUILD (from rev 399951, 
xfce4-weather-plugin/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-11-10 03:30:17 UTC (rev 399952)
@@ -0,0 +1,40 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: Suzy Williams 
+
+pkgname=xfce4-weather-plugin
+pkgver=0.10.2
+pkgrel=1
+pkgdesc="A weather plugin for the Xfce4 panel"
+arch=('x86_64')
+url="https://docs.xfce.org/panel-plugins/xfce4-weather-plugin;
+license=('GPL2')
+groups=('xfce4-goodies')
+depends=('xfce4-panel' 'libxml2' 'libsoup' 'hicolor-icon-theme')
+makedepends=('intltool')
+source=(https://archive.xfce.org/src/panel-plugins/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
+sha256sums=('9017790b92953090c849b17b357b42fa8c562bf0e25af2fd2e5f53cfebc662c6')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib \
+--localstatedir=/var \
+--disable-static \
+--disable-debug \
+--disable-upower
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: improve-contrast-in-weather-report.patch
===
--- improve-contrast-in-weather-report.patch2020-11-10 03:30:13 UTC (rev 
399951)
+++ improve-contrast-in-weather-report.patch2020-11-10 03:30:17 UTC (rev 
399952)
@@ -1,37 +0,0 @@
-From 5ddbfecdcc1cb300072572775fafbec9084f422d Mon Sep 17 00:00:00 2001
-From: Sean Davis 
-Date: Sun, 1 Mar 2020 07:35:07 -0500
-Subject: [PATCH] Improve contrast in weather report, similar to GTK2 + Adwaita
- (bug #15806)
-

- panel-plugin/weather-summary.c | 8 ++--
- 1 file changed, 6 insertions(+), 2 deletions(-)
-
-diff --git a/panel-plugin/weather-summary.c b/panel-plugin/weather-summary.c
-index e66abf0..afce939 100644
 a/panel-plugin/weather-summary.c
-+++ b/panel-plugin/weather-summary.c
-@@ -947,13 +947,17 @@ make_forecast(plugin_data *data)
- GtkCssProvider *provider = gtk_css_provider_new ();
- gchar *css_string;
- 
--css_string = g_strdup (".forecast-cell.lightbg { background-color: 
rgba(0, 0, 0, 0.2); }"
--   ".forecast-cell.darkbg { background-color: rgba(0, 
0, 0, 0.4); }");
-+GtkStyleContext *ctx;
-+
-+css_string = g_strdup (".forecast-cell.lightbg { background-color: 
rgba(0, 0, 0, 0.05); }"
-+   ".forecast-cell.darkbg { background-color: rgba(0, 
0, 0, 0.6); }");
- 
- gtk_css_provider_load_from_data (provider, css_string, -1, NULL);
- gtk_style_context_add_provider_for_screen (screen, GTK_STYLE_PROVIDER 
(provider), GTK_STYLE_PROVIDER_PRIORITY_APPLICATION);
- 
- grid = gtk_grid_new ();
-+ctx = gtk_widget_get_style_context (GTK_WIDGET (grid));
-+

[arch-commits] Commit in xfce4-weather-plugin/repos/extra-x86_64 (3 files)

2020-08-21 Thread Evangelos Foutras via arch-commits
Date: Friday, August 21, 2020 @ 15:49:06
  Author: foutrelis
Revision: 394478

archrelease: copy trunk to extra-x86_64

Added:
  xfce4-weather-plugin/repos/extra-x86_64/PKGBUILD
(from rev 394477, xfce4-weather-plugin/trunk/PKGBUILD)
  
xfce4-weather-plugin/repos/extra-x86_64/improve-contrast-in-weather-report.patch
(from rev 394477, 
xfce4-weather-plugin/trunk/improve-contrast-in-weather-report.patch)
Deleted:
  xfce4-weather-plugin/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   79 +++--
 improve-contrast-in-weather-report.patch |   37 +
 2 files changed, 80 insertions(+), 36 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-08-21 15:49:02 UTC (rev 394477)
+++ PKGBUILD2020-08-21 15:49:06 UTC (rev 394478)
@@ -1,36 +0,0 @@
-# Maintainer: Evangelos Foutras 
-# Contributor: Suzy Williams 
-
-pkgname=xfce4-weather-plugin
-pkgver=0.10.1
-pkgrel=1
-pkgdesc="A weather plugin for the Xfce4 panel"
-arch=('x86_64')
-url="https://docs.xfce.org/panel-plugins/xfce4-weather-plugin;
-license=('GPL2')
-groups=('xfce4-goodies')
-depends=('xfce4-panel' 'libxml2' 'libsoup' 'hicolor-icon-theme')
-makedepends=('intltool')
-source=(https://archive.xfce.org/src/panel-plugins/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
-sha256sums=('afb2af5f3effc2ea6181636ed0e82e6dafd556ec1b8478100802f85a5d167a89')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib \
---localstatedir=/var \
---disable-static \
---disable-debug \
---disable-upower
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: xfce4-weather-plugin/repos/extra-x86_64/PKGBUILD (from rev 394477, 
xfce4-weather-plugin/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-08-21 15:49:06 UTC (rev 394478)
@@ -0,0 +1,43 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: Suzy Williams 
+
+pkgname=xfce4-weather-plugin
+pkgver=0.10.1
+pkgrel=2
+pkgdesc="A weather plugin for the Xfce4 panel"
+arch=('x86_64')
+url="https://docs.xfce.org/panel-plugins/xfce4-weather-plugin;
+license=('GPL2')
+groups=('xfce4-goodies')
+depends=('xfce4-panel' 'libxml2' 'libsoup' 'hicolor-icon-theme')
+makedepends=('intltool')
+source=(https://archive.xfce.org/src/panel-plugins/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2
+improve-contrast-in-weather-report.patch)
+sha256sums=('afb2af5f3effc2ea6181636ed0e82e6dafd556ec1b8478100802f85a5d167a89'
+'da52ea354f740b3543ca74eba41cd5c279a2de0a22dbf8526805839cdc5c75db')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+  patch -Np1 -i ../improve-contrast-in-weather-report.patch
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib \
+--localstatedir=/var \
+--disable-static \
+--disable-debug \
+--disable-upower
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: 
xfce4-weather-plugin/repos/extra-x86_64/improve-contrast-in-weather-report.patch
 (from rev 394477, 
xfce4-weather-plugin/trunk/improve-contrast-in-weather-report.patch)
===
--- improve-contrast-in-weather-report.patch(rev 0)
+++ improve-contrast-in-weather-report.patch2020-08-21 15:49:06 UTC (rev 
394478)
@@ -0,0 +1,37 @@
+From 5ddbfecdcc1cb300072572775fafbec9084f422d Mon Sep 17 00:00:00 2001
+From: Sean Davis 
+Date: Sun, 1 Mar 2020 07:35:07 -0500
+Subject: [PATCH] Improve contrast in weather report, similar to GTK2 + Adwaita
+ (bug #15806)
+
+---
+ panel-plugin/weather-summary.c | 8 ++--
+ 1 file changed, 6 insertions(+), 2 deletions(-)
+
+diff --git a/panel-plugin/weather-summary.c b/panel-plugin/weather-summary.c
+index e66abf0..afce939 100644
+--- a/panel-plugin/weather-summary.c
 b/panel-plugin/weather-summary.c
+@@ -947,13 +947,17 @@ make_forecast(plugin_data *data)
+ GtkCssProvider *provider = gtk_css_provider_new ();
+ gchar *css_string;
+ 
+-css_string = g_strdup (".forecast-cell.lightbg { background-color: 
rgba(0, 0, 0, 0.2); }"
+-   ".forecast-cell.darkbg { background-color: rgba(0, 
0, 0, 0.4); }");
++GtkStyleContext *ctx;
++
++css_string = g_strdup (".forecast-cell.lightbg { background-color: 
rgba(0, 0, 0, 0.05); }"
++   ".forecast-cell.darkbg { background-color: rgba(0, 
0, 0, 0.6); }");
+ 
+ gtk_css_provider_load_from_data (provider, css_string, -1, NULL);
+ gtk_style_context_add_provider_for_screen (screen, GTK_STYLE_PROVIDER 
(provider), 

[arch-commits] Commit in xfce4-weather-plugin/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2020-02-22 Thread Evangelos Foutras via arch-commits
Date: Sunday, February 23, 2020 @ 01:11:43
  Author: foutrelis
Revision: 376083

archrelease: copy trunk to extra-x86_64

Added:
  xfce4-weather-plugin/repos/extra-x86_64/PKGBUILD
(from rev 376082, xfce4-weather-plugin/trunk/PKGBUILD)
Deleted:
  xfce4-weather-plugin/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   72 ++---
 1 file changed, 36 insertions(+), 36 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-23 01:11:39 UTC (rev 376082)
+++ PKGBUILD2020-02-23 01:11:43 UTC (rev 376083)
@@ -1,36 +0,0 @@
-# Maintainer: Evangelos Foutras 
-# Contributor: Suzy Williams 
-
-pkgname=xfce4-weather-plugin
-pkgver=0.10.0
-pkgrel=1
-pkgdesc="A weather plugin for the Xfce4 panel"
-arch=('x86_64')
-url="https://goodies.xfce.org/projects/panel-plugins/xfce4-weather-plugin;
-license=('GPL2')
-groups=('xfce4-goodies')
-depends=('xfce4-panel' 'libxml2' 'libsoup' 'hicolor-icon-theme')
-makedepends=('intltool')
-source=(https://archive.xfce.org/src/panel-plugins/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
-sha256sums=('4423a0c27830fd1f08e063aaefbf70f31d89235d75549ca841d677ab2e409572')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib \
---localstatedir=/var \
---disable-static \
---disable-debug \
---disable-upower
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: xfce4-weather-plugin/repos/extra-x86_64/PKGBUILD (from rev 376082, 
xfce4-weather-plugin/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-02-23 01:11:43 UTC (rev 376083)
@@ -0,0 +1,36 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: Suzy Williams 
+
+pkgname=xfce4-weather-plugin
+pkgver=0.10.1
+pkgrel=1
+pkgdesc="A weather plugin for the Xfce4 panel"
+arch=('x86_64')
+url="https://docs.xfce.org/panel-plugins/xfce4-weather-plugin;
+license=('GPL2')
+groups=('xfce4-goodies')
+depends=('xfce4-panel' 'libxml2' 'libsoup' 'hicolor-icon-theme')
+makedepends=('intltool')
+source=(https://archive.xfce.org/src/panel-plugins/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
+sha256sums=('afb2af5f3effc2ea6181636ed0e82e6dafd556ec1b8478100802f85a5d167a89')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib \
+--localstatedir=/var \
+--disable-static \
+--disable-debug \
+--disable-upower
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in xfce4-weather-plugin/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2019-09-24 Thread Evangelos Foutras via arch-commits
Date: Tuesday, September 24, 2019 @ 09:22:27
  Author: foutrelis
Revision: 363329

archrelease: copy trunk to extra-x86_64

Added:
  xfce4-weather-plugin/repos/extra-x86_64/PKGBUILD
(from rev 363328, xfce4-weather-plugin/trunk/PKGBUILD)
Deleted:
  xfce4-weather-plugin/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   72 ++---
 1 file changed, 36 insertions(+), 36 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-24 09:22:23 UTC (rev 363328)
+++ PKGBUILD2019-09-24 09:22:27 UTC (rev 363329)
@@ -1,36 +0,0 @@
-# Maintainer: Evangelos Foutras 
-# Contributor: Suzy Williams 
-
-pkgname=xfce4-weather-plugin
-pkgver=0.8.11
-pkgrel=1
-pkgdesc="A weather plugin for the Xfce4 panel"
-arch=('x86_64')
-url="https://goodies.xfce.org/projects/panel-plugins/xfce4-weather-plugin;
-license=('GPL2')
-groups=('xfce4-goodies')
-depends=('xfce4-panel' 'libxml2' 'libsoup' 'hicolor-icon-theme')
-makedepends=('intltool')
-source=(https://archive.xfce.org/src/panel-plugins/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
-sha256sums=('0382ce99c0ad4424afe7096a354f301a9396d12807a0f2ab041912d6ab58145d')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib \
---localstatedir=/var \
---disable-static \
---disable-debug \
---disable-upower
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: xfce4-weather-plugin/repos/extra-x86_64/PKGBUILD (from rev 363328, 
xfce4-weather-plugin/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-09-24 09:22:27 UTC (rev 363329)
@@ -0,0 +1,36 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: Suzy Williams 
+
+pkgname=xfce4-weather-plugin
+pkgver=0.10.0
+pkgrel=1
+pkgdesc="A weather plugin for the Xfce4 panel"
+arch=('x86_64')
+url="https://goodies.xfce.org/projects/panel-plugins/xfce4-weather-plugin;
+license=('GPL2')
+groups=('xfce4-goodies')
+depends=('xfce4-panel' 'libxml2' 'libsoup' 'hicolor-icon-theme')
+makedepends=('intltool')
+source=(https://archive.xfce.org/src/panel-plugins/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
+sha256sums=('4423a0c27830fd1f08e063aaefbf70f31d89235d75549ca841d677ab2e409572')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib \
+--localstatedir=/var \
+--disable-static \
+--disable-debug \
+--disable-upower
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in xfce4-weather-plugin/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2019-03-25 Thread Evangelos Foutras via arch-commits
Date: Monday, March 25, 2019 @ 10:52:23
  Author: foutrelis
Revision: 349174

archrelease: copy trunk to extra-x86_64

Added:
  xfce4-weather-plugin/repos/extra-x86_64/PKGBUILD
(from rev 349173, xfce4-weather-plugin/trunk/PKGBUILD)
Deleted:
  xfce4-weather-plugin/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   73 ++---
 1 file changed, 36 insertions(+), 37 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-03-25 10:52:15 UTC (rev 349173)
+++ PKGBUILD2019-03-25 10:52:23 UTC (rev 349174)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras 
-# Contributor: Suzy Williams 
-
-pkgname=xfce4-weather-plugin
-pkgver=0.8.10
-pkgrel=1
-pkgdesc="A weather plugin for the Xfce4 panel"
-arch=('i686' 'x86_64')
-url="http://goodies.xfce.org/projects/panel-plugins/xfce4-weather-plugin;
-license=('GPL2')
-groups=('xfce4-goodies')
-depends=('xfce4-panel' 'libxml2' 'libsoup' 'hicolor-icon-theme')
-makedepends=('intltool')
-source=(http://archive.xfce.org/src/panel-plugins/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
-sha256sums=('ee6d43c444904631c240470e15e96215c2ce451158bfdbf234bce892bf60eab8')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib \
---localstatedir=/var \
---disable-static \
---disable-debug \
---disable-upower
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: xfce4-weather-plugin/repos/extra-x86_64/PKGBUILD (from rev 349173, 
xfce4-weather-plugin/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-03-25 10:52:23 UTC (rev 349174)
@@ -0,0 +1,36 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: Suzy Williams 
+
+pkgname=xfce4-weather-plugin
+pkgver=0.8.11
+pkgrel=1
+pkgdesc="A weather plugin for the Xfce4 panel"
+arch=('x86_64')
+url="https://goodies.xfce.org/projects/panel-plugins/xfce4-weather-plugin;
+license=('GPL2')
+groups=('xfce4-goodies')
+depends=('xfce4-panel' 'libxml2' 'libsoup' 'hicolor-icon-theme')
+makedepends=('intltool')
+source=(https://archive.xfce.org/src/panel-plugins/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
+sha256sums=('0382ce99c0ad4424afe7096a354f301a9396d12807a0f2ab041912d6ab58145d')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib \
+--localstatedir=/var \
+--disable-static \
+--disable-debug \
+--disable-upower
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in xfce4-weather-plugin/repos (extra-x86_64)

2011-02-03 Thread andyrtr
Date: Thursday, February 3, 2011 @ 07:45:46
  Author: andyrtr
Revision: 108788

archrelease: remove extra-x86_64

Deleted:
  xfce4-weather-plugin/repos/extra-x86_64/



[arch-commits] Commit in xfce4-weather-plugin/repos (extra-x86_64)

2011-02-03 Thread andyrtr
Date: Thursday, February 3, 2011 @ 07:46:05
  Author: andyrtr
Revision: 108789

archrelease: copy trunk to extra-x86_64

Added:
  xfce4-weather-plugin/repos/extra-x86_64/



[arch-commits] Commit in xfce4-weather-plugin/repos (extra-x86_64)

2011-01-29 Thread andyrtr
Date: Saturday, January 29, 2011 @ 05:27:00
  Author: andyrtr
Revision: 108064

archrelease: copy trunk to extra-x86_64

Added:
  xfce4-weather-plugin/repos/extra-x86_64/