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

2014-01-05 Thread Felix Yan
Date: Sunday, January 5, 2014 @ 19:34:04
  Author: fyan
Revision: 103414

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

Added:
  boinc/repos/community-staging-i686/
  boinc/repos/community-staging-i686/PKGBUILD
(from rev 103413, boinc/trunk/PKGBUILD)
  boinc/repos/community-staging-i686/boinc-AM_CONDITIONAL.patch
(from rev 103413, boinc/trunk/boinc-AM_CONDITIONAL.patch)
  boinc/repos/community-staging-i686/boinc.bash
(from rev 103413, boinc/trunk/boinc.bash)
  boinc/repos/community-staging-i686/boinc.desktop
(from rev 103413, boinc/trunk/boinc.desktop)
  boinc/repos/community-staging-i686/boinc.install
(from rev 103413, boinc/trunk/boinc.install)
  boinc/repos/community-staging-i686/boinc.service
(from rev 103413, boinc/trunk/boinc.service)
  boinc/repos/community-staging-x86_64/
  boinc/repos/community-staging-x86_64/PKGBUILD
(from rev 103413, boinc/trunk/PKGBUILD)
  boinc/repos/community-staging-x86_64/boinc-AM_CONDITIONAL.patch
(from rev 103413, boinc/trunk/boinc-AM_CONDITIONAL.patch)
  boinc/repos/community-staging-x86_64/boinc.bash
(from rev 103413, boinc/trunk/boinc.bash)
  boinc/repos/community-staging-x86_64/boinc.desktop
(from rev 103413, boinc/trunk/boinc.desktop)
  boinc/repos/community-staging-x86_64/boinc.install
(from rev 103413, boinc/trunk/boinc.install)
  boinc/repos/community-staging-x86_64/boinc.service
(from rev 103413, boinc/trunk/boinc.service)

-+
 community-staging-i686/PKGBUILD |  122 ++
 community-staging-i686/boinc-AM_CONDITIONAL.patch   |   19 ++
 community-staging-i686/boinc.bash   |   99 ++
 community-staging-i686/boinc.desktop|   16 ++
 community-staging-i686/boinc.install|   23 +++
 community-staging-i686/boinc.service|   10 +
 community-staging-x86_64/PKGBUILD   |  122 ++
 community-staging-x86_64/boinc-AM_CONDITIONAL.patch |   19 ++
 community-staging-x86_64/boinc.bash |   99 ++
 community-staging-x86_64/boinc.desktop  |   16 ++
 community-staging-x86_64/boinc.install  |   23 +++
 community-staging-x86_64/boinc.service  |   10 +
 12 files changed, 578 insertions(+)

Copied: boinc/repos/community-staging-i686/PKGBUILD (from rev 103413, 
boinc/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-01-05 18:34:04 UTC (rev 103414)
@@ -0,0 +1,122 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Jaroslav Lichtblau dragonl...@aur.archlinux.org
+# Contributor: Michal Krenek mi...@sg1.cz
+
+pkgbase=boinc
+pkgname=(boinc boinc-nox)
+pkgver=7.2.33
+_tag=client_release/7.2/$pkgver
+pkgrel=2
+arch=('i686' 'x86_64')
+url=http://boinc.berkeley.edu/;
+license=('LGPL')
+makedepends=('libxslt' 'perl-xml-sax' 'git' 'libxss' 'libnotify' 'wxgtk2.8' 
'sqlite3' 'curl' 'inetutils')
+install=$pkgbase.install
+source=(git://boinc.berkeley.edu/boinc-v2.git#tag=$_tag
+   boinc.bash
+   boinc.desktop
+   boinc.service
+   boinc-AM_CONDITIONAL.patch)
+
+build() {
+  msg Starting make...
+  
+  # Build boinc
+  rm -rf $srcdir/$pkgbase-build
+  git clone $srcdir/$pkgbase-v2 $srcdir/$pkgbase-build
+  cd $srcdir/$pkgbase-build
+  git checkout $_tag
+
+  patch -Np1 -i ${srcdir}/boinc-AM_CONDITIONAL.patch
+
+  ./_autosetup
+
+  LDFLAGS='-lX11' ./configure \
+--prefix=/usr \
+--disable-server \
+--enable-unicode \
+--with-ssl \
+--enable-dynamic-client-linkage \
+--with-wxdir=/usr/lib \
+--with-wx-config=$(which wx-config) \
+--disable-static \
+--enable-client \
+--enable-manager \
+--with-x
+  make
+
+  # Build boinc-nox
+  rm -rf $srcdir/$pkgbase-nox-build
+  git clone $srcdir/$pkgbase-v2 $srcdir/$pkgbase-nox-build
+  cd $srcdir/$pkgbase-nox-build
+  git checkout $_tag
+
+  patch -Np1 -i ${srcdir}/boinc-AM_CONDITIONAL.patch
+
+  ./_autosetup
+
+  PKG_CONFIG=$(which pkg-config) ./configure \
+--prefix=/usr \
+--disable-server \
+--enable-unicode \
+--with-ssl \
+--enable-dynamic-client-linkage \
+--disable-xss \
+--disable-static \
+--enable-client \
+--disable-manager \
+--without-wxdir \
+--without-x
+  make
+}
+
+package_boinc() {
+  pkgdesc=Berkeley Open Infrastructure for Network Computing for desktop
+  depends=(libxss libnotify wxgtk2.8 curl sqlite3)
+
+  cd $pkgbase-build
+
+  make DESTDIR=$pkgdir install
+
+  #install systemd unit
+  install -Dm644 ${srcdir}/$pkgbase.service 
${pkgdir}/usr/lib/systemd/system/$pkgbase.service
+
+  #install bash-completion
+  install -Dm644 ${srcdir}/$pkgbase.bash 
${pkgdir}/usr/share/bash-completion/completions/$pkgbase
+
+  #install .desktop File
+  install 

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

2013-11-26 Thread Felix Yan
Date: Wednesday, November 27, 2013 @ 02:44:21
  Author: fyan
Revision: 101524

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

Added:
  boinc/repos/community-testing-i686/
  boinc/repos/community-testing-i686/PKGBUILD
(from rev 101523, boinc/trunk/PKGBUILD)
  boinc/repos/community-testing-i686/boinc-AM_CONDITIONAL.patch
(from rev 101523, boinc/trunk/boinc-AM_CONDITIONAL.patch)
  boinc/repos/community-testing-i686/boinc.bash
(from rev 101523, boinc/trunk/boinc.bash)
  boinc/repos/community-testing-i686/boinc.desktop
(from rev 101523, boinc/trunk/boinc.desktop)
  boinc/repos/community-testing-i686/boinc.install
(from rev 101523, boinc/trunk/boinc.install)
  boinc/repos/community-testing-i686/boinc.service
(from rev 101523, boinc/trunk/boinc.service)
  boinc/repos/community-testing-x86_64/
  boinc/repos/community-testing-x86_64/PKGBUILD
(from rev 101523, boinc/trunk/PKGBUILD)
  boinc/repos/community-testing-x86_64/boinc-AM_CONDITIONAL.patch
(from rev 101523, boinc/trunk/boinc-AM_CONDITIONAL.patch)
  boinc/repos/community-testing-x86_64/boinc.bash
(from rev 101523, boinc/trunk/boinc.bash)
  boinc/repos/community-testing-x86_64/boinc.desktop
(from rev 101523, boinc/trunk/boinc.desktop)
  boinc/repos/community-testing-x86_64/boinc.install
(from rev 101523, boinc/trunk/boinc.install)
  boinc/repos/community-testing-x86_64/boinc.service
(from rev 101523, boinc/trunk/boinc.service)

-+
 community-testing-i686/PKGBUILD |  122 ++
 community-testing-i686/boinc-AM_CONDITIONAL.patch   |   19 ++
 community-testing-i686/boinc.bash   |   99 ++
 community-testing-i686/boinc.desktop|   16 ++
 community-testing-i686/boinc.install|   23 +++
 community-testing-i686/boinc.service|   10 +
 community-testing-x86_64/PKGBUILD   |  122 ++
 community-testing-x86_64/boinc-AM_CONDITIONAL.patch |   19 ++
 community-testing-x86_64/boinc.bash |   99 ++
 community-testing-x86_64/boinc.desktop  |   16 ++
 community-testing-x86_64/boinc.install  |   23 +++
 community-testing-x86_64/boinc.service  |   10 +
 12 files changed, 578 insertions(+)

Copied: boinc/repos/community-testing-i686/PKGBUILD (from rev 101523, 
boinc/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2013-11-27 01:44:21 UTC (rev 101524)
@@ -0,0 +1,122 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Jaroslav Lichtblau dragonl...@aur.archlinux.org
+# Contributor: Michal Krenek mi...@sg1.cz
+
+pkgbase=boinc
+pkgname=(boinc boinc-nox)
+pkgver=7.2.33
+_tag=client_release/7.2/$pkgver
+pkgrel=1
+arch=('i686' 'x86_64')
+url=http://boinc.berkeley.edu/;
+license=('LGPL')
+makedepends=('libxslt' 'perl-xml-sax' 'git' 'libxss' 'libnotify' 'wxgtk' 
'sqlite3' 'curl' 'inetutils')
+install=$pkgbase.install
+source=(git://boinc.berkeley.edu/boinc-v2.git#tag=$_tag
+   boinc.bash
+   boinc.desktop
+   boinc.service
+   boinc-AM_CONDITIONAL.patch)
+
+build() {
+  msg Starting make...
+  
+  # Build boinc
+  rm -rf $srcdir/$pkgbase-build
+  git clone $srcdir/$pkgbase-v2 $srcdir/$pkgbase-build
+  cd $srcdir/$pkgbase-build
+  git checkout $_tag
+
+  patch -Np1 -i ${srcdir}/boinc-AM_CONDITIONAL.patch
+
+  ./_autosetup
+
+  LDFLAGS='-lX11' ./configure \
+--prefix=/usr \
+--disable-server \
+--enable-unicode \
+--with-ssl \
+--enable-dynamic-client-linkage \
+--with-wxdir=/usr/lib \
+--with-wx-config=$(which wx-config) \
+--disable-static \
+--enable-client \
+--enable-manager \
+--with-x
+  make
+
+  # Build boinc-nox
+  rm -rf $srcdir/$pkgbase-nox-build
+  git clone $srcdir/$pkgbase-v2 $srcdir/$pkgbase-nox-build
+  cd $srcdir/$pkgbase-nox-build
+  git checkout $_tag
+
+  patch -Np1 -i ${srcdir}/boinc-AM_CONDITIONAL.patch
+
+  ./_autosetup
+
+  PKG_CONFIG=$(which pkg-config) ./configure \
+--prefix=/usr \
+--disable-server \
+--enable-unicode \
+--with-ssl \
+--enable-dynamic-client-linkage \
+--disable-xss \
+--disable-static \
+--enable-client \
+--disable-manager \
+--without-wxdir \
+--without-x
+  make
+}
+
+package_boinc() {
+  pkgdesc=Berkeley Open Infrastructure for Network Computing for desktop
+  depends=(libxss libnotify wxgtk curl sqlite3)
+
+  cd $pkgbase-build
+
+  make DESTDIR=$pkgdir install
+
+  #install systemd unit
+  install -Dm644 ${srcdir}/$pkgbase.service 
${pkgdir}/usr/lib/systemd/system/$pkgbase.service
+
+  #install bash-completion
+  install -Dm644 ${srcdir}/$pkgbase.bash 
${pkgdir}/usr/share/bash-completion/completions/$pkgbase
+
+  #install .desktop File
+  install 

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

2013-10-22 Thread Felix Yan
Date: Tuesday, October 22, 2013 @ 10:05:15
  Author: fyan
Revision: 98994

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

Added:
  boinc/repos/community-testing-i686/
  boinc/repos/community-testing-i686/PKGBUILD
(from rev 98993, boinc/trunk/PKGBUILD)
  boinc/repos/community-testing-i686/boinc-AM_CONDITIONAL.patch
(from rev 98993, boinc/trunk/boinc-AM_CONDITIONAL.patch)
  boinc/repos/community-testing-i686/boinc.bash
(from rev 98993, boinc/trunk/boinc.bash)
  boinc/repos/community-testing-i686/boinc.desktop
(from rev 98993, boinc/trunk/boinc.desktop)
  boinc/repos/community-testing-i686/boinc.install
(from rev 98993, boinc/trunk/boinc.install)
  boinc/repos/community-testing-i686/boinc.service
(from rev 98993, boinc/trunk/boinc.service)
  boinc/repos/community-testing-x86_64/
  boinc/repos/community-testing-x86_64/PKGBUILD
(from rev 98993, boinc/trunk/PKGBUILD)
  boinc/repos/community-testing-x86_64/boinc-AM_CONDITIONAL.patch
(from rev 98993, boinc/trunk/boinc-AM_CONDITIONAL.patch)
  boinc/repos/community-testing-x86_64/boinc.bash
(from rev 98993, boinc/trunk/boinc.bash)
  boinc/repos/community-testing-x86_64/boinc.desktop
(from rev 98993, boinc/trunk/boinc.desktop)
  boinc/repos/community-testing-x86_64/boinc.install
(from rev 98993, boinc/trunk/boinc.install)
  boinc/repos/community-testing-x86_64/boinc.service
(from rev 98993, boinc/trunk/boinc.service)

-+
 community-testing-i686/PKGBUILD |  123 ++
 community-testing-i686/boinc-AM_CONDITIONAL.patch   |   19 ++
 community-testing-i686/boinc.bash   |   99 ++
 community-testing-i686/boinc.desktop|   16 ++
 community-testing-i686/boinc.install|   23 +++
 community-testing-i686/boinc.service|   10 +
 community-testing-x86_64/PKGBUILD   |  123 ++
 community-testing-x86_64/boinc-AM_CONDITIONAL.patch |   19 ++
 community-testing-x86_64/boinc.bash |   99 ++
 community-testing-x86_64/boinc.desktop  |   16 ++
 community-testing-x86_64/boinc.install  |   23 +++
 community-testing-x86_64/boinc.service  |   10 +
 12 files changed, 580 insertions(+)

Copied: boinc/repos/community-testing-i686/PKGBUILD (from rev 98993, 
boinc/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2013-10-22 08:05:15 UTC (rev 98994)
@@ -0,0 +1,123 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Jaroslav Lichtblau dragonl...@aur.archlinux.org
+# Contributor: Michal Krenek mi...@sg1.cz
+
+pkgbase=boinc
+pkgname=(boinc boinc-nox)
+pkgver=7.0.65
+_tag=client_release/7.0/$pkgver
+pkgrel=2
+arch=('i686' 'x86_64')
+url=http://boinc.berkeley.edu/;
+license=('LGPL')
+makedepends=('libxslt' 'perl-xml-sax' 'git' 'libxss' 'libnotify' 'wxgtk' 
'sqlite3' 'curl' 'inetutils')
+options=('!libtool')
+install=$pkgbase.install
+source=(git://boinc.berkeley.edu/boinc-v2.git#tag=$_tag
+   boinc.bash
+   boinc.desktop
+   boinc.service
+   boinc-AM_CONDITIONAL.patch)
+
+build() {
+  msg Starting make...
+  
+  # Build boinc
+  rm -rf $srcdir/$pkgbase-build
+  git clone $srcdir/$pkgbase-v2 $srcdir/$pkgbase-build
+  cd $srcdir/$pkgbase-build
+  git checkout $_tag
+
+  patch -Np1 -i ${srcdir}/boinc-AM_CONDITIONAL.patch
+
+  ./_autosetup
+
+  LDFLAGS='-lX11' ./configure \
+--prefix=/usr \
+--disable-server \
+--enable-unicode \
+--with-ssl \
+--enable-dynamic-client-linkage \
+--with-wxdir=/usr/lib \
+--with-wx-config=$(which wx-config) \
+--disable-static \
+--enable-client \
+--enable-manager \
+--with-x
+  make
+
+  # Build boinc-nox
+  rm -rf $srcdir/$pkgbase-nox-build
+  git clone $srcdir/$pkgbase-v2 $srcdir/$pkgbase-nox-build
+  cd $srcdir/$pkgbase-nox-build
+  git checkout $_tag
+
+  patch -Np1 -i ${srcdir}/boinc-AM_CONDITIONAL.patch
+
+  ./_autosetup
+
+  PKG_CONFIG=$(which pkg-config) ./configure \
+--prefix=/usr \
+--disable-server \
+--enable-unicode \
+--with-ssl \
+--enable-dynamic-client-linkage \
+--disable-xss \
+--disable-static \
+--enable-client \
+--disable-manager \
+--without-wxdir \
+--without-x
+  make
+}
+
+package_boinc() {
+  pkgdesc=Berkeley Open Infrastructure for Network Computing for desktop
+  depends=(libxss libnotify wxgtk curl sqlite3)
+
+  cd $srcdir/$pkgbase-build
+
+  make DESTDIR=$pkgdir install
+
+  #install systemd unit
+  install -Dm644 ${srcdir}/$pkgbase.service 
${pkgdir}/usr/lib/systemd/system/$pkgbase.service
+
+  #install bash-completion
+  install -Dm644 ${srcdir}/$pkgbase.bash 
${pkgdir}/usr/share/bash-completion/completions/$pkgbase
+
+  #install .desktop File

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

2013-04-19 Thread Felix Yan
Date: Saturday, April 20, 2013 @ 05:09:13
  Author: fyan
Revision: 88566

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

Added:
  boinc/repos/community-testing-i686/
  boinc/repos/community-testing-i686/PKGBUILD
(from rev 88565, boinc/trunk/PKGBUILD)
  boinc/repos/community-testing-i686/boinc-AM_CONDITIONAL.patch
(from rev 88565, boinc/trunk/boinc-AM_CONDITIONAL.patch)
  boinc/repos/community-testing-i686/boinc.bash
(from rev 88565, boinc/trunk/boinc.bash)
  boinc/repos/community-testing-i686/boinc.desktop
(from rev 88565, boinc/trunk/boinc.desktop)
  boinc/repos/community-testing-i686/boinc.install
(from rev 88565, boinc/trunk/boinc.install)
  boinc/repos/community-testing-i686/boinc.service
(from rev 88565, boinc/trunk/boinc.service)
  boinc/repos/community-testing-x86_64/
  boinc/repos/community-testing-x86_64/PKGBUILD
(from rev 88565, boinc/trunk/PKGBUILD)
  boinc/repos/community-testing-x86_64/boinc-AM_CONDITIONAL.patch
(from rev 88565, boinc/trunk/boinc-AM_CONDITIONAL.patch)
  boinc/repos/community-testing-x86_64/boinc.bash
(from rev 88565, boinc/trunk/boinc.bash)
  boinc/repos/community-testing-x86_64/boinc.desktop
(from rev 88565, boinc/trunk/boinc.desktop)
  boinc/repos/community-testing-x86_64/boinc.install
(from rev 88565, boinc/trunk/boinc.install)
  boinc/repos/community-testing-x86_64/boinc.service
(from rev 88565, boinc/trunk/boinc.service)

-+
 community-testing-i686/PKGBUILD |  123 ++
 community-testing-i686/boinc-AM_CONDITIONAL.patch   |   19 ++
 community-testing-i686/boinc.bash   |   99 ++
 community-testing-i686/boinc.desktop|   16 ++
 community-testing-i686/boinc.install|   23 +++
 community-testing-i686/boinc.service|   10 +
 community-testing-x86_64/PKGBUILD   |  123 ++
 community-testing-x86_64/boinc-AM_CONDITIONAL.patch |   19 ++
 community-testing-x86_64/boinc.bash |   99 ++
 community-testing-x86_64/boinc.desktop  |   16 ++
 community-testing-x86_64/boinc.install  |   23 +++
 community-testing-x86_64/boinc.service  |   10 +
 12 files changed, 580 insertions(+)

Copied: boinc/repos/community-testing-i686/PKGBUILD (from rev 88565, 
boinc/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2013-04-20 03:09:13 UTC (rev 88566)
@@ -0,0 +1,123 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Jaroslav Lichtblau dragonl...@aur.archlinux.org
+# Contributor: Michal Krenek mi...@sg1.cz
+
+pkgbase=boinc
+pkgname=(boinc boinc-nox)
+pkgver=7.0.65
+_tag=client_release/7.0/$pkgver
+pkgrel=1
+arch=('i686' 'x86_64')
+url=http://boinc.berkeley.edu/;
+license=('LGPL')
+makedepends=('libxslt' 'perl-xml-sax' 'git' 'libxss' 'libnotify' 'wxgtk' 
'sqlite3' 'curl' 'inetutils')
+options=('!libtool')
+install=$pkgbase.install
+source=(git://boinc.berkeley.edu/boinc-v2.git#tag=$_tag
+   boinc.bash
+   boinc.desktop
+   boinc.service
+   boinc-AM_CONDITIONAL.patch)
+
+build() {
+  msg Starting make...
+  
+  # Build boinc
+  rm -rf $srcdir/$pkgbase-build
+  git clone $srcdir/$pkgbase-v2 $srcdir/$pkgbase-build
+  cd $srcdir/$pkgbase-build
+  git checkout $_tag
+
+  patch -Np1 -i ${srcdir}/boinc-AM_CONDITIONAL.patch
+
+  ./_autosetup
+
+  LDFLAGS='-lX11' ./configure \
+--prefix=/usr \
+--disable-server \
+--enable-unicode \
+--with-ssl \
+--enable-dynamic-client-linkage \
+--with-wxdir=/usr/lib \
+--with-wx-config=$(which wx-config) \
+--disable-static \
+--enable-client \
+--enable-manager \
+--with-x
+  make
+
+  # Build boinc-nox
+  rm -rf $srcdir/$pkgbase-nox-build
+  git clone $srcdir/$pkgbase-v2 $srcdir/$pkgbase-nox-build
+  cd $srcdir/$pkgbase-nox-build
+  git checkout $_tag
+
+  patch -Np1 -i ${srcdir}/boinc-AM_CONDITIONAL.patch
+
+  ./_autosetup
+
+  PKG_CONFIG=$(which pkg-config) ./configure \
+--prefix=/usr \
+--disable-server \
+--enable-unicode \
+--with-ssl \
+--enable-dynamic-client-linkage \
+--disable-xss \
+--disable-static \
+--enable-client \
+--disable-manager \
+--without-wxdir \
+--without-x
+  make
+}
+
+package_boinc() {
+  pkgdesc=Berkeley Open Infrastructure for Network Computing for desktop
+  depends=(libxss libnotify wxgtk curl sqlite3)
+
+  cd $srcdir/$pkgbase-build
+
+  make DESTDIR=$pkgdir install
+
+#install systemd unit
+  install -Dm644 ${srcdir}/$pkgbase.service 
${pkgdir}/usr/lib/systemd/system/$pkgbase.service
+
+#install bash-completion
+  install -Dm644 ${srcdir}/$pkgbase.bash 
${pkgdir}/usr/share/bash-completion/completions/$pkgbase
+
+#install .desktop File
+