[arch-commits] Commit in pacman/trunk (PKGBUILD pacman-4.2.0-roundup.patch)

2014-12-28 Thread Allan McRae
Date: Sunday, December 28, 2014 @ 10:07:13
  Author: allan
Revision: 228108

upgpkg: pacman 4.2.0-5

acutally update the patch...

Modified:
  pacman/trunk/PKGBUILD
  pacman/trunk/pacman-4.2.0-roundup.patch

+
 PKGBUILD   |4 -
 pacman-4.2.0-roundup.patch |  161 +--
 2 files changed, 157 insertions(+), 8 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-12-28 03:39:45 UTC (rev 228107)
+++ PKGBUILD2014-12-28 09:07:13 UTC (rev 228108)
@@ -5,7 +5,7 @@
 
 pkgname=pacman
 pkgver=4.2.0
-pkgrel=4
+pkgrel=5
 pkgdesc=A library-based package manager with dependency support
 arch=('i686' 'x86_64')
 url=http://www.archlinux.org/pacman/;
@@ -30,7 +30,7 @@
  '2db6c94709bb30cc614a176ecf8badb1'
  'de74a13618347f08ae4a9637f74471c4'
  '0d07f2a750ba20d114c3adc799d371de'
- 'e98459a565bb4e199695f9c319d7d52d')
+ '8b8e478e3b6f785f6fb0029f792cea38')
 validpgpkeys=('6645B0A8C7005E78DB1D7864F99FFE0FEAE999BD')  # Allan McRae 
al...@archlinux.org
 
 prepare() {

Modified: pacman-4.2.0-roundup.patch
===
--- pacman-4.2.0-roundup.patch  2014-12-28 03:39:45 UTC (rev 228107)
+++ pacman-4.2.0-roundup.patch  2014-12-28 09:07:13 UTC (rev 228108)
@@ -29,6 +29,32 @@
  #
  # ARCHITECTURE, COMPILE FLAGS
  #
+diff --git a/lib/libalpm/log.c b/lib/libalpm/log.c
+index d232bcc..9af5e84 100644
+--- a/lib/libalpm/log.c
 b/lib/libalpm/log.c
+@@ -52,7 +52,7 @@ int SYMEXPORT alpm_logaction(alpm_handle_t *handle, const 
char *prefix,
+   int fd;
+   do {
+   fd = open(handle-logfile, O_WRONLY | O_APPEND | 
O_CREAT | O_CLOEXEC,
+-  );
++  0644);
+   } while(fd == -1  errno == EINTR);
+   if(fd = 0) {
+   handle-logstream = fdopen(fd, a);
+diff --git a/lib/libalpm/package.c b/lib/libalpm/package.c
+index e2997f6..d9ed3d3 100644
+--- a/lib/libalpm/package.c
 b/lib/libalpm/package.c
+@@ -574,7 +574,7 @@ int _alpm_pkg_dup(alpm_pkg_t *pkg, alpm_pkg_t **new_ptr)
+   newpkg-installdate = pkg-installdate;
+   STRDUP(newpkg-packager, pkg-packager, goto cleanup);
+   STRDUP(newpkg-md5sum, pkg-md5sum, goto cleanup);
+-  STRDUP(newpkg-sha256sum, pkg-md5sum, goto cleanup);
++  STRDUP(newpkg-sha256sum, pkg-sha256sum, goto cleanup);
+   STRDUP(newpkg-arch, pkg-arch, goto cleanup);
+   newpkg-size = pkg-size;
+   newpkg-isize = pkg-isize;
 diff --git a/scripts/makepkg-template.pl.in b/scripts/makepkg-template.pl.in
 index 6e6d944..d9da167 100755
 --- a/scripts/makepkg-template.pl.in
@@ -43,12 +69,94 @@
}
$values{$key} = $val;
 diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in
-index 33dff24..60276f6 100644
+index 33dff24..18b2822 100644
 --- a/scripts/makepkg.sh.in
 +++ b/scripts/makepkg.sh.in
-@@ -2896,7 +2896,7 @@ get_vcsclient() {
+@@ -1317,47 +1317,41 @@ verify_integrity_sums() {
+   fi
  }
  
+-have_sources() {
+-  local a
+-
+-  (( ${#source[*]} ))  return 0
++check_checksums() {
++  local integ a
++  declare -A correlation
++  (( SKIPCHECKSUMS ))  return 0
+ 
++  # Initialize a map which we'll use to verify that every source array 
has at
++  # least some kind of checksum array associated with it.
++  (( ${#source[*]} ))  correlation['source']=1
+   case $1 in
+   all)
+   for a in ${arch[@]}; do
+-  array_build _ source_$a  return 0
++  array_build _ source_$a  
correlation[source_$a]=1
+   done
+   ;;
+   *)
+-  array_build _ source_$CARCH  return 0
++  array_build _ source_$CARCH  
correlation[source_$CARCH]=1
+   ;;
+   esac
+ 
+-  return 1
+-}
+-
+-check_checksums() {
+-  (( SKIPCHECKSUMS ))  return 0
+-  have_sources $1 || return 0
+-
+-  local correlation=0
+-  local integ a
+   for integ in ${known_hash_algos[@]}; do
+-  verify_integrity_sums $integ  correlation=1
++  verify_integrity_sums $integ  unset correlation[source]
+ 
+   case $1 in
+   all)
+   for a in ${arch[@]}; do
+-  verify_integrity_sums $integ $a  
correlation=1
++  verify_integrity_sums $integ $a  
unset correlation[source_$a]
+   done
+   ;;
+   *)
+- 

[arch-commits] Commit in pacman/repos (20 files)

2014-12-28 Thread Allan McRae
Date: Sunday, December 28, 2014 @ 10:09:17
  Author: allan
Revision: 228109

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

Added:
  pacman/repos/testing-i686/PKGBUILD
(from rev 228108, pacman/trunk/PKGBUILD)
  pacman/repos/testing-i686/makepkg.conf
(from rev 228108, pacman/trunk/makepkg.conf)
  pacman/repos/testing-i686/pacman-4.2.0-roundup.patch
(from rev 228108, pacman/trunk/pacman-4.2.0-roundup.patch)
  pacman/repos/testing-i686/pacman.conf.i686
(from rev 228108, pacman/trunk/pacman.conf.i686)
  pacman/repos/testing-i686/pacman.conf.x86_64
(from rev 228108, pacman/trunk/pacman.conf.x86_64)
  pacman/repos/testing-x86_64/PKGBUILD
(from rev 228108, pacman/trunk/PKGBUILD)
  pacman/repos/testing-x86_64/makepkg.conf
(from rev 228108, pacman/trunk/makepkg.conf)
  pacman/repos/testing-x86_64/pacman-4.2.0-roundup.patch
(from rev 228108, pacman/trunk/pacman-4.2.0-roundup.patch)
  pacman/repos/testing-x86_64/pacman.conf.i686
(from rev 228108, pacman/trunk/pacman.conf.i686)
  pacman/repos/testing-x86_64/pacman.conf.x86_64
(from rev 228108, pacman/trunk/pacman.conf.x86_64)
Deleted:
  pacman/repos/testing-i686/PKGBUILD
  pacman/repos/testing-i686/makepkg.conf
  pacman/repos/testing-i686/pacman-4.2.0-roundup.patch
  pacman/repos/testing-i686/pacman.conf.i686
  pacman/repos/testing-i686/pacman.conf.x86_64
  pacman/repos/testing-x86_64/PKGBUILD
  pacman/repos/testing-x86_64/makepkg.conf
  pacman/repos/testing-x86_64/pacman-4.2.0-roundup.patch
  pacman/repos/testing-x86_64/pacman.conf.i686
  pacman/repos/testing-x86_64/pacman.conf.x86_64

---+
 /PKGBUILD |  196 +++
 /makepkg.conf |  292 
 /pacman-4.2.0-roundup.patch   |  486 
 /pacman.conf.i686 |  180 ++
 /pacman.conf.x86_64   |  198 +++
 testing-i686/PKGBUILD |   98 -
 testing-i686/makepkg.conf |  146 
 testing-i686/pacman-4.2.0-roundup.patch   |   94 -
 testing-i686/pacman.conf.i686 |   90 -
 testing-i686/pacman.conf.x86_64   |   99 -
 testing-x86_64/PKGBUILD   |   98 -
 testing-x86_64/makepkg.conf   |  146 
 testing-x86_64/pacman-4.2.0-roundup.patch |   94 -
 testing-x86_64/pacman.conf.i686   |   90 -
 testing-x86_64/pacman.conf.x86_64 |   99 -
 15 files changed, 1352 insertions(+), 1054 deletions(-)

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


[arch-commits] Commit in mplayer/trunk (PKGBUILD giflib51.patch)

2014-12-28 Thread Bartłomiej Piotrowski
Date: Sunday, December 28, 2014 @ 10:26:46
  Author: bpiotrowski
Revision: 228110

upgpkg: mplayer 37344-1

new upstream release

Modified:
  mplayer/trunk/PKGBUILD
Deleted:
  mplayer/trunk/giflib51.patch

+
 PKGBUILD   |   18 --
 giflib51.patch |   24 
 2 files changed, 8 insertions(+), 34 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-12-28 09:09:17 UTC (rev 228109)
+++ PKGBUILD2014-12-28 09:26:46 UTC (rev 228110)
@@ -5,8 +5,8 @@
 
 pkgbase=mplayer
 pkgname=('mplayer' 'mencoder')
-pkgver=37224
-pkgrel=3
+pkgver=37344
+pkgrel=1
 arch=('i686' 'x86_64')
 makedepends=(
   'libxxf86dga' 'libxxf86vm' 'libmad' 'libxinerama' 'sdl' 'lame' 'libtheora'
@@ -14,24 +14,23 @@
   'faac' 'faad2' 'lirc-utils'  'libxvmc' 'enca' 'libvdpau' 'opencore-amr'
   'libdca' 'a52dec' 'schroedinger' 'libvpx' 'libpulse' 'fribidi' 'unzip' 'mesa'
   'live-media' 'yasm' 'git' 'fontconfig' 'mpg123' 'ladspa' 'libass' 'libbluray'
-  'libcdio-paranoia' 'opus' 'subversion' 'x264' 'libx264' 'rtmpdump' 'gsm'
+  'libcdio-paranoia' 'opus' 'subversion' 'x264' 'libx264' 'rtmpdump' 'gnutls'
+  'gsm'
 )
 license=('GPL')
 url='http://www.mplayerhq.hu/'
 options=('!buildflags' '!emptydirs')
 source=($pkgbase-$pkgver::svn://svn.mplayerhq.hu/mplayer/trunk#revision=$pkgver
-http://ffmpeg.org/releases/ffmpeg-2.2.10.tar.bz2
+http://ffmpeg.org/releases/ffmpeg-2.5.2.tar.bz2
 mplayer.desktop
 cdio-includes.patch
 include-samba-4.0.patch
-giflib51.patch
 revert-icl-fixes.patch)
 md5sums=('SKIP'
- 'f40a829f5075c8ee901e5dbc6d40c209'
+ '308d49d91752ac00ded9483ebaab849d'
  '62f44a58f072b2b1a3c3d3e4976d64b3'
  '7b5be7191aafbea64218dc4916343bbc'
  '868a92bdef148df7f38bfa992b26ce9d'
- '14461fb94b7aa5dda091ba4f737df2d9'
  '3579402002b7302fdf2d146639333efd')
 
 pkgver() {
@@ -41,11 +40,10 @@
 
 prepare() {
   cd $pkgbase-$pkgver
-  mv ../ffmpeg-2.2.10 ./ffmpeg
+  mv ../ffmpeg-*/ ./ffmpeg
 
   patch -p0 -i ../cdio-includes.patch
   patch -p1 -i ../include-samba-4.0.patch
-  patch -Np0 -i ../giflib51.patch
   patch -Np0 -i ../revert-icl-fixes.patch
 
   ./version.sh
@@ -89,7 +87,7 @@
 'opencore-amr' 'jack' 'libmad' 'sdl' 'libtheora' 'libcaca' 'libxxf86dga'
 'fribidi' 'libjpeg' 'faac' 'faad2' 'libxvmc' 'schroedinger' 'mpg123'
 'libass' 'libxxf86vm' 'libbluray' 'libcdio-paranoia' 'opus' 'rtmpdump'
-'gsm'
+'gsm' 'gnutls'
   )
 
   cd $pkgbase-$pkgver

Deleted: giflib51.patch
===
--- giflib51.patch  2014-12-28 09:09:17 UTC (rev 228109)
+++ giflib51.patch  2014-12-28 09:26:46 UTC (rev 228110)
@@ -1,24 +0,0 @@
 libvo/vo_gif89a.c.orig 2014-06-11 10:06:29.243216331 +
-+++ libvo/vo_gif89a.c  2014-06-11 10:08:37.346078847 +
-@@ -75,6 +75,9 @@
- #define MakeMapObject GifMakeMapObject
- #define FreeMapObject GifFreeMapObject
- #define QuantizeBuffer GifQuantizeBuffer
-+#if defined GIFLIB_MINOR  GIFLIB_MINOR = 1
-+#define EGifCloseFile(a) EGifCloseFile(a, NULL)
-+#endif
- #endif
- 
- // how many frames per second we are aiming for during output.
 libmpdemux/demux_gif.c.orig2014-06-11 10:46:48.120883788 +
-+++ libmpdemux/demux_gif.c 2014-06-11 10:47:28.290732272 +
-@@ -50,6 +50,9 @@
- #define DGifOpenFileHandle(a) DGifOpenFileHandle(a, NULL)
- #define GifError() (gif ? gif-Error : 0)
- #define GifErrorString() GifErrorString(gif-Error)
-+#if defined GIFLIB_MINOR  GIFLIB_MINOR = 1
-+#define DGifCloseFile(a) DGifCloseFile(a, NULL)
-+#endif
- #endif
- 
- /* = 4.2 prior GIFLIB did not have MAJOR/MINOR defines */


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

2014-12-28 Thread Bartłomiej Piotrowski
Date: Sunday, December 28, 2014 @ 10:27:08
  Author: bpiotrowski
Revision: 228111

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

Added:
  mplayer/repos/testing-i686/
  mplayer/repos/testing-i686/PKGBUILD
(from rev 228110, mplayer/trunk/PKGBUILD)
  mplayer/repos/testing-i686/cdio-includes.patch
(from rev 228110, mplayer/trunk/cdio-includes.patch)
  mplayer/repos/testing-i686/include-samba-4.0.patch
(from rev 228110, mplayer/trunk/include-samba-4.0.patch)
  mplayer/repos/testing-i686/mplayer.desktop
(from rev 228110, mplayer/trunk/mplayer.desktop)
  mplayer/repos/testing-i686/mplayer.install
(from rev 228110, mplayer/trunk/mplayer.install)
  mplayer/repos/testing-i686/mplayer.png
(from rev 228110, mplayer/trunk/mplayer.png)
  mplayer/repos/testing-i686/revert-icl-fixes.patch
(from rev 228110, mplayer/trunk/revert-icl-fixes.patch)
  mplayer/repos/testing-x86_64/
  mplayer/repos/testing-x86_64/PKGBUILD
(from rev 228110, mplayer/trunk/PKGBUILD)
  mplayer/repos/testing-x86_64/cdio-includes.patch
(from rev 228110, mplayer/trunk/cdio-includes.patch)
  mplayer/repos/testing-x86_64/include-samba-4.0.patch
(from rev 228110, mplayer/trunk/include-samba-4.0.patch)
  mplayer/repos/testing-x86_64/mplayer.desktop
(from rev 228110, mplayer/trunk/mplayer.desktop)
  mplayer/repos/testing-x86_64/mplayer.install
(from rev 228110, mplayer/trunk/mplayer.install)
  mplayer/repos/testing-x86_64/mplayer.png
(from rev 228110, mplayer/trunk/mplayer.png)
  mplayer/repos/testing-x86_64/revert-icl-fixes.patch
(from rev 228110, mplayer/trunk/revert-icl-fixes.patch)

+
 testing-i686/PKGBUILD  |  118 +++
 testing-i686/cdio-includes.patch   |   43 +++
 testing-i686/include-samba-4.0.patch   |   12 +++
 testing-i686/mplayer.desktop   |   22 +
 testing-i686/mplayer.install   |   11 ++
 testing-i686/revert-icl-fixes.patch|   66 +
 testing-x86_64/PKGBUILD|  118 +++
 testing-x86_64/cdio-includes.patch |   43 +++
 testing-x86_64/include-samba-4.0.patch |   12 +++
 testing-x86_64/mplayer.desktop |   22 +
 testing-x86_64/mplayer.install |   11 ++
 testing-x86_64/revert-icl-fixes.patch  |   66 +
 12 files changed, 544 insertions(+)

Copied: mplayer/repos/testing-i686/PKGBUILD (from rev 228110, 
mplayer/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-12-28 09:27:08 UTC (rev 228111)
@@ -0,0 +1,118 @@
+# $Id$
+# Maintainer:  Ionut Biru ib...@archlinux.org
+# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: Hugo Doria h...@archlinux.org
+
+pkgbase=mplayer
+pkgname=('mplayer' 'mencoder')
+pkgver=37344
+pkgrel=1
+arch=('i686' 'x86_64')
+makedepends=(
+  'libxxf86dga' 'libxxf86vm' 'libmad' 'libxinerama' 'sdl' 'lame' 'libtheora'
+  'xvidcore' 'libmng' 'libxss' 'libgl' 'smbclient' 'aalib' 'jack' 'libcaca'
+  'faac' 'faad2' 'lirc-utils'  'libxvmc' 'enca' 'libvdpau' 'opencore-amr'
+  'libdca' 'a52dec' 'schroedinger' 'libvpx' 'libpulse' 'fribidi' 'unzip' 'mesa'
+  'live-media' 'yasm' 'git' 'fontconfig' 'mpg123' 'ladspa' 'libass' 'libbluray'
+  'libcdio-paranoia' 'opus' 'subversion' 'x264' 'libx264' 'rtmpdump' 'gnutls'
+  'gsm'
+)
+license=('GPL')
+url='http://www.mplayerhq.hu/'
+options=('!buildflags' '!emptydirs')
+source=($pkgbase-$pkgver::svn://svn.mplayerhq.hu/mplayer/trunk#revision=$pkgver
+http://ffmpeg.org/releases/ffmpeg-2.5.2.tar.bz2
+mplayer.desktop
+cdio-includes.patch
+include-samba-4.0.patch
+revert-icl-fixes.patch)
+md5sums=('SKIP'
+ '308d49d91752ac00ded9483ebaab849d'
+ '62f44a58f072b2b1a3c3d3e4976d64b3'
+ '7b5be7191aafbea64218dc4916343bbc'
+ '868a92bdef148df7f38bfa992b26ce9d'
+ '3579402002b7302fdf2d146639333efd')
+
+pkgver() {
+  cd $pkgbase-$pkgver
+  svnversion
+}
+
+prepare() {
+  cd $pkgbase-$pkgver
+  mv ../ffmpeg-*/ ./ffmpeg
+
+  patch -p0 -i ../cdio-includes.patch
+  patch -p1 -i ../include-samba-4.0.patch
+  patch -Np0 -i ../revert-icl-fixes.patch
+
+  ./version.sh
+}
+
+build() {
+  cd $pkgbase-$pkgver
+
+  ./configure --prefix=/usr \
+--enable-runtime-cpudetection \
+--disable-gui \
+--disable-arts \
+--disable-liblzo \
+--disable-speex \
+--disable-openal \
+--disable-libdv \
+--disable-musepack \
+--disable-esd \
+--disable-mga \
+--disable-ass-internal \
+--disable-cdparanoia \
+--enable-xvmc \
+--enable-radio \
+--enable-radio-capture \
+--enable-smb \
+--language=all \
+--confdir=/etc/mplayer
+  [[ $CARCH = i686 ]]   sed 's|-march=i486|-march=i686|g' -i config.mak
+
+  make
+}
+
+package_mplayer() {
+  pkgdesc='Media player 

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

2014-12-28 Thread Ray Rashif
Date: Sunday, December 28, 2014 @ 11:28:58
  Author: schiv
Revision: 228113

upgpkg: ecasound 2.9.1-3

rebuild for static libs; FS#43175

Modified:
  ecasound/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-28 09:57:38 UTC (rev 228112)
+++ PKGBUILD2014-12-28 10:28:58 UTC (rev 228113)
@@ -5,7 +5,7 @@
 
 pkgname=ecasound
 pkgver=2.9.1
-pkgrel=2
+pkgrel=3
 pkgdesc=Command-line multitrack audio processor
 arch=('i686' 'x86_64')
 url=http://www.eca.cx/ecasound/;
@@ -23,6 +23,7 @@
 'libmikmod: tracker module')
 source=(http://ecasound.seul.org/download/$pkgname-$pkgver.tar.gz;
 'ruby2.patch')
+options=('staticlibs')
 md5sums=('13c7be1e4eddc0bbf3792dc1e465'
  '6909dbd4f67f76d3bd31ce7c7fe16212')
 


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

2014-12-28 Thread Ray Rashif
Date: Sunday, December 28, 2014 @ 11:35:42
  Author: schiv
Revision: 228114

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

Added:
  ecasound/repos/extra-i686/PKGBUILD
(from rev 228113, ecasound/trunk/PKGBUILD)
  ecasound/repos/extra-i686/ruby2.patch
(from rev 228113, ecasound/trunk/ruby2.patch)
  ecasound/repos/extra-x86_64/PKGBUILD
(from rev 228113, ecasound/trunk/PKGBUILD)
  ecasound/repos/extra-x86_64/ruby2.patch
(from rev 228113, ecasound/trunk/ruby2.patch)
Deleted:
  ecasound/repos/extra-i686/PKGBUILD
  ecasound/repos/extra-i686/ruby2.patch
  ecasound/repos/extra-x86_64/PKGBUILD
  ecasound/repos/extra-x86_64/ruby2.patch

--+
 /PKGBUILD|  108 +
 /ruby2.patch |   24 ++
 extra-i686/PKGBUILD  |   53 --
 extra-i686/ruby2.patch   |   12 -
 extra-x86_64/PKGBUILD|   53 --
 extra-x86_64/ruby2.patch |   12 -
 6 files changed, 132 insertions(+), 130 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-12-28 10:28:58 UTC (rev 228113)
+++ extra-i686/PKGBUILD 2014-12-28 10:35:42 UTC (rev 228114)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Ray Rashif sc...@archlinux.org
-# Contributor: Eric Belanger e...@archlinux.org
-# Contributor: Tom Newsom jeeps...@gmx.co.uk
-
-pkgname=ecasound
-pkgver=2.9.1
-pkgrel=2
-pkgdesc=Command-line multitrack audio processor
-arch=('i686' 'x86_64')
-url=http://www.eca.cx/ecasound/;
-license=('GPL' 'LGPL')
-depends=('audiofile' 'liblo=0.28' 'liboil' 'lilv')
-makedepends=('python2' 'ruby')
-optdepends=('python2: ecamonitor, ECI API'
-'ruby: ECI API'
-'mpg123: MP3 decoding'
-'lame: MP3 encoding'
-'vorbis-tools: Ogg Vorbis decoding/encoding'
-'faad2: AAC decoding'
-'faac: AAC encoding'
-'timidity++: MIDI file input'
-'libmikmod: tracker module')
-source=(http://ecasound.seul.org/download/$pkgname-$pkgver.tar.gz;
-'ruby2.patch')
-md5sums=('13c7be1e4eddc0bbf3792dc1e465'
- '6909dbd4f67f76d3bd31ce7c7fe16212')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  # fix ruby 2.0 incompatibility + use vendor_ruby for ruby files
-  patch -Np1 -i $srcdir/ruby2.patch
-
-  PYTHONPATH=/usr/bin/python2 ./configure \
---prefix=/usr \
---with-python-includes=/usr/include/python2.7 \
---with-python-modules=/usr/lib/python2.7
-
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-
-  make DESTDIR=$pkgdir/ install
-
-  # fix for python 2.7
-  sed -i 's:bin/env python:bin/env python2:' \
-$pkgdir/usr/bin/ecamonitor
-}
-
-# vim:set ts=2 sw=2 et:

Copied: ecasound/repos/extra-i686/PKGBUILD (from rev 228113, 
ecasound/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-12-28 10:35:42 UTC (rev 228114)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Ray Rashif sc...@archlinux.org
+# Contributor: Eric Belanger e...@archlinux.org
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+
+pkgname=ecasound
+pkgver=2.9.1
+pkgrel=3
+pkgdesc=Command-line multitrack audio processor
+arch=('i686' 'x86_64')
+url=http://www.eca.cx/ecasound/;
+license=('GPL' 'LGPL')
+depends=('audiofile' 'liblo=0.28' 'liboil' 'lilv')
+makedepends=('python2' 'ruby')
+optdepends=('python2: ecamonitor, ECI API'
+'ruby: ECI API'
+'mpg123: MP3 decoding'
+'lame: MP3 encoding'
+'vorbis-tools: Ogg Vorbis decoding/encoding'
+'faad2: AAC decoding'
+'faac: AAC encoding'
+'timidity++: MIDI file input'
+'libmikmod: tracker module')
+source=(http://ecasound.seul.org/download/$pkgname-$pkgver.tar.gz;
+'ruby2.patch')
+options=('staticlibs')
+md5sums=('13c7be1e4eddc0bbf3792dc1e465'
+ '6909dbd4f67f76d3bd31ce7c7fe16212')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  # fix ruby 2.0 incompatibility + use vendor_ruby for ruby files
+  patch -Np1 -i $srcdir/ruby2.patch
+
+  PYTHONPATH=/usr/bin/python2 ./configure \
+--prefix=/usr \
+--with-python-includes=/usr/include/python2.7 \
+--with-python-modules=/usr/lib/python2.7
+
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+
+  make DESTDIR=$pkgdir/ install
+
+  # fix for python 2.7
+  sed -i 's:bin/env python:bin/env python2:' \
+$pkgdir/usr/bin/ecamonitor
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: extra-i686/ruby2.patch
===
--- extra-i686/ruby2.patch  2014-12-28 10:28:58 UTC (rev 228113)
+++ extra-i686/ruby2.patch  2014-12-28 10:35:42 UTC (rev 228114)
@@ -1,12 +0,0 @@
-diff -aur ecasound-2.9.0.orig/configure ecasound-2.9.0/configure
 ecasound-2.9.0.orig/configure  2013-03-26 17:14:51.759045636 +0800
-+++ 

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

2014-12-28 Thread Massimiliano Torromeo
Date: Sunday, December 28, 2014 @ 12:03:44
  Author: mtorromeo
Revision: 124739

upgpkg: oniguruma 5.9.6-1

Updated to 5.9.6

Modified:
  oniguruma/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-28 02:40:23 UTC (rev 124738)
+++ PKGBUILD2014-12-28 11:03:44 UTC (rev 124739)
@@ -3,8 +3,8 @@
 # Contributor: Andreas Wagner Andreas dot Wagner at em dot uni-frankfurt dot 
de
 
 pkgname=oniguruma
-pkgver=5.9.5
-pkgrel=2
+pkgver=5.9.6
+pkgrel=1
 pkgdesc=a regular expressions library
 arch=('i686' 'x86_64')
 url=http://www.geocities.jp/kosako3/oniguruma/;
@@ -11,7 +11,7 @@
 license=('BSD')
 options=(!libtool)
 
source=(http://www.geocities.jp/kosako3/oniguruma/archive/onig-$pkgver.tar.gz;)
-sha256sums=('9f49ae7819a5f47e25449d0e4b010d479f7868a24a7b9884b47041b49a76438a')
+sha256sums=('d5642010336a6f68b7f2e34b1f1cb14be333e4d95c2ac02b38c162caf44e47a7')
 
 build() {
cd $srcdir/onig-$pkgver


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

2014-12-28 Thread Massimiliano Torromeo
Date: Sunday, December 28, 2014 @ 12:04:21
  Author: mtorromeo
Revision: 124740

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-12-28 11:03:44 UTC (rev 124739)
+++ community-i686/PKGBUILD 2014-12-28 11:04:21 UTC (rev 124740)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
-# Contributor: Andreas Wagner Andreas dot Wagner at em dot uni-frankfurt dot 
de
-
-pkgname=oniguruma
-pkgver=5.9.5
-pkgrel=2
-pkgdesc=a regular expressions library
-arch=('i686' 'x86_64')
-url=http://www.geocities.jp/kosako3/oniguruma/;
-license=('BSD')
-options=(!libtool)
-source=(http://www.geocities.jp/kosako3/oniguruma/archive/onig-$pkgver.tar.gz;)
-sha256sums=('9f49ae7819a5f47e25449d0e4b010d479f7868a24a7b9884b47041b49a76438a')
-
-build() {
-   cd $srcdir/onig-$pkgver
-   ./configure --prefix=/usr
-   make
-}
-
-package() {
-   cd $srcdir/onig-$pkgver
-   make DESTDIR=$pkgdir install
-   install -dm755 $pkgdir/usr/share/doc
-   cp -r doc $pkgdir/usr/share/doc/$pkgname
-   for licfile in COPYING INSTALL; do
-   install -Dm644 $licfile 
$pkgdir/usr/share/licenses/$pkgname/$licfile
-   done
-}

Copied: oniguruma/repos/community-i686/PKGBUILD (from rev 124739, 
oniguruma/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-12-28 11:04:21 UTC (rev 124740)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
+# Contributor: Andreas Wagner Andreas dot Wagner at em dot uni-frankfurt dot 
de
+
+pkgname=oniguruma
+pkgver=5.9.6
+pkgrel=1
+pkgdesc=a regular expressions library
+arch=('i686' 'x86_64')
+url=http://www.geocities.jp/kosako3/oniguruma/;
+license=('BSD')
+options=(!libtool)
+source=(http://www.geocities.jp/kosako3/oniguruma/archive/onig-$pkgver.tar.gz;)
+sha256sums=('d5642010336a6f68b7f2e34b1f1cb14be333e4d95c2ac02b38c162caf44e47a7')
+
+build() {
+   cd $srcdir/onig-$pkgver
+   ./configure --prefix=/usr
+   make
+}
+
+package() {
+   cd $srcdir/onig-$pkgver
+   make DESTDIR=$pkgdir install
+   install -dm755 $pkgdir/usr/share/doc
+   cp -r doc $pkgdir/usr/share/doc/$pkgname
+   for licfile in COPYING INSTALL; do
+   install -Dm644 $licfile 
$pkgdir/usr/share/licenses/$pkgname/$licfile
+   done
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-12-28 11:03:44 UTC (rev 124739)
+++ community-x86_64/PKGBUILD   2014-12-28 11:04:21 UTC (rev 124740)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
-# Contributor: Andreas Wagner Andreas dot Wagner at em dot uni-frankfurt dot 
de
-
-pkgname=oniguruma
-pkgver=5.9.5
-pkgrel=2
-pkgdesc=a regular expressions library
-arch=('i686' 'x86_64')
-url=http://www.geocities.jp/kosako3/oniguruma/;
-license=('BSD')
-options=(!libtool)
-source=(http://www.geocities.jp/kosako3/oniguruma/archive/onig-$pkgver.tar.gz;)
-sha256sums=('9f49ae7819a5f47e25449d0e4b010d479f7868a24a7b9884b47041b49a76438a')
-
-build() {
-   cd $srcdir/onig-$pkgver
-   ./configure --prefix=/usr
-   make
-}
-
-package() {
-   cd $srcdir/onig-$pkgver
-   make DESTDIR=$pkgdir install
-   install -dm755 $pkgdir/usr/share/doc
-   cp -r doc $pkgdir/usr/share/doc/$pkgname
-   for licfile in COPYING INSTALL; do
-   install -Dm644 $licfile 
$pkgdir/usr/share/licenses/$pkgname/$licfile
-   done
-}

Copied: oniguruma/repos/community-x86_64/PKGBUILD (from rev 124739, 
oniguruma/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-12-28 11:04:21 UTC (rev 124740)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
+# Contributor: Andreas Wagner Andreas dot Wagner at em dot uni-frankfurt dot 
de
+
+pkgname=oniguruma
+pkgver=5.9.6
+pkgrel=1
+pkgdesc=a regular expressions library
+arch=('i686' 'x86_64')
+url=http://www.geocities.jp/kosako3/oniguruma/;
+license=('BSD')
+options=(!libtool)

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

2014-12-28 Thread Massimiliano Torromeo
Date: Sunday, December 28, 2014 @ 12:43:34
  Author: mtorromeo
Revision: 124742

upgpkg: libuv 1.1.0-1

Updated to 1.1.0

Modified:
  libuv/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-28 11:20:57 UTC (rev 124741)
+++ PKGBUILD2014-12-28 11:43:34 UTC (rev 124742)
@@ -2,7 +2,7 @@
 # Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
 
 pkgname=libuv
-pkgver=1.0.2
+pkgver=1.1.0
 pkgrel=1
 pkgdesc=A new platform layer for Node.JS
 arch=('i686' 'x86_64')
@@ -38,4 +38,4 @@
$pkgdir/usr/share/doc/$pkgname/ChangeLog
 }
 
-sha256sums=('5f12b66942d9df302c826c869fed1aabc1959fced8c67cdd8c0e2a98c1185b42')
+sha256sums=('e4ff513c18a6322898972b0b6ce986445bcd2c13710f4a46b10baf80b28599cf')


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

2014-12-28 Thread Massimiliano Torromeo
Date: Sunday, December 28, 2014 @ 12:45:06
  Author: mtorromeo
Revision: 124743

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-12-28 11:43:34 UTC (rev 124742)
+++ community-i686/PKGBUILD 2014-12-28 11:45:06 UTC (rev 124743)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
-
-pkgname=libuv
-pkgver=1.0.2
-pkgrel=1
-pkgdesc=A new platform layer for Node.JS
-arch=('i686' 'x86_64')
-url=https://github.com/libuv/libuv;
-license=('custom')
-depends=('glibc')
-source=(https://github.com/libuv/libuv/archive/v$pkgver.tar.gz;)
-
-build() {
-   cd $srcdir/$pkgname-$pkgver
-   ./autogen.sh
-   ./configure --prefix=/usr
-   make
-}
-
-check() {
-   cd $srcdir/$pkgname-$pkgver
-   make check
-}
-
-package() {
-   cd $srcdir/$pkgname-$pkgver
-
-   make DESTDIR=$pkgdir install
-
-   install -Dm644 LICENSE \
-   $pkgdir/usr/share/licenses/$pkgname/LICENSE
-   install -Dm644 AUTHORS \
-   $pkgdir/usr/share/doc/$pkgname/AUTHORS
-   install -Dm644 README.md \
-   $pkgdir/usr/share/doc/$pkgname/README.md
-   install -Dm644 ChangeLog \
-   $pkgdir/usr/share/doc/$pkgname/ChangeLog
-}
-
-sha256sums=('5f12b66942d9df302c826c869fed1aabc1959fced8c67cdd8c0e2a98c1185b42')

Copied: libuv/repos/community-i686/PKGBUILD (from rev 124742, 
libuv/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-12-28 11:45:06 UTC (rev 124743)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
+
+pkgname=libuv
+pkgver=1.1.0
+pkgrel=1
+pkgdesc=A new platform layer for Node.JS
+arch=('i686' 'x86_64')
+url=https://github.com/libuv/libuv;
+license=('custom')
+depends=('glibc')
+source=(https://github.com/libuv/libuv/archive/v$pkgver.tar.gz;)
+
+build() {
+   cd $srcdir/$pkgname-$pkgver
+   ./autogen.sh
+   ./configure --prefix=/usr
+   make
+}
+
+check() {
+   cd $srcdir/$pkgname-$pkgver
+   make check
+}
+
+package() {
+   cd $srcdir/$pkgname-$pkgver
+
+   make DESTDIR=$pkgdir install
+
+   install -Dm644 LICENSE \
+   $pkgdir/usr/share/licenses/$pkgname/LICENSE
+   install -Dm644 AUTHORS \
+   $pkgdir/usr/share/doc/$pkgname/AUTHORS
+   install -Dm644 README.md \
+   $pkgdir/usr/share/doc/$pkgname/README.md
+   install -Dm644 ChangeLog \
+   $pkgdir/usr/share/doc/$pkgname/ChangeLog
+}
+
+sha256sums=('e4ff513c18a6322898972b0b6ce986445bcd2c13710f4a46b10baf80b28599cf')

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-12-28 11:43:34 UTC (rev 124742)
+++ community-x86_64/PKGBUILD   2014-12-28 11:45:06 UTC (rev 124743)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
-
-pkgname=libuv
-pkgver=1.0.2
-pkgrel=1
-pkgdesc=A new platform layer for Node.JS
-arch=('i686' 'x86_64')
-url=https://github.com/libuv/libuv;
-license=('custom')
-depends=('glibc')
-source=(https://github.com/libuv/libuv/archive/v$pkgver.tar.gz;)
-
-build() {
-   cd $srcdir/$pkgname-$pkgver
-   ./autogen.sh
-   ./configure --prefix=/usr
-   make
-}
-
-check() {
-   cd $srcdir/$pkgname-$pkgver
-   make check
-}
-
-package() {
-   cd $srcdir/$pkgname-$pkgver
-
-   make DESTDIR=$pkgdir install
-
-   install -Dm644 LICENSE \
-   $pkgdir/usr/share/licenses/$pkgname/LICENSE
-   install -Dm644 AUTHORS \
-   $pkgdir/usr/share/doc/$pkgname/AUTHORS
-   install -Dm644 README.md \
-   $pkgdir/usr/share/doc/$pkgname/README.md
-   install -Dm644 ChangeLog \
-   $pkgdir/usr/share/doc/$pkgname/ChangeLog
-}
-
-sha256sums=('5f12b66942d9df302c826c869fed1aabc1959fced8c67cdd8c0e2a98c1185b42')

Copied: libuv/repos/community-x86_64/PKGBUILD (from rev 124742, 
libuv/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-12-28 11:45:06 UTC (rev 124743)
@@ -0,0 +1,41 @@
+# $Id$
+# 

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

2014-12-28 Thread Massimiliano Torromeo
Date: Sunday, December 28, 2014 @ 12:45:30
  Author: mtorromeo
Revision: 124744

upgpkg: python-requests 2.5.1-1

Updated to 2.5.1

Modified:
  python-requests/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-28 11:45:06 UTC (rev 124743)
+++ PKGBUILD2014-12-28 11:45:30 UTC (rev 124744)
@@ -3,7 +3,7 @@
 
 pkgbase=python-requests
 pkgname=(python-requests python2-requests)
-pkgver=2.5.0
+pkgver=2.5.1
 pkgrel=1
 _libname=requests
 pkgdesc=Python HTTP for Humans.
@@ -13,7 +13,7 @@
 arch=('any')
 
source=(http://pypi.python.org/packages/source/${_libname:0:1}/$_libname/$_libname-$pkgver.tar.gz
 certs.patch)
-sha256sums=('d2daef4919fc87262b8b3cb5a9d214cac8ce1e50950f8423bbc1d31c2e63d38e'
+sha256sums=('7b7735efd3b1e2323dc9fcef060b380d05f5f18bd0f247f5e9e74a628279de66'
 'e35e779d8640f35ea2ea51112f967d927b44d59483af4cd2c0945c84e79bb7c7')
 
 prepare() {


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

2014-12-28 Thread Massimiliano Torromeo
Date: Sunday, December 28, 2014 @ 12:45:37
  Author: mtorromeo
Revision: 124745

archrelease: copy trunk to community-any

Added:
  python-requests/repos/community-any/PKGBUILD
(from rev 124744, python-requests/trunk/PKGBUILD)
  python-requests/repos/community-any/certs.patch
(from rev 124744, python-requests/trunk/certs.patch)
Deleted:
  python-requests/repos/community-any/PKGBUILD
  python-requests/repos/community-any/certs.patch

-+
 PKGBUILD|  118 +-
 certs.patch |   26 ++--
 2 files changed, 72 insertions(+), 72 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-12-28 11:45:30 UTC (rev 124744)
+++ PKGBUILD2014-12-28 11:45:37 UTC (rev 124745)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
-
-pkgbase=python-requests
-pkgname=(python-requests python2-requests)
-pkgver=2.5.0
-pkgrel=1
-_libname=requests
-pkgdesc=Python HTTP for Humans.
-url=http://python-requests.org;
-makedepends=('python-setuptools' 'python2-setuptools')
-license=('Apache')
-arch=('any')
-source=(http://pypi.python.org/packages/source/${_libname:0:1}/$_libname/$_libname-$pkgver.tar.gz
-certs.patch)
-sha256sums=('d2daef4919fc87262b8b3cb5a9d214cac8ce1e50950f8423bbc1d31c2e63d38e'
-'e35e779d8640f35ea2ea51112f967d927b44d59483af4cd2c0945c84e79bb7c7')
-
-prepare() {
-cd $srcdir/$_libname-$pkgver
-patch -p1 -i $srcdir/certs.patch
-sed -r 's#(\W|^)requests/cacert\.pem(\W|$)##' -i MANIFEST.in
-rm -f requests/cacert.pem
-}
-
-build() {
-cd $srcdir/$_libname-$pkgver
-
-rm -rf ../buildpy3; mkdir ../buildpy3
-python setup.py build -b ../buildpy3
-
-rm -rf ../buildpy2; mkdir ../buildpy2
-python2 setup.py build -b ../buildpy2
-find ../buildpy2 -name \*.py -exec sed -r 's|^#!(.*)python$|#!\1python2|' 
-i {} +
-}
-
-check() {
-cd $srcdir/$_libname-$pkgver
-test -f $(python -m requests.certs)
-}
-
-package_python-requests() {
-depends=(python)
-
-cd $srcdir/$_libname-$pkgver
-rm -rf build; ln -s ../buildpy3 build
-python setup.py install --skip-build -O1 --root=$pkgdir
-install -m0644 -D LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-requests() {
-depends=(python2)
-optdepends=('python2-ndg-httpsclient: HTTPS requests with SNI support'
-'python2-grequests: asynchronous requests with gevent')
-
-cd $srcdir/$_libname-$pkgver
-rm -rf build; ln -s ../buildpy2 build
-python2 setup.py install --skip-build -O1 --root=$pkgdir
-}

Copied: python-requests/repos/community-any/PKGBUILD (from rev 124744, 
python-requests/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-12-28 11:45:37 UTC (rev 124745)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
+
+pkgbase=python-requests
+pkgname=(python-requests python2-requests)
+pkgver=2.5.1
+pkgrel=1
+_libname=requests
+pkgdesc=Python HTTP for Humans.
+url=http://python-requests.org;
+makedepends=('python-setuptools' 'python2-setuptools')
+license=('Apache')
+arch=('any')
+source=(http://pypi.python.org/packages/source/${_libname:0:1}/$_libname/$_libname-$pkgver.tar.gz
+certs.patch)
+sha256sums=('7b7735efd3b1e2323dc9fcef060b380d05f5f18bd0f247f5e9e74a628279de66'
+'e35e779d8640f35ea2ea51112f967d927b44d59483af4cd2c0945c84e79bb7c7')
+
+prepare() {
+cd $srcdir/$_libname-$pkgver
+patch -p1 -i $srcdir/certs.patch
+sed -r 's#(\W|^)requests/cacert\.pem(\W|$)##' -i MANIFEST.in
+rm -f requests/cacert.pem
+}
+
+build() {
+cd $srcdir/$_libname-$pkgver
+
+rm -rf ../buildpy3; mkdir ../buildpy3
+python setup.py build -b ../buildpy3
+
+rm -rf ../buildpy2; mkdir ../buildpy2
+python2 setup.py build -b ../buildpy2
+find ../buildpy2 -name \*.py -exec sed -r 's|^#!(.*)python$|#!\1python2|' 
-i {} +
+}
+
+check() {
+cd $srcdir/$_libname-$pkgver
+test -f $(python -m requests.certs)
+}
+
+package_python-requests() {
+depends=(python)
+
+cd $srcdir/$_libname-$pkgver
+rm -rf build; ln -s ../buildpy3 build
+python setup.py install --skip-build -O1 --root=$pkgdir
+install -m0644 -D LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-requests() {
+depends=(python2)
+optdepends=('python2-ndg-httpsclient: HTTPS requests with SNI support'
+'python2-grequests: asynchronous requests with gevent')
+
+cd $srcdir/$_libname-$pkgver
+rm -rf build; ln -s ../buildpy2 build
+python2 setup.py install --skip-build -O1 --root=$pkgdir
+}

Deleted: certs.patch
===
--- certs.patch 2014-12-28 11:45:30 UTC (rev 124744)
+++ certs.patch 2014-12-28 11:45:37 UTC (rev 

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

2014-12-28 Thread Massimiliano Torromeo
Date: Sunday, December 28, 2014 @ 12:45:54
  Author: mtorromeo
Revision: 124746

upgpkg: nodejs-less 2.1.2-1

Updated to 2.1.2

Modified:
  nodejs-less/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-28 11:45:37 UTC (rev 124745)
+++ PKGBUILD2014-12-28 11:45:54 UTC (rev 124746)
@@ -2,7 +2,7 @@
 # Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
 
 pkgname=nodejs-less
-pkgver=2.1.1
+pkgver=2.1.2
 pkgrel=1
 pkgdesc=A standalone compiler for the LESS CSS language.
 arch=('any')
@@ -18,4 +18,4 @@
 npm install -g --user root --prefix $pkgdir/usr 
$srcdir/less-$pkgver.tgz
 }
 
-sha256sums=('cce72a40bcdd04a6ba3192ec110d7ebd1c66952945780a746543e88f1da80874')
+sha256sums=('127852ad06c02a2409b4232e8d6b339b5a2bc1f3a980a3d5845146e6fe0362f5')


[arch-commits] Commit in nodejs-less/repos/community-any (PKGBUILD PKGBUILD)

2014-12-28 Thread Massimiliano Torromeo
Date: Sunday, December 28, 2014 @ 12:46:02
  Author: mtorromeo
Revision: 124747

archrelease: copy trunk to community-any

Added:
  nodejs-less/repos/community-any/PKGBUILD
(from rev 124746, nodejs-less/trunk/PKGBUILD)
Deleted:
  nodejs-less/repos/community-any/PKGBUILD

--+
 PKGBUILD |   42 +-
 1 file changed, 21 insertions(+), 21 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-12-28 11:45:54 UTC (rev 124746)
+++ PKGBUILD2014-12-28 11:46:02 UTC (rev 124747)
@@ -1,21 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
-
-pkgname=nodejs-less
-pkgver=2.1.1
-pkgrel=1
-pkgdesc=A standalone compiler for the LESS CSS language.
-arch=('any')
-url=http://lesscss.org/;
-license=('Apache')
-depends=('nodejs')
-conflicts=('lessc')
-provides=(lessc=$pkgver)
-replaces=('lessc')
-source=(https://registry.npmjs.org/less/-/less-$pkgver.tgz;)
-
-package() {
-npm install -g --user root --prefix $pkgdir/usr 
$srcdir/less-$pkgver.tgz
-}
-
-sha256sums=('cce72a40bcdd04a6ba3192ec110d7ebd1c66952945780a746543e88f1da80874')

Copied: nodejs-less/repos/community-any/PKGBUILD (from rev 124746, 
nodejs-less/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-12-28 11:46:02 UTC (rev 124747)
@@ -0,0 +1,21 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
+
+pkgname=nodejs-less
+pkgver=2.1.2
+pkgrel=1
+pkgdesc=A standalone compiler for the LESS CSS language.
+arch=('any')
+url=http://lesscss.org/;
+license=('Apache')
+depends=('nodejs')
+conflicts=('lessc')
+provides=(lessc=$pkgver)
+replaces=('lessc')
+source=(https://registry.npmjs.org/less/-/less-$pkgver.tgz;)
+
+package() {
+npm install -g --user root --prefix $pkgdir/usr 
$srcdir/less-$pkgver.tgz
+}
+
+sha256sums=('127852ad06c02a2409b4232e8d6b339b5a2bc1f3a980a3d5845146e6fe0362f5')


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

2014-12-28 Thread Felix Yan
Date: Sunday, December 28, 2014 @ 18:21:04
  Author: fyan
Revision: 228119

upgpkg: networkmanager-openconnect 0.9.10.0-2

openconnect 7.02 rebuild

Modified:
  networkmanager-openconnect/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-28 13:30:00 UTC (rev 228118)
+++ PKGBUILD2014-12-28 17:21:04 UTC (rev 228119)
@@ -3,7 +3,7 @@
 
 pkgname=networkmanager-openconnect
 pkgver=0.9.10.0
-pkgrel=1
+pkgrel=2
 pkgdesc=NetworkManager VPN integration for openconnect
 arch=('i686' 'x86_64')
 license=('GPL')
@@ -12,9 +12,19 @@
 makedepends=('intltool')
 optdepends=('network-manager-applet: GNOME frontends to NetWorkmanager')
 install=$pkgname.install
-source=(http://ftp.gnome.org/pub/GNOME/sources/NetworkManager-openconnect/0.9/NetworkManager-openconnect-${pkgver}.tar.xz)
-sha256sums=('8007d70a6943388bfa141f99fc4da9965fd122cf2741512ce0cf9c0f9c78331a')
+source=(http://ftp.gnome.org/pub/GNOME/sources/NetworkManager-openconnect/0.9/NetworkManager-openconnect-${pkgver}.tar.xz
+libopenconnect.so.4.patch
+libopenconnect.so.5.patch)
+sha256sums=('8007d70a6943388bfa141f99fc4da9965fd122cf2741512ce0cf9c0f9c78331a'
+'e2a84ac7467b5ffb20891946fd132f9d34012f17a4847ab7c7cde34cca3a9762'
+'6b46edb11f96e0ad2b0fd39b11326b24520d9d2ff35a1d167a98c8bc5b7c6272')
 
+prepare() {
+  cd NetworkManager-openconnect-${pkgver}
+  patch -p1 -i ../libopenconnect.so.4.patch
+  patch -p1 -i ../libopenconnect.so.5.patch
+}
+
 build() {
   cd NetworkManager-openconnect-${pkgver}
   ./configure --prefix=/usr \


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

2014-12-28 Thread Felix Yan
Date: Sunday, December 28, 2014 @ 18:21:19
  Author: fyan
Revision: 228120

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

Added:
  networkmanager-openconnect/repos/staging-i686/
  networkmanager-openconnect/repos/staging-i686/PKGBUILD
(from rev 228119, networkmanager-openconnect/trunk/PKGBUILD)
  
networkmanager-openconnect/repos/staging-i686/networkmanager-openconnect.install
(from rev 228119, 
networkmanager-openconnect/trunk/networkmanager-openconnect.install)
  networkmanager-openconnect/repos/staging-x86_64/
  networkmanager-openconnect/repos/staging-x86_64/PKGBUILD
(from rev 228119, networkmanager-openconnect/trunk/PKGBUILD)
  
networkmanager-openconnect/repos/staging-x86_64/networkmanager-openconnect.install
(from rev 228119, 
networkmanager-openconnect/trunk/networkmanager-openconnect.install)

---+
 staging-i686/PKGBUILD |   41 
 staging-i686/networkmanager-openconnect.install   |   16 +++
 staging-x86_64/PKGBUILD   |   41 
 staging-x86_64/networkmanager-openconnect.install |   16 +++
 4 files changed, 114 insertions(+)

Copied: networkmanager-openconnect/repos/staging-i686/PKGBUILD (from rev 
228119, networkmanager-openconnect/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2014-12-28 17:21:19 UTC (rev 228120)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+
+pkgname=networkmanager-openconnect
+pkgver=0.9.10.0
+pkgrel=2
+pkgdesc=NetworkManager VPN integration for openconnect
+arch=('i686' 'x86_64')
+license=('GPL')
+url=http://www.gnome.org/projects/NetworkManager/;
+depends=(networkmanager=${pkgver::6} 'openconnect' 'gtk3' 'libsecret')
+makedepends=('intltool')
+optdepends=('network-manager-applet: GNOME frontends to NetWorkmanager')
+install=$pkgname.install
+source=(http://ftp.gnome.org/pub/GNOME/sources/NetworkManager-openconnect/0.9/NetworkManager-openconnect-${pkgver}.tar.xz
+libopenconnect.so.4.patch
+libopenconnect.so.5.patch)
+sha256sums=('8007d70a6943388bfa141f99fc4da9965fd122cf2741512ce0cf9c0f9c78331a'
+'e2a84ac7467b5ffb20891946fd132f9d34012f17a4847ab7c7cde34cca3a9762'
+'6b46edb11f96e0ad2b0fd39b11326b24520d9d2ff35a1d167a98c8bc5b7c6272')
+
+prepare() {
+  cd NetworkManager-openconnect-${pkgver}
+  patch -p1 -i ../libopenconnect.so.4.patch
+  patch -p1 -i ../libopenconnect.so.5.patch
+}
+
+build() {
+  cd NetworkManager-openconnect-${pkgver}
+  ./configure --prefix=/usr \
+   --sysconfdir=/etc \
+   --libexecdir=/usr/lib/networkmanager \
+   --enable-more-warnings=yes \
+   --disable-static
+  make
+}
+
+package() {
+  cd NetworkManager-openconnect-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: 
networkmanager-openconnect/repos/staging-i686/networkmanager-openconnect.install
 (from rev 228119, 
networkmanager-openconnect/trunk/networkmanager-openconnect.install)
===
--- staging-i686/networkmanager-openconnect.install 
(rev 0)
+++ staging-i686/networkmanager-openconnect.install 2014-12-28 17:21:19 UTC 
(rev 228120)
@@ -0,0 +1,16 @@
+pkgname=networkmanager-openconnect
+
+post_install() {
+  getent group nm-openconnect /dev/null 21 || groupadd -g 104 nm-openconnect
+  getent passwd nm-openconnect  /dev/null 21 || useradd -u 104 -s 
/sbin/nologin -d / -M -c 'NetworkManager user for OpenConnect' -g 
nm-openconnect nm-openconnect
+  passwd -l nm-openconnect  /dev/null
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  getent passwd nm-openconnect /dev/null 21  userdel nm-openconnect
+  getent group nm-openconnect /dev/null 21  groupdel nm-openconnect
+}

Copied: networkmanager-openconnect/repos/staging-x86_64/PKGBUILD (from rev 
228119, networkmanager-openconnect/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2014-12-28 17:21:19 UTC (rev 228120)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+
+pkgname=networkmanager-openconnect
+pkgver=0.9.10.0
+pkgrel=2
+pkgdesc=NetworkManager VPN integration for openconnect
+arch=('i686' 'x86_64')
+license=('GPL')
+url=http://www.gnome.org/projects/NetworkManager/;
+depends=(networkmanager=${pkgver::6} 'openconnect' 'gtk3' 'libsecret')
+makedepends=('intltool')
+optdepends=('network-manager-applet: GNOME frontends to NetWorkmanager')
+install=$pkgname.install
+source=(http://ftp.gnome.org/pub/GNOME/sources/NetworkManager-openconnect/0.9/NetworkManager-openconnect-${pkgver}.tar.xz
+libopenconnect.so.4.patch
+libopenconnect.so.5.patch)

[arch-commits] Commit in networkmanager-openconnect/trunk (2 files)

2014-12-28 Thread Felix Yan
Date: Sunday, December 28, 2014 @ 18:22:03
  Author: fyan
Revision: 228121

add missing patches

Added:
  networkmanager-openconnect/trunk/libopenconnect.so.4.patch
  networkmanager-openconnect/trunk/libopenconnect.so.5.patch

---+
 libopenconnect.so.4.patch |  124 +
 libopenconnect.so.5.patch |  182 
 2 files changed, 306 insertions(+)

Added: libopenconnect.so.4.patch
===
--- libopenconnect.so.4.patch   (rev 0)
+++ libopenconnect.so.4.patch   2014-12-28 17:22:03 UTC (rev 228121)
@@ -0,0 +1,124 @@
+From 58944a3ef9c92f7afa07cbb539d062e1956bafc0 Mon Sep 17 00:00:00 2001
+From: David Woodhouse david.woodho...@intel.com
+Date: Thu, 30 Oct 2014 23:09:14 +
+Subject: Support libopenconnect.so.4
+
+
+diff --git a/auth-dialog/main.c b/auth-dialog/main.c
+index 7171247..8285bf4 100644
+--- a/auth-dialog/main.c
 b/auth-dialog/main.c
+@@ -89,6 +89,21 @@
+ #define OC_FORM_RESULT_NEWGROUP   2
+ #endif
+ 
++#if OPENCONNECT_CHECK_VER(4,0)
++#define dup_option_value(opt) g_strdup((opt)-_value);
++#define OC3DUP(x) (x)
++#define write_config_constconst
++#else
++#define dup_option_value(opt) g_strdup((opt)-value);
++#define openconnect_set_option_value(opt, val) do { \
++  struct oc_form_opt *_o = (opt); \
++  free(_o-value); _o-value = g_strdup(val); \
++  } while (0)
++#define openconnect_free_cert_info(v, x) free(x)
++#define OC3DUP(x) g_strdup(x)
++#define write_config_const/* */
++#endif
++
+ #ifdef OPENCONNECT_OPENSSL
+ #include openssl/ssl.h
+ #include openssl/bio.h
+@@ -712,7 +727,7 @@ static gboolean ui_form (struct oc_auth_form *form)
+   data-entry_text = g_strdup 
(find_form_answer(ui_data-secrets,
+ 
form, opt));
+   if (!data-entry_text)
+-  data-entry_text = g_strdup 
(opt-value);
++  data-entry_text = 
dup_option_value(opt);
+   } else {
+   GHashTable *attrs;
+ 
+@@ -776,8 +791,7 @@ static gboolean set_initial_authgroup (auth_ui_data 
*ui_data, struct oc_auth_for
+   for (i = 0; i  sopt-nr_choices; i++) {
+   struct oc_choice *ch = FORMCHOICE(sopt, i);
+   if (!strcmp(saved_group, ch-name)  i != 
AUTHGROUP_SELECTION(form)) {
+-  free(opt-value);
+-  opt-value = g_strdup(saved_group);
++  openconnect_set_option_value(opt, saved_group);
+   return TRUE;
+   }
+   }
+@@ -823,7 +837,7 @@ static int nm_process_auth_form (void *cbdata, struct 
oc_auth_form *form)
+   g_cancellable_cancel(data-cancel);
+ 
+   if (data-entry_text) {
+-  data-opt-value = g_strdup (data-entry_text);
++  openconnect_set_option_value(data-opt, 
data-entry_text);
+ 
+   if (data-opt-type == OC_FORM_OPT_TEXT ||
+   data-opt-type == OC_FORM_OPT_SELECT) {
+@@ -932,7 +946,7 @@ static gboolean user_validate_cert(cert_data *data)
+   text = gtk_text_view_new();
+   buffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(text));
+   gtk_text_buffer_set_text(buffer, details, -1);
+-  free(details);
++  openconnect_free_cert_info(data-ui_data-vpninfo, details);
+   gtk_text_view_set_editable(GTK_TEXT_VIEW(text), 0);
+   gtk_text_view_set_cursor_visible(GTK_TEXT_VIEW(text), FALSE);
+   gtk_container_add(GTK_CONTAINER(scroll), text);
+@@ -1166,7 +1180,7 @@ static int get_config (GHashTable *options, GHashTable 
*secrets,
+ 
+   cafile = g_hash_table_lookup (options, NM_OPENCONNECT_KEY_CACERT);
+   if (cafile)
+-  openconnect_set_cafile(vpninfo, g_strdup (cafile));
++  openconnect_set_cafile(vpninfo, OC3DUP (cafile));
+ 
+   csd = g_hash_table_lookup (options, NM_OPENCONNECT_KEY_CSD_ENABLE);
+   if (csd  !strcmp(csd, yes)) {
+@@ -1176,16 +1190,16 @@ static int get_config (GHashTable *options, GHashTable 
*secrets,
+   if (csd_wrapper  !csd_wrapper[0])
+   csd_wrapper = NULL;
+ 
+-  openconnect_setup_csd(vpninfo, getuid(), 1, g_strdup 
(csd_wrapper));
++  openconnect_setup_csd(vpninfo, getuid(), 1, OC3DUP 
(csd_wrapper));
+   }
+ 
+   proxy = g_hash_table_lookup (options, NM_OPENCONNECT_KEY_PROXY);
+-  if (proxy  proxy[0]  openconnect_set_http_proxy(vpninfo, g_strdup 

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

2014-12-28 Thread Sven-Hendrik Haase
Date: Sunday, December 28, 2014 @ 18:40:15
  Author: svenstaro
Revision: 124751

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-12-28 17:40:00 UTC (rev 124750)
+++ community-i686/PKGBUILD 2014-12-28 17:40:15 UTC (rev 124751)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
-# Contributor: philefou tuxication AT gmail DOT com
-# Contributor: lindquist to...@famolsen.dk
-# Contributor: Christoph Siegenthaler c...@gmx.ch
-# Contributor: Mihai Militaru mihai.milit...@ephemeros.org
-# Contributor: SpepS dreamspepser at yahoo dot it
-
-pkgname=('glfw' 'glfw-doc')
-pkgver=3.0.4
-pkgrel=2
-arch=('i686' 'x86_64')
-url=http://www.glfw.org/;
-license=('custom:ZLIB')
-depends=('libgl' 'libxrandr' 'glu' 'xorg-xinput')
-makedepends=('mesa' 'cmake' 'doxygen')
-source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.bz2;)
-md5sums=('133a9faed6f1fbd527551a7e42aeb4f9')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  [[ -d build ]]  rm -r build
-  mkdir build  cd build
-
-  cmake .. \
-  -DCMAKE_INSTALL_PREFIX=/usr \
-  -DBUILD_SHARED_LIBS=ON
-  make docs
-}
-
-package_glfw() {
-  pkgdesc=A free, open source, portable framework for OpenGL application 
development
-  cd $srcdir/$pkgname-$pkgver
-
-  cd build
-  make DESTDIR=$pkgdir install
-
-  cd ..
-  install -Dm644 COPYING.txt $pkgdir/usr/share/licenses/$pkgname/COPYING
-}
-
-package_glfw-doc() {
-  pkgdesc=Set of HTML documentation for GLFW
-  mkdir -p ${pkgdir}/usr/share/doc/glfw/
-  cp -r ${srcdir}/glfw-${pkgver}/docs/html ${pkgdir}/usr/share/doc/glfw
-}

Copied: glfw/repos/community-i686/PKGBUILD (from rev 124750, 
glfw/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-12-28 17:40:15 UTC (rev 124751)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: philefou tuxication AT gmail DOT com
+# Contributor: lindquist to...@famolsen.dk
+# Contributor: Christoph Siegenthaler c...@gmx.ch
+# Contributor: Mihai Militaru mihai.milit...@ephemeros.org
+# Contributor: SpepS dreamspepser at yahoo dot it
+
+pkgname=('glfw' 'glfw-doc')
+pkgver=3.0.4
+pkgrel=3
+arch=('i686' 'x86_64')
+url=http://www.glfw.org/;
+license=('custom:ZLIB')
+depends=('libgl' 'libxrandr' 'glu' 'xorg-xinput' 'libxxf86vm')
+makedepends=('mesa' 'cmake' 'doxygen')
+source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.bz2;)
+md5sums=('133a9faed6f1fbd527551a7e42aeb4f9')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  [[ -d build ]]  rm -r build
+  mkdir build  cd build
+
+  cmake .. \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DBUILD_SHARED_LIBS=ON
+  make docs
+}
+
+package_glfw() {
+  pkgdesc=A free, open source, portable framework for OpenGL application 
development
+  cd $srcdir/$pkgname-$pkgver
+
+  cd build
+  make DESTDIR=$pkgdir install
+
+  cd ..
+  install -Dm644 COPYING.txt $pkgdir/usr/share/licenses/$pkgname/COPYING
+}
+
+package_glfw-doc() {
+  pkgdesc=Set of HTML documentation for GLFW
+  mkdir -p ${pkgdir}/usr/share/doc/glfw/
+  cp -r ${srcdir}/glfw-${pkgver}/docs/html ${pkgdir}/usr/share/doc/glfw
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-12-28 17:40:00 UTC (rev 124750)
+++ community-x86_64/PKGBUILD   2014-12-28 17:40:15 UTC (rev 124751)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
-# Contributor: philefou tuxication AT gmail DOT com
-# Contributor: lindquist to...@famolsen.dk
-# Contributor: Christoph Siegenthaler c...@gmx.ch
-# Contributor: Mihai Militaru mihai.milit...@ephemeros.org
-# Contributor: SpepS dreamspepser at yahoo dot it
-
-pkgname=('glfw' 'glfw-doc')
-pkgver=3.0.4
-pkgrel=2
-arch=('i686' 'x86_64')
-url=http://www.glfw.org/;
-license=('custom:ZLIB')
-depends=('libgl' 'libxrandr' 'glu' 'xorg-xinput')
-makedepends=('mesa' 'cmake' 'doxygen')
-source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.bz2;)
-md5sums=('133a9faed6f1fbd527551a7e42aeb4f9')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  [[ -d build ]]  rm -r build
-  mkdir build  cd build
-
-  cmake .. \
-  

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

2014-12-28 Thread Sven-Hendrik Haase
Date: Sunday, December 28, 2014 @ 18:40:00
  Author: svenstaro
Revision: 124750

upgpkg: glfw 3.0.4-3

Fix FS#43201 (add libxxf86vm dep)

Modified:
  glfw/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-28 13:29:25 UTC (rev 124749)
+++ PKGBUILD2014-12-28 17:40:00 UTC (rev 124750)
@@ -8,11 +8,11 @@
 
 pkgname=('glfw' 'glfw-doc')
 pkgver=3.0.4
-pkgrel=2
+pkgrel=3
 arch=('i686' 'x86_64')
 url=http://www.glfw.org/;
 license=('custom:ZLIB')
-depends=('libgl' 'libxrandr' 'glu' 'xorg-xinput')
+depends=('libgl' 'libxrandr' 'glu' 'xorg-xinput' 'libxxf86vm')
 makedepends=('mesa' 'cmake' 'doxygen')
 
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.bz2;)
 md5sums=('133a9faed6f1fbd527551a7e42aeb4f9')


[arch-commits] Commit in uwsgi/repos (48 files)

2014-12-28 Thread Sven-Hendrik Haase
Date: Sunday, December 28, 2014 @ 19:14:44
  Author: svenstaro
Revision: 124753

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

Added:
  uwsgi/repos/community-i686/PKGBUILD
(from rev 124752, uwsgi/trunk/PKGBUILD)
  uwsgi/repos/community-i686/archlinux.ini
(from rev 124752, uwsgi/trunk/archlinux.ini)
  uwsgi/repos/community-i686/emperor.ini
(from rev 124752, uwsgi/trunk/emperor.ini)
  uwsgi/repos/community-i686/emperor.uwsgi.service
(from rev 124752, uwsgi/trunk/emperor.uwsgi.service)
  uwsgi/repos/community-i686/emperor.uwsgi.socket
(from rev 124752, uwsgi/trunk/emperor.uwsgi.socket)
  uwsgi/repos/community-i686/tmpfilesd
(from rev 124752, uwsgi/trunk/tmpfilesd)
  uwsgi/repos/community-i686/uwsgi.install
(from rev 124752, uwsgi/trunk/uwsgi.install)
  uwsgi/repos/community-i686/uwsgi_at.service
(from rev 124752, uwsgi/trunk/uwsgi_at.service)
  uwsgi/repos/community-i686/uwsgi_at.socket
(from rev 124752, uwsgi/trunk/uwsgi_at.socket)
  uwsgi/repos/community-i686/uwsgi_fix_rpath.patch
(from rev 124752, uwsgi/trunk/uwsgi_fix_rpath.patch)
  uwsgi/repos/community-i686/uwsgi_ruby20_compatibility.patch
(from rev 124752, uwsgi/trunk/uwsgi_ruby20_compatibility.patch)
  uwsgi/repos/community-i686/uwsgi_trick_chroot.patch
(from rev 124752, uwsgi/trunk/uwsgi_trick_chroot.patch)
  uwsgi/repos/community-x86_64/PKGBUILD
(from rev 124752, uwsgi/trunk/PKGBUILD)
  uwsgi/repos/community-x86_64/archlinux.ini
(from rev 124752, uwsgi/trunk/archlinux.ini)
  uwsgi/repos/community-x86_64/emperor.ini
(from rev 124752, uwsgi/trunk/emperor.ini)
  uwsgi/repos/community-x86_64/emperor.uwsgi.service
(from rev 124752, uwsgi/trunk/emperor.uwsgi.service)
  uwsgi/repos/community-x86_64/emperor.uwsgi.socket
(from rev 124752, uwsgi/trunk/emperor.uwsgi.socket)
  uwsgi/repos/community-x86_64/tmpfilesd
(from rev 124752, uwsgi/trunk/tmpfilesd)
  uwsgi/repos/community-x86_64/uwsgi.install
(from rev 124752, uwsgi/trunk/uwsgi.install)
  uwsgi/repos/community-x86_64/uwsgi_at.service
(from rev 124752, uwsgi/trunk/uwsgi_at.service)
  uwsgi/repos/community-x86_64/uwsgi_at.socket
(from rev 124752, uwsgi/trunk/uwsgi_at.socket)
  uwsgi/repos/community-x86_64/uwsgi_fix_rpath.patch
(from rev 124752, uwsgi/trunk/uwsgi_fix_rpath.patch)
  uwsgi/repos/community-x86_64/uwsgi_ruby20_compatibility.patch
(from rev 124752, uwsgi/trunk/uwsgi_ruby20_compatibility.patch)
  uwsgi/repos/community-x86_64/uwsgi_trick_chroot.patch
(from rev 124752, uwsgi/trunk/uwsgi_trick_chroot.patch)
Deleted:
  uwsgi/repos/community-i686/PKGBUILD
  uwsgi/repos/community-i686/archlinux.ini
  uwsgi/repos/community-i686/emperor.ini
  uwsgi/repos/community-i686/emperor.uwsgi.service
  uwsgi/repos/community-i686/emperor.uwsgi.socket
  uwsgi/repos/community-i686/tmpfilesd
  uwsgi/repos/community-i686/uwsgi.install
  uwsgi/repos/community-i686/uwsgi_at.service
  uwsgi/repos/community-i686/uwsgi_at.socket
  uwsgi/repos/community-i686/uwsgi_fix_rpath.patch
  uwsgi/repos/community-i686/uwsgi_ruby20_compatibility.patch
  uwsgi/repos/community-i686/uwsgi_trick_chroot.patch
  uwsgi/repos/community-x86_64/PKGBUILD
  uwsgi/repos/community-x86_64/archlinux.ini
  uwsgi/repos/community-x86_64/emperor.ini
  uwsgi/repos/community-x86_64/emperor.uwsgi.service
  uwsgi/repos/community-x86_64/emperor.uwsgi.socket
  uwsgi/repos/community-x86_64/tmpfilesd
  uwsgi/repos/community-x86_64/uwsgi.install
  uwsgi/repos/community-x86_64/uwsgi_at.service
  uwsgi/repos/community-x86_64/uwsgi_at.socket
  uwsgi/repos/community-x86_64/uwsgi_fix_rpath.patch
  uwsgi/repos/community-x86_64/uwsgi_ruby20_compatibility.patch
  uwsgi/repos/community-x86_64/uwsgi_trick_chroot.patch

---+
 /PKGBUILD |  336 
 /archlinux.ini|   10 
 /emperor.ini  |8 
 /emperor.uwsgi.service|   32 +
 /emperor.uwsgi.socket |   18 +
 /tmpfilesd|2 
 /uwsgi.install|   24 +
 /uwsgi_at.service |   32 +
 /uwsgi_at.socket  |   18 +
 /uwsgi_fix_rpath.patch|  132 +++
 /uwsgi_ruby20_compatibility.patch |   84 +
 /uwsgi_trick_chroot.patch |   32 +
 community-i686/PKGBUILD   |  168 --
 community-i686/archlinux.ini  |5 
 community-i686/emperor.ini|4 
 community-i686/emperor.uwsgi.service  |   16 
 community-i686/emperor.uwsgi.socket   |9 
 community-i686/tmpfilesd  |1 
 community-i686/uwsgi.install  |   12 
 community-i686/uwsgi_at.service

[arch-commits] Commit in uwsgi/trunk (PKGBUILD emperor.uwsgi.service uwsgi_at.service)

2014-12-28 Thread Sven-Hendrik Haase
Date: Sunday, December 28, 2014 @ 19:14:27
  Author: svenstaro
Revision: 124752

upgpkg: uwsgi 2.0.8-4

Fix permission problem as per FS#43249

Modified:
  uwsgi/trunk/PKGBUILD
  uwsgi/trunk/emperor.uwsgi.service
  uwsgi/trunk/uwsgi_at.service

---+
 PKGBUILD  |6 +++---
 emperor.uwsgi.service |2 +-
 uwsgi_at.service  |2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-12-28 17:40:15 UTC (rev 124751)
+++ PKGBUILD2014-12-28 18:14:27 UTC (rev 124752)
@@ -20,7 +20,7 @@
  uwsgi-plugin-jvm
  uwsgi-plugin-mono)
 pkgver=2.0.8
-pkgrel=3
+pkgrel=4
 arch=(i686 x86_64)
 url=http://projects.unbit.it/$pkgbase;
 license=(GPL2)
@@ -44,13 +44,13 @@
 md5sums=('356b71060aa4c1f0e888dbca03567bd5'
  '30d101f1190ef83b4cc79a2cc079be7e'
  '752475ee32286acfbafa49b898616817'
- '4ec6c345df2f9b881f0a6b6c0c95eb1b'
+ 'feaf107977aec047101acdbf06810f30'
  'ea381549fe65a5d72fa1abb5ceb7d3ef'
  '1a4516d5cdcf5b95b036f4eae2d0c152'
  '4d09535ce379c8acd76160f35d5d6b55'
  '0c09a52fdb88f08c36a8b380f451ce6d'
  '5fa14ddea9a3dae17b5be28468d47b80'
- 'd6b323f136dbd185c793c004df3c'
+ '25dfcc365241f16d7ea16f7143698b53'
  '3ab4486e02f5c217566fb6c8d469c246')
 
 prepare(){

Modified: emperor.uwsgi.service
===
--- emperor.uwsgi.service   2014-12-28 17:40:15 UTC (rev 124751)
+++ emperor.uwsgi.service   2014-12-28 18:14:27 UTC (rev 124752)
@@ -9,7 +9,7 @@
 Restart=always
 Type=notify
 StandardError=syslog
-NotifyAccess=main
+NotifyAccess=all
 KillSignal=SIGQUIT
 
 [Install]

Modified: uwsgi_at.service
===
--- uwsgi_at.service2014-12-28 17:40:15 UTC (rev 124751)
+++ uwsgi_at.service2014-12-28 18:14:27 UTC (rev 124752)
@@ -9,7 +9,7 @@
 Restart=always
 Type=notify
 StandardError=syslog
-NotifyAccess=main
+NotifyAccess=all
 KillSignal=SIGQUIT
 
 [Install]


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

2014-12-28 Thread Anatol Pomozov
Date: Sunday, December 28, 2014 @ 19:25:56
  Author: anatolik
Revision: 124754

upgpkg: clearsilver 0.10.5-16

ruby 2.2 rebuild

Modified:
  clearsilver/trunk/PKGBUILD

--+
 PKGBUILD |   11 ++-
 1 file changed, 10 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-12-28 18:14:44 UTC (rev 124753)
+++ PKGBUILD2014-12-28 18:25:56 UTC (rev 124754)
@@ -5,7 +5,7 @@
 
 pkgname=clearsilver
 pkgver=0.10.5
-pkgrel=15
+pkgrel=16
 pkgdesc=clearsilver is a fast, powerful, and language-neutral HTML template 
system
 arch=('i686' 'x86_64')
 url='http://www.clearsilver.net'
@@ -33,6 +33,9 @@
  sodir  = subprefix.call(c['vendorarchdir'])
 EOF
   sed -i 's|LIBRARIES = inserted + LIBRARIES|LIBRARIES = LIBRARIES + 
inserted|' python/setup.py
+
+  # fix for ruby 2.2
+  sed -i 's|::Config::|RbConfig::|g' ruby/install.rb
 }
 
 build() {
@@ -42,6 +45,12 @@
   make
 }
 
+check() {
+  cd $srcdir/$pkgname-$pkgver
+  (cd ruby  make testrb)
+  (cd perl  make test)
+}
+
 package() {
   cd $srcdir/$pkgname-$pkgver
   make PREFIX=$pkgdir DESTDIR=$pkgdir install


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

2014-12-28 Thread Anatol Pomozov
Date: Sunday, December 28, 2014 @ 19:26:42
  Author: anatolik
Revision: 124755

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

Added:
  clearsilver/repos/community-staging-i686/
  clearsilver/repos/community-staging-i686/PKGBUILD
(from rev 124754, clearsilver/trunk/PKGBUILD)
  clearsilver/repos/community-staging-i686/clearsilver-ruby-1.9.patch
(from rev 124754, clearsilver/trunk/clearsilver-ruby-1.9.patch)
  clearsilver/repos/community-staging-x86_64/
  clearsilver/repos/community-staging-x86_64/PKGBUILD
(from rev 124754, clearsilver/trunk/PKGBUILD)
  clearsilver/repos/community-staging-x86_64/clearsilver-ruby-1.9.patch
(from rev 124754, clearsilver/trunk/clearsilver-ruby-1.9.patch)

-+
 community-staging-i686/PKGBUILD |   66 
 community-staging-i686/clearsilver-ruby-1.9.patch   |  244 ++
 community-staging-x86_64/PKGBUILD   |   66 
 community-staging-x86_64/clearsilver-ruby-1.9.patch |  244 ++
 4 files changed, 620 insertions(+)

Copied: clearsilver/repos/community-staging-i686/PKGBUILD (from rev 124754, 
clearsilver/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-12-28 18:26:42 UTC (rev 124755)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer : Aaron Griffin aa...@archlinux.org
+# Contributor: William Rea sillywi...@gmail.com
+
+pkgname=clearsilver
+pkgver=0.10.5
+pkgrel=16
+pkgdesc=clearsilver is a fast, powerful, and language-neutral HTML template 
system
+arch=('i686' 'x86_64')
+url='http://www.clearsilver.net'
+license=('custom')
+depends=('python2' 'perl' 'ruby' 'java-runtime')
+options=('!emptydirs' 'staticlibs')
+source=(http://www.clearsilver.net/downloads/$pkgname-$pkgver.tar.gz;
+clearsilver-ruby-1.9.patch)
+md5sums=('b8c0c7fbe0ef5e06e0c935f134304d44'
+ 'd9db4e5985254e1b0d63e9ff042773f4')
+
+prepare() {
+  cd $srcdir/$pkgname-$pkgver
+  sed -i s@/usr/local/bin/python@/usr/bin/env python2@g scripts/document.py
+  sed -i s...@install.rb inst...@install.rb install --prefix=$pkgdir@g 
ruby/Makefile
+  patch -p1 $srcdir/clearsilver-ruby-1.9.patch
+  patch -p0 ruby/install.rb EOF
+71,73c71,73
+ siteruby   = subprefix.call(c['sitedir'])
+ versite= subprefix.call(c['sitelibdir'])
+ sodir  = subprefix.call(c['sitearchdir'])
+---
+ siteruby   = subprefix.call(c['vendordir'])
+ versite= subprefix.call(c['vendorlibdir'])
+ sodir  = subprefix.call(c['vendorarchdir'])
+EOF
+  sed -i 's|LIBRARIES = inserted + LIBRARIES|LIBRARIES = LIBRARIES + 
inserted|' python/setup.py
+
+  # fix for ruby 2.2
+  sed -i 's|::Config::|RbConfig::|g' ruby/install.rb
+}
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  export PERL_MM_OPT='INSTALLDIRS=vendor'
+  ./configure --disable-csharp --prefix=/usr --with-python=/usr/bin/python2
+  make
+}
+
+check() {
+  cd $srcdir/$pkgname-$pkgver
+  (cd ruby  make testrb)
+  (cd perl  make test)
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make PREFIX=$pkgdir DESTDIR=$pkgdir install
+
+  install -Dm644 CS_LICENSE $pkgdir/usr/share/licenses/clearsilver/license.txt
+  rm -rf $pkgdir/usr/lib/perl5/5.8.8/
+
+  mv $pkgdir/usr/man/man3/* $pkgdir/usr/share/man/man3/
+  rm -rf $pkgdir/usr/man
+
+  find $pkgdir -name '.packlist' -delete
+  find $pkgdir -name '*.pod' -delete
+}

Copied: clearsilver/repos/community-staging-i686/clearsilver-ruby-1.9.patch 
(from rev 124754, clearsilver/trunk/clearsilver-ruby-1.9.patch)
===
--- community-staging-i686/clearsilver-ruby-1.9.patch   
(rev 0)
+++ community-staging-i686/clearsilver-ruby-1.9.patch   2014-12-28 18:26:42 UTC 
(rev 124755)
@@ -0,0 +1,244 @@
+diff -u -Nr clearsilver-0.10.5/ruby/ext/hdf/neo_cs.c 
clearsilver-0.10.5.my/ruby/ext/hdf/neo_cs.c
+--- clearsilver-0.10.5/ruby/ext/hdf/neo_cs.c   2007-02-16 01:31:39.0 
+0100
 clearsilver-0.10.5.my/ruby/ext/hdf/neo_cs.c2010-09-18 
18:20:40.088619662 +0200
+@@ -19,7 +19,7 @@
+ 
+ VALUE r_neo_error(NEOERR *err);
+ 
+-#define Srb_raise(val) rb_raise(eHdfError, %s/%d 
%s,__FILE__,__LINE__,RSTRING(val)-ptr)
++#define Srb_raise(val) rb_raise(eHdfError, %s/%d 
%s,__FILE__,__LINE__,RARRAY_PTR(RSTRING(val)))
+ 
+ static void c_free (CSPARSE *csd) {
+   if (csd) {
+@@ -57,7 +57,7 @@
+   char *path;
+ 
+   Data_Get_Struct(self, CSPARSE, cs);
+-  path = STR2CSTR(oPath);
++  path = StringValuePtr(oPath);
+ 
+   err = cs_parse_file (cs, path);
+   if (err) Srb_raise(r_neo_error(err));
+@@ -73,7 +73,8 @@
+   long l;
+ 
+   Data_Get_Struct(self, CSPARSE, cs);
+-  s = rb_str2cstr(oString, l);
++  s = StringValuePtr(oString);
++  l = RSTRING_LEN(oString);
+ 
+   /* This should be changed to 

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

2014-12-28 Thread Jelle van der Waa
Date: Sunday, December 28, 2014 @ 19:57:57
  Author: jelle
Revision: 124757

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

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

--+
 /PKGBUILD|  182 +
 /calibre.install |   24 
 community-i686/PKGBUILD  |   91 --
 community-i686/calibre.install   |   12 --
 community-x86_64/PKGBUILD|   91 --
 community-x86_64/calibre.install |   12 --
 6 files changed, 206 insertions(+), 206 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-12-28 18:57:42 UTC (rev 124756)
+++ community-i686/PKGBUILD 2014-12-28 18:57:57 UTC (rev 124757)
@@ -1,91 +0,0 @@
-# $Id$
-# Maintainer: Jelle van der Waa je...@vdwaa.nl
-# Maintainer: Daniel Wallace danielwallace at gtmanfred dot com
-# Contributor: Giovanni Scafora giova...@archlinux.org
-# Contributor: Petrov Roman nwhis...@gmail.com
-# Contributor: Andrea Fagiani andfagiani _at_ gmail dot com
-# Contributor: Larry Hajali larryh...@gmail.com
-
-pkgname=calibre
-pkgver=2.13.0
-pkgrel=1
-pkgdesc=Ebook management application
-arch=('i686' 'x86_64')
-url=http://calibre-ebook.com/;
-license=('GPL3')
-depends=('python2-six' 'python2-dateutil' 'python2-cssutils' 'python2-cherrypy'
- 'python2-mechanize' 'podofo' 'libwmf'
- 'imagemagick' 'chmlib' 'python2-lxml' 'libusbx'
- 'python2-pillow' 'shared-mime-info' 'python2-dnspython'
- 'python2-pyqt5' 'python2-psutil' 'icu' 'libmtp' 'python2-dbus'
- 'python2-netifaces' 'python2-cssselect' 'python2-apsw' 'qt5-webkit'
- 'qt5-svg' 'python2-chardet' 'python2-html5lib' 'python2-pygments')
-makedepends=('python2-pycountry' 'qt5-x11extras' )
-optdepends=('ipython2: to use calibre-debug'
-'udisks: required for mounting certain devices'
-)
-install=calibre.install
-source=(http://download.calibre-ebook.com/${pkgver}/calibre-${pkgver}.tar.xz;)
-md5sums=('66f3ffc68c26c562c5312248db167278')
-
-prepare(){
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  # Remove unneeded files and libs
-  rm -rf resources/${pkgname}-portable.* \
- src/six.py \
- src/cherrypy \
- src/html5lib \
- src/chardet
-
-  sed -i s/shlex.split(ldflags)/ + ['-fPIC']/ setup/extensions.py
-  #sed -i -e s/ldflags = shlex.split(ldflags)/ldflags = shlex.split(ldflags) 
+ ['-fPIC']/ setup/extensions.py
-
-  # Use python2
-  sed -i 's:\(env[ ]\+python$\|/usr/bin/python$\):\12:g' $(find . -regex 
.*\.py\|.*\.recipe)
-  sed -i /pyqt_sip_dir/ s:=.*:= '/usr/share/sip/Py2-PyQt5': 
setup/build_environment.py
-
-  # Desktop integration (e.g. enforce arch defaults)
-  sed -e /self.create_uninstaller()/,/os.rmdir(config_dir)/d \
-  -e /\(cc('xdg-icon-resource\|self.icon_resources.append\|'128'))\)/d \
-  -e /render_img/ s/\('calibre-.*\.png'\)/os.path.join(dir, \1)/g \
-  -e /dir, 'calibre-lrf.png'/i \
-\dir = os.path.join(self.opts.staging_sharedir,'../pixmaps')\n\
-\os.mkdir(dir) \
-  -e /f = open/ s/\('calibre-.*\.desktop'\)/os.path.join(dir, \1)/g \
-  -e /dir, 'calibre-lrfviewer.desktop'/i \
-\dir = 
os.path.join(self.opts.staging_sharedir,'../applications')\n\
-\os.mkdir(dir) \
-  -e s/'ctc-posml'/'text' not in mt and 'pdf' not in mt and 'xhtml'/ \
-  -e s/^Name=calibre/Name=Calibre/g \
-  -i  src/calibre/linux.py
-}
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  LANG='en_US.UTF-8' python2 setup.py build
-  # LANG='en_US.UTF-8' python2 setup.py resources
-
-  # Don't build translations since building them is broken badly
-  #LANG='en_US.UTF-8' python2 setup.py translations
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  
-  # Fix the environment module location
-  sed -i -e s|(prefix=.*)|(prefix='$pkgdir/usr')|g setup/install.py
-
-  install -d ${pkgdir}/usr/lib/python2.7/site-packages \
- ${pkgdir}/usr/share/zsh/site-functions
-
-  LANG='en_US.UTF-8' python2 setup.py install --root=${pkgdir} --prefix=/usr 
\
---staging-bindir=${pkgdir}/usr/bin \
---staging-libdir=${pkgdir}/usr/lib \
---staging-sharedir=${pkgdir}/usr/share
-
-  # Compiling bytecode FS#33392
-  python2 -m compileall ${pkgdir}/usr/lib/calibre/
-  python2 -O -m compileall 

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

2014-12-28 Thread Jelle van der Waa
Date: Sunday, December 28, 2014 @ 19:57:42
  Author: jelle
Revision: 124756

upgpkg: calibre 2.14.0-1

Modified:
  calibre/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-28 18:26:42 UTC (rev 124755)
+++ PKGBUILD2014-12-28 18:57:42 UTC (rev 124756)
@@ -7,7 +7,7 @@
 # Contributor: Larry Hajali larryh...@gmail.com
 
 pkgname=calibre
-pkgver=2.13.0
+pkgver=2.14.0
 pkgrel=1
 pkgdesc=Ebook management application
 arch=('i686' 'x86_64')
@@ -26,7 +26,7 @@
 )
 install=calibre.install
 source=(http://download.calibre-ebook.com/${pkgver}/calibre-${pkgver}.tar.xz;)
-md5sums=('66f3ffc68c26c562c5312248db167278')
+md5sums=('23b3d8f4418d4071c9a2ecbf6d19ae92')
 
 prepare(){
   cd ${srcdir}/${pkgname}-${pkgver}


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

2014-12-28 Thread Sven-Hendrik Haase
Date: Sunday, December 28, 2014 @ 20:11:01
  Author: svenstaro
Revision: 124758

upgpkg: uwsgi 2.0.8-5

ruby 2.2 rebuild

Modified:
  uwsgi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-28 18:57:57 UTC (rev 124757)
+++ PKGBUILD2014-12-28 19:11:01 UTC (rev 124758)
@@ -20,7 +20,7 @@
  uwsgi-plugin-jvm
  uwsgi-plugin-mono)
 pkgver=2.0.8
-pkgrel=4
+pkgrel=5
 arch=(i686 x86_64)
 url=http://projects.unbit.it/$pkgbase;
 license=(GPL2)


[arch-commits] Commit in uwsgi/repos (26 files)

2014-12-28 Thread Sven-Hendrik Haase
Date: Sunday, December 28, 2014 @ 20:11:16
  Author: svenstaro
Revision: 124759

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

Added:
  uwsgi/repos/community-staging-i686/
  uwsgi/repos/community-staging-i686/PKGBUILD
(from rev 124758, uwsgi/trunk/PKGBUILD)
  uwsgi/repos/community-staging-i686/archlinux.ini
(from rev 124758, uwsgi/trunk/archlinux.ini)
  uwsgi/repos/community-staging-i686/emperor.ini
(from rev 124758, uwsgi/trunk/emperor.ini)
  uwsgi/repos/community-staging-i686/emperor.uwsgi.service
(from rev 124758, uwsgi/trunk/emperor.uwsgi.service)
  uwsgi/repos/community-staging-i686/emperor.uwsgi.socket
(from rev 124758, uwsgi/trunk/emperor.uwsgi.socket)
  uwsgi/repos/community-staging-i686/tmpfilesd
(from rev 124758, uwsgi/trunk/tmpfilesd)
  uwsgi/repos/community-staging-i686/uwsgi.install
(from rev 124758, uwsgi/trunk/uwsgi.install)
  uwsgi/repos/community-staging-i686/uwsgi_at.service
(from rev 124758, uwsgi/trunk/uwsgi_at.service)
  uwsgi/repos/community-staging-i686/uwsgi_at.socket
(from rev 124758, uwsgi/trunk/uwsgi_at.socket)
  uwsgi/repos/community-staging-i686/uwsgi_fix_rpath.patch
(from rev 124758, uwsgi/trunk/uwsgi_fix_rpath.patch)
  uwsgi/repos/community-staging-i686/uwsgi_ruby20_compatibility.patch
(from rev 124758, uwsgi/trunk/uwsgi_ruby20_compatibility.patch)
  uwsgi/repos/community-staging-i686/uwsgi_trick_chroot.patch
(from rev 124758, uwsgi/trunk/uwsgi_trick_chroot.patch)
  uwsgi/repos/community-staging-x86_64/
  uwsgi/repos/community-staging-x86_64/PKGBUILD
(from rev 124758, uwsgi/trunk/PKGBUILD)
  uwsgi/repos/community-staging-x86_64/archlinux.ini
(from rev 124758, uwsgi/trunk/archlinux.ini)
  uwsgi/repos/community-staging-x86_64/emperor.ini
(from rev 124758, uwsgi/trunk/emperor.ini)
  uwsgi/repos/community-staging-x86_64/emperor.uwsgi.service
(from rev 124758, uwsgi/trunk/emperor.uwsgi.service)
  uwsgi/repos/community-staging-x86_64/emperor.uwsgi.socket
(from rev 124758, uwsgi/trunk/emperor.uwsgi.socket)
  uwsgi/repos/community-staging-x86_64/tmpfilesd
(from rev 124758, uwsgi/trunk/tmpfilesd)
  uwsgi/repos/community-staging-x86_64/uwsgi.install
(from rev 124758, uwsgi/trunk/uwsgi.install)
  uwsgi/repos/community-staging-x86_64/uwsgi_at.service
(from rev 124758, uwsgi/trunk/uwsgi_at.service)
  uwsgi/repos/community-staging-x86_64/uwsgi_at.socket
(from rev 124758, uwsgi/trunk/uwsgi_at.socket)
  uwsgi/repos/community-staging-x86_64/uwsgi_fix_rpath.patch
(from rev 124758, uwsgi/trunk/uwsgi_fix_rpath.patch)
  uwsgi/repos/community-staging-x86_64/uwsgi_ruby20_compatibility.patch
(from rev 124758, uwsgi/trunk/uwsgi_ruby20_compatibility.patch)
  uwsgi/repos/community-staging-x86_64/uwsgi_trick_chroot.patch
(from rev 124758, uwsgi/trunk/uwsgi_trick_chroot.patch)

---+
 community-staging-i686/PKGBUILD   |  168 
 community-staging-i686/archlinux.ini  |5 
 community-staging-i686/emperor.ini|4 
 community-staging-i686/emperor.uwsgi.service  |   16 +
 community-staging-i686/emperor.uwsgi.socket   |9 
 community-staging-i686/tmpfilesd  |1 
 community-staging-i686/uwsgi.install  |   12 
 community-staging-i686/uwsgi_at.service   |   16 +
 community-staging-i686/uwsgi_at.socket|9 
 community-staging-i686/uwsgi_fix_rpath.patch  |   66 
 community-staging-i686/uwsgi_ruby20_compatibility.patch   |   42 +++
 community-staging-i686/uwsgi_trick_chroot.patch   |   16 +
 community-staging-x86_64/PKGBUILD |  168 
 community-staging-x86_64/archlinux.ini|5 
 community-staging-x86_64/emperor.ini  |4 
 community-staging-x86_64/emperor.uwsgi.service|   16 +
 community-staging-x86_64/emperor.uwsgi.socket |9 
 community-staging-x86_64/tmpfilesd|1 
 community-staging-x86_64/uwsgi.install|   12 
 community-staging-x86_64/uwsgi_at.service |   16 +
 community-staging-x86_64/uwsgi_at.socket  |9 
 community-staging-x86_64/uwsgi_fix_rpath.patch|   66 
 community-staging-x86_64/uwsgi_ruby20_compatibility.patch |   42 +++
 community-staging-x86_64/uwsgi_trick_chroot.patch |   16 +
 24 files changed, 728 insertions(+)

Copied: uwsgi/repos/community-staging-i686/PKGBUILD (from rev 124758, 
uwsgi/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-12-28 19:11:16 UTC (rev 124759)
@@ -0,0 +1,168 @@
+# $Id$
+# Maintainer: Daniel Wallace danielwallace at 

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

2014-12-28 Thread Jelle van der Waa
Date: Sunday, December 28, 2014 @ 20:17:54
  Author: jelle
Revision: 124760

upgpkg: python-html5lib 0.999-5

add python-six

Modified:
  python-html5lib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-28 19:11:16 UTC (rev 124759)
+++ PKGBUILD2014-12-28 19:17:54 UTC (rev 124760)
@@ -4,7 +4,7 @@
 pkgbase=python-html5lib
 pkgname=('python2-html5lib' 'python-html5lib')
 pkgver=0.999
-pkgrel=4
+pkgrel=5
 arch=('any')
 url=https://github.com/html5lib;
 license=('MIT')
@@ -20,7 +20,7 @@
 
 package_python-html5lib() {
 pkgdesc=A Python HTML parser/tokenizer based on the WHATWG HTML5 spec
-depends=('python')
+depends=('python' 'python-six')
 cd ${srcdir}/html5lib-python-${pkgver}
 
 python3 setup.py install --root=${pkgdir}


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

2014-12-28 Thread Jelle van der Waa
Date: Sunday, December 28, 2014 @ 20:18:04
  Author: jelle
Revision: 124761

archrelease: copy trunk to community-any

Added:
  python-html5lib/repos/community-any/LICENSE
(from rev 124760, python-html5lib/trunk/LICENSE)
  python-html5lib/repos/community-any/PKGBUILD
(from rev 124760, python-html5lib/trunk/PKGBUILD)
Deleted:
  python-html5lib/repos/community-any/LICENSE
  python-html5lib/repos/community-any/PKGBUILD

--+
 LICENSE  |   34 ++--
 PKGBUILD |   74 ++---
 2 files changed, 54 insertions(+), 54 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2014-12-28 19:17:54 UTC (rev 124760)
+++ LICENSE 2014-12-28 19:18:04 UTC (rev 124761)
@@ -1,17 +0,0 @@
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the Software), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.

Copied: python-html5lib/repos/community-any/LICENSE (from rev 124760, 
python-html5lib/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2014-12-28 19:18:04 UTC (rev 124761)
@@ -0,0 +1,17 @@
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the Software), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.

Deleted: PKGBUILD
===
--- PKGBUILD2014-12-28 19:17:54 UTC (rev 124760)
+++ PKGBUILD2014-12-28 19:18:04 UTC (rev 124761)
@@ -1,37 +0,0 @@
-# Contributor: Erol V. Aktay e.ak...@gmail.com
-# Maintainer: Daniel J Griffiths ghost1...@archlinux.us
-
-pkgbase=python-html5lib
-pkgname=('python2-html5lib' 'python-html5lib')
-pkgver=0.999
-pkgrel=4
-arch=('any')
-url=https://github.com/html5lib;
-license=('MIT')
-makedepends=('python2' 'python' 'unzip')
-source=(https://github.com/html5lib/html5lib-python/archive/${pkgver}.tar.gz
-LICENSE)
-md5sums=('f74b320f10d74df9cca8a08b42cb278c'
- '838c366f69b72c5df05c96dff79b35f2')
-
-build() {
-/bin/true
-}
-
-package_python-html5lib() {
-pkgdesc=A Python HTML parser/tokenizer based on the WHATWG HTML5 spec
-depends=('python')
-cd ${srcdir}/html5lib-python-${pkgver}
-
-python3 setup.py install --root=${pkgdir}
-install -Dm755 $srcdir/LICENSE 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE  
-}
-
-package_python2-html5lib() {
-depends=('python2' 'python2-six')
-pkgdesc=A Python2 HTML parser/tokenizer based on the WHATWG HTML5 spec
-cd ${srcdir}/html5lib-python-${pkgver}
-
-python2 setup.py install --root=${pkgdir}
-install -Dm755 $srcdir/LICENSE 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE  
-}

Copied: python-html5lib/repos/community-any/PKGBUILD (from rev 124760, 
python-html5lib/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-12-28 19:18:04 UTC (rev 124761)
@@ -0,0 +1,37 @@
+# Contributor: Erol V. Aktay e.ak...@gmail.com
+# Maintainer: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgbase=python-html5lib

[arch-commits] Commit in (subtle)

2014-12-28 Thread Anatol Pomozov
Date: Sunday, December 28, 2014 @ 20:45:54
  Author: anatolik
Revision: 124762

Move subtle to AUR

Deleted:
  subtle/


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

2014-12-28 Thread Jelle van der Waa
Date: Sunday, December 28, 2014 @ 21:02:09
  Author: jelle
Revision: 124763

upgpkg: haskell-data-default 0.5.3-5

ghc 7.8.4 rebuild

Modified:
  haskell-data-default/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-28 19:45:54 UTC (rev 124762)
+++ PKGBUILD2014-12-28 20:02:09 UTC (rev 124763)
@@ -2,7 +2,7 @@
 _hkgname=data-default
 pkgname=haskell-data-default
 pkgver=0.5.3
-pkgrel=4
+pkgrel=5
 pkgdesc=A class for types with a default value
 url=http://hackage.haskell.org/package/${_hkgname};
 license=('custom:BSD3')


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

2014-12-28 Thread Jelle van der Waa
Date: Sunday, December 28, 2014 @ 21:02:21
  Author: jelle
Revision: 124764

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

Added:
  haskell-data-default/repos/community-staging-i686/
  haskell-data-default/repos/community-staging-i686/PKGBUILD
(from rev 124763, haskell-data-default/trunk/PKGBUILD)
  haskell-data-default/repos/community-staging-i686/haskell-data-default.install
(from rev 124763, haskell-data-default/trunk/haskell-data-default.install)
  haskell-data-default/repos/community-staging-x86_64/
  haskell-data-default/repos/community-staging-x86_64/PKGBUILD
(from rev 124763, haskell-data-default/trunk/PKGBUILD)
  
haskell-data-default/repos/community-staging-x86_64/haskell-data-default.install
(from rev 124763, haskell-data-default/trunk/haskell-data-default.install)

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

Copied: haskell-data-default/repos/community-staging-i686/PKGBUILD (from rev 
124763, haskell-data-default/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-12-28 20:02:21 UTC (rev 124764)
@@ -0,0 +1,37 @@
+# Maintainer: Jelle van der Waa je...@vdwaa.nl
+_hkgname=data-default
+pkgname=haskell-data-default
+pkgver=0.5.3
+pkgrel=5
+pkgdesc=A class for types with a default value
+url=http://hackage.haskell.org/package/${_hkgname};
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+makedepends=()
+depends=('ghc=7.8.3' 'haskell-data-default-class' 
'haskell-data-default-instances-base' 
'haskell-data-default-instances-containers' 
'haskell-data-default-instances-dlist' 
'haskell-data-default-instances-old-locale')
+options=('strip')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+install=${pkgname}.install
+md5sums=('03a98d999273ad20d5bc0c711bf1c533')
+options=('staticlibs')
+
+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 -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-data-default/repos/community-staging-i686/haskell-data-default.install 
(from rev 124763, haskell-data-default/trunk/haskell-data-default.install)
===
--- community-staging-i686/haskell-data-default.install 
(rev 0)
+++ community-staging-i686/haskell-data-default.install 2014-12-28 20:02:21 UTC 
(rev 124764)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-data-default
+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-data-default/repos/community-staging-x86_64/PKGBUILD (from rev 
124763, haskell-data-default/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2014-12-28 20:02:21 UTC (rev 124764)
@@ -0,0 +1,37 @@
+# Maintainer: Jelle van der Waa je...@vdwaa.nl
+_hkgname=data-default
+pkgname=haskell-data-default
+pkgver=0.5.3
+pkgrel=5
+pkgdesc=A class for types with a default value
+url=http://hackage.haskell.org/package/${_hkgname};
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+makedepends=()
+depends=('ghc=7.8.3' 'haskell-data-default-class' 

[arch-commits] Commit in haskell-data-default-class/trunk (PKGBUILD)

2014-12-28 Thread Jelle van der Waa
Date: Sunday, December 28, 2014 @ 21:28:07
  Author: jelle
Revision: 124765

upgpkg: haskell-data-default-class 0.0.1-5

ghc 7.8.4 rebuild

Modified:
  haskell-data-default-class/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-28 20:02:21 UTC (rev 124764)
+++ PKGBUILD2014-12-28 20:28:07 UTC (rev 124765)
@@ -2,13 +2,13 @@
 _hkgname=data-default-class
 pkgname=haskell-data-default-class
 pkgver=0.0.1
-pkgrel=4
+pkgrel=5
 pkgdesc=A class for types with a default value
 url=http://hackage.haskell.org/package/${_hkgname};
 license=('custom:BSD3')
 arch=('i686' 'x86_64')
 makedepends=()
-depends=('ghc=7.8.3-1')
+depends=('ghc=7.8.4-1')
 options=('strip')
 
source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
 install=${pkgname}.install


[arch-commits] Commit in haskell-data-default-class/repos (6 files)

2014-12-28 Thread Jelle van der Waa
Date: Sunday, December 28, 2014 @ 21:28:21
  Author: jelle
Revision: 124766

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

Added:
  haskell-data-default-class/repos/community-staging-i686/
  haskell-data-default-class/repos/community-staging-i686/PKGBUILD
(from rev 124765, haskell-data-default-class/trunk/PKGBUILD)
  
haskell-data-default-class/repos/community-staging-i686/haskell-data-default-class.install
(from rev 124765, 
haskell-data-default-class/trunk/haskell-data-default-class.install)
  haskell-data-default-class/repos/community-staging-x86_64/
  haskell-data-default-class/repos/community-staging-x86_64/PKGBUILD
(from rev 124765, haskell-data-default-class/trunk/PKGBUILD)
  
haskell-data-default-class/repos/community-staging-x86_64/haskell-data-default-class.install
(from rev 124765, 
haskell-data-default-class/trunk/haskell-data-default-class.install)

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

Copied: haskell-data-default-class/repos/community-staging-i686/PKGBUILD (from 
rev 124765, haskell-data-default-class/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-12-28 20:28:21 UTC (rev 124766)
@@ -0,0 +1,37 @@
+# Maintainer: Jelle van der Waa je...@vdwaa.nl
+_hkgname=data-default-class
+pkgname=haskell-data-default-class
+pkgver=0.0.1
+pkgrel=5
+pkgdesc=A class for types with a default value
+url=http://hackage.haskell.org/package/${_hkgname};
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+makedepends=()
+depends=('ghc=7.8.4-1')
+options=('strip')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+install=${pkgname}.install
+md5sums=('abfd756bcc6d92e47436992c80ccdb80')
+options=('staticlibs')
+
+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 -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-data-default-class/repos/community-staging-i686/haskell-data-default-class.install
 (from rev 124765, 
haskell-data-default-class/trunk/haskell-data-default-class.install)
===
--- community-staging-i686/haskell-data-default-class.install   
(rev 0)
+++ community-staging-i686/haskell-data-default-class.install   2014-12-28 
20:28:21 UTC (rev 124766)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-data-default-class
+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-data-default-class/repos/community-staging-x86_64/PKGBUILD 
(from rev 124765, haskell-data-default-class/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2014-12-28 20:28:21 UTC (rev 124766)
@@ -0,0 +1,37 @@
+# Maintainer: Jelle van der Waa je...@vdwaa.nl
+_hkgname=data-default-class
+pkgname=haskell-data-default-class
+pkgver=0.0.1
+pkgrel=5
+pkgdesc=A class for types with a default value
+url=http://hackage.haskell.org/package/${_hkgname};
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+makedepends=()
+depends=('ghc=7.8.4-1')
+options=('strip')

[arch-commits] Commit in haskell-data-default-instances-base/trunk (PKGBUILD)

2014-12-28 Thread Jelle van der Waa
Date: Sunday, December 28, 2014 @ 22:13:27
  Author: jelle
Revision: 124767

upgpkg: haskell-data-default-instances-base 0.0.1-7

ghc 7.8.4 rebuild

Modified:
  haskell-data-default-instances-base/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-28 20:28:21 UTC (rev 124766)
+++ PKGBUILD2014-12-28 21:13:27 UTC (rev 124767)
@@ -2,13 +2,13 @@
 _hkgname=data-default-instances-base
 pkgname=haskell-data-default-instances-base
 pkgver=0.0.1
-pkgrel=6
+pkgrel=7
 pkgdesc=Default instances for types in base
 url=http://hackage.haskell.org/package/${_hkgname};
 license=('custom:BSD3')
 arch=('i686' 'x86_64')
 makedepends=()
-depends=('ghc=7.8.3' 'haskell-data-default-class')
+depends=('ghc=7.8.4' 'haskell-data-default-class')
 options=('strip')
 
source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
 install=${pkgname}.install


[arch-commits] Commit in haskell-data-default-instances-base/repos (6 files)

2014-12-28 Thread Jelle van der Waa
Date: Sunday, December 28, 2014 @ 22:13:37
  Author: jelle
Revision: 124768

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

Added:
  haskell-data-default-instances-base/repos/community-staging-i686/
  haskell-data-default-instances-base/repos/community-staging-i686/PKGBUILD
(from rev 124767, haskell-data-default-instances-base/trunk/PKGBUILD)
  
haskell-data-default-instances-base/repos/community-staging-i686/haskell-data-default-instances-base.install
(from rev 124767, 
haskell-data-default-instances-base/trunk/haskell-data-default-instances-base.install)
  haskell-data-default-instances-base/repos/community-staging-x86_64/
  haskell-data-default-instances-base/repos/community-staging-x86_64/PKGBUILD
(from rev 124767, haskell-data-default-instances-base/trunk/PKGBUILD)
  
haskell-data-default-instances-base/repos/community-staging-x86_64/haskell-data-default-instances-base.install
(from rev 124767, 
haskell-data-default-instances-base/trunk/haskell-data-default-instances-base.install)

--+
 community-staging-i686/PKGBUILD  |   37 
++
 community-staging-i686/haskell-data-default-instances-base.install   |   18 

 community-staging-x86_64/PKGBUILD|   37 
++
 community-staging-x86_64/haskell-data-default-instances-base.install |   18 

 4 files changed, 110 insertions(+)

Copied: 
haskell-data-default-instances-base/repos/community-staging-i686/PKGBUILD (from 
rev 124767, haskell-data-default-instances-base/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-12-28 21:13:37 UTC (rev 124768)
@@ -0,0 +1,37 @@
+# Maintainer: Jelle van der Waa je...@vdwaa.nl
+_hkgname=data-default-instances-base
+pkgname=haskell-data-default-instances-base
+pkgver=0.0.1
+pkgrel=7
+pkgdesc=Default instances for types in base
+url=http://hackage.haskell.org/package/${_hkgname};
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+makedepends=()
+depends=('ghc=7.8.4' 'haskell-data-default-class')
+options=('strip')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+install=${pkgname}.install
+md5sums=('37fc6531e0227bcf9cfbbf85f04e759d')
+options=('staticlibs')
+
+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 -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-data-default-instances-base/repos/community-staging-i686/haskell-data-default-instances-base.install
 (from rev 124767, 
haskell-data-default-instances-base/trunk/haskell-data-default-instances-base.install)
===
--- community-staging-i686/haskell-data-default-instances-base.install  
(rev 0)
+++ community-staging-i686/haskell-data-default-instances-base.install  
2014-12-28 21:13:37 UTC (rev 124768)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-data-default-instances-base
+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-data-default-instances-base/repos/community-staging-x86_64/PKGBUILD 
(from rev 124767, haskell-data-default-instances-base/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2014-12-28 21:13:37 UTC (rev 124768)
@@ -0,0 +1,37 @@
+# Maintainer: Jelle van der Waa je...@vdwaa.nl

[arch-commits] Commit in haskell-data-default-instances-old-locale/trunk (PKGBUILD)

2014-12-28 Thread Jelle van der Waa
Date: Sunday, December 28, 2014 @ 22:17:55
  Author: jelle
Revision: 124769

upgpkg: haskell-data-default-instances-old-locale 0.0.1-5

ghc 7.8.4 rebuild

Modified:
  haskell-data-default-instances-old-locale/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-28 21:13:37 UTC (rev 124768)
+++ PKGBUILD2014-12-28 21:17:55 UTC (rev 124769)
@@ -2,13 +2,13 @@
 _hkgname=data-default-instances-old-locale
 pkgname=haskell-data-default-instances-old-locale
 pkgver=0.0.1
-pkgrel=4
+pkgrel=5
 pkgdesc=Default instances for types in old-locale
 url=http://hackage.haskell.org/package/${_hkgname};
 license=('custom:BSD3')
 arch=('i686' 'x86_64')
 makedepends=()
-depends=('ghc=7.8.3' 'haskell-data-default-class' 'haskell-old-locale=1.0.0.6')
+depends=('ghc=7.8.4' 'haskell-data-default-class' 'haskell-old-locale=1.0.0.6')
 options=('strip')
 
source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
 install=${pkgname}.install


[arch-commits] Commit in haskell-data-default-instances-old-locale/repos (6 files)

2014-12-28 Thread Jelle van der Waa
Date: Sunday, December 28, 2014 @ 22:18:03
  Author: jelle
Revision: 124770

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

Added:
  haskell-data-default-instances-old-locale/repos/community-staging-i686/
  
haskell-data-default-instances-old-locale/repos/community-staging-i686/PKGBUILD
(from rev 124769, haskell-data-default-instances-old-locale/trunk/PKGBUILD)
  
haskell-data-default-instances-old-locale/repos/community-staging-i686/haskell-data-default-instances-old-locale.install
(from rev 124769, 
haskell-data-default-instances-old-locale/trunk/haskell-data-default-instances-old-locale.install)
  haskell-data-default-instances-old-locale/repos/community-staging-x86_64/
  
haskell-data-default-instances-old-locale/repos/community-staging-x86_64/PKGBUILD
(from rev 124769, haskell-data-default-instances-old-locale/trunk/PKGBUILD)
  
haskell-data-default-instances-old-locale/repos/community-staging-x86_64/haskell-data-default-instances-old-locale.install
(from rev 124769, 
haskell-data-default-instances-old-locale/trunk/haskell-data-default-instances-old-locale.install)

+
 community-staging-i686/PKGBUILD|   
37 ++
 community-staging-i686/haskell-data-default-instances-old-locale.install   |   
18 
 community-staging-x86_64/PKGBUILD  |   
37 ++
 community-staging-x86_64/haskell-data-default-instances-old-locale.install |   
18 
 4 files changed, 110 insertions(+)

Copied: 
haskell-data-default-instances-old-locale/repos/community-staging-i686/PKGBUILD 
(from rev 124769, haskell-data-default-instances-old-locale/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-12-28 21:18:03 UTC (rev 124770)
@@ -0,0 +1,37 @@
+# Maintainer: Jelle van der Waa je...@vdwaa.nl
+_hkgname=data-default-instances-old-locale
+pkgname=haskell-data-default-instances-old-locale
+pkgver=0.0.1
+pkgrel=5
+pkgdesc=Default instances for types in old-locale
+url=http://hackage.haskell.org/package/${_hkgname};
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+makedepends=()
+depends=('ghc=7.8.4' 'haskell-data-default-class' 'haskell-old-locale=1.0.0.6')
+options=('strip')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+install=${pkgname}.install
+md5sums=('43bd868049d870ee722eda6bdd89fc28')
+options=('staticlibs')
+
+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 -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-data-default-instances-old-locale/repos/community-staging-i686/haskell-data-default-instances-old-locale.install
 (from rev 124769, 
haskell-data-default-instances-old-locale/trunk/haskell-data-default-instances-old-locale.install)
===
--- community-staging-i686/haskell-data-default-instances-old-locale.install
(rev 0)
+++ community-staging-i686/haskell-data-default-instances-old-locale.install
2014-12-28 21:18:03 UTC (rev 124770)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-data-default-instances-old-locale
+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-data-default-instances-old-locale/repos/community-staging-x86_64/PKGBUILD
 (from rev 124769, haskell-data-default-instances-old-locale/trunk/PKGBUILD)
===
--- 

[arch-commits] Commit in haskell-data-default-instances-containers/repos (6 files)

2014-12-28 Thread Jelle van der Waa
Date: Sunday, December 28, 2014 @ 22:20:42
  Author: jelle
Revision: 124772

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

Added:
  haskell-data-default-instances-containers/repos/community-staging-i686/
  
haskell-data-default-instances-containers/repos/community-staging-i686/PKGBUILD
(from rev 124771, haskell-data-default-instances-containers/trunk/PKGBUILD)
  
haskell-data-default-instances-containers/repos/community-staging-i686/haskell-data-default-instances-containers.install
(from rev 124771, 
haskell-data-default-instances-containers/trunk/haskell-data-default-instances-containers.install)
  haskell-data-default-instances-containers/repos/community-staging-x86_64/
  
haskell-data-default-instances-containers/repos/community-staging-x86_64/PKGBUILD
(from rev 124771, haskell-data-default-instances-containers/trunk/PKGBUILD)
  
haskell-data-default-instances-containers/repos/community-staging-x86_64/haskell-data-default-instances-containers.install
(from rev 124771, 
haskell-data-default-instances-containers/trunk/haskell-data-default-instances-containers.install)

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

Copied: 
haskell-data-default-instances-containers/repos/community-staging-i686/PKGBUILD 
(from rev 124771, haskell-data-default-instances-containers/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-12-28 21:20:42 UTC (rev 124772)
@@ -0,0 +1,37 @@
+# Maintainer: Jelle van der Waa je...@vdwaa.nl
+_hkgname=data-default-instances-containers
+pkgname=haskell-data-default-instances-containers
+pkgver=0.0.1
+pkgrel=5
+pkgdesc=Default instances for types in containers
+url=http://hackage.haskell.org/package/${_hkgname};
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+makedepends=()
+depends=('ghc=7.8.4' 'haskell-containers=0.5.5.1' 
'haskell-data-default-class=0.0.1')
+options=('strip')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+install=${pkgname}.install
+md5sums=('1c574d87bf9bc69d4748e3236d575a3c')
+options=('staticlibs')
+
+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 -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-data-default-instances-containers/repos/community-staging-i686/haskell-data-default-instances-containers.install
 (from rev 124771, 
haskell-data-default-instances-containers/trunk/haskell-data-default-instances-containers.install)
===
--- community-staging-i686/haskell-data-default-instances-containers.install
(rev 0)
+++ community-staging-i686/haskell-data-default-instances-containers.install
2014-12-28 21:20:42 UTC (rev 124772)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-data-default-instances-containers
+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-data-default-instances-containers/repos/community-staging-x86_64/PKGBUILD
 (from rev 124771, haskell-data-default-instances-containers/trunk/PKGBUILD)

[arch-commits] Commit in haskell-data-default-instances-containers/trunk (PKGBUILD)

2014-12-28 Thread Jelle van der Waa
Date: Sunday, December 28, 2014 @ 22:20:34
  Author: jelle
Revision: 124771

upgpkg: haskell-data-default-instances-containers 0.0.1-5

ghc 7.8.4 rebuild

Modified:
  haskell-data-default-instances-containers/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-28 21:18:03 UTC (rev 124770)
+++ PKGBUILD2014-12-28 21:20:34 UTC (rev 124771)
@@ -2,13 +2,13 @@
 _hkgname=data-default-instances-containers
 pkgname=haskell-data-default-instances-containers
 pkgver=0.0.1
-pkgrel=4
+pkgrel=5
 pkgdesc=Default instances for types in containers
 url=http://hackage.haskell.org/package/${_hkgname};
 license=('custom:BSD3')
 arch=('i686' 'x86_64')
 makedepends=()
-depends=('ghc=7.8.3' 'haskell-containers=0.5.5.1' 
'haskell-data-default-class=0.0.1')
+depends=('ghc=7.8.4' 'haskell-containers=0.5.5.1' 
'haskell-data-default-class=0.0.1')
 options=('strip')
 
source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
 install=${pkgname}.install


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

2014-12-28 Thread Jelle van der Waa
Date: Sunday, December 28, 2014 @ 22:25:41
  Author: jelle
Revision: 124774

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

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

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

Copied: 
haskell-data-default-instances-dlist/repos/community-staging-i686/PKGBUILD 
(from rev 124773, haskell-data-default-instances-dlist/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-12-28 21:25:41 UTC (rev 124774)
@@ -0,0 +1,36 @@
+# Maintainer: Jelle van der Waa je...@vdwaa.nl
+_hkgname=data-default-instances-dlist
+pkgname=haskell-data-default-instances-dlist
+pkgver=0.0.1
+pkgrel=6
+pkgdesc=Default instances for types in dlist
+url=http://hackage.haskell.org/package/${_hkgname};
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('ghc=7.8.4' 'haskell-data-default-class=0.0.1' 
'haskell-dlist=0.7.1-1')
+options=('strip')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+install=${pkgname}.install
+md5sums=('6683d943ab70b7077ff6837fce75b4de')
+options=('staticlibs')
+
+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 -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-data-default-instances-dlist/repos/community-staging-i686/haskell-data-default-instances-dlist.install
 (from rev 124773, 
haskell-data-default-instances-dlist/trunk/haskell-data-default-instances-dlist.install)
===
--- community-staging-i686/haskell-data-default-instances-dlist.install 
(rev 0)
+++ community-staging-i686/haskell-data-default-instances-dlist.install 
2014-12-28 21:25:41 UTC (rev 124774)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-data-default-instances-dlist
+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-data-default-instances-dlist/repos/community-staging-x86_64/PKGBUILD 
(from rev 124773, haskell-data-default-instances-dlist/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2014-12-28 21:25:41 UTC (rev 124774)
@@ -0,0 +1,36 @@
+# Maintainer: Jelle 

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

2014-12-28 Thread Jelle van der Waa
Date: Sunday, December 28, 2014 @ 22:25:34
  Author: jelle
Revision: 124773

upgpkg: haskell-data-default-instances-dlist 0.0.1-6

ghc 7.8.4 rebuild

Modified:
  haskell-data-default-instances-dlist/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-28 21:20:42 UTC (rev 124772)
+++ PKGBUILD2014-12-28 21:25:34 UTC (rev 124773)
@@ -2,13 +2,12 @@
 _hkgname=data-default-instances-dlist
 pkgname=haskell-data-default-instances-dlist
 pkgver=0.0.1
-pkgrel=5
+pkgrel=6
 pkgdesc=Default instances for types in dlist
 url=http://hackage.haskell.org/package/${_hkgname};
 license=('custom:BSD3')
 arch=('i686' 'x86_64')
-makedepends=()
-depends=('ghc=7.8.3' 'haskell-data-default-class=0.0.1' 'haskell-dlist=0.5-27')
+depends=('ghc=7.8.4' 'haskell-data-default-class=0.0.1' 
'haskell-dlist=0.7.1-1')
 options=('strip')
 
source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
 install=${pkgname}.install


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

2014-12-28 Thread Jelle van der Waa
Date: Sunday, December 28, 2014 @ 22:28:33
  Author: jelle
Revision: 124776

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

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

---+
 /PKGBUILD |   74 
 /haskell-data-default.install |   36 +++
 community-staging-i686/PKGBUILD   |   37 
 community-staging-i686/haskell-data-default.install   |   18 ---
 community-staging-x86_64/PKGBUILD |   37 
 community-staging-x86_64/haskell-data-default.install |   18 ---
 6 files changed, 110 insertions(+), 110 deletions(-)

Deleted: community-staging-i686/PKGBUILD
===
--- community-staging-i686/PKGBUILD 2014-12-28 21:28:24 UTC (rev 124775)
+++ community-staging-i686/PKGBUILD 2014-12-28 21:28:33 UTC (rev 124776)
@@ -1,37 +0,0 @@
-# Maintainer: Jelle van der Waa je...@vdwaa.nl
-_hkgname=data-default
-pkgname=haskell-data-default
-pkgver=0.5.3
-pkgrel=5
-pkgdesc=A class for types with a default value
-url=http://hackage.haskell.org/package/${_hkgname};
-license=('custom:BSD3')
-arch=('i686' 'x86_64')
-makedepends=()
-depends=('ghc=7.8.3' 'haskell-data-default-class' 
'haskell-data-default-instances-base' 
'haskell-data-default-instances-containers' 
'haskell-data-default-instances-dlist' 
'haskell-data-default-instances-old-locale')
-options=('strip')
-source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
-install=${pkgname}.install
-md5sums=('03a98d999273ad20d5bc0c711bf1c533')
-options=('staticlibs')
-
-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 -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-data-default/repos/community-staging-i686/PKGBUILD (from rev 
124775, haskell-data-default/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-12-28 21:28:33 UTC (rev 124776)
@@ -0,0 +1,37 @@
+# Maintainer: Jelle van der Waa je...@vdwaa.nl
+_hkgname=data-default
+pkgname=haskell-data-default
+pkgver=0.5.3
+pkgrel=6
+pkgdesc=A class for types with a default value
+url=http://hackage.haskell.org/package/${_hkgname};
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+makedepends=()
+depends=('ghc=7.8.4' 'haskell-data-default-class' 
'haskell-data-default-instances-base' 
'haskell-data-default-instances-containers' 
'haskell-data-default-instances-dlist' 
'haskell-data-default-instances-old-locale')
+options=('strip')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+install=${pkgname}.install
+md5sums=('03a98d999273ad20d5bc0c711bf1c533')
+options=('staticlibs')
+
+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} 

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

2014-12-28 Thread Jelle van der Waa
Date: Sunday, December 28, 2014 @ 22:28:24
  Author: jelle
Revision: 124775

upgpkg: haskell-data-default 0.5.3-6

ghc 7.8.4 rebuild

Modified:
  haskell-data-default/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-28 21:25:41 UTC (rev 124774)
+++ PKGBUILD2014-12-28 21:28:24 UTC (rev 124775)
@@ -2,13 +2,13 @@
 _hkgname=data-default
 pkgname=haskell-data-default
 pkgver=0.5.3
-pkgrel=5
+pkgrel=6
 pkgdesc=A class for types with a default value
 url=http://hackage.haskell.org/package/${_hkgname};
 license=('custom:BSD3')
 arch=('i686' 'x86_64')
 makedepends=()
-depends=('ghc=7.8.3' 'haskell-data-default-class' 
'haskell-data-default-instances-base' 
'haskell-data-default-instances-containers' 
'haskell-data-default-instances-dlist' 
'haskell-data-default-instances-old-locale')
+depends=('ghc=7.8.4' 'haskell-data-default-class' 
'haskell-data-default-instances-base' 
'haskell-data-default-instances-containers' 
'haskell-data-default-instances-dlist' 
'haskell-data-default-instances-old-locale')
 options=('strip')
 
source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
 install=${pkgname}.install


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

2014-12-28 Thread Jelle van der Waa
Date: Sunday, December 28, 2014 @ 22:31:35
  Author: jelle
Revision: 124778

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 124777, haskell-extensible-exceptions/trunk/PKGBUILD)
  
haskell-extensible-exceptions/repos/community-staging-i686/haskell-extensible-exceptions.install
(from rev 124777, 
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 124777, haskell-extensible-exceptions/trunk/PKGBUILD)
  
haskell-extensible-exceptions/repos/community-staging-x86_64/haskell-extensible-exceptions.install
(from rev 124777, 
haskell-extensible-exceptions/trunk/haskell-extensible-exceptions.install)

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

Copied: haskell-extensible-exceptions/repos/community-staging-i686/PKGBUILD 
(from rev 124777, haskell-extensible-exceptions/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-12-28 21:31:35 UTC (rev 124778)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Jelle van der Waa je...@vdwaa.nl
+
+_hkgname=extensible-exceptions
+pkgname=haskell-${_hkgname}
+pkgver=0.1.1.4
+pkgrel=8
+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.8.4-1' 'sh')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+install=$pkgname.install
+options=('staticlibs')
+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 124777, 
haskell-extensible-exceptions/trunk/haskell-extensible-exceptions.install)
===
--- community-staging-i686/haskell-extensible-exceptions.install
(rev 0)
+++ community-staging-i686/haskell-extensible-exceptions.install
2014-12-28 21:31:35 UTC (rev 124778)
@@ -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 124777, haskell-extensible-exceptions/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2014-12-28 21:31:35 UTC (rev 124778)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Jelle van der Waa je...@vdwaa.nl
+
+_hkgname=extensible-exceptions
+pkgname=haskell-${_hkgname}
+pkgver=0.1.1.4
+pkgrel=8
+pkgdesc=extensible exceptions for both new and old versions of GHC
+url=http://hackage.haskell.org/package/extensible-exceptions;
+license=('custom:BSD3')

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

2014-12-28 Thread Jelle van der Waa
Date: Sunday, December 28, 2014 @ 22:31:27
  Author: jelle
Revision: 124777

upgpkg: haskell-extensible-exceptions 0.1.1.4-8

ghc 7.8.4 rebuild

Modified:
  haskell-extensible-exceptions/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-28 21:28:33 UTC (rev 124776)
+++ PKGBUILD2014-12-28 21:31:27 UTC (rev 124777)
@@ -4,12 +4,12 @@
 _hkgname=extensible-exceptions
 pkgname=haskell-${_hkgname}
 pkgver=0.1.1.4
-pkgrel=7
+pkgrel=8
 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.8.3-1' 'sh')
+depends=('ghc=7.8.4-1' 'sh')
 
source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
 install=$pkgname.install
 options=('staticlibs')


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

2014-12-28 Thread Jelle van der Waa
Date: Sunday, December 28, 2014 @ 22:39:32
  Author: jelle
Revision: 124779

upgpkg: haskell-x11 1.6.1.2-2

ghc 7.8.4 rebuild

Modified:
  haskell-x11/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-28 21:31:35 UTC (rev 124778)
+++ PKGBUILD2014-12-28 21:39:32 UTC (rev 124779)
@@ -6,13 +6,13 @@
 _hkgname=X11
 pkgname=haskell-x11
 pkgver=1.6.1.2
-pkgrel=1
+pkgrel=2
 pkgdesc=A Haskell binding to the X11 graphics library.
 arch=(i686 x86_64)
 url=http://hackage.haskell.org/cgi-bin/hackage-scripts/package/X11;
 license=('custom:BSD3')
 options=('strip')
-depends=(ghc=7.8.3 libx11 libxinerama libxrandr 
haskell-data-default=0.5.3)
+depends=(ghc=7.8.4 libx11 libxinerama libxrandr 
haskell-data-default=0.5.3)
 conflicts=(haskell-x11-extras)
 install=hsmod.install
 
source=(http://hackage.haskell.org/packages/archive/X11/$pkgver/X11-$pkgver.tar.gz)


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

2014-12-28 Thread Jelle van der Waa
Date: Sunday, December 28, 2014 @ 22:39:42
  Author: jelle
Revision: 124780

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

Added:
  haskell-x11/repos/community-staging-i686/
  haskell-x11/repos/community-staging-i686/PKGBUILD
(from rev 124779, haskell-x11/trunk/PKGBUILD)
  haskell-x11/repos/community-staging-i686/hsmod.install
(from rev 124779, haskell-x11/trunk/hsmod.install)
  haskell-x11/repos/community-staging-x86_64/
  haskell-x11/repos/community-staging-x86_64/PKGBUILD
(from rev 124779, haskell-x11/trunk/PKGBUILD)
  haskell-x11/repos/community-staging-x86_64/hsmod.install
(from rev 124779, haskell-x11/trunk/hsmod.install)

+
 community-staging-i686/PKGBUILD|   42 +++
 community-staging-i686/hsmod.install   |   18 +
 community-staging-x86_64/PKGBUILD  |   42 +++
 community-staging-x86_64/hsmod.install |   18 +
 4 files changed, 120 insertions(+)

Copied: haskell-x11/repos/community-staging-i686/PKGBUILD (from rev 124779, 
haskell-x11/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-12-28 21:39:42 UTC (rev 124780)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: shild s...@bk.ru
+# Maintainer: Vesa Kaihlavirta ve...@iki.fi
+
+_hkgname=X11
+pkgname=haskell-x11
+pkgver=1.6.1.2
+pkgrel=2
+pkgdesc=A Haskell binding to the X11 graphics library.
+arch=(i686 x86_64)
+url=http://hackage.haskell.org/cgi-bin/hackage-scripts/package/X11;
+license=('custom:BSD3')
+options=('strip')
+depends=(ghc=7.8.4 libx11 libxinerama libxrandr 
haskell-data-default=0.5.3)
+conflicts=(haskell-x11-extras)
+install=hsmod.install
+source=(http://hackage.haskell.org/packages/archive/X11/$pkgver/X11-$pkgver.tar.gz)
+options=('staticlibs')
+md5sums=('d7c94a65ce4b140e97cce835e8682ac3')
+
+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 -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-x11/repos/community-staging-i686/hsmod.install (from rev 
124779, haskell-x11/trunk/hsmod.install)
===
--- community-staging-i686/hsmod.install(rev 0)
+++ community-staging-i686/hsmod.install2014-12-28 21:39:42 UTC (rev 
124780)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-x11
+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-x11/repos/community-staging-x86_64/PKGBUILD (from rev 124779, 
haskell-x11/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2014-12-28 21:39:42 UTC (rev 124780)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: shild s...@bk.ru
+# Maintainer: Vesa Kaihlavirta ve...@iki.fi
+
+_hkgname=X11
+pkgname=haskell-x11
+pkgver=1.6.1.2
+pkgrel=2
+pkgdesc=A Haskell binding to the X11 graphics library.
+arch=(i686 x86_64)
+url=http://hackage.haskell.org/cgi-bin/hackage-scripts/package/X11;
+license=('custom:BSD3')
+options=('strip')
+depends=(ghc=7.8.4 libx11 libxinerama libxrandr 
haskell-data-default=0.5.3)
+conflicts=(haskell-x11-extras)
+install=hsmod.install
+source=(http://hackage.haskell.org/packages/archive/X11/$pkgver/X11-$pkgver.tar.gz)
+options=('staticlibs')
+md5sums=('d7c94a65ce4b140e97cce835e8682ac3')
+
+build() {
+cd ${srcdir}/${_hkgname}-${pkgver}
+runhaskell Setup 

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

2014-12-28 Thread Sergej Pupykin
Date: Sunday, December 28, 2014 @ 23:23:40
  Author: spupykin
Revision: 124781

upgpkg: cython 0.21.2-1

upd

Modified:
  cython/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-28 21:39:42 UTC (rev 124780)
+++ PKGBUILD2014-12-28 22:23:40 UTC (rev 124781)
@@ -4,7 +4,7 @@
 
 pkgname=('cython' 'cython2')
 pkgbase=cython
-pkgver=0.21.1
+pkgver=0.21.2
 pkgrel=1
 pkgdesc=C-Extensions for Python 
 arch=(i686 x86_64)
@@ -12,7 +12,7 @@
 license=('APACHE')
 makedepends=('python-setuptools' 'python2-setuptools')
 source=(http://cython.org/release/Cython-$pkgver.tar.gz;)
-md5sums=('c59163d7c72c0a0ee5eb84edd17935ed')
+md5sums=('d21adb870c75680dc857cd05d41046a4')
 
 package_cython() {
   depends=('python' 'python-setuptools')


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

2014-12-28 Thread Sergej Pupykin
Date: Sunday, December 28, 2014 @ 23:24:00
  Author: spupykin
Revision: 124782

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-12-28 22:23:40 UTC (rev 124781)
+++ community-i686/PKGBUILD 2014-12-28 22:24:00 UTC (rev 124782)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Igor Scabini furester @ gmail.com
-
-pkgname=('cython' 'cython2')
-pkgbase=cython
-pkgver=0.21.1
-pkgrel=1
-pkgdesc=C-Extensions for Python 
-arch=(i686 x86_64)
-url=http://www.cython.org;
-license=('APACHE')
-makedepends=('python-setuptools' 'python2-setuptools')
-source=(http://cython.org/release/Cython-$pkgver.tar.gz;)
-md5sums=('c59163d7c72c0a0ee5eb84edd17935ed')
-
-package_cython() {
-  depends=('python' 'python-setuptools')
-
-  cd $srcdir/Cython-$pkgver
-  python setup.py install --root=$pkgdir
-
-  sed -i 's|#!.*python|#!/usr/bin/python3|' $pkgdir/usr/bin/*
-}
-
-package_cython2() {
-  depends=('python2' 'python2-setuptools')
-
-  cd $srcdir/Cython-$pkgver
-  python2 setup.py install --root=$pkgdir
-
-  mv $pkgdir/usr/bin/cygdb $pkgdir/usr/bin/cygdb2
-  mv $pkgdir/usr/bin/cython $pkgdir/usr/bin/cython2
-  mv $pkgdir/usr/bin/cythonize $pkgdir/usr/bin/cythonize2
-}

Copied: cython/repos/community-i686/PKGBUILD (from rev 124781, 
cython/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-12-28 22:24:00 UTC (rev 124782)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Igor Scabini furester @ gmail.com
+
+pkgname=('cython' 'cython2')
+pkgbase=cython
+pkgver=0.21.2
+pkgrel=1
+pkgdesc=C-Extensions for Python 
+arch=(i686 x86_64)
+url=http://www.cython.org;
+license=('APACHE')
+makedepends=('python-setuptools' 'python2-setuptools')
+source=(http://cython.org/release/Cython-$pkgver.tar.gz;)
+md5sums=('d21adb870c75680dc857cd05d41046a4')
+
+package_cython() {
+  depends=('python' 'python-setuptools')
+
+  cd $srcdir/Cython-$pkgver
+  python setup.py install --root=$pkgdir
+
+  sed -i 's|#!.*python|#!/usr/bin/python3|' $pkgdir/usr/bin/*
+}
+
+package_cython2() {
+  depends=('python2' 'python2-setuptools')
+
+  cd $srcdir/Cython-$pkgver
+  python2 setup.py install --root=$pkgdir
+
+  mv $pkgdir/usr/bin/cygdb $pkgdir/usr/bin/cygdb2
+  mv $pkgdir/usr/bin/cython $pkgdir/usr/bin/cython2
+  mv $pkgdir/usr/bin/cythonize $pkgdir/usr/bin/cythonize2
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-12-28 22:23:40 UTC (rev 124781)
+++ community-x86_64/PKGBUILD   2014-12-28 22:24:00 UTC (rev 124782)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Igor Scabini furester @ gmail.com
-
-pkgname=('cython' 'cython2')
-pkgbase=cython
-pkgver=0.21.1
-pkgrel=1
-pkgdesc=C-Extensions for Python 
-arch=(i686 x86_64)
-url=http://www.cython.org;
-license=('APACHE')
-makedepends=('python-setuptools' 'python2-setuptools')
-source=(http://cython.org/release/Cython-$pkgver.tar.gz;)
-md5sums=('c59163d7c72c0a0ee5eb84edd17935ed')
-
-package_cython() {
-  depends=('python' 'python-setuptools')
-
-  cd $srcdir/Cython-$pkgver
-  python setup.py install --root=$pkgdir
-
-  sed -i 's|#!.*python|#!/usr/bin/python3|' $pkgdir/usr/bin/*
-}
-
-package_cython2() {
-  depends=('python2' 'python2-setuptools')
-
-  cd $srcdir/Cython-$pkgver
-  python2 setup.py install --root=$pkgdir
-
-  mv $pkgdir/usr/bin/cygdb $pkgdir/usr/bin/cygdb2
-  mv $pkgdir/usr/bin/cython $pkgdir/usr/bin/cython2
-  mv $pkgdir/usr/bin/cythonize $pkgdir/usr/bin/cythonize2
-}

Copied: cython/repos/community-x86_64/PKGBUILD (from rev 124781, 
cython/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-12-28 22:24:00 UTC (rev 124782)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Igor Scabini furester @ gmail.com
+
+pkgname=('cython' 'cython2')
+pkgbase=cython
+pkgver=0.21.2
+pkgrel=1
+pkgdesc=C-Extensions for Python 
+arch=(i686 x86_64)
+url=http://www.cython.org;
+license=('APACHE')

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

2014-12-28 Thread Sergej Pupykin
Date: Sunday, December 28, 2014 @ 23:24:05
  Author: spupykin
Revision: 124783

upgpkg: dbmail 3.2.2-1

upd

Modified:
  dbmail/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-28 22:24:00 UTC (rev 124782)
+++ PKGBUILD2014-12-28 22:24:05 UTC (rev 124783)
@@ -3,8 +3,8 @@
 # Contributor: Sebastian Faltoni sebastian.falt...@gmail.com
 
 pkgname=dbmail
-pkgver=3.2.1
-pkgrel=2
+pkgver=3.2.2
+pkgrel=1
 pkgdesc=Fast and scalable sql based mail services
 arch=('i686' 'x86_64')
 depends=('gmime' 'libzdb' 'mhash' 'libevent')
@@ -27,7 +27,7 @@
dbmail-lmtpd.xinetd
dbmail-pop3d.xinetd
dbmail-timsieved.xinetd)
-md5sums=('SKIP'
+md5sums=('b6327cfc653addcfed52c95aee6c29ae'
  '890de13361afbdf4fed12d6d7eb53e66'
  '961593658cd596297d03d25eb9c9e98f'
  '4cb764894abd3914802e90602bf90a0c'


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

2014-12-28 Thread Sergej Pupykin
Date: Sunday, December 28, 2014 @ 23:24:28
  Author: spupykin
Revision: 124785

upgpkg: parrot 6.11.0-1

upd

Modified:
  parrot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-28 22:24:25 UTC (rev 124784)
+++ PKGBUILD2014-12-28 22:24:28 UTC (rev 124785)
@@ -3,10 +3,10 @@
 # Contributor: mpie michael.kyne-philli...@ntlworld.com
 
 pkgname=parrot
-pkgver=6.8.0
+pkgver=6.11.0
 #_rel=stable
 _rel=devel
-pkgrel=2
+pkgrel=1
 pkgdesc=Standalone VM that can execute bytecode compiled dynamic languages
 arch=('x86_64' 'i686')
 url=http://www.parrotcode.org/;
@@ -16,7 +16,7 @@
 optdepends=('freeglut')
 options=('!makeflags')
 
source=(ftp://ftp.parrot.org/pub/parrot/releases/$_rel/$pkgver/$pkgname-$pkgver.tar.bz2)
-md5sums=('b97860b802998f9be26071910444d1e6')
+md5sums=('7118b4fcb83ca3adc0f2d5da28592b90')
 
 build() {
   cd $srcdir/$pkgname-$pkgver


[arch-commits] Commit in dbmail/repos (20 files)

2014-12-28 Thread Sergej Pupykin
Date: Sunday, December 28, 2014 @ 23:24:25
  Author: spupykin
Revision: 124784

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

Added:
  dbmail/repos/community-i686/PKGBUILD
(from rev 124783, dbmail/trunk/PKGBUILD)
  dbmail/repos/community-i686/dbmail-imapd.xinetd
(from rev 124783, dbmail/trunk/dbmail-imapd.xinetd)
  dbmail/repos/community-i686/dbmail-lmtpd.xinetd
(from rev 124783, dbmail/trunk/dbmail-lmtpd.xinetd)
  dbmail/repos/community-i686/dbmail-pop3d.xinetd
(from rev 124783, dbmail/trunk/dbmail-pop3d.xinetd)
  dbmail/repos/community-i686/dbmail-timsieved.xinetd
(from rev 124783, dbmail/trunk/dbmail-timsieved.xinetd)
  dbmail/repos/community-x86_64/PKGBUILD
(from rev 124783, dbmail/trunk/PKGBUILD)
  dbmail/repos/community-x86_64/dbmail-imapd.xinetd
(from rev 124783, dbmail/trunk/dbmail-imapd.xinetd)
  dbmail/repos/community-x86_64/dbmail-lmtpd.xinetd
(from rev 124783, dbmail/trunk/dbmail-lmtpd.xinetd)
  dbmail/repos/community-x86_64/dbmail-pop3d.xinetd
(from rev 124783, dbmail/trunk/dbmail-pop3d.xinetd)
  dbmail/repos/community-x86_64/dbmail-timsieved.xinetd
(from rev 124783, dbmail/trunk/dbmail-timsieved.xinetd)
Deleted:
  dbmail/repos/community-i686/PKGBUILD
  dbmail/repos/community-i686/dbmail-imapd.xinetd
  dbmail/repos/community-i686/dbmail-lmtpd.xinetd
  dbmail/repos/community-i686/dbmail-pop3d.xinetd
  dbmail/repos/community-i686/dbmail-timsieved.xinetd
  dbmail/repos/community-x86_64/PKGBUILD
  dbmail/repos/community-x86_64/dbmail-imapd.xinetd
  dbmail/repos/community-x86_64/dbmail-lmtpd.xinetd
  dbmail/repos/community-x86_64/dbmail-pop3d.xinetd
  dbmail/repos/community-x86_64/dbmail-timsieved.xinetd

--+
 /PKGBUILD|  122 +
 /dbmail-imapd.xinetd |   26 ++
 /dbmail-lmtpd.xinetd |   26 ++
 /dbmail-pop3d.xinetd |   26 ++
 /dbmail-timsieved.xinetd |   30 +++
 community-i686/PKGBUILD  |   61 --
 community-i686/dbmail-imapd.xinetd   |   13 ---
 community-i686/dbmail-lmtpd.xinetd   |   13 ---
 community-i686/dbmail-pop3d.xinetd   |   13 ---
 community-i686/dbmail-timsieved.xinetd   |   15 ---
 community-x86_64/PKGBUILD|   61 --
 community-x86_64/dbmail-imapd.xinetd |   13 ---
 community-x86_64/dbmail-lmtpd.xinetd |   13 ---
 community-x86_64/dbmail-pop3d.xinetd |   13 ---
 community-x86_64/dbmail-timsieved.xinetd |   15 ---
 15 files changed, 230 insertions(+), 230 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-12-28 22:24:05 UTC (rev 124783)
+++ community-i686/PKGBUILD 2014-12-28 22:24:25 UTC (rev 124784)
@@ -1,61 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Sebastian Faltoni sebastian.falt...@gmail.com
-
-pkgname=dbmail
-pkgver=3.2.1
-pkgrel=2
-pkgdesc=Fast and scalable sql based mail services
-arch=('i686' 'x86_64')
-depends=('gmime' 'libzdb' 'mhash' 'libevent')
-makedepends=('asciidoc' 'xmlto' 'docbook-xsl' 'docbook-xml' 
'postgresql-libs=8.4.1'
-'sqlite' 'libmysqlclient' 'libldap=2.4.18' 'libsieve' 'git')
-optdepends=('libldap: for LDAP authentication'
-   'libsieve: for dbmail-sieve'
-   'python2-mysql2pgsql: migrate from MySQL to PostreSQL')
-url=http://www.dbmail.org;
-license=('GPL')
-options=('zipman')
-backup=(etc/xinetd.d/dbmail-imapd
-   etc/xinetd.d/dbmail-pop3d
-   etc/xinetd.d/dbmail-lmtpd
-   etc/xinetd.d/dbmail-timsieved)
-#source=(dbmail-$pkgver::git://git.subdir.eu/paul/dbmail#branch=dbmail_3_2
-#source=(http://www.dbmail.org/download/3.2/dbmail-${pkgver}.tar.gz;
-source=(dbmail-$pkgver.tar.gz::http://git.dbmail.eu/paul/dbmail/snapshot/dbmail-$pkgver.tar.gz;
-   dbmail-imapd.xinetd
-   dbmail-lmtpd.xinetd
-   dbmail-pop3d.xinetd
-   dbmail-timsieved.xinetd)
-md5sums=('SKIP'
- '890de13361afbdf4fed12d6d7eb53e66'
- '961593658cd596297d03d25eb9c9e98f'
- '4cb764894abd3914802e90602bf90a0c'
- 'e78dc86355f9aaf24590bc7c6611162f')
-
-build() {
-  cd $srcdir/dbmail-${pkgver}/
-  aclocal
-  automake --add-missing
-  autoreconf
-  [ -f Makefile ] || ./configure \
---prefix=/usr --sbindir=/usr/bin --sysconfdir=/etc \
---with-ldap --with-sieve \
---enable-systemd --enable-manpages
-  make
-}
-
-package() {
-  cd $srcdir/dbmail-${pkgver}/
-  make DESTDIR=$pkgdir install
-
-  install -Dm644 dbmail.conf $pkgdir/etc/dbmail.conf.sample
-  mkdir $pkgdir/usr/share/dbmail
-  cp -r sql/* $pkgdir/usr/share/dbmail/
-  cp -a contrib $pkgdir/usr/share/dbmail/
-  cp dbmail.schema $pkgdir/usr/share/dbmail/
-
-  for i in dbmail-imapd dbmail-lmtpd dbmail-pop3d dbmail-timsieved; do
-install -Dm0644 $srcdir/$i.xinetd $pkgdir/etc/xinetd.d/$i

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

2014-12-28 Thread Sergej Pupykin
Date: Sunday, December 28, 2014 @ 23:24:46
  Author: spupykin
Revision: 124787

upgpkg: slock 1.2-1

upd

Modified:
  slock/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-28 22:24:42 UTC (rev 124786)
+++ PKGBUILD2014-12-28 22:24:46 UTC (rev 124787)
@@ -3,8 +3,8 @@
 # Contributor: Sebastian A. Liem sebastian at liem dot se
 
 pkgname=slock
-pkgver=1.1
-pkgrel=2
+pkgver=1.2
+pkgrel=1
 pkgdesc=A simple screen locker for X
 arch=('i686' 'x86_64')
 url=http://tools.suckless.org/slock;
@@ -12,7 +12,7 @@
 depends=('libxext')
 source=(http://dl.suckless.org/tools/$pkgname-$pkgver.tar.gz;)
 
#source=(slock-$pkgver.tar.bz2::http://hg.suckless.org/slock/archive/$_pkgver.tar.gz;)
-md5sums=('e3b25abdfd54c81562de4d63d3565be7')
+md5sums=('ee65f6e9f5ce71f3a6088d53b2485430')
 
 build() {
   cd $srcdir/slock-$pkgver


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

2014-12-28 Thread Sergej Pupykin
Date: Sunday, December 28, 2014 @ 23:24:42
  Author: spupykin
Revision: 124786

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-12-28 22:24:28 UTC (rev 124785)
+++ community-i686/PKGBUILD 2014-12-28 22:24:42 UTC (rev 124786)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: mpie michael.kyne-philli...@ntlworld.com
-
-pkgname=parrot
-pkgver=6.8.0
-#_rel=stable
-_rel=devel
-pkgrel=2
-pkgdesc=Standalone VM that can execute bytecode compiled dynamic languages
-arch=('x86_64' 'i686')
-url=http://www.parrotcode.org/;
-license=('GPL')
-depends=('icu' 'openssl' 'libffi')
-makedepends=('perl-json')
-optdepends=('freeglut')
-options=('!makeflags')
-source=(ftp://ftp.parrot.org/pub/parrot/releases/$_rel/$pkgver/$pkgname-$pkgver.tar.bz2)
-md5sums=('b97860b802998f9be26071910444d1e6')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  perl Configure.pl --prefix=/usr \
---parrot_is_shared \
---disable-rpath \
-   --mandir=/usr/share/man \
---optimize
-  export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:$(pwd)/blib/lib
-  make all parrot_utils docs html
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install-dev
-  sed -i s#$srcdir#/usr/src# \
-$pkgdir/usr/lib/parrot/$pkgver/tools/lib/Parrot/Config/Generated.pm
-}

Copied: parrot/repos/community-i686/PKGBUILD (from rev 124785, 
parrot/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-12-28 22:24:42 UTC (rev 124786)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: mpie michael.kyne-philli...@ntlworld.com
+
+pkgname=parrot
+pkgver=6.11.0
+#_rel=stable
+_rel=devel
+pkgrel=1
+pkgdesc=Standalone VM that can execute bytecode compiled dynamic languages
+arch=('x86_64' 'i686')
+url=http://www.parrotcode.org/;
+license=('GPL')
+depends=('icu' 'openssl' 'libffi')
+makedepends=('perl-json')
+optdepends=('freeglut')
+options=('!makeflags')
+source=(ftp://ftp.parrot.org/pub/parrot/releases/$_rel/$pkgver/$pkgname-$pkgver.tar.bz2)
+md5sums=('7118b4fcb83ca3adc0f2d5da28592b90')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  perl Configure.pl --prefix=/usr \
+--parrot_is_shared \
+--disable-rpath \
+   --mandir=/usr/share/man \
+--optimize
+  export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:$(pwd)/blib/lib
+  make all parrot_utils docs html
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install-dev
+  sed -i s#$srcdir#/usr/src# \
+$pkgdir/usr/lib/parrot/$pkgver/tools/lib/Parrot/Config/Generated.pm
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-12-28 22:24:28 UTC (rev 124785)
+++ community-x86_64/PKGBUILD   2014-12-28 22:24:42 UTC (rev 124786)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: mpie michael.kyne-philli...@ntlworld.com
-
-pkgname=parrot
-pkgver=6.8.0
-#_rel=stable
-_rel=devel
-pkgrel=2
-pkgdesc=Standalone VM that can execute bytecode compiled dynamic languages
-arch=('x86_64' 'i686')
-url=http://www.parrotcode.org/;
-license=('GPL')
-depends=('icu' 'openssl' 'libffi')
-makedepends=('perl-json')
-optdepends=('freeglut')
-options=('!makeflags')
-source=(ftp://ftp.parrot.org/pub/parrot/releases/$_rel/$pkgver/$pkgname-$pkgver.tar.bz2)
-md5sums=('b97860b802998f9be26071910444d1e6')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  perl Configure.pl --prefix=/usr \
---parrot_is_shared \
---disable-rpath \
-   --mandir=/usr/share/man \
---optimize
-  export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:$(pwd)/blib/lib
-  make all parrot_utils docs html
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install-dev
-  sed -i s#$srcdir#/usr/src# \
-$pkgdir/usr/lib/parrot/$pkgver/tools/lib/Parrot/Config/Generated.pm
-}

Copied: parrot/repos/community-x86_64/PKGBUILD (from rev 124785, 
parrot/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-12-28 22:24:42 UTC (rev 124786)
@@ -0,0 +1,37 @@
+# $Id$
+# 

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

2014-12-28 Thread Sergej Pupykin
Date: Sunday, December 28, 2014 @ 23:25:00
  Author: spupykin
Revision: 124788

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-12-28 22:24:46 UTC (rev 124787)
+++ community-i686/PKGBUILD 2014-12-28 22:25:00 UTC (rev 124788)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Sebastian A. Liem sebastian at liem dot se
-
-pkgname=slock
-pkgver=1.1
-pkgrel=2
-pkgdesc=A simple screen locker for X
-arch=('i686' 'x86_64')
-url=http://tools.suckless.org/slock;
-license=('MIT')
-depends=('libxext')
-source=(http://dl.suckless.org/tools/$pkgname-$pkgver.tar.gz;)
-#source=(slock-$pkgver.tar.bz2::http://hg.suckless.org/slock/archive/$_pkgver.tar.gz;)
-md5sums=('e3b25abdfd54c81562de4d63d3565be7')
-
-build() {
-  cd $srcdir/slock-$pkgver
-  make X11INC=/usr/include/X11 X11LIB=/usr/lib/X11
-}
-
-package() {
-  cd $srcdir/slock-$pkgver
-  make PREFIX=/usr DESTDIR=$pkgdir install
-  install -m644 -D LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: slock/repos/community-i686/PKGBUILD (from rev 124787, 
slock/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-12-28 22:25:00 UTC (rev 124788)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Sebastian A. Liem sebastian at liem dot se
+
+pkgname=slock
+pkgver=1.2
+pkgrel=1
+pkgdesc=A simple screen locker for X
+arch=('i686' 'x86_64')
+url=http://tools.suckless.org/slock;
+license=('MIT')
+depends=('libxext')
+source=(http://dl.suckless.org/tools/$pkgname-$pkgver.tar.gz;)
+#source=(slock-$pkgver.tar.bz2::http://hg.suckless.org/slock/archive/$_pkgver.tar.gz;)
+md5sums=('ee65f6e9f5ce71f3a6088d53b2485430')
+
+build() {
+  cd $srcdir/slock-$pkgver
+  make X11INC=/usr/include/X11 X11LIB=/usr/lib/X11
+}
+
+package() {
+  cd $srcdir/slock-$pkgver
+  make PREFIX=/usr DESTDIR=$pkgdir install
+  install -m644 -D LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-12-28 22:24:46 UTC (rev 124787)
+++ community-x86_64/PKGBUILD   2014-12-28 22:25:00 UTC (rev 124788)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Sebastian A. Liem sebastian at liem dot se
-
-pkgname=slock
-pkgver=1.1
-pkgrel=2
-pkgdesc=A simple screen locker for X
-arch=('i686' 'x86_64')
-url=http://tools.suckless.org/slock;
-license=('MIT')
-depends=('libxext')
-source=(http://dl.suckless.org/tools/$pkgname-$pkgver.tar.gz;)
-#source=(slock-$pkgver.tar.bz2::http://hg.suckless.org/slock/archive/$_pkgver.tar.gz;)
-md5sums=('e3b25abdfd54c81562de4d63d3565be7')
-
-build() {
-  cd $srcdir/slock-$pkgver
-  make X11INC=/usr/include/X11 X11LIB=/usr/lib/X11
-}
-
-package() {
-  cd $srcdir/slock-$pkgver
-  make PREFIX=/usr DESTDIR=$pkgdir install
-  install -m644 -D LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: slock/repos/community-x86_64/PKGBUILD (from rev 124787, 
slock/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-12-28 22:25:00 UTC (rev 124788)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Sebastian A. Liem sebastian at liem dot se
+
+pkgname=slock
+pkgver=1.2
+pkgrel=1
+pkgdesc=A simple screen locker for X
+arch=('i686' 'x86_64')
+url=http://tools.suckless.org/slock;
+license=('MIT')
+depends=('libxext')
+source=(http://dl.suckless.org/tools/$pkgname-$pkgver.tar.gz;)
+#source=(slock-$pkgver.tar.bz2::http://hg.suckless.org/slock/archive/$_pkgver.tar.gz;)
+md5sums=('ee65f6e9f5ce71f3a6088d53b2485430')
+
+build() {
+  cd $srcdir/slock-$pkgver
+  make X11INC=/usr/include/X11 X11LIB=/usr/lib/X11
+}
+
+package() {
+  cd $srcdir/slock-$pkgver
+  make PREFIX=/usr DESTDIR=$pkgdir install
+  install -m644 -D LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}


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

2014-12-28 Thread Sergej Pupykin
Date: Sunday, December 28, 2014 @ 23:25:03
  Author: spupykin
Revision: 124789

upgpkg: workrave 1.10.6-1

upd

Modified:
  workrave/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-28 22:25:00 UTC (rev 124788)
+++ PKGBUILD2014-12-28 22:25:03 UTC (rev 124789)
@@ -3,8 +3,8 @@
 # Maintainer: William Rea sillywi...@gmail.com
 
 pkgname=workrave
-pkgver=1.10.5
-pkgrel=2
+pkgver=1.10.6
+pkgrel=1
 pkgdesc=a tool to help RSI
 arch=('i686' 'x86_64')
 license=('GPL2')
@@ -13,7 +13,7 @@
 'python2-cheetah' 'libxss')
 makedepends=('intltool' 'gobject-introspection')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/rcaelers/workrave/archive/v${pkgver//./_}.tar.gz)
-md5sums=('8b92a68979eb59a47faeaa33638c34e7')
+md5sums=('6f9ee65b9d6878cac33e7d0a0e51bc38')
 
 build() {
   cd $srcdir/workrave-${pkgver//./_}


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

2014-12-28 Thread Sergej Pupykin
Date: Sunday, December 28, 2014 @ 23:25:17
  Author: spupykin
Revision: 124790

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-12-28 22:25:03 UTC (rev 124789)
+++ community-i686/PKGBUILD 2014-12-28 22:25:17 UTC (rev 124790)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: William Rea sillywi...@gmail.com
-
-pkgname=workrave
-pkgver=1.10.5
-pkgrel=2
-pkgdesc=a tool to help RSI
-arch=('i686' 'x86_64')
-license=('GPL2')
-url=http://workrave.org;
-depends=('libxtst' 'gtkmm3' 'gdome2' 'gstreamer0.10' 'libsm' 'libice'
-'python2-cheetah' 'libxss')
-makedepends=('intltool' 'gobject-introspection')
-source=($pkgname-$pkgver.tar.gz::https://github.com/rcaelers/workrave/archive/v${pkgver//./_}.tar.gz)
-md5sums=('8b92a68979eb59a47faeaa33638c34e7')
-
-build() {
-  cd $srcdir/workrave-${pkgver//./_}
-  export PYTHON=python2
-  ./autogen.sh
-  ./configure --prefix=/usr --enable-dbus --sysconfdir=/etc 
--libexecdir=/usr/lib/workrave \
-   --disable-pulse
-  make
-}
-
-package() {
-  cd $srcdir/workrave-${pkgver//./_}
-  make DESTDIR=$pkgdir install
-}

Copied: workrave/repos/community-i686/PKGBUILD (from rev 124789, 
workrave/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-12-28 22:25:17 UTC (rev 124790)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: William Rea sillywi...@gmail.com
+
+pkgname=workrave
+pkgver=1.10.6
+pkgrel=1
+pkgdesc=a tool to help RSI
+arch=('i686' 'x86_64')
+license=('GPL2')
+url=http://workrave.org;
+depends=('libxtst' 'gtkmm3' 'gdome2' 'gstreamer0.10' 'libsm' 'libice'
+'python2-cheetah' 'libxss')
+makedepends=('intltool' 'gobject-introspection')
+source=($pkgname-$pkgver.tar.gz::https://github.com/rcaelers/workrave/archive/v${pkgver//./_}.tar.gz)
+md5sums=('6f9ee65b9d6878cac33e7d0a0e51bc38')
+
+build() {
+  cd $srcdir/workrave-${pkgver//./_}
+  export PYTHON=python2
+  ./autogen.sh
+  ./configure --prefix=/usr --enable-dbus --sysconfdir=/etc 
--libexecdir=/usr/lib/workrave \
+   --disable-pulse
+  make
+}
+
+package() {
+  cd $srcdir/workrave-${pkgver//./_}
+  make DESTDIR=$pkgdir install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-12-28 22:25:03 UTC (rev 124789)
+++ community-x86_64/PKGBUILD   2014-12-28 22:25:17 UTC (rev 124790)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: William Rea sillywi...@gmail.com
-
-pkgname=workrave
-pkgver=1.10.5
-pkgrel=2
-pkgdesc=a tool to help RSI
-arch=('i686' 'x86_64')
-license=('GPL2')
-url=http://workrave.org;
-depends=('libxtst' 'gtkmm3' 'gdome2' 'gstreamer0.10' 'libsm' 'libice'
-'python2-cheetah' 'libxss')
-makedepends=('intltool' 'gobject-introspection')
-source=($pkgname-$pkgver.tar.gz::https://github.com/rcaelers/workrave/archive/v${pkgver//./_}.tar.gz)
-md5sums=('8b92a68979eb59a47faeaa33638c34e7')
-
-build() {
-  cd $srcdir/workrave-${pkgver//./_}
-  export PYTHON=python2
-  ./autogen.sh
-  ./configure --prefix=/usr --enable-dbus --sysconfdir=/etc 
--libexecdir=/usr/lib/workrave \
-   --disable-pulse
-  make
-}
-
-package() {
-  cd $srcdir/workrave-${pkgver//./_}
-  make DESTDIR=$pkgdir install
-}

Copied: workrave/repos/community-x86_64/PKGBUILD (from rev 124789, 
workrave/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-12-28 22:25:17 UTC (rev 124790)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: William Rea sillywi...@gmail.com
+
+pkgname=workrave
+pkgver=1.10.6
+pkgrel=1
+pkgdesc=a tool to help RSI
+arch=('i686' 'x86_64')
+license=('GPL2')
+url=http://workrave.org;
+depends=('libxtst' 'gtkmm3' 'gdome2' 'gstreamer0.10' 'libsm' 'libice'
+'python2-cheetah' 'libxss')
+makedepends=('intltool' 'gobject-introspection')
+source=($pkgname-$pkgver.tar.gz::https://github.com/rcaelers/workrave/archive/v${pkgver//./_}.tar.gz)

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

2014-12-28 Thread Jelle van der Waa
Date: Sunday, December 28, 2014 @ 23:26:18
  Author: jelle
Revision: 124792

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

Added:
  haskell-x11-xft/repos/community-staging-i686/
  haskell-x11-xft/repos/community-staging-i686/PKGBUILD
(from rev 124791, haskell-x11-xft/trunk/PKGBUILD)
  haskell-x11-xft/repos/community-staging-i686/haskell-x11-xft.install
(from rev 124791, haskell-x11-xft/trunk/haskell-x11-xft.install)
  haskell-x11-xft/repos/community-staging-x86_64/
  haskell-x11-xft/repos/community-staging-x86_64/PKGBUILD
(from rev 124791, haskell-x11-xft/trunk/PKGBUILD)
  haskell-x11-xft/repos/community-staging-x86_64/haskell-x11-xft.install
(from rev 124791, haskell-x11-xft/trunk/haskell-x11-xft.install)

--+
 community-staging-i686/PKGBUILD  |   38 +
 community-staging-i686/haskell-x11-xft.install   |   18 +
 community-staging-x86_64/PKGBUILD|   38 +
 community-staging-x86_64/haskell-x11-xft.install |   18 +
 4 files changed, 112 insertions(+)

Copied: haskell-x11-xft/repos/community-staging-i686/PKGBUILD (from rev 124791, 
haskell-x11-xft/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-12-28 22:26:18 UTC (rev 124792)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+_hkgname=X11-xft
+pkgname=haskell-x11-xft
+pkgver=0.3.1
+pkgrel=12
+pkgdesc=Bindings to the Xft, X Free Type interface library, and some Xrender 
parts
+url=http://hackage.haskell.org/package/${_hkgname};
+license=('LGPL')
+arch=('i686' 'x86_64')
+depends=('ghc=7.8.4' 'haskell-x11=1.6.1.2' 'haskell-utf8-string=0.3.8' 
'libxft')
+options=('strip')
+install=haskell-x11-xft.install
+source=(http://hackage.haskell.org/packages/archive/X11-xft/$pkgver/X11-xft-$pkgver.tar.gz)
+options=('staticlibs')
+md5sums=('ad885150a59f63de328e73abe5ffc79e')
+
+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 -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
+}

Copied: haskell-x11-xft/repos/community-staging-i686/haskell-x11-xft.install 
(from rev 124791, haskell-x11-xft/trunk/haskell-x11-xft.install)
===
--- community-staging-i686/haskell-x11-xft.install  
(rev 0)
+++ community-staging-i686/haskell-x11-xft.install  2014-12-28 22:26:18 UTC 
(rev 124792)
@@ -0,0 +1,18 @@
+HS_DIR=/usr/share/haskell/haskell-x11-xft
+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-x11-xft/repos/community-staging-x86_64/PKGBUILD (from rev 
124791, haskell-x11-xft/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2014-12-28 22:26:18 UTC (rev 124792)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+_hkgname=X11-xft
+pkgname=haskell-x11-xft
+pkgver=0.3.1
+pkgrel=12
+pkgdesc=Bindings to the Xft, X Free Type interface library, and some Xrender 
parts
+url=http://hackage.haskell.org/package/${_hkgname};
+license=('LGPL')
+arch=('i686' 'x86_64')
+depends=('ghc=7.8.4' 'haskell-x11=1.6.1.2' 'haskell-utf8-string=0.3.8' 
'libxft')
+options=('strip')
+install=haskell-x11-xft.install
+source=(http://hackage.haskell.org/packages/archive/X11-xft/$pkgver/X11-xft-$pkgver.tar.gz)
+options=('staticlibs')
+md5sums=('ad885150a59f63de328e73abe5ffc79e')
+
+build() {
+  cd ${srcdir}/${_hkgname}-${pkgver}
+  runhaskell Setup configure -O  --enable-split-objs --enable-shared \
+

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

2014-12-28 Thread Jelle van der Waa
Date: Sunday, December 28, 2014 @ 23:26:09
  Author: jelle
Revision: 124791

upgpkg: haskell-x11-xft 0.3.1-12

ghc 7.8.4 rebuild

Modified:
  haskell-x11-xft/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-28 22:25:17 UTC (rev 124790)
+++ PKGBUILD2014-12-28 22:26:09 UTC (rev 124791)
@@ -4,12 +4,12 @@
 _hkgname=X11-xft
 pkgname=haskell-x11-xft
 pkgver=0.3.1
-pkgrel=11
+pkgrel=12
 pkgdesc=Bindings to the Xft, X Free Type interface library, and some Xrender 
parts
 url=http://hackage.haskell.org/package/${_hkgname};
 license=('LGPL')
 arch=('i686' 'x86_64')
-depends=('ghc=7.8.3' 'haskell-x11=1.6.1.2' 'haskell-utf8-string=0.3.7' 
'libxft')
+depends=('ghc=7.8.4' 'haskell-x11=1.6.1.2' 'haskell-utf8-string=0.3.8' 
'libxft')
 options=('strip')
 install=haskell-x11-xft.install
 
source=(http://hackage.haskell.org/packages/archive/X11-xft/$pkgver/X11-xft-$pkgver.tar.gz)


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

2014-12-28 Thread Jelle van der Waa
Date: Sunday, December 28, 2014 @ 23:30:41
  Author: jelle
Revision: 124793

upgpkg: xmonad 0.11-10

ghc 7.8.4 rebuild

Modified:
  xmonad/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-28 22:26:18 UTC (rev 124792)
+++ PKGBUILD2014-12-28 22:30:41 UTC (rev 124793)
@@ -5,12 +5,12 @@
 
 pkgname=xmonad
 pkgver=0.11
-pkgrel=9
+pkgrel=10
 pkgdesc=Lightweight X11 tiled window manager written in Haskell
 arch=('i686' 'x86_64')
 url=http://xmonad.org/;
 license=('BSD')
-depends=('ghc=7.8.3' 'gmp' 'haskell-x11=1.6.1.2' 'sh' 'haskell-mtl=2.1.3.1' 
'haskell-utf8-string=0.3.7' 'haskell-extensible-exceptions=0.1.1.4')
+depends=('ghc=7.8.4' 'gmp' 'haskell-x11=1.6.1.2' 'sh' 'haskell-mtl=2.1.3.1' 
'haskell-utf8-string=0.3.8' 'haskell-extensible-exceptions=0.1.1.4')
 makedepends=('gendesk')
 optdepends=('xorg-xmessage: for displaying visual error messages')
 install='xmonad.install'


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

2014-12-28 Thread Jelle van der Waa
Date: Sunday, December 28, 2014 @ 23:30:55
  Author: jelle
Revision: 124794

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

Added:
  xmonad/repos/community-staging-i686/
  xmonad/repos/community-staging-i686/PKGBUILD
(from rev 124793, xmonad/trunk/PKGBUILD)
  xmonad/repos/community-staging-i686/xmonad.install
(from rev 124793, xmonad/trunk/xmonad.install)
  xmonad/repos/community-staging-i686/xmonad.svg
(from rev 124793, xmonad/trunk/xmonad.svg)
  xmonad/repos/community-staging-x86_64/
  xmonad/repos/community-staging-x86_64/PKGBUILD
(from rev 124793, xmonad/trunk/PKGBUILD)
  xmonad/repos/community-staging-x86_64/xmonad.install
(from rev 124793, xmonad/trunk/xmonad.install)
  xmonad/repos/community-staging-x86_64/xmonad.svg
(from rev 124793, xmonad/trunk/xmonad.svg)

-+
 community-staging-i686/PKGBUILD |   53 
 community-staging-i686/xmonad.install   |   19 +++
 community-staging-i686/xmonad.svg   |   77 ++
 community-staging-x86_64/PKGBUILD   |   53 
 community-staging-x86_64/xmonad.install |   19 +++
 community-staging-x86_64/xmonad.svg |   77 ++
 6 files changed, 298 insertions(+)

Copied: xmonad/repos/community-staging-i686/PKGBUILD (from rev 124793, 
xmonad/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-12-28 22:30:55 UTC (rev 124794)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Vesa Kaihlavirta ve...@iki.fi
+# Contributor: shild shi...@gmail.com
+
+pkgname=xmonad
+pkgver=0.11
+pkgrel=10
+pkgdesc=Lightweight X11 tiled window manager written in Haskell
+arch=('i686' 'x86_64')
+url=http://xmonad.org/;
+license=('BSD')
+depends=('ghc=7.8.4' 'gmp' 'haskell-x11=1.6.1.2' 'sh' 'haskell-mtl=2.1.3.1' 
'haskell-utf8-string=0.3.8' 'haskell-extensible-exceptions=0.1.1.4')
+makedepends=('gendesk')
+optdepends=('xorg-xmessage: for displaying visual error messages')
+install='xmonad.install'
+source=(http://hackage.haskell.org/packages/archive/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz;
+'xmonad.svg')
+options=('staticlibs')
+md5sums=('5ac9dc1dae5e85dcbdfb9f70cbe312c1'
+ '72bfa5e62e4e44fe7fa59b6a7593d993')
+
+build() {
+  cd $srcdir
+  ghc-pkg list
+  gendesk --pkgname $pkgname --pkgdesc $pkgdesc
+
+  cd $srcdir/$pkgname-$pkgver
+
+  runhaskell Setup.lhs configure --ghc --enable-shared --enable-split-objs 
--prefix=/usr \
+ --libsubdir=\$compiler/site-local/\$pkgid
+  runhaskell Setup build
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  install -D -m744 register.sh $pkgdir/usr/share/haskell/$pkgname/register.sh
+  install -m744 unregister.sh $pkgdir/usr/share/haskell/$pkgname/unregister.sh
+  runhaskell Setup.lhs copy --destdir=$pkgdir
+
+  #runhaskell util/GenerateManpage.hs
+
+  install -D -m644 man/xmonad.1 $pkgdir/usr/share/man/man1/xmonad.1
+
+  install -D -m644 LICENSE $pkgdir/usr/share/licenses/xmonad/LICENSE
+
+  install -D -m644 $srcdir/xmonad.svg $pkgdir/usr/share/pixmaps/xmonad.svg
+
+  install -D -m644 $srcdir/xmonad.desktop 
$pkgdir/usr/share/xsessions/xmonad.desktop
+}

Copied: xmonad/repos/community-staging-i686/xmonad.install (from rev 124793, 
xmonad/trunk/xmonad.install)
===
--- community-staging-i686/xmonad.install   (rev 0)
+++ community-staging-i686/xmonad.install   2014-12-28 22:30:55 UTC (rev 
124794)
@@ -0,0 +1,19 @@
+HS_DIR=/usr/share/haskell/xmonad
+
+post_install() {
+${HS_DIR}/register.sh
+echo xmonad now has dynamic configuration via ~/.xmonad/xmonad.hs
+echo See http://haskell.org/haskellwiki/Xmonad/Config_archive for 
examples
+}
+
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+
+post_upgrade() {
+  ${HS_DIR}/register.sh
+}
+
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}

Copied: xmonad/repos/community-staging-i686/xmonad.svg (from rev 124793, 
xmonad/trunk/xmonad.svg)
===
--- community-staging-i686/xmonad.svg   (rev 0)
+++ community-staging-i686/xmonad.svg   2014-12-28 22:30:55 UTC (rev 124794)
@@ -0,0 +1,77 @@
+?xml version=1.0 encoding=UTF-8 standalone=no?
+!-- Created with Inkscape (http://www.inkscape.org/) --
+svg
+   xmlns:dc=http://purl.org/dc/elements/1.1/;
+   xmlns:cc=http://web.resource.org/cc/;
+   xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#;
+   xmlns:svg=http://www.w3.org/2000/svg;
+   xmlns=http://www.w3.org/2000/svg;
+   

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

2014-12-28 Thread Jelle van der Waa
Date: Sunday, December 28, 2014 @ 23:45:16
  Author: jelle
Revision: 124795

upgpkg: xmonad-contrib 0.11.3-2

ghc 7.8.4 rebuild

Modified:
  xmonad-contrib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-28 22:30:55 UTC (rev 124794)
+++ PKGBUILD2014-12-28 22:45:16 UTC (rev 124795)
@@ -5,12 +5,12 @@
 
 pkgname=xmonad-contrib
 pkgver=0.11.3
-pkgrel=1
+pkgrel=2
 pkgdesc=Add-ons for xmonad
 arch=('i686' 'x86_64')
 url=http://xmonad.org/;
 license=('BSD')
-depends=('ghc=7.8.3-2' 'xmonad=0.11-9' 'sh' 'haskell-x11=1.6.1.2' 
'haskell-x11-xft=0.3.1' 'haskell-utf8-string=0.3.7' 'haskell-random=1.0.1.1')
+depends=('ghc=7.8.4-1' 'xmonad=0.11-10' 'sh' 'haskell-x11=1.6.1.2' 
'haskell-x11-xft=0.3.1' 'haskell-utf8-string=0.3.8' 'haskell-random=1.1')
 install='xmonad-contrib.install'
 options=('staticlibs')
 
source=(http://hackage.haskell.org/packages/archive/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz)


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

2014-12-28 Thread Jelle van der Waa
Date: Sunday, December 28, 2014 @ 23:45:29
  Author: jelle
Revision: 124796

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

Added:
  xmonad-contrib/repos/community-staging-i686/
  xmonad-contrib/repos/community-staging-i686/PKGBUILD
(from rev 124795, xmonad-contrib/trunk/PKGBUILD)
  
xmonad-contrib/repos/community-staging-i686/xmonad-contrib-remove-getatomname.patch
(from rev 124795, 
xmonad-contrib/trunk/xmonad-contrib-remove-getatomname.patch)
  xmonad-contrib/repos/community-staging-i686/xmonad-contrib.install
(from rev 124795, xmonad-contrib/trunk/xmonad-contrib.install)
  xmonad-contrib/repos/community-staging-x86_64/
  xmonad-contrib/repos/community-staging-x86_64/PKGBUILD
(from rev 124795, xmonad-contrib/trunk/PKGBUILD)
  
xmonad-contrib/repos/community-staging-x86_64/xmonad-contrib-remove-getatomname.patch
(from rev 124795, 
xmonad-contrib/trunk/xmonad-contrib-remove-getatomname.patch)
  xmonad-contrib/repos/community-staging-x86_64/xmonad-contrib.install
(from rev 124795, xmonad-contrib/trunk/xmonad-contrib.install)

--+
 community-staging-i686/PKGBUILD  |   36 
++
 community-staging-i686/xmonad-contrib-remove-getatomname.patch   |   19 +
 community-staging-i686/xmonad-contrib.install|   17 
 community-staging-x86_64/PKGBUILD|   36 
++
 community-staging-x86_64/xmonad-contrib-remove-getatomname.patch |   19 +
 community-staging-x86_64/xmonad-contrib.install  |   17 
 6 files changed, 144 insertions(+)

Copied: xmonad-contrib/repos/community-staging-i686/PKGBUILD (from rev 124795, 
xmonad-contrib/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-12-28 22:45:29 UTC (rev 124796)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Vesa Kaihlavirta ve...@iki.fi
+# Contributor: orbisvicis gmail.com
+
+pkgname=xmonad-contrib
+pkgver=0.11.3
+pkgrel=2
+pkgdesc=Add-ons for xmonad
+arch=('i686' 'x86_64')
+url=http://xmonad.org/;
+license=('BSD')
+depends=('ghc=7.8.4-1' 'xmonad=0.11-10' 'sh' 'haskell-x11=1.6.1.2' 
'haskell-x11-xft=0.3.1' 'haskell-utf8-string=0.3.8' 'haskell-random=1.1')
+install='xmonad-contrib.install'
+options=('staticlibs')
+source=(http://hackage.haskell.org/packages/archive/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz)
+md5sums=('285617f4c832d6df77087604c7160757')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  runhaskell Setup.lhs configure --ghc --enable-shared --enable-split-objs 
--prefix=/usr -fuse_xft \
+ --libsubdir=\$compiler/site-local/\$pkgid
+  runhaskell Setup build
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  install -D -m744 register.sh $pkgdir/usr/share/haskell/$pkgname/register.sh
+  install -m744 unregister.sh $pkgdir/usr/share/haskell/$pkgname/unregister.sh
+  runhaskell Setup.lhs copy --destdir=$pkgdir
+  install -D LICENSE $pkgdir/usr/share/licenses/xmonad-contrib/LICENSE
+}

Copied: 
xmonad-contrib/repos/community-staging-i686/xmonad-contrib-remove-getatomname.patch
 (from rev 124795, xmonad-contrib/trunk/xmonad-contrib-remove-getatomname.patch)
===
--- community-staging-i686/xmonad-contrib-remove-getatomname.patch  
(rev 0)
+++ community-staging-i686/xmonad-contrib-remove-getatomname.patch  
2014-12-28 22:45:29 UTC (rev 124796)
@@ -0,0 +1,19 @@
+diff -aur xmonad-contrib-0.11/XMonad/Hooks/DebugEvents.hs 
xmonad-contrib.new/XMonad/Hooks/DebugEvents.hs
+--- xmonad-contrib-0.11/XMonad/Hooks/DebugEvents.hs2013-01-01 
01:32:44.0 +
 xmonad-contrib.new/XMonad/Hooks/DebugEvents.hs 2013-03-18 
07:54:52.082723862 +
+@@ -50,6 +50,7 @@
+ import   System.Process
+ 
+ -- this should move into X11
++{-
+ foreign import ccall unsafe XGetAtomName
+   xGetAtomName :: Display - Atom - IO CString
+ 
+@@ -63,6 +64,7 @@
+   xFree n
+   return $ Just n'
+ 
++-}
+ -- | Event hook to dump all received events.  You should probably not use this
+ --   unconditionally; it will produce massive amounts of output.
+ debugEventsHook   :: Event - X All

Copied: xmonad-contrib/repos/community-staging-i686/xmonad-contrib.install 
(from rev 124795, xmonad-contrib/trunk/xmonad-contrib.install)
===
--- community-staging-i686/xmonad-contrib.install   
(rev 0)
+++ community-staging-i686/xmonad-contrib.install   2014-12-28 22:45:29 UTC 
(rev 124796)
@@ -0,0 +1,17 @@

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

2014-12-28 Thread Bartłomiej Piotrowski
Date: Sunday, December 28, 2014 @ 23:59:43
  Author: bpiotrowski
Revision: 124797

upgpkg: syncthing-gtk 0.5.5-1

new upstream release

Modified:
  syncthing-gtk/trunk/PKGBUILD  (contents, properties)

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-28 22:45:29 UTC (rev 124796)
+++ PKGBUILD2014-12-28 22:59:43 UTC (rev 124797)
@@ -1,25 +1,26 @@
+# $Id$
 # Maintainer : Martin Wimpress c...@flexion.org
 # Contributor: kozec kozec at kozec dot com
 
 pkgname=syncthing-gtk
-pkgver=0.5.2
-pkgrel=3
-pkgdesc=GTK3  Python based GUI and notification area icon for Syncthing
+pkgver=0.5.5
+pkgrel=1
+pkgdesc='GTK3 based GUI and notification area icon for Syncthing'
 arch=('any')
-url=https://github.com/syncthing/syncthing-gtk;
+url='https://github.com/syncthing/syncthing-gtk'
 license=('GPL2')
 makedepends=('python2-setuptools')
 depends=('gtk3' 'libnotify' 'python2-dateutil' 'python2-gobject' 
'python2-pyinotify'
- 'syncthing=0.10.9')
-source=(https://github.com/syncthing/${pkgname}/archive/v${pkgver}.tar.gz;)
-md5sums=('20e5750b775acedaf51ab130e4e47644')
+ 'syncthing')
+source=(https://github.com/syncthing/$pkgname/archive/v$pkgver.tar.gz)
+md5sums=('176dadfbb51171719dd72fa1a68632aa')
 
 build() {
-cd ${srcdir}/${pkgname}-${pkgver}
-python2 setup.py build
+  cd $pkgname-$pkgver
+  python2 setup.py build
 }
 
 package() {
-cd ${srcdir}/${pkgname}-${pkgver}
-python2 setup.py install --root=${pkgdir} --optimize=1
+  cd $pkgname-$pkgver
+  python2 setup.py install --root=${pkgdir} --optimize=1
 }


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


[arch-commits] Commit in syncthing-gtk/repos/community-any (PKGBUILD PKGBUILD)

2014-12-28 Thread Bartłomiej Piotrowski
Date: Sunday, December 28, 2014 @ 23:59:51
  Author: bpiotrowski
Revision: 124798

archrelease: copy trunk to community-any

Added:
  syncthing-gtk/repos/community-any/PKGBUILD
(from rev 124797, syncthing-gtk/trunk/PKGBUILD)
Deleted:
  syncthing-gtk/repos/community-any/PKGBUILD

--+
 PKGBUILD |   51 ++-
 1 file changed, 26 insertions(+), 25 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-12-28 22:59:43 UTC (rev 124797)
+++ PKGBUILD2014-12-28 22:59:51 UTC (rev 124798)
@@ -1,25 +0,0 @@
-# Maintainer : Martin Wimpress c...@flexion.org
-# Contributor: kozec kozec at kozec dot com
-
-pkgname=syncthing-gtk
-pkgver=0.5.2
-pkgrel=3
-pkgdesc=GTK3  Python based GUI and notification area icon for Syncthing
-arch=('any')
-url=https://github.com/syncthing/syncthing-gtk;
-license=('GPL2')
-makedepends=('python2-setuptools')
-depends=('gtk3' 'libnotify' 'python2-dateutil' 'python2-gobject' 
'python2-pyinotify'
- 'syncthing=0.10.9')
-source=(https://github.com/syncthing/${pkgname}/archive/v${pkgver}.tar.gz;)
-md5sums=('20e5750b775acedaf51ab130e4e47644')
-
-build() {
-cd ${srcdir}/${pkgname}-${pkgver}
-python2 setup.py build
-}
-
-package() {
-cd ${srcdir}/${pkgname}-${pkgver}
-python2 setup.py install --root=${pkgdir} --optimize=1
-}

Copied: syncthing-gtk/repos/community-any/PKGBUILD (from rev 124797, 
syncthing-gtk/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-12-28 22:59:51 UTC (rev 124798)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer : Martin Wimpress c...@flexion.org
+# Contributor: kozec kozec at kozec dot com
+
+pkgname=syncthing-gtk
+pkgver=0.5.5
+pkgrel=1
+pkgdesc='GTK3 based GUI and notification area icon for Syncthing'
+arch=('any')
+url='https://github.com/syncthing/syncthing-gtk'
+license=('GPL2')
+makedepends=('python2-setuptools')
+depends=('gtk3' 'libnotify' 'python2-dateutil' 'python2-gobject' 
'python2-pyinotify'
+ 'syncthing')
+source=(https://github.com/syncthing/$pkgname/archive/v$pkgver.tar.gz)
+md5sums=('176dadfbb51171719dd72fa1a68632aa')
+
+build() {
+  cd $pkgname-$pkgver
+  python2 setup.py build
+}
+
+package() {
+  cd $pkgname-$pkgver
+  python2 setup.py install --root=${pkgdir} --optimize=1
+}


[arch-commits] Commit in (5 files)

2014-12-28 Thread Jelle van der Waa
Date: Monday, December 29, 2014 @ 00:05:27
  Author: jelle
Revision: 124799

Add haskell-network-uri which is split from haskell-network

Added:
  haskell-network-uri/
  haskell-network-uri/repos/
  haskell-network-uri/trunk/
  haskell-network-uri/trunk/PKGBUILD
  haskell-network-uri/trunk/haskell-network-uri.install

-+
 PKGBUILD|   49 ++
 haskell-network-uri.install |   35 ++
 2 files changed, 84 insertions(+)

Added: haskell-network-uri/trunk/PKGBUILD
===
--- haskell-network-uri/trunk/PKGBUILD  (rev 0)
+++ haskell-network-uri/trunk/PKGBUILD  2014-12-28 23:05:27 UTC (rev 124799)
@@ -0,0 +1,49 @@
+# Maintainer: Jelle van der Waa je...@vdwaa.nl
+
+_hkgname=network-uri
+pkgname=haskell-network-uri
+pkgver=2.6.0.1
+pkgrel=1
+pkgdesc=A library for client-side HTTP
+url=http://hackage.haskell.org/package/${_hkgname};
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+options=('staticlibs')
+depends=('ghc=7.8.4-1' 'sh' 'haskell-parsec=3.1.7-2')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install=${pkgname}.install
+md5sums=('9f7eb108125b67719db88ea7961463ef')
+
+build() {
+ cd ${_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 ${_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
+}


Property changes on: haskell-network-uri/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: haskell-network-uri/trunk/haskell-network-uri.install
===
--- haskell-network-uri/trunk/haskell-network-uri.install   
(rev 0)
+++ haskell-network-uri/trunk/haskell-network-uri.install   2014-12-28 
23:05:27 UTC (rev 124799)
@@ -0,0 +1,35 @@
+pkgname=haskell-network-uri
+
+_register() {
+ usr/share/haskell/${pkgname}/register.sh
+}
+
+_unregister() {
+ usr/share/haskell/${pkgname}/unregister.sh
+}
+
+_gen_contents() {
+ (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+post_install() {
+ _register
+ _gen_contents
+}
+
+pre_upgrade() {
+ _unregister
+}
+
+post_upgrade() {
+ _register
+ _gen_contents
+}
+
+pre_remove() {
+ _unregister
+}
+
+post_remove() {
+ _gen_contents
+}


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

2014-12-28 Thread Jelle van der Waa
Date: Monday, December 29, 2014 @ 00:05:52
  Author: jelle
Revision: 124800

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

Added:
  haskell-network-uri/repos/community-staging-i686/
  haskell-network-uri/repos/community-staging-i686/PKGBUILD
(from rev 124799, haskell-network-uri/trunk/PKGBUILD)
  haskell-network-uri/repos/community-staging-i686/haskell-network-uri.install
(from rev 124799, haskell-network-uri/trunk/haskell-network-uri.install)
  haskell-network-uri/repos/community-staging-x86_64/
  haskell-network-uri/repos/community-staging-x86_64/PKGBUILD
(from rev 124799, haskell-network-uri/trunk/PKGBUILD)
  haskell-network-uri/repos/community-staging-x86_64/haskell-network-uri.install
(from rev 124799, haskell-network-uri/trunk/haskell-network-uri.install)

--+
 community-staging-i686/PKGBUILD  |   49 +
 community-staging-i686/haskell-network-uri.install   |   35 
 community-staging-x86_64/PKGBUILD|   49 +
 community-staging-x86_64/haskell-network-uri.install |   35 
 4 files changed, 168 insertions(+)

Copied: haskell-network-uri/repos/community-staging-i686/PKGBUILD (from rev 
124799, haskell-network-uri/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-12-28 23:05:52 UTC (rev 124800)
@@ -0,0 +1,49 @@
+# Maintainer: Jelle van der Waa je...@vdwaa.nl
+
+_hkgname=network-uri
+pkgname=haskell-network-uri
+pkgver=2.6.0.1
+pkgrel=1
+pkgdesc=A library for client-side HTTP
+url=http://hackage.haskell.org/package/${_hkgname};
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+options=('staticlibs')
+depends=('ghc=7.8.4-1' 'sh' 'haskell-parsec=3.1.7-2')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install=${pkgname}.install
+md5sums=('9f7eb108125b67719db88ea7961463ef')
+
+build() {
+ cd ${_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 ${_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-network-uri/repos/community-staging-i686/haskell-network-uri.install 
(from rev 124799, haskell-network-uri/trunk/haskell-network-uri.install)
===
--- community-staging-i686/haskell-network-uri.install  
(rev 0)
+++ community-staging-i686/haskell-network-uri.install  2014-12-28 23:05:52 UTC 
(rev 124800)
@@ -0,0 +1,35 @@
+pkgname=haskell-network-uri
+
+_register() {
+ usr/share/haskell/${pkgname}/register.sh
+}
+
+_unregister() {
+ usr/share/haskell/${pkgname}/unregister.sh
+}
+
+_gen_contents() {
+ (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+post_install() {
+ _register
+ _gen_contents
+}
+
+pre_upgrade() {
+ _unregister
+}
+
+post_upgrade() {
+ _register
+ _gen_contents
+}
+
+pre_remove() {
+ _unregister
+}
+
+post_remove() {
+ _gen_contents
+}

Copied: haskell-network-uri/repos/community-staging-x86_64/PKGBUILD (from rev 
124799, haskell-network-uri/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2014-12-28 23:05:52 UTC (rev 124800)
@@ -0,0 +1,49 @@
+# Maintainer: Jelle van der Waa je...@vdwaa.nl
+
+_hkgname=network-uri
+pkgname=haskell-network-uri
+pkgver=2.6.0.1
+pkgrel=1
+pkgdesc=A library for client-side HTTP
+url=http://hackage.haskell.org/package/${_hkgname};
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+options=('staticlibs')
+depends=('ghc=7.8.4-1' 'sh' 'haskell-parsec=3.1.7-2')
+source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install=${pkgname}.install
+md5sums=('9f7eb108125b67719db88ea7961463ef')
+
+build() {
+ cd ${_hkgname}-${pkgver}
+
+ runhaskell Setup configure -O -p \
+   --enable-split-objs \
+   --enable-shared \

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

2014-12-28 Thread Sergej Pupykin
Date: Monday, December 29, 2014 @ 00:13:14
  Author: spupykin
Revision: 124801

upgpkg: simgear 3.2.0-2

upd

Modified:
  simgear/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-28 23:05:52 UTC (rev 124800)
+++ PKGBUILD2014-12-28 23:13:14 UTC (rev 124801)
@@ -5,7 +5,7 @@
 
 pkgname=simgear
 pkgver=3.2.0
-pkgrel=1
+pkgrel=2
 pkgdesc=A set of open-source libraries designed to be used as building blocks 
for quickly assembling 3d simulations, games, and visualization applications.
 arch=(i686 x86_64)
 depends=('glu' 'glut' 'freealut' 'plib' 'openscenegraph')


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

2014-12-28 Thread Sergej Pupykin
Date: Monday, December 29, 2014 @ 00:13:36
  Author: spupykin
Revision: 124802

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-12-28 23:13:14 UTC (rev 124801)
+++ community-i686/PKGBUILD 2014-12-28 23:13:36 UTC (rev 124802)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: William Rea sillywi...@gmail.com
-# Contributor: Hans Janssen h...@janserv.xs4all.nl
-
-pkgname=simgear
-pkgver=3.2.0
-pkgrel=1
-pkgdesc=A set of open-source libraries designed to be used as building blocks 
for quickly assembling 3d simulations, games, and visualization applications.
-arch=(i686 x86_64)
-depends=('glu' 'glut' 'freealut' 'plib' 'openscenegraph')
-makedepends=('boost' 'cmake' 'mesa')
-license=(GPL)
-#url=http://www.simgear.org;
-url=https://gitorious.org/fg;
-options=('!makeflags' 'staticlibs')
-#source=(SimGear-$pkgver.tar.gz::https://gitorious.org/fg/simgear/archive-tarball/release/$pkgver;)
-source=(http://mirrors.ibiblio.org/pub/mirrors/simgear/ftp/Source/simgear-$pkgver.tar.bz2;)
-md5sums=('d6aac26bf8876391a7d5f4381fc98c01')
-
-build() {
-  cd $srcdir/simgear-$pkgver
-  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib .
-  make
-}
-
-package() {
-  cd $srcdir/simgear-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: simgear/repos/community-i686/PKGBUILD (from rev 124801, 
simgear/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-12-28 23:13:36 UTC (rev 124802)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: William Rea sillywi...@gmail.com
+# Contributor: Hans Janssen h...@janserv.xs4all.nl
+
+pkgname=simgear
+pkgver=3.2.0
+pkgrel=2
+pkgdesc=A set of open-source libraries designed to be used as building blocks 
for quickly assembling 3d simulations, games, and visualization applications.
+arch=(i686 x86_64)
+depends=('glu' 'glut' 'freealut' 'plib' 'openscenegraph')
+makedepends=('boost' 'cmake' 'mesa')
+license=(GPL)
+#url=http://www.simgear.org;
+url=https://gitorious.org/fg;
+options=('!makeflags' 'staticlibs')
+#source=(SimGear-$pkgver.tar.gz::https://gitorious.org/fg/simgear/archive-tarball/release/$pkgver;)
+source=(http://mirrors.ibiblio.org/pub/mirrors/simgear/ftp/Source/simgear-$pkgver.tar.bz2;)
+md5sums=('d6aac26bf8876391a7d5f4381fc98c01')
+
+build() {
+  cd $srcdir/simgear-$pkgver
+  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib .
+  make
+}
+
+package() {
+  cd $srcdir/simgear-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-12-28 23:13:14 UTC (rev 124801)
+++ community-x86_64/PKGBUILD   2014-12-28 23:13:36 UTC (rev 124802)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: William Rea sillywi...@gmail.com
-# Contributor: Hans Janssen h...@janserv.xs4all.nl
-
-pkgname=simgear
-pkgver=3.2.0
-pkgrel=1
-pkgdesc=A set of open-source libraries designed to be used as building blocks 
for quickly assembling 3d simulations, games, and visualization applications.
-arch=(i686 x86_64)
-depends=('glu' 'glut' 'freealut' 'plib' 'openscenegraph')
-makedepends=('boost' 'cmake' 'mesa')
-license=(GPL)
-#url=http://www.simgear.org;
-url=https://gitorious.org/fg;
-options=('!makeflags' 'staticlibs')
-#source=(SimGear-$pkgver.tar.gz::https://gitorious.org/fg/simgear/archive-tarball/release/$pkgver;)
-source=(http://mirrors.ibiblio.org/pub/mirrors/simgear/ftp/Source/simgear-$pkgver.tar.bz2;)
-md5sums=('d6aac26bf8876391a7d5f4381fc98c01')
-
-build() {
-  cd $srcdir/simgear-$pkgver
-  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib .
-  make
-}
-
-package() {
-  cd $srcdir/simgear-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: simgear/repos/community-x86_64/PKGBUILD (from rev 124801, 
simgear/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-12-28 23:13:36 UTC (rev 124802)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# 

[arch-commits] Commit in linux-grsec/trunk (PKGBUILD config config.x86_64)

2014-12-28 Thread Daniel Micay
Date: Monday, December 29, 2014 @ 01:36:36
  Author: thestinger
Revision: 124803

3.18.1 - not pushing to the repos yet

There is currently a strange seccomp issue that needs to be debugged.

Modified:
  linux-grsec/trunk/PKGBUILD
  linux-grsec/trunk/config
  linux-grsec/trunk/config.x86_64

---+
 PKGBUILD  |   16 ++---
 config|  169 ++--
 config.x86_64 |  155 ++-
 3 files changed, 254 insertions(+), 86 deletions(-)

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


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

2014-12-28 Thread Felix Yan
Date: Monday, December 29, 2014 @ 04:52:59
  Author: fyan
Revision: 124804

upgpkg: python-bottle 0.12.8-1

upstream new release

Modified:
  python-bottle/trunk/PKGBUILD

--+
 PKGBUILD |   21 ++---
 1 file changed, 10 insertions(+), 11 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-12-29 00:36:36 UTC (rev 124803)
+++ PKGBUILD2014-12-29 03:52:59 UTC (rev 124804)
@@ -6,8 +6,8 @@
 
 pkgbase=python-bottle
 pkgname=(python-bottle python2-bottle)
-pkgver=0.12.7
-pkgrel=2
+pkgver=0.12.8
+pkgrel=1
 pkgdesc=A fast and simple micro-framework for small web-applications
 arch=(any)
 url=http://bottlepy.org;
@@ -19,17 +19,18 @@
   'python2-twisted' 'python-tornado' 'python2-tornado'
   'python2-paste' 'python2-gevent')
 source=(git+https://github.com/defnull/bottle.git#tag=${pkgver};)
+sha512sums=('SKIP')
 
 prepare() {
-  cp -r bottle python2-bottle
-  sed -i 1s/python/python2/ python2-bottle/bottle.py
+  cp -a bottle{,-py2}
+  sed -i 1s/python/python2/ bottle-py2/bottle.py
 }
 
 check() {
-  cd bottle
+  cd $srcdir/bottle
   python test/testall.py
 
-  cd ../python2-bottle
+  cd $srcdir/bottle-py2
   python2 test/testall.py
 }
 
@@ -38,18 +39,16 @@
 
   cd bottle
   python3 setup.py install --root=${pkgdir} --optimize=1
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/python-bottle/LICENSE
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
 }
 
 package_python2-bottle() {
   depends=('python2')
 
-  cd python2-bottle
+  cd bottle-py2
   python2 setup.py install --root=${pkgdir} --optimize=1
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/python2-bottle/LICENSE
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
 
   # deal with conflict with python-bottle's /usr/bin/bottle.py
   mv $pkgdir/usr/bin/bottle.py{,2}
 }
-
-sha512sums=('SKIP')


[arch-commits] Commit in python-bottle/repos/community-any (PKGBUILD PKGBUILD)

2014-12-28 Thread Felix Yan
Date: Monday, December 29, 2014 @ 04:53:37
  Author: fyan
Revision: 124805

archrelease: copy trunk to community-any

Added:
  python-bottle/repos/community-any/PKGBUILD
(from rev 124804, python-bottle/trunk/PKGBUILD)
Deleted:
  python-bottle/repos/community-any/PKGBUILD

--+
 PKGBUILD |  109 ++---
 1 file changed, 54 insertions(+), 55 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-12-29 03:52:59 UTC (rev 124804)
+++ PKGBUILD2014-12-29 03:53:37 UTC (rev 124805)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
-# Contributor: Richard Murri ad...@richardmurri.com
-# Contributor: Farhad Shahbazi far...@enthusiasm.cc
-# Contributor: Felix Kaiser felix.kai...@fxkr.net
-
-pkgbase=python-bottle
-pkgname=(python-bottle python2-bottle)
-pkgver=0.12.7
-pkgrel=2
-pkgdesc=A fast and simple micro-framework for small web-applications
-arch=(any)
-url=http://bottlepy.org;
-license=('MIT')
-options=(!emptydirs)
-makedepends=('python-setuptools' 'python2-setuptools' 'git')
-checkdepends=('python-mako' 'python2-mako' 'python-jinja' 'python2-jinja'
-  'python-cherrypy' 'python2-cherrypy' 'python-twisted'
-  'python2-twisted' 'python-tornado' 'python2-tornado'
-  'python2-paste' 'python2-gevent')
-source=(git+https://github.com/defnull/bottle.git#tag=${pkgver};)
-
-prepare() {
-  cp -r bottle python2-bottle
-  sed -i 1s/python/python2/ python2-bottle/bottle.py
-}
-
-check() {
-  cd bottle
-  python test/testall.py
-
-  cd ../python2-bottle
-  python2 test/testall.py
-}
-
-package_python-bottle() {
-  depends=('python3')
-
-  cd bottle
-  python3 setup.py install --root=${pkgdir} --optimize=1
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/python-bottle/LICENSE
-}
-
-package_python2-bottle() {
-  depends=('python2')
-
-  cd python2-bottle
-  python2 setup.py install --root=${pkgdir} --optimize=1
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/python2-bottle/LICENSE
-
-  # deal with conflict with python-bottle's /usr/bin/bottle.py
-  mv $pkgdir/usr/bin/bottle.py{,2}
-}
-
-sha512sums=('SKIP')

Copied: python-bottle/repos/community-any/PKGBUILD (from rev 124804, 
python-bottle/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-12-29 03:53:37 UTC (rev 124805)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Richard Murri ad...@richardmurri.com
+# Contributor: Farhad Shahbazi far...@enthusiasm.cc
+# Contributor: Felix Kaiser felix.kai...@fxkr.net
+
+pkgbase=python-bottle
+pkgname=(python-bottle python2-bottle)
+pkgver=0.12.8
+pkgrel=1
+pkgdesc=A fast and simple micro-framework for small web-applications
+arch=(any)
+url=http://bottlepy.org;
+license=('MIT')
+options=(!emptydirs)
+makedepends=('python-setuptools' 'python2-setuptools' 'git')
+checkdepends=('python-mako' 'python2-mako' 'python-jinja' 'python2-jinja'
+  'python-cherrypy' 'python2-cherrypy' 'python-twisted'
+  'python2-twisted' 'python-tornado' 'python2-tornado'
+  'python2-paste' 'python2-gevent')
+source=(git+https://github.com/defnull/bottle.git#tag=${pkgver};)
+sha512sums=('SKIP')
+
+prepare() {
+  cp -a bottle{,-py2}
+  sed -i 1s/python/python2/ bottle-py2/bottle.py
+}
+
+check() {
+  cd $srcdir/bottle
+  python test/testall.py
+
+  cd $srcdir/bottle-py2
+  python2 test/testall.py
+}
+
+package_python-bottle() {
+  depends=('python3')
+
+  cd bottle
+  python3 setup.py install --root=${pkgdir} --optimize=1
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-bottle() {
+  depends=('python2')
+
+  cd bottle-py2
+  python2 setup.py install --root=${pkgdir} --optimize=1
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+
+  # deal with conflict with python-bottle's /usr/bin/bottle.py
+  mv $pkgdir/usr/bin/bottle.py{,2}
+}


[arch-commits] Commit in python-cryptography-vectors/trunk (PKGBUILD)

2014-12-28 Thread Felix Yan
Date: Monday, December 29, 2014 @ 05:01:10
  Author: fyan
Revision: 124806

upgpkg: python-cryptography-vectors 0.7.1-1

upstream new release

Modified:
  python-cryptography-vectors/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-29 03:53:37 UTC (rev 124805)
+++ PKGBUILD2014-12-29 04:01:10 UTC (rev 124806)
@@ -3,7 +3,7 @@
 
 pkgbase=python-cryptography-vectors
 pkgname=('python-cryptography-vectors' 'python2-cryptography-vectors')
-pkgver=0.7
+pkgver=0.7.1
 pkgrel=1
 pkgdesc=Test vectors for the cryptography package
 arch=('any')
@@ -11,22 +11,22 @@
 url=http://pypi.python.org/pypi/cryptography-vectors;
 makedepends=('python-setuptools' 'python2-setuptools')
 
source=(http://pypi.python.org/packages/source/c/cryptography-vectors/cryptography_vectors-${pkgver}.tar.gz;)
-md5sums=('0500694812aa04d0d88adf9a50f1b4d2')
+md5sums=('f4fde944ed3f9f4fc06dc2c5d2bae883')
 
 prepare() {
-   cp -a cryptography_vectors-${pkgver}{,-python2}
+   cp -a cryptography_vectors-$pkgver{,-python2}
 }
 
 package_python-cryptography-vectors() {
depends=('python')
  
-   cd cryptography_vectors-${pkgver}
-   python3 setup.py install --root=${pkgdir} --optimize=1
+   cd cryptography_vectors-$pkgver
+   python3 setup.py install --root=$pkgdir --optimize=1
 }
  
 package_python2-cryptography-vectors() {
depends=('python2')
  
-   cd cryptography_vectors-${pkgver}-python2
-   python2 setup.py install --root=${pkgdir} --optimize=1
+   cd cryptography_vectors-$pkgver-python2
+   python2 setup.py install --root=$pkgdir --optimize=1
 }


[arch-commits] Commit in python-cryptography-vectors/repos/community-any (2 files)

2014-12-28 Thread Felix Yan
Date: Monday, December 29, 2014 @ 05:01:34
  Author: fyan
Revision: 124807

archrelease: copy trunk to community-any

Added:
  python-cryptography-vectors/repos/community-any/PKGBUILD
(from rev 124806, python-cryptography-vectors/trunk/PKGBUILD)
Deleted:
  python-cryptography-vectors/repos/community-any/PKGBUILD

--+
 PKGBUILD |   64 ++---
 1 file changed, 32 insertions(+), 32 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-12-29 04:01:10 UTC (rev 124806)
+++ PKGBUILD2014-12-29 04:01:34 UTC (rev 124807)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-
-pkgbase=python-cryptography-vectors
-pkgname=('python-cryptography-vectors' 'python2-cryptography-vectors')
-pkgver=0.7
-pkgrel=1
-pkgdesc=Test vectors for the cryptography package
-arch=('any')
-license=('Apache')
-url=http://pypi.python.org/pypi/cryptography-vectors;
-makedepends=('python-setuptools' 'python2-setuptools')
-source=(http://pypi.python.org/packages/source/c/cryptography-vectors/cryptography_vectors-${pkgver}.tar.gz;)
-md5sums=('0500694812aa04d0d88adf9a50f1b4d2')
-
-prepare() {
-   cp -a cryptography_vectors-${pkgver}{,-python2}
-}
-
-package_python-cryptography-vectors() {
-   depends=('python')
- 
-   cd cryptography_vectors-${pkgver}
-   python3 setup.py install --root=${pkgdir} --optimize=1
-}
- 
-package_python2-cryptography-vectors() {
-   depends=('python2')
- 
-   cd cryptography_vectors-${pkgver}-python2
-   python2 setup.py install --root=${pkgdir} --optimize=1
-}

Copied: python-cryptography-vectors/repos/community-any/PKGBUILD (from rev 
124806, python-cryptography-vectors/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-12-29 04:01:34 UTC (rev 124807)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+
+pkgbase=python-cryptography-vectors
+pkgname=('python-cryptography-vectors' 'python2-cryptography-vectors')
+pkgver=0.7.1
+pkgrel=1
+pkgdesc=Test vectors for the cryptography package
+arch=('any')
+license=('Apache')
+url=http://pypi.python.org/pypi/cryptography-vectors;
+makedepends=('python-setuptools' 'python2-setuptools')
+source=(http://pypi.python.org/packages/source/c/cryptography-vectors/cryptography_vectors-${pkgver}.tar.gz;)
+md5sums=('f4fde944ed3f9f4fc06dc2c5d2bae883')
+
+prepare() {
+   cp -a cryptography_vectors-$pkgver{,-python2}
+}
+
+package_python-cryptography-vectors() {
+   depends=('python')
+ 
+   cd cryptography_vectors-$pkgver
+   python3 setup.py install --root=$pkgdir --optimize=1
+}
+ 
+package_python2-cryptography-vectors() {
+   depends=('python2')
+ 
+   cd cryptography_vectors-$pkgver-python2
+   python2 setup.py install --root=$pkgdir --optimize=1
+}


[arch-commits] Commit in python2-netlib/repos/community-any (PKGBUILD PKGBUILD)

2014-12-28 Thread Felix Yan
Date: Monday, December 29, 2014 @ 05:02:19
  Author: fyan
Revision: 124809

archrelease: copy trunk to community-any

Added:
  python2-netlib/repos/community-any/PKGBUILD
(from rev 124808, python2-netlib/trunk/PKGBUILD)
Deleted:
  python2-netlib/repos/community-any/PKGBUILD

--+
 PKGBUILD |   64 ++---
 1 file changed, 32 insertions(+), 32 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-12-29 04:01:48 UTC (rev 124808)
+++ PKGBUILD2014-12-29 04:02:19 UTC (rev 124809)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Nicolas Pouillard https://nicolaspouillard.fr
-
-pkgname=python2-netlib
-pkgver=0.11.1
-pkgrel=2
-pkgdesc=A collection of network utilities used by pathod and mitmproxy
-url=https://github.com/mitmproxy/netlib;
-license=('MIT')
-arch=('any')
-depends=(python2-passlib 'python2-pyasn1' 'python2-pyopenssl')
-checkdepends=('python2-nose' 'python2-mock' 'pathod')
-source=(http://pypi.python.org/packages/source/n/netlib/netlib-$pkgver.tar.gz;)
-sha256sums=('5d752d93863cbccd8bb8d7990b62903e803490fa2de12c4fb79e028e20a7d309')
-
-build() {
-  cd $srcdir/netlib-$pkgver
-  python2 setup.py build
-}
-
-check() {
-  cd $srcdir/netlib-$pkgver
-  nosetests2
-}
-
-package() {
-  cd $srcdir/netlib-$pkgver
-  python2 setup.py install -O1 --skip-build --root=$pkgdir
-
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python2-netlib/repos/community-any/PKGBUILD (from rev 124808, 
python2-netlib/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-12-29 04:02:19 UTC (rev 124809)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Nicolas Pouillard https://nicolaspouillard.fr
+
+pkgname=python2-netlib
+pkgver=0.11.2
+pkgrel=1
+pkgdesc=A collection of network utilities used by pathod and mitmproxy
+url=https://github.com/mitmproxy/netlib;
+license=('MIT')
+arch=('any')
+depends=(python2-passlib 'python2-pyasn1' 'python2-pyopenssl')
+checkdepends=('python2-nose' 'python2-mock' 'pathod')
+source=(http://pypi.python.org/packages/source/n/netlib/netlib-$pkgver.tar.gz;)
+sha256sums=('66dac408eccb528b284e6a6fa5bc52aa40d1c2a53d74179d3cb2253b3120851e')
+
+build() {
+  cd $srcdir/netlib-$pkgver
+  python2 setup.py build
+}
+
+check() {
+  cd $srcdir/netlib-$pkgver
+  nosetests2
+}
+
+package() {
+  cd $srcdir/netlib-$pkgver
+  python2 setup.py install -O1 --skip-build --root=$pkgdir
+
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}


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

2014-12-28 Thread Felix Yan
Date: Monday, December 29, 2014 @ 05:01:48
  Author: fyan
Revision: 124808

upgpkg: python2-netlib 0.11.2-1

upstream new release

Modified:
  python2-netlib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-29 04:01:34 UTC (rev 124807)
+++ PKGBUILD2014-12-29 04:01:48 UTC (rev 124808)
@@ -3,8 +3,8 @@
 # Contributor: Nicolas Pouillard https://nicolaspouillard.fr
 
 pkgname=python2-netlib
-pkgver=0.11.1
-pkgrel=2
+pkgver=0.11.2
+pkgrel=1
 pkgdesc=A collection of network utilities used by pathod and mitmproxy
 url=https://github.com/mitmproxy/netlib;
 license=('MIT')
@@ -12,7 +12,7 @@
 depends=(python2-passlib 'python2-pyasn1' 'python2-pyopenssl')
 checkdepends=('python2-nose' 'python2-mock' 'pathod')
 
source=(http://pypi.python.org/packages/source/n/netlib/netlib-$pkgver.tar.gz;)
-sha256sums=('5d752d93863cbccd8bb8d7990b62903e803490fa2de12c4fb79e028e20a7d309')
+sha256sums=('66dac408eccb528b284e6a6fa5bc52aa40d1c2a53d74179d3cb2253b3120851e')
 
 build() {
   cd $srcdir/netlib-$pkgver


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

2014-12-28 Thread Felix Yan
Date: Monday, December 29, 2014 @ 05:18:34
  Author: fyan
Revision: 228124

upgpkg: python-cryptography 0.7.1-1

upstream new release

Modified:
  python-cryptography/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-29 03:49:56 UTC (rev 228123)
+++ PKGBUILD2014-12-29 04:18:34 UTC (rev 228124)
@@ -3,7 +3,7 @@
 
 pkgbase=python-cryptography
 pkgname=('python-cryptography' 'python2-cryptography')
-pkgver=0.7
+pkgver=0.7.1
 pkgrel=1
 pkgdesc=A package designed to expose cryptographic recipes and primitives to 
Python developers
 arch=('i686' 'x86_64')
@@ -10,10 +10,10 @@
 license=('Apache')
 url=http://pypi.python.org/pypi/cryptography;
 makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 
'python2-six' 'python-cffi' 'python2-cffi' 'python2-enum34')
-checkdepends=('python-pytest' 'python2-pytest' 'python-cryptography-vectors' 
'python2-cryptography-vectors'
+checkdepends=('python-pytest' 'python2-pytest' 'python-cryptography-vectors' 
python2-cryptography-vectors=$pkgver
   'python-iso8601' 'python2-iso8601' 'python-pretend' 
'python2-pretend' 'python-pyasn1' 'python2-pyasn1')
 
source=(http://pypi.python.org/packages/source/c/cryptography/cryptography-${pkgver}.tar.gz;)
-md5sums=('bfd1094de5dbbb40f99aae5c4a5657e4')
+md5sums=('4a933b1e01b604cee0e22ce1f9fe7c81')
 
 prepare() {
cp -a cryptography-${pkgver}{,-python2}


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

2014-12-28 Thread Felix Yan
Date: Monday, December 29, 2014 @ 05:19:12
  Author: fyan
Revision: 228125

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

Added:
  python-cryptography/repos/extra-i686/PKGBUILD
(from rev 228124, python-cryptography/trunk/PKGBUILD)
  python-cryptography/repos/extra-x86_64/PKGBUILD
(from rev 228124, python-cryptography/trunk/PKGBUILD)
Deleted:
  python-cryptography/repos/extra-i686/PKGBUILD
  python-cryptography/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-12-29 04:18:34 UTC (rev 228124)
+++ extra-i686/PKGBUILD 2014-12-29 04:19:12 UTC (rev 228125)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-
-pkgbase=python-cryptography
-pkgname=('python-cryptography' 'python2-cryptography')
-pkgver=0.7
-pkgrel=1
-pkgdesc=A package designed to expose cryptographic recipes and primitives to 
Python developers
-arch=('i686' 'x86_64')
-license=('Apache')
-url=http://pypi.python.org/pypi/cryptography;
-makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 
'python2-six' 'python-cffi' 'python2-cffi' 'python2-enum34')
-checkdepends=('python-pytest' 'python2-pytest' 'python-cryptography-vectors' 
'python2-cryptography-vectors'
-  'python-iso8601' 'python2-iso8601' 'python-pretend' 
'python2-pretend' 'python-pyasn1' 'python2-pyasn1')
-source=(http://pypi.python.org/packages/source/c/cryptography/cryptography-${pkgver}.tar.gz;)
-md5sums=('bfd1094de5dbbb40f99aae5c4a5657e4')
-
-prepare() {
-   cp -a cryptography-${pkgver}{,-python2}
-
-   # Don't depend on enum34 since we already have python 3.4
-   sed -i 's/enum34,//' cryptography-${pkgver}/setup.py
-}
-
-build() {
-   # Build python 3 module
-   cd cryptography-${pkgver}
-   python3 setup.py build
- 
-   # Build python 2 module
-   cd ../cryptography-${pkgver}-python2
-   python2 setup.py build
-}
-
-check() {
-   # Check python3 module
-   cd ${srcdir}/cryptography-${pkgver}
-   PYTHONPATH=$(pwd)/build/lib.linux-$CARCH-3.4:$PYTHONPATH python3 setup.py 
test
-
-   # Check python2 module
-   cd ${srcdir}/cryptography-${pkgver}-python2
-   PYTHONPATH=$(pwd)/build/lib.linux-$CARCH-2.7:$PYTHONPATH python2 setup.py 
test
-}
- 
-package_python-cryptography() {
-   depends=('python' 'python-six' 'python-cffi')
- 
-   cd cryptography-${pkgver}
-   python3 setup.py install --root=${pkgdir} --optimize=1 --skip-build
-}
- 
-package_python2-cryptography() {
-   depends=('python2' 'python2-six' 'python2-cffi' 'python2-enum34')
- 
-   cd cryptography-${pkgver}-python2
-   python2 setup.py install --root=${pkgdir} --optimize=1 --skip-build
-}

Copied: python-cryptography/repos/extra-i686/PKGBUILD (from rev 228124, 
python-cryptography/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-12-29 04:19:12 UTC (rev 228125)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+
+pkgbase=python-cryptography
+pkgname=('python-cryptography' 'python2-cryptography')
+pkgver=0.7.1
+pkgrel=1
+pkgdesc=A package designed to expose cryptographic recipes and primitives to 
Python developers
+arch=('i686' 'x86_64')
+license=('Apache')
+url=http://pypi.python.org/pypi/cryptography;
+makedepends=('python-setuptools' 'python2-setuptools' 'python-six' 
'python2-six' 'python-cffi' 'python2-cffi' 'python2-enum34')
+checkdepends=('python-pytest' 'python2-pytest' 'python-cryptography-vectors' 
python2-cryptography-vectors=$pkgver
+  'python-iso8601' 'python2-iso8601' 'python-pretend' 
'python2-pretend' 'python-pyasn1' 'python2-pyasn1')
+source=(http://pypi.python.org/packages/source/c/cryptography/cryptography-${pkgver}.tar.gz;)
+md5sums=('4a933b1e01b604cee0e22ce1f9fe7c81')
+
+prepare() {
+   cp -a cryptography-${pkgver}{,-python2}
+
+   # Don't depend on enum34 since we already have python 3.4
+   sed -i 's/enum34,//' cryptography-${pkgver}/setup.py
+}
+
+build() {
+   # Build python 3 module
+   cd cryptography-${pkgver}
+   python3 setup.py build
+ 
+   # Build python 2 module
+   cd ../cryptography-${pkgver}-python2
+   python2 setup.py build
+}
+
+check() {
+   # Check python3 module
+   cd ${srcdir}/cryptography-${pkgver}
+   PYTHONPATH=$(pwd)/build/lib.linux-$CARCH-3.4:$PYTHONPATH python3 setup.py 
test
+
+   # Check python2 module
+   cd ${srcdir}/cryptography-${pkgver}-python2
+   PYTHONPATH=$(pwd)/build/lib.linux-$CARCH-2.7:$PYTHONPATH python2 setup.py 
test
+}
+ 
+package_python-cryptography() {
+   depends=('python' 'python-six' 'python-cffi')
+ 
+   cd cryptography-${pkgver}
+   python3 setup.py install