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

Felix Yan fyan at nymeria.archlinux.org
Thu Jan 24 16:39:36 UTC 2013


    Date: Thursday, January 24, 2013 @ 17:39:36
  Author: fyan
Revision: 82834

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

Deleted:
  boinc/repos/community-testing-i686/PKGBUILD
  boinc/repos/community-testing-i686/boinc-AM_CONDITIONAL.patch
  boinc/repos/community-testing-x86_64/PKGBUILD
  boinc/repos/community-testing-x86_64/boinc-AM_CONDITIONAL.patch

-----------------------------------------------------+
 community-testing-i686/PKGBUILD                     |  142 ------------------
 community-testing-i686/boinc-AM_CONDITIONAL.patch   |   19 --
 community-testing-x86_64/PKGBUILD                   |  142 ------------------
 community-testing-x86_64/boinc-AM_CONDITIONAL.patch |   19 --
 4 files changed, 322 deletions(-)

Deleted: community-testing-i686/PKGBUILD
===================================================================
--- community-testing-i686/PKGBUILD	2013-01-24 16:37:16 UTC (rev 82833)
+++ community-testing-i686/PKGBUILD	2013-01-24 16:39:36 UTC (rev 82834)
@@ -1,142 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan <felixonmars at gmail.com>
-# Contributor: Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
-# Contributor: Michal Krenek <mikos at sg1.cz>
-
-pkgbase=boinc
-pkgname=(boinc boinc-nox)
-pkgver=7.0.44
-_tag=client_release_$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')
-options=('!libtool')
-install=$pkgbase.install
-source=(boinc.rc
-	boinc.bash
-	boinc.desktop
-	boinc.service
-	boinc-AM_CONDITIONAL.patch)
-
-__gitroot=git://boinc.berkeley.edu/boinc.git
-__gitname=boinc
-
-build() {
-  cd "${srcdir}"
-  msg "Connecting to GIT server...."
-  if [ -d $__gitname ] ; then
-    cd $__gitname && git pull origin
-    msg "The local files are updated."
-  else
-    git clone $__gitroot
-  fi
-
-  msg "GIT checkout done or server timeout"
-  msg "Starting make..."
-  
-  # Build boinc
-  rm -rf "$srcdir/$__gitname-build"
-  git clone "$srcdir/$__gitname" "$srcdir/$__gitname-build"
-  cd "$srcdir/$__gitname-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/$__gitname-nox-build"
-  git clone "$srcdir/$__gitname" "$srcdir/$__gitname-nox-build"
-  cd "$srcdir/$__gitname-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/$__gitname-build"
-
-  make DESTDIR="$pkgdir" install
-
-#install rc-script
-  install -Dm755 "${srcdir}/$pkgbase.rc" "${pkgdir}/etc/rc.d/$pkgbase"
-
-#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 -Dm644 "${srcdir}/${pkgbase}.desktop" "${pkgdir}/usr/share/applications/${pkgbase}.desktop"
-
-#install icons
-  install -Dm644 "${srcdir}/${pkgbase}-build/clientgui/res/boincmgr.48x48.png" "${pkgdir}/usr/share/pixmaps/$pkgbase.png"
-
-#killing /etc/init.d directory
-  rm -rf ${pkgdir}/etc/init.d
-}
-
-package_boinc-nox() {
-  pkgdesc="Berkeley Open Infrastructure for Network Computing for desktop without Xorg dependencies"
-  depends=("curl")
-  provides=("boinc")
-  conflicts=("boinc")
-
-  cd "$srcdir/$__gitname-nox-build"
-
-  make DESTDIR="$pkgdir" install
-
-#install rc-script
-  install -Dm755 "${srcdir}/$pkgbase.rc" "${pkgdir}/etc/rc.d/$pkgbase"
-
-#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"
-
-#killing /etc/init.d directory
-  rm -rf ${pkgdir}/etc/init.d
-}
-
-md5sums=('c6dadc333f982ea7b548602a70bd1e93'
-         '4d00e1aa4090a3f51feb20f5a541b9ee'
-         'db62de2f08117e6379a3c613b58fa7ff'
-         '3d5cbab785cc8b004661b17c65883fd5'
-         'e27047518dec54d4db38816487a28661')

Deleted: community-testing-i686/boinc-AM_CONDITIONAL.patch
===================================================================
--- community-testing-i686/boinc-AM_CONDITIONAL.patch	2013-01-24 16:37:16 UTC (rev 82833)
+++ community-testing-i686/boinc-AM_CONDITIONAL.patch	2013-01-24 16:39:36 UTC (rev 82834)
@@ -1,19 +0,0 @@
---- A/configure.ac
-+++ B/configure.ac
-@@ -39,6 +39,7 @@ AC_PROG_CC
- AC_PROG_CXX
- AC_PROG_F77
- AC_PROG_CPP
-+AC_PROG_OBJCXX
- AC_PROG_MAKE_SET
- SAH_LINKS
- AC_LANG_PUSH(C)
-@@ -744,6 +745,8 @@ AM_CONDITIONAL(ENABLE_LIBRARIES, [test "
- AM_CONDITIONAL(INSTALL_HEADERS, [test "${enable_install_headers}" = yes])
- AM_CONDITIONAL(HAVE_CUDA_LIB, [test "${enable_client}" = yes -a -f ./coprocs/CUDA/posix/${boinc_platform}/libcudart.so])
- 
-+PKG_CHECK_MODULES([GTK2], [gtk+-2.0])
-+
- dnl ======================================================================
- dnl some more vodoo required for building portable client-binary (client, clientgui)
- dnl ======================================================================

Deleted: community-testing-x86_64/PKGBUILD
===================================================================
--- community-testing-x86_64/PKGBUILD	2013-01-24 16:37:16 UTC (rev 82833)
+++ community-testing-x86_64/PKGBUILD	2013-01-24 16:39:36 UTC (rev 82834)
@@ -1,142 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan <felixonmars at gmail.com>
-# Contributor: Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
-# Contributor: Michal Krenek <mikos at sg1.cz>
-
-pkgbase=boinc
-pkgname=(boinc boinc-nox)
-pkgver=7.0.44
-_tag=client_release_$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')
-options=('!libtool')
-install=$pkgbase.install
-source=(boinc.rc
-	boinc.bash
-	boinc.desktop
-	boinc.service
-	boinc-AM_CONDITIONAL.patch)
-
-__gitroot=git://boinc.berkeley.edu/boinc.git
-__gitname=boinc
-
-build() {
-  cd "${srcdir}"
-  msg "Connecting to GIT server...."
-  if [ -d $__gitname ] ; then
-    cd $__gitname && git pull origin
-    msg "The local files are updated."
-  else
-    git clone $__gitroot
-  fi
-
-  msg "GIT checkout done or server timeout"
-  msg "Starting make..."
-  
-  # Build boinc
-  rm -rf "$srcdir/$__gitname-build"
-  git clone "$srcdir/$__gitname" "$srcdir/$__gitname-build"
-  cd "$srcdir/$__gitname-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/$__gitname-nox-build"
-  git clone "$srcdir/$__gitname" "$srcdir/$__gitname-nox-build"
-  cd "$srcdir/$__gitname-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/$__gitname-build"
-
-  make DESTDIR="$pkgdir" install
-
-#install rc-script
-  install -Dm755 "${srcdir}/$pkgbase.rc" "${pkgdir}/etc/rc.d/$pkgbase"
-
-#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 -Dm644 "${srcdir}/${pkgbase}.desktop" "${pkgdir}/usr/share/applications/${pkgbase}.desktop"
-
-#install icons
-  install -Dm644 "${srcdir}/${pkgbase}-build/clientgui/res/boincmgr.48x48.png" "${pkgdir}/usr/share/pixmaps/$pkgbase.png"
-
-#killing /etc/init.d directory
-  rm -rf ${pkgdir}/etc/init.d
-}
-
-package_boinc-nox() {
-  pkgdesc="Berkeley Open Infrastructure for Network Computing for desktop without Xorg dependencies"
-  depends=("curl")
-  provides=("boinc")
-  conflicts=("boinc")
-
-  cd "$srcdir/$__gitname-nox-build"
-
-  make DESTDIR="$pkgdir" install
-
-#install rc-script
-  install -Dm755 "${srcdir}/$pkgbase.rc" "${pkgdir}/etc/rc.d/$pkgbase"
-
-#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"
-
-#killing /etc/init.d directory
-  rm -rf ${pkgdir}/etc/init.d
-}
-
-md5sums=('c6dadc333f982ea7b548602a70bd1e93'
-         '4d00e1aa4090a3f51feb20f5a541b9ee'
-         'db62de2f08117e6379a3c613b58fa7ff'
-         '3d5cbab785cc8b004661b17c65883fd5'
-         'e27047518dec54d4db38816487a28661')

Deleted: community-testing-x86_64/boinc-AM_CONDITIONAL.patch
===================================================================
--- community-testing-x86_64/boinc-AM_CONDITIONAL.patch	2013-01-24 16:37:16 UTC (rev 82833)
+++ community-testing-x86_64/boinc-AM_CONDITIONAL.patch	2013-01-24 16:39:36 UTC (rev 82834)
@@ -1,19 +0,0 @@
---- A/configure.ac
-+++ B/configure.ac
-@@ -39,6 +39,7 @@ AC_PROG_CC
- AC_PROG_CXX
- AC_PROG_F77
- AC_PROG_CPP
-+AC_PROG_OBJCXX
- AC_PROG_MAKE_SET
- SAH_LINKS
- AC_LANG_PUSH(C)
-@@ -744,6 +745,8 @@ AM_CONDITIONAL(ENABLE_LIBRARIES, [test "
- AM_CONDITIONAL(INSTALL_HEADERS, [test "${enable_install_headers}" = yes])
- AM_CONDITIONAL(HAVE_CUDA_LIB, [test "${enable_client}" = yes -a -f ./coprocs/CUDA/posix/${boinc_platform}/libcudart.so])
- 
-+PKG_CHECK_MODULES([GTK2], [gtk+-2.0])
-+
- dnl ======================================================================
- dnl some more vodoo required for building portable client-binary (client, clientgui)
- dnl ======================================================================




More information about the arch-commits mailing list