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

2016-02-11 Thread Felix Yan
Date: Thursday, February 11, 2016 @ 18:00:20
  Author: fyan
Revision: 161252

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  xmobar/repos/community-staging-i686/
  xmobar/repos/community-staging-i686/PKGBUILD
(from rev 161251, xmobar/trunk/PKGBUILD)
  xmobar/repos/community-staging-i686/disable-ewmh-plugin.patch
(from rev 161251, xmobar/trunk/disable-ewmh-plugin.patch)
  xmobar/repos/community-staging-x86_64/
  xmobar/repos/community-staging-x86_64/PKGBUILD
(from rev 161251, xmobar/trunk/PKGBUILD)
  xmobar/repos/community-staging-x86_64/disable-ewmh-plugin.patch
(from rev 161251, xmobar/trunk/disable-ewmh-plugin.patch)

+
 community-staging-i686/PKGBUILD|   31 
 community-staging-i686/disable-ewmh-plugin.patch   |   46 +++
 community-staging-x86_64/PKGBUILD  |   31 
 community-staging-x86_64/disable-ewmh-plugin.patch |   46 +++
 4 files changed, 154 insertions(+)

Copied: xmobar/repos/community-staging-i686/PKGBUILD (from rev 161251, 
xmobar/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-02-11 17:00:20 UTC (rev 161252)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Arch Haskell Team 
+
+pkgname=xmobar
+pkgver=0.23.1
+pkgrel=10
+pkgdesc="A Minimalistic Text Based Status Bar"
+url="http://hackage.haskell.org/package/xmobar";
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('gmp' 'libxft' 'libxinerama' 'wireless_tools' 'libxrandr' 'libxpm')
+makedepends=('ghc=7.10.3' 'haskell-x11' 'haskell-x11-xft' 
'haskell-utf8-string' 'haskell-network-uri'
+ 'haskell-stm' 'haskell-parsec' 'haskell-mtl' 'haskell-regex-base' 
'haskell-regex-compat' 'haskell-http')
+options=('strip')
+source=(http://hackage.haskell.org/packages/archive/xmobar/$pkgver/xmobar-$pkgver.tar.gz)
+
+build() {
+cd ${srcdir}/xmobar-$pkgver
+
+runhaskell Setup configure --disable-optimization  --prefix=/usr 
--flags="with_utf8 with_xft with_iwlib with_xpm"
+runhaskell Setup build
+}
+
+package() {
+cd ${srcdir}/xmobar-$pkgver
+runhaskell Setup copy --destdir=${pkgdir}
+install -D -m644 license ${pkgdir}/usr/share/licenses/$pkgname/LICENSE
+}
+
+md5sums=('f97a10f049796f55cc3d13ee68d07eac')

Copied: xmobar/repos/community-staging-i686/disable-ewmh-plugin.patch (from rev 
161251, xmobar/trunk/disable-ewmh-plugin.patch)
===
--- community-staging-i686/disable-ewmh-plugin.patch
(rev 0)
+++ community-staging-i686/disable-ewmh-plugin.patch2016-02-11 17:00:20 UTC 
(rev 161252)
@@ -0,0 +1,46 @@
+diff --git a/src/Config.hs b/src/Config.hs
+index 59d6bd4..c788e6a 100644
+--- a/src/Config.hs
 b/src/Config.hs
+@@ -34,7 +34,6 @@ import Plugins.MarqueePipeReader
+ import Plugins.CommandReader
+ import Plugins.StdinReader
+ import Plugins.XMonadLog
+-import Plugins.EWMH
+ import Plugins.Kbd
+ import Plugins.Locks
+
+@@ -147,7 +146,7 @@ infixr :*:
+ -- the 'Runnable.Runnable' Read instance. To install a plugin just add
+ -- the plugin's type to the list of types (separated by ':*:') appearing in
+ -- this function's type signature.
+-runnableTypes :: Command :*: Monitors :*: Date :*: PipeReader :*: 
BufferedPipeReader :*: CommandReader :*: StdinReader :*: XMonadLog :*: EWMH :*: 
Kbd :*: Locks :*:
++runnableTypes :: Command :*: Monitors :*: Date :*: PipeReader :*: 
BufferedPipeReader :*: CommandReader :*: StdinReader :*: XMonadLog :*: Kbd :*: 
Locks :*:
+  Mail :*: MBox :*:
+  DateZone :*: MarqueePipeReader :*:
+  ()
+diff --git a/src/Plugins/Date.hs b/src/Plugins/Date.hs
+index a263536..37e603f 100644
+--- a/src/Plugins/Date.hs
 b/src/Plugins/Date.hs
+@@ -20,7 +20,6 @@ module Plugins.Date (Date(..)) where
+
+ import Plugins
+
+-import System.Locale
+ import Control.Monad (liftM)
+ import Data.Time
+
+diff --git a/xmobar.cabal b/xmobar.cabal
+index db0d130..c76b355 100644
+--- a/xmobar.cabal
 b/xmobar.cabal
+@@ -81,7 +81,7 @@ executable xmobar
+   Xmobar, Actions, Bitmap, Config, Parsers, Commands, Localize,
+   XUtil, XPMFile, StatFS, Runnable, ColorCache, Window, Signal,
+   Plugins, Plugins.BufferedPipeReader,
+-  Plugins.CommandReader, Plugins.Date, Plugins.EWMH,
++  Plugins.CommandReader, Plugins.Date,
+   Plugins.PipeReader, Plugins.MarqueePipeReader,
+   Plugins.StdinReader, Plugins.XMonadLog,
+   Plugins.Utils, Plugins.Kbd, Plugins.Locks, Plugins.Monitors,

Copied: xmobar/repos/community-staging-x86_64/PKGBUILD (from rev 161251, 
xmobar/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   

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

2016-01-20 Thread Felix Yan
Date: Wednesday, January 20, 2016 @ 15:55:43
  Author: fyan
Revision: 158118

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  xmobar/repos/community-staging-i686/
  xmobar/repos/community-staging-i686/PKGBUILD
(from rev 158116, xmobar/trunk/PKGBUILD)
  xmobar/repos/community-staging-i686/disable-ewmh-plugin.patch
(from rev 158116, xmobar/trunk/disable-ewmh-plugin.patch)
  xmobar/repos/community-staging-x86_64/
  xmobar/repos/community-staging-x86_64/PKGBUILD
(from rev 158116, xmobar/trunk/PKGBUILD)
  xmobar/repos/community-staging-x86_64/disable-ewmh-plugin.patch
(from rev 158117, xmobar/trunk/disable-ewmh-plugin.patch)

+
 community-staging-i686/PKGBUILD|   31 
 community-staging-i686/disable-ewmh-plugin.patch   |   46 +++
 community-staging-x86_64/PKGBUILD  |   31 
 community-staging-x86_64/disable-ewmh-plugin.patch |   46 +++
 4 files changed, 154 insertions(+)

Copied: xmobar/repos/community-staging-i686/PKGBUILD (from rev 158116, 
xmobar/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-01-20 14:55:43 UTC (rev 158118)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Arch Haskell Team 
+
+pkgname=xmobar
+pkgver=0.23.1
+pkgrel=9
+pkgdesc="A Minimalistic Text Based Status Bar"
+url="http://hackage.haskell.org/package/xmobar";
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('gmp' 'libxft' 'libxinerama' 'wireless_tools' 'libxrandr' 'libxpm')
+makedepends=('ghc=7.10.3' 'haskell-x11' 'haskell-x11-xft' 
'haskell-utf8-string' 'haskell-network-uri'
+ 'haskell-stm' 'haskell-parsec' 'haskell-mtl' 'haskell-regex-base' 
'haskell-regex-compat' 'haskell-http')
+options=('strip')
+source=(http://hackage.haskell.org/packages/archive/xmobar/$pkgver/xmobar-$pkgver.tar.gz)
+
+build() {
+cd ${srcdir}/xmobar-$pkgver
+
+runhaskell Setup configure --disable-optimization  --prefix=/usr 
--flags="with_utf8 with_xft with_iwlib with_xpm"
+runhaskell Setup build
+}
+
+package() {
+cd ${srcdir}/xmobar-$pkgver
+runhaskell Setup copy --destdir=${pkgdir}
+install -D -m644 license ${pkgdir}/usr/share/licenses/$pkgname/LICENSE
+}
+
+md5sums=('f97a10f049796f55cc3d13ee68d07eac')

Copied: xmobar/repos/community-staging-i686/disable-ewmh-plugin.patch (from rev 
158116, xmobar/trunk/disable-ewmh-plugin.patch)
===
--- community-staging-i686/disable-ewmh-plugin.patch
(rev 0)
+++ community-staging-i686/disable-ewmh-plugin.patch2016-01-20 14:55:43 UTC 
(rev 158118)
@@ -0,0 +1,46 @@
+diff --git a/src/Config.hs b/src/Config.hs
+index 59d6bd4..c788e6a 100644
+--- a/src/Config.hs
 b/src/Config.hs
+@@ -34,7 +34,6 @@ import Plugins.MarqueePipeReader
+ import Plugins.CommandReader
+ import Plugins.StdinReader
+ import Plugins.XMonadLog
+-import Plugins.EWMH
+ import Plugins.Kbd
+ import Plugins.Locks
+
+@@ -147,7 +146,7 @@ infixr :*:
+ -- the 'Runnable.Runnable' Read instance. To install a plugin just add
+ -- the plugin's type to the list of types (separated by ':*:') appearing in
+ -- this function's type signature.
+-runnableTypes :: Command :*: Monitors :*: Date :*: PipeReader :*: 
BufferedPipeReader :*: CommandReader :*: StdinReader :*: XMonadLog :*: EWMH :*: 
Kbd :*: Locks :*:
++runnableTypes :: Command :*: Monitors :*: Date :*: PipeReader :*: 
BufferedPipeReader :*: CommandReader :*: StdinReader :*: XMonadLog :*: Kbd :*: 
Locks :*:
+  Mail :*: MBox :*:
+  DateZone :*: MarqueePipeReader :*:
+  ()
+diff --git a/src/Plugins/Date.hs b/src/Plugins/Date.hs
+index a263536..37e603f 100644
+--- a/src/Plugins/Date.hs
 b/src/Plugins/Date.hs
+@@ -20,7 +20,6 @@ module Plugins.Date (Date(..)) where
+
+ import Plugins
+
+-import System.Locale
+ import Control.Monad (liftM)
+ import Data.Time
+
+diff --git a/xmobar.cabal b/xmobar.cabal
+index db0d130..c76b355 100644
+--- a/xmobar.cabal
 b/xmobar.cabal
+@@ -81,7 +81,7 @@ executable xmobar
+   Xmobar, Actions, Bitmap, Config, Parsers, Commands, Localize,
+   XUtil, XPMFile, StatFS, Runnable, ColorCache, Window, Signal,
+   Plugins, Plugins.BufferedPipeReader,
+-  Plugins.CommandReader, Plugins.Date, Plugins.EWMH,
++  Plugins.CommandReader, Plugins.Date,
+   Plugins.PipeReader, Plugins.MarqueePipeReader,
+   Plugins.StdinReader, Plugins.XMonadLog,
+   Plugins.Utils, Plugins.Kbd, Plugins.Locks, Plugins.Monitors,

Copied: xmobar/repos/community-staging-x86_64/PKGBUILD (from rev 158116, 
xmobar/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD

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

2016-01-17 Thread Felix Yan
Date: Sunday, January 17, 2016 @ 16:43:16
  Author: fyan
Revision: 157188

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  xmobar/repos/community-staging-i686/
  xmobar/repos/community-staging-i686/PKGBUILD
(from rev 157187, xmobar/trunk/PKGBUILD)
  xmobar/repos/community-staging-i686/disable-ewmh-plugin.patch
(from rev 157187, xmobar/trunk/disable-ewmh-plugin.patch)
  xmobar/repos/community-staging-x86_64/
  xmobar/repos/community-staging-x86_64/PKGBUILD
(from rev 157187, xmobar/trunk/PKGBUILD)
  xmobar/repos/community-staging-x86_64/disable-ewmh-plugin.patch
(from rev 157187, xmobar/trunk/disable-ewmh-plugin.patch)

+
 community-staging-i686/PKGBUILD|   31 
 community-staging-i686/disable-ewmh-plugin.patch   |   46 +++
 community-staging-x86_64/PKGBUILD  |   31 
 community-staging-x86_64/disable-ewmh-plugin.patch |   46 +++
 4 files changed, 154 insertions(+)

Copied: xmobar/repos/community-staging-i686/PKGBUILD (from rev 157187, 
xmobar/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-01-17 15:43:16 UTC (rev 157188)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Arch Haskell Team 
+
+pkgname=xmobar
+pkgver=0.23.1
+pkgrel=8
+pkgdesc="A Minimalistic Text Based Status Bar"
+url="http://hackage.haskell.org/package/xmobar";
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('gmp' 'libxft' 'libxinerama' 'wireless_tools' 'libxrandr' 'libxpm')
+makedepends=('ghc=7.10.3' 'haskell-x11' 'haskell-x11-xft' 
'haskell-utf8-string' 'haskell-network-uri'
+ 'haskell-stm' 'haskell-parsec' 'haskell-mtl' 'haskell-regex-base' 
'haskell-regex-compat' 'haskell-http')
+options=('strip')
+source=(http://hackage.haskell.org/packages/archive/xmobar/$pkgver/xmobar-$pkgver.tar.gz)
+
+build() {
+cd ${srcdir}/xmobar-$pkgver
+
+runhaskell Setup configure --disable-optimization  --prefix=/usr 
--flags="with_utf8 with_xft with_iwlib with_xpm"
+runhaskell Setup build
+}
+
+package() {
+cd ${srcdir}/xmobar-$pkgver
+runhaskell Setup copy --destdir=${pkgdir}
+install -D -m644 license ${pkgdir}/usr/share/licenses/$pkgname/LICENSE
+}
+
+md5sums=('f97a10f049796f55cc3d13ee68d07eac')

Copied: xmobar/repos/community-staging-i686/disable-ewmh-plugin.patch (from rev 
157187, xmobar/trunk/disable-ewmh-plugin.patch)
===
--- community-staging-i686/disable-ewmh-plugin.patch
(rev 0)
+++ community-staging-i686/disable-ewmh-plugin.patch2016-01-17 15:43:16 UTC 
(rev 157188)
@@ -0,0 +1,46 @@
+diff --git a/src/Config.hs b/src/Config.hs
+index 59d6bd4..c788e6a 100644
+--- a/src/Config.hs
 b/src/Config.hs
+@@ -34,7 +34,6 @@ import Plugins.MarqueePipeReader
+ import Plugins.CommandReader
+ import Plugins.StdinReader
+ import Plugins.XMonadLog
+-import Plugins.EWMH
+ import Plugins.Kbd
+ import Plugins.Locks
+
+@@ -147,7 +146,7 @@ infixr :*:
+ -- the 'Runnable.Runnable' Read instance. To install a plugin just add
+ -- the plugin's type to the list of types (separated by ':*:') appearing in
+ -- this function's type signature.
+-runnableTypes :: Command :*: Monitors :*: Date :*: PipeReader :*: 
BufferedPipeReader :*: CommandReader :*: StdinReader :*: XMonadLog :*: EWMH :*: 
Kbd :*: Locks :*:
++runnableTypes :: Command :*: Monitors :*: Date :*: PipeReader :*: 
BufferedPipeReader :*: CommandReader :*: StdinReader :*: XMonadLog :*: Kbd :*: 
Locks :*:
+  Mail :*: MBox :*:
+  DateZone :*: MarqueePipeReader :*:
+  ()
+diff --git a/src/Plugins/Date.hs b/src/Plugins/Date.hs
+index a263536..37e603f 100644
+--- a/src/Plugins/Date.hs
 b/src/Plugins/Date.hs
+@@ -20,7 +20,6 @@ module Plugins.Date (Date(..)) where
+
+ import Plugins
+
+-import System.Locale
+ import Control.Monad (liftM)
+ import Data.Time
+
+diff --git a/xmobar.cabal b/xmobar.cabal
+index db0d130..c76b355 100644
+--- a/xmobar.cabal
 b/xmobar.cabal
+@@ -81,7 +81,7 @@ executable xmobar
+   Xmobar, Actions, Bitmap, Config, Parsers, Commands, Localize,
+   XUtil, XPMFile, StatFS, Runnable, ColorCache, Window, Signal,
+   Plugins, Plugins.BufferedPipeReader,
+-  Plugins.CommandReader, Plugins.Date, Plugins.EWMH,
++  Plugins.CommandReader, Plugins.Date,
+   Plugins.PipeReader, Plugins.MarqueePipeReader,
+   Plugins.StdinReader, Plugins.XMonadLog,
+   Plugins.Utils, Plugins.Kbd, Plugins.Locks, Plugins.Monitors,

Copied: xmobar/repos/community-staging-x86_64/PKGBUILD (from rev 157187, 
xmobar/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   

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

2016-01-15 Thread Felix Yan
Date: Saturday, January 16, 2016 @ 05:25:10
  Author: fyan
Revision: 156853

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  xmobar/repos/community-staging-i686/
  xmobar/repos/community-staging-i686/PKGBUILD
(from rev 156852, xmobar/trunk/PKGBUILD)
  xmobar/repos/community-staging-i686/disable-ewmh-plugin.patch
(from rev 156852, xmobar/trunk/disable-ewmh-plugin.patch)
  xmobar/repos/community-staging-x86_64/
  xmobar/repos/community-staging-x86_64/PKGBUILD
(from rev 156852, xmobar/trunk/PKGBUILD)
  xmobar/repos/community-staging-x86_64/disable-ewmh-plugin.patch
(from rev 156852, xmobar/trunk/disable-ewmh-plugin.patch)

+
 community-staging-i686/PKGBUILD|   31 
 community-staging-i686/disable-ewmh-plugin.patch   |   46 +++
 community-staging-x86_64/PKGBUILD  |   31 
 community-staging-x86_64/disable-ewmh-plugin.patch |   46 +++
 4 files changed, 154 insertions(+)

Copied: xmobar/repos/community-staging-i686/PKGBUILD (from rev 156852, 
xmobar/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-01-16 04:25:10 UTC (rev 156853)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Arch Haskell Team 
+
+pkgname=xmobar
+pkgver=0.23.1
+pkgrel=7
+pkgdesc="A Minimalistic Text Based Status Bar"
+url="http://hackage.haskell.org/package/xmobar";
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('gmp' 'libxft' 'libxinerama' 'wireless_tools' 'libxrandr' 'libxpm')
+makedepends=('ghc=7.10.3' 'haskell-x11' 'haskell-x11-xft' 
'haskell-utf8-string' 'haskell-network-uri'
+ 'haskell-stm' 'haskell-parsec' 'haskell-mtl' 'haskell-regex-base' 
'haskell-regex-compat' 'haskell-http')
+options=('strip')
+source=(http://hackage.haskell.org/packages/archive/xmobar/$pkgver/xmobar-$pkgver.tar.gz)
+
+build() {
+cd ${srcdir}/xmobar-$pkgver
+
+runhaskell Setup configure --disable-optimization  --prefix=/usr 
--flags="with_utf8 with_xft with_iwlib with_xpm"
+runhaskell Setup build
+}
+
+package() {
+cd ${srcdir}/xmobar-$pkgver
+runhaskell Setup copy --destdir=${pkgdir}
+install -D -m644 license ${pkgdir}/usr/share/licenses/$pkgname/LICENSE
+}
+
+md5sums=('f97a10f049796f55cc3d13ee68d07eac')

Copied: xmobar/repos/community-staging-i686/disable-ewmh-plugin.patch (from rev 
156852, xmobar/trunk/disable-ewmh-plugin.patch)
===
--- community-staging-i686/disable-ewmh-plugin.patch
(rev 0)
+++ community-staging-i686/disable-ewmh-plugin.patch2016-01-16 04:25:10 UTC 
(rev 156853)
@@ -0,0 +1,46 @@
+diff --git a/src/Config.hs b/src/Config.hs
+index 59d6bd4..c788e6a 100644
+--- a/src/Config.hs
 b/src/Config.hs
+@@ -34,7 +34,6 @@ import Plugins.MarqueePipeReader
+ import Plugins.CommandReader
+ import Plugins.StdinReader
+ import Plugins.XMonadLog
+-import Plugins.EWMH
+ import Plugins.Kbd
+ import Plugins.Locks
+
+@@ -147,7 +146,7 @@ infixr :*:
+ -- the 'Runnable.Runnable' Read instance. To install a plugin just add
+ -- the plugin's type to the list of types (separated by ':*:') appearing in
+ -- this function's type signature.
+-runnableTypes :: Command :*: Monitors :*: Date :*: PipeReader :*: 
BufferedPipeReader :*: CommandReader :*: StdinReader :*: XMonadLog :*: EWMH :*: 
Kbd :*: Locks :*:
++runnableTypes :: Command :*: Monitors :*: Date :*: PipeReader :*: 
BufferedPipeReader :*: CommandReader :*: StdinReader :*: XMonadLog :*: Kbd :*: 
Locks :*:
+  Mail :*: MBox :*:
+  DateZone :*: MarqueePipeReader :*:
+  ()
+diff --git a/src/Plugins/Date.hs b/src/Plugins/Date.hs
+index a263536..37e603f 100644
+--- a/src/Plugins/Date.hs
 b/src/Plugins/Date.hs
+@@ -20,7 +20,6 @@ module Plugins.Date (Date(..)) where
+
+ import Plugins
+
+-import System.Locale
+ import Control.Monad (liftM)
+ import Data.Time
+
+diff --git a/xmobar.cabal b/xmobar.cabal
+index db0d130..c76b355 100644
+--- a/xmobar.cabal
 b/xmobar.cabal
+@@ -81,7 +81,7 @@ executable xmobar
+   Xmobar, Actions, Bitmap, Config, Parsers, Commands, Localize,
+   XUtil, XPMFile, StatFS, Runnable, ColorCache, Window, Signal,
+   Plugins, Plugins.BufferedPipeReader,
+-  Plugins.CommandReader, Plugins.Date, Plugins.EWMH,
++  Plugins.CommandReader, Plugins.Date,
+   Plugins.PipeReader, Plugins.MarqueePipeReader,
+   Plugins.StdinReader, Plugins.XMonadLog,
+   Plugins.Utils, Plugins.Kbd, Plugins.Locks, Plugins.Monitors,

Copied: xmobar/repos/community-staging-x86_64/PKGBUILD (from rev 156852, 
xmobar/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD 

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

2016-01-04 Thread Felix Yan
Date: Monday, January 4, 2016 @ 10:55:15
  Author: fyan
Revision: 155343

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  xmobar/repos/community-staging-i686/
  xmobar/repos/community-staging-i686/PKGBUILD
(from rev 155342, xmobar/trunk/PKGBUILD)
  xmobar/repos/community-staging-i686/disable-ewmh-plugin.patch
(from rev 155342, xmobar/trunk/disable-ewmh-plugin.patch)
  xmobar/repos/community-staging-x86_64/
  xmobar/repos/community-staging-x86_64/PKGBUILD
(from rev 155342, xmobar/trunk/PKGBUILD)
  xmobar/repos/community-staging-x86_64/disable-ewmh-plugin.patch
(from rev 155342, xmobar/trunk/disable-ewmh-plugin.patch)

+
 community-staging-i686/PKGBUILD|   31 
 community-staging-i686/disable-ewmh-plugin.patch   |   46 +++
 community-staging-x86_64/PKGBUILD  |   31 
 community-staging-x86_64/disable-ewmh-plugin.patch |   46 +++
 4 files changed, 154 insertions(+)

Copied: xmobar/repos/community-staging-i686/PKGBUILD (from rev 155342, 
xmobar/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-01-04 09:55:15 UTC (rev 155343)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Arch Haskell Team 
+
+pkgname=xmobar
+pkgver=0.23.1
+pkgrel=6
+pkgdesc="A Minimalistic Text Based Status Bar"
+url="http://hackage.haskell.org/package/xmobar";
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('gmp' 'libxft' 'libxinerama' 'wireless_tools' 'libxrandr' 'libxpm')
+makedepends=('ghc=7.10.3' 'haskell-x11' 'haskell-x11-xft' 
'haskell-utf8-string' 'haskell-network-uri'
+ 'haskell-stm' 'haskell-parsec' 'haskell-mtl' 'haskell-regex-base' 
'haskell-regex-compat' 'haskell-http')
+options=('strip')
+source=(http://hackage.haskell.org/packages/archive/xmobar/$pkgver/xmobar-$pkgver.tar.gz)
+
+build() {
+cd ${srcdir}/xmobar-$pkgver
+
+runhaskell Setup configure --disable-optimization  --prefix=/usr 
--flags="with_utf8 with_xft with_iwlib with_xpm"
+runhaskell Setup build
+}
+
+package() {
+cd ${srcdir}/xmobar-$pkgver
+runhaskell Setup copy --destdir=${pkgdir}
+install -D -m644 license ${pkgdir}/usr/share/licenses/$pkgname/LICENSE
+}
+
+md5sums=('f97a10f049796f55cc3d13ee68d07eac')

Copied: xmobar/repos/community-staging-i686/disable-ewmh-plugin.patch (from rev 
155342, xmobar/trunk/disable-ewmh-plugin.patch)
===
--- community-staging-i686/disable-ewmh-plugin.patch
(rev 0)
+++ community-staging-i686/disable-ewmh-plugin.patch2016-01-04 09:55:15 UTC 
(rev 155343)
@@ -0,0 +1,46 @@
+diff --git a/src/Config.hs b/src/Config.hs
+index 59d6bd4..c788e6a 100644
+--- a/src/Config.hs
 b/src/Config.hs
+@@ -34,7 +34,6 @@ import Plugins.MarqueePipeReader
+ import Plugins.CommandReader
+ import Plugins.StdinReader
+ import Plugins.XMonadLog
+-import Plugins.EWMH
+ import Plugins.Kbd
+ import Plugins.Locks
+
+@@ -147,7 +146,7 @@ infixr :*:
+ -- the 'Runnable.Runnable' Read instance. To install a plugin just add
+ -- the plugin's type to the list of types (separated by ':*:') appearing in
+ -- this function's type signature.
+-runnableTypes :: Command :*: Monitors :*: Date :*: PipeReader :*: 
BufferedPipeReader :*: CommandReader :*: StdinReader :*: XMonadLog :*: EWMH :*: 
Kbd :*: Locks :*:
++runnableTypes :: Command :*: Monitors :*: Date :*: PipeReader :*: 
BufferedPipeReader :*: CommandReader :*: StdinReader :*: XMonadLog :*: Kbd :*: 
Locks :*:
+  Mail :*: MBox :*:
+  DateZone :*: MarqueePipeReader :*:
+  ()
+diff --git a/src/Plugins/Date.hs b/src/Plugins/Date.hs
+index a263536..37e603f 100644
+--- a/src/Plugins/Date.hs
 b/src/Plugins/Date.hs
+@@ -20,7 +20,6 @@ module Plugins.Date (Date(..)) where
+
+ import Plugins
+
+-import System.Locale
+ import Control.Monad (liftM)
+ import Data.Time
+
+diff --git a/xmobar.cabal b/xmobar.cabal
+index db0d130..c76b355 100644
+--- a/xmobar.cabal
 b/xmobar.cabal
+@@ -81,7 +81,7 @@ executable xmobar
+   Xmobar, Actions, Bitmap, Config, Parsers, Commands, Localize,
+   XUtil, XPMFile, StatFS, Runnable, ColorCache, Window, Signal,
+   Plugins, Plugins.BufferedPipeReader,
+-  Plugins.CommandReader, Plugins.Date, Plugins.EWMH,
++  Plugins.CommandReader, Plugins.Date,
+   Plugins.PipeReader, Plugins.MarqueePipeReader,
+   Plugins.StdinReader, Plugins.XMonadLog,
+   Plugins.Utils, Plugins.Kbd, Plugins.Locks, Plugins.Monitors,

Copied: xmobar/repos/community-staging-x86_64/PKGBUILD (from rev 155342, 
xmobar/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD

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

2015-12-10 Thread Felix Yan
Date: Thursday, December 10, 2015 @ 19:16:37
  Author: fyan
Revision: 152519

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  xmobar/repos/community-staging-i686/
  xmobar/repos/community-staging-i686/PKGBUILD
(from rev 152518, xmobar/trunk/PKGBUILD)
  xmobar/repos/community-staging-i686/disable-ewmh-plugin.patch
(from rev 152518, xmobar/trunk/disable-ewmh-plugin.patch)
  xmobar/repos/community-staging-x86_64/
  xmobar/repos/community-staging-x86_64/PKGBUILD
(from rev 152518, xmobar/trunk/PKGBUILD)
  xmobar/repos/community-staging-x86_64/disable-ewmh-plugin.patch
(from rev 152518, xmobar/trunk/disable-ewmh-plugin.patch)

+
 community-staging-i686/PKGBUILD|   31 
 community-staging-i686/disable-ewmh-plugin.patch   |   46 +++
 community-staging-x86_64/PKGBUILD  |   31 
 community-staging-x86_64/disable-ewmh-plugin.patch |   46 +++
 4 files changed, 154 insertions(+)

Copied: xmobar/repos/community-staging-i686/PKGBUILD (from rev 152518, 
xmobar/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-10 18:16:37 UTC (rev 152519)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Arch Haskell Team 
+
+pkgname=xmobar
+pkgver=0.23.1
+pkgrel=5
+pkgdesc="A Minimalistic Text Based Status Bar"
+url="http://hackage.haskell.org/package/xmobar";
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('gmp' 'libxft' 'libxinerama' 'wireless_tools' 'libxrandr' 'libxpm')
+makedepends=('ghc=7.10.3' 'haskell-x11=1.6.1.2' 'haskell-x11-xft=0.3.1' 
'haskell-utf8-string' 'haskell-network-uri'
+'haskell-stm=2.4.4' 'haskell-parsec=3.1.9' 'haskell-mtl=2.2.1' 
'haskell-regex-base' 'haskell-regex-compat' 'haskell-http')
+options=('strip')
+source=(http://hackage.haskell.org/packages/archive/xmobar/$pkgver/xmobar-$pkgver.tar.gz)
+
+build() {
+cd ${srcdir}/xmobar-$pkgver
+
+runhaskell Setup configure --disable-optimization  --prefix=/usr 
--flags="with_utf8 with_xft with_iwlib with_xpm"
+runhaskell Setup build
+}
+
+package() {
+cd ${srcdir}/xmobar-$pkgver
+runhaskell Setup copy --destdir=${pkgdir}
+install -D -m644 license ${pkgdir}/usr/share/licenses/$pkgname/LICENSE
+}
+
+md5sums=('f97a10f049796f55cc3d13ee68d07eac')

Copied: xmobar/repos/community-staging-i686/disable-ewmh-plugin.patch (from rev 
152518, xmobar/trunk/disable-ewmh-plugin.patch)
===
--- community-staging-i686/disable-ewmh-plugin.patch
(rev 0)
+++ community-staging-i686/disable-ewmh-plugin.patch2015-12-10 18:16:37 UTC 
(rev 152519)
@@ -0,0 +1,46 @@
+diff --git a/src/Config.hs b/src/Config.hs
+index 59d6bd4..c788e6a 100644
+--- a/src/Config.hs
 b/src/Config.hs
+@@ -34,7 +34,6 @@ import Plugins.MarqueePipeReader
+ import Plugins.CommandReader
+ import Plugins.StdinReader
+ import Plugins.XMonadLog
+-import Plugins.EWMH
+ import Plugins.Kbd
+ import Plugins.Locks
+
+@@ -147,7 +146,7 @@ infixr :*:
+ -- the 'Runnable.Runnable' Read instance. To install a plugin just add
+ -- the plugin's type to the list of types (separated by ':*:') appearing in
+ -- this function's type signature.
+-runnableTypes :: Command :*: Monitors :*: Date :*: PipeReader :*: 
BufferedPipeReader :*: CommandReader :*: StdinReader :*: XMonadLog :*: EWMH :*: 
Kbd :*: Locks :*:
++runnableTypes :: Command :*: Monitors :*: Date :*: PipeReader :*: 
BufferedPipeReader :*: CommandReader :*: StdinReader :*: XMonadLog :*: Kbd :*: 
Locks :*:
+  Mail :*: MBox :*:
+  DateZone :*: MarqueePipeReader :*:
+  ()
+diff --git a/src/Plugins/Date.hs b/src/Plugins/Date.hs
+index a263536..37e603f 100644
+--- a/src/Plugins/Date.hs
 b/src/Plugins/Date.hs
+@@ -20,7 +20,6 @@ module Plugins.Date (Date(..)) where
+
+ import Plugins
+
+-import System.Locale
+ import Control.Monad (liftM)
+ import Data.Time
+
+diff --git a/xmobar.cabal b/xmobar.cabal
+index db0d130..c76b355 100644
+--- a/xmobar.cabal
 b/xmobar.cabal
+@@ -81,7 +81,7 @@ executable xmobar
+   Xmobar, Actions, Bitmap, Config, Parsers, Commands, Localize,
+   XUtil, XPMFile, StatFS, Runnable, ColorCache, Window, Signal,
+   Plugins, Plugins.BufferedPipeReader,
+-  Plugins.CommandReader, Plugins.Date, Plugins.EWMH,
++  Plugins.CommandReader, Plugins.Date,
+   Plugins.PipeReader, Plugins.MarqueePipeReader,
+   Plugins.StdinReader, Plugins.XMonadLog,
+   Plugins.Utils, Plugins.Kbd, Plugins.Locks, Plugins.Monitors,

Copied: xmobar/repos/community-staging-x86_64/PKGBUILD (from rev 152518, 
xmobar/trunk/PKGBUILD)
===
--- commun

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

2015-10-06 Thread Evangelos Foutras
Date: Wednesday, October 7, 2015 @ 03:49:02
  Author: foutrelis
Revision: 143181

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  xmobar/repos/community-staging-i686/
  xmobar/repos/community-staging-i686/PKGBUILD
(from rev 143180, xmobar/trunk/PKGBUILD)
  xmobar/repos/community-staging-i686/disable-ewmh-plugin.patch
(from rev 143180, xmobar/trunk/disable-ewmh-plugin.patch)
  xmobar/repos/community-staging-x86_64/
  xmobar/repos/community-staging-x86_64/PKGBUILD
(from rev 143180, xmobar/trunk/PKGBUILD)
  xmobar/repos/community-staging-x86_64/disable-ewmh-plugin.patch
(from rev 143180, xmobar/trunk/disable-ewmh-plugin.patch)

+
 community-staging-i686/PKGBUILD|   31 
 community-staging-i686/disable-ewmh-plugin.patch   |   46 +++
 community-staging-x86_64/PKGBUILD  |   31 
 community-staging-x86_64/disable-ewmh-plugin.patch |   46 +++
 4 files changed, 154 insertions(+)

Copied: xmobar/repos/community-staging-i686/PKGBUILD (from rev 143180, 
xmobar/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-10-07 01:49:02 UTC (rev 143181)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Arch Haskell Team 
+
+pkgname=xmobar
+pkgver=0.23.1
+pkgrel=4
+pkgdesc="A Minimalistic Text Based Status Bar"
+url="http://hackage.haskell.org/package/xmobar";
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('gmp' 'libxft' 'libxinerama' 'wireless_tools' 'libxrandr' 'libxpm')
+makedepends=('ghc=7.10.2' 'haskell-x11=1.6.1.2' 'haskell-x11-xft=0.3.1' 
'haskell-utf8-string=1' 'haskell-network-uri'
+'haskell-stm=2.4.4' 'haskell-parsec=3.1.9' 'haskell-mtl=2.2.1' 
'haskell-regex-base' 'haskell-regex-compat' 'haskell-http')
+options=('strip')
+source=(http://hackage.haskell.org/packages/archive/xmobar/$pkgver/xmobar-$pkgver.tar.gz)
+
+build() {
+cd ${srcdir}/xmobar-$pkgver
+
+runhaskell Setup configure --disable-optimization  --prefix=/usr 
--flags="with_utf8 with_xft with_iwlib with_xpm"
+runhaskell Setup build
+}
+
+package() {
+cd ${srcdir}/xmobar-$pkgver
+runhaskell Setup copy --destdir=${pkgdir}
+install -D -m644 license ${pkgdir}/usr/share/licenses/$pkgname/LICENSE
+}
+
+md5sums=('f97a10f049796f55cc3d13ee68d07eac')

Copied: xmobar/repos/community-staging-i686/disable-ewmh-plugin.patch (from rev 
143180, xmobar/trunk/disable-ewmh-plugin.patch)
===
--- community-staging-i686/disable-ewmh-plugin.patch
(rev 0)
+++ community-staging-i686/disable-ewmh-plugin.patch2015-10-07 01:49:02 UTC 
(rev 143181)
@@ -0,0 +1,46 @@
+diff --git a/src/Config.hs b/src/Config.hs
+index 59d6bd4..c788e6a 100644
+--- a/src/Config.hs
 b/src/Config.hs
+@@ -34,7 +34,6 @@ import Plugins.MarqueePipeReader
+ import Plugins.CommandReader
+ import Plugins.StdinReader
+ import Plugins.XMonadLog
+-import Plugins.EWMH
+ import Plugins.Kbd
+ import Plugins.Locks
+
+@@ -147,7 +146,7 @@ infixr :*:
+ -- the 'Runnable.Runnable' Read instance. To install a plugin just add
+ -- the plugin's type to the list of types (separated by ':*:') appearing in
+ -- this function's type signature.
+-runnableTypes :: Command :*: Monitors :*: Date :*: PipeReader :*: 
BufferedPipeReader :*: CommandReader :*: StdinReader :*: XMonadLog :*: EWMH :*: 
Kbd :*: Locks :*:
++runnableTypes :: Command :*: Monitors :*: Date :*: PipeReader :*: 
BufferedPipeReader :*: CommandReader :*: StdinReader :*: XMonadLog :*: Kbd :*: 
Locks :*:
+  Mail :*: MBox :*:
+  DateZone :*: MarqueePipeReader :*:
+  ()
+diff --git a/src/Plugins/Date.hs b/src/Plugins/Date.hs
+index a263536..37e603f 100644
+--- a/src/Plugins/Date.hs
 b/src/Plugins/Date.hs
+@@ -20,7 +20,6 @@ module Plugins.Date (Date(..)) where
+
+ import Plugins
+
+-import System.Locale
+ import Control.Monad (liftM)
+ import Data.Time
+
+diff --git a/xmobar.cabal b/xmobar.cabal
+index db0d130..c76b355 100644
+--- a/xmobar.cabal
 b/xmobar.cabal
+@@ -81,7 +81,7 @@ executable xmobar
+   Xmobar, Actions, Bitmap, Config, Parsers, Commands, Localize,
+   XUtil, XPMFile, StatFS, Runnable, ColorCache, Window, Signal,
+   Plugins, Plugins.BufferedPipeReader,
+-  Plugins.CommandReader, Plugins.Date, Plugins.EWMH,
++  Plugins.CommandReader, Plugins.Date,
+   Plugins.PipeReader, Plugins.MarqueePipeReader,
+   Plugins.StdinReader, Plugins.XMonadLog,
+   Plugins.Utils, Plugins.Kbd, Plugins.Locks, Plugins.Monitors,

Copied: xmobar/repos/community-staging-x86_64/PKGBUILD (from rev 143180, 
xmobar/trunk/PKGBUILD)
===
--- 

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

2015-09-10 Thread Evangelos Foutras
Date: Friday, September 11, 2015 @ 00:14:08
  Author: foutrelis
Revision: 139899

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  xmobar/repos/community-staging-i686/
  xmobar/repos/community-staging-i686/PKGBUILD
(from rev 139898, xmobar/trunk/PKGBUILD)
  xmobar/repos/community-staging-i686/disable-ewmh-plugin.patch
(from rev 139898, xmobar/trunk/disable-ewmh-plugin.patch)
  xmobar/repos/community-staging-x86_64/
  xmobar/repos/community-staging-x86_64/PKGBUILD
(from rev 139898, xmobar/trunk/PKGBUILD)
  xmobar/repos/community-staging-x86_64/disable-ewmh-plugin.patch
(from rev 139898, xmobar/trunk/disable-ewmh-plugin.patch)

+
 community-staging-i686/PKGBUILD|   31 
 community-staging-i686/disable-ewmh-plugin.patch   |   46 +++
 community-staging-x86_64/PKGBUILD  |   31 
 community-staging-x86_64/disable-ewmh-plugin.patch |   46 +++
 4 files changed, 154 insertions(+)

Copied: xmobar/repos/community-staging-i686/PKGBUILD (from rev 139898, 
xmobar/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-09-10 22:14:08 UTC (rev 139899)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Arch Haskell Team 
+
+pkgname=xmobar
+pkgver=0.23.1
+pkgrel=3
+pkgdesc="A Minimalistic Text Based Status Bar"
+url="http://hackage.haskell.org/package/xmobar";
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('gmp' 'libxft' 'libxinerama' 'wireless_tools' 'libxrandr' 'libxpm')
+makedepends=('ghc=7.10.1' 'haskell-x11=1.6.1.2' 'haskell-x11-xft=0.3.1' 
'haskell-utf8-string=1' 'haskell-network-uri'
+'haskell-stm=2.4.4' 'haskell-parsec=3.1.9' 'haskell-mtl=2.2.1' 
'haskell-regex-base' 'haskell-regex-compat' 'haskell-http')
+options=('strip')
+source=(http://hackage.haskell.org/packages/archive/xmobar/$pkgver/xmobar-$pkgver.tar.gz)
+
+build() {
+cd ${srcdir}/xmobar-$pkgver
+
+runhaskell Setup configure --disable-optimization  --prefix=/usr 
--flags="with_utf8 with_xft with_iwlib with_xpm"
+runhaskell Setup build
+}
+
+package() {
+cd ${srcdir}/xmobar-$pkgver
+runhaskell Setup copy --destdir=${pkgdir}
+install -D -m644 license ${pkgdir}/usr/share/licenses/$pkgname/LICENSE
+}
+
+md5sums=('f97a10f049796f55cc3d13ee68d07eac')

Copied: xmobar/repos/community-staging-i686/disable-ewmh-plugin.patch (from rev 
139898, xmobar/trunk/disable-ewmh-plugin.patch)
===
--- community-staging-i686/disable-ewmh-plugin.patch
(rev 0)
+++ community-staging-i686/disable-ewmh-plugin.patch2015-09-10 22:14:08 UTC 
(rev 139899)
@@ -0,0 +1,46 @@
+diff --git a/src/Config.hs b/src/Config.hs
+index 59d6bd4..c788e6a 100644
+--- a/src/Config.hs
 b/src/Config.hs
+@@ -34,7 +34,6 @@ import Plugins.MarqueePipeReader
+ import Plugins.CommandReader
+ import Plugins.StdinReader
+ import Plugins.XMonadLog
+-import Plugins.EWMH
+ import Plugins.Kbd
+ import Plugins.Locks
+
+@@ -147,7 +146,7 @@ infixr :*:
+ -- the 'Runnable.Runnable' Read instance. To install a plugin just add
+ -- the plugin's type to the list of types (separated by ':*:') appearing in
+ -- this function's type signature.
+-runnableTypes :: Command :*: Monitors :*: Date :*: PipeReader :*: 
BufferedPipeReader :*: CommandReader :*: StdinReader :*: XMonadLog :*: EWMH :*: 
Kbd :*: Locks :*:
++runnableTypes :: Command :*: Monitors :*: Date :*: PipeReader :*: 
BufferedPipeReader :*: CommandReader :*: StdinReader :*: XMonadLog :*: Kbd :*: 
Locks :*:
+  Mail :*: MBox :*:
+  DateZone :*: MarqueePipeReader :*:
+  ()
+diff --git a/src/Plugins/Date.hs b/src/Plugins/Date.hs
+index a263536..37e603f 100644
+--- a/src/Plugins/Date.hs
 b/src/Plugins/Date.hs
+@@ -20,7 +20,6 @@ module Plugins.Date (Date(..)) where
+
+ import Plugins
+
+-import System.Locale
+ import Control.Monad (liftM)
+ import Data.Time
+
+diff --git a/xmobar.cabal b/xmobar.cabal
+index db0d130..c76b355 100644
+--- a/xmobar.cabal
 b/xmobar.cabal
+@@ -81,7 +81,7 @@ executable xmobar
+   Xmobar, Actions, Bitmap, Config, Parsers, Commands, Localize,
+   XUtil, XPMFile, StatFS, Runnable, ColorCache, Window, Signal,
+   Plugins, Plugins.BufferedPipeReader,
+-  Plugins.CommandReader, Plugins.Date, Plugins.EWMH,
++  Plugins.CommandReader, Plugins.Date,
+   Plugins.PipeReader, Plugins.MarqueePipeReader,
+   Plugins.StdinReader, Plugins.XMonadLog,
+   Plugins.Utils, Plugins.Kbd, Plugins.Locks, Plugins.Monitors,

Copied: xmobar/repos/community-staging-x86_64/PKGBUILD (from rev 139898, 
xmobar/trunk/PKGBUILD)
===
--- 

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

2015-03-08 Thread Jelle van der Waa
Date: Sunday, March 8, 2015 @ 20:11:24
  Author: jelle
Revision: 128947

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

Added:
  xmobar/repos/community-i686/PKGBUILD
(from rev 128946, xmobar/trunk/PKGBUILD)
  xmobar/repos/community-x86_64/PKGBUILD
(from rev 128946, xmobar/trunk/PKGBUILD)
Deleted:
  xmobar/repos/community-i686/PKGBUILD
  xmobar/repos/community-i686/xmobar-0.15-haskell-mtl.patch
  xmobar/repos/community-x86_64/PKGBUILD
  xmobar/repos/community-x86_64/xmobar-0.15-haskell-mtl.patch

+
 /PKGBUILD  |   62 +++
 community-i686/PKGBUILD|   31 ---
 community-i686/xmobar-0.15-haskell-mtl.patch   |   12 
 community-x86_64/PKGBUILD  |   31 ---
 community-x86_64/xmobar-0.15-haskell-mtl.patch |   12 
 5 files changed, 62 insertions(+), 86 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-03-08 19:11:12 UTC (rev 128946)
+++ community-i686/PKGBUILD 2015-03-08 19:11:24 UTC (rev 128947)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Arch Haskell Team 
-
-pkgname=xmobar
-pkgver=0.22.1
-pkgrel=2
-pkgdesc="A Minimalistic Text Based Status Bar"
-url="http://hackage.haskell.org/package/xmobar";
-license=('custom:BSD3')
-arch=('i686' 'x86_64')
-depends=('gmp' 'libxft' 'libxinerama' 'wireless_tools' 'libxrandr' 'libxpm')
-makedepends=('ghc=7.8.4-1' 'haskell-x11=1.6.1.2' 'haskell-x11-xft=0.3.1' 
'haskell-utf8-string=0.3.8' 'haskell-network-uri'
-'haskell-stm=2.4.3' 'haskell-parsec=3.1.7' 'haskell-mtl=2.1.3.1' 
'haskell-regex-base' 'haskell-regex-compat' 'haskell-http')
-options=('strip')
-source=(http://hackage.haskell.org/packages/archive/xmobar/$pkgver/xmobar-$pkgver.tar.gz)
-md5sums=('b63a1d5ad739e0f2b70ba0366a9854b7')
-
-build() {
-cd ${srcdir}/xmobar-$pkgver
-
-runhaskell Setup configure --disable-optimization --prefix=/usr 
--flags="with_utf8 with_xft with_iwlib with_xpm"
-runhaskell Setup build
-}
-
-package() {
-cd ${srcdir}/xmobar-$pkgver
-runhaskell Setup copy --destdir=${pkgdir}
-install -D -m644 license ${pkgdir}/usr/share/licenses/$pkgname/LICENSE
-}
-

Copied: xmobar/repos/community-i686/PKGBUILD (from rev 128946, 
xmobar/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-03-08 19:11:24 UTC (rev 128947)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Arch Haskell Team 
+
+pkgname=xmobar
+pkgver=0.23
+pkgrel=1
+pkgdesc="A Minimalistic Text Based Status Bar"
+url="http://hackage.haskell.org/package/xmobar";
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('gmp' 'libxft' 'libxinerama' 'wireless_tools' 'libxrandr' 'libxpm')
+makedepends=('ghc=7.8.4-1' 'haskell-x11=1.6.1.2' 'haskell-x11-xft=0.3.1' 
'haskell-utf8-string=0.3.8' 'haskell-network-uri'
+'haskell-stm=2.4.3' 'haskell-parsec=3.1.7' 'haskell-mtl=2.1.3.1' 
'haskell-regex-base' 'haskell-regex-compat' 'haskell-http')
+options=('strip')
+source=(http://hackage.haskell.org/packages/archive/xmobar/$pkgver/xmobar-$pkgver.tar.gz)
+md5sums=('5ab73783a6a8f97753a263652e1c141c')
+
+build() {
+cd ${srcdir}/xmobar-$pkgver
+
+runhaskell Setup configure --disable-optimization --prefix=/usr 
--flags="with_utf8 with_xft with_iwlib with_xpm"
+runhaskell Setup build
+}
+
+package() {
+cd ${srcdir}/xmobar-$pkgver
+runhaskell Setup copy --destdir=${pkgdir}
+install -D -m644 license ${pkgdir}/usr/share/licenses/$pkgname/LICENSE
+}
+

Deleted: community-i686/xmobar-0.15-haskell-mtl.patch
===
--- community-i686/xmobar-0.15-haskell-mtl.patch2015-03-08 19:11:12 UTC 
(rev 128946)
+++ community-i686/xmobar-0.15-haskell-mtl.patch2015-03-08 19:11:24 UTC 
(rev 128947)
@@ -1,12 +0,0 @@
-diff -aur xmobar-0.15.old/xmobar.cabal xmobar-0.15/xmobar.cabal
 xmobar-0.15.old/xmobar.cabal   2012-06-11 17:04:21.422444926 +
-+++ xmobar-0.15/xmobar.cabal   2012-06-11 17:05:16.772001865 +
-@@ -112,7 +112,7 @@
-   time,
-   filepath,
-   X11 == 1.6.*,
--  mtl == 2.0.*,
-+  mtl >= 2.0 && <2.2,
-   parsec == 3.1.*,
-   stm == 2.3.*
- 

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-03-08 19:11:12 UTC (rev 128946)
+++ community-x86_64/PKGBUILD   2015-03-08 19:11:24 UTC (rev 128947)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Arch Haskell Team 
-
-pkgname=xmobar
-pkgver=0.22.1
-pkgrel=2
-pkgdesc="A Minimalistic Text Based Status Bar"
-url="http://hackage.haskell.org/package/xmobar";
-license=('custom:B

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

2014-12-29 Thread Jelle van der Waa
Date: Monday, December 29, 2014 @ 19:19:37
  Author: jelle
Revision: 124867

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  xmobar/repos/community-staging-i686/
  xmobar/repos/community-staging-i686/PKGBUILD
(from rev 124866, xmobar/trunk/PKGBUILD)
  xmobar/repos/community-staging-i686/xmobar-0.15-haskell-mtl.patch
(from rev 124866, xmobar/trunk/xmobar-0.15-haskell-mtl.patch)
  xmobar/repos/community-staging-x86_64/
  xmobar/repos/community-staging-x86_64/PKGBUILD
(from rev 124866, xmobar/trunk/PKGBUILD)
  xmobar/repos/community-staging-x86_64/xmobar-0.15-haskell-mtl.patch
(from rev 124866, xmobar/trunk/xmobar-0.15-haskell-mtl.patch)

+
 community-staging-i686/PKGBUILD|   31 +++
 community-staging-i686/xmobar-0.15-haskell-mtl.patch   |   12 +
 community-staging-x86_64/PKGBUILD  |   31 +++
 community-staging-x86_64/xmobar-0.15-haskell-mtl.patch |   12 +
 4 files changed, 86 insertions(+)

Copied: xmobar/repos/community-staging-i686/PKGBUILD (from rev 124866, 
xmobar/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-12-29 18:19:37 UTC (rev 124867)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Arch Haskell Team 
+
+pkgname=xmobar
+pkgver=0.22.1
+pkgrel=1
+pkgdesc="A Minimalistic Text Based Status Bar"
+url="http://hackage.haskell.org/package/xmobar";
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('gmp' 'libxft' 'libxinerama' 'wireless_tools' 'libxrandr' 'libxpm')
+makedepends=('ghc=7.8.4-1' 'haskell-x11=1.6.1.2' 'haskell-x11-xft=0.3.1' 
'haskell-utf8-string=0.3.8' 'haskell-network-uri'
+'haskell-stm=2.4.3' 'haskell-parsec=3.1.7' 'haskell-mtl=2.1.3.1' 
'haskell-regex-base' 'haskell-regex-compat' 'haskell-http')
+options=('strip')
+source=(http://hackage.haskell.org/packages/archive/xmobar/$pkgver/xmobar-$pkgver.tar.gz)
+md5sums=('b63a1d5ad739e0f2b70ba0366a9854b7')
+
+build() {
+cd ${srcdir}/xmobar-$pkgver
+
+runhaskell Setup configure --disable-optimization --prefix=/usr 
--flags="with_utf8 with_xft with_iwlib"
+runhaskell Setup build
+}
+
+package() {
+cd ${srcdir}/xmobar-$pkgver
+runhaskell Setup copy --destdir=${pkgdir}
+install -D -m644 license ${pkgdir}/usr/share/licenses/$pkgname/LICENSE
+}
+

Copied: xmobar/repos/community-staging-i686/xmobar-0.15-haskell-mtl.patch (from 
rev 124866, xmobar/trunk/xmobar-0.15-haskell-mtl.patch)
===
--- community-staging-i686/xmobar-0.15-haskell-mtl.patch
(rev 0)
+++ community-staging-i686/xmobar-0.15-haskell-mtl.patch2014-12-29 
18:19:37 UTC (rev 124867)
@@ -0,0 +1,12 @@
+diff -aur xmobar-0.15.old/xmobar.cabal xmobar-0.15/xmobar.cabal
+--- xmobar-0.15.old/xmobar.cabal   2012-06-11 17:04:21.422444926 +
 xmobar-0.15/xmobar.cabal   2012-06-11 17:05:16.772001865 +
+@@ -112,7 +112,7 @@
+   time,
+   filepath,
+   X11 == 1.6.*,
+-  mtl == 2.0.*,
++  mtl >= 2.0 && <2.2,
+   parsec == 3.1.*,
+   stm == 2.3.*
+ 

Copied: xmobar/repos/community-staging-x86_64/PKGBUILD (from rev 124866, 
xmobar/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2014-12-29 18:19:37 UTC (rev 124867)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Arch Haskell Team 
+
+pkgname=xmobar
+pkgver=0.22.1
+pkgrel=1
+pkgdesc="A Minimalistic Text Based Status Bar"
+url="http://hackage.haskell.org/package/xmobar";
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('gmp' 'libxft' 'libxinerama' 'wireless_tools' 'libxrandr' 'libxpm')
+makedepends=('ghc=7.8.4-1' 'haskell-x11=1.6.1.2' 'haskell-x11-xft=0.3.1' 
'haskell-utf8-string=0.3.8' 'haskell-network-uri'
+'haskell-stm=2.4.3' 'haskell-parsec=3.1.7' 'haskell-mtl=2.1.3.1' 
'haskell-regex-base' 'haskell-regex-compat' 'haskell-http')
+options=('strip')
+source=(http://hackage.haskell.org/packages/archive/xmobar/$pkgver/xmobar-$pkgver.tar.gz)
+md5sums=('b63a1d5ad739e0f2b70ba0366a9854b7')
+
+build() {
+cd ${srcdir}/xmobar-$pkgver
+
+runhaskell Setup configure --disable-optimization --prefix=/usr 
--flags="with_utf8 with_xft with_iwlib"
+runhaskell Setup build
+}
+
+package() {
+cd ${srcdir}/xmobar-$pkgver
+runhaskell Setup copy --destdir=${pkgdir}
+install -D -m644 license ${pkgdir}/usr/share/licenses/$pkgname/LICENSE
+}
+

Copied: xmobar/repos/community-staging-x86_64/xmobar-0.15-haskell-mtl.patch 
(from rev 124866, xmobar/trunk/xmobar-0.15-haskell-mtl.patch)
===

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

2014-07-12 Thread Jelle van der Waa
Date: Saturday, July 12, 2014 @ 16:37:25
  Author: jelle
Revision: 115584

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  xmobar/repos/community-staging-i686/
  xmobar/repos/community-staging-i686/PKGBUILD
(from rev 115583, xmobar/trunk/PKGBUILD)
  xmobar/repos/community-staging-i686/xmobar-0.15-haskell-mtl.patch
(from rev 115583, xmobar/trunk/xmobar-0.15-haskell-mtl.patch)
  xmobar/repos/community-staging-x86_64/
  xmobar/repos/community-staging-x86_64/PKGBUILD
(from rev 115583, xmobar/trunk/PKGBUILD)
  xmobar/repos/community-staging-x86_64/xmobar-0.15-haskell-mtl.patch
(from rev 115583, xmobar/trunk/xmobar-0.15-haskell-mtl.patch)

+
 community-staging-i686/PKGBUILD|   31 +++
 community-staging-i686/xmobar-0.15-haskell-mtl.patch   |   12 +
 community-staging-x86_64/PKGBUILD  |   31 +++
 community-staging-x86_64/xmobar-0.15-haskell-mtl.patch |   12 +
 4 files changed, 86 insertions(+)

Copied: xmobar/repos/community-staging-i686/PKGBUILD (from rev 115583, 
xmobar/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-07-12 14:37:25 UTC (rev 115584)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Arch Haskell Team 
+
+pkgname=xmobar
+pkgver=0.21
+pkgrel=2
+pkgdesc="A Minimalistic Text Based Status Bar"
+url="http://hackage.haskell.org/package/xmobar";
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('gmp' 'libxft' 'libxinerama' 'wireless_tools' 'libxrandr')
+makedepends=('ghc=7.8.3-1' 'haskell-x11=1.6.1.2' 'haskell-x11-xft=0.3.1' 
'haskell-utf8-string=0.3.7'
+'haskell-stm=2.4.3' 'haskell-parsec=3.1.5' 'haskell-mtl=2.1.3.1' 
'haskell-regex-base' 'haskell-regex-compat')
+options=('strip')
+source=(http://hackage.haskell.org/packages/archive/xmobar/$pkgver/xmobar-$pkgver.tar.gz)
+md5sums=('8d4442d3772ad9f475d96b955fda220d')
+
+build() {
+cd ${srcdir}/xmobar-$pkgver
+
+runhaskell Setup configure --disable-optimization --prefix=/usr 
--flags="with_utf8 with_xft with_iwlib"
+runhaskell Setup build
+}
+
+package() {
+cd ${srcdir}/xmobar-$pkgver
+runhaskell Setup copy --destdir=${pkgdir}
+install -D -m644 license ${pkgdir}/usr/share/licenses/$pkgname/LICENSE
+}
+

Copied: xmobar/repos/community-staging-i686/xmobar-0.15-haskell-mtl.patch (from 
rev 115583, xmobar/trunk/xmobar-0.15-haskell-mtl.patch)
===
--- community-staging-i686/xmobar-0.15-haskell-mtl.patch
(rev 0)
+++ community-staging-i686/xmobar-0.15-haskell-mtl.patch2014-07-12 
14:37:25 UTC (rev 115584)
@@ -0,0 +1,12 @@
+diff -aur xmobar-0.15.old/xmobar.cabal xmobar-0.15/xmobar.cabal
+--- xmobar-0.15.old/xmobar.cabal   2012-06-11 17:04:21.422444926 +
 xmobar-0.15/xmobar.cabal   2012-06-11 17:05:16.772001865 +
+@@ -112,7 +112,7 @@
+   time,
+   filepath,
+   X11 == 1.6.*,
+-  mtl == 2.0.*,
++  mtl >= 2.0 && <2.2,
+   parsec == 3.1.*,
+   stm == 2.3.*
+ 

Copied: xmobar/repos/community-staging-x86_64/PKGBUILD (from rev 115583, 
xmobar/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2014-07-12 14:37:25 UTC (rev 115584)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Arch Haskell Team 
+
+pkgname=xmobar
+pkgver=0.21
+pkgrel=2
+pkgdesc="A Minimalistic Text Based Status Bar"
+url="http://hackage.haskell.org/package/xmobar";
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('gmp' 'libxft' 'libxinerama' 'wireless_tools' 'libxrandr')
+makedepends=('ghc=7.8.3-1' 'haskell-x11=1.6.1.2' 'haskell-x11-xft=0.3.1' 
'haskell-utf8-string=0.3.7'
+'haskell-stm=2.4.3' 'haskell-parsec=3.1.5' 'haskell-mtl=2.1.3.1' 
'haskell-regex-base' 'haskell-regex-compat')
+options=('strip')
+source=(http://hackage.haskell.org/packages/archive/xmobar/$pkgver/xmobar-$pkgver.tar.gz)
+md5sums=('8d4442d3772ad9f475d96b955fda220d')
+
+build() {
+cd ${srcdir}/xmobar-$pkgver
+
+runhaskell Setup configure --disable-optimization --prefix=/usr 
--flags="with_utf8 with_xft with_iwlib"
+runhaskell Setup build
+}
+
+package() {
+cd ${srcdir}/xmobar-$pkgver
+runhaskell Setup copy --destdir=${pkgdir}
+install -D -m644 license ${pkgdir}/usr/share/licenses/$pkgname/LICENSE
+}
+

Copied: xmobar/repos/community-staging-x86_64/xmobar-0.15-haskell-mtl.patch 
(from rev 115583, xmobar/trunk/xmobar-0.15-haskell-mtl.patch)
===
--- community-staging-x86_64/xmobar-0.15-haskell-mtl.patch   

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

2014-04-27 Thread Jelle van der Waa
Date: Sunday, April 27, 2014 @ 18:36:34
  Author: jelle
Revision: 110234

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  xmobar/repos/community-staging-i686/
  xmobar/repos/community-staging-i686/PKGBUILD
(from rev 110233, xmobar/trunk/PKGBUILD)
  xmobar/repos/community-staging-i686/xmobar-0.15-haskell-mtl.patch
(from rev 110233, xmobar/trunk/xmobar-0.15-haskell-mtl.patch)
  xmobar/repos/community-staging-x86_64/
  xmobar/repos/community-staging-x86_64/PKGBUILD
(from rev 110233, xmobar/trunk/PKGBUILD)
  xmobar/repos/community-staging-x86_64/xmobar-0.15-haskell-mtl.patch
(from rev 110233, xmobar/trunk/xmobar-0.15-haskell-mtl.patch)

+
 community-staging-i686/PKGBUILD|   31 +++
 community-staging-i686/xmobar-0.15-haskell-mtl.patch   |   12 +
 community-staging-x86_64/PKGBUILD  |   31 +++
 community-staging-x86_64/xmobar-0.15-haskell-mtl.patch |   12 +
 4 files changed, 86 insertions(+)

Copied: xmobar/repos/community-staging-i686/PKGBUILD (from rev 110233, 
xmobar/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-04-27 16:36:34 UTC (rev 110234)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Arch Haskell Team 
+
+pkgname=xmobar
+pkgver=0.20.1
+pkgrel=2
+pkgdesc="A Minimalistic Text Based Status Bar"
+url="http://hackage.haskell.org/package/xmobar";
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('gmp' 'libxft' 'libxinerama' 'wireless_tools' 'libxrandr')
+makedepends=('ghc=7.8.2-2' 'haskell-x11=1.6.1.1' 'haskell-x11-xft=0.3.1' 
'haskell-utf8-string=0.3.7'
+'haskell-stm=2.4.3' 'haskell-parsec=3.1.5' 'haskell-mtl=2.1.3.1' 
'haskell-regex-base' 'haskell-regex-compat haskell-http')
+options=('strip')
+source=(http://hackage.haskell.org/packages/archive/xmobar/$pkgver/xmobar-$pkgver.tar.gz)
+md5sums=('cee66bfa9aa36d25329ffd5ac044aeaf')
+
+build() {
+cd ${srcdir}/xmobar-$pkgver
+
+runhaskell Setup configure --disable-optimization --prefix=/usr 
--flags="with_utf8 with_xft with_iwlib"
+runhaskell Setup build
+}
+
+package() {
+cd ${srcdir}/xmobar-$pkgver
+runhaskell Setup copy --destdir=${pkgdir}
+install -D -m644 license ${pkgdir}/usr/share/licenses/$pkgname/LICENSE
+}
+

Copied: xmobar/repos/community-staging-i686/xmobar-0.15-haskell-mtl.patch (from 
rev 110233, xmobar/trunk/xmobar-0.15-haskell-mtl.patch)
===
--- community-staging-i686/xmobar-0.15-haskell-mtl.patch
(rev 0)
+++ community-staging-i686/xmobar-0.15-haskell-mtl.patch2014-04-27 
16:36:34 UTC (rev 110234)
@@ -0,0 +1,12 @@
+diff -aur xmobar-0.15.old/xmobar.cabal xmobar-0.15/xmobar.cabal
+--- xmobar-0.15.old/xmobar.cabal   2012-06-11 17:04:21.422444926 +
 xmobar-0.15/xmobar.cabal   2012-06-11 17:05:16.772001865 +
+@@ -112,7 +112,7 @@
+   time,
+   filepath,
+   X11 == 1.6.*,
+-  mtl == 2.0.*,
++  mtl >= 2.0 && <2.2,
+   parsec == 3.1.*,
+   stm == 2.3.*
+ 

Copied: xmobar/repos/community-staging-x86_64/PKGBUILD (from rev 110233, 
xmobar/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2014-04-27 16:36:34 UTC (rev 110234)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Arch Haskell Team 
+
+pkgname=xmobar
+pkgver=0.20.1
+pkgrel=2
+pkgdesc="A Minimalistic Text Based Status Bar"
+url="http://hackage.haskell.org/package/xmobar";
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('gmp' 'libxft' 'libxinerama' 'wireless_tools' 'libxrandr')
+makedepends=('ghc=7.8.2-2' 'haskell-x11=1.6.1.1' 'haskell-x11-xft=0.3.1' 
'haskell-utf8-string=0.3.7'
+'haskell-stm=2.4.3' 'haskell-parsec=3.1.5' 'haskell-mtl=2.1.3.1' 
'haskell-regex-base' 'haskell-regex-compat haskell-http')
+options=('strip')
+source=(http://hackage.haskell.org/packages/archive/xmobar/$pkgver/xmobar-$pkgver.tar.gz)
+md5sums=('cee66bfa9aa36d25329ffd5ac044aeaf')
+
+build() {
+cd ${srcdir}/xmobar-$pkgver
+
+runhaskell Setup configure --disable-optimization --prefix=/usr 
--flags="with_utf8 with_xft with_iwlib"
+runhaskell Setup build
+}
+
+package() {
+cd ${srcdir}/xmobar-$pkgver
+runhaskell Setup copy --destdir=${pkgdir}
+install -D -m644 license ${pkgdir}/usr/share/licenses/$pkgname/LICENSE
+}
+

Copied: xmobar/repos/community-staging-x86_64/xmobar-0.15-haskell-mtl.patch 
(from rev 110233, xmobar/trunk/xmobar-0.15-haskell-mtl.patch)
===
--- community-staging-x86_64/xmobar-0.15-haskell

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

2014-01-30 Thread Jelle van der Waa
Date: Friday, January 31, 2014 @ 08:52:58
  Author: jelle
Revision: 105071

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  xmobar/repos/community-staging-i686/
  xmobar/repos/community-staging-i686/PKGBUILD
(from rev 105070, xmobar/trunk/PKGBUILD)
  xmobar/repos/community-staging-i686/xmobar-0.15-haskell-mtl.patch
(from rev 105070, xmobar/trunk/xmobar-0.15-haskell-mtl.patch)
  xmobar/repos/community-staging-x86_64/
  xmobar/repos/community-staging-x86_64/PKGBUILD
(from rev 105070, xmobar/trunk/PKGBUILD)
  xmobar/repos/community-staging-x86_64/xmobar-0.15-haskell-mtl.patch
(from rev 105070, xmobar/trunk/xmobar-0.15-haskell-mtl.patch)

+
 community-staging-i686/PKGBUILD|   31 +++
 community-staging-i686/xmobar-0.15-haskell-mtl.patch   |   12 +
 community-staging-x86_64/PKGBUILD  |   31 +++
 community-staging-x86_64/xmobar-0.15-haskell-mtl.patch |   12 +
 4 files changed, 86 insertions(+)

Copied: xmobar/repos/community-staging-i686/PKGBUILD (from rev 105070, 
xmobar/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-01-31 07:52:58 UTC (rev 105071)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Arch Haskell Team 
+
+pkgname=xmobar
+pkgver=0.19
+pkgrel=2
+pkgdesc="A Minimalistic Text Based Status Bar"
+url="http://hackage.haskell.org/package/xmobar";
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('gmp' 'libxft' 'libxinerama' 'wireless_tools' 'libxrandr')
+makedepends=('ghc=7.6.3-1' 'haskell-x11=1.6.1.1-3' 'haskell-x11-xft=0.3.1-9' 
'haskell-utf8-string=0.3.7-5'
+'haskell-stm=2.4.2-2' 'haskell-parsec=3.1.3-3' 
'haskell-mtl=2.1.2-3' 'haskell-regex-base' 'haskell-regex-compat')
+options=('strip')
+source=(http://hackage.haskell.org/packages/archive/xmobar/$pkgver/xmobar-$pkgver.tar.gz)
+
+build() {
+cd ${srcdir}/xmobar-$pkgver
+
+runhaskell Setup configure --disable-optimization --prefix=/usr 
--flags="with_utf8 with_xft with_iwlib"
+runhaskell Setup build
+}
+
+package() {
+cd ${srcdir}/xmobar-$pkgver
+runhaskell Setup copy --destdir=${pkgdir}
+install -D -m644 license ${pkgdir}/usr/share/licenses/$pkgname/LICENSE
+}
+
+md5sums=('1c5b6ac7e7afe837b79c10ae4e8b8e4d')

Copied: xmobar/repos/community-staging-i686/xmobar-0.15-haskell-mtl.patch (from 
rev 105070, xmobar/trunk/xmobar-0.15-haskell-mtl.patch)
===
--- community-staging-i686/xmobar-0.15-haskell-mtl.patch
(rev 0)
+++ community-staging-i686/xmobar-0.15-haskell-mtl.patch2014-01-31 
07:52:58 UTC (rev 105071)
@@ -0,0 +1,12 @@
+diff -aur xmobar-0.15.old/xmobar.cabal xmobar-0.15/xmobar.cabal
+--- xmobar-0.15.old/xmobar.cabal   2012-06-11 17:04:21.422444926 +
 xmobar-0.15/xmobar.cabal   2012-06-11 17:05:16.772001865 +
+@@ -112,7 +112,7 @@
+   time,
+   filepath,
+   X11 == 1.6.*,
+-  mtl == 2.0.*,
++  mtl >= 2.0 && <2.2,
+   parsec == 3.1.*,
+   stm == 2.3.*
+ 

Copied: xmobar/repos/community-staging-x86_64/PKGBUILD (from rev 105070, 
xmobar/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2014-01-31 07:52:58 UTC (rev 105071)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Arch Haskell Team 
+
+pkgname=xmobar
+pkgver=0.19
+pkgrel=2
+pkgdesc="A Minimalistic Text Based Status Bar"
+url="http://hackage.haskell.org/package/xmobar";
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('gmp' 'libxft' 'libxinerama' 'wireless_tools' 'libxrandr')
+makedepends=('ghc=7.6.3-1' 'haskell-x11=1.6.1.1-3' 'haskell-x11-xft=0.3.1-9' 
'haskell-utf8-string=0.3.7-5'
+'haskell-stm=2.4.2-2' 'haskell-parsec=3.1.3-3' 
'haskell-mtl=2.1.2-3' 'haskell-regex-base' 'haskell-regex-compat')
+options=('strip')
+source=(http://hackage.haskell.org/packages/archive/xmobar/$pkgver/xmobar-$pkgver.tar.gz)
+
+build() {
+cd ${srcdir}/xmobar-$pkgver
+
+runhaskell Setup configure --disable-optimization --prefix=/usr 
--flags="with_utf8 with_xft with_iwlib"
+runhaskell Setup build
+}
+
+package() {
+cd ${srcdir}/xmobar-$pkgver
+runhaskell Setup copy --destdir=${pkgdir}
+install -D -m644 license ${pkgdir}/usr/share/licenses/$pkgname/LICENSE
+}
+
+md5sums=('1c5b6ac7e7afe837b79c10ae4e8b8e4d')

Copied: xmobar/repos/community-staging-x86_64/xmobar-0.15-haskell-mtl.patch 
(from rev 105070, xmobar/trunk/xmobar-0.15-haskell-mtl.patch)
===
--- community-staging-x86_64/xmobar-0.15-haskell-mtl.pat

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

2013-04-25 Thread Jelle van der Waa
Date: Thursday, April 25, 2013 @ 20:27:47
  Author: jelle
Revision: 89025

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  xmobar/repos/community-staging-i686/
  xmobar/repos/community-staging-i686/PKGBUILD
(from rev 89024, xmobar/trunk/PKGBUILD)
  xmobar/repos/community-staging-i686/xmobar-0.15-haskell-mtl.patch
(from rev 89024, xmobar/trunk/xmobar-0.15-haskell-mtl.patch)
  xmobar/repos/community-staging-x86_64/
  xmobar/repos/community-staging-x86_64/PKGBUILD
(from rev 89024, xmobar/trunk/PKGBUILD)
  xmobar/repos/community-staging-x86_64/xmobar-0.15-haskell-mtl.patch
(from rev 89024, xmobar/trunk/xmobar-0.15-haskell-mtl.patch)

+
 community-staging-i686/PKGBUILD|   31 +++
 community-staging-i686/xmobar-0.15-haskell-mtl.patch   |   12 +
 community-staging-x86_64/PKGBUILD  |   31 +++
 community-staging-x86_64/xmobar-0.15-haskell-mtl.patch |   12 +
 4 files changed, 86 insertions(+)

Copied: xmobar/repos/community-staging-i686/PKGBUILD (from rev 89024, 
xmobar/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-04-25 18:27:47 UTC (rev 89025)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Arch Haskell Team 
+
+pkgname=xmobar
+pkgver=0.16
+pkgrel=6
+pkgdesc="A Minimalistic Text Based Status Bar"
+url="http://hackage.haskell.org/package/xmobar";
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('gmp' 'libxft' 'libxinerama' 'wireless_tools' 'libxrandr')
+makedepends=('ghc=7.6.3-1' 'haskell-x11=1.6.1.1-3' 'haskell-x11-xft=0.3.1-9' 
'haskell-utf8-string=0.3.7-5'
+'haskell-stm=2.4.2-2' 'haskell-parsec=3.1.3-3' 
'haskell-mtl=2.1.2-3')
+options=('strip')
+source=(http://hackage.haskell.org/packages/archive/xmobar/$pkgver/xmobar-$pkgver.tar.gz)
+md5sums=('4742f1556a8e9b292f18df1176dcd378')
+
+build() {
+cd ${srcdir}/xmobar-$pkgver
+
+runhaskell Setup configure --disable-optimization --prefix=/usr 
--flags="with_utf8 with_xft with_iwlib"
+runhaskell Setup build
+}
+
+package() {
+cd ${srcdir}/xmobar-$pkgver
+runhaskell Setup copy --destdir=${pkgdir}
+install -D -m644 license ${pkgdir}/usr/share/licenses/$pkgname/LICENSE
+}
+

Copied: xmobar/repos/community-staging-i686/xmobar-0.15-haskell-mtl.patch (from 
rev 89024, xmobar/trunk/xmobar-0.15-haskell-mtl.patch)
===
--- community-staging-i686/xmobar-0.15-haskell-mtl.patch
(rev 0)
+++ community-staging-i686/xmobar-0.15-haskell-mtl.patch2013-04-25 
18:27:47 UTC (rev 89025)
@@ -0,0 +1,12 @@
+diff -aur xmobar-0.15.old/xmobar.cabal xmobar-0.15/xmobar.cabal
+--- xmobar-0.15.old/xmobar.cabal   2012-06-11 17:04:21.422444926 +
 xmobar-0.15/xmobar.cabal   2012-06-11 17:05:16.772001865 +
+@@ -112,7 +112,7 @@
+   time,
+   filepath,
+   X11 == 1.6.*,
+-  mtl == 2.0.*,
++  mtl >= 2.0 && <2.2,
+   parsec == 3.1.*,
+   stm == 2.3.*
+ 

Copied: xmobar/repos/community-staging-x86_64/PKGBUILD (from rev 89024, 
xmobar/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2013-04-25 18:27:47 UTC (rev 89025)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Arch Haskell Team 
+
+pkgname=xmobar
+pkgver=0.16
+pkgrel=6
+pkgdesc="A Minimalistic Text Based Status Bar"
+url="http://hackage.haskell.org/package/xmobar";
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('gmp' 'libxft' 'libxinerama' 'wireless_tools' 'libxrandr')
+makedepends=('ghc=7.6.3-1' 'haskell-x11=1.6.1.1-3' 'haskell-x11-xft=0.3.1-9' 
'haskell-utf8-string=0.3.7-5'
+'haskell-stm=2.4.2-2' 'haskell-parsec=3.1.3-3' 
'haskell-mtl=2.1.2-3')
+options=('strip')
+source=(http://hackage.haskell.org/packages/archive/xmobar/$pkgver/xmobar-$pkgver.tar.gz)
+md5sums=('4742f1556a8e9b292f18df1176dcd378')
+
+build() {
+cd ${srcdir}/xmobar-$pkgver
+
+runhaskell Setup configure --disable-optimization --prefix=/usr 
--flags="with_utf8 with_xft with_iwlib"
+runhaskell Setup build
+}
+
+package() {
+cd ${srcdir}/xmobar-$pkgver
+runhaskell Setup copy --destdir=${pkgdir}
+install -D -m644 license ${pkgdir}/usr/share/licenses/$pkgname/LICENSE
+}
+

Copied: xmobar/repos/community-staging-x86_64/xmobar-0.15-haskell-mtl.patch 
(from rev 89024, xmobar/trunk/xmobar-0.15-haskell-mtl.patch)
===
--- community-staging-x86_64/xmobar-0.15-haskell-mtl.patch  
(rev 0)
+++ community-staging-x86_64/xmobar-0.15-haskell-mtl.patch 

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

2013-02-04 Thread Thomas Dziedzic
Date: Tuesday, February 5, 2013 @ 08:07:02
  Author: td123
Revision: 83778

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  xmobar/repos/community-staging-i686/
  xmobar/repos/community-staging-i686/PKGBUILD
(from rev 83777, xmobar/trunk/PKGBUILD)
  xmobar/repos/community-staging-i686/xmobar-0.15-haskell-mtl.patch
(from rev 83777, xmobar/trunk/xmobar-0.15-haskell-mtl.patch)
  xmobar/repos/community-staging-x86_64/
  xmobar/repos/community-staging-x86_64/PKGBUILD
(from rev 83777, xmobar/trunk/PKGBUILD)
  xmobar/repos/community-staging-x86_64/xmobar-0.15-haskell-mtl.patch
(from rev 83777, xmobar/trunk/xmobar-0.15-haskell-mtl.patch)

+
 community-staging-i686/PKGBUILD|   31 +++
 community-staging-i686/xmobar-0.15-haskell-mtl.patch   |   12 +
 community-staging-x86_64/PKGBUILD  |   31 +++
 community-staging-x86_64/xmobar-0.15-haskell-mtl.patch |   12 +
 4 files changed, 86 insertions(+)

Copied: xmobar/repos/community-staging-i686/PKGBUILD (from rev 83777, 
xmobar/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-02-05 07:07:02 UTC (rev 83778)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Arch Haskell Team 
+
+pkgname=xmobar
+pkgver=0.16
+pkgrel=5
+pkgdesc="A Minimalistic Text Based Status Bar"
+url="http://hackage.haskell.org/package/xmobar";
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('gmp' 'libxft' 'libxinerama' 'wireless_tools' 'libxrandr')
+makedepends=('ghc=7.6.2-1' 'haskell-x11=1.6.0.2-2' 'haskell-x11-xft=0.3.1-6' 
'haskell-utf8-string=0.3.7-4'
+'haskell-stm=2.4.2-1' 'haskell-parsec=3.1.3-2' 
'haskell-mtl=2.1.2-2')
+options=('strip')
+source=(http://hackage.haskell.org/packages/archive/xmobar/$pkgver/xmobar-$pkgver.tar.gz)
+md5sums=('4742f1556a8e9b292f18df1176dcd378')
+
+build() {
+cd ${srcdir}/xmobar-$pkgver
+
+runhaskell Setup configure --disable-optimization --prefix=/usr 
--flags="with_utf8 with_xft with_iwlib"
+runhaskell Setup build
+}
+
+package() {
+cd ${srcdir}/xmobar-$pkgver
+runhaskell Setup copy --destdir=${pkgdir}
+install -D -m644 license ${pkgdir}/usr/share/licenses/$pkgname/LICENSE
+}
+

Copied: xmobar/repos/community-staging-i686/xmobar-0.15-haskell-mtl.patch (from 
rev 83777, xmobar/trunk/xmobar-0.15-haskell-mtl.patch)
===
--- community-staging-i686/xmobar-0.15-haskell-mtl.patch
(rev 0)
+++ community-staging-i686/xmobar-0.15-haskell-mtl.patch2013-02-05 
07:07:02 UTC (rev 83778)
@@ -0,0 +1,12 @@
+diff -aur xmobar-0.15.old/xmobar.cabal xmobar-0.15/xmobar.cabal
+--- xmobar-0.15.old/xmobar.cabal   2012-06-11 17:04:21.422444926 +
 xmobar-0.15/xmobar.cabal   2012-06-11 17:05:16.772001865 +
+@@ -112,7 +112,7 @@
+   time,
+   filepath,
+   X11 == 1.6.*,
+-  mtl == 2.0.*,
++  mtl >= 2.0 && <2.2,
+   parsec == 3.1.*,
+   stm == 2.3.*
+ 

Copied: xmobar/repos/community-staging-x86_64/PKGBUILD (from rev 83777, 
xmobar/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2013-02-05 07:07:02 UTC (rev 83778)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Arch Haskell Team 
+
+pkgname=xmobar
+pkgver=0.16
+pkgrel=5
+pkgdesc="A Minimalistic Text Based Status Bar"
+url="http://hackage.haskell.org/package/xmobar";
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('gmp' 'libxft' 'libxinerama' 'wireless_tools' 'libxrandr')
+makedepends=('ghc=7.6.2-1' 'haskell-x11=1.6.0.2-2' 'haskell-x11-xft=0.3.1-6' 
'haskell-utf8-string=0.3.7-4'
+'haskell-stm=2.4.2-1' 'haskell-parsec=3.1.3-2' 
'haskell-mtl=2.1.2-2')
+options=('strip')
+source=(http://hackage.haskell.org/packages/archive/xmobar/$pkgver/xmobar-$pkgver.tar.gz)
+md5sums=('4742f1556a8e9b292f18df1176dcd378')
+
+build() {
+cd ${srcdir}/xmobar-$pkgver
+
+runhaskell Setup configure --disable-optimization --prefix=/usr 
--flags="with_utf8 with_xft with_iwlib"
+runhaskell Setup build
+}
+
+package() {
+cd ${srcdir}/xmobar-$pkgver
+runhaskell Setup copy --destdir=${pkgdir}
+install -D -m644 license ${pkgdir}/usr/share/licenses/$pkgname/LICENSE
+}
+

Copied: xmobar/repos/community-staging-x86_64/xmobar-0.15-haskell-mtl.patch 
(from rev 83777, xmobar/trunk/xmobar-0.15-haskell-mtl.patch)
===
--- community-staging-x86_64/xmobar-0.15-haskell-mtl.patch  
(rev 0)
+++ community-staging-x86_64/xmobar-0.15-haskell-mtl.patch