[arch-commits] Commit in python-matplotlib/trunk (PKGBUILD)
Date: Tuesday, September 22, 2015 @ 08:48:04 Author: fyan Revision: 141447 upgpkg: python-matplotlib 1.4.3-3 rebuild for python 3.5 Modified: python-matplotlib/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-09-22 05:39:20 UTC (rev 141446) +++ PKGBUILD2015-09-22 06:48:04 UTC (rev 141447) @@ -8,7 +8,7 @@ pkgbase=python-matplotlib pkgname=('python2-matplotlib' 'python-matplotlib') pkgver=1.4.3 -pkgrel=2 +pkgrel=3 pkgdesc="A python plotting library, making publication quality plots" arch=('i686' 'x86_64') url='http://matplotlib.org' @@ -55,7 +55,7 @@ check() { cd matplotlib-${pkgver} ( - export PYTHONPATH="$PWD/build/lib.linux-$CARCH-3.4:$PYTHONPATH" + export PYTHONPATH="$PWD/build/lib.linux-$CARCH-3.5:$PYTHONPATH" python -c "from matplotlib import font_manager" rm -rf ../tmp_test_dir && mkdir ../tmp_test_dir && cd ../tmp_test_dir xvfb-run -a -s "+extension GLX +extension RANDR +render -screen 0 1280x1024x24" \
[arch-commits] Commit in python-matplotlib/repos (6 files)
Date: Tuesday, September 22, 2015 @ 08:48:39 Author: fyan Revision: 141448 archrelease: copy trunk to community-staging-i686, community-staging-x86_64 Added: python-matplotlib/repos/community-staging-i686/ python-matplotlib/repos/community-staging-i686/PKGBUILD (from rev 141447, python-matplotlib/trunk/PKGBUILD) python-matplotlib/repos/community-staging-i686/ffmpeg-2.0.patch (from rev 141447, python-matplotlib/trunk/ffmpeg-2.0.patch) python-matplotlib/repos/community-staging-x86_64/ python-matplotlib/repos/community-staging-x86_64/PKGBUILD (from rev 141447, python-matplotlib/trunk/PKGBUILD) python-matplotlib/repos/community-staging-x86_64/ffmpeg-2.0.patch (from rev 141447, python-matplotlib/trunk/ffmpeg-2.0.patch) ---+ community-staging-i686/PKGBUILD | 112 community-staging-i686/ffmpeg-2.0.patch | 98 community-staging-x86_64/PKGBUILD | 112 community-staging-x86_64/ffmpeg-2.0.patch | 98 4 files changed, 420 insertions(+) Copied: python-matplotlib/repos/community-staging-i686/PKGBUILD (from rev 141447, python-matplotlib/trunk/PKGBUILD) === --- community-staging-i686/PKGBUILD (rev 0) +++ community-staging-i686/PKGBUILD 2015-09-22 06:48:39 UTC (rev 141448) @@ -0,0 +1,112 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Stéphane Gaudreault +# Contributor: Stefan Husmann +# Contributor: Angel 'angvp' Velasquez +# Contributor: Douglas Soares de Andrade + +pkgbase=python-matplotlib +pkgname=('python2-matplotlib' 'python-matplotlib') +pkgver=1.4.3 +pkgrel=3 +pkgdesc="A python plotting library, making publication quality plots" +arch=('i686' 'x86_64') +url='http://matplotlib.org' +license=('custom') +checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock' 'xorg-server-xvfb' + 'texlive-core' 'texlive-latexextra' 'imagemagick' 'ffmpeg' 'mencoder' 'inkscape') +makedepends=('python2-pytz' 'python2-numpy' 'python2-pyqt4' 'python-pytz' 'python-numpy' + 'python-pyqt4' 'tk' 'python-cairocffi' 'python2-cairocffi' 'python-dateutil' + 'python2-dateutil' 'python-gobject' 'python2-gobject' 'python-pyparsing' + 'python2-pyparsing' 'pygtk' 'python-six' 'ghostscript' 'texlive-bin' + 'python-tornado' 'python2-tornado' 'gtk3' 'wxpython' 'python-pyqt5' 'python2-pyqt5' + 'libxkbcommon-x11' 'python-pillow' 'python2-pillow') +source=("$pkgbase-$pkgver.tar.gz::https://github.com/matplotlib/matplotlib/archive/v$pkgver.tar.gz";) +sha512sums=('4aebbda31934bedbee5206b783e5cbe07db17367d50117a50bb80b7ea4aad987ec225958bed58885c561f00582c309d6e8c0a69861d3b4210a09b2d63975d2aa') + +prepare() { + cp -a matplotlib-${pkgver} matplotlib-${pkgver}-py2 + + cd matplotlib-${pkgver} + for file in $(find . -name '*.py' -print); do + sed -i -e "s|^#!.*/usr/bin/python|#!/usr/bin/python3|" \ + -e "s|^#!.*/usr/bin/env *python|#!/usr/bin/env python3|" ${file} + done + + cd ../matplotlib-${pkgver}-py2 + for file in $(find . -name '*.py' -print); do + sed -i -e "s|^#!.*/usr/bin/python|#!/usr/bin/python2|" \ + -e "s|^#!.*/usr/bin/env *python|#!/usr/bin/env python2|" ${file} + done +} + +build() { + # this seems to need to be present or gtk/gdk dies + # and hangs the build checking if gtk3cairo is installed + export XDG_RUNTIME_DIR=/tmp + + cd matplotlib-${pkgver} + python3 setup.py build + + cd ../matplotlib-${pkgver}-py2 + python2 setup.py build +} + +check() { + cd matplotlib-${pkgver} + ( + export PYTHONPATH="$PWD/build/lib.linux-$CARCH-3.5:$PYTHONPATH" + python -c "from matplotlib import font_manager" + rm -rf ../tmp_test_dir && mkdir ../tmp_test_dir && cd ../tmp_test_dir + xvfb-run -a -s "+extension GLX +extension RANDR +render -screen 0 1280x1024x24" \ + python ../matplotlib-${pkgver}/tests.py -sv --processes=8 --process-timeout=300 || warning "Tests failed" + ) + + cd ../matplotlib-${pkgver}-py2 + ( + export PYTHONPATH="$PWD/build/lib.linux-$CARCH-2.7:$PYTHONPATH" + python2 -c "from matplotlib import font_manager" + rm -rf ../tmp_test_dir && mkdir ../tmp_test_dir && cd ../tmp_test_dir + xvfb-run -a -s "+extension GLX +extension RANDR +render -screen 0 1280x1024x24" \ + python2 ../matplotlib-${pkgver}-py2/tests.py -sv --processes=8 --process-timeout=300 || warning "Tests failed" + ) +} + +package_python2-matplotlib() { + depends=('python2-pytz' 'python2-numpy' 'python2-pyqt5' 'python2-dateutil' 'python2-pyparsing' 'libxkbcommon-x11') + optdepends=('pygtk: for GTK/GTKAgg/GTKCairo backend' + 'python2-cairo: for GTKCairo/GTK3Cairo backend' + 'python2-cairocffi: for GTKCairo/GTK3Cairo backend (alternat
[arch-commits] Commit in refind-efi/repos (12 files)
Date: Tuesday, September 22, 2015 @ 08:21:22 Author: tpowa Revision: 247065 archrelease: copy trunk to extra-x86_64, extra-i686 Added: refind-efi/repos/extra-i686/PKGBUILD (from rev 247064, refind-efi/trunk/PKGBUILD) refind-efi/repos/extra-i686/refind-efi.install (from rev 247064, refind-efi/trunk/refind-efi.install) refind-efi/repos/extra-i686/refind_linux.conf (from rev 247064, refind-efi/trunk/refind_linux.conf) refind-efi/repos/extra-x86_64/PKGBUILD (from rev 247064, refind-efi/trunk/PKGBUILD) refind-efi/repos/extra-x86_64/refind-efi.install (from rev 247064, refind-efi/trunk/refind-efi.install) refind-efi/repos/extra-x86_64/refind_linux.conf (from rev 247064, refind-efi/trunk/refind_linux.conf) Deleted: refind-efi/repos/extra-i686/PKGBUILD refind-efi/repos/extra-i686/refind-efi.install refind-efi/repos/extra-i686/refind_linux.conf refind-efi/repos/extra-x86_64/PKGBUILD refind-efi/repos/extra-x86_64/refind-efi.install refind-efi/repos/extra-x86_64/refind_linux.conf -+ /PKGBUILD | 684 ++ /refind-efi.install | 64 +++ /refind_linux.conf | 10 extra-i686/PKGBUILD | 342 --- extra-i686/refind-efi.install | 32 - extra-i686/refind_linux.conf|5 extra-x86_64/PKGBUILD | 342 --- extra-x86_64/refind-efi.install | 32 - extra-x86_64/refind_linux.conf |5 9 files changed, 758 insertions(+), 758 deletions(-) The diff is longer than the limit of 200KB. Use svn diff -r 247064:247065 to see the changes.
[arch-commits] Commit in refind-efi/trunk (PKGBUILD)
Date: Tuesday, September 22, 2015 @ 08:21:10 Author: tpowa Revision: 247064 upgpkg: refind-efi 0.9.2-1 bump to latest version Modified: refind-efi/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-09-22 05:59:35 UTC (rev 247063) +++ PKGBUILD2015-09-22 06:21:10 UTC (rev 247064) @@ -13,7 +13,7 @@ ### pkgname="refind-efi" -pkgver="0.9.1" +pkgver="0.9.2" pkgrel="1" pkgdesc="Rod Smith's fork of rEFIt UEFI Boot Manager" url="http://www.rodsbooks.com/refind/index.html"; @@ -30,7 +30,7 @@ source=("http://downloads.sourceforge.net/refind/refind-src-${pkgver}.zip"; 'refind_linux.conf') -md5sums=('336c6374fef0563bbe7491524bb5fdd6' +md5sums=('23efca89e0de3e11c28b8ac82ec1c6e4' '12ce3e22a216e7b25c253478a34713b4') if [[ "${_USE_GNU_EFI}" == "1" ]]; then
[arch-commits] Commit in linux/repos (40 files)
Date: Tuesday, September 22, 2015 @ 07:59:35 Author: tpowa Revision: 247063 archrelease: copy trunk to testing-i686, testing-x86_64 Added: linux/repos/testing-i686/0001-e1000e-Fix-tight-loop-implementation-of-systime-read.patch (from rev 247062, linux/trunk/0001-e1000e-Fix-tight-loop-implementation-of-systime-read.patch) linux/repos/testing-i686/0001-fix-bridge-regression.patch (from rev 247062, linux/trunk/0001-fix-bridge-regression.patch) linux/repos/testing-i686/0001-make_flush_workqueue_non_gpl.patch (from rev 247062, linux/trunk/0001-make_flush_workqueue_non_gpl.patch) linux/repos/testing-i686/0001-netfilter-conntrack-use-nf_ct_tmpl_free-in-CT-synpro.patch (from rev 247062, linux/trunk/0001-netfilter-conntrack-use-nf_ct_tmpl_free-in-CT-synpro.patch) linux/repos/testing-i686/PKGBUILD (from rev 247062, linux/trunk/PKGBUILD) linux/repos/testing-i686/change-default-console-loglevel.patch (from rev 247062, linux/trunk/change-default-console-loglevel.patch) linux/repos/testing-i686/config (from rev 247062, linux/trunk/config) linux/repos/testing-i686/config.x86_64 (from rev 247062, linux/trunk/config.x86_64) linux/repos/testing-i686/linux.install (from rev 247062, linux/trunk/linux.install) linux/repos/testing-i686/linux.preset (from rev 247062, linux/trunk/linux.preset) linux/repos/testing-x86_64/0001-e1000e-Fix-tight-loop-implementation-of-systime-read.patch (from rev 247062, linux/trunk/0001-e1000e-Fix-tight-loop-implementation-of-systime-read.patch) linux/repos/testing-x86_64/0001-fix-bridge-regression.patch (from rev 247062, linux/trunk/0001-fix-bridge-regression.patch) linux/repos/testing-x86_64/0001-make_flush_workqueue_non_gpl.patch (from rev 247062, linux/trunk/0001-make_flush_workqueue_non_gpl.patch) linux/repos/testing-x86_64/0001-netfilter-conntrack-use-nf_ct_tmpl_free-in-CT-synpro.patch (from rev 247062, linux/trunk/0001-netfilter-conntrack-use-nf_ct_tmpl_free-in-CT-synpro.patch) linux/repos/testing-x86_64/PKGBUILD (from rev 247062, linux/trunk/PKGBUILD) linux/repos/testing-x86_64/change-default-console-loglevel.patch (from rev 247062, linux/trunk/change-default-console-loglevel.patch) linux/repos/testing-x86_64/config (from rev 247062, linux/trunk/config) linux/repos/testing-x86_64/config.x86_64 (from rev 247062, linux/trunk/config.x86_64) linux/repos/testing-x86_64/linux.install (from rev 247062, linux/trunk/linux.install) linux/repos/testing-x86_64/linux.preset (from rev 247062, linux/trunk/linux.preset) Deleted: linux/repos/testing-i686/0001-e1000e-Fix-tight-loop-implementation-of-systime-read.patch linux/repos/testing-i686/0001-fix-bridge-regression.patch linux/repos/testing-i686/0001-make_flush_workqueue_non_gpl.patch linux/repos/testing-i686/0001-netfilter-conntrack-use-nf_ct_tmpl_free-in-CT-synpro.patch 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/linux.install linux/repos/testing-i686/linux.preset linux/repos/testing-x86_64/0001-e1000e-Fix-tight-loop-implementation-of-systime-read.patch linux/repos/testing-x86_64/0001-fix-bridge-regression.patch linux/repos/testing-x86_64/0001-make_flush_workqueue_non_gpl.patch linux/repos/testing-x86_64/0001-netfilter-conntrack-use-nf_ct_tmpl_free-in-CT-synpro.patch 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/linux.install linux/repos/testing-x86_64/linux.preset + /0001-e1000e-Fix-tight-loop-implementation-of-systime-read.patch | 130 /0001-fix-bridge-regression.patch | 50 /0001-make_flush_workqueue_non_gpl.patch | 68 /0001-netfilter-conntrack-use-nf_ct_tmpl_free-in-CT-synpro.patch | 206 /PKGBUILD | 628 /change-default-console-loglevel.patch | 22 /config |15442 ++ /config.x86_64 |14946 + /linux.install | 74 /linux.preset | 28 testing-i686/0001-e1000e-Fix-tight-loop-implementation-of-systime-read.patch | 65 testing-i686/0001-fix-bridge-regression.patch | 25 testing-i686/0001-make_flush_workqueue_non_gpl.patch
[arch-commits] Commit in linux/trunk (PKGBUILD)
Date: Tuesday, September 22, 2015 @ 07:59:12 Author: tpowa Revision: 247062 upgpkg: linux 4.2.1-1 bump to latest version Modified: linux/trunk/PKGBUILD --+ PKGBUILD | 12 +++- 1 file changed, 7 insertions(+), 5 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-09-22 05:16:37 UTC (rev 247061) +++ PKGBUILD2015-09-22 05:59:12 UTC (rev 247062) @@ -5,8 +5,8 @@ pkgbase=linux # Build stock -ARCH kernel #pkgbase=linux-custom # Build kernel with a different name _srcname=linux-4.2 -pkgver=4.2 -pkgrel=4 +pkgver=4.2.1 +pkgrel=1 arch=('i686' 'x86_64') url="http://www.kernel.org/"; license=('GPL2') @@ -14,8 +14,8 @@ options=('!strip') source=("https://www.kernel.org/pub/linux/kernel/v4.x/${_srcname}.tar.xz"; "https://www.kernel.org/pub/linux/kernel/v4.x/${_srcname}.tar.sign"; -#"https://www.kernel.org/pub/linux/kernel/v4.x/patch-${pkgver}.xz"; -#"https://www.kernel.org/pub/linux/kernel/v4.x/patch-${pkgver}.sign"; +"https://www.kernel.org/pub/linux/kernel/v4.x/patch-${pkgver}.xz"; +"https://www.kernel.org/pub/linux/kernel/v4.x/patch-${pkgver}.sign"; # the main kernel config files 'config' 'config.x86_64' # standard config files for mkinitcpio ramdisk @@ -27,6 +27,8 @@ '0001-fix-bridge-regression.patch') sha256sums=('cf20e044f17588d2a42c8f2a450b0fd84dfdbd579b489d93e9ab7d0e8b45dbeb' 'SKIP' +'9d0ab6525eb5f42056e2465267c62fa67efc75c57ad5345b99414b783278e9a3' +'SKIP' 'e6f6f804f98ad321ce3e4395924993b51decb89699fde369391ccbb4bae928b2' 'a071aaa327d2b3577fa4709b47ed5fe81c7914d168607f3db905fdbf226247e7' 'f0d90e756f14533ee67afda280500511a62465b4f76adcc5effa95a40045179c' @@ -46,7 +48,7 @@ cd "${srcdir}/${_srcname}" # 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
[arch-commits] Commit in bcloud/repos (3 files)
Date: Tuesday, September 22, 2015 @ 07:39:20 Author: fyan Revision: 141446 archrelease: copy trunk to community-staging-any Added: bcloud/repos/community-staging-any/ bcloud/repos/community-staging-any/PKGBUILD (from rev 141445, bcloud/trunk/PKGBUILD) bcloud/repos/community-staging-any/bcloud.install (from rev 141445, bcloud/trunk/bcloud.install) + PKGBUILD | 33 + bcloud.install | 12 2 files changed, 45 insertions(+) Copied: bcloud/repos/community-staging-any/PKGBUILD (from rev 141445, bcloud/trunk/PKGBUILD) === --- community-staging-any/PKGBUILD (rev 0) +++ community-staging-any/PKGBUILD 2015-09-22 05:39:20 UTC (rev 141446) @@ -0,0 +1,33 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Firef0x +# Contributor: MJsaka +# Copyright +# This PKGBUILD released with the GPLv3 license + +pkgname=bcloud +pkgver=3.8.1 +pkgrel=2 +pkgdesc='Baidu Pan client for Linux Desktop users' +arch=('any') +license=('GPL3') +url="https://github.com/LiuLang/bcloud"; +depends=('python-crypto' 'libnotify' 'python-keyring' 'python-dbus' 'python-gobject' + 'gnome-icon-theme-symbolic' 'python-lxml' 'python-cssselect' 'gtk3' 'python-pyinotify') +optdepends=('gnome-keyring: To store password in GNOME Keyring' +'libgnome-keyring: To store password in GNOME Keyring' +'kdebindings-python: To store password in KWallet' +'kwallet: To store password in KWallet') +install=bcloud.install +source=("https://pypi.python.org/packages/source/b/bcloud/${pkgname}-${pkgver}.tar.gz";) +md5sums=('7a420d83e5d9114782db2251e28b8a6c') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + python setup.py build +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + python setup.py install -O1 --skip-build --root="$pkgdir" +} Copied: bcloud/repos/community-staging-any/bcloud.install (from rev 141445, bcloud/trunk/bcloud.install) === --- community-staging-any/bcloud.install(rev 0) +++ community-staging-any/bcloud.install2015-09-22 05:39:20 UTC (rev 141446) @@ -0,0 +1,12 @@ +post_install() { + update-desktop-database -q + gtk-update-icon-cache -q -t -f usr/share/icons/hicolor +} + +post_upgrade() { + post_install $1 +} + +post_remove() { + post_install $1 +}
[arch-commits] Commit in bcloud/trunk (PKGBUILD)
Date: Tuesday, September 22, 2015 @ 07:39:00 Author: fyan Revision: 141445 upgpkg: bcloud 3.8.1-2 rebuild for python 3.5 Modified: bcloud/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2015-09-22 05:37:34 UTC (rev 141444) +++ PKGBUILD2015-09-22 05:39:00 UTC (rev 141445) @@ -7,7 +7,7 @@ pkgname=bcloud pkgver=3.8.1 -pkgrel=1 +pkgrel=2 pkgdesc='Baidu Pan client for Linux Desktop users' arch=('any') license=('GPL3')
[arch-commits] Commit in python-raven/repos (2 files)
Date: Tuesday, September 22, 2015 @ 07:37:34 Author: fyan Revision: 141444 archrelease: copy trunk to community-staging-any Added: python-raven/repos/community-staging-any/ python-raven/repos/community-staging-any/PKGBUILD (from rev 141443, python-raven/trunk/PKGBUILD) --+ PKGBUILD | 73 + 1 file changed, 73 insertions(+) Copied: python-raven/repos/community-staging-any/PKGBUILD (from rev 141443, python-raven/trunk/PKGBUILD) === --- community-staging-any/PKGBUILD (rev 0) +++ community-staging-any/PKGBUILD 2015-09-22 05:37:34 UTC (rev 141444) @@ -0,0 +1,73 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Benjamin A. Shelton + +pkgbase=python-raven +pkgname=(python-raven python2-raven) +pkgver=5.7.2 +pkgrel=2 +pkgdesc="Python client for Sentry." +arch=(any) +url="http://pypi.python.org/pypi/raven"; +license=('BSD') +makedepends=('python-setuptools' 'python2-setuptools' 'git') +checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-bottle' 'python2-bottle' + 'python-celery' 'python2-celery' 'python-django' 'python2-django' 'pep8' + 'python-mock' 'python2-mock' 'python-nose' 'python2-nose' 'python2-gevent' + 'python2-pep8' 'python-pytz' 'python2-pytz' 'python-exam' 'python2-exam' + 'python-requests' 'python2-requests' 'python-tornado' 'python2-tornado' + 'python-paste' 'python2-paste' 'python-webob' 'python2-webob' + 'python-webtest' 'python2-webtest' 'python-anyjson' 'python2-anyjson' + 'python-flask' 'python2-flask' 'python-blinker' 'python2-blinker' + 'python-logbook' 'python2-logbook' 'python-pytest-django' 'python2-pytest-django' + 'python2-webpy' 'python-flask-login' 'python2-flask-login') +source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver";) +md5sums=('SKIP') + +prepare() { + cp -a raven-python{,-py2} +} + +build() { + cd "$srcdir/raven-python" + python setup.py build + + cd "$srcdir/raven-python-py2" + python2 setup.py build +} + +check() {( + # Hack distribution check by installing it + + cd "$srcdir/raven-python" + python setup.py install --root="$PWD/tmp_install" --optimize=1 + PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH" \ +py.test tests + + cd "$srcdir/raven-python" + python2 setup.py install --root="$PWD/tmp_install" --optimize=1 + PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" \ +py.test tests + ) || warning "Tests failed" + # pytest-django doesn't work with pytest 2.8 +} + +package_python-raven() { + depends=('python') + optdepends=('python-setuptools: for "raven" script') + + cd "${srcdir}/raven-python" + python setup.py install --root="${pkgdir}/" --optimize=1 + install -Dm664 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +} + +package_python2-raven() { + depends=('python2') + optdepends=('python2-setuptools: for "raven2" script') + + cd "${srcdir}/raven-python-py2" + python2 setup.py install --root="${pkgdir}/" --optimize=1 + mv "${pkgdir}/usr/bin/raven" "${pkgdir}/usr/bin/raven2" + + install -Dm664 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +}
[arch-commits] Commit in python-raven/trunk (PKGBUILD)
Date: Tuesday, September 22, 2015 @ 07:37:14 Author: fyan Revision: 141443 upgpkg: python-raven 5.7.2-2 rebuild for python 3.5 Modified: python-raven/trunk/PKGBUILD --+ PKGBUILD | 16 1 file changed, 8 insertions(+), 8 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-09-22 05:32:34 UTC (rev 141442) +++ PKGBUILD2015-09-22 05:37:14 UTC (rev 141443) @@ -5,7 +5,7 @@ pkgbase=python-raven pkgname=(python-raven python2-raven) pkgver=5.7.2 -pkgrel=1 +pkgrel=2 pkgdesc="Python client for Sentry." arch=(any) url="http://pypi.python.org/pypi/raven"; @@ -20,7 +20,7 @@ 'python-webtest' 'python2-webtest' 'python-anyjson' 'python2-anyjson' 'python-flask' 'python2-flask' 'python-blinker' 'python2-blinker' 'python-logbook' 'python2-logbook' 'python-pytest-django' 'python2-pytest-django' - 'python2-webpy') + 'python2-webpy' 'python-flask-login' 'python2-flask-login') source=("git+https://github.com/getsentry/raven-python.git#tag=$pkgver";) md5sums=('SKIP') @@ -36,20 +36,20 @@ python2 setup.py build } -check() { +check() {( # Hack distribution check by installing it cd "$srcdir/raven-python" - # Expected failures: No Python 3 package for flask-login. python setup.py install --root="$PWD/tmp_install" --optimize=1 - PYTHONPATH="$PWD/tmp_install/usr/lib/python3.4/site-packages:$PYTHONPATH" \ -py.test tests || warning "Tests failed" + PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH" \ +py.test tests cd "$srcdir/raven-python" - # Expected failures: No Python 2 package for flask-login. python2 setup.py install --root="$PWD/tmp_install" --optimize=1 PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" \ -py.test tests || warning "Tests failed" +py.test tests + ) || warning "Tests failed" + # pytest-django doesn't work with pytest 2.8 } package_python-raven() {
[arch-commits] Commit in python-wheel/repos (2 files)
Date: Tuesday, September 22, 2015 @ 07:32:34 Author: fyan Revision: 141442 archrelease: copy trunk to community-staging-any Added: python-wheel/repos/community-staging-any/ python-wheel/repos/community-staging-any/PKGBUILD (from rev 141441, python-wheel/trunk/PKGBUILD) --+ PKGBUILD | 63 + 1 file changed, 63 insertions(+) Copied: python-wheel/repos/community-staging-any/PKGBUILD (from rev 141441, python-wheel/trunk/PKGBUILD) === --- community-staging-any/PKGBUILD (rev 0) +++ community-staging-any/PKGBUILD 2015-09-22 05:32:34 UTC (rev 141442) @@ -0,0 +1,63 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Lance Chen + +_pypiname=wheel +pkgbase=python-wheel +pkgname=('python-wheel' 'python2-wheel') +pkgver=0.26.0 +pkgrel=2 +pkgdesc="A built-package format for Python" +arch=(any) +url="https://pypi.python.org/pypi/wheel"; +license=('MIT') +makedepends=('python-setuptools' 'python2-setuptools') +checkdepends=('python-jsonschema' 'python2-jsonschema' 'python-pytest-cov' 'python2-pytest-cov' + 'python-keyring' 'python2-keyring') +source=("https://pypi.python.org/packages/source/w/wheel/$_pypiname-$pkgver.tar.gz";) +md5sums=('4cfc6e7e3dc7377d0164914623922a10') + +prepare() { + cp -a wheel-$pkgver{,-py2} +} + +build() { + cd "$srcdir/wheel-$pkgver" + python setup.py build + + cd "$srcdir/wheel-$pkgver-py2" + python2 setup.py build +} + +check() { + # Hack entry points by installing it + + cd "$srcdir/wheel-$pkgver" + python setup.py install --root="$PWD/tmp_install" --optimize=1 + PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH" py.test wheel + + cd "$srcdir/wheel-$pkgver-py2" + python2 setup.py install --root="$PWD/tmp_install" --optimize=1 + PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" py.test2 wheel +} + +package_python-wheel() { + depends=('python') + optdepends=('python-keyring: for wheel.signatures') + + cd "$srcdir/$_pypiname-$pkgver" + python setup.py install --root="$pkgdir/" --optimize=1 + install -D -m644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt" +} + +package_python2-wheel() { + depends=('python2') + optdepends=('python2-keyring: for wheel.signatures') + + cd "$srcdir/$_pypiname-$pkgver" + python2 setup.py install --root="$pkgdir/" --optimize=1 + install -D -m644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt" + mv "$pkgdir/usr/bin/wheel" "$pkgdir/usr/bin/wheel2" +} + +# vim:set ts=2 sw=2 et:
[arch-commits] Commit in python-wheel/trunk (PKGBUILD)
Date: Tuesday, September 22, 2015 @ 07:32:14 Author: fyan Revision: 141441 upgpkg: python-wheel 0.26.0-2 rebuild for python 3.5 Modified: python-wheel/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-09-22 05:29:58 UTC (rev 141440) +++ PKGBUILD2015-09-22 05:32:14 UTC (rev 141441) @@ -6,7 +6,7 @@ pkgbase=python-wheel pkgname=('python-wheel' 'python2-wheel') pkgver=0.26.0 -pkgrel=1 +pkgrel=2 pkgdesc="A built-package format for Python" arch=(any) url="https://pypi.python.org/pypi/wheel"; @@ -34,7 +34,7 @@ cd "$srcdir/wheel-$pkgver" python setup.py install --root="$PWD/tmp_install" --optimize=1 - PYTHONPATH="$PWD/tmp_install/usr/lib/python3.4/site-packages:$PYTHONPATH" py.test wheel + PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH" py.test wheel cd "$srcdir/wheel-$pkgver-py2" python2 setup.py install --root="$PWD/tmp_install" --optimize=1
[arch-commits] Commit in python-keyring/repos (2 files)
Date: Tuesday, September 22, 2015 @ 07:29:58 Author: fyan Revision: 141440 archrelease: copy trunk to community-staging-any Added: python-keyring/repos/community-staging-any/ python-keyring/repos/community-staging-any/PKGBUILD (from rev 141439, python-keyring/trunk/PKGBUILD) --+ PKGBUILD | 72 + 1 file changed, 72 insertions(+) Copied: python-keyring/repos/community-staging-any/PKGBUILD (from rev 141439, python-keyring/trunk/PKGBUILD) === --- community-staging-any/PKGBUILD (rev 0) +++ community-staging-any/PKGBUILD 2015-09-22 05:29:58 UTC (rev 141440) @@ -0,0 +1,72 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Johannes Dewender arch at JonnyJD dot net +# Contributor: Ivan Sichmann Freitas +# Contributor: Brice Maron +# Contributor: Nuno Araujo +# Contributor: Steven Allen + +pkgbase=python-keyring +pkgname=('python-keyring' 'python2-keyring') +pkgver=5.4 +pkgrel=2 +pkgdesc="Store and access your passwords safely." +arch=('any') +url="http://pypi.python.org/pypi/keyring"; +license=('PSF' 'MIT') +source=("http://pypi.python.org/packages/source/k/keyring/keyring-$pkgver.tar.gz";) +makedepends=('python-setuptools_scm' 'python2-setuptools_scm') +checkdepends=('python-pytest' 'python2-pytest' 'python-mock' 'python2-mock' 'python-crypto' 'python2-crypto' + 'python-secretstorage' 'python2-secretstorage' 'python-gobject' 'python2-gobject' 'libgnome-keyring' + 'kdebindings-python' 'kdebindings-python2' 'python2-gdata' 'python-fs' 'python2-fs') +md5sums=('ed60cc006c1bc629bf92e100cca952ea') + +prepare() { + cp -a keyring-$pkgver{,-py2} +} + +build() { + cd "$srcdir/keyring-$pkgver" + python setup.py build + + cd "$srcdir/keyring-$pkgver-py2" + python2 setup.py build +} + +check() { + # Not using ptr because we are not packaging keyczar + + cd "$srcdir/keyring-$pkgver" + py.test + + cd "$srcdir/keyring-$pkgver-py2" + py.test2 +} + +package_python-keyring() { + depends=('python-setuptools') + optdepends=('libgnome-keyring: Gnome integration' +'python-gobject: Gnome integration' +'kdebindings-python: Kde integration' +'python-crypto: CLI keyring' +'python-secretstorage: SecretService DBus API (GNOME/KDE)') + + cd "$srcdir/keyring-$pkgver" + python setup.py install --root=$pkgdir --optimize=1 +} + +package_python2-keyring() { + depends=('python2-setuptools') + optdepends=('libgnome-keyring: Gnome integration' +'python2-gobject: Gnome integration' +'kdebindings-python2: Kde integration' +'python2-crypto: CLI keyring' +'python2-secretstorage: SecretService DBus API (GNOME/KDE)') + + cd "$srcdir/keyring-$pkgver-py2" + python2 setup.py install --root=$pkgdir --optimize=1 + + mv "$pkgdir"/usr/bin/keyring{,2} +} + +# vim:set ts=2 sw=2 et:
[arch-commits] Commit in python-keyring/trunk (PKGBUILD)
Date: Tuesday, September 22, 2015 @ 07:29:40 Author: fyan Revision: 141439 upgpkg: python-keyring 5.4-2 rebuild for python 3.5 Modified: python-keyring/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2015-09-22 04:19:53 UTC (rev 141438) +++ PKGBUILD2015-09-22 05:29:40 UTC (rev 141439) @@ -9,7 +9,7 @@ pkgbase=python-keyring pkgname=('python-keyring' 'python2-keyring') pkgver=5.4 -pkgrel=1 +pkgrel=2 pkgdesc="Store and access your passwords safely." arch=('any') url="http://pypi.python.org/pypi/keyring";
[arch-commits] Commit in system-config-printer/repos (4 files)
Date: Tuesday, September 22, 2015 @ 07:16:37 Author: fyan Revision: 247061 archrelease: copy trunk to staging-i686, staging-x86_64 Added: system-config-printer/repos/staging-i686/ system-config-printer/repos/staging-i686/PKGBUILD (from rev 247060, system-config-printer/trunk/PKGBUILD) system-config-printer/repos/staging-x86_64/ system-config-printer/repos/staging-x86_64/PKGBUILD (from rev 247060, system-config-printer/trunk/PKGBUILD) -+ staging-i686/PKGBUILD | 45 + staging-x86_64/PKGBUILD | 45 + 2 files changed, 90 insertions(+) Copied: system-config-printer/repos/staging-i686/PKGBUILD (from rev 247060, system-config-printer/trunk/PKGBUILD) === --- staging-i686/PKGBUILD (rev 0) +++ staging-i686/PKGBUILD 2015-09-22 05:16:37 UTC (rev 247061) @@ -0,0 +1,45 @@ +# $Id$ +# Maintainer: AndyRTR +# Contributor: Andrea Scarpino + +pkgname=system-config-printer +pkgver=1.5.7 +pkgrel=2 +pkgdesc="A CUPS printer configuration tool and status applet" +url="http://cyberelk.net/tim/software/system-config-printer/"; +arch=('i686' 'x86_64') +license=('GPL') +depends=('python-pycups' 'python-dbus' 'python-pycurl' 'libnotify' + 'python-requests' 'python-gobject' 'gtk3' 'python-cairo') +makedepends=('intltool' 'xmlto' 'docbook-xsl' 'desktop-file-utils') +optdepends=('libgnome-keyring: password management' +'python-pysmbc: SMB browser support' +'python-packagekit: to install drivers with PackageKit' +'cups-pk-helper: PolicyKit helper to configure cups with fine-grained privileges') +source=(http://cyberelk.net/tim/data/${pkgname}/${pkgver%*.*}/${pkgname}-${pkgver}.tar.xz{,.sig}) +md5sums=('1a0c6a4566a5479733945f6db32d6f00' + 'SKIP') +validpgpkeys=('02EA6349CE58E1BCAA8514F57955128DA3A1ABD3' #Tim Waugh + '4629AFE960EC20BEC12E3104B7C20D079491EA63') #Tim Waugh + +build() { + cd ${pkgname}-${pkgver} + ./configure --prefix=/usr \ +--sbindir=/usr/bin \ +--sysconfdir=/etc \ +--with-udevdir=/usr/lib/udev --with-udev-rules + make +} + +package() { + cd ${pkgname}-${pkgver} + make DESTDIR="${pkgdir}" install + + # Compile *.pyc + find "${pkgdir}" -name '*.py' -exec python -mpy_compile {} + + # Compile *.pyo + find "${pkgdir}" -name '*.py' -exec python -O -mpy_compile {} + + + # new cups 2.0.0 service naming + sed -i "s|cups.socket|org.cups.cupsd.socket|g" ${pkgdir}/usr/lib/systemd/system/configure-printer@.service +} Copied: system-config-printer/repos/staging-x86_64/PKGBUILD (from rev 247060, system-config-printer/trunk/PKGBUILD) === --- staging-x86_64/PKGBUILD (rev 0) +++ staging-x86_64/PKGBUILD 2015-09-22 05:16:37 UTC (rev 247061) @@ -0,0 +1,45 @@ +# $Id$ +# Maintainer: AndyRTR +# Contributor: Andrea Scarpino + +pkgname=system-config-printer +pkgver=1.5.7 +pkgrel=2 +pkgdesc="A CUPS printer configuration tool and status applet" +url="http://cyberelk.net/tim/software/system-config-printer/"; +arch=('i686' 'x86_64') +license=('GPL') +depends=('python-pycups' 'python-dbus' 'python-pycurl' 'libnotify' + 'python-requests' 'python-gobject' 'gtk3' 'python-cairo') +makedepends=('intltool' 'xmlto' 'docbook-xsl' 'desktop-file-utils') +optdepends=('libgnome-keyring: password management' +'python-pysmbc: SMB browser support' +'python-packagekit: to install drivers with PackageKit' +'cups-pk-helper: PolicyKit helper to configure cups with fine-grained privileges') +source=(http://cyberelk.net/tim/data/${pkgname}/${pkgver%*.*}/${pkgname}-${pkgver}.tar.xz{,.sig}) +md5sums=('1a0c6a4566a5479733945f6db32d6f00' + 'SKIP') +validpgpkeys=('02EA6349CE58E1BCAA8514F57955128DA3A1ABD3' #Tim Waugh + '4629AFE960EC20BEC12E3104B7C20D079491EA63') #Tim Waugh + +build() { + cd ${pkgname}-${pkgver} + ./configure --prefix=/usr \ +--sbindir=/usr/bin \ +--sysconfdir=/etc \ +--with-udevdir=/usr/lib/udev --with-udev-rules + make +} + +package() { + cd ${pkgname}-${pkgver} + make DESTDIR="${pkgdir}" install + + # Compile *.pyc + find "${pkgdir}" -name '*.py' -exec python -mpy_compile {} + + # Compile *.pyo + find "${pkgdir}" -name '*.py' -exec python -O -mpy_compile {} + + + # new cups 2.0.0 service naming + sed -i "s|cups.socket|org.cups.cupsd.socket|g" ${pkgdir}/usr/lib/systemd/system/configure-printer@.service +}
[arch-commits] Commit in system-config-printer/trunk (PKGBUILD)
Date: Tuesday, September 22, 2015 @ 07:16:08 Author: fyan Revision: 247060 upgpkg: system-config-printer 1.5.7-2 rebuild for python 3.5 Modified: system-config-printer/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2015-09-22 04:37:33 UTC (rev 247059) +++ PKGBUILD2015-09-22 05:16:08 UTC (rev 247060) @@ -4,7 +4,7 @@ pkgname=system-config-printer pkgver=1.5.7 -pkgrel=1 +pkgrel=2 pkgdesc="A CUPS printer configuration tool and status applet" url="http://cyberelk.net/tim/software/system-config-printer/"; arch=('i686' 'x86_64')
[arch-commits] Commit in hplip/repos (8 files)
Date: Tuesday, September 22, 2015 @ 06:37:33 Author: fyan Revision: 247059 archrelease: copy trunk to staging-i686, staging-x86_64 Added: hplip/repos/staging-i686/ hplip/repos/staging-i686/PKGBUILD (from rev 247058, hplip/trunk/PKGBUILD) hplip/repos/staging-i686/disable_upgrade.patch (from rev 247058, hplip/trunk/disable_upgrade.patch) hplip/repos/staging-i686/hplip.install (from rev 247058, hplip/trunk/hplip.install) hplip/repos/staging-x86_64/ hplip/repos/staging-x86_64/PKGBUILD (from rev 247058, hplip/trunk/PKGBUILD) hplip/repos/staging-x86_64/disable_upgrade.patch (from rev 247058, hplip/trunk/disable_upgrade.patch) hplip/repos/staging-x86_64/hplip.install (from rev 247058, hplip/trunk/hplip.install) --+ staging-i686/PKGBUILD| 83 + staging-i686/disable_upgrade.patch | 14 + staging-i686/hplip.install | 18 +++ staging-x86_64/PKGBUILD | 83 + staging-x86_64/disable_upgrade.patch | 14 + staging-x86_64/hplip.install | 18 +++ 6 files changed, 230 insertions(+) Copied: hplip/repos/staging-i686/PKGBUILD (from rev 247058, hplip/trunk/PKGBUILD) === --- staging-i686/PKGBUILD (rev 0) +++ staging-i686/PKGBUILD 2015-09-22 04:37:33 UTC (rev 247059) @@ -0,0 +1,83 @@ +# $Id$ +# Maintainer: Andreas Radke +# Maintainer: Tom Gundersen +# Contributor : Rémy Oudompheng +# Contributor: Morgan LEFIEUX + +pkgname=hplip +pkgver=3.15.9 +pkgrel=2 +pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and some LaserJet" +arch=('i686' 'x86_64') +url="http://hplipopensource.com"; +license=('GPL') +depends=('python' 'ghostscript>=8.64-6' 'net-snmp>=5.7.1' 'wget' 'foomatic-db-engine') +makedepends=('python-pyqt4' 'python-gobject' 'sane' 'rpcbind' 'cups' 'libusb') +optdepends=('cups: for printing support' +'python-dbus: for dbus support' +'sane: for scanner support' +'python-pillow: for commandline scanning support' +'python-reportlab: for pdf output in hp-scan' +'rpcbind: for network support' +'python-pyqt4: for running GUI and hp-toolbox' +'python-gobject: for running hp-toolbox' +'hplip-plugin: binary blobs for specific devices (AUR) or run hp-setup to download the plugin' +'libusb: for advanced usb support') +install=hplip.install +source=(http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc} +disable_upgrade.patch) +sha1sums=('564a37d39269fee9c938b7fe9f2b31c4f9c4db06' + 'SKIP' + '2348bcbca0c52dc09cceb47ed13281a4ccb9d83e') +validpgpkeys=('4ABA2F66DBD5A95894910E0673D770CDA59047B9') # HPLIP (HP Linux Imaging and Printing) + +prepare() { + cd $pkgname-$pkgver + + # disable insecure update - https://bugs.archlinux.org/task/38083 + patch -Np0 -i ${srcdir}/disable_upgrade.patch + + # https://bugs.archlinux.org/task/30085 - hack found in Gentoo + # Use system foomatic-rip for hpijs driver instead of foomatic-rip-hplip + # The hpcups driver does not use foomatic-rip + local i + for i in ppd/hpijs/*.ppd.gz ; do + rm -f ${i}.temp + gunzip -c ${i} | sed 's/foomatic-rip-hplip/foomatic-rip/g' | \ + gzip > ${i}.temp || return 1 + mv ${i}.temp ${i} + done + + export AUTOMAKE='automake --foreign' + autoreconf --force --install +} + +build() { + cd $pkgname-$pkgver + ./configure --prefix=/usr \ + --enable-qt4 \ + --disable-foomatic-rip-hplip-install \ + --enable-foomatic-ppd-install \ + --enable-hpcups-install \ + --enable-new-hpcups \ + --enable-cups-ppd-install \ + --enable-cups-drv-install \ + --enable-hpijs-install \ + --enable-foomatic-drv-install \ + --enable-pp-build #--help + make +} + +package() { + cd $pkgname-$pkgver + make -j1 rulesdir=/usr/lib/udev/rules.d DESTDIR="$pkgdir/" install + + # remove config provided by sane and autostart of hp-daemon + rm -rf "$pkgdir"/etc/{sane.d,xdg} + + # remove HAL .fdi file because HAL is no longer used + rm -vrf "$pkgdir"/usr/share/hal + + # remove rc script + rm -vrf "$pkgdir"/etc/init.d +} Copied: hplip/repos/staging-i686/disable_upgrade.patch (from rev 247058, hplip/trunk/disable_upgrade.patch) === --- staging-i686/disable_upgrade.patch (rev 0) +++ staging-i686/disable_upgrade.patch 2015-09-22 04:37:33 UTC (rev 247059) @@ -0,0 +1,14 @@ +--- upgrade.py.orig2013-10-31 12:46:54.0 +0100 upgrade.py 2013-12-04 14:58:03.0 +0100 +@@ -134,6 +134,11 @@ except getopt.GetoptError, e:
[arch-commits] Commit in hplip/trunk (PKGBUILD)
Date: Tuesday, September 22, 2015 @ 06:36:53 Author: fyan Revision: 247058 upgpkg: hplip 3.15.9-2 rebuild for python 3.5 Modified: hplip/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2015-09-22 04:25:15 UTC (rev 247057) +++ PKGBUILD2015-09-22 04:36:53 UTC (rev 247058) @@ -6,7 +6,7 @@ pkgname=hplip pkgver=3.15.9 -pkgrel=1 +pkgrel=2 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and some LaserJet" arch=('i686' 'x86_64') url="http://hplipopensource.com";
[arch-commits] Commit in chromium/repos (20 files)
Date: Tuesday, September 22, 2015 @ 06:25:15 Author: foutrelis Revision: 247057 archrelease: copy trunk to extra-i686, extra-x86_64 Added: chromium/repos/extra-i686/0001-Demand-for-newer-POSIX-macro.patch (from rev 247056, chromium/trunk/0001-Demand-for-newer-POSIX-macro.patch) chromium/repos/extra-i686/PKGBUILD (from rev 247056, chromium/trunk/PKGBUILD) chromium/repos/extra-i686/chromium-widevine.patch (from rev 247056, chromium/trunk/chromium-widevine.patch) chromium/repos/extra-i686/chromium.desktop (from rev 247056, chromium/trunk/chromium.desktop) chromium/repos/extra-i686/chromium.install (from rev 247056, chromium/trunk/chromium.install) chromium/repos/extra-x86_64/0001-Demand-for-newer-POSIX-macro.patch (from rev 247056, chromium/trunk/0001-Demand-for-newer-POSIX-macro.patch) chromium/repos/extra-x86_64/PKGBUILD (from rev 247056, chromium/trunk/PKGBUILD) chromium/repos/extra-x86_64/chromium-widevine.patch (from rev 247056, chromium/trunk/chromium-widevine.patch) chromium/repos/extra-x86_64/chromium.desktop (from rev 247056, chromium/trunk/chromium.desktop) chromium/repos/extra-x86_64/chromium.install (from rev 247056, chromium/trunk/chromium.install) Deleted: chromium/repos/extra-i686/0001-Demand-for-newer-POSIX-macro.patch chromium/repos/extra-i686/PKGBUILD chromium/repos/extra-i686/chromium-widevine.patch chromium/repos/extra-i686/chromium.desktop chromium/repos/extra-i686/chromium.install chromium/repos/extra-x86_64/0001-Demand-for-newer-POSIX-macro.patch chromium/repos/extra-x86_64/PKGBUILD chromium/repos/extra-x86_64/chromium-widevine.patch chromium/repos/extra-x86_64/chromium.desktop chromium/repos/extra-x86_64/chromium.install --+ /0001-Demand-for-newer-POSIX-macro.patch | 72 +++ /PKGBUILD| 408 + /chromium-widevine.patch | 24 + /chromium.desktop| 224 + /chromium.install| 54 ++ extra-i686/0001-Demand-for-newer-POSIX-macro.patch | 36 - extra-i686/PKGBUILD | 204 extra-i686/chromium-widevine.patch | 12 extra-i686/chromium.desktop | 112 extra-i686/chromium.install | 27 - extra-x86_64/0001-Demand-for-newer-POSIX-macro.patch | 36 - extra-x86_64/PKGBUILD| 204 extra-x86_64/chromium-widevine.patch | 12 extra-x86_64/chromium.desktop| 112 extra-x86_64/chromium.install| 27 - 15 files changed, 782 insertions(+), 782 deletions(-) The diff is longer than the limit of 200KB. Use svn diff -r 247056:247057 to see the changes.
[arch-commits] Commit in chromium/trunk (PKGBUILD)
Date: Tuesday, September 22, 2015 @ 06:24:57 Author: foutrelis Revision: 247056 upgpkg: chromium 45.0.2454.99-1 New upstream release. Modified: chromium/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-09-22 04:15:15 UTC (rev 247055) +++ PKGBUILD2015-09-22 04:24:57 UTC (rev 247056) @@ -5,7 +5,7 @@ # Contributor: Daniel J Griffiths pkgname=chromium -pkgver=45.0.2454.93 +pkgver=45.0.2454.99 pkgrel=1 _launcher_ver=2 pkgdesc="The open-source project behind Google Chrome, an attempt at creating a safer, faster, and more stable browser" @@ -28,7 +28,7 @@ chromium.desktop 0001-Demand-for-newer-POSIX-macro.patch chromium-widevine.patch) -sha256sums=('0652aad95e6135ce03c6bfa13c4b023b1d70d65af9e0a24dc0e9fe45578d2ac7' +sha256sums=('15d1a31fd0acfca07d614249518192983890507641e09db8d4c91d9ddf7ea340' '7f91c81721092d707d7b94e6555a48bc7fd0bc0e1174df4649bdcd745930e52f' '028a748a5c275de9b8f776f97909f999a8583a4b77fd1cd600b4fc5c0c3e91e9' 'd908939b10161efe658f0f82d2c132bf28dff54e08f02c6fed93815c3656f328'
[arch-commits] Commit in nsd/repos (18 files)
Date: Tuesday, September 22, 2015 @ 06:19:53 Author: bisson Revision: 141438 archrelease: copy trunk to community-i686, community-x86_64 Added: nsd/repos/community-i686/PKGBUILD (from rev 141437, nsd/trunk/PKGBUILD) nsd/repos/community-i686/hints.patch (from rev 141437, nsd/trunk/hints.patch) nsd/repos/community-i686/install (from rev 141437, nsd/trunk/install) nsd/repos/community-i686/service (from rev 141437, nsd/trunk/service) nsd/repos/community-i686/tmpfiles.d (from rev 141437, nsd/trunk/tmpfiles.d) nsd/repos/community-x86_64/PKGBUILD (from rev 141437, nsd/trunk/PKGBUILD) nsd/repos/community-x86_64/hints.patch (from rev 141437, nsd/trunk/hints.patch) nsd/repos/community-x86_64/install (from rev 141437, nsd/trunk/install) nsd/repos/community-x86_64/service (from rev 141437, nsd/trunk/service) nsd/repos/community-x86_64/tmpfiles.d (from rev 141437, nsd/trunk/tmpfiles.d) Deleted: nsd/repos/community-i686/PKGBUILD nsd/repos/community-i686/install nsd/repos/community-i686/service nsd/repos/community-i686/tmpfiles.d nsd/repos/community-x86_64/PKGBUILD nsd/repos/community-x86_64/install nsd/repos/community-x86_64/service nsd/repos/community-x86_64/tmpfiles.d --+ /PKGBUILD| 112 + /install | 34 /service | 26 + /tmpfiles.d |2 community-i686/PKGBUILD | 49 - community-i686/hints.patch | 13 community-i686/install | 17 -- community-i686/service | 13 community-i686/tmpfiles.d|1 community-x86_64/PKGBUILD| 49 - community-x86_64/hints.patch | 13 community-x86_64/install | 17 -- community-x86_64/service | 13 community-x86_64/tmpfiles.d |1 14 files changed, 200 insertions(+), 160 deletions(-) Deleted: community-i686/PKGBUILD === --- community-i686/PKGBUILD 2015-09-22 04:19:06 UTC (rev 141437) +++ community-i686/PKGBUILD 2015-09-22 04:19:53 UTC (rev 141438) @@ -1,49 +0,0 @@ -# $Id$ -# Maintainer: Gaetan Bisson -# Contributor: Kaiting Chen -# Contributor: Roberto Alsina - -pkgname=nsd -pkgver=4.1.4 -pkgrel=1 -pkgdesc='Authoritative only, high performance and simple DNS server' -url='http://www.nlnetlabs.nl/nsd/' -license=('BSD') -arch=('i686' 'x86_64') -depends=('openssl' 'libevent') -makedepends=('flex') -source=("http://www.nlnetlabs.nl/downloads/${pkgname}/${pkgname}-${pkgver}.tar.gz"; -'tmpfiles.d' -'service') -sha256sums=('d6e0e9cd1f637a3b4bfa48dba47b1564408eb531c57f6a3dda1a2d529df800f0' -'8e72816177069d6b82306c4b61ca4d0eefd2a77a31ea79c50635eea5aecf8c5b' -'5ec7616df32c29ddec25a6ec772db5053e234410cf1042f2945d0f554b1f9b65') - -install=install - -build() { - cd "${srcdir}/${pkgname}-${pkgver}" - ./configure \ - --prefix=/ \ - --sbindir=/usr/bin \ - --datarootdir=/usr/share \ - --with-pidfile=/run/nsd/nsd.pid \ - --enable-ratelimit \ - --enable-relro-now \ - --enable-pie \ - - make -} - -package() { - cd "${srcdir}/${pkgname}-${pkgver}" - make DESTDIR="${pkgdir}" install - install -Dm644 ../tmpfiles.d "${pkgdir}"/usr/lib/tmpfiles.d/nsd.conf - install -Dm644 ../service "${pkgdir}"/usr/lib/systemd/system/nsd.service - rmdir "${pkgdir}"/{tmp,run/{nsd,}} - - rm doc/differences.pdf - install -d "${pkgdir}"/usr/share/{doc,licenses}/"${pkgname}" - install -m644 doc/* "${pkgdir}"/usr/share/doc/"${pkgname}" - ln -s ../../doc/"${pkgname}"/LICENSE "${pkgdir}"/usr/share/licenses/"${pkgname}"/LICENSE -} Copied: nsd/repos/community-i686/PKGBUILD (from rev 141437, nsd/trunk/PKGBUILD) === --- community-i686/PKGBUILD (rev 0) +++ community-i686/PKGBUILD 2015-09-22 04:19:53 UTC (rev 141438) @@ -0,0 +1,56 @@ +# $Id$ +# Maintainer: Gaetan Bisson +# Contributor: Kaiting Chen +# Contributor: Roberto Alsina + +pkgname=nsd +pkgver=4.1.4 +pkgrel=2 +pkgdesc='Authoritative only, high performance and simple DNS server' +url='http://www.nlnetlabs.nl/nsd/' +license=('BSD') +arch=('i686' 'x86_64') +depends=('openssl' 'libevent') +makedepends=('flex') +source=("http://www.nlnetlabs.nl/downloads/${pkgname}/${pkgname}-${pkgver}.tar.gz"; +'hints.patch' +'tmpfiles.d' +'service') +sha256sums=('d6e0e9cd1f637a3b4bfa48dba47b1564408eb531c57f6a3dda1a2d529df800f0' +'11cd5d6e5dc9bf3cda9024d1c0dfab8eb3ba00c3aa8e03dd078a580db4151dcb' +'8e72816177069d6b82306c4b61ca4d0eefd2a77a31ea79c50635eea5aecf8c5b' +'5ec7616df32c29ddec25a6ec772db5053e234
[arch-commits] Commit in nsd/trunk (PKGBUILD hints.patch)
Date: Tuesday, September 22, 2015 @ 06:19:06 Author: bisson Revision: 141437 fix FS#46273 Added: nsd/trunk/hints.patch Modified: nsd/trunk/PKGBUILD -+ PKGBUILD|9 - hints.patch | 13 + 2 files changed, 21 insertions(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2015-09-22 04:12:07 UTC (rev 141436) +++ PKGBUILD2015-09-22 04:19:06 UTC (rev 141437) @@ -5,7 +5,7 @@ pkgname=nsd pkgver=4.1.4 -pkgrel=1 +pkgrel=2 pkgdesc='Authoritative only, high performance and simple DNS server' url='http://www.nlnetlabs.nl/nsd/' license=('BSD') @@ -13,14 +13,21 @@ depends=('openssl' 'libevent') makedepends=('flex') source=("http://www.nlnetlabs.nl/downloads/${pkgname}/${pkgname}-${pkgver}.tar.gz"; +'hints.patch' 'tmpfiles.d' 'service') sha256sums=('d6e0e9cd1f637a3b4bfa48dba47b1564408eb531c57f6a3dda1a2d529df800f0' +'11cd5d6e5dc9bf3cda9024d1c0dfab8eb3ba00c3aa8e03dd078a580db4151dcb' '8e72816177069d6b82306c4b61ca4d0eefd2a77a31ea79c50635eea5aecf8c5b' '5ec7616df32c29ddec25a6ec772db5053e234410cf1042f2945d0f554b1f9b65') install=install +prepare() { + cd "${srcdir}/${pkgname}-${pkgver}" + patch -p0 -i ../hints.patch +} + build() { cd "${srcdir}/${pkgname}-${pkgver}" ./configure \ Added: hints.patch === --- hints.patch (rev 0) +++ hints.patch 2015-09-22 04:19:06 UTC (rev 141437) @@ -0,0 +1,13 @@ +Index: nsd.c +=== +--- nsd.c (revision 4501) nsd.c (revision 4502) +@@ -447,6 +447,8 @@ + memset(&hints, 0, sizeof(*hints)*2); + hints[0].ai_family = DEFAULT_AI_FAMILY; + hints[0].ai_flags = AI_PASSIVE; ++ hints[1].ai_family = DEFAULT_AI_FAMILY; ++ hints[1].ai_flags = AI_PASSIVE; + nsd.identity= 0; + nsd.version = VERSION; + nsd.username= 0;
[arch-commits] Commit in gedit/repos (6 files)
Date: Tuesday, September 22, 2015 @ 06:15:15 Author: fyan Revision: 247055 archrelease: copy trunk to staging-i686, staging-x86_64 Added: gedit/repos/staging-i686/ gedit/repos/staging-i686/PKGBUILD (from rev 247054, gedit/trunk/PKGBUILD) gedit/repos/staging-i686/gedit.install (from rev 247054, gedit/trunk/gedit.install) gedit/repos/staging-x86_64/ gedit/repos/staging-x86_64/PKGBUILD (from rev 247054, gedit/trunk/PKGBUILD) gedit/repos/staging-x86_64/gedit.install (from rev 247054, gedit/trunk/gedit.install) --+ staging-i686/PKGBUILD| 32 staging-i686/gedit.install | 18 ++ staging-x86_64/PKGBUILD | 32 staging-x86_64/gedit.install | 18 ++ 4 files changed, 100 insertions(+) Copied: gedit/repos/staging-i686/PKGBUILD (from rev 247054, gedit/trunk/PKGBUILD) === --- staging-i686/PKGBUILD (rev 0) +++ staging-i686/PKGBUILD 2015-09-22 04:15:15 UTC (rev 247055) @@ -0,0 +1,32 @@ +# $Id$ +# Maintainer: Jan Alexander Steffens (heftig) +# Contributor: Jan de Groot + +pkgname=gedit +pkgver=3.16.3 +pkgrel=2 +pkgdesc="A text editor for GNOME" +arch=(i686 x86_64) +license=(GPL) +depends=(gtksourceview3 gsettings-desktop-schemas libpeas enchant iso-codes desktop-file-utils python-gobject dconf) +makedepends=(yelp-tools intltool vala gobject-introspection) +groups=(gnome-extra) +options=('!emptydirs') +url="http://www.gnome.org"; +install=gedit.install +source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz) +sha256sums=('c28df44a29ee5707441f89e94b513079d709111afec4bd4b079a1dff0242cdb2') + +build() { + cd $pkgname-$pkgver + ./configure --prefix=/usr \ + --sysconfdir=/etc --localstatedir=/var \ + --libexecdir=/usr/lib --disable-updater --disable-schemas-compile \ + --enable-python + make +} + +package(){ + cd $pkgname-$pkgver + make DESTDIR="$pkgdir" install +} Copied: gedit/repos/staging-i686/gedit.install (from rev 247054, gedit/trunk/gedit.install) === --- staging-i686/gedit.install (rev 0) +++ staging-i686/gedit.install 2015-09-22 04:15:15 UTC (rev 247055) @@ -0,0 +1,18 @@ +post_install() { +glib-compile-schemas /usr/share/glib-2.0/schemas +update-desktop-database -q +} + +pre_upgrade() { +if [ -f /usr/share/gconf/schemas/gedit.schemas ]; then +gconfpkg --uninstall gedit +fi +} + +post_upgrade() { +post_install $1 +} + +post_remove() { +post_install $1 +} Copied: gedit/repos/staging-x86_64/PKGBUILD (from rev 247054, gedit/trunk/PKGBUILD) === --- staging-x86_64/PKGBUILD (rev 0) +++ staging-x86_64/PKGBUILD 2015-09-22 04:15:15 UTC (rev 247055) @@ -0,0 +1,32 @@ +# $Id$ +# Maintainer: Jan Alexander Steffens (heftig) +# Contributor: Jan de Groot + +pkgname=gedit +pkgver=3.16.3 +pkgrel=2 +pkgdesc="A text editor for GNOME" +arch=(i686 x86_64) +license=(GPL) +depends=(gtksourceview3 gsettings-desktop-schemas libpeas enchant iso-codes desktop-file-utils python-gobject dconf) +makedepends=(yelp-tools intltool vala gobject-introspection) +groups=(gnome-extra) +options=('!emptydirs') +url="http://www.gnome.org"; +install=gedit.install +source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz) +sha256sums=('c28df44a29ee5707441f89e94b513079d709111afec4bd4b079a1dff0242cdb2') + +build() { + cd $pkgname-$pkgver + ./configure --prefix=/usr \ + --sysconfdir=/etc --localstatedir=/var \ + --libexecdir=/usr/lib --disable-updater --disable-schemas-compile \ + --enable-python + make +} + +package(){ + cd $pkgname-$pkgver + make DESTDIR="$pkgdir" install +} Copied: gedit/repos/staging-x86_64/gedit.install (from rev 247054, gedit/trunk/gedit.install) === --- staging-x86_64/gedit.install(rev 0) +++ staging-x86_64/gedit.install2015-09-22 04:15:15 UTC (rev 247055) @@ -0,0 +1,18 @@ +post_install() { +glib-compile-schemas /usr/share/glib-2.0/schemas +update-desktop-database -q +} + +pre_upgrade() { +if [ -f /usr/share/gconf/schemas/gedit.schemas ]; then +gconfpkg --uninstall gedit +fi +} + +post_upgrade() { +post_install $1 +} + +post_remove() { +post_install $1 +}
[arch-commits] Commit in gedit/trunk (PKGBUILD)
Date: Tuesday, September 22, 2015 @ 06:14:43 Author: fyan Revision: 247054 upgpkg: gedit 3.16.3-2 rebuild for python 3.5 Modified: gedit/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2015-09-22 04:13:07 UTC (rev 247053) +++ PKGBUILD2015-09-22 04:14:43 UTC (rev 247054) @@ -4,7 +4,7 @@ pkgname=gedit pkgver=3.16.3 -pkgrel=1 +pkgrel=2 pkgdesc="A text editor for GNOME" arch=(i686 x86_64) license=(GPL)
[arch-commits] Commit in gnupg/repos (8 files)
Date: Tuesday, September 22, 2015 @ 06:13:07 Author: bisson Revision: 247053 archrelease: copy trunk to testing-i686, testing-x86_64 Added: gnupg/repos/testing-i686/ gnupg/repos/testing-i686/PKGBUILD (from rev 247052, gnupg/trunk/PKGBUILD) gnupg/repos/testing-i686/install (from rev 247052, gnupg/trunk/install) gnupg/repos/testing-i686/ssh-ed25519.patch (from rev 247052, gnupg/trunk/ssh-ed25519.patch) gnupg/repos/testing-x86_64/ gnupg/repos/testing-x86_64/PKGBUILD (from rev 247052, gnupg/trunk/PKGBUILD) gnupg/repos/testing-x86_64/install (from rev 247052, gnupg/trunk/install) gnupg/repos/testing-x86_64/ssh-ed25519.patch (from rev 247052, gnupg/trunk/ssh-ed25519.patch) --+ testing-i686/PKGBUILD| 66 + testing-i686/install | 25 ++ testing-i686/ssh-ed25519.patch | 60 + testing-x86_64/PKGBUILD | 66 + testing-x86_64/install | 25 ++ testing-x86_64/ssh-ed25519.patch | 60 + 6 files changed, 302 insertions(+) Copied: gnupg/repos/testing-i686/PKGBUILD (from rev 247052, gnupg/trunk/PKGBUILD) === --- testing-i686/PKGBUILD (rev 0) +++ testing-i686/PKGBUILD 2015-09-22 04:13:07 UTC (rev 247053) @@ -0,0 +1,66 @@ +# $Id$ +# Maintainer: Gaetan Bisson +# Contributor: Tobias Powalowski +# Contributor: Andreas Radke +# Contributor: Judd Vinet + +pkgname=gnupg +pkgver=2.1.8 +pkgrel=3 +pkgdesc='Complete and free implementation of the OpenPGP standard' +url='http://www.gnupg.org/' +license=('GPL') +arch=('i686' 'x86_64') +optdepends=('libldap: gpg2keys_ldap' +'libusb-compat: scdaemon') +makedepends=('libldap' 'libusb-compat') +depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan' + 'pinentry' 'bzip2' 'readline' 'gnutls') +validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6' + '46CC730865BB5C78EBABADCF04376F3EE0856959' + '031EC2536E580D8EA286A9F22071B08A33BD3F06' + 'D238EA65D64C67ED4C3073F28A861B1C7EFD60D9') +source=("ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig} +'ssh-ed25519.patch') +sha1sums=('61f5bc656dd7fddd4ab67b720d47ef0651bfb727' 'SKIP' + 'fd77cf366f6bd70c1d33e910044612aebe6bbe63') + +install=install + +conflicts=('dirmngr' 'gnupg2') +provides=('dirmngr' "gnupg2=${pkgver}") +replaces=('dirmngr' 'gnupg2') + +prepare() { + cd "${srcdir}/${pkgname}-${pkgver}" + sed '/noinst_SCRIPTS = gpg-zip/c sbin_SCRIPTS += gpg-zip' -i tools/Makefile.in + patch -p1 -i ../ssh-ed25519.patch +} + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --sbindir=/usr/bin \ + --libexecdir=/usr/lib/gnupg \ + --enable-maintainer-mode \ + --enable-symcryptrun \ + --enable-gpgtar \ + + make +} + +check() { + cd "${srcdir}/${pkgname}-${pkgver}" + make check +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install + ln -s gpg2 "${pkgdir}"/usr/bin/gpg + ln -s gpgv2 "${pkgdir}"/usr/bin/gpgv + ln -s gpg2.1.gz "${pkgdir}"/usr/share/man/man1/gpg.1.gz + rm "${pkgdir}/usr/share/gnupg/com-certs.pem" # FS#33059 +} Copied: gnupg/repos/testing-i686/install (from rev 247052, gnupg/trunk/install) === --- testing-i686/install(rev 0) +++ testing-i686/install2015-09-22 04:13:07 UTC (rev 247053) @@ -0,0 +1,25 @@ +info_dir=/usr/share/info +info_files=(gnupg.info gnupg.info-1 gnupg.info-2) + +post_install() { + [ -x usr/bin/install-info ] || return 0 + for f in ${info_files[@]}; do + usr/bin/install-info ${info_dir}/$f ${info_dir}/dir 2> /dev/null + done +} + +pre_remove() { + [ -x usr/bin/install-info ] || return 0 + for f in ${info_files[@]}; do + usr/bin/install-info --delete ${info_dir}/$f ${info_dir}/dir 2> /dev/null + done +} + +post_upgrade() { + post_install + + # Fix upgrade to 2.1; see FS#42798 + [ $(vercmp $2 2.1.0-4) = -1 ] && + dirmngr /dev/null || + return 0 +} Copied: gnupg/repos/testing-i686/ssh-ed25519.patch (from rev 247052, gnupg/trunk/ssh-ed25519.patch) === --- testing-i686/ssh-ed25519.patch (rev 0) +++ testing-i686/ssh-ed25519.patch 2015-09-22 04:13:07 UTC (rev 247053) @@ -0,0 +1,60 @@ +From 7d5999f0964c9412c0e18eb1adefdb729be68cd4 Mon Sep 17 00:00:00 2001 +From: NIIBE Yuta
[arch-commits] Commit in gnupg/trunk (PKGBUILD ssh-ed25519.patch)
Date: Tuesday, September 22, 2015 @ 06:12:35 Author: bisson Revision: 247052 fix FS#46378 Added: gnupg/trunk/ssh-ed25519.patch Modified: gnupg/trunk/PKGBUILD ---+ PKGBUILD |9 +-- ssh-ed25519.patch | 60 2 files changed, 66 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-09-22 04:05:59 UTC (rev 247051) +++ PKGBUILD2015-09-22 04:12:35 UTC (rev 247052) @@ -6,7 +6,7 @@ pkgname=gnupg pkgver=2.1.8 -pkgrel=2 +pkgrel=3 pkgdesc='Complete and free implementation of the OpenPGP standard' url='http://www.gnupg.org/' license=('GPL') @@ -20,8 +20,10 @@ '46CC730865BB5C78EBABADCF04376F3EE0856959' '031EC2536E580D8EA286A9F22071B08A33BD3F06' 'D238EA65D64C67ED4C3073F28A861B1C7EFD60D9') -source=("ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig}) -sha1sums=('61f5bc656dd7fddd4ab67b720d47ef0651bfb727' 'SKIP') +source=("ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig} +'ssh-ed25519.patch') +sha1sums=('61f5bc656dd7fddd4ab67b720d47ef0651bfb727' 'SKIP' + 'fd77cf366f6bd70c1d33e910044612aebe6bbe63') install=install @@ -32,6 +34,7 @@ prepare() { cd "${srcdir}/${pkgname}-${pkgver}" sed '/noinst_SCRIPTS = gpg-zip/c sbin_SCRIPTS += gpg-zip' -i tools/Makefile.in + patch -p1 -i ../ssh-ed25519.patch } build() { Added: ssh-ed25519.patch === --- ssh-ed25519.patch (rev 0) +++ ssh-ed25519.patch 2015-09-22 04:12:35 UTC (rev 247052) @@ -0,0 +1,60 @@ +From 7d5999f0964c9412c0e18eb1adefdb729be68cd4 Mon Sep 17 00:00:00 2001 +From: NIIBE Yutaka +Date: Wed, 16 Sep 2015 10:37:38 +0900 +Subject: [PATCH] agent: Fix registering SSH Key of Ed25519. + +* agent/command-ssh.c (stream_read_string): Add the prefix of 0x40. + +-- + +GnuPG-bug-id: 2096 +--- + agent/command-ssh.c | 14 -- + 1 file changed, 8 insertions(+), 6 deletions(-) + +diff --git a/agent/command-ssh.c b/agent/command-ssh.c +index 8868620..8be1255 100644 +--- a/agent/command-ssh.c b/agent/command-ssh.c +@@ -580,8 +580,9 @@ stream_read_string (estream_t stream, unsigned int secure, + + + /* Read a binary string from STREAM and store it as an opaque MPI at +- R_MPI. Depending on SECURE use secure memory. If the string is +- too large for key material return an error. */ ++ R_MPI, adding 0x40 (this is the prefix for EdDSA key in OpenPGP). ++ Depending on SECURE use secure memory. If the string is too large ++ for key material return an error. */ + static gpg_error_t + stream_read_blob (estream_t stream, unsigned int secure, gcry_mpi_t *r_mpi) + { +@@ -607,9 +608,9 @@ stream_read_blob (estream_t stream, unsigned int secure, gcry_mpi_t *r_mpi) + + /* Allocate space. */ + if (secure) +-buffer = xtrymalloc_secure (length? length:1); ++buffer = xtrymalloc_secure (length+1); + else +-buffer = xtrymalloc (length?length:1); ++buffer = xtrymalloc (length+1); + if (!buffer) + { + err = gpg_error_from_syserror (); +@@ -617,11 +618,12 @@ stream_read_blob (estream_t stream, unsigned int secure, gcry_mpi_t *r_mpi) + } + + /* Read data. */ +- err = stream_read_data (stream, buffer, length); ++ err = stream_read_data (stream, buffer + 1, length); + if (err) + goto leave; + +- *r_mpi = gcry_mpi_set_opaque (NULL, buffer, 8*length); ++ buffer[0] = 0x40; ++ *r_mpi = gcry_mpi_set_opaque (NULL, buffer, 8*(length+1)); + buffer = NULL; + + leave: +-- +2.1.4 +
[arch-commits] Commit in hexchat/repos (6 files)
Date: Tuesday, September 22, 2015 @ 06:12:07 Author: fyan Revision: 141436 archrelease: copy trunk to community-staging-i686, community-staging-x86_64 Added: hexchat/repos/community-staging-i686/ hexchat/repos/community-staging-i686/PKGBUILD (from rev 141435, hexchat/trunk/PKGBUILD) hexchat/repos/community-staging-i686/hexchat.install (from rev 141435, hexchat/trunk/hexchat.install) hexchat/repos/community-staging-x86_64/ hexchat/repos/community-staging-x86_64/PKGBUILD (from rev 141435, hexchat/trunk/PKGBUILD) hexchat/repos/community-staging-x86_64/hexchat.install (from rev 141435, hexchat/trunk/hexchat.install) --+ community-staging-i686/PKGBUILD | 45 + community-staging-i686/hexchat.install | 14 + community-staging-x86_64/PKGBUILD| 45 + community-staging-x86_64/hexchat.install | 14 + 4 files changed, 118 insertions(+) Copied: hexchat/repos/community-staging-i686/PKGBUILD (from rev 141435, hexchat/trunk/PKGBUILD) === --- community-staging-i686/PKGBUILD (rev 0) +++ community-staging-i686/PKGBUILD 2015-09-22 04:12:07 UTC (rev 141436) @@ -0,0 +1,45 @@ +# $Id$ +# Maintainer: Maxime Gauduin +# Contributor: TingPing + +pkgname=hexchat +pkgver=2.10.2 +pkgrel=4 +pkgdesc='A popular and easy to use graphical IRC (chat) client' +arch=('i686' 'x86_64') +url='http://hexchat.github.io/' +license=('GPL') +depends=('dbus-glib' 'desktop-file-utils' 'gtk2' 'libcanberra' 'libnotify' + 'libproxy' 'pciutils') +makedepends=('intltool' 'iso-codes' 'perl' 'python') +optdepends=('enchant: Spell check' +'perl: Perl plugin' +'python: Python plugin') +install='hexchat.install' +source=("http://dl.hexchat.net/hexchat/hexchat-${pkgver}.tar.xz";) +sha256sums=('87ebf365c576656fa3f23f51d319b3a6d279e4a932f2f8961d891dd5a5e1b52c') + +prepare() { + cd hexchat-${pkgver} + +# sed 's/CFLAGS="$PERL_CFLAGS"/CFLAGS="$PERL_CFLAGS -fuse-ld=gold"/' -i configure + sed -i 's/python-3.4/python-3.5/' configure +} + +build() { + cd hexchat-${pkgver} + + ./configure \ +--prefix='/usr' \ +--enable-python='python3' \ +--enable-textfe + make +} + +package() { + cd hexchat-${pkgver} + + make DESTDIR="${pkgdir}" install +} + +# vim: ts=2 sw=2 et: Copied: hexchat/repos/community-staging-i686/hexchat.install (from rev 141435, hexchat/trunk/hexchat.install) === --- community-staging-i686/hexchat.install (rev 0) +++ community-staging-i686/hexchat.install 2015-09-22 04:12:07 UTC (rev 141436) @@ -0,0 +1,14 @@ +post_install() { + gtk-update-icon-cache -ftq usr/share/icons/hicolor + update-desktop-database -q +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} + +# vim: ts=2 sw=2 et: Copied: hexchat/repos/community-staging-x86_64/PKGBUILD (from rev 141435, hexchat/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2015-09-22 04:12:07 UTC (rev 141436) @@ -0,0 +1,45 @@ +# $Id$ +# Maintainer: Maxime Gauduin +# Contributor: TingPing + +pkgname=hexchat +pkgver=2.10.2 +pkgrel=4 +pkgdesc='A popular and easy to use graphical IRC (chat) client' +arch=('i686' 'x86_64') +url='http://hexchat.github.io/' +license=('GPL') +depends=('dbus-glib' 'desktop-file-utils' 'gtk2' 'libcanberra' 'libnotify' + 'libproxy' 'pciutils') +makedepends=('intltool' 'iso-codes' 'perl' 'python') +optdepends=('enchant: Spell check' +'perl: Perl plugin' +'python: Python plugin') +install='hexchat.install' +source=("http://dl.hexchat.net/hexchat/hexchat-${pkgver}.tar.xz";) +sha256sums=('87ebf365c576656fa3f23f51d319b3a6d279e4a932f2f8961d891dd5a5e1b52c') + +prepare() { + cd hexchat-${pkgver} + +# sed 's/CFLAGS="$PERL_CFLAGS"/CFLAGS="$PERL_CFLAGS -fuse-ld=gold"/' -i configure + sed -i 's/python-3.4/python-3.5/' configure +} + +build() { + cd hexchat-${pkgver} + + ./configure \ +--prefix='/usr' \ +--enable-python='python3' \ +--enable-textfe + make +} + +package() { + cd hexchat-${pkgver} + + make DESTDIR="${pkgdir}" install +} + +# vim: ts=2 sw=2 et: Copied: hexchat/repos/community-staging-x86_64/hexchat.install (from rev 141435, hexchat/trunk/hexchat.install) === --- community-staging-x86_64/hexchat.install(rev 0) +++ community-staging-x86_64/hexchat.install2015-09-22 04:12:07 UTC (rev 141436) @@ -0,0 +1,14 @@ +post_install() { + gtk-update-icon-cache -ftq usr/share/icons/hicolor + update-desktop-database -q +} + +post_upgrade() { + post_install +} + +pos
[arch-commits] Commit in hexchat/trunk (PKGBUILD)
Date: Tuesday, September 22, 2015 @ 06:11:35 Author: fyan Revision: 141435 upgpkg: hexchat 2.10.2-4 rebuild for python 3.5 Modified: hexchat/trunk/PKGBUILD --+ PKGBUILD |3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2015-09-22 03:46:25 UTC (rev 141434) +++ PKGBUILD2015-09-22 04:11:35 UTC (rev 141435) @@ -4,7 +4,7 @@ pkgname=hexchat pkgver=2.10.2 -pkgrel=3 +pkgrel=4 pkgdesc='A popular and easy to use graphical IRC (chat) client' arch=('i686' 'x86_64') url='http://hexchat.github.io/' @@ -23,6 +23,7 @@ cd hexchat-${pkgver} # sed 's/CFLAGS="$PERL_CFLAGS"/CFLAGS="$PERL_CFLAGS -fuse-ld=gold"/' -i configure + sed -i 's/python-3.4/python-3.5/' configure } build() {
[arch-commits] Commit in gnome-music/repos (6 files)
Date: Tuesday, September 22, 2015 @ 06:05:59 Author: fyan Revision: 247051 archrelease: copy trunk to staging-i686, staging-x86_64 Added: gnome-music/repos/staging-i686/ gnome-music/repos/staging-i686/PKGBUILD (from rev 247050, gnome-music/trunk/PKGBUILD) gnome-music/repos/staging-i686/gnome-music.install (from rev 247050, gnome-music/trunk/gnome-music.install) gnome-music/repos/staging-x86_64/ gnome-music/repos/staging-x86_64/PKGBUILD (from rev 247050, gnome-music/trunk/PKGBUILD) gnome-music/repos/staging-x86_64/gnome-music.install (from rev 247050, gnome-music/trunk/gnome-music.install) + staging-i686/PKGBUILD | 31 +++ staging-i686/gnome-music.install | 12 staging-x86_64/PKGBUILD| 31 +++ staging-x86_64/gnome-music.install | 12 4 files changed, 86 insertions(+) Copied: gnome-music/repos/staging-i686/PKGBUILD (from rev 247050, gnome-music/trunk/PKGBUILD) === --- staging-i686/PKGBUILD (rev 0) +++ staging-i686/PKGBUILD 2015-09-22 04:05:59 UTC (rev 247051) @@ -0,0 +1,31 @@ +# $Id$ +# Maintainer: Jan de Groot + +pkgname=gnome-music +pkgver=3.16.2 +pkgrel=2 +pkgdesc="Music player and management application" +arch=(i686 x86_64) +license=('GPL') +url="https://wiki.gnome.org/Apps/Music"; +depends=(grilo grilo-plugins tracker libdmapsharing python-dbus dbus-glib gnome-themes-standard gtk3 gvfs python-gobject python-cairo gst-plugins-base) +makedepends=(intltool itstool python2 gobject-introspection) +optdepends=('gst-plugins-good: Extra media codecs' +'gst-plugins-ugly: Extra media codecs' +'gst-plugins-bad: Extra media codecs' +'gst-libav: Extra media codecs') +groups=('gnome-extra') +install=gnome-music.install +source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz) +sha256sums=('362cf90f6cd41c38845b7afa01ce2f5fbb70ce7694139a69f5dac16620723588') + +build() { + cd $pkgname-$pkgver + ./configure --prefix=/usr --disable-schemas-compile + make +} + +package() { + cd $pkgname-$pkgver + make -j1 DESTDIR="${pkgdir}" install +} Copied: gnome-music/repos/staging-i686/gnome-music.install (from rev 247050, gnome-music/trunk/gnome-music.install) === --- staging-i686/gnome-music.install(rev 0) +++ staging-i686/gnome-music.install2015-09-22 04:05:59 UTC (rev 247051) @@ -0,0 +1,12 @@ +post_install() { + glib-compile-schemas usr/share/glib-2.0/schemas + gtk-update-icon-cache -q -t -f usr/share/icons/hicolor +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} Copied: gnome-music/repos/staging-x86_64/PKGBUILD (from rev 247050, gnome-music/trunk/PKGBUILD) === --- staging-x86_64/PKGBUILD (rev 0) +++ staging-x86_64/PKGBUILD 2015-09-22 04:05:59 UTC (rev 247051) @@ -0,0 +1,31 @@ +# $Id$ +# Maintainer: Jan de Groot + +pkgname=gnome-music +pkgver=3.16.2 +pkgrel=2 +pkgdesc="Music player and management application" +arch=(i686 x86_64) +license=('GPL') +url="https://wiki.gnome.org/Apps/Music"; +depends=(grilo grilo-plugins tracker libdmapsharing python-dbus dbus-glib gnome-themes-standard gtk3 gvfs python-gobject python-cairo gst-plugins-base) +makedepends=(intltool itstool python2 gobject-introspection) +optdepends=('gst-plugins-good: Extra media codecs' +'gst-plugins-ugly: Extra media codecs' +'gst-plugins-bad: Extra media codecs' +'gst-libav: Extra media codecs') +groups=('gnome-extra') +install=gnome-music.install +source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz) +sha256sums=('362cf90f6cd41c38845b7afa01ce2f5fbb70ce7694139a69f5dac16620723588') + +build() { + cd $pkgname-$pkgver + ./configure --prefix=/usr --disable-schemas-compile + make +} + +package() { + cd $pkgname-$pkgver + make -j1 DESTDIR="${pkgdir}" install +} Copied: gnome-music/repos/staging-x86_64/gnome-music.install (from rev 247050, gnome-music/trunk/gnome-music.install) === --- staging-x86_64/gnome-music.install (rev 0) +++ staging-x86_64/gnome-music.install 2015-09-22 04:05:59 UTC (rev 247051) @@ -0,0 +1,12 @@ +post_install() { + glib-compile-schemas usr/share/glib-2.0/schemas + gtk-update-icon-cache -q -t -f usr/share/icons/hicolor +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +}
[arch-commits] Commit in gnome-music/trunk (PKGBUILD)
Date: Tuesday, September 22, 2015 @ 06:05:14 Author: fyan Revision: 247050 upgpkg: gnome-music 3.16.2-2 rebuild for python 3.5 Modified: gnome-music/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2015-09-22 03:52:45 UTC (rev 247049) +++ PKGBUILD2015-09-22 04:05:14 UTC (rev 247050) @@ -3,7 +3,7 @@ pkgname=gnome-music pkgver=3.16.2 -pkgrel=1 +pkgrel=2 pkgdesc="Music player and management application" arch=(i686 x86_64) license=('GPL')
[arch-commits] Commit in orca/trunk (PKGBUILD)
Date: Tuesday, September 22, 2015 @ 05:52:27 Author: fyan Revision: 247048 upgpkg: orca 3.16.2-2 rebuild for python 3.5 Modified: orca/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2015-09-22 03:33:51 UTC (rev 247047) +++ PKGBUILD2015-09-22 03:52:27 UTC (rev 247048) @@ -5,7 +5,7 @@ pkgname=orca pkgver=3.16.2 -pkgrel=1 +pkgrel=2 pkgdesc="Screen reader for individuals who are blind or visually impaired" arch=(any) license=('LGPL')
[arch-commits] Commit in orca/repos (3 files)
Date: Tuesday, September 22, 2015 @ 05:52:45 Author: fyan Revision: 247049 archrelease: copy trunk to staging-any Added: orca/repos/staging-any/ orca/repos/staging-any/PKGBUILD (from rev 247048, orca/trunk/PKGBUILD) orca/repos/staging-any/orca.install (from rev 247048, orca/trunk/orca.install) --+ PKGBUILD | 30 ++ orca.install | 11 +++ 2 files changed, 41 insertions(+) Copied: orca/repos/staging-any/PKGBUILD (from rev 247048, orca/trunk/PKGBUILD) === --- staging-any/PKGBUILD(rev 0) +++ staging-any/PKGBUILD2015-09-22 03:52:45 UTC (rev 247049) @@ -0,0 +1,30 @@ +# $Id$ +# Maintainer: Jan Alexander Steffens (heftig) +# Contributor: Jan de Groot +# Contributor: William Rea + +pkgname=orca +pkgver=3.16.2 +pkgrel=2 +pkgdesc="Screen reader for individuals who are blind or visually impaired" +arch=(any) +license=('LGPL') +url="http://www.gnome.org/projects/orca"; +install=orca.install +depends=(gtk3 at-spi2-atk python-atspi python-dbus python-xdg speech-dispatcher liblouis brltty + xorg-xmodmap hicolor-icon-theme gsettings-desktop-schemas) +makedepends=(itstool intltool python2) +groups=(gnome-extra) +source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz) +sha256sums=('cd14b28878cc04166ec43c7d9a8e6b0056c66cbfb1e4f934f12f74568937789a') + +build() { + cd $pkgname-$pkgver + ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var + make +} + +package() { + cd $pkgname-$pkgver + make DESTDIR="$pkgdir" install +} Copied: orca/repos/staging-any/orca.install (from rev 247048, orca/trunk/orca.install) === --- staging-any/orca.install(rev 0) +++ staging-any/orca.install2015-09-22 03:52:45 UTC (rev 247049) @@ -0,0 +1,11 @@ +post_install() { + gtk-update-icon-cache -q -t -f usr/share/icons/hicolor +} + +post_upgrade() { + post_install $1 +} + +post_remove() { + post_install $1 +}
[arch-commits] Commit in lollypop/repos (3 files)
Date: Tuesday, September 22, 2015 @ 05:46:25 Author: fyan Revision: 141434 archrelease: copy trunk to community-staging-any Added: lollypop/repos/community-staging-any/ lollypop/repos/community-staging-any/PKGBUILD (from rev 141433, lollypop/trunk/PKGBUILD) lollypop/repos/community-staging-any/lollypop.install (from rev 141433, lollypop/trunk/lollypop.install) --+ PKGBUILD | 38 ++ lollypop.install | 15 +++ 2 files changed, 53 insertions(+) Copied: lollypop/repos/community-staging-any/PKGBUILD (from rev 141433, lollypop/trunk/PKGBUILD) === --- community-staging-any/PKGBUILD (rev 0) +++ community-staging-any/PKGBUILD 2015-09-22 03:46:25 UTC (rev 141434) @@ -0,0 +1,38 @@ +# $Id$ +# Maintainer: Maxime Gauduin +# Contributor: kirek +# Contributor: Cédric Bellegarde + +pkgname=lollypop +pkgver=0.9.42 +pkgrel=3 +pkgdesc='Music player for GNOME' +arch=('any') +url='https://github.com/gnumdk/lollypop' +license=('GPL') +depends=('desktop-file-utils' 'gtk3' 'python-cairo' + 'python-dbus' 'python-gobject' 'totem-plparser') +makedepends=('gobject-introspection' 'intltool' 'itstool' 'python') +optdepends=('libsecret: Last.FM support' +'python-pylast: Last.FM support' +'python-wikipedia: Wikipedia support') +install='lollypop.install' +source=("https://github.com/gnumdk/lollypop/releases/download/${pkgver}/lollypop-${pkgver}.tar.xz";) +sha256sums=('65d44d073a249d9c9562ed1bbda65bb28173ab86df5dd045034b34e346110d20') + +build() { + cd lollypop-${pkgver} + + ./configure \ +--prefix='/usr' \ +--disable-schemas-compile + make +} + +package() { + cd lollypop-${pkgver} + + make DESTDIR="${pkgdir}" install +} + +# vim: ts=2 sw=2 et: Copied: lollypop/repos/community-staging-any/lollypop.install (from rev 141433, lollypop/trunk/lollypop.install) === --- community-staging-any/lollypop.install (rev 0) +++ community-staging-any/lollypop.install 2015-09-22 03:46:25 UTC (rev 141434) @@ -0,0 +1,15 @@ +post_install() { + glib-compile-schemas /usr/share/glib-2.0/schemas + gtk-update-icon-cache -ftq /usr/share/icons/hicolor + update-desktop-database -q +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} + +# vim: ts=2 sw=2 et:
[arch-commits] Commit in lollypop/trunk (PKGBUILD)
Date: Tuesday, September 22, 2015 @ 05:46:05 Author: fyan Revision: 141433 upgpkg: lollypop 0.9.42-3 rebuild for python 3.5 Modified: lollypop/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2015-09-22 03:29:03 UTC (rev 141432) +++ PKGBUILD2015-09-22 03:46:05 UTC (rev 141433) @@ -5,7 +5,7 @@ pkgname=lollypop pkgver=0.9.42 -pkgrel=2 +pkgrel=3 pkgdesc='Music player for GNOME' arch=('any') url='https://github.com/gnumdk/lollypop'
[arch-commits] Commit in caribou/repos (6 files)
Date: Tuesday, September 22, 2015 @ 05:33:51 Author: fyan Revision: 247047 archrelease: copy trunk to staging-i686, staging-x86_64 Added: caribou/repos/staging-i686/ caribou/repos/staging-i686/PKGBUILD (from rev 247046, caribou/trunk/PKGBUILD) caribou/repos/staging-i686/caribou.install (from rev 247046, caribou/trunk/caribou.install) caribou/repos/staging-x86_64/ caribou/repos/staging-x86_64/PKGBUILD (from rev 247046, caribou/trunk/PKGBUILD) caribou/repos/staging-x86_64/caribou.install (from rev 247046, caribou/trunk/caribou.install) + staging-i686/PKGBUILD | 42 +++ staging-i686/caribou.install | 13 staging-x86_64/PKGBUILD| 42 +++ staging-x86_64/caribou.install | 13 4 files changed, 110 insertions(+) Copied: caribou/repos/staging-i686/PKGBUILD (from rev 247046, caribou/trunk/PKGBUILD) === --- staging-i686/PKGBUILD (rev 0) +++ staging-i686/PKGBUILD 2015-09-22 03:33:51 UTC (rev 247047) @@ -0,0 +1,42 @@ +# $Id$ +# Maintainer : Ionut Biru +# Contributor: Adam Hani Schakaki + +pkgname=caribou +pkgver=0.4.18.1 +pkgrel=3 +pkgdesc="A text entry and UI navigation application (on-screen keyboard)" +arch=('i686' 'x86_64') +url="http://live.gnome.org/Caribou"; +license=(LGPL) +depends=(at-spi2-atk python-atspi python-gobject gtk3 libxklavier libgee clutter dconf) +makedepends=(intltool docbook-xsl gtk2 gobject-introspection vala) +install=caribou.install +options=(!emptydirs) +source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz) +sha256sums=('aefadf125a647fc68696f4134e99ee43dca121da5de8e1edf6eab5664a9f3150') + +build() { + cd $pkgname-$pkgver + ./configure --prefix=/usr --sysconfdir=/etc \ +--libexecdir=/usr/lib/$pkgname \ +--disable-static \ +--disable-schemas-compile + + # https://bugzilla.gnome.org/show_bug.cgi?id=655517 + sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool + + make +} + +check() { + cd $pkgname-$pkgver + make -k check +} + +package() { + cd $pkgname-$pkgver + make DESTDIR="$pkgdir" install +} + +# vim:set ts=2 sw=2 et: Copied: caribou/repos/staging-i686/caribou.install (from rev 247046, caribou/trunk/caribou.install) === --- staging-i686/caribou.install(rev 0) +++ staging-i686/caribou.install2015-09-22 03:33:51 UTC (rev 247047) @@ -0,0 +1,13 @@ +pkgname=caribou + +post_install() { + glib-compile-schemas usr/share/glib-2.0/schemas +} + +post_upgrade() { + post_install $1 +} + +post_remove() { + glib-compile-schemas usr/share/glib-2.0/schemas +} Copied: caribou/repos/staging-x86_64/PKGBUILD (from rev 247046, caribou/trunk/PKGBUILD) === --- staging-x86_64/PKGBUILD (rev 0) +++ staging-x86_64/PKGBUILD 2015-09-22 03:33:51 UTC (rev 247047) @@ -0,0 +1,42 @@ +# $Id$ +# Maintainer : Ionut Biru +# Contributor: Adam Hani Schakaki + +pkgname=caribou +pkgver=0.4.18.1 +pkgrel=3 +pkgdesc="A text entry and UI navigation application (on-screen keyboard)" +arch=('i686' 'x86_64') +url="http://live.gnome.org/Caribou"; +license=(LGPL) +depends=(at-spi2-atk python-atspi python-gobject gtk3 libxklavier libgee clutter dconf) +makedepends=(intltool docbook-xsl gtk2 gobject-introspection vala) +install=caribou.install +options=(!emptydirs) +source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz) +sha256sums=('aefadf125a647fc68696f4134e99ee43dca121da5de8e1edf6eab5664a9f3150') + +build() { + cd $pkgname-$pkgver + ./configure --prefix=/usr --sysconfdir=/etc \ +--libexecdir=/usr/lib/$pkgname \ +--disable-static \ +--disable-schemas-compile + + # https://bugzilla.gnome.org/show_bug.cgi?id=655517 + sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool + + make +} + +check() { + cd $pkgname-$pkgver + make -k check +} + +package() { + cd $pkgname-$pkgver + make DESTDIR="$pkgdir" install +} + +# vim:set ts=2 sw=2 et: Copied: caribou/repos/staging-x86_64/caribou.install (from rev 247046, caribou/trunk/caribou.install) === --- staging-x86_64/caribou.install (rev 0) +++ staging-x86_64/caribou.install 2015-09-22 03:33:51 UTC (rev 247047) @@ -0,0 +1,13 @@ +pkgname=caribou + +post_install() { + glib-compile-schemas usr/share/glib-2.0/schemas +} + +post_upgrade() { + post_install $1 +} + +post_remove() { + glib-compile-schemas usr/share/glib-2.0/schemas +}
[arch-commits] Commit in caribou/trunk (PKGBUILD)
Date: Tuesday, September 22, 2015 @ 05:33:22 Author: fyan Revision: 247046 upgpkg: caribou 0.4.18.1-3 rebuild for python 3.5 Modified: caribou/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2015-09-22 02:35:17 UTC (rev 247045) +++ PKGBUILD2015-09-22 03:33:22 UTC (rev 247046) @@ -4,7 +4,7 @@ pkgname=caribou pkgver=0.4.18.1 -pkgrel=2 +pkgrel=3 pkgdesc="A text entry and UI navigation application (on-screen keyboard)" arch=('i686' 'x86_64') url="http://live.gnome.org/Caribou";
[arch-commits] Commit in python-requests-oauthlib/trunk (PKGBUILD)
Date: Tuesday, September 22, 2015 @ 05:28:45 Author: fyan Revision: 141431 upgpkg: python-requests-oauthlib 0.5.0.20150919-1 rebuild for python 3.5 Modified: python-requests-oauthlib/trunk/PKGBUILD --+ PKGBUILD | 29 - 1 file changed, 16 insertions(+), 13 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-09-22 03:17:58 UTC (rev 141430) +++ PKGBUILD2015-09-22 03:28:45 UTC (rev 141431) @@ -5,35 +5,38 @@ pkgbase=python-requests-oauthlib pkgname=('python-requests-oauthlib' 'python2-requests-oauthlib') -_pkgname=requests-oauthlib -pkgver=0.5.0 +_pypiname=requests-oauthlib +pkgver=0.5.0.20150919 +_commit=c68b16f59bb6922338aaa80d1041e049290e5e3c pkgrel=1 pkgdesc="First-class OAuth library support for Requests" arch=('any') url="https://pypi.python.org/pypi/requests-oauthlib"; license=('custom:ISC') -makedepends=('python-setuptools' 'python2-setuptools' 'python-requests' 'python2-requests' 'python-oauthlib' 'python2-oauthlib') -checkdepends=('python-pytest' 'python2-pytest' 'python-mock' 'python2-mock') -source=("https://pypi.python.org/packages/source/r/${_pkgname}/${_pkgname}-${pkgver}.tar.gz";) -md5sums=('139a17c495fb593b5842634faf72ebb0') +makedepends=('python-setuptools' 'python2-setuptools' 'python-requests' 'python2-requests' + 'python-oauthlib' 'python2-oauthlib' 'git') +checkdepends=('python-pytest' 'python2-pytest' 'python-mock' 'python2-mock' + 'python-pyjwt' 'python2-pyjwt') +source=("git+https://github.com/requests/requests-oauthlib.git#commit=$_commit";) +md5sums=('SKIP') prepare() { - cp -a ${_pkgname}-$pkgver{,-py2} + cp -a ${_pypiname}{,-py2} } build() { - cd "$srcdir/${_pkgname}-$pkgver" + cd "$srcdir/${_pypiname}" python setup.py build - cd "$srcdir/${_pkgname}-$pkgver-py2" + cd "$srcdir/${_pypiname}-py2" python2 setup.py build } check() { - cd "$srcdir/${_pkgname}-$pkgver" + cd "$srcdir/${_pypiname}" py.test - cd "$srcdir/${_pkgname}-$pkgver-py2" + cd "$srcdir/${_pypiname}-py2" py.test2 } @@ -40,7 +43,7 @@ package_python-requests-oauthlib() { depends=('python-requests' 'python-oauthlib') - cd "$srcdir/${_pkgname}-$pkgver" + cd "$srcdir/${_pypiname}" python setup.py install --root="$pkgdir/" --optimize=1 install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" } @@ -48,7 +51,7 @@ package_python2-requests-oauthlib() { depends=('python2-requests' 'python2-oauthlib') - cd "$srcdir/${_pkgname}-$pkgver-py2" + cd "$srcdir/${_pypiname}-py2" python2 setup.py install --root="$pkgdir/" --optimize=1 install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" }
[arch-commits] Commit in python-requests-oauthlib/repos (2 files)
Date: Tuesday, September 22, 2015 @ 05:29:03 Author: fyan Revision: 141432 archrelease: copy trunk to community-staging-any Added: python-requests-oauthlib/repos/community-staging-any/ python-requests-oauthlib/repos/community-staging-any/PKGBUILD (from rev 141431, python-requests-oauthlib/trunk/PKGBUILD) --+ PKGBUILD | 57 + 1 file changed, 57 insertions(+) Copied: python-requests-oauthlib/repos/community-staging-any/PKGBUILD (from rev 141431, python-requests-oauthlib/trunk/PKGBUILD) === --- community-staging-any/PKGBUILD (rev 0) +++ community-staging-any/PKGBUILD 2015-09-22 03:29:03 UTC (rev 141432) @@ -0,0 +1,57 @@ +# $Id: PKGBUILD 122344 2014-11-11 08:16:49Z fyan $ +# Maintainer: Felix Yan +# Contributor: Sebastien Leduc +# Contributor: Roberto Catini + +pkgbase=python-requests-oauthlib +pkgname=('python-requests-oauthlib' 'python2-requests-oauthlib') +_pypiname=requests-oauthlib +pkgver=0.5.0.20150919 +_commit=c68b16f59bb6922338aaa80d1041e049290e5e3c +pkgrel=1 +pkgdesc="First-class OAuth library support for Requests" +arch=('any') +url="https://pypi.python.org/pypi/requests-oauthlib"; +license=('custom:ISC') +makedepends=('python-setuptools' 'python2-setuptools' 'python-requests' 'python2-requests' + 'python-oauthlib' 'python2-oauthlib' 'git') +checkdepends=('python-pytest' 'python2-pytest' 'python-mock' 'python2-mock' + 'python-pyjwt' 'python2-pyjwt') +source=("git+https://github.com/requests/requests-oauthlib.git#commit=$_commit";) +md5sums=('SKIP') + +prepare() { + cp -a ${_pypiname}{,-py2} +} + +build() { + cd "$srcdir/${_pypiname}" + python setup.py build + + cd "$srcdir/${_pypiname}-py2" + python2 setup.py build +} + +check() { + cd "$srcdir/${_pypiname}" + py.test + + cd "$srcdir/${_pypiname}-py2" + py.test2 +} + +package_python-requests-oauthlib() { + depends=('python-requests' 'python-oauthlib') + + cd "$srcdir/${_pypiname}" + python setup.py install --root="$pkgdir/" --optimize=1 + install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +} + +package_python2-requests-oauthlib() { + depends=('python2-requests' 'python2-oauthlib') + + cd "$srcdir/${_pypiname}-py2" + python2 setup.py install --root="$pkgdir/" --optimize=1 + install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +}
[arch-commits] Commit in python-pyjwt/repos (2 files)
Date: Tuesday, September 22, 2015 @ 05:17:58 Author: fyan Revision: 141430 archrelease: copy trunk to community-staging-any Added: python-pyjwt/repos/community-staging-any/ python-pyjwt/repos/community-staging-any/PKGBUILD (from rev 141429, python-pyjwt/trunk/PKGBUILD) --+ PKGBUILD | 54 ++ 1 file changed, 54 insertions(+) Copied: python-pyjwt/repos/community-staging-any/PKGBUILD (from rev 141429, python-pyjwt/trunk/PKGBUILD) === --- community-staging-any/PKGBUILD (rev 0) +++ community-staging-any/PKGBUILD 2015-09-22 03:17:58 UTC (rev 141430) @@ -0,0 +1,54 @@ +# $Id$ +# Maintainer: Felix Yan + +pkgbase=python-pyjwt +pkgname=('python-pyjwt' 'python2-pyjwt') +pkgver=1.4.0 +pkgrel=1 +pkgdesc='JSON Web Token implementation in Python' +arch=('any') +url='http://github.com/jpadilla/pyjwt' +license=('MIT') +makedepends=('python-setuptools' 'python2-setuptools' 'git') +checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'python-pytest-cov' 'python2-pytest-cov') +source=("git+https://github.com/jpadilla/pyjwt.git#tag=$pkgver";) +md5sums=('SKIP') + +prepare() { + cp -a pyjwt{,-py2} +} + +build() { + cd "$srcdir/pyjwt" + python setup.py build + + cd "$srcdir/pyjwt-py2" + python2 setup.py build +} + +check() { + cd "$srcdir/pyjwt" + python setup.py ptr + + cd "$srcdir/pyjwt-py2" + python2 setup.py ptr || warning "Tests failed" +} + +package_python-pyjwt() { + depends=('python-setuptools') + + cd "$srcdir/pyjwt" + python3 setup.py install --root="$pkgdir" -O1 + install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +} + +package_python2-pyjwt() { + depends=('python2-setuptools') + + cd "$srcdir/pyjwt-py2" + python2 setup.py install --root="$pkgdir" -O1 + install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" + + mv "$pkgdir/usr/bin/jwt"{,2} +} +
[arch-commits] Commit in (4 files)
Date: Tuesday, September 22, 2015 @ 05:17:31 Author: fyan Revision: 141429 addpkg: python-pyjwt 1.4.0-1 Added: python-pyjwt/ python-pyjwt/repos/ python-pyjwt/trunk/ python-pyjwt/trunk/PKGBUILD --+ PKGBUILD | 54 ++ 1 file changed, 54 insertions(+) Added: python-pyjwt/trunk/PKGBUILD === --- python-pyjwt/trunk/PKGBUILD (rev 0) +++ python-pyjwt/trunk/PKGBUILD 2015-09-22 03:17:31 UTC (rev 141429) @@ -0,0 +1,54 @@ +# $Id$ +# Maintainer: Felix Yan + +pkgbase=python-pyjwt +pkgname=('python-pyjwt' 'python2-pyjwt') +pkgver=1.4.0 +pkgrel=1 +pkgdesc='JSON Web Token implementation in Python' +arch=('any') +url='http://github.com/jpadilla/pyjwt' +license=('MIT') +makedepends=('python-setuptools' 'python2-setuptools' 'git') +checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'python-pytest-cov' 'python2-pytest-cov') +source=("git+https://github.com/jpadilla/pyjwt.git#tag=$pkgver";) +md5sums=('SKIP') + +prepare() { + cp -a pyjwt{,-py2} +} + +build() { + cd "$srcdir/pyjwt" + python setup.py build + + cd "$srcdir/pyjwt-py2" + python2 setup.py build +} + +check() { + cd "$srcdir/pyjwt" + python setup.py ptr + + cd "$srcdir/pyjwt-py2" + python2 setup.py ptr || warning "Tests failed" +} + +package_python-pyjwt() { + depends=('python-setuptools') + + cd "$srcdir/pyjwt" + python3 setup.py install --root="$pkgdir" -O1 + install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +} + +package_python2-pyjwt() { + depends=('python2-setuptools') + + cd "$srcdir/pyjwt-py2" + python2 setup.py install --root="$pkgdir" -O1 + install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" + + mv "$pkgdir/usr/bin/jwt"{,2} +} + Property changes on: python-pyjwt/trunk/PKGBUILD ___ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property
[arch-commits] Commit in stuntrally-data/trunk (PKGBUILD)
Date: Tuesday, September 22, 2015 @ 05:00:44 Author: svenstaro Revision: 141427 upgpkg: stuntrally-data 2.6-2 Fix file conflict Modified: stuntrally-data/trunk/PKGBUILD --+ PKGBUILD |3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2015-09-22 03:00:13 UTC (rev 141426) +++ PKGBUILD2015-09-22 03:00:44 UTC (rev 141427) @@ -3,7 +3,7 @@ pkgname=stuntrally-data _pkgname=stuntrally pkgver=2.6 -pkgrel=1 +pkgrel=2 pkgdesc="Stunt Rally game with track editor, based on VDrift (data files)" arch=('any') license=('GPL3') @@ -52,4 +52,5 @@ rm -rf "${pkgdir}/usr/share/applications" rm -rf "${pkgdir}/usr/include" rm -rf "${pkgdir}/usr/bin" + rm -rf "${pkgdir}/usr/lib" }
[arch-commits] Commit in stuntrally-data/repos/community-any (PKGBUILD PKGBUILD)
Date: Tuesday, September 22, 2015 @ 05:01:02 Author: svenstaro Revision: 141428 archrelease: copy trunk to community-any Added: stuntrally-data/repos/community-any/PKGBUILD (from rev 141427, stuntrally-data/trunk/PKGBUILD) Deleted: stuntrally-data/repos/community-any/PKGBUILD --+ PKGBUILD | 111 ++--- 1 file changed, 56 insertions(+), 55 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2015-09-22 03:00:44 UTC (rev 141427) +++ PKGBUILD2015-09-22 03:01:02 UTC (rev 141428) @@ -1,55 +0,0 @@ -# Maintainer: Sven-Hendrik Haase - -pkgname=stuntrally-data -_pkgname=stuntrally -pkgver=2.6 -pkgrel=1 -pkgdesc="Stunt Rally game with track editor, based on VDrift (data files)" -arch=('any') -license=('GPL3') -url="http://code.google.com/p/vdrift-ogre"; -makedepends=('cmake' 'boost' 'libvorbis' 'mygui' 'sdl2' 'enet' 'hicolor-icon-theme' 'libxcursor' 'bullet' 'openal') -source=("$pkgname-$pkgver.tar.gz::https://github.com/stuntrally/stuntrally/archive/${pkgver}.tar.gz"; - "$pkgname-tracks-$pkgver.tar.gz::https://github.com/stuntrally/tracks/archive/${pkgver}.tar.gz";) -sha256sums=('8cc309d27d26f78dcc596440547d68b5e41d02ef830df2d52d38611d45ebbaca' -'4bce700516a2a178ac04cfbf7df2887ba42225802f5a3e670f770ea01345687b') - -build() { - # build the sources - cd "${srcdir}/stuntrally-${pkgver}/" - - rm -rf build - mkdir build && cd build - - cmake .. \ - -DCMAKE_INSTALL_PREFIX="/usr" \ - -DSHARE_INSTALL="share/stuntrally" - make - - # build the tracks - cd "${srcdir}/tracks-${pkgver}/" - - rm -rf build - mkdir build && cd build - - cmake .. \ - -DCMAKE_INSTALL_PREFIX="/usr" - make -} - -package() { - # install the sources - cd "${srcdir}/stuntrally-${pkgver}/build/" - make DESTDIR="${pkgdir}" install - - # install the tracks - cd "${srcdir}/tracks-${pkgver}/build" - make DESTDIR="${pkgdir}/usr/share/stuntrally/" install - - # clean up - rm -rf "${pkgdir}/usr/share/stuntrally/tracks/build" - rm -rf "${pkgdir}/usr/share/icons" - rm -rf "${pkgdir}/usr/share/applications" - rm -rf "${pkgdir}/usr/include" - rm -rf "${pkgdir}/usr/bin" -} Copied: stuntrally-data/repos/community-any/PKGBUILD (from rev 141427, stuntrally-data/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2015-09-22 03:01:02 UTC (rev 141428) @@ -0,0 +1,56 @@ +# Maintainer: Sven-Hendrik Haase + +pkgname=stuntrally-data +_pkgname=stuntrally +pkgver=2.6 +pkgrel=2 +pkgdesc="Stunt Rally game with track editor, based on VDrift (data files)" +arch=('any') +license=('GPL3') +url="http://code.google.com/p/vdrift-ogre"; +makedepends=('cmake' 'boost' 'libvorbis' 'mygui' 'sdl2' 'enet' 'hicolor-icon-theme' 'libxcursor' 'bullet' 'openal') +source=("$pkgname-$pkgver.tar.gz::https://github.com/stuntrally/stuntrally/archive/${pkgver}.tar.gz"; + "$pkgname-tracks-$pkgver.tar.gz::https://github.com/stuntrally/tracks/archive/${pkgver}.tar.gz";) +sha256sums=('8cc309d27d26f78dcc596440547d68b5e41d02ef830df2d52d38611d45ebbaca' +'4bce700516a2a178ac04cfbf7df2887ba42225802f5a3e670f770ea01345687b') + +build() { + # build the sources + cd "${srcdir}/stuntrally-${pkgver}/" + + rm -rf build + mkdir build && cd build + + cmake .. \ + -DCMAKE_INSTALL_PREFIX="/usr" \ + -DSHARE_INSTALL="share/stuntrally" + make + + # build the tracks + cd "${srcdir}/tracks-${pkgver}/" + + rm -rf build + mkdir build && cd build + + cmake .. \ + -DCMAKE_INSTALL_PREFIX="/usr" + make +} + +package() { + # install the sources + cd "${srcdir}/stuntrally-${pkgver}/build/" + make DESTDIR="${pkgdir}" install + + # install the tracks + cd "${srcdir}/tracks-${pkgver}/build" + make DESTDIR="${pkgdir}/usr/share/stuntrally/" install + + # clean up + rm -rf "${pkgdir}/usr/share/stuntrally/tracks/build" + rm -rf "${pkgdir}/usr/share/icons" + rm -rf "${pkgdir}/usr/share/applications" + rm -rf "${pkgdir}/usr/include" + rm -rf "${pkgdir}/usr/bin" + rm -rf "${pkgdir}/usr/lib" +}
[arch-commits] Commit in python-slip/repos (2 files)
Date: Tuesday, September 22, 2015 @ 05:00:13 Author: fyan Revision: 141426 archrelease: copy trunk to community-staging-any Added: python-slip/repos/community-staging-any/ python-slip/repos/community-staging-any/PKGBUILD (from rev 141425, python-slip/trunk/PKGBUILD) --+ PKGBUILD | 29 + 1 file changed, 29 insertions(+) Copied: python-slip/repos/community-staging-any/PKGBUILD (from rev 141425, python-slip/trunk/PKGBUILD) === --- community-staging-any/PKGBUILD (rev 0) +++ community-staging-any/PKGBUILD 2015-09-22 03:00:13 UTC (rev 141426) @@ -0,0 +1,29 @@ +# $Id$ +# Maintainer: Maxime Gauduin + +pkgname=python-slip +pkgver=0.6.1 +pkgrel=2 +pkgdesc='Simple Library for Python' +arch=('any') +url='http://fedorahosted.org/python-slip' +license=('GPL2') +depends=('polkit' 'python-dbus' 'python-decorator' 'python-gobject' + 'python-six') +makedepends=('python-setuptools') +source=("http://fedorahosted.org/released/python-slip/python-slip-${pkgver}.tar.bz2";) +sha256sums=('bc897f1ab6f5b4989f85548799aaeb84fde67bbba18e40341bfe1d7885c2fd9a') + +build() { + cd python-slip-${pkgver} + + make +} + +package() { + cd python-slip-${pkgver} + + python setup.py install --root="${pkgdir}" --optimize='1' +} + +# vim: ts=2 sw=2 et:
[arch-commits] Commit in python-slip/trunk (PKGBUILD)
Date: Tuesday, September 22, 2015 @ 04:59:55 Author: fyan Revision: 141425 upgpkg: python-slip 0.6.1-2 rebuild for python 3.5 Modified: python-slip/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2015-09-22 02:56:10 UTC (rev 141424) +++ PKGBUILD2015-09-22 02:59:55 UTC (rev 141425) @@ -3,7 +3,7 @@ pkgname=python-slip pkgver=0.6.1 -pkgrel=1 +pkgrel=2 pkgdesc='Simple Library for Python' arch=('any') url='http://fedorahosted.org/python-slip'
[arch-commits] Commit in python-pytest-django/repos (3 files)
Date: Tuesday, September 22, 2015 @ 04:56:10 Author: fyan Revision: 141424 archrelease: copy trunk to community-staging-any Added: python-pytest-django/repos/community-staging-any/ python-pytest-django/repos/community-staging-any/PKGBUILD (from rev 141423, python-pytest-django/trunk/PKGBUILD) python-pytest-django/repos/community-staging-any/remove-assertion-in-django_settings_is_configured.patch (from rev 141423, python-pytest-django/trunk/remove-assertion-in-django_settings_is_configured.patch) -+ PKGBUILD| 66 ++ remove-assertion-in-django_settings_is_configured.patch | 27 + 2 files changed, 93 insertions(+) Copied: python-pytest-django/repos/community-staging-any/PKGBUILD (from rev 141423, python-pytest-django/trunk/PKGBUILD) === --- community-staging-any/PKGBUILD (rev 0) +++ community-staging-any/PKGBUILD 2015-09-22 02:56:10 UTC (rev 141424) @@ -0,0 +1,66 @@ +# $Id$ +# Maintainer: Felix Yan + +pkgbase=python-pytest-django +pkgname=('python-pytest-django' 'python2-pytest-django') +pkgver=2.8.0 +pkgrel=3 +pkgdesc="A Django plugin for py.test" +arch=('any') +license=('BSD') +url="https://github.com/pytest-dev/pytest-django"; +makedepends=('python-pytest' 'python2-pytest' 'git') +checkdepends=('python-django' 'python2-django' 'python-pytest-xdist' 'python2-pytest-xdist' + 'twine' 'python2-twine' 'python-south' 'python2-south') +source=("git+https://github.com/pytest-dev/pytest-django.git#tag=v$pkgver"; +remove-assertion-in-django_settings_is_configured.patch) +sha512sums=('SKIP' + '3f94b06e83c31a949b0bee5ec9220d137ee4c594e4428f6b22f9e73bb2dbdeb6c2e92561343b940acfda4408b5dc756d3d4c5828818f3554bca644b9bdca9781') + +prepare() { + # https://github.com/pytest-dev/pytest-django/issues/146 + (cd pytest-django; patch -p1 -i ../remove-assertion-in-django_settings_is_configured.patch) + + cp -a pytest-django{,-py2} +} + +build() { + cd "$srcdir/pytest-django" + python setup.py build + + cd "$srcdir/pytest-django-py2" + python2 setup.py build +} + +check() { + # Hack entry points by installing it + + cd "$srcdir/pytest-django" + python setup.py install --root="$PWD/tmp_install" --optimize=1 + PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH:$PWD" \ + DJANGO_SETTINGS_MODULE=pytest_django_test.settings_sqlite \ +py.test tests || warning "Tests failed" + + cd "$srcdir/pytest-django-py2" + python2 setup.py install --root="$PWD/tmp_install" --optimize=1 + PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH:$PWD" \ + DJANGO_SETTINGS_MODULE=pytest_django_test.settings_sqlite \ +py.test2 tests || warning "Tests failed" + # failed with pytest 2.8, skipping for now. +} + +package_python-pytest-django() { + depends=('python-pytest') + + cd pytest-django + python setup.py install --root="${pkgdir}" --optimize=1 + install -Dm664 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +} + +package_python2-pytest-django() { + depends=('python2-pytest') + + cd pytest-django-py2 + python2 setup.py install --root="${pkgdir}" --optimize=1 + install -Dm664 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +} Copied: python-pytest-django/repos/community-staging-any/remove-assertion-in-django_settings_is_configured.patch (from rev 141423, python-pytest-django/trunk/remove-assertion-in-django_settings_is_configured.patch) === --- community-staging-any/remove-assertion-in-django_settings_is_configured.patch (rev 0) +++ community-staging-any/remove-assertion-in-django_settings_is_configured.patch 2015-09-22 02:56:10 UTC (rev 141424) @@ -0,0 +1,27 @@ +From 963e04688a19e125b86ba026d3ef09e4afe17f69 Mon Sep 17 00:00:00 2001 +From: Daniel Hahler +Date: Mon, 2 Mar 2015 19:38:22 +0100 +Subject: [PATCH] Remove assertion in django_settings_is_configured + +django.conf.settings.configured is not necessarily True, in case DSM +wasn't set during `pytest_load_initial_conftests`, but gets set in the +project's conftest (via `pytest_configure`). + +Fixes https://github.com/pytest-dev/pytest-django/issues/146 +--- + pytest_django/lazy_django.py | 2 -- + 1 file changed, 2 deletions(-) + +diff --git a/pytest_django/lazy_django.py b/pytest_django/lazy_django.py +index 8458040..4ba4d5a 100644 +--- a/pytest_django/lazy_django.py b/pytest_django/lazy_django.py +@@ -22,8 +22,6 @@ def django_settings_is_configured(): + + # If DJANGO_SETTINGS_MODULE is defined at this point, Django is assumed to + # always be loaded. +-from django.conf import settings +-assert settings.configured is True + return True + +
[arch-commits] Commit in python-pytest-django/trunk (PKGBUILD)
Date: Tuesday, September 22, 2015 @ 04:51:24 Author: fyan Revision: 141423 upgpkg: python-pytest-django 2.8.0-3 rebuild for python 3.5 Modified: python-pytest-django/trunk/PKGBUILD --+ PKGBUILD |7 --- 1 file changed, 4 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-09-22 02:25:02 UTC (rev 141422) +++ PKGBUILD2015-09-22 02:51:24 UTC (rev 141423) @@ -4,7 +4,7 @@ pkgbase=python-pytest-django pkgname=('python-pytest-django' 'python2-pytest-django') pkgver=2.8.0 -pkgrel=2 +pkgrel=3 pkgdesc="A Django plugin for py.test" arch=('any') license=('BSD') @@ -37,7 +37,7 @@ cd "$srcdir/pytest-django" python setup.py install --root="$PWD/tmp_install" --optimize=1 - PYTHONPATH="$PWD/tmp_install/usr/lib/python3.4/site-packages:$PYTHONPATH:$PWD" \ + PYTHONPATH="$PWD/tmp_install/usr/lib/python3.5/site-packages:$PYTHONPATH:$PWD" \ DJANGO_SETTINGS_MODULE=pytest_django_test.settings_sqlite \ py.test tests || warning "Tests failed" @@ -45,7 +45,8 @@ python2 setup.py install --root="$PWD/tmp_install" --optimize=1 PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH:$PWD" \ DJANGO_SETTINGS_MODULE=pytest_django_test.settings_sqlite \ -py.test2 tests +py.test2 tests || warning "Tests failed" + # failed with pytest 2.8, skipping for now. } package_python-pytest-django() {
[arch-commits] Commit in dialog/repos (4 files)
Date: Tuesday, September 22, 2015 @ 04:35:17 Author: foutrelis Revision: 247045 archrelease: copy trunk to testing-i686, testing-x86_64 Added: dialog/repos/testing-i686/ dialog/repos/testing-i686/PKGBUILD (from rev 247044, dialog/trunk/PKGBUILD) dialog/repos/testing-x86_64/ dialog/repos/testing-x86_64/PKGBUILD (from rev 247044, dialog/trunk/PKGBUILD) -+ testing-i686/PKGBUILD | 37 + testing-x86_64/PKGBUILD | 37 + 2 files changed, 74 insertions(+) Copied: dialog/repos/testing-i686/PKGBUILD (from rev 247044, dialog/trunk/PKGBUILD) === --- testing-i686/PKGBUILD (rev 0) +++ testing-i686/PKGBUILD 2015-09-22 02:35:17 UTC (rev 247045) @@ -0,0 +1,37 @@ +# $Id$ +# Maintainer: Evangelos Foutras +# Contributor: Stéphane Gaudreault +# Contributor: Allan McRae +# Contributor: Andreas Radke + +pkgname=dialog +pkgver=1.2_20150920 +pkgrel=1 +epoch=1 +pkgdesc="A tool to display dialog boxes from shell scripts" +arch=('i686' 'x86_64') +url="http://invisible-island.net/dialog/"; +license=('LGPL2.1') +depends=('sh' 'ncurses') +source=(ftp://invisible-island.net/$pkgname/$pkgname-${pkgver/_/-}.tgz) +sha256sums=('c4e61ec5768701683dd4b5b2ebd8a31e6289fa6a1f5801e4b481085650698c05') + +build() { + cd "$srcdir/$pkgname-${pkgver/_/-}" + + ./configure \ +--prefix=/usr \ +--mandir=/usr/share/man \ +--with-ncursesw \ +--with-shared \ +--with-versioned-syms \ +--enable-nls + make +} + +package() { + cd "$srcdir/$pkgname-${pkgver/_/-}" + make DESTDIR="$pkgdir" install-full +} + +# vim:set ts=2 sw=2 et: Copied: dialog/repos/testing-x86_64/PKGBUILD (from rev 247044, dialog/trunk/PKGBUILD) === --- testing-x86_64/PKGBUILD (rev 0) +++ testing-x86_64/PKGBUILD 2015-09-22 02:35:17 UTC (rev 247045) @@ -0,0 +1,37 @@ +# $Id$ +# Maintainer: Evangelos Foutras +# Contributor: Stéphane Gaudreault +# Contributor: Allan McRae +# Contributor: Andreas Radke + +pkgname=dialog +pkgver=1.2_20150920 +pkgrel=1 +epoch=1 +pkgdesc="A tool to display dialog boxes from shell scripts" +arch=('i686' 'x86_64') +url="http://invisible-island.net/dialog/"; +license=('LGPL2.1') +depends=('sh' 'ncurses') +source=(ftp://invisible-island.net/$pkgname/$pkgname-${pkgver/_/-}.tgz) +sha256sums=('c4e61ec5768701683dd4b5b2ebd8a31e6289fa6a1f5801e4b481085650698c05') + +build() { + cd "$srcdir/$pkgname-${pkgver/_/-}" + + ./configure \ +--prefix=/usr \ +--mandir=/usr/share/man \ +--with-ncursesw \ +--with-shared \ +--with-versioned-syms \ +--enable-nls + make +} + +package() { + cd "$srcdir/$pkgname-${pkgver/_/-}" + make DESTDIR="$pkgdir" install-full +} + +# vim:set ts=2 sw=2 et:
[arch-commits] Commit in dialog/trunk (PKGBUILD)
Date: Tuesday, September 22, 2015 @ 04:35:06 Author: foutrelis Revision: 247044 upgpkg: dialog 1:1.2_20150920-1 New upstream release. Modified: dialog/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-09-22 02:26:16 UTC (rev 247043) +++ PKGBUILD2015-09-22 02:35:06 UTC (rev 247044) @@ -5,8 +5,8 @@ # Contributor: Andreas Radke pkgname=dialog -pkgver=1.2_20150528 -pkgrel=2 +pkgver=1.2_20150920 +pkgrel=1 epoch=1 pkgdesc="A tool to display dialog boxes from shell scripts" arch=('i686' 'x86_64') @@ -14,7 +14,7 @@ license=('LGPL2.1') depends=('sh' 'ncurses') source=(ftp://invisible-island.net/$pkgname/$pkgname-${pkgver/_/-}.tgz) -sha256sums=('a8cd7a66bdb41e53a3145cbb0eb370c5ce7300fe0e9ad6d3e8d3b9e16ff16418') +sha256sums=('c4e61ec5768701683dd4b5b2ebd8a31e6289fa6a1f5801e4b481085650698c05') build() { cd "$srcdir/$pkgname-${pkgver/_/-}"
[arch-commits] Commit in python-cairo/trunk (2 files)
Date: Tuesday, September 22, 2015 @ 04:25:45 Author: fyan Revision: 247042 upgpkg: python-cairo 1.10.0-6 rebuild for python 3.5 Modified: python-cairo/trunk/PKGBUILD Deleted: python-cairo/trunk/pycairo-1.10.0-waf-python3.4.patch --+ PKGBUILD | 17 +++-- 1 file changed, 11 insertions(+), 6 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-09-21 19:48:49 UTC (rev 247041) +++ PKGBUILD2015-09-22 02:25:45 UTC (rev 247042) @@ -4,7 +4,8 @@ pkgname=python-cairo pkgver=1.10.0 -pkgrel=5 +_waf_version=1.7.15 +pkgrel=6 pkgdesc="Python bindings for the cairo graphics library" arch=('i686' 'x86_64') url="http://www.cairographics.org/pycairo"; @@ -11,16 +12,20 @@ license=('LGPL3') depends=('python' 'cairo') source=(http://cairographics.org/releases/pycairo-${pkgver}.tar.bz2 -pycairo-1.10.0-waf-python3.4.patch) +http://waf.googlecode.com/files/waf-${_waf_version}.tar.bz2) md5sums=('e6fd3f2f1e6a72e0db0868c4985669c5' - '418e36055c75392f6501918d1c33d448') + 'a62272a3b4eb05b7e5842b4f9839cb98') build() { cd pycairo-${pkgver} + + # use newer waf + cp "$srcdir/waf-$_waf_version/waf" ./ + + # fix compatibility with newer waf + # http://cgit.freedesktop.org/pycairo/commit/?id=c57cd129407c904f8c2f752a59d0183df7b01a5e + sed -e "s/ctx.\(tool_options\|check_tool\)(/ctx.load(/" -i wscript - # https://bugs.gentoo.org/show_bug.cgi?id=504342 - patch -i "$srcdir/pycairo-1.10.0-waf-python3.4.patch" - # Ensure that ./waf has created the cached unpacked version # of the wafadmin source tree. # This will be created to a subdirectory like Deleted: pycairo-1.10.0-waf-python3.4.patch === (Binary files differ)
[arch-commits] Commit in python-cairo/repos (4 files)
Date: Tuesday, September 22, 2015 @ 04:26:16 Author: fyan Revision: 247043 archrelease: copy trunk to staging-i686, staging-x86_64 Added: python-cairo/repos/staging-i686/ python-cairo/repos/staging-i686/PKGBUILD (from rev 247042, python-cairo/trunk/PKGBUILD) python-cairo/repos/staging-x86_64/ python-cairo/repos/staging-x86_64/PKGBUILD (from rev 247042, python-cairo/trunk/PKGBUILD) -+ staging-i686/PKGBUILD | 42 ++ staging-x86_64/PKGBUILD | 42 ++ 2 files changed, 84 insertions(+) Copied: python-cairo/repos/staging-i686/PKGBUILD (from rev 247042, python-cairo/trunk/PKGBUILD) === --- staging-i686/PKGBUILD (rev 0) +++ staging-i686/PKGBUILD 2015-09-22 02:26:16 UTC (rev 247043) @@ -0,0 +1,42 @@ +# $Id$ +# Maintainer: Angel Velasquez +# Maintainer: Jan de Groot + +pkgname=python-cairo +pkgver=1.10.0 +_waf_version=1.7.15 +pkgrel=6 +pkgdesc="Python bindings for the cairo graphics library" +arch=('i686' 'x86_64') +url="http://www.cairographics.org/pycairo"; +license=('LGPL3') +depends=('python' 'cairo') +source=(http://cairographics.org/releases/pycairo-${pkgver}.tar.bz2 +http://waf.googlecode.com/files/waf-${_waf_version}.tar.bz2) +md5sums=('e6fd3f2f1e6a72e0db0868c4985669c5' + 'a62272a3b4eb05b7e5842b4f9839cb98') + +build() { + cd pycairo-${pkgver} + + # use newer waf + cp "$srcdir/waf-$_waf_version/waf" ./ + + # fix compatibility with newer waf + # http://cgit.freedesktop.org/pycairo/commit/?id=c57cd129407c904f8c2f752a59d0183df7b01a5e + sed -e "s/ctx.\(tool_options\|check_tool\)(/ctx.load(/" -i wscript + + # Ensure that ./waf has created the cached unpacked version + # of the wafadmin source tree. + # This will be created to a subdirectory like + #.waf3-1.5.18-a7b91e2a913ce55fa6ecdf310df95752 + python3 ./waf --version + + ./waf configure --prefix=/usr + ./waf build +} + +package() { + cd pycairo-${pkgver} + ./waf install --destdir="${pkgdir}" +} Copied: python-cairo/repos/staging-x86_64/PKGBUILD (from rev 247042, python-cairo/trunk/PKGBUILD) === --- staging-x86_64/PKGBUILD (rev 0) +++ staging-x86_64/PKGBUILD 2015-09-22 02:26:16 UTC (rev 247043) @@ -0,0 +1,42 @@ +# $Id$ +# Maintainer: Angel Velasquez +# Maintainer: Jan de Groot + +pkgname=python-cairo +pkgver=1.10.0 +_waf_version=1.7.15 +pkgrel=6 +pkgdesc="Python bindings for the cairo graphics library" +arch=('i686' 'x86_64') +url="http://www.cairographics.org/pycairo"; +license=('LGPL3') +depends=('python' 'cairo') +source=(http://cairographics.org/releases/pycairo-${pkgver}.tar.bz2 +http://waf.googlecode.com/files/waf-${_waf_version}.tar.bz2) +md5sums=('e6fd3f2f1e6a72e0db0868c4985669c5' + 'a62272a3b4eb05b7e5842b4f9839cb98') + +build() { + cd pycairo-${pkgver} + + # use newer waf + cp "$srcdir/waf-$_waf_version/waf" ./ + + # fix compatibility with newer waf + # http://cgit.freedesktop.org/pycairo/commit/?id=c57cd129407c904f8c2f752a59d0183df7b01a5e + sed -e "s/ctx.\(tool_options\|check_tool\)(/ctx.load(/" -i wscript + + # Ensure that ./waf has created the cached unpacked version + # of the wafadmin source tree. + # This will be created to a subdirectory like + #.waf3-1.5.18-a7b91e2a913ce55fa6ecdf310df95752 + python3 ./waf --version + + ./waf configure --prefix=/usr + ./waf build +} + +package() { + cd pycairo-${pkgver} + ./waf install --destdir="${pkgdir}" +}
[arch-commits] Commit in libdaq/repos (4 files)
Date: Tuesday, September 22, 2015 @ 04:25:02 Author: fyan Revision: 141422 archrelease: copy trunk to community-i686, community-x86_64 Added: libdaq/repos/community-i686/PKGBUILD (from rev 141421, libdaq/trunk/PKGBUILD) libdaq/repos/community-x86_64/PKGBUILD (from rev 141421, libdaq/trunk/PKGBUILD) Deleted: libdaq/repos/community-i686/PKGBUILD libdaq/repos/community-x86_64/PKGBUILD ---+ /PKGBUILD | 50 community-i686/PKGBUILD | 25 -- community-x86_64/PKGBUILD | 25 -- 3 files changed, 50 insertions(+), 50 deletions(-) Deleted: community-i686/PKGBUILD === --- community-i686/PKGBUILD 2015-09-22 02:24:20 UTC (rev 141421) +++ community-i686/PKGBUILD 2015-09-22 02:25:02 UTC (rev 141422) @@ -1,25 +0,0 @@ -# $Id$ -# Maintainer: Lukas Fleischer - -pkgname=libdaq -pkgver=2.0.4 -pkgrel=1 -pkgdesc='Data Acquisition library for packet I/O.' -arch=('i686' 'x86_64') -url='http://www.snort.org/' -license=('GPL') -depends=('libpcap') -makedepends=('ca-certificates') -source=(http://www.snort.org/downloads/snort/daq-${pkgver}.tar.gz) -md5sums=('65e51d72e9d5d8b397e192e4e5857eff') - -build() { - cd "${srcdir}/daq-${pkgver}" - ./configure --prefix=/usr - make -j1 -} - -package() { - cd "${srcdir}/daq-${pkgver}" - make DESTDIR="${pkgdir}" install -} Copied: libdaq/repos/community-i686/PKGBUILD (from rev 141421, libdaq/trunk/PKGBUILD) === --- community-i686/PKGBUILD (rev 0) +++ community-i686/PKGBUILD 2015-09-22 02:25:02 UTC (rev 141422) @@ -0,0 +1,25 @@ +# $Id$ +# Maintainer: Lukas Fleischer + +pkgname=libdaq +pkgver=2.0.6 +pkgrel=1 +pkgdesc='Data Acquisition library for packet I/O.' +arch=('i686' 'x86_64') +url='http://www.snort.org/' +license=('GPL') +depends=('libpcap') +makedepends=('ca-certificates') +source=(http://www.snort.org/downloads/snort/daq-${pkgver}.tar.gz) +md5sums=('2cd6da422a72c129c685fc4bb848c24c') + +build() { + cd "${srcdir}/daq-${pkgver}" + ./configure --prefix=/usr + make -j1 +} + +package() { + cd "${srcdir}/daq-${pkgver}" + make DESTDIR="${pkgdir}" install +} Deleted: community-x86_64/PKGBUILD === --- community-x86_64/PKGBUILD 2015-09-22 02:24:20 UTC (rev 141421) +++ community-x86_64/PKGBUILD 2015-09-22 02:25:02 UTC (rev 141422) @@ -1,25 +0,0 @@ -# $Id$ -# Maintainer: Lukas Fleischer - -pkgname=libdaq -pkgver=2.0.4 -pkgrel=1 -pkgdesc='Data Acquisition library for packet I/O.' -arch=('i686' 'x86_64') -url='http://www.snort.org/' -license=('GPL') -depends=('libpcap') -makedepends=('ca-certificates') -source=(http://www.snort.org/downloads/snort/daq-${pkgver}.tar.gz) -md5sums=('65e51d72e9d5d8b397e192e4e5857eff') - -build() { - cd "${srcdir}/daq-${pkgver}" - ./configure --prefix=/usr - make -j1 -} - -package() { - cd "${srcdir}/daq-${pkgver}" - make DESTDIR="${pkgdir}" install -} Copied: libdaq/repos/community-x86_64/PKGBUILD (from rev 141421, libdaq/trunk/PKGBUILD) === --- community-x86_64/PKGBUILD (rev 0) +++ community-x86_64/PKGBUILD 2015-09-22 02:25:02 UTC (rev 141422) @@ -0,0 +1,25 @@ +# $Id$ +# Maintainer: Lukas Fleischer + +pkgname=libdaq +pkgver=2.0.6 +pkgrel=1 +pkgdesc='Data Acquisition library for packet I/O.' +arch=('i686' 'x86_64') +url='http://www.snort.org/' +license=('GPL') +depends=('libpcap') +makedepends=('ca-certificates') +source=(http://www.snort.org/downloads/snort/daq-${pkgver}.tar.gz) +md5sums=('2cd6da422a72c129c685fc4bb848c24c') + +build() { + cd "${srcdir}/daq-${pkgver}" + ./configure --prefix=/usr + make -j1 +} + +package() { + cd "${srcdir}/daq-${pkgver}" + make DESTDIR="${pkgdir}" install +}
[arch-commits] Commit in libdaq/trunk (PKGBUILD)
Date: Tuesday, September 22, 2015 @ 04:24:20 Author: fyan Revision: 141421 upgpkg: libdaq 2.0.6-1 Modified: libdaq/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-09-21 22:19:09 UTC (rev 141420) +++ PKGBUILD2015-09-22 02:24:20 UTC (rev 141421) @@ -2,7 +2,7 @@ # Maintainer: Lukas Fleischer pkgname=libdaq -pkgver=2.0.4 +pkgver=2.0.6 pkgrel=1 pkgdesc='Data Acquisition library for packet I/O.' arch=('i686' 'x86_64') @@ -11,7 +11,7 @@ depends=('libpcap') makedepends=('ca-certificates') source=(http://www.snort.org/downloads/snort/daq-${pkgver}.tar.gz) -md5sums=('65e51d72e9d5d8b397e192e4e5857eff') +md5sums=('2cd6da422a72c129c685fc4bb848c24c') build() { cd "${srcdir}/daq-${pkgver}"
[arch-commits] Commit in tea/trunk (PKGBUILD)
Date: Tuesday, September 22, 2015 @ 00:18:50 Author: spupykin Revision: 141419 upgpkg: tea 41.1.0-1 upd Modified: tea/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-09-21 22:14:34 UTC (rev 141418) +++ PKGBUILD2015-09-21 22:18:50 UTC (rev 141419) @@ -6,7 +6,7 @@ # Contributor: Zsolt Varadi pkgname=tea -pkgver=41.0.0 +pkgver=41.1.0 pkgrel=1 pkgdesc="A Qt-based text editor for Linux and *BSD. With an ultimate small size TEA provides you hundreds of functions." arch=('i686' 'x86_64') @@ -16,7 +16,7 @@ install=tea.install source=(http://semiletov.org/tea/dloads/tea-$pkgver.tar.bz2 tea.desktop) -md5sums=('36e0504ccfeef676ee04cf41aede33b5' +md5sums=('8a41da9884f98b8ca6f57296243f8fbc' '377ace3363124f4c086de0babb820761') prepare() {
[arch-commits] Commit in tea/repos (12 files)
Date: Tuesday, September 22, 2015 @ 00:19:09 Author: spupykin Revision: 141420 archrelease: copy trunk to community-i686, community-x86_64 Added: tea/repos/community-i686/PKGBUILD (from rev 141419, tea/trunk/PKGBUILD) tea/repos/community-i686/tea.desktop (from rev 141419, tea/trunk/tea.desktop) tea/repos/community-i686/tea.install (from rev 141419, tea/trunk/tea.install) tea/repos/community-x86_64/PKGBUILD (from rev 141419, tea/trunk/PKGBUILD) tea/repos/community-x86_64/tea.desktop (from rev 141419, tea/trunk/tea.desktop) tea/repos/community-x86_64/tea.install (from rev 141419, tea/trunk/tea.install) Deleted: tea/repos/community-i686/PKGBUILD tea/repos/community-i686/tea.desktop tea/repos/community-i686/tea.install tea/repos/community-x86_64/PKGBUILD tea/repos/community-x86_64/tea.desktop tea/repos/community-x86_64/tea.install --+ /PKGBUILD| 78 + /tea.desktop | 20 ++ /tea.install |8 community-i686/PKGBUILD | 39 community-i686/tea.desktop | 10 - community-i686/tea.install |4 -- community-x86_64/PKGBUILD| 39 community-x86_64/tea.desktop | 10 - community-x86_64/tea.install |4 -- 9 files changed, 106 insertions(+), 106 deletions(-) Deleted: community-i686/PKGBUILD === --- community-i686/PKGBUILD 2015-09-21 22:18:50 UTC (rev 141419) +++ community-i686/PKGBUILD 2015-09-21 22:19:09 UTC (rev 141420) @@ -1,39 +0,0 @@ -# $Id$ -# Maintainer: Sergej Pupykin -# Maintainer: Andrea Scarpino -# Contributor: Roman Kyrylych -# Contributor: Michal Kaliszka -# Contributor: Zsolt Varadi - -pkgname=tea -pkgver=41.0.0 -pkgrel=1 -pkgdesc="A Qt-based text editor for Linux and *BSD. With an ultimate small size TEA provides you hundreds of functions." -arch=('i686' 'x86_64') -url="http://semiletov.org/tea/"; -license=('GPL') -depends=('qt4' 'aspell' 'hunspell') -install=tea.install -source=(http://semiletov.org/tea/dloads/tea-$pkgver.tar.bz2 -tea.desktop) -md5sums=('36e0504ccfeef676ee04cf41aede33b5' - '377ace3363124f4c086de0babb820761') - -prepare() { - cd "${srcdir}/${pkgname}-${pkgver}" -# sed -i 's|i + j|(int)(i + j)|' textproc.cpp - sed -i 's|/usr/local|/usr|g' src.pro -} - -build() { - cd "${srcdir}/${pkgname}-${pkgver}" - qmake-qt4 - make -} - -package(){ - cd "${srcdir}/${pkgname}-${pkgver}" - make INSTALL_ROOT="${pkgdir}" install - install -Dm644 "${srcdir}/tea.desktop" "${pkgdir}/usr/share/applications/tea.desktop" - install -Dm644 icons/tea_icon_v2.png "${pkgdir}/usr/share/pixmaps/tea.png" -} Copied: tea/repos/community-i686/PKGBUILD (from rev 141419, tea/trunk/PKGBUILD) === --- community-i686/PKGBUILD (rev 0) +++ community-i686/PKGBUILD 2015-09-21 22:19:09 UTC (rev 141420) @@ -0,0 +1,39 @@ +# $Id$ +# Maintainer: Sergej Pupykin +# Maintainer: Andrea Scarpino +# Contributor: Roman Kyrylych +# Contributor: Michal Kaliszka +# Contributor: Zsolt Varadi + +pkgname=tea +pkgver=41.1.0 +pkgrel=1 +pkgdesc="A Qt-based text editor for Linux and *BSD. With an ultimate small size TEA provides you hundreds of functions." +arch=('i686' 'x86_64') +url="http://semiletov.org/tea/"; +license=('GPL') +depends=('qt4' 'aspell' 'hunspell') +install=tea.install +source=(http://semiletov.org/tea/dloads/tea-$pkgver.tar.bz2 +tea.desktop) +md5sums=('8a41da9884f98b8ca6f57296243f8fbc' + '377ace3363124f4c086de0babb820761') + +prepare() { + cd "${srcdir}/${pkgname}-${pkgver}" +# sed -i 's|i + j|(int)(i + j)|' textproc.cpp + sed -i 's|/usr/local|/usr|g' src.pro +} + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + qmake-qt4 + make +} + +package(){ + cd "${srcdir}/${pkgname}-${pkgver}" + make INSTALL_ROOT="${pkgdir}" install + install -Dm644 "${srcdir}/tea.desktop" "${pkgdir}/usr/share/applications/tea.desktop" + install -Dm644 icons/tea_icon_v2.png "${pkgdir}/usr/share/pixmaps/tea.png" +} Deleted: community-i686/tea.desktop === --- community-i686/tea.desktop 2015-09-21 22:18:50 UTC (rev 141419) +++ community-i686/tea.desktop 2015-09-21 22:19:09 UTC (rev 141420) @@ -1,10 +0,0 @@ -[Desktop Entry] -Encoding=UTF-8 -Name=Tea -Comment=A small programmer's QT editor -Exec=tea %U -Terminal=false -Type=Application -StartupNotify=true -Icon=tea.png -Categories=Application;Utility;TextEditor; Copied: tea/repos/community-i686/tea.desktop (from rev 141419, tea/trunk/tea.desktop) === --- community-i686/tea.desktop (rev 0) +++ community-i686/tea.desktop 2015-09-21 22:19:09 UTC (rev 141420) @@ -0,0 +
[arch-commits] Commit in umurmur/trunk (PKGBUILD mbedtls2.patch)
Date: Tuesday, September 22, 2015 @ 00:14:34 Author: spupykin Revision: 141418 Modified: umurmur/trunk/PKGBUILD umurmur/trunk/mbedtls2.patch + PKGBUILD |2 +- mbedtls2.patch | 37 - 2 files changed, 1 insertion(+), 38 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-09-21 22:12:10 UTC (rev 141417) +++ PKGBUILD2015-09-21 22:14:34 UTC (rev 141418) @@ -17,7 +17,7 @@ mbedtls2.patch umurmur.service) md5sums=('061aa71eb059eb00d2b123ec9200b405' - 'e8206f12304ec742221c69c151d5a817' + 'd0fbf871b5e14a0b38b6885dbf166967' 'd9d556e4ffa77e193fb40ce508804720') prepare() { Modified: mbedtls2.patch === --- mbedtls2.patch 2015-09-21 22:12:10 UTC (rev 141417) +++ mbedtls2.patch 2015-09-21 22:14:34 UTC (rev 141418) @@ -1,5 +1,3 @@ -Only in umurmur-0.2.16a.my: aclocal.m4 -Only in umurmur-0.2.16a.my: autom4te.cache diff -wbBur umurmur-0.2.16a/cmake/Modules/FindPolarSSL.cmake umurmur-0.2.16a.my/cmake/Modules/FindPolarSSL.cmake --- umurmur-0.2.16a/cmake/Modules/FindPolarSSL.cmake 2015-06-20 01:58:46.0 +0300 +++ umurmur-0.2.16a.my/cmake/Modules/FindPolarSSL.cmake2015-09-22 01:03:32.671708759 +0300 @@ -14,12 +12,6 @@ if(POLARSSL_INCLUDE_DIR AND POLARSSL_LIB_DIR) set(POLARSSL_LIBRARIES polarssl) -Only in umurmur-0.2.16a.my: compile -Only in umurmur-0.2.16a.my: config.guess -Only in umurmur-0.2.16a.my: config.log -Only in umurmur-0.2.16a.my: config.status -Only in umurmur-0.2.16a.my: config.sub -Only in umurmur-0.2.16a.my: configure diff -wbBur umurmur-0.2.16a/configure.ac umurmur-0.2.16a.my/configure.ac --- umurmur-0.2.16a/configure.ac 2015-06-20 01:58:46.0 +0300 +++ umurmur-0.2.16a.my/configure.ac2015-09-22 01:03:32.671708759 +0300 @@ -73,15 +65,6 @@ AC_DEFINE([USE_POLARSSL_HAVEGE], [], [Use PolarSSL HAVEGE random generator]) ]) ]) -Only in umurmur-0.2.16a.my: depcomp -Only in umurmur-0.2.16a.my: install-sh -Only in umurmur-0.2.16a.my: Makefile -Only in umurmur-0.2.16a.my: Makefile.in -Only in umurmur-0.2.16a.my: missing -Only in umurmur-0.2.16a.my/src: ban.o -Only in umurmur-0.2.16a.my/src: channel.o -Only in umurmur-0.2.16a.my/src: client.o -Only in umurmur-0.2.16a.my/src: config.h diff -wbBur umurmur-0.2.16a/src/config.h.in umurmur-0.2.16a.my/src/config.h.in --- umurmur-0.2.16a/src/config.h.in2015-06-20 01:58:46.0 +0300 +++ umurmur-0.2.16a.my/src/config.h.in 2015-09-22 01:03:36.0 +0300 @@ -357,8 +340,6 @@ +/* Define to the type of an unsigned integer type of width exactly 8 bits if + such a type exists and the standard includes do not define it. */ +#undef uint8_t -Only in umurmur-0.2.16a.my/src: config.h.in~ -Only in umurmur-0.2.16a.my/src: conf.o diff -wbBur umurmur-0.2.16a/src/crypt.h umurmur-0.2.16a.my/src/crypt.h --- umurmur-0.2.16a/src/crypt.h2015-06-20 01:58:46.0 +0300 +++ umurmur-0.2.16a.my/src/crypt.h 2015-09-22 01:03:32.671708759 +0300 @@ -374,17 +355,6 @@ #define CRYPT_AES_KEY aes_context #define AES_BLOCK_SIZE 16 -Only in umurmur-0.2.16a.my/src: crypt.o -Only in umurmur-0.2.16a.my/src: .deps -Only in umurmur-0.2.16a.my/src: log.o -Only in umurmur-0.2.16a.my/src: main.o -Only in umurmur-0.2.16a.my/src: Makefile -Only in umurmur-0.2.16a.my/src: Makefile.in -Only in umurmur-0.2.16a.my/src: messagehandler.o -Only in umurmur-0.2.16a.my/src: messages.o -Only in umurmur-0.2.16a.my/src: Mumble.pb-c.o -Only in umurmur-0.2.16a.my/src: pds.o -Only in umurmur-0.2.16a.my/src: server.o diff -wbBur umurmur-0.2.16a/src/ssl.h umurmur-0.2.16a.my/src/ssl.h --- umurmur-0.2.16a/src/ssl.h 2015-06-20 01:58:46.0 +0300 +++ umurmur-0.2.16a.my/src/ssl.h 2015-09-22 01:07:05.505039648 +0300 @@ -582,10 +552,3 @@ ssl_set_dh_param(ssl, my_dhm_P, my_dhm_G); return ssl; -Only in umurmur-0.2.16a.my/src: ssli_polarssl.c.orig -Only in umurmur-0.2.16a.my/src: ssli_polarssl.o -Only in umurmur-0.2.16a.my/src: stamp-h1 -Only in umurmur-0.2.16a.my/src: timer.o -Only in umurmur-0.2.16a.my/src: umurmurd -Only in umurmur-0.2.16a.my/src: util.o -Only in umurmur-0.2.16a.my/src: voicetarget.o
[arch-commits] Commit in umurmur/repos (10 files)
Date: Tuesday, September 22, 2015 @ 00:12:10 Author: spupykin Revision: 141417 archrelease: copy trunk to community-staging-i686, community-staging-x86_64 Added: umurmur/repos/community-staging-i686/ umurmur/repos/community-staging-i686/PKGBUILD (from rev 141416, umurmur/trunk/PKGBUILD) umurmur/repos/community-staging-i686/mbedtls2.patch (from rev 141416, umurmur/trunk/mbedtls2.patch) umurmur/repos/community-staging-i686/umurmur.install (from rev 141416, umurmur/trunk/umurmur.install) umurmur/repos/community-staging-i686/umurmur.service (from rev 141416, umurmur/trunk/umurmur.service) umurmur/repos/community-staging-x86_64/ umurmur/repos/community-staging-x86_64/PKGBUILD (from rev 141416, umurmur/trunk/PKGBUILD) umurmur/repos/community-staging-x86_64/mbedtls2.patch (from rev 141416, umurmur/trunk/mbedtls2.patch) umurmur/repos/community-staging-x86_64/umurmur.install (from rev 141416, umurmur/trunk/umurmur.install) umurmur/repos/community-staging-x86_64/umurmur.service (from rev 141416, umurmur/trunk/umurmur.service) --+ community-staging-i686/PKGBUILD | 43 ++ community-staging-i686/mbedtls2.patch| 591 + community-staging-i686/umurmur.install | 13 community-staging-i686/umurmur.service | 15 community-staging-x86_64/PKGBUILD| 43 ++ community-staging-x86_64/mbedtls2.patch | 591 + community-staging-x86_64/umurmur.install | 13 community-staging-x86_64/umurmur.service | 15 8 files changed, 1324 insertions(+) The diff is longer than the limit of 200KB. Use svn diff -r 141416:141417 to see the changes.
[arch-commits] Commit in umurmur/trunk (PKGBUILD mbedtls2.patch)
Date: Tuesday, September 22, 2015 @ 00:11:49 Author: spupykin Revision: 141416 upgpkg: umurmur 0.2.16_a-1 upd Added: umurmur/trunk/mbedtls2.patch Modified: umurmur/trunk/PKGBUILD + PKGBUILD | 20 + mbedtls2.patch | 591 +++ 2 files changed, 603 insertions(+), 8 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-09-21 21:16:11 UTC (rev 141415) +++ PKGBUILD2015-09-21 22:11:49 UTC (rev 141416) @@ -4,8 +4,8 @@ # Contributor: xav pkgname=umurmur -pkgver=0.2.16 -pkgrel=2 +pkgver=0.2.16_a +pkgrel=1 pkgdesc='Minimalistic Mumble server' arch=('i686' 'x86_64') url='https://github.com/umurmur/umurmur' @@ -13,24 +13,28 @@ depends=('mbedtls' 'libconfig' 'protobuf-c') install=$pkgname.install backup=('etc/umurmur/umurmur.conf') -source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz +source=($pkgname-$pkgver.tar.gz::$url/archive/${pkgver/_/}.tar.gz + mbedtls2.patch umurmur.service) -md5sums=('5d6f5b01a0fc357e26ea9ed433031bb9' +md5sums=('061aa71eb059eb00d2b123ec9200b405' + 'e8206f12304ec742221c69c151d5a817' 'd9d556e4ffa77e193fb40ce508804720') prepare() { - cd $pkgname-$pkgver + cd $pkgname-${pkgver/_/} + patch -p1 <$srcdir/mbedtls2.patch ./autogen.sh } build() { - cd $pkgname-$pkgver - ./configure --prefix=/usr --mandir=/usr/share/man --with-ssl=polarssl + cd $pkgname-${pkgver/_/} + LIBS="-lmbedtls -lmbedcrypto -lmbedx509" ./configure --prefix=/usr --mandir=/usr/share/man --with-ssl=polarssl + echo "#define USE_POLARSSL 1" >>src/config.h make } package() { - cd $pkgname-$pkgver + cd $pkgname-${pkgver/_/} make DESTDIR="$pkgdir" install install -Dm644 umurmur.conf.example "$pkgdir"/etc/umurmur/umurmur.conf Added: mbedtls2.patch === --- mbedtls2.patch (rev 0) +++ mbedtls2.patch 2015-09-21 22:11:49 UTC (rev 141416) @@ -0,0 +1,591 @@ +Only in umurmur-0.2.16a.my: aclocal.m4 +Only in umurmur-0.2.16a.my: autom4te.cache +diff -wbBur umurmur-0.2.16a/cmake/Modules/FindPolarSSL.cmake umurmur-0.2.16a.my/cmake/Modules/FindPolarSSL.cmake +--- umurmur-0.2.16a/cmake/Modules/FindPolarSSL.cmake 2015-06-20 01:58:46.0 +0300 umurmur-0.2.16a.my/cmake/Modules/FindPolarSSL.cmake2015-09-22 01:03:32.671708759 +0300 +@@ -1,8 +1,8 @@ + include(FindPackageHandleStandardArgs) + include(CheckSymbolExists) + +-find_path(POLARSSL_INCLUDE_DIR NAMES "version.h" PATHS /usr/pkg /usr/local /usr PATH_SUFFIXES "include/polarssl") +-find_path(POLARSSL_LIB_DIR NAMES "libpolarssl.so" "libpolarssl.dylib" "libpolarssl.a" PATHS /usr/pkg /usr/local /usr PATH_SUFFIXES "lib" "lib/${CMAKE_LIBRARY_ARCHITECTURE}") ++find_path(POLARSSL_INCLUDE_DIR NAMES "version.h" PATHS /usr/pkg /usr/local /usr PATH_SUFFIXES "include/mbedtls") ++find_path(POLARSSL_LIB_DIR NAMES "libmbedtls.so" "libmbedtls.dylib" "libmbedtls.a" PATHS /usr/pkg /usr/local /usr PATH_SUFFIXES "lib" "lib/${CMAKE_LIBRARY_ARCHITECTURE}") + + if(POLARSSL_INCLUDE_DIR AND POLARSSL_LIB_DIR) + set(POLARSSL_LIBRARIES polarssl) +Only in umurmur-0.2.16a.my: compile +Only in umurmur-0.2.16a.my: config.guess +Only in umurmur-0.2.16a.my: config.log +Only in umurmur-0.2.16a.my: config.status +Only in umurmur-0.2.16a.my: config.sub +Only in umurmur-0.2.16a.my: configure +diff -wbBur umurmur-0.2.16a/configure.ac umurmur-0.2.16a.my/configure.ac +--- umurmur-0.2.16a/configure.ac 2015-06-20 01:58:46.0 +0300 umurmur-0.2.16a.my/configure.ac2015-09-22 01:03:32.671708759 +0300 +@@ -37,10 +37,10 @@ + AC_CANONICAL_HOST + + # Configure options. +-AC_ARG_WITH([ssl], [AC_HELP_STRING([--with-ssl=@<:@LIB@:>@], [SSL library (openssl|polarssl|gnutls) @<:@default=polarssl@:>@])], [], [with_ssl=polarssl]) ++AC_ARG_WITH([ssl], [AC_HELP_STRING([--with-ssl=@<:@LIB@:>@], [SSL library (openssl|mbedtls|gnutls) @<:@default=mbedtls@:>@])], [], [with_ssl=mbedtls]) + AC_ARG_ENABLE([shmapi], [AC_HELP_STRING([--enable-shmapi], [compile with Sharedmemory API support @<:@default=no@:>@])],[],[enable_shmapi=no] ) +-AC_ARG_ENABLE(polarssl-test-cert, [ --enable-polarssl-test-cert Link to PolarSSL test certificate and key @<:@default=no@:>@], [enable_polarssl_test_cert=yes]) +-AC_ARG_ENABLE(polarssl-havege, [ --enable-polarssl-havege Link to PolarSSL HAVEGE random generator key @<:@default=no@:>@ Default: /dev/urandom], [enable_polarssl_havege=yes]) ++AC_ARG_ENABLE(mbedtls-test-cert, [ --enable-mbedtls-test-cert Link to PolarSSL test certificate and key @<:@default=no@:>@], [enable_mbedtls_test_cert=yes]) ++AC_ARG_ENABLE(mbedtls-havege, [ --enable-mbedtls-havege Link to PolarSSL HAVEGE random generator key @<:@default=no@:>@ Default: /dev/urandom], [enable_mbedtls_havege=yes]) + + # Checks for programs. + AC_PROG_CC +@@ -58,11 +58,11 @@ +
[arch-commits] Commit in mediastreamer/repos (4 files)
Date: Monday, September 21, 2015 @ 23:16:11 Author: spupykin Revision: 141415 archrelease: copy trunk to community-staging-i686, community-staging-x86_64 Added: mediastreamer/repos/community-staging-i686/ mediastreamer/repos/community-staging-i686/PKGBUILD (from rev 141414, mediastreamer/trunk/PKGBUILD) mediastreamer/repos/community-staging-x86_64/ mediastreamer/repos/community-staging-x86_64/PKGBUILD (from rev 141414, mediastreamer/trunk/PKGBUILD) ---+ community-staging-i686/PKGBUILD | 34 ++ community-staging-x86_64/PKGBUILD | 34 ++ 2 files changed, 68 insertions(+) Copied: mediastreamer/repos/community-staging-i686/PKGBUILD (from rev 141414, mediastreamer/trunk/PKGBUILD) === --- community-staging-i686/PKGBUILD (rev 0) +++ community-staging-i686/PKGBUILD 2015-09-21 21:16:11 UTC (rev 141415) @@ -0,0 +1,34 @@ +# $Id$ +# Maintainer: +# Contributor: Andrea Scarpino +# Contributor: Sergej Pupykin +# Contributor: Adrià Arrufat +# Contributor: Mark Lee + +pkgname=mediastreamer +pkgver=2.11.2 +pkgrel=5 +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' 'ffmpeg' 'libxv' 'libupnp' 'bzrtp' 'glew' 'libsrtp' 'mbedtls') +# xxd from Vim is needed to build +makedepends=('intltool' 'vim') +source=("http://download-mirror.savannah.gnu.org/releases/linphone/${pkgname}/${pkgname}-${pkgver}.tar.gz"{,.sig}) +validpgpkeys=('9774BC1725758EB16D639F8B3ECD52DEE2F56985') +md5sums=('8b654c3e8938d50df9e83d2e353888a6' + 'SKIP') + +build() { + cd $pkgname-$pkgver + ./configure --prefix=/usr \ +--enable-glx --enable-xv --enable-zrtp --enable-external-ortp \ +--disable-strict + make +} + +package() { + cd $pkgname-$pkgver + make DESTDIR="${pkgdir}" install +} Copied: mediastreamer/repos/community-staging-x86_64/PKGBUILD (from rev 141414, mediastreamer/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2015-09-21 21:16:11 UTC (rev 141415) @@ -0,0 +1,34 @@ +# $Id$ +# Maintainer: +# Contributor: Andrea Scarpino +# Contributor: Sergej Pupykin +# Contributor: Adrià Arrufat +# Contributor: Mark Lee + +pkgname=mediastreamer +pkgver=2.11.2 +pkgrel=5 +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' 'ffmpeg' 'libxv' 'libupnp' 'bzrtp' 'glew' 'libsrtp' 'mbedtls') +# xxd from Vim is needed to build +makedepends=('intltool' 'vim') +source=("http://download-mirror.savannah.gnu.org/releases/linphone/${pkgname}/${pkgname}-${pkgver}.tar.gz"{,.sig}) +validpgpkeys=('9774BC1725758EB16D639F8B3ECD52DEE2F56985') +md5sums=('8b654c3e8938d50df9e83d2e353888a6' + 'SKIP') + +build() { + cd $pkgname-$pkgver + ./configure --prefix=/usr \ +--enable-glx --enable-xv --enable-zrtp --enable-external-ortp \ +--disable-strict + make +} + +package() { + cd $pkgname-$pkgver + make DESTDIR="${pkgdir}" install +}
[arch-commits] Commit in bzrtp/repos (8 files)
Date: Monday, September 21, 2015 @ 23:15:53 Author: spupykin Revision: 141413 archrelease: copy trunk to community-staging-i686, community-staging-x86_64 Added: bzrtp/repos/community-staging-i686/PKGBUILD (from rev 141412, bzrtp/trunk/PKGBUILD) bzrtp/repos/community-staging-i686/mbedtls2.patch (from rev 141412, bzrtp/trunk/mbedtls2.patch) bzrtp/repos/community-staging-x86_64/PKGBUILD (from rev 141412, bzrtp/trunk/PKGBUILD) bzrtp/repos/community-staging-x86_64/mbedtls2.patch (from rev 141412, bzrtp/trunk/mbedtls2.patch) Deleted: bzrtp/repos/community-staging-i686/PKGBUILD bzrtp/repos/community-staging-i686/mbedtls2.patch bzrtp/repos/community-staging-x86_64/PKGBUILD bzrtp/repos/community-staging-x86_64/mbedtls2.patch -+ /PKGBUILD | 70 + /mbedtls2.patch | 226 ++ community-staging-i686/PKGBUILD | 35 community-staging-i686/mbedtls2.patch | 81 -- community-staging-x86_64/PKGBUILD | 35 community-staging-x86_64/mbedtls2.patch | 81 -- 6 files changed, 296 insertions(+), 232 deletions(-) Deleted: community-staging-i686/PKGBUILD === --- community-staging-i686/PKGBUILD 2015-09-21 21:15:36 UTC (rev 141412) +++ community-staging-i686/PKGBUILD 2015-09-21 21:15:53 UTC (rev 141413) @@ -1,35 +0,0 @@ -# $Id$ -# Maintainer: -# Contributor: Antonio Rojas - -pkgname=bzrtp -pkgver=1.0.2 -pkgrel=2 -pkgdesc="Opensource implementation of ZRTP keys exchange protocol" -arch=('i686' 'x86_64') -url="http://www.linphone.org/"; -license=('GPL2') -depends=('libxml2' 'mbedtls') -validpgpkeys=('9774BC1725758EB16D639F8B3ECD52DEE2F56985') -source=("http://download.savannah.gnu.org/releases/linphone/$pkgname/$pkgname-$pkgver.tar.gz"{,.sig} - mbedtls2.patch) -md5sums=('b52fa670fb319022166cb10d641da4e6' - 'SKIP' - 'a644dda812e1535523068e42e6882a0b') - -prepare() { - cd ${pkgname}-${pkgver} - patch -p1 <$srcdir/mbedtls2.patch - autoreconf -} - -build() { - cd ${pkgname}-${pkgver} - ./configure --prefix=/usr - make -} - -package() { - cd ${pkgname}-${pkgver} - make DESTDIR="${pkgdir}" install -} Copied: bzrtp/repos/community-staging-i686/PKGBUILD (from rev 141412, bzrtp/trunk/PKGBUILD) === --- community-staging-i686/PKGBUILD (rev 0) +++ community-staging-i686/PKGBUILD 2015-09-21 21:15:53 UTC (rev 141413) @@ -0,0 +1,35 @@ +# $Id$ +# Maintainer: +# Contributor: Antonio Rojas + +pkgname=bzrtp +pkgver=1.0.2 +pkgrel=3 +pkgdesc="Opensource implementation of ZRTP keys exchange protocol" +arch=('i686' 'x86_64') +url="http://www.linphone.org/"; +license=('GPL2') +depends=('libxml2' 'mbedtls') +validpgpkeys=('9774BC1725758EB16D639F8B3ECD52DEE2F56985') +source=("http://download.savannah.gnu.org/releases/linphone/$pkgname/$pkgname-$pkgver.tar.gz"{,.sig} + mbedtls2.patch) +md5sums=('b52fa670fb319022166cb10d641da4e6' + 'SKIP' + 'a5c77d9bcfda0aed17572a32b4cab69d') + +prepare() { + cd ${pkgname}-${pkgver} + patch -p1 <$srcdir/mbedtls2.patch + autoreconf +} + +build() { + cd ${pkgname}-${pkgver} + ./configure --prefix=/usr + make +} + +package() { + cd ${pkgname}-${pkgver} + make DESTDIR="${pkgdir}" install +} Deleted: community-staging-i686/mbedtls2.patch === --- community-staging-i686/mbedtls2.patch 2015-09-21 21:15:36 UTC (rev 141412) +++ community-staging-i686/mbedtls2.patch 2015-09-21 21:15:53 UTC (rev 141413) @@ -1,81 +0,0 @@ -diff -wbBur bzrtp-1.0.2.org/configure.ac bzrtp-1.0.2/configure.ac bzrtp-1.0.2.org/configure.ac 2015-05-07 18:45:29.0 +0300 -+++ bzrtp-1.0.2/configure.ac 2015-07-30 15:19:26.965083810 +0300 -@@ -42,7 +42,7 @@ - POLARSSL_LIBS="-L${polarssl_prefix}/lib" - fi - --POLARSSL_LIBS="$POLARSSL_LIBS -lpolarssl" -+POLARSSL_LIBS="$POLARSSL_LIBS -lmbedtls" - - AC_SUBST(POLARSSL_LIBS) - AC_SUBST(POLARSSL_CFLAGS) -diff -wbBur bzrtp-1.0.2.org/src/cryptoPolarssl.c bzrtp-1.0.2/src/cryptoPolarssl.c bzrtp-1.0.2.org/src/cryptoPolarssl.c 2015-05-07 18:14:36.0 +0300 -+++ bzrtp-1.0.2/src/cryptoPolarssl.c 2015-07-30 15:18:40.811751008 +0300 -@@ -25,17 +25,18 @@ - #include - - /* Random number generator */ --#include "polarssl/entropy.h" --#include "polarssl/ctr_drbg.h" -+#include "mbedtls/compat-1.3.h" -+#include "mbedtls/entropy.h" -+#include "mbedtls/ctr_drbg.h" - - /* Hash function sha1(sha2 is different for polarssl v1.2 and v1.3 ) */ --#include "polarssl/sha1.h" -+#include "mbedtls/sha1.h" - - /* Asymmetrics encryption */ --#include "polarssl/dhm.h" -+#include "mbedtls/dhm.h" - - /* Symmetric encryption */ --#include "polarssl/aes.h" -+#include "mbedtls/aes.h" - - #
[arch-commits] Commit in bzrtp/trunk (PKGBUILD)
Date: Monday, September 21, 2015 @ 23:15:36 Author: spupykin Revision: 141412 upgpkg: bzrtp 1.0.2-3 upd Modified: bzrtp/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2015-09-21 20:12:20 UTC (rev 141411) +++ PKGBUILD2015-09-21 21:15:36 UTC (rev 141412) @@ -4,7 +4,7 @@ pkgname=bzrtp pkgver=1.0.2 -pkgrel=2 +pkgrel=3 pkgdesc="Opensource implementation of ZRTP keys exchange protocol" arch=('i686' 'x86_64') url="http://www.linphone.org/";
[arch-commits] Commit in mediastreamer/trunk (PKGBUILD)
Date: Monday, September 21, 2015 @ 23:15:55 Author: spupykin Revision: 141414 upgpkg: mediastreamer 2.11.2-5 upd Modified: mediastreamer/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2015-09-21 21:15:53 UTC (rev 141413) +++ PKGBUILD2015-09-21 21:15:55 UTC (rev 141414) @@ -7,7 +7,7 @@ pkgname=mediastreamer pkgver=2.11.2 -pkgrel=3 +pkgrel=5 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/";
[arch-commits] Commit in luxrender/repos (3 files)
Date: Monday, September 21, 2015 @ 22:12:20 Author: stativ Revision: 141411 archrelease: copy trunk to community-staging-x86_64 Added: luxrender/repos/community-staging-x86_64/ luxrender/repos/community-staging-x86_64/PKGBUILD (from rev 141410, luxrender/trunk/PKGBUILD) luxrender/repos/community-staging-x86_64/force_python3.diff (from rev 141410, luxrender/trunk/force_python3.diff) + PKGBUILD | 56 +++ force_python3.diff | 12 ++ 2 files changed, 68 insertions(+) Copied: luxrender/repos/community-staging-x86_64/PKGBUILD (from rev 141410, luxrender/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2015-09-21 20:12:20 UTC (rev 141411) @@ -0,0 +1,56 @@ +# $Id$ +# Maintainer: Lukas Jirkovsky +# Contributor: flixie <69...@gmx.net> +# Contributor: Imanol Celaya +pkgname=luxrender +pkgver=1.5 +_pkgver=216e294b59e3 +pkgrel=2 +pkgdesc="Rendering system for physically correct, unbiased image synthesis" +arch=('x86_64') +url="http://www.luxrender.net/"; +license=('GPL') +depends=('boost-libs' 'embree' 'freeimage' 'openexr' 'openimageio' 'libpng' 'libcl' 'libgl' 'fftw') +optdepends=('luxblend25: Blender exporter' 'qt4: Qt GUI' \ +'python: pylux Python interface' +'opencl-nvidia: OpenCL support for nVidia GPUs' \ +'amdapp-sdk: OpenCL support for AMD GPUs' \ +'intel-opencl-runtime: OpenCL support for Intel CPUs') +makedepends=('cmake' 'boost' 'mesa' 'qt4' "luxrays=$pkgver" 'python' 'opencl-headers') +source=(https://bitbucket.org/luxrender/lux/get/${_pkgver}.tar.bz2 \ +force_python3.diff) +md5sums=('531234aaa2969c3aacf2a69ed7835335' + '42692e65eabc5828693e2682e94b7c64') + +prepare() { + cd "$srcdir"/luxrender-lux-$_pkgver + + patch -Np1 < "$srcdir/force_python3.diff" || true +} + +build() { + cd "$srcdir"/luxrender-lux-$_pkgver + + + cmake . \ +-DCMAKE_INSTALL_PREFIX=/usr \ +-DLUXRAYS_DISABLE_OPENCL=OFF \ +-DPYTHON_CUSTOM=ON \ +-DPYTHON_LIBRARIES=/usr/lib/libpython3.5m.so \ +-DPYTHON_INCLUDE_PATH=/usr/include/python3.5m/ \ +-DCMAKE_EXE_LINKER_FLAGS=-lpthread + make +} + +package() { + cd "$srcdir"/luxrender-lux-$_pkgver + make DESTDIR="$pkgdir" install + + # fix library path on x86_64 + [ "$CARCH" = "x86_64" ] && mv "$pkgdir"/usr/lib64 "$pkgdir"/usr/lib + + # install pylux + install -D -m644 pylux.so "$pkgdir"/usr/lib/python3.5/pylux.so +} + +# vim:set ts=2 sw=2 et: Copied: luxrender/repos/community-staging-x86_64/force_python3.diff (from rev 141410, luxrender/trunk/force_python3.diff) === --- community-staging-x86_64/force_python3.diff (rev 0) +++ community-staging-x86_64/force_python3.diff 2015-09-21 20:12:20 UTC (rev 141411) @@ -0,0 +1,12 @@ +diff -rup luxrender-lux-d0b0e20c47cc/cmake/Dependencies.cmake luxrender-lux-d0b0e20c47cc.new/cmake/Dependencies.cmake +--- luxrender-lux-d0b0e20c47cc/cmake/Dependencies.cmake2013-11-04 22:25:45.0 +0100 luxrender-lux-d0b0e20c47cc.new/cmake/Dependencies.cmake2013-12-05 19:43:23.414625854 +0100 +@@ -156,7 +156,7 @@ IF(MSVC AND BOOST_python_LIBRARYDIR) + SET(BOOST_LIBRARYDIR "${BOOST_python_LIBRARYDIR}") + ENDIF(MSVC AND BOOST_python_LIBRARYDIR) + +-FIND_PACKAGE(Boost ${Boost_MINIMUM_VERSION} COMPONENTS python REQUIRED) ++FIND_PACKAGE(Boost ${Boost_MINIMUM_VERSION} COMPONENTS python3 REQUIRED) + + IF(MSVC AND BOOST_python_LIBRARYDIR) + SET(BOOST_LIBRARYDIR "${_boost_libdir}")
[arch-commits] Commit in luxrender/trunk (PKGBUILD)
Date: Monday, September 21, 2015 @ 22:07:55 Author: stativ Revision: 141410 upgpkg: luxrender 1.5-2 python 3.5 rebuild Modified: luxrender/trunk/PKGBUILD --+ PKGBUILD |8 1 file changed, 4 insertions(+), 4 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-09-21 19:50:38 UTC (rev 141409) +++ PKGBUILD2015-09-21 20:07:55 UTC (rev 141410) @@ -5,7 +5,7 @@ pkgname=luxrender pkgver=1.5 _pkgver=216e294b59e3 -pkgrel=1 +pkgrel=2 pkgdesc="Rendering system for physically correct, unbiased image synthesis" arch=('x86_64') url="http://www.luxrender.net/"; @@ -36,8 +36,8 @@ -DCMAKE_INSTALL_PREFIX=/usr \ -DLUXRAYS_DISABLE_OPENCL=OFF \ -DPYTHON_CUSTOM=ON \ --DPYTHON_LIBRARIES=/usr/lib/libpython3.4m.so \ --DPYTHON_INCLUDE_PATH=/usr/include/python3.4m/ \ +-DPYTHON_LIBRARIES=/usr/lib/libpython3.5m.so \ +-DPYTHON_INCLUDE_PATH=/usr/include/python3.5m/ \ -DCMAKE_EXE_LINKER_FLAGS=-lpthread make } @@ -50,7 +50,7 @@ [ "$CARCH" = "x86_64" ] && mv "$pkgdir"/usr/lib64 "$pkgdir"/usr/lib # install pylux - install -D -m644 pylux.so "$pkgdir"/usr/lib/python3.4/pylux.so + install -D -m644 pylux.so "$pkgdir"/usr/lib/python3.5/pylux.so } # vim:set ts=2 sw=2 et:
[arch-commits] Commit in stuntrally-data/trunk (PKGBUILD)
Date: Monday, September 21, 2015 @ 21:46:53 Author: svenstaro Revision: 141406 upgpkg: stuntrally-data 2.6-1 upstream release 2.6 Modified: stuntrally-data/trunk/PKGBUILD --+ PKGBUILD | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-09-21 19:38:34 UTC (rev 141405) +++ PKGBUILD2015-09-21 19:46:53 UTC (rev 141406) @@ -2,17 +2,17 @@ pkgname=stuntrally-data _pkgname=stuntrally -pkgver=2.5 -pkgrel=2 +pkgver=2.6 +pkgrel=1 pkgdesc="Stunt Rally game with track editor, based on VDrift (data files)" arch=('any') license=('GPL3') url="http://code.google.com/p/vdrift-ogre"; -makedepends=('cmake' 'boost' 'libvorbis' 'mygui' 'sdl2' 'enet' 'hicolor-icon-theme' 'libxcursor') +makedepends=('cmake' 'boost' 'libvorbis' 'mygui' 'sdl2' 'enet' 'hicolor-icon-theme' 'libxcursor' 'bullet' 'openal') source=("$pkgname-$pkgver.tar.gz::https://github.com/stuntrally/stuntrally/archive/${pkgver}.tar.gz"; "$pkgname-tracks-$pkgver.tar.gz::https://github.com/stuntrally/tracks/archive/${pkgver}.tar.gz";) -sha256sums=('31e565c531b57895745b2dd5ecd1a2f241b1ac415d984d038390a49398974b23' -'16b3e5d68eaffb8921b46066dde39208337c3142b2e1db5e6431a1bf867461ed') +sha256sums=('8cc309d27d26f78dcc596440547d68b5e41d02ef830df2d52d38611d45ebbaca' +'4bce700516a2a178ac04cfbf7df2887ba42225802f5a3e670f770ea01345687b') build() { # build the sources
[arch-commits] Commit in luxrays/repos (3 files)
Date: Monday, September 21, 2015 @ 21:50:38 Author: stativ Revision: 141409 archrelease: copy trunk to community-staging-x86_64 Added: luxrays/repos/community-staging-x86_64/ luxrays/repos/community-staging-x86_64/PKGBUILD (from rev 141408, luxrays/trunk/PKGBUILD) luxrays/repos/community-staging-x86_64/force_python3.diff (from rev 141408, luxrays/trunk/force_python3.diff) + PKGBUILD | 54 +++ force_python3.diff | 12 +++ 2 files changed, 66 insertions(+) Copied: luxrays/repos/community-staging-x86_64/PKGBUILD (from rev 141408, luxrays/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2015-09-21 19:50:38 UTC (rev 141409) @@ -0,0 +1,54 @@ +# $Id$ +# Maintainer: Lukas Jirkovsky +pkgname='luxrays' +pkgver=1.5 +_pkgver=53c0b9a41ea2 +pkgrel=2 +pkgdesc="Accelerate the ray intersection process by using GPUs" +arch=('x86_64') +url="http://www.luxrender.net/"; +license=('GPL') +depends=('embree' 'libcl' 'libgl' 'openimageio') +makedepends=('boost' 'cmake' 'freetype2' 'libpng' 'mesa' 'opencl-headers' 'glew' 'freeglut') +optdepends=('opencl-nvidia: OpenCL support for nVidia GPUs' \ +'amdapp-sdk: OpenCL support for AMD GPUs' \ +'intel-opencl-runtime: OpenCL support for Intel CPUs' \ +'glew: demos (SmallLuxGPU etc.)' \ +'freeglut: demos (SmallLuxGPU etc.)' \ +'boost-libs: demos (SmallLuxGPU etc.)') +options=('staticlibs') +source=($pkgname-$pkgver.tar.bz2::https://bitbucket.org/luxrender/luxrays/get/${_pkgver}.tar.bz2 \ +force_python3.diff) +md5sums=('b432c48332a765791d27aaa25fee4783' + '3bfb5594a709d1ea772866d66904b8fd') + +prepare() { + cd "$srcdir"/luxrender-luxrays-$_pkgver + + patch -Np1 < "$srcdir/force_python3.diff" || true +} + +build() { + cd "$srcdir/luxrender-luxrays-$_pkgver" + + cmake . \ +-DCMAKE_INSTALL_PREFIX=/usr \ +-DCMAKE_SKIP_RPATH=ON \ +-DLUXRAYS_DISABLE_OPENCL=OFF + make +} + +package() { + cd "$srcdir/luxrender-luxrays-$_pkgver" + + install -d -m755 "$pkgdir"/usr/{bin,include,lib} + install -m755 bin/* "$pkgdir"/usr/bin + install -m644 lib/* "$pkgdir"/usr/lib + cp -a include "$pkgdir"/usr + + # install pyluxcore to the Python search path + install -d -m755 "$pkgdir"/usr/lib/python3.5/ + mv "$pkgdir"/usr/lib/pyluxcore.so "$pkgdir"/usr/lib/python3.5/ +} + +# vim:set ts=2 sw=2 et: Copied: luxrays/repos/community-staging-x86_64/force_python3.diff (from rev 141408, luxrays/trunk/force_python3.diff) === --- community-staging-x86_64/force_python3.diff (rev 0) +++ community-staging-x86_64/force_python3.diff 2015-09-21 19:50:38 UTC (rev 141409) @@ -0,0 +1,12 @@ +diff -rup luxrender-luxrays-7c7127ee1fa4/cmake/Dependencies.cmake luxrender-luxrays-7c7127ee1fa4.new/cmake/Dependencies.cmake +--- luxrender-luxrays-7c7127ee1fa4/cmake/Dependencies.cmake2015-01-20 23:45:32.0 +0100 luxrender-luxrays-7c7127ee1fa4.new/cmake/Dependencies.cmake 2015-02-15 22:19:40.775351414 +0100 +@@ -58,7 +58,7 @@ set(Boost_MINIMUM_VERSION "1.44.0" + + set(Boost_ADDITIONAL_VERSIONS "1.47.0" "1.46.1" "1.46" "1.46.0" "1.45" "1.45.0" "1.44" "1.44.0") + +-set(LUXRAYS_BOOST_COMPONENTS thread program_options filesystem serialization iostreams regex system python) ++set(LUXRAYS_BOOST_COMPONENTS thread program_options filesystem serialization iostreams regex system python3) + find_package(Boost ${Boost_MINIMUM_VERSION} COMPONENTS ${LUXRAYS_BOOST_COMPONENTS}) + if (NOT Boost_FOUND) + # Try again with the other type of libs
[arch-commits] Commit in luxrays/trunk (PKGBUILD)
Date: Monday, September 21, 2015 @ 21:50:34 Author: stativ Revision: 141408 upgpkg: luxrays 1.5-2 python 3.5 rebuild Modified: luxrays/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-09-21 19:47:07 UTC (rev 141407) +++ PKGBUILD2015-09-21 19:50:34 UTC (rev 141408) @@ -3,7 +3,7 @@ pkgname='luxrays' pkgver=1.5 _pkgver=53c0b9a41ea2 -pkgrel=1 +pkgrel=2 pkgdesc="Accelerate the ray intersection process by using GPUs" arch=('x86_64') url="http://www.luxrender.net/"; @@ -47,8 +47,8 @@ cp -a include "$pkgdir"/usr # install pyluxcore to the Python search path - install -d -m755 "$pkgdir"/usr/lib/python3.4/ - mv "$pkgdir"/usr/lib/pyluxcore.so "$pkgdir"/usr/lib/python3.4/ + install -d -m755 "$pkgdir"/usr/lib/python3.5/ + mv "$pkgdir"/usr/lib/pyluxcore.so "$pkgdir"/usr/lib/python3.5/ } # vim:set ts=2 sw=2 et:
[arch-commits] Commit in linux-lts/trunk (PKGBUILD config config.x86_64)
Date: Monday, September 21, 2015 @ 21:48:22 Author: andyrtr Revision: 247040 upgpkg: linux-lts 4.1.7-2 fix I2C controller based battery - FS#46367 Modified: linux-lts/trunk/PKGBUILD linux-lts/trunk/config linux-lts/trunk/config.x86_64 ---+ PKGBUILD |6 +++--- config| 47 +-- config.x86_64 | 46 ++ 3 files changed, 90 insertions(+), 9 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-09-21 18:23:23 UTC (rev 247039) +++ PKGBUILD2015-09-21 19:48:22 UTC (rev 247040) @@ -5,7 +5,7 @@ pkgbase=linux-lts _srcname=linux-4.1 pkgver=4.1.7 -pkgrel=1 +pkgrel=2 arch=('i686' 'x86_64') url="http://www.kernel.org/"; license=('GPL2') @@ -23,8 +23,8 @@ 'SKIP' 'bbd57fb48ea8e6971680818ba8722fd38ae419dca6047b852f10d33e5cd2ff6b' 'SKIP' -'237f3314ba8b7fb30e271d46eca388ffa98d1d3b9ace9eefcb523b9a9e0659b0' -'261aa4897deafe97d046343b8fc6b79d6679b92507eb93927e840c4b584d1593' +'53141e415a1b66f211510337fea60587a9255b6b0324ee44531441a4a77523ca' +'a17e6924fca734dbb473d61d5ab005d73303b1ac6c02b51204111c6b5032489c' '1f036f7464da54ae510630f0edb69faa115287f86d9f17641197ffda8cfd49e0' '1256b241cd477b265a3c2d64bdc19ffe3c9bbcee82ea3994c590c2c76e767d99') validpgpkeys=('ABAF11C65A2970B130ABE3C479BE3E4300411886' # Linus Torvalds Modified: config === --- config 2015-09-21 18:23:23 UTC (rev 247039) +++ config 2015-09-21 19:48:22 UTC (rev 247040) @@ -1,6 +1,6 @@ # # Automatically generated file; DO NOT EDIT. -# Linux/x86 4.1.7-1 Kernel Configuration +# Linux/x86 4.1.7-2 Kernel Configuration # # CONFIG_64BIT is not set CONFIG_X86_32=y @@ -3432,7 +3432,8 @@ # # I2C support # -CONFIG_I2C=m +CONFIG_I2C=y +CONFIG_ACPI_I2C_OPREGION=y CONFIG_I2C_BOARDINFO=y CONFIG_I2C_COMPAT=y CONFIG_I2C_CHARDEV=m @@ -3631,6 +3632,7 @@ # CONFIG_GPIO_MAX732X is not set # CONFIG_GPIO_PCA953X is not set # CONFIG_GPIO_PCF857X is not set +# CONFIG_GPIO_SX150X is not set # # MFD GPIO expanders @@ -3980,12 +3982,22 @@ # CONFIG_MFD_CORE=y CONFIG_MFD_CS5535=m +# CONFIG_MFD_AS3711 is not set +# CONFIG_MFD_AS3722 is not set +# CONFIG_PMIC_ADP5520 is not set +# CONFIG_MFD_AAT2870_CORE is not set # CONFIG_MFD_ATMEL_HLCDC is not set CONFIG_MFD_BCM590XX=m +# CONFIG_MFD_AXP20X is not set CONFIG_MFD_CROS_EC=m CONFIG_MFD_CROS_EC_I2C=m CONFIG_MFD_CROS_EC_SPI=m +# CONFIG_PMIC_DA903X is not set # CONFIG_MFD_DA9052_SPI is not set +# CONFIG_MFD_DA9052_I2C is not set +# CONFIG_MFD_DA9055 is not set +# CONFIG_MFD_DA9063 is not set +# CONFIG_MFD_DA9150 is not set # CONFIG_MFD_DLN2 is not set CONFIG_MFD_MC13XXX=m # CONFIG_MFD_MC13XXX_SPI is not set @@ -3992,11 +4004,24 @@ CONFIG_MFD_MC13XXX_I2C=m # CONFIG_MFD_HI6421_PMIC is not set CONFIG_HTC_PASIC3=m +# CONFIG_HTC_I2CPLD is not set # CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set CONFIG_LPC_ICH=m CONFIG_LPC_SCH=m +# CONFIG_INTEL_SOC_PMIC is not set # CONFIG_MFD_JANZ_CMODIO is not set # CONFIG_MFD_KEMPLD is not set +# CONFIG_MFD_88PM800 is not set +# CONFIG_MFD_88PM805 is not set +# CONFIG_MFD_88PM860X is not set +# CONFIG_MFD_MAX14577 is not set +# CONFIG_MFD_MAX77686 is not set +# CONFIG_MFD_MAX77693 is not set +# CONFIG_MFD_MAX77843 is not set +# CONFIG_MFD_MAX8907 is not set +# CONFIG_MFD_MAX8925 is not set +# CONFIG_MFD_MAX8997 is not set +# CONFIG_MFD_MAX8998 is not set # CONFIG_MFD_MT6397 is not set # CONFIG_MFD_MENF21BMC is not set # CONFIG_EZX_PCAP is not set @@ -4008,28 +4033,43 @@ CONFIG_UCB1400_CORE=m CONFIG_MFD_RDC321X=m CONFIG_MFD_RTSX_PCI=m +# CONFIG_MFD_RT5033 is not set CONFIG_MFD_RTSX_USB=m +# CONFIG_MFD_RC5T583 is not set CONFIG_MFD_RK808=m CONFIG_MFD_RN5T618=m +# CONFIG_MFD_SEC_CORE is not set CONFIG_MFD_SI476X_CORE=m CONFIG_MFD_SM501=m CONFIG_MFD_SM501_GPIO=y # CONFIG_MFD_SKY81452 is not set +# CONFIG_MFD_SMSC is not set CONFIG_ABX500_CORE=y +# CONFIG_AB3100_CORE is not set # CONFIG_MFD_STMPE is not set CONFIG_MFD_SYSCON=y CONFIG_MFD_TI_AM335X_TSCADC=m CONFIG_MFD_LP3943=m +# CONFIG_MFD_LP8788 is not set +# CONFIG_MFD_PALMAS is not set # CONFIG_TPS6105X is not set CONFIG_TPS65010=m CONFIG_TPS6507X=m +# CONFIG_MFD_TPS65090 is not set CONFIG_MFD_TPS65217=m CONFIG_MFD_TPS65218=m +# CONFIG_MFD_TPS6586X is not set +# CONFIG_MFD_TPS65910 is not set # CONFIG_MFD_TPS65912 is not set +# CONFIG_MFD_TPS65912_I2C is not set # CONFIG_MFD_TPS65912_SPI is not set +# CONFIG_MFD_TPS80031 is not set +# CONFIG_TWL4030_CORE is not set +# CONFIG_TWL6040_CORE is not set CONFIG_MFD_WL1273_CORE=m CONFIG_MFD_LM3533=m # CONFIG_MFD_TIMBERDALE is not set +# CONFIG_MFD_TC3589X is not set # CONFIG_MFD_TMIO is not set CONFIG_MFD_VX855=m CONFIG_MFD_ARIZONA=y @@ -4038,7 +4078,10 @@ CONFIG_MFD_WM5102
[arch-commits] Commit in linux-lts/repos (24 files)
Date: Monday, September 21, 2015 @ 21:48:49 Author: andyrtr Revision: 247041 archrelease: copy trunk to testing-i686, testing-x86_64 Added: linux-lts/repos/testing-i686/PKGBUILD (from rev 247040, linux-lts/trunk/PKGBUILD) linux-lts/repos/testing-i686/change-default-console-loglevel.patch (from rev 247040, linux-lts/trunk/change-default-console-loglevel.patch) linux-lts/repos/testing-i686/config (from rev 247040, linux-lts/trunk/config) linux-lts/repos/testing-i686/config.x86_64 (from rev 247040, linux-lts/trunk/config.x86_64) linux-lts/repos/testing-i686/linux-lts.install (from rev 247040, linux-lts/trunk/linux-lts.install) linux-lts/repos/testing-i686/linux-lts.preset (from rev 247040, linux-lts/trunk/linux-lts.preset) linux-lts/repos/testing-x86_64/PKGBUILD (from rev 247040, linux-lts/trunk/PKGBUILD) linux-lts/repos/testing-x86_64/change-default-console-loglevel.patch (from rev 247040, linux-lts/trunk/change-default-console-loglevel.patch) linux-lts/repos/testing-x86_64/config (from rev 247040, linux-lts/trunk/config) linux-lts/repos/testing-x86_64/config.x86_64 (from rev 247040, linux-lts/trunk/config.x86_64) linux-lts/repos/testing-x86_64/linux-lts.install (from rev 247040, linux-lts/trunk/linux-lts.install) linux-lts/repos/testing-x86_64/linux-lts.preset (from rev 247040, linux-lts/trunk/linux-lts.preset) Deleted: linux-lts/repos/testing-i686/PKGBUILD linux-lts/repos/testing-i686/change-default-console-loglevel.patch linux-lts/repos/testing-i686/config linux-lts/repos/testing-i686/config.x86_64 linux-lts/repos/testing-i686/linux-lts.install linux-lts/repos/testing-i686/linux-lts.preset linux-lts/repos/testing-x86_64/PKGBUILD linux-lts/repos/testing-x86_64/change-default-console-loglevel.patch linux-lts/repos/testing-x86_64/config linux-lts/repos/testing-x86_64/config.x86_64 linux-lts/repos/testing-x86_64/linux-lts.install linux-lts/repos/testing-x86_64/linux-lts.preset --+ /PKGBUILD| 580 /change-default-console-loglevel.patch | 22 /config |15118 + /config.x86_64 |14612 /linux-lts.install | 74 /linux-lts.preset| 28 testing-i686/PKGBUILD| 290 testing-i686/change-default-console-loglevel.patch | 11 testing-i686/config | 7516 testing-i686/config.x86_64 | 7268 testing-i686/linux-lts.install | 37 testing-i686/linux-lts.preset| 14 testing-x86_64/PKGBUILD | 290 testing-x86_64/change-default-console-loglevel.patch | 11 testing-x86_64/config| 7516 testing-x86_64/config.x86_64 | 7268 testing-x86_64/linux-lts.install | 37 testing-x86_64/linux-lts.preset | 14 18 files changed, 30434 insertions(+), 30272 deletions(-) The diff is longer than the limit of 200KB. Use svn diff -r 247040:247041 to see the changes.
[arch-commits] Commit in stuntrally-data/repos/community-any (PKGBUILD PKGBUILD)
Date: Monday, September 21, 2015 @ 21:47:07 Author: svenstaro Revision: 141407 archrelease: copy trunk to community-any Added: stuntrally-data/repos/community-any/PKGBUILD (from rev 141406, stuntrally-data/trunk/PKGBUILD) Deleted: stuntrally-data/repos/community-any/PKGBUILD --+ PKGBUILD | 110 ++--- 1 file changed, 55 insertions(+), 55 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2015-09-21 19:46:53 UTC (rev 141406) +++ PKGBUILD2015-09-21 19:47:07 UTC (rev 141407) @@ -1,55 +0,0 @@ -# Maintainer: Sven-Hendrik Haase - -pkgname=stuntrally-data -_pkgname=stuntrally -pkgver=2.5 -pkgrel=2 -pkgdesc="Stunt Rally game with track editor, based on VDrift (data files)" -arch=('any') -license=('GPL3') -url="http://code.google.com/p/vdrift-ogre"; -makedepends=('cmake' 'boost' 'libvorbis' 'mygui' 'sdl2' 'enet' 'hicolor-icon-theme' 'libxcursor') -source=("$pkgname-$pkgver.tar.gz::https://github.com/stuntrally/stuntrally/archive/${pkgver}.tar.gz"; - "$pkgname-tracks-$pkgver.tar.gz::https://github.com/stuntrally/tracks/archive/${pkgver}.tar.gz";) -sha256sums=('31e565c531b57895745b2dd5ecd1a2f241b1ac415d984d038390a49398974b23' -'16b3e5d68eaffb8921b46066dde39208337c3142b2e1db5e6431a1bf867461ed') - -build() { - # build the sources - cd "${srcdir}/stuntrally-${pkgver}/" - - rm -rf build - mkdir build && cd build - - cmake .. \ - -DCMAKE_INSTALL_PREFIX="/usr" \ - -DSHARE_INSTALL="share/stuntrally" - make - - # build the tracks - cd "${srcdir}/tracks-${pkgver}/" - - rm -rf build - mkdir build && cd build - - cmake .. \ - -DCMAKE_INSTALL_PREFIX="/usr" - make -} - -package() { - # install the sources - cd "${srcdir}/stuntrally-${pkgver}/build/" - make DESTDIR="${pkgdir}" install - - # install the tracks - cd "${srcdir}/tracks-${pkgver}/build" - make DESTDIR="${pkgdir}/usr/share/stuntrally/" install - - # clean up - rm -rf "${pkgdir}/usr/share/stuntrally/tracks/build" - rm -rf "${pkgdir}/usr/share/icons" - rm -rf "${pkgdir}/usr/share/applications" - rm -rf "${pkgdir}/usr/include" - rm -rf "${pkgdir}/usr/bin" -} Copied: stuntrally-data/repos/community-any/PKGBUILD (from rev 141406, stuntrally-data/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2015-09-21 19:47:07 UTC (rev 141407) @@ -0,0 +1,55 @@ +# Maintainer: Sven-Hendrik Haase + +pkgname=stuntrally-data +_pkgname=stuntrally +pkgver=2.6 +pkgrel=1 +pkgdesc="Stunt Rally game with track editor, based on VDrift (data files)" +arch=('any') +license=('GPL3') +url="http://code.google.com/p/vdrift-ogre"; +makedepends=('cmake' 'boost' 'libvorbis' 'mygui' 'sdl2' 'enet' 'hicolor-icon-theme' 'libxcursor' 'bullet' 'openal') +source=("$pkgname-$pkgver.tar.gz::https://github.com/stuntrally/stuntrally/archive/${pkgver}.tar.gz"; + "$pkgname-tracks-$pkgver.tar.gz::https://github.com/stuntrally/tracks/archive/${pkgver}.tar.gz";) +sha256sums=('8cc309d27d26f78dcc596440547d68b5e41d02ef830df2d52d38611d45ebbaca' +'4bce700516a2a178ac04cfbf7df2887ba42225802f5a3e670f770ea01345687b') + +build() { + # build the sources + cd "${srcdir}/stuntrally-${pkgver}/" + + rm -rf build + mkdir build && cd build + + cmake .. \ + -DCMAKE_INSTALL_PREFIX="/usr" \ + -DSHARE_INSTALL="share/stuntrally" + make + + # build the tracks + cd "${srcdir}/tracks-${pkgver}/" + + rm -rf build + mkdir build && cd build + + cmake .. \ + -DCMAKE_INSTALL_PREFIX="/usr" + make +} + +package() { + # install the sources + cd "${srcdir}/stuntrally-${pkgver}/build/" + make DESTDIR="${pkgdir}" install + + # install the tracks + cd "${srcdir}/tracks-${pkgver}/build" + make DESTDIR="${pkgdir}/usr/share/stuntrally/" install + + # clean up + rm -rf "${pkgdir}/usr/share/stuntrally/tracks/build" + rm -rf "${pkgdir}/usr/share/icons" + rm -rf "${pkgdir}/usr/share/applications" + rm -rf "${pkgdir}/usr/include" + rm -rf "${pkgdir}/usr/bin" +}
[arch-commits] Commit in stuntrally/repos (8 files)
Date: Monday, September 21, 2015 @ 21:38:34 Author: svenstaro Revision: 141405 archrelease: copy trunk to community-x86_64, community-i686 Added: stuntrally/repos/community-i686/PKGBUILD (from rev 141404, stuntrally/trunk/PKGBUILD) stuntrally/repos/community-i686/stuntrally.install (from rev 141404, stuntrally/trunk/stuntrally.install) stuntrally/repos/community-x86_64/PKGBUILD (from rev 141404, stuntrally/trunk/PKGBUILD) stuntrally/repos/community-x86_64/stuntrally.install (from rev 141404, stuntrally/trunk/stuntrally.install) Deleted: stuntrally/repos/community-i686/PKGBUILD stuntrally/repos/community-i686/stuntrally.install stuntrally/repos/community-x86_64/PKGBUILD stuntrally/repos/community-x86_64/stuntrally.install -+ /PKGBUILD | 74 ++ /stuntrally.install | 26 +++ community-i686/PKGBUILD | 37 - community-i686/stuntrally.install | 13 - community-x86_64/PKGBUILD | 37 - community-x86_64/stuntrally.install | 13 - 6 files changed, 100 insertions(+), 100 deletions(-) Deleted: community-i686/PKGBUILD === --- community-i686/PKGBUILD 2015-09-21 19:38:25 UTC (rev 141404) +++ community-i686/PKGBUILD 2015-09-21 19:38:34 UTC (rev 141405) @@ -1,37 +0,0 @@ -# $Id$ -# Maintainer: Sven-Hendrik Haase -# Contributor: Sven Schneider -# Contributor: Jason Melton - -pkgname=stuntrally -pkgver=2.5 -pkgrel=4 -pkgdesc='Stunt Rally game with track editor, based on VDrift' -arch=('x86_64' 'i686') -license=('GPL3') -url='http://code.google.com/p/vdrift-ogre' -depends=('libvorbis' 'mygui' 'sdl2' 'enet' 'gtk-update-icon-cache' 'stuntrally-data') -makedepends=('cmake' 'boost' 'git') -install=stuntrally.install -source=("$pkgname-$pkgver.tar.gz::https://github.com/stuntrally/stuntrally/archive/${pkgver}.tar.gz";) -sha256sums=('31e565c531b57895745b2dd5ecd1a2f241b1ac415d984d038390a49398974b23') - -build() { - cd "$srcdir/stuntrally-$pkgver/" - - rm -rf build - mkdir build && cd build - cmake .. \ --DCMAKE_INSTALL_PREFIX="/usr" \ --DSHARE_INSTALL="share/stuntrally" - make -} - -package() { - cd "$srcdir/stuntrally-$pkgver/build/" - - make DESTDIR="$pkgdir" install - rm -rf "$pkgdir/usr/share/stuntrally/" -} - -# vim:set ts=2 sw=2 et: Copied: stuntrally/repos/community-i686/PKGBUILD (from rev 141404, stuntrally/trunk/PKGBUILD) === --- community-i686/PKGBUILD (rev 0) +++ community-i686/PKGBUILD 2015-09-21 19:38:34 UTC (rev 141405) @@ -0,0 +1,37 @@ +# $Id$ +# Maintainer: Sven-Hendrik Haase +# Contributor: Sven Schneider +# Contributor: Jason Melton + +pkgname=stuntrally +pkgver=2.6 +pkgrel=1 +pkgdesc='Stunt Rally game with track editor, based on VDrift' +arch=('x86_64' 'i686') +license=('GPL3') +url='http://code.google.com/p/vdrift-ogre' +depends=('libvorbis' 'mygui' 'sdl2' 'enet' 'gtk-update-icon-cache' 'stuntrally-data' 'bullet' 'openal') +makedepends=('cmake' 'boost' 'git') +install=stuntrally.install +source=("$pkgname-$pkgver.tar.gz::https://github.com/stuntrally/stuntrally/archive/${pkgver}.tar.gz";) +sha256sums=('8cc309d27d26f78dcc596440547d68b5e41d02ef830df2d52d38611d45ebbaca') + +build() { + cd "$srcdir/stuntrally-$pkgver/" + + rm -rf build + mkdir build && cd build + cmake .. \ +-DCMAKE_INSTALL_PREFIX="/usr" \ +-DSHARE_INSTALL="share/stuntrally" + make +} + +package() { + cd "$srcdir/stuntrally-$pkgver/build/" + + make DESTDIR="$pkgdir" install + rm -rf "$pkgdir/usr/share/stuntrally/" +} + +# vim:set ts=2 sw=2 et: Deleted: community-i686/stuntrally.install === --- community-i686/stuntrally.install 2015-09-21 19:38:25 UTC (rev 141404) +++ community-i686/stuntrally.install 2015-09-21 19:38:34 UTC (rev 141405) @@ -1,13 +0,0 @@ -post_install() { - gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor -} - -post_upgrade() { - post_install -} - -post_remove() { - post_install -} - -# vim:set ts=2 sw=2 et: Copied: stuntrally/repos/community-i686/stuntrally.install (from rev 141404, stuntrally/trunk/stuntrally.install) === --- community-i686/stuntrally.install (rev 0) +++ community-i686/stuntrally.install 2015-09-21 19:38:34 UTC (rev 141405) @@ -0,0 +1,13 @@ +post_install() { + gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} + +# vim:set ts=2 sw=2 et: Deleted: community-x86_64/PKGBUILD === --- community-x86_64/PKGBUILD 2015-09-21 19:38:25 UTC (rev 141404) +++ community-x86_64
[arch-commits] Commit in stuntrally/trunk (PKGBUILD)
Date: Monday, September 21, 2015 @ 21:38:25 Author: svenstaro Revision: 141404 upgpkg: stuntrally 2.6-1 upstream release 2.6 Modified: stuntrally/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2015-09-21 19:25:19 UTC (rev 141403) +++ PKGBUILD2015-09-21 19:38:25 UTC (rev 141404) @@ -10,7 +10,7 @@ arch=('x86_64' 'i686') license=('GPL3') url='http://code.google.com/p/vdrift-ogre' -depends=('libvorbis' 'mygui' 'sdl2' 'enet' 'gtk-update-icon-cache' 'stuntrally-data') +depends=('libvorbis' 'mygui' 'sdl2' 'enet' 'gtk-update-icon-cache' 'stuntrally-data' 'bullet' 'openal') makedepends=('cmake' 'boost' 'git') install=stuntrally.install source=("$pkgname-$pkgver.tar.gz::https://github.com/stuntrally/stuntrally/archive/${pkgver}.tar.gz";)
[arch-commits] Commit in mediastreamer/trunk (PKGBUILD)
Date: Monday, September 21, 2015 @ 21:25:07 Author: spupykin Revision: 141402 Modified: mediastreamer/trunk/PKGBUILD --+ PKGBUILD |3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2015-09-21 19:16:45 UTC (rev 141401) +++ PKGBUILD2015-09-21 19:25:07 UTC (rev 141402) @@ -23,7 +23,8 @@ build() { cd $pkgname-$pkgver ./configure --prefix=/usr \ ---enable-glx --enable-xv --enable-zrtp --enable-external-ortp +--enable-glx --enable-xv --enable-zrtp --enable-external-ortp \ +--disable-strict make }
[arch-commits] Commit in bzrtp/trunk (PKGBUILD mbedtls2.patch)
Date: Monday, September 21, 2015 @ 21:25:19 Author: spupykin Revision: 141403 Modified: bzrtp/trunk/PKGBUILD bzrtp/trunk/mbedtls2.patch + PKGBUILD |2 +- mbedtls2.patch | 52 ++-- 2 files changed, 43 insertions(+), 11 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-09-21 19:25:07 UTC (rev 141402) +++ PKGBUILD2015-09-21 19:25:19 UTC (rev 141403) @@ -15,7 +15,7 @@ mbedtls2.patch) md5sums=('b52fa670fb319022166cb10d641da4e6' 'SKIP' - 'a644dda812e1535523068e42e6882a0b') + 'a5c77d9bcfda0aed17572a32b4cab69d') prepare() { cd ${pkgname}-${pkgver} Modified: mbedtls2.patch === --- mbedtls2.patch 2015-09-21 19:25:07 UTC (rev 141402) +++ mbedtls2.patch 2015-09-21 19:25:19 UTC (rev 141403) @@ -1,6 +1,18 @@ -diff -wbBur bzrtp-1.0.2.org/configure.ac bzrtp-1.0.2/configure.ac bzrtp-1.0.2.org/configure.ac 2015-05-07 18:45:29.0 +0300 -+++ bzrtp-1.0.2/configure.ac 2015-07-30 15:19:26.965083810 +0300 +diff -wbBur bzrtp-1.0.2/configure bzrtp-1.0.2,my/configure +--- bzrtp-1.0.2/configure 2015-05-07 18:49:06.0 +0300 bzrtp-1.0.2,my/configure 2015-09-21 22:13:24.471826101 +0300 +@@ -12488,7 +12488,7 @@ + POLARSSL_LIBS="-L${polarssl_prefix}/lib" + fi + +-POLARSSL_LIBS="$POLARSSL_LIBS -lpolarssl" ++POLARSSL_LIBS="$POLARSSL_LIBS -lmbedtls" + + + +diff -wbBur bzrtp-1.0.2/configure.ac bzrtp-1.0.2,my/configure.ac +--- bzrtp-1.0.2/configure.ac 2015-05-07 18:45:29.0 +0300 bzrtp-1.0.2,my/configure.ac2015-09-21 22:13:00.985159704 +0300 @@ -42,7 +42,7 @@ POLARSSL_LIBS="-L${polarssl_prefix}/lib" fi @@ -10,9 +22,9 @@ AC_SUBST(POLARSSL_LIBS) AC_SUBST(POLARSSL_CFLAGS) -diff -wbBur bzrtp-1.0.2.org/src/cryptoPolarssl.c bzrtp-1.0.2/src/cryptoPolarssl.c bzrtp-1.0.2.org/src/cryptoPolarssl.c 2015-05-07 18:14:36.0 +0300 -+++ bzrtp-1.0.2/src/cryptoPolarssl.c 2015-07-30 15:18:40.811751008 +0300 +diff -wbBur bzrtp-1.0.2/src/cryptoPolarssl.c bzrtp-1.0.2,my/src/cryptoPolarssl.c +--- bzrtp-1.0.2/src/cryptoPolarssl.c 2015-05-07 18:14:36.0 +0300 bzrtp-1.0.2,my/src/cryptoPolarssl.c2015-09-21 22:21:04.521820813 +0300 @@ -25,17 +25,18 @@ #include @@ -25,7 +37,7 @@ /* Hash function sha1(sha2 is different for polarssl v1.2 and v1.3 ) */ -#include "polarssl/sha1.h" -+#include "mbedtls/sha1.h" ++#include "mbedtls/md.h" /* Asymmetrics encryption */ -#include "polarssl/dhm.h" @@ -47,7 +59,17 @@ return NULL; } -@@ -396,11 +398,11 @@ +@@ -183,7 +185,8 @@ + uint8_t *output) + { + uint8_t hmacOutput[20]; +- sha1_hmac(key, keyLength, input, inputLength, hmacOutput); ++ const mbedtls_md_info_t *mdinfo = mbedtls_md_info_from_type(MBEDTLS_MD_SHA1); ++ mbedtls_md_hmac(mdinfo, key, keyLength, input, inputLength, hmacOutput); + + /* check output length, can't be>20 */ + if (hmacLength>20) { +@@ -396,11 +399,11 @@ /*** End of code common to polarSSL version 1.2 and 1.3 ***/ /* check polarssl version */ @@ -61,7 +83,17 @@ /* * @brief SHA256 wrapper -@@ -464,7 +466,7 @@ +@@ -444,7 +447,8 @@ + uint8_t *output) + { + uint8_t hmacOutput[32]; +- sha256_hmac(key, keyLength, input, inputLength, hmacOutput, 0); /* last param to zero to select SHA256 and not SHA224 */ ++ const mbedtls_md_info_t *mdinfo = mbedtls_md_info_from_type(MBEDTLS_MD_SHA256); ++ mbedtls_md_hmac(mdinfo, key, keyLength, input, inputLength, hmacOutput); + + /* check output length, can't be>32 */ + if (hmacLength>32) { +@@ -464,7 +468,7 @@ /* compute the secret key */ keyLength = context->primeLength; /* undocumented but this value seems to be in/out, so we must set it to the expected key length */ context->key = (uint8_t *)malloc(keyLength*sizeof(uint8_t)); /* allocate key buffer */ @@ -70,7 +102,7 @@ } -@@ -472,7 +474,7 @@ +@@ -472,7 +476,7 @@ #else /* POLAR SSL VERSION 1.2 */ /* Hashs */
[arch-commits] Commit in stuntrally/trunk (PKGBUILD)
Date: Monday, September 21, 2015 @ 21:16:45 Author: svenstaro Revision: 141401 upgpkg: stuntrally 2.6-1 upstream release 2.6 Modified: stuntrally/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-09-21 18:51:16 UTC (rev 141400) +++ PKGBUILD2015-09-21 19:16:45 UTC (rev 141401) @@ -4,8 +4,8 @@ # Contributor: Jason Melton pkgname=stuntrally -pkgver=2.5 -pkgrel=4 +pkgver=2.6 +pkgrel=1 pkgdesc='Stunt Rally game with track editor, based on VDrift' arch=('x86_64' 'i686') license=('GPL3') @@ -14,7 +14,7 @@ makedepends=('cmake' 'boost' 'git') install=stuntrally.install source=("$pkgname-$pkgver.tar.gz::https://github.com/stuntrally/stuntrally/archive/${pkgver}.tar.gz";) -sha256sums=('31e565c531b57895745b2dd5ecd1a2f241b1ac415d984d038390a49398974b23') +sha256sums=('8cc309d27d26f78dcc596440547d68b5e41d02ef830df2d52d38611d45ebbaca') build() { cd "$srcdir/stuntrally-$pkgver/"
[arch-commits] Commit in qt5ct/repos (12 files)
Date: Monday, September 21, 2015 @ 20:51:16 Author: arojas Revision: 141400 archrelease: copy trunk to community-i686, community-x86_64 Added: qt5ct/repos/community-i686/COPYING.BSD (from rev 141399, qt5ct/trunk/COPYING.BSD) qt5ct/repos/community-i686/PKGBUILD (from rev 141399, qt5ct/trunk/PKGBUILD) qt5ct/repos/community-i686/qt5ct.install (from rev 141399, qt5ct/trunk/qt5ct.install) qt5ct/repos/community-x86_64/COPYING.BSD (from rev 141399, qt5ct/trunk/COPYING.BSD) qt5ct/repos/community-x86_64/PKGBUILD (from rev 141399, qt5ct/trunk/PKGBUILD) qt5ct/repos/community-x86_64/qt5ct.install (from rev 141399, qt5ct/trunk/qt5ct.install) Deleted: qt5ct/repos/community-i686/COPYING.BSD qt5ct/repos/community-i686/PKGBUILD qt5ct/repos/community-i686/qt5ct.install qt5ct/repos/community-x86_64/COPYING.BSD qt5ct/repos/community-x86_64/PKGBUILD qt5ct/repos/community-x86_64/qt5ct.install + /COPYING.BSD | 60 /PKGBUILD | 64 +++ /qt5ct.install | 26 +++ community-i686/COPYING.BSD | 30 -- community-i686/PKGBUILD| 32 --- community-i686/qt5ct.install | 13 --- community-x86_64/COPYING.BSD | 30 -- community-x86_64/PKGBUILD | 32 --- community-x86_64/qt5ct.install | 13 --- 9 files changed, 150 insertions(+), 150 deletions(-) Deleted: community-i686/COPYING.BSD === --- community-i686/COPYING.BSD 2015-09-21 18:50:13 UTC (rev 141399) +++ community-i686/COPYING.BSD 2015-09-21 18:51:16 UTC (rev 141400) @@ -1,30 +0,0 @@ -Software License Agreement (BSD License) - -Copyright (c) 2015, Ilya Kotov -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright notice, this - list of conditions and the following disclaimer in the documentation and/or - other materials provided with the distribution. - -* Neither the name of schillmania.com nor the names of its contributors may be - used to endorse or promote products derived from this software without - specific prior written permission from schillmania.com. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - Copied: qt5ct/repos/community-i686/COPYING.BSD (from rev 141399, qt5ct/trunk/COPYING.BSD) === --- community-i686/COPYING.BSD (rev 0) +++ community-i686/COPYING.BSD 2015-09-21 18:51:16 UTC (rev 141400) @@ -0,0 +1,30 @@ +Software License Agreement (BSD License) + +Copyright (c) 2015, Ilya Kotov +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +* Redistributions in binary form must reproduce the above copyright notice, this + list of conditions and the following disclaimer in the documentation and/or + other materials provided with the distribution. + +* Neither the name of schillmania.com nor the names of its contributors may be + used to endorse or promote products derived from this software without + specific prior written permission from schillmania.com. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
[arch-commits] Commit in qt5ct/trunk (PKGBUILD)
Date: Monday, September 21, 2015 @ 20:50:13 Author: arojas Revision: 141399 Update to 0.18 Modified: qt5ct/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-09-21 18:29:29 UTC (rev 141398) +++ PKGBUILD2015-09-21 18:50:13 UTC (rev 141399) @@ -4,7 +4,7 @@ # Contributor: Zatherz pkgname=qt5ct -pkgver=0.17 +pkgver=0.18 pkgrel=1 pkgdesc="Qt5 Configuration Utility" arch=(i686 x86_64) @@ -14,7 +14,7 @@ makedepends=(qt5-tools) source=("http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.bz2"; 'COPYING.BSD') install=$pkgname.install -sha256sums=('0b3dda666cee65d62f149012b3ec0ecbd7e6bb2dd0bd827180ac27ca3e7aa99e' +sha256sums=('06224bd07ae854e5961f69c7e0fdd890c0b3f49aa8f2a2827abadc3cf80e81c6' 'b1742f842de71738501a471e4ce1cac38a02d3240a91848fbd32429bc20aa69b') build() {
[arch-commits] Commit in lib32-flashplugin/trunk (PKGBUILD)
Date: Monday, September 21, 2015 @ 20:29:23 Author: foutrelis Revision: 141397 upgpkg: lib32-flashplugin 11.2.202.521-1 New upstream release. Modified: lib32-flashplugin/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-09-21 16:44:56 UTC (rev 141396) +++ PKGBUILD2015-09-21 18:29:23 UTC (rev 141397) @@ -3,7 +3,7 @@ pkgname=lib32-flashplugin _licensefile='PlatformClients_PC_WWEULA_Combined_20100108_1657.pdf' -pkgver=11.2.202.508 +pkgver=11.2.202.521 pkgrel=1 license=('custom') pkgdesc='Adobe Flash Player for 32-bit Mozilla-based browsers' @@ -13,7 +13,7 @@ #optdepends=('lib32-libvdpau: video hardware decoding for supporting players') options=(!strip) source=("flashplugin_$pkgver.i386.tar.gz::http://fpdownload.macromedia.com/get/flashplayer/pdc/$pkgver/install_flash_player_11_linux.i386.tar.gz";) -md5sums=('af54d45bf9c80c855f20cc2b73c685af') +md5sums=('36464a81eb872236f591cb175f384fa3') package() { install -Dm644 "${srcdir}/libflashplayer.so" "${pkgdir}/usr/lib32/mozilla/plugins/libflashplayer.so"
[arch-commits] Commit in lib32-flashplugin/repos/multilib-x86_64 (PKGBUILD PKGBUILD)
Date: Monday, September 21, 2015 @ 20:29:29 Author: foutrelis Revision: 141398 archrelease: copy trunk to multilib-x86_64 Added: lib32-flashplugin/repos/multilib-x86_64/PKGBUILD (from rev 141397, lib32-flashplugin/trunk/PKGBUILD) Deleted: lib32-flashplugin/repos/multilib-x86_64/PKGBUILD --+ PKGBUILD | 44 ++-- 1 file changed, 22 insertions(+), 22 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2015-09-21 18:29:23 UTC (rev 141397) +++ PKGBUILD2015-09-21 18:29:29 UTC (rev 141398) @@ -1,22 +0,0 @@ -# $Id$ -# Maintainer: Daniel Wallace - -pkgname=lib32-flashplugin -_licensefile='PlatformClients_PC_WWEULA_Combined_20100108_1657.pdf' -pkgver=11.2.202.508 -pkgrel=1 -license=('custom') -pkgdesc='Adobe Flash Player for 32-bit Mozilla-based browsers' -url="http://get.adobe.com/flashplayer"; -arch=('x86_64') -depends=('mozilla-common' 'lib32-libxt' 'lib32-gtk2' 'lib32-nss' 'lib32-curl' 'lib32-alsa-lib') -#optdepends=('lib32-libvdpau: video hardware decoding for supporting players') -options=(!strip) -source=("flashplugin_$pkgver.i386.tar.gz::http://fpdownload.macromedia.com/get/flashplayer/pdc/$pkgver/install_flash_player_11_linux.i386.tar.gz";) -md5sums=('af54d45bf9c80c855f20cc2b73c685af') - -package() { - install -Dm644 "${srcdir}/libflashplayer.so" "${pkgdir}/usr/lib32/mozilla/plugins/libflashplayer.so" - install -d "$pkgdir/usr/share/licenses" - ln -s "${pkgname#*-}" "$pkgdir/usr/share/licenses/$pkgname" -} Copied: lib32-flashplugin/repos/multilib-x86_64/PKGBUILD (from rev 141397, lib32-flashplugin/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2015-09-21 18:29:29 UTC (rev 141398) @@ -0,0 +1,22 @@ +# $Id$ +# Maintainer: Daniel Wallace + +pkgname=lib32-flashplugin +_licensefile='PlatformClients_PC_WWEULA_Combined_20100108_1657.pdf' +pkgver=11.2.202.521 +pkgrel=1 +license=('custom') +pkgdesc='Adobe Flash Player for 32-bit Mozilla-based browsers' +url="http://get.adobe.com/flashplayer"; +arch=('x86_64') +depends=('mozilla-common' 'lib32-libxt' 'lib32-gtk2' 'lib32-nss' 'lib32-curl' 'lib32-alsa-lib') +#optdepends=('lib32-libvdpau: video hardware decoding for supporting players') +options=(!strip) +source=("flashplugin_$pkgver.i386.tar.gz::http://fpdownload.macromedia.com/get/flashplayer/pdc/$pkgver/install_flash_player_11_linux.i386.tar.gz";) +md5sums=('36464a81eb872236f591cb175f384fa3') + +package() { + install -Dm644 "${srcdir}/libflashplayer.so" "${pkgdir}/usr/lib32/mozilla/plugins/libflashplayer.so" + install -d "$pkgdir/usr/share/licenses" + ln -s "${pkgname#*-}" "$pkgdir/usr/share/licenses/$pkgname" +}
[arch-commits] Commit in flashplugin/repos (12 files)
Date: Monday, September 21, 2015 @ 20:23:23 Author: foutrelis Revision: 247039 archrelease: copy trunk to extra-i686, extra-x86_64 Added: flashplugin/repos/extra-i686/PKGBUILD (from rev 247038, flashplugin/trunk/PKGBUILD) flashplugin/repos/extra-i686/flashplugin.install (from rev 247038, flashplugin/trunk/flashplugin.install) flashplugin/repos/extra-i686/mms.cfg (from rev 247038, flashplugin/trunk/mms.cfg) flashplugin/repos/extra-x86_64/PKGBUILD (from rev 247038, flashplugin/trunk/PKGBUILD) flashplugin/repos/extra-x86_64/flashplugin.install (from rev 247038, flashplugin/trunk/flashplugin.install) flashplugin/repos/extra-x86_64/mms.cfg (from rev 247038, flashplugin/trunk/mms.cfg) Deleted: flashplugin/repos/extra-i686/PKGBUILD flashplugin/repos/extra-i686/flashplugin.install flashplugin/repos/extra-i686/mms.cfg flashplugin/repos/extra-x86_64/PKGBUILD flashplugin/repos/extra-x86_64/flashplugin.install flashplugin/repos/extra-x86_64/mms.cfg --+ /PKGBUILD| 88 + /flashplugin.install | 28 +++ /mms.cfg |4 + extra-i686/PKGBUILD | 44 -- extra-i686/flashplugin.install | 14 - extra-i686/mms.cfg |2 extra-x86_64/PKGBUILD| 44 -- extra-x86_64/flashplugin.install | 14 - extra-x86_64/mms.cfg |2 9 files changed, 120 insertions(+), 120 deletions(-) Deleted: extra-i686/PKGBUILD === --- extra-i686/PKGBUILD 2015-09-21 18:23:12 UTC (rev 247038) +++ extra-i686/PKGBUILD 2015-09-21 18:23:23 UTC (rev 247039) @@ -1,44 +0,0 @@ -# $Id$ -# Maintainer : Ionut Biru -# Contributor: Andrea Scarpino - -pkgname=flashplugin -_licensefile='PlatformClients_PC_WWEULA_Combined_20100108_1657.pdf' -pkgver=11.2.202.508 -pkgrel=1 -pkgdesc='Adobe Flash Player' -url='http://get.adobe.com/flashplayer' -arch=('i686' 'x86_64') -depends=('mozilla-common' 'libxt' 'libxpm' 'gtk2' 'nss' 'curl' 'hicolor-icon-theme') -optdepends=('libvdpau: GPU acceleration on Nvidia card') -provides=('flashplayer') -license=('custom') -options=(!strip) -install=flashplugin.install -backup=(etc/adobe/mms.cfg) -source=(http://www.adobe.com/products/eulas/pdfs/${_licensefile} -mms.cfg) -source_i686=(flashplugin_$pkgver.i386.tar.gz::http://fpdownload.macromedia.com/get/flashplayer/pdc/$pkgver/install_flash_player_11_linux.i386.tar.gz) -source_x86_64=(flashplugin_$pkgver.x86_64.tar.gz::http://fpdownload.macromedia.com/get/flashplayer/pdc/$pkgver/install_flash_player_11_linux.x86_64.tar.gz) -md5sums=('94ca2aecb409abfe36494d1a7ec7591d' - 'f34aae6279b40e0bd2abfb0d9963d7b8') -md5sums_i686=('af54d45bf9c80c855f20cc2b73c685af') -md5sums_x86_64=('96691df0084037eaeebac9b0838bd9a2') - -package () { -install -Dm755 libflashplayer.so "$pkgdir/usr/lib/mozilla/plugins/libflashplayer.so" -if [ "$CARCH" = x86_64 ]; then -install -Dm755 usr/lib64/kde4/kcm_adobe_flash_player.so "$pkgdir/usr/lib/kde4/kcm_adobe_flash_player.so" -else -install -Dm755 usr/lib/kde4/kcm_adobe_flash_player.so "$pkgdir/usr/lib/kde4/kcm_adobe_flash_player.so" -fi -install -Dm755 usr/bin/flash-player-properties "$pkgdir/usr/bin/flash-player-properties" -for i in 16x16 22x22 24x24 32x32 48x48; do -install -Dm644 usr/share/icons/hicolor/$i/apps/flash-player-properties.png \ - "$pkgdir/usr/share/icons/hicolor/$i/apps/flash-player-properties.png" -done -install -Dm644 usr/share/applications/flash-player-properties.desktop "$pkgdir/usr/share/applications/flash-player-properties.desktop" -install -Dm644 usr/share/kde4/services/kcm_adobe_flash_player.desktop "$pkgdir/usr/share/kde4/services/kcm_adobe_flash_player.desktop" -install -Dm644 "${_licensefile}" "$pkgdir/usr/share/licenses/$pkgname/LICENSE.pdf" -install -Dm644 mms.cfg "$pkgdir/etc/adobe/mms.cfg" -} Copied: flashplugin/repos/extra-i686/PKGBUILD (from rev 247038, flashplugin/trunk/PKGBUILD) === --- extra-i686/PKGBUILD (rev 0) +++ extra-i686/PKGBUILD 2015-09-21 18:23:23 UTC (rev 247039) @@ -0,0 +1,44 @@ +# $Id$ +# Maintainer : Ionut Biru +# Contributor: Andrea Scarpino + +pkgname=flashplugin +_licensefile='PlatformClients_PC_WWEULA_Combined_20100108_1657.pdf' +pkgver=11.2.202.521 +pkgrel=1 +pkgdesc='Adobe Flash Player' +url='http://get.adobe.com/flashplayer' +arch=('i686' 'x86_64') +depends=('mozilla-common' 'libxt' 'libxpm' 'gtk2' 'nss' 'curl' 'hicolor-icon-theme') +optdepends=('libvdpau: GPU acceleration on Nvidia card') +provides=('flashplayer') +license=('custom') +options=(!strip) +install=flashplugin.install +backup=(etc/adobe/mms.cfg) +source=(http://www.adobe.com/products/eulas/pdfs/${_licensef
[arch-commits] Commit in flashplugin/trunk (PKGBUILD)
Date: Monday, September 21, 2015 @ 20:23:12 Author: foutrelis Revision: 247038 upgpkg: flashplugin 11.2.202.521-1 New upstream release. Modified: flashplugin/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-09-21 16:42:03 UTC (rev 247037) +++ PKGBUILD2015-09-21 18:23:12 UTC (rev 247038) @@ -4,7 +4,7 @@ pkgname=flashplugin _licensefile='PlatformClients_PC_WWEULA_Combined_20100108_1657.pdf' -pkgver=11.2.202.508 +pkgver=11.2.202.521 pkgrel=1 pkgdesc='Adobe Flash Player' url='http://get.adobe.com/flashplayer' @@ -22,8 +22,8 @@ source_x86_64=(flashplugin_$pkgver.x86_64.tar.gz::http://fpdownload.macromedia.com/get/flashplayer/pdc/$pkgver/install_flash_player_11_linux.x86_64.tar.gz) md5sums=('94ca2aecb409abfe36494d1a7ec7591d' 'f34aae6279b40e0bd2abfb0d9963d7b8') -md5sums_i686=('af54d45bf9c80c855f20cc2b73c685af') -md5sums_x86_64=('96691df0084037eaeebac9b0838bd9a2') +md5sums_i686=('36464a81eb872236f591cb175f384fa3') +md5sums_x86_64=('8bd01552efd2de8ce5b70dbb90538885') package () { install -Dm755 libflashplayer.so "$pkgdir/usr/lib/mozilla/plugins/libflashplayer.so"
[arch-commits] Commit in lib32-mesa/repos/multilib-testing-x86_64 (6 files)
Date: Monday, September 21, 2015 @ 18:44:56 Author: lcarlier Revision: 141396 archrelease: copy trunk to multilib-testing-x86_64 Added: lib32-mesa/repos/multilib-testing-x86_64/0001-i965-Remove-early-release-of-DRI2-miptree.patch (from rev 141395, lib32-mesa/trunk/0001-i965-Remove-early-release-of-DRI2-miptree.patch) lib32-mesa/repos/multilib-testing-x86_64/LICENSE (from rev 141395, lib32-mesa/trunk/LICENSE) lib32-mesa/repos/multilib-testing-x86_64/PKGBUILD (from rev 141395, lib32-mesa/trunk/PKGBUILD) Deleted: lib32-mesa/repos/multilib-testing-x86_64/0001-i965-Remove-early-release-of-DRI2-miptree.patch lib32-mesa/repos/multilib-testing-x86_64/LICENSE lib32-mesa/repos/multilib-testing-x86_64/PKGBUILD --+ 0001-i965-Remove-early-release-of-DRI2-miptree.patch | 66 +-- LICENSE | 164 - PKGBUILD | 287 - 3 files changed, 263 insertions(+), 254 deletions(-) Deleted: 0001-i965-Remove-early-release-of-DRI2-miptree.patch === --- 0001-i965-Remove-early-release-of-DRI2-miptree.patch2015-09-21 16:44:49 UTC (rev 141395) +++ 0001-i965-Remove-early-release-of-DRI2-miptree.patch2015-09-21 16:44:56 UTC (rev 141396) @@ -1,33 +0,0 @@ -From e2a696a4cd93c2dbe445243de48ed478fbdb8009 Mon Sep 17 00:00:00 2001 -From: Chris Wilson -Date: Fri, 10 Jul 2015 10:41:35 +0100 -Subject: [PATCH] i965: Remove early release of DRI2 miptree - -intel_update_winsys_renderbuffer_miptree() will release the existing -miptree when wrapping a new DRI2 buffer, so we can remove the early -release and so prevent a NULL mt dereference should importing the new -DRI2 name fail for any reason. (Reusing the old DRI2 name will result -in the rendering going astray, to a stale buffer, and not shown on the -screen, but it allows us to issue a warning and not crash much later in -innocent code.) - -Signed-off-by: Chris Wilson - src/mesa/drivers/dri/i965/brw_context.c | 1 - - 1 file changed, 1 deletion(-) - -diff --git a/src/mesa/drivers/dri/i965/brw_context.c b/src/mesa/drivers/dri/i965/brw_context.c -index e8d1396..72f3897 100644 a/src/mesa/drivers/dri/i965/brw_context.c -+++ b/src/mesa/drivers/dri/i965/brw_context.c -@@ -1388,7 +1388,6 @@ intel_process_dri2_buffer(struct brw_context *brw, - buffer->cpp, buffer->pitch); -} - -- intel_miptree_release(&rb->mt); -bo = drm_intel_bo_gem_create_from_name(brw->bufmgr, buffer_name, - buffer->name); -if (!bo) { --- -2.5.0 - Copied: lib32-mesa/repos/multilib-testing-x86_64/0001-i965-Remove-early-release-of-DRI2-miptree.patch (from rev 141395, lib32-mesa/trunk/0001-i965-Remove-early-release-of-DRI2-miptree.patch) === --- 0001-i965-Remove-early-release-of-DRI2-miptree.patch (rev 0) +++ 0001-i965-Remove-early-release-of-DRI2-miptree.patch2015-09-21 16:44:56 UTC (rev 141396) @@ -0,0 +1,33 @@ +From e2a696a4cd93c2dbe445243de48ed478fbdb8009 Mon Sep 17 00:00:00 2001 +From: Chris Wilson +Date: Fri, 10 Jul 2015 10:41:35 +0100 +Subject: [PATCH] i965: Remove early release of DRI2 miptree + +intel_update_winsys_renderbuffer_miptree() will release the existing +miptree when wrapping a new DRI2 buffer, so we can remove the early +release and so prevent a NULL mt dereference should importing the new +DRI2 name fail for any reason. (Reusing the old DRI2 name will result +in the rendering going astray, to a stale buffer, and not shown on the +screen, but it allows us to issue a warning and not crash much later in +innocent code.) + +Signed-off-by: Chris Wilson +--- + src/mesa/drivers/dri/i965/brw_context.c | 1 - + 1 file changed, 1 deletion(-) + +diff --git a/src/mesa/drivers/dri/i965/brw_context.c b/src/mesa/drivers/dri/i965/brw_context.c +index e8d1396..72f3897 100644 +--- a/src/mesa/drivers/dri/i965/brw_context.c b/src/mesa/drivers/dri/i965/brw_context.c +@@ -1388,7 +1388,6 @@ intel_process_dri2_buffer(struct brw_context *brw, + buffer->cpp, buffer->pitch); +} + +- intel_miptree_release(&rb->mt); +bo = drm_intel_bo_gem_create_from_name(brw->bufmgr, buffer_name, + buffer->name); +if (!bo) { +-- +2.5.0 + Deleted: LICENSE === --- LICENSE 2015-09-21 16:44:49 UTC (rev 141395) +++ LICENSE 2015-09-21 16:44:56 UTC (rev 141396) @@ -1,82 +0,0 @@ -Disclaimer - -Mesa is a 3-D graphics library with an API which is very similar to -that of OpenGL* -To the extent that Mesa utilizes the OpenGL command syntax or state -machine, it is being used with authorization from Silicon Graphics, -Inc.(SGI). However, the author does not po
[arch-commits] Commit in lib32-mesa/trunk (PKGBUILD)
Date: Monday, September 21, 2015 @ 18:44:49 Author: lcarlier Revision: 141395 upgpkg: lib32-mesa 11.0.0-2 restore fix for FS#45750 Modified: lib32-mesa/trunk/PKGBUILD --+ PKGBUILD | 15 --- 1 file changed, 12 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-09-21 16:43:58 UTC (rev 141394) +++ PKGBUILD2015-09-21 16:44:49 UTC (rev 141395) @@ -5,7 +5,7 @@ pkgbase=lib32-mesa pkgname=('lib32-mesa-vdpau' 'lib32-mesa' 'lib32-mesa-libgl') pkgver=11.0.0 -pkgrel=1 +pkgrel=2 arch=('x86_64') makedepends=('python2-mako' 'lib32-libxml2' 'lib32-expat' 'lib32-libx11' 'glproto' 'lib32-libdrm' 'dri2proto' 'dri3proto' 'presentproto' 'lib32-libxshmfence' 'lib32-libxxf86vm' 'lib32-libxdamage' 'gcc-multilib' 'lib32-elfutils' 'lib32-llvm' 'lib32-systemd' @@ -13,12 +13,21 @@ url="http://mesa3d.sourceforge.net"; license=('custom') source=(ftp://ftp.freedesktop.org/pub/mesa/${pkgver}/mesa-${pkgver}.tar.xz{,.sig} - LICENSE) + LICENSE +0001-i965-Remove-early-release-of-DRI2-miptree.patch) sha256sums=('e095a3eb2eca9dfde7efca8946527c8ae20a0cc938a8c78debc7f158ad44af32' 'SKIP' -'7fdc119cf53c8ca65396ea73f6d10af641ba41ea1dd2bd44a824726e01c8b3f2') +'7fdc119cf53c8ca65396ea73f6d10af641ba41ea1dd2bd44a824726e01c8b3f2' +'a3f520ea13c923841c646a5b1627927744938ff691aa08e1aeaf14cce12bd1f7') validpgpkeys=('8703B6700E7EE06D7A39B8D6EDAE37B02CEB490D') # Emil Velikov +prepare() { + cd ${srcdir}/?esa-* + + # Should fix FS#45750, tested by heftig - Not merged upstream + patch -Np1 -i ../0001-i965-Remove-early-release-of-DRI2-miptree.patch +} + build() { export CC="gcc -m32" export CXX="g++ -m32"
[arch-commits] Commit in fail2ban/trunk (PKGBUILD)
Date: Monday, September 21, 2015 @ 18:43:37 Author: fyan Revision: 141393 upgpkg: fail2ban 0.9.3-4 rebuild for python 3.5 Modified: fail2ban/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2015-09-21 16:31:09 UTC (rev 141392) +++ PKGBUILD2015-09-21 16:43:37 UTC (rev 141393) @@ -7,7 +7,7 @@ pkgname=fail2ban pkgver=0.9.3 -pkgrel=3 +pkgrel=4 pkgdesc='Bans IPs after too many failed authentication attempts' url='http://www.fail2ban.org/' license=('GPL')
[arch-commits] Commit in fail2ban/repos (3 files)
Date: Monday, September 21, 2015 @ 18:43:58 Author: fyan Revision: 141394 archrelease: copy trunk to community-staging-any Added: fail2ban/repos/community-staging-any/ fail2ban/repos/community-staging-any/PKGBUILD (from rev 141393, fail2ban/trunk/PKGBUILD) fail2ban/repos/community-staging-any/fail2ban.install (from rev 141393, fail2ban/trunk/fail2ban.install) --+ PKGBUILD | 55 + fail2ban.install |3 ++ 2 files changed, 58 insertions(+) Copied: fail2ban/repos/community-staging-any/PKGBUILD (from rev 141393, fail2ban/trunk/PKGBUILD) === --- community-staging-any/PKGBUILD (rev 0) +++ community-staging-any/PKGBUILD 2015-09-21 16:43:58 UTC (rev 141394) @@ -0,0 +1,55 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Bartłomiej Piotrowski +# Contributor: Geoffroy Carrier +# Contributor: michalzxc +# Contributor: nbags + +pkgname=fail2ban +pkgver=0.9.3 +pkgrel=4 +pkgdesc='Bans IPs after too many failed authentication attempts' +url='http://www.fail2ban.org/' +license=('GPL') +arch=('any') +depends=('iptables' 'python-pyinotify' 'whois' 'sqlite' 'python-systemd') +makedepends=('python-setuptools') +checkdepends=('python-setuptools' 'python-coverage') +backup=(etc/fail2ban/fail2ban.conf) +install=fail2ban.install +source=($pkgname-$pkgver.tar.gz::https://github.com/fail2ban/$pkgname/archive/$pkgver.tar.gz) +md5sums=('73c87c545cc6474de984b5a05e64ecab') + +check() { + cd $pkgname-$pkgver + ./fail2ban-2to3 + coverage run bin/fail2ban-testcases || warning "Tests failed" +} + +package() { + cd $pkgname-$pkgver + python setup.py install --prefix /usr --root "$pkgdir" --optimize=1 + + install -Dm644 files/fail2ban.service \ +"$pkgdir"/usr/lib/systemd/system/$pkgname.service + install -Dm644 files/fail2ban-tmpfiles.conf \ +"$pkgdir"/usr/lib/tmpfiles.d/$pkgname.conf + install -Dm644 files/fail2ban-logrotate \ +"$pkgdir"/etc/logrotate.d/fail2ban + install -Dm644 files/bash-completion \ +"$pkgdir"/usr/share/bash-completion/completions/fail2ban + + # fix sendmail location + sed -i 's/sbin/bin/g' "$pkgdir"/etc/fail2ban/action.d/sendmail*.conf + + install -Dm644 man/fail2ban.1 "$pkgdir"/usr/share/man/man1/fail2ban.1 + install -Dm644 man/fail2ban-client.1 \ +"$pkgdir"/usr/share/man/man1/fail2ban-client.1 + install -Dm644 man/fail2ban-regex.1 \ +"$pkgdir"/usr/share/man/man1/fail2ban-regex.1 + install -Dm644 man/fail2ban-server.1 \ +"$pkgdir"/usr/share/man/man1/fail2ban-server.1 + install -Dm644 man/jail.conf.5 "$pkgdir"/usr/share/man/man5/jail.conf.5 + + rm -r "$pkgdir/run" +} Copied: fail2ban/repos/community-staging-any/fail2ban.install (from rev 141393, fail2ban/trunk/fail2ban.install) === --- community-staging-any/fail2ban.install (rev 0) +++ community-staging-any/fail2ban.install 2015-09-21 16:43:58 UTC (rev 141394) @@ -0,0 +1,3 @@ +post_install() { + usr/bin/systemd-tmpfiles --create fail2ban.conf +}
[arch-commits] Commit in btrfs-progs/repos (16 files)
Date: Monday, September 21, 2015 @ 18:42:03 Author: seblu Revision: 247037 archrelease: copy trunk to testing-i686, testing-x86_64 Added: btrfs-progs/repos/testing-i686/PKGBUILD (from rev 247036, btrfs-progs/trunk/PKGBUILD) btrfs-progs/repos/testing-i686/btrfs-progs.install (from rev 247036, btrfs-progs/trunk/btrfs-progs.install) btrfs-progs/repos/testing-i686/initcpio-hook-btrfs (from rev 247036, btrfs-progs/trunk/initcpio-hook-btrfs) btrfs-progs/repos/testing-i686/initcpio-install-btrfs (from rev 247036, btrfs-progs/trunk/initcpio-install-btrfs) btrfs-progs/repos/testing-x86_64/PKGBUILD (from rev 247036, btrfs-progs/trunk/PKGBUILD) btrfs-progs/repos/testing-x86_64/btrfs-progs.install (from rev 247036, btrfs-progs/trunk/btrfs-progs.install) btrfs-progs/repos/testing-x86_64/initcpio-hook-btrfs (from rev 247036, btrfs-progs/trunk/initcpio-hook-btrfs) btrfs-progs/repos/testing-x86_64/initcpio-install-btrfs (from rev 247036, btrfs-progs/trunk/initcpio-install-btrfs) Deleted: btrfs-progs/repos/testing-i686/PKGBUILD btrfs-progs/repos/testing-i686/btrfs-progs.install btrfs-progs/repos/testing-i686/initcpio-hook-btrfs btrfs-progs/repos/testing-i686/initcpio-install-btrfs btrfs-progs/repos/testing-x86_64/PKGBUILD btrfs-progs/repos/testing-x86_64/btrfs-progs.install btrfs-progs/repos/testing-x86_64/initcpio-hook-btrfs btrfs-progs/repos/testing-x86_64/initcpio-install-btrfs ---+ /PKGBUILD | 104 /btrfs-progs.install | 18 + /initcpio-hook-btrfs | 14 /initcpio-install-btrfs | 34 ++ testing-i686/PKGBUILD | 52 testing-i686/btrfs-progs.install |9 -- testing-i686/initcpio-hook-btrfs |7 -- testing-i686/initcpio-install-btrfs | 17 - testing-x86_64/PKGBUILD | 52 testing-x86_64/btrfs-progs.install|9 -- testing-x86_64/initcpio-hook-btrfs|7 -- testing-x86_64/initcpio-install-btrfs | 17 - 12 files changed, 170 insertions(+), 170 deletions(-) Deleted: testing-i686/PKGBUILD === --- testing-i686/PKGBUILD 2015-09-21 16:35:22 UTC (rev 247036) +++ testing-i686/PKGBUILD 2015-09-21 16:42:03 UTC (rev 247037) @@ -1,52 +0,0 @@ -# $Id$ -# Maintainer: Sébastien "Seblu" Luttringer -# Contributor: Tom Gundersen -# Contributor: Tobias Powalowski - -pkgname=btrfs-progs -pkgver=4.2.1 -pkgrel=1 -pkgdesc='Btrfs filesystem utilities' -arch=('i686' 'x86_64') -depends=('glibc' 'libutil-linux' 'e2fsprogs' 'lzo' 'zlib') -makedepends=('git' 'asciidoc' 'xmlto') -url='http://btrfs.wiki.kernel.org/' -replaces=('btrfs-progs-unstable') -conflicts=('btrfs-progs-unstable') -provides=('btrfs-progs-unstable') -license=('GPL2') -source=("git://git.kernel.org/pub/scm/linux/kernel/git/kdave/$pkgname.git#tag=v$pkgver" -'initcpio-install-btrfs' -'initcpio-hook-btrfs') -install=btrfs-progs.install -options=(!staticlibs) -md5sums=('SKIP' - '7241ba3a4286d08da0d50b7176941112' - 'b09688a915a0ec8f40e2f5aacbabc9ad') - -build() { - cd $pkgname - ./autogen.sh - ./configure --prefix=/usr - make -} - -check() { - cd $pkgname - ./btrfs filesystem show -} - -package() { - cd $pkgname - make prefix="$pkgdir"/usr install - - # install bash completion (FS#44618) - install -Dm644 btrfs-completion "$pkgdir/usr/share/bash-completion/completions/btrfs" - - # install mkinitcpio hooks - cd "$srcdir" - install -Dm644 initcpio-install-btrfs "$pkgdir/usr/lib/initcpio/install/btrfs" - install -Dm644 initcpio-hook-btrfs "$pkgdir/usr/lib/initcpio/hooks/btrfs" -} - -# vim:set ts=2 sw=2 ft=sh et: Copied: btrfs-progs/repos/testing-i686/PKGBUILD (from rev 247036, btrfs-progs/trunk/PKGBUILD) === --- testing-i686/PKGBUILD (rev 0) +++ testing-i686/PKGBUILD 2015-09-21 16:42:03 UTC (rev 247037) @@ -0,0 +1,52 @@ +# $Id$ +# Maintainer: Sébastien "Seblu" Luttringer +# Contributor: Tom Gundersen +# Contributor: Tobias Powalowski + +pkgname=btrfs-progs +pkgver=4.2.1 +pkgrel=1 +pkgdesc='Btrfs filesystem utilities' +arch=('i686' 'x86_64') +depends=('glibc' 'libutil-linux' 'e2fsprogs' 'lzo' 'zlib') +makedepends=('git' 'asciidoc' 'xmlto') +url='http://btrfs.wiki.kernel.org/' +replaces=('btrfs-progs-unstable') +conflicts=('btrfs-progs-unstable') +provides=('btrfs-progs-unstable') +license=('GPL2') +source=("git://git.kernel.org/pub/scm/linux/kernel/git/kdave/$pkgname.git#tag=v$pkgver" +'initcpio-install-btrfs' +'initcpio-hook-btrfs') +install=btrfs-progs.install +options=(!staticlibs) +md5sums=('SKIP' + '7241ba3a4286d08da0d50b7176941112' + 'b09688a915a0ec8f40e2f5aacbabc9ad') + +build() { + c
[arch-commits] Commit in mesa/trunk (PKGBUILD)
Date: Monday, September 21, 2015 @ 18:35:08 Author: lcarlier Revision: 247035 upgpkg: mesa 11.0.0-2 restore fix for FS#45750 Modified: mesa/trunk/PKGBUILD --+ PKGBUILD | 15 --- 1 file changed, 12 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-09-21 15:12:06 UTC (rev 247034) +++ PKGBUILD2015-09-21 16:35:08 UTC (rev 247035) @@ -5,7 +5,7 @@ pkgbase=mesa pkgname=('opencl-mesa' 'libva-mesa-driver' 'mesa-vdpau' 'mesa' 'mesa-libgl') pkgver=11.0.0 -pkgrel=1 +pkgrel=2 arch=('i686' 'x86_64') makedepends=('python2-mako' 'libxml2' 'libx11' 'glproto' 'libdrm' 'dri2proto' 'dri3proto' 'presentproto' 'libxshmfence' 'libxxf86vm' 'libxdamage' 'libvdpau' 'libva' 'wayland' 'elfutils' 'llvm' @@ -13,12 +13,21 @@ url="http://mesa3d.sourceforge.net"; license=('custom') source=(ftp://ftp.freedesktop.org/pub/mesa/${pkgver}/mesa-${pkgver}.tar.xz{,.sig} -LICENSE) +LICENSE +0001-i965-Remove-early-release-of-DRI2-miptree.patch) sha256sums=('e095a3eb2eca9dfde7efca8946527c8ae20a0cc938a8c78debc7f158ad44af32' 'SKIP' -'7fdc119cf53c8ca65396ea73f6d10af641ba41ea1dd2bd44a824726e01c8b3f2') +'7fdc119cf53c8ca65396ea73f6d10af641ba41ea1dd2bd44a824726e01c8b3f2' +'a3f520ea13c923841c646a5b1627927744938ff691aa08e1aeaf14cce12bd1f7') validpgpkeys=('8703B6700E7EE06D7A39B8D6EDAE37B02CEB490D') # Emil Velikov +prepare() { + cd ${srcdir}/?esa-* + + # Should fix FS#45750, tested by heftig - Not merged upstream + patch -Np1 -i ../0001-i965-Remove-early-release-of-DRI2-miptree.patch +} + build() { cd ${srcdir}/?esa-*
[arch-commits] Commit in mesa/repos (12 files)
Date: Monday, September 21, 2015 @ 18:35:22 Author: lcarlier Revision: 247036 archrelease: copy trunk to testing-i686, testing-x86_64 Added: mesa/repos/testing-i686/0001-i965-Remove-early-release-of-DRI2-miptree.patch (from rev 247035, mesa/trunk/0001-i965-Remove-early-release-of-DRI2-miptree.patch) mesa/repos/testing-i686/LICENSE (from rev 247035, mesa/trunk/LICENSE) mesa/repos/testing-i686/PKGBUILD (from rev 247035, mesa/trunk/PKGBUILD) mesa/repos/testing-x86_64/0001-i965-Remove-early-release-of-DRI2-miptree.patch (from rev 247035, mesa/trunk/0001-i965-Remove-early-release-of-DRI2-miptree.patch) mesa/repos/testing-x86_64/LICENSE (from rev 247035, mesa/trunk/LICENSE) mesa/repos/testing-x86_64/PKGBUILD (from rev 247035, mesa/trunk/PKGBUILD) Deleted: mesa/repos/testing-i686/0001-i965-Remove-early-release-of-DRI2-miptree.patch mesa/repos/testing-i686/LICENSE mesa/repos/testing-i686/PKGBUILD mesa/repos/testing-x86_64/0001-i965-Remove-early-release-of-DRI2-miptree.patch mesa/repos/testing-x86_64/LICENSE mesa/repos/testing-x86_64/PKGBUILD -+ /0001-i965-Remove-early-release-of-DRI2-miptree.patch | 66 + /LICENSE| 164 /PKGBUILD | 348 ++ testing-i686/0001-i965-Remove-early-release-of-DRI2-miptree.patch | 33 testing-i686/LICENSE| 82 -- testing-i686/PKGBUILD | 165 testing-x86_64/0001-i965-Remove-early-release-of-DRI2-miptree.patch | 33 testing-x86_64/LICENSE | 82 -- testing-x86_64/PKGBUILD | 165 9 files changed, 578 insertions(+), 560 deletions(-) The diff is longer than the limit of 200KB. Use svn diff -r 247035:247036 to see the changes.
[arch-commits] Commit in packagekit/repos (8 files)
Date: Monday, September 21, 2015 @ 18:31:09 Author: eworm Revision: 141392 archrelease: copy trunk to community-i686, community-x86_64 Added: packagekit/repos/community-i686/PKGBUILD (from rev 141391, packagekit/trunk/PKGBUILD) packagekit/repos/community-i686/packagekit.install (from rev 141391, packagekit/trunk/packagekit.install) packagekit/repos/community-x86_64/PKGBUILD (from rev 141391, packagekit/trunk/PKGBUILD) packagekit/repos/community-x86_64/packagekit.install (from rev 141391, packagekit/trunk/packagekit.install) Deleted: packagekit/repos/community-i686/PKGBUILD packagekit/repos/community-i686/packagekit.install packagekit/repos/community-x86_64/PKGBUILD packagekit/repos/community-x86_64/packagekit.install -+ /PKGBUILD | 108 ++ /packagekit.install | 22 ++ community-i686/PKGBUILD | 54 - community-i686/packagekit.install | 11 --- community-x86_64/PKGBUILD | 54 - community-x86_64/packagekit.install | 11 --- 6 files changed, 130 insertions(+), 130 deletions(-) Deleted: community-i686/PKGBUILD === --- community-i686/PKGBUILD 2015-09-21 16:31:04 UTC (rev 141391) +++ community-i686/PKGBUILD 2015-09-21 16:31:09 UTC (rev 141392) @@ -1,54 +0,0 @@ -# $Id$ -# Maintainer: Christian Hesse -# Contributor: Jonathan Conder - -pkgname='packagekit' -pkgver=1.0.9 -pkgrel=1 -pkgdesc='A system designed to make installation and updates of packages easier' -arch=('i686' 'x86_64') -url='http://www.packagekit.org/' -license=('GPL') -depends=('dbus-glib' 'pacman>=4.2.0' 'polkit' 'shared-mime-info' 'sqlite') -makedepends=('gobject-introspection' 'gtk-doc' 'intltool' - 'networkmanager' 'bash-completion' 'vala') -optdepends=('networkmanager: detect connection status' - 'bash-completion: command completion in bash') -install='packagekit.install' -backup=('var/lib/PackageKit/transactions.db' - 'etc/PackageKit/alpm.d/pacman.conf' - 'etc/PackageKit/alpm.d/repos.list') -validpgpkeys=('163EB50119225DB3DF8F49EA17ACBA8DFA970E17') # Richard Hughes -source=("http://www.freedesktop.org/software/PackageKit/releases/PackageKit-${pkgver}.tar.xz"{,.asc}) -sha256sums=('c10a276055a4cad063c312b112a0dc1462b9dc055ae30e22946e93872e8fbc1a' -'SKIP') - -build() { - cd "${srcdir}/PackageKit-${pkgver}" - - ./autogen.sh --prefix=/usr \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --libexecdir=/usr/lib/PackageKit \ - --disable-static \ - --disable-gtk-doc \ - --disable-local \ - --disable-browser-plugin \ - --disable-gstreamer-plugin \ - --disable-gtk-module \ - --disable-command-not-found \ - --disable-cron \ - --disable-dummy \ - --enable-alpm - make -} - -package() { - cd "${srcdir}/PackageKit-${pkgver}" - - # install directory with polkit's owner and permission - install -d -m0700 -o 102 "${pkgdir}"/usr/share/polkit-1/rules.d - - make DESTDIR="${pkgdir}" install -} - Copied: packagekit/repos/community-i686/PKGBUILD (from rev 141391, packagekit/trunk/PKGBUILD) === --- community-i686/PKGBUILD (rev 0) +++ community-i686/PKGBUILD 2015-09-21 16:31:09 UTC (rev 141392) @@ -0,0 +1,54 @@ +# $Id$ +# Maintainer: Christian Hesse +# Contributor: Jonathan Conder + +pkgname='packagekit' +pkgver=1.0.10 +pkgrel=1 +pkgdesc='A system designed to make installation and updates of packages easier' +arch=('i686' 'x86_64') +url='http://www.packagekit.org/' +license=('GPL') +depends=('dbus-glib' 'pacman>=4.2.0' 'polkit' 'shared-mime-info' 'sqlite') +makedepends=('gobject-introspection' 'gtk-doc' 'intltool' + 'networkmanager' 'bash-completion' 'vala') +optdepends=('networkmanager: detect connection status' + 'bash-completion: command completion in bash') +install='packagekit.install' +backup=('var/lib/PackageKit/transactions.db' + 'etc/PackageKit/alpm.d/pacman.conf' + 'etc/PackageKit/alpm.d/repos.list') +validpgpkeys=('163EB50119225DB3DF8F49EA17ACBA8DFA970E17') # Richard Hughes +source=("http://www.freedesktop.org/software/PackageKit/releases/PackageKit-${pkgver}.tar.xz"{,.asc}) +sha256sums=('e56b8efac6733763d6f525b6436c75585be2194d67d7c4cdeaed82e6c6c6feac' +'SKIP') + +build() { + cd "${srcdir}/PackageKit-${pkgver}" + + ./autogen.sh --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --libexecdir=/usr/lib/PackageKit \ + --disable-static \ + --disable-gtk-doc \ + --disable-loca
[arch-commits] Commit in packagekit/trunk (PKGBUILD)
Date: Monday, September 21, 2015 @ 18:31:04 Author: eworm Revision: 141391 upgpkg: packagekit 1.0.10-1 upstream release Modified: packagekit/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-09-21 16:12:14 UTC (rev 141390) +++ PKGBUILD2015-09-21 16:31:04 UTC (rev 141391) @@ -3,7 +3,7 @@ # Contributor: Jonathan Conder pkgname='packagekit' -pkgver=1.0.9 +pkgver=1.0.10 pkgrel=1 pkgdesc='A system designed to make installation and updates of packages easier' arch=('i686' 'x86_64') @@ -20,7 +20,7 @@ 'etc/PackageKit/alpm.d/repos.list') validpgpkeys=('163EB50119225DB3DF8F49EA17ACBA8DFA970E17') # Richard Hughes source=("http://www.freedesktop.org/software/PackageKit/releases/PackageKit-${pkgver}.tar.xz"{,.asc}) -sha256sums=('c10a276055a4cad063c312b112a0dc1462b9dc055ae30e22946e93872e8fbc1a' +sha256sums=('e56b8efac6733763d6f525b6436c75585be2194d67d7c4cdeaed82e6c6c6feac' 'SKIP') build() {
[arch-commits] Commit in dub/repos (4 files)
Date: Monday, September 21, 2015 @ 18:12:14 Author: dicebot Revision: 141390 archrelease: copy trunk to community-i686, community-x86_64 Added: dub/repos/community-i686/PKGBUILD (from rev 141389, dub/trunk/PKGBUILD) dub/repos/community-x86_64/PKGBUILD (from rev 141389, dub/trunk/PKGBUILD) Deleted: dub/repos/community-i686/PKGBUILD dub/repos/community-x86_64/PKGBUILD ---+ /PKGBUILD | 80 community-i686/PKGBUILD | 40 -- community-x86_64/PKGBUILD | 40 -- 3 files changed, 80 insertions(+), 80 deletions(-) Deleted: community-i686/PKGBUILD === --- community-i686/PKGBUILD 2015-09-21 16:07:39 UTC (rev 141389) +++ community-i686/PKGBUILD 2015-09-21 16:12:14 UTC (rev 141390) @@ -1,40 +0,0 @@ -# Maintainer: Mihails Strasuns -# Contributor: Moritz Maxeiner -pkgname=dub -pkgver=0.9.23 -pkgrel=2 -pkgdesc="Developer package manager for D programming language" -arch=('i686' 'x86_64') -url="https://github.com/D-Programming-Language/dub"; -license=('MIT') -makedepends=('dmd' 'libphobos-devel' 'git') -depends=('curl') -source=( - "git+https://github.com/D-Programming-Language/dub.git#tag=v$pkgver"; -) -sha256sums=( - 'SKIP' -) - -build() -{ - # DC=`$srcdir/Arch-PKGBUILDs/d-compiler.sh` - DC=dmd - cd "${srcdir}/${pkgname}" - - echo Generating version file... - GITVER=$(git describe) || GITVER=unknown - echo "module dub.version_;" > source/dub/version_.d - echo "enum dubVersion = \"$GITVER\";" >> source/dub/version_.d - echo "enum initialCompilerBinary = \"$DC\";" >> source/dub/version_.d - - $DC -ofbin/dub -w -g -version=DubUseCurl -Isource -L-lcurl @build-files.txt -} - -package() -{ - cd "${srcdir}/${pkgname}" - install -D -m755 bin/dub "${pkgdir}/usr/bin/dub" - install -D -m644 scripts/bash-completion/dub.bash $pkgdir/usr/share/bash-completion/completions/dub - install -D -m644 LICENSE.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.txt" -} Copied: dub/repos/community-i686/PKGBUILD (from rev 141389, dub/trunk/PKGBUILD) === --- community-i686/PKGBUILD (rev 0) +++ community-i686/PKGBUILD 2015-09-21 16:12:14 UTC (rev 141390) @@ -0,0 +1,40 @@ +# Maintainer: Mihails Strasuns +# Contributor: Moritz Maxeiner +pkgname=dub +pkgver=0.9.24 +pkgrel=1 +pkgdesc="Developer package manager for D programming language" +arch=('i686' 'x86_64') +url="https://github.com/D-Programming-Language/dub"; +license=('MIT') +makedepends=('dmd' 'libphobos-devel' 'git') +depends=('curl') +source=( + "git+https://github.com/D-Programming-Language/dub.git#tag=v$pkgver"; +) +sha256sums=( + 'SKIP' +) + +build() +{ + # DC=`$srcdir/Arch-PKGBUILDs/d-compiler.sh` + DC=dmd + cd "${srcdir}/${pkgname}" + + echo Generating version file... + GITVER=$(git describe) || GITVER=unknown + echo "module dub.version_;" > source/dub/version_.d + echo "enum dubVersion = \"$GITVER\";" >> source/dub/version_.d + echo "enum initialCompilerBinary = \"$DC\";" >> source/dub/version_.d + + $DC -ofbin/dub -w -g -version=DubUseCurl -Isource -L-lcurl @build-files.txt +} + +package() +{ + cd "${srcdir}/${pkgname}" + install -D -m755 bin/dub "${pkgdir}/usr/bin/dub" + install -D -m644 scripts/bash-completion/dub.bash $pkgdir/usr/share/bash-completion/completions/dub + install -D -m644 LICENSE.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.txt" +} Deleted: community-x86_64/PKGBUILD === --- community-x86_64/PKGBUILD 2015-09-21 16:07:39 UTC (rev 141389) +++ community-x86_64/PKGBUILD 2015-09-21 16:12:14 UTC (rev 141390) @@ -1,40 +0,0 @@ -# Maintainer: Mihails Strasuns -# Contributor: Moritz Maxeiner -pkgname=dub -pkgver=0.9.23 -pkgrel=2 -pkgdesc="Developer package manager for D programming language" -arch=('i686' 'x86_64') -url="https://github.com/D-Programming-Language/dub"; -license=('MIT') -makedepends=('dmd' 'libphobos-devel' 'git') -depends=('curl') -source=( - "git+https://github.com/D-Programming-Language/dub.git#tag=v$pkgver"; -) -sha256sums=( - 'SKIP' -) - -build() -{ - # DC=`$srcdir/Arch-PKGBUILDs/d-compiler.sh` - DC=dmd - cd "${srcdir}/${pkgname}" - - echo Generating version file... - GITVER=$(git describe) || GITVER=unknown - echo "module dub.version_;" > source/dub/version_.d - echo "enum dubVersion = \"$GITVER\";" >> source/dub/version_.d - echo "enum initialCompilerBinary = \"$DC\";" >> source/dub/version_.d - - $DC -ofbin/dub -w -g -version=DubUseCurl -Isource -L-lcurl @build-files.txt -} - -package() -{ - cd "${srcdir}/${pkgname}" - install -D -m755 bin/dub "${pkgdir}/usr/bin/dub" - install -D -m644 scripts/bash-completion/dub.bash $pkgdir/usr/share/bash-completion/completions/dub - install -D -m644 LICENSE.txt "${
[arch-commits] Commit in dub/trunk (PKGBUILD)
Date: Monday, September 21, 2015 @ 18:07:39 Author: dicebot Revision: 141389 upgpkg: dub 0.9.24-1 dub 0.9.24 Modified: dub/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-09-21 16:05:26 UTC (rev 141388) +++ PKGBUILD2015-09-21 16:07:39 UTC (rev 141389) @@ -1,8 +1,8 @@ # Maintainer: Mihails Strasuns # Contributor: Moritz Maxeiner pkgname=dub -pkgver=0.9.23 -pkgrel=2 +pkgver=0.9.24 +pkgrel=1 pkgdesc="Developer package manager for D programming language" arch=('i686' 'x86_64') url="https://github.com/D-Programming-Language/dub";
[arch-commits] Commit in s3cmd/repos/community-any (PKGBUILD PKGBUILD)
Date: Monday, September 21, 2015 @ 18:05:26 Author: jelle Revision: 141388 archrelease: copy trunk to community-any Added: s3cmd/repos/community-any/PKGBUILD (from rev 141387, s3cmd/trunk/PKGBUILD) Deleted: s3cmd/repos/community-any/PKGBUILD --+ PKGBUILD | 44 ++-- 1 file changed, 22 insertions(+), 22 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2015-09-21 16:05:05 UTC (rev 141387) +++ PKGBUILD2015-09-21 16:05:26 UTC (rev 141388) @@ -1,22 +0,0 @@ -# $Id$ -# Maintainer: Kaiting Chen -# Contributor: Simon Lipp -# Contributor: Daniel Grana - -pkgname=s3cmd -pkgver=1.5.2 -pkgrel=1 -pkgdesc="A command line client for Amazon S3" -arch=('any') -url='http://s3tools.org/s3cmd' -license=('GPL') -depends=('python2' 'python2-dateutil') -makedepends=('python2-setuptools') -optdepends=('gnupg: encrypted file storage') -source=("http://downloads.sourceforge.net/sourceforge/s3tools/$pkgname-$pkgver.tar.gz";) -md5sums=('3153116dc62c817a724ea58080968383') - -package() { - cd "${srcdir}/${pkgname}-${pkgver}" - python2 setup.py install --root="$pkgdir" -} Copied: s3cmd/repos/community-any/PKGBUILD (from rev 141387, s3cmd/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2015-09-21 16:05:26 UTC (rev 141388) @@ -0,0 +1,22 @@ +# $Id$ +# Maintainer: Kaiting Chen +# Contributor: Simon Lipp +# Contributor: Daniel Grana + +pkgname=s3cmd +pkgver=1.6.0 +pkgrel=1 +pkgdesc="A command line client for Amazon S3" +arch=('any') +url='http://s3tools.org/s3cmd' +license=('GPL') +depends=('python2' 'python2-dateutil') +makedepends=('python2-setuptools') +optdepends=('gnupg: encrypted file storage') +source=("http://downloads.sourceforge.net/sourceforge/s3tools/$pkgname-$pkgver.tar.gz";) +md5sums=('c07a81248b4f26b299ada8ab4ccc8801') + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + python2 setup.py install --root="$pkgdir" +}
[arch-commits] Commit in s3cmd/trunk (PKGBUILD)
Date: Monday, September 21, 2015 @ 18:05:05 Author: jelle Revision: 141387 upgpkg: s3cmd 1.6.0-1 Modified: s3cmd/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-09-21 14:07:47 UTC (rev 141386) +++ PKGBUILD2015-09-21 16:05:05 UTC (rev 141387) @@ -4,7 +4,7 @@ # Contributor: Daniel Grana pkgname=s3cmd -pkgver=1.5.2 +pkgver=1.6.0 pkgrel=1 pkgdesc="A command line client for Amazon S3" arch=('any') @@ -14,7 +14,7 @@ makedepends=('python2-setuptools') optdepends=('gnupg: encrypted file storage') source=("http://downloads.sourceforge.net/sourceforge/s3tools/$pkgname-$pkgver.tar.gz";) -md5sums=('3153116dc62c817a724ea58080968383') +md5sums=('c07a81248b4f26b299ada8ab4ccc8801') package() { cd "${srcdir}/${pkgname}-${pkgver}"
[arch-commits] Commit in xorg-xinit/repos (18 files)
Date: Monday, September 21, 2015 @ 17:12:06 Author: heftig Revision: 247034 archrelease: copy trunk to extra-i686, extra-x86_64 Added: xorg-xinit/repos/extra-i686/06_move_serverauthfile_into_tmp.diff (from rev 247033, xorg-xinit/trunk/06_move_serverauthfile_into_tmp.diff) xorg-xinit/repos/extra-i686/PKGBUILD (from rev 247033, xorg-xinit/trunk/PKGBUILD) xorg-xinit/repos/extra-i686/fs25361.patch (from rev 247033, xorg-xinit/trunk/fs25361.patch) xorg-xinit/repos/extra-i686/fs46369.patch (from rev 247033, xorg-xinit/trunk/fs46369.patch) xorg-xinit/repos/extra-i686/xserverrc (from rev 247033, xorg-xinit/trunk/xserverrc) xorg-xinit/repos/extra-x86_64/06_move_serverauthfile_into_tmp.diff (from rev 247033, xorg-xinit/trunk/06_move_serverauthfile_into_tmp.diff) xorg-xinit/repos/extra-x86_64/PKGBUILD (from rev 247033, xorg-xinit/trunk/PKGBUILD) xorg-xinit/repos/extra-x86_64/fs25361.patch (from rev 247033, xorg-xinit/trunk/fs25361.patch) xorg-xinit/repos/extra-x86_64/fs46369.patch (from rev 247033, xorg-xinit/trunk/fs46369.patch) xorg-xinit/repos/extra-x86_64/xserverrc (from rev 247033, xorg-xinit/trunk/xserverrc) Deleted: xorg-xinit/repos/extra-i686/06_move_serverauthfile_into_tmp.diff xorg-xinit/repos/extra-i686/PKGBUILD xorg-xinit/repos/extra-i686/fs25361.patch xorg-xinit/repos/extra-i686/xserverrc xorg-xinit/repos/extra-x86_64/06_move_serverauthfile_into_tmp.diff xorg-xinit/repos/extra-x86_64/PKGBUILD xorg-xinit/repos/extra-x86_64/fs25361.patch xorg-xinit/repos/extra-x86_64/xserverrc ---+ /06_move_serverauthfile_into_tmp.diff | 40 /PKGBUILD | 100 /fs25361.patch| 32 ++ /xserverrc|4 extra-i686/06_move_serverauthfile_into_tmp.diff | 20 extra-i686/PKGBUILD | 47 - extra-i686/fs25361.patch | 16 --- extra-i686/fs46369.patch | 11 ++ extra-i686/xserverrc |2 extra-x86_64/06_move_serverauthfile_into_tmp.diff | 20 extra-x86_64/PKGBUILD | 47 - extra-x86_64/fs25361.patch| 16 --- extra-x86_64/fs46369.patch| 11 ++ extra-x86_64/xserverrc|2 14 files changed, 198 insertions(+), 170 deletions(-) Deleted: extra-i686/06_move_serverauthfile_into_tmp.diff === --- extra-i686/06_move_serverauthfile_into_tmp.diff 2015-09-21 15:11:09 UTC (rev 247033) +++ extra-i686/06_move_serverauthfile_into_tmp.diff 2015-09-21 15:12:06 UTC (rev 247034) @@ -1,20 +0,0 @@ -Move startx auth files in /tmp so they are removed on reboot. -http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=357736 -The trap patch didn't seem to work on reboot. - startx.cpp |2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -Index: xinit/startx.cpp -=== xinit.orig/startx.cpp -+++ xinit/startx.cpp -@@ -273,7 +273,7 @@ - dummy=0 - - XCOMM create a file with auth information for the server. ':0' is a dummy. --xserverauthfile=$HOME/.serverauth.$$ -+xserverauthfile=`mktemp -p /tmp serverauth.XX` - trap "rm -f '$xserverauthfile'" HUP INT QUIT ILL TRAP KILL BUS TERM - xauth -q -f "$xserverauthfile" << EOF - add :$dummy . $mcookie Copied: xorg-xinit/repos/extra-i686/06_move_serverauthfile_into_tmp.diff (from rev 247033, xorg-xinit/trunk/06_move_serverauthfile_into_tmp.diff) === --- extra-i686/06_move_serverauthfile_into_tmp.diff (rev 0) +++ extra-i686/06_move_serverauthfile_into_tmp.diff 2015-09-21 15:12:06 UTC (rev 247034) @@ -0,0 +1,20 @@ +Move startx auth files in /tmp so they are removed on reboot. +http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=357736 +The trap patch didn't seem to work on reboot. +--- + startx.cpp |2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +Index: xinit/startx.cpp +=== +--- xinit.orig/startx.cpp xinit/startx.cpp +@@ -273,7 +273,7 @@ + dummy=0 + + XCOMM create a file with auth information for the server. ':0' is a dummy. +-xserverauthfile=$HOME/.serverauth.$$ ++xserverauthfile=`mktemp -p /tmp serverauth.XX` + trap "rm -f '$xserverauthfile'" HUP INT QUIT ILL TRAP KILL BUS TERM + xauth -q -f "$xserverauthfile" << EOF + add :$dummy . $mcookie Deleted: extra-i686/PKGBUILD === --- extra-i686/PKGBUILD 2015-09-21 15:11:09 UTC (rev 24
[arch-commits] Commit in xorg-xinit/trunk (PKGBUILD fs46369.patch)
Date: Monday, September 21, 2015 @ 17:11:09 Author: heftig Revision: 247033 FS#46369: Don't unset DBUS_SESSION_BUS_ADDRESS Added: xorg-xinit/trunk/fs46369.patch Modified: xorg-xinit/trunk/PKGBUILD ---+ PKGBUILD |5 - fs46369.patch | 11 +++ 2 files changed, 15 insertions(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2015-09-21 09:08:07 UTC (rev 247032) +++ PKGBUILD2015-09-21 15:11:09 UTC (rev 247033) @@ -4,7 +4,7 @@ pkgname=xorg-xinit pkgver=1.3.4 -pkgrel=2 +pkgrel=3 pkgdesc="X.Org initialisation program " arch=('i686' 'x86_64') license=('custom') @@ -17,11 +17,13 @@ source=(${url}/releases/individual/app/xinit-${pkgver}.tar.bz2 06_move_serverauthfile_into_tmp.diff fs25361.patch +fs46369.patch xserverrc) options=(!emptydirs) sha256sums=('75d88d7397a07e01db253163b7c7a00b249b3d30e99489f2734cac9a0c7902b3' 'a5c6ced5822bbb3145e0f30a4b12995782ca6d80ff2d927851ec91b5e41212cb' '431335ceb84f75aaa96fba285a596f61a63629f94756f8063e4f621ae143629b' +'6e2c44b997e604db167f00168e8b6c68257be50447d7a80856b4aa910f52351e' '86835010b5350c41035495b7b845db0eecf1e4b7eeaf152b12a881fa502e5387') prepare() { @@ -28,6 +30,7 @@ cd xinit-${pkgver} patch -Np1 -i ../06_move_serverauthfile_into_tmp.diff patch -Np1 -i ../fs25361.patch + patch -Np1 -i ../fs46369.patch sed -i -e 's/XSLASHGLOB.sh/XSLASHGLOB/' xinitrc.cpp } Added: fs46369.patch === --- fs46369.patch (rev 0) +++ fs46369.patch 2015-09-21 15:11:09 UTC (rev 247033) @@ -0,0 +1,11 @@ +diff -u -r xinit-1.3.4/startx.cpp xinit-1.3.4-dbus/startx.cpp +--- xinit-1.3.4/startx.cpp 2015-09-21 17:07:29.732240308 +0200 xinit-1.3.4-dbus/startx.cpp2015-09-21 17:07:59.255424644 +0200 +@@ -11,7 +11,6 @@ + XCOMM Site administrators are STRONGLY urged to write nicer versions. + XCOMM + +-unset DBUS_SESSION_BUS_ADDRESS + unset SESSION_MANAGER + + #ifdef __APPLE__
[arch-commits] Commit in mbedtls/repos (4 files)
Date: Monday, September 21, 2015 @ 16:07:47 Author: kkeen Revision: 141386 archrelease: copy trunk to community-staging-i686, community-staging-x86_64 Added: mbedtls/repos/community-staging-i686/PKGBUILD (from rev 141385, mbedtls/trunk/PKGBUILD) mbedtls/repos/community-staging-x86_64/PKGBUILD (from rev 141385, mbedtls/trunk/PKGBUILD) Deleted: mbedtls/repos/community-staging-i686/PKGBUILD mbedtls/repos/community-staging-x86_64/PKGBUILD ---+ /PKGBUILD | 94 community-staging-i686/PKGBUILD | 49 -- community-staging-x86_64/PKGBUILD | 49 -- 3 files changed, 94 insertions(+), 98 deletions(-) Deleted: community-staging-i686/PKGBUILD === --- community-staging-i686/PKGBUILD 2015-09-21 14:07:24 UTC (rev 141385) +++ community-staging-i686/PKGBUILD 2015-09-21 14:07:47 UTC (rev 141386) @@ -1,49 +0,0 @@ -# $Id$ -# Maintainer: Kyle Keen -# Contributor: Mihai Militaru -# Contributor: carstene1ns - -pkgname=mbedtls -pkgver=2.1.0 -pkgrel=1 -pkgdesc="Portable cryptographic and SSL/TLS library, aka polarssl" -arch=('i686' 'x86_64') -url="https://tls.mbed.org"; -license=('Apache') -provides=('polarssl') -replaces=('polarssl') -conflicts=('polarssl') -#source=("https://polarssl.org/download/$pkgname-$pkgver-gpl.tgz"; -source=("https://tls.mbed.org/download/mbedtls-$pkgver-gpl.tgz";) -#source=("https://tls.mbed.org/download/mbedtls-$pkgver-apache.tgz";) -sha1sums=('4edf1f42871b5e2c68a86320da778cb16f173b04') -depends=('glibc') -options=('staticlibs') - -# http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/net-libs/polarssl/files/polarssl-1.3.8-ssl_pthread_server.patch -# https://github.com/alucryd/aur-alucryd/blob/master/personal/polarssl/PKGBUILD -# https://aur.archlinux.org/packages/po/polarssl-git/PKGBUILD - -prepare() { - cd "$pkgname-$pkgver" - # enable flags for non-embedded systems - sed -i 's|//\(#define MBEDTLS_THREADING_C\)|\1|' include/mbedtls/config.h - sed -i 's|//\(#define MBEDTLS_THREADING_PTHREAD\)|\1|' include/mbedtls/config.h - # bug added in 2.0.0 - #sed -i 's|/libmbedtls.\*|/libmbed*|' Makefile -} - -build() { - cd "$pkgname-$pkgver" - LDFLAGS+=" -I../include " make SHARED=1 no_test -} - -check() { - cd "$pkgname-$pkgver" - make SHARED=1 check -} - -package() { - cd "$pkgname-$pkgver" - make DESTDIR="$pkgdir/usr" install -} Copied: mbedtls/repos/community-staging-i686/PKGBUILD (from rev 141385, mbedtls/trunk/PKGBUILD) === --- community-staging-i686/PKGBUILD (rev 0) +++ community-staging-i686/PKGBUILD 2015-09-21 14:07:47 UTC (rev 141386) @@ -0,0 +1,47 @@ +# $Id$ +# Maintainer: Kyle Keen +# Contributor: Mihai Militaru +# Contributor: carstene1ns + +pkgname=mbedtls +pkgver=2.1.1 +pkgrel=1 +pkgdesc="Portable cryptographic and SSL/TLS library, aka polarssl" +arch=('i686' 'x86_64') +url="https://tls.mbed.org"; +license=('Apache') +provides=('polarssl') +replaces=('polarssl') +conflicts=('polarssl') +#source=("https://polarssl.org/download/$pkgname-$pkgver-gpl.tgz"; +source=("https://tls.mbed.org/download/mbedtls-$pkgver-gpl.tgz";) +#source=("https://tls.mbed.org/download/mbedtls-$pkgver-apache.tgz";) +sha1sums=('fa38657ad39afac54aab274b038133c24d063120') +depends=('glibc') +options=('staticlibs') + +# http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/net-libs/polarssl/files/polarssl-1.3.8-ssl_pthread_server.patch +# https://github.com/alucryd/aur-alucryd/blob/master/personal/polarssl/PKGBUILD +# https://aur.archlinux.org/packages/po/polarssl-git/PKGBUILD + +prepare() { + cd "$pkgname-$pkgver" + # enable flags for non-embedded systems + sed -i 's|//\(#define MBEDTLS_THREADING_C\)|\1|' include/mbedtls/config.h + sed -i 's|//\(#define MBEDTLS_THREADING_PTHREAD\)|\1|' include/mbedtls/config.h +} + +build() { + cd "$pkgname-$pkgver" + LDFLAGS+=" -I../include " make SHARED=1 no_test +} + +check() { + cd "$pkgname-$pkgver" + make SHARED=1 check +} + +package() { + cd "$pkgname-$pkgver" + make DESTDIR="$pkgdir/usr" install +} Deleted: community-staging-x86_64/PKGBUILD === --- community-staging-x86_64/PKGBUILD 2015-09-21 14:07:24 UTC (rev 141385) +++ community-staging-x86_64/PKGBUILD 2015-09-21 14:07:47 UTC (rev 141386) @@ -1,49 +0,0 @@ -# $Id$ -# Maintainer: Kyle Keen -# Contributor: Mihai Militaru -# Contributor: carstene1ns - -pkgname=mbedtls -pkgver=2.1.0 -pkgrel=1 -pkgdesc="Portable cryptographic and SSL/TLS library, aka polarssl" -arch=('i686' 'x86_64') -url="https://tls.mbed.org"; -license=('Apache') -provides=('polarssl') -replaces=('polarssl') -conflicts=('polarssl') -#source=("https://polarssl.org/download/$pkgname-$pkgver-gpl.tgz"; -source=("https://tls.mbed.org/download/mbed
[arch-commits] Commit in mbedtls/trunk (PKGBUILD)
Date: Monday, September 21, 2015 @ 16:07:24 Author: kkeen Revision: 141385 upgpkg: mbedtls 2.1.1-1 Modified: mbedtls/trunk/PKGBUILD --+ PKGBUILD |6 ++ 1 file changed, 2 insertions(+), 4 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-09-21 14:04:19 UTC (rev 141384) +++ PKGBUILD2015-09-21 14:07:24 UTC (rev 141385) @@ -4,7 +4,7 @@ # Contributor: carstene1ns pkgname=mbedtls -pkgver=2.1.0 +pkgver=2.1.1 pkgrel=1 pkgdesc="Portable cryptographic and SSL/TLS library, aka polarssl" arch=('i686' 'x86_64') @@ -16,7 +16,7 @@ #source=("https://polarssl.org/download/$pkgname-$pkgver-gpl.tgz"; source=("https://tls.mbed.org/download/mbedtls-$pkgver-gpl.tgz";) #source=("https://tls.mbed.org/download/mbedtls-$pkgver-apache.tgz";) -sha1sums=('4edf1f42871b5e2c68a86320da778cb16f173b04') +sha1sums=('fa38657ad39afac54aab274b038133c24d063120') depends=('glibc') options=('staticlibs') @@ -29,8 +29,6 @@ # enable flags for non-embedded systems sed -i 's|//\(#define MBEDTLS_THREADING_C\)|\1|' include/mbedtls/config.h sed -i 's|//\(#define MBEDTLS_THREADING_PTHREAD\)|\1|' include/mbedtls/config.h - # bug added in 2.0.0 - #sed -i 's|/libmbedtls.\*|/libmbed*|' Makefile } build() {
[arch-commits] Commit in blender/trunk (PKGBUILD)
Date: Monday, September 21, 2015 @ 16:04:10 Author: svenstaro Revision: 141383 upgpkg: blender 17:2.76rc1-1 Python 3.5 build and upstream release 2.76rc1 (which we actually need to apply this patch) Modified: blender/trunk/PKGBUILD --+ PKGBUILD | 16 ++-- 1 file changed, 10 insertions(+), 6 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-09-21 11:23:57 UTC (rev 141382) +++ PKGBUILD2015-09-21 14:04:10 UTC (rev 141383) @@ -11,13 +11,13 @@ # or simply roll with a new version. I usually choose the latter when the former seems # unreasonable. -_gittag=v2.75a +_gittag=v2.76-rc1 #_gitcommit=c6b042be pkgname=blender -pkgver=2.75.a +pkgver=2.76rc1 [[ -n $_gitcommit ]] && pkgver=${pkgver}.git1.${_gitcommit} -pkgrel=2 +pkgrel=1 epoch=17 pkgdesc="A fully integrated 3D graphics creation suite" arch=('i686' 'x86_64') @@ -57,6 +57,10 @@ git config submodule."release/datafiles/locale".url ${srcdir}/blender-translations git config submodule."scons".url ${srcdir}/scons git submodule update + + # We need this to build with Python 3.5/3.6, remove in a release after 2.76rc1 + git cherry-pick --no-commit 6844b02a71bd9d84af5bdbcb32eb49ea6ac552e7 + git submodule update } build() { @@ -80,10 +84,10 @@ -DLLVM_STATIC=ON \ -DWITH_CYCLES_CUDA_BINARIES=$BUILDCUDA \ -DWITH_CYCLES_OSL=ON \ --DPYTHON_VERSION=3.4 \ +-DPYTHON_VERSION=3.5 \ -DPYTHON_LIBPATH=/usr/lib \ --DPYTHON_LIBRARY=python3.4m \ --DPYTHON_INCLUDE_DIRS=/usr/include/python3.4m +-DPYTHON_LIBRARY=python3.5m \ +-DPYTHON_INCLUDE_DIRS=/usr/include/python3.5m make }
[arch-commits] Commit in blender/repos (6 files)
Date: Monday, September 21, 2015 @ 16:04:19 Author: svenstaro Revision: 141384 archrelease: copy trunk to community-staging-i686, community-staging-x86_64 Added: blender/repos/community-staging-i686/ blender/repos/community-staging-i686/PKGBUILD (from rev 141383, blender/trunk/PKGBUILD) blender/repos/community-staging-i686/blender.install (from rev 141383, blender/trunk/blender.install) blender/repos/community-staging-x86_64/ blender/repos/community-staging-x86_64/PKGBUILD (from rev 141383, blender/trunk/PKGBUILD) blender/repos/community-staging-x86_64/blender.install (from rev 141383, blender/trunk/blender.install) --+ community-staging-i686/PKGBUILD | 100 + community-staging-i686/blender.install | 13 +++ community-staging-x86_64/PKGBUILD| 100 + community-staging-x86_64/blender.install | 13 +++ 4 files changed, 226 insertions(+) Copied: blender/repos/community-staging-i686/PKGBUILD (from rev 141383, blender/trunk/PKGBUILD) === --- community-staging-i686/PKGBUILD (rev 0) +++ community-staging-i686/PKGBUILD 2015-09-21 14:04:19 UTC (rev 141384) @@ -0,0 +1,100 @@ +# $Id$ +# Contributor: John Sowiak +# Contributor: tobias +# Maintainer: Sven-Hendrik Haase + +# Sometimes blender.org takes some time to release patch releases and because Arch users +# are impatient, we sometimes need to build from git directly. +# Update because I get so many queries on this: +# Due to our other rolling deps, it's sometimes not possible to build Blender stable releases. +# More often than not, a new openshadinglanguage breaks it and I could either backport fixes +# or simply roll with a new version. I usually choose the latter when the former seems +# unreasonable. + +_gittag=v2.76-rc1 +#_gitcommit=c6b042be + +pkgname=blender +pkgver=2.76rc1 +[[ -n $_gitcommit ]] && pkgver=${pkgver}.git1.${_gitcommit} +pkgrel=1 +epoch=17 +pkgdesc="A fully integrated 3D graphics creation suite" +arch=('i686' 'x86_64') +license=('GPL') +url="http://www.blender.org"; +depends=('libpng' 'libtiff' 'openexr' 'python' 'desktop-file-utils' 'python-requests' + 'shared-mime-info' 'hicolor-icon-theme' 'xdg-utils' 'glew' 'openjpeg' + 'freetype2' 'openal' 'ffmpeg' 'fftw' 'boost-libs' 'opencollada' + 'openimageio' 'libsndfile' 'jack' 'opencolorio' 'openshadinglanguage' + 'jemalloc' 'libspnav') +makedepends=('cmake' 'boost' 'mesa' 'git' 'llvm35') +[[ $CARCH == x86_64 ]] && makedepends+=('cuda') +optdepends=('cuda: cycles renderer cuda support') +options=(!strip) +install=blender.install +source=("git://git.blender.org/blender-addons.git" +"git://git.blender.org/blender-addons-contrib.git" +"git://git.blender.org/blender-translations.git" +"git://git.blender.org/scons.git") +if [[ -n $_gittag ]]; then + source+=("${pkgname}-${pkgver}::git://git.blender.org/blender.git#tag=${_gittag}") +else + source+=("${pkgname}-${pkgver}::git://git.blender.org/blender.git#commit=${_gitcommit}") +fi +md5sums=('SKIP' + 'SKIP' + 'SKIP' + 'SKIP' + 'SKIP') + +prepare() { + cd "$srcdir/$pkgname-$pkgver" + + git submodule init + git config submodule."release/scripts/addons".url ${srcdir}/blender-addons + git config submodule."release/scripts/addons_contrib".url ${srcdir}/blender-addons-contrib + git config submodule."release/datafiles/locale".url ${srcdir}/blender-translations + git config submodule."scons".url ${srcdir}/scons + git submodule update + + # We need this to build with Python 3.5/3.6, remove in a release after 2.76rc1 + git cherry-pick --no-commit 6844b02a71bd9d84af5bdbcb32eb49ea6ac552e7 + git submodule update +} + +build() { + cd "$srcdir/$pkgname-$pkgver" + + mkdir build && cd build + + [[ $CARCH == i686 ]] && BUILDCUDA="OFF" || BUILDCUDA="ON" + + cmake -C../build_files/cmake/config/blender_full.cmake .. \ +-DCMAKE_INSTALL_PREFIX=/usr \ +-DCMAKE_BUILD_TYPE=Release \ +-DWITH_INSTALL_PORTABLE=OFF \ +-DWITH_PYTHON_INSTALL=OFF \ +-DOPENIMAGEIO_ROOT_DIR=/usr \ +-DWITH_LLVM=ON \ +-DWITH_SYSTEM_OPENJPEG=ON \ +-DWITH_GL_PROFILE_CORE=OFF \ +-DWITH_GL_PROFILE_ES20=OFF \ +-DLLVM_VERSION=3.5 \ +-DLLVM_STATIC=ON \ +-DWITH_CYCLES_CUDA_BINARIES=$BUILDCUDA \ +-DWITH_CYCLES_OSL=ON \ +-DPYTHON_VERSION=3.5 \ +-DPYTHON_LIBPATH=/usr/lib \ +-DPYTHON_LIBRARY=python3.5m \ +-DPYTHON_INCLUDE_DIRS=/usr/include/python3.5m + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver/build" + + make DESTDIR="${pkgdir}" install + python -m compileall "${pkgdir}/usr/share/blender" + python -O -m compileall "${pkgdir}/usr/share/blender" +} Copied: blender/repos/community-staging-i686/blender.install (from rev 141383, blender/trunk/blender.install) ==
[arch-commits] Commit in inn/repos (20 files)
Date: Monday, September 21, 2015 @ 13:23:57 Author: spupykin Revision: 141382 archrelease: copy trunk to community-i686, community-x86_64 Added: inn/repos/community-i686/PKGBUILD (from rev 141381, inn/trunk/PKGBUILD) inn/repos/community-i686/inn.install (from rev 141381, inn/trunk/inn.install) inn/repos/community-i686/inn.tmpfiles (from rev 141381, inn/trunk/inn.tmpfiles) inn/repos/community-i686/innd.service (from rev 141381, inn/trunk/innd.service) inn/repos/community-i686/site.make.patch (from rev 141381, inn/trunk/site.make.patch) inn/repos/community-x86_64/PKGBUILD (from rev 141381, inn/trunk/PKGBUILD) inn/repos/community-x86_64/inn.install (from rev 141381, inn/trunk/inn.install) inn/repos/community-x86_64/inn.tmpfiles (from rev 141381, inn/trunk/inn.tmpfiles) inn/repos/community-x86_64/innd.service (from rev 141381, inn/trunk/innd.service) inn/repos/community-x86_64/site.make.patch (from rev 141381, inn/trunk/site.make.patch) Deleted: inn/repos/community-i686/PKGBUILD inn/repos/community-i686/inn.install inn/repos/community-i686/inn.tmpfiles inn/repos/community-i686/innd.service inn/repos/community-i686/site.make.patch inn/repos/community-x86_64/PKGBUILD inn/repos/community-x86_64/inn.install inn/repos/community-x86_64/inn.tmpfiles inn/repos/community-x86_64/innd.service inn/repos/community-x86_64/site.make.patch --+ /PKGBUILD| 266 + /inn.install | 46 ++ /inn.tmpfiles|2 /innd.service| 32 /site.make.patch | 64 community-i686/PKGBUILD | 133 -- community-i686/inn.install | 23 --- community-i686/inn.tmpfiles |1 community-i686/innd.service | 16 -- community-i686/site.make.patch | 32 community-x86_64/PKGBUILD| 133 -- community-x86_64/inn.install | 23 --- community-x86_64/inn.tmpfiles|1 community-x86_64/innd.service| 16 -- community-x86_64/site.make.patch | 32 15 files changed, 410 insertions(+), 410 deletions(-) Deleted: community-i686/PKGBUILD === --- community-i686/PKGBUILD 2015-09-21 11:23:18 UTC (rev 141381) +++ community-i686/PKGBUILD 2015-09-21 11:23:57 UTC (rev 141382) @@ -1,133 +0,0 @@ -# $Id$ -# Maintainer: Sergej Pupykin -# Maintainer: Edward Tjörnhammar -# Contributor: Edward Tjörnhammar - -pkgname=inn -pkgver=2.5.5 -pkgrel=1 -pkgdesc="Complete open source Usenet system. De facto standard for handling news routing, news spool and serving the spool to customers." -url="http://www.isc.org/software/inn/"; -arch=('i686' 'x86_64') -license=("custom:INN") -depends=('openssl') -makedepends=('make' 'bison' 'python2' 'gcc' 'smtp-forwarder' 'libsasl') -optdepends=('perl' 'python2' 'libsasl') -options=(emptydirs docs zipman) -install=inn.install -backup=(etc/inn/newsfeeds - etc/inn/incoming.conf - etc/inn/nnrpd.track - etc/inn/passwd.nntp - etc/inn/inn.conf - etc/inn/moderators - etc/inn/control.ctl - etc/inn/expire.ctl - etc/inn/nntpsend.ctl - etc/inn/innreport.conf - etc/inn/innwatch.ctl - etc/inn/distrib.pats - etc/inn/actsync.cfg - etc/inn/actsync.ign - etc/inn/motd.news - etc/inn/storage.conf - etc/inn/cycbuff.conf - etc/inn/buffindexed.conf - etc/inn/innfeed.conf - etc/inn/news2mail.cf - etc/inn/readers.conf - etc/inn/radius.conf - etc/inn/ovdb.conf - etc/inn/subscriptions - var/db/inn/active - var/db/inn/active.times - var/db/inn/history - var/db/inn/history.dir - var/db/inn/history.hash - var/db/inn/history.index - var/db/inn/newsgroups) -source=(http://ftp.isc.org/isc/inn/inn-$pkgver.tar.gz - innd.service - inn.tmpfiles - site.make.patch) -md5sums=('c6565ec0a6a95b46a011bce04f7e0a65' - '9da925a486fcf0cd67fdf462cbb9c0b4' - '050b7b3361c673a118739e42349e' - '960c800026ed6e03901cf0bafdfd53d8') - -prepare() { - cd $srcdir/inn-$pkgver -# sed -i 's|-export-dynamic gnu|-export-dynamic|' Makefile.global - [ $NOEXTRACT -eq 1 ] || patch -p3 < $srcdir/site.make.patch - sed -i 's|#define L_NOTICE.*|#define L_NOTICE LOG_NOTICE|' include/inn/options.h -} - -build() { - cd $srcdir/inn-$pkgver - PYTHON=/usr/bin/python2 ./configure --prefix=/usr \ - --includedir=/usr/include/inn \ - --sbindir=/usr/sbin \ - --with-libtool \ - --with-gnu-id \ - --with-db-dir=/var/db/inn \ - --sysconfdir=/etc/inn \ - --with-spool-dir=/var/spool/news \ - --with-log-dir=/var/log/inn \ - --with-run-dir=/var/run/inn \ - --with-tmp-dir=/var/spool/inn/tmp \ - --en