From 455295fdb5009a8cd7b033a93e01f7450fd3087b Mon Sep 17 00:00:00 2001 From: root Date: Tue, 30 Oct 2012 01:38:24 -0700 Subject: Tue Oct 30 01:38:05 PDT 2012 --- community/atop/PKGBUILD | 8 ++--- community/cuda/PKGBUILD | 54 ++++++++++++++++++++++++++++++++++ community/cuda/cuda.conf | 2 ++ community/cuda/cuda.install | 11 +++++++ community/cuda/cuda.sh | 1 + community/ejabberd/PKGBUILD | 8 +++-- community/libvirt/PKGBUILD | 11 ++++--- community/libvirt/libvirtd-guests.rc.d | 2 +- community/percona-server/PKGBUILD | 6 ++-- community/redis/PKGBUILD | 6 ++-- community/tesseract/PKGBUILD | 8 ++--- community/wt/PKGBUILD | 8 ++--- community/xmlrpc-c/PKGBUILD | 11 +++---- 13 files changed, 105 insertions(+), 31 deletions(-) create mode 100644 community/cuda/PKGBUILD create mode 100644 community/cuda/cuda.conf create mode 100644 community/cuda/cuda.install create mode 100644 community/cuda/cuda.sh (limited to 'community') diff --git a/community/atop/PKGBUILD b/community/atop/PKGBUILD index 4755c9c88..83dd65c14 100644 --- a/community/atop/PKGBUILD +++ b/community/atop/PKGBUILD @@ -1,17 +1,17 @@ -# $Id: PKGBUILD 75922 2012-09-05 14:45:58Z spupykin $ +# $Id: PKGBUILD 79031 2012-10-29 09:19:40Z spupykin $ # Maintainer: Sergej Pupykin # Contributor: John Gerritse pkgname=atop -pkgver=1.27_3 -pkgrel=3 +pkgver=2.0_1 +pkgrel=1 pkgdesc="A system and process level monitor." arch=(i686 x86_64) url="http://www.atoptool.nl/" license=('GPL') depends=('ncurses' 'sh' 'zlib') source=(http://www.atoptool.nl/download/atop-${pkgver/_/-}.tar.gz) -md5sums=('4a4e896ed6ec6979f80898d37938b8d9') +md5sums=('6867ea2211edaf8140b94130470d646b') build() { cd $srcdir/$pkgname-${pkgver/_/-} diff --git a/community/cuda/PKGBUILD b/community/cuda/PKGBUILD new file mode 100644 index 000000000..e2e58fb3a --- /dev/null +++ b/community/cuda/PKGBUILD @@ -0,0 +1,54 @@ +# $Id: PKGBUILD 69719 2012-04-23 02:56:20Z svenstaro $ +# Maintainer: Sven-Hendrik Haase +pkgname=cuda +pkgver=5.0.35 +pkgrel=2 +pkgdesc="NVIDIA's GPU programming toolkit" +arch=('i686' 'x86_64') +url="http://www.nvidia.com/object/cuda_home.html" +license=('custom') +depends=('gcc-libs' 'opencl-nvidia') +replaces=('cuda-toolkit' 'cuda-sdk') +provides=('cuda-toolkit' 'cuda-sdk') +optdepends=('gdb: for cuda-gdb') +options=(!strip) +if [ "$CARCH" = "i686" ]; then + _arch=32 + md5sums=('40c514acb750902c54656b97a6deded6' + '7e5990e03eea90075f5a500e91a0c3d3' + 'c0781c63e726eaf03e10135b42b85729') +else + _arch=64 + md5sums=('df796fb9ab66075b5c346b3fd0bf596b' + '7e5990e03eea90075f5a500e91a0c3d3' + 'c0781c63e726eaf03e10135b42b85729') +fi +install=cuda.install +source=(http://developer.download.nvidia.com/compute/cuda/5_0/rel-update-1/installers/cuda_${pkgver}_linux_${_arch}_fedora16-1.run + cuda.sh + cuda.conf) + +build() { + cd "$srcdir" +} + +package() { + sh cuda_${pkgver}_linux_${_arch}_fedora16-1.run -toolkitpath=$PWD -samplespath=$PWD -extract=$srcdir + ./cudatoolkit_${pkgver}_linux_${_arch}_fedora16.run -prefix=$pkgdir/opt/cuda -noprompt + ./cuda-samples_${pkgver}_linux.run -cudaprefix=$pkgdir/opt/cuda -prefix=$pkgdir/opt/cuda/samples -noprompt + + # allow gcc 4.7 to work + sed -i "/unsupported GNU/d" $pkgdir/opt/cuda/include/host_config.h + + # fix nvidia path fuckup + sed -i "s|/build/pkg||g" $pkgdir/opt/cuda/bin/nvvp + + install -Dm755 cuda.sh $pkgdir/etc/profile.d/cuda.sh + install -Dm644 cuda.conf $pkgdir/etc/ld.so.conf.d/cuda.conf + + install -Dm644 $pkgdir/opt/cuda/doc/EULA.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE + + # correct cuda path in samples + cd $pkgdir/opt/cuda/samples + find . -type f | egrep -v '(ppm|pgm)' | xargs grep -lI "$pkgdir/opt/cuda" | xargs sed -i "s|$pkgdir/opt/cuda|/opt/cuda|g" +} diff --git a/community/cuda/cuda.conf b/community/cuda/cuda.conf new file mode 100644 index 000000000..0f55b39a7 --- /dev/null +++ b/community/cuda/cuda.conf @@ -0,0 +1,2 @@ +/opt/cuda-toolkit/lib64 +/opt/cuda-toolkit/lib diff --git a/community/cuda/cuda.install b/community/cuda/cuda.install new file mode 100644 index 000000000..fb341b1dd --- /dev/null +++ b/community/cuda/cuda.install @@ -0,0 +1,11 @@ +post_install() { + echo "The cuda binaries are in /opt/cuda/bin" + echo "The cuda samples are in /opt/cuda/samples" + echo "The cuda docs are in /opt/cuda/doc" + echo "You need to relogin in order for the cuda binaries to appear in your PATH" + post_upgrade +} + +post_upgrade() { + ldconfig -r . +} diff --git a/community/cuda/cuda.sh b/community/cuda/cuda.sh new file mode 100644 index 000000000..6de59ddd5 --- /dev/null +++ b/community/cuda/cuda.sh @@ -0,0 +1 @@ +export PATH=$PATH:/opt/cuda/bin diff --git a/community/ejabberd/PKGBUILD b/community/ejabberd/PKGBUILD index 3dcfdd521..6fefbdeb8 100644 --- a/community/ejabberd/PKGBUILD +++ b/community/ejabberd/PKGBUILD @@ -1,17 +1,19 @@ -# $Id: PKGBUILD 78626 2012-10-22 09:47:14Z spupykin $ +# $Id: PKGBUILD 79033 2012-10-29 09:21:18Z spupykin $ # Maintainer: Sergej Pupykin # Contributor: Jeff 'codemac' Mickey # Contributor: Alexander Rødseth pkgname=ejabberd pkgver=2.1.11 -pkgrel=5 +pkgrel=6 pkgdesc="Jabber server written in Erlang" arch=('x86_64' 'i686') url="http://www.ejabberd.im/" license=("GPL") depends=('expat' 'openssl' 'zlib' 'erlang' 'pam' 'iproute2') -backup=(etc/ejabberd/ejabberd.cfg etc/logrotate.d/ejabberd) +backup=('etc/ejabberd/ejabberd.cfg' + 'etc/ejabberd/ejabberdctl.cfg' + 'etc/logrotate.d/ejabberd') install=$pkgname.install source=("http://www.process-one.net/downloads/ejabberd/${pkgver/_/-}/ejabberd-${pkgver}.tgz" "$pkgname.logrotate" diff --git a/community/libvirt/PKGBUILD b/community/libvirt/PKGBUILD index a2ca7fc68..830e9fee7 100644 --- a/community/libvirt/PKGBUILD +++ b/community/libvirt/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 76586 2012-09-24 09:56:46Z spupykin $ +# $Id: PKGBUILD 79047 2012-10-29 16:19:15Z spupykin $ # Maintainer: Sergej Pupykin # Contributor: Jonathan Wiersma pkgname=libvirt pkgver=0.10.2 -pkgrel=1 +pkgrel=4 pkgdesc="API for controlling virtualization engines (openvz,kvm,qemu,virtualbox,xen,etc)" arch=('i686' 'x86_64') url="http://libvirt.org/" @@ -39,7 +39,7 @@ source=("http://libvirt.org/sources/$pkgname-$pkgver.tar.gz" md5sums=('a5e50860d9da238ba270b528411c4a0d' 'c43244c40a0437038c82089618e7beaa' '3ed0e24f5b5e25bf553f5427d64915e6' - '8297b1be794a24cc77f66af9380ace59' + 'b47419dfd8c40d1b37fae6576d07baa0' 'bc2971dacdbac967fc3474e50affc345' '8d98e62915785686b0b6c8c070628392' '456723b41903d3aaa7ec948c1feea265') @@ -62,6 +62,9 @@ build() { --with-storage-lvm --without-xen --with-udev --without-hal --disable-static \ --with-init-script=systemd make -j1 + sed -i 's|/etc/sysconfig/libvirtd|/etc/conf.d/libvirtd|' daemon/libvirtd.service + sed -i 's|/etc/sysconfig/libvirt-guests|/etc/conf.d/libvirtd-guests|' tools/libvirt-guests.service + sed -i 's|/etc/init.d/libvirt-g|/etc/rc.d/libvirtd-g|g' tools/libvirt-guests.service } package() { @@ -85,8 +88,8 @@ package() { rm -rf \ $pkgdir/var/run \ - $pkgdir/etc/rc.d/init.d \ $pkgdir/etc/sysconfig \ + $pkgdir/etc/rc.d/init.d \ $pkgdir/lib \ $pkgdir/etc/sysctl.d } diff --git a/community/libvirt/libvirtd-guests.rc.d b/community/libvirt/libvirtd-guests.rc.d index 670b5431a..02b26ecfa 100755 --- a/community/libvirt/libvirtd-guests.rc.d +++ b/community/libvirt/libvirtd-guests.rc.d @@ -104,7 +104,7 @@ libvirt_start_all() { if [ -f $LIBVIRTD_LISTFILE ]; then for i in `cat $LIBVIRTD_LISTFILE`; do - name='libvirt_domname $i' + name=`libvirt_domname $i` stat_busy "Starting/resuming libvirtd/$name guest" libvirt_start "$i" [ $? -eq 0 ] && { sleep $LIBVIRTD_START_DELAY; stat_done; } || stat_fail diff --git a/community/percona-server/PKGBUILD b/community/percona-server/PKGBUILD index 5bd5767e0..c7888189e 100644 --- a/community/percona-server/PKGBUILD +++ b/community/percona-server/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 78026 2012-10-16 09:34:44Z mtorromeo $ +# $Id: PKGBUILD 79052 2012-10-29 17:52:46Z mtorromeo $ # Maintainer: Massimiliano Torromeo pkgname=percona-server -pkgver=5.5.27_rel29.0 +pkgver=5.5.28_rel29.1 pkgrel=1 pkgdesc="A backwards-compatible drop-in replacement for MySQL that provides improved performance, diagnostics and instrumentation, and manageability of the server" arch=('i686' 'x86_64') @@ -105,7 +105,7 @@ package() { install -Dm755 "$srcdir/mysqld-post" "$pkgdir/usr/bin/mysqld-post" } -sha256sums=('4ba9e3300d99bfdbf65dd1a00e51da5bddc1582e33a58219b5184075783889ce' +sha256sums=('2cacf3bd0f059c7ae3cb391bf2e4a2bdcbf490ed3465bfd4db9a02f0944f2d51' 'e875fac56f69634b4f1720aec3b952fc63903414e9345af630e5fd74b5373eb4' '400e9a6e6517bbfe0971b65456dfacfb363cb54a644e4c2bacd373171611d5aa' '4894d39605950d86841ad982e619daa6c8d5d60ca30928d7dbb582e8cb3ade32' diff --git a/community/redis/PKGBUILD b/community/redis/PKGBUILD index 7b94a0112..761981615 100644 --- a/community/redis/PKGBUILD +++ b/community/redis/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 78721 2012-10-23 08:36:04Z spupykin $ +# $Id: PKGBUILD 79039 2012-10-29 14:32:21Z spupykin $ # Maintainer: Sergej Pupykin # Maintainer: Jan-Erik Rediger # Contributor: nofxx .com> pkgname=redis -pkgver=2.6.0 +pkgver=2.6.2 pkgrel=1 pkgdesc="Advanced key-value store" arch=('i686' 'x86_64') @@ -18,7 +18,7 @@ source=("http://redis.googlecode.com/files/${pkgname}-${pkgver}.tar.gz" "redis.d" "redis.service" "redis.logrotate") -md5sums=('92f224a0df37e0b777a2eb3f38a2f128' +md5sums=('4f788dfb3ee86c7e864dfe537870bb5a' '8d843919d9f165e9a47e56cadb4ac2ed' '5ab9fdb200e15c13b450fda77fa030b6' '9e2d75b7a9dc421122d673fe520ef17f') diff --git a/community/tesseract/PKGBUILD b/community/tesseract/PKGBUILD index a55707eb7..81ef0cae8 100644 --- a/community/tesseract/PKGBUILD +++ b/community/tesseract/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 78897 2012-10-26 13:58:28Z spupykin $ +# $Id: PKGBUILD 79036 2012-10-29 09:23:46Z spupykin $ # Maintainer: Sergej Pupykin # Contributor: Andreas Hauser @@ -8,8 +8,8 @@ kor ell rus por bul lav lit pol dan-frak deu dan ces cat eng chi_tra chi_sim) pkgbase=tesseract pkgname=(tesseract $(for l in ${_langs[@]}; do echo tesseract-data-${l}; done)) -pkgver=3.01 -pkgrel=5 +pkgver=3.02.02 +pkgrel=1 pkgdesc="An OCR programm" arch=(i686 x86_64) url="http://code.google.com/p/tesseract-ocr" @@ -19,7 +19,7 @@ source=(http://tesseract-ocr.googlecode.com/files/$pkgname-$pkgver.tar.gz $(for l in ${_langs[@]}; do echo http://tesseract-ocr.googlecode.com/files/${l}.traineddata.gz done)) -md5sums=('1ba496e51a42358fb9d3ffe781b2d20a' +md5sums=('3d57ee5777fa998632ad0693c13a0e9e' 'f4ae2e5668f693cc51c6e3c3f57a8f1d' '3787ff0fc1a07517203466830f6f868e' '7b50075692e7a07ac8f59e0cde51cfb9' diff --git a/community/wt/PKGBUILD b/community/wt/PKGBUILD index 6903d75aa..466570808 100644 --- a/community/wt/PKGBUILD +++ b/community/wt/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 77566 2012-10-12 14:44:41Z svenstaro $ +# $Id: PKGBUILD 79020 2012-10-29 05:20:29Z svenstaro $ # Maintainer: Sergej Pupykin # Maintainer: Sven-Hendrik Haase # Contributor: Denis Martinez pkgname=wt -pkgver=3.2.3rc1 -_pkgver=3.2.3-rc1 +pkgver=3.2.3rc2 +_pkgver=3.2.3-rc2 pkgrel=1 pkgdesc="a C++ library and application server for developing and deploying web applications" arch=('i686' 'x86_64') @@ -26,7 +26,7 @@ optdepends=('openssl: for SSL support in built-in webserver' 'qt: for the Wt/Qt interopability example (wtwithqt)') backup=('etc/wt/wt_config.xml') source=(http://downloads.sourceforge.net/witty/$pkgname-${_pkgver}.tar.gz) -md5sums=('b58780f11d85b2da32a21f4c2be84cde') +md5sums=('64097d4d5fe346fe9a09f5789ec54598') build() { cd ${srcdir}/${pkgname}-${_pkgver} diff --git a/community/xmlrpc-c/PKGBUILD b/community/xmlrpc-c/PKGBUILD index fd30c2955..d1bb79e11 100644 --- a/community/xmlrpc-c/PKGBUILD +++ b/community/xmlrpc-c/PKGBUILD @@ -1,13 +1,13 @@ -# $Id: PKGBUILD 75673 2012-08-28 21:19:22Z arodseth $ +# $Id: PKGBUILD 79057 2012-10-29 19:02:22Z arodseth $ # Maintainer: Alexander Rødseth # Contributor: Daenyth # Contributor: Pierre Schmitz # Contributor: Vitaliy Berdinskikh pkgname=xmlrpc-c -pkgver=1.31.04 +pkgver=1.32.2 +pkgrel=1 epoch=1 -pkgrel=2 pkgdesc='XML-RPC for C and C++' arch=('x86_64' 'i686') url='http://xmlrpc-c.sourceforge.net/' @@ -15,8 +15,8 @@ license=('custom') depends=('curl' 'libxml2') makedepends=('libtool' 'setconf') options=('!makeflags' '!libtool' '!emptydirs') -source=("$pkgname-advanced-$pkgver.tar.gz::http://xmlrpc-c.svn.sourceforge.net/viewvc/xmlrpc-c/advanced.tar.gz") -sha256sums=('a85e6f9db7db21ed2811e455e61f7b62f5d08770cd68d83bdf10886b74e038f6') +source=("$pkgname-advanced-$pkgver.tar.gz::http://xmlrpc-c.svn.sourceforge.net/viewvc/xmlrpc-c/advanced/?view=tar") +sha256sums=('2707de25dba9823eaa328072392f2c25f08ed6c707be300bfae8f945609f9c19') build() { cd "$srcdir/advanced" @@ -28,6 +28,7 @@ build() { --disable-cgi-server \ --disable-libwww-client \ --disable-wininet-client \ + --enable-abyss \ --enable-cplusplus mkdir include/curl touch include/curl/types.h -- cgit v1.2.3-54-g00ecf