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

2013-01-21 Thread fyan
Date: Tuesday, January 22, 2013 @ 07:40:39
  Author: fyan
Revision: 82630

upgpkg: mongodb 2.2.2-2

boost 1.52.0 rebuild

Modified:
  mongodb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-22 05:57:07 UTC (rev 82629)
+++ PKGBUILD2013-01-22 06:40:39 UTC (rev 82630)
@@ -7,7 +7,7 @@
 
 pkgname=mongodb
 pkgver=2.2.2
-pkgrel=1
+pkgrel=2
 pkgdesc='A high-performance, open source, schema-free document-oriented 
database'
 arch=('i686' 'x86_64')
 url='http://www.mongodb.org'
@@ -17,7 +17,7 @@
 checkdepends=('python2-pymongo')
 optdepends=('libpcap: needed for mongosniff')
 backup=('etc/mongodb.conf')
-install=mongodb.install
+install=mongodb.install
 source=(http://downloads.mongodb.org/src/mongodb-src-r${pkgver}.tar.gz;
 'mongodb.rc' 'mongodb.conf' 'mongodb.service'
 'SConscript.client.patch' 'boost1.50.patch')



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

2013-01-21 Thread fyan
Date: Tuesday, January 22, 2013 @ 07:43:59
  Author: fyan
Revision: 82631

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

Added:
  mongodb/repos/community-staging-i686/
  mongodb/repos/community-staging-i686/PKGBUILD
(from rev 82630, mongodb/trunk/PKGBUILD)
  mongodb/repos/community-staging-i686/SConscript.client.patch
(from rev 82630, mongodb/trunk/SConscript.client.patch)
  mongodb/repos/community-staging-i686/boost1.50.patch
(from rev 82630, mongodb/trunk/boost1.50.patch)
  mongodb/repos/community-staging-i686/mongodb.conf
(from rev 82630, mongodb/trunk/mongodb.conf)
  mongodb/repos/community-staging-i686/mongodb.install
(from rev 82630, mongodb/trunk/mongodb.install)
  mongodb/repos/community-staging-i686/mongodb.rc
(from rev 82630, mongodb/trunk/mongodb.rc)
  mongodb/repos/community-staging-i686/mongodb.service
(from rev 82630, mongodb/trunk/mongodb.service)
  mongodb/repos/community-staging-x86_64/
  mongodb/repos/community-staging-x86_64/PKGBUILD
(from rev 82630, mongodb/trunk/PKGBUILD)
  mongodb/repos/community-staging-x86_64/SConscript.client.patch
(from rev 82630, mongodb/trunk/SConscript.client.patch)
  mongodb/repos/community-staging-x86_64/boost1.50.patch
(from rev 82630, mongodb/trunk/boost1.50.patch)
  mongodb/repos/community-staging-x86_64/mongodb.conf
(from rev 82630, mongodb/trunk/mongodb.conf)
  mongodb/repos/community-staging-x86_64/mongodb.install
(from rev 82630, mongodb/trunk/mongodb.install)
  mongodb/repos/community-staging-x86_64/mongodb.rc
(from rev 82630, mongodb/trunk/mongodb.rc)
  mongodb/repos/community-staging-x86_64/mongodb.service
(from rev 82630, mongodb/trunk/mongodb.service)

--+
 community-staging-i686/PKGBUILD  |   74 ++
 community-staging-i686/SConscript.client.patch   |   13 +
 community-staging-i686/boost1.50.patch   |  237 +
 community-staging-i686/mongodb.conf  |8 
 community-staging-i686/mongodb.install   |   32 ++
 community-staging-i686/mongodb.rc|   39 +++
 community-staging-i686/mongodb.service   |   10 
 community-staging-x86_64/PKGBUILD|   74 ++
 community-staging-x86_64/SConscript.client.patch |   13 +
 community-staging-x86_64/boost1.50.patch |  237 +
 community-staging-x86_64/mongodb.conf|8 
 community-staging-x86_64/mongodb.install |   32 ++
 community-staging-x86_64/mongodb.rc  |   39 +++
 community-staging-x86_64/mongodb.service |   10 
 14 files changed, 826 insertions(+)

Copied: mongodb/repos/community-staging-i686/PKGBUILD (from rev 82630, 
mongodb/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-01-22 06:43:59 UTC (rev 82631)
@@ -0,0 +1,74 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Thomas Dziedzic  gostrc at gmail 
+# Contributor: Mathias Stearn math...@10gen.com
+# Contributor: Alec Thomas
+
+pkgname=mongodb
+pkgver=2.2.2
+pkgrel=2
+pkgdesc='A high-performance, open source, schema-free document-oriented 
database'
+arch=('i686' 'x86_64')
+url='http://www.mongodb.org'
+license=('AGPL3')
+depends=('boost-libs')
+makedepends=('scons' 'boost' 'libpcap')
+checkdepends=('python2-pymongo')
+optdepends=('libpcap: needed for mongosniff')
+backup=('etc/mongodb.conf')
+install=mongodb.install
+source=(http://downloads.mongodb.org/src/mongodb-src-r${pkgver}.tar.gz;
+'mongodb.rc' 'mongodb.conf' 'mongodb.service'
+'SConscript.client.patch' 'boost1.50.patch')
+
+build() {
+  # fucking mongo aint no fun to package
+  export SCONSFLAGS=$MAKEFLAGS
+
+  cd mongodb-src-r${pkgver}
+
+  # fix https://jira.mongodb.org/browse/SERVER-5575
+  patch -Np1 -i ${srcdir}/SConscript.client.patch
+
+  # fix boost incompatibility
+  patch -Np1 -i ${srcdir}/boost1.50.patch
+
+  scons all --use-system-boost # --sharedclient currently fails
+}
+
+COMMENT
+check() {
+  export SCONSFLAGS=$MAKEFLAGS
+
+  cd mongodb-src-r${pkgver}
+
+  scons smokeAll --smokedbprefix=$srcdir
+}
+COMMENT
+
+package() {
+  export SCONSFLAGS=$MAKEFLAGS
+
+  cd mongodb-src-r${pkgver}
+
+  scons install --use-system-boost --full --prefix=$pkgdir/usr # 
--sharedclient currently fails
+
+  install -Dm755 $srcdir/mongodb.rc $pkgdir/etc/rc.d/mongodb
+  install -Dm644 $srcdir/mongodb.conf $pkgdir/etc/mongodb.conf
+  [[ -f $pkgdir/usr/lib ]]  rm $pkgdir/usr/lib # wtf mongo
+  install -Dm644 $srcdir/mongodb.service 
$pkgdir/usr/lib/systemd/system/mongodb.service
+  install -dm700 $pkgdir/var/lib/mongodb
+  install -dm755 $pkgdir/var/log/mongodb
+
+  # the earlier SConscript patch actually gives us some trouble on x86_64 so 
we need to hack

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

2013-01-21 Thread fyan
Date: Tuesday, January 22, 2013 @ 07:46:25
  Author: fyan
Revision: 82632

upgpkg: librime 0.9.7-2

Modified:
  librime/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-22 06:43:59 UTC (rev 82631)
+++ PKGBUILD2013-01-22 06:46:25 UTC (rev 82632)
@@ -5,7 +5,7 @@
 
 pkgname=librime
 pkgver=0.9.7
-pkgrel=1
+pkgrel=2
 pkgdesc=Rime input method engine
 arch=('i686' 'x86_64')
 url=http://code.google.com/p/rimeime/;



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

2013-01-21 Thread fyan
Date: Tuesday, January 22, 2013 @ 07:48:19
  Author: fyan
Revision: 82633

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

Added:
  librime/repos/community-staging-i686/
  librime/repos/community-staging-i686/PKGBUILD
(from rev 82632, librime/trunk/PKGBUILD)
  librime/repos/community-staging-x86_64/
  librime/repos/community-staging-x86_64/PKGBUILD
(from rev 82632, librime/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   28 
 community-staging-x86_64/PKGBUILD |   28 
 2 files changed, 56 insertions(+)

Copied: librime/repos/community-staging-i686/PKGBUILD (from rev 82632, 
librime/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-01-22 06:48:19 UTC (rev 82633)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: GONG Chen chen dot sst at gmail dot com
+# Contributor: 網軍總司令
+
+pkgname=librime
+pkgver=0.9.7
+pkgrel=2
+pkgdesc=Rime input method engine
+arch=('i686' 'x86_64')
+url=http://code.google.com/p/rimeime/;
+license=('GPL3')
+depends=('boost=1.46' 'google-glog' 'kyotocabinet' 'opencc' 'yaml-cpp')
+optdepends=('brise: Rime schema repository')
+makedepends=('cmake')
+source=(http://rimeime.googlecode.com/files/$pkgname-$pkgver.tar.gz;)
+
+build() {
+  cd ${srcdir}/$pkgname
+  make
+}
+
+package() {
+  cd ${srcdir}/$pkgname
+  make DESTDIR=$pkgdir install
+}
+
+md5sums=('732fe5258ab4fced26e61475cdcffdb1')

Copied: librime/repos/community-staging-x86_64/PKGBUILD (from rev 82632, 
librime/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2013-01-22 06:48:19 UTC (rev 82633)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: GONG Chen chen dot sst at gmail dot com
+# Contributor: 網軍總司令
+
+pkgname=librime
+pkgver=0.9.7
+pkgrel=2
+pkgdesc=Rime input method engine
+arch=('i686' 'x86_64')
+url=http://code.google.com/p/rimeime/;
+license=('GPL3')
+depends=('boost=1.46' 'google-glog' 'kyotocabinet' 'opencc' 'yaml-cpp')
+optdepends=('brise: Rime schema repository')
+makedepends=('cmake')
+source=(http://rimeime.googlecode.com/files/$pkgname-$pkgver.tar.gz;)
+
+build() {
+  cd ${srcdir}/$pkgname
+  make
+}
+
+package() {
+  cd ${srcdir}/$pkgname
+  make DESTDIR=$pkgdir install
+}
+
+md5sums=('732fe5258ab4fced26e61475cdcffdb1')



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

2013-01-21 Thread fyan
Date: Tuesday, January 22, 2013 @ 08:03:48
  Author: fyan
Revision: 82634

upgpkg: stunnel 4.54-1

Modified:
  stunnel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-01-22 06:48:19 UTC (rev 82633)
+++ PKGBUILD2013-01-22 07:03:48 UTC (rev 82634)
@@ -4,8 +4,8 @@
 # Contributor: Kevin Piche ke...@archlinux.org
 
 pkgname=stunnel
-pkgver=4.53
-pkgrel=2
+pkgver=4.54
+pkgrel=1
 pkgdesc=A program that allows you to encrypt arbitrary TCP connections inside 
SSL
 arch=('i686' 'x86_64')
 url=http://www.stunnel.org;
@@ -18,8 +18,8 @@
 'stunnel.rc.d'
 'stunnel.tmpfiles.conf')
 
-md5sums=('ab3bfc915357d67da18c73f73610d593'
- 'ea8d7637e072fa1bb8706c85e6ea0152'
+md5sums=('c2b1db99e3ed547214568959a8ed18ac'
+ 'b7cd936bae7b56dae6fe1f06d90c4db1'
  'f15398497e10e080c2406d2fc541660c'
  '4c7e3634a9d4dc040102f5d4160fb123'
  '2e065a39998e57727ee79887bbd1751e')



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

2013-01-21 Thread fyan
Date: Tuesday, January 22, 2013 @ 08:12:03
  Author: fyan
Revision: 82635

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

Added:
  stunnel/repos/community-i686/Makefile.patch
(from rev 82634, stunnel/trunk/Makefile.patch)
  stunnel/repos/community-i686/PKGBUILD
(from rev 82634, stunnel/trunk/PKGBUILD)
  stunnel/repos/community-i686/stunnel.install
(from rev 82634, stunnel/trunk/stunnel.install)
  stunnel/repos/community-i686/stunnel.rc.d
(from rev 82634, stunnel/trunk/stunnel.rc.d)
  stunnel/repos/community-i686/stunnel.tmpfiles.conf
(from rev 82634, stunnel/trunk/stunnel.tmpfiles.conf)
  stunnel/repos/community-x86_64/Makefile.patch
(from rev 82634, stunnel/trunk/Makefile.patch)
  stunnel/repos/community-x86_64/PKGBUILD
(from rev 82634, stunnel/trunk/PKGBUILD)
  stunnel/repos/community-x86_64/stunnel.install
(from rev 82634, stunnel/trunk/stunnel.install)
  stunnel/repos/community-x86_64/stunnel.rc.d
(from rev 82634, stunnel/trunk/stunnel.rc.d)
  stunnel/repos/community-x86_64/stunnel.tmpfiles.conf
(from rev 82634, stunnel/trunk/stunnel.tmpfiles.conf)
Deleted:
  stunnel/repos/community-i686/Makefile.patch
  stunnel/repos/community-i686/PKGBUILD
  stunnel/repos/community-i686/stunnel.install
  stunnel/repos/community-i686/stunnel.rc.d
  stunnel/repos/community-i686/stunnel.tmpfiles.conf
  stunnel/repos/community-x86_64/Makefile.patch
  stunnel/repos/community-x86_64/PKGBUILD
  stunnel/repos/community-x86_64/stunnel.install
  stunnel/repos/community-x86_64/stunnel.rc.d
  stunnel/repos/community-x86_64/stunnel.tmpfiles.conf

+
 community-i686/Makefile.patch  |   42 +-
 community-i686/PKGBUILD|  124 +++
 community-i686/stunnel.install |   62 +++
 community-i686/stunnel.rc.d|   88 +++---
 community-i686/stunnel.tmpfiles.conf   |2 
 community-x86_64/Makefile.patch|   42 +-
 community-x86_64/PKGBUILD  |  124 +++
 community-x86_64/stunnel.install   |   62 +++
 community-x86_64/stunnel.rc.d  |   88 +++---
 community-x86_64/stunnel.tmpfiles.conf |2 
 10 files changed, 318 insertions(+), 318 deletions(-)

Deleted: community-i686/Makefile.patch
===
--- community-i686/Makefile.patch   2013-01-22 07:03:48 UTC (rev 82634)
+++ community-i686/Makefile.patch   2013-01-22 07:12:03 UTC (rev 82635)
@@ -1,21 +0,0 @@
 tools/Makefile.in  2010-03-31 04:45:09.0 -0500
-+++ tools/Makefile.in  2010-04-11 17:17:41.0 -0500
-@@ -334,8 +334,7 @@
- 
- info-am:
- 
--install-data-am: install-confDATA install-data-local \
--  install-examplesDATA
-+install-data-am: install-confDATA install-examplesDATA
- 
- install-dvi: install-dvi-am
- 
-@@ -377,7 +376,7 @@
-   clean-local distclean distclean-generic distclean-libtool \
-   distdir dvi dvi-am html html-am info info-am install \
-   install-am install-confDATA install-data install-data-am \
--  install-data-local install-dvi install-dvi-am \
-+  install-dvi install-dvi-am \
-   install-examplesDATA install-exec install-exec-am install-html \
-   install-html-am install-info install-info-am install-man \
-   install-pdf install-pdf-am install-ps install-ps-am \

Copied: stunnel/repos/community-i686/Makefile.patch (from rev 82634, 
stunnel/trunk/Makefile.patch)
===
--- community-i686/Makefile.patch   (rev 0)
+++ community-i686/Makefile.patch   2013-01-22 07:12:03 UTC (rev 82635)
@@ -0,0 +1,21 @@
+--- tools/Makefile.in  2010-03-31 04:45:09.0 -0500
 tools/Makefile.in  2010-04-11 17:17:41.0 -0500
+@@ -334,8 +334,7 @@
+ 
+ info-am:
+ 
+-install-data-am: install-confDATA install-data-local \
+-  install-examplesDATA
++install-data-am: install-confDATA install-examplesDATA
+ 
+ install-dvi: install-dvi-am
+ 
+@@ -377,7 +376,7 @@
+   clean-local distclean distclean-generic distclean-libtool \
+   distdir dvi dvi-am html html-am info info-am install \
+   install-am install-confDATA install-data install-data-am \
+-  install-data-local install-dvi install-dvi-am \
++  install-dvi install-dvi-am \
+   install-examplesDATA install-exec install-exec-am install-html \
+   install-html-am install-info install-info-am install-man \
+   install-pdf install-pdf-am install-ps install-ps-am \

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-01-22 07:03:48 UTC (rev 82634)
+++ community-i686/PKGBUILD 2013-01-22 07:12:03 UTC (rev 82635)
@@ -1,62 +0,0 @@
-# $Id$
-# Maintainer: Kaiting Chen kaitocr...@gmail.com
-# Contributor: Daniel J