[arch-commits] Commit in libva/trunk (PKGBUILD)
Date: Saturday, July 14, 2018 @ 06:54:10 Author: alucryd Revision: 328568 upgpkg: libva 2.2.0-2 Modified: libva/trunk/PKGBUILD --+ PKGBUILD | 23 +-- 1 file changed, 9 insertions(+), 14 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-07-14 06:49:48 UTC (rev 328567) +++ PKGBUILD2018-07-14 06:54:10 UTC (rev 328568) @@ -5,32 +5,27 @@ pkgname=libva pkgver=2.2.0 -pkgrel=1 +pkgrel=2 pkgdesc='Video Acceleration (VA) API for Linux' arch=('x86_64') url='https://01.org/linuxmedia/vaapi' license=('MIT') -depends=('glibc' 'libdrm' 'libgl' 'libx11' 'libxext' 'libxfixes' 'wayland') -makedepends=('mesa') +depends=('libdrm' 'libgl' 'libx11' 'libxext' 'libxfixes' 'wayland') +makedepends=('git' 'libglvnd' 'mesa' 'meson') optdepends=('libva-vdpau-driver: backend for Nvidia and AMD cards' 'libva-intel-driver: backend for Intel cards') provides=('libva-drm.so' 'libva-glx.so' 'libva-wayland.so' 'libva-x11.so' 'libva.so') -source=("https://github.com/01org/libva/releases/download/${pkgver}/libva-${pkgver}.tar.bz2";) -sha256sums=('6f6ca04c785544d30d315ef130a6aeb9435b75f934d7fbe0e4e9ba6084ce4ef2') +source=("git+https://github.com/intel/libva.git#tag=${pkgver}";) +sha256sums=('SKIP') build() { - cd libva-${pkgver} - - ./configure \ ---prefix='/usr' - make + arch-meson libva build + ninja -C build } package() { - cd libva-${pkgver} - - make DESTDIR="${pkgdir}" install - install -Dm 644 COPYING -t "${pkgdir}"/usr/share/licenses/libva + DESTDIR="${pkgdir}" ninja -C build install + install -Dm 644 libva/COPYING -t "${pkgdir}"/usr/share/licenses/libva } # vim: ts=2 sw=2 et:
[arch-commits] Commit in libva/repos/extra-x86_64 (4 files)
Date: Saturday, July 14, 2018 @ 06:54:22 Author: alucryd Revision: 328569 archrelease: copy trunk to extra-x86_64 Added: libva/repos/extra-x86_64/PKGBUILD (from rev 328568, libva/trunk/PKGBUILD) libva/repos/extra-x86_64/not-finding-wl-drm-interface-with-libglvnd.patch (from rev 328568, libva/trunk/not-finding-wl-drm-interface-with-libglvnd.patch) Deleted: libva/repos/extra-x86_64/PKGBUILD libva/repos/extra-x86_64/not-finding-wl-drm-interface-with-libglvnd.patch --+ PKGBUILD | 67 ++ not-finding-wl-drm-interface-with-libglvnd.patch | 96 ++--- 2 files changed, 79 insertions(+), 84 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2018-07-14 06:54:10 UTC (rev 328568) +++ PKGBUILD2018-07-14 06:54:22 UTC (rev 328569) @@ -1,36 +0,0 @@ -# $Id$ -# Maintainer: Maxime Gauduin -# Contributor: Bartłomiej Piotrowski -# Contributor: Ionut Biru - -pkgname=libva -pkgver=2.2.0 -pkgrel=1 -pkgdesc='Video Acceleration (VA) API for Linux' -arch=('x86_64') -url='https://01.org/linuxmedia/vaapi' -license=('MIT') -depends=('glibc' 'libdrm' 'libgl' 'libx11' 'libxext' 'libxfixes' 'wayland') -makedepends=('mesa') -optdepends=('libva-vdpau-driver: backend for Nvidia and AMD cards' -'libva-intel-driver: backend for Intel cards') -provides=('libva-drm.so' 'libva-glx.so' 'libva-wayland.so' 'libva-x11.so' 'libva.so') -source=("https://github.com/01org/libva/releases/download/${pkgver}/libva-${pkgver}.tar.bz2";) -sha256sums=('6f6ca04c785544d30d315ef130a6aeb9435b75f934d7fbe0e4e9ba6084ce4ef2') - -build() { - cd libva-${pkgver} - - ./configure \ ---prefix='/usr' - make -} - -package() { - cd libva-${pkgver} - - make DESTDIR="${pkgdir}" install - install -Dm 644 COPYING -t "${pkgdir}"/usr/share/licenses/libva -} - -# vim: ts=2 sw=2 et: Copied: libva/repos/extra-x86_64/PKGBUILD (from rev 328568, libva/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2018-07-14 06:54:22 UTC (rev 328569) @@ -0,0 +1,31 @@ +# $Id$ +# Maintainer: Maxime Gauduin +# Contributor: Bartłomiej Piotrowski +# Contributor: Ionut Biru + +pkgname=libva +pkgver=2.2.0 +pkgrel=2 +pkgdesc='Video Acceleration (VA) API for Linux' +arch=('x86_64') +url='https://01.org/linuxmedia/vaapi' +license=('MIT') +depends=('libdrm' 'libgl' 'libx11' 'libxext' 'libxfixes' 'wayland') +makedepends=('git' 'libglvnd' 'mesa' 'meson') +optdepends=('libva-vdpau-driver: backend for Nvidia and AMD cards' +'libva-intel-driver: backend for Intel cards') +provides=('libva-drm.so' 'libva-glx.so' 'libva-wayland.so' 'libva-x11.so' 'libva.so') +source=("git+https://github.com/intel/libva.git#tag=${pkgver}";) +sha256sums=('SKIP') + +build() { + arch-meson libva build + ninja -C build +} + +package() { + DESTDIR="${pkgdir}" ninja -C build install + install -Dm 644 libva/COPYING -t "${pkgdir}"/usr/share/licenses/libva +} + +# vim: ts=2 sw=2 et: Deleted: not-finding-wl-drm-interface-with-libglvnd.patch === --- not-finding-wl-drm-interface-with-libglvnd.patch2018-07-14 06:54:10 UTC (rev 328568) +++ not-finding-wl-drm-interface-with-libglvnd.patch2018-07-14 06:54:22 UTC (rev 328569) @@ -1,48 +0,0 @@ -From b832b37c6a6f7ff69a4ea4656007827a1b7e67e8 Mon Sep 17 00:00:00 2001 -From: Hans de Goede -Date: Wed, 15 Feb 2017 15:18:44 +0100 -Subject: [PATCH] Wayland-drm: Fix not finding wl_drm_interface on systems with - libglvnd - -We do not want just any libEGL.so.1 we want mesa's libEGL.so.1 as that -is the only way which defines the wl_drm_interface symbol we need, -one systems with libglvnd libEGL.so.1 is a dispatcher library provided -by libglvnd and the actual mesa libEGL we want is named libEGL_mesa.so.0 -so try that first. - -Signed-off-by: Hans de Goede - va/wayland/va_wayland_drm.c | 12 +--- - 1 file changed, 9 insertions(+), 3 deletions(-) - -diff --git a/va/wayland/va_wayland_drm.c b/va/wayland/va_wayland_drm.c -index 958ea85..2ff19f5 100644 a/va/wayland/va_wayland_drm.c -+++ b/va/wayland/va_wayland_drm.c -@@ -38,7 +38,10 @@ - #include "wayland-drm-client-protocol.h" - - /* XXX: Wayland/DRM support currently lives in Mesa libEGL.so.* library */ --#define LIBWAYLAND_DRM_NAME "libEGL.so.1" -+/* First try the soname of a glvnd enabled mesa build */ -+#define LIBWAYLAND_DRM_NAME "libEGL_mesa.so.0" -+/* Then fallback to plain libEGL.so.1 (which might not be mesa) */ -+#define LIBWAYLAND_DRM_NAME_FALLBACK "libEGL.so.1" - - typedef struct va_wayland_drm_context { - struct va_wayland_context base; -@@ -207,8 +210,11 @@ va_wayland_drm_create(VADisplayContextP pDisplayContext) - vtable->has_prime_sharing = 0; - - wl_drm_ctx->handle = dlopen(LIBWAYLAND_DRM_NA
[arch-commits] Commit in libva/repos/extra-x86_64 (4 files)
Date: Saturday, July 14, 2018 @ 06:49:48 Author: alucryd Revision: 328567 archrelease: copy trunk to extra-x86_64 Added: libva/repos/extra-x86_64/PKGBUILD (from rev 328566, libva/trunk/PKGBUILD) libva/repos/extra-x86_64/not-finding-wl-drm-interface-with-libglvnd.patch (from rev 328566, libva/trunk/not-finding-wl-drm-interface-with-libglvnd.patch) Deleted: libva/repos/extra-x86_64/PKGBUILD libva/repos/extra-x86_64/not-finding-wl-drm-interface-with-libglvnd.patch --+ PKGBUILD | 72 +++ not-finding-wl-drm-interface-with-libglvnd.patch | 96 ++--- 2 files changed, 84 insertions(+), 84 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2018-07-14 06:49:36 UTC (rev 328566) +++ PKGBUILD2018-07-14 06:49:48 UTC (rev 328567) @@ -1,36 +0,0 @@ -# $Id$ -# Maintainer: Maxime Gauduin -# Contributor: Bartłomiej Piotrowski -# Contributor: Ionut Biru - -pkgname=libva -pkgver=2.1.0 -pkgrel=1 -pkgdesc='Video Acceleration (VA) API for Linux' -arch=('x86_64') -url='https://01.org/linuxmedia/vaapi' -license=('MIT') -depends=('glibc' 'libdrm' 'libgl' 'libx11' 'libxext' 'libxfixes' 'wayland') -makedepends=('mesa') -optdepends=('libva-vdpau-driver: backend for Nvidia and AMD cards' -'libva-intel-driver: backend for Intel cards') -provides=('libva-drm.so' 'libva-glx.so' 'libva-wayland.so' 'libva-x11.so' 'libva.so') -source=("https://github.com/01org/libva/releases/download/${pkgver}/libva-${pkgver}.tar.bz2";) -sha256sums=('f3fa953a11d3210c3a4ee79031abdbe0863d5ce13d9b3f93f315f1eec60a4b0f') - -build() { - cd libva-${pkgver} - - ./configure \ ---prefix='/usr' - make -} - -package() { - cd libva-${pkgver} - - make DESTDIR="${pkgdir}" install - install -Dm 644 COPYING -t "${pkgdir}"/usr/share/licenses/libva -} - -# vim: ts=2 sw=2 et: Copied: libva/repos/extra-x86_64/PKGBUILD (from rev 328566, libva/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2018-07-14 06:49:48 UTC (rev 328567) @@ -0,0 +1,36 @@ +# $Id$ +# Maintainer: Maxime Gauduin +# Contributor: Bartłomiej Piotrowski +# Contributor: Ionut Biru + +pkgname=libva +pkgver=2.2.0 +pkgrel=1 +pkgdesc='Video Acceleration (VA) API for Linux' +arch=('x86_64') +url='https://01.org/linuxmedia/vaapi' +license=('MIT') +depends=('glibc' 'libdrm' 'libgl' 'libx11' 'libxext' 'libxfixes' 'wayland') +makedepends=('mesa') +optdepends=('libva-vdpau-driver: backend for Nvidia and AMD cards' +'libva-intel-driver: backend for Intel cards') +provides=('libva-drm.so' 'libva-glx.so' 'libva-wayland.so' 'libva-x11.so' 'libva.so') +source=("https://github.com/01org/libva/releases/download/${pkgver}/libva-${pkgver}.tar.bz2";) +sha256sums=('6f6ca04c785544d30d315ef130a6aeb9435b75f934d7fbe0e4e9ba6084ce4ef2') + +build() { + cd libva-${pkgver} + + ./configure \ +--prefix='/usr' + make +} + +package() { + cd libva-${pkgver} + + make DESTDIR="${pkgdir}" install + install -Dm 644 COPYING -t "${pkgdir}"/usr/share/licenses/libva +} + +# vim: ts=2 sw=2 et: Deleted: not-finding-wl-drm-interface-with-libglvnd.patch === --- not-finding-wl-drm-interface-with-libglvnd.patch2018-07-14 06:49:36 UTC (rev 328566) +++ not-finding-wl-drm-interface-with-libglvnd.patch2018-07-14 06:49:48 UTC (rev 328567) @@ -1,48 +0,0 @@ -From b832b37c6a6f7ff69a4ea4656007827a1b7e67e8 Mon Sep 17 00:00:00 2001 -From: Hans de Goede -Date: Wed, 15 Feb 2017 15:18:44 +0100 -Subject: [PATCH] Wayland-drm: Fix not finding wl_drm_interface on systems with - libglvnd - -We do not want just any libEGL.so.1 we want mesa's libEGL.so.1 as that -is the only way which defines the wl_drm_interface symbol we need, -one systems with libglvnd libEGL.so.1 is a dispatcher library provided -by libglvnd and the actual mesa libEGL we want is named libEGL_mesa.so.0 -so try that first. - -Signed-off-by: Hans de Goede - va/wayland/va_wayland_drm.c | 12 +--- - 1 file changed, 9 insertions(+), 3 deletions(-) - -diff --git a/va/wayland/va_wayland_drm.c b/va/wayland/va_wayland_drm.c -index 958ea85..2ff19f5 100644 a/va/wayland/va_wayland_drm.c -+++ b/va/wayland/va_wayland_drm.c -@@ -38,7 +38,10 @@ - #include "wayland-drm-client-protocol.h" - - /* XXX: Wayland/DRM support currently lives in Mesa libEGL.so.* library */ --#define LIBWAYLAND_DRM_NAME "libEGL.so.1" -+/* First try the soname of a glvnd enabled mesa build */ -+#define LIBWAYLAND_DRM_NAME "libEGL_mesa.so.0" -+/* Then fallback to plain libEGL.so.1 (which might not be mesa) */ -+#define LIBWAYLAND_DRM_NAME_FALLBACK "libEGL.so.1" - - typedef struct va_wayland_drm_context { - struct va_wayland_context base; -@@ -207,8 +210,11 @@ va_wayland_drm_create(VADisplayContextP
[arch-commits] Commit in libva/trunk (PKGBUILD)
Date: Saturday, July 14, 2018 @ 06:49:36 Author: alucryd Revision: 328566 upgpkg: libva 2.2.0-1 Modified: libva/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-07-13 22:35:05 UTC (rev 328565) +++ PKGBUILD2018-07-14 06:49:36 UTC (rev 328566) @@ -4,7 +4,7 @@ # Contributor: Ionut Biru pkgname=libva -pkgver=2.1.0 +pkgver=2.2.0 pkgrel=1 pkgdesc='Video Acceleration (VA) API for Linux' arch=('x86_64') @@ -16,7 +16,7 @@ 'libva-intel-driver: backend for Intel cards') provides=('libva-drm.so' 'libva-glx.so' 'libva-wayland.so' 'libva-x11.so' 'libva.so') source=("https://github.com/01org/libva/releases/download/${pkgver}/libva-${pkgver}.tar.bz2";) -sha256sums=('f3fa953a11d3210c3a4ee79031abdbe0863d5ce13d9b3f93f315f1eec60a4b0f') +sha256sums=('6f6ca04c785544d30d315ef130a6aeb9435b75f934d7fbe0e4e9ba6084ce4ef2') build() { cd libva-${pkgver}
[arch-commits] Commit in subsurface/repos/community-x86_64 (PKGBUILD PKGBUILD)
Date: Saturday, July 14, 2018 @ 04:45:05 Author: bisson Revision: 358885 archrelease: copy trunk to community-x86_64 Added: subsurface/repos/community-x86_64/PKGBUILD (from rev 358884, subsurface/trunk/PKGBUILD) Deleted: subsurface/repos/community-x86_64/PKGBUILD --+ PKGBUILD | 76 ++--- 1 file changed, 38 insertions(+), 38 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2018-07-14 04:44:44 UTC (rev 358884) +++ PKGBUILD2018-07-14 04:45:05 UTC (rev 358885) @@ -1,38 +0,0 @@ -# $Id$ -# Contributor: Francois Boulogne -# Maintainer: Gaetan Bisson - -pkgname=subsurface -_pkgname=Subsurface -pkgver=4.8.0 -pkgrel=1 -pkgdesc='Divelog program' -url='https://subsurface-divelog.org/' -license=('GPL2') -arch=('x86_64') -makedepends=('cmake' 'asciidoc' 'qt5-tools') -depends=('libzip' 'libxml2' 'libxslt' 'sqlite' 'libusb' 'libgit2' - 'subsurface-libdc' 'qt5-svg' 'qt5-location' - 'qt5-connectivity' 'qt5-webkit' 'grantlee' 'googlemaps') -source=("https://subsurface-divelog.org/downloads/${_pkgname}-${pkgver}.tgz";) -sha256sums=('98a5eb7541e22f7805849c668e11ff47ad8c0347dc9a93af5cb21919d48e9e52') - -# qt5-webkit still used for: printing, manual, facebook - -build() { - cd "${srcdir}/${_pkgname}-${pkgver}" - install -d build - cd build - cmake \ - -DCMAKE_BUILD_TYPE=Release \ - -DCMAKE_INSTALL_PREFIX=/usr \ - -DLIBDIVECOMPUTER_INCLUDE_DIR=/usr/include/libdivecomputer \ - .. - make -} - -package() { - cd "${srcdir}/${_pkgname}-${pkgver}" - cd build - make DESTDIR="${pkgdir}" install -} Copied: subsurface/repos/community-x86_64/PKGBUILD (from rev 358884, subsurface/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2018-07-14 04:45:05 UTC (rev 358885) @@ -0,0 +1,38 @@ +# $Id$ +# Contributor: Francois Boulogne +# Maintainer: Gaetan Bisson + +pkgname=subsurface +_pkgname=Subsurface +pkgver=4.8.1 +pkgrel=1 +pkgdesc='Divelog program' +url='https://subsurface-divelog.org/' +license=('GPL2') +arch=('x86_64') +makedepends=('cmake' 'asciidoc' 'qt5-tools') +depends=('libzip' 'libxml2' 'libxslt' 'sqlite' 'libusb' 'libgit2' + 'subsurface-libdc' 'qt5-svg' 'qt5-location' + 'qt5-connectivity' 'qt5-webkit' 'grantlee' 'googlemaps') +source=("https://subsurface-divelog.org/downloads/${_pkgname}-${pkgver}.tgz";) +sha256sums=('a26d821bd53b5c9dd1a410dc77d5af2b4e0157858061b527d3c8cb5700d7a81c') + +# qt5-webkit still used for: printing, manual, facebook + +build() { + cd "${srcdir}/${_pkgname}-${pkgver}" + install -d build + cd build + cmake \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DLIBDIVECOMPUTER_INCLUDE_DIR=/usr/include/libdivecomputer \ + .. + make +} + +package() { + cd "${srcdir}/${_pkgname}-${pkgver}" + cd build + make DESTDIR="${pkgdir}" install +}
[arch-commits] Commit in subsurface/trunk (PKGBUILD)
Date: Saturday, July 14, 2018 @ 04:44:44 Author: bisson Revision: 358884 upstream update Modified: subsurface/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-07-14 04:40:16 UTC (rev 358883) +++ PKGBUILD2018-07-14 04:44:44 UTC (rev 358884) @@ -4,7 +4,7 @@ pkgname=subsurface _pkgname=Subsurface -pkgver=4.8.0 +pkgver=4.8.1 pkgrel=1 pkgdesc='Divelog program' url='https://subsurface-divelog.org/' @@ -15,7 +15,7 @@ 'subsurface-libdc' 'qt5-svg' 'qt5-location' 'qt5-connectivity' 'qt5-webkit' 'grantlee' 'googlemaps') source=("https://subsurface-divelog.org/downloads/${_pkgname}-${pkgver}.tgz";) -sha256sums=('98a5eb7541e22f7805849c668e11ff47ad8c0347dc9a93af5cb21919d48e9e52') +sha256sums=('a26d821bd53b5c9dd1a410dc77d5af2b4e0157858061b527d3c8cb5700d7a81c') # qt5-webkit still used for: printing, manual, facebook
[arch-commits] Commit in subsurface-libdc/repos/community-x86_64 (PKGBUILD PKGBUILD)
Date: Saturday, July 14, 2018 @ 04:40:16 Author: bisson Revision: 358883 archrelease: copy trunk to community-x86_64 Added: subsurface-libdc/repos/community-x86_64/PKGBUILD (from rev 358882, subsurface-libdc/trunk/PKGBUILD) Deleted: subsurface-libdc/repos/community-x86_64/PKGBUILD --+ PKGBUILD | 60 ++-- 1 file changed, 30 insertions(+), 30 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2018-07-14 04:39:58 UTC (rev 358882) +++ PKGBUILD2018-07-14 04:40:16 UTC (rev 358883) @@ -1,30 +0,0 @@ -# $Id$ -# Contributor: Francois Boulogne -# Maintainer: Gaetan Bisson - -pkgname=subsurface-libdc -_pkgname=libdivecomputer-subsurface-branch -pkgver=4.8.0 -pkgrel=1 -pkgdesc='Library for communication with dive computers' -url='https://github.com/Subsurface-divelog/libdc' -license=('LGPL') -arch=('x86_64') -source=("https://subsurface-divelog.org/downloads/${_pkgname}-${pkgver}.tgz";) -sha256sums=('f9b157b737b055255541f969ddffce9e6a27f56ddd488573f2f50478a677da99') - -conflicts=('libdivecomputer') -provides=('libdivecomputer') -replaces=('libdivecomputer') - -build() { - cd "${srcdir}/${_pkgname}-${pkgver}" - autoreconf --install - ./configure --prefix=/usr - make -} - -package() { - cd "${srcdir}/${_pkgname}-${pkgver}" - make DESTDIR="${pkgdir}" install -} Copied: subsurface-libdc/repos/community-x86_64/PKGBUILD (from rev 358882, subsurface-libdc/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2018-07-14 04:40:16 UTC (rev 358883) @@ -0,0 +1,30 @@ +# $Id$ +# Contributor: Francois Boulogne +# Maintainer: Gaetan Bisson + +pkgname=subsurface-libdc +_pkgname=libdivecomputer-subsurface-branch +pkgver=4.8.1 +pkgrel=1 +pkgdesc='Library for communication with dive computers' +url='https://github.com/Subsurface-divelog/libdc' +license=('LGPL') +arch=('x86_64') +source=("https://subsurface-divelog.org/downloads/${_pkgname}-${pkgver}.tgz";) +sha256sums=('7e4bc836150cd82378d2a8b2a42d1e44dbac98d4aa69b6cf6e54a6eb1e02dff4') + +conflicts=('libdivecomputer') +provides=('libdivecomputer') +replaces=('libdivecomputer') + +build() { + cd "${srcdir}/${_pkgname}-${pkgver}" + autoreconf --install + ./configure --prefix=/usr + make +} + +package() { + cd "${srcdir}/${_pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install +}
[arch-commits] Commit in subsurface-libdc/trunk (PKGBUILD)
Date: Saturday, July 14, 2018 @ 04:39:58 Author: bisson Revision: 358882 upstream update Modified: subsurface-libdc/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-07-14 03:50:56 UTC (rev 358881) +++ PKGBUILD2018-07-14 04:39:58 UTC (rev 358882) @@ -4,7 +4,7 @@ pkgname=subsurface-libdc _pkgname=libdivecomputer-subsurface-branch -pkgver=4.8.0 +pkgver=4.8.1 pkgrel=1 pkgdesc='Library for communication with dive computers' url='https://github.com/Subsurface-divelog/libdc' @@ -11,7 +11,7 @@ license=('LGPL') arch=('x86_64') source=("https://subsurface-divelog.org/downloads/${_pkgname}-${pkgver}.tgz";) -sha256sums=('f9b157b737b055255541f969ddffce9e6a27f56ddd488573f2f50478a677da99') +sha256sums=('7e4bc836150cd82378d2a8b2a42d1e44dbac98d4aa69b6cf6e54a6eb1e02dff4') conflicts=('libdivecomputer') provides=('libdivecomputer')
[arch-commits] Commit in xmobar/repos (2 files)
Date: Saturday, July 14, 2018 @ 03:50:56 Author: felixonmars Revision: 358881 archrelease: copy trunk to community-staging-x86_64 Added: xmobar/repos/community-staging-x86_64/ xmobar/repos/community-staging-x86_64/PKGBUILD (from rev 358880, xmobar/trunk/PKGBUILD) --+ PKGBUILD | 45 + 1 file changed, 45 insertions(+) Copied: xmobar/repos/community-staging-x86_64/PKGBUILD (from rev 358880, xmobar/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2018-07-14 03:50:56 UTC (rev 358881) @@ -0,0 +1,45 @@ +# Maintainer: Levente Polyak +# Maintainer: Jelle van der Waa +# Contributer: Sergej Pupykin +# Contributor: Arch Haskell Team + +pkgname=xmobar +pkgver=0.26 +pkgrel=56 +pkgdesc='Minimalistic Text Based Status Bar' +url='https://hackage.haskell.org/package/xmobar' +license=('custom:BSD3') +arch=('x86_64') +depends=('libxft' 'libxinerama' 'libxrandr' 'libxpm' 'ghc-libs' 'haskell-x11' + 'haskell-x11-xft' 'haskell-utf8-string' 'haskell-network-uri' + 'haskell-hinotify' 'haskell-regex-base' 'haskell-regex-compat' 'haskell-http' + 'haskell-dbus0.10' 'haskell-libmpd' 'haskell-iwlib' 'wireless_tools') +makedepends=('ghc') +source=(${pkgname}-${pkgver}.tar.gz::https://github.com/jaor/xmobar/archive/${pkgver}.tar.gz + hinotify-0.3.10.patch::https://github.com/jaor/xmobar/commit/fb0a23f395445540f865ae00b33e75e0175db4ef.patch) +sha512sums=('c67c1552f7183a6f33b472f19686cda41cca27c0de89a8d0dcb1f8ea008aea85a143d75608d4392a1a1c9933737a6cbe881cff9ddd13f632d581cd0e10ca8d4d' + '53b7cca689386e976383ebbe56db877fb01896a5dfcb1e4e4e5424a9ce1ef7cc75a38dbed2bdb23e9521357c1e5945a7b58f70df07029fd38e398c6ca4891264') + +prepare() { + cd xmobar-$pkgver + patch -p1 -i ../hinotify-0.3.10.patch +} + +build() { + cd xmobar-${pkgver} + runhaskell setup configure -O \ +--enable-shared \ +--prefix=/usr \ +--enable-executable-dynamic \ +--disable-library-vanilla \ +--flags="with_utf8 with_xft with_iwlib with_xpm with_inotify with_mpd with_dbus with_mpris" + runhaskell setup build +} + +package() { + cd xmobar-${pkgver} + runhaskell setup copy --destdir="${pkgdir}" + install -Dm 644 license "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +} + +# vim: ts=2 sw=2 et:
[arch-commits] Commit in xmobar/trunk (PKGBUILD)
Date: Saturday, July 14, 2018 @ 03:50:34 Author: felixonmars Revision: 358880 upgpkg: xmobar 0.26-56 rebuild with extra 1.6.9 Modified: xmobar/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2018-07-14 03:49:09 UTC (rev 358879) +++ PKGBUILD2018-07-14 03:50:34 UTC (rev 358880) @@ -5,7 +5,7 @@ pkgname=xmobar pkgver=0.26 -pkgrel=55 +pkgrel=56 pkgdesc='Minimalistic Text Based Status Bar' url='https://hackage.haskell.org/package/xmobar' license=('custom:BSD3')
[arch-commits] Commit in stack/repos (3 files)
Date: Saturday, July 14, 2018 @ 03:49:09 Author: felixonmars Revision: 358879 archrelease: copy trunk to community-staging-x86_64 Added: stack/repos/community-staging-x86_64/ stack/repos/community-staging-x86_64/PKGBUILD (from rev 358878, stack/trunk/PKGBUILD) stack/repos/community-staging-x86_64/stack.install (from rev 358878, stack/trunk/stack.install) ---+ PKGBUILD | 77 stack.install |4 ++ 2 files changed, 81 insertions(+) Copied: stack/repos/community-staging-x86_64/PKGBUILD (from rev 358878, stack/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2018-07-14 03:49:09 UTC (rev 358879) @@ -0,0 +1,77 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +pkgname=stack +pkgver=1.7.1 +pkgrel=75 +pkgdesc="The Haskell Tool Stack" +url="https://github.com/commercialhaskell/stack"; +license=("custom:BSD3") +arch=('x86_64') +depends=('ghc-libs' 'haskell-aeson' 'haskell-annotated-wl-pprint' 'haskell-ansi-terminal' + 'haskell-async' 'haskell-attoparsec' 'haskell-base64-bytestring' 'haskell-conduit' + 'haskell-conduit-extra' 'haskell-cryptonite' 'haskell-cryptonite-conduit' 'haskell-echo' + 'haskell-exceptions' 'haskell-extra' 'haskell-file-embed' 'haskell-filelock' + 'haskell-fsnotify' 'haskell-generic-deriving' 'haskell-gitrev' 'haskell-hackage-security' + 'haskell-hashable' 'haskell-hpack' 'haskell-hpc' 'haskell-http-client' + 'haskell-http-client-tls' 'haskell-http-conduit' 'haskell-http-types' 'haskell-memory' + 'haskell-microlens' 'haskell-mintty' 'haskell-monad-logger' 'haskell-mono-traversable' + 'haskell-mustache' 'haskell-neat-interpolation' 'haskell-network-uri' 'haskell-open-browser' + 'haskell-optparse-applicative' 'haskell-optparse-simple' 'haskell-path' 'haskell-path-io' + 'haskell-persistent' 'haskell-persistent-sqlite' 'haskell-persistent-template' + 'haskell-primitive' 'haskell-project-template' 'haskell-regex-applicative-text' + 'haskell-resourcet' 'haskell-retry' 'haskell-rio' 'haskell-split' 'haskell-store' + 'haskell-store-core' 'haskell-streaming-commons' 'haskell-tar' 'haskell-temporary' + 'haskell-text-metrics' 'haskell-th-reify-many' 'haskell-tls' 'haskell-typed-process' + 'haskell-unicode-transforms' 'haskell-unix-compat' 'haskell-unliftio' + 'haskell-unordered-containers' 'haskell-vector' 'haskell-yaml' 'haskell-zip-archive' + 'haskell-zlib' 'haskell-bindings-uname') +makedepends=('ghc' 'haskell-quickcheck' 'haskell-hspec' 'haskell-smallcheck') +checkdepends=('cabal-install') +conflicts=('haskell-stack') +replaces=('haskell-stack') +install="stack.install" +source=("$pkgname-$pkgver.tar.gz::https://github.com/commercialhaskell/stack/archive/v$pkgver.tar.gz";) +sha512sums=('786c116b4717f6e0f5ac0b5397db4834486610f511eafefe2356574545f97093fe3203824b7a3cabb2e0562e5c0443af3d93defe83751a9982727d88cafe78a7') + +prepare() { + cd $pkgname-$pkgver + sed -i '54d;55d;56d;57d;58d' src/test/Stack/StoreSpec.hs + hpack + sed -i '/semigroups/d' $pkgname.cabal +} + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + + runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \ +--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \ + -f-disable-git-info -f-integration-tests -f-static -f-hide-dependency-versions -f-supported-build + runhaskell Setup build + runhaskell Setup register --gen-script + runhaskell Setup unregister --gen-script + sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh + sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh +} + +check() { + cd $pkgname-$pkgver + # cabal update + LD_LIBRARY_PATH="$PWD"/dist/build PATH="$PWD"/dist/build/stack:"$PATH" runhaskell Setup test + # Integration tests will result in 4 failures on Arch currently +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + + install -D -m744 register.sh "${pkgdir}/usr/share/haskell/register/${pkgname}.sh" + install -D -m744 unregister.sh "${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh" + runhaskell Setup copy --destdir="${pkgdir}" + install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" + rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE" + + LD_PRELOAD=$(ls "$pkgdir"/usr/lib/libHSstack-*-ghc*.so) "${pkgdir}"/usr/bin/stack --bash-completion-script /usr/bin/stack > stack_completion_script + install -Dm644 stack_completion_script "${pkgdir}/usr/share/bash-completion/completions/stack" +} Copied: stack/repos/community-staging-x86_64/stack.install (from rev 358878, stack/trunk/stack
[arch-commits] Commit in stack/trunk (PKGBUILD)
Date: Saturday, July 14, 2018 @ 03:48:48 Author: felixonmars Revision: 358878 upgpkg: stack 1.7.1-75 rebuild with extra 1.6.9 Modified: stack/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2018-07-14 03:42:46 UTC (rev 358877) +++ PKGBUILD2018-07-14 03:48:48 UTC (rev 358878) @@ -4,7 +4,7 @@ pkgname=stack pkgver=1.7.1 -pkgrel=74 +pkgrel=75 pkgdesc="The Haskell Tool Stack" url="https://github.com/commercialhaskell/stack"; license=("custom:BSD3")
[arch-commits] Commit in hoogle/repos (2 files)
Date: Saturday, July 14, 2018 @ 03:42:46 Author: felixonmars Revision: 358877 archrelease: copy trunk to community-staging-x86_64 Added: hoogle/repos/community-staging-x86_64/ hoogle/repos/community-staging-x86_64/PKGBUILD (from rev 358876, hoogle/trunk/PKGBUILD) --+ PKGBUILD | 45 + 1 file changed, 45 insertions(+) Copied: hoogle/repos/community-staging-x86_64/PKGBUILD (from rev 358876, hoogle/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2018-07-14 03:42:46 UTC (rev 358877) @@ -0,0 +1,45 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +pkgname=hoogle +pkgver=5.0.17.3 +pkgrel=49 +pkgdesc="Haskell API Search" +url="http://www.haskell.org/hoogle/"; +license=("custom:BSD3") +arch=('x86_64') +depends=('ghc-libs' 'haskell-quickcheck' 'haskell-aeson' 'haskell-cmdargs' 'haskell-conduit' + 'haskell-conduit-extra' 'haskell-connection' 'haskell-extra' 'haskell-src-exts' + 'haskell-http-conduit' 'haskell-http-types' 'haskell-js-flot' 'haskell-js-jquery' + 'haskell-mmap' 'haskell-network' 'haskell-network-uri' 'haskell-old-locale' + 'haskell-process-extras' 'haskell-resourcet' 'haskell-storable-tuple' 'haskell-tar' + 'haskell-uniplate' 'haskell-utf8-string' 'haskell-vector' 'haskell-wai' + 'haskell-wai-logger' 'haskell-warp' 'haskell-warp-tls' 'haskell-zlib') +makedepends=('ghc') +source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";) +sha512sums=('b8113e9dc6f44fbf684edfe6134eb44d55b1ef43afc3cb2051920daaec3e108df6209cfe822a8eeff884360c9b9415f2ab8273e7681e6bbcc1b9c77490370195') + +build() { +cd "${srcdir}/${pkgname}-${pkgver}" + +runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --datasubdir="$pkgname" \ +--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \ +-fnetwork-uri +runhaskell Setup build +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh +sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh +} + +package() { +cd "${srcdir}/${pkgname}-${pkgver}" + +install -D -m744 register.sh "${pkgdir}/usr/share/haskell/register/${pkgname}.sh" +install -D -m744 unregister.sh "${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh" +runhaskell Setup copy --destdir="${pkgdir}" +install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE" +}
[arch-commits] Commit in hoogle/trunk (PKGBUILD)
Date: Saturday, July 14, 2018 @ 03:42:25 Author: felixonmars Revision: 358876 upgpkg: hoogle 5.0.17.3-49 rebuild with extra 1.6.9 Modified: hoogle/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2018-07-14 03:40:48 UTC (rev 358875) +++ PKGBUILD2018-07-14 03:42:25 UTC (rev 358876) @@ -4,7 +4,7 @@ pkgname=hoogle pkgver=5.0.17.3 -pkgrel=48 +pkgrel=49 pkgdesc="Haskell API Search" url="http://www.haskell.org/hoogle/"; license=("custom:BSD3")
[arch-commits] Commit in cryptol/repos (2 files)
Date: Saturday, July 14, 2018 @ 03:40:48 Author: felixonmars Revision: 358875 archrelease: copy trunk to community-staging-x86_64 Added: cryptol/repos/community-staging-x86_64/ cryptol/repos/community-staging-x86_64/PKGBUILD (from rev 358874, cryptol/trunk/PKGBUILD) --+ PKGBUILD | 49 + 1 file changed, 49 insertions(+) Copied: cryptol/repos/community-staging-x86_64/PKGBUILD (from rev 358874, cryptol/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2018-07-14 03:40:48 UTC (rev 358875) @@ -0,0 +1,49 @@ +# $Id$ +# Maintainer: Felix Yan + +pkgname=cryptol +pkgver=2.5.0.20180515 +_commit=9fccc0086700b0e409bd9b0989e52d62863c714e +pkgrel=49 +pkgdesc="The Language of Cryptography" +url="http://www.cryptol.net"; +license=("custom:BSD3") +arch=('x86_64') +depends=('ghc-libs' 'z3' 'haskell-base-compat' 'haskell-async' 'haskell-gitrev' 'haskell-graphscc' + 'haskell-heredoc' 'haskell-monad-control' 'haskell-monadlib' 'haskell-random' 'haskell-sbv' + 'haskell-simple-smt' 'haskell-strict' 'haskell-tf-random' 'haskell-transformers-base' + 'haskell-ansi-terminal' 'haskell-blaze-html') +makedepends=('ghc' 'alex' 'happy') +source=("$pkgname-$_commit.tar.gz::https://github.com/GaloisInc/cryptol/archive/$_commit.tar.gz";) +sha512sums=('d9e98541b978acb8dafc5daf35a3fc75a523914e713b4cdc2e8e01a424b39556c625e2956dd495cabf67cf99cac0b4021563f0b62b2f355b1af0645dc8d9de1b') + +prepare() { +mv $pkgname-$_commit $pkgname-$pkgver + +cd $pkgname-$pkgver +sed -i 's/<.*0.10/<1/' $pkgname.cabal +} + +build() { +cd "${srcdir}/${pkgname}-${pkgver}" + +runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --datasubdir="$pkgname" \ +--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \ +-f-static -f-relocatable +runhaskell Setup build +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh +sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh +} + +package() { +cd "${srcdir}/${pkgname}-${pkgver}" + +install -D -m744 register.sh "${pkgdir}/usr/share/haskell/register/${pkgname}.sh" +install -D -m744 unregister.sh "${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh" +runhaskell Setup copy --destdir="${pkgdir}" +install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE" +}
[arch-commits] Commit in cryptol/trunk (PKGBUILD)
Date: Saturday, July 14, 2018 @ 03:40:27 Author: felixonmars Revision: 358874 upgpkg: cryptol 2.5.0.20180515-49 rebuild with extra 1.6.9 Modified: cryptol/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2018-07-14 03:37:13 UTC (rev 358873) +++ PKGBUILD2018-07-14 03:40:27 UTC (rev 358874) @@ -4,7 +4,7 @@ pkgname=cryptol pkgver=2.5.0.20180515 _commit=9fccc0086700b0e409bd9b0989e52d62863c714e -pkgrel=48 +pkgrel=49 pkgdesc="The Language of Cryptography" url="http://www.cryptol.net"; license=("custom:BSD3")
[arch-commits] Commit in haskell-sbv/repos (2 files)
Date: Saturday, July 14, 2018 @ 03:37:13 Author: felixonmars Revision: 358873 archrelease: copy trunk to community-staging-x86_64 Added: haskell-sbv/repos/community-staging-x86_64/ haskell-sbv/repos/community-staging-x86_64/PKGBUILD (from rev 358872, haskell-sbv/trunk/PKGBUILD) --+ PKGBUILD | 47 +++ 1 file changed, 47 insertions(+) Copied: haskell-sbv/repos/community-staging-x86_64/PKGBUILD (from rev 358872, haskell-sbv/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2018-07-14 03:37:13 UTC (rev 358873) @@ -0,0 +1,47 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=sbv +pkgname=haskell-sbv +pkgver=7.9 +pkgrel=28 +pkgdesc="SMT Based Verification: Symbolic Haskell theorem prover using SMT solving" +url="http://leventerkok.github.com/sbv"; +license=("custom:BSD3") +arch=('x86_64') +depends=('ghc-libs' 'haskell-ghc' 'haskell-quickcheck' 'haskell-cracknum' 'haskell-async' + 'haskell-random' 'haskell-syb' 'haskell-data-binary-ieee754' + 'haskell-generic-deriving') +makedepends=('ghc' 'haskell-doctest' 'haskell-glob' 'hlint' 'haskell-tasty' 'haskell-tasty-golden' + 'haskell-tasty-hunit' 'haskell-tasty-quickcheck') +source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +sha512sums=('970f326cc44d8cc219915f37d29c3e792a5bc2d153d408917013147ff7e2097b317b5cad0e79a595e272d3dcbc4a26507ba5fdf5b01582470afc303d18076d0c') + +build() { +cd $_hkgname-$pkgver + +runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \ +--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid +runhaskell Setup build +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh +sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh +} + +check() { +cd $_hkgname-$pkgver +runhaskell Setup test +} + +package() { +cd $_hkgname-$pkgver + +install -D -m744 register.sh "${pkgdir}/usr/share/haskell/register/${pkgname}.sh" +install -D -m744 unregister.sh "${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh" +runhaskell Setup copy --destdir="${pkgdir}" +install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE" +}
[arch-commits] Commit in haskell-sbv/trunk (PKGBUILD)
Date: Saturday, July 14, 2018 @ 03:36:53 Author: felixonmars Revision: 358872 upgpkg: haskell-sbv 7.9-28 rebuild with extra 1.6.9 Modified: haskell-sbv/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2018-07-14 03:30:47 UTC (rev 358871) +++ PKGBUILD2018-07-14 03:36:53 UTC (rev 358872) @@ -5,7 +5,7 @@ _hkgname=sbv pkgname=haskell-sbv pkgver=7.9 -pkgrel=27 +pkgrel=28 pkgdesc="SMT Based Verification: Symbolic Haskell theorem prover using SMT solving" url="http://leventerkok.github.com/sbv"; license=("custom:BSD3")
[arch-commits] Commit in hlint/repos (2 files)
Date: Saturday, July 14, 2018 @ 03:30:47 Author: felixonmars Revision: 358871 archrelease: copy trunk to community-staging-x86_64 Added: hlint/repos/community-staging-x86_64/ hlint/repos/community-staging-x86_64/PKGBUILD (from rev 358870, hlint/trunk/PKGBUILD) --+ PKGBUILD | 42 ++ 1 file changed, 42 insertions(+) Copied: hlint/repos/community-staging-x86_64/PKGBUILD (from rev 358870, hlint/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2018-07-14 03:30:47 UTC (rev 358871) @@ -0,0 +1,42 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +pkgname=hlint +pkgver=2.1.8 +pkgrel=7 +pkgdesc="Source code suggestions" +url="http://community.haskell.org/~ndm/hlint/"; +license=("custom:BSD3") +arch=('x86_64') +depends=('ghc-libs' 'haskell-aeson' 'haskell-ansi-terminal' 'haskell-cmdargs' 'haskell-cpphs' + 'haskell-data-default' 'haskell-extra' 'haskell-hscolour' 'haskell-refact' + 'haskell-src-exts' 'haskell-src-exts-util' 'haskell-uniplate' + 'haskell-unordered-containers' 'haskell-vector' 'haskell-yaml') +conflicts=('haskell-hlint') +replaces=('haskell-hlint') +makedepends=('ghc') +source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";) +sha512sums=('499a577a9a129f7386af0b1d082af530658bbd15fa099062edf97152031b4d6485dc919a0b80cf4fb797306a9b26d0bcd4f73368a0669d4d0e025fff1d77') + +build() { +cd "${srcdir}/${pkgname}-${pkgver}" +runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --datasubdir="$pkgname" \ +--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \ +-fgpl -fthreaded +runhaskell Setup build +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh +sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh +} + +package() { +cd "${srcdir}/${pkgname}-${pkgver}" +install -D -m744 register.sh "${pkgdir}/usr/share/haskell/register/${pkgname}.sh" +install -D -m744 unregister.sh "${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh" +runhaskell Setup copy --destdir="${pkgdir}" +install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +rm -f "${pkgdir}/usr/share/doc/${pkgname}/COPYING.BSD3" +}
[arch-commits] Commit in hlint/trunk (PKGBUILD)
Date: Saturday, July 14, 2018 @ 03:30:26 Author: felixonmars Revision: 358870 upgpkg: hlint 2.1.8-7 rebuild with extra 1.6.9 Modified: hlint/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2018-07-14 03:29:09 UTC (rev 358869) +++ PKGBUILD2018-07-14 03:30:26 UTC (rev 358870) @@ -4,7 +4,7 @@ pkgname=hlint pkgver=2.1.8 -pkgrel=6 +pkgrel=7 pkgdesc="Source code suggestions" url="http://community.haskell.org/~ndm/hlint/"; license=("custom:BSD3")
[arch-commits] Commit in hledger-web/trunk (PKGBUILD)
Date: Saturday, July 14, 2018 @ 03:28:48 Author: felixonmars Revision: 358868 upgpkg: hledger-web 1.10-9 rebuild with extra 1.6.9 Modified: hledger-web/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2018-07-14 03:27:19 UTC (rev 358867) +++ PKGBUILD2018-07-14 03:28:48 UTC (rev 358868) @@ -4,7 +4,7 @@ pkgname=hledger-web pkgver=1.10 -pkgrel=8 +pkgrel=9 pkgdesc="Web interface for the hledger accounting tool" url="http://hledger.org"; license=("GPL")
[arch-commits] Commit in hledger-web/repos (2 files)
Date: Saturday, July 14, 2018 @ 03:29:09 Author: felixonmars Revision: 358869 archrelease: copy trunk to community-staging-x86_64 Added: hledger-web/repos/community-staging-x86_64/ hledger-web/repos/community-staging-x86_64/PKGBUILD (from rev 358868, hledger-web/trunk/PKGBUILD) --+ PKGBUILD | 53 + 1 file changed, 53 insertions(+) Copied: hledger-web/repos/community-staging-x86_64/PKGBUILD (from rev 358868, hledger-web/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2018-07-14 03:29:09 UTC (rev 358869) @@ -0,0 +1,53 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +pkgname=hledger-web +pkgver=1.10 +pkgrel=9 +pkgdesc="Web interface for the hledger accounting tool" +url="http://hledger.org"; +license=("GPL") +arch=('x86_64') +depends=('ghc-libs' 'hledger' 'haskell-hledger-lib' 'haskell-blaze-html' 'haskell-blaze-markup' + 'haskell-case-insensitive' 'haskell-clientsession' 'haskell-cmdargs' 'haskell-conduit' + 'haskell-data-default' + 'haskell-hjsmin' 'haskell-http-conduit' 'haskell-http-client' 'haskell-hunit' + 'haskell-conduit-extra' 'haskell-safe' 'haskell-shakespeare' 'haskell-wai' + 'haskell-wai-extra' 'haskell-wai-handler-launch' 'haskell-warp' 'haskell-yesod' + 'haskell-yesod-core' 'haskell-yesod-form' 'haskell-yesod-static' 'haskell-json' + 'haskell-megaparsec') +makedepends=('ghc' 'haskell-hspec' 'haskell-yesod-test') +source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";) +sha512sums=('37be7468f4c64dfff852759b35d5f41406b8a49ab75dec621319680cea3536b009e3dcc02c3447df5af5818f64613740db64faa9142ec07d403f404e5f4e7e95') + +prepare() { +cd $pkgname-$pkgver +sed -i '/semigroups/d' $pkgname.cabal +} + +build() { +cd "${srcdir}/${pkgname}-${pkgver}" +runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --datasubdir="$pkgname" --enable-tests \ +--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \ +-f-dev -f-library-only -fthreaded +runhaskell Setup build +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh +sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh +} + +check() { +cd $pkgname-$pkgver +runhaskell Setup test +} + +package() { +cd "${srcdir}/${pkgname}-${pkgver}" +install -D -m744 register.sh "${pkgdir}/usr/share/haskell/register/${pkgname}.sh" +install -D -m744 unregister.sh "${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh" +runhaskell Setup copy --destdir="${pkgdir}" +rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE" +}
[arch-commits] Commit in hledger-ui/repos (2 files)
Date: Saturday, July 14, 2018 @ 03:27:19 Author: felixonmars Revision: 358867 archrelease: copy trunk to community-staging-x86_64 Added: hledger-ui/repos/community-staging-x86_64/ hledger-ui/repos/community-staging-x86_64/PKGBUILD (from rev 358866, hledger-ui/trunk/PKGBUILD) --+ PKGBUILD | 39 +++ 1 file changed, 39 insertions(+) Copied: hledger-ui/repos/community-staging-x86_64/PKGBUILD (from rev 358866, hledger-ui/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2018-07-14 03:27:19 UTC (rev 358867) @@ -0,0 +1,39 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +pkgname=hledger-ui +pkgver=1.10 +pkgrel=7 +pkgdesc="Curses-style user interface for the hledger accounting tool" +url="http://hledger.org"; +license=("GPL") +arch=('x86_64') +depends=('ghc-libs' 'hledger' 'haskell-hledger-lib' 'haskell-ansi-terminal' 'haskell-async' + 'haskell-base-compat-batteries' 'haskell-cmdargs' 'haskell-data-default' 'haskell-fsnotify' + 'haskell-hunit' 'haskell-microlens' 'haskell-microlens-platform' 'haskell-megaparsec' + 'haskell-pretty-show' 'haskell-safe' 'haskell-split' 'haskell-text-zipper' + 'haskell-vector' 'haskell-brick' 'haskell-vty') +makedepends=('ghc') +source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";) +sha512sums=('a493cb27f3d5ca184a46e7bb43fe14d5e7286ca6e15fa134eac966e969d45fde7c09dc1f5965f4c27609bc2b0d81bfca4c20d8242cd43bbc19e0e4ea8747c5ee') + +prepare() { +# It does nothing +sed -e '/mtl-compat/d' \ +-i ${pkgname}-${pkgver}/${pkgname}.cabal +} + +build() { +cd "${srcdir}/${pkgname}-${pkgver}" +runhaskell Setup configure -O --enable-executable-dynamic --disable-library-vanilla \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --datasubdir="$pkgname" \ +-fthreaded +runhaskell Setup build +} + +package() { +cd "${srcdir}/${pkgname}-${pkgver}" +runhaskell Setup copy --destdir="${pkgdir}" +rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE" +}
[arch-commits] Commit in hledger-ui/trunk (PKGBUILD)
Date: Saturday, July 14, 2018 @ 03:26:59 Author: felixonmars Revision: 358866 upgpkg: hledger-ui 1.10-7 rebuild with extra 1.6.9 Modified: hledger-ui/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2018-07-14 03:25:57 UTC (rev 358865) +++ PKGBUILD2018-07-14 03:26:59 UTC (rev 358866) @@ -4,7 +4,7 @@ pkgname=hledger-ui pkgver=1.10 -pkgrel=6 +pkgrel=7 pkgdesc="Curses-style user interface for the hledger accounting tool" url="http://hledger.org"; license=("GPL")
[arch-commits] Commit in hledger-api/repos (2 files)
Date: Saturday, July 14, 2018 @ 03:25:57 Author: felixonmars Revision: 358865 archrelease: copy trunk to community-staging-x86_64 Added: hledger-api/repos/community-staging-x86_64/ hledger-api/repos/community-staging-x86_64/PKGBUILD (from rev 358864, hledger-api/trunk/PKGBUILD) --+ PKGBUILD | 32 1 file changed, 32 insertions(+) Copied: hledger-api/repos/community-staging-x86_64/PKGBUILD (from rev 358864, hledger-api/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2018-07-14 03:25:57 UTC (rev 358865) @@ -0,0 +1,32 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +pkgname=hledger-api +pkgver=1.10 +pkgrel=7 +pkgdesc="Web API server for the hledger accounting tool" +url="http://hledger.org"; +license=("GPL") +arch=('x86_64') +depends=('ghc-libs' 'hledger' 'haskell-hledger-lib' 'haskell-aeson' 'haskell-data-default' + 'haskell-decimal' 'haskell-docopt' 'haskell-either' 'haskell-microlens' + 'haskell-microlens-platform' 'haskell-safe' 'haskell-servant-server' + 'haskell-servant-swagger' 'haskell-swagger2' 'haskell-wai' 'haskell-wai-extra' + 'haskell-warp') +makedepends=('ghc') +source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";) +sha512sums=('8c51c80ae911782fac5108949d67d52c81bdbafc562eeea9fc817a29362da85f7dd4a2d860d2fb25bea880df786e4886dca9561c9b2b9c7d7f2a4ecef6091834') + +build() { +cd "${srcdir}/${pkgname}-${pkgver}" +runhaskell Setup configure -O --enable-executable-dynamic --disable-library-vanilla \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --datasubdir="$pkgname" +runhaskell Setup build +} + +package() { +cd "${srcdir}/${pkgname}-${pkgver}" +runhaskell Setup copy --destdir="${pkgdir}" +rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE" +}
[arch-commits] Commit in python-pytest-asyncio/repos (2 files)
Date: Saturday, July 14, 2018 @ 03:25:47 Author: felixonmars Revision: 358864 archrelease: copy trunk to community-staging-any Added: python-pytest-asyncio/repos/community-staging-any/ python-pytest-asyncio/repos/community-staging-any/PKGBUILD (from rev 358863, python-pytest-asyncio/trunk/PKGBUILD) --+ PKGBUILD | 37 + 1 file changed, 37 insertions(+) Copied: python-pytest-asyncio/repos/community-staging-any/PKGBUILD (from rev 358863, python-pytest-asyncio/trunk/PKGBUILD) === --- community-staging-any/PKGBUILD (rev 0) +++ community-staging-any/PKGBUILD 2018-07-14 03:25:47 UTC (rev 358864) @@ -0,0 +1,37 @@ +# $Id$ +# Maintainer: Felix Yan + +pkgname=python-pytest-asyncio +pkgver=0.8.0.20180710 +_commit=d2dc63597d6597805c88f11a2e7a0f2f642ce7d6 +pkgrel=1 +pkgdesc="Pytest support for asyncio." +arch=('any') +license=('Apache') +url="https://github.com/pytest-dev/pytest-asyncio/"; +depends=('python-pytest') +checkdepends=('python-pytest-cov' 'python-async_generator') +source=("$pkgname-$_commit.tar.gz::https://github.com/pytest-dev/pytest-asyncio/archive/$_commit.tar.gz";) +sha512sums=('cfc1f9e30fde936efe6b963d26817a803a82587e5769ca35df10203be058f3df87073d44b9e7e10977cf51beb91be72e855ce85a5285b8747bf3e4459487a33f') + +prepare() { + mv pytest-asyncio-{$_commit,$pkgver} +} + +build() { + cd pytest-asyncio-$pkgver + python setup.py build +} + +check() { + # Hack entry points by installing it + + cd pytest-asyncio-$pkgver + python setup.py install --root="$PWD/tmp_install" --optimize=1 + PYTHONPATH="$PWD/tmp_install/usr/lib/python3.6/site-packages:$PYTHONPATH:$PWD/tests" py.test +} + +package() { + cd pytest-asyncio-$pkgver + python setup.py install --root="$pkgdir" --optimize=1 +}
[arch-commits] Commit in hledger-api/trunk (PKGBUILD)
Date: Saturday, July 14, 2018 @ 03:25:36 Author: felixonmars Revision: 358863 upgpkg: hledger-api 1.10-7 rebuild with extra 1.6.9 Modified: hledger-api/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2018-07-14 03:25:24 UTC (rev 358862) +++ PKGBUILD2018-07-14 03:25:36 UTC (rev 358863) @@ -4,7 +4,7 @@ pkgname=hledger-api pkgver=1.10 -pkgrel=6 +pkgrel=7 pkgdesc="Web API server for the hledger accounting tool" url="http://hledger.org"; license=("GPL")
[arch-commits] Commit in python-pytest-asyncio/trunk (PKGBUILD)
Date: Saturday, July 14, 2018 @ 03:25:24 Author: felixonmars Revision: 358862 upgpkg: python-pytest-asyncio 0.8.0.20180710-1 Python 3.7 rebuild Modified: python-pytest-asyncio/trunk/PKGBUILD --+ PKGBUILD | 11 --- 1 file changed, 8 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-07-14 03:24:23 UTC (rev 358861) +++ PKGBUILD2018-07-14 03:25:24 UTC (rev 358862) @@ -2,7 +2,8 @@ # Maintainer: Felix Yan pkgname=python-pytest-asyncio -pkgver=0.8.0 +pkgver=0.8.0.20180710 +_commit=d2dc63597d6597805c88f11a2e7a0f2f642ce7d6 pkgrel=1 pkgdesc="Pytest support for asyncio." arch=('any') @@ -10,9 +11,13 @@ url="https://github.com/pytest-dev/pytest-asyncio/"; depends=('python-pytest') checkdepends=('python-pytest-cov' 'python-async_generator') -source=("$pkgname-$pkgver.tar.gz::https://github.com/pytest-dev/pytest-asyncio/archive/v$pkgver.tar.gz";) -sha512sums=('7c2660b95294a4486b1d5ec15f2b894e8aae261c902563b7c144d14e42dd601fabe774df0a035697745bcaf3492fa9ed05390b2c58c034c3e20d4ec16d8368d4') +source=("$pkgname-$_commit.tar.gz::https://github.com/pytest-dev/pytest-asyncio/archive/$_commit.tar.gz";) +sha512sums=('cfc1f9e30fde936efe6b963d26817a803a82587e5769ca35df10203be058f3df87073d44b9e7e10977cf51beb91be72e855ce85a5285b8747bf3e4459487a33f') +prepare() { + mv pytest-asyncio-{$_commit,$pkgver} +} + build() { cd pytest-asyncio-$pkgver python setup.py build
[arch-commits] Commit in hledger/repos (2 files)
Date: Saturday, July 14, 2018 @ 03:24:23 Author: felixonmars Revision: 358861 archrelease: copy trunk to community-staging-x86_64 Added: hledger/repos/community-staging-x86_64/ hledger/repos/community-staging-x86_64/PKGBUILD (from rev 358860, hledger/trunk/PKGBUILD) --+ PKGBUILD | 53 + 1 file changed, 53 insertions(+) Copied: hledger/repos/community-staging-x86_64/PKGBUILD (from rev 358860, hledger/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2018-07-14 03:24:23 UTC (rev 358861) @@ -0,0 +1,53 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +pkgname=hledger +pkgver=1.10 +pkgrel=5 +pkgdesc="Command-line interface for the hledger accounting tool" +url="http://hledger.org"; +license=("GPL") +arch=('x86_64') +depends=('ghc-libs' 'haskell-ansi-terminal' 'haskell-base-compat-batteries' 'haskell-cmdargs' + 'haskell-csv' 'haskell-data-default' 'haskell-decimal' 'haskell-diff' 'haskell-file-embed' + 'haskell-hashable' 'haskell-here' 'haskell-hledger-lib' 'haskell-hunit' 'haskell-lucid' + 'haskell-megaparsec' 'haskell-old-time' 'haskell-pretty-show' + 'haskell-regex-tdfa' 'haskell-safe' 'haskell-shakespeare' 'haskell-split' 'haskell-tabular' + 'haskell-temporary' 'haskell-unordered-containers' 'haskell-utf8-string' + 'haskell-utility-ht' 'haskell-wizards') +makedepends=('ghc' 'haskell-test-framework' 'haskell-test-framework-hunit') +source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";) +sha512sums=('45beedfb3db6cf83c06845878759b3f636404b0fab1c1bda3cda09c03f8d79ac2cce237c97a2d934860dfe3a8a1e30e3facdd63f5100954f6148d5768977078a') + +prepare() { +# It does nothing +sed -e '/mtl-compat/d' \ +-i ${pkgname}-${pkgver}/${pkgname}.cabal +} + +build() { +cd "${srcdir}/${pkgname}-${pkgver}" +runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --datasubdir="$pkgname" --enable-tests \ +--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \ +-fterminfo -fthreaded +LC_CTYPE=en_US.UTF-8 runhaskell Setup build +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh +sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh +} + +check() { +cd $pkgname-$pkgver +runhaskell Setup test +} + +package() { +cd "${srcdir}/${pkgname}-${pkgver}" +install -D -m744 register.sh "${pkgdir}/usr/share/haskell/register/${pkgname}.sh" +install -D -m744 unregister.sh "${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh" +runhaskell Setup copy --destdir="${pkgdir}" +rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE" +}
[arch-commits] Commit in hledger/trunk (PKGBUILD)
Date: Saturday, July 14, 2018 @ 03:24:01 Author: felixonmars Revision: 358860 upgpkg: hledger 1.10-5 rebuild with extra 1.6.9 Modified: hledger/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2018-07-14 03:22:42 UTC (rev 358859) +++ PKGBUILD2018-07-14 03:24:01 UTC (rev 358860) @@ -4,7 +4,7 @@ pkgname=hledger pkgver=1.10 -pkgrel=4 +pkgrel=5 pkgdesc="Command-line interface for the hledger accounting tool" url="http://hledger.org"; license=("GPL")
[arch-commits] Commit in haskell-shake/trunk (PKGBUILD)
Date: Saturday, July 14, 2018 @ 03:22:22 Author: felixonmars Revision: 358858 upgpkg: haskell-shake 0.16.4-58 rebuild with extra 1.6.9 Modified: haskell-shake/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2018-07-14 03:22:19 UTC (rev 358857) +++ PKGBUILD2018-07-14 03:22:22 UTC (rev 358858) @@ -5,7 +5,7 @@ _hkgname=shake pkgname=haskell-shake pkgver=0.16.4 -pkgrel=57 +pkgrel=58 pkgdesc="Build system library, like Make, but more accurate dependencies." url="http://shakebuild.com"; license=("custom:BSD3")
[arch-commits] Commit in python-testfixtures/repos (2 files)
Date: Saturday, July 14, 2018 @ 03:22:19 Author: felixonmars Revision: 358857 archrelease: copy trunk to community-staging-any Added: python-testfixtures/repos/community-staging-any/ python-testfixtures/repos/community-staging-any/PKGBUILD (from rev 358856, python-testfixtures/trunk/PKGBUILD) --+ PKGBUILD | 53 + 1 file changed, 53 insertions(+) Copied: python-testfixtures/repos/community-staging-any/PKGBUILD (from rev 358856, python-testfixtures/trunk/PKGBUILD) === --- community-staging-any/PKGBUILD (rev 0) +++ community-staging-any/PKGBUILD 2018-07-14 03:22:19 UTC (rev 358857) @@ -0,0 +1,53 @@ +# $Id$ +# Maintainer: Felix Yan + +pkgbase=python-testfixtures +pkgname=('python-testfixtures' 'python2-testfixtures') +pkgver=6.2.0 +pkgrel=2 +pkgdesc="A collection of helpers and mock objects that are useful when writing unit tests or doc tests" +arch=('any') +license=('MIT') +url="https://github.com/Simplistix/testfixtures"; +makedepends=('python-setuptools' 'python2-setuptools') +checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'python-mock' 'python2-mock' + 'python-zope-component' 'python2-zope-component' 'python-sybil' 'python2-sybil' + 'python-pytest-django' 'python2-pytest-django' 'python-django' 'python2-django') +source=("$pkgbase-$pkgver.tar.gz::https://github.com/Simplistix/testfixtures/archive/$pkgver.tar.gz";) +sha512sums=('6623092e981bcbf5b97e6274a279ce5306e8194a38334ea102f4d0ba0a2bb9c05f2aaa5cc43ded0c6862a54b589634fbbcbf6f6d151987047a3409181fba07ab') + +prepare() { + cp -a testfixtures-$pkgver{,-py2} +} + +build() { + cd "$srcdir"/testfixtures-$pkgver + python setup.py build + + cd "$srcdir"/testfixtures-$pkgver-py2 + python2 setup.py build +} + +check() { + cd "$srcdir"/testfixtures-$pkgver + python setup.py pytest --addopts "--ignore=build" || warning "https://github.com/Simplistix/testfixtures/issues/85"; + + cd "$srcdir"/testfixtures-$pkgver-py2 + python2 setup.py pytest --addopts "--ignore=build" +} + +package_python-testfixtures() { + depends=('python') + + cd testfixtures-$pkgver + python setup.py install --root="$pkgdir" --optimize=1 + install -D -m644 docs/license.txt "$pkgdir"/usr/share/licenses/$pkgname/license.txt +} + +package_python2-testfixtures() { + depends=('python2') + + cd testfixtures-$pkgver-py2 + python2 setup.py install --root="$pkgdir" --optimize=1 + install -D -m644 docs/license.txt "$pkgdir"/usr/share/licenses/$pkgname/license.txt +}
[arch-commits] Commit in haskell-shake/repos (2 files)
Date: Saturday, July 14, 2018 @ 03:22:42 Author: felixonmars Revision: 358859 archrelease: copy trunk to community-staging-x86_64 Added: haskell-shake/repos/community-staging-x86_64/ haskell-shake/repos/community-staging-x86_64/PKGBUILD (from rev 358858, haskell-shake/trunk/PKGBUILD) --+ PKGBUILD | 56 1 file changed, 56 insertions(+) Copied: haskell-shake/repos/community-staging-x86_64/PKGBUILD (from rev 358858, haskell-shake/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2018-07-14 03:22:42 UTC (rev 358859) @@ -0,0 +1,56 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=shake +pkgname=haskell-shake +pkgver=0.16.4 +pkgrel=58 +pkgdesc="Build system library, like Make, but more accurate dependencies." +url="http://shakebuild.com"; +license=("custom:BSD3") +arch=('x86_64') +depends=('ghc-libs' 'haskell-extra' 'haskell-hashable' 'haskell-js-flot' 'haskell-js-jquery' + 'haskell-primitive' 'haskell-random' 'haskell-unordered-containers' 'haskell-utf8-string') +makedepends=('ghc' 'haskell-quickcheck') +source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +sha512sums=('4a517a3730836d5e31c700e455f738d7798460525efdb25499b52fd579dfaaad9d3758fa924b720e1a6c803419eeefdbcc52cec5d60cb5917ae6334454935246') + +prepare() { +cd $_hkgname-$pkgver +sed -i 's/ghc --make/ghc -dynamic --make/' src/Test/Command.hs +sed -e 's/runhaskell Setup.hs configure/runhaskell Setup.hs configure --enable-executable-dynamic --disable-library-vanilla/' \ +-e 's/ghc -fno-code/ghc -dynamic -fno-code/' \ +-i src/Test/Docs.hs +sed -i 's/cmd "ghc" flags/cmd "ghc" "-dynamic" flags/' src/Test/Self.hs +sed -i 's/ghc --make/ghc -dynamic --make/' docs/manual/build.sh +} + +build() { +cd $_hkgname-$pkgver + +runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --datasubdir="$pkgname" --enable-tests \ +--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \ +-f-portable +runhaskell Setup build +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh +sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh +} + +check() { +cd $_hkgname-$pkgver +runhaskell Setup test +} + +package() { +cd $_hkgname-$pkgver + +install -D -m744 register.sh "${pkgdir}/usr/share/haskell/register/${pkgname}.sh" +install -D -m744 unregister.sh "${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh" +runhaskell Setup copy --destdir="${pkgdir}" +install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE" +}
[arch-commits] Commit in python-testfixtures/trunk (PKGBUILD)
Date: Saturday, July 14, 2018 @ 03:21:52 Author: felixonmars Revision: 358856 upgpkg: python-testfixtures 6.2.0-2 Python 3.7 rebuild Modified: python-testfixtures/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-07-14 03:19:14 UTC (rev 358855) +++ PKGBUILD2018-07-14 03:21:52 UTC (rev 358856) @@ -4,7 +4,7 @@ pkgbase=python-testfixtures pkgname=('python-testfixtures' 'python2-testfixtures') pkgver=6.2.0 -pkgrel=1 +pkgrel=2 pkgdesc="A collection of helpers and mock objects that are useful when writing unit tests or doc tests" arch=('any') license=('MIT') @@ -30,7 +30,7 @@ check() { cd "$srcdir"/testfixtures-$pkgver - python setup.py pytest --addopts "--ignore=build" + python setup.py pytest --addopts "--ignore=build" || warning "https://github.com/Simplistix/testfixtures/issues/85"; cd "$srcdir"/testfixtures-$pkgver-py2 python2 setup.py pytest --addopts "--ignore=build"
[arch-commits] Commit in python-sqlalchemy-migrate/repos (2 files)
Date: Saturday, July 14, 2018 @ 03:19:14 Author: felixonmars Revision: 358855 archrelease: copy trunk to community-staging-any Added: python-sqlalchemy-migrate/repos/community-staging-any/ python-sqlalchemy-migrate/repos/community-staging-any/PKGBUILD (from rev 358854, python-sqlalchemy-migrate/trunk/PKGBUILD) --+ PKGBUILD | 63 + 1 file changed, 63 insertions(+) Copied: python-sqlalchemy-migrate/repos/community-staging-any/PKGBUILD (from rev 358854, python-sqlalchemy-migrate/trunk/PKGBUILD) === --- community-staging-any/PKGBUILD (rev 0) +++ community-staging-any/PKGBUILD 2018-07-14 03:19:14 UTC (rev 358855) @@ -0,0 +1,63 @@ +# $Id$ +# Maintainer: Felix Yan + +pkgbase=python-sqlalchemy-migrate +pkgname=(python-sqlalchemy-migrate python2-sqlalchemy-migrate) +pkgver=0.11.0 +pkgrel=3 +pkgdesc="Database schema migration for SQLAlchemy" +arch=('any') +url="https://pypi.python.org/pypi/sqlalchemy-migrate/$pkgver"; +license=('Apache') +makedepends=('python-setuptools' 'python2-setuptools' 'python-pbr' 'python2-pbr' 'python-sqlalchemy' + 'python2-sqlalchemy' 'python-decorator' 'python2-decorator' 'python-sqlparse' + 'python2-sqlparse' 'python-tempita' 'python2-tempita') +checkdepends=('python-mock' 'python2-mock' 'python-testrepository' 'python2-testrepository' + 'python-scripttest' 'python2-scripttest' 'python-ibm-db-sa' 'python2-ibm-db-sa' + 'mysql-python' 'python2-psycopg2') +options=('!emptydirs') +source=("$pkgbase-$pkgver.tar.gz::https://github.com/openstack/sqlalchemy-migrate/archive/$pkgver.tar.gz";) +sha512sums=('07c18d2f197f2bda2caa41672f7e3e278397f3b30d3cf3297200df89a051e9e46147dc1c95e20398ed575e7f3c1dd4c56f9e525ab47a960344f51d276e70639f') + +prepare() { + cp -a sqlalchemy-migrate-$pkgver{,-py2} + + export PBR_VERSION=$pkgver +} + +build() { + cd "$srcdir"/sqlalchemy-migrate-$pkgver + python setup.py build + + cd "$srcdir"/sqlalchemy-migrate-$pkgver-py2 + python2 setup.py build +} + +check() { + cd "$srcdir"/sqlalchemy-migrate-$pkgver + python setup.py testr || warning "Tests failed" + + cd "$srcdir"/sqlalchemy-migrate-$pkgver-py2 + PYTHON=python2 python2 setup.py testr || warning "Tests failed" +} + +package_python-sqlalchemy-migrate() { + depends=('python-six' 'python-pbr' 'python-sqlalchemy' 'python-decorator' 'python-sqlparse' + 'python-tempita') + + cd "$srcdir"/sqlalchemy-migrate-$pkgver + python setup.py install --root="$pkgdir" --optimize=1 +} + +package_python2-sqlalchemy-migrate() { + depends=('python2-six' 'python2-pbr' 'python2-sqlalchemy' 'python2-decorator' 'python2-sqlparse' + 'python2-tempita') + + cd "$srcdir"/sqlalchemy-migrate-$pkgver-py2 + python2 setup.py install --root="$pkgdir" --optimize=1 + + mv "$pkgdir"/usr/bin/migrate{,2} + mv "$pkgdir"/usr/bin/migrate-repository{,2} +} + +# vim:set ts=2 sw=2 et:
[arch-commits] Commit in python-sqlalchemy-migrate/trunk (PKGBUILD)
Date: Saturday, July 14, 2018 @ 03:18:49 Author: felixonmars Revision: 358854 upgpkg: python-sqlalchemy-migrate 0.11.0-3 Python 3.7 rebuild Modified: python-sqlalchemy-migrate/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2018-07-14 03:15:30 UTC (rev 358853) +++ PKGBUILD2018-07-14 03:18:49 UTC (rev 358854) @@ -4,7 +4,7 @@ pkgbase=python-sqlalchemy-migrate pkgname=(python-sqlalchemy-migrate python2-sqlalchemy-migrate) pkgver=0.11.0 -pkgrel=2 +pkgrel=3 pkgdesc="Database schema migration for SQLAlchemy" arch=('any') url="https://pypi.python.org/pypi/sqlalchemy-migrate/$pkgver";
[arch-commits] Commit in haskell-hledger-lib/repos (2 files)
Date: Saturday, July 14, 2018 @ 03:15:30 Author: felixonmars Revision: 358853 archrelease: copy trunk to community-staging-x86_64 Added: haskell-hledger-lib/repos/community-staging-x86_64/ haskell-hledger-lib/repos/community-staging-x86_64/PKGBUILD (from rev 358852, haskell-hledger-lib/trunk/PKGBUILD) --+ PKGBUILD | 54 ++ 1 file changed, 54 insertions(+) Copied: haskell-hledger-lib/repos/community-staging-x86_64/PKGBUILD (from rev 358852, haskell-hledger-lib/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2018-07-14 03:15:30 UTC (rev 358853) @@ -0,0 +1,54 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=hledger-lib +pkgname=haskell-hledger-lib +pkgver=1.10 +pkgrel=4 +pkgdesc="Core data types, parsers and functionality for the hledger accounting tools" +url="http://hledger.org"; +license=("GPL") +arch=('x86_64') +depends=('ghc-libs' 'haskell-ansi-terminal' 'haskell-base-compat-batteries' 'haskell-blaze-markup' + 'haskell-cmdargs' 'haskell-csv' 'haskell-data-default' 'haskell-decimal' 'haskell-extra' + 'haskell-hashtables' 'haskell-megaparsec' 'haskell-old-time' 'haskell-pretty-show' + 'haskell-regex-tdfa' 'haskell-safe' 'haskell-split' 'haskell-tabular' 'haskell-uglymemo' + 'haskell-utf8-string' 'haskell-hunit') +makedepends=('ghc' 'haskell-doctest' 'haskell-easytest' 'haskell-glob' 'haskell-parser-combinators' + 'haskell-test-framework' 'haskell-test-framework-hunit') +source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +sha512sums=('4ef569d05e29c49ecff4c61b71bf3e1992fd3811c3663570eabb0370065b066f4b3323f714d376ac0f49841fd0a3c739ed4a8a21c00da0f94982c57cf0507ba7') + +prepare() { +# It does nothing +sed -e '/mtl-compat/d' \ +-i ${_hkgname}-${pkgver}/${_hkgname}.cabal +} + +build() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \ +--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid +runhaskell Setup build +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh +sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh +} + +check() { +cd $_hkgname-$pkgver +runhaskell Setup test +} + +package() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +install -D -m744 register.sh "${pkgdir}/usr/share/haskell/register/${pkgname}.sh" +install -D -m744 unregister.sh "${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh" +runhaskell Setup copy --destdir="${pkgdir}" +rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE" +}
[arch-commits] Commit in haskell-hledger-lib/trunk (PKGBUILD)
Date: Saturday, July 14, 2018 @ 03:15:09 Author: felixonmars Revision: 358852 upgpkg: haskell-hledger-lib 1.10-4 rebuild with extra 1.6.9 Modified: haskell-hledger-lib/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2018-07-14 03:07:32 UTC (rev 358851) +++ PKGBUILD2018-07-14 03:15:09 UTC (rev 358852) @@ -5,7 +5,7 @@ _hkgname=hledger-lib pkgname=haskell-hledger-lib pkgver=1.10 -pkgrel=3 +pkgrel=4 pkgdesc="Core data types, parsers and functionality for the hledger accounting tools" url="http://hledger.org"; license=("GPL")
[arch-commits] Commit in git-annex/repos (3 files)
Date: Saturday, July 14, 2018 @ 03:07:23 Author: felixonmars Revision: 358850 archrelease: copy trunk to community-staging-x86_64 Added: git-annex/repos/community-staging-x86_64/ git-annex/repos/community-staging-x86_64/PKGBUILD (from rev 358849, git-annex/trunk/PKGBUILD) git-annex/repos/community-staging-x86_64/ghc-8.4.patch (from rev 358849, git-annex/trunk/ghc-8.4.patch) ---+ PKGBUILD | 54 ghc-8.4.patch | 121 2 files changed, 175 insertions(+) Copied: git-annex/repos/community-staging-x86_64/PKGBUILD (from rev 358849, git-annex/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2018-07-14 03:07:23 UTC (rev 358850) @@ -0,0 +1,54 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +pkgname=git-annex +pkgver=6.20180626 +pkgrel=36 +pkgdesc="Manage files with git, without checking their contents into git" +url="http://git-annex.branchable.com/"; +license=("AGPL3") +arch=('x86_64') +depends=('git' 'lsof' 'rsync' 'ghc-libs' 'haskell-aeson' 'haskell-async' 'haskell-aws' + 'haskell-blaze-builder' 'haskell-bloomfilter' 'haskell-byteable' 'haskell-case-insensitive' + 'haskell-clientsession' 'haskell-concurrent-output' 'haskell-connection' 'haskell-conduit' + 'haskell-crypto-api' 'haskell-cryptonite' 'haskell-data-default' 'haskell-dav' + 'haskell-dbus' 'haskell-disk-free-space' 'haskell-dlist' 'haskell-dns' + 'haskell-edit-distance' 'haskell-esqueleto' 'haskell-exceptions' 'haskell-fdo-notify' + 'haskell-feed' 'haskell-hinotify' 'haskell-hslogger' 'haskell-http-client' + 'haskell-http-client-tls' 'haskell-http-conduit' 'haskell-http-types' 'haskell-ifelse' + 'haskell-magic' 'haskell-memory' 'haskell-monad-control' 'haskell-monad-logger' + 'haskell-mountpoints' 'haskell-network' 'haskell-network-info' 'haskell-network-multicast' + 'haskell-network-uri' 'haskell-old-locale' 'haskell-optparse-applicative' + 'haskell-path-pieces' 'haskell-persistent' 'haskell-persistent-sqlite' + 'haskell-persistent-template' 'haskell-quickcheck' 'haskell-random' 'haskell-regex-tdfa' + 'haskell-resourcet' 'haskell-safesemaphore' 'haskell-sandi' 'haskell-securemem' + 'haskell-shakespeare' 'haskell-socks' 'haskell-split' 'haskell-stm-chans' 'haskell-tagsoup' + 'haskell-tasty' 'haskell-tasty-hunit' 'haskell-tasty-quickcheck' 'haskell-tasty-rerun' + 'haskell-torrent' 'haskell-unix-compat' 'haskell-unordered-containers' + 'haskell-utf8-string' 'haskell-uuid' 'haskell-vector' 'haskell-wai' 'haskell-wai-extra' + 'haskell-warp' 'haskell-warp-tls' 'haskell-yesod' 'haskell-yesod-core' 'haskell-yesod-form' + 'haskell-yesod-static') +makedepends=('chrpath' 'ghc') +source=("git+https://git.joeyh.name/git/git-annex.git#tag=$pkgver";) +sha512sums=('SKIP') + +build() { + cd git-annex + + runhaskell Setup configure -O --prefix=/usr --enable-executable-dynamic --disable-library-vanilla \ +--docdir="/usr/share/doc/$pkgname" \ +-fnetwork-uri -fconcurrentoutput -ftorrentparser \ +-f-androidsplice -f-android -fproduction -fpairing -fwebapp \ +-fassistant -fwebdav -fs3 -f-benchmark -fdbus -fmagicmime + runhaskell Setup build +} + +package() { + cd git-annex + runhaskell Setup copy --destdir="$pkgdir" + make GHC="ghc -dynamic" BUILDER=true DESTDIR="$pkgdir" -j1 install-misc + + rm "$pkgdir"/usr/share/doc/git-annex/COPYRIGHT + rmdir "$pkgdir"/usr/share/doc/git-annex "$pkgdir"/usr/share/doc +} Copied: git-annex/repos/community-staging-x86_64/ghc-8.4.patch (from rev 358849, git-annex/trunk/ghc-8.4.patch) === --- community-staging-x86_64/ghc-8.4.patch (rev 0) +++ community-staging-x86_64/ghc-8.4.patch 2018-07-14 03:07:23 UTC (rev 358850) @@ -0,0 +1,121 @@ +diff --git a/Command/Info.hs b/Command/Info.hs +index c9a314056a..3ae82f5532 100644 +--- a/Command/Info.hs b/Command/Info.hs +@@ -56,15 +56,17 @@ data KeyData = KeyData + , backendsKeys :: M.Map KeyVariety Integer + } + +-instance Monoid KeyData where +- mempty = KeyData 0 0 0 M.empty +- mappend a b = KeyData ++instance Semigroup KeyData where ++ a <> b = KeyData + { countKeys = countKeys a + countKeys b + , sizeKeys = sizeKeys a + sizeKeys b + , unknownSizeKeys = unknownSizeKeys a + unknownSizeKeys b + , backendsKeys = backendsKeys a <> backendsKeys b + } + ++instance Monoid KeyData where ++ mempty = KeyData 0 0 0 M.empty ++ + data NumCopiesStats = NumCopiesStats + { numCopiesVarianceMap :: M.Map Variance Integer +
[arch-commits] Commit in python-boto/trunk (PKGBUILD)
Date: Saturday, July 14, 2018 @ 03:07:05 Author: felixonmars Revision: 358849 upgpkg: python-boto 2.49.0-1 Modified: python-boto/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-07-14 03:07:03 UTC (rev 358848) +++ PKGBUILD2018-07-14 03:07:05 UTC (rev 358849) @@ -5,8 +5,8 @@ pkgbase=python-boto pkgname=(python-boto python2-boto) -pkgver=2.48.0 -pkgrel=2 +pkgver=2.49.0 +pkgrel=1 pkgdesc='A Python interface to Amazon Web Services (AWS)' arch=('any') url='https://github.com/boto/boto' @@ -15,7 +15,7 @@ checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock' 'python-requests' 'python2-requests' 'python-httpretty' 'python2-httpretty') source=("$pkgbase-$pkgver.tar.gz::https://github.com/boto/boto/archive/$pkgver.tar.gz";) -sha512sums=('aabef7622927884549fbc1cb3b39d307aadcab0ac5bff65778f87c881a8df76ee819aab20c34d5aceb62fe1365629f9186b8e10f3216b62d9a339a93e9b5f12a') +sha512sums=('43c2679f33ecec9b78d9969329d361cff4fd569b431e8451d849a42882ba4913598bfc7e11561fc54799e6e36e6e75a0299da955232435fb3e56745b2fcb57bc') prepare() { cp -a boto-$pkgver{,-py2}
[arch-commits] Commit in python-boto/repos/community-staging-any (PKGBUILD PKGBUILD)
Date: Saturday, July 14, 2018 @ 03:07:32 Author: felixonmars Revision: 358851 archrelease: copy trunk to community-staging-any Added: python-boto/repos/community-staging-any/PKGBUILD (from rev 358850, python-boto/trunk/PKGBUILD) Deleted: python-boto/repos/community-staging-any/PKGBUILD --+ PKGBUILD | 116 ++--- 1 file changed, 58 insertions(+), 58 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2018-07-14 03:07:23 UTC (rev 358850) +++ PKGBUILD2018-07-14 03:07:32 UTC (rev 358851) @@ -1,58 +0,0 @@ -# $Id$ -# Maintainer: Felix Yan -# Contributor: Kaiting Chen -# Contributor: Aaron Schaefer - -pkgbase=python-boto -pkgname=(python-boto python2-boto) -pkgver=2.48.0 -pkgrel=2 -pkgdesc='A Python interface to Amazon Web Services (AWS)' -arch=('any') -url='https://github.com/boto/boto' -license=('MIT') -makedepends=('python-setuptools' 'python2-setuptools') -checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock' 'python-requests' - 'python2-requests' 'python-httpretty' 'python2-httpretty') -source=("$pkgbase-$pkgver.tar.gz::https://github.com/boto/boto/archive/$pkgver.tar.gz";) -sha512sums=('aabef7622927884549fbc1cb3b39d307aadcab0ac5bff65778f87c881a8df76ee819aab20c34d5aceb62fe1365629f9186b8e10f3216b62d9a339a93e9b5f12a') - -prepare() { - cp -a boto-$pkgver{,-py2} - - cd boto-$pkgver-py2 - # python2 fix - find . -name '*.py' -type f -print0 | xargs -0 \ -sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' -} - -check() { - cd "$srcdir"/boto-$pkgver - python tests/test.py default - - cd "$srcdir"/boto-$pkgver-py2 - python2 tests/test.py default -} - -package_python-boto() { - depends=('python') - - cd boto-$pkgver - - python setup.py install -O1 --root="$pkgdir" - install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE - - # Remove (somewhat deprecated) tools that conflicts with the python 2 version. - rm -r "$pkgdir"/usr/bin -} - -package_python2-boto() { - depends=('python2') - conflicts=('python-boto<2.32.1-1') - replaces=('python-boto<2.32.1-1') - - cd boto-$pkgver-py2 - - python2 setup.py install -O1 --root="$pkgdir" - install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE -} Copied: python-boto/repos/community-staging-any/PKGBUILD (from rev 358850, python-boto/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2018-07-14 03:07:32 UTC (rev 358851) @@ -0,0 +1,58 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Kaiting Chen +# Contributor: Aaron Schaefer + +pkgbase=python-boto +pkgname=(python-boto python2-boto) +pkgver=2.49.0 +pkgrel=1 +pkgdesc='A Python interface to Amazon Web Services (AWS)' +arch=('any') +url='https://github.com/boto/boto' +license=('MIT') +makedepends=('python-setuptools' 'python2-setuptools') +checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock' 'python-requests' + 'python2-requests' 'python-httpretty' 'python2-httpretty') +source=("$pkgbase-$pkgver.tar.gz::https://github.com/boto/boto/archive/$pkgver.tar.gz";) +sha512sums=('43c2679f33ecec9b78d9969329d361cff4fd569b431e8451d849a42882ba4913598bfc7e11561fc54799e6e36e6e75a0299da955232435fb3e56745b2fcb57bc') + +prepare() { + cp -a boto-$pkgver{,-py2} + + cd boto-$pkgver-py2 + # python2 fix + find . -name '*.py' -type f -print0 | xargs -0 \ +sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' +} + +check() { + cd "$srcdir"/boto-$pkgver + python tests/test.py default + + cd "$srcdir"/boto-$pkgver-py2 + python2 tests/test.py default +} + +package_python-boto() { + depends=('python') + + cd boto-$pkgver + + python setup.py install -O1 --root="$pkgdir" + install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE + + # Remove (somewhat deprecated) tools that conflicts with the python 2 version. + rm -r "$pkgdir"/usr/bin +} + +package_python2-boto() { + depends=('python2') + conflicts=('python-boto<2.32.1-1') + replaces=('python-boto<2.32.1-1') + + cd boto-$pkgver-py2 + + python2 setup.py install -O1 --root="$pkgdir" + install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE +}
[arch-commits] Commit in git-annex/trunk (PKGBUILD)
Date: Saturday, July 14, 2018 @ 03:07:03 Author: felixonmars Revision: 358848 upgpkg: git-annex 6.20180626-36 rebuild with extra 1.6.9 Modified: git-annex/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2018-07-14 03:01:29 UTC (rev 358847) +++ PKGBUILD2018-07-14 03:07:03 UTC (rev 358848) @@ -4,7 +4,7 @@ pkgname=git-annex pkgver=6.20180626 -pkgrel=35 +pkgrel=36 pkgdesc="Manage files with git, without checking their contents into git" url="http://git-annex.branchable.com/"; license=("AGPL3")
[arch-commits] Commit in haskell-fdo-notify/repos (2 files)
Date: Saturday, July 14, 2018 @ 03:01:29 Author: felixonmars Revision: 358847 archrelease: copy trunk to community-staging-x86_64 Added: haskell-fdo-notify/repos/community-staging-x86_64/ haskell-fdo-notify/repos/community-staging-x86_64/PKGBUILD (from rev 358846, haskell-fdo-notify/trunk/PKGBUILD) --+ PKGBUILD | 39 +++ 1 file changed, 39 insertions(+) Copied: haskell-fdo-notify/repos/community-staging-x86_64/PKGBUILD (from rev 358846, haskell-fdo-notify/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2018-07-14 03:01:29 UTC (rev 358847) @@ -0,0 +1,39 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=fdo-notify +pkgname=haskell-fdo-notify +pkgver=0.3.1 +pkgrel=85 +pkgdesc="Desktop Notifications client" +url="http://bitbucket.org/taejo/fdo-notify/"; +license=("custom:BSD3") +arch=('x86_64') +depends=('ghc-libs' "haskell-dbus") +makedepends=('ghc') +source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +sha512sums=('d9193899d5eebd7c36e9464571827bd5b560fcc156e89822877b3b67a1f376c7abea9958f7e0aa6f79da06ad5f35a8738ad30a40d447b64ad557ed341054e6b6') + +build() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \ +--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid +runhaskell Setup build +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh +sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh +} + +package() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +install -D -m744 register.sh "${pkgdir}/usr/share/haskell/register/${pkgname}.sh" +install -D -m744 unregister.sh "${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh" +runhaskell Setup copy --destdir="${pkgdir}" +install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE" +}
[arch-commits] Commit in haskell-fdo-notify/trunk (PKGBUILD)
Date: Saturday, July 14, 2018 @ 03:01:08 Author: felixonmars Revision: 358846 upgpkg: haskell-fdo-notify 0.3.1-85 rebuild with extra 1.6.9 Modified: haskell-fdo-notify/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2018-07-14 03:00:18 UTC (rev 358845) +++ PKGBUILD2018-07-14 03:01:08 UTC (rev 358846) @@ -5,7 +5,7 @@ _hkgname=fdo-notify pkgname=haskell-fdo-notify pkgver=0.3.1 -pkgrel=84 +pkgrel=85 pkgdesc="Desktop Notifications client" url="http://bitbucket.org/taejo/fdo-notify/"; license=("custom:BSD3")
[arch-commits] Commit in haskell-dbus0.10/repos (2 files)
Date: Saturday, July 14, 2018 @ 03:00:18 Author: felixonmars Revision: 358845 archrelease: copy trunk to community-staging-x86_64 Added: haskell-dbus0.10/repos/community-staging-x86_64/ haskell-dbus0.10/repos/community-staging-x86_64/PKGBUILD (from rev 358844, haskell-dbus0.10/trunk/PKGBUILD) --+ PKGBUILD | 45 + 1 file changed, 45 insertions(+) Copied: haskell-dbus0.10/repos/community-staging-x86_64/PKGBUILD (from rev 358844, haskell-dbus0.10/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2018-07-14 03:00:18 UTC (rev 358845) @@ -0,0 +1,45 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=dbus +pkgname=haskell-dbus0.10 +pkgver=0.10.15 +pkgrel=28 +pkgdesc="A client library for the D-Bus IPC system (legacy 0.10.x version)" +url="https://john-millikin.com/software/haskell-dbus/"; +license=("GPL3") +arch=('x86_64') +depends=('ghc-libs' 'haskell-cereal' 'haskell-libxml-sax' 'haskell-network' + 'haskell-random' 'haskell-vector' 'haskell-xml-types') +makedepends=('ghc' 'haskell-extra' 'haskell-quickcheck' 'haskell-resourcet' 'haskell-tasty' + 'haskell-tasty-hunit' 'haskell-tasty-quickcheck') +source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +sha512sums=('5c81c1f8599b80cdb16bee63b97cd1aa5d6b0698095b2c366ad4e4f03b44f9166bd5d770f8a47a0c7dd746a9a734379dc20a77f7846a862bd1c213eb12559b0b') + +build() { +cd $_hkgname-$pkgver + +runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \ +--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid +runhaskell Setup build +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh +sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh +} + +check() { +cd $_hkgname-$pkgver +runhaskell Setup test +} + +package() { +cd $_hkgname-$pkgver + +install -D -m744 register.sh "${pkgdir}/usr/share/haskell/register/${pkgname}.sh" +install -D -m744 unregister.sh "${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh" +runhaskell Setup copy --destdir="${pkgdir}" +rm -f "${pkgdir}/usr/share/doc/${pkgname}/license.txt" +}
[arch-commits] Commit in haskell-dbus0.10/trunk (PKGBUILD)
Date: Saturday, July 14, 2018 @ 02:59:57 Author: felixonmars Revision: 358844 upgpkg: haskell-dbus0.10 0.10.15-28 rebuild with extra 1.6.9 Modified: haskell-dbus0.10/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2018-07-14 02:59:18 UTC (rev 358843) +++ PKGBUILD2018-07-14 02:59:57 UTC (rev 358844) @@ -5,7 +5,7 @@ _hkgname=dbus pkgname=haskell-dbus0.10 pkgver=0.10.15 -pkgrel=27 +pkgrel=28 pkgdesc="A client library for the D-Bus IPC system (legacy 0.10.x version)" url="https://john-millikin.com/software/haskell-dbus/"; license=("GPL3")
[arch-commits] Commit in python-sympy/repos (2 files)
Date: Saturday, July 14, 2018 @ 02:59:18 Author: felixonmars Revision: 358843 archrelease: copy trunk to community-staging-any Added: python-sympy/repos/community-staging-any/ python-sympy/repos/community-staging-any/PKGBUILD (from rev 358842, python-sympy/trunk/PKGBUILD) --+ PKGBUILD | 65 + 1 file changed, 65 insertions(+) Copied: python-sympy/repos/community-staging-any/PKGBUILD (from rev 358842, python-sympy/trunk/PKGBUILD) === --- community-staging-any/PKGBUILD (rev 0) +++ community-staging-any/PKGBUILD 2018-07-14 02:59:18 UTC (rev 358843) @@ -0,0 +1,65 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Stéphane Gaudreault +# Contributor: Thomas Dziedzic < gostrc at gmail > +# Contributor: Angel 'angvp' Velasquez +# Contributor: Peter Garceau + +pkgbase=python-sympy +pkgname=('python-sympy' 'python2-sympy') +pkgver=1.2 +pkgrel=1 +arch=('any') +pkgdesc='Symbolic manipulation package (Computer Algebra System), written in pure Python' +url='http://sympy.org/en/index.html' +license=('BSD') +makedepends=('python2-mpmath' 'python-mpmath' 'python-setuptools' 'python2-setuptools') +source=("$pkgbase-$pkgver.tar.gz::https://github.com/sympy/sympy/archive/sympy-$pkgver.tar.gz";) +sha512sums=('e9b1089d6bc897436b1888d1a21324b5086c19cbf7d857514688e25b1a3c7fcf7c36a2ae9a7121d88acf73b6cb66e97c5591fe3e575089b41138a21086286328') + +prepare() { + cp -a sympy-sympy-$pkgver{,-py2} +} + +build() { + cd "$srcdir"/sympy-sympy-$pkgver + python setup.py build + + cd "$srcdir"/sympy-sympy-$pkgver-py2 + python2 setup.py build +} + +check() { + cd "$srcdir"/sympy-sympy-$pkgver + python setup.py test || warning "Tests failed" + + cd "$srcdir"/sympy-sympy-$pkgver-py2 + python2 setup.py test || warning "Tests failed" +} + +package_python-sympy() { + depends=('python-mpmath') + optdepends=('ipython: user friendly interface for isympy') + + cd sympy-sympy-$pkgver + + python setup.py install --root "$pkgdir" --optimize=1 + + install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE +} + +package_python2-sympy() { + depends=('python2-mpmath') + optdepends=('python2-pyglet: plotting' + 'ipython2: user friendly interface for isympy') + + cd sympy-sympy-$pkgver-py2 + + python2 setup.py install --root "$pkgdir" --optimize=1 + + # rename files that exists in both 'python-sympy' and 'python2-sympy' + mv "$pkgdir"/usr/bin/isympy{,2} + mv "$pkgdir"/usr/share/man/man1/isympy{,2}.1 + + install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE +}
[arch-commits] Commit in python-sympy/trunk (PKGBUILD)
Date: Saturday, July 14, 2018 @ 02:58:47 Author: felixonmars Revision: 358842 upgpkg: python-sympy 1.2-1 Modified: python-sympy/trunk/PKGBUILD --+ PKGBUILD |8 1 file changed, 4 insertions(+), 4 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-07-13 23:42:50 UTC (rev 358841) +++ PKGBUILD2018-07-14 02:58:47 UTC (rev 358842) @@ -7,7 +7,7 @@ pkgbase=python-sympy pkgname=('python-sympy' 'python2-sympy') -pkgver=1.1.1 +pkgver=1.2 pkgrel=1 arch=('any') pkgdesc='Symbolic manipulation package (Computer Algebra System), written in pure Python' @@ -15,7 +15,7 @@ license=('BSD') makedepends=('python2-mpmath' 'python-mpmath' 'python-setuptools' 'python2-setuptools') source=("$pkgbase-$pkgver.tar.gz::https://github.com/sympy/sympy/archive/sympy-$pkgver.tar.gz";) -sha512sums=('c571a5c6fd0abb59e60baec0f9c7b909ec2d133db52353c58288f7477ac2bc905219b308122761e41509d4bbdfc145375bdc6f76f608eb557e44163bb37b111a') +sha512sums=('e9b1089d6bc897436b1888d1a21324b5086c19cbf7d857514688e25b1a3c7fcf7c36a2ae9a7121d88acf73b6cb66e97c5591fe3e575089b41138a21086286328') prepare() { cp -a sympy-sympy-$pkgver{,-py2} @@ -31,10 +31,10 @@ check() { cd "$srcdir"/sympy-sympy-$pkgver - python setup.py test + python setup.py test || warning "Tests failed" cd "$srcdir"/sympy-sympy-$pkgver-py2 - python2 setup.py test + python2 setup.py test || warning "Tests failed" } package_python-sympy() {
[arch-commits] Commit in lostfiles/trunk (PKGBUILD)
Date: Friday, July 13, 2018 @ 23:42:50 Author: foxboron Revision: 358841 upgpkg: lostfiles 4.03-1 Updated to 4.03 Modified: lostfiles/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-07-13 21:31:35 UTC (rev 358840) +++ PKGBUILD2018-07-13 23:42:50 UTC (rev 358841) @@ -2,14 +2,14 @@ # Contributor: graysky pkgname=lostfiles -pkgver=4.02 -pkgrel=2 +pkgver=4.03 +pkgrel=1 pkgdesc='Find orphaned files not owned by any Arch packages' arch=('any') license=('GPL2') url="https://github.com/graysky2/lostfiles"; source=("$pkgname-$pkgver.tar.xz::https://github.com/graysky2/$pkgname/archive/v$pkgver.tar.gz";) -sha256sums=('f83670cb680935050edcd72f42bf8bc4c9be607ff025ae8960fef997329cedfe') +sha256sums=('577a68a712f46bb75f31880519dcbb84b7be24598e8b2e0eb9037ff7dde3133b') build() { cd "$pkgname-$pkgver"
[arch-commits] Commit in okteta/repos/extra-x86_64 (PKGBUILD PKGBUILD)
Date: Friday, July 13, 2018 @ 22:35:05 Author: arojas Revision: 328565 archrelease: copy trunk to extra-x86_64 Added: okteta/repos/extra-x86_64/PKGBUILD (from rev 328564, okteta/trunk/PKGBUILD) Deleted: okteta/repos/extra-x86_64/PKGBUILD --+ PKGBUILD | 74 ++--- 1 file changed, 37 insertions(+), 37 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2018-07-13 22:34:40 UTC (rev 328564) +++ PKGBUILD2018-07-13 22:35:05 UTC (rev 328565) @@ -1,37 +0,0 @@ -# $Id$ -# Maintainer: Felix Yan -# Maintainer: Antonio Rojas -# Contributor: Andrea Scarpino - -pkgname=okteta -pkgver=0.25.0 -pkgrel=1 -epoch=1 -pkgdesc='KDE hex editor for viewing and editing the raw data of files' -url='https://kde.org/applications/utilities/okteta/' -arch=(x86_64) -license=(GPL LGPL FDL) -depends=(kcmutils kparts knewstuff qca-qt5 hicolor-icon-theme) -makedepends=(extra-cmake-modules kdoctools qt5-tools) -source=("https://download.kde.org/stable/$pkgname/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig}) -sha256sums=('5e0399195fc2177fc39caf5c24585c9521f38b92c0780f92c329ee737e5e644d' -'SKIP') -validpgpkeys=(E191FD5BE6F46870F09E82B2024E7FB43D015474) # Friedrich W. H. Kossebau - -prepare() { - mkdir -p build -} - -build() { - cd build - cmake ../$pkgname-$pkgver \ --DBUILD_TESTING=OFF \ --DCMAKE_INSTALL_PREFIX=/usr \ --DCMAKE_INSTALL_LIBDIR=lib - make -} - -package() { - cd build - make DESTDIR="$pkgdir" install -} Copied: okteta/repos/extra-x86_64/PKGBUILD (from rev 328564, okteta/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2018-07-13 22:35:05 UTC (rev 328565) @@ -0,0 +1,37 @@ +# $Id$ +# Maintainer: Felix Yan +# Maintainer: Antonio Rojas +# Contributor: Andrea Scarpino + +pkgname=okteta +pkgver=0.25.1 +pkgrel=1 +epoch=1 +pkgdesc='KDE hex editor for viewing and editing the raw data of files' +url='https://kde.org/applications/utilities/okteta/' +arch=(x86_64) +license=(GPL LGPL FDL) +depends=(kcmutils kparts knewstuff qca-qt5 hicolor-icon-theme) +makedepends=(extra-cmake-modules kdoctools qt5-tools) +source=("https://download.kde.org/stable/$pkgname/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig}) +sha256sums=('20f69089f6c1b0fe72a600caa4b255a7cebd7d4fae191a0d3cade57b28f7149a' +'SKIP') +validpgpkeys=(E191FD5BE6F46870F09E82B2024E7FB43D015474) # Friedrich W. H. Kossebau + +prepare() { + mkdir -p build +} + +build() { + cd build + cmake ../$pkgname-$pkgver \ +-DCMAKE_INSTALL_PREFIX=/usr \ +-DCMAKE_INSTALL_LIBDIR=lib \ +-DBUILD_TESTING=OFF + make +} + +package() { + cd build + make DESTDIR="$pkgdir" install +}
[arch-commits] Commit in okteta/trunk (PKGBUILD)
Date: Friday, July 13, 2018 @ 22:34:40 Author: arojas Revision: 328564 Update to 0.25.1 Modified: okteta/trunk/PKGBUILD --+ PKGBUILD |8 1 file changed, 4 insertions(+), 4 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-07-13 21:48:34 UTC (rev 328563) +++ PKGBUILD2018-07-13 22:34:40 UTC (rev 328564) @@ -4,7 +4,7 @@ # Contributor: Andrea Scarpino pkgname=okteta -pkgver=0.25.0 +pkgver=0.25.1 pkgrel=1 epoch=1 pkgdesc='KDE hex editor for viewing and editing the raw data of files' @@ -14,7 +14,7 @@ depends=(kcmutils kparts knewstuff qca-qt5 hicolor-icon-theme) makedepends=(extra-cmake-modules kdoctools qt5-tools) source=("https://download.kde.org/stable/$pkgname/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig}) -sha256sums=('5e0399195fc2177fc39caf5c24585c9521f38b92c0780f92c329ee737e5e644d' +sha256sums=('20f69089f6c1b0fe72a600caa4b255a7cebd7d4fae191a0d3cade57b28f7149a' 'SKIP') validpgpkeys=(E191FD5BE6F46870F09E82B2024E7FB43D015474) # Friedrich W. H. Kossebau @@ -25,9 +25,9 @@ build() { cd build cmake ../$pkgname-$pkgver \ --DBUILD_TESTING=OFF \ -DCMAKE_INSTALL_PREFIX=/usr \ --DCMAKE_INSTALL_LIBDIR=lib +-DCMAKE_INSTALL_LIBDIR=lib \ +-DBUILD_TESTING=OFF make }
[arch-commits] Commit in xfce4-mount-plugin/trunk (PKGBUILD)
Date: Friday, July 13, 2018 @ 21:48:29 Author: foutrelis Revision: 328562 upgpkg: xfce4-mount-plugin 1.1.3-1 New upstream release. Modified: xfce4-mount-plugin/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-07-13 20:38:17 UTC (rev 328561) +++ PKGBUILD2018-07-13 21:48:29 UTC (rev 328562) @@ -4,7 +4,7 @@ # Contributor: Tobias Kieslich pkgname=xfce4-mount-plugin -pkgver=1.1.2 +pkgver=1.1.3 pkgrel=1 pkgdesc="Mount/umount utility for the Xfce4 panel" arch=('x86_64') @@ -14,7 +14,7 @@ depends=('xfce4-panel') makedepends=('intltool') source=(https://archive.xfce.org/src/panel-plugins/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2) -sha256sums=('54578447abaf9da630a750d64acdc37d4fd20dda6460208d6d1ffaa9e43ee1a6') +sha256sums=('aae5bd6b984bc78daf6b5fb9d15817a27253674a4264ad60f62ccb1aa194911e') build() { cd "$srcdir/$pkgname-$pkgver"
[arch-commits] Commit in xfce4-mount-plugin/repos/extra-x86_64 (PKGBUILD PKGBUILD)
Date: Friday, July 13, 2018 @ 21:48:34 Author: foutrelis Revision: 328563 archrelease: copy trunk to extra-x86_64 Added: xfce4-mount-plugin/repos/extra-x86_64/PKGBUILD (from rev 328562, xfce4-mount-plugin/trunk/PKGBUILD) Deleted: xfce4-mount-plugin/repos/extra-x86_64/PKGBUILD --+ PKGBUILD | 74 ++--- 1 file changed, 37 insertions(+), 37 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2018-07-13 21:48:29 UTC (rev 328562) +++ PKGBUILD2018-07-13 21:48:34 UTC (rev 328563) @@ -1,37 +0,0 @@ -# $Id$ -# Maintainer: Evangelos Foutras -# Contributor: AndyRTR -# Contributor: Tobias Kieslich - -pkgname=xfce4-mount-plugin -pkgver=1.1.2 -pkgrel=1 -pkgdesc="Mount/umount utility for the Xfce4 panel" -arch=('i686' 'x86_64') -url="http://goodies.xfce.org/projects/panel-plugins/xfce4-mount-plugin"; -license=('GPL') -groups=('xfce4-goodies') -depends=('xfce4-panel') -makedepends=('intltool') -source=(http://archive.xfce.org/src/panel-plugins/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2) -sha256sums=('54578447abaf9da630a750d64acdc37d4fd20dda6460208d6d1ffaa9e43ee1a6') - -build() { - cd "$srcdir/$pkgname-$pkgver" - - ./configure \ ---prefix=/usr \ ---sysconfdir=/etc \ ---libexecdir=/usr/lib \ ---localstatedir=/var \ ---disable-static \ ---disable-debug - make -} - -package() { - cd "$srcdir/$pkgname-$pkgver" - make DESTDIR="$pkgdir" install -} - -# vim:set ts=2 sw=2 et: Copied: xfce4-mount-plugin/repos/extra-x86_64/PKGBUILD (from rev 328562, xfce4-mount-plugin/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2018-07-13 21:48:34 UTC (rev 328563) @@ -0,0 +1,37 @@ +# $Id$ +# Maintainer: Evangelos Foutras +# Contributor: AndyRTR +# Contributor: Tobias Kieslich + +pkgname=xfce4-mount-plugin +pkgver=1.1.3 +pkgrel=1 +pkgdesc="Mount/umount utility for the Xfce4 panel" +arch=('x86_64') +url="http://goodies.xfce.org/projects/panel-plugins/xfce4-mount-plugin"; +license=('GPL') +groups=('xfce4-goodies') +depends=('xfce4-panel') +makedepends=('intltool') +source=(https://archive.xfce.org/src/panel-plugins/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2) +sha256sums=('aae5bd6b984bc78daf6b5fb9d15817a27253674a4264ad60f62ccb1aa194911e') + +build() { + cd "$srcdir/$pkgname-$pkgver" + + ./configure \ +--prefix=/usr \ +--sysconfdir=/etc \ +--libexecdir=/usr/lib \ +--localstatedir=/var \ +--disable-static \ +--disable-debug + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="$pkgdir" install +} + +# vim:set ts=2 sw=2 et:
[arch-commits] Commit in shiboken/repos (3 files)
Date: Friday, July 13, 2018 @ 21:31:35 Author: eschwartz Revision: 358840 archrelease: copy trunk to community-staging-x86_64 Added: shiboken/repos/community-staging-x86_64/ shiboken/repos/community-staging-x86_64/PKGBUILD (from rev 358839, shiboken/trunk/PKGBUILD) shiboken/repos/community-staging-x86_64/support-new-python.diff (from rev 358839, shiboken/trunk/support-new-python.diff) -+ PKGBUILD| 95 ++ support-new-python.diff | 11 + 2 files changed, 106 insertions(+) Copied: shiboken/repos/community-staging-x86_64/PKGBUILD (from rev 358839, shiboken/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2018-07-13 21:31:35 UTC (rev 358840) @@ -0,0 +1,95 @@ +# Maintainer: Florian Pritz +# Contributor: Jelle van der Waa +# Contributor: Hugo Osvaldo Barrera +# Contributor: Matthias Maennich + +pkgbase=shiboken +pkgname=(python{2,}-shiboken shiboken) +pkgver=1.2.4 +pkgrel=4 +arch=('x86_64') +license=('LGPL') +url="http://www.pyside.org"; +makedepends=('cmake' 'python2' 'python' 'qt4' 'libxslt') +source=("$pkgbase-$pkgver.tar.gz::https://github.com/PySide/Shiboken/archive/$pkgver.tar.gz"; +support-new-python.diff) +md5sums=('c284197d06ad25d78009ff55f18dd512' + '19d5032866f4e232f442fe19f12b94de') + +prepare(){ +cd "$srcdir/Shiboken-$pkgver" +patch -p1 -i ../support-new-python.diff +} + +build(){ +cd "$srcdir/Shiboken-$pkgver" +# build python2 +mkdir -p build-py2 && cd build-py2 +cmake ../ -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_BUILD_TYPE=Release \ + -DBUILD_TESTS=OFF\ + -DPYTHON_EXECUTABLE=/usr/bin/python2 \ + -DPYTHON_LIBRARY=/usr/lib/libpython2.7.so \ + -DPYTHON_INCLUDE_DIR=/usr/include/python2.7 \ + -DQT_QMAKE_EXECUTABLE=qmake-qt4 +make + +# build python3 +cd "$srcdir/Shiboken-$pkgver" +mkdir -p build-py3 && cd build-py3 +cmake ../ -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_BUILD_TYPE=Release \ + -DBUILD_TESTS=OFF\ + -DUSE_PYTHON3=yes\ + -DQT_QMAKE_EXECUTABLE=qmake-qt4 +make +} + +package_shiboken() { + pkgdesc="CPython bindings generator for C++ libraries" + depends=(python qt4 libxslt) + optdepends=("python2-shiboken: for compilation against python2" + "python-shiboken: for compilation against python") + + # Header files/ /usr/bin/shiboke, pkgconfig, man page + cd "$srcdir/Shiboken-$pkgver/build-py3" + make DESTDIR="$pkgdir" install + + cd "$srcdir/Shiboken-$pkgver/build-py2" + cd data + install -Dm 644 ShibokenConfig-python2.7.cmake "$pkgdir/usr/lib/cmake/Shiboken-$pkgver/" + install -Dm 644 shiboken.pc "$pkgdir/usr/lib/pkgconfig/shiboken-py2.pc" + + rm -rf "$pkgdir/usr/lib/python"* + rm -rf "$pkgdir/usr/lib/libshiboken"* + rm -rf "$pkgdir/usr/lib/pkgconfig/" + rm "$pkgdir"/usr/lib/cmake/Shiboken-$pkgver/ShibokenConfig*python*.cmake +} +package_python2-shiboken() { + pkgdesc="Support library for Python2 bindings" + depends=("qt4>=4.8" "libxslt" "python2" "shiboken") + + cd "$srcdir/Shiboken-$pkgver/build-py2" + make DESTDIR="$pkgdir" install + + cd "$srcdir/Shiboken-$pkgver/build-py2" + cd data + install -Dm 644 ShibokenConfig-python2.7.cmake "$pkgdir/usr/lib/cmake/Shiboken-$pkgver/" + mv "$pkgdir"/usr/lib/pkgconfig/shiboken{,-py2}.pc + + rm -rf "$pkgdir"/usr/{include,bin,share} + rm "$pkgdir/usr/lib/cmake/Shiboken-$pkgver/ShibokenConfigVersion.cmake" + rm "$pkgdir/usr/lib/cmake/Shiboken-$pkgver/ShibokenConfig.cmake" +} + +package_python-shiboken() { + pkgdesc="Support library for Python bindings" + depends=("qt4>=4.8" "libxslt" "python" "shiboken") + + cd "$srcdir/Shiboken-$pkgver/build-py3" + make DESTDIR="$pkgdir" install + + rm -rf "$pkgdir"/usr/{include,bin,share} + rm "$pkgdir/usr/lib/cmake/Shiboken-$pkgver/ShibokenConfigVersion.cmake" + rm "$pkgdir/usr/lib/cmake/Shiboken-$pkgver/ShibokenConfig.cmake" +} Copied: shiboken/repos/community-staging-x86_64/support-new-python.diff (from rev 358839, shiboken/trunk/support-new-python.diff) === --- community-staging-x86_64/support-new-python.diff (rev 0) +++ community-staging-x86_64/support-new-python.diff2018-07-13 21:31:35 UTC (rev 358840) @@ -0,0 +1,11 @@ +--- a/cmake/Modules/FindPython3Libs.cmake 2014-04-22 23:42:48.0 +0800 b/cmake/Modules/FindPython3Libs.cmake 2015-09-21 15:17:27.014598399 +0800 +@@ -27,7 +27,7 @@ + # Search for the python framework on Apple. + # CMAKE_FIND_FRAMEWORKS(Python) + +-FOREACH(_CURRENT_VERSION 3.4 3.3 3.2 3.1 3.0) ++FOREACH(_CURRENT_VERSION 3.7 3.6 3.5 3.4 3.3 3.2 3.1
[arch-commits] Commit in shiboken/trunk (3 files)
Date: Friday, July 13, 2018 @ 21:31:14 Author: eschwartz Revision: 358839 upgpkg: shiboken 1.2.4-4 python 3.7 rebuild Added: shiboken/trunk/support-new-python.diff Modified: shiboken/trunk/PKGBUILD Deleted: shiboken/trunk/python-3.6.patch -+ PKGBUILD|9 - python-3.6.patch| 11 --- support-new-python.diff | 11 +++ 3 files changed, 15 insertions(+), 16 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-07-13 21:21:00 UTC (rev 358838) +++ PKGBUILD2018-07-13 21:31:14 UTC (rev 358839) @@ -6,19 +6,19 @@ pkgbase=shiboken pkgname=(python{2,}-shiboken shiboken) pkgver=1.2.4 -pkgrel=3 +pkgrel=4 arch=('x86_64') license=('LGPL') url="http://www.pyside.org"; makedepends=('cmake' 'python2' 'python' 'qt4' 'libxslt') source=("$pkgbase-$pkgver.tar.gz::https://github.com/PySide/Shiboken/archive/$pkgver.tar.gz"; -python-3.6.patch) +support-new-python.diff) md5sums=('c284197d06ad25d78009ff55f18dd512' - 'bf4b227f37c2bf190554a16bf3346963') + '19d5032866f4e232f442fe19f12b94de') prepare(){ cd "$srcdir/Shiboken-$pkgver" -patch -p1 -i ../python-3.6.patch +patch -p1 -i ../support-new-python.diff } build(){ @@ -93,4 +93,3 @@ rm "$pkgdir/usr/lib/cmake/Shiboken-$pkgver/ShibokenConfigVersion.cmake" rm "$pkgdir/usr/lib/cmake/Shiboken-$pkgver/ShibokenConfig.cmake" } - Deleted: python-3.6.patch === --- python-3.6.patch2018-07-13 21:21:00 UTC (rev 358838) +++ python-3.6.patch2018-07-13 21:31:14 UTC (rev 358839) @@ -1,11 +0,0 @@ a/cmake/Modules/FindPython3Libs.cmake 2014-04-22 23:42:48.0 +0800 -+++ b/cmake/Modules/FindPython3Libs.cmake 2015-09-21 15:17:27.014598399 +0800 -@@ -27,7 +27,7 @@ - # Search for the python framework on Apple. - # CMAKE_FIND_FRAMEWORKS(Python) - --FOREACH(_CURRENT_VERSION 3.4 3.3 3.2 3.1 3.0) -+FOREACH(_CURRENT_VERSION 3.6 3.5 3.4 3.3 3.2 3.1 3.0) - IF(_CURRENT_VERSION GREATER 3.1) - SET(_32FLAGS "m" "u" "mu" "dm" "du" "dmu" "") - ELSE() Added: support-new-python.diff === --- support-new-python.diff (rev 0) +++ support-new-python.diff 2018-07-13 21:31:14 UTC (rev 358839) @@ -0,0 +1,11 @@ +--- a/cmake/Modules/FindPython3Libs.cmake 2014-04-22 23:42:48.0 +0800 b/cmake/Modules/FindPython3Libs.cmake 2015-09-21 15:17:27.014598399 +0800 +@@ -27,7 +27,7 @@ + # Search for the python framework on Apple. + # CMAKE_FIND_FRAMEWORKS(Python) + +-FOREACH(_CURRENT_VERSION 3.4 3.3 3.2 3.1 3.0) ++FOREACH(_CURRENT_VERSION 3.7 3.6 3.5 3.4 3.3 3.2 3.1 3.0) + IF(_CURRENT_VERSION GREATER 3.1) + SET(_32FLAGS "m" "u" "mu" "dm" "du" "dmu" "") + ELSE()
[arch-commits] Commit in firefox-developer-edition-i18n/repos/community-any (2 files)
Date: Friday, July 13, 2018 @ 21:21:00 Author: andrewsc Revision: 358838 archrelease: copy trunk to community-any Added: firefox-developer-edition-i18n/repos/community-any/PKGBUILD (from rev 358837, firefox-developer-edition-i18n/trunk/PKGBUILD) Deleted: firefox-developer-edition-i18n/repos/community-any/PKGBUILD --+ PKGBUILD | 466 ++--- 1 file changed, 233 insertions(+), 233 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2018-07-13 21:20:31 UTC (rev 358837) +++ PKGBUILD2018-07-13 21:21:00 UTC (rev 358838) @@ -1,233 +0,0 @@ -# $Id$ -# Maintainer: Andrew Crerar - -pkgbase=firefox-developer-edition-i18n -pkgver=62.0b7 -pkgrel=1 -pkgdesc="Language pack for Firefox Developer Edition" -arch=('any') -url="https://www.mozilla.com/"; -license=('MPL' 'GPL') - -_languages=( - 'ach"Acholi"' - 'af "Afrikaans"' - 'an "Aragonese"' - 'ar "Arabic"' - 'as "Assamese"' - 'ast"Asturian"' - 'az "Azerbaijani"' - 'be "Belarusian"' - 'bg "Bulgarian"' - 'bn-BD "Bengali (Bangladesh)"' - 'bn-IN "Bengali (India)"' - 'br "Breton"' - 'bs "Bosnian"' - 'ca "Catalan"' - 'cak"Maya Kaqchikel"' - 'cs "Czech"' - 'cy "Welsh"' - 'da "Danish"' - 'de "German"' - 'dsb"Lower Sorbian"' - 'el "Greek"' - 'en-GB "English (British)"' - 'en-US "English (US)"' - 'en-ZA "English (South African)"' - 'eo "Esperanto"' - 'es-AR "Spanish (Argentina)"' - 'es-CL "Spanish (Chile)"' - 'es-ES "Spanish (Spain)"' - 'es-MX "Spanish (Mexico)"' - 'et "Estonian"' - 'eu "Basque"' - 'fa "Persian"' - 'ff "Fulah"' - 'fi "Finnish"' - 'fr "French"' - 'fy-NL "Frisian"' - 'ga-IE "Irish"' - 'gd "Gaelic (Scotland)"' - 'gl "Galician"' - 'gn "Guarani"' - 'gu-IN "Gujarati (India)"' - 'he "Hebrew"' - 'hi-IN "Hindi (India)"' - 'hr "Croatian"' - 'hsb"Upper Sorbian"' - 'hu "Hungarian"' - 'hy-AM "Armenian"' - 'ia "Interlingua"' - 'id "Indonesian"' - 'is "Icelandic"' - 'it "Italian"' - 'ja "Japanese"' - 'ka "Georgian"' - 'kab"Kabyle"' - 'kk "Kazakh"' - 'km "Khmer"' - 'kn "Kannada"' - 'ko "Korean"' - 'lij"Ligurian"' - 'lt "Lithuanian"' - 'lv "Latvian"' - 'mai"Maithili"' - 'mk "Macedonian"' - 'ml "Malayalam"' - 'mr "Marathi"' - 'ms "Malay"' - 'my "Burmese"' - 'nb-NO "Norwegian (Bokmål)"' - 'ne-NP "Nepali"' - 'nl "Dutch"' - 'nn-NO "Norwegian (Nynorsk)"' - 'or "Oriya"' - 'pa-IN "Punjabi (India)"' - 'pl "Polish"' - 'pt-BR "Portuguese (Brazilian)"' - 'pt-PT "Portuguese (Portugal)"' - 'rm "Romansh"' - 'ro "Romanian"' - 'ru "Russian"' - 'si "Sinhala"' - 'sk "Slovak"' - 'sl "Slovenian"' - 'son"Songhai"' - 'sq "Albanian"' - 'sr "Serbian"' - 'sv-SE "Swedish"' - 'ta "Tamil"' - 'te "Telugu"' - 'th "Thai"' - 'tr "Turkish"' - 'uk "Ukrainian"' - 'ur "Urdu"' - 'uz "Uzbek"' - 'vi "Vietnamese"' - 'xh "Xhosa"' - 'zh-CN "Chinese (Simplified)"' - 'zh-TW "Chinese (Traditional)"' -) - -pkgname=() -source=() -_url=https://archive.mozilla.org/pub/devedition/releases/$pkgver/linux-x86_64/xpi - -for _lang in "${_languages[@]}"; do - _locale=${_lang%% *} - _pkgname=firefox-developer-edition-i18n-${_locale,,} - - pkgname+=($_pkgname) - source+=("firefox-developer-edition-i18n-$pkgver-$_locale.xpi::$_url/$_locale.xpi") - eval "package_$_pkgname() { -_package $_lang - }" -done - -# Don't extract anything -noextract=(${source[@]%%::*}) - -_package() { - pkgdesc="$2 language pack for Firefox Developer Edition" - depends=("firefox-developer-edition>=$pkgver") - install -Dm644 firefox-developer-edition-i18n-$pkgver-$1.xpi \ - "$pkgdir/usr/lib/firefox-developer-edition/browser/extensions/langpack-$1...@devedition.mozilla.org.xpi" -} - -sha512sums=('70853d468016f73bb2448e9ad3f35d0a4094458730a33dfd381f87f08a1c5df6b2c55681656c5f76d41385798e2f66a26ee4e9f1025a0c63eef8c69c4930aa43' - '9acb17747408e0d3db17c3c69f9eb017cba3ca8d175643d6b28e11e66eb0d06e856295413633b30d0047f9c46e7bed94f295ceb568cd8da8919676e1555f23a9' - '0909538ba6363201135baf4c37372ccc9b8330034163e8d8770b9244fb8babd9e477306df15c35eb416e8422cd81e8e15d1e168ae73c3a243a4c475ee7318186' - '9cda9c87869610bb9f3dab60c4a693fafe34c9f5ab23cb9ae4d5cd90e3bc8472db7e4955c2a15467ff1e5c7292c7231fe7064df23eb661c828cc9ca4afe144ed' - '89e211739055f08ea9cdc15f677a899312d3bf8943ba4b94f980c74585360ac192d8c50b8e01349b9e0ded0938ce177483b277f598095ab7aa972f20e4c76c82' - '0988c941ce546b19c3dad1c5ec860e28a7acf72e383b713a8fbd38f4417b27bf4333ccb3efa9587b8747739ccc055963c4f900a3a548d4d38de705479dd395d7' - 'd67b20593be06118035f8774c03511e97f8bfa874b242
[arch-commits] Commit in firefox-developer-edition-i18n/trunk (PKGBUILD)
Date: Friday, July 13, 2018 @ 21:20:31 Author: andrewsc Revision: 358837 upgpkg: firefox-developer-edition-i18n 62.0b8-1 firefox-developer-edition-i18n: Updating to 62.0b8 Modified: firefox-developer-edition-i18n/trunk/PKGBUILD --+ PKGBUILD | 196 ++--- 1 file changed, 98 insertions(+), 98 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-07-13 21:14:25 UTC (rev 358836) +++ PKGBUILD2018-07-13 21:20:31 UTC (rev 358837) @@ -2,7 +2,7 @@ # Maintainer: Andrew Crerar pkgbase=firefox-developer-edition-i18n -pkgver=62.0b7 +pkgver=62.0b8 pkgrel=1 pkgdesc="Language pack for Firefox Developer Edition" arch=('any') @@ -134,100 +134,100 @@ "$pkgdir/usr/lib/firefox-developer-edition/browser/extensions/langpack-$1...@devedition.mozilla.org.xpi" } -sha512sums=('70853d468016f73bb2448e9ad3f35d0a4094458730a33dfd381f87f08a1c5df6b2c55681656c5f76d41385798e2f66a26ee4e9f1025a0c63eef8c69c4930aa43' - '9acb17747408e0d3db17c3c69f9eb017cba3ca8d175643d6b28e11e66eb0d06e856295413633b30d0047f9c46e7bed94f295ceb568cd8da8919676e1555f23a9' - '0909538ba6363201135baf4c37372ccc9b8330034163e8d8770b9244fb8babd9e477306df15c35eb416e8422cd81e8e15d1e168ae73c3a243a4c475ee7318186' - '9cda9c87869610bb9f3dab60c4a693fafe34c9f5ab23cb9ae4d5cd90e3bc8472db7e4955c2a15467ff1e5c7292c7231fe7064df23eb661c828cc9ca4afe144ed' - '89e211739055f08ea9cdc15f677a899312d3bf8943ba4b94f980c74585360ac192d8c50b8e01349b9e0ded0938ce177483b277f598095ab7aa972f20e4c76c82' - '0988c941ce546b19c3dad1c5ec860e28a7acf72e383b713a8fbd38f4417b27bf4333ccb3efa9587b8747739ccc055963c4f900a3a548d4d38de705479dd395d7' - 'd67b20593be06118035f8774c03511e97f8bfa874b2421ddaa623da2c7df2b4f00c5528e5782f0cde716b37ce4b6e3f3fd1ef85e141c14f92a7ac251b68b77f1' - 'd6b9ff33b5c35ff4de5ff9d9e6c84bc56f7b008a8095a813dea8182999c31837e3ef274a3fbd9b935f02db63421040603299110486ead9eb4f3fb62940752be6' - '8aa3022e92a1ae7b7f531f24efdfbc08ec47b4944f70a7fdd4fa3ea1f2ad8c1e5ac0cfec06499ff3fcc371e946368288bcf36d530e50e450ea916a3a8c1e34a1' - '714eae1d20fe218474af1d59fab2d3667f78f0a94e2f20c286998bbeb75a81bff4121471d419517dda70a97581923f0e29a63527e5ade6adbd2f1b39494dd792' - '0e46b76045b95fb3d80f34793850cd2ce66ffa8d8b28d797f748d855921494065103d5c81f041f3f83e19c6d8478007a9154cad40a8d90632e90d395632fa69d' - '0c085b604ac39a10693869a02eeac642a4f2ef945b481fc8461cf617bf8108925aad9f2c82340fdbddac773ed530674af23318fa206cf781260005b2463a57a8' - 'b99de358372797e7744bdebd792af7821dbaf2624ad99d78e775923f471c4f165ce239c3f909e8b73568a9bf238723131fddf6244bab3cdcc8eafbc54948d249' - '5a7a3aea8f59e243a521acda2dffad5f4ec718286faf13a5598da21a48e5951acb8f2d045a6147335463d94e17baa85fe056abdc03c32ee9ddc94b5722a3bacf' - 'e239bab104b60b7aa222ec0447f179d6e1875d5262513d436212bf40b701a4b4002af77df0f9b99a5560d48f0c612510521998eb7e43c31cd57d20f4b01a0805' - '2c9cd09c6d01699971e287b985ddf38772282fe5ec24ab4cb9707675cc7338437c5cd279774eb847004c09f0a5d7cb7c3ef937ab81cc9628ea6481bebe1ca73c' - 'cd00c6126830bdd24067ca0261a89f512e174c3bf180f22ee0e00dcc4ed59f28bfeba27a4f1d736a92f6d79e4056d9d8957d5f0bc049c5cb10f0099d8688147b' - '2488e018a853f78585be112b09ef210d71e5fa3089885f89b7d01f3c168835f72c3092ff2863a206d9552ce2e43bb21da9a180760f55e1f032e2140f34fc88c6' - 'cf9d0136a2026055fb761d4c87dda92a3bf6d0beea9a1f04b6f52d9f3eade6dc74e52b6816b6b3b0c76b8d4786b4abe4e170641f3fb662e319a55f32abfe96b9' - '30983ad87357e635ac54b3084e607848efaf9d8d71caa0d92e702f7dd52b17d4a3005fa2e9dd33d484e0a5975ab09cbde75c5ec6ebf66f254a1bba92a451a2db' - '4f2051634de93f9f302ccc49d06e36c5376d63dab5b69619cdba8867614fa1dea017242136950fa53f7e05d1af00ae2eeddb6d3b25bbe2a5760e4ebb551a166c' - 'dce52430b870c17c246a8515ef091371e6117b30ec49e8ef6f2e0b7a05399fbc4ee914454dc40ed42e53475747561f11b2d8aef2130e96fecee7672acae82376' - 'a5dc6030dde3bb2c002aa6a6287f9595d29a5a145db13c3ff7af0c2ee50386c4372ee503f73d9b11bebdfb5aa71d386ac83b439e92f1587390db3d95bb34a779' - '61a5d08a04ed05d01b99afbb9e0f2767648342f630f683ff9881d93b84ee0fe6f7b9a04d3dd09a82e75a40b07918325347a564799c4bf6ce6e44d47df6dbda2a' - 'ee0b8d440e99ab5efdd2ec63a2e23a29bc4604a0e10b1cc7231a9800e57be953de87ad7c549186ecdd4be22d3a3a3b7878be04da8ae94cf946631e1839e280b5' - 'd4b4f73990bad684507a0314763fed6367bf36f0b745fdfe4b44c346d89d9f9c68f41ef99f4e3c997d009d8e8ac9b5c9ad3da76ab3fba8fa04afd539e7173ce7' - '7dbfffbab6b7c78290673b605b2f175026633bc1789fae49346116e5875d1e5ba53d267bc95f77b29ceb2e9d36b0a4e03f45f5a422f468c584c6b5005ce7d625' - 'fa05bb62402eb9785d5f6ee72c18889c147ae1e95264e98dcc07c4b3ce17665bf9b309dba73a0d841ef857d1955d97a09cda92432f0d1c658b5119e9442c26a4' - '5348371138d0
[arch-commits] Commit in firefox-developer-edition/repos/community-x86_64 (8 files)
Date: Friday, July 13, 2018 @ 21:14:25 Author: andrewsc Revision: 358836 archrelease: copy trunk to community-x86_64 Added: firefox-developer-edition/repos/community-x86_64/PKGBUILD (from rev 358835, firefox-developer-edition/trunk/PKGBUILD) firefox-developer-edition/repos/community-x86_64/firefox-developer-edition.desktop (from rev 358835, firefox-developer-edition/trunk/firefox-developer-edition.desktop) firefox-developer-edition/repos/community-x86_64/firefox-install-dir.patch (from rev 358835, firefox-developer-edition/trunk/firefox-install-dir.patch) firefox-developer-edition/repos/community-x86_64/firefox-symbolic.svg (from rev 358835, firefox-developer-edition/trunk/firefox-symbolic.svg) Deleted: firefox-developer-edition/repos/community-x86_64/PKGBUILD firefox-developer-edition/repos/community-x86_64/firefox-developer-edition.desktop firefox-developer-edition/repos/community-x86_64/firefox-install-dir.patch firefox-developer-edition/repos/community-x86_64/firefox-symbolic.svg ---+ PKGBUILD | 328 +- firefox-developer-edition.desktop | 622 ++-- firefox-install-dir.patch | 84 ++-- firefox-symbolic.svg | 128 +++ 4 files changed, 581 insertions(+), 581 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2018-07-13 21:13:51 UTC (rev 358835) +++ PKGBUILD2018-07-13 21:14:25 UTC (rev 358836) @@ -1,164 +0,0 @@ -# $Id$ -# Maintainer: Andrew Crerar -# Contributor: Jan Alexander Steffens (heftig) - -pkgname=firefox-developer-edition -pkgver=62.0b7 -pkgrel=1 -pkgdesc="Developer Edition of the popular Firefox web browser" -arch=('x86_64') -license=('MPL' 'GPL' 'LGPL') -url="https://www.mozilla.org/firefox/channel/#developer"; -depends=('gtk3' 'mozilla-common' 'libxt' 'startup-notification' 'mime-types' - 'dbus-glib' 'ffmpeg' 'nss' 'hunspell-en_US' 'sqlite' 'ttf-font' 'libpulse') -makedepends=('unzip' 'zip' 'diffutils' 'python2' 'python' 'yasm' 'mesa' 'imake' 'gconf' 'inetutils' - 'xorg-server-xvfb' 'autoconf2.13' 'rust' 'mercurial' 'clang' 'llvm' 'jack' 'gtk2' 'lld') -optdepends=('networkmanager: Location detection via available WiFi networks' -'libnotify: Notification integration' -'pulseaudio: Audio support' -'speech-dispatcher: Text-to-Speech') -replaces=('firefox-developer') -options=(!emptydirs !makeflags !strip) -_repo=https://hg.mozilla.org/mozilla-unified -source=("hg+$_repo#tag=DEVEDITION_${pkgver//./_}_RELEASE" -"$pkgname".desktop -firefox-symbolic.svg -firefox-install-dir.patch) -sha512sums=('SKIP' - '12617f60e01420350b8d9c7c1c3a2a5ba0f2c46df31b0e23e51093ebd68019ced7d193a01d964421b91e1b444ce4ab499523f21cd3a39a2ffac8883d096ac195' - 'ba7db9a7c95a051bcd84e4c09c802fc55ee3c0d1d06ec1b169b04e414259b75bbe92fe584aee41a1e3f71e71c160df8bedf5393449e5024110ed27dbc0579ea8' - '8fdf6a65e78406251075168c8310bb12c9b8419b3e51f59b1aa6244ef48ef1d201aae8bfdd5faa1da79242d9967fce959cbeffa54991ff39691f16168111b248') - -# Google API keys (see http://www.chromium.org/developers/how-tos/api-keys) -# Note: These are for Arch Linux use ONLY. For your own distribution, please -# get your own set of keys. Feel free to contact foutre...@archlinux.org for -# more information. -_google_api_key=AIzaSyDwr302FpOSkGRpLlUpPThNTDPbXcIn_FM - -# Mozilla API keys (see https://location.services.mozilla.com/api) -# Note: These are for Arch Linux use ONLY. For your own distribution, please -# get your own set of keys. Feel free to contact hef...@archlinux.org for -# more information. -_mozilla_api_key=16674381-f021-49de-8622-3021c5942aff - -prepare() { - cd mozilla-unified - patch -Np1 -i ../firefox-install-dir.patch - - echo -n "$_google_api_key" > google-api-key - echo -n "$_mozilla_api_key" > mozilla-api-key - - cat > .mozconfig << END -ac_add_options --enable-application=browser - -ac_add_options --prefix=/usr -ac_add_options --enable-release -ac_add_options --enable-hardening -ac_add_options --enable-optimize="-O3" -ac_add_options --enable-rust-simd -ac_add_options --enable-lto -ac_add_options --disable-elf-hack -CC=clang -CCX=clang++ - -# Branding -ac_add_options --with-branding=browser/branding/aurora -ac_add_options --enable-update-channel=aurora -ac_add_options --with-distribution-id=org.archlinux -ac_add_options "MOZ_ALLOW_LEGACY_EXTENSIONS=1" -export MOZILLA_OFFICIAL=1 -export MOZ_TELEMETRY_REPORTING=1 -export MOZ_REQUIRE_SIGNING=0 - -# Keys -ac_add_options --with-google-api-keyfile=${PWD@Q}/google-api-key -ac_add_options --with-mozilla-api-keyfile=${PWD@Q}/mozilla-api-key - -# System libraries -ac_add_options --with-system-zlib -ac_add_options --with-system-bz2 -ac_add_options --enable-system-sqlite -ac_add_options --enable-system-ffi - -# Features -ac_add_options --
[arch-commits] Commit in firefox-developer-edition/trunk (PKGBUILD)
Date: Friday, July 13, 2018 @ 21:13:51 Author: andrewsc Revision: 358835 upgpkg: firefox-developer-edition 62.0b8-1 firefox-developer-edition: Updating to 62.0b8 Modified: firefox-developer-edition/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2018-07-13 21:04:32 UTC (rev 358834) +++ PKGBUILD2018-07-13 21:13:51 UTC (rev 358835) @@ -3,7 +3,7 @@ # Contributor: Jan Alexander Steffens (heftig) pkgname=firefox-developer-edition -pkgver=62.0b7 +pkgver=62.0b8 pkgrel=1 pkgdesc="Developer Edition of the popular Firefox web browser" arch=('x86_64')
[arch-commits] Commit in python-billiard/repos/community-staging-x86_64 (2 files)
Date: Friday, July 13, 2018 @ 21:04:32 Author: felixonmars Revision: 358834 archrelease: copy trunk to community-staging-x86_64 Added: python-billiard/repos/community-staging-x86_64/PKGBUILD (from rev 358832, python-billiard/trunk/PKGBUILD) Deleted: python-billiard/repos/community-staging-x86_64/PKGBUILD --+ PKGBUILD | 106 ++--- 1 file changed, 53 insertions(+), 53 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2018-07-13 21:04:27 UTC (rev 358833) +++ PKGBUILD2018-07-13 21:04:32 UTC (rev 358834) @@ -1,53 +0,0 @@ -# $Id$ -# Maintainer: Felix Yan -# Contributor: Benjamin A. Shelton -# Source: https://github.com/zancarius/archlinux-pkgbuilds - -pkgbase=python-billiard -pkgname=('python-billiard' 'python2-billiard') -pkgver=3.5.0.3 -pkgrel=2 -pkgdesc="Python multiprocessing fork with improvements and bugfixes." -arch=('x86_64') -url="https://pypi.org/project/billiard/"; -license=('BSD') -makedepends=('python-setuptools' 'python2-setuptools') -checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'python-case' 'python2-case') -source=("https://pypi.io/packages/source/b/billiard/billiard-$pkgver.tar.gz";) -sha512sums=('f3a98e9b7af8c0b5741bcea915c0ff8d6e32e26d79637d14fc09ea85dd80693ea8205e13ac2d86e5035c377fdd6d769a2647b005dc10af8b106c75464458a808') - -prepare() { - cp -a billiard-$pkgver{,-py2} -} - -build() { - cd "$srcdir"/billiard-$pkgver - python setup.py build - - cd "$srcdir"/billiard-$pkgver-py2 - python2 setup.py build -} - -check() { - cd "$srcdir"/billiard-$pkgver - python setup.py pytest - - cd "$srcdir"/billiard-$pkgver-py2 - python2 setup.py pytest -} - -package_python-billiard() { - depends=('python') - - cd "$srcdir"/billiard-$pkgver - python setup.py install --root="$pkgdir" --optimize=1 --skip-build - install -Dm0664 "$srcdir"/billiard-$pkgver/LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE -} - -package_python2-billiard() { - depends=('python2') - - cd "$srcdir"/billiard-$pkgver-py2 - python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build - install -Dm0664 "$srcdir"/billiard-$pkgver/LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE -} Copied: python-billiard/repos/community-staging-x86_64/PKGBUILD (from rev 358832, python-billiard/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2018-07-13 21:04:32 UTC (rev 358834) @@ -0,0 +1,53 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Benjamin A. Shelton +# Source: https://github.com/zancarius/archlinux-pkgbuilds + +pkgbase=python-billiard +pkgname=('python-billiard' 'python2-billiard') +pkgver=3.5.0.4 +pkgrel=1 +pkgdesc="Python multiprocessing fork with improvements and bugfixes." +arch=('x86_64') +url="https://pypi.org/project/billiard/"; +license=('BSD') +makedepends=('python-setuptools' 'python2-setuptools') +checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'python-case' 'python2-case') +source=("https://pypi.io/packages/source/b/billiard/billiard-$pkgver.tar.gz";) +sha512sums=('8957bda01e9cc0b4de609b321e9b65f0855436e1d70cce31304ab4586437f9215d1d08b7a208f7672a75c21a68585df32cea7e666af1cae6b615de9430d45c5c') + +prepare() { + cp -a billiard-$pkgver{,-py2} +} + +build() { + cd "$srcdir"/billiard-$pkgver + python setup.py build + + cd "$srcdir"/billiard-$pkgver-py2 + python2 setup.py build +} + +check() { + cd "$srcdir"/billiard-$pkgver + python setup.py pytest + + cd "$srcdir"/billiard-$pkgver-py2 + python2 setup.py pytest +} + +package_python-billiard() { + depends=('python') + + cd "$srcdir"/billiard-$pkgver + python setup.py install --root="$pkgdir" --optimize=1 --skip-build + install -Dm0664 "$srcdir"/billiard-$pkgver/LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE +} + +package_python2-billiard() { + depends=('python2') + + cd "$srcdir"/billiard-$pkgver-py2 + python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build + install -Dm0664 "$srcdir"/billiard-$pkgver/LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE +}
[arch-commits] Commit in haskell-dbus/repos (2 files)
Date: Friday, July 13, 2018 @ 21:04:27 Author: felixonmars Revision: 358833 archrelease: copy trunk to community-staging-x86_64 Added: haskell-dbus/repos/community-staging-x86_64/ haskell-dbus/repos/community-staging-x86_64/PKGBUILD (from rev 358832, haskell-dbus/trunk/PKGBUILD) --+ PKGBUILD | 46 ++ 1 file changed, 46 insertions(+) Copied: haskell-dbus/repos/community-staging-x86_64/PKGBUILD (from rev 358832, haskell-dbus/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2018-07-13 21:04:27 UTC (rev 358833) @@ -0,0 +1,46 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=dbus +pkgname=haskell-dbus +pkgver=1.0.1 +pkgrel=46 +pkgdesc="A client library for the D-Bus IPC system" +url="https://john-millikin.com/software/haskell-dbus/"; +license=("GPL3") +arch=('x86_64') +depends=('ghc-libs' 'haskell-cereal' 'haskell-lens' 'haskell-libxml-sax' 'haskell-network' + 'haskell-random' 'haskell-split' 'haskell-th-lift' + 'haskell-vector' 'haskell-xml-types') +makedepends=('ghc' 'haskell-extra' 'haskell-quickcheck' 'haskell-resourcet' 'haskell-tasty' + 'haskell-tasty-hunit' 'haskell-tasty-quickcheck') +source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +sha512sums=('e50b388de40d39761338045a92a848d65fc049594b0ee59505a2ac1a1bbf54cb6e8278f9d08abcdd3cae87650405f78f80bce680b9c3c4950d1b848a990e544b') + +build() { +cd $_hkgname-$pkgver + +runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \ +--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid +runhaskell Setup build +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh +sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh +} + +check() { +cd $_hkgname-$pkgver +runhaskell Setup test +} + +package() { +cd $_hkgname-$pkgver + +install -D -m744 register.sh "${pkgdir}/usr/share/haskell/register/${pkgname}.sh" +install -D -m744 unregister.sh "${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh" +runhaskell Setup copy --destdir="${pkgdir}" +rm -f "${pkgdir}/usr/share/doc/${pkgname}/license.txt" +}
[arch-commits] Commit in python-billiard/trunk (PKGBUILD)
Date: Friday, July 13, 2018 @ 21:04:06 Author: felixonmars Revision: 358831 upgpkg: python-billiard 3.5.0.4-1 Modified: python-billiard/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-07-13 21:02:39 UTC (rev 358830) +++ PKGBUILD2018-07-13 21:04:06 UTC (rev 358831) @@ -5,8 +5,8 @@ pkgbase=python-billiard pkgname=('python-billiard' 'python2-billiard') -pkgver=3.5.0.3 -pkgrel=2 +pkgver=3.5.0.4 +pkgrel=1 pkgdesc="Python multiprocessing fork with improvements and bugfixes." arch=('x86_64') url="https://pypi.org/project/billiard/"; @@ -14,7 +14,7 @@ makedepends=('python-setuptools' 'python2-setuptools') checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'python-case' 'python2-case') source=("https://pypi.io/packages/source/b/billiard/billiard-$pkgver.tar.gz";) -sha512sums=('f3a98e9b7af8c0b5741bcea915c0ff8d6e32e26d79637d14fc09ea85dd80693ea8205e13ac2d86e5035c377fdd6d769a2647b005dc10af8b106c75464458a808') +sha512sums=('8957bda01e9cc0b4de609b321e9b65f0855436e1d70cce31304ab4586437f9215d1d08b7a208f7672a75c21a68585df32cea7e666af1cae6b615de9430d45c5c') prepare() { cp -a billiard-$pkgver{,-py2}
[arch-commits] Commit in haskell-dbus/trunk (PKGBUILD)
Date: Friday, July 13, 2018 @ 21:04:07 Author: felixonmars Revision: 358832 upgpkg: haskell-dbus 1.0.1-46 rebuild with extra 1.6.9 Modified: haskell-dbus/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2018-07-13 21:04:06 UTC (rev 358831) +++ PKGBUILD2018-07-13 21:04:07 UTC (rev 358832) @@ -5,7 +5,7 @@ _hkgname=dbus pkgname=haskell-dbus pkgver=1.0.1 -pkgrel=45 +pkgrel=46 pkgdesc="A client library for the D-Bus IPC system" url="https://john-millikin.com/software/haskell-dbus/"; license=("GPL3")
[arch-commits] Commit in haskell-extra/repos (2 files)
Date: Friday, July 13, 2018 @ 21:02:39 Author: felixonmars Revision: 358830 archrelease: copy trunk to community-staging-x86_64 Added: haskell-extra/repos/community-staging-x86_64/ haskell-extra/repos/community-staging-x86_64/PKGBUILD (from rev 358829, haskell-extra/trunk/PKGBUILD) --+ PKGBUILD | 44 1 file changed, 44 insertions(+) Copied: haskell-extra/repos/community-staging-x86_64/PKGBUILD (from rev 358829, haskell-extra/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2018-07-13 21:02:39 UTC (rev 358830) @@ -0,0 +1,44 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=extra +pkgname=haskell-extra +pkgver=1.6.9 +pkgrel=1 +pkgdesc="Extra functions I use." +url="https://github.com/ndmitchell/extra#readme"; +license=("custom:BSD3") +arch=('x86_64') +depends=('ghc-libs' 'haskell-clock') +makedepends=('ghc' 'haskell-quickcheck') +source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +sha512sums=('0a749d63c363ea984e9356a4dfb149a17a4ec0e77937950b3ec749870c9bee8aa9102b93ccb530de1b738a2a51b82ff51977363854c3b6ec9bcd6c982d1c66d4') + +build() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \ +--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid +runhaskell Setup build +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh +sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh +} + +check() { +cd $_hkgname-$pkgver +runhaskell Setup test +} + +package() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +install -D -m744 register.sh "${pkgdir}/usr/share/haskell/register/${pkgname}.sh" +install -D -m744 unregister.sh "${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh" +runhaskell Setup copy --destdir="${pkgdir}" +install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE" +}
[arch-commits] Commit in haskell-extra/trunk (PKGBUILD)
Date: Friday, July 13, 2018 @ 21:02:19 Author: felixonmars Revision: 358829 upgpkg: haskell-extra 1.6.9-1 rebuild with extra 1.6.9 Modified: haskell-extra/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-07-13 21:01:36 UTC (rev 358828) +++ PKGBUILD2018-07-13 21:02:19 UTC (rev 358829) @@ -4,8 +4,8 @@ _hkgname=extra pkgname=haskell-extra -pkgver=1.6.8 -pkgrel=4 +pkgver=1.6.9 +pkgrel=1 pkgdesc="Extra functions I use." url="https://github.com/ndmitchell/extra#readme"; license=("custom:BSD3") @@ -13,7 +13,7 @@ depends=('ghc-libs' 'haskell-clock') makedepends=('ghc' 'haskell-quickcheck') source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) -sha512sums=('ff0bdefd279e9130b375aa4081782ff10c3904b4c9589907acdc20e5aa3162863bb774a2e953099c28205a279ef978b94917c103145d5495ca6d11befd671fd4') +sha512sums=('0a749d63c363ea984e9356a4dfb149a17a4ec0e77937950b3ec749870c9bee8aa9102b93ccb530de1b738a2a51b82ff51977363854c3b6ec9bcd6c982d1c66d4') build() { cd "${srcdir}/${_hkgname}-${pkgver}"
[arch-commits] Commit in python-pypandoc/repos (2 files)
Date: Friday, July 13, 2018 @ 21:01:36 Author: felixonmars Revision: 358828 archrelease: copy trunk to community-staging-any Added: python-pypandoc/repos/community-staging-any/ python-pypandoc/repos/community-staging-any/PKGBUILD (from rev 358827, python-pypandoc/trunk/PKGBUILD) --+ PKGBUILD | 56 1 file changed, 56 insertions(+) Copied: python-pypandoc/repos/community-staging-any/PKGBUILD (from rev 358827, python-pypandoc/trunk/PKGBUILD) === --- community-staging-any/PKGBUILD (rev 0) +++ community-staging-any/PKGBUILD 2018-07-13 21:01:36 UTC (rev 358828) @@ -0,0 +1,56 @@ +# $Id: PKGBUILD 141139 2015-09-20 03:14:59Z fyan $ +# Maintainer: Felix Yan + +pkgbase=python-pypandoc +pkgname=('python-pypandoc' 'python2-pypandoc') +pkgver=1.4 +pkgrel=2 +pkgdesc="Thin wrapper for pandoc" +arch=('any') +license=('MIT') +url="https://github.com/bebraw/pypandoc"; +makedepends=('python-setuptools' 'python2-setuptools' 'pandoc') +checkdepends=('texlive-core' 'texlive-latexextra' 'pandoc-citeproc') +source=("$pkgbase-$pkgver.tar.gz::https://github.com/bebraw/pypandoc/archive/$pkgver.tar.gz";) +sha512sums=('e6210c8b63758d09b12f1cef2e755ae70befa2b5cd66034d9981217b2fa684b90bf6b6edc46968abcb775721a0b32467c924866be743dde74fe77a20b94453d5') + +prepare() { + # We don't really need pip and wheel at runtime + sed -i "s/install_requires = .*/install_requires = ['setuptools'],/" pypandoc-$pkgver/setup.py + + cp -a pypandoc-$pkgver{,-py2} +} + +build() { + cd "$srcdir"/pypandoc-$pkgver + python setup.py build + + cd "$srcdir"/pypandoc-$pkgver-py2 + python2 setup.py build +} + +check() { + # https://github.com/bebraw/pypandoc/issues/163 + + cd "$srcdir"/pypandoc-$pkgver + LC_CTYPE=en_US.UTF-8 python setup.py test || warning "Tests failed" + + cd "$srcdir"/pypandoc-$pkgver-py2 + python2 setup.py test || warning "Tests failed" +} + +package_python-pypandoc() { + depends=('python-setuptools' 'pandoc') + + cd pypandoc-$pkgver + python setup.py install --root="$pkgdir" --optimize=1 + install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE +} + +package_python2-pypandoc() { + depends=('python2-setuptools' 'pandoc') + + cd pypandoc-$pkgver-py2 + python2 setup.py install --root="$pkgdir" --optimize=1 + install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE +}
[arch-commits] Commit in python-pypandoc/trunk (PKGBUILD)
Date: Friday, July 13, 2018 @ 21:01:13 Author: felixonmars Revision: 358827 upgpkg: python-pypandoc 1.4-2 Python 3.7 rebuild Modified: python-pypandoc/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-07-13 20:56:19 UTC (rev 358826) +++ PKGBUILD2018-07-13 21:01:13 UTC (rev 358827) @@ -4,13 +4,13 @@ pkgbase=python-pypandoc pkgname=('python-pypandoc' 'python2-pypandoc') pkgver=1.4 -pkgrel=1 +pkgrel=2 pkgdesc="Thin wrapper for pandoc" arch=('any') license=('MIT') url="https://github.com/bebraw/pypandoc"; makedepends=('python-setuptools' 'python2-setuptools' 'pandoc') -checkdepends=('texlive-core' 'pandoc-citeproc') +checkdepends=('texlive-core' 'texlive-latexextra' 'pandoc-citeproc') source=("$pkgbase-$pkgver.tar.gz::https://github.com/bebraw/pypandoc/archive/$pkgver.tar.gz";) sha512sums=('e6210c8b63758d09b12f1cef2e755ae70befa2b5cd66034d9981217b2fa684b90bf6b6edc46968abcb775721a0b32467c924866be743dde74fe77a20b94453d5') @@ -30,7 +30,7 @@ } check() { - # https://github.com/bebraw/pypandoc/issues/132 + # https://github.com/bebraw/pypandoc/issues/163 cd "$srcdir"/pypandoc-$pkgver LC_CTYPE=en_US.UTF-8 python setup.py test || warning "Tests failed"
[arch-commits] Commit in python-cmd2/trunk (PKGBUILD)
Date: Friday, July 13, 2018 @ 20:43:27 Author: felixonmars Revision: 358822 Python 3.7 rebuild Modified: python-cmd2/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2018-07-13 20:09:46 UTC (rev 358821) +++ PKGBUILD2018-07-13 20:43:27 UTC (rev 358822) @@ -5,7 +5,7 @@ pkgbase=python-cmd2 pkgname=(python-cmd2 python2-cmd2) pkgver=0.8.6 -pkgrel=1 +pkgrel=2 pkgdesc="Extra features for standard library's cmd module" arch=('any') url="https://github.com/python-cmd2/cmd2";
[arch-commits] Commit in python-cmd2/repos (2 files)
Date: Friday, July 13, 2018 @ 20:43:48 Author: felixonmars Revision: 358823 archrelease: copy trunk to community-staging-any Added: python-cmd2/repos/community-staging-any/ python-cmd2/repos/community-staging-any/PKGBUILD (from rev 358822, python-cmd2/trunk/PKGBUILD) --+ PKGBUILD | 57 + 1 file changed, 57 insertions(+) Copied: python-cmd2/repos/community-staging-any/PKGBUILD (from rev 358822, python-cmd2/trunk/PKGBUILD) === --- community-staging-any/PKGBUILD (rev 0) +++ community-staging-any/PKGBUILD 2018-07-13 20:43:48 UTC (rev 358823) @@ -0,0 +1,57 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Daniel Wallace + +pkgbase=python-cmd2 +pkgname=(python-cmd2 python2-cmd2) +pkgver=0.8.6 +pkgrel=2 +pkgdesc="Extra features for standard library's cmd module" +arch=('any') +url="https://github.com/python-cmd2/cmd2"; +license=('MIT') +makedepends=('python-setuptools' 'python2-setuptools' 'python-pyparsing' 'python2-pyparsing' + 'python-pyperclip' 'python2-pyperclip' 'python-colorama' 'python2-colorama' + 'python2-contextlib2' 'python2-enum34' 'python-wcwidth' 'python2-wcwidth' + 'python2-subprocess32') +checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'python-pytest-xdist' + 'python2-pytest-xdist' 'python-mock' 'python2-mock' 'vi') +source=("$pkgbase-$pkgver.tar.gz::https://github.com/python-cmd2/cmd2/archive/$pkgver.tar.gz";) +sha512sums=('c28eb016fff3652b5cc1a45417e1b76b061849bd5c48afbaca8b9706d93b9b9f235fa6e2616da76741505eba96943b77e51d3fdb9fd50db620b52a6d75e4cceb') + +prepare() { + cp -a cmd2-$pkgver{,-py2} +} + +build() { + cd "$srcdir"/cmd2-$pkgver + python setup.py build + + cd "$srcdir"/cmd2-$pkgver-py2 + python2 setup.py build +} + +check() { + cd "$srcdir"/cmd2-$pkgver + python setup.py pytest + + cd "$srcdir"/cmd2-$pkgver-py2 + python2 setup.py pytest +} + +package_python-cmd2() { + depends=('python-pyparsing' 'python-pyperclip' 'python-wcwidth') + + cd "$srcdir"/cmd2-$pkgver + python setup.py install --root="$pkgdir" --optimize=1 +} + +package_python2-cmd2() { + depends=('python2-pyparsing' 'python2-pyperclip' 'python2-wcwidth' 'python2-contextlib2' + 'python2-enum34' 'python2-subprocess32') + + cd "$srcdir"/cmd2-$pkgver-py2 + python2 setup.py install --root="$pkgdir" --optimize=1 +} + +# vim:set ts=2 sw=2 et:
[arch-commits] Commit in clang/trunk (PKGBUILD)
Date: Friday, July 13, 2018 @ 20:38:13 Author: foutrelis Revision: 328560 Python 3.7 rebuild Modified: clang/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2018-07-13 20:12:32 UTC (rev 328559) +++ PKGBUILD2018-07-13 20:38:13 UTC (rev 328560) @@ -4,7 +4,7 @@ pkgname=clang pkgver=6.0.1 -pkgrel=1 +pkgrel=2 pkgdesc="C language family frontend for LLVM" arch=('x86_64') url="https://clang.llvm.org/";
[arch-commits] Commit in clang/repos (3 files)
Date: Friday, July 13, 2018 @ 20:38:17 Author: foutrelis Revision: 328561 archrelease: copy trunk to staging-x86_64 Added: clang/repos/staging-x86_64/ clang/repos/staging-x86_64/PKGBUILD (from rev 328560, clang/trunk/PKGBUILD) clang/repos/staging-x86_64/enable-SSP-and-PIE-by-default.patch (from rev 328560, clang/trunk/enable-SSP-and-PIE-by-default.patch) -+ PKGBUILD| 107 ++ enable-SSP-and-PIE-by-default.patch | 257 ++ 2 files changed, 364 insertions(+) Copied: clang/repos/staging-x86_64/PKGBUILD (from rev 328560, clang/trunk/PKGBUILD) === --- staging-x86_64/PKGBUILD (rev 0) +++ staging-x86_64/PKGBUILD 2018-07-13 20:38:17 UTC (rev 328561) @@ -0,0 +1,107 @@ +# $Id$ +# Maintainer: Evangelos Foutras +# Contributor: Jan "heftig" Steffens + +pkgname=clang +pkgver=6.0.1 +pkgrel=2 +pkgdesc="C language family frontend for LLVM" +arch=('x86_64') +url="https://clang.llvm.org/"; +license=('custom:University of Illinois/NCSA Open Source License') +depends=('llvm-libs' 'gcc' 'compiler-rt') +makedepends=('llvm' 'cmake' 'ninja' 'python-sphinx' 'python2') +optdepends=('openmp: OpenMP support in clang with -fopenmp' +'python: for git-clang-format' +'python2: for scan-view') +provides=("clang-analyzer=$pkgver" "clang-tools-extra=$pkgver") +conflicts=('clang-analyzer' 'clang-tools-extra') +replaces=('clang-analyzer' 'clang-tools-extra') +source=(https://releases.llvm.org/$pkgver/cfe-$pkgver.src.tar.xz{,.sig} + https://releases.llvm.org/$pkgver/clang-tools-extra-$pkgver.src.tar.xz{,.sig} +https://releases.llvm.org/$pkgver/llvm-$pkgver.src.tar.xz{,.sig} +enable-SSP-and-PIE-by-default.patch) +sha256sums=('7c243f1485bddfdfedada3cd402ff4792ea82362ff91fbdac2dae67c6026b667' +'SKIP' +'0d2e3727786437574835b75135f9e36f861932a958d8547ced7e13ebdda115f1' +'SKIP' +'b6d6c324f9c71494c0ccaf3dac1f16236d970002b42bb24a6c9e1634f7d0f4e2' +'SKIP' +'28d38b7f4bcaa0c974f8c48d732a0db309ea89ffa901c39de90725ae857946c1') +validpgpkeys+=('B6C8F98282B944E3B0D5C2530FC3042E345AD05D') # Hans Wennborg +validpgpkeys+=('474E22316ABF4785A88C6E8EA2C794A986419D8A') # Tom Stellard + +prepare() { + cd "$srcdir/cfe-$pkgver.src" + mkdir build + mv "$srcdir/clang-tools-extra-$pkgver.src" tools/extra + patch -Np1 -i ../enable-SSP-and-PIE-by-default.patch +} + +build() { + cd "$srcdir/cfe-$pkgver.src/build" + + cmake .. -G Ninja \ +-DCMAKE_BUILD_TYPE=Release \ +-DCMAKE_INSTALL_PREFIX=/usr \ +-DPYTHON_EXECUTABLE=/usr/bin/python \ +-DBUILD_SHARED_LIBS=ON \ +-DLLVM_LINK_LLVM_DYLIB=ON \ +-DLLVM_ENABLE_RTTI=ON \ +-DLLVM_BUILD_TESTS=ON \ +-DLLVM_INCLUDE_DOCS=ON \ +-DLLVM_BUILD_DOCS=ON \ +-DLLVM_ENABLE_SPHINX=ON \ +-DSPHINX_WARNINGS_AS_ERRORS=OFF \ +-DLLVM_EXTERNAL_LIT=/usr/bin/lit \ +-DLLVM_MAIN_SRC_DIR="$srcdir/llvm-$pkgver.src" + ninja +} + +check() { + cd "$srcdir/cfe-$pkgver.src/build" + ninja check-clang{,-tools} +} + +_python2_optimize() { + python2 -m compileall "$@" + python2 -O -m compileall "$@" +} + +_python3_optimize() { + python3 -m compileall "$@" + python3 -O -m compileall "$@" + python3 -OO -m compileall "$@" +} + +package() { + cd "$srcdir/cfe-$pkgver.src/build" + + DESTDIR="$pkgdir" ninja install + install -Dm644 ../LICENSE.TXT "$pkgdir/usr/share/licenses/$pkgname/LICENSE" + + # Remove documentation sources + rm -r "$pkgdir"/usr/share/doc/clang{,-tools}/html/{_sources,.buildinfo} + + # Move analyzer scripts out of /usr/libexec + mv "$pkgdir"/usr/libexec/{ccc,c++}-analyzer "$pkgdir/usr/lib/clang/" + rmdir "$pkgdir/usr/libexec" + sed -i 's|libexec|lib/clang|' "$pkgdir/usr/bin/scan-build" + + # Install Python bindings + for _py in 2.7 3.7; do +install -d "$pkgdir/usr/lib/python$_py/site-packages" +cp -a ../bindings/python/clang "$pkgdir/usr/lib/python$_py/site-packages/" +_python${_py%%.*}_optimize "$pkgdir/usr/lib/python$_py" + done + + # Fix shebang in Python 2 scripts + sed -i '1s|/usr/bin/env python$|&2|' \ +"$pkgdir/usr/bin/scan-view" \ +"$pkgdir"/usr/share/$pkgname/*.py + + # Compile Python scripts + _python2_optimize "$pkgdir/usr/share" +} + +# vim:set ts=2 sw=2 et: Copied: clang/repos/staging-x86_64/enable-SSP-and-PIE-by-default.patch (from rev 328560, clang/trunk/enable-SSP-and-PIE-by-default.patch) === --- staging-x86_64/enable-SSP-and-PIE-by-default.patch (rev 0) +++ staging-x86_64/enable-SSP-and-PIE-by-default.patch 2018-07-13 20:38:17 UTC (rev 328561) @@ -0,0 +1,257 @@ +From b0307536e769c8ce11dbfa1956d617e8fc9366a7 Mon Sep 17 00:00:00 2001 +From: Evangelos Foutras +Date: Thu, 8 Mar 2018 18:38:53 +0200 +Su
[arch-commits] Commit in clang/trunk (PKGBUILD)
Date: Friday, July 13, 2018 @ 20:12:32 Author: foutrelis Revision: 328559 Prepare for Python 3.7 rebuild Modified: clang/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2018-07-13 20:04:43 UTC (rev 328558) +++ PKGBUILD2018-07-13 20:12:32 UTC (rev 328559) @@ -89,7 +89,7 @@ sed -i 's|libexec|lib/clang|' "$pkgdir/usr/bin/scan-build" # Install Python bindings - for _py in 2.7 3.6; do + for _py in 2.7 3.7; do install -d "$pkgdir/usr/lib/python$_py/site-packages" cp -a ../bindings/python/clang "$pkgdir/usr/lib/python$_py/site-packages/" _python${_py%%.*}_optimize "$pkgdir/usr/lib/python$_py"
[arch-commits] Commit in gdal/trunk (PKGBUILD)
Date: Friday, July 13, 2018 @ 20:09:41 Author: foutrelis Revision: 358820 Python 3.7 rebuild Modified: gdal/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2018-07-13 20:03:09 UTC (rev 358819) +++ PKGBUILD2018-07-13 20:09:41 UTC (rev 358820) @@ -6,7 +6,7 @@ pkgbase=gdal pkgname=(gdal python-gdal python2-gdal) pkgver=2.3.1 -pkgrel=1 +pkgrel=2 pkgdesc="A translator library for raster geospatial data formats" arch=('x86_64') url="http://www.gdal.org/";
[arch-commits] Commit in gdal/repos (4 files)
Date: Friday, July 13, 2018 @ 20:09:46 Author: foutrelis Revision: 358821 archrelease: copy trunk to community-staging-x86_64 Added: gdal/repos/community-staging-x86_64/ gdal/repos/community-staging-x86_64/PKGBUILD (from rev 358820, gdal/trunk/PKGBUILD) gdal/repos/community-staging-x86_64/gdal-perl-vendor.patch (from rev 358820, gdal/trunk/gdal-perl-vendor.patch) gdal/repos/community-staging-x86_64/gdal.changelog (from rev 358820, gdal/trunk/gdal.changelog) + PKGBUILD | 112 +++ gdal-perl-vendor.patch | 28 +++ gdal.changelog | 102 ++ 3 files changed, 242 insertions(+) Copied: gdal/repos/community-staging-x86_64/PKGBUILD (from rev 358820, gdal/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2018-07-13 20:09:46 UTC (rev 358821) @@ -0,0 +1,112 @@ +# $Id$ +# Maintainer: Jaroslav Lichtblau +# Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org +# Contributor: William Rea + +pkgbase=gdal +pkgname=(gdal python-gdal python2-gdal) +pkgver=2.3.1 +pkgrel=2 +pkgdesc="A translator library for raster geospatial data formats" +arch=('x86_64') +url="http://www.gdal.org/"; +license=('custom') +depends=('curl' 'geos' 'giflib' 'hdf5' 'libgeotiff' 'libjpeg-turbo' 'libpng' 'libspatialite' 'libtiff' 'netcdf' + 'openjpeg2' 'poppler' 'cfitsio' 'sqlite' 'libmariadbclient' 'postgresql-libs' 'xerces-c' 'json-c') +makedepends=('perl' 'swig' 'chrpath' 'doxygen' 'python-numpy' 'python2-numpy') +optdepends=('postgresql: postgresql database support' +'mariadb: mariadb database support' +'perl: perl binding support') +options=('!emptydirs') +changelog=$pkgbase.changelog +source=(https://download.osgeo.org/${pkgbase}/${pkgver}/${pkgbase}-${pkgver}.tar.xz +gdal-perl-vendor.patch) +sha256sums=('9c4625c45a3ee7e49a604ef221778983dd9fd8104922a87f20b99d9bedb7725a' +'a41a0129a878a0d09b8ecf24b8a0b473856d929d52f535afdf4dca95ddd347d3') + +prepare() { + cd "${srcdir}"/$pkgbase-$pkgver + +# Fix mandir + sed -i "s|^mandir=.*|mandir='\${prefix}/share/man'|" configure + +# Fix Perl bindings installation path + patch -Np1 -i ../gdal-perl-vendor.patch +} + +build() { + cd "${srcdir}"/$pkgbase-$pkgver + export CFLAGS="$CFLAGS -fno-strict-aliasing" + +# bug #23654 + export LDFLAGS="$LDFLAGS -Wl,--as-needed" + + ./configure --prefix=/usr --with-netcdf --with-libtiff --with-sqlite3 --with-geotiff \ + --with-mysql --with-curl --with-hdf5 --with-perl --with-geos \ + --with-png --with-poppler --with-spatialite --with-openjpeg + +# workaround for bug #13646 + sed -i 's/PY_HAVE_SETUPTOOLS=1/PY_HAVE_SETUPTOOLS=/g' ./GDALmake.opt + sed -i 's/EXE_DEP_LIBS/KILL_EXE_DEP_LIBS/' apps/GNUmakefile + + make + make man + + cd "${srcdir}"/$pkgbase-$pkgver/swig/python + python2 setup.py build + python3 setup.py build +} + +package_gdal () { + cd "${srcdir}"/$pkgbase-$pkgver + + make DESTDIR="${pkgdir}" install + make DESTDIR="${pkgdir}" install-man + +# install license + install -Dm644 LICENSE.TXT "${pkgdir}"/usr/share/licenses/$pkgbase/LICENSE + +#FS15477 clean up junks - still present in 2.2.1 +# rm -f "${pkgdir}"/usr/share/man/man1/_build_gdal_src_gdal-${pkgver}_apps_.1 + +# Remove RPATH + eval local $(perl -V:vendorarch) + chrpath --delete "${pkgdir}"${vendorarch}/auto/Geo/OSR/OSR.so + chrpath --delete "${pkgdir}"${vendorarch}/auto/Geo/OGR/OGR.so + chrpath --delete "${pkgdir}"${vendorarch}/auto/Geo/GDAL/GDAL.so + chrpath --delete "${pkgdir}"${vendorarch}/auto/Geo/GDAL/Const/Const.so + chrpath --delete "${pkgdir}"${vendorarch}/auto/Geo/GNM/GNM.so +} + +package_python-gdal () { + pkgdesc="Python bindings for GDAL" + depends=("gdal=$pkgver" 'python-numpy') + optdepends=() + + cd "${srcdir}"/$pkgbase-$pkgver/swig/python + python3 setup.py install --root="$pkgdir" --optimize=1 + install -Dm755 -t "${pkgdir}"/usr/bin scripts/*.py + + install -dm755 "${pkgdir}"/usr/share/licenses + ln -s $pkgbase "${pkgdir}"/usr/share/licenses/$pkgname +} + +package_python2-gdal () { + pkgdesc="Python 2 bindings for GDAL" + depends=("gdal=$pkgver" 'python2-numpy') + optdepends=() + + cd "${srcdir}"/$pkgbase-$pkgver/swig/python + +# python2 fixes + for file in {,osgeo/,samples/,scripts/}*.py; do + sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' $file + done + + python2 setup.py install --root="$pkgdir" --optimize=1 + install -Dm755 -t "${pkgdir}"/usr/bin scripts/*.py + for file in "${pkgdir}"/usr/bin/*; do mv "${file}" "${file%.py}2.py"; done + + install -dm755 "${pkgdir}"/usr/share/licenses + ln -s $pkgbase "${pkgdir}"/usr/share/licenses/$pkgname +} Copied: gdal/repos/community-staging-x86_64/gdal-perl-vendor.patch (from rev 35
[arch-commits] Commit in pyopengl/repos (3 files)
Date: Friday, July 13, 2018 @ 20:04:43 Author: foutrelis Revision: 328558 archrelease: copy trunk to staging-any Added: pyopengl/repos/staging-any/ pyopengl/repos/staging-any/LICENSE (from rev 328557, pyopengl/trunk/LICENSE) pyopengl/repos/staging-any/PKGBUILD (from rev 328557, pyopengl/trunk/PKGBUILD) --+ LICENSE | 30 ++ PKGBUILD | 51 +++ 2 files changed, 81 insertions(+) Copied: pyopengl/repos/staging-any/LICENSE (from rev 328557, pyopengl/trunk/LICENSE) === --- staging-any/LICENSE (rev 0) +++ staging-any/LICENSE 2018-07-13 20:04:43 UTC (rev 328558) @@ -0,0 +1,30 @@ +# Copyright (c) 2006-2008 Alex Holkner +# 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 pyglet nor the names of its +#contributors may be used to endorse or promote products +#derived from this software without specific prior written +#permission. +# +# 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: pyopengl/repos/staging-any/PKGBUILD (from rev 328557, pyopengl/trunk/PKGBUILD) === --- staging-any/PKGBUILD(rev 0) +++ staging-any/PKGBUILD2018-07-13 20:04:43 UTC (rev 328558) @@ -0,0 +1,51 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Josh Taylor +# Contributor: simo +# Contributor: Douglas Soares de Andrade +# Contributor: Daniel J Griffiths + +pkgbase=pyopengl +pkgname=('python2-opengl' 'python-opengl') +pkgver=3.1.0 +pkgrel=4 +pkgdesc="The cross platform Python binding to OpenGL and related APIs" +url="http://pyopengl.sourceforge.net/"; +license=('BSD') +arch=('any') +makedepends=('freeglut' 'python2-setuptools' 'python-setuptools') +source=("https://pypi.python.org/packages/source/P/PyOpenGL/PyOpenGL-${pkgver}.tar.gz"; +'LICENSE') +md5sums=('0de021941018d46d91e5a8c11c071693' + '0b53c508a63e5dbaf44cdfb0fa103b3a')\ + +prepare() { +cp -a PyOpenGL-${pkgver} python-PyOpenGL-${pkgver} + +# Fix the shebang +sed -i 's|#!/usr/bin/env python|#!/usr/bin/python2|' \ +PyOpenGL-${pkgver}/OpenGL/Tk/__init__.py +sed -i 's|#! /usr/bin/env python|#!/usr/bin/python2|' \ +PyOpenGL-${pkgver}/OpenGL/arrays/{_,}buffers.py +} + +package_python2-opengl() { +depends=('python2' 'freeglut') + conflicts=('python-pyopengl' 'python-opengl<=3.0.1-4') + replaces=('python-pyopengl' 'python-opengl<=3.0.1-4') + +cd PyOpenGL-${pkgver} + python2 setup.py install --root="${pkgdir}" --optimize=1 + install -Dm644 "${srcdir}/LICENSE" \ + "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +} + +package_python-opengl() { +depends=('python' 'freeglut') + +cd python-PyOpenGL-${pkgver} + python setup.py install --root="${pkgdir}" --optimize=1 + install -Dm644 "${srcdir}/LICENSE" \ + "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +} +
[arch-commits] Commit in pyopengl/trunk (PKGBUILD)
Date: Friday, July 13, 2018 @ 20:04:38 Author: foutrelis Revision: 328557 Python 3.7 rebuild Modified: pyopengl/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2018-07-13 19:55:01 UTC (rev 328556) +++ PKGBUILD2018-07-13 20:04:38 UTC (rev 328557) @@ -8,7 +8,7 @@ pkgbase=pyopengl pkgname=('python2-opengl' 'python-opengl') pkgver=3.1.0 -pkgrel=3 +pkgrel=4 pkgdesc="The cross platform Python binding to OpenGL and related APIs" url="http://pyopengl.sourceforge.net/"; license=('BSD')
[arch-commits] Commit in radicale/trunk (PKGBUILD)
Date: Friday, July 13, 2018 @ 20:03:03 Author: foutrelis Revision: 358818 Python 3.7 rebuild Modified: radicale/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2018-07-13 20:02:46 UTC (rev 358817) +++ PKGBUILD2018-07-13 20:03:03 UTC (rev 358818) @@ -5,7 +5,7 @@ pkgname=radicale _name=Radicale pkgver=2.1.9 -pkgrel=2 +pkgrel=3 pkgdesc='Simple calendar (CalDAV) and contact (CardDAV) server' arch=('any') url="http://www.radicale.org/";
[arch-commits] Commit in radicale/repos (5 files)
Date: Friday, July 13, 2018 @ 20:03:09 Author: foutrelis Revision: 358819 archrelease: copy trunk to community-staging-any Added: radicale/repos/community-staging-any/ radicale/repos/community-staging-any/PKGBUILD (from rev 358818, radicale/trunk/PKGBUILD) radicale/repos/community-staging-any/radicale-sysusers.conf (from rev 358818, radicale/trunk/radicale-sysusers.conf) radicale/repos/community-staging-any/radicale-tmpfiles.conf (from rev 358818, radicale/trunk/radicale-tmpfiles.conf) radicale/repos/community-staging-any/radicale.service (from rev 358818, radicale/trunk/radicale.service) + PKGBUILD | 70 +++ radicale-sysusers.conf |2 + radicale-tmpfiles.conf |3 ++ radicale.service | 25 4 files changed, 100 insertions(+) Copied: radicale/repos/community-staging-any/PKGBUILD (from rev 358818, radicale/trunk/PKGBUILD) === --- community-staging-any/PKGBUILD (rev 0) +++ community-staging-any/PKGBUILD 2018-07-13 20:03:09 UTC (rev 358819) @@ -0,0 +1,70 @@ +# Maintainer: Moritz Lipp +# Co-Maintainer: fordprefect +# Contributor: Thor77 + +pkgname=radicale +_name=Radicale +pkgver=2.1.9 +pkgrel=3 +pkgdesc='Simple calendar (CalDAV) and contact (CardDAV) server' +arch=('any') +url="http://www.radicale.org/"; +license=('GPL3') +depends=('python-bcrypt' 'python-passlib' 'python-setuptools' 'python-vobject') +checkdepends=('python-bcrypt' 'python-pytest-cov' 'python-pytest-flake8' 'python-pytest-isort' 'python-pytest-runner') +backup=('etc/radicale/config') +source=("${pkgname}-${pkgver}.tar.gz::https://github.com/Kozea/${pkgname}/archive/${pkgver}.tar.gz"; +"${pkgname}-sysusers.conf" +"${pkgname}-tmpfiles.conf" +"${pkgname}.service") +sha512sums=('30df36772f4dd38c9c79ecd9669da8b40c7284afa9e2949c174c159838c33a66edec1a49adf7c110017dc83c592415be6fa43e2de6007d7e154b8707773c4a44' + '89ba929680490884e338acc311fb61d81f9d9f0282c92c40a80317af9e61123e4764e803d1698876417170efd40bfe7f56408570891c4e426de3be17c302' + '4570ed393b73bc5a3fd571947acae78b96b5e17f659e3169f542b9c481635680c724d5c6c0952661fae063caf04c786afe7043c5052945e7a00bb66326dec016' + '6a3452009bebc0f8680ea8e64b9a398c04f3fb6b20752c377392e22641845a04dbfda78d586271c9a25bd7d5ba42b7a8f74774afed68732f19ddd764f53e11cc') + +prepare() { + mv -v ${_name}-${pkgver} ${pkgname}-${pkgver} + cd ${pkgname}-${pkgver} + # removing version pinning, as we are rolling release + # expect to hit bugs! + sed -e 's/vobject\=\=0\.9\.5/vobject/' \ + -e 's/python-dateutil\=\=2\.6\.1/python-dateutil/' \ + -i setup.py +} + +build() { + cd "${pkgname}-${pkgver}" + python setup.py build +} + +# checks are disabled for now https://bugs.archlinux.org/task/58344 +#check() { +# cd "${pkgname}-${pkgver}" +# python setup.py test +#} + +package() { + cd "${pkgname}-${pkgver}" + python setup.py install --skip-build \ +--optimize=1 \ +--prefix=/usr \ +--root="${pkgdir}" +# config +install -vDm 644 config "${pkgdir}/etc/${pkgname}/config" +# fcgi/wsgi +install -t "${pkgdir}/usr/share/${pkgname}/" \ + -vDm 644 "${pkgname}.fcgi" \ + -vDm 644 "${pkgname}.wsgi" +# systemd service +install -vDm 644 "${srcdir}/${pkgname}.service" \ + "${pkgdir}/usr/lib/systemd/system/${pkgname}.service" +# sysusers.d +install -vDm 644 "${srcdir}/${pkgname}-sysusers.conf" \ + "${pkgdir}/usr/lib/sysusers.d/${pkgname}.conf" +# tmpfiles.d +install -vDm 644 "${srcdir}/${pkgname}-tmpfiles.conf" \ + "${pkgdir}/usr/lib/tmpfiles.d/${pkgname}.conf" +# docs +install -t "${pkgdir}/usr/share/doc/${pkgname}/" -vDm 644 {NEWS,README}.md +} + Copied: radicale/repos/community-staging-any/radicale-sysusers.conf (from rev 358818, radicale/trunk/radicale-sysusers.conf) === --- community-staging-any/radicale-sysusers.conf (rev 0) +++ community-staging-any/radicale-sysusers.conf2018-07-13 20:03:09 UTC (rev 358819) @@ -0,0 +1,2 @@ +u radicale - "Radicale user" +m radicale http Copied: radicale/repos/community-staging-any/radicale-tmpfiles.conf (from rev 358818, radicale/trunk/radicale-tmpfiles.conf) === --- community-staging-any/radicale-tmpfiles.conf (rev 0) +++ community-staging-any/radicale-tmpfiles.conf2018-07-13 20:03:09 UTC (rev 358819) @@ -0,0 +1,3 @@ +d /etc/radicale 0750 root radicale - +z /etc/radicale/config 0644 root radicale - +d /var/lib/radicale 0750 radicale radicale - Copied: radicale/repos/community-staging-any/radicale.service (from rev 358818, radicale/trunk/radicale.service)
[arch-commits] Commit in python-watchdog/repos (2 files)
Date: Friday, July 13, 2018 @ 20:02:46 Author: foutrelis Revision: 358817 archrelease: copy trunk to community-staging-any Added: python-watchdog/repos/community-staging-any/ python-watchdog/repos/community-staging-any/PKGBUILD (from rev 358816, python-watchdog/trunk/PKGBUILD) --+ PKGBUILD | 54 ++ 1 file changed, 54 insertions(+) Copied: python-watchdog/repos/community-staging-any/PKGBUILD (from rev 358816, python-watchdog/trunk/PKGBUILD) === --- community-staging-any/PKGBUILD (rev 0) +++ community-staging-any/PKGBUILD 2018-07-13 20:02:46 UTC (rev 358817) @@ -0,0 +1,54 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Francois Boulogne + +pkgname=('python-watchdog' 'python2-watchdog') +pkgver=0.8.3 +pkgrel=6 +pkgdesc="Python API and shell utilities to monitor file system events." +arch=('any') +url="https://pypi.python.org/pypi/watchdog"; +license=('Apache') +makedepends=('python-setuptools' 'python2-setuptools' 'python-pathtools' 'python2-pathtools' + 'python-yaml' 'python2-yaml' 'python-argh' 'python2-argh') +checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-pytest-timeout' 'python2-pytest-timeout') +source=(https://pypi.python.org/packages/source/w/watchdog/watchdog-${pkgver}.tar.gz) +sha256sums=('7e65882adb7746039b6f3876ee174952f8eaaa34491ba34333ddf1fe35de4162') + +prepare() { + cp -a watchdog-$pkgver{,-py2} +} + +build() { + cd "$srcdir/watchdog-$pkgver" + python setup.py build + + cd "$srcdir/watchdog-$pkgver-py2" + python2 setup.py build +} + +check() { + cd "$srcdir/watchdog-$pkgver" + python setup.py test + + cd "$srcdir/watchdog-$pkgver-py2" + python2 setup.py test +} + +package_python-watchdog() { + depends=('python-pathtools' 'python-yaml' 'python-argh') + + cd "$srcdir/watchdog-$pkgver" + python setup.py install --root="${pkgdir}" --optimize=1 +} + +package_python2-watchdog() { + depends=('python2-pathtools' 'python2-yaml' 'python2-argh') + + cd "$srcdir/watchdog-$pkgver-py2" + python2 setup.py install --root="${pkgdir}" --optimize=1 + + mv "$pkgdir/usr/bin/watchmedo"{,2} +} + +# vim:ts=2:sw=2:et:
[arch-commits] Commit in hledger-ui/repos (2 files)
Date: Friday, July 13, 2018 @ 20:02:01 Author: felixonmars Revision: 358815 archrelease: copy trunk to community-staging-x86_64 Added: hledger-ui/repos/community-staging-x86_64/ hledger-ui/repos/community-staging-x86_64/PKGBUILD (from rev 358814, hledger-ui/trunk/PKGBUILD) --+ PKGBUILD | 39 +++ 1 file changed, 39 insertions(+) Copied: hledger-ui/repos/community-staging-x86_64/PKGBUILD (from rev 358814, hledger-ui/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2018-07-13 20:02:01 UTC (rev 358815) @@ -0,0 +1,39 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +pkgname=hledger-ui +pkgver=1.10 +pkgrel=6 +pkgdesc="Curses-style user interface for the hledger accounting tool" +url="http://hledger.org"; +license=("GPL") +arch=('x86_64') +depends=('ghc-libs' 'hledger' 'haskell-hledger-lib' 'haskell-ansi-terminal' 'haskell-async' + 'haskell-base-compat-batteries' 'haskell-cmdargs' 'haskell-data-default' 'haskell-fsnotify' + 'haskell-hunit' 'haskell-microlens' 'haskell-microlens-platform' 'haskell-megaparsec' + 'haskell-pretty-show' 'haskell-safe' 'haskell-split' 'haskell-text-zipper' + 'haskell-vector' 'haskell-brick' 'haskell-vty') +makedepends=('ghc') +source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";) +sha512sums=('a493cb27f3d5ca184a46e7bb43fe14d5e7286ca6e15fa134eac966e969d45fde7c09dc1f5965f4c27609bc2b0d81bfca4c20d8242cd43bbc19e0e4ea8747c5ee') + +prepare() { +# It does nothing +sed -e '/mtl-compat/d' \ +-i ${pkgname}-${pkgver}/${pkgname}.cabal +} + +build() { +cd "${srcdir}/${pkgname}-${pkgver}" +runhaskell Setup configure -O --enable-executable-dynamic --disable-library-vanilla \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --datasubdir="$pkgname" \ +-fthreaded +runhaskell Setup build +} + +package() { +cd "${srcdir}/${pkgname}-${pkgver}" +runhaskell Setup copy --destdir="${pkgdir}" +rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE" +}
[arch-commits] Commit in python-watchdog/trunk (PKGBUILD)
Date: Friday, July 13, 2018 @ 20:02:42 Author: foutrelis Revision: 358816 Python 3.7 rebuild Modified: python-watchdog/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2018-07-13 20:02:01 UTC (rev 358815) +++ PKGBUILD2018-07-13 20:02:42 UTC (rev 358816) @@ -4,7 +4,7 @@ pkgname=('python-watchdog' 'python2-watchdog') pkgver=0.8.3 -pkgrel=5 +pkgrel=6 pkgdesc="Python API and shell utilities to monitor file system events." arch=('any') url="https://pypi.python.org/pypi/watchdog";
[arch-commits] Commit in hledger-ui/trunk (PKGBUILD)
Date: Friday, July 13, 2018 @ 20:01:39 Author: felixonmars Revision: 358814 upgpkg: hledger-ui 1.10-6 rebuild with vty 5.22 Modified: hledger-ui/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2018-07-13 20:00:38 UTC (rev 358813) +++ PKGBUILD2018-07-13 20:01:39 UTC (rev 358814) @@ -4,7 +4,7 @@ pkgname=hledger-ui pkgver=1.10 -pkgrel=5 +pkgrel=6 pkgdesc="Curses-style user interface for the hledger accounting tool" url="http://hledger.org"; license=("GPL")
[arch-commits] Commit in haskell-brick/trunk (PKGBUILD)
Date: Friday, July 13, 2018 @ 20:00:17 Author: felixonmars Revision: 358812 upgpkg: haskell-brick 0.37.1-20 rebuild with vty 5.22 Modified: haskell-brick/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2018-07-13 19:59:13 UTC (rev 358811) +++ PKGBUILD2018-07-13 20:00:17 UTC (rev 358812) @@ -5,7 +5,7 @@ _hkgname=brick pkgname=haskell-brick pkgver=0.37.1 -pkgrel=19 +pkgrel=20 pkgdesc="A declarative terminal user interface library" url="https://github.com/jtdaugherty/brick"; license=("custom:BSD3")
[arch-commits] Commit in haskell-brick/repos (2 files)
Date: Friday, July 13, 2018 @ 20:00:38 Author: felixonmars Revision: 358813 archrelease: copy trunk to community-staging-x86_64 Added: haskell-brick/repos/community-staging-x86_64/ haskell-brick/repos/community-staging-x86_64/PKGBUILD (from rev 358812, haskell-brick/trunk/PKGBUILD) --+ PKGBUILD | 43 +++ 1 file changed, 43 insertions(+) Copied: haskell-brick/repos/community-staging-x86_64/PKGBUILD (from rev 358812, haskell-brick/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2018-07-13 20:00:38 UTC (rev 358813) @@ -0,0 +1,43 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=brick +pkgname=haskell-brick +pkgver=0.37.1 +pkgrel=20 +pkgdesc="A declarative terminal user interface library" +url="https://github.com/jtdaugherty/brick"; +license=("custom:BSD3") +arch=('x86_64') +depends=('ghc-libs' 'haskell-vty' 'haskell-data-clist' 'haskell-dlist' 'haskell-microlens' + 'haskell-microlens-th' 'haskell-microlens-mtl' 'haskell-config-ini' 'haskell-vector' + 'haskell-contravariant' 'haskell-text-zipper' + 'haskell-word-wrap') +makedepends=('ghc') +source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +sha512sums=('7637d484be1bbb55f52859ef1febda5766590ce857561ba60aa204c5edbb16c6d3e83f6ff6f3717c45c1df8384902a9976e2eae22669eb310c3356b77d7f466c') + +build() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \ +--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \ +-f-demos +runhaskell Setup build +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh +sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh +} + +package() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +install -D -m744 register.sh "${pkgdir}/usr/share/haskell/register/${pkgname}.sh" +install -D -m744 unregister.sh "${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh" +runhaskell Setup copy --destdir="${pkgdir}" +install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE" +}
[arch-commits] Commit in haskell-vty/repos (2 files)
Date: Friday, July 13, 2018 @ 19:59:13 Author: felixonmars Revision: 358811 archrelease: copy trunk to community-staging-x86_64 Added: haskell-vty/repos/community-staging-x86_64/ haskell-vty/repos/community-staging-x86_64/PKGBUILD (from rev 358810, haskell-vty/trunk/PKGBUILD) --+ PKGBUILD | 51 +++ 1 file changed, 51 insertions(+) Copied: haskell-vty/repos/community-staging-x86_64/PKGBUILD (from rev 358810, haskell-vty/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2018-07-13 19:59:13 UTC (rev 358811) @@ -0,0 +1,51 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=vty +pkgname=haskell-vty +pkgver=5.22 +pkgrel=1 +pkgdesc="A simple terminal UI library" +url="https://github.com/jtdaugherty/vty"; +license=("custom:BSD3") +arch=('x86_64') +depends=('ghc-libs' 'haskell-blaze-builder' 'haskell-microlens' 'haskell-microlens-mtl' + 'haskell-microlens-th' 'haskell-hashable' 'haskell-parallel' + 'haskell-utf8-string' 'haskell-vector') +makedepends=('ghc' 'haskell-hunit' 'haskell-quickcheck' 'haskell-smallcheck' + 'haskell-quickcheck-assertions' 'haskell-test-framework' + 'haskell-test-framework-smallcheck' 'haskell-test-framework-hunit' 'haskell-random' + 'haskell-string-qq') +source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +sha512sums=('2b320ceb7599a7909a4b97b9bbb86744197c5a2953bc938b017c0f4f6799afbc181d5e92609b82acb62ed21f0a8f480cb1c3bf7f5d9c32a49b266dba4f9663b2') + +build() { +cd $_hkgname-$pkgver + +runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \ +--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid +runhaskell Setup build +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh +sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh +} + +check() { +# https://github.com/jtdaugherty/vty/issues/132 +# https://github.com/haskell/cabal/issues/4918 +cd $_hkgname-$pkgver +# runhaskell Setup test +} + +package() { +cd $_hkgname-$pkgver + +install -D -m744 register.sh "${pkgdir}/usr/share/haskell/register/${pkgname}.sh" +install -D -m744 unregister.sh "${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh" +runhaskell Setup copy --destdir="${pkgdir}" +install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE" +}
[arch-commits] Commit in haskell-vty/trunk (PKGBUILD)
Date: Friday, July 13, 2018 @ 19:58:53 Author: felixonmars Revision: 358810 upgpkg: haskell-vty 5.22-1 rebuild with vty 5.22 Modified: haskell-vty/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-07-13 19:56:34 UTC (rev 358809) +++ PKGBUILD2018-07-13 19:58:53 UTC (rev 358810) @@ -4,8 +4,8 @@ _hkgname=vty pkgname=haskell-vty -pkgver=5.21 -pkgrel=26 +pkgver=5.22 +pkgrel=1 pkgdesc="A simple terminal UI library" url="https://github.com/jtdaugherty/vty"; license=("custom:BSD3") @@ -18,7 +18,7 @@ 'haskell-test-framework-smallcheck' 'haskell-test-framework-hunit' 'haskell-random' 'haskell-string-qq') source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) -sha512sums=('63daa4030af26d7941ba317d749a08f255d2ec1a73133cbefa3df15c76a8bf111c8e815982118bee2e23102212773e57d33fd9ef34864e79d9e66b4deaf3f5da') +sha512sums=('2b320ceb7599a7909a4b97b9bbb86744197c5a2953bc938b017c0f4f6799afbc181d5e92609b82acb62ed21f0a8f480cb1c3bf7f5d9c32a49b266dba4f9663b2') build() { cd $_hkgname-$pkgver
[arch-commits] Commit in botan/trunk (PKGBUILD)
Date: Friday, July 13, 2018 @ 19:56:30 Author: foutrelis Revision: 358808 Python 3.7 rebuild Modified: botan/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2018-07-13 19:53:55 UTC (rev 358807) +++ PKGBUILD2018-07-13 19:56:30 UTC (rev 358808) @@ -8,7 +8,7 @@ pkgname=botan pkgver=2.7.0 -pkgrel=1 +pkgrel=2 pkgdesc='Crypto library written in C++' arch=('x86_64') url='https://botan.randombit.net/'
[arch-commits] Commit in botan/repos (3 files)
Date: Friday, July 13, 2018 @ 19:56:34 Author: foutrelis Revision: 358809 archrelease: copy trunk to community-staging-x86_64 Added: botan/repos/community-staging-x86_64/ botan/repos/community-staging-x86_64/PKGBUILD (from rev 358808, botan/trunk/PKGBUILD) botan/repos/community-staging-x86_64/botan.key (from rev 358808, botan/trunk/botan.key) ---+ PKGBUILD | 48 botan.key | 35 +++ 2 files changed, 83 insertions(+) Copied: botan/repos/community-staging-x86_64/PKGBUILD (from rev 358808, botan/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2018-07-13 19:56:34 UTC (rev 358809) @@ -0,0 +1,48 @@ +# $Id$ +# Maintainer: Alexander F. Rødseth +# Contributor: Angel Velasquez +# Contributor: Douglas Soares de Andrade +# Contributor: d'Ronin +# Contributor: Hexchain Tong +# Contributor: Jack Lloyd + +pkgname=botan +pkgver=2.7.0 +pkgrel=2 +pkgdesc='Crypto library written in C++' +arch=('x86_64') +url='https://botan.randombit.net/' +license=('BSD') +makedepends=('python') +optdepends=('python: for using botan2.py') +validpgpkeys=('621DAF6411E1851C4CF9A2E16211EBF1EFBADFBC') +source=("https://botan.randombit.net/releases/Botan-${pkgver}.tgz"{,.asc}) +sha256sums=('e42df91556317588c6ca0e41bf796f9bd5ec5c70e0668e6c97c608c697c24a90' +'SKIP') + +build() { + cd "${pkgname^}-$pkgver" + + # botan benefits from -O3, and upstream devs are running benchmarks with it + CXXFLAGS="$CXXFLAGS -O3" ./configure.py \ +--prefix=/usr \ +--with-bzip \ +--with-zlib \ +--with-lzma + make +} + +check() { + cd "${pkgname^}-$pkgver" + + ./botan-test +} + +package() { + DESTDIR="$pkgdir" make -C "${pkgname^}-$pkgver" install + install -Dm644 "${pkgname^}-$pkgver/license.txt" \ +"$pkgdir/usr/share/licenses/$pkgname/LICENSE" +} + +# getver: github.com/randombit/botan +# vim: ts=2 sw=2 et: Copied: botan/repos/community-staging-x86_64/botan.key (from rev 358808, botan/trunk/botan.key) === --- community-staging-x86_64/botan.key (rev 0) +++ community-staging-x86_64/botan.key 2018-07-13 19:56:34 UTC (rev 358809) @@ -0,0 +1,35 @@ +pub 2048R/EFBADFBC 2004-10-30 + Key fingerprint = 621D AF64 11E1 851C 4CF9 A2E1 6211 EBF1 EFBA DFBC +uid Botan Distribution Key + +-BEGIN PGP PUBLIC KEY BLOCK- +Version: GnuPG v2.0.17 (GNU/Linux) + +mQELBEGD1j0BCADHxPJkPcjJE+4Dlisx2hVc0Dj6JI1MSLrkM8R+2bOhVUSferxP +T1EMPhfrAdOHTAloyvRThJztnZsNKqfLL49GGcBLdEGAVNks1pG37Teze5Lx1XIu +zJFrozL2sqBy5C6nHpFgd1tcD68Rah2wp0u2cR9owXf1IqKdEfuo661+MTv7wTB1 +4hKV75nB7ZO6676SEZRILYM+7RJwKAKEmEPJc6hEf94VXn9ecNzaTlHgYkjhz9db +LOd3od9XvuUw+LMR1dwBqMxbvR90MiXjbedDEkbArcZB9YOAIvEX/lC3qaW4XJt4 +iwHWl/YVZEfALcvQywe2CDrH5hO794wd9MpBAAYptBZCb3RhbiBEaXN0cmlidXRp +b24gS2V5iQEqBBMBAgAUAhsDAh4BAheABQJKfFpnBBUKCQgACgkQYhHr8e+637xk +PQf/aOi78XenwwvFrwXOVIVTdZIf8rK1zJksf26h09UD8uVV6z5iiTcpn86+eN9p +6Ar8IH3tD+JuFnPSwZ/r9MNC2XZwenYo4Gb14jqM6/9hBe328vmeM4Y1G7bD4HrL +kgV5WEyokqm3zbp3FBLr3Vh68TAC5JB9aHevra+cCA2u3vBNI3YUM5z4TdO150P3 +J00whkqImQEUni8bgxvllBLFM+uhucsX3HZWkoDEpotbg8yd0bqMkiPEyMr1OnJq +eDVDMrB5wnyLgLFfRAAw3mopM0C1PNOAHr/BIYiaDHX2OwnOfep8rMDoRVf2Ge0D +DBgsJJ6LduQHLeg403SHWL2F6YkCHAQTAQIABgUCQYPWUgAKCRBcD5boTsFta+r9 +EACWVis7YcaGkKKgRB/5ox8rM36XVhMXdh/hnnGHt5rapbbRRkRHRcWU8WIcFO1A +59+TfwNNd8gN1MEt/5aX5KHWVKHBDexJgIxm6Dm1pisYHf/dnYQPM18hmqqwNlKY +97hFkPpHd7enrtc/SvGbQhhLXYlpwBrdMl76e9xJLnnrRQksxegGPo8cr+C9HTs1 +Lwa8zzBxyBwYBYX+0moDkDShEhuXx6mEOXrGvQanJuIvpoIwGH+62E65MbJGlwWp +w/MAtm2jFhBIhGV0bqJCFp9zIgdNgfskBaPr0oilbuJQZqP0Iqe/6CCt4XkS51yW +ZqxjLAFpEpvDec4PGw3witKf/koGon9X8C035+nEjLBrWy18Q91vw2USyLI+mm9d +iMAS8pY2gomfxBO2VwYHJryZykjCYQkccRA1tHteRj4gqTObo0Ak47y5MnplTWwi +40oP7K2cfhCRBmMioxmYES4xsHEupfRBo3xr1Jq9q0t688WTT1NXHPMPoueF9mKZ +Cf2pa9aHsqBmWTm3sCaNQKGubCDBEUmJUyndmSatJyYM7NVYoUp6EfqMACFuTNdB +sjKMh7aWVikQpbJDfA1BIU3lZeqgjgrghVAWkEOBfhG0IVZj+RVCJpsqoTJ8asY2 +VreArSCyr/VnLEnfuH/QpgvCiCbepo3E34DJt4SaAOO2ZohGBBARAgAGBQJMGVc1 +AAoJEKY/LL36AvvMgsoAn2G7kXd09BF7ffk1Sfh174SVrvM9AKC7+R7x0+yV3SCd +JkkUOo3xR5cOxw== +=1QuR +-END PGP PUBLIC KEY BLOCK-
[arch-commits] Commit in python-cairo/trunk (PKGBUILD)
Date: Friday, July 13, 2018 @ 19:54:44 Author: foutrelis Revision: 328555 Python 3.7 rebuild Modified: python-cairo/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2018-07-13 19:52:46 UTC (rev 328554) +++ PKGBUILD2018-07-13 19:54:44 UTC (rev 328555) @@ -5,7 +5,7 @@ pkgbase=python-cairo pkgname=(python-cairo python2-cairo) pkgver=1.17.0 -pkgrel=1 +pkgrel=2 pkgdesc="Python bindings for the cairo graphics library" arch=('x86_64') url="https://pycairo.readthedocs.io/en/latest/";
[arch-commits] Commit in python-cairo/repos (staging-x86_64 staging-x86_64/PKGBUILD)
Date: Friday, July 13, 2018 @ 19:55:01 Author: foutrelis Revision: 328556 archrelease: copy trunk to staging-x86_64 Added: python-cairo/repos/staging-x86_64/ python-cairo/repos/staging-x86_64/PKGBUILD (from rev 328555, python-cairo/trunk/PKGBUILD) --+ PKGBUILD | 43 +++ 1 file changed, 43 insertions(+) Copied: python-cairo/repos/staging-x86_64/PKGBUILD (from rev 328555, python-cairo/trunk/PKGBUILD) === --- staging-x86_64/PKGBUILD (rev 0) +++ staging-x86_64/PKGBUILD 2018-07-13 19:55:01 UTC (rev 328556) @@ -0,0 +1,43 @@ +# $Id$ +# Maintainer: Angel Velasquez +# Maintainer: Jan de Groot + +pkgbase=python-cairo +pkgname=(python-cairo python2-cairo) +pkgver=1.17.0 +pkgrel=2 +pkgdesc="Python bindings for the cairo graphics library" +arch=('x86_64') +url="https://pycairo.readthedocs.io/en/latest/"; +license=('LGPL2.1' 'MPL') +makedepends=(python python2 cairo git) +_commit=910ee82a5cd6fc75c23a893826d5976d8e862ea1 # tags/v1.17.0 +source=("git+https://github.com/pygobject/pycairo/#commit=$_commit";) +sha256sums=('SKIP') + +pkgver() { + cd pycairo + git describe --tags | sed 's/^v//;s/-/+/g' +} + + +build() { + cd pycairo + python2 setup.py build + python setup.py build +} + +package_python2-cairo() { + depends=('cairo' 'python2') + pkgdesc="Python2 bindings for the cairo graphics library" + + cd pycairo + python2 setup.py install --skip-build --root="${pkgdir}" --optimize='1' +} + +package_python-cairo() { + depends=('cairo' 'python') + + cd pycairo + python setup.py install --skip-build --root="${pkgdir}" --optimize='1' +}
[arch-commits] Commit in cysignals/repos (2 files)
Date: Friday, July 13, 2018 @ 19:53:55 Author: foutrelis Revision: 358807 archrelease: copy trunk to community-staging-x86_64 Added: cysignals/repos/community-staging-x86_64/ cysignals/repos/community-staging-x86_64/PKGBUILD (from rev 358806, cysignals/trunk/PKGBUILD) --+ PKGBUILD | 46 ++ 1 file changed, 46 insertions(+) Copied: cysignals/repos/community-staging-x86_64/PKGBUILD (from rev 358806, cysignals/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2018-07-13 19:53:55 UTC (rev 358807) @@ -0,0 +1,46 @@ +# $Id$ +# Maintainer: Antonio Rojas + +pkgbase=cysignals +pkgname=(python-cysignals python2-cysignals) +pkgver=1.7.2 +pkgrel=2 +pkgdesc="Interrupt and signal handling for Cython" +arch=(x86_64) +url="https://www.sagemath.org"; +license=(LGPL) +makedepends=(cython2 cython pari) +source=("https://github.com/sagemath/cysignals/releases/download/$pkgver/$pkgbase-$pkgver.tar.gz";) +sha256sums=('db245c19248a869add480e50e5bd97d282176a74b8c6ca7a0072192e576afc67') + +prepare() { + cp -r $pkgbase-$pkgver{,-py2} +} + +build() { + cd $pkgbase-$pkgver + python setup.py build + + cd "$srcdir"/$pkgbase-$pkgver-py2 + python2 setup.py build +} + +package_python-cysignals() { + depends=(python pari) + + cd $pkgbase-$pkgver + python setup.py install --root="$pkgdir" + +# Keep scripts in python2 package + rm -r "$pkgdir"/usr/{bin,share} +} + +package_python2-cysignals() { + depends=(python2 pari) + conflicts=(cysignals) + provides=(cysignals) + replaces=(cysignals) + + cd $pkgbase-$pkgver-py2 + python2 setup.py install --root="$pkgdir" +}
[arch-commits] Commit in cysignals/trunk (PKGBUILD)
Date: Friday, July 13, 2018 @ 19:53:38 Author: foutrelis Revision: 358806 Python 3.7 rebuild Modified: cysignals/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2018-07-13 19:52:35 UTC (rev 358805) +++ PKGBUILD2018-07-13 19:53:38 UTC (rev 358806) @@ -4,7 +4,7 @@ pkgbase=cysignals pkgname=(python-cysignals python2-cysignals) pkgver=1.7.2 -pkgrel=1 +pkgrel=2 pkgdesc="Interrupt and signal handling for Cython" arch=(x86_64) url="https://www.sagemath.org";
[arch-commits] Commit in python-requests-oauthlib/repos (2 files)
Date: Friday, July 13, 2018 @ 19:52:35 Author: foutrelis Revision: 358805 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 358804, python-requests-oauthlib/trunk/PKGBUILD) --+ PKGBUILD | 55 +++ 1 file changed, 55 insertions(+) Copied: python-requests-oauthlib/repos/community-staging-any/PKGBUILD (from rev 358804, python-requests-oauthlib/trunk/PKGBUILD) === --- community-staging-any/PKGBUILD (rev 0) +++ community-staging-any/PKGBUILD 2018-07-13 19:52:35 UTC (rev 358805) @@ -0,0 +1,55 @@ +# $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') +pkgver=1.0.0 +pkgrel=2 +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-requests-mock' 'python2-requests-mock' + 'python-mock' 'python2-mock' 'python-pyjwt' 'python2-pyjwt') +source=("$pkgbase-$pkgver.tar.gz::https://github.com/requests/requests-oauthlib/archive/v$pkgver.tar.gz";) +sha512sums=('5ceac61f14044b7c7ec4c26f68fc7b4ab6eda1529c367fead3e8aa5049b4aad12c76511861c13f2d62d11ec7ecd1d870ff69c7261bd51bcb01aa6d2e3ba5aa99') + +prepare() { + cp -a requests-oauthlib-$pkgver{,-py2} +} + +build() { + cd "$srcdir"/requests-oauthlib-$pkgver + python setup.py build + + cd "$srcdir"/requests-oauthlib-$pkgver-py2 + python2 setup.py build +} + +check() { + cd "$srcdir"/requests-oauthlib-$pkgver + py.test + + cd "$srcdir"/requests-oauthlib-$pkgver-py2 + py.test2 +} + +package_python-requests-oauthlib() { + depends=('python-requests' 'python-oauthlib') + + cd requests-oauthlib-$pkgver + 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 requests-oauthlib-$pkgver-py2 + python2 setup.py install --root="$pkgdir/" --optimize=1 + install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/$pkgname/LICENSE" +}
[arch-commits] Commit in lirc/repos (5 files)
Date: Friday, July 13, 2018 @ 19:52:46 Author: foutrelis Revision: 328554 archrelease: copy trunk to staging-x86_64 Added: lirc/repos/staging-x86_64/ lirc/repos/staging-x86_64/PKGBUILD (from rev 328553, lirc/trunk/PKGBUILD) lirc/repos/staging-x86_64/lirc-0.10-build-fix.patch (from rev 328553, lirc/trunk/lirc-0.10-build-fix.patch) lirc/repos/staging-x86_64/lirc.logrotate (from rev 328553, lirc/trunk/lirc.logrotate) lirc/repos/staging-x86_64/lirc.tmpfiles (from rev 328553, lirc/trunk/lirc.tmpfiles) ---+ PKGBUILD | 55 lirc-0.10-build-fix.patch | 30 lirc.logrotate|5 lirc.tmpfiles |1 4 files changed, 91 insertions(+) Copied: lirc/repos/staging-x86_64/PKGBUILD (from rev 328553, lirc/trunk/PKGBUILD) === --- staging-x86_64/PKGBUILD (rev 0) +++ staging-x86_64/PKGBUILD 2018-07-13 19:52:46 UTC (rev 328554) @@ -0,0 +1,55 @@ +# Maintainer: Lukas Fleischer +# Contributor: Paul Mattal + +pkgname=lirc +_pkgver=0.10.1 +[[ $_pkgver =~ [a-z]$ ]] && pkgver="${_pkgver:0:-1}.${_pkgver: -1}" || pkgver="$_pkgver" +pkgrel=2 +epoch=1 +pkgdesc="Linux Infrared Remote Control utilities" +arch=('x86_64') +url="http://www.lirc.org/"; +license=('GPL') +depends=('alsa-lib' 'libx11' 'libftdi' 'libusb-compat') +makedepends=('help2man' 'alsa-lib' 'libx11' 'libxslt' 'python' 'python-setuptools') +optdepends=('python: for lirc-setup, irdb-get and pronto2lirc') +provides=('lirc-utils') +conflicts=('lirc-utils') +replaces=('lirc-utils') +backup=('etc/lirc/lirc_options.conf' 'etc/lirc/lircd.conf' 'etc/lirc/lircmd.conf') +source=("http://prdownloads.sourceforge.net/${pkgname}/${pkgname}-${_pkgver}.tar.bz2"; +lirc-0.10-build-fix.patch +lirc.logrotate +lirc.tmpfiles) +sha1sums=('9d6f6d18ac566a96ef4ca1d6909a4e8bc517d48a' + '952ce902c94d822b0113d8e74bc6fda6a551ad7e' + '4342b004eb53d51fcbb9af2cf136bb4990874608' + '5cd3f206e6e60632d9bea2ce9d22dbe5283eb129') + +prepare() { + cd "${srcdir}/lirc-${_pkgver}" + + patch -p1 -i ../lirc-0.10-build-fix.patch + + autoreconf -fi + automake -ac +} + +build() { + cd "${srcdir}/lirc-${_pkgver}" + + HAVE_UINPUT=1 ./configure --prefix=/usr --sbindir=/usr/bin --sysconfdir=/etc --localstatedir=/var + sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool + make +} + +package() { + cd "${srcdir}/lirc-${_pkgver}" + + make DESTDIR="${pkgdir}" -j1 install + + install -Dm644 "${srcdir}"/lirc.tmpfiles "${pkgdir}"/usr/lib/tmpfiles.d/lirc.conf + install -Dm644 "${srcdir}"/lirc.logrotate "${pkgdir}"/etc/logrotate.d/lirc + + rmdir "${pkgdir}"/var/{run/lirc/,run/} +} Copied: lirc/repos/staging-x86_64/lirc-0.10-build-fix.patch (from rev 328553, lirc/trunk/lirc-0.10-build-fix.patch) === --- staging-x86_64/lirc-0.10-build-fix.patch(rev 0) +++ staging-x86_64/lirc-0.10-build-fix.patch2018-07-13 19:52:46 UTC (rev 328554) @@ -0,0 +1,30 @@ +diff --git a/configure.ac b/configure.ac +index 58347d8..8c7fca2 100644 +--- a/configure.ac b/configure.ac +@@ -77,15 +77,10 @@ AC_TYPE_UINT64_T + + dnl AC_TYPE_GETGROUPS seems broken on recent MacOS, so: + AC_MSG_CHECKING([Figure out if getgrouplist() needs gid_t or int]) +-oldcflags="$CFLAGS" +-export CFLAGS=-Werror + AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ + #include +-#include +- ]], [[ +-gid_t groups[32]; int ngroups; const char* user = "root"; +-getgrouplist(user, 1, groups, &ngroups); +- ]])],[ ++int getgroups(int gidsetsize, gid_t grouplist[]); ++ ]], [[ ]])],[ + AC_MSG_RESULT(gid_t) + AC_DEFINE(GETGROUPS_T,[gid_t]) + ],[ +@@ -93,7 +88,6 @@ getgrouplist(user, 1, groups, &ngroups); + AC_DEFINE(GETGROUPS_T,[int]) + ] + ) +-export CFLAGS="$oldcflags" + + dnl Checks for library functions. + AC_CHECK_FUNCS(gethostname gettimeofday mkfifo select socket strdup \ Copied: lirc/repos/staging-x86_64/lirc.logrotate (from rev 328553, lirc/trunk/lirc.logrotate) === --- staging-x86_64/lirc.logrotate (rev 0) +++ staging-x86_64/lirc.logrotate 2018-07-13 19:52:46 UTC (rev 328554) @@ -0,0 +1,5 @@ +/var/log/lircd { + missingok + notifempty + delaycompress +} Copied: lirc/repos/staging-x86_64/lirc.tmpfiles (from rev 328553, lirc/trunk/lirc.tmpfiles) === --- staging-x86_64/lirc.tmpfiles(rev 0) +++ staging-x86_64/lirc.tmpfiles2018-07-13 19:52:46 UTC (rev 328554) @@ -0,0 +1 @@ +d /run/lirc 0755 root root -
[arch-commits] Commit in lirc/trunk (PKGBUILD)
Date: Friday, July 13, 2018 @ 19:52:28 Author: foutrelis Revision: 328553 Python 3.7 rebuild Modified: lirc/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2018-07-13 19:50:46 UTC (rev 328552) +++ PKGBUILD2018-07-13 19:52:28 UTC (rev 328553) @@ -4,7 +4,7 @@ pkgname=lirc _pkgver=0.10.1 [[ $_pkgver =~ [a-z]$ ]] && pkgver="${_pkgver:0:-1}.${_pkgver: -1}" || pkgver="$_pkgver" -pkgrel=1 +pkgrel=2 epoch=1 pkgdesc="Linux Infrared Remote Control utilities" arch=('x86_64')
[arch-commits] Commit in python-requests-oauthlib/trunk (PKGBUILD)
Date: Friday, July 13, 2018 @ 19:52:24 Author: foutrelis Revision: 358804 Python 3.7 rebuild Modified: python-requests-oauthlib/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2018-07-13 19:51:30 UTC (rev 358803) +++ PKGBUILD2018-07-13 19:52:24 UTC (rev 358804) @@ -6,7 +6,7 @@ pkgbase=python-requests-oauthlib pkgname=('python-requests-oauthlib' 'python2-requests-oauthlib') pkgver=1.0.0 -pkgrel=1 +pkgrel=2 pkgdesc="First-class OAuth library support for Requests" arch=('any') url="https://pypi.python.org/pypi/requests-oauthlib";
[arch-commits] Commit in twine/trunk (PKGBUILD)
Date: Friday, July 13, 2018 @ 19:51:07 Author: foutrelis Revision: 358800 Python 3.7 rebuild Modified: twine/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2018-07-13 19:49:52 UTC (rev 358799) +++ PKGBUILD2018-07-13 19:51:07 UTC (rev 358800) @@ -5,7 +5,7 @@ pkgbase=twine pkgname=('twine' 'python2-twine') pkgver=1.11.0 -pkgrel=1 +pkgrel=2 pkgdesc='Collection of utilities for interacting with PyPI' arch=('any') url='https://pypi.python.org/pypi/twine'
[arch-commits] Commit in python-tinycss2/repos (2 files)
Date: Friday, July 13, 2018 @ 19:51:30 Author: foutrelis Revision: 358803 archrelease: copy trunk to community-staging-any Added: python-tinycss2/repos/community-staging-any/ python-tinycss2/repos/community-staging-any/PKGBUILD (from rev 358802, python-tinycss2/trunk/PKGBUILD) --+ PKGBUILD | 55 +++ 1 file changed, 55 insertions(+) Copied: python-tinycss2/repos/community-staging-any/PKGBUILD (from rev 358802, python-tinycss2/trunk/PKGBUILD) === --- community-staging-any/PKGBUILD (rev 0) +++ community-staging-any/PKGBUILD 2018-07-13 19:51:30 UTC (rev 358803) @@ -0,0 +1,55 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Simon Sapin +# Contributor: Kyle Keen + +pkgbase=python-tinycss2 +pkgname=(python-tinycss2 python2-tinycss2) +pkgver=0.6.1 +pkgrel=2 +pkgdesc="Low-level CSS parser for Python" +url="https://pypi.python.org/pypi/tinycss2"; +license=('BSD') +arch=('any') +makedepends=('python-setuptools' 'python2-setuptools' 'python-webencodings' 'python2-webencodings') +checkdepends=('python-pytest-flake8' 'python2-pytest-flake8' 'python-pytest-cov' + 'python2-pytest-cov' 'python-pytest-isort' 'python2-pytest-isort' + 'python-pytest-runner' 'python2-pytest-runner') +source=("https://pypi.io/packages/source/t/tinycss2/tinycss2-$pkgver.tar.gz";) +md5sums=('8dea5867b810e30a029c54e29a4dce4d') + +prepare() { + cp -a tinycss2-$pkgver{,-py2} +} + +build() { + cd "$srcdir"/tinycss2-$pkgver + python setup.py build + + cd "$srcdir"/tinycss2-$pkgver-py2 + python2 setup.py build +} + +check() { + cd "$srcdir"/tinycss2-$pkgver + python setup.py pytest + + cd "$srcdir"/tinycss2-$pkgver-py2 + python2 setup.py pytest +} + +package_python-tinycss2() { + depends=('python-webencodings') + + cd tinycss2-$pkgver + python3 setup.py install --root="$pkgdir" --optimize=1 + install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE +} + +package_python2-tinycss2() { + depends=('python2-webencodings') + + cd tinycss2-$pkgver-py2 + python2 setup.py install --root="$pkgdir" --optimize=1 + install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE +}
[arch-commits] Commit in twine/repos (2 files)
Date: Friday, July 13, 2018 @ 19:51:19 Author: foutrelis Revision: 358801 archrelease: copy trunk to community-staging-any Added: twine/repos/community-staging-any/ twine/repos/community-staging-any/PKGBUILD (from rev 358800, twine/trunk/PKGBUILD) --+ PKGBUILD | 59 +++ 1 file changed, 59 insertions(+) Copied: twine/repos/community-staging-any/PKGBUILD (from rev 358800, twine/trunk/PKGBUILD) === --- community-staging-any/PKGBUILD (rev 0) +++ community-staging-any/PKGBUILD 2018-07-13 19:51:19 UTC (rev 358801) @@ -0,0 +1,59 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Chris Warrick + +pkgbase=twine +pkgname=('twine' 'python2-twine') +pkgver=1.11.0 +pkgrel=2 +pkgdesc='Collection of utilities for interacting with PyPI' +arch=('any') +url='https://pypi.python.org/pypi/twine' +license=('Apache') +makedepends=('python-setuptools' 'python2-setuptools' 'python-requests-toolbelt' + 'python2-requests-toolbelt' 'python-pkginfo' 'python2-pkginfo' 'python-tqdm' + 'python2-tqdm') +checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'python-pretend' 'python2-pretend') +source=("$pkgbase-$pkgver.tar.gz::https://github.com/pypa/twine/archive/$pkgver.tar.gz";) +sha512sums=('28e588f26b59bc9f4a8481caf2353934ad6927734762ffebb4416c147ec9e6dffb37092def20a76eb888c94b27f97e013dacc42c63e5dcda30f4290bb6c90a22') + +prepare() { + cp -a twine-$pkgver{,-py2} +} + +build() { + cd "$srcdir"/twine-$pkgver + python setup.py build + + cd "$srcdir"/twine-$pkgver-py2 + python2 setup.py build +} + +check() { + cd "$srcdir"/twine-$pkgver + python setup.py pytest + + cd "$srcdir"/twine-$pkgver-py2 + python2 setup.py pytest +} + +package_twine() { + depends=('python-setuptools' 'python-requests-toolbelt' 'python-pkginfo' 'python-tqdm') + provides=('python-twine') + conflicts=('python-twine') + replaces=('python-twine') + + cd twine-$pkgver + python3 setup.py install --root="$pkgdir" --optimize=1 + ln -s twine "$pkgdir"/usr/bin/twine3 +} + +package_python2-twine() { + depends=('python2-setuptools' 'python2-requests-toolbelt' 'python2-pkginfo' 'python2-tqdm') + + cd twine-$pkgver-py2 + python2 setup.py install --root="$pkgdir" --optimize=1 + mv "$pkgdir"/usr/bin/twine{,2} +} + +# vim:set ts=2 sw=2 et:
[arch-commits] Commit in python-tinycss2/trunk (PKGBUILD)
Date: Friday, July 13, 2018 @ 19:51:20 Author: foutrelis Revision: 358802 Python 3.7 rebuild Modified: python-tinycss2/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2018-07-13 19:51:19 UTC (rev 358801) +++ PKGBUILD2018-07-13 19:51:20 UTC (rev 358802) @@ -6,7 +6,7 @@ pkgbase=python-tinycss2 pkgname=(python-tinycss2 python2-tinycss2) pkgver=0.6.1 -pkgrel=1 +pkgrel=2 pkgdesc="Low-level CSS parser for Python" url="https://pypi.python.org/pypi/tinycss2"; license=('BSD')