[arch-commits] Commit in mediastreamer/trunk (PKGBUILD mediastreamer-ffmpeg.patch)

2012-06-05 Thread Eric Bélanger
Date: Tuesday, June 5, 2012 @ 03:24:28
  Author: eric
Revision: 160757

upgpkg: mediastreamer 2.8.2-2

Rebuild against ffmpeg 0.11

Added:
  mediastreamer/trunk/mediastreamer-ffmpeg.patch
Modified:
  mediastreamer/trunk/PKGBUILD

+
 PKGBUILD   |9 +
 mediastreamer-ffmpeg.patch |  205 +++
 2 files changed, 211 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-06-05 05:30:42 UTC (rev 160756)
+++ PKGBUILD2012-06-05 07:24:28 UTC (rev 160757)
@@ -6,7 +6,7 @@
 
 pkgname=mediastreamer
 pkgver=2.8.2
-pkgrel=1
+pkgrel=2
 pkgdesc="A library written in C that allows you to create and run audio and 
video streams"
 arch=('i686' 'x86_64')
 url="http://www.linphone.org/";
@@ -14,12 +14,15 @@
 depends=('ortp' 'speex' 'ffmpeg' 'v4l-utils' 'libxv' 'libpulse')
 makedepends=('intltool')
 options=('!libtool')
-source=("http://download-mirror.savannah.gnu.org/releases/linphone/${pkgname}/${pkgname}-${pkgver}.tar.gz"{,.sig})
+source=("http://download-mirror.savannah.gnu.org/releases/linphone/${pkgname}/${pkgname}-${pkgver}.tar.gz"{,.sig}
+mediastreamer-ffmpeg.patch)
 md5sums=('e51ea9d5fce1396b374d10473dfbadec'
- '805da7def98f367e621363fa0c951fe8')
+ '805da7def98f367e621363fa0c951fe8'
+ 'f147546489a973f148ce3dd2dba36834')
 
 build() {
   cd "${srcdir}"/$pkgname-$pkgver
+  patch -p1 -i "${srcdir}"/mediastreamer-ffmpeg.patch
   ./configure --prefix=/usr
   make
 }

Added: mediastreamer-ffmpeg.patch
===
--- mediastreamer-ffmpeg.patch  (rev 0)
+++ mediastreamer-ffmpeg.patch  2012-06-05 07:24:28 UTC (rev 160757)
@@ -0,0 +1,205 @@
+diff --git a/include/mediastreamer2/msvideo.h 
b/include/mediastreamer2/msvideo.h
+index 5ae8a63..86edf86 100644
+--- mediastreamer2/include/mediastreamer2/msvideo.h
 mediastreamer2/include/mediastreamer2/msvideo.h
+@@ -21,6 +21,12 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  
02111-1307, USA.
+ #define msvideo_h
+ 
+ #include 
++#ifndef INT64_C
++#define INT64_C(c) (c ## LL)
++#define UINT64_C(c) (c ## ULL)
++#endif
++#include 
++#include 
+ 
+ /* some global constants for video MSFilter(s) */
+ #define MS_VIDEO_SIZE_SQCIF_W 128
+@@ -206,7 +212,9 @@ extern "C"{
+ MS2_PUBLIC int ms_pix_fmt_to_ffmpeg(MSPixFmt fmt);
+ MS2_PUBLIC MSPixFmt ffmpeg_pix_fmt_to_ms(int fmt);
+ MS2_PUBLIC MSPixFmt ms_fourcc_to_pix_fmt(uint32_t fourcc);
++#if LIBAVCODEC_VERSION_INT < AV_VERSION_INT(54, 0, 100)
+ MS2_PUBLIC void ms_ffmpeg_check_init(void);
++#endif
+ MS2_PUBLIC int ms_yuv_buf_init_from_mblk(MSPicture *buf, mblk_t *m);
+ MS2_PUBLIC int ms_yuv_buf_init_from_mblk_with_size(MSPicture *buf, mblk_t *m, 
int w, int h);
+ MS2_PUBLIC int ms_picture_init_from_mblk_with_size(MSPicture *buf, mblk_t *m, 
MSPixFmt fmt, int w, int h);
+diff --git a/src/h264dec.c b/src/h264dec.c
+index 223de3d..8c40a7c 100644
+--- mediastreamer2/src/h264dec.c
 mediastreamer2/src/h264dec.c
+@@ -44,7 +44,9 @@ typedef struct _DecData{
+ static void ffmpeg_init(){
+   static bool_t done=FALSE;
+   if (!done){
++#if LIBAVCODEC_VERSION_INT < AV_VERSION_INT(54, 0, 100)
+   avcodec_init();
++#endif
+   avcodec_register_all();
+   done=TRUE;
+   }
+diff --git a/src/mscommon.c b/src/mscommon.c
+index 2cab005..bebb946 100644
+--- mediastreamer2/src/mscommon.c
 mediastreamer2/src/mscommon.c
+@@ -33,9 +33,17 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  
02111-1307, USA.
+ #include "mediastreamer2/mscodecutils.h"
+ #include "mediastreamer2/msfilter.h"
+ #include 
++#ifndef INT64_C
++#define INT64_C(c) (c ## LL)
++#define UINT64_C(c) (c ## ULL)
++#endif
++#include 
++#include 
+ 
+ extern void __register_ffmpeg_encoders_if_possible(void);
++#if LIBAVCODEC_VERSION_INT < AV_VERSION_INT(54, 0, 100)
+ extern void ms_ffmpeg_check_init();
++#endif
+ extern bool_t libmsandroiddisplay_init(void);
+ extern void libmsandroiddisplaybad_init(void);
+ extern void libmsandroidopengldisplay_init(void);
+@@ -645,7 +653,9 @@ void ms_init(){
+   }
+   }
+ #if !defined(NO_FFMPEG)
++#if LIBAVCODEC_VERSION_INT < AV_VERSION_INT(54, 0, 100)
+   ms_ffmpeg_check_init();
++#endif
+   __register_ffmpeg_encoders_if_possible();
+ #endif
+ #endif
+diff --git a/src/videodec.c b/src/videodec.c
+index c04e1e9..a455075 100644
+--- mediastreamer2/src/videodec.c
 mediastreamer2/src/videodec.c
+@@ -27,9 +27,16 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  
02111-1307, USA.
+ #include "mediastreamer2/msvideo.h"
+ #include "mediastreamer2/msticker.h"
+ #include "rfc2429.h"
++#ifndef INT64_C
++#define INT64_C(c) (c ## LL)
++#define UINT64_C(c) (c ## ULL)
++#endif
++#include 
++#include 
+ 
+-
++#if LIBAVCODEC_VERSION_INT < AV_VERSION_INT(54, 0, 100)
+ extern void ms_ffmpe

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

2012-06-05 Thread Eric Bélanger
Date: Tuesday, June 5, 2012 @ 03:24:49
  Author: eric
Revision: 160758

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

Added:
  mediastreamer/repos/staging-i686/
  mediastreamer/repos/staging-i686/PKGBUILD
(from rev 160757, mediastreamer/trunk/PKGBUILD)
  mediastreamer/repos/staging-i686/mediastreamer-ffmpeg.patch
(from rev 160757, mediastreamer/trunk/mediastreamer-ffmpeg.patch)
  mediastreamer/repos/staging-x86_64/
  mediastreamer/repos/staging-x86_64/PKGBUILD
(from rev 160757, mediastreamer/trunk/PKGBUILD)
  mediastreamer/repos/staging-x86_64/mediastreamer-ffmpeg.patch
(from rev 160757, mediastreamer/trunk/mediastreamer-ffmpeg.patch)

---+
 staging-i686/PKGBUILD |   33 
 staging-i686/mediastreamer-ffmpeg.patch   |  205 
 staging-x86_64/PKGBUILD   |   33 
 staging-x86_64/mediastreamer-ffmpeg.patch |  205 
 4 files changed, 476 insertions(+)

Copied: mediastreamer/repos/staging-i686/PKGBUILD (from rev 160757, 
mediastreamer/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2012-06-05 07:24:49 UTC (rev 160758)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer:
+# Contributor: Andrea Scarpino 
+# Contributor: Sergej Pupykin 
+# Contributor: Adrià Arrufat 
+
+pkgname=mediastreamer
+pkgver=2.8.2
+pkgrel=2
+pkgdesc="A library written in C that allows you to create and run audio and 
video streams"
+arch=('i686' 'x86_64')
+url="http://www.linphone.org/";
+license=('GPL')
+depends=('ortp' 'speex' 'ffmpeg' 'v4l-utils' 'libxv' 'libpulse')
+makedepends=('intltool')
+options=('!libtool')
+source=("http://download-mirror.savannah.gnu.org/releases/linphone/${pkgname}/${pkgname}-${pkgver}.tar.gz"{,.sig}
+mediastreamer-ffmpeg.patch)
+md5sums=('e51ea9d5fce1396b374d10473dfbadec'
+ '805da7def98f367e621363fa0c951fe8'
+ 'f147546489a973f148ce3dd2dba36834')
+
+build() {
+  cd "${srcdir}"/$pkgname-$pkgver
+  patch -p1 -i "${srcdir}"/mediastreamer-ffmpeg.patch
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-$pkgver
+  make DESTDIR="${pkgdir}" install
+}

Copied: mediastreamer/repos/staging-i686/mediastreamer-ffmpeg.patch (from rev 
160757, mediastreamer/trunk/mediastreamer-ffmpeg.patch)
===
--- staging-i686/mediastreamer-ffmpeg.patch (rev 0)
+++ staging-i686/mediastreamer-ffmpeg.patch 2012-06-05 07:24:49 UTC (rev 
160758)
@@ -0,0 +1,205 @@
+diff --git a/include/mediastreamer2/msvideo.h 
b/include/mediastreamer2/msvideo.h
+index 5ae8a63..86edf86 100644
+--- mediastreamer2/include/mediastreamer2/msvideo.h
 mediastreamer2/include/mediastreamer2/msvideo.h
+@@ -21,6 +21,12 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  
02111-1307, USA.
+ #define msvideo_h
+ 
+ #include 
++#ifndef INT64_C
++#define INT64_C(c) (c ## LL)
++#define UINT64_C(c) (c ## ULL)
++#endif
++#include 
++#include 
+ 
+ /* some global constants for video MSFilter(s) */
+ #define MS_VIDEO_SIZE_SQCIF_W 128
+@@ -206,7 +212,9 @@ extern "C"{
+ MS2_PUBLIC int ms_pix_fmt_to_ffmpeg(MSPixFmt fmt);
+ MS2_PUBLIC MSPixFmt ffmpeg_pix_fmt_to_ms(int fmt);
+ MS2_PUBLIC MSPixFmt ms_fourcc_to_pix_fmt(uint32_t fourcc);
++#if LIBAVCODEC_VERSION_INT < AV_VERSION_INT(54, 0, 100)
+ MS2_PUBLIC void ms_ffmpeg_check_init(void);
++#endif
+ MS2_PUBLIC int ms_yuv_buf_init_from_mblk(MSPicture *buf, mblk_t *m);
+ MS2_PUBLIC int ms_yuv_buf_init_from_mblk_with_size(MSPicture *buf, mblk_t *m, 
int w, int h);
+ MS2_PUBLIC int ms_picture_init_from_mblk_with_size(MSPicture *buf, mblk_t *m, 
MSPixFmt fmt, int w, int h);
+diff --git a/src/h264dec.c b/src/h264dec.c
+index 223de3d..8c40a7c 100644
+--- mediastreamer2/src/h264dec.c
 mediastreamer2/src/h264dec.c
+@@ -44,7 +44,9 @@ typedef struct _DecData{
+ static void ffmpeg_init(){
+   static bool_t done=FALSE;
+   if (!done){
++#if LIBAVCODEC_VERSION_INT < AV_VERSION_INT(54, 0, 100)
+   avcodec_init();
++#endif
+   avcodec_register_all();
+   done=TRUE;
+   }
+diff --git a/src/mscommon.c b/src/mscommon.c
+index 2cab005..bebb946 100644
+--- mediastreamer2/src/mscommon.c
 mediastreamer2/src/mscommon.c
+@@ -33,9 +33,17 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  
02111-1307, USA.
+ #include "mediastreamer2/mscodecutils.h"
+ #include "mediastreamer2/msfilter.h"
+ #include 
++#ifndef INT64_C
++#define INT64_C(c) (c ## LL)
++#define UINT64_C(c) (c ## ULL)
++#endif
++#include 
++#include 
+ 
+ extern void __register_ffmpeg_encoders_if_possible(void);
++#if LIBAVCODEC_VERSION_INT < AV_VERSION_INT(54, 0, 100)
+ extern void ms_ffmpeg_check_init();
++#endif
+ extern bool_t libmsandroiddisplay_init(void);
+ extern void libmsandroiddisplaybad_

[arch-commits] Commit in libgksu/trunk (7 files)

2012-06-05 Thread Jan de Groot
Date: Tuesday, June 5, 2012 @ 04:02:43
  Author: jgc
Revision: 160759

upgpkg: libgksu 2.0.12-5

Build translations (FS#29903). To do so, I had to intltoolize, which requires 
me to run autoremake, which forced me to pull all patches from the Gentoo 
ebuild because this software does not work with recent versions of automake.

Added:
  libgksu/trunk/libgksu-2.0.0-fbsd.patch
  libgksu/trunk/libgksu-2.0.12-automake-1.11.2.patch
  libgksu/trunk/libgksu-2.0.12-fix-make-3.82.patch
  libgksu/trunk/libgksu-2.0.12-notests.patch
  libgksu/trunk/libgksu-2.0.7-libs.patch
  libgksu/trunk/libgksu-2.0.7-polinguas.patch
Modified:
  libgksu/trunk/PKGBUILD

--+
 PKGBUILD |   29 +++-
 libgksu-2.0.0-fbsd.patch |   60 ++
 libgksu-2.0.12-automake-1.11.2.patch |   25 ++
 libgksu-2.0.12-fix-make-3.82.patch   |   19 
 libgksu-2.0.12-notests.patch |   26 +++
 libgksu-2.0.7-libs.patch |   76 +
 libgksu-2.0.7-polinguas.patch|   40 +
 7 files changed, 272 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-06-05 07:24:49 UTC (rev 160758)
+++ PKGBUILD2012-06-05 08:02:43 UTC (rev 160759)
@@ -3,7 +3,7 @@
 
 pkgname=libgksu
 pkgver=2.0.12
-pkgrel=4
+pkgrel=5
 pkgdesc="gksu authorization library"
 arch=(i686 x86_64)
 url="http://www.nongnu.org/gksu/index.html";
@@ -13,13 +13,36 @@
 options=('!libtool' '!emptydirs')
 install=libgksu.install
 source=(http://people.debian.org/~kov/gksu/${pkgname}-${pkgver}.tar.gz
-libgksu-2.0.12-revert-forkpty.patch)
+libgksu-2.0.0-fbsd.patch
+libgksu-2.0.12-automake-1.11.2.patch
+libgksu-2.0.12-fix-make-3.82.patch
+   libgksu-2.0.12-notests.patch
+libgksu-2.0.12-revert-forkpty.patch
+libgksu-2.0.7-libs.patch
+libgksu-2.0.7-polinguas.patch)
 md5sums=('c7154c8806f791c10e7626ff123049d3'
- 'aebbe57e5286c654e27cf714cf3b704a')
+ '063a2b45d8e7cbba898d1db413242da0'
+ '2eeb34ad9b5bf29e8e2ebf8c8a5a28b6'
+ 'afeaf5caab03d793258d62d60a9bf0f0'
+ '4179d0487d6032e56b8a925010694c0a'
+ 'aebbe57e5286c654e27cf714cf3b704a'
+ '58d3a4a9d2ac741951720043ea3f7b5f'
+ '0b5c3d5d9b32cb3e65d9f0bfbcb11a76')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"
+  patch -Np1 -i "${srcdir}/libgksu-2.0.0-fbsd.patch"
+  patch -Np1 -i "${srcdir}/libgksu-2.0.7-libs.patch"
+  patch -Np1 -i "${srcdir}/libgksu-2.0.7-polinguas.patch"
   patch -Np1 -i "${srcdir}/libgksu-2.0.12-revert-forkpty.patch"
+  patch -Np0 -i "${srcdir}/libgksu-2.0.12-fix-make-3.82.patch"
+  patch -Np1 -i "${srcdir}/libgksu-2.0.12-notests.patch"
+  patch -Np1 -i "${srcdir}/libgksu-2.0.12-automake-1.11.2.patch"
+
+  touch NEWS README
+
+  intltoolize --force --copy --automake
+  autoreconf -fi
   ./configure --prefix=/usr --sysconfdir=/etc \
   --localstatedir=/var --disable-static --disable-schemas-install
   make

Added: libgksu-2.0.0-fbsd.patch
===
--- libgksu-2.0.0-fbsd.patch(rev 0)
+++ libgksu-2.0.0-fbsd.patch2012-06-05 08:02:43 UTC (rev 160759)
@@ -0,0 +1,60 @@
+diff --exclude-from=/home/dang/.diffrc -up -ruN 
libgksu-2.0.0.orig/libgksu/libgksu.c libgksu-2.0.0/libgksu/libgksu.c
+--- libgksu-2.0.0.orig/libgksu/libgksu.c   2006-09-14 22:35:51.0 
-0400
 libgksu-2.0.0/libgksu/libgksu.c2006-12-12 11:28:01.0 -0500
+@@ -23,7 +23,12 @@
+ #include 
+ #include 
+ #include 
++#ifdef __FreeBSD__
++#include 
++#include 
++#else
+ #include 
++#endif
+ #include 
+ #include 
+ #include 
+diff --exclude-from=/home/dang/.diffrc -up -ruN 
libgksu-2.0.0.orig/libgksu/Makefile.am libgksu-2.0.0/libgksu/Makefile.am
+--- libgksu-2.0.0.orig/libgksu/Makefile.am 2006-09-14 22:35:52.0 
-0400
 libgksu-2.0.0/libgksu/Makefile.am  2006-12-12 11:28:01.0 -0500
+@@ -30,6 +30,6 @@ gksu_run_helper_SOURCES = gksu-run-helpe
+ noinst_PROGRAMS = test-gksu
+ test_gksu_SOURCES = test-gksu.c
+ test_gksu_LDADD = libgksu2.la
+-test_gksu_LDFLAGS = `pkg-config --libs glib-2.0`
++test_gksu_LDFLAGS = `pkg-config --libs glib-2.0 gthread-2.0`
+ 
+ EXTRA_DIST = libgksu.ver
+diff --exclude-from=/home/dang/.diffrc -up -ruN 
libgksu-2.0.0.orig/libgksu/Makefile.in libgksu-2.0.0/libgksu/Makefile.in
+--- libgksu-2.0.0.orig/libgksu/Makefile.in 2006-09-23 15:37:44.0 
-0400
 libgksu-2.0.0/libgksu/Makefile.in  2006-12-12 11:30:09.0 -0500
+@@ -283,7 +283,7 @@ gksu_run_helper_LDFLAGS = `pkg-config --
+ gksu_run_helper_SOURCES = gksu-run-helper.c
+ test_gksu_SOURCES = test-gksu.c
+ test_gksu_LDADD = libgksu2.la
+-test_gksu_LDFLAGS = `pkg-config --libs glib-2.0`
++test_gksu_LDFLAGS = `pkg-config --libs glib-2.0 gthread-2.0`
+ EXTRA_DIST = libgksu.ve

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

2012-06-05 Thread Tobias Powalowski
Date: Tuesday, June 5, 2012 @ 04:03:01
  Author: tpowa
Revision: 160760

upgpkg: linux 3.4.1-1

bump to latest version

Modified:
  linux/trunk/PKGBUILD
  linux/trunk/config
  linux/trunk/config.x86_64
  linux/trunk/linux.install

---+
 PKGBUILD  |   17 +
 config|3 ++-
 config.x86_64 |5 +++--
 linux.install |2 +-
 4 files changed, 15 insertions(+), 12 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-06-05 08:02:43 UTC (rev 160759)
+++ PKGBUILD2012-06-05 08:03:01 UTC (rev 160760)
@@ -7,16 +7,15 @@
 # pkgname=linux-custom   # Build kernel with a different name
 _kernelname=${pkgname#linux}
 _basekernel=3.4
-pkgver=${_basekernel}
+pkgver=${_basekernel}.1
 pkgrel=1
 arch=('i686' 'x86_64')
 url="http://www.kernel.org/";
 license=('GPL2')
 makedepends=('xmlto' 'docbook-xsl')
 options=('!strip')
-source=("ftp://ftp.archlinux.org/other/linux/linux-3.4.tar.xz";
-#"http://www.kernel.org/pub/linux/kernel/v3.x/linux-3.4.tar.xz";
-#"http://www.kernel.org/pub/linux/kernel/v3.x/patch-${pkgver}.xz";
+source=("http://www.kernel.org/pub/linux/kernel/v3.x/linux-3.4.tar.xz";
+"http://www.kernel.org/pub/linux/kernel/v3.x/patch-${pkgver}.xz";
 # the main kernel config files
 'config' 'config.x86_64'
 # standard config files for mkinitcpio ramdisk
@@ -24,9 +23,10 @@
 'fix-acerhdf-1810T-bios.patch'
 'change-default-console-loglevel.patch'
 'i915-fix-ghost-tv-output.patch')
-md5sums=('cba7741056c05ac98277b99909039a7e'
- '0c9de293b4d34d2d91de453592c4a89f'
- '4c54e74f4f05714e3682317e5bde4fd4'
+md5sums=('967f72983655e2479f951195953e8480'
+ '52adc59c547c4c7926686145b9ade5f1'
+ '3f2c307c8ffae67f60c13ef69af8364a'
+ '18d9d09152bafffaef78f2aac07e7145'
  'eb14dcfd80c00852ef81ded6e826826a'
  '38c1fd4a1f303f1f6c38e7f082727e2f'
  '9d3c56a4b999c8bfbd4018089a62f662'
@@ -36,7 +36,7 @@
   cd "${srcdir}/linux-${_basekernel}"
 
   # add upstream patch
-  #patch -p1 -i "${srcdir}/patch-${pkgver}"
+  patch -p1 -i "${srcdir}/patch-${pkgver}"
 
   # add latest fixes from stable queue, if needed
   # http://git.kernel.org/?p=linux/kernel/git/stable/stable-queue.git
@@ -296,3 +296,4 @@
   # remove a file already in linux package
   rm -f "${pkgdir}/usr/src/linux-${_kernver}/Documentation/DocBook/Makefile"
 }
+

Modified: config
===
--- config  2012-06-05 08:02:43 UTC (rev 160759)
+++ config  2012-06-05 08:03:01 UTC (rev 160760)
@@ -5187,7 +5187,8 @@
 CONFIG_DCDBAS=m
 CONFIG_DMIID=y
 CONFIG_DMI_SYSFS=m
-# CONFIG_ISCSI_IBFT_FIND is not set
+CONFIG_ISCSI_IBFT_FIND=y
+CONFIG_ISCSI_IBFT=m
 # CONFIG_GOOGLE_FIRMWARE is not set
 
 #

Modified: config.x86_64
===
--- config.x86_64   2012-06-05 08:02:43 UTC (rev 160759)
+++ config.x86_64   2012-06-05 08:03:01 UTC (rev 160760)
@@ -1,6 +1,6 @@
 #
 # Automatically generated file; DO NOT EDIT.
-# Linux/x86_64 3.4.0-1 Kernel Configuration
+# Linux/x86_64 3.4.1-1 Kernel Configuration
 #
 CONFIG_64BIT=y
 # CONFIG_X86_32 is not set
@@ -4959,7 +4959,8 @@
 CONFIG_DCDBAS=m
 CONFIG_DMIID=y
 CONFIG_DMI_SYSFS=m
-# CONFIG_ISCSI_IBFT_FIND is not set
+CONFIG_ISCSI_IBFT_FIND=y
+CONFIG_ISCSI_IBFT=m
 # CONFIG_GOOGLE_FIRMWARE is not set
 
 #

Modified: linux.install
===
--- linux.install   2012-06-05 08:02:43 UTC (rev 160759)
+++ linux.install   2012-06-05 08:03:01 UTC (rev 160760)
@@ -2,7 +2,7 @@
 # arg 2:  the old package version
 
 KERNEL_NAME=
-KERNEL_VERSION=3.4.0-1-ARCH
+KERNEL_VERSION=3.4.1-1-ARCH
 
 post_install () {
   # updating module dependencies



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

2012-06-05 Thread Jan de Groot
Date: Tuesday, June 5, 2012 @ 04:03:43
  Author: jgc
Revision: 160761

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

Added:
  libgksu/repos/extra-i686/PKGBUILD
(from rev 160760, libgksu/trunk/PKGBUILD)
  libgksu/repos/extra-i686/libgksu-2.0.0-fbsd.patch
(from rev 160760, libgksu/trunk/libgksu-2.0.0-fbsd.patch)
  libgksu/repos/extra-i686/libgksu-2.0.12-automake-1.11.2.patch
(from rev 160760, libgksu/trunk/libgksu-2.0.12-automake-1.11.2.patch)
  libgksu/repos/extra-i686/libgksu-2.0.12-fix-make-3.82.patch
(from rev 160760, libgksu/trunk/libgksu-2.0.12-fix-make-3.82.patch)
  libgksu/repos/extra-i686/libgksu-2.0.12-notests.patch
(from rev 160760, libgksu/trunk/libgksu-2.0.12-notests.patch)
  libgksu/repos/extra-i686/libgksu-2.0.12-revert-forkpty.patch
(from rev 160760, libgksu/trunk/libgksu-2.0.12-revert-forkpty.patch)
  libgksu/repos/extra-i686/libgksu-2.0.7-libs.patch
(from rev 160760, libgksu/trunk/libgksu-2.0.7-libs.patch)
  libgksu/repos/extra-i686/libgksu-2.0.7-polinguas.patch
(from rev 160760, libgksu/trunk/libgksu-2.0.7-polinguas.patch)
  libgksu/repos/extra-i686/libgksu.install
(from rev 160760, libgksu/trunk/libgksu.install)
  libgksu/repos/extra-x86_64/PKGBUILD
(from rev 160760, libgksu/trunk/PKGBUILD)
  libgksu/repos/extra-x86_64/libgksu-2.0.0-fbsd.patch
(from rev 160760, libgksu/trunk/libgksu-2.0.0-fbsd.patch)
  libgksu/repos/extra-x86_64/libgksu-2.0.12-automake-1.11.2.patch
(from rev 160760, libgksu/trunk/libgksu-2.0.12-automake-1.11.2.patch)
  libgksu/repos/extra-x86_64/libgksu-2.0.12-fix-make-3.82.patch
(from rev 160760, libgksu/trunk/libgksu-2.0.12-fix-make-3.82.patch)
  libgksu/repos/extra-x86_64/libgksu-2.0.12-notests.patch
(from rev 160760, libgksu/trunk/libgksu-2.0.12-notests.patch)
  libgksu/repos/extra-x86_64/libgksu-2.0.12-revert-forkpty.patch
(from rev 160760, libgksu/trunk/libgksu-2.0.12-revert-forkpty.patch)
  libgksu/repos/extra-x86_64/libgksu-2.0.7-libs.patch
(from rev 160760, libgksu/trunk/libgksu-2.0.7-libs.patch)
  libgksu/repos/extra-x86_64/libgksu-2.0.7-polinguas.patch
(from rev 160760, libgksu/trunk/libgksu-2.0.7-polinguas.patch)
  libgksu/repos/extra-x86_64/libgksu.install
(from rev 160760, libgksu/trunk/libgksu.install)
Deleted:
  libgksu/repos/extra-i686/PKGBUILD
  libgksu/repos/extra-i686/libgksu-2.0.12-revert-forkpty.patch
  libgksu/repos/extra-i686/libgksu.install
  libgksu/repos/extra-x86_64/PKGBUILD
  libgksu/repos/extra-x86_64/libgksu-2.0.12-revert-forkpty.patch
  libgksu/repos/extra-x86_64/libgksu.install

---+
 extra-i686/PKGBUILD   |   93 +-
 extra-i686/libgksu-2.0.0-fbsd.patch   |   60 +
 extra-i686/libgksu-2.0.12-automake-1.11.2.patch   |   25 
 extra-i686/libgksu-2.0.12-fix-make-3.82.patch |   19 
 extra-i686/libgksu-2.0.12-notests.patch   |   26 
 extra-i686/libgksu-2.0.12-revert-forkpty.patch|  718 ++--
 extra-i686/libgksu-2.0.7-libs.patch   |   76 ++
 extra-i686/libgksu-2.0.7-polinguas.patch  |   40 +
 extra-i686/libgksu.install|   34 
 extra-x86_64/PKGBUILD |   93 +-
 extra-x86_64/libgksu-2.0.0-fbsd.patch |   60 +
 extra-x86_64/libgksu-2.0.12-automake-1.11.2.patch |   25 
 extra-x86_64/libgksu-2.0.12-fix-make-3.82.patch   |   19 
 extra-x86_64/libgksu-2.0.12-notests.patch |   26 
 extra-x86_64/libgksu-2.0.12-revert-forkpty.patch  |  718 ++--
 extra-x86_64/libgksu-2.0.7-libs.patch |   76 ++
 extra-x86_64/libgksu-2.0.7-polinguas.patch|   40 +
 extra-x86_64/libgksu.install  |   34 
 18 files changed, 1360 insertions(+), 822 deletions(-)

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


[arch-commits] Commit in gstreamer0.10-bad/trunk (PKGBUILD)

2012-06-05 Thread Jan de Groot
Date: Tuesday, June 5, 2012 @ 04:19:12
  Author: jgc
Revision: 160762

Fix group membership (FS#29780)

Modified:
  gstreamer0.10-bad/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-06-05 08:03:43 UTC (rev 160761)
+++ PKGBUILD2012-06-05 08:19:12 UTC (rev 160762)
@@ -33,7 +33,6 @@
 package_gstreamer0.10-bad() {
   pkgdesc="GStreamer Multimedia Framework Bad Plugin libraries 
(gst-plugins-bad)"
   depends=('gstreamer0.10-base>=0.10.34')
-  groups=('gstreamer0.10-plugins')
 
   cd "${srcdir}/gst-plugins-bad-${pkgver}"
   make DESTDIR="${pkgdir}" install



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

2012-06-05 Thread Jan de Groot
Date: Tuesday, June 5, 2012 @ 04:27:27
  Author: jgc
Revision: 160763

Add new package, wildmidi. Will be a dependency for gstreamer0.10-bad-plugins 
(FS#29857)

Added:
  wildmidi/
  wildmidi/trunk/
  wildmidi/trunk/PKGBUILD

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

Added: wildmidi/trunk/PKGBUILD
===
--- wildmidi/trunk/PKGBUILD (rev 0)
+++ wildmidi/trunk/PKGBUILD 2012-06-05 08:27:27 UTC (rev 160763)
@@ -0,0 +1,27 @@
+# Maintainer: Jan de Groot 
+# Contributor: Jaroslav Lichtblau 
+# Contributor: Panagiotis Papadopoulos
+
+pkgname=wildmidi
+pkgver=0.2.3.5
+pkgrel=2
+pkgdesc='Open Source MIDI Synthesizer'
+arch=('i686' 'x86_64')
+url='http://wildmidi.sourceforge.net/'
+license=('LGPL3')
+depends=('alsa-lib')
+options=(!makeflags !libtool)
+source=(http://sourceforge.net/projects/wildmidi/files/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+md5sums=('44583c95fd67761f8cd6275fd1c312f2')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure --prefix=/usr --disable-werror
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}



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

2012-06-05 Thread Jan de Groot
Date: Tuesday, June 5, 2012 @ 04:28:11
  Author: jgc
Revision: 160764

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

Added:
  wildmidi/repos/
  wildmidi/repos/extra-i686/
  wildmidi/repos/extra-i686/PKGBUILD
(from rev 160763, wildmidi/trunk/PKGBUILD)
  wildmidi/repos/extra-x86_64/
  wildmidi/repos/extra-x86_64/PKGBUILD
(from rev 160763, wildmidi/trunk/PKGBUILD)

---+
 extra-i686/PKGBUILD   |   27 +++
 extra-x86_64/PKGBUILD |   27 +++
 2 files changed, 54 insertions(+)

Copied: wildmidi/repos/extra-i686/PKGBUILD (from rev 160763, 
wildmidi/trunk/PKGBUILD)
===
--- repos/extra-i686/PKGBUILD   (rev 0)
+++ repos/extra-i686/PKGBUILD   2012-06-05 08:28:11 UTC (rev 160764)
@@ -0,0 +1,27 @@
+# Maintainer: Jan de Groot 
+# Contributor: Jaroslav Lichtblau 
+# Contributor: Panagiotis Papadopoulos
+
+pkgname=wildmidi
+pkgver=0.2.3.5
+pkgrel=2
+pkgdesc='Open Source MIDI Synthesizer'
+arch=('i686' 'x86_64')
+url='http://wildmidi.sourceforge.net/'
+license=('LGPL3')
+depends=('alsa-lib')
+options=(!makeflags !libtool)
+source=(http://sourceforge.net/projects/wildmidi/files/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+md5sums=('44583c95fd67761f8cd6275fd1c312f2')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure --prefix=/usr --disable-werror
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}

Copied: wildmidi/repos/extra-x86_64/PKGBUILD (from rev 160763, 
wildmidi/trunk/PKGBUILD)
===
--- repos/extra-x86_64/PKGBUILD (rev 0)
+++ repos/extra-x86_64/PKGBUILD 2012-06-05 08:28:11 UTC (rev 160764)
@@ -0,0 +1,27 @@
+# Maintainer: Jan de Groot 
+# Contributor: Jaroslav Lichtblau 
+# Contributor: Panagiotis Papadopoulos
+
+pkgname=wildmidi
+pkgver=0.2.3.5
+pkgrel=2
+pkgdesc='Open Source MIDI Synthesizer'
+arch=('i686' 'x86_64')
+url='http://wildmidi.sourceforge.net/'
+license=('LGPL3')
+depends=('alsa-lib')
+options=(!makeflags !libtool)
+source=(http://sourceforge.net/projects/wildmidi/files/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+md5sums=('44583c95fd67761f8cd6275fd1c312f2')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure --prefix=/usr --disable-werror
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}



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

2012-06-05 Thread Tobias Powalowski
Date: Tuesday, June 5, 2012 @ 04:34:23
  Author: tpowa
Revision: 160765

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

Added:
  linux/repos/testing-i686/PKGBUILD
(from rev 160764, linux/trunk/PKGBUILD)
  linux/repos/testing-i686/change-default-console-loglevel.patch
(from rev 160764, linux/trunk/change-default-console-loglevel.patch)
  linux/repos/testing-i686/config
(from rev 160764, linux/trunk/config)
  linux/repos/testing-i686/config.x86_64
(from rev 160764, linux/trunk/config.x86_64)
  linux/repos/testing-i686/fix-acerhdf-1810T-bios.patch
(from rev 160764, linux/trunk/fix-acerhdf-1810T-bios.patch)
  linux/repos/testing-i686/i915-fix-ghost-tv-output.patch
(from rev 160764, linux/trunk/i915-fix-ghost-tv-output.patch)
  linux/repos/testing-i686/linux.install
(from rev 160764, linux/trunk/linux.install)
  linux/repos/testing-i686/linux.preset
(from rev 160764, linux/trunk/linux.preset)
  linux/repos/testing-x86_64/PKGBUILD
(from rev 160764, linux/trunk/PKGBUILD)
  linux/repos/testing-x86_64/change-default-console-loglevel.patch
(from rev 160764, linux/trunk/change-default-console-loglevel.patch)
  linux/repos/testing-x86_64/config
(from rev 160764, linux/trunk/config)
  linux/repos/testing-x86_64/config.x86_64
(from rev 160764, linux/trunk/config.x86_64)
  linux/repos/testing-x86_64/fix-acerhdf-1810T-bios.patch
(from rev 160764, linux/trunk/fix-acerhdf-1810T-bios.patch)
  linux/repos/testing-x86_64/i915-fix-ghost-tv-output.patch
(from rev 160764, linux/trunk/i915-fix-ghost-tv-output.patch)
  linux/repos/testing-x86_64/linux.install
(from rev 160764, linux/trunk/linux.install)
  linux/repos/testing-x86_64/linux.preset
(from rev 160764, linux/trunk/linux.preset)
Deleted:
  linux/repos/testing-i686/PKGBUILD
  linux/repos/testing-i686/change-default-console-loglevel.patch
  linux/repos/testing-i686/config
  linux/repos/testing-i686/config.x86_64
  linux/repos/testing-i686/fix-acerhdf-1810T-bios.patch
  linux/repos/testing-i686/i915-fix-ghost-tv-output.patch
  linux/repos/testing-i686/linux.install
  linux/repos/testing-i686/linux.preset
  linux/repos/testing-x86_64/PKGBUILD
  linux/repos/testing-x86_64/change-default-console-loglevel.patch
  linux/repos/testing-x86_64/config
  linux/repos/testing-x86_64/config.x86_64
  linux/repos/testing-x86_64/fix-acerhdf-1810T-bios.patch
  linux/repos/testing-x86_64/i915-fix-ghost-tv-output.patch
  linux/repos/testing-x86_64/linux.install
  linux/repos/testing-x86_64/linux.preset

--+
 testing-i686/PKGBUILD|  597 
 testing-i686/change-default-console-loglevel.patch   |   24 
 testing-i686/config  |11679 -
 testing-i686/config.x86_64   |11223 
 testing-i686/fix-acerhdf-1810T-bios.patch|   20 
 testing-i686/i915-fix-ghost-tv-output.patch  |   52 
 testing-i686/linux.install   |  124 
 testing-i686/linux.preset|   28 
 testing-x86_64/PKGBUILD  |  597 
 testing-x86_64/change-default-console-loglevel.patch |   24 
 testing-x86_64/config|11679 -
 testing-x86_64/config.x86_64 |11223 
 testing-x86_64/fix-acerhdf-1810T-bios.patch  |   20 
 testing-x86_64/i915-fix-ghost-tv-output.patch|   52 
 testing-x86_64/linux.install |  124 
 testing-x86_64/linux.preset  |   28 
 16 files changed, 23750 insertions(+), 23744 deletions(-)

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


[arch-commits] Commit in gstreamer0.10-bad/trunk (PKGBUILD)

2012-06-05 Thread Jan de Groot
Date: Tuesday, June 5, 2012 @ 04:51:20
  Author: jgc
Revision: 160766

upgpkg: gstreamer0.10-bad 0.10.23-2

Add wildmidi plugin (FS#29857)

Modified:
  gstreamer0.10-bad/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-06-05 08:34:23 UTC (rev 160765)
+++ PKGBUILD2012-06-05 08:51:20 UTC (rev 160766)
@@ -4,10 +4,10 @@
 pkgbase=gstreamer0.10-bad
 pkgname=('gstreamer0.10-bad' 'gstreamer0.10-bad-plugins')
 pkgver=0.10.23
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 license=('LGPL' 'GPL')
-makedepends=('pkgconfig' 'gstreamer0.10-base>=0.10.36' 'xvidcore' 'libdca' 
'bzip2' 'libdc1394' 'neon' 'faac' 'musicbrainz' 'faad2' 'libmms' 'libcdaudio' 
'libmpcdec' 'mjpegtools' 'libdvdnav' 'libmodplug' 'jasper' 'liblrdf' 'libofa' 
'soundtouch' 'libvdpau' 'schroedinger' 'libass' 'libvpx' 'gsm' 'libgme' 
'rtmpdump' 'libsndfile' 'librsvg')
+makedepends=('pkgconfig' 'gstreamer0.10-base>=0.10.36' 'xvidcore' 'libdca' 
'bzip2' 'libdc1394' 'neon' 'faac' 'musicbrainz' 'faad2' 'libmms' 'libcdaudio' 
'libmpcdec' 'mjpegtools' 'libdvdnav' 'libmodplug' 'jasper' 'liblrdf' 'libofa' 
'soundtouch' 'libvdpau' 'schroedinger' 'libass' 'libvpx' 'gsm' 'libgme' 
'rtmpdump' 'libsndfile' 'librsvg' 'wildmidi')
 url="http://gstreamer.freedesktop.org/";
 options=(!libtool !emptydirs)
 source=(${url}/src/gst-plugins-bad/gst-plugins-bad-${pkgver}.tar.xz)
@@ -40,7 +40,7 @@
 
 package_gstreamer0.10-bad-plugins() {
   pkgdesc="GStreamer Multimedia Framework Bad Plugins (gst-plugins-bad)"
-  depends=("gstreamer0.10-bad=${pkgver}" 'xvidcore' 'libdca' 'bzip2' 
'libdc1394' 'neon' 'faac' 'musicbrainz' 'faad2' 'libmms' 'libcdaudio' 
'libmpcdec' 'mjpegtools' 'libdvdnav' 'libmodplug' 'jasper' 'liblrdf' 'libofa' 
'libvdpau' 'soundtouch' 'libass' 'schroedinger' 'libvpx' 'gsm' 'rtmpdump' 
'libgme' 'libsndfile' 'librsvg')
+  depends=("gstreamer0.10-bad=${pkgver}" 'xvidcore' 'libdca' 'bzip2' 
'libdc1394' 'neon' 'faac' 'musicbrainz' 'faad2' 'libmms' 'libcdaudio' 
'libmpcdec' 'mjpegtools' 'libdvdnav' 'libmodplug' 'jasper' 'liblrdf' 'libofa' 
'libvdpau' 'soundtouch' 'libass' 'schroedinger' 'libvpx' 'gsm' 'rtmpdump' 
'libgme' 'libsndfile' 'librsvg' 'wildmidi')
   groups=('gstreamer0.10-plugins')
   install=gstreamer0.10-bad-plugins.install
 



[arch-commits] Commit in gstreamer0.10-bad/repos (8 files)

2012-06-05 Thread Jan de Groot
Date: Tuesday, June 5, 2012 @ 04:51:43
  Author: jgc
Revision: 160767

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

Added:
  gstreamer0.10-bad/repos/extra-i686/PKGBUILD
(from rev 160766, gstreamer0.10-bad/trunk/PKGBUILD)
  gstreamer0.10-bad/repos/extra-i686/gstreamer0.10-bad-plugins.install
(from rev 160766, gstreamer0.10-bad/trunk/gstreamer0.10-bad-plugins.install)
  gstreamer0.10-bad/repos/extra-x86_64/PKGBUILD
(from rev 160766, gstreamer0.10-bad/trunk/PKGBUILD)
  gstreamer0.10-bad/repos/extra-x86_64/gstreamer0.10-bad-plugins.install
(from rev 160766, gstreamer0.10-bad/trunk/gstreamer0.10-bad-plugins.install)
Deleted:
  gstreamer0.10-bad/repos/extra-i686/PKGBUILD
  gstreamer0.10-bad/repos/extra-i686/gstreamer0.10-bad-plugins.install
  gstreamer0.10-bad/repos/extra-x86_64/PKGBUILD
  gstreamer0.10-bad/repos/extra-x86_64/gstreamer0.10-bad-plugins.install

+
 extra-i686/PKGBUILD|  105 +++
 extra-i686/gstreamer0.10-bad-plugins.install   |   22 ++--
 extra-x86_64/PKGBUILD  |  105 +++
 extra-x86_64/gstreamer0.10-bad-plugins.install |   22 ++--
 4 files changed, 126 insertions(+), 128 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-06-05 08:51:20 UTC (rev 160766)
+++ extra-i686/PKGBUILD 2012-06-05 08:51:43 UTC (rev 160767)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgbase=gstreamer0.10-bad
-pkgname=('gstreamer0.10-bad' 'gstreamer0.10-bad-plugins')
-pkgver=0.10.23
-pkgrel=1
-arch=('i686' 'x86_64')
-license=('LGPL' 'GPL')
-makedepends=('pkgconfig' 'gstreamer0.10-base>=0.10.36' 'xvidcore' 'libdca' 
'bzip2' 'libdc1394' 'neon' 'faac' 'musicbrainz' 'faad2' 'libmms' 'libcdaudio' 
'libmpcdec' 'mjpegtools' 'libdvdnav' 'libmodplug' 'jasper' 'liblrdf' 'libofa' 
'soundtouch' 'libvdpau' 'schroedinger' 'libass' 'libvpx' 'gsm' 'libgme' 
'rtmpdump' 'libsndfile' 'librsvg')
-url="http://gstreamer.freedesktop.org/";
-options=(!libtool !emptydirs)
-source=(${url}/src/gst-plugins-bad/gst-plugins-bad-${pkgver}.tar.xz)
-md5sums=('e4822fa2cc933768e2998311a1565979')
-
-build() {
-  cd "${srcdir}/gst-plugins-bad-${pkgver}"
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---disable-static --enable-experimental \
---with-package-name="GStreamer Bad Plugins (Archlinux)" \
---with-package-origin="http://www.archlinux.org/";
-
-  make
-  sed -e 's/gst sys ext/gst/' -i Makefile
-}
-
-# Disable for now: 2 tests fail, one of them is because of not having a camera 
during build.
-#check() {
-#  cd "${srcdir}/gst-plugins-bad-${pkgver}"
-#  make check
-#}
-
-package_gstreamer0.10-bad() {
-  pkgdesc="GStreamer Multimedia Framework Bad Plugin libraries 
(gst-plugins-bad)"
-  depends=('gstreamer0.10-base>=0.10.34')
-  groups=('gstreamer0.10-plugins')
-
-  cd "${srcdir}/gst-plugins-bad-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}
-
-package_gstreamer0.10-bad-plugins() {
-  pkgdesc="GStreamer Multimedia Framework Bad Plugins (gst-plugins-bad)"
-  depends=("gstreamer0.10-bad=${pkgver}" 'xvidcore' 'libdca' 'bzip2' 
'libdc1394' 'neon' 'faac' 'musicbrainz' 'faad2' 'libmms' 'libcdaudio' 
'libmpcdec' 'mjpegtools' 'libdvdnav' 'libmodplug' 'jasper' 'liblrdf' 'libofa' 
'libvdpau' 'soundtouch' 'libass' 'schroedinger' 'libvpx' 'gsm' 'rtmpdump' 
'libgme' 'libsndfile' 'librsvg')
-  groups=('gstreamer0.10-plugins')
-  install=gstreamer0.10-bad-plugins.install
-
-  cd "${srcdir}/gst-plugins-bad-${pkgver}"
-  make -C gst-libs DESTDIR="${pkgdir}" install
-  make -C ext DESTDIR="${pkgdir}" install
-  make -C sys DESTDIR="${pkgdir}" install
-  make -C gst-libs DESTDIR="${pkgdir}" uninstall
-}

Copied: gstreamer0.10-bad/repos/extra-i686/PKGBUILD (from rev 160766, 
gstreamer0.10-bad/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-06-05 08:51:43 UTC (rev 160767)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgbase=gstreamer0.10-bad
+pkgname=('gstreamer0.10-bad' 'gstreamer0.10-bad-plugins')
+pkgver=0.10.23
+pkgrel=2
+arch=('i686' 'x86_64')
+license=('LGPL' 'GPL')
+makedepends=('pkgconfig' 'gstreamer0.10-base>=0.10.36' 'xvidcore' 'libdca' 
'bzip2' 'libdc1394' 'neon' 'faac' 'musicbrainz' 'faad2' 'libmms' 'libcdaudio' 
'libmpcdec' 'mjpegtools' 'libdvdnav' 'libmodplug' 'jasper' 'liblrdf' 'libofa' 
'soundtouch' 'libvdpau' 'schroedinger' 'libass' 'libvpx' 'gsm' 'libgme' 
'rtmpdump' 'libsndfile' 'librsvg' 'wildmidi')
+url="http://gstreamer.freedesktop.org/";
+options=(!libtool !emptydirs)
+source=(${url}/src/gst-plugins-bad/gst-plugins-bad-${pkgver}.tar.xz)
+md5sums=('e4822fa2cc933768e2998311a1565979')
+
+build() {
+  cd "${srcdir}/gst-plugins-bad-${pkgver}"
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--disable-st

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

2012-06-05 Thread Jan de Groot
Date: Tuesday, June 5, 2012 @ 05:28:54
  Author: jgc
Revision: 160768

upgpkg: dbus-python 1.1.0-1

Update to 1.1.0
Implement package split to support both python and python2 (FS#28208)

Modified:
  dbus-python/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-06-05 08:51:43 UTC (rev 160767)
+++ PKGBUILD2012-06-05 09:28:54 UTC (rev 160768)
@@ -1,27 +1,65 @@
 # $Id$
-# Contributor: Jan de Groot 
+# Maintainer: Jan de Groot 
 
-pkgname=dbus-python
-pkgver=1.0.0
+pkgbase=dbus-python
+pkgname=('python-dbus' 'python2-dbus' 'python-dbus-common')
+pkgver=1.1.0
 pkgrel=1
 pkgdesc="Python bindings for DBUS"
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL')
 url="http://www.freedesktop.org/wiki/Software/DBusBindings";
-depends=('dbus-core' 'python2')
-makedepends=('docutils' 'dbus-glib')
-optdepends=('dbus-glib: glib mainloop support')
+makedepends=('docutils' 'dbus-glib' 'python' 'python2')
 options=('!libtool')
-source=(http://dbus.freedesktop.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-md5sums=('775a8235736bf760cdd96e2d76546469')
+source=(http://dbus.freedesktop.org/releases/${pkgbase}/${pkgbase}-${pkgver}.tar.gz)
+md5sums=('41a4595fd92eeebd632623af0bd7')
 
 build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  PYTHON=python2 ./configure --prefix=/usr
+  cd "${srcdir}"
+  mkdir build-python2 build-python3
+  cd "${srcdir}/build-python2"
+  PYTHON=python2 ../${pkgbase}-${pkgver}/configure --prefix=/usr
   make
+
+
+  cd "${srcdir}/build-python3"
+  ../${pkgbase}-${pkgver}/configure --prefix=/usr
+  make
 }
 
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
+package_python-dbus-common() {
+  pkgdesc="Common dbus-python files shared between python-dbus and 
python2-dbus"
+
+  cd "${srcdir}/build-python3"
+  make DESTDIR="${pkgdir}" install-data
+  rm -rf "${pkgdir}"/usr/lib/python*
+}
+
+package_python-dbus() {
+  depends=('python-dbus-common' 'python' 'dbus-core')
+  optdepends=('dbus-glib: glib mainloop support')
+  pkgdesc="Python 3.2 bindings for DBUS"
+
+  cd "${srcdir}/build-python3"
   make DESTDIR="${pkgdir}" install
+
+  rm -rf "${pkgdir}/usr/share"
+  rm -rf "${pkgdir}/usr/include"
+  rm -rf "${pkgdir}/usr/lib/pkgconfig"
 }
+
+package_python2-dbus() {
+  depends=('python-dbus-common' 'python2' 'dbus-core')
+  optdepends=('dbus-glib: glib mainloop support')
+  pkgdesc="Python 2.7 bindings for DBUS"
+  replaces=('dbus-python')
+  conflicts=('dbus-python')
+  provides=("dbus-python=$pkgver")
+
+  cd "${srcdir}/build-python2"
+  make DESTDIR="${pkgdir}" install
+
+  rm -rf "${pkgdir}/usr/share"
+  rm -rf "${pkgdir}/usr/include"
+  rm -rf "${pkgdir}/usr/lib/pkgconfig"
+}



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

2012-06-05 Thread Jan de Groot
Date: Tuesday, June 5, 2012 @ 05:29:16
  Author: jgc
Revision: 160769

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

Added:
  dbus-python/repos/testing-i686/
  dbus-python/repos/testing-i686/PKGBUILD
(from rev 160768, dbus-python/trunk/PKGBUILD)
  dbus-python/repos/testing-x86_64/
  dbus-python/repos/testing-x86_64/PKGBUILD
(from rev 160768, dbus-python/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   65 ++
 testing-x86_64/PKGBUILD |   65 ++
 2 files changed, 130 insertions(+)

Copied: dbus-python/repos/testing-i686/PKGBUILD (from rev 160768, 
dbus-python/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-06-05 09:29:16 UTC (rev 160769)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgbase=dbus-python
+pkgname=('python-dbus' 'python2-dbus' 'python-dbus-common')
+pkgver=1.1.0
+pkgrel=1
+pkgdesc="Python bindings for DBUS"
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL')
+url="http://www.freedesktop.org/wiki/Software/DBusBindings";
+makedepends=('docutils' 'dbus-glib' 'python' 'python2')
+options=('!libtool')
+source=(http://dbus.freedesktop.org/releases/${pkgbase}/${pkgbase}-${pkgver}.tar.gz)
+md5sums=('41a4595fd92eeebd632623af0bd7')
+
+build() {
+  cd "${srcdir}"
+  mkdir build-python2 build-python3
+  cd "${srcdir}/build-python2"
+  PYTHON=python2 ../${pkgbase}-${pkgver}/configure --prefix=/usr
+  make
+
+
+  cd "${srcdir}/build-python3"
+  ../${pkgbase}-${pkgver}/configure --prefix=/usr
+  make
+}
+
+package_python-dbus-common() {
+  pkgdesc="Common dbus-python files shared between python-dbus and 
python2-dbus"
+
+  cd "${srcdir}/build-python3"
+  make DESTDIR="${pkgdir}" install-data
+  rm -rf "${pkgdir}"/usr/lib/python*
+}
+
+package_python-dbus() {
+  depends=('python-dbus-common' 'python' 'dbus-core')
+  optdepends=('dbus-glib: glib mainloop support')
+  pkgdesc="Python 3.2 bindings for DBUS"
+
+  cd "${srcdir}/build-python3"
+  make DESTDIR="${pkgdir}" install
+
+  rm -rf "${pkgdir}/usr/share"
+  rm -rf "${pkgdir}/usr/include"
+  rm -rf "${pkgdir}/usr/lib/pkgconfig"
+}
+
+package_python2-dbus() {
+  depends=('python-dbus-common' 'python2' 'dbus-core')
+  optdepends=('dbus-glib: glib mainloop support')
+  pkgdesc="Python 2.7 bindings for DBUS"
+  replaces=('dbus-python')
+  conflicts=('dbus-python')
+  provides=("dbus-python=$pkgver")
+
+  cd "${srcdir}/build-python2"
+  make DESTDIR="${pkgdir}" install
+
+  rm -rf "${pkgdir}/usr/share"
+  rm -rf "${pkgdir}/usr/include"
+  rm -rf "${pkgdir}/usr/lib/pkgconfig"
+}

Copied: dbus-python/repos/testing-x86_64/PKGBUILD (from rev 160768, 
dbus-python/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2012-06-05 09:29:16 UTC (rev 160769)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgbase=dbus-python
+pkgname=('python-dbus' 'python2-dbus' 'python-dbus-common')
+pkgver=1.1.0
+pkgrel=1
+pkgdesc="Python bindings for DBUS"
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL')
+url="http://www.freedesktop.org/wiki/Software/DBusBindings";
+makedepends=('docutils' 'dbus-glib' 'python' 'python2')
+options=('!libtool')
+source=(http://dbus.freedesktop.org/releases/${pkgbase}/${pkgbase}-${pkgver}.tar.gz)
+md5sums=('41a4595fd92eeebd632623af0bd7')
+
+build() {
+  cd "${srcdir}"
+  mkdir build-python2 build-python3
+  cd "${srcdir}/build-python2"
+  PYTHON=python2 ../${pkgbase}-${pkgver}/configure --prefix=/usr
+  make
+
+
+  cd "${srcdir}/build-python3"
+  ../${pkgbase}-${pkgver}/configure --prefix=/usr
+  make
+}
+
+package_python-dbus-common() {
+  pkgdesc="Common dbus-python files shared between python-dbus and 
python2-dbus"
+
+  cd "${srcdir}/build-python3"
+  make DESTDIR="${pkgdir}" install-data
+  rm -rf "${pkgdir}"/usr/lib/python*
+}
+
+package_python-dbus() {
+  depends=('python-dbus-common' 'python' 'dbus-core')
+  optdepends=('dbus-glib: glib mainloop support')
+  pkgdesc="Python 3.2 bindings for DBUS"
+
+  cd "${srcdir}/build-python3"
+  make DESTDIR="${pkgdir}" install
+
+  rm -rf "${pkgdir}/usr/share"
+  rm -rf "${pkgdir}/usr/include"
+  rm -rf "${pkgdir}/usr/lib/pkgconfig"
+}
+
+package_python2-dbus() {
+  depends=('python-dbus-common' 'python2' 'dbus-core')
+  optdepends=('dbus-glib: glib mainloop support')
+  pkgdesc="Python 2.7 bindings for DBUS"
+  replaces=('dbus-python')
+  conflicts=('dbus-python')
+  provides=("dbus-python=$pkgver")
+
+  cd "${srcdir}/build-python2"
+  make DESTDIR="${pkgdir}" install
+
+  rm -rf "${pkgdir}/usr/share"
+  rm -rf "${pkgdir}/usr/include"
+  rm -rf "${pkgdir}/usr/lib/pkgconfig"
+}



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

2012-06-05 Thread Dave Reisner
Date: Tuesday, June 5, 2012 @ 06:07:09
  Author: dreisner
Revision: 160770

avoid attempt to chown a possibly dangling symlink

Modified:
  filesystem/trunk/filesystem.install

+
 filesystem.install |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: filesystem.install
===
--- filesystem.install  2012-06-05 09:29:16 UTC (rev 160769)
+++ filesystem.install  2012-06-05 10:07:09 UTC (rev 160770)
@@ -1,11 +1,11 @@
 post_install() {
[ -f var/log/lastlog ] ||  : >var/log/lastlog
[ -f var/log/wtmp ]||  : >var/log/wtmp
-   [ -f var/log/btmp ]|| (: >var/log/btmp && chmod 600 var/log/btmp)
+   [ -f var/log/btmp ]|| {: >var/log/btmp && chmod 600 var/log/btmp; }
# workaround for bug #7194
# readded due to bug #9465
# please do not remove!
-   chmod 1777 var/spool/mail tmp var/tmp var/lock
+   chmod 1777 var/spool/mail tmp var/tmp
 }
 
 # args:  [options]



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

2012-06-05 Thread Dave Reisner
Date: Tuesday, June 5, 2012 @ 06:09:39
  Author: dreisner
Revision: 160771

fix syntax error

Modified:
  filesystem/trunk/filesystem.install

+
 filesystem.install |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: filesystem.install
===
--- filesystem.install  2012-06-05 10:07:09 UTC (rev 160770)
+++ filesystem.install  2012-06-05 10:09:39 UTC (rev 160771)
@@ -1,7 +1,7 @@
 post_install() {
-   [ -f var/log/lastlog ] ||  : >var/log/lastlog
-   [ -f var/log/wtmp ]||  : >var/log/wtmp
-   [ -f var/log/btmp ]|| {: >var/log/btmp && chmod 600 var/log/btmp; }
+   [ -f var/log/lastlog ] ||   : >var/log/lastlog
+   [ -f var/log/wtmp ]||   : >var/log/wtmp
+  [ -f var/log/btmp ]|| { : >var/log/btmp && chmod 600 var/log/btmp; }
# workaround for bug #7194
# readded due to bug #9465
# please do not remove!



[arch-commits] Commit in libreoffice/trunk (PKGBUILD.36)

2012-06-05 Thread andyrtr
Date: Tuesday, June 5, 2012 @ 11:46:39
  Author: andyrtr
Revision: 160772

add testing PKGBUILD for LibO 3.6 prereleases

Added:
  libreoffice/trunk/PKGBUILD.36

-+
 PKGBUILD.36 |  700 ++
 1 file changed, 700 insertions(+)

Added: PKGBUILD.36
===
--- PKGBUILD.36 (rev 0)
+++ PKGBUILD.36 2012-06-05 15:46:39 UTC (rev 160772)
@@ -0,0 +1,700 @@
+# $Id: PKGBUILD 160067 2012-05-29 19:20:54Z andyrtr $
+# Maintainer: AndyRTR 
+
+pkgbase="libreoffice"
+pkgname=('libreoffice-common'
+   'libreoffice-base'
+   'libreoffice-calc'
+   'libreoffice-draw'
+   'libreoffice-gnome'
+   'libreoffice-impress'
+   'libreoffice-kde4'
+   'libreoffice-math'
+   'libreoffice-sdk'
+   'libreoffice-sdk-doc'
+   'libreoffice-writer'
+   'libreoffice-en-US'
+   'libreoffice-postgresql-connector'
+   'libreoffice-extension-pdfimport'
+   'libreoffice-extension-presenter-screen'
+   'libreoffice-extension-presentation-minimizer'
+   'libreoffice-extension-report-builder'
+   'libreoffice-scripting-beanshell'
+   'libreoffice-scripting-javascript'
+   'libreoffice-extension-scripting-python') # svn up -r 142692 (last one 
with all extensions built
+_LOver=3.5.98.1
+pkgver=3.5.98.1
+pkgrel=1
+arch=('i686' 'x86_64')
+license=('LGPL3')
+url="http://www.libreoffice.org/";
+makedepends=( # makedepends
+ 'sane' 'perl-archive-zip' 'zip' 'unzip' 'unixodbc' 'hsqldb-java' 
'boost'
+ 'apache-ant' 'gperf' 'poppler>=0.18.0' 'kdelibs' 'gconf' 'cppunit'
+ 'beanshell'  'vigra' 'clucene' 'junit' 'libmythes' 'libwpg' 
'imagemagick'
+ 'mesa' 'gstreamer0.10-base' 'java-environment' 'postgresql-libs' 
'doxygen'
+  #'saxon' - currently broken 
+ # the runtime dependencies
+ "curl>=7.20.0" "hunspell>=1.2.8" "python2>=2.7" 'libwpd>=0.9.2' 
'libwps' 'libxaw' "neon>=0.28.6"
+ 'pango' 'nspr' 'libjpeg' 'libxrandr' 'libgl' 'dbus-glib' 
'libxslt' 'librsvg' "icu>=49.1" 
+ 'redland' 'hyphen' 'lpsolve' 'gcc-libs' 'sh'  'libtextcat' 
'graphite' 
+ 'hicolor-icon-theme' 'desktop-file-utils' 'shared-mime-info' 
'gtk2' 'orbit2' 'translate-toolkit' 'xdg-utils'
+'ttf-dejavu') # to satisfy regression tests
+
+# http://download.documentfoundation.org/mirrors/all.html
+# http://wiki.documentfoundation.org/Mirrors
+
+#_mirror="http://download.documentfoundation.org/libreoffice/src/${pkgver}";
+_mirror="http://dev-builds.libreoffice.org/pre-releases/src";
+_additional_source_url="http://dev-www.libreoffice.org/src";
+_additional_source_url2="http://dev-www.libreoffice.org/extern";
+source=(${_mirror}/${pkgbase}-{core,help,translations}-${_LOver}.tar.xz
+   
${_additional_source_url}/18f577b374d60b3c760a3a3350407632-STLport-4.5.tar.gz
+   
${_additional_source_url}/2fa6028324347860e684e75310818d43-libvisio-0.0.16.tar.bz2
+   
${_additional_source_url}/1f24ab1d39f4a51faf22244c94a6203f-xmlsec1-1.2.14.tar.gz
+   
${_additional_source_url}/35c94d2df8893241173de1d16b6034c0-swingExSrc.zip
+   
${_additional_source_url}/798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip
+   
${_additional_source_url}/fdb27bfe2dbe2e7b57ae194d9bf36bab-SampleICC-1.3.2.tar.gz
+   
${_additional_source_url}/ada24d37d8d638b3d8a9985e80bc2978-source-9.0.0.7-bj.zip
+   
${_additional_source_url}/2a177023f9ea8ec8bd00837605c5df1b-jakarta-tomcat-5.0.30-src.tar.gz
+   
${_additional_source_url}/a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip
+   
${_additional_source_url}/3c219630e4302863a9a83d0efde889db-commons-logging-1.1.1-src.tar.gz
+   
${_additional_source_url}/2ae988b339daec234019a7066f96733e-commons-lang-2.3-src.tar.gz
+   
${_additional_source_url}/2c9b0f83ed5890af02c0df1c1776f39b-commons-httpclient-3.1-src.tar.gz
+   
${_additional_source_url}/af3c3acf618de6108d65fcdc92b492e1-commons-codec-1.3-src.tar.gz
+   
${_additional_source_url}/eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip
+   
${_additional_source_url}/39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip
+   
${_additional_source_url}/3404ab6b1792ae5f16bbd603bd1e1d03-libformula-1.1.7.zip
+   
${_additional_source_url}/97b2d4dba862397f446b217e2b623e71-libloader-1.1.6.zip
+   
${_additional_source_url}/f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip
+   
${_additional_source_url}/8ce2fcd72becf06c41f7201d15373ed9-librepository-1.1.6.zip
+   
${_additional_source_url}/d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip
+   
${_additional_source_url}/3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip
+   
${_additional_source_url}/ace6ab49184e329db254e454a010f56d-libxml-1.1.7.zip
+   
${_additional_source_url}/db60e4fde8dd6d6807523deb71ee34dc-liblayout-0.2.10.zip
+   
${_additional_source_u

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

2012-06-05 Thread Tobias Powalowski
Date: Tuesday, June 5, 2012 @ 11:59:37
  Author: tpowa
Revision: 160773

upgpkg: linux-lts 3.0.33-1

bump to latest version

Modified:
  linux-lts/trunk/PKGBUILD
  linux-lts/trunk/config
  linux-lts/trunk/config.x86_64
  linux-lts/trunk/linux-lts.install

---+
 PKGBUILD  |   18 +-
 config|3 ++-
 config.x86_64 |3 ++-
 linux-lts.install |2 +-
 4 files changed, 14 insertions(+), 12 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-06-05 15:46:39 UTC (rev 160772)
+++ PKGBUILD2012-06-05 15:59:37 UTC (rev 160773)
@@ -7,7 +7,7 @@
 # pkgname=linux-custom   # Build kernel with a different name
 _kernelname=${pkgname#linux}
 _basekernel=3.0
-pkgver=${_basekernel}.32
+pkgver=${_basekernel}.33
 pkgrel=1
 arch=('i686' 'x86_64')
 url="http://www.kernel.org/";
@@ -23,6 +23,14 @@
 'change-default-console-loglevel.patch'
 'i915-fix-ghost-tv-output.patch'
 'ext4-options.patch')
+md5sums=('ecf932280e2441bdd992423ef3d55f8f'
+ 'd65a3fa198b7ca7270d94434a65df37b'
+ 'b062564a56da7b67c02d014a0a95584d'
+ 'f441ad868946ca2f34e739e5649985da'
+ 'e1e1b5004323eb1975d71568ccaf1e1b'
+ '9d3c56a4b999c8bfbd4018089a62f662'
+ '263725f20c0b9eb9c353040792d644e5'
+ 'c8299cf750a84e12d60b372c8ca7e1e8')
 
 build() {
   cd "${srcdir}/linux-${_basekernel}"
@@ -269,11 +277,3 @@
   # remove unneeded architectures
   rm -rf 
"${pkgdir}"/usr/src/linux-${_kernver}/arch/{alpha,arm,arm26,avr32,blackfin,cris,frv,h8300,ia64,m32r,m68k,m68knommu,mips,microblaze,mn10300,parisc,powerpc,ppc,s390,score,sh,sh64,sparc,sparc64,tile,um,unicore32,v850,xtensa}
 }
-md5sums=('ecf932280e2441bdd992423ef3d55f8f'
- '3f9aa37f7ec60c66c2788cebaf717f38'
- '6535e77d8d1620af4b44552867c14060'
- '5ff53dbbeb7316f828949cde7edc0270'
- 'e1e1b5004323eb1975d71568ccaf1e1b'
- '9d3c56a4b999c8bfbd4018089a62f662'
- '263725f20c0b9eb9c353040792d644e5'
- 'c8299cf750a84e12d60b372c8ca7e1e8')

Modified: config
===
--- config  2012-06-05 15:46:39 UTC (rev 160772)
+++ config  2012-06-05 15:59:37 UTC (rev 160773)
@@ -4998,7 +4998,8 @@
 CONFIG_DCDBAS=m
 CONFIG_DMIID=y
 CONFIG_DMI_SYSFS=m
-# CONFIG_ISCSI_IBFT_FIND is not set
+CONFIG_ISCSI_IBFT_FIND=y
+CONFIG_ISCSI_IBFT=m
 CONFIG_SIGMA=m
 # CONFIG_GOOGLE_FIRMWARE is not set
 

Modified: config.x86_64
===
--- config.x86_64   2012-06-05 15:46:39 UTC (rev 160772)
+++ config.x86_64   2012-06-05 15:59:37 UTC (rev 160773)
@@ -4739,7 +4739,8 @@
 CONFIG_DCDBAS=m
 CONFIG_DMIID=y
 CONFIG_DMI_SYSFS=m
-# CONFIG_ISCSI_IBFT_FIND is not set
+CONFIG_ISCSI_IBFT_FIND=y
+CONFIG_ISCSI_IBFT=m
 CONFIG_SIGMA=m
 # CONFIG_GOOGLE_FIRMWARE is not set
 

Modified: linux-lts.install
===
--- linux-lts.install   2012-06-05 15:46:39 UTC (rev 160772)
+++ linux-lts.install   2012-06-05 15:59:37 UTC (rev 160773)
@@ -2,7 +2,7 @@
 # arg 2:  the old package version
 
 KERNEL_NAME=-lts
-KERNEL_VERSION=3.0.32-1-lts
+KERNEL_VERSION=3.0.33-1-lts
 
 post_install () {
   # updating module dependencies



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

2012-06-05 Thread Tobias Powalowski
Date: Tuesday, June 5, 2012 @ 12:00:44
  Author: tpowa
Revision: 160774

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

Added:
  linux-lts/repos/testing-i686/
  linux-lts/repos/testing-i686/CVE-2012-0056.patch
(from rev 160773, linux-lts/trunk/CVE-2012-0056.patch)
  linux-lts/repos/testing-i686/PKGBUILD
(from rev 160773, linux-lts/trunk/PKGBUILD)
  linux-lts/repos/testing-i686/change-default-console-loglevel.patch
(from rev 160773, linux-lts/trunk/change-default-console-loglevel.patch)
  linux-lts/repos/testing-i686/config
(from rev 160773, linux-lts/trunk/config)
  linux-lts/repos/testing-i686/config.x86_64
(from rev 160773, linux-lts/trunk/config.x86_64)
  linux-lts/repos/testing-i686/ext4-options.patch
(from rev 160773, linux-lts/trunk/ext4-options.patch)
  linux-lts/repos/testing-i686/i915-fix-ghost-tv-output.patch
(from rev 160773, linux-lts/trunk/i915-fix-ghost-tv-output.patch)
  linux-lts/repos/testing-i686/linux-lts.install
(from rev 160773, linux-lts/trunk/linux-lts.install)
  linux-lts/repos/testing-i686/linux-lts.preset
(from rev 160773, linux-lts/trunk/linux-lts.preset)
  linux-lts/repos/testing-x86_64/
  linux-lts/repos/testing-x86_64/CVE-2012-0056.patch
(from rev 160773, linux-lts/trunk/CVE-2012-0056.patch)
  linux-lts/repos/testing-x86_64/PKGBUILD
(from rev 160773, linux-lts/trunk/PKGBUILD)
  linux-lts/repos/testing-x86_64/change-default-console-loglevel.patch
(from rev 160773, linux-lts/trunk/change-default-console-loglevel.patch)
  linux-lts/repos/testing-x86_64/config
(from rev 160773, linux-lts/trunk/config)
  linux-lts/repos/testing-x86_64/config.x86_64
(from rev 160773, linux-lts/trunk/config.x86_64)
  linux-lts/repos/testing-x86_64/ext4-options.patch
(from rev 160773, linux-lts/trunk/ext4-options.patch)
  linux-lts/repos/testing-x86_64/i915-fix-ghost-tv-output.patch
(from rev 160773, linux-lts/trunk/i915-fix-ghost-tv-output.patch)
  linux-lts/repos/testing-x86_64/linux-lts.install
(from rev 160773, linux-lts/trunk/linux-lts.install)
  linux-lts/repos/testing-x86_64/linux-lts.preset
(from rev 160773, linux-lts/trunk/linux-lts.preset)

--+
 testing-i686/CVE-2012-0056.patch |  269 
 testing-i686/PKGBUILD|  279 
 testing-i686/change-default-console-loglevel.patch   |   12 
 testing-i686/config  | 5648 +
 testing-i686/config.x86_64   | 5386 
 testing-i686/ext4-options.patch  |   49 
 testing-i686/i915-fix-ghost-tv-output.patch  |   26 
 testing-i686/linux-lts.install   |   62 
 testing-i686/linux-lts.preset|   14 
 testing-x86_64/CVE-2012-0056.patch   |  269 
 testing-x86_64/PKGBUILD  |  279 
 testing-x86_64/change-default-console-loglevel.patch |   12 
 testing-x86_64/config| 5648 +
 testing-x86_64/config.x86_64 | 5386 
 testing-x86_64/ext4-options.patch|   49 
 testing-x86_64/i915-fix-ghost-tv-output.patch|   26 
 testing-x86_64/linux-lts.install |   62 
 testing-x86_64/linux-lts.preset  |   14 
 18 files changed, 23490 insertions(+)

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


[arch-commits] Commit in libreoffice/trunk (PKGBUILD.36)

2012-06-05 Thread andyrtr
Date: Tuesday, June 5, 2012 @ 12:04:06
  Author: andyrtr
Revision: 160775

add missing internal clucene source LibO 3.6 prereleases

Modified:
  libreoffice/trunk/PKGBUILD.36

-+
 PKGBUILD.36 |3 +++
 1 file changed, 3 insertions(+)

Modified: PKGBUILD.36
===
--- PKGBUILD.36 2012-06-05 16:00:44 UTC (rev 160774)
+++ PKGBUILD.36 2012-06-05 16:04:06 UTC (rev 160775)
@@ -50,6 +50,7 @@
 _additional_source_url2="http://dev-www.libreoffice.org/extern";
 source=(${_mirror}/${pkgbase}-{core,help,translations}-${_LOver}.tar.xz

${_additional_source_url}/18f577b374d60b3c760a3a3350407632-STLport-4.5.tar.gz
+   
${_additional_source_url}/48d647fbd8ef8889e5a7f422c1bfda94-clucene-core-2.3.3.4.tar.gz

${_additional_source_url}/2fa6028324347860e684e75310818d43-libvisio-0.0.16.tar.bz2

${_additional_source_url}/1f24ab1d39f4a51faf22244c94a6203f-xmlsec1-1.2.14.tar.gz

${_additional_source_url}/35c94d2df8893241173de1d16b6034c0-swingExSrc.zip
@@ -81,6 +82,7 @@
libreoffice-common.sh libreoffice-common.csh)
 noextract=(2fa6028324347860e684e75310818d43-libvisio-0.0.16.tar.bz2
18f577b374d60b3c760a3a3350407632-STLport-4.5.tar.gz
+   48d647fbd8ef8889e5a7f422c1bfda94-clucene-core-2.3.3.4.tar.gz
185d60944ea767075d27247c3162b3bc-unowinreg.dll
0ff7d225d087793c8c2c680d77aac3e7-mdds_0.5.3.tar.bz2
ada24d37d8d638b3d8a9985e80bc2978-source-9.0.0.7-bj.zip
@@ -112,6 +114,7 @@
  '4c4486daa290df9df59a1caaa6c8747d'
  'f8723b1db19b0ef988512c204ed460ea'
  '18f577b374d60b3c760a3a3350407632'
+ '48d647fbd8ef8889e5a7f422c1bfda94'
  '2fa6028324347860e684e75310818d43'
  '1f24ab1d39f4a51faf22244c94a6203f'
  '35c94d2df8893241173de1d16b6034c0'



[arch-commits] Commit in firefox/trunk (PKGBUILD gcc47.patch)

2012-06-05 Thread Ionut Biru
Date: Tuesday, June 5, 2012 @ 13:39:47
  Author: ibiru
Revision: 160776

update to 13.0

Modified:
  firefox/trunk/PKGBUILD
Deleted:
  firefox/trunk/gcc47.patch

-+
 PKGBUILD|   16 +---
 gcc47.patch |   77 --
 2 files changed, 7 insertions(+), 86 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-06-05 16:04:06 UTC (rev 160775)
+++ PKGBUILD2012-06-05 17:39:47 UTC (rev 160776)
@@ -3,8 +3,8 @@
 # Contributor: Jakub Schmidtke 
 
 pkgname=firefox
-pkgver=12.0
-pkgrel=2
+pkgver=13.0
+pkgrel=1
 pkgdesc="Standalone web browser from mozilla.org"
 arch=('i686' 'x86_64')
 license=('MPL' 'GPL' 'LGPL')
@@ -12,22 +12,20 @@
 makedepends=('unzip' 'zip' 'diffutils' 'python2' 'wireless_tools' 'yasm' 
'mesa' 'autoconf2.13' 'libidl2' 'xorg-server-xvfb' 'imake')
 url="http://www.mozilla.org/projects/firefox";
 install=firefox.install
-source=(https://ftp.mozilla.org/pub/mozilla.org/firefox/releases/${pkgver}/source/firefox-${pkgver}.source.tar.bz2
-mozconfig firefox.desktop firefox-install-dir.patch vendor.js
-gcc47.patch)
-md5sums=('80c3e5927274de7f181fb5f931ac5fd4'
+options=(!emptydirs)
+source=(https://ftp.mozilla.org/pub/mozilla.org/firefox/releases/$pkgver/source/firefox-$pkgver.source.tar.bz2
+mozconfig firefox.desktop firefox-install-dir.patch vendor.js)
+md5sums=('f50ca7656eec47030b396f39075fa980'
  'db6d2bd4671831859566f403a086fdf2'
  'bdeb0380c7fae30dd0ead6d2d3bc5873'
  '594523c536a9be951b52c90dd85aff18'
- '0d053487907de4376d67d8f499c5502b'
- '5a8563f8fda7ad30405c86764267a19c')
+ '0d053487907de4376d67d8f499c5502b')
 
 build() {
   cd "mozilla-release"
 
   cp "$srcdir/mozconfig" .mozconfig
   patch -Np1 -i "$srcdir/firefox-install-dir.patch"
-  patch -Np1 -i "$srcdir/gcc47.patch"
 
   # Fix PRE_RELEASE_SUFFIX
   sed -i '/^PRE_RELEASE_SUFFIX := ""/s/ ""//' \

Deleted: gcc47.patch
===
--- gcc47.patch 2012-06-05 16:04:06 UTC (rev 160775)
+++ gcc47.patch 2012-06-05 17:39:47 UTC (rev 160776)
@@ -1,77 +0,0 @@
-
-# HG changeset patch
-# User Martin Stránský 
-# Date 1328886461 -3600
-# Node ID 87a5ed480992788832387ba91a77c69fbe9fe349
-# Parent  67017dd3b7f6650e6bcd5b6f545e0309e8de7049
-Bug 725655 - gcc 4.7 build failures (missing headers). r=benjamin
-
-diff --git a/ipc/chromium/src/base/file_util_linux.cc 
b/ipc/chromium/src/base/file_util_linux.cc
 a/ipc/chromium/src/base/file_util_linux.cc
-+++ b/ipc/chromium/src/base/file_util_linux.cc
-@@ -1,15 +1,18 @@
- // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
- // Use of this source code is governed by a BSD-style license that can be
- // found in the LICENSE file.
- 
- #include "base/file_util.h"
- 
- #include 
-+#if defined(ANDROID) || defined(OS_POSIX)
-+#include 
-+#endif
- 
- #include 
- #include 
- 
- #include "base/eintr_wrapper.h"
- #include "base/file_path.h"
- #include "base/string_util.h"
- 
-diff --git a/ipc/chromium/src/base/message_pump_libevent.cc 
b/ipc/chromium/src/base/message_pump_libevent.cc
 a/ipc/chromium/src/base/message_pump_libevent.cc
-+++ b/ipc/chromium/src/base/message_pump_libevent.cc
-@@ -1,16 +1,19 @@
- // Copyright (c) 2008 The Chromium Authors. All rights reserved.
- // Use of this source code is governed by a BSD-style license that can be
- // found in the LICENSE file.
- 
- #include "base/message_pump_libevent.h"
- 
- #include 
- #include 
-+#if defined(ANDROID) || defined(OS_POSIX)
-+#include 
-+#endif
- 
- #include "eintr_wrapper.h"
- #include "base/logging.h"
- #include "base/scoped_nsautorelease_pool.h"
- #include "base/scoped_ptr.h"
- #include "base/time.h"
- #include "third_party/libevent/event.h"
- 
-diff --git a/ipc/chromium/src/base/time_posix.cc 
b/ipc/chromium/src/base/time_posix.cc
 a/ipc/chromium/src/base/time_posix.cc
-+++ b/ipc/chromium/src/base/time_posix.cc
-@@ -8,16 +8,19 @@
- #include 
- #endif
- #include 
- #ifdef ANDROID
- #include 
- #else
- #include 
- #endif
-+#if defined(ANDROID) || defined(OS_POSIX)
-+#include 
-+#endif
- 
- #include 
- 
- #include "base/basictypes.h"
- #include "base/logging.h"
- 
- namespace base {
- 
-



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

2012-06-05 Thread Ionut Biru
Date: Tuesday, June 5, 2012 @ 13:43:13
  Author: ibiru
Revision: 160777

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

Added:
  firefox/repos/extra-i686/PKGBUILD
(from rev 160776, firefox/trunk/PKGBUILD)
  firefox/repos/extra-i686/firefox-install-dir.patch
(from rev 160776, firefox/trunk/firefox-install-dir.patch)
  firefox/repos/extra-i686/firefox.desktop
(from rev 160776, firefox/trunk/firefox.desktop)
  firefox/repos/extra-i686/firefox.install
(from rev 160776, firefox/trunk/firefox.install)
  firefox/repos/extra-i686/mozconfig
(from rev 160776, firefox/trunk/mozconfig)
  firefox/repos/extra-i686/vendor.js
(from rev 160776, firefox/trunk/vendor.js)
  firefox/repos/extra-x86_64/PKGBUILD
(from rev 160776, firefox/trunk/PKGBUILD)
  firefox/repos/extra-x86_64/firefox-install-dir.patch
(from rev 160776, firefox/trunk/firefox-install-dir.patch)
  firefox/repos/extra-x86_64/firefox.desktop
(from rev 160776, firefox/trunk/firefox.desktop)
  firefox/repos/extra-x86_64/firefox.install
(from rev 160776, firefox/trunk/firefox.install)
  firefox/repos/extra-x86_64/mozconfig
(from rev 160776, firefox/trunk/mozconfig)
  firefox/repos/extra-x86_64/vendor.js
(from rev 160776, firefox/trunk/vendor.js)
Deleted:
  firefox/repos/extra-i686/PKGBUILD
  firefox/repos/extra-i686/firefox-install-dir.patch
  firefox/repos/extra-i686/firefox.desktop
  firefox/repos/extra-i686/firefox.install
  firefox/repos/extra-i686/gcc47.patch
  firefox/repos/extra-i686/mozconfig
  firefox/repos/extra-i686/vendor.js
  firefox/repos/extra-x86_64/PKGBUILD
  firefox/repos/extra-x86_64/firefox-install-dir.patch
  firefox/repos/extra-x86_64/firefox.desktop
  firefox/repos/extra-x86_64/firefox.install
  firefox/repos/extra-x86_64/gcc47.patch
  firefox/repos/extra-x86_64/mozconfig
  firefox/repos/extra-x86_64/vendor.js

+
 extra-i686/PKGBUILD|  136 --
 extra-i686/firefox-install-dir.patch   |   56 +-
 extra-i686/firefox.desktop |  162 +++
 extra-i686/firefox.install |   26 ++--
 extra-i686/gcc47.patch |   77 --
 extra-i686/mozconfig   |   90 -
 extra-i686/vendor.js   |   18 +--
 extra-x86_64/PKGBUILD  |  136 --
 extra-x86_64/firefox-install-dir.patch |   56 +-
 extra-x86_64/firefox.desktop   |  162 +++
 extra-x86_64/firefox.install   |   26 ++--
 extra-x86_64/gcc47.patch   |   77 --
 extra-x86_64/mozconfig |   90 -
 extra-x86_64/vendor.js |   18 +--
 14 files changed, 486 insertions(+), 644 deletions(-)

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


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

2012-06-05 Thread Ionut Biru
Date: Tuesday, June 5, 2012 @ 14:34:31
  Author: ibiru
Revision: 160778

update to 13.0

Modified:
  firefox-i18n/trunk/PKGBUILD

--+
 PKGBUILD |  162 ++---
 1 file changed, 81 insertions(+), 81 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-06-05 17:43:13 UTC (rev 160777)
+++ PKGBUILD2012-06-05 18:34:31 UTC (rev 160778)
@@ -5,7 +5,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgbase=firefox-i18n
-pkgver=12.0
+pkgver=13.0
 pkgname=('firefox-i18n'
 'firefox-i18n-af'
 'firefox-i18n-ak'
@@ -745,83 +745,83 @@
   cd "${srcdir}"
   install -Dm644 firefox-i18n-$pkgver-zu.xpi 
"${pkgdir}/$_path/langpack...@firefox.mozilla.org.xpi"
 }
-md5sums=('15b54ed9ed819176ec329def4a991600'
- '4fcb48d9201977c45d10e62bd8a7a770'
- '519d07df89b40a5a626320b383ea303a'
- 'c9cc571866124769ed7fe8a5e83f2369'
- '7ec64ead291aff070df6d3d29827245e'
- '7940b83b9e7a9c008566d33203fa90cc'
- '91208ff68e751138d17739a783539c66'
- '219044f4e4442df683cbcfaf7dd81a17'
- '9b15c439e4199cd151a2fd219e6f0ecb'
- '5e956b5c2153d0f56dd4f16284697b3c'
- '0c543eb9b98dd4d2da03cac0bfee75fb'
- '41bbf796859a86019c007e560a0432be'
- 'fb64849c1cacf2a25c4b72db391e0525'
- '463647f17924526f70048c45cbed1e6b'
- '3837059d8fd355e83a9e29fc5c34b4b1'
- 'd59386f2ffaed913dc6693384e44ca6d'
- '232f288c382117a2889c7efca67a1c8f'
- 'a5848cc8675cf6a65deb24521d6bc86f'
- 'e4ce285bcc95da273479642172008f1a'
- '00da420f7ab6b6324ea7355a24f23a8d'
- '2534ab72aa90cacd945d607e92ef4fb4'
- '8305af1353376e95a736df70a7786251'
- '12282bb7d91b8680d33d7ebaf1c19c7c'
- '6d6ff6deed99e5504a380551de8c715a'
- '1b6ac10cea4ef52e3e483f13b45df755'
- '07a24803dd520a758f51febc178e'
- 'e2e15f3876d085594905b1ea1841698c'
- '0dd33a22cdbd7cad81914a5f9ff9dd13'
- '1d199ed9477a0f17cb57f0d851dd06a3'
- '0338f5901c61a49a7181a7e448bfe1ab'
- '069e043edda06f49afbfa968c0fd7766'
- 'c632cb39c4a1598678b5c50a2badc65a'
- '2d6624af8956e13eb31fc5755f0bf563'
- '02280813e8df882150d22f5d62aea2eb'
- '0aee95f80f34666f1d2f9fd538858f19'
- '20fc4a3519806c93fde610dcd8441903'
- '1a8e9d803a3fffb38e8485bb5c8a9fc8'
- '40bf5c8940dd25b8bafb9dc1d29560d0'
- '8f34d15d2a5ddf726188e1ae36157c7a'
- 'f78ee7a3b95a221534d15f4c24dfd57d'
- '7654914b5e51f50d4cd573ebb464e224'
- '1d1377d409b0bcb288d89339da6ae75f'
- 'b449528ba9feda8deb952ec49ef3d0d5'
- '9ac45f44787c18b5eb551d4aa36e39a9'
- '1f578e3369a3803ef4414412591926e7'
- '5e933682ddc8329397d77a4442c41e1f'
- 'ecd9ab7c08e60d42a1f14fcfe3000d33'
- 'ccfae60a48801241f8fea7d37e2cdcf1'
- '096e3d10d672e78852f85e9eb45c7631'
- 'cb74e305a41452c7cac73579bba99938'
- '62a2f2ad6ef21e90fab8103a24fdfdb3'
- 'd4bb4658b4bb41c516bab33dd55266b6'
- 'ffaf298487cd4a941ef5c865b6e72c04'
- 'f6ced90df59deaaf5c82adbf0cef'
- '4af698e786d42c4300172ab810f57938'
- '2d4a592ac7eabbc99c360edae33dee1c'
- 'cb4720fe6638ac5e624cbaef0e757a52'
- '4a9d0533bf8942083af3a058f4ef9be1'
- '0b3671cdf818750b8e19e4a19c47a77e'
- 'eb7e21797fc89cb91ff857e353469e57'
- '0678954d1005c1b75f64c41b3a829639'
- '1b25333a4b40a8a06d66ef37e1443cf4'
- '550b6074d9dad216fb41146ee19bd439'
- '05fa34a845453a1e93d3bb2b30cf8c0a'
- 'ceca9240352512ab7675c8073e63bc5c'
- '3b05c964a1d0e01e80e51246688de108'
- '445feda12823dc4450b2cbb26a18ad16'
- '4ab030c5060c0fec4bf17e09610d4b71'
- '7aefa911725b9c416f3cea79ab852054'
- 'f9431af052aa77dea0b0a98a821e7eff'
- 'f046f2ffb9b06b41cc1595960c46901c'
- 'fb166338ccea1b1a32afc09c7167750e'
- 'd02362326a6413c451415a431a5b4679'
- '5ceacd2ab3b16feffce6105121964b38'
- 'd1524e0bfeab28bd5f3c09d9579916e5'
- '4f1d8947acbea0d60feffef130acf566'
- '52095d7a032191154bb2f00c1d4afe9c'
- '941bf9fd891fdad3cd7495a09a0423f8'
- '4fa77f49259b116f5ac0bd8a16d8d7ec'
- '4f93f3d298ccfb5d3723b52fd200feba')
+md5sums=('cbb3d0478e09fa9fdd05d461688a9c09'
+ 'deb260a97c9b5668eff3187968e4e3b5'
+ '2044f03ff9760a5bbced9d555cf93707'
+ '9c9afeb326c59504675ada5693b96f1d'
+ '8f5d1cf5a95891b18f92e0c16af82a67'
+ '7caa7662e2044d5eaf98113b87cba0bf'
+ '132ad89d67d709e239c113269c850163'
+ 'b711e60c7566c430b19ac57cddbf0e75'
+ '8a5be5b487bff7ce461d23b1fd847330'
+ '83df0b4fd2c2af3225c1c83341cbbc20'
+ '1526de40c8df1bd085f1f5a1e8de2c13'
+ 'ae4397d8a2706d08cff5bb4d7c4ef908'
+ 'ba8d1f9fdfd4fbda6210dede964b9c73'
+ '23356abaf6c0f4c5d

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

2012-06-05 Thread Ionut Biru
Date: Tuesday, June 5, 2012 @ 14:36:03
  Author: ibiru
Revision: 160779

archrelease: copy trunk to extra-any

Added:
  firefox-i18n/repos/extra-any/PKGBUILD
(from rev 160778, firefox-i18n/trunk/PKGBUILD)
  firefox-i18n/repos/extra-any/firefox-i18n.install
(from rev 160778, firefox-i18n/trunk/firefox-i18n.install)
Deleted:
  firefox-i18n/repos/extra-any/PKGBUILD
  firefox-i18n/repos/extra-any/firefox-i18n.install

--+
 PKGBUILD | 1654 -
 firefox-i18n.install |   16 
 2 files changed, 835 insertions(+), 835 deletions(-)

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


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

2012-06-05 Thread Guillaume Alaux
Date: Tuesday, June 5, 2012 @ 15:20:32
  Author: guillaume
Revision: 160780

upgpkg: tomcat7 7.0.27-1

Upstream release

Modified:
  tomcat7/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-06-05 18:36:03 UTC (rev 160779)
+++ PKGBUILD2012-06-05 19:20:32 UTC (rev 160780)
@@ -1,7 +1,7 @@
 # Maintainer: Guillaume ALAUX 
 pkgbase=tomcat7
 pkgname=('java-servlet3.0-tomcat' 'java-jsp2.2-tomcat' 'tomcat7')
-pkgver=7.0.26
+pkgver=7.0.27
 pkgrel=1
 arch=('any')
 url='http://tomcat.apache.org/'
@@ -15,7 +15,7 @@
 tomcat7
 tomcat7.install)
 
-md5sums=('eb8e7192b02b6031be6fc23afea2431f'
+md5sums=('a7fa41d09ccc1dc324c35fdebebd2afe'
  'eea5573b0acd985bb8b630a20719db76'
  '361a41c02930a4e43245ab7379a617e9'
  '6c5b4ed6d71b227f305b751c349fa31b')



[arch-commits] Commit in tomcat7/repos/extra-any (8 files)

2012-06-05 Thread Guillaume Alaux
Date: Tuesday, June 5, 2012 @ 15:20:59
  Author: guillaume
Revision: 160781

archrelease: copy trunk to extra-any

Added:
  tomcat7/repos/extra-any/PKGBUILD
(from rev 160780, tomcat7/trunk/PKGBUILD)
  tomcat7/repos/extra-any/tomcat7
(from rev 160780, tomcat7/trunk/tomcat7)
  tomcat7/repos/extra-any/tomcat7.conf.d
(from rev 160780, tomcat7/trunk/tomcat7.conf.d)
  tomcat7/repos/extra-any/tomcat7.install
(from rev 160780, tomcat7/trunk/tomcat7.install)
Deleted:
  tomcat7/repos/extra-any/PKGBUILD
  tomcat7/repos/extra-any/tomcat7
  tomcat7/repos/extra-any/tomcat7.conf.d
  tomcat7/repos/extra-any/tomcat7.install

-+
 PKGBUILD|  258 +++---
 tomcat7 |  154 
 tomcat7.conf.d  |   30 +++---
 tomcat7.install |   54 +--
 4 files changed, 248 insertions(+), 248 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2012-06-05 19:20:32 UTC (rev 160780)
+++ PKGBUILD2012-06-05 19:20:59 UTC (rev 160781)
@@ -1,129 +0,0 @@
-# Maintainer: Guillaume ALAUX 
-pkgbase=tomcat7
-pkgname=('java-servlet3.0-tomcat' 'java-jsp2.2-tomcat' 'tomcat7')
-pkgver=7.0.26
-pkgrel=1
-arch=('any')
-url='http://tomcat.apache.org/'
-license=('APACHE')
-# Does not build with JDK7. Same issue as with cassandra:
-# https://issues.apache.org/jira/browse/CASSANDRA-3275
-#makedepends=('java-environment>=6' 'apache-ant>=1.8' 'java-commons-daemon' 
'eclipse-ecj')
-makedepends=('java-environment=6' 'apache-ant>=1.8' 'java-commons-daemon' 
'eclipse-ecj')
-source=(http://archive.apache.org/dist/tomcat/tomcat-7/v${pkgver}/src/apache-tomcat-${pkgver}-src.tar.gz
-tomcat7.conf.d
-tomcat7
-tomcat7.install)
-
-md5sums=('eb8e7192b02b6031be6fc23afea2431f'
- 'eea5573b0acd985bb8b630a20719db76'
- '361a41c02930a4e43245ab7379a617e9'
- '6c5b4ed6d71b227f305b751c349fa31b')
-
-_servletver=3.0
-_jspver=2.2
-
-build() {
-  cd "${srcdir}/apache-tomcat-${pkgver}-src"
-
-  . /etc/profile.d/apache-ant.sh
-  ant deploy \
--Dbase.path=${srcdir}/DOWN_LIBS \
--Dcommons-daemon.jar=/usr/share/java/commons-daemon.jar \
--Djdt.jar=/usr/share/java/eclipse-ecj.jar
-}
-
-#TODO add test "ant test"
-
-package_java-servlet3.0-tomcat() {
-  pkgdesc="Servlet 3.0 java library implementation by Apache Tomcat"
-  depends=('java-environment>=5')
-
-  cd "${srcdir}/apache-tomcat-${pkgver}-src/output/build/lib"
-
-  install -dm755 ${pkgdir}/usr/share/java/servlet${_servletver}-tomcat
-  install -m644 servlet-api.jar \
-
${pkgdir}/usr/share/java/servlet${_servletver}-tomcat/servlet-api-${_servletver}.jar
-  ln -s servlet${_servletver}-tomcat/servlet-api-${_servletver}.jar \
-${pkgdir}/usr/share/java/servlet-api.jar
-}
-
-package_java-jsp2.2-tomcat() {
-  pkgdesc="JSP 2.2 java library implementation by Apache Tomcat"
-  depends=('java-environment>=5')
-
-  cd "${srcdir}/apache-tomcat-${pkgver}-src/output/build/lib"
-
-  install -dm755 ${pkgdir}/usr/share/java/jsp${_jspver}-tomcat
-  for j in el-api jsp-api; do
-install -m644 ${j}.jar \
-  
${pkgdir}/usr/share/java/jsp${_jspver}-tomcat/${j}-${_jspver}.jar
-ln -s jsp${_jspver}-tomcat/${j}-${_jspver}.jar 
${pkgdir}/usr/share/java/${j}.jar
-  done
-}
-
-package_tomcat7() {
-  pkgdesc="Servlet-3.0/JSP-2.2 Container"
-  depends=('java-runtime>=6' 'java-jsvc' 'eclipse-ecj'
-   "java-servlet3.0-tomcat=${pkgver}" "java-jsp2.2-tomcat=${pkgver}")
-  optdepends=('tomcat-native: to allow optimal performance in production 
environments')
-  backup=(etc/tomcat7/catalina.policy
-  etc/tomcat7/catalina.properties
-  etc/tomcat7/context.xml
-  etc/tomcat7/logging.properties
-  etc/tomcat7/server.xml
-  etc/tomcat7/tomcat-users.xml
-  etc/tomcat7/web.xml
-  etc/conf.d/tomcat7)
-  install=tomcat7.install
-
-  cd "${srcdir}/apache-tomcat-${pkgver}-src/output/build"
-
-  # Tomcat general files
-  install -dm755 ${pkgdir}/usr/share/{,java/}${pkgname}
-  # commons-daemon and tomcat-natives are packaged on their own
-  rm bin/{*.bat,commons-daemon*,tomcat-native.tar.gz}
-  cp -r bin ${pkgdir}/usr/share/${pkgname}
-
-  # eclipse-ecj is packaged on its own
-  rm lib/eclipse-ecj.jar
-  install -m644 lib/* ${pkgdir}/usr/share/java/${pkgname}
-  ln -s /usr/share/java/eclipse-ecj.jar 
${pkgdir}/usr/share/java/${pkgname}/eclipse-ecj.jar
-
-  # Provided by previous packages
-  rm ${pkgdir}/usr/share/java/${pkgname}/servlet-api.jar
-  ln -s 
/usr/share/java/servlet${_servletver}-tomcat/servlet-api-${_servletver}.jar \
-${pkgdir}/usr/share/java/${pkgname}/servlet-api.jar
-
-  for j in el-api jsp-api; do
-rm ${pkgdir}/usr/share/java/${pkgname}/${j}.jar
-ln -s /usr/share/java/jsp${_jspver}-tomcat/${j}-${_jspver}.jar \
-  ${pkgdir}/usr/share/java/${pkgname}/${j}.jar
-  done
-  ln -s /usr/share/java/$

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

2012-06-05 Thread Guillaume Alaux
Date: Tuesday, June 5, 2012 @ 15:26:43
  Author: guillaume
Revision: 160782

Set dependency to java-runtime-headless

Modified:
  junit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-06-05 19:20:59 UTC (rev 160781)
+++ PKGBUILD2012-06-05 19:26:43 UTC (rev 160782)
@@ -7,7 +7,7 @@
 arch=('any')
 url="http://www.junit.org/";
 license=('CPL')
-depends=('java-runtime')
+depends=('java-runtime-headless')
 makedepends=('apache-ant')
 source=(http://github.com/KentBeck/junit/tarball/r${pkgver})
 md5sums=('21cc48c80cab9af6e8204d00acf40a87')



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

2012-06-05 Thread Ionut Biru
Date: Tuesday, June 5, 2012 @ 15:38:10
  Author: ibiru
Revision: 160783

update to 13.0

Modified:
  thunderbird-i18n/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-06-05 19:26:43 UTC (rev 160782)
+++ PKGBUILD2012-06-05 19:38:10 UTC (rev 160783)
@@ -4,7 +4,7 @@
 # Contributor: Thomas Baechler 
 
 pkgbase=thunderbird-i18n
-pkgver=12.0.1
+pkgver=13.0
 pkgname=('thunderbird-i18n-ar'
 #'thunderbird-i18n-af'
 'thunderbird-i18n-be'
@@ -472,53 +472,53 @@
   cd ${srcdir}
   install -Dm644 thunderbird-i18n-$pkgver-zh-TW.xpi 
"${pkgdir}/$_path/langpack-zh...@thunderbird.mozilla.org.xpi"
 }
-md5sums=('f2fa291cf3ddc8388ba7992a88c280be'
- '5ded5c4c49babe150b97f5f224bc1fb2'
- '4172fcb63fc46e62854e7a5e9518838c'
- 'd23eae80a9aba1234c3911520e2a71ce'
- 'c07713249aac72a68cf35a030ea0c591'
- '5aa8418e42edb8e96cf07ea8d1a87750'
- '105562ae59ed77b91b88d599f5ea6a71'
- '516e5c07d33c43d0094086bc10b4f89a'
- '66b84848662463e65959c3aaa06ae997'
- 'f159f86752502fafb466cb096233f379'
- 'dcb5b8dff1a005fea4482e0ed1170ba4'
- '6076fc3f6766979510e1b154335294ab'
- '8a847b23778457e597f0c0bb63b0c026'
- 'f5deaa970704c7c08acfe906e8b54809'
- '50d4395066fcc74e061359cd60baf6c2'
- '78ee9933557846b1d162dd402480'
- '9f87aeacbf13bfdbc048548c163f8b9d'
- '850b606689285dba3f37cb26f1d833f5'
- '200567a271ee61926bb7dadaff869f5e'
- '85b5866502a68d146e144ba11a3c4ac0'
- '915c30387cded4c3489022dbb941137d'
- 'c06ee703daddd15d1167f263d31a3526'
- 'b166f5edeae8047394dee54840d91b46'
- '1a26c6a1e1beabd9619883fad75fa1ef'
- '3d3703eaa406ecd126f4f5b3d67418da'
- '98f2941f2786dc6ef7df79d284d8631d'
- 'e678adcee558299e91f58640601325a5'
- 'cb9628981c34e65cac62c89ea90c3573'
- 'c5a82a9870f643a03c1231cfed22d90f'
- '48785810322928ee81eeeb6d58817964'
- '28c11f259ecea1a5ce5146176de6e014'
- '34849106e353f06b55b0142f4be8c254'
- 'ad07a0b729b3ed55b19d3d2540c06013'
- '689278409ec870eb3a10e61c07195a90'
- 'd4ee9a517adbf228abb5edf518f11937'
- '77b47fe41f7c5da0e196f8e59e63913d'
- 'fa3fdd606d7936f982080fceafe254e0'
- '3d13f20190940c254f7ca3407508'
- '311775e9f876223536b82dae231079ec'
- '4123c12e399ab41365caa1a594316531'
- '756172fb0376ae2279e68868f78bf692'
- '87becae2ed75a3f34b10db71039c385d'
- '302f9f95780295f1fdd15bfffced949a'
- 'cdd405d02ffb3ba70188d6939ce4d832'
- '162969cd099cd2af2b9834042af3cb5b'
- '9153507bff7e8e8a4126e13229532150'
- 'cd0671bac86b8a90938f22e4471f41cb'
- 'bd36669f09412be0874f3d6380dc2f41'
- 'cb6de4afe2390712153b6e78f647a6fb'
- 'fc8d8536293cf90dd32b61956cfc23eb')
+md5sums=('c0ab45842f22f9381bec63d6f2b5c5ae'
+ '13fa0bc9c1c194b2f1906ff957042fde'
+ '6ad219a9048388c03b72ab7e42d665cf'
+ '578eb15f69431e3372cdf36cc27e0687'
+ 'd27891e1023ca54eae5741a154b651ee'
+ 'cbf6ff7c1b387a5befb8f99695c33e83'
+ '38280bf4fc436185be73af684e716db7'
+ 'a5df50ae90f07fe0862eb5f1edef831c'
+ 'c35d233d67529acd81bdb01c5df94c5b'
+ '536e54568b89e8e1f24ed90598c1ce97'
+ 'd27812a6edfc9ff93602b8309e6cc178'
+ '76884aee5253b78a2ed071a7c5910318'
+ '83144071c18b3408ce44065f935d60f5'
+ '075d276d9722f4178ba5a9bd04f6be26'
+ 'f4069727c5cab6c884f304c175d8dc35'
+ '3826daed53d06069d95d01f9106e33f2'
+ 'e577aab53cbcf1629aa247fb4fcfac4a'
+ '5770fa3401c6438925167a261e449837'
+ '00da1e344516d539650318335b00e776'
+ '2b233852a688f0ea2dbabaea621b87df'
+ 'f359f2deba363f8335f3b5bed600193d'
+ '33f3f00bc224b951d1e1e4a5f835adb5'
+ 'a991840b9345a3d7e486d8c0c3319b75'
+ 'b1963544beb2a4b264604c2780c9cbe2'
+ 'ceaf7cb6885ae2c058fa26737cd785bf'
+ '2df92fde689e47677b904bdbe32525d1'
+ '145e1b1c6693160642a088dfbc1e4e99'
+ '9f7882c69ff2505d58873a2b5b44f770'
+ '520acaba4d4442948951a5c5cb21'
+ '03b29706c87668e2c39911b6ef4f18e7'
+ 'f322b4e784946707afd90e1c1db9ecb3'
+ 'c9d391b63614b80d140e97d392c3c536'
+ '64a95b08c8632c79fce4c5b35ea233ca'
+ 'bc893d276d71f3f36dadc02f3737fb2c'
+ 'fc278445f81349a7367d4392d404dbcb'
+ '7abb2b0552a4d3de20c7ee8ec64406fc'
+ 'b9d1b5c47d721021d31092e97d9dfeba'
+ 'fa4db9dfe4459d66ced6b7e47d5f09b0'
+ '5dc6ab3814b88fb669c49e17fc942381'
+ '90efffb7042bdd034126352906c54ddf'
+ '479cc4606d0418b8d8b6e9979b496aa8'
+ 'd20104eba0ed8825f98e9766b60edff5'
+ 'f76a6176a8ae0b69569734d5

[arch-commits] Commit in thunderbird-i18n/repos/extra-any (PKGBUILD PKGBUILD)

2012-06-05 Thread Ionut Biru
Date: Tuesday, June 5, 2012 @ 15:41:58
  Author: ibiru
Revision: 160784

archrelease: copy trunk to extra-any

Added:
  thunderbird-i18n/repos/extra-any/PKGBUILD
(from rev 160783, thunderbird-i18n/trunk/PKGBUILD)
Deleted:
  thunderbird-i18n/repos/extra-any/PKGBUILD

--+
 PKGBUILD | 1048 ++---
 1 file changed, 524 insertions(+), 524 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2012-06-05 19:38:10 UTC (rev 160783)
+++ PKGBUILD2012-06-05 19:41:58 UTC (rev 160784)
@@ -1,524 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Andrea Scarpino 
-# Contributor: Thomas Baechler 
-
-pkgbase=thunderbird-i18n
-pkgver=12.0.1
-pkgname=('thunderbird-i18n-ar'
-#'thunderbird-i18n-af'
-'thunderbird-i18n-be'
-'thunderbird-i18n-bn-bd'
-'thunderbird-i18n-bg'
-'thunderbird-i18n-br'
-'thunderbird-i18n-ca'
-'thunderbird-i18n-cs'
-'thunderbird-i18n-da'
-'thunderbird-i18n-de'
-'thunderbird-i18n-el'
-'thunderbird-i18n-en-gb'
-'thunderbird-i18n-es-ar'
-'thunderbird-i18n-es'
-'thunderbird-i18n-et'
-'thunderbird-i18n-eu'
-'thunderbird-i18n-fi'
-'thunderbird-i18n-fr'
-'thunderbird-i18n-fy-nl'
-'thunderbird-i18n-ga'
-'thunderbird-i18n-gd'
-'thunderbird-i18n-gl'
-'thunderbird-i18n-he'
-'thunderbird-i18n-hu'
-'thunderbird-i18n-id'
-'thunderbird-i18n-is'
-'thunderbird-i18n-it'
-'thunderbird-i18n-ja'
-'thunderbird-i18n-ko'
-'thunderbird-i18n-lt'
-'thunderbird-i18n-nb'
-'thunderbird-i18n-nl'
-'thunderbird-i18n-nn'
-'thunderbird-i18n-pa'
-'thunderbird-i18n-pl'
-'thunderbird-i18n-pt-br'
-'thunderbird-i18n-pt'
-'thunderbird-i18n-ro'
-'thunderbird-i18n-rm'
-'thunderbird-i18n-ru'
-'thunderbird-i18n-si'
-'thunderbird-i18n-sk'
-'thunderbird-i18n-sl'
-'thunderbird-i18n-sq'
-'thunderbird-i18n-sv'
-'thunderbird-i18n-ta-lk'
-'thunderbird-i18n-tr'
-'thunderbird-i18n-uk'
-'thunderbird-i18n-vi'
-'thunderbird-i18n-zh-cn'
-'thunderbird-i18n-zh-tw')
-pkgrel=1
-pkgdesc="Language pack for Thunderbird"
-arch=('any')
-url="http://www.mozilla.com/";
-license=('MPL' 'GPL')
-depends=("thunderbird>=$pkgver")
-_url=https://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/$pkgver/linux-i686/xpi
-source=(thunderbird-i18n-$pkgver-ar.xpi::$_url/ar.xpi
-#   thunderbird-i18n-$pkgver-af.xpi::$_url/af.xpi
-thunderbird-i18n-$pkgver-be.xpi::$_url/be.xpi
-thunderbird-i18n-$pkgver-bn-BD.xpi::$_url/bn-BD.xpi
-thunderbird-i18n-$pkgver-bg.xpi::$_url/bg.xpi
-thunderbird-i18n-$pkgver-br.xpi::$_url/br.xpi
-thunderbird-i18n-$pkgver-ca.xpi::$_url/ca.xpi
-thunderbird-i18n-$pkgver-cs.xpi::$_url/cs.xpi
-thunderbird-i18n-$pkgver-da.xpi::$_url/da.xpi
-thunderbird-i18n-$pkgver-de.xpi::$_url/de.xpi
-thunderbird-i18n-$pkgver-el.xpi::$_url/el.xpi
-thunderbird-i18n-$pkgver-en-GB.xpi::$_url/en-GB.xpi
-thunderbird-i18n-$pkgver-es-AR.xpi::$_url/es-AR.xpi
-thunderbird-i18n-$pkgver-es-ES.xpi::$_url/es-ES.xpi
-thunderbird-i18n-$pkgver-et.xpi::$_url/et.xpi
-thunderbird-i18n-$pkgver-eu.xpi::$_url/eu.xpi
-thunderbird-i18n-$pkgver-fi.xpi::$_url/fi.xpi
-thunderbird-i18n-$pkgver-fr.xpi::$_url/fr.xpi
-thunderbird-i18n-$pkgver-fy-NL.xpi::$_url/fy-NL.xpi
-thunderbird-i18n-$pkgver-ga-IE.xpi::$_url/ga-IE.xpi
-thunderbird-i18n-$pkgver-gd.xpi::$_url/gd.xpi
-thunderbird-i18n-$pkgver-gl.xpi::$_url/gl.xpi
-thunderbird-i18n-$pkgver-he.xpi::$_url/he.xpi
-thunderbird-i18n-$pkgver-hu.xpi::$_url/hu.xpi
-thunderbird-i18n-$pkgver-id.xpi::$_url/id.xpi
-thunderbird-i18n-$pkgver-is.xpi::$_url/is.xpi
-thunderbird-i18n-$pkgver-it.xpi::$_url/it.xpi
-thunderbird-i18n-$pkgver-ja.xpi::$_url/ja.xpi
-thunderbird-i18n-$pkgver-ko.xpi::$_url/ko.xpi
-thunderbird-i18n-$pkgver-lt.xpi::$_url/lt.xpi
-thunderbird-i18n-$pkgver-nb-NO.xpi::$_url/nb-NO.xpi
-thunderbird-i18n-$pkgver-nl.xpi::$_url/nl.xpi
-thunderbird-i18n-$pkgver-nn-NO.xpi::$_url/nn-NO.xpi
-thunderbird-i18n-$pkgver-pa-IN.xpi::$_url/pa-IN.xpi
-thunderbird-i18n-$pkgver-pl.xpi::$_url/pl.xpi
-thunderbird-i18n-$pkgver-pt-BR.xpi::$_url/pt-BR.xpi
-thunderbird-i18n-$pkgver-pt-PT.xpi::$_url/pt-PT.xpi
-thunderbird-i18n-$pkgver-rm.xpi::$_url/rm.xpi
-thunderbird-i18n-$pkgver-ro.xpi::$_url/ro.xpi
-thunderbird-i18n-$pkgver-ru.xpi::$_url/ru.xpi
-thunderbird-i18n-$pkgver-si.xpi::$_url/si.xpi
-thunderbird-i18n-$pkgver-sk.xpi::$_url/sk.xpi
-  

[arch-commits] Commit in thunderbird/trunk (PKGBUILD clrf.patch gcc47.patch)

2012-06-05 Thread Ionut Biru
Date: Tuesday, June 5, 2012 @ 15:46:50
  Author: ibiru
Revision: 160785

update to 13.0

Modified:
  thunderbird/trunk/PKGBUILD
Deleted:
  thunderbird/trunk/clrf.patch
  thunderbird/trunk/gcc47.patch

-+
 PKGBUILD|   15 +--
 clrf.patch  |  265 --
 gcc47.patch |   39 
 3 files changed, 5 insertions(+), 314 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-06-05 19:41:58 UTC (rev 160784)
+++ PKGBUILD2012-06-05 19:46:50 UTC (rev 160785)
@@ -5,7 +5,7 @@
 # Contributor: Anders Bostrom 
 
 pkgname=thunderbird
-pkgver=12.0.1
+pkgver=13.0
 pkgrel=1
 pkgdesc="Standalone Mail/News reader"
 arch=('i686' 'x86_64')
@@ -19,22 +19,17 @@
 mozconfig
 thunderbird.desktop
 thunderbird-install-dir.patch
-vendor.js
-gcc47.patch
-clrf.patch)
-md5sums=('64cacde4cb2b1e8736f1c3a0ea6a02db'
+vendor.js)
+options=(!emptydirs)
+md5sums=('0134c67c30e8598f2a64ea004d5bc4bc'
  '41511a6bcdd04cf56706218e4670e631'
  'af3e5b344d2edf1c7d61bb0a5a96de9a'
  'aea906acf72c43dd82ead2fabcc1c6db'
- '5a53179d14ae9631b7afe5e4d0fc0b25'
- '1e3ad86899c61f0993c429d10913edb4'
- 'abe8f73faa71ea2a1e4c6f5a33f56c27')
+ '5a53179d14ae9631b7afe5e4d0fc0b25')
 
 build() {
   cd comm-release
   patch -Np1 -i "$srcdir/thunderbird-install-dir.patch"
-  patch -Np1 -i "$srcdir/gcc47.patch"
-  patch -Np1 -i "$srcdir/clrf.patch"
 
   cp "$srcdir/mozconfig" .mozconfig
 

Deleted: clrf.patch
===
--- clrf.patch  2012-06-05 19:41:58 UTC (rev 160784)
+++ clrf.patch  2012-06-05 19:46:50 UTC (rev 160785)
@@ -1,265 +0,0 @@
-diff -Nur comm-release.orig/mailnews/base/search/src/nsMsgSearchAdapter.cpp 
comm-release/mailnews/base/search/src/nsMsgSearchAdapter.cpp
 comm-release.orig/mailnews/base/search/src/nsMsgSearchAdapter.cpp  
2012-04-25 01:09:10.468804374 +
-+++ comm-release/mailnews/base/search/src/nsMsgSearchAdapter.cpp   
2012-04-25 01:09:45.928528202 +
-@@ -688,7 +688,7 @@
- PL_strcat(encoding, "{");
- lengthStr.AppendInt((PRInt32) strlen(value));
- PL_strcat(encoding, lengthStr.get());
--PL_strcat(encoding, "}"CRLF);
-+PL_strcat(encoding, "}" CRLF);
- PL_strcat(encoding, value);
- return NS_OK;
-   }
-diff -Nur comm-release.orig/mailnews/base/src/nsMsgFolderCompactor.cpp 
comm-release/mailnews/base/src/nsMsgFolderCompactor.cpp
 comm-release.orig/mailnews/base/src/nsMsgFolderCompactor.cpp   
2012-04-25 01:09:10.475470988 +
-+++ comm-release/mailnews/base/src/nsMsgFolderCompactor.cpp2012-04-25 
01:09:45.928528202 +
-@@ -758,7 +758,7 @@
-   }
- }
-   }
--#define EXTRA_KEYWORD_HDR "   
  "MSG_LINEBREAK
-+#define EXTRA_KEYWORD_HDR "   
  " MSG_LINEBREAK
- 
-// if status offset isn't in the first block, this code won't work. 
There's no good reason
-   // for the status offset not to be at the beginning of the message 
anyway.
-@@ -1216,7 +1216,7 @@
- // check if there's an envelope header; if not, write one.
- if (strncmp(m_dataBuffer, "From ", 5))
- {
--  m_fileStream->Write("From "CRLF, 7, &bytesWritten);
-+  m_fileStream->Write("From " CRLF, 7, &bytesWritten);
-   m_offlineMsgSize += bytesWritten;
- }
-   }
-diff -Nur comm-release.orig/mailnews/compose/src/nsSmtpProtocol.cpp 
comm-release/mailnews/compose/src/nsSmtpProtocol.cpp
 comm-release.orig/mailnews/compose/src/nsSmtpProtocol.cpp  2012-04-25 
01:09:10.542137136 +
-+++ comm-release/mailnews/compose/src/nsSmtpProtocol.cpp   2012-04-25 
01:09:45.928528202 +
-@@ -1722,7 +1722,7 @@
- {
-   m_sendDone = true;
-   nsCOMPtr url = do_QueryInterface(m_runningURL);
--  SendData(url, "QUIT"CRLF); // send a quit command to close the connection 
with the server.
-+  SendData(url, "QUIT" CRLF); // send a quit command to close the connection 
with the server.
-   m_nextState = SMTP_RESPONSE;
-   m_nextStateAfterResponse = SMTP_DONE;
-   return(0);
-@@ -1969,7 +1969,7 @@
- {
-   nsCOMPtr url = do_QueryInterface(m_runningURL);
-   // send a quit command to close the connection with the server.
--  if (SendData(url, "QUIT"CRLF) == NS_OK)
-+  if (SendData(url, "QUIT" CRLF) == NS_OK)
-   {
- m_nextState = SMTP_RESPONSE;
- m_nextStateAfterResponse = SMTP_ERROR_DONE;
-@@ -2118,4 +2118,3 @@
- NS_ENSURE_SUCCESS(rv,rv);
- return rv;
- }
--
-diff -Nur comm-release.orig/mailnews/imap/src/nsImapMailFolder.cpp 
comm-release/mailnews/imap/src/nsImapMailFolder.cpp
 comm-release.orig/mailnews/imap/src/nsImapMailFolder.cpp   2012-04-25 
01:09:10.605469976 +0

[arch-commits] Commit in thunderbird/repos (28 files)

2012-06-05 Thread Ionut Biru
Date: Tuesday, June 5, 2012 @ 15:48:29
  Author: ibiru
Revision: 160786

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

Added:
  thunderbird/repos/extra-i686/PKGBUILD
(from rev 160785, thunderbird/trunk/PKGBUILD)
  thunderbird/repos/extra-i686/mozconfig
(from rev 160785, thunderbird/trunk/mozconfig)
  thunderbird/repos/extra-i686/thunderbird-install-dir.patch
(from rev 160785, thunderbird/trunk/thunderbird-install-dir.patch)
  thunderbird/repos/extra-i686/thunderbird.desktop
(from rev 160785, thunderbird/trunk/thunderbird.desktop)
  thunderbird/repos/extra-i686/thunderbird.install
(from rev 160785, thunderbird/trunk/thunderbird.install)
  thunderbird/repos/extra-i686/vendor.js
(from rev 160785, thunderbird/trunk/vendor.js)
  thunderbird/repos/extra-x86_64/PKGBUILD
(from rev 160785, thunderbird/trunk/PKGBUILD)
  thunderbird/repos/extra-x86_64/mozconfig
(from rev 160785, thunderbird/trunk/mozconfig)
  thunderbird/repos/extra-x86_64/thunderbird-install-dir.patch
(from rev 160785, thunderbird/trunk/thunderbird-install-dir.patch)
  thunderbird/repos/extra-x86_64/thunderbird.desktop
(from rev 160785, thunderbird/trunk/thunderbird.desktop)
  thunderbird/repos/extra-x86_64/thunderbird.install
(from rev 160785, thunderbird/trunk/thunderbird.install)
  thunderbird/repos/extra-x86_64/vendor.js
(from rev 160785, thunderbird/trunk/vendor.js)
Deleted:
  thunderbird/repos/extra-i686/PKGBUILD
  thunderbird/repos/extra-i686/clrf.patch
  thunderbird/repos/extra-i686/gcc47.patch
  thunderbird/repos/extra-i686/mozconfig
  thunderbird/repos/extra-i686/thunderbird-install-dir.patch
  thunderbird/repos/extra-i686/thunderbird.desktop
  thunderbird/repos/extra-i686/thunderbird.install
  thunderbird/repos/extra-i686/vendor.js
  thunderbird/repos/extra-x86_64/PKGBUILD
  thunderbird/repos/extra-x86_64/clrf.patch
  thunderbird/repos/extra-x86_64/gcc47.patch
  thunderbird/repos/extra-x86_64/mozconfig
  thunderbird/repos/extra-x86_64/thunderbird-install-dir.patch
  thunderbird/repos/extra-x86_64/thunderbird.desktop
  thunderbird/repos/extra-x86_64/thunderbird.install
  thunderbird/repos/extra-x86_64/vendor.js

+
 extra-i686/PKGBUILD|  129 ++---
 extra-i686/clrf.patch  |  265 ---
 extra-i686/gcc47.patch |   39 ---
 extra-i686/mozconfig   |   80 
 extra-i686/thunderbird-install-dir.patch   |   84 
 extra-i686/thunderbird.desktop |   26 +-
 extra-i686/thunderbird.install |   24 +-
 extra-i686/vendor.js   |   18 -
 extra-x86_64/PKGBUILD  |  129 ++---
 extra-x86_64/clrf.patch|  265 ---
 extra-x86_64/gcc47.patch   |   39 ---
 extra-x86_64/mozconfig |   80 
 extra-x86_64/thunderbird-install-dir.patch |   84 
 extra-x86_64/thunderbird.desktop   |   26 +-
 extra-x86_64/thunderbird.install   |   24 +-
 extra-x86_64/vendor.js |   18 -
 16 files changed, 356 insertions(+), 974 deletions(-)

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


[arch-commits] Commit in (4 files)

2012-06-05 Thread Guillaume Alaux
Date: Tuesday, June 5, 2012 @ 16:13:38
  Author: guillaume
Revision: 160787

Created package java-resolver

Added:
  java-resolver/
  java-resolver/repos/
  java-resolver/trunk/
  java-resolver/trunk/PKGBUILD

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

Added: java-resolver/trunk/PKGBUILD
===
--- java-resolver/trunk/PKGBUILD(rev 0)
+++ java-resolver/trunk/PKGBUILD2012-06-05 20:13:38 UTC (rev 160787)
@@ -0,0 +1,34 @@
+# Maintainer: Guillaume ALAUX 
+_libname=xml-commons-resolver
+pkgname=java-resolver
+pkgver=1.2
+pkgrel=1
+pkgdesc="XML entity and URI resolver library"
+arch=('any')
+url="http://xml.apache.org/commons/components/resolver/";
+license=('APACHE')
+depends=('java-runtime-headless')
+makedepends=('apache-ant')
+checkdepends=('apache-ant')
+source=(http://archive.apache.org/dist/xml/commons/${_libname}-${pkgver}.tar.gz)
+md5sums=('46d52acdb67ba60f0156043f30108766')
+
+build() {
+  cd "${srcdir}/${_libname}-${pkgver}"
+  ant \
+-f resolver.xml \
+jar
+}
+
+check() {
+  cd "${srcdir}/${_libname}-${pkgver}"
+  ant \
+-f resolver.xml \
+check
+}
+
+package() {
+  cd "${srcdir}/${_libname}-${pkgver}/build"
+  install -Dm644 resolver.jar ${pkgdir}/usr/share/java/resolver-${pkgver}.jar
+  ln -s resolver-${pkgver}.jar ${pkgdir}/usr/share/java/resolver.jar
+}


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


[arch-commits] Commit in java-resolver/repos (extra-any extra-any/PKGBUILD)

2012-06-05 Thread Guillaume Alaux
Date: Tuesday, June 5, 2012 @ 16:14:49
  Author: guillaume
Revision: 160788

archrelease: copy trunk to extra-any

Added:
  java-resolver/repos/extra-any/
  java-resolver/repos/extra-any/PKGBUILD
(from rev 160787, java-resolver/trunk/PKGBUILD)

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

Copied: java-resolver/repos/extra-any/PKGBUILD (from rev 160787, 
java-resolver/trunk/PKGBUILD)
===
--- extra-any/PKGBUILD  (rev 0)
+++ extra-any/PKGBUILD  2012-06-05 20:14:49 UTC (rev 160788)
@@ -0,0 +1,34 @@
+# Maintainer: Guillaume ALAUX 
+_libname=xml-commons-resolver
+pkgname=java-resolver
+pkgver=1.2
+pkgrel=1
+pkgdesc="XML entity and URI resolver library"
+arch=('any')
+url="http://xml.apache.org/commons/components/resolver/";
+license=('APACHE')
+depends=('java-runtime-headless')
+makedepends=('apache-ant')
+checkdepends=('apache-ant')
+source=(http://archive.apache.org/dist/xml/commons/${_libname}-${pkgver}.tar.gz)
+md5sums=('46d52acdb67ba60f0156043f30108766')
+
+build() {
+  cd "${srcdir}/${_libname}-${pkgver}"
+  ant \
+-f resolver.xml \
+jar
+}
+
+check() {
+  cd "${srcdir}/${_libname}-${pkgver}"
+  ant \
+-f resolver.xml \
+check
+}
+
+package() {
+  cd "${srcdir}/${_libname}-${pkgver}/build"
+  install -Dm644 resolver.jar ${pkgdir}/usr/share/java/resolver-${pkgver}.jar
+  ln -s resolver-${pkgver}.jar ${pkgdir}/usr/share/java/resolver.jar
+}




[arch-commits] Commit in dovecot/trunk (PKGBUILD dovecot.tmpfilesd)

2012-06-05 Thread andyrtr
Date: Tuesday, June 5, 2012 @ 16:24:10
  Author: andyrtr
Revision: 160789

upgpkg: dovecot 2.1.7-2

add systemd support; FS#22601

Added:
  dovecot/trunk/dovecot.tmpfilesd
Modified:
  dovecot/trunk/PKGBUILD

---+
 PKGBUILD  |   14 +++---
 dovecot.tmpfilesd |1 +
 2 files changed, 12 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-06-05 20:14:49 UTC (rev 160788)
+++ PKGBUILD2012-06-05 20:24:10 UTC (rev 160789)
@@ -6,7 +6,7 @@
 
 pkgname=dovecot
 pkgver=2.1.7
-pkgrel=1
+pkgrel=2
 pkgdesc="An IMAP and POP3 server written with security primarily in mind"
 arch=('i686' 'x86_64')
 url="http://dovecot.org/";
@@ -19,10 +19,13 @@
 provides=('imap-server' 'pop3-server')
 options=('!libtool')
 install=$pkgname.install
-source=(http://dovecot.org/releases/2.1/${pkgname}-${pkgver}.tar.gz{,.sig} 
dovecot.sh)
+source=(http://dovecot.org/releases/2.1/${pkgname}-${pkgver}.tar.gz{,.sig}
+dovecot.sh
+dovecot.tmpfilesd)
 md5sums=('b52d0faf1b9ec21bc5552691fe0ff1d1'
  '391cd5f98442ef446916c0f3b671d3f7'
- '587159e84e2da6f83d70b3c706ba87cc')
+ '587159e84e2da6f83d70b3c706ba87cc'
+ 'f40857555bd65add2e86c89fe3242357')
 
 build() {
   cd ${srcdir}/$pkgname-$pkgver
@@ -30,6 +33,7 @@
   # configure with openssl, mysql, and postgresql support
   ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
--libexecdir=/usr/lib  --with-moduledir=/usr/lib/dovecot/modules \
+   --with-systemdsystemunitdir=/usr/lib/systemd/system \
--disable-static \
--with-nss \
--with-pam \
@@ -64,4 +68,8 @@
   install -m 755  ${srcdir}/$pkgname-$pkgver/doc/mkcert.sh 
${pkgdir}/usr/lib/dovecot/mkcert.sh
 
   rm ${pkgdir}/etc/dovecot/README
+  
+  # systemd tmpfile
+  install -d -m755 ${pkgdir}/etc/tmpfiles.d
+  install -m 644  ${srcdir}/dovecot.tmpfilesd 
${pkgdir}/etc/tmpfiles.d/dovecot.conf
 }

Added: dovecot.tmpfilesd
===
--- dovecot.tmpfilesd   (rev 0)
+++ dovecot.tmpfilesd   2012-06-05 20:24:10 UTC (rev 160789)
@@ -0,0 +1 @@
+d /var/run/dovecot 0755 root dovecot -



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

2012-06-05 Thread andyrtr
Date: Tuesday, June 5, 2012 @ 16:25:07
  Author: andyrtr
Revision: 160790

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

Added:
  dovecot/repos/extra-i686/PKGBUILD
(from rev 160789, dovecot/trunk/PKGBUILD)
  dovecot/repos/extra-i686/dovecot.install
(from rev 160789, dovecot/trunk/dovecot.install)
  dovecot/repos/extra-i686/dovecot.sh
(from rev 160789, dovecot/trunk/dovecot.sh)
  dovecot/repos/extra-i686/dovecot.tmpfilesd
(from rev 160789, dovecot/trunk/dovecot.tmpfilesd)
  dovecot/repos/extra-x86_64/PKGBUILD
(from rev 160789, dovecot/trunk/PKGBUILD)
  dovecot/repos/extra-x86_64/dovecot.install
(from rev 160789, dovecot/trunk/dovecot.install)
  dovecot/repos/extra-x86_64/dovecot.sh
(from rev 160789, dovecot/trunk/dovecot.sh)
  dovecot/repos/extra-x86_64/dovecot.tmpfilesd
(from rev 160789, dovecot/trunk/dovecot.tmpfilesd)
Deleted:
  dovecot/repos/extra-i686/PKGBUILD
  dovecot/repos/extra-i686/dovecot.install
  dovecot/repos/extra-i686/dovecot.sh
  dovecot/repos/extra-x86_64/PKGBUILD
  dovecot/repos/extra-x86_64/dovecot.install
  dovecot/repos/extra-x86_64/dovecot.sh

+
 extra-i686/PKGBUILD|  142 ---
 extra-i686/dovecot.install |  116 +++
 extra-i686/dovecot.sh  |  138 ++---
 extra-i686/dovecot.tmpfilesd   |1 
 extra-x86_64/PKGBUILD  |  142 ---
 extra-x86_64/dovecot.install   |  116 +++
 extra-x86_64/dovecot.sh|  138 ++---
 extra-x86_64/dovecot.tmpfilesd |1 
 8 files changed, 406 insertions(+), 388 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-06-05 20:24:10 UTC (rev 160789)
+++ extra-i686/PKGBUILD 2012-06-05 20:25:07 UTC (rev 160790)
@@ -1,67 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke 
-# Contributor: Paul Mattal 
-# Contributor: Federico Quagliata (quaqo) 
-# Contributor: GARETTE Emmanuel 
-
-pkgname=dovecot
-pkgver=2.1.7
-pkgrel=1
-pkgdesc="An IMAP and POP3 server written with security primarily in mind"
-arch=('i686' 'x86_64')
-url="http://dovecot.org/";
-license=("LGPL")
-depends=('krb5' 'openssl' 'sqlite>=3.7.5' 'libmysqlclient>=5.5.10'
-'postgresql-libs>=9.0.3' 'bzip2' 'expat' 'curl')
-makedepends=('pam>=1.1.1' 'libcap>=2.19' 'libldap>=2.4.22' 'clucene')
-optdepends=('libldap: ldap plugin'
-   'clucene: alternative FTS indexer')
-provides=('imap-server' 'pop3-server')
-options=('!libtool')
-install=$pkgname.install
-source=(http://dovecot.org/releases/2.1/${pkgname}-${pkgver}.tar.gz{,.sig} 
dovecot.sh)
-md5sums=('b52d0faf1b9ec21bc5552691fe0ff1d1'
- '391cd5f98442ef446916c0f3b671d3f7'
- '587159e84e2da6f83d70b3c706ba87cc')
-
-build() {
-  cd ${srcdir}/$pkgname-$pkgver
-
-  # configure with openssl, mysql, and postgresql support
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-   --libexecdir=/usr/lib  --with-moduledir=/usr/lib/dovecot/modules \
-   --disable-static \
-   --with-nss \
-   --with-pam \
-   --with-mysql \
-   --with-pgsql \
-   --with-sqlite \
-   --with-ssl=openssl --with-ssldir=/etc/dovecot/ssl \
-   --with-gssapi \
-   --with-ldap=plugin \
-   --with-zlib --with-bzlib \
-   --with-libcap \
-   --with-solr \
-   --with-lucene \
-   --with-docs
-  make
-}
-
-package() {
-  cd ${srcdir}/$pkgname-$pkgver
-  make DESTDIR=${pkgdir} install
-
-  # install the launch script
-  install -D -m755 ${srcdir}/$pkgname.sh ${pkgdir}/etc/rc.d/$pkgname
-
-  # install example conf files and ssl.conf
-  install -d -m755 ${pkgdir}/etc/dovecot/conf.d
-  install -m 644 ${pkgdir}/usr/share/doc/dovecot/example-config/dovecot.conf 
${pkgdir}/etc/dovecot/dovecot.conf.sample
-  install -d -m755 ${pkgdir}/etc/ssl
-  install -m 644  ${srcdir}/$pkgname-$pkgver/doc/dovecot-openssl.cnf 
${pkgdir}/etc/ssl/dovecot-openssl.cnf.sample
-
-  # install mkcert helper script
-  install -m 755  ${srcdir}/$pkgname-$pkgver/doc/mkcert.sh 
${pkgdir}/usr/lib/dovecot/mkcert.sh
-
-  rm ${pkgdir}/etc/dovecot/README
-}

Copied: dovecot/repos/extra-i686/PKGBUILD (from rev 160789, 
dovecot/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-06-05 20:25:07 UTC (rev 160790)
@@ -0,0 +1,75 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Contributor: Paul Mattal 
+# Contributor: Federico Quagliata (quaqo) 
+# Contributor: GARETTE Emmanuel 
+
+pkgname=dovecot
+pkgver=2.1.7
+pkgrel=2
+pkgdesc="An IMAP and POP3 server written with security primarily in mind"
+arch=('i686' 'x86_64')
+url="http://dovecot.org/";
+license=("LGPL")
+depends=('krb5' 'openssl' 'sqlite>=3.7.5' 'libmysqlclient>=5.5.10'
+'postgresql-libs>=9.0

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

2012-06-05 Thread andyrtr
Date: Tuesday, June 5, 2012 @ 16:46:59
  Author: andyrtr
Revision: 160791

upgpkg: gnutls 3.0.20-1

upstream update 3.0.20

Modified:
  gnutls/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-06-05 20:25:07 UTC (rev 160790)
+++ PKGBUILD2012-06-05 20:46:59 UTC (rev 160791)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=gnutls
-pkgver=3.0.19
+pkgver=3.0.20
 pkgrel=1
 pkgdesc="A library which provides a secure layer over a reliable transport 
layer"
 arch=('i686' 'x86_64')
@@ -13,8 +13,8 @@
 depends=('gcc-libs' 'libtasn1' 'readline' 'zlib' 'nettle>=2.4' 'p11-kit>=0.12')
 makedepends=('valgrind' 'strace')
 source=(ftp://ftp.gnu.org/gnu/gnutls/${pkgname}-${pkgver}.tar.xz{,.sig})
-md5sums=('05e85d18955edd5c0fe40fbb7ef168bd'
- '52c7b7ecf7032322321bf667d86eb084')
+md5sums=('1e9322764f4531b00b4a46a5d634695e'
+ 'efc0ac29d46219aa75f08f57ba679776')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"



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

2012-06-05 Thread andyrtr
Date: Tuesday, June 5, 2012 @ 16:47:36
  Author: andyrtr
Revision: 160792

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

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

-+
 extra-i686/PKGBUILD |   84 +-
 extra-i686/gnutls.install   |   40 ++--
 extra-x86_64/PKGBUILD   |   84 +-
 extra-x86_64/gnutls.install |   40 ++--
 4 files changed, 124 insertions(+), 124 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-06-05 20:46:59 UTC (rev 160791)
+++ extra-i686/PKGBUILD 2012-06-05 20:47:36 UTC (rev 160792)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=gnutls
-pkgver=3.0.19
-pkgrel=1
-pkgdesc="A library which provides a secure layer over a reliable transport 
layer"
-arch=('i686' 'x86_64')
-license=('GPL3' 'LGPL')
-url="http://www.gnu.org/software/gnutls/";
-install=gnutls.install
-options=('!libtool' '!zipman')
-depends=('gcc-libs' 'libtasn1' 'readline' 'zlib' 'nettle>=2.4' 'p11-kit>=0.12')
-makedepends=('valgrind' 'strace')
-source=(ftp://ftp.gnu.org/gnu/gnutls/${pkgname}-${pkgver}.tar.xz{,.sig})
-md5sums=('05e85d18955edd5c0fe40fbb7ef168bd'
- '52c7b7ecf7032322321bf667d86eb084')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr \
-   --with-zlib \
-   --disable-static \
-   --disable-guile \
-   --disable-valgrind-tests
-  make
-}
-
-check() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make -k check # passes all  || /bin/true
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  
-  # lots of .png files are put into infodir and are gzipped by makepkg! this 
may need to be fixed by using !zipman
-  # gzip -9 all files in infodir and manpages manually
-  find "$pkgdir/usr/share/info" -name '*.info*' -exec gzip -9 {} \;
-  find "$pkgdir/usr/share/man" -exec gzip -9 {} \;
-}

Copied: gnutls/repos/extra-i686/PKGBUILD (from rev 160791, 
gnutls/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-06-05 20:47:36 UTC (rev 160792)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=gnutls
+pkgver=3.0.20
+pkgrel=1
+pkgdesc="A library which provides a secure layer over a reliable transport 
layer"
+arch=('i686' 'x86_64')
+license=('GPL3' 'LGPL')
+url="http://www.gnu.org/software/gnutls/";
+install=gnutls.install
+options=('!libtool' '!zipman')
+depends=('gcc-libs' 'libtasn1' 'readline' 'zlib' 'nettle>=2.4' 'p11-kit>=0.12')
+makedepends=('valgrind' 'strace')
+source=(ftp://ftp.gnu.org/gnu/gnutls/${pkgname}-${pkgver}.tar.xz{,.sig})
+md5sums=('1e9322764f4531b00b4a46a5d634695e'
+ 'efc0ac29d46219aa75f08f57ba679776')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr \
+   --with-zlib \
+   --disable-static \
+   --disable-guile \
+   --disable-valgrind-tests
+  make
+}
+
+check() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make -k check # passes all  || /bin/true
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  
+  # lots of .png files are put into infodir and are gzipped by makepkg! this 
may need to be fixed by using !zipman
+  # gzip -9 all files in infodir and manpages manually
+  find "$pkgdir/usr/share/info" -name '*.info*' -exec gzip -9 {} \;
+  find "$pkgdir/usr/share/man" -exec gzip -9 {} \;
+}

Deleted: extra-i686/gnutls.install
===
--- extra-i686/gnutls.install   2012-06-05 20:46:59 UTC (rev 160791)
+++ extra-i686/gnutls.install   2012-06-05 20:47:36 UTC (rev 160792)
@@ -1,20 +0,0 @@
-infodir=usr/share/info
-filelist=(gnutls.info-1.gz gnutls.info-2.gz gnutls.info-3.gz gnutls.info-4.gz 
gnutls.info.gz)
-
-post_install() {
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-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
-install-info --delete $infodir/$file $infodir/dir 2> /dev/null
-  done
-}

Copied: gnutls/repos/extra-i686/gnutls.install (from rev 160791, 
gnutls/trunk/gnutls.install)

[arch-commits] Commit in gnome-session/repos (7 files)

2012-06-05 Thread Jan Steffens
Date: Tuesday, June 5, 2012 @ 19:43:38
  Author: heftig
Revision: 160793

db-move: moved gnome-session from [testing] to [extra] (i686)

Added:
  gnome-session/repos/extra-i686/PKGBUILD
(from rev 160792, gnome-session/repos/testing-i686/PKGBUILD)
  gnome-session/repos/extra-i686/gnome-session-3.3.1-llvmpipe.patch
(from rev 160792, 
gnome-session/repos/testing-i686/gnome-session-3.3.1-llvmpipe.patch)
  gnome-session/repos/extra-i686/gnome-session.install
(from rev 160792, gnome-session/repos/testing-i686/gnome-session.install)
  gnome-session/repos/extra-i686/timeout.patch
(from rev 160792, gnome-session/repos/testing-i686/timeout.patch)
Deleted:
  gnome-session/repos/extra-i686/PKGBUILD
  gnome-session/repos/extra-i686/gnome-session.install
  gnome-session/repos/testing-i686/

+
 PKGBUILD   |   74 +++
 gnome-session-3.3.1-llvmpipe.patch |9 
 gnome-session.install  |   24 +--
 timeout.patch  |   12 +
 4 files changed, 75 insertions(+), 44 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-06-05 20:47:36 UTC (rev 160792)
+++ extra-i686/PKGBUILD 2012-06-05 23:43:38 UTC (rev 160793)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=gnome-session
-pkgver=3.4.2
-pkgrel=1
-pkgdesc="The GNOME Session Handler"
-arch=(i686 x86_64)
-license=('GPL' 'LGPL')
-depends=('libsystemd' 'consolekit' 'dconf' 'gconf' 'gsettings-desktop-schemas' 
'gtk3'
- 'hicolor-icon-theme' 'json-glib' 'libgl' 'libsm' 'libxtst' 
'polkit-gnome'
- 'startup-notification' 'upower')
-makedepends=('intltool' 'mesa' 'xtrans')
-options=('!emptydirs')
-install=gnome-session.install
-url="http://www.gnome.org";
-groups=('gnome')
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('6c2cbc86b63bb4869f4f95e7771ec6eee0c02965b732d634de5c8122607c4356')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --libexecdir=/usr/lib/gnome-session \
-  --disable-schemas-compile --enable-systemd
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: gnome-session/repos/extra-i686/PKGBUILD (from rev 160792, 
gnome-session/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-06-05 23:43:38 UTC (rev 160793)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=gnome-session
+pkgver=3.4.2
+pkgrel=2
+pkgdesc="The GNOME Session Handler"
+arch=(i686 x86_64)
+license=('GPL' 'LGPL')
+depends=('libsystemd' 'consolekit' 'dconf' 'gconf' 'gsettings-desktop-schemas' 
'gtk3'
+ 'hicolor-icon-theme' 'json-glib' 'libgl' 'libsm' 'libxtst' 
'polkit-gnome'
+ 'startup-notification' 'upower')
+makedepends=('intltool' 'mesa' 'xtrans')
+options=('!emptydirs')
+install=gnome-session.install
+url="http://www.gnome.org";
+groups=('gnome')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz
+gnome-session-3.3.1-llvmpipe.patch timeout.patch)
+sha256sums=('6c2cbc86b63bb4869f4f95e7771ec6eee0c02965b732d634de5c8122607c4356'
+'59ea58012febe48a67dabd944dc638400637ad4d296d63b63b585f10eea4f85e'
+'1942c8144711cf4bc0e776edd366579849e266a446b48cca0205d7ab82241782')
+
+build() {
+  cd $pkgname-$pkgver
+
+  # Allow software rendering
+  patch -Np1 -i ../gnome-session-3.3.1-llvmpipe.patch
+
+  # Increase timeout, for slow machines
+  patch -Np1 -i ../timeout.patch
+
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --libexecdir=/usr/lib/gnome-session \
+  --disable-schemas-compile --enable-systemd
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Copied: gnome-session/repos/extra-i686/gnome-session-3.3.1-llvmpipe.patch (from 
rev 160792, gnome-session/repos/testing-i686/gnome-session-3.3.1-llvmpipe.patch)
===
--- extra-i686/gnome-session-3.3.1-llvmpipe.patch   
(rev 0)
+++ extra-i686/gnome-session-3.3.1-llvmpipe.patch   2012-06-05 23:43:38 UTC 
(rev 160793)
@@ -0,0 +1,9 @@
+diff -up gnome-session-3.3.1/data/hardware-compatibility.jx 
gnome-session-3.3.1/data/hardware-compatibility
+--- gnome-session-3.3.1/data/hardware-compatibility.jx 2011-10-21 
10:35:39.0 -0400
 gnome-session-3.3.1/data/hardware-compatibility2011-11-03 
17:53:17.156407217 -0400
+@@ -20,4 +20,4 @@
+ 
+ # Gallium has softpipe and llvmpipe
+ -softpipe
+--llvmpipe
++#llvmpipe

Deleted: extra-i686/gnome-session.install
=

[arch-commits] Commit in gnome-session/repos (7 files)

2012-06-05 Thread Jan Steffens
Date: Tuesday, June 5, 2012 @ 19:43:39
  Author: heftig
Revision: 160794

db-move: moved gnome-session from [testing] to [extra] (x86_64)

Added:
  gnome-session/repos/extra-x86_64/PKGBUILD
(from rev 160792, gnome-session/repos/testing-x86_64/PKGBUILD)
  gnome-session/repos/extra-x86_64/gnome-session-3.3.1-llvmpipe.patch
(from rev 160792, 
gnome-session/repos/testing-x86_64/gnome-session-3.3.1-llvmpipe.patch)
  gnome-session/repos/extra-x86_64/gnome-session.install
(from rev 160792, gnome-session/repos/testing-x86_64/gnome-session.install)
  gnome-session/repos/extra-x86_64/timeout.patch
(from rev 160792, gnome-session/repos/testing-x86_64/timeout.patch)
Deleted:
  gnome-session/repos/extra-x86_64/PKGBUILD
  gnome-session/repos/extra-x86_64/gnome-session.install
  gnome-session/repos/testing-x86_64/

+
 PKGBUILD   |   74 +++
 gnome-session-3.3.1-llvmpipe.patch |9 
 gnome-session.install  |   24 +--
 timeout.patch  |   12 +
 4 files changed, 75 insertions(+), 44 deletions(-)

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-06-05 23:43:38 UTC (rev 160793)
+++ extra-x86_64/PKGBUILD   2012-06-05 23:43:39 UTC (rev 160794)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=gnome-session
-pkgver=3.4.2
-pkgrel=1
-pkgdesc="The GNOME Session Handler"
-arch=(i686 x86_64)
-license=('GPL' 'LGPL')
-depends=('libsystemd' 'consolekit' 'dconf' 'gconf' 'gsettings-desktop-schemas' 
'gtk3'
- 'hicolor-icon-theme' 'json-glib' 'libgl' 'libsm' 'libxtst' 
'polkit-gnome'
- 'startup-notification' 'upower')
-makedepends=('intltool' 'mesa' 'xtrans')
-options=('!emptydirs')
-install=gnome-session.install
-url="http://www.gnome.org";
-groups=('gnome')
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('6c2cbc86b63bb4869f4f95e7771ec6eee0c02965b732d634de5c8122607c4356')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --libexecdir=/usr/lib/gnome-session \
-  --disable-schemas-compile --enable-systemd
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: gnome-session/repos/extra-x86_64/PKGBUILD (from rev 160792, 
gnome-session/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-06-05 23:43:39 UTC (rev 160794)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=gnome-session
+pkgver=3.4.2
+pkgrel=2
+pkgdesc="The GNOME Session Handler"
+arch=(i686 x86_64)
+license=('GPL' 'LGPL')
+depends=('libsystemd' 'consolekit' 'dconf' 'gconf' 'gsettings-desktop-schemas' 
'gtk3'
+ 'hicolor-icon-theme' 'json-glib' 'libgl' 'libsm' 'libxtst' 
'polkit-gnome'
+ 'startup-notification' 'upower')
+makedepends=('intltool' 'mesa' 'xtrans')
+options=('!emptydirs')
+install=gnome-session.install
+url="http://www.gnome.org";
+groups=('gnome')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz
+gnome-session-3.3.1-llvmpipe.patch timeout.patch)
+sha256sums=('6c2cbc86b63bb4869f4f95e7771ec6eee0c02965b732d634de5c8122607c4356'
+'59ea58012febe48a67dabd944dc638400637ad4d296d63b63b585f10eea4f85e'
+'1942c8144711cf4bc0e776edd366579849e266a446b48cca0205d7ab82241782')
+
+build() {
+  cd $pkgname-$pkgver
+
+  # Allow software rendering
+  patch -Np1 -i ../gnome-session-3.3.1-llvmpipe.patch
+
+  # Increase timeout, for slow machines
+  patch -Np1 -i ../timeout.patch
+
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --libexecdir=/usr/lib/gnome-session \
+  --disable-schemas-compile --enable-systemd
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Copied: gnome-session/repos/extra-x86_64/gnome-session-3.3.1-llvmpipe.patch 
(from rev 160792, 
gnome-session/repos/testing-x86_64/gnome-session-3.3.1-llvmpipe.patch)
===
--- extra-x86_64/gnome-session-3.3.1-llvmpipe.patch 
(rev 0)
+++ extra-x86_64/gnome-session-3.3.1-llvmpipe.patch 2012-06-05 23:43:39 UTC 
(rev 160794)
@@ -0,0 +1,9 @@
+diff -up gnome-session-3.3.1/data/hardware-compatibility.jx 
gnome-session-3.3.1/data/hardware-compatibility
+--- gnome-session-3.3.1/data/hardware-compatibility.jx 2011-10-21 
10:35:39.0 -0400
 gnome-session-3.3.1/data/hardware-compatibility2011-11-03 
17:53:17.156407217 -0400
+@@ -20,4 +20,4 @@
+ 
+ # Gallium has softpipe and llvmpipe
+ -softpipe
+--llvmpipe
++#llvmpipe

Deleted: extra-x86_64/gnome-

[arch-commits] Commit in bison/trunk (PKGBUILD bison-2.5-undefined-reference.patch)

2012-06-05 Thread Allan McRae
Date: Tuesday, June 5, 2012 @ 22:46:16
  Author: allan
Revision: 160795

upgpkg: bison 2.5.1-1

upstream update

Modified:
  bison/trunk/PKGBUILD
Deleted:
  bison/trunk/bison-2.5-undefined-reference.patch

-+
 PKGBUILD|   18 ++
 bison-2.5-undefined-reference.patch |   11 ---
 2 files changed, 6 insertions(+), 23 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-06-05 23:43:39 UTC (rev 160794)
+++ PKGBUILD2012-06-06 02:46:16 UTC (rev 160795)
@@ -3,8 +3,8 @@
 # Contributor: Eric Belanger 
 
 pkgname=bison
-pkgver=2.5
-pkgrel=3
+pkgver=2.5.1
+pkgrel=1
 pkgdesc="The GNU general-purpose parser generator"
 arch=('i686' 'x86_64')
 license=('GPL3')
@@ -12,18 +12,12 @@
 depends=('glibc' 'm4' 'sh')
 groups=('base-devel')
 install=bison.install
-source=(ftp://ftp.gnu.org/gnu/bison/${pkgname}-${pkgver}.tar.bz2{,.sig}
-bison-2.5-undefined-reference.patch)
-md5sums=('9dba20116b13fc61a0846b0058fbe004'
- '610b73db67bd4760209458efe7554ca3'
- '2015c5421b2ad99032154f27bf5c4772')
+source=(ftp://ftp.gnu.org/gnu/bison/${pkgname}-${pkgver}.tar.xz{,.sig})
+md5sums=('012708d801a3c986d8654aa673530b61'
+ '6c7e9276aa8b89879126a611384897a8')
 
 build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  
-  # workaround for FS#26794
-  patch -Np1 -i $srcdir/bison-2.5-undefined-reference.patch
-  
+  cd ${srcdir}/${pkgname}-${pkgver}  
   ./configure --prefix=/usr --datadir=/usr/share
   make
 }

Deleted: bison-2.5-undefined-reference.patch
===
--- bison-2.5-undefined-reference.patch 2012-06-05 23:43:39 UTC (rev 160794)
+++ bison-2.5-undefined-reference.patch 2012-06-06 02:46:16 UTC (rev 160795)
@@ -1,11 +0,0 @@
-diff -Naur bison-2.5-orig/lib/yyerror.c bison-2.5/lib/yyerror.c
 bison-2.5-orig/lib/yyerror.c   2011-01-04 00:50:42.0 +1000
-+++ bison-2.5/lib/yyerror.c2011-11-09 22:01:48.725507079 +1000
-@@ -18,6 +18,7 @@
-along with this program.  If not, see .  */
- 
- #include 
-+#undef fprintf
- 
- int yyerror (char const *);
- 



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

2012-06-05 Thread Allan McRae
Date: Tuesday, June 5, 2012 @ 22:47:05
  Author: allan
Revision: 160796

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

Added:
  bison/repos/testing-i686/
  bison/repos/testing-i686/PKGBUILD
(from rev 160795, bison/trunk/PKGBUILD)
  bison/repos/testing-i686/bison.install
(from rev 160795, bison/trunk/bison.install)
  bison/repos/testing-x86_64/
  bison/repos/testing-x86_64/PKGBUILD
(from rev 160795, bison/trunk/PKGBUILD)
  bison/repos/testing-x86_64/bison.install
(from rev 160795, bison/trunk/bison.install)

--+
 testing-i686/PKGBUILD|   33 +
 testing-i686/bison.install   |   16 
 testing-x86_64/PKGBUILD  |   33 +
 testing-x86_64/bison.install |   16 
 4 files changed, 98 insertions(+)

Copied: bison/repos/testing-i686/PKGBUILD (from rev 160795, 
bison/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-06-06 02:47:05 UTC (rev 160796)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Allan McRae 
+# Contributor: Eric Belanger 
+
+pkgname=bison
+pkgver=2.5.1
+pkgrel=1
+pkgdesc="The GNU general-purpose parser generator"
+arch=('i686' 'x86_64')
+license=('GPL3')
+url="http://www.gnu.org/software/bison/bison.html";
+depends=('glibc' 'm4' 'sh')
+groups=('base-devel')
+install=bison.install
+source=(ftp://ftp.gnu.org/gnu/bison/${pkgname}-${pkgver}.tar.xz{,.sig})
+md5sums=('012708d801a3c986d8654aa673530b61'
+ '6c7e9276aa8b89879126a611384897a8')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}  
+  ./configure --prefix=/usr --datadir=/usr/share
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: bison/repos/testing-i686/bison.install (from rev 160795, 
bison/trunk/bison.install)
===
--- testing-i686/bison.install  (rev 0)
+++ testing-i686/bison.install  2012-06-06 02:47:05 UTC (rev 160796)
@@ -0,0 +1,16 @@
+infodir=usr/share/info
+file=bison.info.gz
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  install-info $infodir/$file $infodir/dir 2> /dev/null
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  install-info --delete $infodir/$file $infodir/dir 2> /dev/null
+}

Copied: bison/repos/testing-x86_64/PKGBUILD (from rev 160795, 
bison/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2012-06-06 02:47:05 UTC (rev 160796)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Allan McRae 
+# Contributor: Eric Belanger 
+
+pkgname=bison
+pkgver=2.5.1
+pkgrel=1
+pkgdesc="The GNU general-purpose parser generator"
+arch=('i686' 'x86_64')
+license=('GPL3')
+url="http://www.gnu.org/software/bison/bison.html";
+depends=('glibc' 'm4' 'sh')
+groups=('base-devel')
+install=bison.install
+source=(ftp://ftp.gnu.org/gnu/bison/${pkgname}-${pkgver}.tar.xz{,.sig})
+md5sums=('012708d801a3c986d8654aa673530b61'
+ '6c7e9276aa8b89879126a611384897a8')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}  
+  ./configure --prefix=/usr --datadir=/usr/share
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: bison/repos/testing-x86_64/bison.install (from rev 160795, 
bison/trunk/bison.install)
===
--- testing-x86_64/bison.install(rev 0)
+++ testing-x86_64/bison.install2012-06-06 02:47:05 UTC (rev 160796)
@@ -0,0 +1,16 @@
+infodir=usr/share/info
+file=bison.info.gz
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  install-info $infodir/$file $infodir/dir 2> /dev/null
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  install-info --delete $infodir/$file $infodir/dir 2> /dev/null
+}