[arch-commits] Commit in lib32-freetype2/repos/multilib-x86_64 (11 files)

2015-01-01 Thread Jan Steffens
Date: Friday, January 2, 2015 @ 02:57:20
  Author: heftig
Revision: 125150

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-freetype2/repos/multilib-x86_64/PKGBUILD
(from rev 125149, lib32-freetype2/trunk/PKGBUILD)
  lib32-freetype2/repos/multilib-x86_64/env_FT2_SUBPIXEL_HINTING.diff
(from rev 125149, lib32-freetype2/trunk/env_FT2_SUBPIXEL_HINTING.diff)
  lib32-freetype2/repos/multilib-x86_64/freetype-2.2.1-enable-valid.patch
(from rev 125149, lib32-freetype2/trunk/freetype-2.2.1-enable-valid.patch)
  lib32-freetype2/repos/multilib-x86_64/freetype-2.5.1-enable-sph.patch
(from rev 125149, lib32-freetype2/trunk/freetype-2.5.1-enable-sph.patch)
  lib32-freetype2/repos/multilib-x86_64/freetype-2.5.1-enable-spr.patch
(from rev 125149, lib32-freetype2/trunk/freetype-2.5.1-enable-spr.patch)
Deleted:
  lib32-freetype2/repos/multilib-x86_64/0001-pcf-Fix-Savannah-bug-43774.patch
  lib32-freetype2/repos/multilib-x86_64/PKGBUILD
  lib32-freetype2/repos/multilib-x86_64/env_FT2_SUBPIXEL_HINTING.diff
  lib32-freetype2/repos/multilib-x86_64/freetype-2.2.1-enable-valid.patch
  lib32-freetype2/repos/multilib-x86_64/freetype-2.5.1-enable-sph.patch
  lib32-freetype2/repos/multilib-x86_64/freetype-2.5.1-enable-spr.patch

---+
 0001-pcf-Fix-Savannah-bug-43774.patch |  125 ---
 PKGBUILD  |  129 +++-
 env_FT2_SUBPIXEL_HINTING.diff |   36 
 freetype-2.2.1-enable-valid.patch |   40 -
 freetype-2.5.1-enable-sph.patch   |   26 +++---
 freetype-2.5.1-enable-spr.patch   |   26 +++---
 6 files changed, 126 insertions(+), 256 deletions(-)

Deleted: 0001-pcf-Fix-Savannah-bug-43774.patch
===
--- 0001-pcf-Fix-Savannah-bug-43774.patch   2015-01-02 01:56:36 UTC (rev 
125149)
+++ 0001-pcf-Fix-Savannah-bug-43774.patch   2015-01-02 01:57:20 UTC (rev 
125150)
@@ -1,125 +0,0 @@
-From 74af85c4b62b35e55b0ce9dec55ee10cbc4962a2 Mon Sep 17 00:00:00 2001
-From: Werner Lemberg w...@gnu.org
-Date: Mon, 8 Dec 2014 16:01:50 +0100
-Subject: [PATCH] [pcf] Fix Savannah bug #43774.
-
-Work around `features' of X11's `pcfWriteFont' and `pcfReadFont'
-functions.  Since the PCF format doesn't have an official
-specification, we have to exactly follow these functions' behaviour.
-
-The problem was unveiled with a patch from 2014-11-06, fixing issue #43547.
-
-* src/pcf/pcfread.c (pcf_read_TOC): Don't check table size for last
-element.  Instead, assign real size.

- ChangeLog | 14 ++
- src/pcf/pcfread.c | 54 +++---
- 2 files changed, 57 insertions(+), 11 deletions(-)
-
-diff --git a/src/pcf/pcfread.c b/src/pcf/pcfread.c
-index 998cbed..e3caf82 100644
 a/src/pcf/pcfread.c
-+++ b/src/pcf/pcfread.c
-@@ -2,7 +2,7 @@
- 
- FreeType font driver for pcf fonts
- 
--  Copyright 2000-2010, 2012, 2013 by
-+  Copyright 2000-2010, 2012-2014 by
-   Francesco Zappa Nardelli
- 
- Permission is hereby granted, free of charge, to any person obtaining a copy
-@@ -78,7 +78,7 @@ THE SOFTWARE.
- FT_FRAME_START( 16  ),
-   FT_FRAME_ULONG_LE( type ),
-   FT_FRAME_ULONG_LE( format ),
--  FT_FRAME_ULONG_LE( size ),
-+  FT_FRAME_ULONG_LE( size ),   /* rounded up to a multiple of 4 */
-   FT_FRAME_ULONG_LE( offset ),
- FT_FRAME_END
-   };
-@@ -95,9 +95,11 @@ THE SOFTWARE.
- FT_Memory  memory = FT_FACE( face )-memory;
- FT_UIntn;
- 
-+FT_ULong   size;
- 
--if ( FT_STREAM_SEEK ( 0 )  ||
-- FT_STREAM_READ_FIELDS ( pcf_toc_header, toc ) )
-+
-+if ( FT_STREAM_SEEK( 0 )  ||
-+ FT_STREAM_READ_FIELDS( pcf_toc_header, toc ) )
-   return FT_THROW( Cannot_Open_Resource );
- 
- if ( toc-version != PCF_FILE_VERSION ||
-@@ -154,14 +156,35 @@ THE SOFTWARE.
- break;
- }
- 
--/* we now check whether the `size' and `offset' values are reasonable: */
--/* `offset' + `size' must not exceed the stream size   */
-+/*
-+ *  We now check whether the `size' and `offset' values are reasonable:
-+ *  `offset' + `size' must not exceed the stream size.
-+ *
-+ *  Note, however, that X11's `pcfWriteFont' routine (used by the
-+ *  `bdftopcf' program to create PDF font files) has two special
-+ *  features.
-+ *
-+ *  - It always assigns the accelerator table a size of 100 bytes in the
-+ *TOC, regardless of its real size, which can vary between 34 and 72
-+ *bytes.
-+ *
-+ *  - Due to the way the routine is designed, it ships out the last font
-+ *table with its real size, ignoring the TOC's size value.  Since
-+ *the TOC size values are always rounded up to a multiple of 4, the
-+ *difference can be up to three bytes for all 

[arch-commits] Commit in kodi-pvr-addons/repos (4 files)

2015-01-01 Thread Ike Devolder
Date: Thursday, January 1, 2015 @ 09:48:55
  Author: idevolder
Revision: 125113

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

Added:
  kodi-pvr-addons/repos/community-testing-i686/
  kodi-pvr-addons/repos/community-testing-i686/PKGBUILD
(from rev 125112, kodi-pvr-addons/trunk/PKGBUILD)
  kodi-pvr-addons/repos/community-testing-x86_64/
  kodi-pvr-addons/repos/community-testing-x86_64/PKGBUILD
(from rev 125112, kodi-pvr-addons/trunk/PKGBUILD)

---+
 community-testing-i686/PKGBUILD   |   32 
 community-testing-x86_64/PKGBUILD |   32 
 2 files changed, 64 insertions(+)

Copied: kodi-pvr-addons/repos/community-testing-i686/PKGBUILD (from rev 125112, 
kodi-pvr-addons/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2015-01-01 08:48:55 UTC (rev 125113)
@@ -0,0 +1,32 @@
+# $Id
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: BlackEagle ike.devol...@gmail.com
+
+pkgname=kodi-pvr-addons
+pkgver=20141212
+_relname='Helix_rc3'
+pkgrel=1
+pkgdesc=PVR add-ons for current stable kodi
+arch=('i686' 'x86_64')
+url=https://github.com/opdenkamp/xbmc-pvr-addons;
+license=('GPL3')
+depends=('kodi')
+makedepends=('git' 'libmysqlclient' 'boost')
+optdepends=('tvheadend-git: tvheadend backend' 'mythtv: mythtv backend')
+replaces=('xbmc-pvr-addons')
+conflicts=('xbmc-pvr-addons' 'xbmc-pvr-addons-git')
+source=($pkgname-$pkgver.tar.gz::https://github.com/opdenkamp/xbmc-pvr-addons/archive/${_relname}.tar.gz;)
+
+build() {
+  cd $srcdir/xbmc-pvr-addons-${_relname}
+  ./bootstrap
+  ./configure --prefix=/usr --enable-addons-with-dependencies
+  make
+}
+
+package() {
+  cd $srcdir/xbmc-pvr-addons-${_relname}
+  make DESTDIR=$pkgdir/ install
+}
+
+sha256sums=('e48de53c58245e512095d515d463f013e51e165fc617f1cb93e443cdd9f5096b')

Copied: kodi-pvr-addons/repos/community-testing-x86_64/PKGBUILD (from rev 
125112, kodi-pvr-addons/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2015-01-01 08:48:55 UTC (rev 125113)
@@ -0,0 +1,32 @@
+# $Id
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: BlackEagle ike.devol...@gmail.com
+
+pkgname=kodi-pvr-addons
+pkgver=20141212
+_relname='Helix_rc3'
+pkgrel=1
+pkgdesc=PVR add-ons for current stable kodi
+arch=('i686' 'x86_64')
+url=https://github.com/opdenkamp/xbmc-pvr-addons;
+license=('GPL3')
+depends=('kodi')
+makedepends=('git' 'libmysqlclient' 'boost')
+optdepends=('tvheadend-git: tvheadend backend' 'mythtv: mythtv backend')
+replaces=('xbmc-pvr-addons')
+conflicts=('xbmc-pvr-addons' 'xbmc-pvr-addons-git')
+source=($pkgname-$pkgver.tar.gz::https://github.com/opdenkamp/xbmc-pvr-addons/archive/${_relname}.tar.gz;)
+
+build() {
+  cd $srcdir/xbmc-pvr-addons-${_relname}
+  ./bootstrap
+  ./configure --prefix=/usr --enable-addons-with-dependencies
+  make
+}
+
+package() {
+  cd $srcdir/xbmc-pvr-addons-${_relname}
+  make DESTDIR=$pkgdir/ install
+}
+
+sha256sums=('e48de53c58245e512095d515d463f013e51e165fc617f1cb93e443cdd9f5096b')


[arch-commits] Commit in (4 files)

2015-01-01 Thread Ike Devolder
Date: Thursday, January 1, 2015 @ 09:40:23
  Author: idevolder
Revision: 125106

add kodi-pvr-addons

Added:
  kodi-pvr-addons/
  kodi-pvr-addons/repos/
  kodi-pvr-addons/trunk/
  kodi-pvr-addons/trunk/PKGBUILD

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

Added: kodi-pvr-addons/trunk/PKGBUILD
===
--- kodi-pvr-addons/trunk/PKGBUILD  (rev 0)
+++ kodi-pvr-addons/trunk/PKGBUILD  2015-01-01 08:40:23 UTC (rev 125106)
@@ -0,0 +1,32 @@
+# $Id
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: BlackEagle ike.devol...@gmail.com
+
+pkgname=kodi-pvr-addons
+pkgver=20141212
+_relname='Helix_rc3'
+pkgrel=1
+pkgdesc=PVR add-ons for current stable kodi
+arch=('i686' 'x86_64')
+url=https://github.com/opdenkamp/xbmc-pvr-addons;
+license=('GPL3')
+depends=('kodi')
+makedepends=('git' 'libmysqlclient' 'boost')
+optdepends=('tvheadend-git: tvheadend backend' 'mythtv: mythtv backend')
+replaces=('xbmc-pvr-addons')
+conflicts=('xbmc-pvr-addons' 'xbmc-pvr-addons-git')
+source=($pkgname-$pkgver.tar.gz::https://github.com/opdenkamp/xbmc-pvr-addons/archive/${_relname}.tar.gz;)
+
+build() {
+  cd $srcdir/xbmc-pvr-addons-${_relname}
+  ./bootstrap
+  ./configure --prefix=/usr --enable-addons-with-dependencies
+  make
+}
+
+package() {
+  cd $srcdir/xbmc-pvr-addons-${_relname}
+  make DESTDIR=$pkgdir/ install
+}
+
+sha256sums=('e48de53c58245e512095d515d463f013e51e165fc617f1cb93e443cdd9f5096b')


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


[arch-commits] Commit in kodi-audioencoder-lame/repos (4 files)

2015-01-01 Thread Ike Devolder
Date: Thursday, January 1, 2015 @ 09:50:34
  Author: idevolder
Revision: 125115

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

Added:
  kodi-audioencoder-lame/repos/community-testing-i686/
  kodi-audioencoder-lame/repos/community-testing-i686/PKGBUILD
(from rev 125114, kodi-audioencoder-lame/trunk/PKGBUILD)
  kodi-audioencoder-lame/repos/community-testing-x86_64/
  kodi-audioencoder-lame/repos/community-testing-x86_64/PKGBUILD
(from rev 125114, kodi-audioencoder-lame/trunk/PKGBUILD)

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

Copied: kodi-audioencoder-lame/repos/community-testing-i686/PKGBUILD (from rev 
125114, kodi-audioencoder-lame/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2015-01-01 08:50:34 UTC (rev 125115)
@@ -0,0 +1,35 @@
+# $Id
+# Maintainer: BlackEagle ike.devol...@gmail.com
+
+pkgname=kodi-audioencoder-lame
+pkgver=20141110.6f8384f
+pkgrel=1
+pkgdesc=kodi audioencoder addon for lame (mp3)
+arch=('i686' 'x86_64')
+url='https://github.com/xbmc/audioencoder.lame'
+license=('GPL')
+depends=('kodi' 'lame')
+makedepends=('git' 'cmake')
+source=($pkgname::git://github.com/xbmc/audioencoder.lame.git)
+sha256sums=('SKIP')
+
+pkgver() {
+   cd $pkgname
+   git log -1 --date=short --format=%cd.%h | tr -d '-'
+}
+
+build() {
+   cd $pkgname
+   cmake \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DBUILD_SHARED_LIBS=1 \
+   -DUSE_LTO=1
+   make
+}
+
+package() {
+   cd $pkgname
+   make DESTDIR=$pkgdir/ install
+}
+

Copied: kodi-audioencoder-lame/repos/community-testing-x86_64/PKGBUILD (from 
rev 125114, kodi-audioencoder-lame/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2015-01-01 08:50:34 UTC (rev 125115)
@@ -0,0 +1,35 @@
+# $Id
+# Maintainer: BlackEagle ike.devol...@gmail.com
+
+pkgname=kodi-audioencoder-lame
+pkgver=20141110.6f8384f
+pkgrel=1
+pkgdesc=kodi audioencoder addon for lame (mp3)
+arch=('i686' 'x86_64')
+url='https://github.com/xbmc/audioencoder.lame'
+license=('GPL')
+depends=('kodi' 'lame')
+makedepends=('git' 'cmake')
+source=($pkgname::git://github.com/xbmc/audioencoder.lame.git)
+sha256sums=('SKIP')
+
+pkgver() {
+   cd $pkgname
+   git log -1 --date=short --format=%cd.%h | tr -d '-'
+}
+
+build() {
+   cd $pkgname
+   cmake \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DBUILD_SHARED_LIBS=1 \
+   -DUSE_LTO=1
+   make
+}
+
+package() {
+   cd $pkgname
+   make DESTDIR=$pkgdir/ install
+}
+


[arch-commits] Commit in kodi-audioencoder-flac/repos (4 files)

2015-01-01 Thread Ike Devolder
Date: Thursday, January 1, 2015 @ 09:49:50
  Author: idevolder
Revision: 125114

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

Added:
  kodi-audioencoder-flac/repos/community-testing-i686/
  kodi-audioencoder-flac/repos/community-testing-i686/PKGBUILD
(from rev 125113, kodi-audioencoder-flac/trunk/PKGBUILD)
  kodi-audioencoder-flac/repos/community-testing-x86_64/
  kodi-audioencoder-flac/repos/community-testing-x86_64/PKGBUILD
(from rev 125113, kodi-audioencoder-flac/trunk/PKGBUILD)

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

Copied: kodi-audioencoder-flac/repos/community-testing-i686/PKGBUILD (from rev 
125113, kodi-audioencoder-flac/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2015-01-01 08:49:50 UTC (rev 125114)
@@ -0,0 +1,35 @@
+# $Id
+# Maintainer: BlackEagle ike.devol...@gmail.com
+
+pkgname=kodi-audioencoder-flac
+pkgver=20141202.a960eba
+pkgrel=1
+pkgdesc=kodi audioencoder addon for flac
+arch=('i686' 'x86_64')
+url='https://github.com/xbmc/audioencoder.flac'
+license=('GPL')
+depends=('kodi')
+makedepends=('git' 'cmake')
+source=($pkgname::git://github.com/xbmc/audioencoder.flac.git)
+sha256sums=('SKIP')
+
+pkgver() {
+   cd $pkgname
+   git log -1 --date=short --format=%cd.%h | tr -d '-'
+}
+
+build() {
+   cd $pkgname
+   cmake \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DBUILD_SHARED_LIBS=1 \
+   -DUSE_LTO=1
+   make
+}
+
+package() {
+   cd $pkgname
+   make DESTDIR=$pkgdir/ install
+}
+

Copied: kodi-audioencoder-flac/repos/community-testing-x86_64/PKGBUILD (from 
rev 125113, kodi-audioencoder-flac/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2015-01-01 08:49:50 UTC (rev 125114)
@@ -0,0 +1,35 @@
+# $Id
+# Maintainer: BlackEagle ike.devol...@gmail.com
+
+pkgname=kodi-audioencoder-flac
+pkgver=20141202.a960eba
+pkgrel=1
+pkgdesc=kodi audioencoder addon for flac
+arch=('i686' 'x86_64')
+url='https://github.com/xbmc/audioencoder.flac'
+license=('GPL')
+depends=('kodi')
+makedepends=('git' 'cmake')
+source=($pkgname::git://github.com/xbmc/audioencoder.flac.git)
+sha256sums=('SKIP')
+
+pkgver() {
+   cd $pkgname
+   git log -1 --date=short --format=%cd.%h | tr -d '-'
+}
+
+build() {
+   cd $pkgname
+   cmake \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DBUILD_SHARED_LIBS=1 \
+   -DUSE_LTO=1
+   make
+}
+
+package() {
+   cd $pkgname
+   make DESTDIR=$pkgdir/ install
+}
+


[arch-commits] Commit in (4 files)

2015-01-01 Thread Ike Devolder
Date: Thursday, January 1, 2015 @ 09:42:39
  Author: idevolder
Revision: 125108

add kodi-audioencoder-lame

Added:
  kodi-audioencoder-lame/
  kodi-audioencoder-lame/repos/
  kodi-audioencoder-lame/trunk/
  kodi-audioencoder-lame/trunk/PKGBUILD

--+
 PKGBUILD |   35 +++
 1 file changed, 35 insertions(+)

Added: kodi-audioencoder-lame/trunk/PKGBUILD
===
--- kodi-audioencoder-lame/trunk/PKGBUILD   (rev 0)
+++ kodi-audioencoder-lame/trunk/PKGBUILD   2015-01-01 08:42:39 UTC (rev 
125108)
@@ -0,0 +1,35 @@
+# $Id
+# Maintainer: BlackEagle ike.devol...@gmail.com
+
+pkgname=kodi-audioencoder-lame
+pkgver=20141110.6f8384f
+pkgrel=1
+pkgdesc=kodi audioencoder addon for lame (mp3)
+arch=('i686' 'x86_64')
+url='https://github.com/xbmc/audioencoder.lame'
+license=('GPL')
+depends=('kodi' 'lame')
+makedepends=('git' 'cmake')
+source=($pkgname::git://github.com/xbmc/audioencoder.lame.git)
+sha256sums=('SKIP')
+
+pkgver() {
+   cd $pkgname
+   git log -1 --date=short --format=%cd.%h | tr -d '-'
+}
+
+build() {
+   cd $pkgname
+   cmake \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DBUILD_SHARED_LIBS=1 \
+   -DUSE_LTO=1
+   make
+}
+
+package() {
+   cd $pkgname
+   make DESTDIR=$pkgdir/ install
+}
+


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


[arch-commits] Commit in (4 files)

2015-01-01 Thread Ike Devolder
Date: Thursday, January 1, 2015 @ 09:43:38
  Author: idevolder
Revision: 125109

add kodi-audioencoder-vorbis

Added:
  kodi-audioencoder-vorbis/
  kodi-audioencoder-vorbis/repos/
  kodi-audioencoder-vorbis/trunk/
  kodi-audioencoder-vorbis/trunk/PKGBUILD

--+
 PKGBUILD |   35 +++
 1 file changed, 35 insertions(+)

Added: kodi-audioencoder-vorbis/trunk/PKGBUILD
===
--- kodi-audioencoder-vorbis/trunk/PKGBUILD (rev 0)
+++ kodi-audioencoder-vorbis/trunk/PKGBUILD 2015-01-01 08:43:38 UTC (rev 
125109)
@@ -0,0 +1,35 @@
+# $Id
+# Maintainer: BlackEagle ike.devol...@gmail.com
+
+pkgname=kodi-audioencoder-vorbis
+pkgver=20141224.787d4a0
+pkgrel=1
+pkgdesc=kodi audioencoder addon for ogg/vorbis
+arch=('i686' 'x86_64')
+url='https://github.com/xbmc/audioencoder.vorbis'
+license=('GPL')
+depends=('kodi')
+makedepends=('git' 'cmake')
+source=($pkgname::git://github.com/xbmc/audioencoder.vorbis.git)
+sha256sums=('SKIP')
+
+pkgver() {
+   cd $pkgname
+   git log -1 --date=short --format=%cd.%h | tr -d '-'
+}
+
+build() {
+   cd $pkgname
+   cmake \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DBUILD_SHARED_LIBS=1 \
+   -DUSE_LTO=1
+   make
+}
+
+package() {
+   cd $pkgname
+   make DESTDIR=$pkgdir/ install
+}
+


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


[arch-commits] Commit in (4 files)

2015-01-01 Thread Ike Devolder
Date: Thursday, January 1, 2015 @ 09:41:35
  Author: idevolder
Revision: 125107

add kodi-audioencoder-flac

Added:
  kodi-audioencoder-flac/
  kodi-audioencoder-flac/repos/
  kodi-audioencoder-flac/trunk/
  kodi-audioencoder-flac/trunk/PKGBUILD

--+
 PKGBUILD |   35 +++
 1 file changed, 35 insertions(+)

Added: kodi-audioencoder-flac/trunk/PKGBUILD
===
--- kodi-audioencoder-flac/trunk/PKGBUILD   (rev 0)
+++ kodi-audioencoder-flac/trunk/PKGBUILD   2015-01-01 08:41:35 UTC (rev 
125107)
@@ -0,0 +1,35 @@
+# $Id
+# Maintainer: BlackEagle ike.devol...@gmail.com
+
+pkgname=kodi-audioencoder-flac
+pkgver=20141202.a960eba
+pkgrel=1
+pkgdesc=kodi audioencoder addon for flac
+arch=('i686' 'x86_64')
+url='https://github.com/xbmc/audioencoder.flac'
+license=('GPL')
+depends=('kodi')
+makedepends=('git' 'cmake')
+source=($pkgname::git://github.com/xbmc/audioencoder.flac.git)
+sha256sums=('SKIP')
+
+pkgver() {
+   cd $pkgname
+   git log -1 --date=short --format=%cd.%h | tr -d '-'
+}
+
+build() {
+   cd $pkgname
+   cmake \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DBUILD_SHARED_LIBS=1 \
+   -DUSE_LTO=1
+   make
+}
+
+package() {
+   cd $pkgname
+   make DESTDIR=$pkgdir/ install
+}
+


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


[arch-commits] Commit in (4 files)

2015-01-01 Thread Ike Devolder
Date: Thursday, January 1, 2015 @ 09:44:50
  Author: idevolder
Revision: 125110

add kodi-audioencoder-wav

Added:
  kodi-audioencoder-wav/
  kodi-audioencoder-wav/repos/
  kodi-audioencoder-wav/trunk/
  kodi-audioencoder-wav/trunk/PKGBUILD

--+
 PKGBUILD |   35 +++
 1 file changed, 35 insertions(+)

Added: kodi-audioencoder-wav/trunk/PKGBUILD
===
--- kodi-audioencoder-wav/trunk/PKGBUILD(rev 0)
+++ kodi-audioencoder-wav/trunk/PKGBUILD2015-01-01 08:44:50 UTC (rev 
125110)
@@ -0,0 +1,35 @@
+# $Id
+# Maintainer: BlackEagle ike.devol...@gmail.com
+
+pkgname=kodi-audioencoder-wav
+pkgver=20141102.40aaedf
+pkgrel=1
+pkgdesc=kodi audioencoder addon for wav
+arch=('i686' 'x86_64')
+url='https://github.com/xbmc/audioencoder.wav'
+license=('GPL')
+depends=('kodi')
+makedepends=('git' 'cmake')
+source=($pkgname::git://github.com/xbmc/audioencoder.wav.git)
+sha256sums=('SKIP')
+
+pkgver() {
+   cd $pkgname
+   git log -1 --date=short --format=%cd.%h | tr -d '-'
+}
+
+build() {
+   cd $pkgname
+   cmake \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DBUILD_SHARED_LIBS=1 \
+   -DUSE_LTO=1
+   make
+}
+
+package() {
+   cd $pkgname
+   make DESTDIR=$pkgdir/ install
+}
+


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


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

2015-01-01 Thread Felix Yan
Date: Thursday, January 1, 2015 @ 12:07:37
  Author: fyan
Revision: 228319

upgpkg: python-setuptools 1:10.1-1

upstream new release

Modified:
  python-setuptools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-01 03:00:46 UTC (rev 228318)
+++ PKGBUILD2015-01-01 11:07:37 UTC (rev 228319)
@@ -4,7 +4,7 @@
 
 pkgbase=python-setuptools
 pkgname=('python-setuptools' 'python2-setuptools')
-pkgver=10.0.1
+pkgver=10.1
 pkgrel=1
 epoch=1
 pkgdesc=Easily download, build, install, upgrade, and uninstall Python 
packages
@@ -14,7 +14,7 @@
 makedepends=('python' 'python2')
 checkdepends=('python-mock' 'python2-mock' 'python-pytest' 'python2-pytest' 
'git')
 
source=(http://pypi.python.org/packages/source/s/setuptools/setuptools-${pkgver}.tar.gz;)
-sha512sums=('209f1e7a415f0aaf963d0dd4e40bb0aa50173087affb76c68f747d1429ead314207c8d3b9521ea7abec25ed375a019bd0a0a1b6c97274e404a6cc81a4f629267')
+sha512sums=('47fc9c4b1ef33e7f5ced045e00f35638330168dcea48569980e140aaa2eaa4a3d2c1c61c44f7d623efb9be9efec7c7e12bc4850a6a0a7dd69fd5f59427a74828')
 
 prepare() {
   cp -a setuptools-${pkgver}{,-python2}


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

2015-01-01 Thread Jan Steffens
Date: Thursday, January 1, 2015 @ 12:27:46
  Author: heftig
Revision: 125118

3.14.2

Modified:
  simple-scan/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-01 08:52:31 UTC (rev 125117)
+++ PKGBUILD2015-01-01 11:27:46 UTC (rev 125118)
@@ -4,7 +4,7 @@
 # Contributor: Joeny Ang ang(dot)joeny(at)gmail(dot)com
 
 pkgname=simple-scan
-pkgver=3.14.0
+pkgver=3.14.2
 pkgrel=1
 pkgdesc='Simple scanning utility'
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 makedepends=('yelp-tools' 'intltool' 'vala')
 install=$pkgname.install
 
source=(https://launchpad.net/$pkgname/${pkgver:0:4}/$pkgver/+download/$pkgname-$pkgver.tar.xz)
-sha256sums=('9a8afa0d72ef889a79c6e0eec490ccef535106d7bf60ece4ba555bf7368399f1')
+sha256sums=('d46caaafd2dfe46cf7e022363842cf3da0721b70768de5d29c808d1e5953a6a3')
 
 build() {
   cd $pkgname-$pkgver


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

2015-01-01 Thread Ike Devolder
Date: Thursday, January 1, 2015 @ 09:46:51
  Author: idevolder
Revision: 125112

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

Added:
  kodi/repos/community-testing-i686/PKGBUILD
(from rev 125111, kodi/trunk/PKGBUILD)
  kodi/repos/community-testing-i686/kodi.install
(from rev 125111, kodi/trunk/kodi.install)
  kodi/repos/community-testing-x86_64/PKGBUILD
(from rev 125111, kodi/trunk/PKGBUILD)
  kodi/repos/community-testing-x86_64/kodi.install
(from rev 125111, kodi/trunk/kodi.install)
Deleted:
  kodi/repos/community-testing-i686/PKGBUILD
  kodi/repos/community-testing-i686/kodi.install
  kodi/repos/community-testing-x86_64/PKGBUILD
  kodi/repos/community-testing-x86_64/kodi.install

---+
 /PKGBUILD |  256 
 /kodi.install |   34 
 community-testing-i686/PKGBUILD   |  161 
 community-testing-i686/kodi.install   |   24 ---
 community-testing-x86_64/PKGBUILD |  161 
 community-testing-x86_64/kodi.install |   24 ---
 6 files changed, 290 insertions(+), 370 deletions(-)

Deleted: community-testing-i686/PKGBUILD
===
--- community-testing-i686/PKGBUILD 2015-01-01 08:46:41 UTC (rev 125111)
+++ community-testing-i686/PKGBUILD 2015-01-01 08:46:51 UTC (rev 125112)
@@ -1,161 +0,0 @@
-# vim:set ts=2 sw=2 et:
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: BlackIkeEagle  ike DOT devolder AT gmail DOT com 
-# Contributor: Brad Fanella bradfane...@archlinux.us
-# Contributor: [vEX] niechift.dot.vex.at.gmail.dot.com
-# Contributor: Zeqadious zeqadious.at.gmail.dot.com
-# Contributor: BlackIkeEagle  ike DOT devolder AT gmail DOT com 
-# Contributor: Bartłomiej Piotrowski bpiotrow...@archlinux.org
-# Contributor: Maxime Gauduin aluc...@gmail.com
-
-_prefix=/usr
-
-pkgbase=kodi
-pkgname=('kodi' 'kodi-texturepacker')
-pkgver=14.0
-_codename=Helix
-pkgrel=0.5
-arch=('i686' 'x86_64')
-url=http://kodi.tv;
-license=('GPL2')
-makedepends=(
-'bluez-libs' 'curl' 'glew' 'hicolor-icon-theme' 'libaacs'
-'libass' 'libbluray' 'libcdio' 'libmariadbclient' 'libmicrohttpd'
-'libpulse' 'libssh' 'libva' 'libvdpau' 'libxrandr'
-'libxslt' 'lzo' 'libgl' 'python2-pillow' 'python2-pybluez'
-'python2-simplejson' 'rtmpdump' 'smbclient' 'taglib' 'tinyxml'
-'yajl'
-'afpfs-ng' 'boost' 'cmake' 'doxygen' 'git' 'gperf' 'jasper'
-'java-runtime' 'libcec' 'libnfs' 'libplist' 'nasm' 'shairplay'
-'swig' 'unzip' 'upower' 'zip'
-'libmpeg2' 'libmodplug'
-'sdl2' 'sdl_image'
-)
-# encoders
-# flac
-# lame
-# libmodplug
-# libvorbis
-source=(
-  
$pkgname-$pkgver-$_codename.tar.gz::https://github.com/xbmc/xbmc/archive/$pkgver-$_codename.tar.gz;
-)
-sha256sums=(
-  '11746d95cc59361f36ce6ea9d0d36bbd9ec3376e991f5ec1720f8ff740b91192'
-)
-
-prepare() {
-  cd $srcdir/xbmc-$pkgver-$_codename
-
-
-  find -type f -name *.py -exec sed 's|^#!.*python$|#!/usr/bin/python2|' -i 
{} +
-  sed 's|^#!.*python$|#!/usr/bin/python2|' -i 
tools/depends/native/rpl-native/rpl
-   sed 's/python/python2/' -i tools/Linux/kodi.sh.in
-}
-
-build() {
-  cd $srcdir/xbmc-$pkgver-$_codename
-
-   # Bootstrapping
-  ./bootstrap
-
-  # Configuring XBMC
-  export PYTHON_VERSION=2  # external python v2
-  ./configure --prefix=$_prefix --exec-prefix=$_prefix \
---disable-debug \
---enable-optimizations \
---enable-gl \
---enable-vaapi \
---enable-vdpau \
---enable-joystick \
---enable-xrandr \
---enable-rsxs \
---enable-projectm \
---enable-x11 \
---enable-pulse \
---enable-rtmp \
---enable-samba \
---enable-nfs \
---enable-afpclient \
---enable-airplay \
---enable-airtunes \
---enable-ffmpeg-libvorbis \
---enable-dvdcss \
---disable-hal \
---enable-avahi \
---enable-webserver \
---enable-optical-drive \
---enable-libbluray \
---enable-texturepacker \
---enable-udev \
---enable-libusb \
---enable-libcec \
-   --enable-external-libraries \
---with-lirc-device=/run/lirc/lircd
-
-  # Now (finally) build
-  make
-}
-
-package_kodi() {
-  pkgdesc=A software media player and entertainment hub for digital media
-
-  # depends expected for kodi plugins:
-  # 'python2-pillow' 'python2-pybluez' 'python2-simplejson'
-  # depends expeced in FEH.py
-  # 'mesa-demos' 'xorg-xdpyinfo'
-  depends=(
-'python2-pillow' 'python2-pybluez' 'python2-simplejson'
-'mesa-demos' 'xorg-xdpyinfo'
-'bluez-libs' 'fribidi' 'glew' 'hicolor-icon-theme' 'libcdio'
-'libjpeg-turbo' 'libmariadbclient' 'libmicrohttpd' 'libpulse' 'libssh'
-'libva' 'libxrandr' 'libxslt' 'lzo' 'sdl2' 'smbclient' 'taglib' 'tinyxml'
-'yajl'
-  )
-  optdepends=(
-'afpfs-ng: Apple shares support'
-'bluez: Blutooth support'
-'libnfs: NFS shares support'
-'libplist: AirPlay 

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

2015-01-01 Thread Jan Steffens
Date: Friday, January 2, 2015 @ 02:55:06
  Author: heftig
Revision: 228334

2.5.5

Modified:
  freetype2/trunk/PKGBUILD
Deleted:
  freetype2/trunk/0001-pcf-Fix-Savannah-bug-43774.patch

---+
 0001-pcf-Fix-Savannah-bug-43774.patch |  125 
 PKGBUILD  |   15 +--
 2 files changed, 5 insertions(+), 135 deletions(-)

Deleted: 0001-pcf-Fix-Savannah-bug-43774.patch
===
--- 0001-pcf-Fix-Savannah-bug-43774.patch   2015-01-01 19:03:05 UTC (rev 
228333)
+++ 0001-pcf-Fix-Savannah-bug-43774.patch   2015-01-02 01:55:06 UTC (rev 
228334)
@@ -1,125 +0,0 @@
-From 74af85c4b62b35e55b0ce9dec55ee10cbc4962a2 Mon Sep 17 00:00:00 2001
-From: Werner Lemberg w...@gnu.org
-Date: Mon, 8 Dec 2014 16:01:50 +0100
-Subject: [PATCH] [pcf] Fix Savannah bug #43774.
-
-Work around `features' of X11's `pcfWriteFont' and `pcfReadFont'
-functions.  Since the PCF format doesn't have an official
-specification, we have to exactly follow these functions' behaviour.
-
-The problem was unveiled with a patch from 2014-11-06, fixing issue #43547.
-
-* src/pcf/pcfread.c (pcf_read_TOC): Don't check table size for last
-element.  Instead, assign real size.

- ChangeLog | 14 ++
- src/pcf/pcfread.c | 54 +++---
- 2 files changed, 57 insertions(+), 11 deletions(-)
-
-diff --git a/src/pcf/pcfread.c b/src/pcf/pcfread.c
-index 998cbed..e3caf82 100644
 a/src/pcf/pcfread.c
-+++ b/src/pcf/pcfread.c
-@@ -2,7 +2,7 @@
- 
- FreeType font driver for pcf fonts
- 
--  Copyright 2000-2010, 2012, 2013 by
-+  Copyright 2000-2010, 2012-2014 by
-   Francesco Zappa Nardelli
- 
- Permission is hereby granted, free of charge, to any person obtaining a copy
-@@ -78,7 +78,7 @@ THE SOFTWARE.
- FT_FRAME_START( 16  ),
-   FT_FRAME_ULONG_LE( type ),
-   FT_FRAME_ULONG_LE( format ),
--  FT_FRAME_ULONG_LE( size ),
-+  FT_FRAME_ULONG_LE( size ),   /* rounded up to a multiple of 4 */
-   FT_FRAME_ULONG_LE( offset ),
- FT_FRAME_END
-   };
-@@ -95,9 +95,11 @@ THE SOFTWARE.
- FT_Memory  memory = FT_FACE( face )-memory;
- FT_UIntn;
- 
-+FT_ULong   size;
- 
--if ( FT_STREAM_SEEK ( 0 )  ||
-- FT_STREAM_READ_FIELDS ( pcf_toc_header, toc ) )
-+
-+if ( FT_STREAM_SEEK( 0 )  ||
-+ FT_STREAM_READ_FIELDS( pcf_toc_header, toc ) )
-   return FT_THROW( Cannot_Open_Resource );
- 
- if ( toc-version != PCF_FILE_VERSION ||
-@@ -154,14 +156,35 @@ THE SOFTWARE.
- break;
- }
- 
--/* we now check whether the `size' and `offset' values are reasonable: */
--/* `offset' + `size' must not exceed the stream size   */
-+/*
-+ *  We now check whether the `size' and `offset' values are reasonable:
-+ *  `offset' + `size' must not exceed the stream size.
-+ *
-+ *  Note, however, that X11's `pcfWriteFont' routine (used by the
-+ *  `bdftopcf' program to create PDF font files) has two special
-+ *  features.
-+ *
-+ *  - It always assigns the accelerator table a size of 100 bytes in the
-+ *TOC, regardless of its real size, which can vary between 34 and 72
-+ *bytes.
-+ *
-+ *  - Due to the way the routine is designed, it ships out the last font
-+ *table with its real size, ignoring the TOC's size value.  Since
-+ *the TOC size values are always rounded up to a multiple of 4, the
-+ *difference can be up to three bytes for all tables except the
-+ *accelerator table, for which the difference can be as large as 66
-+ *bytes.
-+ *
-+ */
-+
- tables = face-toc.tables;
--for ( n = 0; n  toc-count; n++ )
-+size   = stream-size;
-+
-+for ( n = 0; n  toc-count - 1; n++ )
- {
-   /* we need two checks to avoid overflow */
--  if ( ( tables-sizestream-size) ||
--   ( tables-offset  stream-size - tables-size ) )
-+  if ( ( tables-sizesize) ||
-+   ( tables-offset  size - tables-size ) )
-   {
- error = FT_THROW( Invalid_Table );
- goto Exit;
-@@ -169,6 +192,15 @@ THE SOFTWARE.
-   tables++;
- }
- 
-+/* no check of `tables-size' for last table element ... */
-+if ( ( tables-offset  size ) )
-+{
-+  error = FT_THROW( Invalid_Table );
-+  goto Exit;
-+}
-+/* ... instead, we adjust `tables-size' to the real value */
-+tables-size = size - tables-offset;
-+
- #ifdef FT_DEBUG_LEVEL_TRACE
- 
- {
-@@ -733,8 +765,8 @@ THE SOFTWARE.
- 
- FT_TRACE4((   number of bitmaps: %d\n, nbitmaps ));
- 
--/* XXX: PCF_Face-nmetrics is singed FT_Long, see pcf.h */
--if ( face-nmetrics  0 || nbitmaps != ( FT_ULong )face-nmetrics )
-+/* XXX: PCF_Face-nmetrics is 

[arch-commits] Commit in sage-mathematics/trunk (PKGBUILD extensions.patch)

2015-01-01 Thread Antonio Rojas
Date: Friday, January 2, 2015 @ 01:49:36
  Author: arojas
Revision: 125148

- Add libfes and cryptominisat support
- Create SAGE_SRC dir in main package (FS#43271)

Modified:
  sage-mathematics/trunk/PKGBUILD
  sage-mathematics/trunk/extensions.patch

--+
 PKGBUILD |   18 +++---
 extensions.patch |   13 ++---
 2 files changed, 13 insertions(+), 18 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-01-02 00:21:24 UTC (rev 125147)
+++ PKGBUILD2015-01-02 00:49:36 UTC (rev 125148)
@@ -10,18 +10,17 @@
 pkgbase=sage-mathematics
 pkgname=('sage-mathematics' 'sage-mathematics-src')
 pkgver=6.4.1
-pkgrel=2
+pkgrel=3
 pkgdesc=Open Source Mathematics Software, free alternative to Magma, Maple, 
Mathematica, and Matlab
 arch=('i686' 'x86_64')
 url=http://www.sagemath.org;
 license=('GPL')
-makedepends=('ipython2' 'cython2' 'ppl' 'glpk' 'mpfi' 'polybori' 'singular' 
'libcliquer' 'ecl' 'libgap' 'givaro' 'libmpc' 'lcalc' 'lrcalc'
-  'eclib' 'gmp-ecm' 'zn_poly' 'pynac' 'linbox' 'gsl' 'boost' 'scons' 
'ratpoints' 'symmetrica' 'fflas-ffpack' 'gd' 'python2-jinja' 'python2-numpy')
+makedepends=('ipython2' 'cython2' 'ppl' 'glpk' 'mpfi' 'polybori' 'singular' 
'libcliquer' 'ecl' 'libgap' 'givaro' 'libmpc' 'lcalc' 'lrcalc' 'libfes' 
'cryptominisat' 'eclib' 'gmp-ecm' 'zn_poly' 'pynac' 'linbox' 'gsl' 'boost' 
'scons' 'ratpoints' 'symmetrica' 'fflas-ffpack' 'gd' 'python2-jinja' 
'python2-numpy')
 source=(https://github.com/sagemath/sage/archive/$pkgver.tar.gz; 
http://www.sagemath.org/packages/upstream/pexpect/pexpect-2.0.tar.bz2; 
 'extensions.patch' 'c_lib.patch' 'env.patch' 'paths.patch' 'blas.patch' 
'clean.patch' 'skip-check.patch' 'gap-hap.patch' 'pexpect-env.patch')
 md5sums=('e40736461992e62af3a84cf9a212c9d1'
  'd9a3e113ed147dcee8f89962a8dccd43'
- '43784811932f077c3c07b75825abda1b'
+ '5770766ae676491f79162d2062ce7c02'
  '5216dbb3d80cecc8ec4a36cc9706f8b5'
  '0bb5d722e32359f9dc8516904316318f'
  'df2f56fb5845a83808b6724f6965ec6e'
@@ -37,6 +36,10 @@
 
 # add optional packages manually (Fedora)  
   patch -p0 -i $srcdir/extensions.patch
+  for _ext in cryptominisat fes lrcalc
+  do
+   sed -i s|is_package_installed('$_ext')|1| src/module_list.py
+  done
 # don't assume Sage is already available (Fedora)
   patch -p0 -i $srcdir/c_lib.patch
 # find L.h header
@@ -89,9 +92,7 @@
 
 package_sage-mathematics() {
   depends=('ipython2' 'cython2' 'ppl' 'glpk' 'mpfi' 'palp' 'polybori' 
'singular' 'libcliquer' 'maxima-ecl' 'gfan' 'sympow' 'tachyon' 'python2-rpy2' 
-  'python2-matplotlib' 'python2-scipy' 'python2-mpmath' 'python2-sympy' 
'libgap' 'gap' 'genus2reduction' 'flintqs' 'givaro' 'libmpc' 'lcalc' 'lrcalc'
-  'eclib' 'gmp-ecm' 'zn_poly' 'python2-gd' 'pynac' 'linbox' 'gsl' 'rubiks' 
'pari-galdata' 'pari-seadata-small' 'sage-data-combinatorial_designs' 
-  'sage-data-elliptic_curves' 'sage-data-graphs' 'sage-data-polytopes_db' 
'sage-data-conway_polynomials') # python2-pexpect
+  'python2-matplotlib' 'python2-scipy' 'python2-sympy' 'libgap' 'gap' 
'genus2reduction' 'flintqs' 'givaro' 'libmpc' 'lcalc' 'lrcalc' 'libfes' 
'cryptominisat' 'eclib' 'gmp-ecm' 'zn_poly' 'python2-gd' 'pynac' 'linbox' 'gsl' 
'rubiks' 'pari-galdata' 'pari-seadata-small' 'sage-data-combinatorial_designs' 
'sage-data-elliptic_curves' 'sage-data-graphs' 'sage-data-polytopes_db' 
'sage-data-conway_polynomials') # python2-pexpect
   optdepends=('jmol: 3D plots' 'sage-notebook: Web-based notebook interface' 
'sage-mathematics-doc: Documentation and inline help'
   'sage-mathematics-src: source files needed to build cython code'
   'python2-pyzmq: ipython notebook' 'python2-tornado: ipython notebook' 
'python2-jinja: ipython notebook')
@@ -110,6 +111,9 @@
 
   mkdir -p $pkgdir/usr/share/sage
   cp -r ext $pkgdir/usr/share/sage
+  
+# Create SAGE_SRC, needed for the notebook
+  mkdir $pkgdir/usr/share/sage/src
 
 # Install Sage's own pexpect
   cd $srcdir/pexpect-2.0

Modified: extensions.patch
===
--- extensions.patch2015-01-02 00:21:24 UTC (rev 125147)
+++ extensions.patch2015-01-02 00:49:36 UTC (rev 125148)
@@ -1,5 +1,5 @@
 src/module_list.py.orig2014-11-23 15:58:13.0 +0100
-+++ src/module_list.py 2014-12-23 10:43:44.412576412 +0100
+--- src/module_list.py.orig2015-01-02 01:37:15.614093528 +0100
 src/module_list.py 2015-01-02 01:37:26.140827483 +0100
 @@ -2126,7 +2126,8 @@
  # These extensions are to be compiled only if the
  # corresponding packages have been installed
@@ -10,12 +10,3 @@
  
  if is_package_installed('fes'):
  ext_modules.extend([
-@@ -2208,7 +2209,7 @@
- )
- 
- 
--if is_package_installed('lrcalc'):
-+if 1:
- ext_modules.append(
- Extension('sage.libs.lrcalc.lrcalc',
-   sources = [sage/libs/lrcalc/lrcalc.pyx],


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

2015-01-01 Thread Giovanni Scafora
Date: Friday, January 2, 2015 @ 07:25:03
  Author: giovanni
Revision: 228338

upgpkg: smb4k 1.1.4-1

upstream release

Modified:
  smb4k/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-02 04:19:40 UTC (rev 228337)
+++ PKGBUILD2015-01-02 06:25:03 UTC (rev 228338)
@@ -3,8 +3,8 @@
 # Contributor: Emanuele Rampichini emanuele.rampich...@gmail.com
 
 pkgname=smb4k
-pkgver=1.1.3
-pkgrel=2
+pkgver=1.1.4
+pkgrel=1
 pkgdesc=A KDE program that browses samba shares
 arch=('i686' 'x86_64')
 url=http://smb4k.sourceforge.net/;
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'automoc4')
 install=smb4k.install
 
source=(http://downloads.sourceforge.net/project/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('9c825a2450d3449da57e1be9187d95d4')
+md5sums=('1f3f043ba95a4efecd005e862c32c719')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}


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

2015-01-01 Thread Giovanni Scafora
Date: Friday, January 2, 2015 @ 07:25:12
  Author: giovanni
Revision: 228339

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

Added:
  smb4k/repos/extra-i686/PKGBUILD
(from rev 228338, smb4k/trunk/PKGBUILD)
  smb4k/repos/extra-i686/smb4k.install
(from rev 228338, smb4k/trunk/smb4k.install)
  smb4k/repos/extra-x86_64/PKGBUILD
(from rev 228338, smb4k/trunk/PKGBUILD)
  smb4k/repos/extra-x86_64/smb4k.install
(from rev 228338, smb4k/trunk/smb4k.install)
Deleted:
  smb4k/repos/extra-i686/PKGBUILD
  smb4k/repos/extra-i686/smb4k.install
  smb4k/repos/extra-x86_64/PKGBUILD
  smb4k/repos/extra-x86_64/smb4k.install

+
 /PKGBUILD  |   60 +++
 /smb4k.install |   22 +++
 extra-i686/PKGBUILD|   30 -
 extra-i686/smb4k.install   |   11 ---
 extra-x86_64/PKGBUILD  |   30 -
 extra-x86_64/smb4k.install |   11 ---
 6 files changed, 82 insertions(+), 82 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-01-02 06:25:03 UTC (rev 228338)
+++ extra-i686/PKGBUILD 2015-01-02 06:25:12 UTC (rev 228339)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: Emanuele Rampichini emanuele.rampich...@gmail.com
-
-pkgname=smb4k
-pkgver=1.1.3
-pkgrel=2
-pkgdesc=A KDE program that browses samba shares
-arch=('i686' 'x86_64')
-url=http://smb4k.sourceforge.net/;
-license=('GPL')
-depends=('kdebase-runtime')
-makedepends=('cmake' 'automoc4')
-install=smb4k.install
-source=(http://downloads.sourceforge.net/project/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('9c825a2450d3449da57e1be9187d95d4')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  cmake -DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=RELEASE
-  make VERBOSE=1
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  make DESTDIR=${pkgdir} install
-}

Copied: smb4k/repos/extra-i686/PKGBUILD (from rev 228338, smb4k/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-01-02 06:25:12 UTC (rev 228339)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: Emanuele Rampichini emanuele.rampich...@gmail.com
+
+pkgname=smb4k
+pkgver=1.1.4
+pkgrel=1
+pkgdesc=A KDE program that browses samba shares
+arch=('i686' 'x86_64')
+url=http://smb4k.sourceforge.net/;
+license=('GPL')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+install=smb4k.install
+source=(http://downloads.sourceforge.net/project/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('1f3f043ba95a4efecd005e862c32c719')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  cmake -DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=RELEASE
+  make VERBOSE=1
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-i686/smb4k.install
===
--- extra-i686/smb4k.install2015-01-02 06:25:03 UTC (rev 228338)
+++ extra-i686/smb4k.install2015-01-02 06:25:12 UTC (rev 228339)
@@ -1,11 +0,0 @@
-post_install() {
-  xdg-icon-resource forceupdate --theme hicolor  /dev/null
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: smb4k/repos/extra-i686/smb4k.install (from rev 228338, 
smb4k/trunk/smb4k.install)
===
--- extra-i686/smb4k.install(rev 0)
+++ extra-i686/smb4k.install2015-01-02 06:25:12 UTC (rev 228339)
@@ -0,0 +1,11 @@
+post_install() {
+  xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-01-02 06:25:03 UTC (rev 228338)
+++ extra-x86_64/PKGBUILD   2015-01-02 06:25:12 UTC (rev 228339)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: Emanuele Rampichini emanuele.rampich...@gmail.com
-
-pkgname=smb4k
-pkgver=1.1.3
-pkgrel=2
-pkgdesc=A KDE program that browses samba shares
-arch=('i686' 'x86_64')
-url=http://smb4k.sourceforge.net/;
-license=('GPL')
-depends=('kdebase-runtime')
-makedepends=('cmake' 'automoc4')
-install=smb4k.install
-source=(http://downloads.sourceforge.net/project/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('9c825a2450d3449da57e1be9187d95d4')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  cmake -DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=RELEASE
-  make VERBOSE=1
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  make 

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

2015-01-01 Thread Felix Yan
Date: Friday, January 2, 2015 @ 05:19:40
  Author: fyan
Revision: 228337

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

Added:
  aspell-pt/repos/extra-i686/PKGBUILD
(from rev 228336, aspell-pt/trunk/PKGBUILD)
  aspell-pt/repos/extra-x86_64/PKGBUILD
(from rev 228336, aspell-pt/trunk/PKGBUILD)
Deleted:
  aspell-pt/repos/extra-i686/PKGBUILD
  aspell-pt/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-01-02 04:19:00 UTC (rev 228336)
+++ extra-i686/PKGBUILD 2015-01-02 04:19:40 UTC (rev 228337)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer:
-
-pkgname=aspell-pt
-_pkgverPT=20141115
-_pkgverBR=20090702
-pkgver=$_pkgverPT
-pkgrel=1
-pkgdesc=Portuguese and Brazilian Portuguese dictionary for aspell
-arch=('i686' 'x86_64')
-url=http://aspell.net/;
-license=('GPL2')
-depends=('aspell')
-conflicts=('aspell-pt_br')
-replaces=('aspell-pt_br')
-source=(ftp://ftp.gnu.org/gnu/aspell/dict/pt_BR/aspell6-pt_BR-$_pkgverBR-0.tar.bz2
-
http://natura.di.uminho.pt/download/sources/Dictionaries/aspell6/aspell6.pt-$_pkgverPT.tar.bz2
-
http://natura.di.uminho.pt/download/sources/Dictionaries/aspell6/aspell6.pt-preao-$_pkgverPT.tar.bz2)
-sha1sums=('add1db9a6a908dccaad13a7fd85c3b202299ff26'
-  '59e86f87283d982ab7156e28a8d5da8f0a651b66'
-  '4b39e1d9571f0a11a6370945d072baeb7a044512')
-
-build() {
-  cd aspell6-pt_BR-$_pkgverBR-0
-  ./configure
-  make
-
-  cd ../aspell6-pt_PT-$_pkgverPT-0
-  ./configure
-  make
-
-  cd ../aspell6-pt_PT-preao-$_pkgverPT-0
-  ./configure
-  make
-}
-
-package() {
-  cd aspell6-pt_BR-$_pkgverBR-0
-  make DESTDIR=$pkgdir install
-
-  cd ../aspell6-pt_PT-$_pkgverPT-0
-  make DESTDIR=$pkgdir install
-
-  cd ../aspell6-pt_PT-preao-$_pkgverPT-0
-  make DESTDIR=$pkgdir install
-
-  echo add pt_BR.multi  $pkgdir/usr/lib/aspell-0.60/brasileiro.alias
-}

Copied: aspell-pt/repos/extra-i686/PKGBUILD (from rev 228336, 
aspell-pt/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-01-02 04:19:40 UTC (rev 228337)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer:
+
+pkgname=aspell-pt
+_pkgverPT=20150101
+_pkgverBR=20090702
+pkgver=$_pkgverPT
+pkgrel=1
+pkgdesc=Portuguese and Brazilian Portuguese dictionary for aspell
+arch=('i686' 'x86_64')
+url=http://aspell.net/;
+license=('GPL2')
+depends=('aspell')
+conflicts=('aspell-pt_br')
+replaces=('aspell-pt_br')
+source=(ftp://ftp.gnu.org/gnu/aspell/dict/pt_BR/aspell6-pt_BR-$_pkgverBR-0.tar.bz2
+
http://natura.di.uminho.pt/download/sources/Dictionaries/aspell6/aspell6.pt-$_pkgverPT.tar.bz2
+
http://natura.di.uminho.pt/download/sources/Dictionaries/aspell6/aspell6.pt-preao-$_pkgverPT.tar.bz2)
+sha1sums=('add1db9a6a908dccaad13a7fd85c3b202299ff26'
+  '2de03006dc41638b7973c3ba99fe47fee783e36c'
+  '258e60669f7bd9d2d06a315ec439b8c446d0f8aa')
+
+build() {
+  cd aspell6-pt_BR-$_pkgverBR-0
+  ./configure
+  make
+
+  cd ../aspell6-pt_PT-$_pkgverPT-0
+  ./configure
+  make
+
+  cd ../aspell6-pt_PT-preao-$_pkgverPT-0
+  ./configure
+  make
+}
+
+package() {
+  cd aspell6-pt_BR-$_pkgverBR-0
+  make DESTDIR=$pkgdir install
+
+  cd ../aspell6-pt_PT-$_pkgverPT-0
+  make DESTDIR=$pkgdir install
+
+  cd ../aspell6-pt_PT-preao-$_pkgverPT-0
+  make DESTDIR=$pkgdir install
+
+  echo add pt_BR.multi  $pkgdir/usr/lib/aspell-0.60/brasileiro.alias
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-01-02 04:19:00 UTC (rev 228336)
+++ extra-x86_64/PKGBUILD   2015-01-02 04:19:40 UTC (rev 228337)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer:
-
-pkgname=aspell-pt
-_pkgverPT=20141115
-_pkgverBR=20090702
-pkgver=$_pkgverPT
-pkgrel=1
-pkgdesc=Portuguese and Brazilian Portuguese dictionary for aspell
-arch=('i686' 'x86_64')
-url=http://aspell.net/;
-license=('GPL2')
-depends=('aspell')
-conflicts=('aspell-pt_br')
-replaces=('aspell-pt_br')
-source=(ftp://ftp.gnu.org/gnu/aspell/dict/pt_BR/aspell6-pt_BR-$_pkgverBR-0.tar.bz2
-
http://natura.di.uminho.pt/download/sources/Dictionaries/aspell6/aspell6.pt-$_pkgverPT.tar.bz2
-
http://natura.di.uminho.pt/download/sources/Dictionaries/aspell6/aspell6.pt-preao-$_pkgverPT.tar.bz2)
-sha1sums=('add1db9a6a908dccaad13a7fd85c3b202299ff26'
-  '59e86f87283d982ab7156e28a8d5da8f0a651b66'
-  '4b39e1d9571f0a11a6370945d072baeb7a044512')
-
-build() {
-  cd aspell6-pt_BR-$_pkgverBR-0
-  ./configure
-  make
-
-  cd ../aspell6-pt_PT-$_pkgverPT-0
-  ./configure
-  make
-
-  cd ../aspell6-pt_PT-preao-$_pkgverPT-0
-  ./configure

[arch-commits] Commit in qscintilla-qt5/trunk (ChangeLog PKGBUILD)

2015-01-01 Thread Evgeniy Alekseev
Date: Friday, January 2, 2015 @ 07:36:34
  Author: arcanis
Revision: 125151

upgpkg: qscintilla-qt5 2.8.4-2
remove conflict with qscintilla

Added:
  qscintilla-qt5/trunk/ChangeLog
Modified:
  qscintilla-qt5/trunk/PKGBUILD

---+
 ChangeLog |5 +
 PKGBUILD  |4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

Added: ChangeLog
===
--- ChangeLog   (rev 0)
+++ ChangeLog   2015-01-02 06:36:34 UTC (rev 125151)
@@ -0,0 +1,5 @@
+2.8.4-2:
+remov conflict with qsctintilla
+
+2.8.4-1:
+move to [community]

Modified: PKGBUILD
===
--- PKGBUILD2015-01-02 01:57:20 UTC (rev 125150)
+++ PKGBUILD2015-01-02 06:36:34 UTC (rev 125151)
@@ -6,7 +6,7 @@
 pkgname=('qscintilla-qt5' 'python-qscintilla-qt5' 'python2-qscintilla-qt5'
  'python-qscintilla-qt5-common')
 pkgver=2.8.4
-pkgrel=1
+pkgrel=2
 license=('GPL')
 arch=('i686' 'x86_64')
 url=http://www.riverbankcomputing.co.uk/software/qscintilla/intro;
@@ -15,6 +15,7 @@
 source=(http://downloads.sourceforge.net/pyqt/QScintilla-gpl-${pkgver}.tar.gz;
 'configure.py.patch'
 'libname.patch')
+changelog=ChangeLog
 md5sums=('28aec903ff48ae541295a4fb9c96f8ea'
  'ea1d11d0a87341d2e55ebef6beeb5663'
  '1ac0fea53f72b0146e0820912ae8c48c')
@@ -51,7 +52,6 @@
 package_qscintilla-qt5() {
   pkgdesc=A port to Qt5 of Neil Hodgson's Scintilla C++ editor class
   depends=('qt5-base')
-  conflicts=('qscintilla')
 
   cd QScintilla-gpl-${pkgver}/Qt4Qt5
   make DESTDIR=${pkgdir} INSTALL_ROOT=${pkgdir} install


[arch-commits] Commit in cryptominisat (5 files)

2015-01-01 Thread Antonio Rojas
Date: Friday, January 2, 2015 @ 01:21:24
  Author: arojas
Revision: 125147

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

Added:
  cryptominisat/repos/
  cryptominisat/repos/community-i686/
  cryptominisat/repos/community-i686/PKGBUILD
(from rev 125146, cryptominisat/trunk/PKGBUILD)
  cryptominisat/repos/community-x86_64/
  cryptominisat/repos/community-x86_64/PKGBUILD
(from rev 125146, cryptominisat/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   25 +
 community-x86_64/PKGBUILD |   25 +
 2 files changed, 50 insertions(+)

Copied: cryptominisat/repos/community-i686/PKGBUILD (from rev 125146, 
cryptominisat/trunk/PKGBUILD)
===
--- repos/community-i686/PKGBUILD   (rev 0)
+++ repos/community-i686/PKGBUILD   2015-01-02 00:21:24 UTC (rev 125147)
@@ -0,0 +1,25 @@
+# Maintainer: Antonio Rojas aro...@archlinux.org
+
+pkgname=cryptominisat
+pkgver=2.9.9
+pkgrel=1
+pkgdesc=SAT solver that aims to become a premier SAT solver with all the 
features and speed of successful SAT solvers, such as MiniSat and PrecoSat
+arch=('i686' 'x86_64')
+url=http://www.msoos.org/cryptominisat2/;
+license=('LGPL')
+depends=('zlib' 'gcc-libs')
+makedepends=()
+source=(https://gforge.inria.fr/frs/download.php/file/33402/cmsat-$pkgver.tar.gz;)
+md5sums=('8735e6295d1e0114ae649588fd82b963')
+
+build() {
+  cd cmsat-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd cmsat-$pkgver
+  make install DESTDIR=$pkgdir
+}
+

Copied: cryptominisat/repos/community-x86_64/PKGBUILD (from rev 125146, 
cryptominisat/trunk/PKGBUILD)
===
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2015-01-02 00:21:24 UTC (rev 125147)
@@ -0,0 +1,25 @@
+# Maintainer: Antonio Rojas aro...@archlinux.org
+
+pkgname=cryptominisat
+pkgver=2.9.9
+pkgrel=1
+pkgdesc=SAT solver that aims to become a premier SAT solver with all the 
features and speed of successful SAT solvers, such as MiniSat and PrecoSat
+arch=('i686' 'x86_64')
+url=http://www.msoos.org/cryptominisat2/;
+license=('LGPL')
+depends=('zlib' 'gcc-libs')
+makedepends=()
+source=(https://gforge.inria.fr/frs/download.php/file/33402/cmsat-$pkgver.tar.gz;)
+md5sums=('8735e6295d1e0114ae649588fd82b963')
+
+build() {
+  cd cmsat-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd cmsat-$pkgver
+  make install DESTDIR=$pkgdir
+}
+


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

2015-01-01 Thread Felix Yan
Date: Friday, January 2, 2015 @ 05:19:00
  Author: fyan
Revision: 228336

upgpkg: aspell-pt 20150101-1

upstream new release

Modified:
  aspell-pt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-02 01:56:40 UTC (rev 228335)
+++ PKGBUILD2015-01-02 04:19:00 UTC (rev 228336)
@@ -2,7 +2,7 @@
 # Maintainer:
 
 pkgname=aspell-pt
-_pkgverPT=20141115
+_pkgverPT=20150101
 _pkgverBR=20090702
 pkgver=$_pkgverPT
 pkgrel=1
@@ -17,8 +17,8 @@
 
http://natura.di.uminho.pt/download/sources/Dictionaries/aspell6/aspell6.pt-$_pkgverPT.tar.bz2
 
http://natura.di.uminho.pt/download/sources/Dictionaries/aspell6/aspell6.pt-preao-$_pkgverPT.tar.bz2)
 sha1sums=('add1db9a6a908dccaad13a7fd85c3b202299ff26'
-  '59e86f87283d982ab7156e28a8d5da8f0a651b66'
-  '4b39e1d9571f0a11a6370945d072baeb7a044512')
+  '2de03006dc41638b7973c3ba99fe47fee783e36c'
+  '258e60669f7bd9d2d06a315ec439b8c446d0f8aa')
 
 build() {
   cd aspell6-pt_BR-$_pkgverBR-0


[arch-commits] Commit in claws-mail/trunk (PKGBUILD git_fixes.diff)

2015-01-01 Thread Andreas Radke
Date: Thursday, January 1, 2015 @ 13:49:11
  Author: andyrtr
Revision: 228325

upgpkg: claws-mail 3.11.1-1

upstream update 3.11.1

Added:
  claws-mail/trunk/git_fixes.diff
Modified:
  claws-mail/trunk/PKGBUILD

+
 PKGBUILD   |   21 +++--
 git_fixes.diff |   55 +++
 2 files changed, 70 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-01-01 11:29:49 UTC (rev 228324)
+++ PKGBUILD2015-01-01 12:49:11 UTC (rev 228325)
@@ -2,8 +2,8 @@
 # Maintainer: Andreas Radke andy...@archlinux.org
 
 pkgname=claws-mail
-pkgver=3.11.0
-pkgrel=2
+pkgver=3.11.1
+pkgrel=1
 pkgdesc=A GTK+ based e-mail client.
 arch=('i686' 'x86_64')
 license=('GPL3')
@@ -10,7 +10,7 @@
 url=http://www.claws-mail.org;
 depends=('gtk2' 'gnutls' 'startup-notification' 'enchant' 'gpgme' 'libetpan' 
'compface'
  'libsm' 'dbus-glib' 'hicolor-icon-theme' 'desktop-file-utils')
-makedepends=('spamassassin' 'bogofilter' 'valgrind' 'intltool'
+makedepends=('spamassassin' 'bogofilter' 'valgrind'
  # dependencies for plugins
  'libsoup' 'libgdata' 'webkitgtk2' 'libnotify' 'libcanberra' 
'poppler-glib' 'pygtk') 
  #'libchamplain' needed for geolocation plugin, disabled for now - 
most time it's not compatible with current gnome releases
@@ -34,11 +34,20 @@
 conflicts=('claws-mail-extra-plugins')
 provides=('claws')
 install=claws-mail.install
-source=(http://downloads.sourceforge.net/sourceforge/claws-mail/${pkgname}-${pkgver}.tar.xz{,.asc})
-sha1sums=('1fc919e7d4357408a04131c4195878ea920de4f0'
-  'SKIP')
+source=(http://downloads.sourceforge.net/sourceforge/claws-mail/${pkgname}-${pkgver}.tar.xz{,.asc}
+git_fixes.diff)
+sha1sums=('b0c07906043f7a3ec726c7a96d6dcfc3c148b9cc'
+  'SKIP'
+  '0e1bd9d696d531040f7b15b5b6164fc44784fdfc')
 validpgpkeys=('8B3B297A03468356692F8D592CD716D654D6BBD4') # Paul 
p...@claws-mail.org
 
+prepare() {
+  cd ${pkgname}-${pkgver}
+  # fix .desktop file creation
+  patch -Np1 -i $srcdir/git_fixes.diff
+  autoreconf -vfi
+}
+
 build() {
   cd ${pkgname}-${pkgver}
  

Added: git_fixes.diff
===
--- git_fixes.diff  (rev 0)
+++ git_fixes.diff  2015-01-01 12:49:11 UTC (rev 228325)
@@ -0,0 +1,55 @@
+From cfde37a35a8b9d54bd680245a7d37a63d6779706 Mon Sep 17 00:00:00 2001
+From: Ricardo Mones rica...@mones.org
+Date: Tue, 28 Oct 2014 16:59:16 +0100
+Subject: [PATCH] Fix categories and recover keywords in desktop file
+
+---
+ claws-mail.desktop |3 ++-
+ 1 file changed, 2 insertions(+), 1 deletion(-)
+
+diff --git a/claws-mail.desktop b/claws-mail.desktop
+index 116c9cb..df0bb00 100644
+--- a/claws-mail.desktop
 b/claws-mail.desktop
+@@ -18,7 +18,8 @@ GenericName[sk]=Poštový klient
+ GenericName[sv]=E-postklient
+ Exec=claws-mail %u
+ Icon=claws-mail
+-Categories=Network;Office;Email;
++Categories=Network;Email;
++Keywords=lightweight;fast;gui;extensible;plugin;pop;pop3;imap;imap4;nntp;news;
+ Comment=Lightweight and Fast GTK+ based Mail Client
+ Comment[ca]=Client de correu electrònic rà pid i lleuger basat en GTK+
+ Comment[cs]=Lehký a rychlý mailový klient založený na GTK+
+-- 
+1.7.10.4
+
+From 44131ac697f1a55f65cf3916b0ca09ff8d3c1af8 Mon Sep 17 00:00:00 2001
+From: Ricardo Mones rica...@mones.org
+Date: Tue, 28 Oct 2014 17:20:23 +0100
+Subject: [PATCH] Recover desktop file installation
+
+---
+ Makefile.am |5 +
+ 1 file changed, 5 insertions(+)
+
+diff --git a/Makefile.am b/Makefile.am
+index 6b221fc..3fdb4aa 100644
+--- a/Makefile.am
 b/Makefile.am
+@@ -34,6 +34,11 @@ pixmap64_DATA=claws-mail-64x64.png
+ pixmap128dir=$(datadir)/icons/hicolor/128x128/apps
+ pixmap128_DATA=claws-mail-128x128.png
+ 
++# when changing the name or location of the .desktop file,
++# also update src/common/Makefile.am
++gnomapdir = $(datadir)/applications
++gnomap_DATA=claws-mail.desktop
++
+ rename-icons:
+   @cd $(DESTDIR)$(datadir)/icons/hicolor/64x64/apps  \
+ mv claws-mail-64x64.png claws-mail.png
+-- 
+1.7.10.4
+
+


[arch-commits] Commit in kodi/trunk (PKGBUILD kodi.install)

2015-01-01 Thread Ike Devolder
Date: Thursday, January 1, 2015 @ 09:46:41
  Author: idevolder
Revision: 125111

upgpkg: kodi 14.0-1

Modified:
  kodi/trunk/PKGBUILD
  kodi/trunk/kodi.install

--+
 PKGBUILD |   77 -
 kodi.install |7 -
 2 files changed, 22 insertions(+), 62 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-01-01 08:44:50 UTC (rev 125110)
+++ PKGBUILD2015-01-01 08:46:41 UTC (rev 125111)
@@ -12,31 +12,22 @@
 _prefix=/usr
 
 pkgbase=kodi
-pkgname=('kodi' 'kodi-texturepacker')
+pkgname=('kodi' 'kodi-eventclients')
 pkgver=14.0
 _codename=Helix
-pkgrel=0.5
+pkgrel=1
 arch=('i686' 'x86_64')
 url=http://kodi.tv;
 license=('GPL2')
 makedepends=(
-'bluez-libs' 'curl' 'glew' 'hicolor-icon-theme' 'libaacs'
-'libass' 'libbluray' 'libcdio' 'libmariadbclient' 'libmicrohttpd'
-'libpulse' 'libssh' 'libva' 'libvdpau' 'libxrandr'
-'libxslt' 'lzo' 'libgl' 'python2-pillow' 'python2-pybluez'
-'python2-simplejson' 'rtmpdump' 'smbclient' 'taglib' 'tinyxml'
-'yajl'
-'afpfs-ng' 'boost' 'cmake' 'doxygen' 'git' 'gperf' 'jasper'
-'java-runtime' 'libcec' 'libnfs' 'libplist' 'nasm' 'shairplay'
-'swig' 'unzip' 'upower' 'zip'
-'libmpeg2' 'libmodplug'
-'sdl2' 'sdl_image'
+  'afpfs-ng' 'bluez-libs' 'boost' 'cmake' 'curl' 'cwiid' 'doxygen' 'git' 'glew'
+  'gperf' 'hicolor-icon-theme' 'jasper' 'java-runtime' 'libaacs' 'libass'
+  'libbluray' 'libcdio' 'libcec' 'libgl' 'libmariadbclient' 'libmicrohttpd'
+  'libmodplug' 'libmpeg2' 'libnfs' 'libplist' 'libpulse' 'libssh' 'libva'
+  'libvdpau' 'libxrandr' 'libxslt' 'lzo' 'nasm' 'nss-mdns' 'python2-pillow'
+  'python2-pybluez' 'python2-simplejson' 'rtmpdump' 'sdl2' 'sdl_image'
+  'shairplay' 'smbclient' 'swig' 'taglib' 'tinyxml' 'unzip' 'upower' 'yajl' 
'zip'
 )
-# encoders
-# flac
-# lame
-# libmodplug
-# libvorbis
 source=(
   
$pkgname-$pkgver-$_codename.tar.gz::https://github.com/xbmc/xbmc/archive/$pkgver-$_codename.tar.gz;
 )
@@ -47,7 +38,6 @@
 prepare() {
   cd $srcdir/xbmc-$pkgver-$_codename
 
-
   find -type f -name *.py -exec sed 's|^#!.*python$|#!/usr/bin/python2|' -i 
{} +
   sed 's|^#!.*python$|#!/usr/bin/python2|' -i 
tools/depends/native/rpl-native/rpl
sed 's/python/python2/' -i tools/Linux/kodi.sh.in
@@ -57,40 +47,19 @@
   cd $srcdir/xbmc-$pkgver-$_codename
 
# Bootstrapping
-  ./bootstrap
+  MAKEFLAGS=-j1 ./bootstrap
 
+  #./configure --help
+  #return 1
+
   # Configuring XBMC
   export PYTHON_VERSION=2  # external python v2
   ./configure --prefix=$_prefix --exec-prefix=$_prefix \
 --disable-debug \
 --enable-optimizations \
---enable-gl \
---enable-vaapi \
---enable-vdpau \
---enable-joystick \
---enable-xrandr \
---enable-rsxs \
---enable-projectm \
---enable-x11 \
---enable-pulse \
---enable-rtmp \
---enable-samba \
---enable-nfs \
---enable-afpclient \
---enable-airplay \
---enable-airtunes \
---enable-ffmpeg-libvorbis \
---enable-dvdcss \
---disable-hal \
---enable-avahi \
---enable-webserver \
---enable-optical-drive \
 --enable-libbluray \
 --enable-texturepacker \
---enable-udev \
---enable-libusb \
---enable-libcec \
-   --enable-external-libraries \
+--enable-external-libraries \
 --with-lirc-device=/run/lirc/lircd
 
   # Now (finally) build
@@ -143,19 +112,17 @@
   done
 }
 
-package_kodi-texturepacker() {
-  pkgdesc=A tool to compile all images used in a skin into a single file.
+package_kodi-eventclients() {
+  pkgdesc=Kodi Event Clients
 
-  depends=(
-'lzo'
-'sdl_image'
-  )
+  depends=('cwiid')
 
   cd $srcdir/xbmc-$pkgver-$_codename
 
-   install -Dm755 
$srcdir/xbmc-$pkgver-$_codename/tools/TexturePacker/TexturePacker \
-   ${pkgdir}${_prefix}/lib/kodi/TexturePacker
+  make DESTDIR=$pkgdir eventclients WII_EXTRA_OPTS=-DCWIID_OLD
 
-  install -dm755 ${pkgdir}${_prefix}/bin
-  ln -sf ${_prefix}/lib/kodi/TexturePacker 
${pkgdir}${_prefix}/bin/kodi-TexturePacker
+  install -dm755 $pkgdir/usr/share/$pkgbase/eventclients
+  mv $pkgdir/kodi/* $pkgdir/usr/share/$pkgbase/eventclients
+  rmdir $pkgdir/kodi
 }
+

Modified: kodi.install
===
--- kodi.install2015-01-01 08:44:50 UTC (rev 125110)
+++ kodi.install2015-01-01 08:46:41 UTC (rev 125111)
@@ -1,16 +1,13 @@
 post_install() {
   update_icons
-  update_autostart
 }
 
 post_upgrade() {
   update_icons
-  update_autostart
 }
 
 post_remove() {
   update_icons
-  update_autostart
 }
 
 update_icons() {
@@ -18,7 +15,3 @@
   type -p update-desktop-database  /dev/null 21  
usr/bin/update-desktop-database -q usr/share/applications
   return 0
 }
-
-update_autostart() {
-  echo To autostart xbmc standalone read: 
https://wiki.archlinux.org/index.php/Xbmc#Autostarting_at_boot;
-}


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

2015-01-01 Thread Jan Steffens
Date: Thursday, January 1, 2015 @ 12:28:48
  Author: heftig
Revision: 125119

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

Added:
  simple-scan/repos/community-i686/PKGBUILD
(from rev 125118, simple-scan/trunk/PKGBUILD)
  simple-scan/repos/community-i686/simple-scan.install
(from rev 125118, simple-scan/trunk/simple-scan.install)
  simple-scan/repos/community-x86_64/PKGBUILD
(from rev 125118, simple-scan/trunk/PKGBUILD)
  simple-scan/repos/community-x86_64/simple-scan.install
(from rev 125118, simple-scan/trunk/simple-scan.install)
Deleted:
  simple-scan/repos/community-i686/PKGBUILD
  simple-scan/repos/community-i686/simple-scan.install
  simple-scan/repos/community-x86_64/PKGBUILD
  simple-scan/repos/community-x86_64/simple-scan.install

--+
 /PKGBUILD|   60 +
 /simple-scan.install |   36 +++
 community-i686/PKGBUILD  |   30 
 community-i686/simple-scan.install   |   18 -
 community-x86_64/PKGBUILD|   30 
 community-x86_64/simple-scan.install |   18 -
 6 files changed, 96 insertions(+), 96 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-01-01 11:27:46 UTC (rev 125118)
+++ community-i686/PKGBUILD 2015-01-01 11:28:48 UTC (rev 125119)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Thomas Dziedzic  gostrc at gmail 
-# Contributor: Jaroslav Lichtblau dragonl...@aur.archlinux.org
-# Contributor: Joeny Ang ang(dot)joeny(at)gmail(dot)com
-
-pkgname=simple-scan
-pkgver=3.14.0
-pkgrel=1
-pkgdesc='Simple scanning utility'
-arch=('i686' 'x86_64')
-url='http://launchpad.net/simple-scan'
-license=('GPL3')
-depends=('sane' 'dconf' 'gtk3' 'colord' 'hicolor-icon-theme')
-makedepends=('yelp-tools' 'intltool' 'vala')
-install=$pkgname.install
-source=(https://launchpad.net/$pkgname/${pkgver:0:4}/$pkgver/+download/$pkgname-$pkgver.tar.xz)
-sha256sums=('9a8afa0d72ef889a79c6e0eec490ccef535106d7bf60ece4ba555bf7368399f1')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure \
---prefix=/usr \
---disable-schemas-compile
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: simple-scan/repos/community-i686/PKGBUILD (from rev 125118, 
simple-scan/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-01-01 11:28:48 UTC (rev 125119)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Thomas Dziedzic  gostrc at gmail 
+# Contributor: Jaroslav Lichtblau dragonl...@aur.archlinux.org
+# Contributor: Joeny Ang ang(dot)joeny(at)gmail(dot)com
+
+pkgname=simple-scan
+pkgver=3.14.2
+pkgrel=1
+pkgdesc='Simple scanning utility'
+arch=('i686' 'x86_64')
+url='http://launchpad.net/simple-scan'
+license=('GPL3')
+depends=('sane' 'dconf' 'gtk3' 'colord' 'hicolor-icon-theme')
+makedepends=('yelp-tools' 'intltool' 'vala')
+install=$pkgname.install
+source=(https://launchpad.net/$pkgname/${pkgver:0:4}/$pkgver/+download/$pkgname-$pkgver.tar.xz)
+sha256sums=('d46caaafd2dfe46cf7e022363842cf3da0721b70768de5d29c808d1e5953a6a3')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure \
+--prefix=/usr \
+--disable-schemas-compile
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: community-i686/simple-scan.install
===
--- community-i686/simple-scan.install  2015-01-01 11:27:46 UTC (rev 125118)
+++ community-i686/simple-scan.install  2015-01-01 11:28:48 UTC (rev 125119)
@@ -1,18 +0,0 @@
-post_install() {
-  usr/bin/glib-compile-schemas usr/share/glib-2.0/schemas
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-pre_upgrade() {
-  if (( $(vercmp $2 3.1.3)  0 )); then
-usr/sbin/gconfpkg --uninstall simple-scan
-  fi
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: simple-scan/repos/community-i686/simple-scan.install (from rev 125118, 
simple-scan/trunk/simple-scan.install)
===
--- community-i686/simple-scan.install  (rev 0)
+++ community-i686/simple-scan.install  2015-01-01 11:28:48 UTC (rev 125119)
@@ -0,0 +1,18 @@
+post_install() {
+  usr/bin/glib-compile-schemas usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+pre_upgrade() {
+  if (( $(vercmp $2 3.1.3)  0 )); then
+usr/sbin/gconfpkg --uninstall simple-scan
+  fi
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-01-01 11:27:46 UTC (rev 125118)
+++ 

[arch-commits] Commit in meld/repos/extra-any (4 files)

2015-01-01 Thread Jan Steffens
Date: Thursday, January 1, 2015 @ 12:29:49
  Author: heftig
Revision: 228324

archrelease: copy trunk to extra-any

Added:
  meld/repos/extra-any/PKGBUILD
(from rev 228323, meld/trunk/PKGBUILD)
  meld/repos/extra-any/meld.install
(from rev 228323, meld/trunk/meld.install)
Deleted:
  meld/repos/extra-any/PKGBUILD
  meld/repos/extra-any/meld.install

--+
 PKGBUILD |   70 -
 meld.install |   28 +++---
 2 files changed, 49 insertions(+), 49 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-01-01 11:28:08 UTC (rev 228323)
+++ PKGBUILD2015-01-01 11:29:49 UTC (rev 228324)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-# Contributor: Gaetan Bisson bis...@archlinux.org
-# Contributor: Daniel J Griffiths ghost1...@archlinux.us
-# Contributor: Douglas Soares de Andrade doug...@archlinux.org
-
-pkgname=meld
-pkgver=3.12.2
-pkgrel=1
-pkgdesc='Visual diff and merge tool'
-url='http://meldmerge.org/'
-license=(GPL)
-arch=(any)
-makedepends=(intltool itstool)
-install=meld.install
-depends=(python2-gobject python2-cairo gtksourceview3 hicolor-icon-theme 
desktop-file-utils
- gsettings-desktop-schemas)
-optdepends=('python2-dbus: open a new tab in an already running instance')
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-${pkgver}.tar.xz;)
-sha1sums=('693ae87bcd0080d938d16197c3d46ffe1a4de42d')
-
-# Meld does not support Python 3. The build succeeds, but
-# the main executable checks the version and errors out.
-
-build() {
-  cd $pkgname-$pkgver
-  python2 setup.py build
-}
-
-package() {
-  cd $pkgname-$pkgver
-  # using --skip-build breaks install
-  python2 setup.py --no-update-icon-cache --no-compile-schemas \
-install --prefix=/usr --root=$pkgdir --optimize=1
-}

Copied: meld/repos/extra-any/PKGBUILD (from rev 228323, meld/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-01-01 11:29:49 UTC (rev 228324)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Contributor: Gaetan Bisson bis...@archlinux.org
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+# Contributor: Douglas Soares de Andrade doug...@archlinux.org
+
+pkgname=meld
+pkgver=3.12.3
+pkgrel=1
+pkgdesc='Visual diff and merge tool'
+url='http://meldmerge.org/'
+license=(GPL)
+arch=(any)
+makedepends=(intltool itstool)
+install=meld.install
+depends=(python2-gobject python2-cairo gtksourceview3 hicolor-icon-theme 
desktop-file-utils
+ gsettings-desktop-schemas)
+optdepends=('python2-dbus: open a new tab in an already running instance')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-${pkgver}.tar.xz;)
+sha1sums=('01d742bf5a12879bc1591110f3ee90496195b76b')
+
+# Meld does not support Python 3. The build succeeds, but
+# the main executable checks the version and errors out.
+
+build() {
+  cd $pkgname-$pkgver
+  python2 setup.py build
+}
+
+package() {
+  cd $pkgname-$pkgver
+  # using --skip-build breaks install
+  python2 setup.py --no-update-icon-cache --no-compile-schemas \
+install --prefix=/usr --root=$pkgdir --optimize=1
+}

Deleted: meld.install
===
--- meld.install2015-01-01 11:28:08 UTC (rev 228323)
+++ meld.install2015-01-01 11:29:49 UTC (rev 228324)
@@ -1,14 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-  glib-compile-schemas usr/share/glib-2.0/schemas
-  update-desktop-database -q
-  update-mime-database usr/share/mime  /dev/null
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: meld/repos/extra-any/meld.install (from rev 228323, 
meld/trunk/meld.install)
===
--- meld.install(rev 0)
+++ meld.install2015-01-01 11:29:49 UTC (rev 228324)
@@ -0,0 +1,14 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+  glib-compile-schemas usr/share/glib-2.0/schemas
+  update-desktop-database -q
+  update-mime-database usr/share/mime  /dev/null
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}


[arch-commits] Commit in python-setuptools/repos/extra-any (PKGBUILD PKGBUILD)

2015-01-01 Thread Felix Yan
Date: Thursday, January 1, 2015 @ 12:07:48
  Author: fyan
Revision: 228320

archrelease: copy trunk to extra-any

Added:
  python-setuptools/repos/extra-any/PKGBUILD
(from rev 228319, python-setuptools/trunk/PKGBUILD)
Deleted:
  python-setuptools/repos/extra-any/PKGBUILD

--+
 PKGBUILD |  140 ++---
 1 file changed, 70 insertions(+), 70 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-01-01 11:07:37 UTC (rev 228319)
+++ PKGBUILD2015-01-01 11:07:48 UTC (rev 228320)
@@ -1,70 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez an...@archlinux.org
-# Maintainer: Felix Yan felixonm...@archlinux.org
-
-pkgbase=python-setuptools
-pkgname=('python-setuptools' 'python2-setuptools')
-pkgver=10.0.1
-pkgrel=1
-epoch=1
-pkgdesc=Easily download, build, install, upgrade, and uninstall Python 
packages
-arch=('any')
-license=('PSF')
-url=http://pypi.python.org/pypi/setuptools;
-makedepends=('python' 'python2')
-checkdepends=('python-mock' 'python2-mock' 'python-pytest' 'python2-pytest' 
'git')
-source=(http://pypi.python.org/packages/source/s/setuptools/setuptools-${pkgver}.tar.gz;)
-sha512sums=('209f1e7a415f0aaf963d0dd4e40bb0aa50173087affb76c68f747d1429ead314207c8d3b9521ea7abec25ed375a019bd0a0a1b6c97274e404a6cc81a4f629267')
-
-prepare() {
-  cp -a setuptools-${pkgver}{,-python2}
-
-  cd ${srcdir}/setuptools-${pkgver}
-  sed -i -e s|^#\!.*/usr/bin/python|#!/usr/bin/python3| 
setuptools/tests/test_resources.py
-  sed -i -e s|^#\!.*/usr/bin/env python|#!/usr/bin/env python3| 
setuptools/command/easy_install.py
-
-  cd ${srcdir}/setuptools-${pkgver}-python2
-  sed -i -e s|^#\!.*/usr/bin/python|#!/usr/bin/python2| 
setuptools/tests/test_resources.py
-  sed -i -e s|^#\!.*/usr/bin/env python|#!/usr/bin/env python2| 
setuptools/command/easy_install.py
-}
-
-build() {
-  # Build python 3 module
-  cd ${srcdir}/setuptools-${pkgver}
-  python3 setup.py build
-
-  # Build python 2 module
-  cd ${srcdir}/setuptools-${pkgver}-python2
-  python2 setup.py build
-}
-
-check() {
-  # Workaround UTF-8 tests by setting LC_CTYPE
-
-  # Check python3 module
-  cd ${srcdir}/setuptools-${pkgver}
-  LC_CTYPE=en_US.utf8 python3 setup.py ptr
-
-  # Check python2 module
-  cd ${srcdir}/setuptools-${pkgver}-python2
-  LC_CTYPE=en_US.utf8 python2 setup.py ptr
-}
- 
-package_python-setuptools() {
-  depends=('python')
-  provides=('python-distribute')
-  replaces=('python-distribute')
-
-  cd ${srcdir}/setuptools-${pkgver}
-  python3 setup.py install --prefix=/usr --root=${pkgdir} --optimize=1 
--skip-build
-}
- 
-package_python2-setuptools() {
-  depends=('python2')
-  provides=('python2-distribute' 'setuptools')
-  replaces=('python2-distribute' 'setuptools')
-
-  cd ${srcdir}/setuptools-${pkgver}-python2
-  python2 setup.py install --prefix=/usr --root=${pkgdir} --optimize=1 
--skip-build
-  rm ${pkgdir}/usr/bin/easy_install
-}

Copied: python-setuptools/repos/extra-any/PKGBUILD (from rev 228319, 
python-setuptools/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-01-01 11:07:48 UTC (rev 228320)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org
+# Maintainer: Felix Yan felixonm...@archlinux.org
+
+pkgbase=python-setuptools
+pkgname=('python-setuptools' 'python2-setuptools')
+pkgver=10.1
+pkgrel=1
+epoch=1
+pkgdesc=Easily download, build, install, upgrade, and uninstall Python 
packages
+arch=('any')
+license=('PSF')
+url=http://pypi.python.org/pypi/setuptools;
+makedepends=('python' 'python2')
+checkdepends=('python-mock' 'python2-mock' 'python-pytest' 'python2-pytest' 
'git')
+source=(http://pypi.python.org/packages/source/s/setuptools/setuptools-${pkgver}.tar.gz;)
+sha512sums=('47fc9c4b1ef33e7f5ced045e00f35638330168dcea48569980e140aaa2eaa4a3d2c1c61c44f7d623efb9be9efec7c7e12bc4850a6a0a7dd69fd5f59427a74828')
+
+prepare() {
+  cp -a setuptools-${pkgver}{,-python2}
+
+  cd ${srcdir}/setuptools-${pkgver}
+  sed -i -e s|^#\!.*/usr/bin/python|#!/usr/bin/python3| 
setuptools/tests/test_resources.py
+  sed -i -e s|^#\!.*/usr/bin/env python|#!/usr/bin/env python3| 
setuptools/command/easy_install.py
+
+  cd ${srcdir}/setuptools-${pkgver}-python2
+  sed -i -e s|^#\!.*/usr/bin/python|#!/usr/bin/python2| 
setuptools/tests/test_resources.py
+  sed -i -e s|^#\!.*/usr/bin/env python|#!/usr/bin/env python2| 
setuptools/command/easy_install.py
+}
+
+build() {
+  # Build python 3 module
+  cd ${srcdir}/setuptools-${pkgver}
+  python3 setup.py build
+
+  # Build python 2 module
+  cd ${srcdir}/setuptools-${pkgver}-python2
+  python2 setup.py build
+}
+
+check() {
+  # Workaround UTF-8 tests by setting LC_CTYPE
+
+  # Check python3 module
+  cd ${srcdir}/setuptools-${pkgver}
+  LC_CTYPE=en_US.utf8 python3 setup.py ptr
+
+  # Check python2 module
+  cd ${srcdir}/setuptools-${pkgver}-python2
+  

[arch-commits] Commit in kodi-audioencoder-wav/repos (4 files)

2015-01-01 Thread Ike Devolder
Date: Thursday, January 1, 2015 @ 09:52:31
  Author: idevolder
Revision: 125117

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

Added:
  kodi-audioencoder-wav/repos/community-testing-i686/
  kodi-audioencoder-wav/repos/community-testing-i686/PKGBUILD
(from rev 125116, kodi-audioencoder-wav/trunk/PKGBUILD)
  kodi-audioencoder-wav/repos/community-testing-x86_64/
  kodi-audioencoder-wav/repos/community-testing-x86_64/PKGBUILD
(from rev 125116, kodi-audioencoder-wav/trunk/PKGBUILD)

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

Copied: kodi-audioencoder-wav/repos/community-testing-i686/PKGBUILD (from rev 
125116, kodi-audioencoder-wav/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2015-01-01 08:52:31 UTC (rev 125117)
@@ -0,0 +1,35 @@
+# $Id
+# Maintainer: BlackEagle ike.devol...@gmail.com
+
+pkgname=kodi-audioencoder-wav
+pkgver=20141102.40aaedf
+pkgrel=1
+pkgdesc=kodi audioencoder addon for wav
+arch=('i686' 'x86_64')
+url='https://github.com/xbmc/audioencoder.wav'
+license=('GPL')
+depends=('kodi')
+makedepends=('git' 'cmake')
+source=($pkgname::git://github.com/xbmc/audioencoder.wav.git)
+sha256sums=('SKIP')
+
+pkgver() {
+   cd $pkgname
+   git log -1 --date=short --format=%cd.%h | tr -d '-'
+}
+
+build() {
+   cd $pkgname
+   cmake \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DBUILD_SHARED_LIBS=1 \
+   -DUSE_LTO=1
+   make
+}
+
+package() {
+   cd $pkgname
+   make DESTDIR=$pkgdir/ install
+}
+

Copied: kodi-audioencoder-wav/repos/community-testing-x86_64/PKGBUILD (from rev 
125116, kodi-audioencoder-wav/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2015-01-01 08:52:31 UTC (rev 125117)
@@ -0,0 +1,35 @@
+# $Id
+# Maintainer: BlackEagle ike.devol...@gmail.com
+
+pkgname=kodi-audioencoder-wav
+pkgver=20141102.40aaedf
+pkgrel=1
+pkgdesc=kodi audioencoder addon for wav
+arch=('i686' 'x86_64')
+url='https://github.com/xbmc/audioencoder.wav'
+license=('GPL')
+depends=('kodi')
+makedepends=('git' 'cmake')
+source=($pkgname::git://github.com/xbmc/audioencoder.wav.git)
+sha256sums=('SKIP')
+
+pkgver() {
+   cd $pkgname
+   git log -1 --date=short --format=%cd.%h | tr -d '-'
+}
+
+build() {
+   cd $pkgname
+   cmake \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DBUILD_SHARED_LIBS=1 \
+   -DUSE_LTO=1
+   make
+}
+
+package() {
+   cd $pkgname
+   make DESTDIR=$pkgdir/ install
+}
+


[arch-commits] Commit in kodi-audioencoder-vorbis/repos (4 files)

2015-01-01 Thread Ike Devolder
Date: Thursday, January 1, 2015 @ 09:51:47
  Author: idevolder
Revision: 125116

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

Added:
  kodi-audioencoder-vorbis/repos/community-testing-i686/
  kodi-audioencoder-vorbis/repos/community-testing-i686/PKGBUILD
(from rev 125115, kodi-audioencoder-vorbis/trunk/PKGBUILD)
  kodi-audioencoder-vorbis/repos/community-testing-x86_64/
  kodi-audioencoder-vorbis/repos/community-testing-x86_64/PKGBUILD
(from rev 125115, kodi-audioencoder-vorbis/trunk/PKGBUILD)

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

Copied: kodi-audioencoder-vorbis/repos/community-testing-i686/PKGBUILD (from 
rev 125115, kodi-audioencoder-vorbis/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2015-01-01 08:51:47 UTC (rev 125116)
@@ -0,0 +1,35 @@
+# $Id
+# Maintainer: BlackEagle ike.devol...@gmail.com
+
+pkgname=kodi-audioencoder-vorbis
+pkgver=20141224.787d4a0
+pkgrel=1
+pkgdesc=kodi audioencoder addon for ogg/vorbis
+arch=('i686' 'x86_64')
+url='https://github.com/xbmc/audioencoder.vorbis'
+license=('GPL')
+depends=('kodi')
+makedepends=('git' 'cmake')
+source=($pkgname::git://github.com/xbmc/audioencoder.vorbis.git)
+sha256sums=('SKIP')
+
+pkgver() {
+   cd $pkgname
+   git log -1 --date=short --format=%cd.%h | tr -d '-'
+}
+
+build() {
+   cd $pkgname
+   cmake \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DBUILD_SHARED_LIBS=1 \
+   -DUSE_LTO=1
+   make
+}
+
+package() {
+   cd $pkgname
+   make DESTDIR=$pkgdir/ install
+}
+

Copied: kodi-audioencoder-vorbis/repos/community-testing-x86_64/PKGBUILD (from 
rev 125115, kodi-audioencoder-vorbis/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2015-01-01 08:51:47 UTC (rev 125116)
@@ -0,0 +1,35 @@
+# $Id
+# Maintainer: BlackEagle ike.devol...@gmail.com
+
+pkgname=kodi-audioencoder-vorbis
+pkgver=20141224.787d4a0
+pkgrel=1
+pkgdesc=kodi audioencoder addon for ogg/vorbis
+arch=('i686' 'x86_64')
+url='https://github.com/xbmc/audioencoder.vorbis'
+license=('GPL')
+depends=('kodi')
+makedepends=('git' 'cmake')
+source=($pkgname::git://github.com/xbmc/audioencoder.vorbis.git)
+sha256sums=('SKIP')
+
+pkgver() {
+   cd $pkgname
+   git log -1 --date=short --format=%cd.%h | tr -d '-'
+}
+
+build() {
+   cd $pkgname
+   cmake \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DBUILD_SHARED_LIBS=1 \
+   -DUSE_LTO=1
+   make
+}
+
+package() {
+   cd $pkgname
+   make DESTDIR=$pkgdir/ install
+}
+


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

2015-01-01 Thread Jan Steffens
Date: Thursday, January 1, 2015 @ 12:37:11
  Author: heftig
Revision: 125121

archrelease: copy trunk to community-any

Added:
  jruby/repos/community-any/PKGBUILD
(from rev 125120, jruby/trunk/PKGBUILD)
Deleted:
  jruby/repos/community-any/PKGBUILD

--+
 PKGBUILD |   70 ++---
 1 file changed, 35 insertions(+), 35 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-01-01 11:30:17 UTC (rev 125120)
+++ PKGBUILD2015-01-01 11:37:11 UTC (rev 125121)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-# Contributor: FaziBear fazib...@gmail.com
-
-pkgname=jruby
-pkgver=1.7.16.1
-pkgrel=1
-pkgdesc=100% pure-Java implementation of the Ruby programming language
-arch=(any)
-url=http://www.jruby.org/;
-license=(EPL GPL2 LGPL2.1 custom)
-depends=(java-runtime-headless bash)
-options=(!strip)
-noextract=($pkgname-bin-${pkgver}.tar.gz)
-source=(http://jruby.org.s3.amazonaws.com/downloads/$pkgver/$pkgname-bin-${pkgver}.tar.gz)
-sha256sums=('855ed9f2c3c259a309f46b2c2d942615e87b1c3b5dda6911b739ad5a7e688f5b')
-
-package() {
-  cd $pkgdir
-
-  mkdir opt
-  bsdtar -C opt -xf $srcdir/$pkgname-bin-$pkgver.tar.gz
-  mv opt/jruby-$pkgver opt/jruby
-
-  find opt/jruby -regextype posix-extended -regex '.*\.(bat|dll|exe)' -delete
-  rm -r opt/jruby/lib/jni/{Darwin,*-SunOS,*-Windows,*-AIX,*-FreeBSD}
-
-  mkdir -p usr/bin
-  for _file in jirb{,_swing} jgem jruby{,c}; do
-ln -s ../../opt/jruby/bin/$_file usr/bin/$_file
-  done
-
-  mkdir -p usr/share/licenses/$pkgname
-  ln -s ../../../../opt/jruby/COPYING usr/share/licenses/$pkgname/COPYING
-}

Copied: jruby/repos/community-any/PKGBUILD (from rev 125120, 
jruby/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-01-01 11:37:11 UTC (rev 125121)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Contributor: FaziBear fazib...@gmail.com
+
+pkgname=jruby
+pkgver=1.7.18
+pkgrel=1
+pkgdesc=100% pure-Java implementation of the Ruby programming language
+arch=(any)
+url=http://www.jruby.org/;
+license=(EPL GPL2 LGPL2.1 custom)
+depends=(java-runtime-headless bash)
+options=(!strip)
+noextract=($pkgname-bin-${pkgver}.tar.gz)
+source=(http://jruby.org.s3.amazonaws.com/downloads/$pkgver/$pkgname-bin-${pkgver}.tar.gz)
+sha256sums=('eba6332d301c64bc5623c1d6f161762ef4fb9b38202350cdfc4e105775fbbf3c')
+
+package() {
+  cd $pkgdir
+
+  mkdir opt
+  bsdtar -C opt -xf $srcdir/$pkgname-bin-$pkgver.tar.gz
+  mv opt/jruby-$pkgver opt/jruby
+
+  find opt/jruby -regextype posix-extended -regex '.*\.(bat|dll|exe)' -delete
+  rm -r opt/jruby/lib/jni/{Darwin,*-SunOS,*-Windows,*-AIX,*-FreeBSD}
+
+  mkdir -p usr/bin
+  for _file in jirb{,_swing} jgem jruby{,c}; do
+ln -s ../../opt/jruby/bin/$_file usr/bin/$_file
+  done
+
+  mkdir -p usr/share/licenses/$pkgname
+  ln -s ../../../../opt/jruby/COPYING usr/share/licenses/$pkgname/COPYING
+}


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

2015-01-01 Thread Jan Steffens
Date: Thursday, January 1, 2015 @ 12:28:08
  Author: heftig
Revision: 228323

3.12.3

Modified:
  meld/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-01 11:26:36 UTC (rev 228322)
+++ PKGBUILD2015-01-01 11:28:08 UTC (rev 228323)
@@ -5,7 +5,7 @@
 # Contributor: Douglas Soares de Andrade doug...@archlinux.org
 
 pkgname=meld
-pkgver=3.12.2
+pkgver=3.12.3
 pkgrel=1
 pkgdesc='Visual diff and merge tool'
 url='http://meldmerge.org/'
@@ -17,7 +17,7 @@
  gsettings-desktop-schemas)
 optdepends=('python2-dbus: open a new tab in an already running instance')
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-${pkgver}.tar.xz;)
-sha1sums=('693ae87bcd0080d938d16197c3d46ffe1a4de42d')
+sha1sums=('01d742bf5a12879bc1591110f3ee90496195b76b')
 
 # Meld does not support Python 3. The build succeeds, but
 # the main executable checks the version and errors out.


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

2015-01-01 Thread Jan Steffens
Date: Thursday, January 1, 2015 @ 12:30:17
  Author: heftig
Revision: 125120

1.7.18

Modified:
  jruby/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-01 11:28:48 UTC (rev 125119)
+++ PKGBUILD2015-01-01 11:30:17 UTC (rev 125120)
@@ -3,7 +3,7 @@
 # Contributor: FaziBear fazib...@gmail.com
 
 pkgname=jruby
-pkgver=1.7.16.1
+pkgver=1.7.18
 pkgrel=1
 pkgdesc=100% pure-Java implementation of the Ruby programming language
 arch=(any)
@@ -13,7 +13,7 @@
 options=(!strip)
 noextract=($pkgname-bin-${pkgver}.tar.gz)
 
source=(http://jruby.org.s3.amazonaws.com/downloads/$pkgver/$pkgname-bin-${pkgver}.tar.gz)
-sha256sums=('855ed9f2c3c259a309f46b2c2d942615e87b1c3b5dda6911b739ad5a7e688f5b')
+sha256sums=('eba6332d301c64bc5623c1d6f161762ef4fb9b38202350cdfc4e105775fbbf3c')
 
 package() {
   cd $pkgdir


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

2015-01-01 Thread Sébastien Luttringer
Date: Thursday, January 1, 2015 @ 13:03:16
  Author: seblu
Revision: 125122

upgpkg: rxvt-unicode 9.21-1

Modified:
  rxvt-unicode/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-01 11:37:11 UTC (rev 125121)
+++ PKGBUILD2015-01-01 12:03:16 UTC (rev 125122)
@@ -6,8 +6,8 @@
 
 pkgbase=rxvt-unicode
 pkgname=('rxvt-unicode' 'rxvt-unicode-terminfo')
-pkgver=9.20
-pkgrel=3
+pkgver=9.21
+pkgrel=1
 arch=('i686' 'x86_64')
 url='http://software.schmorp.de/pkg/rxvt-unicode.html'
 license=('GPL')
@@ -18,7 +18,7 @@
   'urxvtc.desktop'
   'urxvt-tabbed.desktop'
 )
-md5sums=('4a5b823f08d21036f94a6c51e94d025b'
+md5sums=('a9a06c608258c5fd247c3725d8f44582'
  'fec94dc986fa37ec380079d81de3e0b2'
  'fac55f0a8404c86dad3e702146762332'
  '8a5599197568c63720e282b9722a7990')


[arch-commits] Commit in openresolv/trunk (PKGBUILD fs33801.patch)

2015-01-01 Thread Jan Steffens
Date: Thursday, January 1, 2015 @ 12:25:49
  Author: heftig
Revision: 228321

3.6.1

Modified:
  openresolv/trunk/PKGBUILD
  openresolv/trunk/fs33801.patch

---+
 PKGBUILD  |8 +++
 fs33801.patch |   61 
 2 files changed, 35 insertions(+), 34 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-01-01 11:07:48 UTC (rev 228320)
+++ PKGBUILD2015-01-01 11:25:49 UTC (rev 228321)
@@ -3,8 +3,8 @@
 # Contributor: Ignacio Galmarino igalmar...@gmail.com
 
 pkgname=openresolv
-pkgver=3.5.7
-pkgrel=2
+pkgver=3.6.1
+pkgrel=1
 pkgdesc=resolv.conf management framework (resolvconf)
 arch=(any)
 url=http://roy.marples.name/projects/openresolv;
@@ -15,8 +15,8 @@
 makedepends=(systemd)
 
source=(http://roy.marples.name/downloads/openresolv/${pkgname}-${pkgver}.tar.bz2;
 fs33801.patch)
-md5sums=('4de84738d29d54b910f5600ffd12b62c'
- 'f98e53fdaf0b294f154eea99caaec7a0')
+md5sums=('f385e26ec0f9cd06d8ccd45fc219002e'
+ 'b6d3c06bd806de87497cb249bea954d0')
 
 prepare() {
   cd $pkgname-$pkgver

Modified: fs33801.patch
===
--- fs33801.patch   2015-01-01 11:07:48 UTC (rev 228320)
+++ fs33801.patch   2015-01-01 11:25:49 UTC (rev 228321)
@@ -1,6 +1,6 @@
-diff -u -Nr openresolv-3.5.7/configure openresolv-3.5.7-fs33801/configure
 openresolv-3.5.7/configure 2014-04-30 11:02:23.0 +0200
-+++ openresolv-3.5.7-fs33801/configure 2014-08-25 00:26:17.733879048 +0200
+diff -u -r openresolv-3.6.1/configure openresolv-3.6.1-arch/configure
+--- openresolv-3.6.1/configure 2014-10-28 23:03:14.0 +0100
 openresolv-3.6.1-arch/configure2015-01-01 12:20:34.805786238 +0100
 @@ -7,6 +7,7 @@
  HOST=
  TARGET=
@@ -93,10 +93,10 @@
 +echoVARDIR = $VARDIR
  echoMANDIR = $MANDIR
  echo
-diff -u -Nr openresolv-3.5.7/dnsmasq.in openresolv-3.5.7-fs33801/dnsmasq.in
 openresolv-3.5.7/dnsmasq.in2014-04-30 11:02:23.0 +0200
-+++ openresolv-3.5.7-fs33801/dnsmasq.in2014-08-25 00:26:17.733879048 
+0200
-@@ -33,10 +33,11 @@
+diff -u -r openresolv-3.6.1/dnsmasq.in openresolv-3.6.1-arch/dnsmasq.in
+--- openresolv-3.6.1/dnsmasq.in2014-10-28 23:03:14.0 +0100
 openresolv-3.6.1-arch/dnsmasq.in   2015-01-01 12:22:47.265204837 +0100
+@@ -33,11 +33,12 @@
  NL=
  
  
@@ -104,6 +104,7 @@
 -[ -s $dnsmasq_pid ] || dnsmasq_pid=/var/run/dnsmasq/dnsmasq.pid
 +: ${dnsmasq_pid:=@RUNDIR@/dnsmasq.pid}
 +[ -s $dnsmasq_pid ] || : ${dnsmasq_pid:=@RUNDIR@/dnsmasq/dnsmasq.pid}
+ [ -s $dnsmasq_pid ] || unset dnsmasq_pid
  : ${dnsmasq_service:=dnsmasq}
  : ${dnsmasq_restart:=@RESTARTCMD ${dnsmasq_service}@}
 +: ${dnsmasq_reload:=@RELOADCMD ${dnsmasq_service} ${dnsmasq_pid}@}
@@ -110,18 +111,18 @@
  newconf=# Generated by resolvconf$NL
  newresolv=$newconf
  
-@@ -182,7 +183,7 @@
-   eval $dnsmasq_restart
+@@ -184,7 +185,7 @@
  fi
  if $dbus; then
--  $changed || kill -HUP $(cat $dnsmasq_pid)
-+  $changed || eval $dnsmasq_reload
+   if [ -s $dnsmasq_pid ]; then
+-  $changed || kill -HUP $(cat $dnsmasq_pid)
++  $changed || eval $dnsmasq_reload
+   fi
# Send even if empty so old servers are cleared
if $dbus_ex; then
-   method=SetDomainServers
-diff -u -Nr openresolv-3.5.7/Makefile openresolv-3.5.7-fs33801/Makefile
 openresolv-3.5.7/Makefile  2014-04-30 11:02:23.0 +0200
-+++ openresolv-3.5.7-fs33801/Makefile  2014-08-25 00:26:17.983877830 +0200
+diff -u -r openresolv-3.6.1/Makefile openresolv-3.6.1-arch/Makefile
+--- openresolv-3.6.1/Makefile  2014-10-28 23:03:14.0 +0100
 openresolv-3.6.1-arch/Makefile 2015-01-01 12:20:34.862452655 +0100
 @@ -10,11 +10,13 @@
  SBINDIR?= /sbin
  SYSCONFDIR?=  /etc
@@ -159,10 +160,10 @@
$  $@
  
  clean:
-diff -u -Nr openresolv-3.5.7/resolvconf.8.in 
openresolv-3.5.7-fs33801/resolvconf.8.in
 openresolv-3.5.7/resolvconf.8.in   2014-04-30 11:02:23.0 +0200
-+++ openresolv-3.5.7-fs33801/resolvconf.8.in   2014-08-25 00:26:17.983877830 
+0200
-@@ -110,7 +110,7 @@
+diff -u -r openresolv-3.6.1/resolvconf.8.in 
openresolv-3.6.1-arch/resolvconf.8.in
+--- openresolv-3.6.1/resolvconf.8.in   2014-10-28 23:03:14.0 +0100
 openresolv-3.6.1-arch/resolvconf.8.in  2015-01-01 12:20:34.882452568 
+0100
+@@ -124,7 +124,7 @@
  This only needs to be called if the initial system boot sequence does not
  automatically clean it out; for example the state directory is moved
  somewhere other than
@@ -171,10 +172,10 @@
  If used, it should only be called once as early in the system boot sequence
  as possible and before
  .Nm
-diff -u -Nr openresolv-3.5.7/resolvconf.conf.5.in 
openresolv-3.5.7-fs33801/resolvconf.conf.5.in
 openresolv-3.5.7/resolvconf.conf.5.in  2014-04-30 11:02:23.0 
+0200

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

2015-01-01 Thread Anatol Pomozov
Date: Thursday, January 1, 2015 @ 14:38:14
  Author: anatolik
Revision: 228329

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

Added:
  weechat/repos/testing-i686/PKGBUILD
(from rev 228328, weechat/trunk/PKGBUILD)
  weechat/repos/testing-i686/fix_cmake31_shared_lib_compilation.patch
(from rev 228328, weechat/trunk/fix_cmake31_shared_lib_compilation.patch)
  weechat/repos/testing-x86_64/PKGBUILD
(from rev 228328, weechat/trunk/PKGBUILD)
  weechat/repos/testing-x86_64/fix_cmake31_shared_lib_compilation.patch
(from rev 228328, weechat/trunk/fix_cmake31_shared_lib_compilation.patch)
Deleted:
  weechat/repos/testing-i686/PKGBUILD
  weechat/repos/testing-x86_64/PKGBUILD

-+
 /PKGBUILD   |   90 ++
 testing-i686/PKGBUILD   |   41 --
 testing-i686/fix_cmake31_shared_lib_compilation.patch   |   22 +++
 testing-x86_64/PKGBUILD |   41 --
 testing-x86_64/fix_cmake31_shared_lib_compilation.patch |   22 +++
 5 files changed, 134 insertions(+), 82 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2015-01-01 13:37:35 UTC (rev 228328)
+++ testing-i686/PKGBUILD   2015-01-01 13:38:14 UTC (rev 228329)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: lucke lucke at o2 dot pl
-
-pkgname=weechat
-pkgver=1.0.1
-pkgrel=2
-pkgdesc=Fast, light and extensible IRC client (curses UI)
-arch=('i686' 'x86_64')
-url=http://www.weechat.org/;
-license=('GPL')
-depends=('gnutls' 'curl' 'libgcrypt')
-makedepends=('asciidoc' 'source-highlight' 'cmake' 'pkg-config' 'perl' 
'python2' 'lua' 'tcl' 'ruby' 'aspell' 'guile')
-optdepends=('perl' 'python2' 'lua' 'tcl' 'ruby' 'aspell' 'guile')
-source=(http://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.bz2;)
-md5sums=('597b50e1340cfa7734f4ce72c3883705')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-
-  # workaround for https://github.com/weechat/weechat/issues/287
-  export CFLAGS=$CFLAGS -fPIC
-
-  cmake -Wno-dev ../${pkgname}-${pkgver} -DPREFIX=/usr \
--DPYTHON_EXECUTABLE=/usr/bin/python2 \
--DPYTHON_LIBRARY=/usr/lib/libpython2.7.so \
--DENABLE_MAN=ON \
--DENABLE_DOC=ON
-
-  make
-}
-
-package() {
-  cd build
-
-  make DESTDIR=${pkgdir}/ install
-}

Copied: weechat/repos/testing-i686/PKGBUILD (from rev 228328, 
weechat/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-01-01 13:38:14 UTC (rev 228329)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: lucke lucke at o2 dot pl
+
+pkgname=weechat
+pkgver=1.0.1
+pkgrel=3
+pkgdesc=Fast, light and extensible IRC client (curses UI)
+arch=('i686' 'x86_64')
+url=http://www.weechat.org/;
+license=('GPL')
+depends=('gnutls' 'curl' 'libgcrypt')
+makedepends=('asciidoc' 'source-highlight' 'cmake' 'pkg-config' 'perl' 
'python2' 'lua' 'tcl' 'ruby' 'aspell' 'guile')
+optdepends=('perl' 'python2' 'lua' 'tcl' 'ruby' 'aspell' 'guile')
+source=(http://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.bz2{,.asc}
+fix_cmake31_shared_lib_compilation.patch)
+md5sums=('597b50e1340cfa7734f4ce72c3883705'
+ 'SKIP'
+ '3d0fb4bf0d622ee507bacf95878d614d')
+validpgpkeys=('A9AB5AB778FA5C3522FD0378F82F4B16DEC408F8') # WeeChat (signing 
key) webmas...@weechat.org
+
+prepare() {
+  mkdir build
+
+  cd ${pkgname}-${pkgver}
+  patch -p1  ../fix_cmake31_shared_lib_compilation.patch
+}
+
+build() {
+  cd build
+
+  cmake -Wno-dev ../${pkgname}-${pkgver} -DPREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2 \
+-DPYTHON_LIBRARY=/usr/lib/libpython2.7.so \
+-DENABLE_MAN=ON \
+-DENABLE_DOC=ON
+
+  make
+}
+
+package() {
+  cd build
+
+  make DESTDIR=${pkgdir}/ install
+}

Copied: weechat/repos/testing-i686/fix_cmake31_shared_lib_compilation.patch 
(from rev 228328, weechat/trunk/fix_cmake31_shared_lib_compilation.patch)
===
--- testing-i686/fix_cmake31_shared_lib_compilation.patch   
(rev 0)
+++ testing-i686/fix_cmake31_shared_lib_compilation.patch   2015-01-01 
13:38:14 UTC (rev 228329)
@@ -0,0 +1,22 @@
+commit 00ba2e8c4d07f9b580723df7c5823f0e413dc5f2
+Author: Sébastien Helleu flashc...@flashtux.org
+Date:   Thu Jan 1 13:23:57 2015 +0100
+
+core: fix compilation of plugins with cmake = 3.1 (closes #287)
+
+The flag -fPIC is now forced for compilation of plugins.
+It should fix compilation problems when cmake doesn't add this flag.
+
+diff --git a/src/plugins/CMakeLists.txt b/src/plugins/CMakeLists.txt
+index 95c457b..58193e3 100644
+--- 

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

2015-01-01 Thread Anatol Pomozov
Date: Thursday, January 1, 2015 @ 14:37:35
  Author: anatolik
Revision: 228328

upgpkg: weechat 1.0.1-3

ruby 2.2 rebuild:
  - pull proper cmake 3.1 from upstream
  - add validpgpkeys

Added:
  weechat/trunk/fix_cmake31_shared_lib_compilation.patch
Modified:
  weechat/trunk/PKGBUILD

--+
 PKGBUILD |   16 ++--
 fix_cmake31_shared_lib_compilation.patch |   22 ++
 2 files changed, 32 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-01-01 12:51:08 UTC (rev 228327)
+++ PKGBUILD2015-01-01 13:37:35 UTC (rev 228328)
@@ -4,7 +4,7 @@
 
 pkgname=weechat
 pkgver=1.0.1
-pkgrel=2
+pkgrel=3
 pkgdesc=Fast, light and extensible IRC client (curses UI)
 arch=('i686' 'x86_64')
 url=http://www.weechat.org/;
@@ -12,19 +12,23 @@
 depends=('gnutls' 'curl' 'libgcrypt')
 makedepends=('asciidoc' 'source-highlight' 'cmake' 'pkg-config' 'perl' 
'python2' 'lua' 'tcl' 'ruby' 'aspell' 'guile')
 optdepends=('perl' 'python2' 'lua' 'tcl' 'ruby' 'aspell' 'guile')
-source=(http://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.bz2;)
-md5sums=('597b50e1340cfa7734f4ce72c3883705')
+source=(http://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.bz2{,.asc}
+fix_cmake31_shared_lib_compilation.patch)
+md5sums=('597b50e1340cfa7734f4ce72c3883705'
+ 'SKIP'
+ '3d0fb4bf0d622ee507bacf95878d614d')
+validpgpkeys=('A9AB5AB778FA5C3522FD0378F82F4B16DEC408F8') # WeeChat (signing 
key) webmas...@weechat.org
 
 prepare() {
   mkdir build
+
+  cd ${pkgname}-${pkgver}
+  patch -p1  ../fix_cmake31_shared_lib_compilation.patch
 }
 
 build() {
   cd build
 
-  # workaround for https://github.com/weechat/weechat/issues/287
-  export CFLAGS=$CFLAGS -fPIC
-
   cmake -Wno-dev ../${pkgname}-${pkgver} -DPREFIX=/usr \
 -DPYTHON_EXECUTABLE=/usr/bin/python2 \
 -DPYTHON_LIBRARY=/usr/lib/libpython2.7.so \

Added: fix_cmake31_shared_lib_compilation.patch
===
--- fix_cmake31_shared_lib_compilation.patch(rev 0)
+++ fix_cmake31_shared_lib_compilation.patch2015-01-01 13:37:35 UTC (rev 
228328)
@@ -0,0 +1,22 @@
+commit 00ba2e8c4d07f9b580723df7c5823f0e413dc5f2
+Author: Sébastien Helleu flashc...@flashtux.org
+Date:   Thu Jan 1 13:23:57 2015 +0100
+
+core: fix compilation of plugins with cmake = 3.1 (closes #287)
+
+The flag -fPIC is now forced for compilation of plugins.
+It should fix compilation problems when cmake doesn't add this flag.
+
+diff --git a/src/plugins/CMakeLists.txt b/src/plugins/CMakeLists.txt
+index 95c457b..58193e3 100644
+--- a/src/plugins/CMakeLists.txt
 b/src/plugins/CMakeLists.txt
+@@ -32,7 +32,7 @@ plugin-script-callback.c plugin-script-callback.h)
+ include_directories(${CMAKE_BINARY_DIR})
+ add_library(weechat_plugins STATIC ${LIB_PLUGINS_SRC})
+ 
+-add_definitions(${CMAKE_SHARED_LIBRARY_C_FLAGS})
++add_definitions(${CMAKE_SHARED_LIBRARY_C_FLAGS} -fPIC)
+ add_library(weechat_plugins_scripts STATIC ${LIB_PLUGINS_SCRIPTS_SRC})
+ 
+ include(CheckIncludeFiles)


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

2015-01-01 Thread Felix Yan
Date: Thursday, January 1, 2015 @ 17:17:10
  Author: fyan
Revision: 125127

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

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

+
 /PKGBUILD  |   74 +++
 /bibletime.install |   26 
 community-i686/PKGBUILD|   37 -
 community-i686/bibletime.install   |   13 --
 community-x86_64/PKGBUILD  |   37 -
 community-x86_64/bibletime.install |   13 --
 6 files changed, 100 insertions(+), 100 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-01-01 16:16:51 UTC (rev 125126)
+++ community-i686/PKGBUILD 2015-01-01 16:17:10 UTC (rev 125127)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: SanskritFritz (gmail)
-# Contributor: Alexander Rødseth rods...@gmail.com
-# Contributor: Tobias T. OldShatterhand at gmx-topmail dot de
-
-pkgname=bibletime
-pkgver=2.10.1
-pkgrel=2
-pkgdesc=Bible study tool for KDE4.
-arch=('x86_64' 'i686')
-url=http://www.bibletime.info/;
-license=('GPL2')
-depends=('sword' 'openssl' 'clucene' 'qtwebkit')
-makedepends=('cmake')
-install=$pkgname.install
-source=(http://sourceforge.net/projects/$pkgname/files/$pkgname-$pkgver.tar.xz;)
-md5sums=('ef4d189d53fd1608c56f4827947ffcf0')
-
-build() {
-   mkdir $srcdir/$pkgname-$pkgver/build_dir
-   cd $srcdir/$pkgname-$pkgver/build_dir
-
-   CXXFLAGS+= -fpermissive
-   cmake   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DQT_QMAKE_EXECUTABLE=qmake-qt4 \
-   -DBT_FORCE_USE_QT4=TRUE \
-   ..
-
-   make
-}
-
-package() {
-   cd $srcdir/$pkgname-$pkgver/build_dir
-   make DESTDIR=$pkgdir install
-}

Copied: bibletime/repos/community-i686/PKGBUILD (from rev 125126, 
bibletime/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-01-01 16:17:10 UTC (rev 125127)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: SanskritFritz (gmail)
+# Contributor: Alexander Rødseth rods...@gmail.com
+# Contributor: Tobias T. OldShatterhand at gmx-topmail dot de
+
+pkgname=bibletime
+pkgver=2.10.1
+pkgrel=3
+pkgdesc=Bible study tool for KDE4.
+arch=('x86_64' 'i686')
+url=http://www.bibletime.info/;
+license=('GPL2')
+depends=('sword' 'openssl' 'clucene' 'qtwebkit')
+makedepends=('cmake')
+install=$pkgname.install
+source=(http://sourceforge.net/projects/$pkgname/files/$pkgname-$pkgver.tar.xz;)
+md5sums=('ef4d189d53fd1608c56f4827947ffcf0')
+
+build() {
+   mkdir $srcdir/$pkgname-$pkgver/build_dir
+   cd $srcdir/$pkgname-$pkgver/build_dir
+
+   CXXFLAGS+= -fpermissive
+   cmake   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DQT_QMAKE_EXECUTABLE=qmake-qt4 \
+   -DBT_FORCE_USE_QT4=TRUE \
+   ..
+
+   make
+}
+
+package() {
+   cd $srcdir/$pkgname-$pkgver/build_dir
+   make DESTDIR=$pkgdir install
+}

Deleted: community-i686/bibletime.install
===
--- community-i686/bibletime.install2015-01-01 16:16:51 UTC (rev 125126)
+++ community-i686/bibletime.install2015-01-01 16:17:10 UTC (rev 125127)
@@ -1,13 +0,0 @@
-post_upgrade() {
-  update-desktop-database -q
-}
-
-post_install() {
-  post_upgrade
-}
-
-post_remove() {
-  post_upgrade
-}
-
-# vim:set ts=2 sw=2 et:

Copied: bibletime/repos/community-i686/bibletime.install (from rev 125126, 
bibletime/trunk/bibletime.install)
===
--- community-i686/bibletime.install(rev 0)
+++ community-i686/bibletime.install2015-01-01 16:17:10 UTC (rev 125127)
@@ -0,0 +1,13 @@
+post_upgrade() {
+  update-desktop-database -q
+}
+
+post_install() {
+  post_upgrade
+}
+
+post_remove() {
+  post_upgrade
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-01-01 16:16:51 UTC (rev 125126)
+++ 

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

2015-01-01 Thread Anatol Pomozov
Date: Thursday, January 1, 2015 @ 16:22:16
  Author: anatolik
Revision: 125125

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

Added:
  sakura/repos/community-testing-i686/
  sakura/repos/community-testing-i686/PKGBUILD
(from rev 125124, sakura/trunk/PKGBUILD)
  sakura/repos/community-testing-i686/sakura.install
(from rev 125124, sakura/trunk/sakura.install)
  sakura/repos/community-testing-x86_64/
  sakura/repos/community-testing-x86_64/PKGBUILD
(from rev 125124, sakura/trunk/PKGBUILD)
  sakura/repos/community-testing-x86_64/sakura.install
(from rev 125124, sakura/trunk/sakura.install)

-+
 community-testing-i686/PKGBUILD |   40 ++
 community-testing-i686/sakura.install   |   12 +
 community-testing-x86_64/PKGBUILD   |   40 ++
 community-testing-x86_64/sakura.install |   12 +
 4 files changed, 104 insertions(+)

Copied: sakura/repos/community-testing-i686/PKGBUILD (from rev 125124, 
sakura/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2015-01-01 15:22:16 UTC (rev 125125)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Ronald van Haren ronald.archlinux.org
+# Contributor: Dmitry N. Shilov stormbl...@land.ru
+
+pkgname=sakura
+pkgver=3.2.0
+pkgrel=1
+pkgdesc=A terminal emulator based on GTK and VTE
+arch=('i686' 'x86_64')
+url=https://launchpad.net/sakura;
+license=('GPL')
+depends=('vte290' 'libxft' 'desktop-file-utils')
+makedepends=('cmake')
+source=(https://launchpad.net/sakura/trunk/${pkgver}/+download/${pkgname}-${pkgver}.tar.bz2;)
+install=sakura.install
+sha1sums=('e7a8006463f3e961069b2a0f234d40fe9360437e')
+
+prepare() {
+  cd $srcdir/${pkgname}-${pkgver}
+
+  # Set default font size a bit smaller
+  sed -i 's|#define DEFAULT_FONT Bitstream Vera Sans Mono 14|#define 
DEFAULT_FONT Bitstream Vera Sans Mono 10|g' src/sakura.c
+}
+
+build() {
+  cd $srcdir/${pkgname}-${pkgver}
+
+  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=RELEASE . 
+  make 
+}
+
+package() {
+  cd $srcdir/${pkgname}-${pkgver}
+
+  make DESTDIR=${pkgdir} install 
+  # extract the keybindings from the installed documentation, rest is only 
relevant during build time
+  awk '/^Keybindings/{f='${pkgdir}'/usr/share/doc/'${pkgname}'/KEYBINDINGS} 
f{print  f} /^END/' \
+${pkgdir}/usr/share/doc/${pkgname}/INSTALL
+  rm ${pkgdir}/usr/share/doc/${pkgname}/INSTALL
+}

Copied: sakura/repos/community-testing-i686/sakura.install (from rev 125124, 
sakura/trunk/sakura.install)
===
--- community-testing-i686/sakura.install   (rev 0)
+++ community-testing-i686/sakura.install   2015-01-01 15:22:16 UTC (rev 
125125)
@@ -0,0 +1,12 @@
+post_install() {
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  update-desktop-database -q
+}
+

Copied: sakura/repos/community-testing-x86_64/PKGBUILD (from rev 125124, 
sakura/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2015-01-01 15:22:16 UTC (rev 125125)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Ronald van Haren ronald.archlinux.org
+# Contributor: Dmitry N. Shilov stormbl...@land.ru
+
+pkgname=sakura
+pkgver=3.2.0
+pkgrel=1
+pkgdesc=A terminal emulator based on GTK and VTE
+arch=('i686' 'x86_64')
+url=https://launchpad.net/sakura;
+license=('GPL')
+depends=('vte290' 'libxft' 'desktop-file-utils')
+makedepends=('cmake')
+source=(https://launchpad.net/sakura/trunk/${pkgver}/+download/${pkgname}-${pkgver}.tar.bz2;)
+install=sakura.install
+sha1sums=('e7a8006463f3e961069b2a0f234d40fe9360437e')
+
+prepare() {
+  cd $srcdir/${pkgname}-${pkgver}
+
+  # Set default font size a bit smaller
+  sed -i 's|#define DEFAULT_FONT Bitstream Vera Sans Mono 14|#define 
DEFAULT_FONT Bitstream Vera Sans Mono 10|g' src/sakura.c
+}
+
+build() {
+  cd $srcdir/${pkgname}-${pkgver}
+
+  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=RELEASE . 
+  make 
+}
+
+package() {
+  cd $srcdir/${pkgname}-${pkgver}
+
+  make DESTDIR=${pkgdir} install 
+  # extract the keybindings from the installed documentation, rest is only 
relevant during build time
+  awk '/^Keybindings/{f='${pkgdir}'/usr/share/doc/'${pkgname}'/KEYBINDINGS} 
f{print  f} /^END/' \
+${pkgdir}/usr/share/doc/${pkgname}/INSTALL
+  rm ${pkgdir}/usr/share/doc/${pkgname}/INSTALL
+}

Copied: sakura/repos/community-testing-x86_64/sakura.install (from rev 125124, 
sakura/trunk/sakura.install)
===
--- community-testing-x86_64/sakura.install (rev 0)
+++ 

[arch-commits] Commit in ginac/repos/community-x86_64 (4 files)

2015-01-01 Thread Jaroslav Lichtblau
Date: Thursday, January 1, 2015 @ 18:30:08
  Author: jlichtblau
Revision: 125130

archrelease: copy trunk to community-x86_64

Added:
  ginac/repos/community-x86_64/PKGBUILD
(from rev 125129, ginac/trunk/PKGBUILD)
  ginac/repos/community-x86_64/ginac.install
(from rev 125129, ginac/trunk/ginac.install)
Deleted:
  ginac/repos/community-x86_64/PKGBUILD
  ginac/repos/community-x86_64/ginac.install

---+
 PKGBUILD  |   74 
 ginac.install |   40 +++---
 2 files changed, 57 insertions(+), 57 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-01-01 17:29:59 UTC (rev 125129)
+++ PKGBUILD2015-01-01 17:30:08 UTC (rev 125130)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau dragonl...@aur.archlinux.org
-# Contributor: Stéphane Gaudreault steph...@archlinux.org
-# Contributor: Thomas Dziedzic  gostrc at gmail 
-# Contributor: Thomas Baechler tho...@archlinux.org
-
-pkgname=ginac
-pkgver=1.6.2
-pkgrel=3
-pkgdesc=C++ library for symbolic calculations
-arch=('i686' 'x86_64')
-url='http://www.ginac.de/'
-license=('GPL')
-depends=('cln')
-makedepends=('transfig' 'doxygen' 'texlive-bin')
-install=${pkgname}.install
-source=(http://www.ginac.de/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('0f34d255024b3fb258e44da84f9e82dfb3dc9bc15f0999b7a18204a730663bde')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  ./configure --prefix=/usr --disable-static
-  make
-}
-
-check() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  make check
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  make DESTDIR=${pkgdir} install
-}

Copied: ginac/repos/community-x86_64/PKGBUILD (from rev 125129, 
ginac/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-01-01 17:30:08 UTC (rev 125130)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
+# Contributor: Stéphane Gaudreault steph...@archlinux.org
+# Contributor: Thomas Dziedzic  gostrc at gmail 
+# Contributor: Thomas Baechler tho...@archlinux.org
+
+pkgname=ginac
+pkgver=1.6.3
+pkgrel=1
+pkgdesc=C++ library for symbolic calculations
+arch=('i686' 'x86_64')
+url='http://www.ginac.de/'
+license=('GPL')
+depends=('cln')
+makedepends=('transfig' 'doxygen' 'texlive-bin' 'python')
+install=${pkgname}.install
+source=(http://www.ginac.de/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('6756c7de3485bc5245f8b0e4b3c046ac75406b93e9205b4180b096846932d9bd')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  make check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+}

Deleted: ginac.install
===
--- ginac.install   2015-01-01 17:29:59 UTC (rev 125129)
+++ ginac.install   2015-01-01 17:30:08 UTC (rev 125130)
@@ -1,20 +0,0 @@
-infodir=/usr/share/info
-filelist=(ginac.info)
-
-post_install() {
- [ -x usr/bin/install-info ] || return 0
- for file in ${filelist[@]}; do
-usr/bin/install-info $infodir/$file $infodir/dir 2 /dev/null
- done
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-pre_remove() {
- [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-usr/bin/install-info --delete $infodir/$file $infodir/dir 2 /dev/null
-  done
-}

Copied: ginac/repos/community-x86_64/ginac.install (from rev 125129, 
ginac/trunk/ginac.install)
===
--- ginac.install   (rev 0)
+++ ginac.install   2015-01-01 17:30:08 UTC (rev 125130)
@@ -0,0 +1,20 @@
+infodir=/usr/share/info
+filelist=(ginac.info)
+
+post_install() {
+ [ -x usr/bin/install-info ] || return 0
+ for file in ${filelist[@]}; do
+usr/bin/install-info $infodir/$file $infodir/dir 2 /dev/null
+ done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+ [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+usr/bin/install-info --delete $infodir/$file $infodir/dir 2 /dev/null
+  done
+}


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

2015-01-01 Thread Giovanni Scafora
Date: Thursday, January 1, 2015 @ 18:14:12
  Author: giovanni
Revision: 228330

upgpkg: link-grammar 5.2.1-1

upstream release

Modified:
  link-grammar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-01 13:38:14 UTC (rev 228329)
+++ PKGBUILD2015-01-01 17:14:12 UTC (rev 228330)
@@ -3,7 +3,7 @@
 # Contributor: Jan de Groot j...@archlinux.org
 
 pkgname=link-grammar
-pkgver=5.1.3
+pkgver=5.2.1
 pkgrel=1
 pkgdesc=A Grammar Checking library
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 depends=('aspell')
 options=('!makeflags')
 
source=(http://www.abisource.com/downloads/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('76e4c0b2fe45617a0305551e9ac61b50')
+md5sums=('d95620dc8332d82f009b5c41ffeac72a')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}


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

2015-01-01 Thread Giovanni Scafora
Date: Thursday, January 1, 2015 @ 18:14:26
  Author: giovanni
Revision: 228331

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

Added:
  link-grammar/repos/extra-i686/PKGBUILD
(from rev 228330, link-grammar/trunk/PKGBUILD)
  link-grammar/repos/extra-x86_64/PKGBUILD
(from rev 228330, link-grammar/trunk/PKGBUILD)
Deleted:
  link-grammar/repos/extra-i686/PKGBUILD
  link-grammar/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-01-01 17:14:12 UTC (rev 228330)
+++ extra-i686/PKGBUILD 2015-01-01 17:14:26 UTC (rev 228331)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: Jan de Groot j...@archlinux.org
-
-pkgname=link-grammar
-pkgver=5.1.3
-pkgrel=1
-pkgdesc=A Grammar Checking library
-arch=('i686' 'x86_64')
-url=http://www.abisource.com/downloads/link-grammar/;
-license=('BSD')
-depends=('aspell')
-options=('!makeflags')
-source=(http://www.abisource.com/downloads/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('76e4c0b2fe45617a0305551e9ac61b50')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  make DESTDIR=${pkgdir} install
-
-  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/link-grammar/LICENSE
-}

Copied: link-grammar/repos/extra-i686/PKGBUILD (from rev 228330, 
link-grammar/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-01-01 17:14:26 UTC (rev 228331)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: Jan de Groot j...@archlinux.org
+
+pkgname=link-grammar
+pkgver=5.2.1
+pkgrel=1
+pkgdesc=A Grammar Checking library
+arch=('i686' 'x86_64')
+url=http://www.abisource.com/downloads/link-grammar/;
+license=('BSD')
+depends=('aspell')
+options=('!makeflags')
+source=(http://www.abisource.com/downloads/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('d95620dc8332d82f009b5c41ffeac72a')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+
+  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/link-grammar/LICENSE
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-01-01 17:14:12 UTC (rev 228330)
+++ extra-x86_64/PKGBUILD   2015-01-01 17:14:26 UTC (rev 228331)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: Jan de Groot j...@archlinux.org
-
-pkgname=link-grammar
-pkgver=5.1.3
-pkgrel=1
-pkgdesc=A Grammar Checking library
-arch=('i686' 'x86_64')
-url=http://www.abisource.com/downloads/link-grammar/;
-license=('BSD')
-depends=('aspell')
-options=('!makeflags')
-source=(http://www.abisource.com/downloads/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('76e4c0b2fe45617a0305551e9ac61b50')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  make DESTDIR=${pkgdir} install
-
-  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/link-grammar/LICENSE
-}

Copied: link-grammar/repos/extra-x86_64/PKGBUILD (from rev 228330, 
link-grammar/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2015-01-01 17:14:26 UTC (rev 228331)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: Jan de Groot j...@archlinux.org
+
+pkgname=link-grammar
+pkgver=5.2.1
+pkgrel=1
+pkgdesc=A Grammar Checking library
+arch=('i686' 'x86_64')
+url=http://www.abisource.com/downloads/link-grammar/;
+license=('BSD')
+depends=('aspell')
+options=('!makeflags')
+source=(http://www.abisource.com/downloads/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('d95620dc8332d82f009b5c41ffeac72a')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+
+  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/link-grammar/LICENSE
+}


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

2015-01-01 Thread Jaroslav Lichtblau
Date: Thursday, January 1, 2015 @ 18:29:59
  Author: jlichtblau
Revision: 125129

upgpkg: ginac 1.6.3-1

Modified:
  ginac/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-01 16:36:30 UTC (rev 125128)
+++ PKGBUILD2015-01-01 17:29:59 UTC (rev 125129)
@@ -1,24 +1,24 @@
 # $Id$
-# Maintainer: Jaroslav Lichtblau dragonl...@aur.archlinux.org
+# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
 # Contributor: Stéphane Gaudreault steph...@archlinux.org
 # Contributor: Thomas Dziedzic  gostrc at gmail 
 # Contributor: Thomas Baechler tho...@archlinux.org
 
 pkgname=ginac
-pkgver=1.6.2
-pkgrel=3
+pkgver=1.6.3
+pkgrel=1
 pkgdesc=C++ library for symbolic calculations
 arch=('i686' 'x86_64')
 url='http://www.ginac.de/'
 license=('GPL')
 depends=('cln')
-makedepends=('transfig' 'doxygen' 'texlive-bin')
+makedepends=('transfig' 'doxygen' 'texlive-bin' 'python')
 install=${pkgname}.install
 source=(http://www.ginac.de/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('0f34d255024b3fb258e44da84f9e82dfb3dc9bc15f0999b7a18204a730663bde')
+sha256sums=('6756c7de3485bc5245f8b0e4b3c046ac75406b93e9205b4180b096846932d9bd')
 
 build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
+  cd ${srcdir}/${pkgname}-${pkgver}
 
   ./configure --prefix=/usr --disable-static
   make
@@ -25,13 +25,13 @@
 }
 
 check() {
-  cd ${srcdir}/${pkgname}-${pkgver}
+  cd ${srcdir}/${pkgname}-${pkgver}
 
   make check
 }
 
 package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
+  cd ${srcdir}/${pkgname}-${pkgver}
 
   make DESTDIR=${pkgdir} install
 }


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

2015-01-01 Thread Anatol Pomozov
Date: Thursday, January 1, 2015 @ 16:21:42
  Author: anatolik
Revision: 125124

upgpkg: sakura 3.2.0-1

Modified:
  sakura/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-01 12:03:35 UTC (rev 125123)
+++ PKGBUILD2015-01-01 15:21:42 UTC (rev 125124)
@@ -3,7 +3,7 @@
 # Contributor: Dmitry N. Shilov stormbl...@land.ru
 
 pkgname=sakura
-pkgver=3.1.5
+pkgver=3.2.0
 pkgrel=1
 pkgdesc=A terminal emulator based on GTK and VTE
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 makedepends=('cmake')
 
source=(https://launchpad.net/sakura/trunk/${pkgver}/+download/${pkgname}-${pkgver}.tar.bz2;)
 install=sakura.install
-sha1sums=('a3b5062b6bee7293f47fc14d6ef9730004df8aeb')
+sha1sums=('e7a8006463f3e961069b2a0f234d40fe9360437e')
 
 prepare() {
   cd $srcdir/${pkgname}-${pkgver}


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

2015-01-01 Thread Felix Yan
Date: Thursday, January 1, 2015 @ 17:16:51
  Author: fyan
Revision: 125126

upgpkg: bibletime 2.10.1-3

last rebuild seems broken...

Modified:
  bibletime/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-01 15:22:16 UTC (rev 125125)
+++ PKGBUILD2015-01-01 16:16:51 UTC (rev 125126)
@@ -6,7 +6,7 @@
 
 pkgname=bibletime
 pkgver=2.10.1
-pkgrel=2
+pkgrel=3
 pkgdesc=Bible study tool for KDE4.
 arch=('x86_64' 'i686')
 url=http://www.bibletime.info/;


[arch-commits] Commit in openresolv/repos (3 files)

2015-01-01 Thread Jan Steffens
Date: Thursday, January 1, 2015 @ 12:26:36
  Author: heftig
Revision: 228322

archrelease: copy trunk to testing-any

Added:
  openresolv/repos/testing-any/
  openresolv/repos/testing-any/PKGBUILD
(from rev 228321, openresolv/trunk/PKGBUILD)
  openresolv/repos/testing-any/fs33801.patch
(from rev 228321, openresolv/trunk/fs33801.patch)

---+
 PKGBUILD  |   37 +
 fs33801.patch |  223 
 2 files changed, 260 insertions(+)

Copied: openresolv/repos/testing-any/PKGBUILD (from rev 228321, 
openresolv/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2015-01-01 11:26:36 UTC (rev 228322)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Contributor: Ignacio Galmarino igalmar...@gmail.com
+
+pkgname=openresolv
+pkgver=3.6.1
+pkgrel=1
+pkgdesc=resolv.conf management framework (resolvconf)
+arch=(any)
+url=http://roy.marples.name/projects/openresolv;
+license=('custom:BSD')
+backup=(etc/resolvconf.conf)
+provides=(resolvconf)
+depends=(bash)
+makedepends=(systemd)
+source=(http://roy.marples.name/downloads/openresolv/${pkgname}-${pkgver}.tar.bz2;
+fs33801.patch)
+md5sums=('f385e26ec0f9cd06d8ccd45fc219002e'
+ 'b6d3c06bd806de87497cb249bea954d0')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -Np1 -i ../fs33801.patch
+  sed -n '2,25{s:^# \?::;p}' resolvconf.in LICENSE 
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib/resolvconf 
--sbindir=/usr/bin
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}

Copied: openresolv/repos/testing-any/fs33801.patch (from rev 228321, 
openresolv/trunk/fs33801.patch)
===
--- testing-any/fs33801.patch   (rev 0)
+++ testing-any/fs33801.patch   2015-01-01 11:26:36 UTC (rev 228322)
@@ -0,0 +1,223 @@
+diff -u -r openresolv-3.6.1/configure openresolv-3.6.1-arch/configure
+--- openresolv-3.6.1/configure 2014-10-28 23:03:14.0 +0100
 openresolv-3.6.1-arch/configure2015-01-01 12:20:34.805786238 +0100
+@@ -7,6 +7,7 @@
+ HOST=
+ TARGET=
+ RESTARTCMD=
++RELOADCMD=
+ RCDIR=
+ 
+ for x do
+@@ -33,6 +34,7 @@
+   --target) TARGET=$var;;
+   --libdir) LIBDIR=$var;;
+   --restartcmd) RESTARTCMD=$var;;
++  --reloadcmd) RELOADCMD=$var;;
+   --includedir) eval INCLUDEDIR=$INCLUDEDIR${INCLUDEDIR:+ }$var;;
+   --datadir|--infodir) ;; # ignore autotools
+   --disable-maintainer-mode|--disable-dependency-tracking) ;;
+@@ -60,7 +62,7 @@
+   echo no
+   RUNDIR=/var/run
+   fi
+-fi
++fi
+ 
+ : ${SED:=sed}
+ 
+@@ -68,7 +70,6 @@
+ : ${SBINDIR:=$PREFIX/sbin}
+ : ${LIBEXECDIR:=$PREFIX/libexec/resolvconf}
+ : ${STATEDIR:=/var}
+-: ${RUNDIR:=$STATEDIR/run}
+ : ${MANDIR:=${PREFIX:-/usr}/share/man}
+ 
+ eval SYSCONFDIR=$SYSCONFDIR
+@@ -117,7 +118,7 @@
+ rm -rf $CONFIG_MK
+ echo # $OS $CONFIG_MK
+ 
+-for x in SYSCONFDIR SBINDIR LIBEXECDIR VARDIR MANDIR; do
++for x in SYSCONFDIR SBINDIR LIBEXECDIR VARDIR MANDIR RUNDIR; do
+   eval v=\$$x
+   # Make files look nice for import
+   l=$((10 - ${#x}))
+@@ -126,26 +127,30 @@
+   echo $x=$t $v $CONFIG_MK
+ done
+ 
+-if [ -z $RESTARTCMD ]; then
++if [ -z $RESTARTCMD -o -z $RELOADCMD ]; then
+   printf Checking for systemd ... 
+   if [ -x /bin/systemctl ]; then
+-  RESTARTCMD=/bin/systemctl try-restart \1
++  : ${RESTARTCMD:=/bin/systemctl --fail --no-block try-restart 
\1}
++  : ${RELOADCMD:=/bin/systemctl --fail --no-block reload \1}
+   echo yes
+   elif [ -x /usr/bin/systemctl ]; then
+-  RESTARTCMD=/usr/bin/systemctl try-restart \1
++  : ${RESTARTCMD:=/usr/bin/systemctl --fail --no-block 
try-restart \1}
++  : ${RELOADCMD:=/usr/bin/systemctl --fail --no-block reload \1}
+   echo yes
+   else
+   echo no
+   fi
+ fi
+ 
++: ${RELOADCMD:='[ -s \2 ] \\ kill -HUP \\`cat \2\\` 2/dev/null'}
++
+ # Arch upgraded to systemd, so this check has to be just after systemd
+ # but higher than the others
+ if [ -z $RESTARTCMD ]; then
+   printf Checking for Arch ... 
+   if [ -e /etc/arch-release -a -d /etc/rc.d ]; then
+   RCDIR=/etc/rc.d
+-  RESTARTCMD=[ -e /var/run/daemons/\1 ] \\ /etc/rc.d/\1 
restart
++  RESTARTCMD=[ -e $RUNDIR/daemons/\1 ] \\ /etc/rc.d/\1 restart
+   echo yes
+   else
+   echo no
+@@ -203,11 +208,13 @@
+ echo RCDIR=  $RCDIR $CONFIG_MK
+ # Work around bug in the dash shell as echo 'foo \1' does bad things
+ printf %s\n RESTARTCMD=$RESTARTCMD $CONFIG_MK

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

2015-01-01 Thread Sébastien Luttringer
Date: Thursday, January 1, 2015 @ 13:03:35
  Author: seblu
Revision: 125123

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

Added:
  rxvt-unicode/repos/community-i686/PKGBUILD
(from rev 125122, rxvt-unicode/trunk/PKGBUILD)
  rxvt-unicode/repos/community-i686/urxvt-tabbed.desktop
(from rev 125122, rxvt-unicode/trunk/urxvt-tabbed.desktop)
  rxvt-unicode/repos/community-i686/urxvt.desktop
(from rev 125122, rxvt-unicode/trunk/urxvt.desktop)
  rxvt-unicode/repos/community-i686/urxvtc.desktop
(from rev 125122, rxvt-unicode/trunk/urxvtc.desktop)
  rxvt-unicode/repos/community-x86_64/PKGBUILD
(from rev 125122, rxvt-unicode/trunk/PKGBUILD)
  rxvt-unicode/repos/community-x86_64/urxvt-tabbed.desktop
(from rev 125122, rxvt-unicode/trunk/urxvt-tabbed.desktop)
  rxvt-unicode/repos/community-x86_64/urxvt.desktop
(from rev 125122, rxvt-unicode/trunk/urxvt.desktop)
  rxvt-unicode/repos/community-x86_64/urxvtc.desktop
(from rev 125122, rxvt-unicode/trunk/urxvtc.desktop)
Deleted:
  rxvt-unicode/repos/community-i686/PKGBUILD
  rxvt-unicode/repos/community-i686/urxvt-tabbed.desktop
  rxvt-unicode/repos/community-i686/urxvt.desktop
  rxvt-unicode/repos/community-i686/urxvtc.desktop
  rxvt-unicode/repos/community-x86_64/PKGBUILD
  rxvt-unicode/repos/community-x86_64/urxvt-tabbed.desktop
  rxvt-unicode/repos/community-x86_64/urxvt.desktop
  rxvt-unicode/repos/community-x86_64/urxvtc.desktop

---+
 /PKGBUILD |  172 
 /urxvt-tabbed.desktop |   18 +++
 /urxvt.desktop|   18 +++
 /urxvtc.desktop   |   18 +++
 community-i686/PKGBUILD   |   86 
 community-i686/urxvt-tabbed.desktop   |9 -
 community-i686/urxvt.desktop  |9 -
 community-i686/urxvtc.desktop |9 -
 community-x86_64/PKGBUILD |   86 
 community-x86_64/urxvt-tabbed.desktop |9 -
 community-x86_64/urxvt.desktop|9 -
 community-x86_64/urxvtc.desktop   |9 -
 12 files changed, 226 insertions(+), 226 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-01-01 12:03:16 UTC (rev 125122)
+++ community-i686/PKGBUILD 2015-01-01 12:03:35 UTC (rev 125123)
@@ -1,86 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-# Contributor: Angel Velasquez an...@archlinux.org
-# Contributor: tobias tob...@archlinux.org
-# Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org
-
-pkgbase=rxvt-unicode
-pkgname=('rxvt-unicode' 'rxvt-unicode-terminfo')
-pkgver=9.20
-pkgrel=3
-arch=('i686' 'x86_64')
-url='http://software.schmorp.de/pkg/rxvt-unicode.html'
-license=('GPL')
-makedepends=('libxft' 'perl' 'startup-notification')
-source=(
-  http://dist.schmorp.de/rxvt-unicode/$pkgname-$pkgver.tar.bz2;
-  'urxvt.desktop'
-  'urxvtc.desktop'
-  'urxvt-tabbed.desktop'
-)
-md5sums=('4a5b823f08d21036f94a6c51e94d025b'
- 'fec94dc986fa37ec380079d81de3e0b2'
- 'fac55f0a8404c86dad3e702146762332'
- '8a5599197568c63720e282b9722a7990')
-
-build() {
-  cd $pkgname-$pkgver
-  # we disable smart-resize (FS#34807)
-  ./configure \
---prefix=/usr \
---with-terminfo=/usr/share/terminfo \
---enable-256-color \
---enable-combining \
---enable-fading \
---enable-font-styles \
---enable-iso14755 \
---enable-keepscrolling \
---enable-lastlog \
---enable-mousewheel \
---enable-next-scroll \
---enable-perl \
---enable-pointer-blank \
---enable-rxvt-scroll \
---enable-selectionscrolling \
---enable-slipwheeling \
---disable-smart-resize \
---enable-startup-notification \
---enable-transparency \
---enable-unicode3 \
---enable-utmp \
---enable-wtmp \
---enable-xft \
---enable-xim \
---enable-xterm-scroll \
---disable-pixbuf \
---disable-frills
-  make
-}
-
-package_rxvt-unicode() {
-  pkgdesc='A unicode enabled rxvt-clone terminal emulator (urxvt)'
-  depends=('rxvt-unicode-terminfo' 'libxft' 'perl' 'startup-notification')
-  optdepends=('gtk2-perl: to use the urxvt-tabbed')
-
-  # install freedesktop menu
-  for _f in urxvt urxvtc urxvt-tabbed; do
-install -Dm644 $_f.desktop $pkgdir/usr/share/applications/$_f.desktop
-  done
-  cd $pkgname-$pkgver
-  # workaround terminfo installation
-  export TERMINFO=$srcdir/terminfo
-  install -d $TERMINFO
-  make DESTDIR=$pkgdir install
-  # install the tabbing wrapper ( requires gtk2-perl! )
-  sed -i 's/\rxvt\/urxvt/' doc/rxvt-tabbed
-  install -Dm 755 doc/rxvt-tabbed $pkgdir/usr/bin/urxvt-tabbed
-}
-
-package_rxvt-unicode-terminfo() {
-  pkgdesc='Terminfo files for urxvt'
-  conflict=('rxvt-unicode=9.18-6')
-  install -dm 755 $pkgdir/usr/share/
-  mv terminfo $pkgdir/usr/share/
-}
-
-# vim:set ts=2 sw=2 et:

Copied: 

[arch-commits] Commit in ginac/repos/community-i686 (4 files)

2015-01-01 Thread Jaroslav Lichtblau
Date: Thursday, January 1, 2015 @ 18:42:55
  Author: jlichtblau
Revision: 125131

archrelease: copy trunk to community-i686

Added:
  ginac/repos/community-i686/PKGBUILD
(from rev 125130, ginac/trunk/PKGBUILD)
  ginac/repos/community-i686/ginac.install
(from rev 125130, ginac/trunk/ginac.install)
Deleted:
  ginac/repos/community-i686/PKGBUILD
  ginac/repos/community-i686/ginac.install

---+
 PKGBUILD  |   74 
 ginac.install |   40 +++---
 2 files changed, 57 insertions(+), 57 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-01-01 17:30:08 UTC (rev 125130)
+++ PKGBUILD2015-01-01 17:42:55 UTC (rev 125131)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau dragonl...@aur.archlinux.org
-# Contributor: Stéphane Gaudreault steph...@archlinux.org
-# Contributor: Thomas Dziedzic  gostrc at gmail 
-# Contributor: Thomas Baechler tho...@archlinux.org
-
-pkgname=ginac
-pkgver=1.6.2
-pkgrel=3
-pkgdesc=C++ library for symbolic calculations
-arch=('i686' 'x86_64')
-url='http://www.ginac.de/'
-license=('GPL')
-depends=('cln')
-makedepends=('transfig' 'doxygen' 'texlive-bin')
-install=${pkgname}.install
-source=(http://www.ginac.de/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('0f34d255024b3fb258e44da84f9e82dfb3dc9bc15f0999b7a18204a730663bde')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  ./configure --prefix=/usr --disable-static
-  make
-}
-
-check() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  make check
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  make DESTDIR=${pkgdir} install
-}

Copied: ginac/repos/community-i686/PKGBUILD (from rev 125130, 
ginac/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-01-01 17:42:55 UTC (rev 125131)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
+# Contributor: Stéphane Gaudreault steph...@archlinux.org
+# Contributor: Thomas Dziedzic  gostrc at gmail 
+# Contributor: Thomas Baechler tho...@archlinux.org
+
+pkgname=ginac
+pkgver=1.6.3
+pkgrel=1
+pkgdesc=C++ library for symbolic calculations
+arch=('i686' 'x86_64')
+url='http://www.ginac.de/'
+license=('GPL')
+depends=('cln')
+makedepends=('transfig' 'doxygen' 'texlive-bin' 'python')
+install=${pkgname}.install
+source=(http://www.ginac.de/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('6756c7de3485bc5245f8b0e4b3c046ac75406b93e9205b4180b096846932d9bd')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  make check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+}

Deleted: ginac.install
===
--- ginac.install   2015-01-01 17:30:08 UTC (rev 125130)
+++ ginac.install   2015-01-01 17:42:55 UTC (rev 125131)
@@ -1,20 +0,0 @@
-infodir=/usr/share/info
-filelist=(ginac.info)
-
-post_install() {
- [ -x usr/bin/install-info ] || return 0
- for file in ${filelist[@]}; do
-usr/bin/install-info $infodir/$file $infodir/dir 2 /dev/null
- done
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-pre_remove() {
- [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-usr/bin/install-info --delete $infodir/$file $infodir/dir 2 /dev/null
-  done
-}

Copied: ginac/repos/community-i686/ginac.install (from rev 125130, 
ginac/trunk/ginac.install)
===
--- ginac.install   (rev 0)
+++ ginac.install   2015-01-01 17:42:55 UTC (rev 125131)
@@ -0,0 +1,20 @@
+infodir=/usr/share/info
+filelist=(ginac.info)
+
+post_install() {
+ [ -x usr/bin/install-info ] || return 0
+ for file in ${filelist[@]}; do
+usr/bin/install-info $infodir/$file $infodir/dir 2 /dev/null
+ done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+ [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+usr/bin/install-info --delete $infodir/$file $infodir/dir 2 /dev/null
+  done
+}


[arch-commits] Commit in kodi-audioencoder-lame/repos (4 files)

2015-01-01 Thread Ike Devolder
Date: Thursday, January 1, 2015 @ 22:19:59
  Author: idevolder
Revision: 125135

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

Added:
  kodi-audioencoder-lame/repos/community-testing-i686/PKGBUILD
(from rev 125134, kodi-audioencoder-lame/trunk/PKGBUILD)
  kodi-audioencoder-lame/repos/community-testing-x86_64/PKGBUILD
(from rev 125134, kodi-audioencoder-lame/trunk/PKGBUILD)
Deleted:
  kodi-audioencoder-lame/repos/community-testing-i686/PKGBUILD
  kodi-audioencoder-lame/repos/community-testing-x86_64/PKGBUILD

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

Deleted: community-testing-i686/PKGBUILD
===
--- community-testing-i686/PKGBUILD 2015-01-01 21:19:42 UTC (rev 125134)
+++ community-testing-i686/PKGBUILD 2015-01-01 21:19:59 UTC (rev 125135)
@@ -1,35 +0,0 @@
-# $Id
-# Maintainer: BlackEagle ike.devol...@gmail.com
-
-pkgname=kodi-audioencoder-lame
-pkgver=20141110.6f8384f
-pkgrel=1
-pkgdesc=kodi audioencoder addon for lame (mp3)
-arch=('i686' 'x86_64')
-url='https://github.com/xbmc/audioencoder.lame'
-license=('GPL')
-depends=('kodi' 'lame')
-makedepends=('git' 'cmake')
-source=($pkgname::git://github.com/xbmc/audioencoder.lame.git)
-sha256sums=('SKIP')
-
-pkgver() {
-   cd $pkgname
-   git log -1 --date=short --format=%cd.%h | tr -d '-'
-}
-
-build() {
-   cd $pkgname
-   cmake \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DBUILD_SHARED_LIBS=1 \
-   -DUSE_LTO=1
-   make
-}
-
-package() {
-   cd $pkgname
-   make DESTDIR=$pkgdir/ install
-}
-

Copied: kodi-audioencoder-lame/repos/community-testing-i686/PKGBUILD (from rev 
125134, kodi-audioencoder-lame/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2015-01-01 21:19:59 UTC (rev 125135)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: BlackEagle ike.devol...@gmail.com
+
+pkgname=kodi-audioencoder-lame
+pkgver=20141110.6f8384f
+pkgrel=2
+pkgdesc=kodi audioencoder addon for lame (mp3)
+arch=('i686' 'x86_64')
+url='https://github.com/xbmc/audioencoder.lame'
+license=('GPL')
+groups=('kodi-addons')
+depends=('kodi' 'lame')
+makedepends=('git' 'cmake')
+source=($pkgname::git://github.com/xbmc/audioencoder.lame.git)
+sha256sums=('SKIP')
+
+pkgver() {
+   cd $pkgname
+   git log -1 --date=short --format=%cd.%h | tr -d '-'
+}
+
+build() {
+   cd $pkgname
+   cmake \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DBUILD_SHARED_LIBS=1 \
+   -DUSE_LTO=1
+   make
+}
+
+package() {
+   cd $pkgname
+   make DESTDIR=$pkgdir/ install
+}
+

Deleted: community-testing-x86_64/PKGBUILD
===
--- community-testing-x86_64/PKGBUILD   2015-01-01 21:19:42 UTC (rev 125134)
+++ community-testing-x86_64/PKGBUILD   2015-01-01 21:19:59 UTC (rev 125135)
@@ -1,35 +0,0 @@
-# $Id
-# Maintainer: BlackEagle ike.devol...@gmail.com
-
-pkgname=kodi-audioencoder-lame
-pkgver=20141110.6f8384f
-pkgrel=1
-pkgdesc=kodi audioencoder addon for lame (mp3)
-arch=('i686' 'x86_64')
-url='https://github.com/xbmc/audioencoder.lame'
-license=('GPL')
-depends=('kodi' 'lame')
-makedepends=('git' 'cmake')
-source=($pkgname::git://github.com/xbmc/audioencoder.lame.git)
-sha256sums=('SKIP')
-
-pkgver() {
-   cd $pkgname
-   git log -1 --date=short --format=%cd.%h | tr -d '-'
-}
-
-build() {
-   cd $pkgname
-   cmake \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DBUILD_SHARED_LIBS=1 \
-   -DUSE_LTO=1
-   make
-}
-
-package() {
-   cd $pkgname
-   make DESTDIR=$pkgdir/ install
-}
-

Copied: kodi-audioencoder-lame/repos/community-testing-x86_64/PKGBUILD (from 
rev 125134, kodi-audioencoder-lame/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2015-01-01 21:19:59 UTC (rev 125135)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: BlackEagle ike.devol...@gmail.com
+
+pkgname=kodi-audioencoder-lame
+pkgver=20141110.6f8384f
+pkgrel=2
+pkgdesc=kodi audioencoder addon for lame (mp3)
+arch=('i686' 'x86_64')
+url='https://github.com/xbmc/audioencoder.lame'
+license=('GPL')
+groups=('kodi-addons')
+depends=('kodi' 'lame')
+makedepends=('git' 'cmake')
+source=($pkgname::git://github.com/xbmc/audioencoder.lame.git)
+sha256sums=('SKIP')
+

[arch-commits] Commit in kodi-audioencoder-flac/repos (4 files)

2015-01-01 Thread Ike Devolder
Date: Thursday, January 1, 2015 @ 22:19:13
  Author: idevolder
Revision: 125133

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

Added:
  kodi-audioencoder-flac/repos/community-testing-i686/PKGBUILD
(from rev 125132, kodi-audioencoder-flac/trunk/PKGBUILD)
  kodi-audioencoder-flac/repos/community-testing-x86_64/PKGBUILD
(from rev 125132, kodi-audioencoder-flac/trunk/PKGBUILD)
Deleted:
  kodi-audioencoder-flac/repos/community-testing-i686/PKGBUILD
  kodi-audioencoder-flac/repos/community-testing-x86_64/PKGBUILD

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

Deleted: community-testing-i686/PKGBUILD
===
--- community-testing-i686/PKGBUILD 2015-01-01 21:18:58 UTC (rev 125132)
+++ community-testing-i686/PKGBUILD 2015-01-01 21:19:13 UTC (rev 125133)
@@ -1,35 +0,0 @@
-# $Id
-# Maintainer: BlackEagle ike.devol...@gmail.com
-
-pkgname=kodi-audioencoder-flac
-pkgver=20141202.a960eba
-pkgrel=1
-pkgdesc=kodi audioencoder addon for flac
-arch=('i686' 'x86_64')
-url='https://github.com/xbmc/audioencoder.flac'
-license=('GPL')
-depends=('kodi')
-makedepends=('git' 'cmake')
-source=($pkgname::git://github.com/xbmc/audioencoder.flac.git)
-sha256sums=('SKIP')
-
-pkgver() {
-   cd $pkgname
-   git log -1 --date=short --format=%cd.%h | tr -d '-'
-}
-
-build() {
-   cd $pkgname
-   cmake \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DBUILD_SHARED_LIBS=1 \
-   -DUSE_LTO=1
-   make
-}
-
-package() {
-   cd $pkgname
-   make DESTDIR=$pkgdir/ install
-}
-

Copied: kodi-audioencoder-flac/repos/community-testing-i686/PKGBUILD (from rev 
125132, kodi-audioencoder-flac/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2015-01-01 21:19:13 UTC (rev 125133)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: BlackEagle ike.devol...@gmail.com
+
+pkgname=kodi-audioencoder-flac
+pkgver=20141202.a960eba
+pkgrel=2
+pkgdesc=kodi audioencoder addon for flac
+arch=('i686' 'x86_64')
+url='https://github.com/xbmc/audioencoder.flac'
+license=('GPL')
+groups=('kodi-addons')
+depends=('kodi')
+makedepends=('git' 'cmake')
+source=($pkgname::git://github.com/xbmc/audioencoder.flac.git)
+sha256sums=('SKIP')
+
+pkgver() {
+   cd $pkgname
+   git log -1 --date=short --format=%cd.%h | tr -d '-'
+}
+
+build() {
+   cd $pkgname
+   cmake \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DBUILD_SHARED_LIBS=1 \
+   -DUSE_LTO=1
+   make
+}
+
+package() {
+   cd $pkgname
+   make DESTDIR=$pkgdir/ install
+}
+

Deleted: community-testing-x86_64/PKGBUILD
===
--- community-testing-x86_64/PKGBUILD   2015-01-01 21:18:58 UTC (rev 125132)
+++ community-testing-x86_64/PKGBUILD   2015-01-01 21:19:13 UTC (rev 125133)
@@ -1,35 +0,0 @@
-# $Id
-# Maintainer: BlackEagle ike.devol...@gmail.com
-
-pkgname=kodi-audioencoder-flac
-pkgver=20141202.a960eba
-pkgrel=1
-pkgdesc=kodi audioencoder addon for flac
-arch=('i686' 'x86_64')
-url='https://github.com/xbmc/audioencoder.flac'
-license=('GPL')
-depends=('kodi')
-makedepends=('git' 'cmake')
-source=($pkgname::git://github.com/xbmc/audioencoder.flac.git)
-sha256sums=('SKIP')
-
-pkgver() {
-   cd $pkgname
-   git log -1 --date=short --format=%cd.%h | tr -d '-'
-}
-
-build() {
-   cd $pkgname
-   cmake \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DBUILD_SHARED_LIBS=1 \
-   -DUSE_LTO=1
-   make
-}
-
-package() {
-   cd $pkgname
-   make DESTDIR=$pkgdir/ install
-}
-

Copied: kodi-audioencoder-flac/repos/community-testing-x86_64/PKGBUILD (from 
rev 125132, kodi-audioencoder-flac/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2015-01-01 21:19:13 UTC (rev 125133)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: BlackEagle ike.devol...@gmail.com
+
+pkgname=kodi-audioencoder-flac
+pkgver=20141202.a960eba
+pkgrel=2
+pkgdesc=kodi audioencoder addon for flac
+arch=('i686' 'x86_64')
+url='https://github.com/xbmc/audioencoder.flac'
+license=('GPL')
+groups=('kodi-addons')
+depends=('kodi')
+makedepends=('git' 'cmake')
+source=($pkgname::git://github.com/xbmc/audioencoder.flac.git)
+sha256sums=('SKIP')
+
+pkgver() {
+   cd $pkgname
+   git log -1 

[arch-commits] Commit in kodi-audioencoder-vorbis/repos (4 files)

2015-01-01 Thread Ike Devolder
Date: Thursday, January 1, 2015 @ 22:20:38
  Author: idevolder
Revision: 125137

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

Added:
  kodi-audioencoder-vorbis/repos/community-testing-i686/PKGBUILD
(from rev 125136, kodi-audioencoder-vorbis/trunk/PKGBUILD)
  kodi-audioencoder-vorbis/repos/community-testing-x86_64/PKGBUILD
(from rev 125136, kodi-audioencoder-vorbis/trunk/PKGBUILD)
Deleted:
  kodi-audioencoder-vorbis/repos/community-testing-i686/PKGBUILD
  kodi-audioencoder-vorbis/repos/community-testing-x86_64/PKGBUILD

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

Deleted: community-testing-i686/PKGBUILD
===
--- community-testing-i686/PKGBUILD 2015-01-01 21:20:23 UTC (rev 125136)
+++ community-testing-i686/PKGBUILD 2015-01-01 21:20:38 UTC (rev 125137)
@@ -1,35 +0,0 @@
-# $Id
-# Maintainer: BlackEagle ike.devol...@gmail.com
-
-pkgname=kodi-audioencoder-vorbis
-pkgver=20141224.787d4a0
-pkgrel=1
-pkgdesc=kodi audioencoder addon for ogg/vorbis
-arch=('i686' 'x86_64')
-url='https://github.com/xbmc/audioencoder.vorbis'
-license=('GPL')
-depends=('kodi')
-makedepends=('git' 'cmake')
-source=($pkgname::git://github.com/xbmc/audioencoder.vorbis.git)
-sha256sums=('SKIP')
-
-pkgver() {
-   cd $pkgname
-   git log -1 --date=short --format=%cd.%h | tr -d '-'
-}
-
-build() {
-   cd $pkgname
-   cmake \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DBUILD_SHARED_LIBS=1 \
-   -DUSE_LTO=1
-   make
-}
-
-package() {
-   cd $pkgname
-   make DESTDIR=$pkgdir/ install
-}
-

Copied: kodi-audioencoder-vorbis/repos/community-testing-i686/PKGBUILD (from 
rev 125136, kodi-audioencoder-vorbis/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2015-01-01 21:20:38 UTC (rev 125137)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: BlackEagle ike.devol...@gmail.com
+
+pkgname=kodi-audioencoder-vorbis
+pkgver=20141224.787d4a0
+pkgrel=2
+pkgdesc=kodi audioencoder addon for ogg/vorbis
+arch=('i686' 'x86_64')
+url='https://github.com/xbmc/audioencoder.vorbis'
+license=('GPL')
+groups=('kodi-addons')
+depends=('kodi')
+makedepends=('git' 'cmake')
+source=($pkgname::git://github.com/xbmc/audioencoder.vorbis.git)
+sha256sums=('SKIP')
+
+pkgver() {
+   cd $pkgname
+   git log -1 --date=short --format=%cd.%h | tr -d '-'
+}
+
+build() {
+   cd $pkgname
+   cmake \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DBUILD_SHARED_LIBS=1 \
+   -DUSE_LTO=1
+   make
+}
+
+package() {
+   cd $pkgname
+   make DESTDIR=$pkgdir/ install
+}
+

Deleted: community-testing-x86_64/PKGBUILD
===
--- community-testing-x86_64/PKGBUILD   2015-01-01 21:20:23 UTC (rev 125136)
+++ community-testing-x86_64/PKGBUILD   2015-01-01 21:20:38 UTC (rev 125137)
@@ -1,35 +0,0 @@
-# $Id
-# Maintainer: BlackEagle ike.devol...@gmail.com
-
-pkgname=kodi-audioencoder-vorbis
-pkgver=20141224.787d4a0
-pkgrel=1
-pkgdesc=kodi audioencoder addon for ogg/vorbis
-arch=('i686' 'x86_64')
-url='https://github.com/xbmc/audioencoder.vorbis'
-license=('GPL')
-depends=('kodi')
-makedepends=('git' 'cmake')
-source=($pkgname::git://github.com/xbmc/audioencoder.vorbis.git)
-sha256sums=('SKIP')
-
-pkgver() {
-   cd $pkgname
-   git log -1 --date=short --format=%cd.%h | tr -d '-'
-}
-
-build() {
-   cd $pkgname
-   cmake \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DBUILD_SHARED_LIBS=1 \
-   -DUSE_LTO=1
-   make
-}
-
-package() {
-   cd $pkgname
-   make DESTDIR=$pkgdir/ install
-}
-

Copied: kodi-audioencoder-vorbis/repos/community-testing-x86_64/PKGBUILD (from 
rev 125136, kodi-audioencoder-vorbis/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2015-01-01 21:20:38 UTC (rev 125137)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: BlackEagle ike.devol...@gmail.com
+
+pkgname=kodi-audioencoder-vorbis
+pkgver=20141224.787d4a0
+pkgrel=2
+pkgdesc=kodi audioencoder addon for ogg/vorbis
+arch=('i686' 'x86_64')
+url='https://github.com/xbmc/audioencoder.vorbis'
+license=('GPL')
+groups=('kodi-addons')
+depends=('kodi')
+makedepends=('git' 'cmake')
+source=($pkgname::git://github.com/xbmc/audioencoder.vorbis.git)

[arch-commits] Commit in shadow/trunk (PKGBUILD login.defs)

2015-01-01 Thread Dave Reisner
Date: Thursday, January 1, 2015 @ 20:00:56
  Author: dreisner
Revision: 228332

upgpkg: shadow 4.2.1-2

- add ENCRYPT_METHOD sha512 (FS#43299)
- add validpgpkeys array

Modified:
  shadow/trunk/PKGBUILD
  shadow/trunk/login.defs

+
 PKGBUILD   |5 +++--
 login.defs |5 +
 2 files changed, 8 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-01-01 17:14:26 UTC (rev 228331)
+++ PKGBUILD2015-01-01 19:00:56 UTC (rev 228332)
@@ -4,7 +4,7 @@
 
 pkgname=shadow
 pkgver=4.2.1
-pkgrel=1
+pkgrel=2
 pkgdesc=Password and account management tool suite with support for shadow 
files and PAM
 arch=('i686' 'x86_64')
 url='http://pkg-shadow.alioth.debian.org/'
@@ -18,6 +18,7 @@
 etc/default/useradd)
 options=(strip debug)
 install='shadow.install'
+validpgpkeys=('D5C2F9BFCA128BBA22A77218872F702C4D6E25A8')  # Christian Perrier
 
source=(http://pkg-shadow.alioth.debian.org/releases/$pkgname-$pkgver.tar.xz{,.sig}
 LICENSE
 chgpasswd
@@ -37,7 +38,7 @@
   '4ad0e059406a305c8640ed30d93c2a1f62c2f4ad'
   '12427b1ca92a9b85ca8202239f0d9f50198b818f'
   '0e56fed7fc93572c6bf0d8f3b099166558bb46f1'
-  'e92045fb75e0c21a3f294a00de0bd2cd252e9463'
+  '5d67d1d499d031598372b856382702ecad4cf7e0'
   '12427b1ca92a9b85ca8202239f0d9f50198b818f'
   '611be25d91c3f8f307c7fe2485d5f781e5dee75f'
   'a154a94b47a3d0c6c287253b98c0d10b861226d0'

Modified: login.defs
===
--- login.defs  2015-01-01 17:14:26 UTC (rev 228331)
+++ login.defs  2015-01-01 19:00:56 UTC (rev 228332)
@@ -201,3 +201,8 @@
 # file.
 #
 MOTD_FILE
+
+#
+# Hash shadow passwords with sha512.
+#
+ENCRYPT_METHOD sha512


[arch-commits] Commit in kodi-audioencoder-vorbis/trunk (PKGBUILD)

2015-01-01 Thread Ike Devolder
Date: Thursday, January 1, 2015 @ 22:20:23
  Author: idevolder
Revision: 125136

upgpkg: kodi-audioencoder-vorbis 20141224.787d4a0-2

Modified:
  kodi-audioencoder-vorbis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-01 21:19:59 UTC (rev 125135)
+++ PKGBUILD2015-01-01 21:20:23 UTC (rev 125136)
@@ -1,13 +1,14 @@
-# $Id
+# $Id$
 # Maintainer: BlackEagle ike.devol...@gmail.com
 
 pkgname=kodi-audioencoder-vorbis
 pkgver=20141224.787d4a0
-pkgrel=1
+pkgrel=2
 pkgdesc=kodi audioencoder addon for ogg/vorbis
 arch=('i686' 'x86_64')
 url='https://github.com/xbmc/audioencoder.vorbis'
 license=('GPL')
+groups=('kodi-addons')
 depends=('kodi')
 makedepends=('git' 'cmake')
 source=($pkgname::git://github.com/xbmc/audioencoder.vorbis.git)


[arch-commits] Commit in kodi-audioencoder-flac/trunk (PKGBUILD)

2015-01-01 Thread Ike Devolder
Date: Thursday, January 1, 2015 @ 22:18:58
  Author: idevolder
Revision: 125132

upgpkg: kodi-audioencoder-flac 20141202.a960eba-2

Modified:
  kodi-audioencoder-flac/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-01 17:42:55 UTC (rev 125131)
+++ PKGBUILD2015-01-01 21:18:58 UTC (rev 125132)
@@ -1,13 +1,14 @@
-# $Id
+# $Id$
 # Maintainer: BlackEagle ike.devol...@gmail.com
 
 pkgname=kodi-audioencoder-flac
 pkgver=20141202.a960eba
-pkgrel=1
+pkgrel=2
 pkgdesc=kodi audioencoder addon for flac
 arch=('i686' 'x86_64')
 url='https://github.com/xbmc/audioencoder.flac'
 license=('GPL')
+groups=('kodi-addons')
 depends=('kodi')
 makedepends=('git' 'cmake')
 source=($pkgname::git://github.com/xbmc/audioencoder.flac.git)


[arch-commits] Commit in kodi-audioencoder-lame/trunk (PKGBUILD)

2015-01-01 Thread Ike Devolder
Date: Thursday, January 1, 2015 @ 22:19:42
  Author: idevolder
Revision: 125134

upgpkg: kodi-audioencoder-lame 20141110.6f8384f-2

Modified:
  kodi-audioencoder-lame/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-01 21:19:13 UTC (rev 125133)
+++ PKGBUILD2015-01-01 21:19:42 UTC (rev 125134)
@@ -1,13 +1,14 @@
-# $Id
+# $Id$
 # Maintainer: BlackEagle ike.devol...@gmail.com
 
 pkgname=kodi-audioencoder-lame
 pkgver=20141110.6f8384f
-pkgrel=1
+pkgrel=2
 pkgdesc=kodi audioencoder addon for lame (mp3)
 arch=('i686' 'x86_64')
 url='https://github.com/xbmc/audioencoder.lame'
 license=('GPL')
+groups=('kodi-addons')
 depends=('kodi' 'lame')
 makedepends=('git' 'cmake')
 source=($pkgname::git://github.com/xbmc/audioencoder.lame.git)


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

2015-01-01 Thread Andreas Radke
Date: Thursday, January 1, 2015 @ 13:49:27
  Author: andyrtr
Revision: 228326

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

Added:
  claws-mail/repos/extra-i686/PKGBUILD
(from rev 228325, claws-mail/trunk/PKGBUILD)
  claws-mail/repos/extra-i686/claws-mail.install
(from rev 228325, claws-mail/trunk/claws-mail.install)
  claws-mail/repos/extra-i686/git_fixes.diff
(from rev 228325, claws-mail/trunk/git_fixes.diff)
  claws-mail/repos/extra-x86_64/PKGBUILD
(from rev 228325, claws-mail/trunk/PKGBUILD)
  claws-mail/repos/extra-x86_64/claws-mail.install
(from rev 228325, claws-mail/trunk/claws-mail.install)
  claws-mail/repos/extra-x86_64/git_fixes.diff
(from rev 228325, claws-mail/trunk/git_fixes.diff)
Deleted:
  claws-mail/repos/extra-i686/PKGBUILD
  claws-mail/repos/extra-i686/claws-mail.install
  claws-mail/repos/extra-x86_64/PKGBUILD
  claws-mail/repos/extra-x86_64/claws-mail.install

-+
 /PKGBUILD   |  168 ++
 /claws-mail.install |   32 +++
 extra-i686/PKGBUILD |   74 
 extra-i686/claws-mail.install   |   16 ---
 extra-i686/git_fixes.diff   |   55 
 extra-x86_64/PKGBUILD   |   74 
 extra-x86_64/claws-mail.install |   16 ---
 extra-x86_64/git_fixes.diff |   55 
 8 files changed, 310 insertions(+), 180 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-01-01 12:49:11 UTC (rev 228325)
+++ extra-i686/PKGBUILD 2015-01-01 12:49:27 UTC (rev 228326)
@@ -1,74 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke andy...@archlinux.org
-
-pkgname=claws-mail
-pkgver=3.11.0
-pkgrel=2
-pkgdesc=A GTK+ based e-mail client.
-arch=('i686' 'x86_64')
-license=('GPL3')
-url=http://www.claws-mail.org;
-depends=('gtk2' 'gnutls' 'startup-notification' 'enchant' 'gpgme' 'libetpan' 
'compface'
- 'libsm' 'dbus-glib' 'hicolor-icon-theme' 'desktop-file-utils')
-makedepends=('spamassassin' 'bogofilter' 'valgrind' 'intltool'
- # dependencies for plugins
- 'libsoup' 'libgdata' 'webkitgtk2' 'libnotify' 'libcanberra' 
'poppler-glib' 'pygtk') 
- #'libchamplain' needed for geolocation plugin, disabled for now - 
most time it's not compatible with current gnome releases
-optdepends=('python2:   needed for some tools and python plugin'
-'perl:  needed for some tools and perl plugin'
-'spamassassin:  adds support for spamfiltering'
-'bogofilter:adds support for spamfiltering'
-'libnotify: for notification plugin'
-'libcanberra:   for notification plugin'
-'dbus:  for notification plugin'
-'libxml2:   for gtkhtml2_viewer and rssyl plugins'
-'curl:  for gtkhtml2_viewer, vcalendar, rssyl and 
spamreport plugins'
-'libarchive:for archive plugin and various other plugins'
-'libytnef:  for tnef_parse plugin'
-'webkitgtk2:for the fancy webkit html plugin'
-'libsoup:   for the fancy webkit html plugin'
-   'libgdata:  for gdata plugin'
-   'poppler-glib:  for pdf viewer plugin'
-   'ghostscript:   for pdf viewer plugin')
-replaces=('sylpheed-claws' 'claws-mail-extra-plugins')
-conflicts=('claws-mail-extra-plugins')
-provides=('claws')
-install=claws-mail.install
-source=(http://downloads.sourceforge.net/sourceforge/claws-mail/${pkgname}-${pkgver}.tar.xz{,.asc})
-sha1sums=('1fc919e7d4357408a04131c4195878ea920de4f0'
-  'SKIP')
-
-build() {
-  cd ${pkgname}-${pkgver}
- 
-  # fixes for python2
-  export PYTHON=/usr/bin/python2
-  sed -i 's@^#!.*python.*@#!/usr/bin/python2@' tools/*.py
-  sed -i 's:python -c:python2 -c:g' configure
-  
-  ./configure --prefix=/usr --disable-static \
---enable-enchant \
---enable-gnutls \
---enable-ldap \
---enable-crash-dialog \
---enable-pgpmime-plugin \
---enable-spamassassin-plugin \
---enable-bogofilter-plugin \
---enable-appdata
-#--help
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-
-  # build and install extra tools
-  cd tools
-  make
-   # all executables and .conf files ; only top directory
-  find -maxdepth 1 -type f -and -perm /111 -or -name '*.conf' | while read i ; 
do
-  install -D -m755 ${i} \
-${pkgdir}/usr/lib/claws-mail/tools/${i}
-  done
-}

Copied: claws-mail/repos/extra-i686/PKGBUILD (from rev 228325, 
claws-mail/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-01-01 12:49:27 UTC (rev 228326)
@@ -0,0 +1,84 @@
+# $Id$
+# Maintainer: Andreas Radke 

[arch-commits] Commit in kodi-pvr-addons/repos (4 files)

2015-01-01 Thread Ike Devolder
Date: Thursday, January 1, 2015 @ 22:22:12
  Author: idevolder
Revision: 125141

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

Added:
  kodi-pvr-addons/repos/community-testing-i686/PKGBUILD
(from rev 125140, kodi-pvr-addons/trunk/PKGBUILD)
  kodi-pvr-addons/repos/community-testing-x86_64/PKGBUILD
(from rev 125140, kodi-pvr-addons/trunk/PKGBUILD)
Deleted:
  kodi-pvr-addons/repos/community-testing-i686/PKGBUILD
  kodi-pvr-addons/repos/community-testing-x86_64/PKGBUILD

---+
 /PKGBUILD |   66 
 community-testing-i686/PKGBUILD   |   32 -
 community-testing-x86_64/PKGBUILD |   32 -
 3 files changed, 66 insertions(+), 64 deletions(-)

Deleted: community-testing-i686/PKGBUILD
===
--- community-testing-i686/PKGBUILD 2015-01-01 21:21:56 UTC (rev 125140)
+++ community-testing-i686/PKGBUILD 2015-01-01 21:22:12 UTC (rev 125141)
@@ -1,32 +0,0 @@
-# $Id
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: BlackEagle ike.devol...@gmail.com
-
-pkgname=kodi-pvr-addons
-pkgver=20141212
-_relname='Helix_rc3'
-pkgrel=1
-pkgdesc=PVR add-ons for current stable kodi
-arch=('i686' 'x86_64')
-url=https://github.com/opdenkamp/xbmc-pvr-addons;
-license=('GPL3')
-depends=('kodi')
-makedepends=('git' 'libmysqlclient' 'boost')
-optdepends=('tvheadend-git: tvheadend backend' 'mythtv: mythtv backend')
-replaces=('xbmc-pvr-addons')
-conflicts=('xbmc-pvr-addons' 'xbmc-pvr-addons-git')
-source=($pkgname-$pkgver.tar.gz::https://github.com/opdenkamp/xbmc-pvr-addons/archive/${_relname}.tar.gz;)
-
-build() {
-  cd $srcdir/xbmc-pvr-addons-${_relname}
-  ./bootstrap
-  ./configure --prefix=/usr --enable-addons-with-dependencies
-  make
-}
-
-package() {
-  cd $srcdir/xbmc-pvr-addons-${_relname}
-  make DESTDIR=$pkgdir/ install
-}
-
-sha256sums=('e48de53c58245e512095d515d463f013e51e165fc617f1cb93e443cdd9f5096b')

Copied: kodi-pvr-addons/repos/community-testing-i686/PKGBUILD (from rev 125140, 
kodi-pvr-addons/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2015-01-01 21:22:12 UTC (rev 125141)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: BlackEagle ike.devol...@gmail.com
+
+pkgname=kodi-pvr-addons
+pkgver=20141212
+_relname='Helix_rc3'
+pkgrel=2
+pkgdesc=PVR add-ons for current stable kodi
+arch=('i686' 'x86_64')
+url=https://github.com/opdenkamp/xbmc-pvr-addons;
+license=('GPL3')
+groups=('kodi-addons')
+depends=('kodi')
+makedepends=('git')
+optdepends=('tvheadend-git: tvheadend backend' 'mythtv: mythtv backend')
+replaces=('xbmc-pvr-addons')
+conflicts=('xbmc-pvr-addons' 'xbmc-pvr-addons-git')
+source=($pkgname-$pkgver.tar.gz::https://github.com/opdenkamp/xbmc-pvr-addons/archive/${_relname}.tar.gz;)
+
+build() {
+  cd $srcdir/xbmc-pvr-addons-${_relname}
+  ./bootstrap
+  ./configure --prefix=/usr --enable-addons-with-dependencies
+  make
+}
+
+package() {
+  cd $srcdir/xbmc-pvr-addons-${_relname}
+  make DESTDIR=$pkgdir/ install
+}
+
+sha256sums=('e48de53c58245e512095d515d463f013e51e165fc617f1cb93e443cdd9f5096b')

Deleted: community-testing-x86_64/PKGBUILD
===
--- community-testing-x86_64/PKGBUILD   2015-01-01 21:21:56 UTC (rev 125140)
+++ community-testing-x86_64/PKGBUILD   2015-01-01 21:22:12 UTC (rev 125141)
@@ -1,32 +0,0 @@
-# $Id
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: BlackEagle ike.devol...@gmail.com
-
-pkgname=kodi-pvr-addons
-pkgver=20141212
-_relname='Helix_rc3'
-pkgrel=1
-pkgdesc=PVR add-ons for current stable kodi
-arch=('i686' 'x86_64')
-url=https://github.com/opdenkamp/xbmc-pvr-addons;
-license=('GPL3')
-depends=('kodi')
-makedepends=('git' 'libmysqlclient' 'boost')
-optdepends=('tvheadend-git: tvheadend backend' 'mythtv: mythtv backend')
-replaces=('xbmc-pvr-addons')
-conflicts=('xbmc-pvr-addons' 'xbmc-pvr-addons-git')
-source=($pkgname-$pkgver.tar.gz::https://github.com/opdenkamp/xbmc-pvr-addons/archive/${_relname}.tar.gz;)
-
-build() {
-  cd $srcdir/xbmc-pvr-addons-${_relname}
-  ./bootstrap
-  ./configure --prefix=/usr --enable-addons-with-dependencies
-  make
-}
-
-package() {
-  cd $srcdir/xbmc-pvr-addons-${_relname}
-  make DESTDIR=$pkgdir/ install
-}
-
-sha256sums=('e48de53c58245e512095d515d463f013e51e165fc617f1cb93e443cdd9f5096b')

Copied: kodi-pvr-addons/repos/community-testing-x86_64/PKGBUILD (from rev 
125140, kodi-pvr-addons/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2015-01-01 21:22:12 UTC (rev 125141)
@@ -0,0 +1,33 @@
+# $Id$

[arch-commits] Commit in kodi-audioencoder-wav/repos (4 files)

2015-01-01 Thread Ike Devolder
Date: Thursday, January 1, 2015 @ 22:21:15
  Author: idevolder
Revision: 125139

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

Added:
  kodi-audioencoder-wav/repos/community-testing-i686/PKGBUILD
(from rev 125138, kodi-audioencoder-wav/trunk/PKGBUILD)
  kodi-audioencoder-wav/repos/community-testing-x86_64/PKGBUILD
(from rev 125138, kodi-audioencoder-wav/trunk/PKGBUILD)
Deleted:
  kodi-audioencoder-wav/repos/community-testing-i686/PKGBUILD
  kodi-audioencoder-wav/repos/community-testing-x86_64/PKGBUILD

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

Deleted: community-testing-i686/PKGBUILD
===
--- community-testing-i686/PKGBUILD 2015-01-01 21:21:00 UTC (rev 125138)
+++ community-testing-i686/PKGBUILD 2015-01-01 21:21:15 UTC (rev 125139)
@@ -1,35 +0,0 @@
-# $Id
-# Maintainer: BlackEagle ike.devol...@gmail.com
-
-pkgname=kodi-audioencoder-wav
-pkgver=20141102.40aaedf
-pkgrel=1
-pkgdesc=kodi audioencoder addon for wav
-arch=('i686' 'x86_64')
-url='https://github.com/xbmc/audioencoder.wav'
-license=('GPL')
-depends=('kodi')
-makedepends=('git' 'cmake')
-source=($pkgname::git://github.com/xbmc/audioencoder.wav.git)
-sha256sums=('SKIP')
-
-pkgver() {
-   cd $pkgname
-   git log -1 --date=short --format=%cd.%h | tr -d '-'
-}
-
-build() {
-   cd $pkgname
-   cmake \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DBUILD_SHARED_LIBS=1 \
-   -DUSE_LTO=1
-   make
-}
-
-package() {
-   cd $pkgname
-   make DESTDIR=$pkgdir/ install
-}
-

Copied: kodi-audioencoder-wav/repos/community-testing-i686/PKGBUILD (from rev 
125138, kodi-audioencoder-wav/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2015-01-01 21:21:15 UTC (rev 125139)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: BlackEagle ike.devol...@gmail.com
+
+pkgname=kodi-audioencoder-wav
+pkgver=20141102.40aaedf
+pkgrel=2
+pkgdesc=kodi audioencoder addon for wav
+arch=('i686' 'x86_64')
+url='https://github.com/xbmc/audioencoder.wav'
+license=('GPL')
+groups=('kodi-addons')
+depends=('kodi')
+makedepends=('git' 'cmake')
+source=($pkgname::git://github.com/xbmc/audioencoder.wav.git)
+sha256sums=('SKIP')
+
+pkgver() {
+   cd $pkgname
+   git log -1 --date=short --format=%cd.%h | tr -d '-'
+}
+
+build() {
+   cd $pkgname
+   cmake \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DBUILD_SHARED_LIBS=1 \
+   -DUSE_LTO=1
+   make
+}
+
+package() {
+   cd $pkgname
+   make DESTDIR=$pkgdir/ install
+}
+

Deleted: community-testing-x86_64/PKGBUILD
===
--- community-testing-x86_64/PKGBUILD   2015-01-01 21:21:00 UTC (rev 125138)
+++ community-testing-x86_64/PKGBUILD   2015-01-01 21:21:15 UTC (rev 125139)
@@ -1,35 +0,0 @@
-# $Id
-# Maintainer: BlackEagle ike.devol...@gmail.com
-
-pkgname=kodi-audioencoder-wav
-pkgver=20141102.40aaedf
-pkgrel=1
-pkgdesc=kodi audioencoder addon for wav
-arch=('i686' 'x86_64')
-url='https://github.com/xbmc/audioencoder.wav'
-license=('GPL')
-depends=('kodi')
-makedepends=('git' 'cmake')
-source=($pkgname::git://github.com/xbmc/audioencoder.wav.git)
-sha256sums=('SKIP')
-
-pkgver() {
-   cd $pkgname
-   git log -1 --date=short --format=%cd.%h | tr -d '-'
-}
-
-build() {
-   cd $pkgname
-   cmake \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DBUILD_SHARED_LIBS=1 \
-   -DUSE_LTO=1
-   make
-}
-
-package() {
-   cd $pkgname
-   make DESTDIR=$pkgdir/ install
-}
-

Copied: kodi-audioencoder-wav/repos/community-testing-x86_64/PKGBUILD (from rev 
125138, kodi-audioencoder-wav/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2015-01-01 21:21:15 UTC (rev 125139)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: BlackEagle ike.devol...@gmail.com
+
+pkgname=kodi-audioencoder-wav
+pkgver=20141102.40aaedf
+pkgrel=2
+pkgdesc=kodi audioencoder addon for wav
+arch=('i686' 'x86_64')
+url='https://github.com/xbmc/audioencoder.wav'
+license=('GPL')
+groups=('kodi-addons')
+depends=('kodi')
+makedepends=('git' 'cmake')
+source=($pkgname::git://github.com/xbmc/audioencoder.wav.git)
+sha256sums=('SKIP')
+
+pkgver() {
+   cd $pkgname
+   git log -1 --date=short --format=%cd.%h | tr 

[arch-commits] Commit in libfes (5 files)

2015-01-01 Thread Antonio Rojas
Date: Friday, January 2, 2015 @ 01:05:19
  Author: arojas
Revision: 125145

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

Added:
  libfes/repos/
  libfes/repos/community-i686/
  libfes/repos/community-i686/PKGBUILD
(from rev 125144, libfes/trunk/PKGBUILD)
  libfes/repos/community-x86_64/
  libfes/repos/community-x86_64/PKGBUILD
(from rev 125144, libfes/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   25 +
 community-x86_64/PKGBUILD |   25 +
 2 files changed, 50 insertions(+)

Copied: libfes/repos/community-i686/PKGBUILD (from rev 125144, 
libfes/trunk/PKGBUILD)
===
--- repos/community-i686/PKGBUILD   (rev 0)
+++ repos/community-i686/PKGBUILD   2015-01-02 00:05:19 UTC (rev 125145)
@@ -0,0 +1,25 @@
+# Maintainer: Antonio Rojas aro...@archlinux.org
+
+pkgname=libfes
+pkgver=0.2
+pkgrel=1
+pkgdesc=A software library devoted to solving systems of polynomial equations 
over F2
+arch=('i686' 'x86_64')
+url=http://www.lifl.fr/~bouillag/fes/;
+license=('GPL3')
+depends=('glibc')
+makedepends=('python2')
+source=(https://bitbucket.org/fes/fes/downloads/fes-$pkgver.spkg;)
+md5sums=('3d4051b5b7b23ef609f166733578d978')
+
+build() {
+  cd fes-$pkgver/src
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd fes-$pkgver/src
+  make install DESTDIR=$pkgdir
+}
+

Copied: libfes/repos/community-x86_64/PKGBUILD (from rev 125144, 
libfes/trunk/PKGBUILD)
===
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2015-01-02 00:05:19 UTC (rev 125145)
@@ -0,0 +1,25 @@
+# Maintainer: Antonio Rojas aro...@archlinux.org
+
+pkgname=libfes
+pkgver=0.2
+pkgrel=1
+pkgdesc=A software library devoted to solving systems of polynomial equations 
over F2
+arch=('i686' 'x86_64')
+url=http://www.lifl.fr/~bouillag/fes/;
+license=('GPL3')
+depends=('glibc')
+makedepends=('python2')
+source=(https://bitbucket.org/fes/fes/downloads/fes-$pkgver.spkg;)
+md5sums=('3d4051b5b7b23ef609f166733578d978')
+
+build() {
+  cd fes-$pkgver/src
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd fes-$pkgver/src
+  make install DESTDIR=$pkgdir
+}
+


[arch-commits] Commit in (3 files)

2015-01-01 Thread Antonio Rojas
Date: Friday, January 2, 2015 @ 01:20:37
  Author: arojas
Revision: 125146

New Sage dependency

Added:
  cryptominisat/
  cryptominisat/trunk/
  cryptominisat/trunk/PKGBUILD

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

Added: cryptominisat/trunk/PKGBUILD
===
--- cryptominisat/trunk/PKGBUILD(rev 0)
+++ cryptominisat/trunk/PKGBUILD2015-01-02 00:20:37 UTC (rev 125146)
@@ -0,0 +1,25 @@
+# Maintainer: Antonio Rojas aro...@archlinux.org
+
+pkgname=cryptominisat
+pkgver=2.9.9
+pkgrel=1
+pkgdesc=SAT solver that aims to become a premier SAT solver with all the 
features and speed of successful SAT solvers, such as MiniSat and PrecoSat
+arch=('i686' 'x86_64')
+url=http://www.msoos.org/cryptominisat2/;
+license=('LGPL')
+depends=('zlib' 'gcc-libs')
+makedepends=()
+source=(https://gforge.inria.fr/frs/download.php/file/33402/cmsat-$pkgver.tar.gz;)
+md5sums=('8735e6295d1e0114ae649588fd82b963')
+
+build() {
+  cd cmsat-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd cmsat-$pkgver
+  make install DESTDIR=$pkgdir
+}
+


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


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

2015-01-01 Thread Antonio Rojas
Date: Friday, January 2, 2015 @ 01:03:27
  Author: arojas
Revision: 125143

New Sage dependency

Added:
  libfes/
  libfes/trunk/
  libfes/trunk/PKGBUILD

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

Added: libfes/trunk/PKGBUILD
===
--- libfes/trunk/PKGBUILD   (rev 0)
+++ libfes/trunk/PKGBUILD   2015-01-02 00:03:27 UTC (rev 125143)
@@ -0,0 +1,25 @@
+# Maintainer: Antonio Rojas aro...@archlinux.org
+
+pkgname=libfes
+pkgver=0.2
+pkgrel=1
+pkgdesc=A software library devoted to solving systems of polynomial equations 
over F2
+arch=('i686' 'x86_64')
+url=http://www.lifl.fr/~bouillag/fes/;
+license=('GPL3')
+depends=('glibc')
+makedepends=('python2')
+source=(https://bitbucket.org/fes/fes/downloads/fes-$pkgver.spkg;)
+md5sums=('3d4051b5b7b23ef609f166733578d978')
+
+build() {
+  cd fes-$pkgver/src
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd fes-$pkgver/src
+  make install DESTDIR=$pkgdir
+}
+


[arch-commits] Commit in kodi-pvr-addons/trunk (PKGBUILD)

2015-01-01 Thread Ike Devolder
Date: Thursday, January 1, 2015 @ 22:21:56
  Author: idevolder
Revision: 125140

upgpkg: kodi-pvr-addons 20141212-2

Modified:
  kodi-pvr-addons/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-01 21:21:15 UTC (rev 125139)
+++ PKGBUILD2015-01-01 21:21:56 UTC (rev 125140)
@@ -1,4 +1,4 @@
-# $Id
+# $Id$
 # Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
 # Contributor: BlackEagle ike.devol...@gmail.com
 
@@ -5,13 +5,14 @@
 pkgname=kodi-pvr-addons
 pkgver=20141212
 _relname='Helix_rc3'
-pkgrel=1
+pkgrel=2
 pkgdesc=PVR add-ons for current stable kodi
 arch=('i686' 'x86_64')
 url=https://github.com/opdenkamp/xbmc-pvr-addons;
 license=('GPL3')
+groups=('kodi-addons')
 depends=('kodi')
-makedepends=('git' 'libmysqlclient' 'boost')
+makedepends=('git')
 optdepends=('tvheadend-git: tvheadend backend' 'mythtv: mythtv backend')
 replaces=('xbmc-pvr-addons')
 conflicts=('xbmc-pvr-addons' 'xbmc-pvr-addons-git')


[arch-commits] Commit in kodi-audioencoder-wav/trunk (PKGBUILD)

2015-01-01 Thread Ike Devolder
Date: Thursday, January 1, 2015 @ 22:21:00
  Author: idevolder
Revision: 125138

upgpkg: kodi-audioencoder-wav 20141102.40aaedf-2

Modified:
  kodi-audioencoder-wav/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-01 21:20:38 UTC (rev 125137)
+++ PKGBUILD2015-01-01 21:21:00 UTC (rev 125138)
@@ -1,13 +1,14 @@
-# $Id
+# $Id$
 # Maintainer: BlackEagle ike.devol...@gmail.com
 
 pkgname=kodi-audioencoder-wav
 pkgver=20141102.40aaedf
-pkgrel=1
+pkgrel=2
 pkgdesc=kodi audioencoder addon for wav
 arch=('i686' 'x86_64')
 url='https://github.com/xbmc/audioencoder.wav'
 license=('GPL')
+groups=('kodi-addons')
 depends=('kodi')
 makedepends=('git' 'cmake')
 source=($pkgname::git://github.com/xbmc/audioencoder.wav.git)


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

2015-01-01 Thread Antonio Rojas
Date: Friday, January 2, 2015 @ 00:38:49
  Author: arojas
Revision: 125142

Credit

Modified:
  python-mpmath/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-01 21:22:12 UTC (rev 125141)
+++ PKGBUILD2015-01-01 23:38:49 UTC (rev 125142)
@@ -2,6 +2,7 @@
 # Contributor: Thomas Dziedzic  gostrc at gmail 
 # Contributor: Paulo Matias matiasΘarchlinux-br·org
 # Contributor: Rafael G. Martins raf...@rafaelmartins.com
+# Contributor: Iván Pulido ijpuli...@riseup.net
 
 pkgbase=python-mpmath
 pkgname=('python2-mpmath' 'python-mpmath')


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

2015-01-01 Thread Antonio Rojas
Date: Friday, January 2, 2015 @ 01:04:38
  Author: arojas
Revision: 125144

Id

Modified:
  libfes/trunk/PKGBUILD (properties)

Index: libfes/trunk/PKGBUILD
===
--- libfes/trunk/PKGBUILD   2015-01-02 00:03:27 UTC (rev 125143)
+++ libfes/trunk/PKGBUILD   2015-01-02 00:04:38 UTC (rev 125144)

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


[arch-commits] Commit in qscintilla-qt5/repos (14 files)

2015-01-01 Thread Evgeniy Alekseev
Date: Friday, January 2, 2015 @ 07:36:58
  Author: arcanis
Revision: 125152

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

Added:
  qscintilla-qt5/repos/community-testing-i686/ChangeLog
(from rev 125151, qscintilla-qt5/trunk/ChangeLog)
  qscintilla-qt5/repos/community-testing-i686/PKGBUILD
(from rev 125151, qscintilla-qt5/trunk/PKGBUILD)
  qscintilla-qt5/repos/community-testing-i686/configure.py.patch
(from rev 125151, qscintilla-qt5/trunk/configure.py.patch)
  qscintilla-qt5/repos/community-testing-i686/libname.patch
(from rev 125151, qscintilla-qt5/trunk/libname.patch)
  qscintilla-qt5/repos/community-testing-x86_64/ChangeLog
(from rev 125151, qscintilla-qt5/trunk/ChangeLog)
  qscintilla-qt5/repos/community-testing-x86_64/PKGBUILD
(from rev 125151, qscintilla-qt5/trunk/PKGBUILD)
  qscintilla-qt5/repos/community-testing-x86_64/configure.py.patch
(from rev 125151, qscintilla-qt5/trunk/configure.py.patch)
  qscintilla-qt5/repos/community-testing-x86_64/libname.patch
(from rev 125151, qscintilla-qt5/trunk/libname.patch)
Deleted:
  qscintilla-qt5/repos/community-testing-i686/PKGBUILD
  qscintilla-qt5/repos/community-testing-i686/configure.py.patch
  qscintilla-qt5/repos/community-testing-i686/libname.patch
  qscintilla-qt5/repos/community-testing-x86_64/PKGBUILD
  qscintilla-qt5/repos/community-testing-x86_64/configure.py.patch
  qscintilla-qt5/repos/community-testing-x86_64/libname.patch

-+
 /PKGBUILD   |  176 ++
 /configure.py.patch |  106 +++
 /libname.patch  |  100 ++
 community-testing-i686/ChangeLog|5 
 community-testing-i686/PKGBUILD |   88 -
 community-testing-i686/configure.py.patch   |   53 ---
 community-testing-i686/libname.patch|   50 ---
 community-testing-x86_64/ChangeLog  |5 
 community-testing-x86_64/PKGBUILD   |   88 -
 community-testing-x86_64/configure.py.patch |   53 ---
 community-testing-x86_64/libname.patch  |   50 ---
 11 files changed, 392 insertions(+), 382 deletions(-)

Copied: qscintilla-qt5/repos/community-testing-i686/ChangeLog (from rev 125151, 
qscintilla-qt5/trunk/ChangeLog)
===
--- community-testing-i686/ChangeLog(rev 0)
+++ community-testing-i686/ChangeLog2015-01-02 06:36:58 UTC (rev 125152)
@@ -0,0 +1,5 @@
+2.8.4-2:
+remov conflict with qsctintilla
+
+2.8.4-1:
+move to [community]

Deleted: community-testing-i686/PKGBUILD
===
--- community-testing-i686/PKGBUILD 2015-01-02 06:36:34 UTC (rev 125151)
+++ community-testing-i686/PKGBUILD 2015-01-02 06:36:58 UTC (rev 125152)
@@ -1,88 +0,0 @@
-# $Id$
-# Maintainer: Evgeniy Alekseev arcanis at archlinux dot org
-# Maintainer: Ilya87 yast4ik at yahoo dot com
-
-pkgbase=qscintilla-qt5
-pkgname=('qscintilla-qt5' 'python-qscintilla-qt5' 'python2-qscintilla-qt5'
- 'python-qscintilla-qt5-common')
-pkgver=2.8.4
-pkgrel=1
-license=('GPL')
-arch=('i686' 'x86_64')
-url=http://www.riverbankcomputing.co.uk/software/qscintilla/intro;
-makedepends=('python2-pyqt5' 'python-pyqt5' 'qt5-tools' 'chrpath')
-options=('!buildflags')
-source=(http://downloads.sourceforge.net/pyqt/QScintilla-gpl-${pkgver}.tar.gz;
-'configure.py.patch'
-'libname.patch')
-md5sums=('28aec903ff48ae541295a4fb9c96f8ea'
- 'ea1d11d0a87341d2e55ebef6beeb5663'
- '1ac0fea53f72b0146e0820912ae8c48c')
-
-prepare() {
-  cd QScintilla-gpl-${pkgver}
-
-  patch -Np1 -i ${srcdir}/configure.py.patch
-  patch -Np1 -i ${srcdir}/libname.patch
-
-  cp -r Python{,2}
-  find Python2 -name '*.py' -type f -exec \
-   sed -i 's|env python|env python2|' {} \;
-}
-
-build() {
-  cd QScintilla-gpl-${pkgver}/Qt4Qt5
-  qmake qscintilla.pro
-  make
-
-  cd ../designer-Qt4Qt5
-  qmake designer.pro INCLUDEPATH+=../Qt4Qt5 QMAKE_LIBDIR+=../Qt4Qt5
-  make
-
-  cd ../Python
-  python3 configure.py -n ../Qt4Qt5/ -o ../Qt4Qt5/ -c --pyqt=PyQt5 
--pyqt-sipdir=/usr/share/sip/PyQt5 --qsci-sipdir=/usr/share/sip/PyQt5  --qmake 
/usr/bin/qmake
-  make
-
-  cd ../Python2
-  python2 configure.py -n ../Qt4Qt5/ -o ../Qt4Qt5/ -c --pyqt=PyQt5 
--pyqt-sipdir=/usr/share/sip/PyQt5 --qsci-sipdir=/usr/share/sip/PyQt5 --qmake 
/usr/bin/qmake
-  make
-}
-
-package_qscintilla-qt5() {
-  pkgdesc=A port to Qt5 of Neil Hodgson's Scintilla C++ editor class
-  depends=('qt5-base')
-  conflicts=('qscintilla')
-
-  cd QScintilla-gpl-${pkgver}/Qt4Qt5
-  make DESTDIR=${pkgdir} INSTALL_ROOT=${pkgdir} install
-
-  cd ../designer-Qt4Qt5
-  make DESTDIR=${pkgdir} INSTALL_ROOT=${pkgdir} install
-}
-
-package_python-qscintilla-qt5-common() {
-  pkgdesc=Common python qscintilla bindings files shared 

[arch-commits] Commit in eric/repos (5 files)

2015-01-01 Thread Evgeniy Alekseev
Date: Friday, January 2, 2015 @ 07:54:38
  Author: arcanis
Revision: 125154

archrelease: copy trunk to community-testing-any

Added:
  eric/repos/community-testing-any/
  eric/repos/community-testing-any/.contrib
(from rev 125153, eric/trunk/.contrib)
  eric/repos/community-testing-any/ChangeLog
(from rev 125153, eric/trunk/ChangeLog)
  eric/repos/community-testing-any/PKGBUILD
(from rev 125153, eric/trunk/PKGBUILD)
  eric/repos/community-testing-any/eric.install
(from rev 125153, eric/trunk/eric.install)

--+
 .contrib |7 ++
 ChangeLog|   16 ++
 PKGBUILD |  139 +
 eric.install |9 +++
 4 files changed, 171 insertions(+)

Copied: eric/repos/community-testing-any/.contrib (from rev 125153, 
eric/trunk/.contrib)
===
--- community-testing-any/.contrib  (rev 0)
+++ community-testing-any/.contrib  2015-01-02 06:54:38 UTC (rev 125154)
@@ -0,0 +1,7 @@
+This is a list of (past) contributors not already credited in the PKGBUILD:
+
+Eric Belanger e...@archlinux.org
+riai r...@bigfoot.com
+Ben b...@benmazer.net
+Daniel J Griffiths ghost1...@archlinux.us
+Felix Rohrbach f...@gmx.de

Copied: eric/repos/community-testing-any/ChangeLog (from rev 125153, 
eric/trunk/ChangeLog)
===
--- community-testing-any/ChangeLog (rev 0)
+++ community-testing-any/ChangeLog 2015-01-02 06:54:38 UTC (rev 125154)
@@ -0,0 +1,16 @@
+6.0.0-1:
+* upstream update
+* split to qt5 and qt4 packages
+
+5.5.2-1:
+upstream update
+
+5.5.1-1:
+upstream update
+
+5.5.0-1:
+* upstream update
+* create python2-eric package
+
+5.4.7-1:
+upstream update. Create eric-common package

Copied: eric/repos/community-testing-any/PKGBUILD (from rev 125153, 
eric/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2015-01-02 06:54:38 UTC (rev 125154)
@@ -0,0 +1,139 @@
+# $Id$
+# Maintainer: Evgeniy Alekseev arcanis at archlinux dot org
+# Contributor: Ray Rashif schiv at archlinux dot org
+# Contributor: Brad Fanella bradfanellaat archlinux dot us
+# See .contrib for older/other contributors
+
+pkgbase=eric
+pkgname=('eric-common-qt4' 'eric-qt4' 'python2-eric-qt4'
+ 'eric-common' 'eric' 'python2-eric')
+pkgver=6.0.0
+pkgrel=1
+pkgdesc=A full-featured Python and Ruby IDE in PyQt4
+arch=('any')
+url=http://eric-ide.python-projects.org/;
+license=('GPL3')
+depends=('python-qscintilla' 'python2-qscintilla'
+ 'python-qscintilla-qt5' 'python2-qscintilla-qt5'
+ 'qt5-svg' 'qt5-webkit')
+install=${pkgbase}.install
+source=(http://downloads.sourceforge.net/eric-ide/eric6-${pkgver}.tar.gz;)
+md5sums=('86d16e78fbf6a17f91181876f2ee86d9')
+changelog=ChangeLog
+
+prepare() {
+  cp -r ${srcdir}/eric6-${pkgver}{,_py2}
+
+  cd ${srcdir}/eric6-${pkgver}_py2/eric
+  find . -name '*.py' -exec \
+sed -i -r s:^#!/usr/bin/(env |)python(3|)$:#!/usr/bin/env python2: {} \;
+
+  cp -r ${srcdir}/eric6-${pkgver}{,-qt4}
+  cp -r ${srcdir}/eric6-${pkgver}_py2{,-qt4}
+}
+
+package_eric-common-qt4() {
+  depends=()
+
+  cd ${srcdir}/eric6-${pkgver}-qt4/eric
+  # eric APIs
+  install -Dm644 APIs/Python3/eric6.api \
+ ${pkgdir}/usr/share/qt4/qsci/api/python/eric6.api
+  install -Dm644 APIs/Python3/eric6.bas \
+ ${pkgdir}/usr/share/qt4/qsci/api/python/eric6.bas
+  # pyqt APIs
+  install -Dm644 APIs/Python3/PyQt4.bas \
+ ${pkgdir}/usr/share/qt4/qsci/api/python/PyQt4.bas
+  # qss APIs
+  install -Dm644 APIs/QSS/qss.api \
+ ${pkgdir}/usr/share/qt4/qsci/api/qss/qss.api
+  # qscintilla APIs
+  install -Dm644 APIs/Python3/QScintilla2.bas \
+ ${pkgdir}/usr/share/qt4/qsci/api/python/QScintilla2.bas
+  # zope APIs
+  install -Dm644 APIs/Python/zope-2.10.7.api \
+ ${pkgdir}/usr/share/qt4/qsci/api/python/zope-2.10.7.api
+  install -Dm644 APIs/Python/zope-2.11.2.api \
+ ${pkgdir}/usr/share/qt4/qsci/api/python/zope-2.11.2.api
+  install -Dm644 APIs/Python/zope-3.3.1.api \
+ ${pkgdir}/usr/share/qt4/qsci/api/python/zope-3.3.1.api
+  # ruby APIs
+  install -Dm644 APIs/Ruby/Ruby-1.8.7.api \
+ ${pkgdir}/usr/share/qt4/qsci/api/ruby/Ruby-1.8.7.api
+  install -Dm644 APIs/Ruby/Ruby-1.8.7.bas \
+ ${pkgdir}/usr/share/qt4/qsci/api/ruby/Ruby-1.8.7.bas
+  install -Dm644 APIs/Ruby/Ruby-1.9.1.api \
+ ${pkgdir}/usr/share/qt4/qsci/api/ruby/Ruby-1.9.1.api
+  install -Dm644 APIs/Ruby/Ruby-1.9.1.bas \
+ ${pkgdir}/usr/share/qt4/qsci/api/ruby/Ruby-1.9.1.bas
+}
+
+package_eric-qt4() {
+  depends=('eric-common-qt4' 'python-qscintilla')
+  conflicts=('eric')
+
+  cd 

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

2015-01-01 Thread Evgeniy Alekseev
Date: Friday, January 2, 2015 @ 07:54:22
  Author: arcanis
Revision: 125153

upgpkg: eric 6.0.0-1
* split to qt4 and qt5 packages

Modified:
  eric/trunk/ChangeLog
  eric/trunk/PKGBUILD

---+
 ChangeLog |4 ++
 PKGBUILD  |  100 
 2 files changed, 84 insertions(+), 20 deletions(-)

Modified: ChangeLog
===
--- ChangeLog   2015-01-02 06:36:58 UTC (rev 125152)
+++ ChangeLog   2015-01-02 06:54:22 UTC (rev 125153)
@@ -1,3 +1,7 @@
+6.0.0-1:
+* upstream update
+* split to qt5 and qt4 packages
+
 5.5.2-1:
 upstream update
 

Modified: PKGBUILD
===
--- PKGBUILD2015-01-02 06:36:58 UTC (rev 125152)
+++ PKGBUILD2015-01-02 06:54:22 UTC (rev 125153)
@@ -5,38 +5,44 @@
 # See .contrib for older/other contributors
 
 pkgbase=eric
-pkgname=('eric-common' 'eric' 'python2-eric')
-pkgver=5.5.2
+pkgname=('eric-common-qt4' 'eric-qt4' 'python2-eric-qt4'
+ 'eric-common' 'eric' 'python2-eric')
+pkgver=6.0.0
 pkgrel=1
 pkgdesc=A full-featured Python and Ruby IDE in PyQt4
 arch=('any')
 url=http://eric-ide.python-projects.org/;
 license=('GPL3')
-depends=('python-qscintilla' 'python2-qscintilla')
+depends=('python-qscintilla' 'python2-qscintilla'
+ 'python-qscintilla-qt5' 'python2-qscintilla-qt5'
+ 'qt5-svg' 'qt5-webkit')
 install=${pkgbase}.install
-source=(http://downloads.sourceforge.net/eric-ide/eric5-${pkgver}.tar.gz;)
-md5sums=('02e19a78056b0bc32e851753ec767e34')
+source=(http://downloads.sourceforge.net/eric-ide/eric6-${pkgver}.tar.gz;)
+md5sums=('86d16e78fbf6a17f91181876f2ee86d9')
 changelog=ChangeLog
 
 prepare() {
-  cp -r ${srcdir}/eric5-${pkgver}{,_py2}
+  cp -r ${srcdir}/eric6-${pkgver}{,_py2}
 
-  cd ${srcdir}/eric5-${pkgver}_py2/eric
+  cd ${srcdir}/eric6-${pkgver}_py2/eric
   find . -name '*.py' -exec \
 sed -i -r s:^#!/usr/bin/(env |)python(3|)$:#!/usr/bin/env python2: {} \;
+
+  cp -r ${srcdir}/eric6-${pkgver}{,-qt4}
+  cp -r ${srcdir}/eric6-${pkgver}_py2{,-qt4}
 }
 
-package_eric-common() {
+package_eric-common-qt4() {
   depends=()
 
-  cd ${srcdir}/eric5-${pkgver}/eric
+  cd ${srcdir}/eric6-${pkgver}-qt4/eric
   # eric APIs
-  install -Dm644 APIs/Python3/eric5.api \
- ${pkgdir}/usr/share/qt4/qsci/api/python/eric5.api
-  install -Dm644 APIs/Python3/eric5.bas \
- ${pkgdir}/usr/share/qt4/qsci/api/python/eric5.bas
+  install -Dm644 APIs/Python3/eric6.api \
+ ${pkgdir}/usr/share/qt4/qsci/api/python/eric6.api
+  install -Dm644 APIs/Python3/eric6.bas \
+ ${pkgdir}/usr/share/qt4/qsci/api/python/eric6.bas
   # pyqt APIs
-  install -Dm644 APIs/Python3/PyQt4_Qt4.bas \
+  install -Dm644 APIs/Python3/PyQt4.bas \
  ${pkgdir}/usr/share/qt4/qsci/api/python/PyQt4.bas
   # qss APIs
   install -Dm644 APIs/QSS/qss.api \
@@ -62,18 +68,72 @@
  ${pkgdir}/usr/share/qt4/qsci/api/ruby/Ruby-1.9.1.bas
 }
 
+package_eric-qt4() {
+  depends=('eric-common-qt4' 'python-qscintilla')
+  conflicts=('eric')
+
+  cd ${srcdir}/eric6-${pkgver}-qt4
+  python install.py -c -b /usr/bin -i ${pkgdir} --noapis --pyqt=4
+}
+
+package_python2-eric-qt4() {
+  depends=('eric-common-qt4' 'python2-qscintilla')
+  conflicts=('python2-eric-qt4')
+
+  cd ${srcdir}/eric6-${pkgver}_py2-qt4
+  python2 install.py -c -b /usr/bin -i ${pkgdir} -y --noapis --pyqt=4
+}
+
+package_eric-common() {
+  depends=()
+
+  cd ${srcdir}/eric6-${pkgver}/eric
+  # eric APIs
+  install -Dm644 APIs/Python3/eric6.api \
+ ${pkgdir}/usr/share/qt4/qsci/api/python/eric6.api
+  install -Dm644 APIs/Python3/eric6.bas \
+ ${pkgdir}/usr/share/qt4/qsci/api/python/eric6.bas
+  # pyqt APIs
+  install -Dm644 APIs/Python3/PyQt5.bas \
+ ${pkgdir}/usr/share/qt/qsci/api/python/PyQt5.bas
+  # qss APIs
+  install -Dm644 APIs/QSS/qss.api \
+ ${pkgdir}/usr/share/qt/qsci/api/qss/qss.api
+  # qscintilla APIs
+  install -Dm644 APIs/Python3/QScintilla2.bas \
+ ${pkgdir}/usr/share/qt/qsci/api/python/QScintilla2.bas
+  # zope APIs
+  install -Dm644 APIs/Python/zope-2.10.7.api \
+ ${pkgdir}/usr/share/qt/qsci/api/python/zope-2.10.7.api
+  install -Dm644 APIs/Python/zope-2.11.2.api \
+ ${pkgdir}/usr/share/qt/qsci/api/python/zope-2.11.2.api
+  install -Dm644 APIs/Python/zope-3.3.1.api \
+ ${pkgdir}/usr/share/qt/qsci/api/python/zope-3.3.1.api
+  # ruby APIs
+  install -Dm644 APIs/Ruby/Ruby-1.8.7.api \
+ ${pkgdir}/usr/share/qt/qsci/api/ruby/Ruby-1.8.7.api
+  install -Dm644 APIs/Ruby/Ruby-1.8.7.bas \
+ ${pkgdir}/usr/share/qt/qsci/api/ruby/Ruby-1.8.7.bas
+  install -Dm644 APIs/Ruby/Ruby-1.9.1.api \
+ ${pkgdir}/usr/share/qt/qsci/api/ruby/Ruby-1.9.1.api
+  install -Dm644 APIs/Ruby/Ruby-1.9.1.bas \
+ 

[arch-commits] Commit in eric-i18n/repos (3 files)

2015-01-01 Thread Evgeniy Alekseev
Date: Friday, January 2, 2015 @ 08:23:00
  Author: arcanis
Revision: 125156

archrelease: copy trunk to community-testing-any

Added:
  eric-i18n/repos/community-testing-any/
  eric-i18n/repos/community-testing-any/ChangeLog
(from rev 125155, eric-i18n/trunk/ChangeLog)
  eric-i18n/repos/community-testing-any/PKGBUILD
(from rev 125155, eric-i18n/trunk/PKGBUILD)

---+
 ChangeLog |   11 ++
 PKGBUILD  |   64 
 2 files changed, 75 insertions(+)

Copied: eric-i18n/repos/community-testing-any/ChangeLog (from rev 125155, 
eric-i18n/trunk/ChangeLog)
===
--- community-testing-any/ChangeLog (rev 0)
+++ community-testing-any/ChangeLog 2015-01-02 07:23:00 UTC (rev 125156)
@@ -0,0 +1,11 @@
+6.0.0-1:
+upstream update
+
+5.5.2-1:
+upstream update
+
+5.5.1-1:
+upstream update
+
+5.5.0-1:
+upstream update. Create package

Copied: eric-i18n/repos/community-testing-any/PKGBUILD (from rev 125155, 
eric-i18n/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2015-01-02 07:23:00 UTC (rev 125156)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer: Evgeniy Alekseev arcanis at archlinux dot org
+# Contributor: M0Rf30
+
+pkgbase=eric-i18n
+pkgver=6.0.0
+pkgrel=1
+pkgdesc=Language pack for the Eric IDE
+arch=('any')
+depends=()
+url=http://eric-ide.python-projects.org/index.html;
+license=('GPL3')
+depends=()
+changelog=ChangeLog
+
+_languages=('cs Czech'
+'de German'
+'en English'
+'es Spanish'
+'fr French'
+'it Italian'
+'pt Portuguese'
+'ru Russian'
+'tr Turkish'
+'zh_CN.GB2312   Chinese (Simplified)')
+
+pkgname=()
+source=()
+_url=http://downloads.sourceforge.net/eric-ide/
+
+for _lang in ${_languages[@]}; do
+  _path=${_lang%% *}
+  _locale=${_path%%.*}
+
+  _pkgname=eric-i18n-${_locale,,}
+  pkgname+=(${_pkgname} ${_pkgname}-qt4)
+  source+=(${_url}/eric6-i18n-${_path}-${pkgver}.tar.gz)
+
+  for _qtver in '-qt4' ''; do
+eval package_${_pkgname}${_qtver}() {
+  _package ${_lang} ${_qtver}
+}
+  done
+done
+
+_package() {
+  pkgdesc=${2} language pack for Eric IDE
+  depends=(eric-common${3}=${pkgver})
+
+  [ -z ${3} ]  _qtver=qt || _qtver=qt4
+  install -Dm644 eric6-${pkgver}/eric/i18n/eric6_${1}.qm \
+ ${pkgdir}/usr/share/${_qtver}/translations/eric6_${1}.qm
+}
+
+md5sums=('058f6433649d33d56ebb755aa2509b68'
+ '4e769481934d8d77556f19a74a98e80e'
+ '89a1a547d1a8fe707d8f0a805151856e'
+ '7d3ed635deb99c24b0f4a6521910fc7c'
+ 'aedee132d370fd3f2e3efb040ab8732b'
+ '30d08539a502e38b6feced82e7487847'
+ '128d95da8963bcf2c2b1812b6532757e'
+ '3a5f370751109ecc6bca895249cb97fb'
+ '652a1384747837fbe0bde7ef8ad0cc03'
+ '022691a3b5803de3d4ac31afa844db98')


[arch-commits] Commit in eric-i18n/trunk (ChangeLog PKGBUILD)

2015-01-01 Thread Evgeniy Alekseev
Date: Friday, January 2, 2015 @ 08:22:44
  Author: arcanis
Revision: 125155

upgpkg: eric-i18n 6.0.0-1

Modified:
  eric-i18n/trunk/ChangeLog
  eric-i18n/trunk/PKGBUILD

---+
 ChangeLog |3 +++
 PKGBUILD  |   45 +
 2 files changed, 28 insertions(+), 20 deletions(-)

Modified: ChangeLog
===
--- ChangeLog   2015-01-02 06:54:38 UTC (rev 125154)
+++ ChangeLog   2015-01-02 07:22:44 UTC (rev 125155)
@@ -1,3 +1,6 @@
+6.0.0-1:
+upstream update
+
 5.5.2-1:
 upstream update
 

Modified: PKGBUILD
===
--- PKGBUILD2015-01-02 06:54:38 UTC (rev 125154)
+++ PKGBUILD2015-01-02 07:22:44 UTC (rev 125155)
@@ -3,11 +3,11 @@
 # Contributor: M0Rf30
 
 pkgbase=eric-i18n
-pkgver=5.5.2
+pkgver=6.0.0
 pkgrel=1
 pkgdesc=Language pack for the Eric IDE
 arch=('any')
-depends=(eric-common=${pkgver})
+depends=()
 url=http://eric-ide.python-projects.org/index.html;
 license=('GPL3')
 depends=()
@@ -33,27 +33,32 @@
   _locale=${_path%%.*}
 
   _pkgname=eric-i18n-${_locale,,}
-  pkgname+=(${_pkgname})
-  source+=(${_url}/eric5-i18n-${_path}-${pkgver}.tar.gz)
+  pkgname+=(${_pkgname} ${_pkgname}-qt4)
+  source+=(${_url}/eric6-i18n-${_path}-${pkgver}.tar.gz)
 
-  eval package_${_pkgname}() {
-_package ${_lang}
-  }
+  for _qtver in '-qt4' ''; do
+eval package_${_pkgname}${_qtver}() {
+  _package ${_lang} ${_qtver}
+}
+  done
 done
 
 _package() {
-  pkgdesc=$2 language pack for Eric IDE
-  install -Dm644 eric5-${pkgver}/eric/i18n/eric5_$1.qm \
- ${pkgdir}/usr/share/qt4/translations//eric5_$1.qm
+  pkgdesc=${2} language pack for Eric IDE
+  depends=(eric-common${3}=${pkgver})
+
+  [ -z ${3} ]  _qtver=qt || _qtver=qt4
+  install -Dm644 eric6-${pkgver}/eric/i18n/eric6_${1}.qm \
+ ${pkgdir}/usr/share/${_qtver}/translations/eric6_${1}.qm
 }
 
-md5sums=('da3c17c8d066c9b06df0f42eace716e1'
- '030b960fc9e3c194c65699ba33059a13'
- '8a321c3b37f9493360164b8b53284441'
- '016afd5f1d95ac9b911444963d980470'
- '3c4f88e1c27061118eb6a99810dff127'
- '0e28c6b01fe722d948e17d3101d1922e'
- 'd73f168f53acc5091632b14d90bcc30f'
- '0931406b4057d4576fcecfd3b2f43084'
- '33c6171eed66ac380557edcb9ddb761b'
- '7677f28983e7d8717df8571633e38d25')
+md5sums=('058f6433649d33d56ebb755aa2509b68'
+ '4e769481934d8d77556f19a74a98e80e'
+ '89a1a547d1a8fe707d8f0a805151856e'
+ '7d3ed635deb99c24b0f4a6521910fc7c'
+ 'aedee132d370fd3f2e3efb040ab8732b'
+ '30d08539a502e38b6feced82e7487847'
+ '128d95da8963bcf2c2b1812b6532757e'
+ '3a5f370751109ecc6bca895249cb97fb'
+ '652a1384747837fbe0bde7ef8ad0cc03'
+ '022691a3b5803de3d4ac31afa844db98')


[arch-commits] Commit in shadow/repos (32 files)

2015-01-01 Thread Dave Reisner
Date: Thursday, January 1, 2015 @ 20:03:05
  Author: dreisner
Revision: 228333

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

Added:
  shadow/repos/testing-i686/
  shadow/repos/testing-i686/LICENSE
(from rev 228332, shadow/trunk/LICENSE)
  shadow/repos/testing-i686/PKGBUILD
(from rev 228332, shadow/trunk/PKGBUILD)
  shadow/repos/testing-i686/chgpasswd
(from rev 228332, shadow/trunk/chgpasswd)
  shadow/repos/testing-i686/chpasswd
(from rev 228332, shadow/trunk/chpasswd)
  shadow/repos/testing-i686/defaults.pam
(from rev 228332, shadow/trunk/defaults.pam)
  shadow/repos/testing-i686/lastlog.tmpfiles
(from rev 228332, shadow/trunk/lastlog.tmpfiles)
  shadow/repos/testing-i686/login.defs
(from rev 228332, shadow/trunk/login.defs)
  shadow/repos/testing-i686/newusers
(from rev 228332, shadow/trunk/newusers)
  shadow/repos/testing-i686/passwd
(from rev 228332, shadow/trunk/passwd)
  shadow/repos/testing-i686/shadow-strncpy-usage.patch
(from rev 228332, shadow/trunk/shadow-strncpy-usage.patch)
  shadow/repos/testing-i686/shadow.install
(from rev 228332, shadow/trunk/shadow.install)
  shadow/repos/testing-i686/shadow.service
(from rev 228332, shadow/trunk/shadow.service)
  shadow/repos/testing-i686/shadow.timer
(from rev 228332, shadow/trunk/shadow.timer)
  shadow/repos/testing-i686/useradd.defaults
(from rev 228332, shadow/trunk/useradd.defaults)
  shadow/repos/testing-i686/xstrdup.patch
(from rev 228332, shadow/trunk/xstrdup.patch)
  shadow/repos/testing-x86_64/
  shadow/repos/testing-x86_64/LICENSE
(from rev 228332, shadow/trunk/LICENSE)
  shadow/repos/testing-x86_64/PKGBUILD
(from rev 228332, shadow/trunk/PKGBUILD)
  shadow/repos/testing-x86_64/chgpasswd
(from rev 228332, shadow/trunk/chgpasswd)
  shadow/repos/testing-x86_64/chpasswd
(from rev 228332, shadow/trunk/chpasswd)
  shadow/repos/testing-x86_64/defaults.pam
(from rev 228332, shadow/trunk/defaults.pam)
  shadow/repos/testing-x86_64/lastlog.tmpfiles
(from rev 228332, shadow/trunk/lastlog.tmpfiles)
  shadow/repos/testing-x86_64/login.defs
(from rev 228332, shadow/trunk/login.defs)
  shadow/repos/testing-x86_64/newusers
(from rev 228332, shadow/trunk/newusers)
  shadow/repos/testing-x86_64/passwd
(from rev 228332, shadow/trunk/passwd)
  shadow/repos/testing-x86_64/shadow-strncpy-usage.patch
(from rev 228332, shadow/trunk/shadow-strncpy-usage.patch)
  shadow/repos/testing-x86_64/shadow.install
(from rev 228332, shadow/trunk/shadow.install)
  shadow/repos/testing-x86_64/shadow.service
(from rev 228332, shadow/trunk/shadow.service)
  shadow/repos/testing-x86_64/shadow.timer
(from rev 228332, shadow/trunk/shadow.timer)
  shadow/repos/testing-x86_64/useradd.defaults
(from rev 228332, shadow/trunk/useradd.defaults)
  shadow/repos/testing-x86_64/xstrdup.patch
(from rev 228332, shadow/trunk/xstrdup.patch)

---+
 testing-i686/LICENSE  |   31 
 testing-i686/PKGBUILD |  146 +++
 testing-i686/chgpasswd|4 
 testing-i686/chpasswd |6 
 testing-i686/defaults.pam |6 
 testing-i686/lastlog.tmpfiles |1 
 testing-i686/login.defs   |  208 
 testing-i686/newusers |6 
 testing-i686/passwd   |4 
 testing-i686/shadow-strncpy-usage.patch   |   25 +++
 testing-i686/shadow.install   |9 +
 testing-i686/shadow.service   |   10 +
 testing-i686/shadow.timer |7 
 testing-i686/useradd.defaults |9 +
 testing-i686/xstrdup.patch|9 +
 testing-x86_64/LICENSE|   31 
 testing-x86_64/PKGBUILD   |  146 +++
 testing-x86_64/chgpasswd  |4 
 testing-x86_64/chpasswd   |6 
 testing-x86_64/defaults.pam   |6 
 testing-x86_64/lastlog.tmpfiles   |1 
 testing-x86_64/login.defs |  208 
 testing-x86_64/newusers   |6 
 testing-x86_64/passwd |4 
 testing-x86_64/shadow-strncpy-usage.patch |   25 +++
 testing-x86_64/shadow.install |9 +
 testing-x86_64/shadow.service |   10 +
 testing-x86_64/shadow.timer   |7 
 testing-x86_64/useradd.defaults   |9 +
 testing-x86_64/xstrdup.patch  |9 +
 30 files changed, 962 insertions(+)

Copied: shadow/repos/testing-i686/LICENSE (from rev 228332, 
shadow/trunk/LICENSE)
===
--- testing-i686/LICENSE(rev 0)
+++ testing-i686/LICENSE2015-01-01 19:03:05 UTC (rev 228333)
@@ -0,0 +1,31 @@
+/*
+ * Copyright (c) 1990 - 

[arch-commits] Commit in lib32-freetype2/trunk (2 files)

2015-01-01 Thread Jan Steffens
Date: Friday, January 2, 2015 @ 02:56:36
  Author: heftig
Revision: 125149

2.5.5

Modified:
  lib32-freetype2/trunk/PKGBUILD
Deleted:
  lib32-freetype2/trunk/0001-pcf-Fix-Savannah-bug-43774.patch

---+
 0001-pcf-Fix-Savannah-bug-43774.patch |  125 
 PKGBUILD  |   15 +--
 2 files changed, 5 insertions(+), 135 deletions(-)

Deleted: 0001-pcf-Fix-Savannah-bug-43774.patch
===
--- 0001-pcf-Fix-Savannah-bug-43774.patch   2015-01-02 00:49:36 UTC (rev 
125148)
+++ 0001-pcf-Fix-Savannah-bug-43774.patch   2015-01-02 01:56:36 UTC (rev 
125149)
@@ -1,125 +0,0 @@
-From 74af85c4b62b35e55b0ce9dec55ee10cbc4962a2 Mon Sep 17 00:00:00 2001
-From: Werner Lemberg w...@gnu.org
-Date: Mon, 8 Dec 2014 16:01:50 +0100
-Subject: [PATCH] [pcf] Fix Savannah bug #43774.
-
-Work around `features' of X11's `pcfWriteFont' and `pcfReadFont'
-functions.  Since the PCF format doesn't have an official
-specification, we have to exactly follow these functions' behaviour.
-
-The problem was unveiled with a patch from 2014-11-06, fixing issue #43547.
-
-* src/pcf/pcfread.c (pcf_read_TOC): Don't check table size for last
-element.  Instead, assign real size.

- ChangeLog | 14 ++
- src/pcf/pcfread.c | 54 +++---
- 2 files changed, 57 insertions(+), 11 deletions(-)
-
-diff --git a/src/pcf/pcfread.c b/src/pcf/pcfread.c
-index 998cbed..e3caf82 100644
 a/src/pcf/pcfread.c
-+++ b/src/pcf/pcfread.c
-@@ -2,7 +2,7 @@
- 
- FreeType font driver for pcf fonts
- 
--  Copyright 2000-2010, 2012, 2013 by
-+  Copyright 2000-2010, 2012-2014 by
-   Francesco Zappa Nardelli
- 
- Permission is hereby granted, free of charge, to any person obtaining a copy
-@@ -78,7 +78,7 @@ THE SOFTWARE.
- FT_FRAME_START( 16  ),
-   FT_FRAME_ULONG_LE( type ),
-   FT_FRAME_ULONG_LE( format ),
--  FT_FRAME_ULONG_LE( size ),
-+  FT_FRAME_ULONG_LE( size ),   /* rounded up to a multiple of 4 */
-   FT_FRAME_ULONG_LE( offset ),
- FT_FRAME_END
-   };
-@@ -95,9 +95,11 @@ THE SOFTWARE.
- FT_Memory  memory = FT_FACE( face )-memory;
- FT_UIntn;
- 
-+FT_ULong   size;
- 
--if ( FT_STREAM_SEEK ( 0 )  ||
-- FT_STREAM_READ_FIELDS ( pcf_toc_header, toc ) )
-+
-+if ( FT_STREAM_SEEK( 0 )  ||
-+ FT_STREAM_READ_FIELDS( pcf_toc_header, toc ) )
-   return FT_THROW( Cannot_Open_Resource );
- 
- if ( toc-version != PCF_FILE_VERSION ||
-@@ -154,14 +156,35 @@ THE SOFTWARE.
- break;
- }
- 
--/* we now check whether the `size' and `offset' values are reasonable: */
--/* `offset' + `size' must not exceed the stream size   */
-+/*
-+ *  We now check whether the `size' and `offset' values are reasonable:
-+ *  `offset' + `size' must not exceed the stream size.
-+ *
-+ *  Note, however, that X11's `pcfWriteFont' routine (used by the
-+ *  `bdftopcf' program to create PDF font files) has two special
-+ *  features.
-+ *
-+ *  - It always assigns the accelerator table a size of 100 bytes in the
-+ *TOC, regardless of its real size, which can vary between 34 and 72
-+ *bytes.
-+ *
-+ *  - Due to the way the routine is designed, it ships out the last font
-+ *table with its real size, ignoring the TOC's size value.  Since
-+ *the TOC size values are always rounded up to a multiple of 4, the
-+ *difference can be up to three bytes for all tables except the
-+ *accelerator table, for which the difference can be as large as 66
-+ *bytes.
-+ *
-+ */
-+
- tables = face-toc.tables;
--for ( n = 0; n  toc-count; n++ )
-+size   = stream-size;
-+
-+for ( n = 0; n  toc-count - 1; n++ )
- {
-   /* we need two checks to avoid overflow */
--  if ( ( tables-sizestream-size) ||
--   ( tables-offset  stream-size - tables-size ) )
-+  if ( ( tables-sizesize) ||
-+   ( tables-offset  size - tables-size ) )
-   {
- error = FT_THROW( Invalid_Table );
- goto Exit;
-@@ -169,6 +192,15 @@ THE SOFTWARE.
-   tables++;
- }
- 
-+/* no check of `tables-size' for last table element ... */
-+if ( ( tables-offset  size ) )
-+{
-+  error = FT_THROW( Invalid_Table );
-+  goto Exit;
-+}
-+/* ... instead, we adjust `tables-size' to the real value */
-+tables-size = size - tables-offset;
-+
- #ifdef FT_DEBUG_LEVEL_TRACE
- 
- {
-@@ -733,8 +765,8 @@ THE SOFTWARE.
- 
- FT_TRACE4((   number of bitmaps: %d\n, nbitmaps ));
- 
--/* XXX: PCF_Face-nmetrics is singed FT_Long, see pcf.h */
--if ( face-nmetrics  0 || nbitmaps != ( FT_ULong )face-nmetrics )
-+/* XXX: 

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

2015-01-01 Thread Jan Steffens
Date: Friday, January 2, 2015 @ 02:56:40
  Author: heftig
Revision: 228335

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

Added:
  freetype2/repos/extra-i686/PKGBUILD
(from rev 228334, freetype2/trunk/PKGBUILD)
  freetype2/repos/extra-i686/env_FT2_SUBPIXEL_HINTING.diff
(from rev 228334, freetype2/trunk/env_FT2_SUBPIXEL_HINTING.diff)
  freetype2/repos/extra-i686/freetype-2.2.1-enable-valid.patch
(from rev 228334, freetype2/trunk/freetype-2.2.1-enable-valid.patch)
  freetype2/repos/extra-i686/freetype-2.5.1-enable-sph.patch
(from rev 228334, freetype2/trunk/freetype-2.5.1-enable-sph.patch)
  freetype2/repos/extra-i686/freetype-2.5.1-enable-spr.patch
(from rev 228334, freetype2/trunk/freetype-2.5.1-enable-spr.patch)
  freetype2/repos/extra-i686/freetype2.install
(from rev 228334, freetype2/trunk/freetype2.install)
  freetype2/repos/extra-x86_64/PKGBUILD
(from rev 228334, freetype2/trunk/PKGBUILD)
  freetype2/repos/extra-x86_64/env_FT2_SUBPIXEL_HINTING.diff
(from rev 228334, freetype2/trunk/env_FT2_SUBPIXEL_HINTING.diff)
  freetype2/repos/extra-x86_64/freetype-2.2.1-enable-valid.patch
(from rev 228334, freetype2/trunk/freetype-2.2.1-enable-valid.patch)
  freetype2/repos/extra-x86_64/freetype-2.5.1-enable-sph.patch
(from rev 228334, freetype2/trunk/freetype-2.5.1-enable-sph.patch)
  freetype2/repos/extra-x86_64/freetype-2.5.1-enable-spr.patch
(from rev 228334, freetype2/trunk/freetype-2.5.1-enable-spr.patch)
  freetype2/repos/extra-x86_64/freetype2.install
(from rev 228334, freetype2/trunk/freetype2.install)
Deleted:
  freetype2/repos/extra-i686/0001-pcf-Fix-Savannah-bug-43774.patch
  freetype2/repos/extra-i686/PKGBUILD
  freetype2/repos/extra-i686/env_FT2_SUBPIXEL_HINTING.diff
  freetype2/repos/extra-i686/freetype-2.2.1-enable-valid.patch
  freetype2/repos/extra-i686/freetype-2.5.1-enable-sph.patch
  freetype2/repos/extra-i686/freetype-2.5.1-enable-spr.patch
  freetype2/repos/extra-i686/freetype2.install
  freetype2/repos/extra-x86_64/0001-pcf-Fix-Savannah-bug-43774.patch
  freetype2/repos/extra-x86_64/PKGBUILD
  freetype2/repos/extra-x86_64/env_FT2_SUBPIXEL_HINTING.diff
  freetype2/repos/extra-x86_64/freetype-2.2.1-enable-valid.patch
  freetype2/repos/extra-x86_64/freetype-2.5.1-enable-sph.patch
  freetype2/repos/extra-x86_64/freetype-2.5.1-enable-spr.patch
  freetype2/repos/extra-x86_64/freetype2.install

+
 /PKGBUILD  |  110 
 /env_FT2_SUBPIXEL_HINTING.diff |   36 +
 /freetype-2.2.1-enable-valid.patch |   40 ++
 /freetype-2.5.1-enable-sph.patch   |   26 +++
 /freetype-2.5.1-enable-spr.patch   |   26 +++
 /freetype2.install |   16 ++
 extra-i686/0001-pcf-Fix-Savannah-bug-43774.patch   |  125 ---
 extra-i686/PKGBUILD|   59 
 extra-i686/env_FT2_SUBPIXEL_HINTING.diff   |   18 --
 extra-i686/freetype-2.2.1-enable-valid.patch   |   20 ---
 extra-i686/freetype-2.5.1-enable-sph.patch |   13 -
 extra-i686/freetype-2.5.1-enable-spr.patch |   13 -
 extra-i686/freetype2.install   |8 -
 extra-x86_64/0001-pcf-Fix-Savannah-bug-43774.patch |  125 ---
 extra-x86_64/PKGBUILD  |   59 
 extra-x86_64/env_FT2_SUBPIXEL_HINTING.diff |   18 --
 extra-x86_64/freetype-2.2.1-enable-valid.patch |   20 ---
 extra-x86_64/freetype-2.5.1-enable-sph.patch   |   13 -
 extra-x86_64/freetype-2.5.1-enable-spr.patch   |   13 -
 extra-x86_64/freetype2.install |8 -
 20 files changed, 254 insertions(+), 512 deletions(-)

Deleted: extra-i686/0001-pcf-Fix-Savannah-bug-43774.patch
===
--- extra-i686/0001-pcf-Fix-Savannah-bug-43774.patch2015-01-02 01:55:06 UTC 
(rev 228334)
+++ extra-i686/0001-pcf-Fix-Savannah-bug-43774.patch2015-01-02 01:56:40 UTC 
(rev 228335)
@@ -1,125 +0,0 @@
-From 74af85c4b62b35e55b0ce9dec55ee10cbc4962a2 Mon Sep 17 00:00:00 2001
-From: Werner Lemberg w...@gnu.org
-Date: Mon, 8 Dec 2014 16:01:50 +0100
-Subject: [PATCH] [pcf] Fix Savannah bug #43774.
-
-Work around `features' of X11's `pcfWriteFont' and `pcfReadFont'
-functions.  Since the PCF format doesn't have an official
-specification, we have to exactly follow these functions' behaviour.
-
-The problem was unveiled with a patch from 2014-11-06, fixing issue #43547.
-
-* src/pcf/pcfread.c (pcf_read_TOC): Don't check table size for last
-element.  Instead, assign real size.

- ChangeLog | 14 ++
- src/pcf/pcfread.c | 54 +++---
- 2 files changed, 57 insertions(+), 11 deletions(-)
-
-diff --git a/src/pcf/pcfread.c b/src/pcf/pcfread.c
-index 998cbed..e3caf82 100644