[arch-commits] Commit in linux/trunk (3 files)

2013-04-24 Thread Tobias Powalowski
Date: Wednesday, April 24, 2013 @ 08:15:54
  Author: tpowa
Revision: 183592

upgpkg: linux 3.8.8-2

fix alsa firmware loading #34865

Added:
  linux/trunk/alsa-firmware-loading-3.8.8.patch
Modified:
  linux/trunk/PKGBUILD
  linux/trunk/linux.install

---+
 PKGBUILD  |   11 +++-
 alsa-firmware-loading-3.8.8.patch |   89 
 linux.install |2 
 3 files changed, 98 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-24 05:09:44 UTC (rev 183591)
+++ PKGBUILD2013-04-24 06:15:54 UTC (rev 183592)
@@ -6,7 +6,7 @@
 #pkgbase=linux-custom   # Build kernel with a different name
 _srcname=linux-3.8
 pkgver=3.8.8
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url=http://www.kernel.org/;
 license=('GPL2')
@@ -18,13 +18,15 @@
 'config' 'config.x86_64'
 # standard config files for mkinitcpio ramdisk
 'linux.preset'
-'change-default-console-loglevel.patch')
+'change-default-console-loglevel.patch'
+'alsa-firmware-loading-3.8.8.patch')
 md5sums=('1c738edfc54e7c65faeb90c436104e2f'
  '08cdcef928c2ca402adf1c444a3c43ac'
  '838191b72463b4146bc981b602423311'
  '0bebd8b31487488bd75fe5a1892d0db8'
  'eb14dcfd80c00852ef81ded6e826826a'
- 'f3def2cefdcbb954c21d8505d23cc83c')
+ 'f3def2cefdcbb954c21d8505d23cc83c'
+ 'e2ac681ffa439e969b4c3b4616852454')
 
 _kernelname=${pkgbase#linux}
 
@@ -37,6 +39,9 @@
   # add latest fixes from stable queue, if needed
   # http://git.kernel.org/?p=linux/kernel/git/stable/stable-queue.git
 
+  # fix alsa firmware loading #34865
+  patch -Np1 -i ${srcdir}/alsa-firmware-loading-3.8.8.patch
+
   # set DEFAULT_CONSOLE_LOGLEVEL to 4 (same value as the 'quiet' kernel param)
   # remove this when a Kconfig knob is made available by upstream
   # (relevant patch sent upstream: https://lkml.org/lkml/2011/7/26/227)

Added: alsa-firmware-loading-3.8.8.patch
===
--- alsa-firmware-loading-3.8.8.patch   (rev 0)
+++ alsa-firmware-loading-3.8.8.patch   2013-04-24 06:15:54 UTC (rev 183592)
@@ -0,0 +1,89 @@
+diff --git a/include/sound/emu10k1.h b/include/sound/emu10k1.h
+index f841ba4..dfb42ca 100644
+--- a/include/sound/emu10k1.h
 b/include/sound/emu10k1.h
+@@ -1787,6 +1787,7 @@ struct snd_emu10k1 {
+   unsigned int next_free_voice;
+ 
+   const struct firmware *firmware;
++  const struct firmware *dock_fw;
+ 
+ #ifdef CONFIG_PM_SLEEP
+   unsigned int *saved_ptr;
+diff --git a/sound/pci/emu10k1/emu10k1_main.c 
b/sound/pci/emu10k1/emu10k1_main.c
+index e6b0166..bdd888e 100644
+--- a/sound/pci/emu10k1/emu10k1_main.c
 b/sound/pci/emu10k1/emu10k1_main.c
+@@ -657,14 +657,14 @@ static int snd_emu10k1_cardbus_init(struct snd_emu10k1 
*emu)
+   return 0;
+ }
+ 
+-static int snd_emu1010_load_firmware(struct snd_emu10k1 *emu)
++static int snd_emu1010_load_firmware(struct snd_emu10k1 *emu,
++   const struct firmware *fw_entry)
+ {
+   int n, i;
+   int reg;
+   int value;
+   unsigned int write_post;
+   unsigned long flags;
+-  const struct firmware *fw_entry = emu-firmware;
+ 
+   if (!fw_entry)
+   return -EIO;
+@@ -725,9 +725,34 @@ static int emu1010_firmware_thread(void *data)
+   /* Return to Audio Dock programming mode */
+   snd_printk(KERN_INFO emu1010: Loading Audio Dock 
Firmware\n);
+   snd_emu1010_fpga_write(emu, EMU_HANA_FPGA_CONFIG, 
EMU_HANA_FPGA_CONFIG_AUDIODOCK);
+-  err = snd_emu1010_load_firmware(emu);
+-  if (err != 0)
+-  continue;
++
++  if (!emu-dock_fw) {
++  const char *filename = NULL;
++  switch (emu-card_capabilities-emu_model) {
++  case EMU_MODEL_EMU1010:
++  filename = DOCK_FILENAME;
++  break;
++  case EMU_MODEL_EMU1010B:
++  filename = MICRO_DOCK_FILENAME;
++  break;
++  case EMU_MODEL_EMU1616:
++  filename = MICRO_DOCK_FILENAME;
++  break;
++  }
++  if (filename) {
++  err = request_firmware(emu-dock_fw,
++ filename,
++ emu-pci-dev);
++  if (err)
++   

[arch-commits] Commit in linux/repos (16 files)

2013-04-24 Thread Tobias Powalowski
Date: Wednesday, April 24, 2013 @ 08:16:13
  Author: tpowa
Revision: 183593

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

Added:
  linux/repos/testing-i686/
  linux/repos/testing-i686/PKGBUILD
(from rev 183592, linux/trunk/PKGBUILD)
  linux/repos/testing-i686/alsa-firmware-loading-3.8.8.patch
(from rev 183592, linux/trunk/alsa-firmware-loading-3.8.8.patch)
  linux/repos/testing-i686/change-default-console-loglevel.patch
(from rev 183592, linux/trunk/change-default-console-loglevel.patch)
  linux/repos/testing-i686/config
(from rev 183592, linux/trunk/config)
  linux/repos/testing-i686/config.x86_64
(from rev 183592, linux/trunk/config.x86_64)
  linux/repos/testing-i686/linux.install
(from rev 183592, linux/trunk/linux.install)
  linux/repos/testing-i686/linux.preset
(from rev 183592, linux/trunk/linux.preset)
  linux/repos/testing-x86_64/
  linux/repos/testing-x86_64/PKGBUILD
(from rev 183592, linux/trunk/PKGBUILD)
  linux/repos/testing-x86_64/alsa-firmware-loading-3.8.8.patch
(from rev 183592, linux/trunk/alsa-firmware-loading-3.8.8.patch)
  linux/repos/testing-x86_64/change-default-console-loglevel.patch
(from rev 183592, linux/trunk/change-default-console-loglevel.patch)
  linux/repos/testing-x86_64/config
(from rev 183592, linux/trunk/config)
  linux/repos/testing-x86_64/config.x86_64
(from rev 183592, linux/trunk/config.x86_64)
  linux/repos/testing-x86_64/linux.install
(from rev 183592, linux/trunk/linux.install)
  linux/repos/testing-x86_64/linux.preset
(from rev 183592, linux/trunk/linux.preset)

--+
 testing-i686/PKGBUILD|  327 
 testing-i686/alsa-firmware-loading-3.8.8.patch   |   89 
 testing-i686/change-default-console-loglevel.patch   |   12 
 testing-i686/config  | 6200 +
 testing-i686/config.x86_64   | 5979 
 testing-i686/linux.install   |   65 
 testing-i686/linux.preset|   14 
 testing-x86_64/PKGBUILD  |  327 
 testing-x86_64/alsa-firmware-loading-3.8.8.patch |   89 
 testing-x86_64/change-default-console-loglevel.patch |   12 
 testing-x86_64/config| 6200 +
 testing-x86_64/config.x86_64 | 5979 
 testing-x86_64/linux.install |   65 
 testing-x86_64/linux.preset  |   14 
 14 files changed, 25372 insertions(+)

The diff is longer than the limit of 200KB.
Use svn diff -r 183592:183593 to see the changes.


[arch-commits] Commit in fcitx/trunk (PKGBUILD)

2013-04-24 Thread Felix Yan
Date: Wednesday, April 24, 2013 @ 08:23:46
  Author: fyan
Revision: 88847

upgpkg: fcitx 4.2.7-8 fix FS#34914

Modified:
  fcitx/trunk/PKGBUILD

--+
 PKGBUILD |   14 --
 1 file changed, 8 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-24 05:17:04 UTC (rev 88846)
+++ PKGBUILD2013-04-24 06:23:46 UTC (rev 88847)
@@ -6,7 +6,7 @@
 pkgbase=fcitx
 pkgname=('fcitx' 'fcitx-gtk2' 'fcitx-gtk3' 'fcitx-qt4')
 pkgver=4.2.7
-pkgrel=7
+pkgrel=8
 groups=('fcitx-im')
 arch=('i686' 'x86_64')
 url=http://code.google.com/p/fcitx/;
@@ -17,17 +17,17 @@

https://github.com/fcitx/fcitx/commit/9937b68bad3a7e9465e17b711ce9c0a072d3071f.patch

https://github.com/fcitx/fcitx/commit/10ff96ca1215187444951cdbebe9e0beacacdf5e.patch

https://github.com/fcitx/fcitx/commit/dc36c1a88f863971f81a76b8d9ec0db23b0d9387.patch
+   
https://github.com/fcitx/fcitx/commit/a9e6570046f9c1477dd6ec6e30e91e020e62d698.patch
 )
 
 build() {
   #source /etc/profile.d/qt4.sh
 
-  export CFLAGS+= -Wall
-
   cd $srcdir/$pkgbase-$pkgver
   patch -Np1 -i $srcdir/9937b68bad3a7e9465e17b711ce9c0a072d3071f.patch
   patch -Np1 -i $srcdir/10ff96ca1215187444951cdbebe9e0beacacdf5e.patch
   git apply -v -p1 $srcdir/dc36c1a88f863971f81a76b8d9ec0db23b0d9387.patch
+  patch -Np1 -i $srcdir/a9e6570046f9c1477dd6ec6e30e91e020e62d698.patch
 
   cd $srcdir
   mkdir -p build
@@ -56,8 +56,9 @@
   pkgdesc=Flexible Context-aware Input Tool with eXtension
   depends=('pango' 'libxinerama' 'gtk-update-icon-cache' 'shared-mime-info' \
'hicolor-icon-theme' 'desktop-file-utils' 'libxkbfile' \
-   'libxfixes' 'dbus-core' 'icu' 'enchant')
-  optdepends=('opencc: optional engine to do chinese convert'
+   'libxfixes' 'dbus-core' 'icu')
+  optdepends=('enchant: for word predication support'
+  'opencc: optional engine to do chinese convert'
  'fcitx-anthy: Hiragana text to Kana Kanji mixed text Japanese 
input method'
  'fcitx-chewing: Intelligent Zhuyin input method library for 
traditional Chinese'
  'fcitx-cloudpinyin: Standalone module for fcitx that uses pinyin 
API on the internet to provide additional input candidates'
@@ -130,4 +131,5 @@
 md5sums=('6e291717c24615b9dc9bfaa2949af3a7'
  '246e36c2232f107ed1692a52ebc43c39'
  '6f420547bc8af9627db2e5290f758433'
-'51e53377e1b83661f2896e25d1a46242')
+ '51e53377e1b83661f2896e25d1a46242'
+ '5e9f90817722a138b459b2bf6a926f96')



[arch-commits] Commit in fcitx/repos (16 files)

2013-04-24 Thread Felix Yan
Date: Wednesday, April 24, 2013 @ 08:26:30
  Author: fyan
Revision: 88848

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

Added:
  fcitx/repos/community-i686/PKGBUILD
(from rev 88847, fcitx/trunk/PKGBUILD)
  fcitx/repos/community-i686/fcitx-gtk2.install
(from rev 88847, fcitx/trunk/fcitx-gtk2.install)
  fcitx/repos/community-i686/fcitx-gtk3.install
(from rev 88847, fcitx/trunk/fcitx-gtk3.install)
  fcitx/repos/community-i686/fcitx.install
(from rev 88847, fcitx/trunk/fcitx.install)
  fcitx/repos/community-x86_64/PKGBUILD
(from rev 88847, fcitx/trunk/PKGBUILD)
  fcitx/repos/community-x86_64/fcitx-gtk2.install
(from rev 88847, fcitx/trunk/fcitx-gtk2.install)
  fcitx/repos/community-x86_64/fcitx-gtk3.install
(from rev 88847, fcitx/trunk/fcitx-gtk3.install)
  fcitx/repos/community-x86_64/fcitx.install
(from rev 88847, fcitx/trunk/fcitx.install)
Deleted:
  fcitx/repos/community-i686/PKGBUILD
  fcitx/repos/community-i686/fcitx-gtk2.install
  fcitx/repos/community-i686/fcitx-gtk3.install
  fcitx/repos/community-i686/fcitx.install
  fcitx/repos/community-x86_64/PKGBUILD
  fcitx/repos/community-x86_64/fcitx-gtk2.install
  fcitx/repos/community-x86_64/fcitx-gtk3.install
  fcitx/repos/community-x86_64/fcitx.install

-+
 /PKGBUILD   |  270 ++
 /fcitx-gtk2.install |   26 +++
 /fcitx-gtk3.install |   22 ++
 /fcitx.install  |   28 +++
 community-i686/PKGBUILD |  133 
 community-i686/fcitx-gtk2.install   |   13 -
 community-i686/fcitx-gtk3.install   |   11 -
 community-i686/fcitx.install|   14 -
 community-x86_64/PKGBUILD   |  133 
 community-x86_64/fcitx-gtk2.install |   13 -
 community-x86_64/fcitx-gtk3.install |   11 -
 community-x86_64/fcitx.install  |   14 -
 12 files changed, 346 insertions(+), 342 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-04-24 06:23:46 UTC (rev 88847)
+++ community-i686/PKGBUILD 2013-04-24 06:26:30 UTC (rev 88848)
@@ -1,133 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: csslayer wengxt AT gmail com
-
-pkgbase=fcitx
-pkgname=('fcitx' 'fcitx-gtk2' 'fcitx-gtk3' 'fcitx-qt4')
-pkgver=4.2.7
-pkgrel=7
-groups=('fcitx-im')
-arch=('i686' 'x86_64')
-url=http://code.google.com/p/fcitx/;
-license=('GPL')
-makedepends=('cmake' 'doxygen' 'gtk2' 'gtk3' 'qt4' 'icu' 'mesa' \
- 'iso-codes' 'gobject-introspection' 'libxkbfile' 'git')
-source=(http://fcitx.googlecode.com/files/${pkgbase}-${pkgver}_dict.tar.xz
-   
https://github.com/fcitx/fcitx/commit/9937b68bad3a7e9465e17b711ce9c0a072d3071f.patch
-   
https://github.com/fcitx/fcitx/commit/10ff96ca1215187444951cdbebe9e0beacacdf5e.patch
-   
https://github.com/fcitx/fcitx/commit/dc36c1a88f863971f81a76b8d9ec0db23b0d9387.patch
-)
-
-build() {
-  #source /etc/profile.d/qt4.sh
-
-  export CFLAGS+= -Wall
-
-  cd $srcdir/$pkgbase-$pkgver
-  patch -Np1 -i $srcdir/9937b68bad3a7e9465e17b711ce9c0a072d3071f.patch
-  patch -Np1 -i $srcdir/10ff96ca1215187444951cdbebe9e0beacacdf5e.patch
-  git apply -v -p1 $srcdir/dc36c1a88f863971f81a76b8d9ec0db23b0d9387.patch
-
-  cd $srcdir
-  mkdir -p build
-  cd build
-
-  cmake ../${pkgbase}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DFORCE_OPENCC=ON \
--DFORCE_PRESAGE=ON \
--DFORCE_ENCHANT=ON \
--DENABLE_TEST=ON \
--DENABLE_GTK2_IM_MODULE=ON \
--DENABLE_GTK3_IM_MODULE=ON \
--DENABLE_QT_IM_MODULE=ON \
--DQT_QMAKE_EXECUTABLE=qmake-qt4
-  make
-}
-
-check() {
-  cd ${srcdir}/build
-  make test
-}
-
-package_fcitx() {
-  pkgdesc=Flexible Context-aware Input Tool with eXtension
-  depends=('pango' 'libxinerama' 'gtk-update-icon-cache' 'shared-mime-info' \
-   'hicolor-icon-theme' 'desktop-file-utils' 'libxkbfile' \
-   'libxfixes' 'dbus-core' 'icu' 'enchant')
-  optdepends=('opencc: optional engine to do chinese convert'
- 'fcitx-anthy: Hiragana text to Kana Kanji mixed text Japanese 
input method'
- 'fcitx-chewing: Intelligent Zhuyin input method library for 
traditional Chinese'
- 'fcitx-cloudpinyin: Standalone module for fcitx that uses pinyin 
API on the internet to provide additional input candidates'
- 'fcitx-configtool: GTK based config tool for Fcitx'
- 'fcitx-fbterm: Fbterm support for Fcitx'
- 'fcitx-googlepinyin: A fork from google pinyin on android for 
Fcitx'
- 'fcitx-gtk2: GTK2 IM Module for fcitx'
- 'fcitx-gtk3: GTK3 IM Module for fcitx'
- 'fcitx-hangul: Hangul (Korean) support for fcitx'
- 'fcitx-libpinyin: Fcitx Wrapper for libpinyin, Library to deal 

[arch-commits] Commit in clamav/trunk (PKGBUILD)

2013-04-24 Thread Gaetan Bisson
Date: Wednesday, April 24, 2013 @ 08:52:14
  Author: bisson
Revision: 183594

upstream update

Modified:
  clamav/trunk/PKGBUILD

--+
 PKGBUILD |   10 ++
 1 file changed, 6 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-24 06:16:13 UTC (rev 183593)
+++ PKGBUILD2013-04-24 06:52:14 UTC (rev 183594)
@@ -4,7 +4,7 @@
 # Maintainer: Gaetan Bisson bis...@archlinux.org
 
 pkgname=clamav
-pkgver=0.97.7
+pkgver=0.97.8
 pkgrel=1
 pkgdesc='Anti-virus toolkit for Unix'
 url='http://www.clamav.net/'
@@ -21,7 +21,7 @@
 'logrotate'
 'tmpfiles.d'
 'config.patch')
-sha1sums=('9b911c557e0b7b5079de86c65b5d83fa78fadfff'
+sha1sums=('078c0ac2b4e69d27eecd7544a8361abcd859e73c'
   'c9d508c1e5972f0f849d8694c1872455fa9e74de'
   'cb116cdab49a810381a515cbcfb6a6c148547f07'
   'df522b0488f3901e491f148c9300f6bae348c605'
@@ -32,11 +32,13 @@
 
 install=install
 
-build() {
+prepare() {
cd ${srcdir}/${pkgname}-${pkgver}
-
patch -p1 -i ../config.patch
+}
 
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
./configure \
--prefix=/usr \
--sysconfdir=/etc/clamav \



[arch-commits] Commit in clamav/repos (36 files)

2013-04-24 Thread Gaetan Bisson
Date: Wednesday, April 24, 2013 @ 08:52:38
  Author: bisson
Revision: 183595

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

Added:
  clamav/repos/extra-i686/PKGBUILD
(from rev 183594, clamav/trunk/PKGBUILD)
  clamav/repos/extra-i686/conf.d
(from rev 183594, clamav/trunk/conf.d)
  clamav/repos/extra-i686/config.patch
(from rev 183594, clamav/trunk/config.patch)
  clamav/repos/extra-i686/install
(from rev 183594, clamav/trunk/install)
  clamav/repos/extra-i686/logrotate
(from rev 183594, clamav/trunk/logrotate)
  clamav/repos/extra-i686/rc.d
(from rev 183594, clamav/trunk/rc.d)
  clamav/repos/extra-i686/service
(from rev 183594, clamav/trunk/service)
  clamav/repos/extra-i686/service.fresh
(from rev 183594, clamav/trunk/service.fresh)
  clamav/repos/extra-i686/tmpfiles.d
(from rev 183594, clamav/trunk/tmpfiles.d)
  clamav/repos/extra-x86_64/PKGBUILD
(from rev 183594, clamav/trunk/PKGBUILD)
  clamav/repos/extra-x86_64/conf.d
(from rev 183594, clamav/trunk/conf.d)
  clamav/repos/extra-x86_64/config.patch
(from rev 183594, clamav/trunk/config.patch)
  clamav/repos/extra-x86_64/install
(from rev 183594, clamav/trunk/install)
  clamav/repos/extra-x86_64/logrotate
(from rev 183594, clamav/trunk/logrotate)
  clamav/repos/extra-x86_64/rc.d
(from rev 183594, clamav/trunk/rc.d)
  clamav/repos/extra-x86_64/service
(from rev 183594, clamav/trunk/service)
  clamav/repos/extra-x86_64/service.fresh
(from rev 183594, clamav/trunk/service.fresh)
  clamav/repos/extra-x86_64/tmpfiles.d
(from rev 183594, clamav/trunk/tmpfiles.d)
Deleted:
  clamav/repos/extra-i686/PKGBUILD
  clamav/repos/extra-i686/conf.d
  clamav/repos/extra-i686/config.patch
  clamav/repos/extra-i686/install
  clamav/repos/extra-i686/logrotate
  clamav/repos/extra-i686/rc.d
  clamav/repos/extra-i686/service
  clamav/repos/extra-i686/service.fresh
  clamav/repos/extra-i686/tmpfiles.d
  clamav/repos/extra-x86_64/PKGBUILD
  clamav/repos/extra-x86_64/conf.d
  clamav/repos/extra-x86_64/config.patch
  clamav/repos/extra-x86_64/install
  clamav/repos/extra-x86_64/logrotate
  clamav/repos/extra-x86_64/rc.d
  clamav/repos/extra-x86_64/service
  clamav/repos/extra-x86_64/service.fresh
  clamav/repos/extra-x86_64/tmpfiles.d

+
 /PKGBUILD  |  140 +++
 /conf.d|   16 
 /config.patch  |   60 ++
 /install   |   20 ++
 /logrotate |   16 
 /rc.d  |  132 
 /service   |   20 ++
 /service.fresh |   20 ++
 /tmpfiles.d|2 
 extra-i686/PKGBUILD|   68 
 extra-i686/conf.d  |8 --
 extra-i686/config.patch|   30 -
 extra-i686/install |   10 ---
 extra-i686/logrotate   |8 --
 extra-i686/rc.d|   66 
 extra-i686/service |   10 ---
 extra-i686/service.fresh   |   10 ---
 extra-i686/tmpfiles.d  |1 
 extra-x86_64/PKGBUILD  |   68 
 extra-x86_64/conf.d|8 --
 extra-x86_64/config.patch  |   30 -
 extra-x86_64/install   |   10 ---
 extra-x86_64/logrotate |8 --
 extra-x86_64/rc.d  |   66 
 extra-x86_64/service   |   10 ---
 extra-x86_64/service.fresh |   10 ---
 extra-x86_64/tmpfiles.d|1 
 27 files changed, 426 insertions(+), 422 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-04-24 06:52:14 UTC (rev 183594)
+++ extra-i686/PKGBUILD 2013-04-24 06:52:38 UTC (rev 183595)
@@ -1,68 +0,0 @@
-# $Id$
-# Contributor: Dale Blount d...@archlinux.org
-# Contributor: Gregor Ibic gregor.i...@intelicom.si
-# Maintainer: Gaetan Bisson bis...@archlinux.org
-
-pkgname=clamav
-pkgver=0.97.7
-pkgrel=1
-pkgdesc='Anti-virus toolkit for Unix'
-url='http://www.clamav.net/'
-license=('GPL')
-options=('!libtool')
-arch=('i686' 'x86_64')
-depends=('bzip2' 'libltdl')
-backup=('etc/clamav/clamd.conf' 'etc/clamav/freshclam.conf' 
'etc/conf.d/clamav')
-source=(http://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;
-'rc.d'
-'conf.d'
-'service'
-'service.fresh'
-'logrotate'
-'tmpfiles.d'
-'config.patch')
-sha1sums=('9b911c557e0b7b5079de86c65b5d83fa78fadfff'
-  'c9d508c1e5972f0f849d8694c1872455fa9e74de'
-  'cb116cdab49a810381a515cbcfb6a6c148547f07'
-  'df522b0488f3901e491f148c9300f6bae348c605'
-  'cda9a087e5593992150cb456e34c5f6f589aca82'
-  '7cace58743a36dae3e63e5e0c6cc73ea5ef9a6ee'
-  'a224ea9b4d0f4f196827347d54bed51e11c197ea'
-  '1c8ef193919b041135115170acd6313f008de808')
-
-install=install
-
-build() {
-

[arch-commits] Commit in mongodb/trunk (PKGBUILD)

2013-04-24 Thread Felix Yan
Date: Wednesday, April 24, 2013 @ 11:37:50
  Author: fyan
Revision: 88849

upgpkg: mongodb 2.4.3-1

Modified:
  mongodb/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-24 06:26:30 UTC (rev 88848)
+++ PKGBUILD2013-04-24 09:37:50 UTC (rev 88849)
@@ -6,7 +6,7 @@
 # Contributor: Alec Thomas
 
 pkgname=mongodb
-pkgver=2.4.2
+pkgver=2.4.3
 pkgrel=1
 pkgdesc='A high-performance, open source, schema-free document-oriented 
database'
 arch=('i686' 'x86_64')
@@ -64,7 +64,7 @@
   mv ${pkgdir}/usr/lib64/libmongoclient.a ${pkgdir}/usr/lib/ || true
   rm -r ${pkgdir}/usr/lib64 || true
 }
-md5sums=('8c65fa1d678763dbc855b0129d1eea96'
+md5sums=('ff6a9c90bdaca66a7e997ba8490fc222'
  '4839fe1d638187ca3226e8267b947318'
  '96ab4517b48974ce0e566d9746a75a4f'
  'a9529e2a6e392ffecef7a9178394c814'



[arch-commits] Commit in mongodb/repos (24 files)

2013-04-24 Thread Felix Yan
Date: Wednesday, April 24, 2013 @ 12:16:56
  Author: fyan
Revision: 88850

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

Added:
  mongodb/repos/community-i686/PKGBUILD
(from rev 88849, mongodb/trunk/PKGBUILD)
  mongodb/repos/community-i686/SConscript.client.patch
(from rev 88849, mongodb/trunk/SConscript.client.patch)
  mongodb/repos/community-i686/mongodb.conf
(from rev 88849, mongodb/trunk/mongodb.conf)
  mongodb/repos/community-i686/mongodb.install
(from rev 88849, mongodb/trunk/mongodb.install)
  mongodb/repos/community-i686/mongodb.service
(from rev 88849, mongodb/trunk/mongodb.service)
  mongodb/repos/community-i686/removeWerror.patch
(from rev 88849, mongodb/trunk/removeWerror.patch)
  mongodb/repos/community-x86_64/PKGBUILD
(from rev 88849, mongodb/trunk/PKGBUILD)
  mongodb/repos/community-x86_64/SConscript.client.patch
(from rev 88849, mongodb/trunk/SConscript.client.patch)
  mongodb/repos/community-x86_64/mongodb.conf
(from rev 88849, mongodb/trunk/mongodb.conf)
  mongodb/repos/community-x86_64/mongodb.install
(from rev 88849, mongodb/trunk/mongodb.install)
  mongodb/repos/community-x86_64/mongodb.service
(from rev 88849, mongodb/trunk/mongodb.service)
  mongodb/repos/community-x86_64/removeWerror.patch
(from rev 88849, mongodb/trunk/removeWerror.patch)
Deleted:
  mongodb/repos/community-i686/PKGBUILD
  mongodb/repos/community-i686/SConscript.client.patch
  mongodb/repos/community-i686/mongodb.conf
  mongodb/repos/community-i686/mongodb.install
  mongodb/repos/community-i686/mongodb.service
  mongodb/repos/community-i686/removeWerror.patch
  mongodb/repos/community-x86_64/PKGBUILD
  mongodb/repos/community-x86_64/SConscript.client.patch
  mongodb/repos/community-x86_64/mongodb.conf
  mongodb/repos/community-x86_64/mongodb.install
  mongodb/repos/community-x86_64/mongodb.service
  mongodb/repos/community-x86_64/removeWerror.patch

--+
 /PKGBUILD|  142 +
 /SConscript.client.patch |   26 +
 /mongodb.conf|   16 +++
 /mongodb.install |   64 +
 /mongodb.service |   20 
 /removeWerror.patch  |   42 
 community-i686/PKGBUILD  |   71 --
 community-i686/SConscript.client.patch   |   13 --
 community-i686/mongodb.conf  |8 -
 community-i686/mongodb.install   |   32 --
 community-i686/mongodb.service   |   10 --
 community-i686/removeWerror.patch|   21 
 community-x86_64/PKGBUILD|   71 --
 community-x86_64/SConscript.client.patch |   13 --
 community-x86_64/mongodb.conf|8 -
 community-x86_64/mongodb.install |   32 --
 community-x86_64/mongodb.service |   10 --
 community-x86_64/removeWerror.patch  |   21 
 18 files changed, 310 insertions(+), 310 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-04-24 09:37:50 UTC (rev 88849)
+++ community-i686/PKGBUILD 2013-04-24 10:16:56 UTC (rev 88850)
@@ -1,71 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
-# Contributor: Sven-Hendrik Haase s...@lutzhaase.com
-# Contributor: Thomas Dziedzic  gostrc at gmail 
-# Contributor: Mathias Stearn math...@10gen.com
-# Contributor: Alec Thomas
-
-pkgname=mongodb
-pkgver=2.4.2
-pkgrel=1
-pkgdesc='A high-performance, open source, schema-free document-oriented 
database'
-arch=('i686' 'x86_64')
-url='http://www.mongodb.org'
-license=('AGPL3')
-depends=('boost-libs')
-makedepends=('scons' 'boost' 'libpcap')
-checkdepends=('python2-pymongo')
-optdepends=('libpcap: needed for mongosniff')
-backup=('etc/mongodb.conf')
-install=mongodb.install
-source=(http://downloads.mongodb.org/src/mongodb-src-r${pkgver}.tar.gz;
-'mongodb.conf' 'mongodb.service' 'SConscript.client.patch'
-'removeWerror.patch')
-
-build() {
-  # fucking mongo aint no fun to package
-  export SCONSFLAGS=$MAKEFLAGS
-
-  cd mongodb-src-r${pkgver}
-
-  # fix https://jira.mongodb.org/browse/SERVER-5575
-  patch -Np1 -i ${srcdir}/SConscript.client.patch
-
-  # failed to build with -Werror since 2.4.0
-  patch -Np1 -i $srcdir/removeWerror.patch
-
-  scons all --use-system-boost # --sharedclient currently fails
-}
-
-COMMENT
-check() {
-  export SCONSFLAGS=$MAKEFLAGS
-
-  cd mongodb-src-r${pkgver}
-
-  scons smokeAll --smokedbprefix=$srcdir
-}
-COMMENT
-
-package() {
-  export SCONSFLAGS=$MAKEFLAGS
-
-  cd mongodb-src-r${pkgver}
-
-  scons install --use-system-boost --full --prefix=$pkgdir/usr # 
--sharedclient currently fails
-
-  install -Dm644 $srcdir/mongodb.conf $pkgdir/etc/mongodb.conf
-  [[ -f $pkgdir/usr/lib ]]  rm $pkgdir/usr/lib # wtf mongo
-  install -Dm644 $srcdir/mongodb.service 

[arch-commits] Commit in haskell-syb/trunk (PKGBUILD)

2013-04-24 Thread Jelle van der Waa
Date: Wednesday, April 24, 2013 @ 13:06:23
  Author: jelle
Revision: 88851

upgpkg: haskell-syb 0.4.0-2

ghc 7.6.3 rebuild

Modified:
  haskell-syb/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-24 10:16:56 UTC (rev 88850)
+++ PKGBUILD2013-04-24 11:06:23 UTC (rev 88851)
@@ -3,12 +3,12 @@
 _hkgname=syb
 pkgname=haskell-syb
 pkgver=0.4.0
-pkgrel=1
+pkgrel=2
 pkgdesc=A library for client-side HTTP
 url=http://hackage.haskell.org/package/${_hkgname};
 license=('custom:BSD3')
 arch=('i686' 'x86_64')
-depends=('ghc=7.6.2-1' sh)
+depends=('ghc=7.6.3-1' sh)
 options=('strip')
 
source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
 install=${pkgname}.install



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

2013-04-24 Thread Jelle van der Waa
Date: Wednesday, April 24, 2013 @ 13:07:16
  Author: jelle
Revision: 88852

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

Added:
  haskell-syb/repos/community-staging-i686/
  haskell-syb/repos/community-staging-i686/PKGBUILD
(from rev 88851, haskell-syb/trunk/PKGBUILD)
  haskell-syb/repos/community-staging-i686/haskell-syb.install
(from rev 88851, haskell-syb/trunk/haskell-syb.install)
  haskell-syb/repos/community-staging-x86_64/
  haskell-syb/repos/community-staging-x86_64/PKGBUILD
(from rev 88851, haskell-syb/trunk/PKGBUILD)
  haskell-syb/repos/community-staging-x86_64/haskell-syb.install
(from rev 88851, haskell-syb/trunk/haskell-syb.install)

--+
 community-staging-i686/PKGBUILD  |   37 +
 community-staging-i686/haskell-syb.install   |   18 
 community-staging-x86_64/PKGBUILD|   37 +
 community-staging-x86_64/haskell-syb.install |   18 
 4 files changed, 110 insertions(+)

Copied: haskell-syb/repos/community-staging-i686/PKGBUILD (from rev 88851, 
haskell-syb/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-04-24 11:07:16 UTC (rev 88852)
@@ -0,0 +1,37 @@
+# Maintainer: Rémy Oudompheng r...@archlinux.org
+# Contributor: Arch Haskell Team arch-hask...@haskell.org
+_hkgname=syb
+pkgname=haskell-syb
+pkgver=0.4.0
+pkgrel=2
+pkgdesc=A library for client-side HTTP
+url=http://hackage.haskell.org/package/${_hkgname};
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('ghc=7.6.3-1' sh)
+options=('strip')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+install=${pkgname}.install
+md5sums=('ec2719d444a6561b2424dcef10b4fe34')
+
+build() {
+cd ${srcdir}/${_hkgname}-${pkgver}
+runhaskell Setup configure -O -p --enable-split-objs --enable-shared 
--prefix=/usr --docdir=/usr/share/doc/${pkgname}
+runhaskell Setup build
+runhaskell Setup haddock
+runhaskell Setup register   --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+
+package() {
+cd ${srcdir}/${_hkgname}-${pkgver}
+install -D -m744 register.sh   
${pkgdir}/usr/share/haskell/${pkgname}/register.sh
+install-m744 unregister.sh 
${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
+install -d -m755 ${pkgdir}/usr/share/doc/ghc/html/libraries
+ln -s /usr/share/doc/${pkgname}/html 
${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}
+runhaskell Setup copy --destdir=${pkgdir}
+install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+rm -f ${pkgdir}/usr/share/doc/${pkgname}/LICENSE
+}
+

Copied: haskell-syb/repos/community-staging-i686/haskell-syb.install (from rev 
88851, haskell-syb/trunk/haskell-syb.install)
===
--- community-staging-i686/haskell-syb.install  (rev 0)
+++ community-staging-i686/haskell-syb.install  2013-04-24 11:07:16 UTC (rev 
88852)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-syb
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-syb/repos/community-staging-x86_64/PKGBUILD (from rev 88851, 
haskell-syb/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2013-04-24 11:07:16 UTC (rev 88852)
@@ -0,0 +1,37 @@
+# Maintainer: Rémy Oudompheng r...@archlinux.org
+# Contributor: Arch Haskell Team arch-hask...@haskell.org
+_hkgname=syb
+pkgname=haskell-syb
+pkgver=0.4.0
+pkgrel=2
+pkgdesc=A library for client-side HTTP
+url=http://hackage.haskell.org/package/${_hkgname};
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('ghc=7.6.3-1' sh)
+options=('strip')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+install=${pkgname}.install
+md5sums=('ec2719d444a6561b2424dcef10b4fe34')
+
+build() {
+cd ${srcdir}/${_hkgname}-${pkgver}
+runhaskell Setup configure -O -p --enable-split-objs --enable-shared 
--prefix=/usr --docdir=/usr/share/doc/${pkgname}
+runhaskell Setup build
+runhaskell Setup haddock
+runhaskell Setup register   --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e s|ghc-pkg.*unregister[^ ]* 

[arch-commits] Commit in haskell-utf8-string/trunk (PKGBUILD)

2013-04-24 Thread Jelle van der Waa
Date: Wednesday, April 24, 2013 @ 13:23:38
  Author: jelle
Revision: 88853

upgpkg: haskell-utf8-string 0.3.7-5

ghc 7.6.3 rebuild

Modified:
  haskell-utf8-string/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-24 11:07:16 UTC (rev 88852)
+++ PKGBUILD2013-04-24 11:23:38 UTC (rev 88853)
@@ -5,12 +5,12 @@
 _hkgname=utf8-string
 pkgname=haskell-utf8-string
 pkgver=0.3.7
-pkgrel=4
+pkgrel=5
 pkgdesc=Support for reading and writing UTF8 Strings
 url=http://hackage.haskell.org/package/${_hkgname};
 license=('custom:BSD3')
 arch=('i686' 'x86_64')
-depends=('ghc=7.6.2-1' 'sh')
+depends=('ghc=7.6.3-1' 'sh')
 install=${pkgname}.install
 
source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
 md5sums=('50e5c395713e716e0e4a56da73f87ccd')



[arch-commits] Commit in haskell-utf8-string/repos (6 files)

2013-04-24 Thread Jelle van der Waa
Date: Wednesday, April 24, 2013 @ 13:24:29
  Author: jelle
Revision: 88854

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

Added:
  haskell-utf8-string/repos/community-staging-i686/
  haskell-utf8-string/repos/community-staging-i686/PKGBUILD
(from rev 88853, haskell-utf8-string/trunk/PKGBUILD)
  haskell-utf8-string/repos/community-staging-i686/haskell-utf8-string.install
(from rev 88853, haskell-utf8-string/trunk/haskell-utf8-string.install)
  haskell-utf8-string/repos/community-staging-x86_64/
  haskell-utf8-string/repos/community-staging-x86_64/PKGBUILD
(from rev 88853, haskell-utf8-string/trunk/PKGBUILD)
  haskell-utf8-string/repos/community-staging-x86_64/haskell-utf8-string.install
(from rev 88853, haskell-utf8-string/trunk/haskell-utf8-string.install)

--+
 community-staging-i686/PKGBUILD  |   39 +
 community-staging-i686/haskell-utf8-string.install   |   18 +++
 community-staging-x86_64/PKGBUILD|   39 +
 community-staging-x86_64/haskell-utf8-string.install |   18 +++
 4 files changed, 114 insertions(+)

Copied: haskell-utf8-string/repos/community-staging-i686/PKGBUILD (from rev 
88853, haskell-utf8-string/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-04-24 11:24:29 UTC (rev 88854)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Vesa Kaihlavirta ve...@iki.fi
+# Contributor: Arch Haskell Team arch-hask...@haskell.org
+# Package generated by cabal2arch 0.7.6
+_hkgname=utf8-string
+pkgname=haskell-utf8-string
+pkgver=0.3.7
+pkgrel=5
+pkgdesc=Support for reading and writing UTF8 Strings
+url=http://hackage.haskell.org/package/${_hkgname};
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('ghc=7.6.3-1' 'sh')
+install=${pkgname}.install
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+md5sums=('50e5c395713e716e0e4a56da73f87ccd')
+
+build() {
+cd ${srcdir}/${_hkgname}-${pkgver}
+runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
+  --prefix=/usr --docdir=/usr/share/doc/${pkgname} \
+  --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock
+runhaskell Setup register   --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+
+package() {
+cd ${srcdir}/${_hkgname}-${pkgver}
+install -D -m744 register.sh   
${pkgdir}/usr/share/haskell/${pkgname}/register.sh
+install-m744 unregister.sh 
${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
+install -d -m755 ${pkgdir}/usr/share/doc/ghc/html/libraries
+ln -s /usr/share/doc/${pkgname}/html 
${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}
+runhaskell Setup copy --destdir=${pkgdir}
+install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+rm -f ${pkgdir}/usr/share/doc/${pkgname}/LICENSE
+}

Copied: 
haskell-utf8-string/repos/community-staging-i686/haskell-utf8-string.install 
(from rev 88853, haskell-utf8-string/trunk/haskell-utf8-string.install)
===
--- community-staging-i686/haskell-utf8-string.install  
(rev 0)
+++ community-staging-i686/haskell-utf8-string.install  2013-04-24 11:24:29 UTC 
(rev 88854)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-utf8-string
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-utf8-string/repos/community-staging-x86_64/PKGBUILD (from rev 
88853, haskell-utf8-string/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2013-04-24 11:24:29 UTC (rev 88854)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Vesa Kaihlavirta ve...@iki.fi
+# Contributor: Arch Haskell Team arch-hask...@haskell.org
+# Package generated by cabal2arch 0.7.6
+_hkgname=utf8-string
+pkgname=haskell-utf8-string
+pkgver=0.3.7
+pkgrel=5
+pkgdesc=Support for reading and writing UTF8 Strings
+url=http://hackage.haskell.org/package/${_hkgname};
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('ghc=7.6.3-1' 'sh')
+install=${pkgname}.install
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)

[arch-commits] Commit in haskell-extensible-exceptions/trunk (PKGBUILD)

2013-04-24 Thread Jelle van der Waa
Date: Wednesday, April 24, 2013 @ 13:35:17
  Author: jelle
Revision: 88855

upgpkg: haskell-extensible-exceptions 0.1.1.4-5

ghc 7.6.3 rebuild

Modified:
  haskell-extensible-exceptions/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-24 11:24:29 UTC (rev 88854)
+++ PKGBUILD2013-04-24 11:35:17 UTC (rev 88855)
@@ -4,12 +4,12 @@
 _hkgname=extensible-exceptions
 pkgname=haskell-${_hkgname}
 pkgver=0.1.1.4
-pkgrel=4
+pkgrel=5
 pkgdesc=extensible exceptions for both new and old versions of GHC
 url=http://hackage.haskell.org/package/extensible-exceptions;
 license=('custom:BSD3')
 arch=('i686' 'x86_64')
-depends=('ghc=7.6.2-1' sh)
+depends=('ghc=7.6.3-1' sh)
 
source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
 install=$pkgname.install
 md5sums=('fa1cadd15c1c7aa362618d41c6e17d8b')



[arch-commits] Commit in haskell-extensible-exceptions/repos (6 files)

2013-04-24 Thread Jelle van der Waa
Date: Wednesday, April 24, 2013 @ 13:36:09
  Author: jelle
Revision: 88856

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

Added:
  haskell-extensible-exceptions/repos/community-staging-i686/
  haskell-extensible-exceptions/repos/community-staging-i686/PKGBUILD
(from rev 88855, haskell-extensible-exceptions/trunk/PKGBUILD)
  
haskell-extensible-exceptions/repos/community-staging-i686/haskell-extensible-exceptions.install
(from rev 88855, 
haskell-extensible-exceptions/trunk/haskell-extensible-exceptions.install)
  haskell-extensible-exceptions/repos/community-staging-x86_64/
  haskell-extensible-exceptions/repos/community-staging-x86_64/PKGBUILD
(from rev 88855, haskell-extensible-exceptions/trunk/PKGBUILD)
  
haskell-extensible-exceptions/repos/community-staging-x86_64/haskell-extensible-exceptions.install
(from rev 88855, 
haskell-extensible-exceptions/trunk/haskell-extensible-exceptions.install)

+
 community-staging-i686/PKGBUILD|   39 
++
 community-staging-i686/haskell-extensible-exceptions.install   |   19 
 community-staging-x86_64/PKGBUILD  |   39 
++
 community-staging-x86_64/haskell-extensible-exceptions.install |   19 
 4 files changed, 116 insertions(+)

Copied: haskell-extensible-exceptions/repos/community-staging-i686/PKGBUILD 
(from rev 88855, haskell-extensible-exceptions/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-04-24 11:36:09 UTC (rev 88856)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Jelle van der Waa je...@vdwaa.nl
+
+_hkgname=extensible-exceptions
+pkgname=haskell-${_hkgname}
+pkgver=0.1.1.4
+pkgrel=5
+pkgdesc=extensible exceptions for both new and old versions of GHC
+url=http://hackage.haskell.org/package/extensible-exceptions;
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('ghc=7.6.3-1' sh)
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+install=$pkgname.install
+md5sums=('fa1cadd15c1c7aa362618d41c6e17d8b')
+
+build() {
+cd ${srcdir}/${_hkgname}-${pkgver}
+
+runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
+  --prefix=/usr --docdir=/usr/share/doc/${pkgname} \
+  --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock
+runhaskell Setup register   --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+
+package() {
+cd ${srcdir}/${_hkgname}-${pkgver}
+install -D -m744 register.sh   
${pkgdir}/usr/share/haskell/${pkgname}/register.sh
+install-m744 unregister.sh 
${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
+install -d -m755 ${pkgdir}/usr/share/doc/ghc/html/libraries
+ln -s /usr/share/doc/${pkgname}/html 
${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}
+runhaskell Setup copy --destdir=${pkgdir}
+install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+rm -f ${pkgdir}/usr/share/doc/${pkgname}/LICENSE
+}

Copied: 
haskell-extensible-exceptions/repos/community-staging-i686/haskell-extensible-exceptions.install
 (from rev 88855, 
haskell-extensible-exceptions/trunk/haskell-extensible-exceptions.install)
===
--- community-staging-i686/haskell-extensible-exceptions.install
(rev 0)
+++ community-staging-i686/haskell-extensible-exceptions.install
2013-04-24 11:36:09 UTC (rev 88856)
@@ -0,0 +1,19 @@
+HS_DIR=usr/share/haskell/haskell-extensible-exceptions
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+

Copied: haskell-extensible-exceptions/repos/community-staging-x86_64/PKGBUILD 
(from rev 88855, haskell-extensible-exceptions/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2013-04-24 11:36:09 UTC (rev 88856)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Jelle van der Waa je...@vdwaa.nl
+
+_hkgname=extensible-exceptions
+pkgname=haskell-${_hkgname}
+pkgver=0.1.1.4
+pkgrel=5
+pkgdesc=extensible exceptions for both new and old versions of GHC
+url=http://hackage.haskell.org/package/extensible-exceptions;
+license=('custom:BSD3')
+arch=('i686' 'x86_64')

[arch-commits] Commit in gnome-settings-daemon-compat/trunk (6 files)

2013-04-24 Thread Balló György
Date: Wednesday, April 24, 2013 @ 14:54:55
  Author: bgyorgy
Revision: 88857

upgpkg: gnome-settings-daemon-compat 3.6.4-2

Add media keys helper for the Gnome Flashback session

Added:
  gnome-settings-daemon-compat/trunk/revert-input-sources.patch
  gnome-settings-daemon-compat/trunk/standalone-media-keys-helper.patch
  gnome-settings-daemon-compat/trunk/xinput.patch
Modified:
  gnome-settings-daemon-compat/trunk/PKGBUILD
  gnome-settings-daemon-compat/trunk/flashback-rename.patch
  gnome-settings-daemon-compat/trunk/standalone-background-helper.patch

+
 PKGBUILD   |   24 +
 flashback-rename.patch |   15 
 revert-input-sources.patch |  123 +++
 standalone-background-helper.patch |4 
 standalone-media-keys-helper.patch |  564 +++
 xinput.patch   |   36 ++
 6 files changed, 756 insertions(+), 10 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-24 11:36:09 UTC (rev 88856)
+++ PKGBUILD2013-04-24 12:54:55 UTC (rev 88857)
@@ -5,31 +5,38 @@
 pkgname=gnome-settings-daemon-compat
 _pkgname=gnome-settings-daemon
 pkgver=3.6.4
-pkgrel=1
+pkgrel=2
 pkgdesc=Compatibility package that provides background and mount helpers for 
the Gnome Flashback session
 arch=('i686' 'x86_64')
 license=('GPL')
-depends=('gnome-desktop')
+depends=('gnome-settings-daemon')
 makedepends=('docbook-xsl' 'ibus' 'intltool' 'libcanberra' 'libnotify' 
'libpulse' 'libwacom' 'nss' 'upower' 'xf86-input-wacom')
 url=https://live.gnome.org/GnomeFlashback;
 
source=(http://ftp.gnome.org/pub/gnome/sources/$_pkgname/${pkgver%.*}/$_pkgname-$pkgver.tar.xz
 standalone-background-helper.patch
+standalone-media-keys-helper.patch
 draw-background-unconditionally.patch
 sessionisactive-port.patch
+revert-input-sources.patch
+xinput.patch 
 flashback-rename.patch
 remove-libgsd-dependency.patch)
 sha256sums=('3db993f2dbabc0c9d06a309bb12c9a7104b9cdda414ac4b1c301f5114a441c15'
-'4c2206b9654bd2b2729297870696c87906e2386b492bae1052b94148e5ea370f'
+'f9781a17d7baa2777b16fa2c71fb6053612131cffcfffcc635d49f9dacb1e637'
+'4776de33b1517976b308a9ce23661cd0ac68ddd2bcf41465c73f8a2e2d09d20c'
 '1b6b8216434b766e1389e876cba5d6ab61498c5824f6d2cc5d67dcf58a07842a'
 '0821f469cd168f3a131da513a5f9dd352c06f9bc31d57d79de4dc063fa2de915'
-'57c66068f06599ea682325e9f5b92b751d8f0a4322b53371698f8539f709b101'
+'02da2467e287620c3b717c7ff5ffea7403cce714d5aa32e27d051b6571451e2a'
+'fe8cafee074e36a7a393c9ae7f65db1c13a0959213aaae94ab8a3543bf20a25d'
+'1edabf1a5a56d4b797ccdb7d5003bad396eebe98541d5aa330c9851340b68dfe'
 '730f11d5689892fbab9aa2896f3720e813d17e2455f34fd3a0751e49f5b4c26c')
 
 build() {
   cd $_pkgname-$pkgver
 
-  # Build background helper as a stand alone binary
+  # Build background and media keys helpers as a stand alone binary
   patch -Np1 -i ../standalone-background-helper.patch
+  patch -Np1 -i ../standalone-media-keys-helper.patch
 
   # Always draw background
   patch -Np1 -i ../draw-background-unconditionally.patch
@@ -37,6 +44,10 @@
   # Port to gnome-session's SessionIsActive property
   patch -Np1 -i ../sessionisactive-port.patch
 
+  # Add compatibility patches for media keys plugin
+  patch -Np1 -i ../revert-input-sources.patch
+  patch -Np1 -i ../xinput.patch
+
   # Remove libgsd dependency
   patch -Np1 -i ../remove-libgsd-dependency.patch
 
@@ -50,12 +61,15 @@
   # https://bugzilla.gnome.org/show_bug.cgi?id=656231
   sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
 
+  make -C plugins/common
   make -C plugins/automount
   make -C plugins/background
+  make -C plugins/media-keys
 }
 
 package() {
   cd $_pkgname-$pkgver
   make -C plugins/automount DESTDIR=$pkgdir install
   make -C plugins/background DESTDIR=$pkgdir install
+  make -C plugins/media-keys DESTDIR=$pkgdir install
 }

Modified: flashback-rename.patch
===
--- flashback-rename.patch  2013-04-24 11:36:09 UTC (rev 88856)
+++ flashback-rename.patch  2013-04-24 12:54:55 UTC (rev 88857)
@@ -1,6 +1,6 @@
 diff -Naur 
gnome-settings-daemon-3.6.4.orig/plugins/automount/gnome-fallback-mount-helper.desktop.in.in
 
gnome-settings-daemon-3.6.4/plugins/automount/gnome-fallback-mount-helper.desktop.in.in
 --- 
gnome-settings-daemon-3.6.4.orig/plugins/automount/gnome-fallback-mount-helper.desktop.in.in
   2013-01-10 14:37:58.0 +0100
-+++ 
gnome-settings-daemon-3.6.4/plugins/automount/gnome-fallback-mount-helper.desktop.in.in
2013-04-10 16:58:35.356800871 +0200
 
gnome-settings-daemon-3.6.4/plugins/automount/gnome-fallback-mount-helper.desktop.in.in
2013-04-24 14:34:43.743878119 +0200
 @@ -9,4 +9,4 @@
  NoDisplay=true
  

[arch-commits] Commit in gnome-settings-daemon-compat/repos (30 files)

2013-04-24 Thread Balló György
Date: Wednesday, April 24, 2013 @ 14:55:15
  Author: bgyorgy
Revision: 88858

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

Added:
  gnome-settings-daemon-compat/repos/community-i686/PKGBUILD
(from rev 88857, gnome-settings-daemon-compat/trunk/PKGBUILD)
  
gnome-settings-daemon-compat/repos/community-i686/draw-background-unconditionally.patch
(from rev 88857, 
gnome-settings-daemon-compat/trunk/draw-background-unconditionally.patch)
  gnome-settings-daemon-compat/repos/community-i686/flashback-rename.patch
(from rev 88857, gnome-settings-daemon-compat/trunk/flashback-rename.patch)
  
gnome-settings-daemon-compat/repos/community-i686/remove-libgsd-dependency.patch
(from rev 88857, 
gnome-settings-daemon-compat/trunk/remove-libgsd-dependency.patch)
  gnome-settings-daemon-compat/repos/community-i686/revert-input-sources.patch
(from rev 88857, 
gnome-settings-daemon-compat/trunk/revert-input-sources.patch)
  gnome-settings-daemon-compat/repos/community-i686/sessionisactive-port.patch
(from rev 88857, 
gnome-settings-daemon-compat/trunk/sessionisactive-port.patch)
  
gnome-settings-daemon-compat/repos/community-i686/standalone-background-helper.patch
(from rev 88857, 
gnome-settings-daemon-compat/trunk/standalone-background-helper.patch)
  
gnome-settings-daemon-compat/repos/community-i686/standalone-media-keys-helper.patch
(from rev 88857, 
gnome-settings-daemon-compat/trunk/standalone-media-keys-helper.patch)
  gnome-settings-daemon-compat/repos/community-i686/xinput.patch
(from rev 88857, gnome-settings-daemon-compat/trunk/xinput.patch)
  gnome-settings-daemon-compat/repos/community-x86_64/PKGBUILD
(from rev 88857, gnome-settings-daemon-compat/trunk/PKGBUILD)
  
gnome-settings-daemon-compat/repos/community-x86_64/draw-background-unconditionally.patch
(from rev 88857, 
gnome-settings-daemon-compat/trunk/draw-background-unconditionally.patch)
  gnome-settings-daemon-compat/repos/community-x86_64/flashback-rename.patch
(from rev 88857, gnome-settings-daemon-compat/trunk/flashback-rename.patch)
  
gnome-settings-daemon-compat/repos/community-x86_64/remove-libgsd-dependency.patch
(from rev 88857, 
gnome-settings-daemon-compat/trunk/remove-libgsd-dependency.patch)
  gnome-settings-daemon-compat/repos/community-x86_64/revert-input-sources.patch
(from rev 88857, 
gnome-settings-daemon-compat/trunk/revert-input-sources.patch)
  gnome-settings-daemon-compat/repos/community-x86_64/sessionisactive-port.patch
(from rev 88857, 
gnome-settings-daemon-compat/trunk/sessionisactive-port.patch)
  
gnome-settings-daemon-compat/repos/community-x86_64/standalone-background-helper.patch
(from rev 88857, 
gnome-settings-daemon-compat/trunk/standalone-background-helper.patch)
  
gnome-settings-daemon-compat/repos/community-x86_64/standalone-media-keys-helper.patch
(from rev 88857, 
gnome-settings-daemon-compat/trunk/standalone-media-keys-helper.patch)
  gnome-settings-daemon-compat/repos/community-x86_64/xinput.patch
(from rev 88857, gnome-settings-daemon-compat/trunk/xinput.patch)
Deleted:
  gnome-settings-daemon-compat/repos/community-i686/PKGBUILD
  
gnome-settings-daemon-compat/repos/community-i686/draw-background-unconditionally.patch
  gnome-settings-daemon-compat/repos/community-i686/flashback-rename.patch
  
gnome-settings-daemon-compat/repos/community-i686/remove-libgsd-dependency.patch
  gnome-settings-daemon-compat/repos/community-i686/sessionisactive-port.patch
  
gnome-settings-daemon-compat/repos/community-i686/standalone-background-helper.patch
  gnome-settings-daemon-compat/repos/community-x86_64/PKGBUILD
  
gnome-settings-daemon-compat/repos/community-x86_64/draw-background-unconditionally.patch
  gnome-settings-daemon-compat/repos/community-x86_64/flashback-rename.patch
  
gnome-settings-daemon-compat/repos/community-x86_64/remove-libgsd-dependency.patch
  gnome-settings-daemon-compat/repos/community-x86_64/sessionisactive-port.patch
  
gnome-settings-daemon-compat/repos/community-x86_64/standalone-background-helper.patch

+
 /PKGBUILD  |  150 ++
 /draw-background-unconditionally.patch |  324 +
 /flashback-rename.patch|   54 
 /remove-libgsd-dependency.patch|  320 +
 /sessionisactive-port.patch|  146 ++
 /standalone-background-helper.patch|  874 +++
 community-i686/PKGBUILD|   61 -
 community-i686/draw-background-unconditionally.patch   |  162 --
 community-i686/flashback-rename.patch  |   18 
 community-i686/remove-libgsd-dependency.patch  |  160 --
 community-i686/revert-input-sources.patch  |  123 ++
 community-i686/sessionisactive-port.patch  |   73 -
 community-i686/standalone-background-helper.patch  

[arch-commits] Commit in gmic/trunk (PKGBUILD)

2013-04-24 Thread Sergej Pupykin
Date: Wednesday, April 24, 2013 @ 15:39:44
  Author: spupykin
Revision: 88859

upgpkg: gmic 1.5.5.2-1

upd

Modified:
  gmic/trunk/PKGBUILD

--+
 PKGBUILD |6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-24 12:55:15 UTC (rev 88858)
+++ PKGBUILD2013-04-24 13:39:44 UTC (rev 88859)
@@ -6,8 +6,8 @@
 
 pkgbase=gmic
 pkgname=(gmic gimp-plugin-gmic zart)
-pkgver=1.5.5.1
-pkgrel=2
+pkgver=1.5.5.2
+pkgrel=1
 arch=(i686 x86_64)
 url=http://gmic.sourceforge.net;
 license=(custom:CeCILL)
@@ -25,6 +25,8 @@
   find ${srcdir}/gmic-${pkgver}/zart -type d -execdir chmod 755 '{}' \;
   sed -i 's|qmake zart.pro|qmake-qt4 zart.pro|' src/Makefile
 }
+md5sums=('7d3a8e5cf9e866dd8979dc7c759a21a6'
+ '120319b0d6c81c5af186abe2281b79ca')
 
 build() {
   cd ${srcdir}/gmic-${pkgver}



[arch-commits] Commit in gmic/repos (8 files)

2013-04-24 Thread Sergej Pupykin
Date: Wednesday, April 24, 2013 @ 15:40:06
  Author: spupykin
Revision: 88860

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

Added:
  gmic/repos/community-i686/PKGBUILD
(from rev 88859, gmic/trunk/PKGBUILD)
  gmic/repos/community-i686/opencv-buildfix.patch
(from rev 88859, gmic/trunk/opencv-buildfix.patch)
  gmic/repos/community-x86_64/PKGBUILD
(from rev 88859, gmic/trunk/PKGBUILD)
  gmic/repos/community-x86_64/opencv-buildfix.patch
(from rev 88859, gmic/trunk/opencv-buildfix.patch)
Deleted:
  gmic/repos/community-i686/PKGBUILD
  gmic/repos/community-i686/opencv-buildfix.patch
  gmic/repos/community-x86_64/PKGBUILD
  gmic/repos/community-x86_64/opencv-buildfix.patch

+
 /PKGBUILD  |  130 +++
 /opencv-buildfix.patch |   40 +
 community-i686/PKGBUILD|   63 ---
 community-i686/opencv-buildfix.patch   |   20 
 community-x86_64/PKGBUILD  |   63 ---
 community-x86_64/opencv-buildfix.patch |   20 
 6 files changed, 170 insertions(+), 166 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-04-24 13:39:44 UTC (rev 88859)
+++ community-i686/PKGBUILD 2013-04-24 13:40:06 UTC (rev 88860)
@@ -1,63 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: Jan heftig Steffens jan.steff...@gmail.com
-# Contributor: farid farid at archlinuc-br.org
-# Contributor: Archie mym...@gmail.com
-
-pkgbase=gmic
-pkgname=(gmic gimp-plugin-gmic zart)
-pkgver=1.5.5.1
-pkgrel=2
-arch=(i686 x86_64)
-url=http://gmic.sourceforge.net;
-license=(custom:CeCILL)
-makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
-#options=('!emptydirs')
-source=(http://downloads.sourceforge.net/sourceforge/gmic/gmic_${pkgver}.tar.gz;
-opencv-buildfix.patch)
-md5sums=('ec68076448166ea18d15c0a69489dd25'
- '120319b0d6c81c5af186abe2281b79ca')
-
-prepare() {
-  cd ${srcdir}/gmic-${pkgver}
-  patch -p1 -i ${srcdir}/opencv-buildfix.patch
-  find ${srcdir}/gmic-${pkgver}/zart -type f -execdir chmod 644 '{}' \;
-  find ${srcdir}/gmic-${pkgver}/zart -type d -execdir chmod 755 '{}' \;
-  sed -i 's|qmake zart.pro|qmake-qt4 zart.pro|' src/Makefile
-}
-
-build() {
-  cd ${srcdir}/gmic-${pkgver}
-  make -C src all
-}
-
-package_gmic() {
-  pkgdesc=GREYC's Magic Image Converter: image processing framework
-  depends=(fftw libtiff libjpeg libpng openexr libx11)
-  replaces=(greycstoration)
-
-  cd ${srcdir}/gmic-${pkgver}
-  make -C src install DESTDIR=$pkgdir USR=/usr
-  install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-  rm -rf ${pkgdir}/usr/{bin/zart,lib/gimp,share/zart}
-}
-
-package_zart() {
-  pkgdesc=A GUI for G'MIC real-time manipulations on the output of a webcam
-  depends=(opencv fftw qt4)
-
-  cd ${srcdir}/gmic-${pkgver}
-  make -C src install DESTDIR=$pkgdir USR=/usr
-  install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-  rm -rf ${pkgdir}/usr/{bin/gmic,include,lib,share/{man,bash-completion}}
-}
-
-package_gimp-plugin-gmic() {
-  pkgdesc=Gimp plugin for the G'MIC image processing framework
-  depends=(gimp fftw)
-  replaces=(gimp-plugin-greycstoration gimp-plugin-gmic4gimp)
-
-  cd ${srcdir}/gmic-${pkgver}
-  install -Dm755 src/gmic_gimp ${pkgdir}/usr/lib/gimp/2.0/plug-ins/gmic_gimp
-  install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: gmic/repos/community-i686/PKGBUILD (from rev 88859, gmic/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-04-24 13:40:06 UTC (rev 88860)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Jan heftig Steffens jan.steff...@gmail.com
+# Contributor: farid farid at archlinuc-br.org
+# Contributor: Archie mym...@gmail.com
+
+pkgbase=gmic
+pkgname=(gmic gimp-plugin-gmic zart)
+pkgver=1.5.5.2
+pkgrel=1
+arch=(i686 x86_64)
+url=http://gmic.sourceforge.net;
+license=(custom:CeCILL)
+makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
+#options=('!emptydirs')
+source=(http://downloads.sourceforge.net/sourceforge/gmic/gmic_${pkgver}.tar.gz;
+opencv-buildfix.patch)
+md5sums=('ec68076448166ea18d15c0a69489dd25'
+ '120319b0d6c81c5af186abe2281b79ca')
+
+prepare() {
+  cd ${srcdir}/gmic-${pkgver}
+  patch -p1 -i ${srcdir}/opencv-buildfix.patch
+  find ${srcdir}/gmic-${pkgver}/zart -type f -execdir chmod 644 '{}' \;
+  find ${srcdir}/gmic-${pkgver}/zart -type d -execdir chmod 755 '{}' \;
+  sed -i 's|qmake zart.pro|qmake-qt4 zart.pro|' src/Makefile
+}
+md5sums=('7d3a8e5cf9e866dd8979dc7c759a21a6'
+ '120319b0d6c81c5af186abe2281b79ca')
+
+build() {
+  cd ${srcdir}/gmic-${pkgver}
+  make -C 

[arch-commits] Commit in nmap/trunk (PKGBUILD)

2013-04-24 Thread Gaetan Bisson
Date: Wednesday, April 24, 2013 @ 15:55:00
  Author: bisson
Revision: 183596

implement FS#34923

Modified:
  nmap/trunk/PKGBUILD

--+
 PKGBUILD |4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-24 06:52:38 UTC (rev 183595)
+++ PKGBUILD2013-04-24 13:55:00 UTC (rev 183596)
@@ -18,7 +18,7 @@
 
 build() {
cd ${srcdir}/${pkgname}-${pkgver}
-
+   export PYTHON=python2
./configure \
--prefix=/usr \
--libexecdir=/usr/lib \
@@ -29,9 +29,7 @@
 
 package() {
cd ${srcdir}/${pkgname}-${pkgver}
-
make DESTDIR=${pkgdir} install
-
rm ${pkgdir}/usr/bin/uninstall_zenmap
install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
 }



[arch-commits] Commit in dia/trunk (PKGBUILD)

2013-04-24 Thread Sergej Pupykin
Date: Wednesday, April 24, 2013 @ 15:59:24
  Author: spupykin
Revision: 88861

upgpkg: dia 0.97.2-4

upd

Modified:
  dia/trunk/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-24 13:40:06 UTC (rev 88860)
+++ PKGBUILD2013-04-24 13:59:24 UTC (rev 88861)
@@ -6,7 +6,7 @@
 
 pkgname=dia
 pkgver=0.97.2
-pkgrel=3
+pkgrel=4
 pkgdesc=A GTK+ based diagram creation program
 arch=('i686' 'x86_64')
 license=('GPL')
@@ -17,9 +17,9 @@
 optdepends=('python2')
 options=('!libtool' 'docs' '!emptydirs')
 
source=(ftp://ftp.gnome.org/pub/gnome/sources/${pkgname}/0.97/${pkgname}-${pkgver}.tar.xz;
-   dia-overflow-fix.patch)
+   
dia-crash.patch::https://git.gnome.org/browse/dia/patch/?id=213bdfe956bf8fe57c86316f68a09408fef1647e;)
 md5sums=('1e1180a513fb567709b09bc19f12105e'
- '8fd9a2ad35b5a6fd8c758d7c73dbfe66')
+ '2ad4fcfbfb561930a1d0335cc942a07b')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
@@ -29,7 +29,7 @@
   sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' $file
   done
   sed -i 's#python2\.1#python2 python2.1#' configure
-#  patch -p1 $srcdir/dia-overflow-fix.patch
+  patch -p1 $srcdir/dia-crash.patch
 
   ./configure --prefix=/usr \
 --with-cairo \



[arch-commits] Commit in dia/repos (12 files)

2013-04-24 Thread Sergej Pupykin
Date: Wednesday, April 24, 2013 @ 15:59:45
  Author: spupykin
Revision: 88862

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

Added:
  dia/repos/community-i686/PKGBUILD
(from rev 88861, dia/trunk/PKGBUILD)
  dia/repos/community-i686/dia-overflow-fix.patch
(from rev 88861, dia/trunk/dia-overflow-fix.patch)
  dia/repos/community-i686/dia.install
(from rev 88861, dia/trunk/dia.install)
  dia/repos/community-x86_64/PKGBUILD
(from rev 88861, dia/trunk/PKGBUILD)
  dia/repos/community-x86_64/dia-overflow-fix.patch
(from rev 88861, dia/trunk/dia-overflow-fix.patch)
  dia/repos/community-x86_64/dia.install
(from rev 88861, dia/trunk/dia.install)
Deleted:
  dia/repos/community-i686/PKGBUILD
  dia/repos/community-i686/dia-overflow-fix.patch
  dia/repos/community-i686/dia.install
  dia/repos/community-x86_64/PKGBUILD
  dia/repos/community-x86_64/dia-overflow-fix.patch
  dia/repos/community-x86_64/dia.install

-+
 /PKGBUILD   |  102 ++
 /dia-overflow-fix.patch |   56 
 /dia.install|   26 +++
 community-i686/PKGBUILD |   51 ---
 community-i686/dia-overflow-fix.patch   |   28 
 community-i686/dia.install  |   13 ---
 community-x86_64/PKGBUILD   |   51 ---
 community-x86_64/dia-overflow-fix.patch |   28 
 community-x86_64/dia.install|   13 ---
 9 files changed, 184 insertions(+), 184 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-04-24 13:59:24 UTC (rev 88861)
+++ community-i686/PKGBUILD 2013-04-24 13:59:45 UTC (rev 88862)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Thorsten Töpper atsutane...@freethoughts.de
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Juergen Hoetzel juer...@archlinux.org
-# Contributor: Gregor Ibic gregor.i...@intelicom.si
-
-pkgname=dia
-pkgver=0.97.2
-pkgrel=3
-pkgdesc=A GTK+ based diagram creation program
-arch=('i686' 'x86_64')
-license=('GPL')
-url=http://live.gnome.org/Dia;
-install=dia.install
-depends=('libxslt' 'desktop-file-utils' 'libart-lgpl' 'gtk2' 
'hicolor-icon-theme')
-makedepends=('intltool' 'python2' 'docbook-xsl')
-optdepends=('python2')
-options=('!libtool' 'docs' '!emptydirs')
-source=(ftp://ftp.gnome.org/pub/gnome/sources/${pkgname}/0.97/${pkgname}-${pkgver}.tar.xz;
-   dia-overflow-fix.patch)
-md5sums=('1e1180a513fb567709b09bc19f12105e'
- '8fd9a2ad35b5a6fd8c758d7c73dbfe66')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  export PYTHON=/usr/bin/python2
-  for file in `find -type f -name '*.py'`; do
-  sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' $file
-  done
-  sed -i 's#python2\.1#python2 python2.1#' configure
-#  patch -p1 $srcdir/dia-overflow-fix.patch
-
-  ./configure --prefix=/usr \
---with-cairo \
---with-python \
---disable-gnome \
---with-hardbooks
-  sed -i 's#SUBDIRS = lib objects plug-ins shapes app bindings samples po 
sheets data doc tests installer#SUBDIRS = lib objects plug-ins shapes app 
bindings samples po sheets data tests installer#' Makefile
-  make
-  cd doc
-  make html
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-  cd doc
-  make DESTDIR=${pkgdir} install-html
-  ln -sf ../doc/dia/html ${pkgdir}/usr/share/dia/help
-}

Copied: dia/repos/community-i686/PKGBUILD (from rev 88861, dia/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-04-24 13:59:45 UTC (rev 88862)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Thorsten Töpper atsutane...@freethoughts.de
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Juergen Hoetzel juer...@archlinux.org
+# Contributor: Gregor Ibic gregor.i...@intelicom.si
+
+pkgname=dia
+pkgver=0.97.2
+pkgrel=4
+pkgdesc=A GTK+ based diagram creation program
+arch=('i686' 'x86_64')
+license=('GPL')
+url=http://live.gnome.org/Dia;
+install=dia.install
+depends=('libxslt' 'desktop-file-utils' 'libart-lgpl' 'gtk2' 
'hicolor-icon-theme')
+makedepends=('intltool' 'python2' 'docbook-xsl')
+optdepends=('python2')
+options=('!libtool' 'docs' '!emptydirs')
+source=(ftp://ftp.gnome.org/pub/gnome/sources/${pkgname}/0.97/${pkgname}-${pkgver}.tar.xz;
+   
dia-crash.patch::https://git.gnome.org/browse/dia/patch/?id=213bdfe956bf8fe57c86316f68a09408fef1647e;)
+md5sums=('1e1180a513fb567709b09bc19f12105e'
+ '2ad4fcfbfb561930a1d0335cc942a07b')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  export PYTHON=/usr/bin/python2
+  for file in `find -type f -name '*.py'`; do
+  sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' $file
+  done
+  sed -i 's#python2\.1#python2 

[arch-commits] Commit in haskell-dlist/trunk (PKGBUILD)

2013-04-24 Thread Jelle van der Waa
Date: Wednesday, April 24, 2013 @ 16:06:31
  Author: jelle
Revision: 88863

upgpkg: haskell-dlist 0.5-22

ghc 7.6.3 rebuild

Modified:
  haskell-dlist/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-24 13:59:45 UTC (rev 88862)
+++ PKGBUILD2013-04-24 14:06:31 UTC (rev 88863)
@@ -7,13 +7,13 @@
 pkgver=0.5
 _hkgname=dlist
 _licensefile=LICENSE
-pkgrel=21
+pkgrel=22
 pkgdesc=Differences lists
 url=http://code.haskell.org/~dons/code/dlist/;
 license=(BSD3)
 arch=('i686' 'x86_64')
-makedepends=('ghc')
-depends=('ghc')
+makedepends=('ghc=7.6.3-1')
+depends=('ghc=7.6.3-1')
 options=('strip')
 
source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
 sha256sums=('4780e5409eff55bbfdd7470ef802a087a04048c9cd5efe0482c82878292f19ea')



[arch-commits] Commit in haskell-dlist/repos (8 files)

2013-04-24 Thread Jelle van der Waa
Date: Wednesday, April 24, 2013 @ 16:07:36
  Author: jelle
Revision: 88864

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

Added:
  haskell-dlist/repos/community-i686/PKGBUILD
(from rev 88863, haskell-dlist/trunk/PKGBUILD)
  haskell-dlist/repos/community-i686/haskell-dlist.install
(from rev 88863, haskell-dlist/trunk/haskell-dlist.install)
  haskell-dlist/repos/community-x86_64/PKGBUILD
(from rev 88863, haskell-dlist/trunk/PKGBUILD)
  haskell-dlist/repos/community-x86_64/haskell-dlist.install
(from rev 88863, haskell-dlist/trunk/haskell-dlist.install)
Deleted:
  haskell-dlist/repos/community-i686/PKGBUILD
  haskell-dlist/repos/community-i686/haskell-dlist.install
  haskell-dlist/repos/community-x86_64/PKGBUILD
  haskell-dlist/repos/community-x86_64/haskell-dlist.install

+
 /PKGBUILD  |   88 +++
 /haskell-dlist.install |   52 ++
 community-i686/PKGBUILD|   42 --
 community-i686/haskell-dlist.install   |   26 -
 community-x86_64/PKGBUILD  |   42 --
 community-x86_64/haskell-dlist.install |   26 -
 6 files changed, 140 insertions(+), 136 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-04-24 14:06:31 UTC (rev 88863)
+++ community-i686/PKGBUILD 2013-04-24 14:07:36 UTC (rev 88864)
@@ -1,42 +0,0 @@
-# Contributor: Don Stewart d...@galois.com
-# Contributor: Lex Black autumn-wind at web dot de
-
-pkgname=haskell-dlist
-pkgver=0.5
-_hkgname=dlist
-_licensefile=LICENSE
-pkgrel=1
-pkgdesc=Differences lists
-url=http://code.haskell.org/~dons/code/dlist/;
-license=(BSD3)
-arch=('i686' 'x86_64')
-makedepends=('ghc')
-depends=('ghc')
-options=('strip')
-source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha256sums=('4780e5409eff55bbfdd7470ef802a087a04048c9cd5efe0482c82878292f19ea')
-install=${pkgname}.install
-
-build() {
-cd ${srcdir}/${_hkgname}-${pkgver}
-
-runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
---prefix=/usr --docdir=/usr/share/doc/${pkgname} \
---libsubdir=\$compiler/site-local/\$pkgid
-runhaskell Setup build
-runhaskell Setup haddock
-runhaskell Setup register --gen-script
-runhaskell Setup unregister --gen-script
-sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
-}
-
-package() {
-cd ${srcdir}/${_hkgname}-${pkgver}
-install -D -m744 register.sh   
${pkgdir}/usr/share/haskell/${pkgname}/register.sh
-install-m744 unregister.sh 
${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
-install -d -m755 ${pkgdir}/usr/share/doc/ghc/html/libraries
-ln -s /usr/share/doc/${pkgname}/html 
${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}
-runhaskell Setup copy --destdir=${pkgdir}
-install -D -m644 ${_licensefile} 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-rm -f ${pkgdir}/usr/share/doc/${pkgname}/${_licensefile}
-}

Copied: haskell-dlist/repos/community-i686/PKGBUILD (from rev 88863, 
haskell-dlist/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-04-24 14:07:36 UTC (rev 88864)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Daniel Wallace danielwallace at gtmanfred dot com
+# Contributor: Don Stewart d...@galois.com
+# Contributor: Lex Black autumn-wind at web dot de
+
+pkgname=haskell-dlist
+pkgver=0.5
+_hkgname=dlist
+_licensefile=LICENSE
+pkgrel=22
+pkgdesc=Differences lists
+url=http://code.haskell.org/~dons/code/dlist/;
+license=(BSD3)
+arch=('i686' 'x86_64')
+makedepends=('ghc=7.6.3-1')
+depends=('ghc=7.6.3-1')
+options=('strip')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('4780e5409eff55bbfdd7470ef802a087a04048c9cd5efe0482c82878292f19ea')
+install=${pkgname}.install
+
+build() {
+cd ${srcdir}/${_hkgname}-${pkgver}
+
+runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
+--prefix=/usr --docdir=/usr/share/doc/${pkgname} \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+
+package() {
+cd ${srcdir}/${_hkgname}-${pkgver}
+install -D -m744 register.sh   
${pkgdir}/usr/share/haskell/${pkgname}/register.sh
+install-m744 unregister.sh 
${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
+install -d -m755 ${pkgdir}/usr/share/doc/ghc/html/libraries
+ln -s /usr/share/doc/${pkgname}/html 

[arch-commits] Commit in darktable/trunk (PKGBUILD)

2013-04-24 Thread Sergej Pupykin
Date: Wednesday, April 24, 2013 @ 16:09:11
  Author: spupykin
Revision: 88865

upgpkg: darktable 1.2-3

upd

Modified:
  darktable/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-24 14:07:36 UTC (rev 88864)
+++ PKGBUILD2013-04-24 14:09:11 UTC (rev 88865)
@@ -6,14 +6,14 @@
 pkgname=darktable
 pkgver=1.2
 _pkgver=1.2
-pkgrel=2
+pkgrel=3
 pkgdesc=Utility to organize and develop raw images
 arch=('i686' 'x86_64')
 url=http://darktable.sf.net/
 license=('GPL3')
 depends=('exiv2=0.18' 'intltool=0.40' 'lcms2' 'lensfun=0.2.3' 'libglade' 
'dbus-glib'
 'curl' 'libgnome-keyring' 'libgphoto2' 'libusb-compat' 'openexr' 
'sqlite' 'libxslt'
-'libsoup')
+'libsoup' 'gtk-engines')
 makedepends=('intltool=0.40' 'cmake' 'librsvg')
 optdepends=('librsvg')
 install=darktable.install



[arch-commits] Commit in darktable/repos (8 files)

2013-04-24 Thread Sergej Pupykin
Date: Wednesday, April 24, 2013 @ 16:09:28
  Author: spupykin
Revision: 88866

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

Added:
  darktable/repos/community-i686/PKGBUILD
(from rev 88865, darktable/trunk/PKGBUILD)
  darktable/repos/community-i686/darktable.install
(from rev 88865, darktable/trunk/darktable.install)
  darktable/repos/community-x86_64/PKGBUILD
(from rev 88865, darktable/trunk/PKGBUILD)
  darktable/repos/community-x86_64/darktable.install
(from rev 88865, darktable/trunk/darktable.install)
Deleted:
  darktable/repos/community-i686/PKGBUILD
  darktable/repos/community-i686/darktable.install
  darktable/repos/community-x86_64/PKGBUILD
  darktable/repos/community-x86_64/darktable.install

+
 /PKGBUILD  |   88 +++
 /darktable.install |   22 
 community-i686/PKGBUILD|   44 -
 community-i686/darktable.install   |   11 
 community-x86_64/PKGBUILD  |   44 -
 community-x86_64/darktable.install |   11 
 6 files changed, 110 insertions(+), 110 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-04-24 14:09:11 UTC (rev 88865)
+++ community-i686/PKGBUILD 2013-04-24 14:09:28 UTC (rev 88866)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer:  Christian Himpel chressie at gmail dot com
-# Contributor: Johannes Hanika hanatos at gmail dot com
-
-pkgname=darktable
-pkgver=1.2
-_pkgver=1.2
-pkgrel=2
-pkgdesc=Utility to organize and develop raw images
-arch=('i686' 'x86_64')
-url=http://darktable.sf.net/
-license=('GPL3')
-depends=('exiv2=0.18' 'intltool=0.40' 'lcms2' 'lensfun=0.2.3' 'libglade' 
'dbus-glib'
-'curl' 'libgnome-keyring' 'libgphoto2' 'libusb-compat' 'openexr' 
'sqlite' 'libxslt'
-'libsoup')
-makedepends=('intltool=0.40' 'cmake' 'librsvg')
-optdepends=('librsvg')
-install=darktable.install
-options=(!libtool)
-source=(http://downloads.sourceforge.net/project/darktable/darktable/${_pkgver}/darktable-$pkgver.tar.xz)
-md5sums=('31bfd13d4786aac4f99d5155a811602b')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  mkdir -p build
-  cd build
-  CXXFLAGS+= -fpermissive
-  cmake \
-  -DCMAKE_INSTALL_PREFIX=/usr \
-  -DCMAKE_BUILD_TYPE=Release \
-  -DDONT_INSTALL_GCONF_SCHEMAS=True \
-  -DBINARY_PACKAGE_BUILD=1 \
-  -DUSE_GCONF_BACKEND=Off \
-  -DBUILD_USERMANUAL=False \
-  ..
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver/build
-  make DESTDIR=$pkgdir install
-  mv ${pkgdir}/usr/share/doc/darktable 
${pkgdir}/usr/share/doc/${pkgname}-${pkgver}
-}

Copied: darktable/repos/community-i686/PKGBUILD (from rev 88865, 
darktable/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-04-24 14:09:28 UTC (rev 88866)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer:  Christian Himpel chressie at gmail dot com
+# Contributor: Johannes Hanika hanatos at gmail dot com
+
+pkgname=darktable
+pkgver=1.2
+_pkgver=1.2
+pkgrel=3
+pkgdesc=Utility to organize and develop raw images
+arch=('i686' 'x86_64')
+url=http://darktable.sf.net/
+license=('GPL3')
+depends=('exiv2=0.18' 'intltool=0.40' 'lcms2' 'lensfun=0.2.3' 'libglade' 
'dbus-glib'
+'curl' 'libgnome-keyring' 'libgphoto2' 'libusb-compat' 'openexr' 
'sqlite' 'libxslt'
+'libsoup' 'gtk-engines')
+makedepends=('intltool=0.40' 'cmake' 'librsvg')
+optdepends=('librsvg')
+install=darktable.install
+options=(!libtool)
+source=(http://downloads.sourceforge.net/project/darktable/darktable/${_pkgver}/darktable-$pkgver.tar.xz)
+md5sums=('31bfd13d4786aac4f99d5155a811602b')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  mkdir -p build
+  cd build
+  CXXFLAGS+= -fpermissive
+  cmake \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DCMAKE_BUILD_TYPE=Release \
+  -DDONT_INSTALL_GCONF_SCHEMAS=True \
+  -DBINARY_PACKAGE_BUILD=1 \
+  -DUSE_GCONF_BACKEND=Off \
+  -DBUILD_USERMANUAL=False \
+  ..
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver/build
+  make DESTDIR=$pkgdir install
+  mv ${pkgdir}/usr/share/doc/darktable 
${pkgdir}/usr/share/doc/${pkgname}-${pkgver}
+}

Deleted: community-i686/darktable.install
===
--- community-i686/darktable.install2013-04-24 14:09:11 UTC (rev 88865)
+++ community-i686/darktable.install2013-04-24 14:09:28 UTC (rev 88866)
@@ -1,11 +0,0 @@
-post_install() {
-  [ -x `which update-desktop-database 2/dev/null` ]   
update-desktop-database -q
-}
-
-post_upgrade() {
-  [ -x `which update-desktop-database 2/dev/null` ]   
update-desktop-database -q
-}
-
-post_remove() {
-  [ -x 

[arch-commits] Commit in haskell-dlist/trunk (PKGBUILD)

2013-04-24 Thread Jelle van der Waa
Date: Wednesday, April 24, 2013 @ 16:21:59
  Author: jelle
Revision: 88867

upgpkg: haskell-dlist 0.5-23

fix push staging pkg to community repos

Modified:
  haskell-dlist/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-24 14:09:28 UTC (rev 88866)
+++ PKGBUILD2013-04-24 14:21:59 UTC (rev 88867)
@@ -7,13 +7,13 @@
 pkgver=0.5
 _hkgname=dlist
 _licensefile=LICENSE
-pkgrel=22
+pkgrel=23
 pkgdesc=Differences lists
 url=http://code.haskell.org/~dons/code/dlist/;
 license=(BSD3)
 arch=('i686' 'x86_64')
-makedepends=('ghc=7.6.3-1')
-depends=('ghc=7.6.3-1')
+makedepends=('ghc=7.6.2')
+depends=('ghc=7.6.2')
 options=('strip')
 
source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
 sha256sums=('4780e5409eff55bbfdd7470ef802a087a04048c9cd5efe0482c82878292f19ea')



[arch-commits] Commit in gtk2hs-buildtools/trunk (PKGBUILD)

2013-04-24 Thread Sergej Pupykin
Date: Wednesday, April 24, 2013 @ 16:22:01
  Author: spupykin
Revision: 88868

upgpkg: gtk2hs-buildtools 0.12.4-2

upd

Modified:
  gtk2hs-buildtools/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-24 14:21:59 UTC (rev 88867)
+++ PKGBUILD2013-04-24 14:22:01 UTC (rev 88868)
@@ -3,7 +3,7 @@
 
 pkgname=gtk2hs-buildtools
 pkgver=0.12.4
-pkgrel=1
+pkgrel=2
 pkgdesc=Tools to build the Gtk2Hs suite of User Interface libraries.
 url=http://hackage.haskell.org/package/gtk2hs-buildtools;
 license=('GPL2')



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

2013-04-24 Thread Sergej Pupykin
Date: Wednesday, April 24, 2013 @ 16:22:19
  Author: spupykin
Revision: 88869

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

Added:
  gtk2hs-buildtools/repos/community-staging-i686/
  
gtk2hs-buildtools/repos/community-staging-i686/0001-fix-for-ghc-7.6.1-changes.patch
(from rev 88868, 
gtk2hs-buildtools/trunk/0001-fix-for-ghc-7.6.1-changes.patch)
  gtk2hs-buildtools/repos/community-staging-i686/PKGBUILD
(from rev 88868, gtk2hs-buildtools/trunk/PKGBUILD)
  gtk2hs-buildtools/repos/community-staging-x86_64/
  
gtk2hs-buildtools/repos/community-staging-x86_64/0001-fix-for-ghc-7.6.1-changes.patch
(from rev 88868, 
gtk2hs-buildtools/trunk/0001-fix-for-ghc-7.6.1-changes.patch)
  gtk2hs-buildtools/repos/community-staging-x86_64/PKGBUILD
(from rev 88868, gtk2hs-buildtools/trunk/PKGBUILD)

---+
 community-staging-i686/0001-fix-for-ghc-7.6.1-changes.patch   |   69 ++
 community-staging-i686/PKGBUILD   |   27 +++
 community-staging-x86_64/0001-fix-for-ghc-7.6.1-changes.patch |   69 ++
 community-staging-x86_64/PKGBUILD |   27 +++
 4 files changed, 192 insertions(+)

Copied: 
gtk2hs-buildtools/repos/community-staging-i686/0001-fix-for-ghc-7.6.1-changes.patch
 (from rev 88868, gtk2hs-buildtools/trunk/0001-fix-for-ghc-7.6.1-changes.patch)
===
--- community-staging-i686/0001-fix-for-ghc-7.6.1-changes.patch 
(rev 0)
+++ community-staging-i686/0001-fix-for-ghc-7.6.1-changes.patch 2013-04-24 
14:22:19 UTC (rev 88869)
@@ -0,0 +1,69 @@
+From 7d94bcd36eb1d5a2feae182fcb74f9d6ca439a80 Mon Sep 17 00:00:00 2001
+From: Thomas Dziedzic gos...@gmail.com
+Date: Wed, 12 Sep 2012 03:29:46 -0700
+Subject: [PATCH] fix for ghc 7.6.1 changes
+
+---
+ c2hs/base/general/FileOps.hs  | 3 ++-
+ c2hs/base/state/StateTrans.hs | 3 ++-
+ c2hs/toplevel/C2HSConfig.hs   | 2 +-
+ 3 files changed, 5 insertions(+), 3 deletions(-)
+
+diff --git a/c2hs/base/general/FileOps.hs b/c2hs/base/general/FileOps.hs
+index 83ac70c..4914c4b 100644
+--- a/c2hs/base/general/FileOps.hs
 b/c2hs/base/general/FileOps.hs
+@@ -39,6 +39,7 @@ import Control.Monad  (liftM)
+ import System.Random(newStdGen, randomRs)
+ 
+ import FNameOps  (dirname, stripDirname, addPath)
++import System.IO.Error (catchIOError)
+ 
+ 
+ -- search for the given file in the given list of directories (EXPORTED)
+@@ -89,7 +90,7 @@ mktemp pre post =
+in do
+  h - openFile fname ReadWriteMode
+  return (h, fname)
+-   `catch` \_ - createLoop (attempts - 1) rs'
++   `catchIOError` \_ - createLoop (attempts - 1) rs'
+ --
+ sixChars :: [Int] - ([Int], String)
+ sixChars is = 
+diff --git a/c2hs/base/state/StateTrans.hs b/c2hs/base/state/StateTrans.hs
+index ada62f4..2ab0ad1 100644
+--- a/c2hs/base/state/StateTrans.hs
 b/c2hs/base/state/StateTrans.hs
+@@ -84,6 +84,7 @@ import System.IO  (fixIO)
+ import Data.IORef (IORef, newIORef, readIORef, writeIORef)
+ 
+ import Errors (interr)
++import System.IO.Error (catchIOError)
+ 
+ infixr 1 +=, +
+ 
+@@ -337,7 +338,7 @@ fatalsHandledBy m handler  =
+ ioError err
+ Right a  - return state
+   )
+-  `catch` (\err - let
++  `catchIOError` (\err - let
+  STB handler' = handler err
+in
+handler' bs gs)
+diff --git a/c2hs/toplevel/C2HSConfig.hs b/c2hs/toplevel/C2HSConfig.hs
+index e8deddf..af32886 100644
+--- a/c2hs/toplevel/C2HSConfig.hs
 b/c2hs/toplevel/C2HSConfig.hs
+@@ -46,7 +46,7 @@ import Data.Array (Array, array)
+ 
+ import Foreign (Ptr, FunPtr)
+ import Foreign  (Storable(sizeOf, alignment), toBool)
+-import Foreign.C (CInt)
++import Foreign.C (CInt(..))
+ import System.Info (os)
+ 
+ -- program settings
+-- 
+1.7.12
+

Copied: gtk2hs-buildtools/repos/community-staging-i686/PKGBUILD (from rev 
88868, gtk2hs-buildtools/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-04-24 14:22:19 UTC (rev 88869)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=gtk2hs-buildtools
+pkgver=0.12.4
+pkgrel=2
+pkgdesc=Tools to build the Gtk2Hs suite of User Interface libraries.
+url=http://hackage.haskell.org/package/gtk2hs-buildtools;
+license=('GPL2')
+arch=('i686' 'x86_64')
+makedepends=('ghc' 'alex' 'happy' 'haskell-random')
+depends=('gmp')
+options=('strip')
+provides=('haskell-gtk2hs-buildtools')
+source=(http://hackage.haskell.org/packages/archive/gtk2hs-buildtools/$pkgver/gtk2hs-buildtools-$pkgver.tar.gz)

[arch-commits] Commit in haskell-bytestring-show/trunk (PKGBUILD)

2013-04-24 Thread Sergej Pupykin
Date: Wednesday, April 24, 2013 @ 16:22:23
  Author: spupykin
Revision: 88870

upgpkg: haskell-bytestring-show 0.3.5.4-4

upd

Modified:
  haskell-bytestring-show/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-24 14:22:19 UTC (rev 88869)
+++ PKGBUILD2013-04-24 14:22:23 UTC (rev 88870)
@@ -3,7 +3,7 @@
 
 pkgname=haskell-bytestring-show
 pkgver=0.3.5.4
-pkgrel=3
+pkgrel=4
 pkgdesc=Efficient conversion of values into readable byte strings.
 url=http://hackage.haskell.org/package/bytestring-show;
 license=(BSD3)



[arch-commits] Commit in haskell-bytestring-show/repos (6 files)

2013-04-24 Thread Sergej Pupykin
Date: Wednesday, April 24, 2013 @ 16:22:38
  Author: spupykin
Revision: 88871

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

Added:
  haskell-bytestring-show/repos/community-staging-i686/
  haskell-bytestring-show/repos/community-staging-i686/PKGBUILD
(from rev 88870, haskell-bytestring-show/trunk/PKGBUILD)
  
haskell-bytestring-show/repos/community-staging-i686/haskell-bytestring-show.install
(from rev 88870, 
haskell-bytestring-show/trunk/haskell-bytestring-show.install)
  haskell-bytestring-show/repos/community-staging-x86_64/
  haskell-bytestring-show/repos/community-staging-x86_64/PKGBUILD
(from rev 88870, haskell-bytestring-show/trunk/PKGBUILD)
  
haskell-bytestring-show/repos/community-staging-x86_64/haskell-bytestring-show.install
(from rev 88870, 
haskell-bytestring-show/trunk/haskell-bytestring-show.install)

--+
 community-staging-i686/PKGBUILD  |   43 +
 community-staging-i686/haskell-bytestring-show.install   |   24 +++
 community-staging-x86_64/PKGBUILD|   43 +
 community-staging-x86_64/haskell-bytestring-show.install |   24 +++
 4 files changed, 134 insertions(+)

Copied: haskell-bytestring-show/repos/community-staging-i686/PKGBUILD (from rev 
88870, haskell-bytestring-show/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-04-24 14:22:38 UTC (rev 88871)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=haskell-bytestring-show
+pkgver=0.3.5.4
+pkgrel=4
+pkgdesc=Efficient conversion of values into readable byte strings.
+url=http://hackage.haskell.org/package/bytestring-show;
+license=(BSD3)
+arch=('i686' 'x86_64')
+depends=(ghc)
+install=${pkgname}.install
+source=(http://hackage.haskell.org/packages/archive/bytestring-show/${pkgver}/bytestring-show-${pkgver}.tar.gz;)
+md5sums=('2a4ab243c4b6fffed1fc663975a9ec6d')
+
+build() {
+  cd ${srcdir}/bytestring-show-${pkgver}
+
+  # update outdated dependency
+  sed 's/build-depends: integer-gmp = 0.2   0.5/build-depends: integer-gmp 
= 0.2 \\  0.6/' -i bytestring-show.cabal
+
+  runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
+   --prefix=/usr --docdir=/usr/share/doc/${pkgname} \
+   --libsubdir=\$compiler/site-local/\$pkgid
+  runhaskell Setup build
+  runhaskell Setup haddock
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+
+package() {
+  depends=(ghc=`pacman -Q ghc | cut -f2 -d\ |cut -f1 -d-`)
+
+  cd ${srcdir}/bytestring-show-${pkgver}
+  install -D -m744 register.sh   
${pkgdir}/usr/share/haskell/${pkgname}/register.sh
+  install-m744 unregister.sh 
${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
+  install -d -m755 ${pkgdir}/usr/share/doc/ghc/html/libraries
+  ln -s /usr/share/doc/${pkgname}/html 
${pkgdir}/usr/share/doc/ghc/html/libraries/bytestring-show
+  runhaskell Setup copy --destdir=${pkgdir}
+  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+  rm -f ${pkgdir}/usr/share/doc/${pkgname}/LICENSE
+}

Copied: 
haskell-bytestring-show/repos/community-staging-i686/haskell-bytestring-show.install
 (from rev 88870, haskell-bytestring-show/trunk/haskell-bytestring-show.install)
===
--- community-staging-i686/haskell-bytestring-show.install  
(rev 0)
+++ community-staging-i686/haskell-bytestring-show.install  2013-04-24 
14:22:38 UTC (rev 88871)
@@ -0,0 +1,24 @@
+pkgname=haskell-bytestring-show
+HS_DIR=usr/share/haskell/${pkgname}
+
+post_install() {
+${HS_DIR}/register.sh
+(cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+pre_upgrade() {
+${HS_DIR}/unregister.sh
+}
+
+post_upgrade() {
+${HS_DIR}/register.sh
+(cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+pre_remove() {
+${HS_DIR}/unregister.sh
+}
+
+post_remove() {
+(cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-bytestring-show/repos/community-staging-x86_64/PKGBUILD (from 
rev 88870, haskell-bytestring-show/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2013-04-24 14:22:38 UTC (rev 88871)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=haskell-bytestring-show
+pkgver=0.3.5.4
+pkgrel=4
+pkgdesc=Efficient conversion of values into readable byte strings.
+url=http://hackage.haskell.org/package/bytestring-show;
+license=(BSD3)
+arch=('i686' 'x86_64')
+depends=(ghc)

[arch-commits] Commit in haskell-hslogger/trunk (PKGBUILD)

2013-04-24 Thread Sergej Pupykin
Date: Wednesday, April 24, 2013 @ 16:22:42
  Author: spupykin
Revision: 88872

upgpkg: haskell-hslogger 1.2.1-4

upd

Modified:
  haskell-hslogger/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-24 14:22:38 UTC (rev 88871)
+++ PKGBUILD2013-04-24 14:22:42 UTC (rev 88872)
@@ -4,7 +4,7 @@
 
 pkgname=haskell-hslogger
 pkgver=1.2.1
-pkgrel=3
+pkgrel=4
 pkgdesc=Versatile logging framework
 url=http://hackage.haskell.org/package/hslogger;
 license=('LGPL')



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

2013-04-24 Thread Sergej Pupykin
Date: Wednesday, April 24, 2013 @ 16:22:56
  Author: spupykin
Revision: 88873

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

Added:
  haskell-hslogger/repos/community-staging-i686/
  haskell-hslogger/repos/community-staging-i686/PKGBUILD
(from rev 88872, haskell-hslogger/trunk/PKGBUILD)
  haskell-hslogger/repos/community-staging-i686/haskell-hslogger.install
(from rev 88872, haskell-hslogger/trunk/haskell-hslogger.install)
  haskell-hslogger/repos/community-staging-x86_64/
  haskell-hslogger/repos/community-staging-x86_64/PKGBUILD
(from rev 88872, haskell-hslogger/trunk/PKGBUILD)
  haskell-hslogger/repos/community-staging-x86_64/haskell-hslogger.install
(from rev 88872, haskell-hslogger/trunk/haskell-hslogger.install)

---+
 community-staging-i686/PKGBUILD   |   36 
 community-staging-i686/haskell-hslogger.install   |   18 ++
 community-staging-x86_64/PKGBUILD |   36 
 community-staging-x86_64/haskell-hslogger.install |   18 ++
 4 files changed, 108 insertions(+)

Copied: haskell-hslogger/repos/community-staging-i686/PKGBUILD (from rev 88872, 
haskell-hslogger/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-04-24 14:22:56 UTC (rev 88873)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Arch Haskell Team arch-hask...@haskell.org
+
+pkgname=haskell-hslogger
+pkgver=1.2.1
+pkgrel=4
+pkgdesc=Versatile logging framework
+url=http://hackage.haskell.org/package/hslogger;
+license=('LGPL')
+arch=('i686' 'x86_64')
+depends=('ghc' 'haskell-mtl' 'haskell-network')
+install=${pkgname}.install
+source=(http://hackage.haskell.org/packages/archive/hslogger/${pkgver}/hslogger-${pkgver}.tar.gz)
+md5sums=('d94e39cd6a262565cf0758a6ead74919')
+
+build() {
+  cd ${srcdir}/hslogger-${pkgver}
+  runhaskell Setup configure -p --prefix=/usr 
--docdir=/usr/share/doc/${pkgname} -O \
+   --enable-split-objs --enable-shared 
--libsubdir=\$compiler/site-local/\$pkgid \
+   --enable-library-profiling
+  runhaskell Setup build
+  runhaskell Setup haddock
+  runhaskell Setup register   --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+
+package() {
+  cd ${srcdir}/hslogger-${pkgver}
+  install -D -m744 register.sh   
${pkgdir}/usr/share/haskell/${pkgname}/register.sh
+  install-m744 unregister.sh 
${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
+  install -d -m755 ${pkgdir}/usr/share/doc/ghc/html/libraries
+  ln -s /usr/share/doc/${pkgname}/html 
${pkgdir}/usr/share/doc/ghc/html/libraries/hslogger
+  runhaskell Setup copy --destdir=${pkgdir}
+}

Copied: haskell-hslogger/repos/community-staging-i686/haskell-hslogger.install 
(from rev 88872, haskell-hslogger/trunk/haskell-hslogger.install)
===
--- community-staging-i686/haskell-hslogger.install 
(rev 0)
+++ community-staging-i686/haskell-hslogger.install 2013-04-24 14:22:56 UTC 
(rev 88873)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-hslogger
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-hslogger/repos/community-staging-x86_64/PKGBUILD (from rev 
88872, haskell-hslogger/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2013-04-24 14:22:56 UTC (rev 88873)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Arch Haskell Team arch-hask...@haskell.org
+
+pkgname=haskell-hslogger
+pkgver=1.2.1
+pkgrel=4
+pkgdesc=Versatile logging framework
+url=http://hackage.haskell.org/package/hslogger;
+license=('LGPL')
+arch=('i686' 'x86_64')
+depends=('ghc' 'haskell-mtl' 'haskell-network')
+install=${pkgname}.install
+source=(http://hackage.haskell.org/packages/archive/hslogger/${pkgver}/hslogger-${pkgver}.tar.gz)
+md5sums=('d94e39cd6a262565cf0758a6ead74919')
+
+build() {
+  cd ${srcdir}/hslogger-${pkgver}
+  runhaskell Setup configure -p --prefix=/usr 
--docdir=/usr/share/doc/${pkgname} -O \
+   --enable-split-objs --enable-shared 
--libsubdir=\$compiler/site-local/\$pkgid \
+   --enable-library-profiling
+  runhaskell Setup build
+  runhaskell Setup haddock
+  runhaskell Setup 

[arch-commits] Commit in haskell-primitive/trunk (PKGBUILD)

2013-04-24 Thread Sergej Pupykin
Date: Wednesday, April 24, 2013 @ 16:23:01
  Author: spupykin
Revision: 88874

upgpkg: haskell-primitive 0.5.0.1-4

upd

Modified:
  haskell-primitive/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-24 14:22:56 UTC (rev 88873)
+++ PKGBUILD2013-04-24 14:23:01 UTC (rev 88874)
@@ -3,7 +3,7 @@
 
 pkgname=haskell-primitive
 pkgver=0.5.0.1
-pkgrel=3
+pkgrel=4
 pkgdesc=Wrappers for primitive operations
 url=http://hackage.haskell.org/package/primitive;
 license=(custom:BSD3)



[arch-commits] Commit in haskell-dlist/repos (8 files)

2013-04-24 Thread Jelle van der Waa
Date: Wednesday, April 24, 2013 @ 16:23:10
  Author: jelle
Revision: 88875

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

Added:
  haskell-dlist/repos/community-i686/PKGBUILD
(from rev 88870, haskell-dlist/trunk/PKGBUILD)
  haskell-dlist/repos/community-i686/haskell-dlist.install
(from rev 88870, haskell-dlist/trunk/haskell-dlist.install)
  haskell-dlist/repos/community-x86_64/PKGBUILD
(from rev 88872, haskell-dlist/trunk/PKGBUILD)
  haskell-dlist/repos/community-x86_64/haskell-dlist.install
(from rev 88872, haskell-dlist/trunk/haskell-dlist.install)
Deleted:
  haskell-dlist/repos/community-i686/PKGBUILD
  haskell-dlist/repos/community-i686/haskell-dlist.install
  haskell-dlist/repos/community-x86_64/PKGBUILD
  haskell-dlist/repos/community-x86_64/haskell-dlist.install

+
 /PKGBUILD  |   88 +++
 /haskell-dlist.install |   52 ++
 community-i686/PKGBUILD|   44 ---
 community-i686/haskell-dlist.install   |   26 -
 community-x86_64/PKGBUILD  |   44 ---
 community-x86_64/haskell-dlist.install |   26 -
 6 files changed, 140 insertions(+), 140 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-04-24 14:23:01 UTC (rev 88874)
+++ community-i686/PKGBUILD 2013-04-24 14:23:10 UTC (rev 88875)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Daniel Wallace danielwallace at gtmanfred dot com
-# Contributor: Don Stewart d...@galois.com
-# Contributor: Lex Black autumn-wind at web dot de
-
-pkgname=haskell-dlist
-pkgver=0.5
-_hkgname=dlist
-_licensefile=LICENSE
-pkgrel=22
-pkgdesc=Differences lists
-url=http://code.haskell.org/~dons/code/dlist/;
-license=(BSD3)
-arch=('i686' 'x86_64')
-makedepends=('ghc=7.6.3-1')
-depends=('ghc=7.6.3-1')
-options=('strip')
-source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha256sums=('4780e5409eff55bbfdd7470ef802a087a04048c9cd5efe0482c82878292f19ea')
-install=${pkgname}.install
-
-build() {
-cd ${srcdir}/${_hkgname}-${pkgver}
-
-runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
---prefix=/usr --docdir=/usr/share/doc/${pkgname} \
---libsubdir=\$compiler/site-local/\$pkgid
-runhaskell Setup build
-runhaskell Setup haddock
-runhaskell Setup register --gen-script
-runhaskell Setup unregister --gen-script
-sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
-}
-
-package() {
-cd ${srcdir}/${_hkgname}-${pkgver}
-install -D -m744 register.sh   
${pkgdir}/usr/share/haskell/${pkgname}/register.sh
-install-m744 unregister.sh 
${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
-install -d -m755 ${pkgdir}/usr/share/doc/ghc/html/libraries
-ln -s /usr/share/doc/${pkgname}/html 
${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}
-runhaskell Setup copy --destdir=${pkgdir}
-install -D -m644 ${_licensefile} 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-rm -f ${pkgdir}/usr/share/doc/${pkgname}/${_licensefile}
-}

Copied: haskell-dlist/repos/community-i686/PKGBUILD (from rev 88870, 
haskell-dlist/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-04-24 14:23:10 UTC (rev 88875)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Daniel Wallace danielwallace at gtmanfred dot com
+# Contributor: Don Stewart d...@galois.com
+# Contributor: Lex Black autumn-wind at web dot de
+
+pkgname=haskell-dlist
+pkgver=0.5
+_hkgname=dlist
+_licensefile=LICENSE
+pkgrel=23
+pkgdesc=Differences lists
+url=http://code.haskell.org/~dons/code/dlist/;
+license=(BSD3)
+arch=('i686' 'x86_64')
+makedepends=('ghc=7.6.2')
+depends=('ghc=7.6.2')
+options=('strip')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('4780e5409eff55bbfdd7470ef802a087a04048c9cd5efe0482c82878292f19ea')
+install=${pkgname}.install
+
+build() {
+cd ${srcdir}/${_hkgname}-${pkgver}
+
+runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
+--prefix=/usr --docdir=/usr/share/doc/${pkgname} \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+
+package() {
+cd ${srcdir}/${_hkgname}-${pkgver}
+install -D -m744 register.sh   
${pkgdir}/usr/share/haskell/${pkgname}/register.sh
+install-m744 unregister.sh 
${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
+install -d -m755 

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

2013-04-24 Thread Sergej Pupykin
Date: Wednesday, April 24, 2013 @ 16:23:14
  Author: spupykin
Revision: 88876

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

Added:
  haskell-primitive/repos/community-staging-i686/
  haskell-primitive/repos/community-staging-i686/PKGBUILD
(from rev 88874, haskell-primitive/trunk/PKGBUILD)
  haskell-primitive/repos/community-staging-i686/haskell-primitive.install
(from rev 88874, haskell-primitive/trunk/haskell-primitive.install)
  haskell-primitive/repos/community-staging-x86_64/
  haskell-primitive/repos/community-staging-x86_64/PKGBUILD
(from rev 88875, haskell-primitive/trunk/PKGBUILD)
  haskell-primitive/repos/community-staging-x86_64/haskell-primitive.install
(from rev 88875, haskell-primitive/trunk/haskell-primitive.install)

+
 community-staging-i686/PKGBUILD|   39 +++
 community-staging-i686/haskell-primitive.install   |   26 
 community-staging-x86_64/PKGBUILD  |   39 +++
 community-staging-x86_64/haskell-primitive.install |   26 
 4 files changed, 130 insertions(+)

Copied: haskell-primitive/repos/community-staging-i686/PKGBUILD (from rev 
88874, haskell-primitive/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-04-24 14:23:14 UTC (rev 88876)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=haskell-primitive
+pkgver=0.5.0.1
+pkgrel=4
+pkgdesc=Wrappers for primitive operations
+url=http://hackage.haskell.org/package/primitive;
+license=(custom:BSD3)
+arch=('i686' 'x86_64')
+makedepends=()
+depends=(ghc)
+options=('strip')
+install=${pkgname}.install
+source=(http://hackage.haskell.org/packages/archive/primitive/${pkgver}/primitive-${pkgver}.tar.gz;)
+sha256sums=('526c9d4d06b7b379cb1aaffeffbb30bef810e771f29617ef6d0d99df711f4313')
+
+build() {
+  cd ${srcdir}/primitive-${pkgver}
+  runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
+--prefix=/usr --docdir=/usr/share/doc/${pkgname} \
+--libsubdir=\$compiler/site-local/\$pkgid
+  runhaskell Setup build
+  runhaskell Setup haddock
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+
+package() {
+  cd ${srcdir}/primitive-${pkgver}
+  install -Dm744 register.sh   
${pkgdir}/usr/share/haskell/${pkgname}/register.sh
+  install -m744 unregister.sh 
${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
+  install -dm755 ${pkgdir}/usr/share/doc/ghc/html/libraries
+  ln -s /usr/share/doc/${pkgname}/html 
${pkgdir}/usr/share/doc/ghc/html/libraries/primitive
+  runhaskell Setup copy --destdir=${pkgdir}
+  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+  rm -f ${pkgdir}/usr/share/doc/${pkgname}/LICENSE
+}

Copied: 
haskell-primitive/repos/community-staging-i686/haskell-primitive.install (from 
rev 88874, haskell-primitive/trunk/haskell-primitive.install)
===
--- community-staging-i686/haskell-primitive.install
(rev 0)
+++ community-staging-i686/haskell-primitive.install2013-04-24 14:23:14 UTC 
(rev 88876)
@@ -0,0 +1,26 @@
+# custom variables
+pkgname=haskell-primitive
+HS_DIR=/usr/share/haskell/${pkgname}
+
+# functions
+post_install() {
+${HS_DIR}/register.sh
+(cd /usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+pre_upgrade() {
+${HS_DIR}/unregister.sh
+}
+
+post_upgrade() {
+${HS_DIR}/register.sh
+(cd /usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+pre_remove() {
+${HS_DIR}/unregister.sh
+}
+
+post_remove() {
+(cd /usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-primitive/repos/community-staging-x86_64/PKGBUILD (from rev 
88875, haskell-primitive/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2013-04-24 14:23:14 UTC (rev 88876)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=haskell-primitive
+pkgver=0.5.0.1
+pkgrel=4
+pkgdesc=Wrappers for primitive operations
+url=http://hackage.haskell.org/package/primitive;
+license=(custom:BSD3)
+arch=('i686' 'x86_64')
+makedepends=()
+depends=(ghc)
+options=('strip')
+install=${pkgname}.install
+source=(http://hackage.haskell.org/packages/archive/primitive/${pkgver}/primitive-${pkgver}.tar.gz;)
+sha256sums=('526c9d4d06b7b379cb1aaffeffbb30bef810e771f29617ef6d0d99df711f4313')
+
+build() {
+  cd ${srcdir}/primitive-${pkgver}
+  runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
+--prefix=/usr 

[arch-commits] Commit in haskell-dlist/trunk (PKGBUILD)

2013-04-24 Thread Jelle van der Waa
Date: Wednesday, April 24, 2013 @ 16:26:31
  Author: jelle
Revision: 88877

upgpkg: haskell-dlist 0.5-24

ghc 7.6.3 rebuild

Modified:
  haskell-dlist/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-24 14:23:14 UTC (rev 88876)
+++ PKGBUILD2013-04-24 14:26:31 UTC (rev 88877)
@@ -7,13 +7,13 @@
 pkgver=0.5
 _hkgname=dlist
 _licensefile=LICENSE
-pkgrel=23
+pkgrel=24
 pkgdesc=Differences lists
 url=http://code.haskell.org/~dons/code/dlist/;
 license=(BSD3)
 arch=('i686' 'x86_64')
-makedepends=('ghc=7.6.2')
-depends=('ghc=7.6.2')
+makedepends=('ghc=7.6.3-1')
+depends=('ghc=7.6.3-1')
 options=('strip')
 
source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
 sha256sums=('4780e5409eff55bbfdd7470ef802a087a04048c9cd5efe0482c82878292f19ea')



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

2013-04-24 Thread Jelle van der Waa
Date: Wednesday, April 24, 2013 @ 16:27:36
  Author: jelle
Revision: 88878

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

Added:
  haskell-dlist/repos/community-staging-i686/
  haskell-dlist/repos/community-staging-i686/PKGBUILD
(from rev 88877, haskell-dlist/trunk/PKGBUILD)
  haskell-dlist/repos/community-staging-i686/haskell-dlist.install
(from rev 88877, haskell-dlist/trunk/haskell-dlist.install)
  haskell-dlist/repos/community-staging-x86_64/
  haskell-dlist/repos/community-staging-x86_64/PKGBUILD
(from rev 88877, haskell-dlist/trunk/PKGBUILD)
  haskell-dlist/repos/community-staging-x86_64/haskell-dlist.install
(from rev 88877, haskell-dlist/trunk/haskell-dlist.install)

+
 community-staging-i686/PKGBUILD|   44 +++
 community-staging-i686/haskell-dlist.install   |   26 +
 community-staging-x86_64/PKGBUILD  |   44 +++
 community-staging-x86_64/haskell-dlist.install |   26 +
 4 files changed, 140 insertions(+)

Copied: haskell-dlist/repos/community-staging-i686/PKGBUILD (from rev 88877, 
haskell-dlist/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-04-24 14:27:36 UTC (rev 88878)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Daniel Wallace danielwallace at gtmanfred dot com
+# Contributor: Don Stewart d...@galois.com
+# Contributor: Lex Black autumn-wind at web dot de
+
+pkgname=haskell-dlist
+pkgver=0.5
+_hkgname=dlist
+_licensefile=LICENSE
+pkgrel=24
+pkgdesc=Differences lists
+url=http://code.haskell.org/~dons/code/dlist/;
+license=(BSD3)
+arch=('i686' 'x86_64')
+makedepends=('ghc=7.6.3-1')
+depends=('ghc=7.6.3-1')
+options=('strip')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('4780e5409eff55bbfdd7470ef802a087a04048c9cd5efe0482c82878292f19ea')
+install=${pkgname}.install
+
+build() {
+cd ${srcdir}/${_hkgname}-${pkgver}
+
+runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
+--prefix=/usr --docdir=/usr/share/doc/${pkgname} \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+
+package() {
+cd ${srcdir}/${_hkgname}-${pkgver}
+install -D -m744 register.sh   
${pkgdir}/usr/share/haskell/${pkgname}/register.sh
+install-m744 unregister.sh 
${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
+install -d -m755 ${pkgdir}/usr/share/doc/ghc/html/libraries
+ln -s /usr/share/doc/${pkgname}/html 
${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}
+runhaskell Setup copy --destdir=${pkgdir}
+install -D -m644 ${_licensefile} 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+rm -f ${pkgdir}/usr/share/doc/${pkgname}/${_licensefile}
+}

Copied: haskell-dlist/repos/community-staging-i686/haskell-dlist.install (from 
rev 88877, haskell-dlist/trunk/haskell-dlist.install)
===
--- community-staging-i686/haskell-dlist.install
(rev 0)
+++ community-staging-i686/haskell-dlist.install2013-04-24 14:27:36 UTC 
(rev 88878)
@@ -0,0 +1,26 @@
+# custom variables
+pkgname=haskell-dlist
+HS_DIR=/usr/share/haskell/${pkgname}
+
+# functions
+post_install() {
+${HS_DIR}/register.sh
+(cd /usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+pre_upgrade() {
+${HS_DIR}/unregister.sh
+}
+
+post_upgrade() {
+${HS_DIR}/register.sh
+(cd /usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+pre_remove() {
+${HS_DIR}/unregister.sh
+}
+
+post_remove() {
+(cd /usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-dlist/repos/community-staging-x86_64/PKGBUILD (from rev 88877, 
haskell-dlist/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2013-04-24 14:27:36 UTC (rev 88878)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Daniel Wallace danielwallace at gtmanfred dot com
+# Contributor: Don Stewart d...@galois.com
+# Contributor: Lex Black autumn-wind at web dot de
+
+pkgname=haskell-dlist
+pkgver=0.5
+_hkgname=dlist
+_licensefile=LICENSE
+pkgrel=24
+pkgdesc=Differences lists
+url=http://code.haskell.org/~dons/code/dlist/;
+license=(BSD3)
+arch=('i686' 'x86_64')
+makedepends=('ghc=7.6.3-1')
+depends=('ghc=7.6.3-1')
+options=('strip')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)

[arch-commits] Commit in geogebra/trunk (PKGBUILD)

2013-04-24 Thread Bartłomiej Piotrowski
Date: Wednesday, April 24, 2013 @ 16:36:36
  Author: bpiotrowski
Revision: 88879

upgpkg: geogebra 4.2.31.0-1

- upstream release

Modified:
  geogebra/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-24 14:27:36 UTC (rev 88878)
+++ PKGBUILD2013-04-24 14:36:36 UTC (rev 88879)
@@ -4,7 +4,7 @@
 # Contributor: moostik mooostik_at_gmail.com
 
 pkgname=geogebra
-pkgver=4.2.30.0
+pkgver=4.2.31.0
 pkgrel=1
 pkgdesc='Dynamic mathematics software with interactive graphics, algebra and 
spreadsheet'
 arch=('any')
@@ -13,7 +13,7 @@
 depends=('java-runtime' 'shared-mime-info' 'hicolor-icon-theme' 
'desktop-file-utils' 'xdg-utils')
 install=geogebra.install
 
source=(http://$pkgname.googlecode.com/files/GeoGebra-Unixlike-Installer-$pkgver.tar.gz)
-sha256sums=('aa02191f25a109a2ce9ef52cc6f33b22af4215d5b7f9d8c0de495031b6918293')
+sha256sums=('3ed61b3e6816b7aba1c82bf1e978c82661611abec7ac4cdd52c3ede4765b3bb0')
 
 package() {
   install -dm755 $pkgdir/usr/bin \



[arch-commits] Commit in geogebra/repos/community-any (4 files)

2013-04-24 Thread Bartłomiej Piotrowski
Date: Wednesday, April 24, 2013 @ 16:36:47
  Author: bpiotrowski
Revision: 0

archrelease: copy trunk to community-any

Added:
  geogebra/repos/community-any/PKGBUILD
(from rev 88879, geogebra/trunk/PKGBUILD)
  geogebra/repos/community-any/geogebra.install
(from rev 88879, geogebra/trunk/geogebra.install)
Deleted:
  geogebra/repos/community-any/PKGBUILD
  geogebra/repos/community-any/geogebra.install

--+
 PKGBUILD |   58 ++---
 geogebra.install |   28 -
 2 files changed, 43 insertions(+), 43 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-04-24 14:36:36 UTC (rev 88879)
+++ PKGBUILD2013-04-24 14:36:47 UTC (rev 0)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski nos...@bpiotrowski.pl
-# Contributor: Felipe Hommen felibank at gmail dot com
-# Contributor: moostik mooostik_at_gmail.com
-
-pkgname=geogebra
-pkgver=4.2.30.0
-pkgrel=1
-pkgdesc='Dynamic mathematics software with interactive graphics, algebra and 
spreadsheet'
-arch=('any')
-url='http://www.geogebra.org/'
-license=('GPL3' 'CCPL:by-sa')
-depends=('java-runtime' 'shared-mime-info' 'hicolor-icon-theme' 
'desktop-file-utils' 'xdg-utils')
-install=geogebra.install
-source=(http://$pkgname.googlecode.com/files/GeoGebra-Unixlike-Installer-$pkgver.tar.gz)
-sha256sums=('aa02191f25a109a2ce9ef52cc6f33b22af4215d5b7f9d8c0de495031b6918293')
-
-package() {
-  install -dm755 $pkgdir/usr/bin \
- $pkgdir/usr/share/applications \
- $pkgdir/usr/share/geogebra
-
-  cd $srcdir/$pkgname-$pkgver
-  sed -i 's/\/usr/\$\{pkgdir\}\/usr/g' install.sh
-  source install.sh
-  install -Dm644 _license.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
-
-  rm -rf $pkgdir/usr/share/mime/
-}

Copied: geogebra/repos/community-any/PKGBUILD (from rev 88879, 
geogebra/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-04-24 14:36:47 UTC (rev 0)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski nos...@bpiotrowski.pl
+# Contributor: Felipe Hommen felibank at gmail dot com
+# Contributor: moostik mooostik_at_gmail.com
+
+pkgname=geogebra
+pkgver=4.2.31.0
+pkgrel=1
+pkgdesc='Dynamic mathematics software with interactive graphics, algebra and 
spreadsheet'
+arch=('any')
+url='http://www.geogebra.org/'
+license=('GPL3' 'CCPL:by-sa')
+depends=('java-runtime' 'shared-mime-info' 'hicolor-icon-theme' 
'desktop-file-utils' 'xdg-utils')
+install=geogebra.install
+source=(http://$pkgname.googlecode.com/files/GeoGebra-Unixlike-Installer-$pkgver.tar.gz)
+sha256sums=('3ed61b3e6816b7aba1c82bf1e978c82661611abec7ac4cdd52c3ede4765b3bb0')
+
+package() {
+  install -dm755 $pkgdir/usr/bin \
+ $pkgdir/usr/share/applications \
+ $pkgdir/usr/share/geogebra
+
+  cd $srcdir/$pkgname-$pkgver
+  sed -i 's/\/usr/\$\{pkgdir\}\/usr/g' install.sh
+  source install.sh
+  install -Dm644 _license.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
+
+  rm -rf $pkgdir/usr/share/mime/
+}

Deleted: geogebra.install
===
--- geogebra.install2013-04-24 14:36:36 UTC (rev 88879)
+++ geogebra.install2013-04-24 14:36:47 UTC (rev 0)
@@ -1,14 +0,0 @@
-post_install() {
-  update-mime-database usr/share/mime/  /dev/null
-  update-desktop-database -q
-  xdg-icon-resource forceupdate --theme hicolor 2 /dev/null
-}
-
-post_upgrade() {
-  post_install 
-}
-
-post_remove() {
-  post_install $1
-}
-

Copied: geogebra/repos/community-any/geogebra.install (from rev 88879, 
geogebra/trunk/geogebra.install)
===
--- geogebra.install(rev 0)
+++ geogebra.install2013-04-24 14:36:47 UTC (rev 0)
@@ -0,0 +1,14 @@
+post_install() {
+  update-mime-database usr/share/mime/  /dev/null
+  update-desktop-database -q
+  xdg-icon-resource forceupdate --theme hicolor 2 /dev/null
+}
+
+post_upgrade() {
+  post_install 
+}
+
+post_remove() {
+  post_install $1
+}
+



[arch-commits] Commit in phpmyadmin/trunk (PKGBUILD)

2013-04-24 Thread Bartłomiej Piotrowski
Date: Wednesday, April 24, 2013 @ 16:44:32
  Author: bpiotrowski
Revision: 1

upgpkg: phpmyadmin 3.5.8.1-1

- upstream release

Modified:
  phpmyadmin/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-24 14:36:47 UTC (rev 0)
+++ PKGBUILD2013-04-24 14:44:32 UTC (rev 1)
@@ -5,7 +5,7 @@
 # Contributor: Simon Lackerbauer calypso at strpg.org
 
 pkgname=phpmyadmin
-pkgver=3.5.8
+pkgver=3.5.8.1
 pkgrel=1
 pkgdesc='PHP and hence web-based tool to administrate MySQL over the WWW'
 arch=('any')
@@ -18,7 +18,7 @@
etc/webapps/phpmyadmin/config.inc.php)
 
source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/phpMyAdmin-$pkgver-all-languages.tar.bz2)
 install=$pkgname.install
-sha256sums=('178812e5bf4a3f0f0b80c7789aa382f7bced0e928f165dbe58531c949fe8118e')
+sha256sums=('791cecd4b556faef6c30349d15909df1cc771ce4e4f4c97430343e71fb83467c')
 
 package() {
   _instdir=$pkgdir/usr/share/webapps/phpMyAdmin



[arch-commits] Commit in phpmyadmin/repos/community-any (4 files)

2013-04-24 Thread Bartłomiej Piotrowski
Date: Wednesday, April 24, 2013 @ 16:44:39
  Author: bpiotrowski
Revision: 2

archrelease: copy trunk to community-any

Added:
  phpmyadmin/repos/community-any/PKGBUILD
(from rev 1, phpmyadmin/trunk/PKGBUILD)
  phpmyadmin/repos/community-any/phpmyadmin.install
(from rev 1, phpmyadmin/trunk/phpmyadmin.install)
Deleted:
  phpmyadmin/repos/community-any/PKGBUILD
  phpmyadmin/repos/community-any/phpmyadmin.install

+
 PKGBUILD   |   90 +--
 phpmyadmin.install |6 +--
 2 files changed, 48 insertions(+), 48 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-04-24 14:44:32 UTC (rev 1)
+++ PKGBUILD2013-04-24 14:44:39 UTC (rev 2)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: tobias tob...@archlinux.org
-# Committer: Manolis Tzanidakis mano...@archlinux.org
-# Contributor: Simon Lackerbauer calypso at strpg.org
-
-pkgname=phpmyadmin
-pkgver=3.5.8
-pkgrel=1
-pkgdesc='PHP and hence web-based tool to administrate MySQL over the WWW'
-arch=('any')
-url=http://www.phpmyadmin.net;
-license=('GPL')
-depends=('mariadb-clients' 'php')
-optdepends=('php-mcrypt: to use phpMyAdmin internal authentication'
-   'python')
-backup=(etc/webapps/phpmyadmin/.htaccess
-   etc/webapps/phpmyadmin/config.inc.php)
-source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/phpMyAdmin-$pkgver-all-languages.tar.bz2)
-install=$pkgname.install
-sha256sums=('178812e5bf4a3f0f0b80c7789aa382f7bced0e928f165dbe58531c949fe8118e')
-
-package() {
-  _instdir=$pkgdir/usr/share/webapps/phpMyAdmin
-  mkdir -p ${_instdir} $pkgdir/etc/webapps/phpmyadmin
-  cd ${_instdir}
-
-  cp -ra $srcdir/phpMyAdmin-${pkgver}-all-languages/* .
-  echo deny from all $pkgdir/etc/webapps/phpmyadmin/.htaccess
-
-  ln -s /etc/webapps/phpmyadmin/.htaccess ${_instdir}/.htaccess
-  ln -s /etc/webapps/phpmyadmin/config.inc.php ${_instdir}/config.inc.php
-  cp ${_instdir}/config.sample.inc.php 
$pkgdir/etc/webapps/phpmyadmin/config.inc.php
-
-  cat $pkgdir/etc/webapps/phpmyadmin/apache.example.conf EOF
-   Alias /phpmyadmin /usr/share/webapps/phpMyAdmin
-   Directory /usr/share/webapps/phpMyAdmin
-   AllowOverride All
-   Options FollowSymlinks
-   Order allow,deny
-   Allow from all
-   php_admin_value open_basedir 
/srv/:/tmp/:/usr/share/webapps/:/etc/webapps:/usr/share/pear/
-   /Directory
-EOF
-}

Copied: phpmyadmin/repos/community-any/PKGBUILD (from rev 1, 
phpmyadmin/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-04-24 14:44:39 UTC (rev 2)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: tobias tob...@archlinux.org
+# Committer: Manolis Tzanidakis mano...@archlinux.org
+# Contributor: Simon Lackerbauer calypso at strpg.org
+
+pkgname=phpmyadmin
+pkgver=3.5.8.1
+pkgrel=1
+pkgdesc='PHP and hence web-based tool to administrate MySQL over the WWW'
+arch=('any')
+url=http://www.phpmyadmin.net;
+license=('GPL')
+depends=('mariadb-clients' 'php')
+optdepends=('php-mcrypt: to use phpMyAdmin internal authentication'
+   'python')
+backup=(etc/webapps/phpmyadmin/.htaccess
+   etc/webapps/phpmyadmin/config.inc.php)
+source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/phpMyAdmin-$pkgver-all-languages.tar.bz2)
+install=$pkgname.install
+sha256sums=('791cecd4b556faef6c30349d15909df1cc771ce4e4f4c97430343e71fb83467c')
+
+package() {
+  _instdir=$pkgdir/usr/share/webapps/phpMyAdmin
+  mkdir -p ${_instdir} $pkgdir/etc/webapps/phpmyadmin
+  cd ${_instdir}
+
+  cp -ra $srcdir/phpMyAdmin-${pkgver}-all-languages/* .
+  echo deny from all $pkgdir/etc/webapps/phpmyadmin/.htaccess
+
+  ln -s /etc/webapps/phpmyadmin/.htaccess ${_instdir}/.htaccess
+  ln -s /etc/webapps/phpmyadmin/config.inc.php ${_instdir}/config.inc.php
+  cp ${_instdir}/config.sample.inc.php 
$pkgdir/etc/webapps/phpmyadmin/config.inc.php
+
+  cat $pkgdir/etc/webapps/phpmyadmin/apache.example.conf EOF
+   Alias /phpmyadmin /usr/share/webapps/phpMyAdmin
+   Directory /usr/share/webapps/phpMyAdmin
+   AllowOverride All
+   Options FollowSymlinks
+   Order allow,deny
+   Allow from all
+   php_admin_value open_basedir 
/srv/:/tmp/:/usr/share/webapps/:/etc/webapps:/usr/share/pear/
+   /Directory
+EOF
+}

Deleted: phpmyadmin.install
===
--- phpmyadmin.install  2013-04-24 14:44:32 UTC (rev 1)
+++ phpmyadmin.install  2013-04-24 14:44:39 UTC (rev 2)
@@ -1,3 +0,0 @@
-post_install() {
-echo Check http://wiki.archlinux.org/index.php/Phpmyadmin for details.
-}


[arch-commits] Commit in nodejs/trunk (PKGBUILD)

2013-04-24 Thread Bartłomiej Piotrowski
Date: Wednesday, April 24, 2013 @ 17:09:13
  Author: bpiotrowski
Revision: 3

upgpkg: nodejs 0.10.5-1

- upstream release

Modified:
  nodejs/trunk/PKGBUILD

--+
 PKGBUILD |   12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-24 14:44:39 UTC (rev 2)
+++ PKGBUILD2013-04-24 15:09:13 UTC (rev 3)
@@ -8,7 +8,7 @@
 # Contributor: TIanyi Cui tianyi...@gmail.com
 
 pkgname=nodejs
-pkgver=0.10.4
+pkgver=0.10.5
 pkgrel=1
 pkgdesc='Evented I/O for V8 javascript'
 arch=('i686' 'x86_64')
@@ -18,7 +18,7 @@
 checkdepends=('curl')
 options=('!emptydirs')
 source=(http://nodejs.org/dist/v${pkgver}/node-v${pkgver}.tar.gz)
-sha256sums=('1c960d2822447a9e4f7c46b832ff05e86743033c6643d644975af1cbf6a44fb8')
+sha256sums=('1c22bd15cb13b1109610ee256699300ec6999b335f3bc85dc3c0312ec9312cfd')
 
 build() {
   cd node-v${pkgver}
@@ -47,15 +47,15 @@
 package() {
   cd node-v${pkgver}
 
-  make DESTDIR=$pkgdir install
+  make DESTDIR=$pkgdir install
 
   # install docs as per user request
-  install -d $pkgdir/usr/share/doc/nodejs
+  install -d $pkgdir/usr/share/doc/nodejs
   cp -r doc/api/*.html \
-$pkgdir/usr/share/doc/nodejs
+$pkgdir/usr/share/doc/nodejs
 
   install -D -m644 LICENSE \
-$pkgdir/usr/share/licenses/nodejs/LICENSE
+$pkgdir/usr/share/licenses/nodejs/LICENSE
 }
 
 # vim:set ts=2 sw=2 et:



[arch-commits] Commit in nodejs/repos (4 files)

2013-04-24 Thread Bartłomiej Piotrowski
Date: Wednesday, April 24, 2013 @ 17:09:27
  Author: bpiotrowski
Revision: 4

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

Added:
  nodejs/repos/community-i686/PKGBUILD
(from rev 3, nodejs/trunk/PKGBUILD)
  nodejs/repos/community-x86_64/PKGBUILD
(from rev 3, nodejs/trunk/PKGBUILD)
Deleted:
  nodejs/repos/community-i686/PKGBUILD
  nodejs/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  122 
 community-i686/PKGBUILD   |   61 --
 community-x86_64/PKGBUILD |   61 --
 3 files changed, 122 insertions(+), 122 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-04-24 15:09:13 UTC (rev 3)
+++ community-i686/PKGBUILD 2013-04-24 15:09:27 UTC (rev 4)
@@ -1,61 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski nos...@bpiotrowski.pl
-# Contributor: Thomas Dziedzic  gostrc at gmail 
-# Contributor: James Campos james.r.cam...@gmail.com
-# Contributor: BlackEagle  ike DOT devolder AT gmail DOT com 
-# Contributor: Dongsheng Cai dongsheng at moodle dot com
-# Contributor: Masutu Subric masutu.arch at googlemail dot com
-# Contributor: TIanyi Cui tianyi...@gmail.com
-
-pkgname=nodejs
-pkgver=0.10.4
-pkgrel=1
-pkgdesc='Evented I/O for V8 javascript'
-arch=('i686' 'x86_64')
-url='http://nodejs.org/'
-license=('MIT')
-depends=('openssl' 'python2')
-checkdepends=('curl')
-options=('!emptydirs')
-source=(http://nodejs.org/dist/v${pkgver}/node-v${pkgver}.tar.gz)
-sha256sums=('1c960d2822447a9e4f7c46b832ff05e86743033c6643d644975af1cbf6a44fb8')
-
-build() {
-  cd node-v${pkgver}
-
-  msg 'Fixing for python2 name'
-  find -type f -exec sed \
--e 's_^#!/usr/bin/env python$_2_' \
--e 's_^\(#!/usr/bin/python2\).[45]$_\1_' \
--e 's_^#!/usr/bin/python$_2_' \
--e s_'python'_'python2'_ -i {} \;
-  find test/ -type f -exec sed 's_python _python2 _' -i {} \;
-  export PYTHON=python2
-
-  ./configure \
---prefix=/usr \
---shared-openssl
-
-  make
-}
-
-check() {
-  cd node-v${pkgver}
-  make test || true
-}
-
-package() {
-  cd node-v${pkgver}
-
-  make DESTDIR=$pkgdir install
-
-  # install docs as per user request
-  install -d $pkgdir/usr/share/doc/nodejs
-  cp -r doc/api/*.html \
-$pkgdir/usr/share/doc/nodejs
-
-  install -D -m644 LICENSE \
-$pkgdir/usr/share/licenses/nodejs/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: nodejs/repos/community-i686/PKGBUILD (from rev 3, 
nodejs/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-04-24 15:09:27 UTC (rev 4)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski nos...@bpiotrowski.pl
+# Contributor: Thomas Dziedzic  gostrc at gmail 
+# Contributor: James Campos james.r.cam...@gmail.com
+# Contributor: BlackEagle  ike DOT devolder AT gmail DOT com 
+# Contributor: Dongsheng Cai dongsheng at moodle dot com
+# Contributor: Masutu Subric masutu.arch at googlemail dot com
+# Contributor: TIanyi Cui tianyi...@gmail.com
+
+pkgname=nodejs
+pkgver=0.10.5
+pkgrel=1
+pkgdesc='Evented I/O for V8 javascript'
+arch=('i686' 'x86_64')
+url='http://nodejs.org/'
+license=('MIT')
+depends=('openssl' 'python2')
+checkdepends=('curl')
+options=('!emptydirs')
+source=(http://nodejs.org/dist/v${pkgver}/node-v${pkgver}.tar.gz)
+sha256sums=('1c22bd15cb13b1109610ee256699300ec6999b335f3bc85dc3c0312ec9312cfd')
+
+build() {
+  cd node-v${pkgver}
+
+  msg 'Fixing for python2 name'
+  find -type f -exec sed \
+-e 's_^#!/usr/bin/env python$_2_' \
+-e 's_^\(#!/usr/bin/python2\).[45]$_\1_' \
+-e 's_^#!/usr/bin/python$_2_' \
+-e s_'python'_'python2'_ -i {} \;
+  find test/ -type f -exec sed 's_python _python2 _' -i {} \;
+  export PYTHON=python2
+
+  ./configure \
+--prefix=/usr \
+--shared-openssl
+
+  make
+}
+
+check() {
+  cd node-v${pkgver}
+  make test || true
+}
+
+package() {
+  cd node-v${pkgver}
+
+  make DESTDIR=$pkgdir install
+
+  # install docs as per user request
+  install -d $pkgdir/usr/share/doc/nodejs
+  cp -r doc/api/*.html \
+$pkgdir/usr/share/doc/nodejs
+
+  install -D -m644 LICENSE \
+$pkgdir/usr/share/licenses/nodejs/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-04-24 15:09:13 UTC (rev 3)
+++ community-x86_64/PKGBUILD   2013-04-24 15:09:27 UTC (rev 4)
@@ -1,61 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski nos...@bpiotrowski.pl
-# Contributor: Thomas Dziedzic  gostrc at gmail 
-# Contributor: James Campos james.r.cam...@gmail.com
-# Contributor: BlackEagle  ike DOT devolder AT gmail DOT com 
-# Contributor: Dongsheng Cai dongsheng at moodle dot com
-# Contributor: Masutu 

[arch-commits] Commit in atkmm/trunk (PKGBUILD)

2013-04-24 Thread Jan Steffens
Date: Wednesday, April 24, 2013 @ 17:16:54
  Author: heftig
Revision: 183597

2.22.7

Modified:
  atkmm/trunk/PKGBUILD  (contents, properties)

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-24 13:55:00 UTC (rev 183596)
+++ PKGBUILD2013-04-24 15:16:54 UTC (rev 183597)
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 79583 2010-05-04 15:21:15Z ibiru $
+# $Id$
 # Maintainer: Jan heftig Steffens jan.steff...@gmail.com
 
 pkgbase=atkmm
 pkgname=(atkmm atkmm-docs)
-pkgver=2.22.6
+pkgver=2.22.7
 pkgrel=1
 arch=('i686' 'x86_64')
 makedepends=('atk' 'glibmm' 'glibmm-docs' 'libsigc++')
@@ -11,7 +11,7 @@
 options=('!libtool' '!emptydirs')
 url=http://gtkmm.sourceforge.net/;
 
source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgbase}/2.22/${pkgbase}-${pkgver}.tar.xz)
-sha256sums=('0a74295106b9e3ae552b169eb4e098b8b825c4115045b9d5134a6c79a238aeb6')
+sha256sums=('bfbf846b409b4c5eb3a52fa32a13d86936021969406b3dcafd4dd05abd70f91b')
 
 build() {
   cd ${srcdir}/${pkgbase}-${pkgver}


Property changes on: atkmm/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in pangomm/trunk (PKGBUILD)

2013-04-24 Thread Jan Steffens
Date: Wednesday, April 24, 2013 @ 17:17:01
  Author: heftig
Revision: 183598

2.34.0

Modified:
  pangomm/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-24 15:16:54 UTC (rev 183597)
+++ PKGBUILD2013-04-24 15:17:01 UTC (rev 183598)
@@ -3,15 +3,15 @@
 
 pkgbase=pangomm
 pkgname=('pangomm' 'pangomm-docs')
-pkgver=2.28.4
+pkgver=2.34.0
 pkgrel=1
 arch=('i686' 'x86_64')
 license=('LGPL')
 makedepends=('pango' 'glibmm' 'glibmm-docs' 'cairomm' 'pkgconfig')
-source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/2.28/${pkgname}-${pkgver}.tar.xz)
+source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/${pkgver::4}/${pkgname}-${pkgver}.tar.xz)
 options=('!libtool')
 url=http://gtkmm.sourceforge.net/;
-sha256sums=('778dcb66a793cbfd52a9f92ee5a71b888c3603a913fc1ddc48a30204de6d6c82')
+sha256sums=('0e82bbff62f626692a00f3772d8b17169a1842b8cc54d5f2ddb1fec2cede9e41')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



[arch-commits] Commit in atkmm/repos (4 files)

2013-04-24 Thread Jan Steffens
Date: Wednesday, April 24, 2013 @ 17:17:51
  Author: heftig
Revision: 183599

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

Added:
  atkmm/repos/extra-i686/PKGBUILD
(from rev 183598, atkmm/trunk/PKGBUILD)
  atkmm/repos/extra-x86_64/PKGBUILD
(from rev 183598, atkmm/trunk/PKGBUILD)
Deleted:
  atkmm/repos/extra-i686/PKGBUILD
  atkmm/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |   70 
 extra-i686/PKGBUILD   |   35 
 extra-x86_64/PKGBUILD |   35 
 3 files changed, 70 insertions(+), 70 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-04-24 15:17:01 UTC (rev 183598)
+++ extra-i686/PKGBUILD 2013-04-24 15:17:51 UTC (rev 183599)
@@ -1,35 +0,0 @@
-# $Id: PKGBUILD 79583 2010-05-04 15:21:15Z ibiru $
-# Maintainer: Jan heftig Steffens jan.steff...@gmail.com
-
-pkgbase=atkmm
-pkgname=(atkmm atkmm-docs)
-pkgver=2.22.6
-pkgrel=1
-arch=('i686' 'x86_64')
-makedepends=('atk' 'glibmm' 'glibmm-docs' 'libsigc++')
-license=('LGPL')
-options=('!libtool' '!emptydirs')
-url=http://gtkmm.sourceforge.net/;
-source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgbase}/2.22/${pkgbase}-${pkgver}.tar.xz)
-sha256sums=('0a74295106b9e3ae552b169eb4e098b8b825c4115045b9d5134a6c79a238aeb6')
-
-build() {
-  cd ${srcdir}/${pkgbase}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package_atkmm() {
-  pkgdesc=C++ bindings for atk
-  depends=('atk' 'glibmm' 'libsigc++')
-
-  cd ${srcdir}/${pkgbase}-${pkgver}
-  sed -i -e 's/^doc_subdirs/#doc_subdirs/' Makefile
-  make DESTDIR=${pkgdir} install
-}
-
-package_atkmm-docs() {
-  pkgdesc=Developer documentation for atkmm
-  cd ${srcdir}/${pkgbase}-${pkgver}
-  make -C doc DESTDIR=${pkgdir} install
-}

Copied: atkmm/repos/extra-i686/PKGBUILD (from rev 183598, atkmm/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-04-24 15:17:51 UTC (rev 183599)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan heftig Steffens jan.steff...@gmail.com
+
+pkgbase=atkmm
+pkgname=(atkmm atkmm-docs)
+pkgver=2.22.7
+pkgrel=1
+arch=('i686' 'x86_64')
+makedepends=('atk' 'glibmm' 'glibmm-docs' 'libsigc++')
+license=('LGPL')
+options=('!libtool' '!emptydirs')
+url=http://gtkmm.sourceforge.net/;
+source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgbase}/2.22/${pkgbase}-${pkgver}.tar.xz)
+sha256sums=('bfbf846b409b4c5eb3a52fa32a13d86936021969406b3dcafd4dd05abd70f91b')
+
+build() {
+  cd ${srcdir}/${pkgbase}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package_atkmm() {
+  pkgdesc=C++ bindings for atk
+  depends=('atk' 'glibmm' 'libsigc++')
+
+  cd ${srcdir}/${pkgbase}-${pkgver}
+  sed -i -e 's/^doc_subdirs/#doc_subdirs/' Makefile
+  make DESTDIR=${pkgdir} install
+}
+
+package_atkmm-docs() {
+  pkgdesc=Developer documentation for atkmm
+  cd ${srcdir}/${pkgbase}-${pkgver}
+  make -C doc DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-04-24 15:17:01 UTC (rev 183598)
+++ extra-x86_64/PKGBUILD   2013-04-24 15:17:51 UTC (rev 183599)
@@ -1,35 +0,0 @@
-# $Id: PKGBUILD 79583 2010-05-04 15:21:15Z ibiru $
-# Maintainer: Jan heftig Steffens jan.steff...@gmail.com
-
-pkgbase=atkmm
-pkgname=(atkmm atkmm-docs)
-pkgver=2.22.6
-pkgrel=1
-arch=('i686' 'x86_64')
-makedepends=('atk' 'glibmm' 'glibmm-docs' 'libsigc++')
-license=('LGPL')
-options=('!libtool' '!emptydirs')
-url=http://gtkmm.sourceforge.net/;
-source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgbase}/2.22/${pkgbase}-${pkgver}.tar.xz)
-sha256sums=('0a74295106b9e3ae552b169eb4e098b8b825c4115045b9d5134a6c79a238aeb6')
-
-build() {
-  cd ${srcdir}/${pkgbase}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package_atkmm() {
-  pkgdesc=C++ bindings for atk
-  depends=('atk' 'glibmm' 'libsigc++')
-
-  cd ${srcdir}/${pkgbase}-${pkgver}
-  sed -i -e 's/^doc_subdirs/#doc_subdirs/' Makefile
-  make DESTDIR=${pkgdir} install
-}
-
-package_atkmm-docs() {
-  pkgdesc=Developer documentation for atkmm
-  cd ${srcdir}/${pkgbase}-${pkgver}
-  make -C doc DESTDIR=${pkgdir} install
-}

Copied: atkmm/repos/extra-x86_64/PKGBUILD (from rev 183598, 
atkmm/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-04-24 15:17:51 UTC (rev 183599)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan heftig Steffens jan.steff...@gmail.com
+
+pkgbase=atkmm
+pkgname=(atkmm atkmm-docs)
+pkgver=2.22.7
+pkgrel=1
+arch=('i686' 'x86_64')
+makedepends=('atk' 'glibmm' 'glibmm-docs' 'libsigc++')
+license=('LGPL')
+options=('!libtool' '!emptydirs')
+url=http://gtkmm.sourceforge.net/;

[arch-commits] Commit in pangomm/repos (4 files)

2013-04-24 Thread Jan Steffens
Date: Wednesday, April 24, 2013 @ 17:18:44
  Author: heftig
Revision: 183600

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

Added:
  pangomm/repos/extra-i686/PKGBUILD
(from rev 183599, pangomm/trunk/PKGBUILD)
  pangomm/repos/extra-x86_64/PKGBUILD
(from rev 183599, pangomm/trunk/PKGBUILD)
Deleted:
  pangomm/repos/extra-i686/PKGBUILD
  pangomm/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |   66 
 extra-i686/PKGBUILD   |   33 
 extra-x86_64/PKGBUILD |   33 
 3 files changed, 66 insertions(+), 66 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-04-24 15:17:51 UTC (rev 183599)
+++ extra-i686/PKGBUILD 2013-04-24 15:18:44 UTC (rev 183600)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgbase=pangomm
-pkgname=('pangomm' 'pangomm-docs')
-pkgver=2.28.4
-pkgrel=1
-arch=('i686' 'x86_64')
-license=('LGPL')
-makedepends=('pango' 'glibmm' 'glibmm-docs' 'cairomm' 'pkgconfig')
-source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/2.28/${pkgname}-${pkgver}.tar.xz)
-options=('!libtool')
-url=http://gtkmm.sourceforge.net/;
-sha256sums=('778dcb66a793cbfd52a9f92ee5a71b888c3603a913fc1ddc48a30204de6d6c82')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-package_pangomm() {
-  pkgdesc=C++ bindings for pango
-  depends=('pango' 'glibmm' 'cairomm')
-  cd ${srcdir}/${pkgbase}-${pkgver}
-  sed -i -e 's/^doc_subdirs/#doc_subdirs/' Makefile
-  make DESTDIR=${pkgdir} install
-}
-
-package_pangomm-docs() {
-  pkgdesc=Developer documentation for pangomm
-  cd ${srcdir}/${pkgbase}-${pkgver}/docs
-  make DESTDIR=${pkgdir} install
-}

Copied: pangomm/repos/extra-i686/PKGBUILD (from rev 183599, 
pangomm/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-04-24 15:18:44 UTC (rev 183600)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgbase=pangomm
+pkgname=('pangomm' 'pangomm-docs')
+pkgver=2.34.0
+pkgrel=1
+arch=('i686' 'x86_64')
+license=('LGPL')
+makedepends=('pango' 'glibmm' 'glibmm-docs' 'cairomm' 'pkgconfig')
+source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/${pkgver::4}/${pkgname}-${pkgver}.tar.xz)
+options=('!libtool')
+url=http://gtkmm.sourceforge.net/;
+sha256sums=('0e82bbff62f626692a00f3772d8b17169a1842b8cc54d5f2ddb1fec2cede9e41')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+package_pangomm() {
+  pkgdesc=C++ bindings for pango
+  depends=('pango' 'glibmm' 'cairomm')
+  cd ${srcdir}/${pkgbase}-${pkgver}
+  sed -i -e 's/^doc_subdirs/#doc_subdirs/' Makefile
+  make DESTDIR=${pkgdir} install
+}
+
+package_pangomm-docs() {
+  pkgdesc=Developer documentation for pangomm
+  cd ${srcdir}/${pkgbase}-${pkgver}/docs
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-04-24 15:17:51 UTC (rev 183599)
+++ extra-x86_64/PKGBUILD   2013-04-24 15:18:44 UTC (rev 183600)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgbase=pangomm
-pkgname=('pangomm' 'pangomm-docs')
-pkgver=2.28.4
-pkgrel=1
-arch=('i686' 'x86_64')
-license=('LGPL')
-makedepends=('pango' 'glibmm' 'glibmm-docs' 'cairomm' 'pkgconfig')
-source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/2.28/${pkgname}-${pkgver}.tar.xz)
-options=('!libtool')
-url=http://gtkmm.sourceforge.net/;
-sha256sums=('778dcb66a793cbfd52a9f92ee5a71b888c3603a913fc1ddc48a30204de6d6c82')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-package_pangomm() {
-  pkgdesc=C++ bindings for pango
-  depends=('pango' 'glibmm' 'cairomm')
-  cd ${srcdir}/${pkgbase}-${pkgver}
-  sed -i -e 's/^doc_subdirs/#doc_subdirs/' Makefile
-  make DESTDIR=${pkgdir} install
-}
-
-package_pangomm-docs() {
-  pkgdesc=Developer documentation for pangomm
-  cd ${srcdir}/${pkgbase}-${pkgver}/docs
-  make DESTDIR=${pkgdir} install
-}

Copied: pangomm/repos/extra-x86_64/PKGBUILD (from rev 183599, 
pangomm/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-04-24 15:18:44 UTC (rev 183600)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgbase=pangomm
+pkgname=('pangomm' 'pangomm-docs')
+pkgver=2.34.0
+pkgrel=1
+arch=('i686' 'x86_64')
+license=('LGPL')
+makedepends=('pango' 'glibmm' 'glibmm-docs' 'cairomm' 'pkgconfig')
+source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/${pkgver::4}/${pkgname}-${pkgver}.tar.xz)
+options=('!libtool')
+url=http://gtkmm.sourceforge.net/;

[arch-commits] Commit in nginx/trunk (PKGBUILD)

2013-04-24 Thread Bartłomiej Piotrowski
Date: Wednesday, April 24, 2013 @ 17:31:58
  Author: bpiotrowski
Revision: 5

upgpkg: nginx 1.4.0-1

- upstream release

Modified:
  nginx/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-24 15:09:27 UTC (rev 4)
+++ PKGBUILD2013-04-24 15:31:58 UTC (rev 5)
@@ -7,7 +7,7 @@
 _tmpdir=/var/lib/nginx
 
 pkgname=nginx
-pkgver=1.2.8
+pkgver=1.4.0
 pkgrel=1
 pkgdesc='Lightweight HTTP server and IMAP/POP3 proxy server'
 arch=('i686' 'x86_64')
@@ -29,7 +29,7 @@
 source=(http://nginx.org/download/nginx-$pkgver.tar.gz
service
logrotate)
-sha256sums=('d2947c98c5bed311b1e6c04e35a730af92e40e2e6bfe9201fa7f404987457137'
+sha256sums=('84aeb7a131fccff036dc80283dd98c989d2844eb84359cfe7c4863475de923a9'
 '77da8ce4d8378048606a25e09270ee187d6b226ee750b6cb4313af5549f5156a'
 '9523a1fdd5eb61bf62f3049f6ee088b198e36d5edcce2d9b08bbeb2930aa5a16')
 



[arch-commits] Commit in nginx/repos (16 files)

2013-04-24 Thread Bartłomiej Piotrowski
Date: Wednesday, April 24, 2013 @ 17:32:13
  Author: bpiotrowski
Revision: 6

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

Added:
  nginx/repos/community-i686/PKGBUILD
(from rev 5, nginx/trunk/PKGBUILD)
  nginx/repos/community-i686/logrotate
(from rev 5, nginx/trunk/logrotate)
  nginx/repos/community-i686/nginx.install
(from rev 5, nginx/trunk/nginx.install)
  nginx/repos/community-i686/service
(from rev 5, nginx/trunk/service)
  nginx/repos/community-x86_64/PKGBUILD
(from rev 5, nginx/trunk/PKGBUILD)
  nginx/repos/community-x86_64/logrotate
(from rev 5, nginx/trunk/logrotate)
  nginx/repos/community-x86_64/nginx.install
(from rev 5, nginx/trunk/nginx.install)
  nginx/repos/community-x86_64/service
(from rev 5, nginx/trunk/service)
Deleted:
  nginx/repos/community-i686/PKGBUILD
  nginx/repos/community-i686/logrotate
  nginx/repos/community-i686/nginx.install
  nginx/repos/community-i686/service
  nginx/repos/community-x86_64/PKGBUILD
  nginx/repos/community-x86_64/logrotate
  nginx/repos/community-x86_64/nginx.install
  nginx/repos/community-x86_64/service

+
 /PKGBUILD  |  200 +++
 /logrotate |   18 +++
 /nginx.install |   30 +
 /service   |   28 +
 community-i686/PKGBUILD|  100 ---
 community-i686/logrotate   |9 -
 community-i686/nginx.install   |   15 --
 community-i686/service |   14 --
 community-x86_64/PKGBUILD  |  100 ---
 community-x86_64/logrotate |9 -
 community-x86_64/nginx.install |   15 --
 community-x86_64/service   |   14 --
 12 files changed, 276 insertions(+), 276 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-04-24 15:31:58 UTC (rev 5)
+++ community-i686/PKGBUILD 2013-04-24 15:32:13 UTC (rev 6)
@@ -1,100 +0,0 @@
-# $Id$
-# Maintainer:  Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer:  Bartłomiej Piotrowski nos...@bpiotrowski.pl
-# Contributor: Miroslaw Szot m...@czlug.icis.pcz.pl
-
-_cfgdir=/etc/nginx
-_tmpdir=/var/lib/nginx
-
-pkgname=nginx
-pkgver=1.2.8
-pkgrel=1
-pkgdesc='Lightweight HTTP server and IMAP/POP3 proxy server'
-arch=('i686' 'x86_64')
-depends=('pcre' 'zlib' 'openssl' 'geoip')
-makedepends=('passenger')
-url=http://nginx.org;
-license=('custom')
-install=nginx.install
-backup=(${_cfgdir:1}/fastcgi.conf
-   ${_cfgdir:1}/fastcgi_params
-   ${_cfgdir:1}/koi-win
-   ${_cfgdir:1}/koi-utf
-   ${_cfgdir:1}/mime.types
-   ${_cfgdir:1}/nginx.conf
-   ${_cfgdir:1}/scgi_params
-   ${_cfgdir:1}/uwsgi_params
-   ${_cfgdir:1}/win-utf
-   etc/logrotate.d/nginx)
-source=(http://nginx.org/download/nginx-$pkgver.tar.gz
-   service
-   logrotate)
-sha256sums=('d2947c98c5bed311b1e6c04e35a730af92e40e2e6bfe9201fa7f404987457137'
-'77da8ce4d8378048606a25e09270ee187d6b226ee750b6cb4313af5549f5156a'
-'9523a1fdd5eb61bf62f3049f6ee088b198e36d5edcce2d9b08bbeb2930aa5a16')
-
-build() {
-   cd $srcdir/$pkgname-$pkgver
-
-   ./configure \
---prefix=$_cfgdir \
---conf-path=$_cfgdir/nginx.conf \
---sbin-path=/usr/sbin/nginx \
---pid-path=/var/run/nginx.pid \
---lock-path=/var/lock/nginx.lock \
---user=http --group=http \
---http-log-path=/var/log/nginx/access.log \
---error-log-path=/var/log/nginx/error.log \
---http-client-body-temp-path=$_tmpdir/client-body \
---http-proxy-temp-path=$_tmpdir/proxy \
---http-fastcgi-temp-path=$_tmpdir/fastcgi \
---http-scgi-temp-path=$_tmpdir/scgi \
---http-uwsgi-temp-path=$_tmpdir/uwsgi \
---with-imap --with-imap_ssl_module \
---with-ipv6 --with-pcre-jit \
---with-file-aio \
---with-http_dav_module \
---with-http_geoip_module \
---with-http_gzip_static_module \
---with-http_realip_module \
---with-http_ssl_module \
---with-http_stub_status_module \
---add-module=/usr/lib/passenger/ext/nginx \
-#--with-http_mp4_module \
-#--with-http_addition_module \
-#--with-http_xslt_module \
-#--with-http_image_filter_module \
-#--with-http_sub_module \
-#--with-http_flv_module \
-#--with-http_random_index_module \
-#--with-http_secure_link_module \
-#--with-http_degradation_module \
-#--with-http_perl_module \
-
-   make
-}
-
-package() {
-   cd $srcdir/$pkgname-$pkgver
-   make DESTDIR=$pkgdir install
-
-   sed -e 's|\user\s\+\w\+;|user html;|g' \
-   -e '44s|html|/usr/share/nginx/html|' \
-   -e 

[arch-commits] Commit in haskell-digest/trunk (PKGBUILD)

2013-04-24 Thread Daniel Micay
Date: Wednesday, April 24, 2013 @ 17:35:03
  Author: thestinger
Revision: 7

upgpkg: haskell-digest 0.0.1.2-1

Modified:
  haskell-digest/trunk/PKGBUILD

--+
 PKGBUILD |9 -
 1 file changed, 4 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-24 15:32:13 UTC (rev 6)
+++ PKGBUILD2013-04-24 15:35:03 UTC (rev 7)
@@ -4,17 +4,16 @@
 
 _hkgname=digest
 pkgname=haskell-digest
-pkgver=0.0.1.1
-pkgrel=2
+pkgver=0.0.1.2
+pkgrel=1
 pkgdesc='Various cryptographic hashes for bytestrings; CRC32 and Adler32 for 
now.'
 url=http://hackage.haskell.org/package/$_hkgname;
 license=(custom:BSD3)
 arch=('i686' 'x86_64')
-makedepends=('ghc')
-depends=('haskell-bytestring')
+depends=('ghc' 'zlib')
 
source=(http://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-${pkgver}.tar.gz;)
 install=$pkgname.install
-sha256sums=('7bb8b85959cfb3c6539aa2f2104c14aec9758a3a5d6039aba975299fdcd704d4')
+sha256sums=('641717eb16392abf8965986a9e8dc21eebf1d97775bbb6923c7b7f8fee17fe11')
 
 build() {
   cd $srcdir/$_hkgname-$pkgver



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

2013-04-24 Thread Daniel Micay
Date: Wednesday, April 24, 2013 @ 17:35:35
  Author: thestinger
Revision: 8

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

Added:
  haskell-digest/repos/community-staging-i686/
  haskell-digest/repos/community-staging-i686/PKGBUILD
(from rev 7, haskell-digest/trunk/PKGBUILD)
  haskell-digest/repos/community-staging-i686/haskell-digest.install
(from rev 7, haskell-digest/trunk/haskell-digest.install)
  haskell-digest/repos/community-staging-x86_64/
  haskell-digest/repos/community-staging-x86_64/PKGBUILD
(from rev 7, haskell-digest/trunk/PKGBUILD)
  haskell-digest/repos/community-staging-x86_64/haskell-digest.install
(from rev 7, haskell-digest/trunk/haskell-digest.install)

-+
 community-staging-i686/PKGBUILD |   39 ++
 community-staging-i686/haskell-digest.install   |   23 
 community-staging-x86_64/PKGBUILD   |   39 ++
 community-staging-x86_64/haskell-digest.install |   23 
 4 files changed, 124 insertions(+)

Copied: haskell-digest/repos/community-staging-i686/PKGBUILD (from rev 7, 
haskell-digest/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-04-24 15:35:35 UTC (rev 8)
@@ -0,0 +1,39 @@
+# Maintainer: Daniel Micay danielmi...@gmail.com
+# Contributor: Arch Haskell Team 
+# Contributor: Lex Black autumn-wind at web dot de
+
+_hkgname=digest
+pkgname=haskell-digest
+pkgver=0.0.1.2
+pkgrel=1
+pkgdesc='Various cryptographic hashes for bytestrings; CRC32 and Adler32 for 
now.'
+url=http://hackage.haskell.org/package/$_hkgname;
+license=(custom:BSD3)
+arch=('i686' 'x86_64')
+depends=('ghc' 'zlib')
+source=(http://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-${pkgver}.tar.gz;)
+install=$pkgname.install
+sha256sums=('641717eb16392abf8965986a9e8dc21eebf1d97775bbb6923c7b7f8fee17fe11')
+
+build() {
+  cd $srcdir/$_hkgname-$pkgver
+  runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--libsubdir=\$compiler/site-local/\$pkgid
+  runhaskell Setup build
+  runhaskell Setup haddock
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+
+package() {
+  cd $srcdir/$_hkgname-$pkgver
+  install -Dm744 register.sh $pkgdir/usr/share/haskell/$pkgname/register.sh
+  install -m744 unregister.sh 
$pkgdir/usr/share/haskell/$pkgname/unregister.sh
+  install -dm755 $pkgdir/usr/share/doc/ghc/html/libraries
+  ln -s /usr/share/doc/$pkgname/html 
$pkgdir/usr/share/doc/ghc/html/libraries/${_hkgname}
+  runhaskell Setup copy --destdir=$pkgdir
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+  rm -f $pkgdir/usr/share/doc/$pkgname/LICENSE
+}

Copied: haskell-digest/repos/community-staging-i686/haskell-digest.install 
(from rev 7, haskell-digest/trunk/haskell-digest.install)
===
--- community-staging-i686/haskell-digest.install   
(rev 0)
+++ community-staging-i686/haskell-digest.install   2013-04-24 15:35:35 UTC 
(rev 8)
@@ -0,0 +1,23 @@
+HS_DIR=usr/share/haskell/haskell-digest
+
+post_install() {
+  $HS_DIR/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+pre_upgrade() {
+  $HS_DIR/unregister.sh
+}
+
+post_upgrade() {
+  $HS_DIR/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+pre_remove() {
+  $HS_DIR/unregister.sh
+}
+
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-digest/repos/community-staging-x86_64/PKGBUILD (from rev 7, 
haskell-digest/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2013-04-24 15:35:35 UTC (rev 8)
@@ -0,0 +1,39 @@
+# Maintainer: Daniel Micay danielmi...@gmail.com
+# Contributor: Arch Haskell Team 
+# Contributor: Lex Black autumn-wind at web dot de
+
+_hkgname=digest
+pkgname=haskell-digest
+pkgver=0.0.1.2
+pkgrel=1
+pkgdesc='Various cryptographic hashes for bytestrings; CRC32 and Adler32 for 
now.'
+url=http://hackage.haskell.org/package/$_hkgname;
+license=(custom:BSD3)
+arch=('i686' 'x86_64')
+depends=('ghc' 'zlib')
+source=(http://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-${pkgver}.tar.gz;)
+install=$pkgname.install
+sha256sums=('641717eb16392abf8965986a9e8dc21eebf1d97775bbb6923c7b7f8fee17fe11')
+
+build() {
+  cd $srcdir/$_hkgname-$pkgver
+  runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
+

[arch-commits] Commit in haskell-zip-archive/trunk (PKGBUILD)

2013-04-24 Thread Daniel Micay
Date: Wednesday, April 24, 2013 @ 17:45:42
  Author: thestinger
Revision: 9

upgpkg: haskell-zip-archive 0.1.3.4-3

Modified:
  haskell-zip-archive/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-24 15:35:35 UTC (rev 8)
+++ PKGBUILD2013-04-24 15:45:42 UTC (rev 9)
@@ -5,7 +5,7 @@
 pkgname=haskell-zip-archive
 _hkgname=zip-archive
 pkgver=0.1.3.4
-pkgrel=2
+pkgrel=3
 pkgdesc=Library for creating and modifying zip archives.
 url=http://github.com/jgm/zip-archive;
 license=(custom:BSD3)



[arch-commits] Commit in haskell-zip-archive/repos (6 files)

2013-04-24 Thread Daniel Micay
Date: Wednesday, April 24, 2013 @ 17:46:21
  Author: thestinger
Revision: 88890

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

Added:
  haskell-zip-archive/repos/community-staging-i686/
  haskell-zip-archive/repos/community-staging-i686/PKGBUILD
(from rev 9, haskell-zip-archive/trunk/PKGBUILD)
  haskell-zip-archive/repos/community-staging-i686/haskell-zip-archive.install
(from rev 9, haskell-zip-archive/trunk/haskell-zip-archive.install)
  haskell-zip-archive/repos/community-staging-x86_64/
  haskell-zip-archive/repos/community-staging-x86_64/PKGBUILD
(from rev 9, haskell-zip-archive/trunk/PKGBUILD)
  haskell-zip-archive/repos/community-staging-x86_64/haskell-zip-archive.install
(from rev 9, haskell-zip-archive/trunk/haskell-zip-archive.install)

--+
 community-staging-i686/PKGBUILD  |   43 +
 community-staging-i686/haskell-zip-archive.install   |   23 +
 community-staging-x86_64/PKGBUILD|   43 +
 community-staging-x86_64/haskell-zip-archive.install |   23 +
 4 files changed, 132 insertions(+)

Copied: haskell-zip-archive/repos/community-staging-i686/PKGBUILD (from rev 
9, haskell-zip-archive/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-04-24 15:46:21 UTC (rev 88890)
@@ -0,0 +1,43 @@
+# Maintainer: Daniel Micay danielmi...@gmail.com
+# Contributor: Arch Haskell Team 
+# Contributor: Lex Black autumn-wind at web dot de
+
+pkgname=haskell-zip-archive
+_hkgname=zip-archive
+pkgver=0.1.3.4
+pkgrel=3
+pkgdesc=Library for creating and modifying zip archives.
+url=http://github.com/jgm/zip-archive;
+license=(custom:BSD3)
+arch=('i686' 'x86_64')
+makedepends=('ghc')
+depends=(haskell-array haskell-binary haskell-bytestring haskell-containers
+ haskell-digest haskell-directory haskell-filepath haskell-mtl
+ haskell-old-time haskell-pretty haskell-utf8-string haskell-zlib)
+source=(http://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/${_hkgname}-${pkgver}.tar.gz;)
+install=$pkgname.install
+sha256sums=('cbef41120d995a87702f7bb0c1ed8107f3f36a61714b2e31d9d19df5466e7643')
+
+build() {
+  cd $srcdir/$_hkgname-$pkgver
+
+  runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--libsubdir=\$compiler/site-local/\$pkgid
+  runhaskell Setup build
+  runhaskell Setup haddock
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+
+package() {
+  cd ${srcdir}/${_hkgname}-${pkgver}
+  install -Dm744 register.sh $pkgdir/usr/share/haskell/$pkgname/register.sh
+  install -m744 unregister.sh 
$pkgdir/usr/share/haskell/$pkgname/unregister.sh
+  install -dm755 $pkgdir/usr/share/doc/ghc/html/libraries
+  ln -s /usr/share/doc/$pkgname/html 
$pkgdir/usr/share/doc/ghc/html/libraries/$_hkgname
+  runhaskell Setup copy --destdir=$pkgdir
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+  rm -f $pkgdir/usr/share/doc/$pkgname/LICENSE
+}

Copied: 
haskell-zip-archive/repos/community-staging-i686/haskell-zip-archive.install 
(from rev 9, haskell-zip-archive/trunk/haskell-zip-archive.install)
===
--- community-staging-i686/haskell-zip-archive.install  
(rev 0)
+++ community-staging-i686/haskell-zip-archive.install  2013-04-24 15:46:21 UTC 
(rev 88890)
@@ -0,0 +1,23 @@
+HS_DIR=usr/share/haskell/haskell-zip-archive
+
+post_install() {
+  $HS_DIR/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+pre_upgrade() {
+  $HS_DIR/unregister.sh
+}
+
+post_upgrade() {
+  $HS_DIR/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+pre_remove() {
+  $HS_DIR/unregister.sh
+}
+
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-zip-archive/repos/community-staging-x86_64/PKGBUILD (from rev 
9, haskell-zip-archive/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2013-04-24 15:46:21 UTC (rev 88890)
@@ -0,0 +1,43 @@
+# Maintainer: Daniel Micay danielmi...@gmail.com
+# Contributor: Arch Haskell Team 
+# Contributor: Lex Black autumn-wind at web dot de
+
+pkgname=haskell-zip-archive
+_hkgname=zip-archive
+pkgver=0.1.3.4
+pkgrel=3
+pkgdesc=Library for creating and modifying zip archives.
+url=http://github.com/jgm/zip-archive;
+license=(custom:BSD3)
+arch=('i686' 'x86_64')
+makedepends=('ghc')
+depends=(haskell-array haskell-binary 

[arch-commits] Commit in haskell-base64-bytestring/trunk (PKGBUILD)

2013-04-24 Thread Daniel Micay
Date: Wednesday, April 24, 2013 @ 17:49:53
  Author: thestinger
Revision: 88891

upgpkg: haskell-base64-bytestring 1.0.0.1-2

Modified:
  haskell-base64-bytestring/trunk/PKGBUILD

--+
 PKGBUILD |3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-24 15:46:21 UTC (rev 88890)
+++ PKGBUILD2013-04-24 15:49:53 UTC (rev 88891)
@@ -5,14 +5,13 @@
 _hkgname=base64-bytestring
 pkgname=haskell-base64-bytestring
 pkgver=1.0.0.1
-pkgrel=1
+pkgrel=2
 pkgdesc=Fast base64 encoding and deconding for ByteStrings
 url=https://github.com/bos/base64-bytestring;
 license=(custom:BSD3)
 arch=('i686' 'x86_64')
 makedepends=('ghc')
 depends=('haskell-bytestring')
-options=('strip')
 
source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
 install=$pkgname.install
 sha256sums=('ab25abf4b00a2f52b270bc3ed43f1d59f16c8eec9d7dffb14df1e9265b233b50')



[arch-commits] Commit in haskell-base64-bytestring/repos (6 files)

2013-04-24 Thread Daniel Micay
Date: Wednesday, April 24, 2013 @ 17:50:35
  Author: thestinger
Revision: 88892

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

Added:
  haskell-base64-bytestring/repos/community-staging-i686/
  haskell-base64-bytestring/repos/community-staging-i686/PKGBUILD
(from rev 88891, haskell-base64-bytestring/trunk/PKGBUILD)
  
haskell-base64-bytestring/repos/community-staging-i686/haskell-base64-bytestring.install
(from rev 88891, 
haskell-base64-bytestring/trunk/haskell-base64-bytestring.install)
  haskell-base64-bytestring/repos/community-staging-x86_64/
  haskell-base64-bytestring/repos/community-staging-x86_64/PKGBUILD
(from rev 88891, haskell-base64-bytestring/trunk/PKGBUILD)
  
haskell-base64-bytestring/repos/community-staging-x86_64/haskell-base64-bytestring.install
(from rev 88891, 
haskell-base64-bytestring/trunk/haskell-base64-bytestring.install)

+
 community-staging-i686/PKGBUILD|   40 +++
 community-staging-i686/haskell-base64-bytestring.install   |   23 ++
 community-staging-x86_64/PKGBUILD  |   40 +++
 community-staging-x86_64/haskell-base64-bytestring.install |   23 ++
 4 files changed, 126 insertions(+)

Copied: haskell-base64-bytestring/repos/community-staging-i686/PKGBUILD (from 
rev 88891, haskell-base64-bytestring/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-04-24 15:50:35 UTC (rev 88892)
@@ -0,0 +1,40 @@
+# Maintainer: Daniel Micay danielmi...@gmail.com
+# Contributor: Arch Haskell Team 
+# Contributor: Lex Black autumn-wind at web dot de
+
+_hkgname=base64-bytestring
+pkgname=haskell-base64-bytestring
+pkgver=1.0.0.1
+pkgrel=2
+pkgdesc=Fast base64 encoding and deconding for ByteStrings
+url=https://github.com/bos/base64-bytestring;
+license=(custom:BSD3)
+arch=('i686' 'x86_64')
+makedepends=('ghc')
+depends=('haskell-bytestring')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install=$pkgname.install
+sha256sums=('ab25abf4b00a2f52b270bc3ed43f1d59f16c8eec9d7dffb14df1e9265b233b50')
+
+build() {
+  cd $srcdir/$_hkgname-$pkgver
+  runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--libsubdir=\$compiler/site-local/\$pkgid
+  runhaskell Setup build
+  runhaskell Setup haddock
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+
+package() {
+  cd $srcdir/$_hkgname-$pkgver
+  install -Dm744 register.sh $pkgdir/usr/share/haskell/$pkgname/register.sh
+  install -m744 unregister.sh 
$pkgdir/usr/share/haskell/$pkgname/unregister.sh
+  install -d -m755 $pkgdir/usr/share/doc/ghc/html/libraries
+  ln -s /usr/share/doc/$pkgname/html 
$pkgdir/usr/share/doc/ghc/html/libraries/$_hkgname
+  runhaskell Setup copy --destdir=$pkgdir
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+  rm -f $pkgdir/usr/share/doc/$pkgname/LICENSE
+}

Copied: 
haskell-base64-bytestring/repos/community-staging-i686/haskell-base64-bytestring.install
 (from rev 88891, 
haskell-base64-bytestring/trunk/haskell-base64-bytestring.install)
===
--- community-staging-i686/haskell-base64-bytestring.install
(rev 0)
+++ community-staging-i686/haskell-base64-bytestring.install2013-04-24 
15:50:35 UTC (rev 88892)
@@ -0,0 +1,23 @@
+HS_DIR=usr/share/haskell/haskell-base64-bytestring
+
+post_install() {
+  $HS_DIR/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+pre_upgrade() {
+  $HS_DIR/unregister.sh
+}
+
+post_upgrade() {
+  $HS_DIR/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+pre_remove() {
+  $HS_DIR/unregister.sh
+}
+
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-base64-bytestring/repos/community-staging-x86_64/PKGBUILD (from 
rev 88891, haskell-base64-bytestring/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2013-04-24 15:50:35 UTC (rev 88892)
@@ -0,0 +1,40 @@
+# Maintainer: Daniel Micay danielmi...@gmail.com
+# Contributor: Arch Haskell Team 
+# Contributor: Lex Black autumn-wind at web dot de
+
+_hkgname=base64-bytestring
+pkgname=haskell-base64-bytestring
+pkgver=1.0.0.1
+pkgrel=2
+pkgdesc=Fast base64 encoding and deconding for ByteStrings
+url=https://github.com/bos/base64-bytestring;
+license=(custom:BSD3)
+arch=('i686' 'x86_64')
+makedepends=('ghc')

[arch-commits] Commit in haskell-xml/trunk (PKGBUILD)

2013-04-24 Thread Daniel Micay
Date: Wednesday, April 24, 2013 @ 17:55:39
  Author: thestinger
Revision: 88893

upgpkg: haskell-xml 1.3.13-2

Modified:
  haskell-xml/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-24 15:50:35 UTC (rev 88892)
+++ PKGBUILD2013-04-24 15:55:39 UTC (rev 88893)
@@ -5,7 +5,7 @@
 _hkgname=xml
 pkgname=haskell-xml
 pkgver=1.3.13
-pkgrel=1
+pkgrel=2
 pkgdesc=A simple XML library.
 url=http://code.galois.com;
 license=(custom:BSD3)



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

2013-04-24 Thread Daniel Micay
Date: Wednesday, April 24, 2013 @ 17:56:14
  Author: thestinger
Revision: 88894

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

Added:
  haskell-xml/repos/community-staging-i686/
  haskell-xml/repos/community-staging-i686/PKGBUILD
(from rev 88893, haskell-xml/trunk/PKGBUILD)
  haskell-xml/repos/community-staging-i686/haskell-xml.install
(from rev 88893, haskell-xml/trunk/haskell-xml.install)
  haskell-xml/repos/community-staging-x86_64/
  haskell-xml/repos/community-staging-x86_64/PKGBUILD
(from rev 88893, haskell-xml/trunk/PKGBUILD)
  haskell-xml/repos/community-staging-x86_64/haskell-xml.install
(from rev 88893, haskell-xml/trunk/haskell-xml.install)

--+
 community-staging-i686/PKGBUILD  |   41 +
 community-staging-i686/haskell-xml.install   |   23 ++
 community-staging-x86_64/PKGBUILD|   41 +
 community-staging-x86_64/haskell-xml.install |   23 ++
 4 files changed, 128 insertions(+)

Copied: haskell-xml/repos/community-staging-i686/PKGBUILD (from rev 88893, 
haskell-xml/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-04-24 15:56:14 UTC (rev 88894)
@@ -0,0 +1,41 @@
+# Maintainer: Daniel Micay danielmi...@gmail.com
+# Contributor: Don Stewart d...@galois.com
+# Contributor: Lex Black autumn-wind at web dot de
+
+_hkgname=xml
+pkgname=haskell-xml
+pkgver=1.3.13
+pkgrel=2
+pkgdesc=A simple XML library.
+url=http://code.galois.com;
+license=(custom:BSD3)
+arch=('i686' 'x86_64')
+makedepends=()
+depends=(ghc haskell-bytestring haskell-text)
+options=('strip')
+source=(http://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-${pkgver}.tar.gz;)
+install=$pkgname.install
+sha256sums=('c33607cef8a48d878b0e617e115135fc6f025fe43dcb65c2c7afb8285415b813')
+
+build() {
+  cd $srcdir/$_hkgname-$pkgver
+  runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--libsubdir=\$compiler/site-local/\$pkgid
+  runhaskell Setup build
+  runhaskell Setup haddock
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+
+package() {
+  cd $srcdir/$_hkgname-$pkgver
+  install -Dm744 register.sh $pkgdir/usr/share/haskell/$pkgname/register.sh
+  install -m744 unregister.sh 
$pkgdir/usr/share/haskell/$pkgname/unregister.sh
+  install -dm755 $pkgdir/usr/share/doc/ghc/html/libraries
+  ln -s /usr/share/doc/$pkgname/html 
$pkgdir/usr/share/doc/ghc/html/libraries/$_hkgname
+  runhaskell Setup copy --destdir=$pkgdir
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+  rm -f $pkgdir/usr/share/doc/$pkgname/LICENSE
+}

Copied: haskell-xml/repos/community-staging-i686/haskell-xml.install (from rev 
88893, haskell-xml/trunk/haskell-xml.install)
===
--- community-staging-i686/haskell-xml.install  (rev 0)
+++ community-staging-i686/haskell-xml.install  2013-04-24 15:56:14 UTC (rev 
88894)
@@ -0,0 +1,23 @@
+HS_DIR=usr/share/haskell/haskell-xml
+
+post_install() {
+  $HS_DIR/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+pre_upgrade() {
+  $HS_DIR/unregister.sh
+}
+
+post_upgrade() {
+  $HS_DIR/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+pre_remove() {
+  $HS_DIR/unregister.sh
+}
+
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-xml/repos/community-staging-x86_64/PKGBUILD (from rev 88893, 
haskell-xml/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2013-04-24 15:56:14 UTC (rev 88894)
@@ -0,0 +1,41 @@
+# Maintainer: Daniel Micay danielmi...@gmail.com
+# Contributor: Don Stewart d...@galois.com
+# Contributor: Lex Black autumn-wind at web dot de
+
+_hkgname=xml
+pkgname=haskell-xml
+pkgver=1.3.13
+pkgrel=2
+pkgdesc=A simple XML library.
+url=http://code.galois.com;
+license=(custom:BSD3)
+arch=('i686' 'x86_64')
+makedepends=()
+depends=(ghc haskell-bytestring haskell-text)
+options=('strip')
+source=(http://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-${pkgver}.tar.gz;)
+install=$pkgname.install
+sha256sums=('c33607cef8a48d878b0e617e115135fc6f025fe43dcb65c2c7afb8285415b813')
+
+build() {
+  cd $srcdir/$_hkgname-$pkgver
+  runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--libsubdir=\$compiler/site-local/\$pkgid
+  runhaskell Setup build
+  runhaskell 

[arch-commits] Commit in haskell-blaze-builder/trunk (PKGBUILD)

2013-04-24 Thread Daniel Micay
Date: Wednesday, April 24, 2013 @ 17:59:07
  Author: thestinger
Revision: 88895

upgpkg: haskell-blaze-builder 0.3.1.1-2

Modified:
  haskell-blaze-builder/trunk/PKGBUILD

--+
 PKGBUILD |3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-24 15:56:14 UTC (rev 88894)
+++ PKGBUILD2013-04-24 15:59:07 UTC (rev 88895)
@@ -5,14 +5,13 @@
 pkgname=haskell-blaze-builder
 _hkgname=blaze-builder
 pkgver=0.3.1.1
-pkgrel=1
+pkgrel=2
 pkgdesc=Efficient buffered output.
 url=http://github.com/meiersi/blaze-builder;
 license=(custom:BSD3)
 arch=('i686' 'x86_64')
 makedepends=('ghc')
 depends=('haskell-bytestring' 'haskell-text')
-options=('strip')
 
source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
 install=$pkgname.install
 sha256sums=('a12506f8afd650e4ed90e1e2379750035f8e83032a2d260eacc3757fe52cdcde')



[arch-commits] Commit in haskell-blaze-builder/repos (6 files)

2013-04-24 Thread Daniel Micay
Date: Wednesday, April 24, 2013 @ 17:59:36
  Author: thestinger
Revision: 88896

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

Added:
  haskell-blaze-builder/repos/community-staging-i686/
  haskell-blaze-builder/repos/community-staging-i686/PKGBUILD
(from rev 88895, haskell-blaze-builder/trunk/PKGBUILD)
  
haskell-blaze-builder/repos/community-staging-i686/haskell-blaze-builder.install
(from rev 88895, haskell-blaze-builder/trunk/haskell-blaze-builder.install)
  haskell-blaze-builder/repos/community-staging-x86_64/
  haskell-blaze-builder/repos/community-staging-x86_64/PKGBUILD
(from rev 88895, haskell-blaze-builder/trunk/PKGBUILD)
  
haskell-blaze-builder/repos/community-staging-x86_64/haskell-blaze-builder.install
(from rev 88895, haskell-blaze-builder/trunk/haskell-blaze-builder.install)

+
 community-staging-i686/PKGBUILD|   41 +++
 community-staging-i686/haskell-blaze-builder.install   |   24 
 community-staging-x86_64/PKGBUILD  |   41 +++
 community-staging-x86_64/haskell-blaze-builder.install |   24 
 4 files changed, 130 insertions(+)

Copied: haskell-blaze-builder/repos/community-staging-i686/PKGBUILD (from rev 
88895, haskell-blaze-builder/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-04-24 15:59:36 UTC (rev 88896)
@@ -0,0 +1,41 @@
+# Maintainer: Daniel Micay danielmi...@gmail.com
+# Contributor: Arch Haskell Team 
+# Contributor: Lex Black autumn-wind at web dot de
+
+pkgname=haskell-blaze-builder
+_hkgname=blaze-builder
+pkgver=0.3.1.1
+pkgrel=2
+pkgdesc=Efficient buffered output.
+url=http://github.com/meiersi/blaze-builder;
+license=(custom:BSD3)
+arch=('i686' 'x86_64')
+makedepends=('ghc')
+depends=('haskell-bytestring' 'haskell-text')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install=$pkgname.install
+sha256sums=('a12506f8afd650e4ed90e1e2379750035f8e83032a2d260eacc3757fe52cdcde')
+
+build() {
+  cd $srcdir/$_hkgname-$pkgver
+
+  runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--libsubdir=\$compiler/site-local/\$pkgid
+  runhaskell Setup build
+  runhaskell Setup haddock
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+
+package() {
+  cd $srcdir/$_hkgname-$pkgver
+  install -Dm744 register.sh $pkgdir/usr/share/haskell/$pkgname/register.sh
+  install -m744 unregister.sh 
$pkgdir/usr/share/haskell/$pkgname/unregister.sh
+  install -dm755 $pkgdir/usr/share/doc/ghc/html/libraries
+  ln -s /usr/share/doc/$pkgname/html 
$pkgdir/usr/share/doc/ghc/html/libraries/$_hkgname
+  runhaskell Setup copy --destdir=$pkgdir
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+  rm -f $pkgdir/usr/share/doc/$pkgname/LICENSE
+}

Copied: 
haskell-blaze-builder/repos/community-staging-i686/haskell-blaze-builder.install
 (from rev 88895, haskell-blaze-builder/trunk/haskell-blaze-builder.install)
===
--- community-staging-i686/haskell-blaze-builder.install
(rev 0)
+++ community-staging-i686/haskell-blaze-builder.install2013-04-24 
15:59:36 UTC (rev 88896)
@@ -0,0 +1,24 @@
+HS_DIR=usr/share/haskell/haskell-blaze-builder
+
+# functions
+post_install() {
+  $HS_DIR/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+pre_upgrade() {
+  $HS_DIR/unregister.sh
+}
+
+post_upgrade() {
+  $HS_DIR/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+pre_remove() {
+  $HS_DIR/unregister.sh
+}
+
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-blaze-builder/repos/community-staging-x86_64/PKGBUILD (from rev 
88895, haskell-blaze-builder/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2013-04-24 15:59:36 UTC (rev 88896)
@@ -0,0 +1,41 @@
+# Maintainer: Daniel Micay danielmi...@gmail.com
+# Contributor: Arch Haskell Team 
+# Contributor: Lex Black autumn-wind at web dot de
+
+pkgname=haskell-blaze-builder
+_hkgname=blaze-builder
+pkgver=0.3.1.1
+pkgrel=2
+pkgdesc=Efficient buffered output.
+url=http://github.com/meiersi/blaze-builder;
+license=(custom:BSD3)
+arch=('i686' 'x86_64')
+makedepends=('ghc')
+depends=('haskell-bytestring' 'haskell-text')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)

[arch-commits] Commit in haskell-blaze-markup/trunk (PKGBUILD)

2013-04-24 Thread Daniel Micay
Date: Wednesday, April 24, 2013 @ 18:02:40
  Author: thestinger
Revision: 88897

upgpkg: haskell-blaze-markup 0.5.1.5-2

Modified:
  haskell-blaze-markup/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-24 15:59:36 UTC (rev 88896)
+++ PKGBUILD2013-04-24 16:02:40 UTC (rev 88897)
@@ -4,7 +4,7 @@
 _hkgname=blaze-markup
 pkgname=haskell-blaze-markup
 pkgver=0.5.1.5
-pkgrel=1
+pkgrel=2
 pkgdesc=Core modules of a blazingly fast markup combinator library for the 
Haskell programming language
 url=http://hackage.haskell.org/package/${_hkgname};
 license=(custom:BSD3)



[arch-commits] Commit in haskell-blaze-markup/repos (6 files)

2013-04-24 Thread Daniel Micay
Date: Wednesday, April 24, 2013 @ 18:03:11
  Author: thestinger
Revision: 88898

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

Added:
  haskell-blaze-markup/repos/community-staging-i686/
  haskell-blaze-markup/repos/community-staging-i686/PKGBUILD
(from rev 88897, haskell-blaze-markup/trunk/PKGBUILD)
  haskell-blaze-markup/repos/community-staging-i686/haskell-blaze-markup.install
(from rev 88897, haskell-blaze-markup/trunk/haskell-blaze-markup.install)
  haskell-blaze-markup/repos/community-staging-x86_64/
  haskell-blaze-markup/repos/community-staging-x86_64/PKGBUILD
(from rev 88897, haskell-blaze-markup/trunk/PKGBUILD)
  
haskell-blaze-markup/repos/community-staging-x86_64/haskell-blaze-markup.install
(from rev 88897, haskell-blaze-markup/trunk/haskell-blaze-markup.install)

---+
 community-staging-i686/PKGBUILD   |   38 
 community-staging-i686/haskell-blaze-markup.install   |   22 +
 community-staging-x86_64/PKGBUILD |   38 
 community-staging-x86_64/haskell-blaze-markup.install |   22 +
 4 files changed, 120 insertions(+)

Copied: haskell-blaze-markup/repos/community-staging-i686/PKGBUILD (from rev 
88897, haskell-blaze-markup/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-04-24 16:03:11 UTC (rev 88898)
@@ -0,0 +1,38 @@
+# Maintainer: Daniel Micay danielmi...@gmail.com
+# Contributor: Lex Black autumn-wind at web dot de
+
+_hkgname=blaze-markup
+pkgname=haskell-blaze-markup
+pkgver=0.5.1.5
+pkgrel=2
+pkgdesc=Core modules of a blazingly fast markup combinator library for the 
Haskell programming language
+url=http://hackage.haskell.org/package/${_hkgname};
+license=(custom:BSD3)
+arch=('i686' 'x86_64')
+makedepends=('ghc')
+depends=('haskell-blaze-builder' 'haskell-bytestring-show' 'haskell-text')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+install=$pkgname.install
+md5sums=('faf0c80851b34987e74541b23cef3218')
+
+build() {
+  cd $srcdir/$_hkgname-$pkgver
+  runhaskell Setup configure -O ${PKGBUILD_HASKELL_ENABLE_PROFILING:+-p } 
--enable-split-objs --enable-shared \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname 
--libsubdir=\$compiler/site-local/\$pkgid
+  runhaskell Setup build
+  runhaskell Setup haddock
+  runhaskell Setup register   --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+
+package() {
+  cd $srcdir/$_hkgname-$pkgver
+  install -Dm744 register.sh $pkgdir/usr/share/haskell/$pkgname/register.sh
+  install -m744 unregister.sh 
$pkgdir/usr/share/haskell/$pkgname/unregister.sh
+  install -dm755 $pkgdir/usr/share/doc/ghc/html/libraries
+  ln -s /usr/share/doc/$pkgname/html 
$pkgdir/usr/share/doc/ghc/html/libraries/$_hkgname
+  runhaskell Setup copy --destdir=$pkgdir
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+  rm -f $pkgdir/usr/share/doc/$pkgname/LICENSE
+}

Copied: 
haskell-blaze-markup/repos/community-staging-i686/haskell-blaze-markup.install 
(from rev 88897, haskell-blaze-markup/trunk/haskell-blaze-markup.install)
===
--- community-staging-i686/haskell-blaze-markup.install 
(rev 0)
+++ community-staging-i686/haskell-blaze-markup.install 2013-04-24 16:03:11 UTC 
(rev 88898)
@@ -0,0 +1,22 @@
+HS_DIR=usr/share/haskell/haskell-blaze-markup
+
+post_install() {
+  $HS_DIR/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+pre_upgrade() {
+  $HS_DIR/unregister.sh
+}
+
+post_upgrade() {
+  $HS_DIR/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+pre_remove() {
+  $HS_DIR/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-blaze-markup/repos/community-staging-x86_64/PKGBUILD (from rev 
88897, haskell-blaze-markup/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2013-04-24 16:03:11 UTC (rev 88898)
@@ -0,0 +1,38 @@
+# Maintainer: Daniel Micay danielmi...@gmail.com
+# Contributor: Lex Black autumn-wind at web dot de
+
+_hkgname=blaze-markup
+pkgname=haskell-blaze-markup
+pkgver=0.5.1.5
+pkgrel=2
+pkgdesc=Core modules of a blazingly fast markup combinator library for the 
Haskell programming language
+url=http://hackage.haskell.org/package/${_hkgname};
+license=(custom:BSD3)
+arch=('i686' 'x86_64')
+makedepends=('ghc')
+depends=('haskell-blaze-builder' 'haskell-bytestring-show' 'haskell-text')

[arch-commits] Commit in haskell-blaze-html/trunk (PKGBUILD)

2013-04-24 Thread Daniel Micay
Date: Wednesday, April 24, 2013 @ 18:17:26
  Author: thestinger
Revision: 88899

upgpkg: haskell-blaze-html 0.6.1.1-2

Modified:
  haskell-blaze-html/trunk/PKGBUILD

--+
 PKGBUILD |3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-24 16:03:11 UTC (rev 88898)
+++ PKGBUILD2013-04-24 16:17:26 UTC (rev 88899)
@@ -3,14 +3,13 @@
 _hkgname=blaze-html
 pkgname=haskell-blaze-html
 pkgver=0.6.1.1
-pkgrel=1
+pkgrel=2
 pkgdesc=A blazingly fast HTML combinator library for Haskell
 url=http://hackage.haskell.org/package/${_hkgname};
 license=('custom:BSD3')
 arch=('i686' 'x86_64')
 makedepends=()
 depends=('ghc' 'haskell-blaze-builder0.4' 'haskell-blaze-markup0.6' 
'haskell-bytestring-show' 'haskell-text=0.11.0.5')
-options=('strip')
 
source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
 install=$pkgname.install
 md5sums=('f9eda0a990cda190538b9e6ff73b05f3')



[arch-commits] Commit in haskell-blaze-html/repos (6 files)

2013-04-24 Thread Daniel Micay
Date: Wednesday, April 24, 2013 @ 18:17:57
  Author: thestinger
Revision: 88900

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

Added:
  haskell-blaze-html/repos/community-staging-i686/
  haskell-blaze-html/repos/community-staging-i686/PKGBUILD
(from rev 88899, haskell-blaze-html/trunk/PKGBUILD)
  haskell-blaze-html/repos/community-staging-i686/haskell-blaze-html.install
(from rev 88899, haskell-blaze-html/trunk/haskell-blaze-html.install)
  haskell-blaze-html/repos/community-staging-x86_64/
  haskell-blaze-html/repos/community-staging-x86_64/PKGBUILD
(from rev 88899, haskell-blaze-html/trunk/PKGBUILD)
  haskell-blaze-html/repos/community-staging-x86_64/haskell-blaze-html.install
(from rev 88899, haskell-blaze-html/trunk/haskell-blaze-html.install)

-+
 community-staging-i686/PKGBUILD |   36 ++
 community-staging-i686/haskell-blaze-html.install   |   23 +++
 community-staging-x86_64/PKGBUILD   |   36 ++
 community-staging-x86_64/haskell-blaze-html.install |   23 +++
 4 files changed, 118 insertions(+)

Copied: haskell-blaze-html/repos/community-staging-i686/PKGBUILD (from rev 
88899, haskell-blaze-html/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-04-24 16:17:57 UTC (rev 88900)
@@ -0,0 +1,36 @@
+# Maintainer: Daniel Micay danielmi...@gmail.com
+# Contributor: Aleksandar Micovic metal...@gmail.com
+_hkgname=blaze-html
+pkgname=haskell-blaze-html
+pkgver=0.6.1.1
+pkgrel=2
+pkgdesc=A blazingly fast HTML combinator library for Haskell
+url=http://hackage.haskell.org/package/${_hkgname};
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+makedepends=()
+depends=('ghc' 'haskell-blaze-builder0.4' 'haskell-blaze-markup0.6' 
'haskell-bytestring-show' 'haskell-text=0.11.0.5')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+install=$pkgname.install
+md5sums=('f9eda0a990cda190538b9e6ff73b05f3')
+
+build() {
+  cd ${srcdir}/${_hkgname}-${pkgver}
+  runhaskell Setup configure -O ${PKGBUILD_HASKELL_ENABLE_PROFILING:+-p } 
--enable-split-objs --enable-shared \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname 
--libsubdir=\$compiler/site-local/\$pkgid
+  runhaskell Setup build
+  runhaskell Setup haddock
+  runhaskell Setup register   --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+package() {
+  cd ${srcdir}/${_hkgname}-${pkgver}
+  install -Dm744 register.sh $pkgdir/usr/share/haskell/$pkgname/register.sh
+  install -m744 unregister.sh 
$pkgdir/usr/share/haskell/$pkgname/unregister.sh
+  install -dm755 $pkgdir/usr/share/doc/ghc/html/libraries
+  ln -s /usr/share/doc/$pkgname/html 
$pkgdir/usr/share/doc/ghc/html/libraries/${_hkgname}
+  runhaskell Setup copy --destdir=$pkgdir
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+  rm -f $pkgdir/usr/share/doc/$pkgname/LICENSE
+}

Copied: 
haskell-blaze-html/repos/community-staging-i686/haskell-blaze-html.install 
(from rev 88899, haskell-blaze-html/trunk/haskell-blaze-html.install)
===
--- community-staging-i686/haskell-blaze-html.install   
(rev 0)
+++ community-staging-i686/haskell-blaze-html.install   2013-04-24 16:17:57 UTC 
(rev 88900)
@@ -0,0 +1,23 @@
+HS_DIR=usr/share/haskell/haskell-blaze-html
+
+post_install() {
+  $HS_DIR/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+pre_upgrade() {
+  $HS_DIR/unregister.sh
+}
+
+post_upgrade() {
+  $HS_DIR/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+pre_remove() {
+  $HS_DIR/unregister.sh
+}
+
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-blaze-html/repos/community-staging-x86_64/PKGBUILD (from rev 
88899, haskell-blaze-html/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2013-04-24 16:17:57 UTC (rev 88900)
@@ -0,0 +1,36 @@
+# Maintainer: Daniel Micay danielmi...@gmail.com
+# Contributor: Aleksandar Micovic metal...@gmail.com
+_hkgname=blaze-html
+pkgname=haskell-blaze-html
+pkgver=0.6.1.1
+pkgrel=2
+pkgdesc=A blazingly fast HTML combinator library for Haskell
+url=http://hackage.haskell.org/package/${_hkgname};
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+makedepends=()
+depends=('ghc' 'haskell-blaze-builder0.4' 'haskell-blaze-markup0.6' 
'haskell-bytestring-show' 'haskell-text=0.11.0.5')

[arch-commits] Commit in haskell-json/trunk (PKGBUILD)

2013-04-24 Thread Daniel Micay
Date: Wednesday, April 24, 2013 @ 18:23:42
  Author: thestinger
Revision: 88901

upgpkg: haskell-json 0.7-5

Modified:
  haskell-json/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-24 16:17:57 UTC (rev 88900)
+++ PKGBUILD2013-04-24 16:23:42 UTC (rev 88901)
@@ -3,7 +3,7 @@
 _hkgname=json
 pkgname=haskell-json
 pkgver=0.7
-pkgrel=4
+pkgrel=5
 pkgdesc=Support for serialising Haskell to and from JSON
 url=http://hackage.haskell.org/package/${_hkgname};
 license=(custom:BSD3)



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

2013-04-24 Thread Daniel Micay
Date: Wednesday, April 24, 2013 @ 18:24:12
  Author: thestinger
Revision: 88902

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

Added:
  haskell-json/repos/community-staging-i686/
  haskell-json/repos/community-staging-i686/PKGBUILD
(from rev 88901, haskell-json/trunk/PKGBUILD)
  haskell-json/repos/community-staging-i686/haskell-json.install
(from rev 88901, haskell-json/trunk/haskell-json.install)
  haskell-json/repos/community-staging-x86_64/
  haskell-json/repos/community-staging-x86_64/PKGBUILD
(from rev 88901, haskell-json/trunk/PKGBUILD)
  haskell-json/repos/community-staging-x86_64/haskell-json.install
(from rev 88901, haskell-json/trunk/haskell-json.install)

---+
 community-staging-i686/PKGBUILD   |   39 
 community-staging-i686/haskell-json.install   |   23 ++
 community-staging-x86_64/PKGBUILD |   39 
 community-staging-x86_64/haskell-json.install |   23 ++
 4 files changed, 124 insertions(+)

Copied: haskell-json/repos/community-staging-i686/PKGBUILD (from rev 88901, 
haskell-json/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-04-24 16:24:12 UTC (rev 88902)
@@ -0,0 +1,39 @@
+# Maintainer: Daniel Micay danielmi...@gmail.com
+
+_hkgname=json
+pkgname=haskell-json
+pkgver=0.7
+pkgrel=5
+pkgdesc=Support for serialising Haskell to and from JSON
+url=http://hackage.haskell.org/package/${_hkgname};
+license=(custom:BSD3)
+arch=('i686' 'x86_64')
+depends=(ghc haskell-array 'haskell-base=4' haskell-bytestring
+ haskell-containers haskell-text haskell-mtl 'haskell-syb=0.3.3')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install=$pkgname.install
+sha256sums=(d3654272caa269bc65f6f2af82b583ef05434613fe5272d57053fb3bfada68a3)
+
+build() {
+  cd $srcdir/$_hkgname-$pkgver
+
+  runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--libsubdir=\$compiler/site-local/\$pkgid
+  runhaskell Setup build
+  runhaskell Setup haddock
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+
+package() {
+  cd $srcdir/$_hkgname-$pkgver
+  install -D -m744 register.sh $pkgdir/usr/share/haskell/$pkgname/register.sh
+  install -m744 unregister.sh 
$pkgdir/usr/share/haskell/$pkgname/unregister.sh
+  install -d -m755 $pkgdir/usr/share/doc/ghc/html/libraries
+  ln -s /usr/share/doc/$pkgname/html 
$pkgdir/usr/share/doc/ghc/html/libraries/${_hkgname}
+  runhaskell Setup copy --destdir=$pkgdir
+  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+  rm -f $pkgdir/usr/share/doc/$pkgname/LICENSE
+}

Copied: haskell-json/repos/community-staging-i686/haskell-json.install (from 
rev 88901, haskell-json/trunk/haskell-json.install)
===
--- community-staging-i686/haskell-json.install (rev 0)
+++ community-staging-i686/haskell-json.install 2013-04-24 16:24:12 UTC (rev 
88902)
@@ -0,0 +1,23 @@
+HS_DIR=usr/share/haskell/haskell-json
+
+post_install() {
+$HS_DIR/register.sh
+(cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+pre_upgrade() {
+$HS_DIR/unregister.sh
+}
+
+post_upgrade() {
+$HS_DIR/register.sh
+(cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+pre_remove() {
+$HS_DIR/unregister.sh
+}
+
+post_remove() {
+(cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-json/repos/community-staging-x86_64/PKGBUILD (from rev 88901, 
haskell-json/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2013-04-24 16:24:12 UTC (rev 88902)
@@ -0,0 +1,39 @@
+# Maintainer: Daniel Micay danielmi...@gmail.com
+
+_hkgname=json
+pkgname=haskell-json
+pkgver=0.7
+pkgrel=5
+pkgdesc=Support for serialising Haskell to and from JSON
+url=http://hackage.haskell.org/package/${_hkgname};
+license=(custom:BSD3)
+arch=('i686' 'x86_64')
+depends=(ghc haskell-array 'haskell-base=4' haskell-bytestring
+ haskell-containers haskell-text haskell-mtl 'haskell-syb=0.3.3')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install=$pkgname.install
+sha256sums=(d3654272caa269bc65f6f2af82b583ef05434613fe5272d57053fb3bfada68a3)
+
+build() {
+  cd $srcdir/$_hkgname-$pkgver
+
+  runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+

[arch-commits] Commit in haskell-temporary/trunk (PKGBUILD)

2013-04-24 Thread Daniel Micay
Date: Wednesday, April 24, 2013 @ 18:33:00
  Author: thestinger
Revision: 88903

upgpkg: haskell-temporary 1.1.2.4-3

Modified:
  haskell-temporary/trunk/PKGBUILD

--+
 PKGBUILD |3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-24 16:24:12 UTC (rev 88902)
+++ PKGBUILD2013-04-24 16:33:00 UTC (rev 88903)
@@ -2,14 +2,13 @@
 _hkgname=temporary
 pkgname=haskell-temporary
 pkgver=1.1.2.4
-pkgrel=2
+pkgrel=3
 pkgdesc=Portable temporary file and directory support for Windows and Unix, 
based on code from Cabal
 url=http://hackage.haskell.org/package/${_hkgname};
 license=('custom:BSD3')
 arch=('i686' 'x86_64')
 makedepends=()
 depends=('ghc' 'haskell-directory' 'haskell-filepath' 'haskell-unix')
-options=('strip')
 
source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
 install=$pkgname.install
 sha1sums=('310b6d07014064b2ecafb794393c1bba76286a33')



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

2013-04-24 Thread Daniel Micay
Date: Wednesday, April 24, 2013 @ 18:33:39
  Author: thestinger
Revision: 88904

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

Added:
  haskell-temporary/repos/community-staging-i686/
  haskell-temporary/repos/community-staging-i686/PKGBUILD
(from rev 88903, haskell-temporary/trunk/PKGBUILD)
  haskell-temporary/repos/community-staging-i686/haskell-temporary.install
(from rev 88903, haskell-temporary/trunk/haskell-temporary.install)
  haskell-temporary/repos/community-staging-x86_64/
  haskell-temporary/repos/community-staging-x86_64/PKGBUILD
(from rev 88903, haskell-temporary/trunk/PKGBUILD)
  haskell-temporary/repos/community-staging-x86_64/haskell-temporary.install
(from rev 88903, haskell-temporary/trunk/haskell-temporary.install)

+
 community-staging-i686/PKGBUILD|   35 +++
 community-staging-i686/haskell-temporary.install   |   23 
 community-staging-x86_64/PKGBUILD  |   35 +++
 community-staging-x86_64/haskell-temporary.install |   23 
 4 files changed, 116 insertions(+)

Copied: haskell-temporary/repos/community-staging-i686/PKGBUILD (from rev 
88903, haskell-temporary/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-04-24 16:33:39 UTC (rev 88904)
@@ -0,0 +1,35 @@
+# Maintainer: Daniel Micay danielmi...@gmail.com
+_hkgname=temporary
+pkgname=haskell-temporary
+pkgver=1.1.2.4
+pkgrel=3
+pkgdesc=Portable temporary file and directory support for Windows and Unix, 
based on code from Cabal
+url=http://hackage.haskell.org/package/${_hkgname};
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+makedepends=()
+depends=('ghc' 'haskell-directory' 'haskell-filepath' 'haskell-unix')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+install=$pkgname.install
+sha1sums=('310b6d07014064b2ecafb794393c1bba76286a33')
+
+build() {
+  cd $srcdir/$_hkgname-$pkgver
+  runhaskell Setup configure -O ${PKGBUILD_HASKELL_ENABLE_PROFILING:+-p } 
--enable-split-objs --enable-shared \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname 
--libsubdir=\$compiler/site-local/\$pkgid
+  runhaskell Setup build
+  runhaskell Setup haddock
+  runhaskell Setup register   --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+package() {
+  cd $srcdir/$_hkgname-$pkgver
+  install -Dm744 register.sh $pkgdir/usr/share/haskell/$pkgname/register.sh
+  install -m744 unregister.sh 
$pkgdir/usr/share/haskell/$pkgname/unregister.sh
+  install -dm755 $pkgdir/usr/share/doc/ghc/html/libraries
+  ln -s /usr/share/doc/$pkgname/html 
$pkgdir/usr/share/doc/ghc/html/libraries/${_hkgname}
+  runhaskell Setup copy --destdir=$pkgdir
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+  rm -f $pkgdir/usr/share/doc/$pkgname/LICENSE
+}

Copied: 
haskell-temporary/repos/community-staging-i686/haskell-temporary.install (from 
rev 88903, haskell-temporary/trunk/haskell-temporary.install)
===
--- community-staging-i686/haskell-temporary.install
(rev 0)
+++ community-staging-i686/haskell-temporary.install2013-04-24 16:33:39 UTC 
(rev 88904)
@@ -0,0 +1,23 @@
+HS_DIR=usr/share/haskell/haskell-temporary
+
+post_install() {
+  $HS_DIR/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+pre_upgrade() {
+  $HS_DIR/unregister.sh
+}
+
+post_upgrade() {
+  $HS_DIR/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+pre_remove() {
+  $HS_DIR/unregister.sh
+}
+
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-temporary/repos/community-staging-x86_64/PKGBUILD (from rev 
88903, haskell-temporary/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2013-04-24 16:33:39 UTC (rev 88904)
@@ -0,0 +1,35 @@
+# Maintainer: Daniel Micay danielmi...@gmail.com
+_hkgname=temporary
+pkgname=haskell-temporary
+pkgver=1.1.2.4
+pkgrel=3
+pkgdesc=Portable temporary file and directory support for Windows and Unix, 
based on code from Cabal
+url=http://hackage.haskell.org/package/${_hkgname};
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+makedepends=()
+depends=('ghc' 'haskell-directory' 'haskell-filepath' 'haskell-unix')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+install=$pkgname.install
+sha1sums=('310b6d07014064b2ecafb794393c1bba76286a33')
+
+build() {
+  cd $srcdir/$_hkgname-$pkgver
+  runhaskell 

[arch-commits] Commit in haskell-pandoc-types (PKGBUILD)

2013-04-24 Thread Daniel Micay
Date: Wednesday, April 24, 2013 @ 18:39:00
  Author: thestinger
Revision: 88905

upgpkg: haskell-pandoc-types 1.10-2

Modified:
  haskell-pandoc-types/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-24 16:33:39 UTC (rev 88904)
+++ PKGBUILD2013-04-24 16:39:00 UTC (rev 88905)
@@ -5,7 +5,7 @@
 _hkgname=pandoc-types
 pkgname=haskell-pandoc-types
 pkgver=1.10
-pkgrel=1
+pkgrel=2
 pkgdesc=Types for representing a structured document
 url=http://johnmacfarlane.net/pandoc;
 license=(GPL)



[arch-commits] Commit in haskell-pandoc-types/trunk (PKGBUILD)

2013-04-24 Thread Daniel Micay
Date: Wednesday, April 24, 2013 @ 18:44:01
  Author: thestinger
Revision: 88906

upgpkg: haskell-pandoc-types 1.10-2

Modified:
  haskell-pandoc-types/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-24 16:39:00 UTC (rev 88905)
+++ PKGBUILD2013-04-24 16:44:01 UTC (rev 88906)
@@ -5,7 +5,7 @@
 _hkgname=pandoc-types
 pkgname=haskell-pandoc-types
 pkgver=1.10
-pkgrel=1
+pkgrel=2
 pkgdesc=Types for representing a structured document
 url=http://johnmacfarlane.net/pandoc;
 license=(GPL)



[arch-commits] Commit in haskell-pandoc-types/repos (6 files)

2013-04-24 Thread Daniel Micay
Date: Wednesday, April 24, 2013 @ 18:44:35
  Author: thestinger
Revision: 88907

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

Added:
  haskell-pandoc-types/repos/community-staging-i686/
  haskell-pandoc-types/repos/community-staging-i686/PKGBUILD
(from rev 88906, haskell-pandoc-types/trunk/PKGBUILD)
  haskell-pandoc-types/repos/community-staging-i686/haskell-pandoc-types.install
(from rev 88906, haskell-pandoc-types/trunk/haskell-pandoc-types.install)
  haskell-pandoc-types/repos/community-staging-x86_64/
  haskell-pandoc-types/repos/community-staging-x86_64/PKGBUILD
(from rev 88906, haskell-pandoc-types/trunk/PKGBUILD)
  
haskell-pandoc-types/repos/community-staging-x86_64/haskell-pandoc-types.install
(from rev 88906, haskell-pandoc-types/trunk/haskell-pandoc-types.install)

---+
 community-staging-i686/PKGBUILD   |   40 
 community-staging-i686/haskell-pandoc-types.install   |   23 +
 community-staging-x86_64/PKGBUILD |   40 
 community-staging-x86_64/haskell-pandoc-types.install |   23 +
 4 files changed, 126 insertions(+)

Copied: haskell-pandoc-types/repos/community-staging-i686/PKGBUILD (from rev 
88906, haskell-pandoc-types/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-04-24 16:44:35 UTC (rev 88907)
@@ -0,0 +1,40 @@
+# Maintainer: Daniel Micay danielmi...@gmail.com
+# Contributor: Arch Haskell Team 
+# Contributor: Lex Black autumn-wind at web dot de
+
+_hkgname=pandoc-types
+pkgname=haskell-pandoc-types
+pkgver=1.10
+pkgrel=2
+pkgdesc=Types for representing a structured document
+url=http://johnmacfarlane.net/pandoc;
+license=(GPL)
+arch=('i686' 'x86_64')
+makedepends=('ghc')
+depends=('haskell-containers' 'haskell-syb')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install=$pkgname.install
+sha256sums=('e65b983aece74d57db53c6f611f92b9df9dd876e5f022f3a8612c092d6db78f5')
+
+build() {
+  cd $srcdir/$_hkgname-$pkgver
+  runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--libsubdir=\$compiler/site-local/\$pkgid
+  runhaskell Setup build
+  runhaskell Setup haddock
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+
+package() {
+  cd $srcdir/$_hkgname-$pkgver
+  install -D -m744 register.sh $pkgdir/usr/share/haskell/$pkgname/register.sh
+  install-m744 unregister.sh 
$pkgdir/usr/share/haskell/$pkgname/unregister.sh
+  install -d -m755 $pkgdir/usr/share/doc/ghc/html/libraries
+  ln -s /usr/share/doc/$pkgname/html 
$pkgdir/usr/share/doc/ghc/html/libraries/$_hkgname
+  runhaskell Setup copy --destdir=$pkgdir
+  install -D -m644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+  rm -f $pkgdir/usr/share/doc/$pkgname/COPYING
+}

Copied: 
haskell-pandoc-types/repos/community-staging-i686/haskell-pandoc-types.install 
(from rev 88906, haskell-pandoc-types/trunk/haskell-pandoc-types.install)
===
--- community-staging-i686/haskell-pandoc-types.install 
(rev 0)
+++ community-staging-i686/haskell-pandoc-types.install 2013-04-24 16:44:35 UTC 
(rev 88907)
@@ -0,0 +1,23 @@
+HS_DIR=usr/share/haskell/haskell-pandoc-types
+
+post_install() {
+  $HS_DIR/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+pre_upgrade() {
+  $HS_DIR/unregister.sh
+}
+
+post_upgrade() {
+  $HS_DIR/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+pre_remove() {
+  $HS_DIR/unregister.sh
+}
+
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-pandoc-types/repos/community-staging-x86_64/PKGBUILD (from rev 
88906, haskell-pandoc-types/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2013-04-24 16:44:35 UTC (rev 88907)
@@ -0,0 +1,40 @@
+# Maintainer: Daniel Micay danielmi...@gmail.com
+# Contributor: Arch Haskell Team 
+# Contributor: Lex Black autumn-wind at web dot de
+
+_hkgname=pandoc-types
+pkgname=haskell-pandoc-types
+pkgver=1.10
+pkgrel=2
+pkgdesc=Types for representing a structured document
+url=http://johnmacfarlane.net/pandoc;
+license=(GPL)
+arch=('i686' 'x86_64')
+makedepends=('ghc')
+depends=('haskell-containers' 'haskell-syb')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install=$pkgname.install

[arch-commits] Commit in gparted/trunk (PKGBUILD)

2013-04-24 Thread Giovanni Scafora
Date: Wednesday, April 24, 2013 @ 18:54:29
  Author: giovanni
Revision: 183601

upgpkg: gparted 0.16.0-1

upstream release

Modified:
  gparted/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-24 15:18:44 UTC (rev 183600)
+++ PKGBUILD2013-04-24 16:54:29 UTC (rev 183601)
@@ -4,13 +4,13 @@
 # Contributor: György Balló ball...@freestart.hu
 
 pkgname=gparted
-pkgver=0.15.0
+pkgver=0.16.0
 pkgrel=1
 pkgdesc=A Partition Magic clone, frontend to GNU Parted
 arch=('i686' 'x86_64')
 url=http://gparted.sourceforge.net;
 license=('GPL')
-depends=('parted' 'gtkmm' 'hicolor-icon-theme' 'polkit')
+depends=('parted' 'gtkmm' 'hicolor-icon-theme')
 makedepends=('intltool' 'pkg-config' 'gnome-doc-utils')
 optdepends=('dosfstools: for FAT16 and FAT32 partitions'
 'jfsutils: for jfs partitions'
@@ -24,7 +24,7 @@
 install=gparted.install
 
source=(http://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.bz2;
 'org.archlinux.pkexec.gparted.policy')
-md5sums=('b18393ec3a8524333b02234c3d3a531f'
+md5sums=('880e58673c9ef195181c0d721717a601'
  'c031d7d2b845ccb025b9f83e0ddd5653')
 
 build() {



[arch-commits] Commit in gparted/repos (12 files)

2013-04-24 Thread Giovanni Scafora
Date: Wednesday, April 24, 2013 @ 18:54:38
  Author: giovanni
Revision: 183602

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

Added:
  gparted/repos/extra-i686/PKGBUILD
(from rev 183601, gparted/trunk/PKGBUILD)
  gparted/repos/extra-i686/gparted.install
(from rev 183601, gparted/trunk/gparted.install)
  gparted/repos/extra-i686/org.archlinux.pkexec.gparted.policy
(from rev 183601, gparted/trunk/org.archlinux.pkexec.gparted.policy)
  gparted/repos/extra-x86_64/PKGBUILD
(from rev 183601, gparted/trunk/PKGBUILD)
  gparted/repos/extra-x86_64/gparted.install
(from rev 183601, gparted/trunk/gparted.install)
  gparted/repos/extra-x86_64/org.archlinux.pkexec.gparted.policy
(from rev 183601, gparted/trunk/org.archlinux.pkexec.gparted.policy)
Deleted:
  gparted/repos/extra-i686/PKGBUILD
  gparted/repos/extra-i686/gparted.install
  gparted/repos/extra-i686/org.archlinux.pkexec.gparted.policy
  gparted/repos/extra-x86_64/PKGBUILD
  gparted/repos/extra-x86_64/gparted.install
  gparted/repos/extra-x86_64/org.archlinux.pkexec.gparted.policy

--+
 /PKGBUILD|  104 +
 /gparted.install |   28 +
 /org.archlinux.pkexec.gparted.policy |   40 
 extra-i686/PKGBUILD  |   52 --
 extra-i686/gparted.install   |   14 --
 extra-i686/org.archlinux.pkexec.gparted.policy   |   20 
 extra-x86_64/PKGBUILD|   52 --
 extra-x86_64/gparted.install |   14 --
 extra-x86_64/org.archlinux.pkexec.gparted.policy |   20 
 9 files changed, 172 insertions(+), 172 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-04-24 16:54:29 UTC (rev 183601)
+++ extra-i686/PKGBUILD 2013-04-24 16:54:38 UTC (rev 183602)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: Andrew Simmons andrew.simm...@gmail.com
-# Contributor: György Balló ball...@freestart.hu
-
-pkgname=gparted
-pkgver=0.15.0
-pkgrel=1
-pkgdesc=A Partition Magic clone, frontend to GNU Parted
-arch=('i686' 'x86_64')
-url=http://gparted.sourceforge.net;
-license=('GPL')
-depends=('parted' 'gtkmm' 'hicolor-icon-theme' 'polkit')
-makedepends=('intltool' 'pkg-config' 'gnome-doc-utils')
-optdepends=('dosfstools: for FAT16 and FAT32 partitions'
-'jfsutils: for jfs partitions'
-'ntfs-3g: for ntfs partitions'
-'reiserfsprogs: for reiser partitions'
-'xfsprogs: for xfs partitions'
-'nilfs-utils: for nilfs2 support'
-'polkit-gnome: to run gparted directly from menu'
-'gpart: for recovering corrupt partition tables'
-'mtools: utilities to access MS-DOS disks')
-install=gparted.install
-source=(http://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.bz2;
-'org.archlinux.pkexec.gparted.policy')
-md5sums=('b18393ec3a8524333b02234c3d3a531f'
- 'c031d7d2b845ccb025b9f83e0ddd5653')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  make DESTDIR=${pkgdir} install
-
-  # Install policy file
-  install -Dm644 ${srcdir}/org.archlinux.pkexec.gparted.policy 
${pkgdir}/usr/share/polkit-1/actions/org.archlinux.pkexec.gparted.policy
-
-  # We need rename the original script
-  mv ${pkgdir}/usr/sbin/gparted ${pkgdir}/usr/sbin/gparted.elf
-
-  # Install launcher script
-  echo '#!/bin/sh'  ${pkgdir}/usr/sbin/gparted
-  echo 'pkexec --disable-internal-agent /usr/sbin/gparted.elf $@'  
${pkgdir}/usr/sbin/gparted
-  chmod 755 ${pkgdir}/usr/sbin/gparted
-}

Copied: gparted/repos/extra-i686/PKGBUILD (from rev 183601, 
gparted/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-04-24 16:54:38 UTC (rev 183602)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: Andrew Simmons andrew.simm...@gmail.com
+# Contributor: György Balló ball...@freestart.hu
+
+pkgname=gparted
+pkgver=0.16.0
+pkgrel=1
+pkgdesc=A Partition Magic clone, frontend to GNU Parted
+arch=('i686' 'x86_64')
+url=http://gparted.sourceforge.net;
+license=('GPL')
+depends=('parted' 'gtkmm' 'hicolor-icon-theme')
+makedepends=('intltool' 'pkg-config' 'gnome-doc-utils')
+optdepends=('dosfstools: for FAT16 and FAT32 partitions'
+'jfsutils: for jfs partitions'
+'ntfs-3g: for ntfs partitions'
+'reiserfsprogs: for reiser partitions'
+'xfsprogs: for xfs partitions'
+'nilfs-utils: for nilfs2 support'
+'polkit-gnome: to run gparted directly from menu'
+ 

[arch-commits] Commit in muffin/trunk (PKGBUILD switch-applications.patch)

2013-04-24 Thread Balló György
Date: Wednesday, April 24, 2013 @ 19:11:57
  Author: bgyorgy
Revision: 88908

upgpkg: muffin 1.7.3-2

Fix Alt-Tab switcher with default settings

Added:
  muffin/trunk/switch-applications.patch
Modified:
  muffin/trunk/PKGBUILD

---+
 PKGBUILD  |   14 ++
 switch-applications.patch |   20 
 2 files changed, 30 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-24 16:44:35 UTC (rev 88907)
+++ PKGBUILD2013-04-24 17:11:57 UTC (rev 88908)
@@ -1,25 +1,31 @@
 # $Id$
+# Maintainer: Alexandre Filgueira alexfilgue...@cinnarch.com
 # Contributor: Adam Hani Schakaki a...@schakaki.net
 # Contributor: Ner0
 
 pkgname=muffin
 pkgver=1.7.3
-pkgrel=1
+pkgrel=2
 pkgdesc=Cinnamon window manager based on Mutter
 arch=('i686' 'x86_64')
 url=https://github.com/linuxmint/muffin;
 license=('GPL')
-depends=('libsm' 'clutter' 'gobject-introspection' 'gsettings-desktop-schemas' 
\
+depends=('clutter' 'gobject-introspection' 'gsettings-desktop-schemas' \
 'libcanberra' 'startup-notification' 'zenity' 'dconf')
 makedepends=('intltool' 'gnome-doc-utils' 'gnome-common')
 options=('!libtool' '!emptydirs')
 install=$pkgname.install
-source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/muffin/tarball/$pkgver;)
-md5sums=('30e329da6af10e825dace490f13e445f')
+source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/muffin/tarball/$pkgver;
+switch-applications.patch)
+md5sums=('30e329da6af10e825dace490f13e445f'
+ 'a5d5d76dc281277a8afc83d7affdcc7b')
 
 build() {
   cd linuxmint-muffin-*
 
+  # Fix windows switcher keybinding with default settings in GNOME 3.8
+  patch -Np1 -i ../switch-applications.patch
+
   PYTHON=python2 ./autogen.sh --prefix=/usr --sysconfdir=/etc 
--libexecdir=/usr/lib/muffin \
 --localstatedir=/var 
--disable-static --disable-schemas-compile
   make

Added: switch-applications.patch
===
--- switch-applications.patch   (rev 0)
+++ switch-applications.patch   2013-04-24 17:11:57 UTC (rev 88908)
@@ -0,0 +1,20 @@
+diff -Naur linuxmint-muffin-1ad6bd4.orig/src/core/keybindings.c 
linuxmint-muffin-1ad6bd4/src/core/keybindings.c
+--- linuxmint-muffin-1ad6bd4.orig/src/core/keybindings.c   2013-04-15 
15:53:35.0 +0200
 linuxmint-muffin-1ad6bd4/src/core/keybindings.c2013-04-24 
18:37:54.028549911 +0200
+@@ -3774,14 +3774,14 @@
+   handle_switch, META_TAB_LIST_GROUP);
+ 
+   add_builtin_keybinding (display,
+-  switch-windows,
++  switch-applications,
+   SCHEMA_COMMON_KEYBINDINGS,
+   META_KEY_BINDING_REVERSES,
+   META_KEYBINDING_ACTION_SWITCH_WINDOWS,
+   handle_switch, META_TAB_LIST_NORMAL);
+ 
+   add_builtin_keybinding (display,
+-  switch-windows-backward,
++  switch-applications-backward,
+   SCHEMA_COMMON_KEYBINDINGS,
+   REVERSES_AND_REVERSED,
+   META_KEYBINDING_ACTION_SWITCH_WINDOWS_BACKWARD,



[arch-commits] Commit in muffin/repos (10 files)

2013-04-24 Thread Balló György
Date: Wednesday, April 24, 2013 @ 19:12:07
  Author: bgyorgy
Revision: 88909

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

Added:
  muffin/repos/community-i686/PKGBUILD
(from rev 88908, muffin/trunk/PKGBUILD)
  muffin/repos/community-i686/muffin.install
(from rev 88908, muffin/trunk/muffin.install)
  muffin/repos/community-i686/switch-applications.patch
(from rev 88908, muffin/trunk/switch-applications.patch)
  muffin/repos/community-x86_64/PKGBUILD
(from rev 88908, muffin/trunk/PKGBUILD)
  muffin/repos/community-x86_64/muffin.install
(from rev 88908, muffin/trunk/muffin.install)
  muffin/repos/community-x86_64/switch-applications.patch
(from rev 88908, muffin/trunk/switch-applications.patch)
Deleted:
  muffin/repos/community-i686/PKGBUILD
  muffin/repos/community-i686/muffin.install
  muffin/repos/community-x86_64/PKGBUILD
  muffin/repos/community-x86_64/muffin.install

+
 /PKGBUILD  |   80 +++
 /muffin.install|   20 ++
 community-i686/PKGBUILD|   34 ---
 community-i686/muffin.install  |   10 ---
 community-i686/switch-applications.patch   |   20 ++
 community-x86_64/PKGBUILD  |   34 ---
 community-x86_64/muffin.install|   10 ---
 community-x86_64/switch-applications.patch |   20 ++
 8 files changed, 140 insertions(+), 88 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-04-24 17:11:57 UTC (rev 88908)
+++ community-i686/PKGBUILD 2013-04-24 17:12:07 UTC (rev 88909)
@@ -1,34 +0,0 @@
-# $Id$
-# Contributor: Adam Hani Schakaki a...@schakaki.net
-# Contributor: Ner0
-
-pkgname=muffin
-pkgver=1.7.3
-pkgrel=1
-pkgdesc=Cinnamon window manager based on Mutter
-arch=('i686' 'x86_64')
-url=https://github.com/linuxmint/muffin;
-license=('GPL')
-depends=('libsm' 'clutter' 'gobject-introspection' 'gsettings-desktop-schemas' 
\
-'libcanberra' 'startup-notification' 'zenity' 'dconf')
-makedepends=('intltool' 'gnome-doc-utils' 'gnome-common')
-options=('!libtool' '!emptydirs')
-install=$pkgname.install
-source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/muffin/tarball/$pkgver;)
-md5sums=('30e329da6af10e825dace490f13e445f')
-
-build() {
-  cd linuxmint-muffin-*
-
-  PYTHON=python2 ./autogen.sh --prefix=/usr --sysconfdir=/etc 
--libexecdir=/usr/lib/muffin \
---localstatedir=/var 
--disable-static --disable-schemas-compile
-  make
-}
-
-package() {
-  cd linuxmint-muffin-*
-  make DESTDIR=$pkgdir/ install
-}
-
-
-# vim:set ts=2 sw=2 et:

Copied: muffin/repos/community-i686/PKGBUILD (from rev 88908, 
muffin/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-04-24 17:12:07 UTC (rev 88909)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Alexandre Filgueira alexfilgue...@cinnarch.com
+# Contributor: Adam Hani Schakaki a...@schakaki.net
+# Contributor: Ner0
+
+pkgname=muffin
+pkgver=1.7.3
+pkgrel=2
+pkgdesc=Cinnamon window manager based on Mutter
+arch=('i686' 'x86_64')
+url=https://github.com/linuxmint/muffin;
+license=('GPL')
+depends=('clutter' 'gobject-introspection' 'gsettings-desktop-schemas' \
+'libcanberra' 'startup-notification' 'zenity' 'dconf')
+makedepends=('intltool' 'gnome-doc-utils' 'gnome-common')
+options=('!libtool' '!emptydirs')
+install=$pkgname.install
+source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/muffin/tarball/$pkgver;
+switch-applications.patch)
+md5sums=('30e329da6af10e825dace490f13e445f'
+ 'a5d5d76dc281277a8afc83d7affdcc7b')
+
+build() {
+  cd linuxmint-muffin-*
+
+  # Fix windows switcher keybinding with default settings in GNOME 3.8
+  patch -Np1 -i ../switch-applications.patch
+
+  PYTHON=python2 ./autogen.sh --prefix=/usr --sysconfdir=/etc 
--libexecdir=/usr/lib/muffin \
+--localstatedir=/var 
--disable-static --disable-schemas-compile
+  make
+}
+
+package() {
+  cd linuxmint-muffin-*
+  make DESTDIR=$pkgdir/ install
+}
+
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/muffin.install
===
--- community-i686/muffin.install   2013-04-24 17:11:57 UTC (rev 88908)
+++ community-i686/muffin.install   2013-04-24 17:12:07 UTC (rev 88909)
@@ -1,10 +0,0 @@
-post_install() {
-  glib-compile-schemas usr/share/glib-2.0/schemas
-}
-
-post_upgrade() {
-  post_install
-}
-post_remove() {
-  post_install
-}

Copied: muffin/repos/community-i686/muffin.install (from rev 88908, 
muffin/trunk/muffin.install)
===
--- 

[arch-commits] Commit in haskell-citeproc-hs/trunk (PKGBUILD)

2013-04-24 Thread Daniel Micay
Date: Wednesday, April 24, 2013 @ 19:36:38
  Author: thestinger
Revision: 88910

upgpkg: haskell-citeproc-hs 0.3.8-2

Modified:
  haskell-citeproc-hs/trunk/PKGBUILD

--+
 PKGBUILD |3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-24 17:12:07 UTC (rev 88909)
+++ PKGBUILD2013-04-24 17:36:38 UTC (rev 88910)
@@ -5,7 +5,7 @@
 _hkgname=citeproc-hs
 pkgname=haskell-citeproc-hs
 pkgver=0.3.8
-pkgrel=1
+pkgrel=2
 pkgdesc=A Citation Style Language implementation in Haskell
 url=http://gorgias.mine.nu/repos/citeproc-hs/;
 license=('custom:BSD3')
@@ -14,7 +14,6 @@
 depends=(haskell-http haskell-bytestring haskell-containers haskell-directory
  haskell-filepath haskell-json haskell-mtl haskell-old-locale
  haskell-pandoc-types haskell-parsec haskell-syb haskell-time 
haskell-utf8-string haskell-xml)
-options=('strip')
 
source=(http://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/${_hkgname}-${pkgver}.tar.gz;)
 install=$pkgname.install
 sha256sums=('e873673b2960d0eebbcede9d8c18e2acea0e4fed295552fa635814f4bae48e72')



[arch-commits] Commit in haskell-citeproc-hs/repos (6 files)

2013-04-24 Thread Daniel Micay
Date: Wednesday, April 24, 2013 @ 19:37:09
  Author: thestinger
Revision: 88911

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

Added:
  haskell-citeproc-hs/repos/community-staging-i686/
  haskell-citeproc-hs/repos/community-staging-i686/PKGBUILD
(from rev 88910, haskell-citeproc-hs/trunk/PKGBUILD)
  haskell-citeproc-hs/repos/community-staging-i686/haskell-citeproc-hs.install
(from rev 88910, haskell-citeproc-hs/trunk/haskell-citeproc-hs.install)
  haskell-citeproc-hs/repos/community-staging-x86_64/
  haskell-citeproc-hs/repos/community-staging-x86_64/PKGBUILD
(from rev 88910, haskell-citeproc-hs/trunk/PKGBUILD)
  haskell-citeproc-hs/repos/community-staging-x86_64/haskell-citeproc-hs.install
(from rev 88910, haskell-citeproc-hs/trunk/haskell-citeproc-hs.install)

--+
 community-staging-i686/PKGBUILD  |   42 +
 community-staging-i686/haskell-citeproc-hs.install   |   23 +
 community-staging-x86_64/PKGBUILD|   42 +
 community-staging-x86_64/haskell-citeproc-hs.install |   23 +
 4 files changed, 130 insertions(+)

Copied: haskell-citeproc-hs/repos/community-staging-i686/PKGBUILD (from rev 
88910, haskell-citeproc-hs/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-04-24 17:37:09 UTC (rev 88911)
@@ -0,0 +1,42 @@
+# Maintainer: Daniel Micay danielmi...@gmail.com
+# Contributor: Arch Haskell Team 
+# Contributor: Lex Black autumn-wind at web dot de
+
+_hkgname=citeproc-hs
+pkgname=haskell-citeproc-hs
+pkgver=0.3.8
+pkgrel=2
+pkgdesc=A Citation Style Language implementation in Haskell
+url=http://gorgias.mine.nu/repos/citeproc-hs/;
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+makedepends=('ghc')
+depends=(haskell-http haskell-bytestring haskell-containers haskell-directory
+ haskell-filepath haskell-json haskell-mtl haskell-old-locale
+ haskell-pandoc-types haskell-parsec haskell-syb haskell-time 
haskell-utf8-string haskell-xml)
+source=(http://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/${_hkgname}-${pkgver}.tar.gz;)
+install=$pkgname.install
+sha256sums=('e873673b2960d0eebbcede9d8c18e2acea0e4fed295552fa635814f4bae48e72')
+
+build() {
+  cd $srcdir/$_hkgname-$pkgver
+  runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--libsubdir=\$compiler/site-local/\$pkgid -f generic
+  runhaskell Setup build
+  runhaskell Setup haddock
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+
+package() {
+  cd $srcdir/$_hkgname-$pkgver
+  install -D -m744 register.sh $pkgdir/usr/share/haskell/$pkgname/register.sh
+  install -m744 unregister.sh 
$pkgdir/usr/share/haskell/$pkgname/unregister.sh
+  install -dm755 $pkgdir/usr/share/doc/ghc/html/libraries
+  ln -s /usr/share/doc/$pkgname/html 
$pkgdir/usr/share/doc/ghc/html/libraries/$_hkgname
+  runhaskell Setup copy --destdir=$pkgdir
+  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+  rm -f $pkgdir/usr/share/doc/$pkgname/LICENSE
+}

Copied: 
haskell-citeproc-hs/repos/community-staging-i686/haskell-citeproc-hs.install 
(from rev 88910, haskell-citeproc-hs/trunk/haskell-citeproc-hs.install)
===
--- community-staging-i686/haskell-citeproc-hs.install  
(rev 0)
+++ community-staging-i686/haskell-citeproc-hs.install  2013-04-24 17:37:09 UTC 
(rev 88911)
@@ -0,0 +1,23 @@
+HS_DIR=usr/share/haskell/haskell-citeproc-hs
+
+post_install() {
+  $HS_DIR/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+pre_upgrade() {
+  $HS_DIR/unregister.sh
+}
+
+post_upgrade() {
+  $HS_DIR/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+pre_remove() {
+  $HS_DIR/unregister.sh
+}
+
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-citeproc-hs/repos/community-staging-x86_64/PKGBUILD (from rev 
88910, haskell-citeproc-hs/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2013-04-24 17:37:09 UTC (rev 88911)
@@ -0,0 +1,42 @@
+# Maintainer: Daniel Micay danielmi...@gmail.com
+# Contributor: Arch Haskell Team 
+# Contributor: Lex Black autumn-wind at web dot de
+
+_hkgname=citeproc-hs
+pkgname=haskell-citeproc-hs
+pkgver=0.3.8
+pkgrel=2
+pkgdesc=A Citation Style Language implementation in Haskell
+url=http://gorgias.mine.nu/repos/citeproc-hs/;
+license=('custom:BSD3')
+arch=('i686' 'x86_64')

[arch-commits] Commit in nemo/repos (16 files)

2013-04-24 Thread Balló György
Date: Wednesday, April 24, 2013 @ 19:42:52
  Author: bgyorgy
Revision: 88912

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

Added:
  nemo/repos/community-i686/PKGBUILD
(from rev 88911, nemo/trunk/PKGBUILD)
  nemo/repos/community-i686/nemo.install
(from rev 88911, nemo/trunk/nemo.install)
  nemo/repos/community-i686/remove-desktop-background.patch
(from rev 88911, nemo/trunk/remove-desktop-background.patch)
  nemo/repos/community-i686/tracker-0.16.patch
(from rev 88911, nemo/trunk/tracker-0.16.patch)
  nemo/repos/community-x86_64/PKGBUILD
(from rev 88911, nemo/trunk/PKGBUILD)
  nemo/repos/community-x86_64/nemo.install
(from rev 88911, nemo/trunk/nemo.install)
  nemo/repos/community-x86_64/remove-desktop-background.patch
(from rev 88911, nemo/trunk/remove-desktop-background.patch)
  nemo/repos/community-x86_64/tracker-0.16.patch
(from rev 88911, nemo/trunk/tracker-0.16.patch)
Deleted:
  nemo/repos/community-i686/PKGBUILD
  nemo/repos/community-i686/nemo.install
  nemo/repos/community-i686/remove-desktop-background.patch
  nemo/repos/community-i686/tracker-0.16.patch
  nemo/repos/community-x86_64/PKGBUILD
  nemo/repos/community-x86_64/nemo.install
  nemo/repos/community-x86_64/remove-desktop-background.patch
  nemo/repos/community-x86_64/tracker-0.16.patch

--+
 /PKGBUILD|  102 +
 /nemo.install|   28 
 /remove-desktop-background.patch | 2100 +
 /tracker-0.16.patch  |   66 
 community-i686/PKGBUILD  |   52 
 community-i686/nemo.install  |   14 
 community-i686/remove-desktop-background.patch   |  964 -
 community-i686/tracker-0.16.patch|   33 
 community-x86_64/PKGBUILD|   52 
 community-x86_64/nemo.install|   14 
 community-x86_64/remove-desktop-background.patch |  964 -
 community-x86_64/tracker-0.16.patch  |   33 
 12 files changed, 2296 insertions(+), 2126 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 88911:88912 to see the changes.


[arch-commits] Commit in haskell-pcre-light/trunk (PKGBUILD)

2013-04-24 Thread Daniel Micay
Date: Wednesday, April 24, 2013 @ 19:49:03
  Author: thestinger
Revision: 88913

upgpkg: haskell-pcre-light 0.4-20

Modified:
  haskell-pcre-light/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-24 17:42:52 UTC (rev 88912)
+++ PKGBUILD2013-04-24 17:49:03 UTC (rev 88913)
@@ -3,7 +3,7 @@
 _hkgname=pcre-light
 pkgname=haskell-pcre-light
 pkgver=0.4
-pkgrel=19
+pkgrel=20
 pkgdesc=A small, efficient and portable regex library for Perl 5 compatible 
regular expressions
 url=http://code.haskell.org/~dons/code/pcre-light;
 license=(custom:BSD3)



[arch-commits] Commit in haskell-pcre-light/repos (8 files)

2013-04-24 Thread Daniel Micay
Date: Wednesday, April 24, 2013 @ 19:49:44
  Author: thestinger
Revision: 88914

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

Added:
  haskell-pcre-light/repos/community-i686/PKGBUILD
(from rev 88913, haskell-pcre-light/trunk/PKGBUILD)
  haskell-pcre-light/repos/community-i686/haskell-pcre-light.install
(from rev 88913, haskell-pcre-light/trunk/haskell-pcre-light.install)
  haskell-pcre-light/repos/community-x86_64/PKGBUILD
(from rev 88913, haskell-pcre-light/trunk/PKGBUILD)
  haskell-pcre-light/repos/community-x86_64/haskell-pcre-light.install
(from rev 88913, haskell-pcre-light/trunk/haskell-pcre-light.install)
Deleted:
  haskell-pcre-light/repos/community-i686/PKGBUILD
  haskell-pcre-light/repos/community-i686/haskell-pcre-light.install
  haskell-pcre-light/repos/community-x86_64/PKGBUILD
  haskell-pcre-light/repos/community-x86_64/haskell-pcre-light.install

-+
 /PKGBUILD   |   84 ++
 /haskell-pcre-light.install |   46 ++
 community-i686/PKGBUILD |   42 -
 community-i686/haskell-pcre-light.install   |   23 ---
 community-x86_64/PKGBUILD   |   42 -
 community-x86_64/haskell-pcre-light.install |   23 ---
 6 files changed, 130 insertions(+), 130 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-04-24 17:49:03 UTC (rev 88913)
+++ community-i686/PKGBUILD 2013-04-24 17:49:44 UTC (rev 88914)
@@ -1,42 +0,0 @@
-# Maintainer: Daniel Micay danielmi...@gmail.com
-
-_hkgname=pcre-light
-pkgname=haskell-pcre-light
-pkgver=0.4
-pkgrel=19
-pkgdesc=A small, efficient and portable regex library for Perl 5 compatible 
regular expressions
-url=http://code.haskell.org/~dons/code/pcre-light;
-license=(custom:BSD3)
-arch=('i686' 'x86_64')
-makedepends=()
-depends=(ghc=7.0.3-2
- sh
- haskell-bytestring-show
- pcre)
-options=('strip')
-source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-install=$pkgname.install
-sha256sums=(b37f6ffab07b56540ba4cc410f3ad3c4e0e6e226c610c33f4b7daf70559c31f6)
-
-build() {
-  cd $srcdir/$_hkgname-$pkgver
-  runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
---prefix=/usr --docdir=/usr/share/doc/$pkgname \
---libsubdir=\$compiler/site-local/\$pkgid
-  runhaskell Setup build
-  runhaskell Setup haddock
-  runhaskell Setup register --gen-script
-  runhaskell Setup unregister --gen-script
-  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
-}
-
-package() {
-  cd $srcdir/$_hkgname-$pkgver
-  install -Dm744 register.sh $pkgdir/usr/share/haskell/$pkgname/register.sh
-  install -m744 unregister.sh 
$pkgdir/usr/share/haskell/$pkgname/unregister.sh
-  install -dm755 $pkgdir/usr/share/doc/ghc/html/libraries
-  ln -s /usr/share/doc/$pkgname/html 
$pkgdir/usr/share/doc/ghc/html/libraries/$_hkgname
-  runhaskell Setup copy --destdir=$pkgdir
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-  rm -f $pkgdir/usr/share/doc/$pkgname/LICENSE
-}

Copied: haskell-pcre-light/repos/community-i686/PKGBUILD (from rev 88913, 
haskell-pcre-light/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-04-24 17:49:44 UTC (rev 88914)
@@ -0,0 +1,42 @@
+# Maintainer: Daniel Micay danielmi...@gmail.com
+
+_hkgname=pcre-light
+pkgname=haskell-pcre-light
+pkgver=0.4
+pkgrel=20
+pkgdesc=A small, efficient and portable regex library for Perl 5 compatible 
regular expressions
+url=http://code.haskell.org/~dons/code/pcre-light;
+license=(custom:BSD3)
+arch=('i686' 'x86_64')
+makedepends=()
+depends=(ghc=7.0.3-2
+ sh
+ haskell-bytestring-show
+ pcre)
+options=('strip')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install=$pkgname.install
+sha256sums=(b37f6ffab07b56540ba4cc410f3ad3c4e0e6e226c610c33f4b7daf70559c31f6)
+
+build() {
+  cd $srcdir/$_hkgname-$pkgver
+  runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--libsubdir=\$compiler/site-local/\$pkgid
+  runhaskell Setup build
+  runhaskell Setup haddock
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+
+package() {
+  cd $srcdir/$_hkgname-$pkgver
+  install -Dm744 register.sh $pkgdir/usr/share/haskell/$pkgname/register.sh
+  install -m744 unregister.sh 
$pkgdir/usr/share/haskell/$pkgname/unregister.sh
+  install -dm755 $pkgdir/usr/share/doc/ghc/html/libraries
+  ln -s /usr/share/doc/$pkgname/html 

[arch-commits] Commit in haskell-pcre-light/repos (8 files)

2013-04-24 Thread Daniel Micay
Date: Wednesday, April 24, 2013 @ 19:50:26
  Author: thestinger
Revision: 88915

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

Added:
  haskell-pcre-light/repos/community-i686/PKGBUILD
(from rev 88914, haskell-pcre-light/trunk/PKGBUILD)
  haskell-pcre-light/repos/community-i686/haskell-pcre-light.install
(from rev 88914, haskell-pcre-light/trunk/haskell-pcre-light.install)
  haskell-pcre-light/repos/community-x86_64/PKGBUILD
(from rev 88914, haskell-pcre-light/trunk/PKGBUILD)
  haskell-pcre-light/repos/community-x86_64/haskell-pcre-light.install
(from rev 88914, haskell-pcre-light/trunk/haskell-pcre-light.install)
Deleted:
  haskell-pcre-light/repos/community-i686/PKGBUILD
  haskell-pcre-light/repos/community-i686/haskell-pcre-light.install
  haskell-pcre-light/repos/community-x86_64/PKGBUILD
  haskell-pcre-light/repos/community-x86_64/haskell-pcre-light.install

-+
 /PKGBUILD   |   84 ++
 /haskell-pcre-light.install |   46 ++
 community-i686/PKGBUILD |   42 -
 community-i686/haskell-pcre-light.install   |   23 ---
 community-x86_64/PKGBUILD   |   42 -
 community-x86_64/haskell-pcre-light.install |   23 ---
 6 files changed, 130 insertions(+), 130 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-04-24 17:49:44 UTC (rev 88914)
+++ community-i686/PKGBUILD 2013-04-24 17:50:26 UTC (rev 88915)
@@ -1,42 +0,0 @@
-# Maintainer: Daniel Micay danielmi...@gmail.com
-
-_hkgname=pcre-light
-pkgname=haskell-pcre-light
-pkgver=0.4
-pkgrel=20
-pkgdesc=A small, efficient and portable regex library for Perl 5 compatible 
regular expressions
-url=http://code.haskell.org/~dons/code/pcre-light;
-license=(custom:BSD3)
-arch=('i686' 'x86_64')
-makedepends=()
-depends=(ghc=7.0.3-2
- sh
- haskell-bytestring-show
- pcre)
-options=('strip')
-source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-install=$pkgname.install
-sha256sums=(b37f6ffab07b56540ba4cc410f3ad3c4e0e6e226c610c33f4b7daf70559c31f6)
-
-build() {
-  cd $srcdir/$_hkgname-$pkgver
-  runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
---prefix=/usr --docdir=/usr/share/doc/$pkgname \
---libsubdir=\$compiler/site-local/\$pkgid
-  runhaskell Setup build
-  runhaskell Setup haddock
-  runhaskell Setup register --gen-script
-  runhaskell Setup unregister --gen-script
-  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
-}
-
-package() {
-  cd $srcdir/$_hkgname-$pkgver
-  install -Dm744 register.sh $pkgdir/usr/share/haskell/$pkgname/register.sh
-  install -m744 unregister.sh 
$pkgdir/usr/share/haskell/$pkgname/unregister.sh
-  install -dm755 $pkgdir/usr/share/doc/ghc/html/libraries
-  ln -s /usr/share/doc/$pkgname/html 
$pkgdir/usr/share/doc/ghc/html/libraries/$_hkgname
-  runhaskell Setup copy --destdir=$pkgdir
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-  rm -f $pkgdir/usr/share/doc/$pkgname/LICENSE
-}

Copied: haskell-pcre-light/repos/community-i686/PKGBUILD (from rev 88914, 
haskell-pcre-light/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-04-24 17:50:26 UTC (rev 88915)
@@ -0,0 +1,42 @@
+# Maintainer: Daniel Micay danielmi...@gmail.com
+
+_hkgname=pcre-light
+pkgname=haskell-pcre-light
+pkgver=0.4
+pkgrel=20
+pkgdesc=A small, efficient and portable regex library for Perl 5 compatible 
regular expressions
+url=http://code.haskell.org/~dons/code/pcre-light;
+license=(custom:BSD3)
+arch=('i686' 'x86_64')
+makedepends=()
+depends=(ghc=7.0.3-2
+ sh
+ haskell-bytestring-show
+ pcre)
+options=('strip')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install=$pkgname.install
+sha256sums=(b37f6ffab07b56540ba4cc410f3ad3c4e0e6e226c610c33f4b7daf70559c31f6)
+
+build() {
+  cd $srcdir/$_hkgname-$pkgver
+  runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--libsubdir=\$compiler/site-local/\$pkgid
+  runhaskell Setup build
+  runhaskell Setup haddock
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+
+package() {
+  cd $srcdir/$_hkgname-$pkgver
+  install -Dm744 register.sh $pkgdir/usr/share/haskell/$pkgname/register.sh
+  install -m744 unregister.sh 
$pkgdir/usr/share/haskell/$pkgname/unregister.sh
+  install -dm755 $pkgdir/usr/share/doc/ghc/html/libraries
+  ln -s /usr/share/doc/$pkgname/html 

[arch-commits] Commit in haskell-highlighting-kate/trunk (PKGBUILD)

2013-04-24 Thread Daniel Micay
Date: Wednesday, April 24, 2013 @ 20:12:11
  Author: thestinger
Revision: 88916

upgpkg: haskell-highlighting-kate 0.5.3.8-2

Modified:
  haskell-highlighting-kate/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-24 17:50:26 UTC (rev 88915)
+++ PKGBUILD2013-04-24 18:12:11 UTC (rev 88916)
@@ -5,7 +5,7 @@
 _hkgname=highlighting-kate
 pkgname=haskell-highlighting-kate
 pkgver=0.5.3.8
-pkgrel=1
+pkgrel=2
 pkgdesc=Syntax highlighting
 url=http://hackage.haskell.org/package/$_hkgname;
 license=('GPL')



[arch-commits] Commit in haskell-highlighting-kate/repos (6 files)

2013-04-24 Thread Daniel Micay
Date: Wednesday, April 24, 2013 @ 20:12:43
  Author: thestinger
Revision: 88917

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

Added:
  haskell-highlighting-kate/repos/community-staging-i686/
  haskell-highlighting-kate/repos/community-staging-i686/PKGBUILD
(from rev 88916, haskell-highlighting-kate/trunk/PKGBUILD)
  
haskell-highlighting-kate/repos/community-staging-i686/haskell-highlighting-kate.install
(from rev 88916, 
haskell-highlighting-kate/trunk/haskell-highlighting-kate.install)
  haskell-highlighting-kate/repos/community-staging-x86_64/
  haskell-highlighting-kate/repos/community-staging-x86_64/PKGBUILD
(from rev 88916, haskell-highlighting-kate/trunk/PKGBUILD)
  
haskell-highlighting-kate/repos/community-staging-x86_64/haskell-highlighting-kate.install
(from rev 88916, 
haskell-highlighting-kate/trunk/haskell-highlighting-kate.install)

+
 community-staging-i686/PKGBUILD|   37 +++
 community-staging-i686/haskell-highlighting-kate.install   |   23 ++
 community-staging-x86_64/PKGBUILD  |   37 +++
 community-staging-x86_64/haskell-highlighting-kate.install |   23 ++
 4 files changed, 120 insertions(+)

Copied: haskell-highlighting-kate/repos/community-staging-i686/PKGBUILD (from 
rev 88916, haskell-highlighting-kate/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-04-24 18:12:43 UTC (rev 88917)
@@ -0,0 +1,37 @@
+# Maintainer: Daniel Micay danielmi...@gmail.com
+# Contributor: Arch Haskell Team arch-hask...@haskell.org
+# Contributor: Lex Black autumn-wind at web dot de
+
+_hkgname=highlighting-kate
+pkgname=haskell-highlighting-kate
+pkgver=0.5.3.8
+pkgrel=2
+pkgdesc=Syntax highlighting
+url=http://hackage.haskell.org/package/$_hkgname;
+license=('GPL')
+arch=('i686' 'x86_64')
+makedepends=('ghc')
+depends=('haskell-blaze-html=0.4.2' 'haskell-containers' 'haskell-filepath' 
'haskell-mtl' 'haskell-parsec' 'haskell-pcre-light')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+install=$pkgname.install
+md5sums=('c3fdfadddfdf198af6192b9bf437a422')
+
+build() {
+  cd $srcdir/$_hkgname-$pkgver
+  runhaskell Setup configure -O --enable-split-objs --enable-shared \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname 
--libsubdir=\$compiler/site-local/\$pkgid
+  runhaskell Setup build
+  runhaskell Setup haddock
+  runhaskell Setup register   --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+
+package() {
+  cd $srcdir/$_hkgname-$pkgver
+  install -Dm744 register.sh $pkgdir/usr/share/haskell/$pkgname/register.sh
+  install -m744 unregister.sh 
$pkgdir/usr/share/haskell/$pkgname/unregister.sh
+  install -dm755 $pkgdir/usr/share/doc/ghc/html/libraries
+  ln -s /usr/share/doc/$pkgname/html 
$pkgdir/usr/share/doc/ghc/html/libraries/$_hkgname
+  runhaskell Setup copy --destdir=$pkgdir
+}

Copied: 
haskell-highlighting-kate/repos/community-staging-i686/haskell-highlighting-kate.install
 (from rev 88916, 
haskell-highlighting-kate/trunk/haskell-highlighting-kate.install)
===
--- community-staging-i686/haskell-highlighting-kate.install
(rev 0)
+++ community-staging-i686/haskell-highlighting-kate.install2013-04-24 
18:12:43 UTC (rev 88917)
@@ -0,0 +1,23 @@
+HS_DIR=usr/share/haskell/haskell-highlighting-kate
+
+post_install() {
+  $HS_DIR/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+pre_upgrade() {
+  $HS_DIR/unregister.sh
+}
+
+post_upgrade() {
+  $HS_DIR/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+pre_remove() {
+  $HS_DIR/unregister.sh
+}
+
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-highlighting-kate/repos/community-staging-x86_64/PKGBUILD (from 
rev 88916, haskell-highlighting-kate/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2013-04-24 18:12:43 UTC (rev 88917)
@@ -0,0 +1,37 @@
+# Maintainer: Daniel Micay danielmi...@gmail.com
+# Contributor: Arch Haskell Team arch-hask...@haskell.org
+# Contributor: Lex Black autumn-wind at web dot de
+
+_hkgname=highlighting-kate
+pkgname=haskell-highlighting-kate
+pkgver=0.5.3.8
+pkgrel=2
+pkgdesc=Syntax highlighting
+url=http://hackage.haskell.org/package/$_hkgname;
+license=('GPL')
+arch=('i686' 'x86_64')
+makedepends=('ghc')
+depends=('haskell-blaze-html=0.4.2' 'haskell-containers' 'haskell-filepath' 
'haskell-mtl' 'haskell-parsec' 

[arch-commits] Commit in haskell-texmath/trunk (PKGBUILD)

2013-04-24 Thread Daniel Micay
Date: Wednesday, April 24, 2013 @ 20:28:03
  Author: thestinger
Revision: 88918

upgpkg: haskell-texmath 0.6.1.3-2

Modified:
  haskell-texmath/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-24 18:12:43 UTC (rev 88917)
+++ PKGBUILD2013-04-24 18:28:03 UTC (rev 88918)
@@ -5,7 +5,7 @@
 pkgname=haskell-texmath
 _hkgname=texmath
 pkgver=0.6.1.3
-pkgrel=1
+pkgrel=2
 pkgdesc=Conversion of LaTeX math formulas to MathML.
 url=https://github.com/jgm/texmath;
 license=(GPL)



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

2013-04-24 Thread Daniel Micay
Date: Wednesday, April 24, 2013 @ 20:28:37
  Author: thestinger
Revision: 88919

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

Added:
  haskell-texmath/repos/community-staging-i686/
  haskell-texmath/repos/community-staging-i686/PKGBUILD
(from rev 88918, haskell-texmath/trunk/PKGBUILD)
  haskell-texmath/repos/community-staging-i686/haskell-texmath.install
(from rev 88918, haskell-texmath/trunk/haskell-texmath.install)
  haskell-texmath/repos/community-staging-x86_64/
  haskell-texmath/repos/community-staging-x86_64/PKGBUILD
(from rev 88918, haskell-texmath/trunk/PKGBUILD)
  haskell-texmath/repos/community-staging-x86_64/haskell-texmath.install
(from rev 88918, haskell-texmath/trunk/haskell-texmath.install)

--+
 community-staging-i686/PKGBUILD  |   40 +
 community-staging-i686/haskell-texmath.install   |   23 
 community-staging-x86_64/PKGBUILD|   40 +
 community-staging-x86_64/haskell-texmath.install |   23 
 4 files changed, 126 insertions(+)

Copied: haskell-texmath/repos/community-staging-i686/PKGBUILD (from rev 88918, 
haskell-texmath/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-04-24 18:28:37 UTC (rev 88919)
@@ -0,0 +1,40 @@
+# Maintainer: Daniel Micay danielmi...@gmail.com
+# Contributor: Arch Haskell Team 
+# Contributor: Lex Black autumn-wind at web dot de
+
+pkgname=haskell-texmath
+_hkgname=texmath
+pkgver=0.6.1.3
+pkgrel=2
+pkgdesc=Conversion of LaTeX math formulas to MathML.
+url=https://github.com/jgm/texmath;
+license=(GPL)
+arch=('i686' 'x86_64')
+makedepends=('ghc')
+depends=(haskell-containers haskell-parsec haskell-syb haskell-xml)
+source=(http://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-${pkgver}.tar.gz;)
+install=$pkgname.install
+md5sums=('6737a06392f51886e8b1ca8aa6dc2168')
+
+build() {
+  cd $srcdir/$_hkgname-$pkgver
+  runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--libsubdir=\$compiler/site-local/\$pkgid
+  runhaskell Setup build
+  runhaskell Setup haddock
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+
+package() {
+  cd $srcdir/$_hkgname-$pkgver
+  install -Dm744 register.sh $pkgdir/usr/share/haskell/$pkgname/register.sh
+  install -m744 unregister.sh 
$pkgdir/usr/share/haskell/$pkgname/unregister.sh
+  install -dm755 $pkgdir/usr/share/doc/ghc/html/libraries
+  ln -s /usr/share/doc/$pkgname/html 
$pkgdir/usr/share/doc/ghc/html/libraries/$_hkgname
+  runhaskell Setup copy --destdir=$pkgdir
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+  rm -f $pkgdir/usr/share/doc/$pkgname/LICENSE
+}

Copied: haskell-texmath/repos/community-staging-i686/haskell-texmath.install 
(from rev 88918, haskell-texmath/trunk/haskell-texmath.install)
===
--- community-staging-i686/haskell-texmath.install  
(rev 0)
+++ community-staging-i686/haskell-texmath.install  2013-04-24 18:28:37 UTC 
(rev 88919)
@@ -0,0 +1,23 @@
+HS_DIR=usr/share/haskell/haskell-texmath
+
+post_install() {
+  $HS_DIR/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+pre_upgrade() {
+  $HS_DIR/unregister.sh
+}
+
+post_upgrade() {
+  $HS_DIR/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+pre_remove() {
+  $HS_DIR/unregister.sh
+}
+
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-texmath/repos/community-staging-x86_64/PKGBUILD (from rev 
88918, haskell-texmath/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2013-04-24 18:28:37 UTC (rev 88919)
@@ -0,0 +1,40 @@
+# Maintainer: Daniel Micay danielmi...@gmail.com
+# Contributor: Arch Haskell Team 
+# Contributor: Lex Black autumn-wind at web dot de
+
+pkgname=haskell-texmath
+_hkgname=texmath
+pkgver=0.6.1.3
+pkgrel=2
+pkgdesc=Conversion of LaTeX math formulas to MathML.
+url=https://github.com/jgm/texmath;
+license=(GPL)
+arch=('i686' 'x86_64')
+makedepends=('ghc')
+depends=(haskell-containers haskell-parsec haskell-syb haskell-xml)
+source=(http://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-${pkgver}.tar.gz;)
+install=$pkgname.install
+md5sums=('6737a06392f51886e8b1ca8aa6dc2168')
+
+build() {
+  cd $srcdir/$_hkgname-$pkgver
+  runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
+--prefix=/usr 

[arch-commits] Commit in haskell-pandoc-types (PKGBUILD haskell-pandoc-types.install)

2013-04-24 Thread Daniel Micay
Date: Wednesday, April 24, 2013 @ 20:30:16
  Author: thestinger
Revision: 88920

remove accidentally committed clutter

Deleted:
  haskell-pandoc-types/PKGBUILD
  haskell-pandoc-types/haskell-pandoc-types.install

--+
 PKGBUILD |   40 
 haskell-pandoc-types.install |   23 ---
 2 files changed, 63 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-04-24 18:28:37 UTC (rev 88919)
+++ PKGBUILD2013-04-24 18:30:16 UTC (rev 88920)
@@ -1,40 +0,0 @@
-# Maintainer: Daniel Micay danielmi...@gmail.com
-# Contributor: Arch Haskell Team 
-# Contributor: Lex Black autumn-wind at web dot de
-
-_hkgname=pandoc-types
-pkgname=haskell-pandoc-types
-pkgver=1.10
-pkgrel=2
-pkgdesc=Types for representing a structured document
-url=http://johnmacfarlane.net/pandoc;
-license=(GPL)
-arch=('i686' 'x86_64')
-makedepends=('ghc')
-depends=('haskell-containers' 'haskell-syb')
-source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-install=$pkgname.install
-sha256sums=('e65b983aece74d57db53c6f611f92b9df9dd876e5f022f3a8612c092d6db78f5')
-
-build() {
-  cd $srcdir/$_hkgname-$pkgver
-  runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
---prefix=/usr --docdir=/usr/share/doc/$pkgname \
---libsubdir=\$compiler/site-local/\$pkgid
-  runhaskell Setup build
-  runhaskell Setup haddock
-  runhaskell Setup register --gen-script
-  runhaskell Setup unregister --gen-script
-  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
-}
-
-package() {
-  cd $srcdir/$_hkgname-$pkgver
-  install -D -m744 register.sh $pkgdir/usr/share/haskell/$pkgname/register.sh
-  install-m744 unregister.sh 
$pkgdir/usr/share/haskell/$pkgname/unregister.sh
-  install -d -m755 $pkgdir/usr/share/doc/ghc/html/libraries
-  ln -s /usr/share/doc/$pkgname/html 
$pkgdir/usr/share/doc/ghc/html/libraries/$_hkgname
-  runhaskell Setup copy --destdir=$pkgdir
-  install -D -m644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
-  rm -f $pkgdir/usr/share/doc/$pkgname/COPYING
-}

Deleted: haskell-pandoc-types.install
===
--- haskell-pandoc-types.install2013-04-24 18:28:37 UTC (rev 88919)
+++ haskell-pandoc-types.install2013-04-24 18:30:16 UTC (rev 88920)
@@ -1,23 +0,0 @@
-HS_DIR=usr/share/haskell/haskell-pandoc-types
-
-post_install() {
-  $HS_DIR/register.sh
-  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
-}
-
-pre_upgrade() {
-  $HS_DIR/unregister.sh
-}
-
-post_upgrade() {
-  $HS_DIR/register.sh
-  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
-}
-
-pre_remove() {
-  $HS_DIR/unregister.sh
-}
-
-post_remove() {
-  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
-}



[arch-commits] Commit in haskell-tagsoup/trunk (PKGBUILD)

2013-04-24 Thread Daniel Micay
Date: Wednesday, April 24, 2013 @ 20:36:00
  Author: thestinger
Revision: 88921

upgpkg: haskell-tagsoup 0.12.8-3

Modified:
  haskell-tagsoup/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-24 18:30:16 UTC (rev 88920)
+++ PKGBUILD2013-04-24 18:36:00 UTC (rev 88921)
@@ -2,7 +2,7 @@
 _hkgname=tagsoup
 pkgname=haskell-tagsoup
 pkgver=0.12.8
-pkgrel=2
+pkgrel=3
 pkgdesc=Parsing and extracting information from (possibly malformed) HTML/XML 
documents
 url=http://community.haskell.org/~ndm/tagsoup/;
 license=(custom:BSD3)



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

2013-04-24 Thread Daniel Micay
Date: Wednesday, April 24, 2013 @ 20:36:36
  Author: thestinger
Revision: 88922

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

Added:
  haskell-tagsoup/repos/community-staging-i686/
  haskell-tagsoup/repos/community-staging-i686/PKGBUILD
(from rev 88921, haskell-tagsoup/trunk/PKGBUILD)
  haskell-tagsoup/repos/community-staging-i686/haskell-tagsoup.install
(from rev 88921, haskell-tagsoup/trunk/haskell-tagsoup.install)
  haskell-tagsoup/repos/community-staging-x86_64/
  haskell-tagsoup/repos/community-staging-x86_64/PKGBUILD
(from rev 88921, haskell-tagsoup/trunk/PKGBUILD)
  haskell-tagsoup/repos/community-staging-x86_64/haskell-tagsoup.install
(from rev 88921, haskell-tagsoup/trunk/haskell-tagsoup.install)

--+
 community-staging-i686/PKGBUILD  |   36 +
 community-staging-i686/haskell-tagsoup.install   |   23 +
 community-staging-x86_64/PKGBUILD|   36 +
 community-staging-x86_64/haskell-tagsoup.install |   23 +
 4 files changed, 118 insertions(+)

Copied: haskell-tagsoup/repos/community-staging-i686/PKGBUILD (from rev 88921, 
haskell-tagsoup/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-04-24 18:36:36 UTC (rev 88922)
@@ -0,0 +1,36 @@
+# Maintainer: Daniel Micay danielmi...@gmail.com
+_hkgname=tagsoup
+pkgname=haskell-tagsoup
+pkgver=0.12.8
+pkgrel=3
+pkgdesc=Parsing and extracting information from (possibly malformed) HTML/XML 
documents
+url=http://community.haskell.org/~ndm/tagsoup/;
+license=(custom:BSD3)
+arch=('i686' 'x86_64')
+depends=(ghc haskell-text)
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install=$pkgname.install
+sha256sums=('a31e49133690b546a6b948a9ab9f924aaf5bd94f9e3e0afb99bb570c104c9515')
+
+build() {
+  cd $srcdir/${_hkgname}-${pkgver}
+  runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--libsubdir=\$compiler/site-local/\$pkgid
+  runhaskell Setup build
+  runhaskell Setup haddock
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+
+package() {
+  cd $srcdir/${_hkgname}-${pkgver}
+  install -Dm744 register.sh $pkgdir/usr/share/haskell/$pkgname/register.sh
+  install -m744 unregister.sh 
$pkgdir/usr/share/haskell/$pkgname/unregister.sh
+  install -dm755 $pkgdir/usr/share/doc/ghc/html/libraries
+  ln -s /usr/share/doc/$pkgname/html 
$pkgdir/usr/share/doc/ghc/html/libraries/$_hkgname
+  runhaskell Setup copy --destdir=$pkgdir
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+  rm -f $pkgdir/usr/share/doc/$pkgname/LICENSE
+}

Copied: haskell-tagsoup/repos/community-staging-i686/haskell-tagsoup.install 
(from rev 88921, haskell-tagsoup/trunk/haskell-tagsoup.install)
===
--- community-staging-i686/haskell-tagsoup.install  
(rev 0)
+++ community-staging-i686/haskell-tagsoup.install  2013-04-24 18:36:36 UTC 
(rev 88922)
@@ -0,0 +1,23 @@
+HS_DIR=usr/share/haskell/haskell-tagsoup
+
+post_install() {
+  $HS_DIR/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+pre_upgrade() {
+  $HS_DIR/unregister.sh
+}
+
+post_upgrade() {
+  $HS_DIR/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+pre_remove() {
+  $HS_DIR/unregister.sh
+}
+
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-tagsoup/repos/community-staging-x86_64/PKGBUILD (from rev 
88921, haskell-tagsoup/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2013-04-24 18:36:36 UTC (rev 88922)
@@ -0,0 +1,36 @@
+# Maintainer: Daniel Micay danielmi...@gmail.com
+_hkgname=tagsoup
+pkgname=haskell-tagsoup
+pkgver=0.12.8
+pkgrel=3
+pkgdesc=Parsing and extracting information from (possibly malformed) HTML/XML 
documents
+url=http://community.haskell.org/~ndm/tagsoup/;
+license=(custom:BSD3)
+arch=('i686' 'x86_64')
+depends=(ghc haskell-text)
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install=$pkgname.install
+sha256sums=('a31e49133690b546a6b948a9ab9f924aaf5bd94f9e3e0afb99bb570c104c9515')
+
+build() {
+  cd $srcdir/${_hkgname}-${pkgver}
+  runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--libsubdir=\$compiler/site-local/\$pkgid
+  runhaskell Setup build
+ 

[arch-commits] Commit in haskell-tagsoup/repos (8 files)

2013-04-24 Thread Daniel Micay
Date: Wednesday, April 24, 2013 @ 20:37:39
  Author: thestinger
Revision: 88923

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

Added:
  haskell-tagsoup/repos/community-staging-i686/PKGBUILD
(from rev 88922, haskell-tagsoup/trunk/PKGBUILD)
  haskell-tagsoup/repos/community-staging-i686/haskell-tagsoup.install
(from rev 88922, haskell-tagsoup/trunk/haskell-tagsoup.install)
  haskell-tagsoup/repos/community-staging-x86_64/PKGBUILD
(from rev 88922, haskell-tagsoup/trunk/PKGBUILD)
  haskell-tagsoup/repos/community-staging-x86_64/haskell-tagsoup.install
(from rev 88922, haskell-tagsoup/trunk/haskell-tagsoup.install)
Deleted:
  haskell-tagsoup/repos/community-staging-i686/PKGBUILD
  haskell-tagsoup/repos/community-staging-i686/haskell-tagsoup.install
  haskell-tagsoup/repos/community-staging-x86_64/PKGBUILD
  haskell-tagsoup/repos/community-staging-x86_64/haskell-tagsoup.install

--+
 /PKGBUILD|   72 +
 /haskell-tagsoup.install |   46 +
 community-staging-i686/PKGBUILD  |   36 --
 community-staging-i686/haskell-tagsoup.install   |   23 --
 community-staging-x86_64/PKGBUILD|   36 --
 community-staging-x86_64/haskell-tagsoup.install |   23 --
 6 files changed, 118 insertions(+), 118 deletions(-)

Deleted: community-staging-i686/PKGBUILD
===
--- community-staging-i686/PKGBUILD 2013-04-24 18:36:36 UTC (rev 88922)
+++ community-staging-i686/PKGBUILD 2013-04-24 18:37:39 UTC (rev 88923)
@@ -1,36 +0,0 @@
-# Maintainer: Daniel Micay danielmi...@gmail.com
-_hkgname=tagsoup
-pkgname=haskell-tagsoup
-pkgver=0.12.8
-pkgrel=3
-pkgdesc=Parsing and extracting information from (possibly malformed) HTML/XML 
documents
-url=http://community.haskell.org/~ndm/tagsoup/;
-license=(custom:BSD3)
-arch=('i686' 'x86_64')
-depends=(ghc haskell-text)
-source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-install=$pkgname.install
-sha256sums=('a31e49133690b546a6b948a9ab9f924aaf5bd94f9e3e0afb99bb570c104c9515')
-
-build() {
-  cd $srcdir/${_hkgname}-${pkgver}
-  runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
---prefix=/usr --docdir=/usr/share/doc/$pkgname \
---libsubdir=\$compiler/site-local/\$pkgid
-  runhaskell Setup build
-  runhaskell Setup haddock
-  runhaskell Setup register --gen-script
-  runhaskell Setup unregister --gen-script
-  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
-}
-
-package() {
-  cd $srcdir/${_hkgname}-${pkgver}
-  install -Dm744 register.sh $pkgdir/usr/share/haskell/$pkgname/register.sh
-  install -m744 unregister.sh 
$pkgdir/usr/share/haskell/$pkgname/unregister.sh
-  install -dm755 $pkgdir/usr/share/doc/ghc/html/libraries
-  ln -s /usr/share/doc/$pkgname/html 
$pkgdir/usr/share/doc/ghc/html/libraries/$_hkgname
-  runhaskell Setup copy --destdir=$pkgdir
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-  rm -f $pkgdir/usr/share/doc/$pkgname/LICENSE
-}

Copied: haskell-tagsoup/repos/community-staging-i686/PKGBUILD (from rev 88922, 
haskell-tagsoup/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-04-24 18:37:39 UTC (rev 88923)
@@ -0,0 +1,36 @@
+# Maintainer: Daniel Micay danielmi...@gmail.com
+_hkgname=tagsoup
+pkgname=haskell-tagsoup
+pkgver=0.12.8
+pkgrel=3
+pkgdesc=Parsing and extracting information from (possibly malformed) HTML/XML 
documents
+url=http://community.haskell.org/~ndm/tagsoup/;
+license=(custom:BSD3)
+arch=('i686' 'x86_64')
+depends=(ghc haskell-text)
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install=$pkgname.install
+sha256sums=('a31e49133690b546a6b948a9ab9f924aaf5bd94f9e3e0afb99bb570c104c9515')
+
+build() {
+  cd $srcdir/${_hkgname}-${pkgver}
+  runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--libsubdir=\$compiler/site-local/\$pkgid
+  runhaskell Setup build
+  runhaskell Setup haddock
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+
+package() {
+  cd $srcdir/${_hkgname}-${pkgver}
+  install -Dm744 register.sh $pkgdir/usr/share/haskell/$pkgname/register.sh
+  install -m744 unregister.sh 
$pkgdir/usr/share/haskell/$pkgname/unregister.sh
+  install -dm755 $pkgdir/usr/share/doc/ghc/html/libraries
+  ln -s /usr/share/doc/$pkgname/html 
$pkgdir/usr/share/doc/ghc/html/libraries/$_hkgname
+  runhaskell Setup copy --destdir=$pkgdir
+  install -Dm644 LICENSE 

[arch-commits] Commit in kdesdk/trunk (PKGBUILD)

2013-04-24 Thread Andrea Scarpino
Date: Wednesday, April 24, 2013 @ 21:44:37
  Author: andrea
Revision: 183603

Move antlr2 as optdepends (FS#34903)

Modified:
  kdesdk/trunk/PKGBUILD

--+
 PKGBUILD |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-24 16:54:38 UTC (rev 183602)
+++ PKGBUILD2013-04-24 19:44:37 UTC (rev 183603)
@@ -151,7 +151,8 @@
 package_kdesdk-poxml() {
pkgdesc='Translates DocBook XML files using gettext po files'
 url=https://projects.kde.org/projects/kde/kdesdk/poxml;
-   depends=('qt4' 'antlr2')
+   depends=('qt4')
+optdepends=('antlr2: required for po2xml and swappo tool')
cd $srcdir/build/poxml
make DESTDIR=$pkgdir install
 }



[arch-commits] Commit in ed/trunk (PKGBUILD)

2013-04-24 Thread Dave Reisner
Date: Wednesday, April 24, 2013 @ 22:06:39
  Author: dreisner
Revision: 183604

upgpkg: ed 1.8-1

Modified:
  ed/trunk/PKGBUILD

--+
 PKGBUILD |9 +
 1 file changed, 5 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-24 19:44:37 UTC (rev 183603)
+++ PKGBUILD2013-04-24 20:06:39 UTC (rev 183604)
@@ -3,17 +3,18 @@
 # Maintainer: Andreas Radke andy...@archlinux.org
 
 pkgname=ed
-pkgver=1.7
-pkgrel=2
+pkgver=1.8
+pkgrel=1
 pkgdesc=A POSIX-compliant line-oriented text editor
 arch=('i686' 'x86_64')
 license=('GPL')
 url=http://www.gnu.org/software/ed/ed.html;
 depends=('glibc' 'sh')
 options=('!emptydirs')
-source=(ftp://ftp.gnu.org/gnu/ed/${pkgname}-${pkgver}.tar.gz)
+source=(ftp://ftp.gnu.org/gnu/ed/$pkgname-$pkgver.tar.gz{,.sig})
 install='ed.install'
-md5sums=('0aa4e2428e325203d0d7c3e86c961b1c')
+md5sums=('2268d2344b3c52d23730acb2e3c942fe'
+ 'SKIP')
 
 build() {
   cd $pkgname-$pkgver



[arch-commits] Commit in libsoup/trunk (PKGBUILD)

2013-04-24 Thread Jan Steffens
Date: Wednesday, April 24, 2013 @ 22:32:47
  Author: heftig
Revision: 183605

2.42.2

Modified:
  libsoup/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-24 20:06:39 UTC (rev 183604)
+++ PKGBUILD2013-04-24 20:32:47 UTC (rev 183605)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=libsoup
-pkgver=2.42.1
+pkgver=2.42.2
 pkgrel=1
 pkgdesc=GNOME HTTP Library
 arch=(i686 x86_64)
@@ -15,7 +15,7 @@
 replaces=(libsoup-gnome)
 options=('!libtool' '!emptydirs')
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('20bd5365bb3e7de70fade91ac82c9dea31636318df90b8c26bc4cde2523a8c91')
+sha256sums=('1f4f9cc55ba483dc8defea0c3f97cc507dc48384c5529179e29c1e6d05630dbf')
 
 build() {
   cd $pkgname-$pkgver



[arch-commits] Commit in libsoup/repos (4 files)

2013-04-24 Thread Jan Steffens
Date: Wednesday, April 24, 2013 @ 22:33:35
  Author: heftig
Revision: 183606

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

Added:
  libsoup/repos/extra-i686/PKGBUILD
(from rev 183605, libsoup/trunk/PKGBUILD)
  libsoup/repos/extra-x86_64/PKGBUILD
(from rev 183605, libsoup/trunk/PKGBUILD)
Deleted:
  libsoup/repos/extra-i686/PKGBUILD
  libsoup/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |   68 
 extra-i686/PKGBUILD   |   34 
 extra-x86_64/PKGBUILD |   34 
 3 files changed, 68 insertions(+), 68 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-04-24 20:32:47 UTC (rev 183605)
+++ extra-i686/PKGBUILD 2013-04-24 20:33:35 UTC (rev 183606)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=libsoup
-pkgver=2.42.1
-pkgrel=1
-pkgdesc=GNOME HTTP Library
-arch=(i686 x86_64)
-license=(LGPL)
-url=http://www.gnome.org;
-depends=(glib2 libxml2 glib-networking sqlite)
-makedepends=(intltool gobject-introspection python2)
-provides=(libsoup-gnome=$pkgver-$pkgrel)
-conflicts=(libsoup-gnome)
-replaces=(libsoup-gnome)
-options=('!libtool' '!emptydirs')
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('20bd5365bb3e7de70fade91ac82c9dea31636318df90b8c26bc4cde2523a8c91')
-
-build() {
-  cd $pkgname-$pkgver
-
-  # Python3 has UnicodeDecodeErrors
-  sed -i -e '1s/python$/2/' libsoup/tld-parser.py
-
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --disable-static
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: libsoup/repos/extra-i686/PKGBUILD (from rev 183605, 
libsoup/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-04-24 20:33:35 UTC (rev 183606)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=libsoup
+pkgver=2.42.2
+pkgrel=1
+pkgdesc=GNOME HTTP Library
+arch=(i686 x86_64)
+license=(LGPL)
+url=http://www.gnome.org;
+depends=(glib2 libxml2 glib-networking sqlite)
+makedepends=(intltool gobject-introspection python2)
+provides=(libsoup-gnome=$pkgver-$pkgrel)
+conflicts=(libsoup-gnome)
+replaces=(libsoup-gnome)
+options=('!libtool' '!emptydirs')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('1f4f9cc55ba483dc8defea0c3f97cc507dc48384c5529179e29c1e6d05630dbf')
+
+build() {
+  cd $pkgname-$pkgver
+
+  # Python3 has UnicodeDecodeErrors
+  sed -i -e '1s/python$/2/' libsoup/tld-parser.py
+
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-04-24 20:32:47 UTC (rev 183605)
+++ extra-x86_64/PKGBUILD   2013-04-24 20:33:35 UTC (rev 183606)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=libsoup
-pkgver=2.42.1
-pkgrel=1
-pkgdesc=GNOME HTTP Library
-arch=(i686 x86_64)
-license=(LGPL)
-url=http://www.gnome.org;
-depends=(glib2 libxml2 glib-networking sqlite)
-makedepends=(intltool gobject-introspection python2)
-provides=(libsoup-gnome=$pkgver-$pkgrel)
-conflicts=(libsoup-gnome)
-replaces=(libsoup-gnome)
-options=('!libtool' '!emptydirs')
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('20bd5365bb3e7de70fade91ac82c9dea31636318df90b8c26bc4cde2523a8c91')
-
-build() {
-  cd $pkgname-$pkgver
-
-  # Python3 has UnicodeDecodeErrors
-  sed -i -e '1s/python$/2/' libsoup/tld-parser.py
-
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --disable-static
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: libsoup/repos/extra-x86_64/PKGBUILD (from rev 183605, 
libsoup/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-04-24 20:33:35 UTC (rev 183606)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=libsoup
+pkgver=2.42.2
+pkgrel=1
+pkgdesc=GNOME HTTP Library
+arch=(i686 x86_64)
+license=(LGPL)
+url=http://www.gnome.org;
+depends=(glib2 libxml2 glib-networking sqlite)
+makedepends=(intltool gobject-introspection python2)
+provides=(libsoup-gnome=$pkgver-$pkgrel)
+conflicts=(libsoup-gnome)
+replaces=(libsoup-gnome)
+options=('!libtool' '!emptydirs')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)

[arch-commits] Commit in cairo-dock/trunk (PKGBUILD)

2013-04-24 Thread Maxime Gauduin
Date: Wednesday, April 24, 2013 @ 23:20:18
  Author: alucryd
Revision: 88924

upgpkg: cairo-dock 3.2.1-3

Modified:
  cairo-dock/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-24 18:37:39 UTC (rev 88923)
+++ PKGBUILD2013-04-24 21:20:18 UTC (rev 88924)
@@ -5,7 +5,7 @@
 
 pkgname=cairo-dock
 pkgver=3.2.1
-pkgrel=2
+pkgrel=3
 pkgdesc=Light eye-candy fully themable animated dock
 arch=('i686' 'x86_64')
 url=https://launchpad.net/cairo-dock-core;



[arch-commits] Commit in cairo-dock/repos (8 files)

2013-04-24 Thread Maxime Gauduin
Date: Wednesday, April 24, 2013 @ 23:20:34
  Author: alucryd
Revision: 88925

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

Added:
  cairo-dock/repos/community-i686/PKGBUILD
(from rev 88924, cairo-dock/trunk/PKGBUILD)
  cairo-dock/repos/community-i686/gldit-rpath.patch
(from rev 88924, cairo-dock/trunk/gldit-rpath.patch)
  cairo-dock/repos/community-x86_64/PKGBUILD
(from rev 88924, cairo-dock/trunk/PKGBUILD)
  cairo-dock/repos/community-x86_64/gldit-rpath.patch
(from rev 88924, cairo-dock/trunk/gldit-rpath.patch)
Deleted:
  cairo-dock/repos/community-i686/PKGBUILD
  cairo-dock/repos/community-i686/gldit-rpath.patch
  cairo-dock/repos/community-x86_64/PKGBUILD
  cairo-dock/repos/community-x86_64/gldit-rpath.patch

+
 /PKGBUILD  |   90 +++
 /gldit-rpath.patch |   26 ++
 community-i686/PKGBUILD|   45 -
 community-i686/gldit-rpath.patch   |   13 -
 community-x86_64/PKGBUILD  |   45 -
 community-x86_64/gldit-rpath.patch |   13 -
 6 files changed, 116 insertions(+), 116 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-04-24 21:20:18 UTC (rev 88924)
+++ community-i686/PKGBUILD 2013-04-24 21:20:34 UTC (rev 88925)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin aluc...@gmail.com
-# Contributor: Tofe chris.chap...@gmail.com
-# Contributor: erm67 er...@yahoo.it
-
-pkgname=cairo-dock
-pkgver=3.2.1
-pkgrel=2
-pkgdesc=Light eye-candy fully themable animated dock
-arch=('i686' 'x86_64')
-url=https://launchpad.net/cairo-dock-core;
-license=('GPL')
-depends=('curl' 'dbus-glib' 'gtk3' 'librsvg')
-makedepends=('cmake')
-optdepends=('cairo-dock-plugins: Plugins for Cairo-Dock')
-options=('!libtool')
-source=(http://launchpad.net/${pkgname}-core/3.2/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz;
 'gldit-rpath.patch')
-sha256sums=('441e407f92138dc604c796b0455777b765e298ecb8f3120104f521d0e0b34543'
-'5a5fbc67aaa210387ef4410701747fe741942c99c4bd84ae771b96a3bdd1c4cc')
-
-prepare() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  patch -Np1 -i ../gldit-rpath.patch
-}
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  if [[ -d build ]]; then
-rm -rf build
-  fi
-  mkdir build  cd build
-
-  cmake .. -DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}/build
-
-  make DESTDIR=${pkgdir} install
-}
-
-# vim: ts=2 sw=2 et:

Copied: cairo-dock/repos/community-i686/PKGBUILD (from rev 88924, 
cairo-dock/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-04-24 21:20:34 UTC (rev 88925)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Maxime Gauduin aluc...@gmail.com
+# Contributor: Tofe chris.chap...@gmail.com
+# Contributor: erm67 er...@yahoo.it
+
+pkgname=cairo-dock
+pkgver=3.2.1
+pkgrel=3
+pkgdesc=Light eye-candy fully themable animated dock
+arch=('i686' 'x86_64')
+url=https://launchpad.net/cairo-dock-core;
+license=('GPL')
+depends=('curl' 'dbus-glib' 'gtk3' 'librsvg')
+makedepends=('cmake')
+optdepends=('cairo-dock-plugins: Plugins for Cairo-Dock')
+options=('!libtool')
+source=(http://launchpad.net/${pkgname}-core/3.2/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz;
 'gldit-rpath.patch')
+sha256sums=('441e407f92138dc604c796b0455777b765e298ecb8f3120104f521d0e0b34543'
+'5a5fbc67aaa210387ef4410701747fe741942c99c4bd84ae771b96a3bdd1c4cc')
+
+prepare() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  patch -Np1 -i ../gldit-rpath.patch
+}
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  if [[ -d build ]]; then
+rm -rf build
+  fi
+  mkdir build  cd build
+
+  cmake .. -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}/build
+
+  make DESTDIR=${pkgdir} install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: community-i686/gldit-rpath.patch
===
--- community-i686/gldit-rpath.patch2013-04-24 21:20:18 UTC (rev 88924)
+++ community-i686/gldit-rpath.patch2013-04-24 21:20:34 UTC (rev 88925)
@@ -1,13 +0,0 @@
 a/src/gldit/CMakeLists.txt 2013-03-23 16:55:12.0 +0100
-+++ b/src/gldit/CMakeLists.txt 2013-03-26 11:57:14.159200918 +0100
-@@ -82,9 +82,7 @@ link_directories(
-   ${GTK_LIBRARY_DIRS}
-   ${XEXTEND_LIBRARY_DIRS}
-   ${XINERAMA_LIBRARY_DIRS}
--  ${CMAKE_SOURCE_DIR}/src/gldit
--  ${CMAKE_SOURCE_DIR}/src/icon-factory
--  ${CMAKE_SOURCE_DIR}/src/implementations)
-+  )
- 
- # Define the library
- add_library (gldi SHARED ${core_lib_SRCS})

Copied: cairo-dock/repos/community-i686/gldit-rpath.patch (from rev 88924, 
cairo-dock/trunk/gldit-rpath.patch)

[arch-commits] Commit in cairo-dock-plugins/trunk (PKGBUILD)

2013-04-24 Thread Maxime Gauduin
Date: Wednesday, April 24, 2013 @ 23:31:08
  Author: alucryd
Revision: 88926

upgpkg: cairo-dock-plugins 3.2.1-2

Modified:
  cairo-dock-plugins/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-24 21:20:34 UTC (rev 88925)
+++ PKGBUILD2013-04-24 21:31:08 UTC (rev 88926)
@@ -7,7 +7,7 @@
 
 pkgname=cairo-dock-plugins
 pkgver=3.2.1
-pkgrel=1
+pkgrel=2
 pkgdesc=Plugins for Cairo-Dock
 url=https://launchpad.net/cairo-dock;
 license=('GPL')



[arch-commits] Commit in cairo-dock-plugins/repos (4 files)

2013-04-24 Thread Maxime Gauduin
Date: Wednesday, April 24, 2013 @ 23:31:30
  Author: alucryd
Revision: 88927

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

Added:
  cairo-dock-plugins/repos/community-i686/PKGBUILD
(from rev 88926, cairo-dock-plugins/trunk/PKGBUILD)
  cairo-dock-plugins/repos/community-x86_64/PKGBUILD
(from rev 88926, cairo-dock-plugins/trunk/PKGBUILD)
Deleted:
  cairo-dock-plugins/repos/community-i686/PKGBUILD
  cairo-dock-plugins/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  114 
 community-i686/PKGBUILD   |   57 --
 community-x86_64/PKGBUILD |   57 --
 3 files changed, 114 insertions(+), 114 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-04-24 21:31:08 UTC (rev 88926)
+++ community-i686/PKGBUILD 2013-04-24 21:31:30 UTC (rev 88927)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin aluc...@gmail.com
-# Contributor: Tofe chris.chap...@gmail.com
-# Contributor: zhuqin zhuqi...@gmail.com
-# Contributor: tri1976 tri...@gmail.com
-# Contributor: snoopy33 snoop...@no-log.org
-
-pkgname=cairo-dock-plugins
-pkgver=3.2.1
-pkgrel=1
-pkgdesc=Plugins for Cairo-Dock
-url=https://launchpad.net/cairo-dock;
-license=('GPL')
-arch=('i686' 'x86_64')
-depends=('cairo-dock')
-makedepends=('cmake' 'alsa-lib' 'fftw' 'gnome-menus' 'gtk-sharp-2' 'gvfs' 
'libetpan' 'libexif' 'libical' 'libpulse' 'libxklavier' 'libzeitgeist' 
'lm_sensors' 'ndesk-dbus-glib' 'python' 'ruby' 'upower' 'vala' 'vte3' 
'webkitgtk3')
-optdepends=('alsa-lib: AlsaMixer, Sound Effects applets'
-'fftw: Impulse applet'
-'gnome-menus: GMenu applet'
-'gtk-sharp-2: Mono API'
-'gvfs: GVFS integration'
-'libetpan: Mail applet'
-'libexif: Slider applet'
-'libical: Clock applet'
-'libpulse: Impulse applet'
-'libxklavier: Keyboard Indicator applet'
-'libzeitgeist: Recent Events applet'
-'lm_sensors: System Monitor applet'
-'ndesk-dbus-glib: Mono API'
-'python: Python API'
-'ruby: Ruby API'
-'upower: Logout, PowerManager applets'
-'vte3: Terminal applet'
-'webkitgtk3: Weblets applet')
-options=('!libtool')
-source=(http://launchpad.net/cairo-dock-plug-ins/3.2/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('11b4433e40bbb1507757b23e167c521d620827576c2f30bb1a9642e0bff57e01')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  if [[ -d build ]]; then
-rm -rf build
-  fi
-  mkdir build  cd build
-
-  cmake .. -DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}/build
-
-  make DESTDIR=${pkgdir} install
-}
-
-# vim: ts=2 sw=2 et:

Copied: cairo-dock-plugins/repos/community-i686/PKGBUILD (from rev 88926, 
cairo-dock-plugins/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-04-24 21:31:30 UTC (rev 88927)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Maxime Gauduin aluc...@gmail.com
+# Contributor: Tofe chris.chap...@gmail.com
+# Contributor: zhuqin zhuqi...@gmail.com
+# Contributor: tri1976 tri...@gmail.com
+# Contributor: snoopy33 snoop...@no-log.org
+
+pkgname=cairo-dock-plugins
+pkgver=3.2.1
+pkgrel=2
+pkgdesc=Plugins for Cairo-Dock
+url=https://launchpad.net/cairo-dock;
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('cairo-dock')
+makedepends=('cmake' 'alsa-lib' 'fftw' 'gnome-menus' 'gtk-sharp-2' 'gvfs' 
'libetpan' 'libexif' 'libical' 'libpulse' 'libxklavier' 'libzeitgeist' 
'lm_sensors' 'ndesk-dbus-glib' 'python' 'ruby' 'upower' 'vala' 'vte3' 
'webkitgtk3')
+optdepends=('alsa-lib: AlsaMixer, Sound Effects applets'
+'fftw: Impulse applet'
+'gnome-menus: GMenu applet'
+'gtk-sharp-2: Mono API'
+'gvfs: GVFS integration'
+'libetpan: Mail applet'
+'libexif: Slider applet'
+'libical: Clock applet'
+'libpulse: Impulse applet'
+'libxklavier: Keyboard Indicator applet'
+'libzeitgeist: Recent Events applet'
+'lm_sensors: System Monitor applet'
+'ndesk-dbus-glib: Mono API'
+'python: Python API'
+'ruby: Ruby API'
+'upower: Logout, PowerManager applets'
+'vte3: Terminal applet'
+'webkitgtk3: Weblets applet')
+options=('!libtool')
+source=(http://launchpad.net/cairo-dock-plug-ins/3.2/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('11b4433e40bbb1507757b23e167c521d620827576c2f30bb1a9642e0bff57e01')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  if [[ -d build ]]; then
+rm -rf build
+  fi
+  mkdir build  cd build
+
+  

[arch-commits] Commit in gnome-settings-daemon-compat/trunk (5 files)

2013-04-24 Thread Balló György
Date: Thursday, April 25, 2013 @ 00:19:30
  Author: bgyorgy
Revision: 88928

upgpkg: gnome-settings-daemon-compat 3.6.4-3

Move desktop files out of autostart, so they can be easily reusable in custom 
sessions

Added:
  gnome-settings-daemon-compat/trunk/move-desktop-file.patch
Modified:
  gnome-settings-daemon-compat/trunk/PKGBUILD
  gnome-settings-daemon-compat/trunk/standalone-background-helper.patch
  gnome-settings-daemon-compat/trunk/standalone-media-keys-helper.patch
Deleted:
  gnome-settings-daemon-compat/trunk/flashback-rename.patch

+
 PKGBUILD   |   22 ++--
 flashback-rename.patch |   27 ---
 move-desktop-file.patch|   60 +++
 standalone-background-helper.patch |4 +-
 standalone-media-keys-helper.patch |4 +-
 5 files changed, 75 insertions(+), 42 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-24 21:31:30 UTC (rev 88927)
+++ PKGBUILD2013-04-24 22:19:30 UTC (rev 88928)
@@ -5,12 +5,12 @@
 pkgname=gnome-settings-daemon-compat
 _pkgname=gnome-settings-daemon
 pkgver=3.6.4
-pkgrel=2
-pkgdesc=Compatibility package that provides background and mount helpers for 
the Gnome Flashback session
+pkgrel=3
+pkgdesc=Compatibility package that provides background, media keys and mount 
helpers for the Gnome Flashback session
 arch=('i686' 'x86_64')
 license=('GPL')
 depends=('gnome-settings-daemon')
-makedepends=('docbook-xsl' 'ibus' 'intltool' 'libcanberra' 'libnotify' 
'libpulse' 'libwacom' 'nss' 'upower' 'xf86-input-wacom')
+makedepends=('docbook-xsl' 'intltool' 'xf86-input-wacom')
 url=https://live.gnome.org/GnomeFlashback;
 
source=(http://ftp.gnome.org/pub/gnome/sources/$_pkgname/${pkgver%.*}/$_pkgname-$pkgver.tar.xz
 standalone-background-helper.patch
@@ -19,17 +19,17 @@
 sessionisactive-port.patch
 revert-input-sources.patch
 xinput.patch 
-flashback-rename.patch
-remove-libgsd-dependency.patch)
+remove-libgsd-dependency.patch
+move-desktop-file.patch)
 sha256sums=('3db993f2dbabc0c9d06a309bb12c9a7104b9cdda414ac4b1c301f5114a441c15'
-'f9781a17d7baa2777b16fa2c71fb6053612131cffcfffcc635d49f9dacb1e637'
-'4776de33b1517976b308a9ce23661cd0ac68ddd2bcf41465c73f8a2e2d09d20c'
+'2e7e40175533556493bb58795a2c1b4e53b4baba35d151e632b933c6077456d9'
+'ddc4dfaa8083ff24a7d2fb6138b8c3fee5d4e6c60c24b4e80a39392d0c8f2162'
 '1b6b8216434b766e1389e876cba5d6ab61498c5824f6d2cc5d67dcf58a07842a'
 '0821f469cd168f3a131da513a5f9dd352c06f9bc31d57d79de4dc063fa2de915'
 '02da2467e287620c3b717c7ff5ffea7403cce714d5aa32e27d051b6571451e2a'
 'fe8cafee074e36a7a393c9ae7f65db1c13a0959213aaae94ab8a3543bf20a25d'
-'1edabf1a5a56d4b797ccdb7d5003bad396eebe98541d5aa330c9851340b68dfe'
-'730f11d5689892fbab9aa2896f3720e813d17e2455f34fd3a0751e49f5b4c26c')
+'730f11d5689892fbab9aa2896f3720e813d17e2455f34fd3a0751e49f5b4c26c'
+'c58ace67581a1e14dc21efc8d22dd1f385cd05483d67e8a385b0767a8daf9fb4')
 
 build() {
   cd $_pkgname-$pkgver
@@ -51,8 +51,8 @@
   # Remove libgsd dependency
   patch -Np1 -i ../remove-libgsd-dependency.patch
 
-  # GNOME Fallback renamed to Flashback
-  patch -Np1 -i ../flashback-rename.patch
+  # Move desktop files out of autostart, so they can be easily reusable in 
custom sessions
+  patch -Np1 -i ../move-desktop-file.patch
 
   autoreconf -fi
   ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--libexecdir=/usr/lib/$_pkgname \

Deleted: flashback-rename.patch
===
--- flashback-rename.patch  2013-04-24 21:31:30 UTC (rev 88927)
+++ flashback-rename.patch  2013-04-24 22:19:30 UTC (rev 88928)
@@ -1,27 +0,0 @@
-diff -Naur 
gnome-settings-daemon-3.6.4.orig/plugins/automount/gnome-fallback-mount-helper.desktop.in.in
 
gnome-settings-daemon-3.6.4/plugins/automount/gnome-fallback-mount-helper.desktop.in.in
 
gnome-settings-daemon-3.6.4.orig/plugins/automount/gnome-fallback-mount-helper.desktop.in.in
   2013-01-10 14:37:58.0 +0100
-+++ 
gnome-settings-daemon-3.6.4/plugins/automount/gnome-fallback-mount-helper.desktop.in.in
2013-04-24 14:34:43.743878119 +0200
-@@ -9,4 +9,4 @@
- NoDisplay=true
- OnlyShowIn=GNOME;Unity;
- X-GNOME-Autostart-Notify=true
--AutostartCondition=GNOME3 if-session gnome-fallback
-+AutostartCondition=GNOME3 if-session gnome-flashback
-diff -Naur 
gnome-settings-daemon-3.6.4.orig/plugins/background/gnome-fallback-background-helper.desktop.in.in
 
gnome-settings-daemon-3.6.4/plugins/background/gnome-fallback-background-helper.desktop.in.in
 
gnome-settings-daemon-3.6.4.orig/plugins/background/gnome-fallback-background-helper.desktop.in.in
 2013-04-24 14:32:47.290988000 +0200
-+++ 

[arch-commits] Commit in gnome-settings-daemon-compat/repos (12 files)

2013-04-24 Thread Balló György
Date: Thursday, April 25, 2013 @ 00:19:46
  Author: bgyorgy
Revision: 88929

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

Deleted:
  gnome-settings-daemon-compat/repos/community-i686/PKGBUILD
  
gnome-settings-daemon-compat/repos/community-i686/draw-background-unconditionally.patch
  gnome-settings-daemon-compat/repos/community-i686/flashback-rename.patch
  
gnome-settings-daemon-compat/repos/community-i686/remove-libgsd-dependency.patch
  gnome-settings-daemon-compat/repos/community-i686/sessionisactive-port.patch
  
gnome-settings-daemon-compat/repos/community-i686/standalone-background-helper.patch
  gnome-settings-daemon-compat/repos/community-x86_64/PKGBUILD
  
gnome-settings-daemon-compat/repos/community-x86_64/draw-background-unconditionally.patch
  gnome-settings-daemon-compat/repos/community-x86_64/flashback-rename.patch
  
gnome-settings-daemon-compat/repos/community-x86_64/remove-libgsd-dependency.patch
  gnome-settings-daemon-compat/repos/community-x86_64/sessionisactive-port.patch
  
gnome-settings-daemon-compat/repos/community-x86_64/standalone-background-helper.patch

+
 community-i686/PKGBUILD|   75 --
 community-i686/draw-background-unconditionally.patch   |  162 -
 community-i686/flashback-rename.patch  |   27 
 community-i686/remove-libgsd-dependency.patch  |  160 -
 community-i686/sessionisactive-port.patch  |   73 --
 community-i686/standalone-background-helper.patch  |  437 ---
 community-x86_64/PKGBUILD  |   75 --
 community-x86_64/draw-background-unconditionally.patch |  162 -
 community-x86_64/flashback-rename.patch|   27 
 community-x86_64/remove-libgsd-dependency.patch|  160 -
 community-x86_64/sessionisactive-port.patch|   73 --
 community-x86_64/standalone-background-helper.patch|  437 ---
 12 files changed, 1868 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 88928:88929 to see the changes.


[arch-commits] Commit in gnome-settings-daemon-compat/repos (24 files)

2013-04-24 Thread Balló György
Date: Thursday, April 25, 2013 @ 00:24:31
  Author: bgyorgy
Revision: 88930

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

Added:
  gnome-settings-daemon-compat/repos/community-i686/PKGBUILD
(from rev 88929, gnome-settings-daemon-compat/trunk/PKGBUILD)
  
gnome-settings-daemon-compat/repos/community-i686/draw-background-unconditionally.patch
(from rev 88929, 
gnome-settings-daemon-compat/trunk/draw-background-unconditionally.patch)
  gnome-settings-daemon-compat/repos/community-i686/move-desktop-file.patch
(from rev 88929, gnome-settings-daemon-compat/trunk/move-desktop-file.patch)
  
gnome-settings-daemon-compat/repos/community-i686/remove-libgsd-dependency.patch
(from rev 88929, 
gnome-settings-daemon-compat/trunk/remove-libgsd-dependency.patch)
  gnome-settings-daemon-compat/repos/community-i686/revert-input-sources.patch
(from rev 88929, 
gnome-settings-daemon-compat/trunk/revert-input-sources.patch)
  gnome-settings-daemon-compat/repos/community-i686/sessionisactive-port.patch
(from rev 88929, 
gnome-settings-daemon-compat/trunk/sessionisactive-port.patch)
  
gnome-settings-daemon-compat/repos/community-i686/standalone-background-helper.patch
(from rev 88929, 
gnome-settings-daemon-compat/trunk/standalone-background-helper.patch)
  
gnome-settings-daemon-compat/repos/community-i686/standalone-media-keys-helper.patch
(from rev 88929, 
gnome-settings-daemon-compat/trunk/standalone-media-keys-helper.patch)
  gnome-settings-daemon-compat/repos/community-i686/xinput.patch
(from rev 88929, gnome-settings-daemon-compat/trunk/xinput.patch)
  gnome-settings-daemon-compat/repos/community-x86_64/PKGBUILD
(from rev 88929, gnome-settings-daemon-compat/trunk/PKGBUILD)
  
gnome-settings-daemon-compat/repos/community-x86_64/draw-background-unconditionally.patch
(from rev 88929, 
gnome-settings-daemon-compat/trunk/draw-background-unconditionally.patch)
  gnome-settings-daemon-compat/repos/community-x86_64/move-desktop-file.patch
(from rev 88929, gnome-settings-daemon-compat/trunk/move-desktop-file.patch)
  
gnome-settings-daemon-compat/repos/community-x86_64/remove-libgsd-dependency.patch
(from rev 88929, 
gnome-settings-daemon-compat/trunk/remove-libgsd-dependency.patch)
  gnome-settings-daemon-compat/repos/community-x86_64/revert-input-sources.patch
(from rev 88929, 
gnome-settings-daemon-compat/trunk/revert-input-sources.patch)
  gnome-settings-daemon-compat/repos/community-x86_64/sessionisactive-port.patch
(from rev 88929, 
gnome-settings-daemon-compat/trunk/sessionisactive-port.patch)
  
gnome-settings-daemon-compat/repos/community-x86_64/standalone-background-helper.patch
(from rev 88929, 
gnome-settings-daemon-compat/trunk/standalone-background-helper.patch)
  
gnome-settings-daemon-compat/repos/community-x86_64/standalone-media-keys-helper.patch
(from rev 88929, 
gnome-settings-daemon-compat/trunk/standalone-media-keys-helper.patch)
  gnome-settings-daemon-compat/repos/community-x86_64/xinput.patch
(from rev 88929, gnome-settings-daemon-compat/trunk/xinput.patch)
Deleted:
  gnome-settings-daemon-compat/repos/community-i686/revert-input-sources.patch
  
gnome-settings-daemon-compat/repos/community-i686/standalone-media-keys-helper.patch
  gnome-settings-daemon-compat/repos/community-i686/xinput.patch
  gnome-settings-daemon-compat/repos/community-x86_64/revert-input-sources.patch
  
gnome-settings-daemon-compat/repos/community-x86_64/standalone-media-keys-helper.patch
  gnome-settings-daemon-compat/repos/community-x86_64/xinput.patch

+
 /revert-input-sources.patch|  246 +++
 /standalone-media-keys-helper.patch| 1128 +++
 /xinput.patch  |   72 
 community-i686/PKGBUILD|   75 
 community-i686/draw-background-unconditionally.patch   |  162 ++
 community-i686/move-desktop-file.patch |   60 
 community-i686/remove-libgsd-dependency.patch  |  160 ++
 community-i686/revert-input-sources.patch  |  123 -
 community-i686/sessionisactive-port.patch  |   73 
 community-i686/standalone-background-helper.patch  |  437 +
 community-i686/standalone-media-keys-helper.patch  |  564 ---
 community-i686/xinput.patch|   36 
 community-x86_64/PKGBUILD  |   75 
 community-x86_64/draw-background-unconditionally.patch |  162 ++
 community-x86_64/move-desktop-file.patch   |   60 
 community-x86_64/remove-libgsd-dependency.patch|  160 ++
 community-x86_64/revert-input-sources.patch|  123 -
 community-x86_64/sessionisactive-port.patch|   73 
 community-x86_64/standalone-background-helper.patch|  437 +
 community-x86_64/standalone-media-keys-helper.patch|  564 ---
 

[arch-commits] Commit in gnome-panel/trunk (2 files)

2013-04-24 Thread Balló György
Date: Thursday, April 25, 2013 @ 00:25:37
  Author: bgyorgy
Revision: 88931

upgpkg: gnome-panel 3.6.2-5

Add fallback hepers to the session file

Modified:
  gnome-panel/trunk/0001-Add-the-GNOME-Flashback-session.patch
  gnome-panel/trunk/PKGBUILD

+
 0001-Add-the-GNOME-Flashback-session.patch |2 +-
 PKGBUILD   |4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

Modified: 0001-Add-the-GNOME-Flashback-session.patch
===
--- 0001-Add-the-GNOME-Flashback-session.patch  2013-04-24 22:24:31 UTC (rev 
88930)
+++ 0001-Add-the-GNOME-Flashback-session.patch  2013-04-24 22:25:37 UTC (rev 
88931)
@@ -76,7 +76,7 @@
 @@ -0,0 +1,3 @@
 +[GNOME Session]
 +_Name=GNOME Flashback
-+RequiredComponents=gnome-panel;gnome-settings-daemon;gnome-screensaver;metacity;nautilus-classic;notification-daemon;
++RequiredComponents=gnome-panel;gnome-settings-daemon;gnome-screensaver;metacity;nautilus-classic;notification-daemon;gnome-fallback-background-helper;gnome-fallback-media-keys-helper;gnome-fallback-mount-helper;
 diff --git a/po/POTFILES.in b/po/POTFILES.in
 index bc65c4c..a6aa6c7 100644
 --- a/po/POTFILES.in

Modified: PKGBUILD
===
--- PKGBUILD2013-04-24 22:24:31 UTC (rev 88930)
+++ PKGBUILD2013-04-24 22:25:37 UTC (rev 88931)
@@ -5,7 +5,7 @@
 pkgbase=gnome-panel
 pkgname=('gnome-panel' 'gnome-flashback-session')
 pkgver=3.6.2
-pkgrel=4
+pkgrel=5
 arch=('i686' 'x86_64')
 license=('GPL')
 pkgdesc=Legacy GNOME panel
@@ -25,7 +25,7 @@
 '3a67f4b07a7dd356fad6b40a43983f3945123ed40080eb153396a481b34efc0c'
 'e3298c62bc577969817c5d6752be83a5129004fd344e4f7998a0d8aa61874305'
 '9d742f675d9e09a032bfe00e0523a4ef7e234589a74a6086243bf335ce212775'
-'f313791d246749f18764ad4af13c4efe54483bc327fab371c47f9fbfc25b20a9'
+'9db0d1dadd2183777ed39e84caca1096a857897bbcf0e18ad56dd397f1e0'
 '6828c097505d2dbbf465ed7ff694adbd646a0af2105c8dd864d1061bf0afea71')
 
 build() {



  1   2   >