[arch-commits] Commit in nvidia-340xx/repos (3 files)

2018-12-21 Thread Jan Steffens via arch-commits
Date: Saturday, December 22, 2018 @ 05:32:25
  Author: heftig
Revision: 342658

archrelease: copy trunk to staging-x86_64

Added:
  nvidia-340xx/repos/staging-x86_64/
  nvidia-340xx/repos/staging-x86_64/PKGBUILD
(from rev 342656, nvidia-340xx/trunk/PKGBUILD)
  nvidia-340xx/repos/staging-x86_64/kernel-4.11.patch
(from rev 342656, nvidia-340xx/trunk/kernel-4.11.patch)

---+
 PKGBUILD  |   72 
 kernel-4.11.patch |   38 +++
 2 files changed, 110 insertions(+)

Copied: nvidia-340xx/repos/staging-x86_64/PKGBUILD (from rev 342656, 
nvidia-340xx/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2018-12-22 05:32:25 UTC (rev 342658)
@@ -0,0 +1,72 @@
+# Maintainer: Giancarlo Razzolini 
+# Contributor: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgbase=nvidia-340xx
+pkgname=(nvidia-340xx nvidia-340xx-dkms)
+pkgver=340.107
+_extramodules=extramodules-ARCH
+pkgrel=51
+pkgdesc="NVIDIA drivers for linux, 340xx legacy branch"
+arch=('x86_64')
+url="http://www.nvidia.com/;
+makedepends=("nvidia-340xx-utils=${pkgver}" 'linux' 'linux-headers>=4.19' 
'linux-headers<4.20')
+conflicts=('nvidia')
+license=('custom')
+options=('!strip')
+source=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;
+'kernel-4.11.patch')
+sha512sums=('0de6f182d67bd322df7ae04e74c0cde6973c55bfea47a8f2503a29f8a899cd1b801ae4b52d066628df4a4f9c84e5e7547465bdc37d1b87df47af43fdab23466f'
+
'c25d90499e1deb26129a67dd7e953be8c1e31c5770e2b8b64d03af54cf1afec1a52636e74900f8ac468692207ab8a3765a12edd581142c4d2cfd2d6e66ac7ac2')
+
+_pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
+
+prepare() {
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}"
+# patches here
+
+patch -Np0 < "${srcdir}/kernel-4.11.patch"
+
+cp -a kernel kernel-dkms
+}
+
+build() {
+_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+cd "${_pkg}"/kernel
+make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
+
+cd uvm
+make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
+}
+
+package_nvidia-340xx() {
+pkgdesc="NVIDIA drivers for linux, 340xx legacy branch"
+depends=('linux>=4.19' 'linux<4.20' "nvidia-340xx-utils=${pkgver}" 'libgl')
+
+install -Dt "${pkgdir}/usr/lib/modules/${_extramodules}" -m644 \
+  "${srcdir}/${_pkg}/kernel"/{nvidia,uvm/nvidia-uvm}.ko
+
+find "${pkgdir}" -name '*.ko' -exec gzip -n {} +
+
+echo "blacklist nouveau" |
+install -Dm644 /dev/stdin 
"${pkgdir}/usr/lib/modprobe.d/${pkgname}.conf"
+}
+
+package_nvidia-340xx-dkms() {
+pkgdesc="NVIDIA driver sources for linux, 340xx legacy branch"
+depends=('dkms' "nvidia-340xx-utils=$pkgver" 'libgl')
+optdepends=('linux-headers: Build the module for Arch kernel'
+'linux-lts-headers: Build the module for LTS Arch kernel')
+provides=("nvidia-340xx=$pkgver")
+conflicts+=('nvidia-340xx')
+
+cd ${_pkg}
+
+install -dm 755 "${pkgdir}"/usr/src
+cp -dr --no-preserve='ownership' kernel-dkms 
"${pkgdir}/usr/src/nvidia-${pkgver}"
+cat "${pkgdir}"/usr/src/nvidia-${pkgver}/uvm/dkms.conf.fragment >> 
"${pkgdir}"/usr/src/nvidia-${pkgver}/dkms.conf
+
+echo "blacklist nouveau" |
+install -Dm644 /dev/stdin 
"${pkgdir}/usr/lib/modprobe.d/${pkgname}.conf"
+}

Copied: nvidia-340xx/repos/staging-x86_64/kernel-4.11.patch (from rev 342656, 
nvidia-340xx/trunk/kernel-4.11.patch)
===
--- staging-x86_64/kernel-4.11.patch(rev 0)
+++ staging-x86_64/kernel-4.11.patch2018-12-22 05:32:25 UTC (rev 342658)
@@ -0,0 +1,38 @@
+--- kernel/uvm/nvidia_uvm_lite.c   2017-09-27 13:50:46.334075042 +0200
 kernel/uvm/nvidia_uvm_lite.c   2017-09-27 13:56:06.358041280 +0200
+@@ -818,7 +818,11 @@
+ }
+ 
+ #if defined(NV_VM_OPERATIONS_STRUCT_HAS_FAULT)
++#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 11, 0)
+ int _fault(struct vm_area_struct *vma, struct vm_fault *vmf)
++#else 
++int _fault(struct vm_fault *vmf)  
++#endif
+ {
+ #if defined(NV_VM_FAULT_HAS_ADDRESS)
+ unsigned long vaddr = vmf->address;
+@@ -828,7 +832,11 @@
+ struct page *page = NULL;
+ int retval;
+ 
++#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 11, 0)
+ retval = _fault_common(vma, vaddr, , vmf->flags);
++#else
++retval = _fault_common(NULL, vaddr, , vmf->flags);
++#endif
+ 
+ vmf->page = page;
+ 
+@@ -866,7 +874,11 @@
+ // it's dealing with anonymous mapping (see handle_pte_fault).
+ //
+ #if defined(NV_VM_OPERATIONS_STRUCT_HAS_FAULT)
++#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 11, 0)
+ int _sigbus_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
++#else
++int _sigbus_fault(struct vm_fault *vmf)
++#endif
+ {
+ 

[arch-commits] Commit in tp_smapi/repos (2 files)

2018-12-21 Thread Jan Steffens via arch-commits
Date: Saturday, December 22, 2018 @ 05:32:22
  Author: heftig
Revision: 417510

archrelease: copy trunk to community-staging-x86_64

Added:
  tp_smapi/repos/community-staging-x86_64/
  tp_smapi/repos/community-staging-x86_64/PKGBUILD
(from rev 417504, tp_smapi/trunk/PKGBUILD)

--+
 PKGBUILD |   49 +
 1 file changed, 49 insertions(+)

Copied: tp_smapi/repos/community-staging-x86_64/PKGBUILD (from rev 417504, 
tp_smapi/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-12-22 05:32:22 UTC (rev 417510)
@@ -0,0 +1,49 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: xduugu
+# Contributor: nh2
+# Contributor: Steven Davidovitz 
+# Contributor: Nick B 
+# Contributor: Christof Musik 
+# Contributor: Stefan Rupp 
+# Contributor: Ignas Anikevicius 
+
+pkgname=tp_smapi
+pkgver=0.43
+pkgrel=76
+pkgdesc="Modules for ThinkPad's SMAPI functionality"
+arch=('x86_64')
+url='https://github.com/evgeni/tp_smapi'
+license=('GPL')
+depends=('linux>=4.19' 'linux<4.20')
+makedepends=('linux-headers>=4.19' 'linux-headers<4.20' 'git')
+_extradir=/usr/lib/modules/extramodules-ARCH
+_commit=a63729ab30d85430048f65c37f29188ab484cd52  # tags/tp-smapi/0.43
+source=("git+https://github.com/evgeni/tp_smapi#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^tp-smapi\///;s/-/+/g'
+}
+
+build() {
+  cd $pkgname
+
+  # https://bugs.archlinux.org/task/54975 (kernel has no 
_GLOBAL_OFFSET_TABLE_):
+  # Clear EXTRA_CFLAGS since it defaults to injecting CFLAGS and -fno-plt 
breaks the modules
+
+  make HDAPS=1 KVER="$(<$_extradir/version)" EXTRA_CFLAGS=
+}
+
+package() {
+  cd $pkgname
+
+  # install kernel modules
+  find . -name "*.ko" -exec install -Dt "$pkgdir$_extradir" {} +
+
+  # compress kernel modules
+  find "$pkgdir" -name "*.ko" -exec xz {} +
+
+  # load module on startup
+  echo tp_smapi | install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/modules-load.d/$pkgname.conf"
+}


[arch-commits] Commit in acpi_call/repos (3 files)

2018-12-21 Thread Jan Steffens via arch-commits
Date: Saturday, December 22, 2018 @ 05:32:20
  Author: heftig
Revision: 417508

archrelease: copy trunk to community-staging-x86_64

Added:
  acpi_call/repos/community-staging-x86_64/
  acpi_call/repos/community-staging-x86_64/PKGBUILD
(from rev 417504, acpi_call/trunk/PKGBUILD)
  acpi_call/repos/community-staging-x86_64/dkms.conf
(from rev 417504, acpi_call/trunk/dkms.conf)

---+
 PKGBUILD  |   61 
 dkms.conf |9 
 2 files changed, 70 insertions(+)

Copied: acpi_call/repos/community-staging-x86_64/PKGBUILD (from rev 417504, 
acpi_call/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-12-22 05:32:20 UTC (rev 417508)
@@ -0,0 +1,61 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: mortzu 
+# Contributor: fnord0 
+
+pkgbase=acpi_call
+pkgname=(acpi_call acpi_call-dkms)
+pkgver=1.1.0
+pkgrel=182
+pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
+url='https://github.com/mkottman/acpi_call'
+arch=('x86_64')
+license=('GPL')
+depends=('linux>=4.19' 'linux<4.20')
+makedepends=('linux-headers>=4.19' 'linux-headers<4.20')
+_extramodules=extramodules-ARCH
+source=("acpi_call-${pkgver}.tar.gz::https://github.com/mkottman/acpi_call/archive/v${pkgver}.tar.gz;
+dkms.conf)
+sha256sums=('d0d14b42944282724fca76f57d598eed794ef97448f387d1c489d85ad813f2f0'
+'32e6ea6523b13132c6c7838bba7fbf3d040ba2d35a892c2c356245612720df8a')
+
+prepare() {
+  cd $pkgbase-$pkgver
+
+  # Fix build with Linux >= 3.17
+  sed -i 's|acpi/acpi.h|linux/acpi.h|' acpi_call.c
+
+  # Fix build with Linux >= 4.12
+  sed -i 's|asm/uaccess.h|linux/uaccess.h|' acpi_call.c
+}
+
+build() {
+  cd $pkgbase-$pkgver
+  make KVERSION="$(cat /usr/lib/modules/$_extramodules/version)"
+}
+
+package_acpi_call() {
+  cd $pkgbase-$pkgver
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m644 *.ko
+  find "$pkgdir" -name '*.ko' -exec xz {} +
+
+  echo acpi_call | install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/modules-load.d/acpi_call.conf"
+
+  mkdir -p "$pkgdir/usr/share/acpi_call"
+  cp -t "$pkgdir/usr/share/acpi_call" -dr --no-preserve=ownership examples 
support
+}
+
+package_acpi_call-dkms() {
+  depends=(dkms)
+  provides=("acpi_call=$pkgver-$pkgrel")
+  conflicts=(acpi_call)
+
+  cd $pkgbase-$pkgver
+  install -Dt "$pkgdir/usr/src/$pkgbase-$pkgver" -m644 Makefile acpi_call.c 
../dkms.conf
+
+  echo acpi_call | install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/modules-load.d/acpi_call.conf"
+
+  mkdir -p "$pkgdir/usr/share/acpi_call"
+  cp -t "$pkgdir/usr/share/acpi_call" -dr --no-preserve=ownership examples 
support
+}
+
+# vim:set ts=2 sw=2 et:

Copied: acpi_call/repos/community-staging-x86_64/dkms.conf (from rev 417504, 
acpi_call/trunk/dkms.conf)
===
--- community-staging-x86_64/dkms.conf  (rev 0)
+++ community-staging-x86_64/dkms.conf  2018-12-22 05:32:20 UTC (rev 417508)
@@ -0,0 +1,9 @@
+PACKAGE_NAME="acpi_call"
+PACKAGE_VERSION="#MODULE_VERSION#"
+AUTOINSTALL="yes"
+
+MAKE[0]="make KVERSION=$kernelver"
+CLEAN="make clean"
+
+BUILT_MODULE_NAME[0]="acpi_call"
+DEST_MODULE_LOCATION[0]="/kernel/drivers/acpi"


[arch-commits] Commit in nvidia/repos (3 files)

2018-12-21 Thread Jan Steffens via arch-commits
Date: Saturday, December 22, 2018 @ 05:32:27
  Author: heftig
Revision: 342659

archrelease: copy trunk to staging-x86_64

Added:
  nvidia/repos/staging-x86_64/
  nvidia/repos/staging-x86_64/PKGBUILD
(from rev 342656, nvidia/trunk/PKGBUILD)
  nvidia/repos/staging-x86_64/kernel-4.16.patch
(from rev 342657, nvidia/trunk/kernel-4.16.patch)

---+
 PKGBUILD  |   86 
 kernel-4.16.patch |   33 +++
 2 files changed, 119 insertions(+)

Copied: nvidia/repos/staging-x86_64/PKGBUILD (from rev 342656, 
nvidia/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2018-12-22 05:32:27 UTC (rev 342659)
@@ -0,0 +1,86 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgbase=nvidia
+pkgname=(nvidia nvidia-dkms)
+pkgver=415.25
+_extramodules=extramodules-ARCH
+pkgrel=4
+pkgdesc="NVIDIA drivers for linux"
+arch=('x86_64')
+url="http://www.nvidia.com/;
+makedepends=("nvidia-utils=${pkgver}" 'libglvnd' 'linux' 'linux-headers>=4.19' 
'linux-headers<4.20')
+license=('custom')
+options=('!strip')
+_pkg="NVIDIA-Linux-x86_64-${pkgver}"
+source=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/${_pkg}.run;
+kernel-4.16.patch)
+sha512sums=('d289a37344916f5d17425f17d0530a7838b264c49866a0148665c9b87dcb7c23e868abae866a2568abac425701149d9075da540dd0f45f3d18f67b57102c0857'
+
'ad1185d998adbf89abf7aea300e5b3bbabe2296016f42592fbc232a6c3983f233df1103d37f35a041f12cc1c722d3edce813a4a1b215784a49c7f0e3e652b5af')
+
+prepare() {
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}"
+
+# Restore phys_to_dma support (still needed for 396.18)
+# https://bugs.archlinux.org/task/58074
+patch -Np1 -i ../kernel-4.16.patch
+
+cp -a kernel kernel-dkms
+cd kernel-dkms
+sed -i "s/__VERSION_STRING/${pkgver}/" dkms.conf
+sed -i 's/__JOBS/`nproc`/' dkms.conf
+sed -i 's/__DKMS_MODULES//' dkms.conf
+sed -i '$iBUILT_MODULE_NAME[0]="nvidia"\
+DEST_MODULE_LOCATION[0]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[1]="nvidia-uvm"\
+DEST_MODULE_LOCATION[1]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[2]="nvidia-modeset"\
+DEST_MODULE_LOCATION[2]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[3]="nvidia-drm"\
+DEST_MODULE_LOCATION[3]="/kernel/drivers/video"' dkms.conf
+
+# Gift for linux-rt guys
+sed -i 's/NV_EXCLUDE_BUILD_MODULES/IGNORE_PREEMPT_RT_PRESENCE=1 
NV_EXCLUDE_BUILD_MODULES/' dkms.conf
+}
+
+build() {
+_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+cd "${_pkg}"/kernel
+make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
+}
+
+package_nvidia() {
+pkgdesc="NVIDIA drivers for linux"
+depends=('linux>=4.19' 'linux<4.20' "nvidia-utils=${pkgver}" 'libglvnd')
+
+install -Dt "${pkgdir}/usr/lib/modules/${_extramodules}" -m644 \
+  "${srcdir}/${_pkg}/kernel"/nvidia{,-modeset,-drm,-uvm}.ko
+
+find "${pkgdir}" -name '*.ko' -exec gzip -n {} +
+
+echo "blacklist nouveau" |
+install -Dm644 /dev/stdin 
"${pkgdir}/usr/lib/modprobe.d/${pkgname}.conf"
+
+install -Dt "${pkgdir}/usr/share/licenses/${pkgname}" -m644 
"${srcdir}/${_pkg}/LICENSE"
+}
+
+package_nvidia-dkms() {
+pkgdesc="NVIDIA driver sources for linux"
+depends=('dkms' "nvidia-utils=$pkgver" 'libglvnd')
+optdepends=('linux-headers: Build the module for Arch kernel'
+'linux-lts-headers: Build the module for LTS Arch kernel')
+provides=("nvidia=$pkgver")
+conflicts+=('nvidia')
+
+cd ${_pkg}
+
+install -dm 755 "${pkgdir}"/usr/src
+cp -dr --no-preserve='ownership' kernel-dkms 
"${pkgdir}/usr/src/nvidia-${pkgver}"
+
+echo "blacklist nouveau" |
+install -Dm644 /dev/stdin 
"${pkgdir}/usr/lib/modprobe.d/${pkgname}.conf"
+
+install -Dt "${pkgdir}/usr/share/licenses/${pkgname}" -m644 
"${srcdir}/${_pkg}/LICENSE"
+}

Copied: nvidia/repos/staging-x86_64/kernel-4.16.patch (from rev 342657, 
nvidia/trunk/kernel-4.16.patch)
===
--- staging-x86_64/kernel-4.16.patch(rev 0)
+++ staging-x86_64/kernel-4.16.patch2018-12-22 05:32:27 UTC (rev 342659)
@@ -0,0 +1,33 @@
+diff --git a/kernel/common/inc/nv-linux.h b/kernel/common/inc/nv-linux.h
+index 10fc418..22ef968 100644
+--- a/kernel/common/inc/nv-linux.h
 b/kernel/common/inc/nv-linux.h
+@@ -175,7 +175,11 @@ static inline uid_t __kuid_val(kuid_t uid)
+ 
+ #if defined(NV_VM_INSERT_PAGE_PRESENT)
+ #include 
++#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 16, 0)
+ #include 
++#else
++#include 
++#endif
+ #endif
+ 
+ #if defined(CONFIG_SWIOTLB) && defined(NVCPU_AARCH64)
+diff --git a/kernel/conftest.sh b/kernel/conftest.sh
+index b23dbb4..42dc576 100755
+--- a/kernel/conftest.sh
 b/kernel/conftest.sh
+@@ -1906,7 +1906,12 @@ 

[arch-commits] Commit in nvidia-390xx/repos (4 files)

2018-12-21 Thread Jan Steffens via arch-commits
Date: Saturday, December 22, 2018 @ 05:32:22
  Author: heftig
Revision: 342657

archrelease: copy trunk to staging-x86_64

Added:
  nvidia-390xx/repos/staging-x86_64/
  nvidia-390xx/repos/staging-x86_64/PKGBUILD
(from rev 342656, nvidia-390xx/trunk/PKGBUILD)
  nvidia-390xx/repos/staging-x86_64/kernel-4.16.patch
(from rev 342656, nvidia-390xx/trunk/kernel-4.16.patch)
  nvidia-390xx/repos/staging-x86_64/kernel-4.19.patch
(from rev 342656, nvidia-390xx/trunk/kernel-4.19.patch)

---+
 PKGBUILD  |   91 
 kernel-4.16.patch |   33 ++
 kernel-4.19.patch |   63 
 3 files changed, 187 insertions(+)

Copied: nvidia-390xx/repos/staging-x86_64/PKGBUILD (from rev 342656, 
nvidia-390xx/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2018-12-22 05:32:22 UTC (rev 342657)
@@ -0,0 +1,91 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgbase=nvidia-390xx
+pkgname=(nvidia-390xx nvidia-390xx-dkms)
+pkgver=390.87
+_extramodules=extramodules-ARCH
+pkgrel=23
+pkgdesc="NVIDIA drivers for linux, 390xx legacy branch"
+arch=('x86_64')
+url="http://www.nvidia.com/;
+makedepends=("nvidia-390xx-utils=${pkgver}" 'libglvnd' 'linux' 
'linux-headers>=4.19' 'linux-headers<4.20')
+conflicts=('nvidia')
+license=('custom')
+options=('!strip')
+_pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
+source=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/${_pkg}.run;
+kernel-4.16.patch kernel-4.19.patch)
+sha256sums=('c7c07151e17f610af11f7870560d96c3a3ee9bb91ba1bb82fcc7b5d473d40b66'
+'622ac792ec200b2239cb663c0010392118b78c9904973d82cd261165c16d6385'
+'e425320bd3712cc789035d5936412724b0b410f50463980c0a48715fd3f8c431')
+
+prepare() {
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}"
+
+# Restore phys_to_dma support (still needed for 396.18)
+# https://bugs.archlinux.org/task/58074
+patch -Np1 -i ../kernel-4.16.patch
+
+# Ad-hoc patch
+patch -Np1 -i ../kernel-4.19.patch
+
+cp -a kernel kernel-dkms
+cd kernel-dkms
+sed -i "s/__VERSION_STRING/${pkgver}/" dkms.conf
+sed -i 's/__JOBS/`nproc`/' dkms.conf
+sed -i 's/__DKMS_MODULES//' dkms.conf
+sed -i '$iBUILT_MODULE_NAME[0]="nvidia"\
+DEST_MODULE_LOCATION[0]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[1]="nvidia-uvm"\
+DEST_MODULE_LOCATION[1]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[2]="nvidia-modeset"\
+DEST_MODULE_LOCATION[2]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[3]="nvidia-drm"\
+DEST_MODULE_LOCATION[3]="/kernel/drivers/video"' dkms.conf
+
+# Gift for linux-rt guys
+sed -i 's/NV_EXCLUDE_BUILD_MODULES/IGNORE_PREEMPT_RT_PRESENCE=1 
NV_EXCLUDE_BUILD_MODULES/' dkms.conf
+}
+
+build() {
+_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+cd "${_pkg}"/kernel
+make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
+}
+
+package_nvidia-390xx() {
+pkgdesc="NVIDIA drivers for linux, 390xx legacy branch"
+depends=('linux>=4.19' 'linux<4.20' "nvidia-390xx-utils=${pkgver}" 
'libglvnd')
+
+install -Dt "${pkgdir}/usr/lib/modules/${_extramodules}" -m644 \
+  "${srcdir}/${_pkg}/kernel"/nvidia{,-modeset,-drm,-uvm}.ko
+
+find "${pkgdir}" -name '*.ko' -exec gzip -n {} +
+
+echo "blacklist nouveau" |
+install -Dm644 /dev/stdin 
"${pkgdir}/usr/lib/modprobe.d/${pkgname}.conf"
+
+install -Dt "${pkgdir}/usr/share/licenses/${pkgname}" -m644 
"${srcdir}/${_pkg}/LICENSE"
+}
+
+package_nvidia-390xx-dkms() {
+pkgdesc="NVIDIA driver sources for linux, 390xx legacy branch"
+depends=('dkms' "nvidia-390xx-utils=$pkgver" 'libglvnd')
+optdepends=('linux-headers: Build the module for Arch kernel'
+'linux-lts-headers: Build the module for LTS Arch kernel')
+provides=("nvidia-390xx=$pkgver")
+conflicts+=('nvidia-390xx')
+
+cd ${_pkg}
+
+install -dm 755 "${pkgdir}"/usr/src
+cp -dr --no-preserve='ownership' kernel-dkms 
"${pkgdir}/usr/src/nvidia-${pkgver}"
+
+echo "blacklist nouveau" |
+install -Dm644 /dev/stdin 
"${pkgdir}/usr/lib/modprobe.d/${pkgname}.conf"
+
+install -Dt "${pkgdir}/usr/share/licenses/${pkgname}" -m644 
"${srcdir}/${_pkg}/LICENSE"
+}

Copied: nvidia-390xx/repos/staging-x86_64/kernel-4.16.patch (from rev 342656, 
nvidia-390xx/trunk/kernel-4.16.patch)
===
--- staging-x86_64/kernel-4.16.patch(rev 0)
+++ staging-x86_64/kernel-4.16.patch2018-12-22 05:32:22 UTC (rev 342657)
@@ -0,0 +1,33 @@
+diff --git a/kernel/common/inc/nv-linux.h b/kernel/common/inc/nv-linux.h
+index 10fc418..22ef968 100644
+--- a/kernel/common/inc/nv-linux.h
 b/kernel/common/inc/nv-linux.h
+@@ -175,7 +175,11 @@ 

[arch-commits] Commit in r8168/repos (2 files)

2018-12-21 Thread Jan Steffens via arch-commits
Date: Saturday, December 22, 2018 @ 05:32:17
  Author: heftig
Revision: 417505

archrelease: copy trunk to community-staging-x86_64

Added:
  r8168/repos/community-staging-x86_64/
  r8168/repos/community-staging-x86_64/PKGBUILD
(from rev 417504, r8168/trunk/PKGBUILD)

--+
 PKGBUILD |   39 +++
 1 file changed, 39 insertions(+)

Copied: r8168/repos/community-staging-x86_64/PKGBUILD (from rev 417504, 
r8168/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-12-22 05:32:17 UTC (rev 417505)
@@ -0,0 +1,39 @@
+# Maintainer: Massimiliano Torromeo 
+# Contributor: Bob Fanger < bfanger(at)gmail >
+# Contributor: Filip , Det < nimetonmaili(at)gmail >
+
+pkgname=r8168
+pkgver=8.046.00
+pkgrel=33
+pkgdesc="A kernel module for Realtek 8168 network cards"
+url="http://www.realtek.com.tw;
+license=("GPL")
+arch=('x86_64')
+depends=('glibc' 'linux')
+makedepends=('linux-headers')
+source=(https://github.com/mtorromeo/r8168/archive/$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('b2e66b03b696ba55c9fb7c896db8ac5377233d14120520735d31c33147d0d4c3')
+
+build() {
+   KERNEL_VERSION=$(=4.19" "linux<4.20")
+
+   cd "$pkgname-$pkgver"
+   install -Dt "$pkgdir/usr/lib/modules/extramodules-ARCH" -m644 src/*.ko
+   find "$pkgdir" -name '*.ko' -exec xz {} +
+
+   echo "blacklist r8169" | \
+   install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/modprobe.d/r8168.conf"
+}


[arch-commits] Commit in bbswitch/repos (2 files)

2018-12-21 Thread Jan Steffens via arch-commits
Date: Saturday, December 22, 2018 @ 05:32:19
  Author: heftig
Revision: 417507

archrelease: copy trunk to community-staging-x86_64

Added:
  bbswitch/repos/community-staging-x86_64/
  bbswitch/repos/community-staging-x86_64/PKGBUILD
(from rev 417504, bbswitch/trunk/PKGBUILD)

--+
 PKGBUILD |   38 ++
 1 file changed, 38 insertions(+)

Copied: bbswitch/repos/community-staging-x86_64/PKGBUILD (from rev 417504, 
bbswitch/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-12-22 05:32:19 UTC (rev 417507)
@@ -0,0 +1,38 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: M0Rf30
+# Contributor: Samsagax 
+
+pkgbase=bbswitch
+pkgname=(bbswitch bbswitch-dkms)
+pkgver=0.8
+pkgrel=188
+pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus 
laptops"
+arch=('x86_64')
+url="http://github.com/Bumblebee-Project/bbswitch;
+license=('GPL')
+depends=('linux>=4.19' 'linux<4.20')
+makedepends=('linux-headers>=4.19' 'linux-headers<4.20')
+_extramodules=extramodules-ARCH
+source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz;)
+md5sums=('5b116b31ace3604ddf9d1fc1f4bc5807')
+
+build() {
+  cd ${pkgbase}-${pkgver}
+  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+  make KDIR=/lib/modules/${_kernver}/build
+}
+
+package_bbswitch() {
+  cd ${pkgbase}-${pkgver}
+  install -Dt "${pkgdir}/usr/lib/modules/${_extramodules}" -m644 *.ko
+  find "${pkgdir}" -name '*.ko' -exec xz {} +
+}
+
+package_bbswitch-dkms() {
+  depends=('dkms')
+  conflicts=('bbswitch')
+  provides=('bbswitch')
+
+  cd ${pkgbase}-${pkgver}
+  install -Dt "${pkgdir}/usr/src/${pkgbase}-${pkgver}" -m644 Makefile 
bbswitch.c dkms/dkms.conf
+}


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

2018-12-21 Thread Jan Steffens via arch-commits
Date: Saturday, December 22, 2018 @ 05:32:22
  Author: heftig
Revision: 417509

archrelease: copy trunk to community-staging-x86_64

Added:
  vhba-module/repos/community-staging-x86_64/
  vhba-module/repos/community-staging-x86_64/60-vhba.rules
(from rev 417504, vhba-module/trunk/60-vhba.rules)
  vhba-module/repos/community-staging-x86_64/PKGBUILD
(from rev 417504, vhba-module/trunk/PKGBUILD)
  vhba-module/repos/community-staging-x86_64/dkms.conf
(from rev 417504, vhba-module/trunk/dkms.conf)

---+
 60-vhba.rules |1 +
 PKGBUILD  |   51 +++
 dkms.conf |9 +
 3 files changed, 61 insertions(+)

Copied: vhba-module/repos/community-staging-x86_64/60-vhba.rules (from rev 
417504, vhba-module/trunk/60-vhba.rules)
===
--- community-staging-x86_64/60-vhba.rules  (rev 0)
+++ community-staging-x86_64/60-vhba.rules  2018-12-22 05:32:22 UTC (rev 
417509)
@@ -0,0 +1 @@
+ACTION=="add", KERNEL=="vhba_ctl", NAME="vhba_ctl", MODE="0660", OWNER="root", 
GROUP="cdemu", TAG+="uaccess"

Copied: vhba-module/repos/community-staging-x86_64/PKGBUILD (from rev 417504, 
vhba-module/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-12-22 05:32:22 UTC (rev 417509)
@@ -0,0 +1,51 @@
+# Maintainer: Ray Rashif 
+# Contributor: Mateusz Herych 
+# Contributor: Charles Lindsay 
+
+pkgbase=vhba-module
+pkgname=(vhba-module vhba-module-dkms)
+pkgver=20170610
+pkgrel=123
+pkgdesc="Kernel module that emulates SCSI devices"
+url="http://cdemu.sourceforge.net/;
+arch=(x86_64)
+license=(GPL)
+depends=('linux>=4.19' 'linux<4.20')
+makedepends=('linux-headers>=4.19' 'linux-headers<4.20')
+_extramodules=extramodules-ARCH
+source=("https://downloads.sourceforge.net/cdemu/$pkgbase-$pkgver.tar.bz2;
+60-vhba.rules dkms.conf)
+sha256sums=('7970c93f989d9c4f2629371bf5ee7a76f95e4c12342c3320ddc528d0df02d9ec'
+'3052cb1cadbdf4bfb0b588bb8ed80691940d8dd63dc5502943d597eaf9f40c3b'
+'8cab0ebb4fee72069d63616b0983f105b98d1261e72e9bef5509a6e60bc382a7')
+
+prepare() {
+  cd $pkgbase-$pkgver
+}
+
+build() {
+  cd $pkgbase-$pkgver
+  make KERNELRELEASE="$(cat /usr/lib/modules/$_extramodules/version)"
+}
+
+package_vhba-module() {
+  cd $pkgbase-$pkgver
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m644 *.ko
+  install -Dt "$pkgdir/usr/lib/udev/rules.d" -m644 ../60-vhba.rules
+  echo 'g cdemu - -' | install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/sysusers.d/cdemu.conf"
+
+  find "$pkgdir" -name '*.ko' -exec xz {} +
+}
+
+package_vhba-module-dkms() {
+  depends=(dkms)
+  provides=("vhba-module=$pkgver-$pkgrel")
+  conflicts=(vhba-module)
+
+  cd $pkgbase-$pkgver
+  install -Dt "$pkgdir/usr/src/$pkgbase-$pkgver" -m644 Makefile vhba.c 
../dkms.conf
+  install -Dt "$pkgdir/usr/lib/udev/rules.d" -m644 ../60-vhba.rules
+  echo 'g cdemu - -' | install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/sysusers.d/cdemu.conf"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: vhba-module/repos/community-staging-x86_64/dkms.conf (from rev 417504, 
vhba-module/trunk/dkms.conf)
===
--- community-staging-x86_64/dkms.conf  (rev 0)
+++ community-staging-x86_64/dkms.conf  2018-12-22 05:32:22 UTC (rev 417509)
@@ -0,0 +1,9 @@
+PACKAGE_NAME="vhba-module"
+PACKAGE_VERSION="#MODULE_VERSION#"
+AUTOINSTALL="yes"
+
+MAKE[0]="make KERNELRELEASE=$kernelver"
+CLEAN="make clean"
+
+BUILT_MODULE_NAME[0]="vhba"
+DEST_MODULE_LOCATION[0]="/kernel/drivers/scsi"


[arch-commits] Commit in virtualbox-modules-arch/repos (2 files)

2018-12-21 Thread Jan Steffens via arch-commits
Date: Saturday, December 22, 2018 @ 05:32:24
  Author: heftig
Revision: 417511

archrelease: copy trunk to community-staging-x86_64

Added:
  virtualbox-modules-arch/repos/community-staging-x86_64/
  virtualbox-modules-arch/repos/community-staging-x86_64/PKGBUILD
(from rev 417504, virtualbox-modules-arch/trunk/PKGBUILD)

--+
 PKGBUILD |   59 +++
 1 file changed, 59 insertions(+)

Copied: virtualbox-modules-arch/repos/community-staging-x86_64/PKGBUILD (from 
rev 417504, virtualbox-modules-arch/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-12-22 05:32:24 UTC (rev 417511)
@@ -0,0 +1,59 @@
+# Maintainer: Sébastien Luttringer
+# Contributor: Ionut Biru 
+
+pkgbase=virtualbox-modules-arch
+pkgname=('virtualbox-host-modules-arch' 'virtualbox-guest-modules-arch')
+pkgver=5.2.22
+pkgrel=14
+_linux_major=4
+_linux_minor=19
+arch=('x86_64')
+url='http://virtualbox.org'
+license=('GPL')
+_linux_cur=${_linux_major}.${_linux_minor}
+_linux_next=${_linux_major}.$((_linux_minor + 1))
+makedepends=("linux>=$_linux_cur" "linux<$_linux_next"
+ "linux-headers>=$_linux_cur" "linux-headers<$_linux_next"
+ "virtualbox-host-dkms>=$pkgver"
+ "virtualbox-guest-dkms>=$pkgver")
+
+_extramodules=extramodules-ARCH
+
+package_virtualbox-host-modules-arch(){
+  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
+  pkgdesc='Virtualbox host kernel modules for Arch Kernel'
+  depends=("linux>=$_linux_cur" "linux<$_linux_next")
+  replaces=('virtualbox-modules' 'virtualbox-host-modules')
+  conflicts=('virtualbox-modules' 'virtualbox-host-modules'
+'virtualbox-host-dkms')
+  provides=('VIRTUALBOX-HOST-MODULES')
+
+  cd "/var/lib/dkms/vboxhost/${pkgver}_OSE/$_kernver/$CARCH/module"
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m644 *
+
+  # compress each module individually
+  find "$pkgdir" -name '*.ko' -exec xz -T1 {} +
+
+  # systemd module loading
+  printf '%s\n' vboxdrv vboxpci vboxnetadp vboxnetflt |
+install -Dm644 /dev/stdin "$pkgdir/usr/lib/modules-load.d/$pkgname.conf"
+}
+
+package_virtualbox-guest-modules-arch(){
+  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
+  pkgdesc='Virtualbox guest kernel modules for Arch Kernel'
+  license=('GPL')
+  depends=("linux>=$_linux_cur" "linux<$_linux_next")
+  replaces=('virtualbox-archlinux-modules' 'virtualbox-guest-modules')
+  conflicts=('virtualbox-archlinux-modules' 'virtualbox-guest-modules'
+ 'virtualbox-guest-dkms')
+  provides=('VIRTUALBOX-GUEST-MODULES')
+
+  cd "/var/lib/dkms/vboxsf/${pkgver}_OSE/$_kernver/$CARCH/module"
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m644 *
+
+  # compress each module individually
+  find "$pkgdir" -name '*.ko' -exec xz -T1 {} +
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in broadcom-wl/repos (2 files)

2018-12-21 Thread Jan Steffens via arch-commits
Date: Saturday, December 22, 2018 @ 05:32:18
  Author: heftig
Revision: 417506

archrelease: copy trunk to community-staging-x86_64

Added:
  broadcom-wl/repos/community-staging-x86_64/
  broadcom-wl/repos/community-staging-x86_64/PKGBUILD
(from rev 417504, broadcom-wl/trunk/PKGBUILD)

--+
 PKGBUILD |   39 +++
 1 file changed, 39 insertions(+)

Copied: broadcom-wl/repos/community-staging-x86_64/PKGBUILD (from rev 417504, 
broadcom-wl/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-12-22 05:32:18 UTC (rev 417506)
@@ -0,0 +1,39 @@
+# Maintainer: Eli Schwartz 
+
+_module=broadcom-wl
+_kernelname=  # Build against stock -ARCH kernel
+#_kernelname=-custom  # Build against kernel with a different name
+pkgname=${_module}${_kernelname}
+pkgver=6.30.223.271
+pkgrel=69
+pkgdesc='Broadcom 802.11 Linux STA wireless driver'
+arch=('x86_64')
+url='https://www.broadcom.com/support/download-search/?pf=Wireless+LAN+Infrastructure'
+license=('custom')
+depends=("linux${_kernelname}")
+makedepends=("linux${_kernelname}-headers" "${_module}-dkms=${pkgver}")
+
+_extramodules="/usr/lib/modules/extramodules${_kernelname:--ARCH}"
+
+build() {
+_kernver="$(<${_extramodules}/version)"
+
+dkms build --dkmstree "${srcdir}" -m ${_module}/${pkgver} -k ${_kernver}
+}
+
+package() {
+_kernver="$(<${_extramodules}/version)"
+
+install -Dm644 -t "${pkgdir}${_extramodules}" \
+${_module}/${pkgver}/${_kernver}/${CARCH}/module/*.ko
+find "${pkgdir}" -name '*.ko' -exec xz -T1 {} +
+
+_license="/usr/share/licenses/${_module}-dkms"
+if [[ -d ${_license} ]]; then
+install -Dm644 -t "${pkgdir}"/${_license/-dkms/${_kernelname}} 
${_license}/*
+fi
+_modprobe="/usr/lib/modprobe.d/${_module}-dkms.conf"
+if [[ -r ${_modprobe} ]]; then
+install -Dm644 ${_modprobe} 
"${pkgdir}"/${_modprobe/-dkms/${_kernelname}}
+fi
+}


[arch-commits] Commit in nvidia-340xx/trunk (PKGBUILD)

2018-12-21 Thread Jan Steffens via arch-commits
Date: Saturday, December 22, 2018 @ 05:05:05
  Author: heftig
Revision: 342656

340.107-51: kernel 4.19.12.arch1-1

Modified:
  nvidia-340xx/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-22 05:05:03 UTC (rev 342655)
+++ PKGBUILD2018-12-22 05:05:05 UTC (rev 342656)
@@ -6,7 +6,7 @@
 pkgname=(nvidia-340xx nvidia-340xx-dkms)
 pkgver=340.107
 _extramodules=extramodules-ARCH
-pkgrel=50
+pkgrel=51
 pkgdesc="NVIDIA drivers for linux, 340xx legacy branch"
 arch=('x86_64')
 url="http://www.nvidia.com/;


[arch-commits] Commit in nvidia/trunk (PKGBUILD)

2018-12-21 Thread Jan Steffens via arch-commits
Date: Saturday, December 22, 2018 @ 05:05:03
  Author: heftig
Revision: 342655

415.25-4: kernel 4.19.12.arch1-1

Modified:
  nvidia/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-22 05:04:59 UTC (rev 342654)
+++ PKGBUILD2018-12-22 05:05:03 UTC (rev 342655)
@@ -6,7 +6,7 @@
 pkgname=(nvidia nvidia-dkms)
 pkgver=415.25
 _extramodules=extramodules-ARCH
-pkgrel=3
+pkgrel=4
 pkgdesc="NVIDIA drivers for linux"
 arch=('x86_64')
 url="http://www.nvidia.com/;


[arch-commits] Commit in nvidia-390xx/trunk (PKGBUILD)

2018-12-21 Thread Jan Steffens via arch-commits
Date: Saturday, December 22, 2018 @ 05:04:59
  Author: heftig
Revision: 342654

390.87-23: kernel 4.19.12.arch1-1

Modified:
  nvidia-390xx/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-22 01:16:23 UTC (rev 342653)
+++ PKGBUILD2018-12-22 05:04:59 UTC (rev 342654)
@@ -6,7 +6,7 @@
 pkgname=(nvidia-390xx nvidia-390xx-dkms)
 pkgver=390.87
 _extramodules=extramodules-ARCH
-pkgrel=22
+pkgrel=23
 pkgdesc="NVIDIA drivers for linux, 390xx legacy branch"
 arch=('x86_64')
 url="http://www.nvidia.com/;


[arch-commits] Commit in acpi_call/trunk (PKGBUILD)

2018-12-21 Thread Jan Steffens via arch-commits
Date: Saturday, December 22, 2018 @ 05:04:57
  Author: heftig
Revision: 417504

1.1.0-182: kernel 4.19.12.arch1-1

Modified:
  acpi_call/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-22 05:04:55 UTC (rev 417503)
+++ PKGBUILD2018-12-22 05:04:57 UTC (rev 417504)
@@ -5,7 +5,7 @@
 pkgbase=acpi_call
 pkgname=(acpi_call acpi_call-dkms)
 pkgver=1.1.0
-pkgrel=181
+pkgrel=182
 pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
 url='https://github.com/mkottman/acpi_call'
 arch=('x86_64')


[arch-commits] Commit in broadcom-wl/trunk (PKGBUILD)

2018-12-21 Thread Jan Steffens via arch-commits
Date: Saturday, December 22, 2018 @ 05:04:49
  Author: heftig
Revision: 417499

6.30.223.271-69: kernel 4.19.12.arch1-1

Modified:
  broadcom-wl/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-22 05:04:47 UTC (rev 417498)
+++ PKGBUILD2018-12-22 05:04:49 UTC (rev 417499)
@@ -5,7 +5,7 @@
 #_kernelname=-custom  # Build against kernel with a different name
 pkgname=${_module}${_kernelname}
 pkgver=6.30.223.271
-pkgrel=68
+pkgrel=69
 pkgdesc='Broadcom 802.11 Linux STA wireless driver'
 arch=('x86_64')
 
url='https://www.broadcom.com/support/download-search/?pf=Wireless+LAN+Infrastructure'


[arch-commits] Commit in virtualbox-modules-arch/trunk (PKGBUILD)

2018-12-21 Thread Jan Steffens via arch-commits
Date: Saturday, December 22, 2018 @ 05:04:51
  Author: heftig
Revision: 417500

5.2.22-14: kernel 4.19.12.arch1-1

Modified:
  virtualbox-modules-arch/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-22 05:04:49 UTC (rev 417499)
+++ PKGBUILD2018-12-22 05:04:51 UTC (rev 417500)
@@ -4,7 +4,7 @@
 pkgbase=virtualbox-modules-arch
 pkgname=('virtualbox-host-modules-arch' 'virtualbox-guest-modules-arch')
 pkgver=5.2.22
-pkgrel=13
+pkgrel=14
 _linux_major=4
 _linux_minor=19
 arch=('x86_64')


[arch-commits] Commit in vhba-module/trunk (PKGBUILD)

2018-12-21 Thread Jan Steffens via arch-commits
Date: Saturday, December 22, 2018 @ 05:04:55
  Author: heftig
Revision: 417503

20170610-123: kernel 4.19.12.arch1-1

Modified:
  vhba-module/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-22 05:04:54 UTC (rev 417502)
+++ PKGBUILD2018-12-22 05:04:55 UTC (rev 417503)
@@ -5,7 +5,7 @@
 pkgbase=vhba-module
 pkgname=(vhba-module vhba-module-dkms)
 pkgver=20170610
-pkgrel=122
+pkgrel=123
 pkgdesc="Kernel module that emulates SCSI devices"
 url="http://cdemu.sourceforge.net/;
 arch=(x86_64)


[arch-commits] Commit in r8168/trunk (PKGBUILD)

2018-12-21 Thread Jan Steffens via arch-commits
Date: Saturday, December 22, 2018 @ 05:04:54
  Author: heftig
Revision: 417502

8.046.00-33: kernel 4.19.12.arch1-1

Modified:
  r8168/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-22 05:04:53 UTC (rev 417501)
+++ PKGBUILD2018-12-22 05:04:54 UTC (rev 417502)
@@ -4,7 +4,7 @@
 
 pkgname=r8168
 pkgver=8.046.00
-pkgrel=32
+pkgrel=33
 pkgdesc="A kernel module for Realtek 8168 network cards"
 url="http://www.realtek.com.tw;
 license=("GPL")


[arch-commits] Commit in tp_smapi/trunk (PKGBUILD)

2018-12-21 Thread Jan Steffens via arch-commits
Date: Saturday, December 22, 2018 @ 05:04:47
  Author: heftig
Revision: 417498

0.43-76: kernel 4.19.12.arch1-1

Modified:
  tp_smapi/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-22 04:13:22 UTC (rev 417497)
+++ PKGBUILD2018-12-22 05:04:47 UTC (rev 417498)
@@ -9,7 +9,7 @@
 
 pkgname=tp_smapi
 pkgver=0.43
-pkgrel=75
+pkgrel=76
 pkgdesc="Modules for ThinkPad's SMAPI functionality"
 arch=('x86_64')
 url='https://github.com/evgeni/tp_smapi'


[arch-commits] Commit in bbswitch/trunk (PKGBUILD)

2018-12-21 Thread Jan Steffens via arch-commits
Date: Saturday, December 22, 2018 @ 05:04:53
  Author: heftig
Revision: 417501

0.8-188: kernel 4.19.12.arch1-1

Modified:
  bbswitch/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-22 05:04:51 UTC (rev 417500)
+++ PKGBUILD2018-12-22 05:04:53 UTC (rev 417501)
@@ -5,7 +5,7 @@
 pkgbase=bbswitch
 pkgname=(bbswitch bbswitch-dkms)
 pkgver=0.8
-pkgrel=187
+pkgrel=188
 pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus 
laptops"
 arch=('x86_64')
 url="http://github.com/Bumblebee-Project/bbswitch;


[arch-commits] Commit in ogre/trunk (PKGBUILD)

2018-12-21 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, December 22, 2018 @ 04:13:17
  Author: svenstaro
Revision: 417496

upgpkg: ogre 1.11.5-1

Modified:
  ogre/trunk/PKGBUILD

--+
 PKGBUILD |   13 +++--
 1 file changed, 7 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-22 03:54:55 UTC (rev 417495)
+++ PKGBUILD2018-12-22 04:13:17 UTC (rev 417496)
@@ -1,7 +1,7 @@
 # Maintainer: Sven-Hendrik Haase 
 pkgbase=ogre
 pkgname=('ogre' 'ogre-docs')
-pkgver=1.11.4
+pkgver=1.11.5
 pkgrel=1
 pkgdesc='Scene-oriented, flexible 3D engine written in C++'
 arch=('x86_64')
@@ -12,14 +12,15 @@
 makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'python' 'swig' 
'systemd' 'java-environment')
 install=ogre.install
 source=("https://github.com/OGRECave/ogre/archive/v${pkgver}.tar.gz;)
-sha512sums=('d27a6968c871df2b43abeaa44c2016364cd8fc5de8da7bcf65687f0071b913c28e07f3db68a23d5c4af9e7d8fa6dfa353a22620fcc68b9b18956d5640c3a5789')
+sha512sums=('d2b91d53734f031fd40dd0ed96bd1a7a7a826ac094ec0b7b03648daccd856ebef9d89854c1df64270375a5af7a8a6079b9223ffcee53ee38e62405492aec2206')
 
+prepare() {
+  mkdir ogre-${pkgver}/build
+}
+
 build() {
-  cd ogre-${pkgver}
+  cd ogre-${pkgver}/build
 
-  [[ -d build ]] && rm -rf build
-  mkdir build && cd build
-
   export JAVA_HOME=/usr/lib/jvm/default
 
   cmake .. \


[arch-commits] Commit in ogre/repos/community-x86_64 (4 files)

2018-12-21 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, December 22, 2018 @ 04:13:22
  Author: svenstaro
Revision: 417497

archrelease: copy trunk to community-x86_64

Added:
  ogre/repos/community-x86_64/PKGBUILD
(from rev 417496, ogre/trunk/PKGBUILD)
  ogre/repos/community-x86_64/ogre.install
(from rev 417496, ogre/trunk/ogre.install)
Deleted:
  ogre/repos/community-x86_64/PKGBUILD
  ogre/repos/community-x86_64/ogre.install

--+
 PKGBUILD |  139 -
 ogre.install |6 +-
 2 files changed, 73 insertions(+), 72 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-22 04:13:17 UTC (rev 417496)
+++ PKGBUILD2018-12-22 04:13:22 UTC (rev 417497)
@@ -1,69 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-pkgbase=ogre
-pkgname=('ogre' 'ogre-docs')
-pkgver=1.11.4
-pkgrel=1
-pkgdesc='Scene-oriented, flexible 3D engine written in C++'
-arch=('x86_64')
-url='http://www.ogre3d.org'
-license=('custom:MIT')
-depends=('freeimage' 'freetype2' 'libxaw' 'libxrandr' 'openexr'
- 'nvidia-cg-toolkit' 'zziplib' 'sdl2' 'glu' 'tinyxml')
-makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'python' 'swig' 
'systemd' 'java-environment')
-install=ogre.install
-source=("https://github.com/OGRECave/ogre/archive/v${pkgver}.tar.gz;)
-sha512sums=('d27a6968c871df2b43abeaa44c2016364cd8fc5de8da7bcf65687f0071b913c28e07f3db68a23d5c4af9e7d8fa6dfa353a22620fcc68b9b18956d5640c3a5789')
-
-build() {
-  cd ogre-${pkgver}
-
-  [[ -d build ]] && rm -rf build
-  mkdir build && cd build
-
-  export JAVA_HOME=/usr/lib/jvm/default
-
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DOGRE_BUILD_DEPENDENCIES=FALSE \
--DCMAKE_BUILD_TYPE=RelWithDebInfo \
--DOGRE_BUILD_PLUGIN_FREEIMAGE=TRUE \
--DOGRE_BUILD_PLUGIN_EXRCODEC=TRUE
-
-  make
-  make OgreDoc
-}
-
-package_ogre() {
-  optdepends=('cppunit: unit testing'
-  'python: python bindings'
-  'java-environment: jni bindings'
-  'ogre-docs: documentation')
-
-  cd ogre-${pkgver}/build
-
-  make DESTDIR=${pkgdir} install
-
-  mv ${pkgdir}/usr/bin/SampleBrowser ${pkgdir}/usr/bin/OgreSampleBrowser
-  install -Dm644 ../LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-
-  # move docs out of this package
-  mv ${pkgdir}/usr/share/OGRE/docs ${srcdir}/docs
-}
-
-package_ogre-docs() {
-  pkgdesc="Documentation for ogre"
-  depends=()
-
-  cd ogre-${pkgver}/build
-
-  # move docs into this package
-  install -dm755 ${pkgdir}/usr/share/doc
-  mv ${srcdir}/docs ${pkgdir}/usr/share/doc/OGRE/
-
-  # symlink for docs
-  install -dm755 ${pkgdir}/usr/share/OGRE/
-  cd ${pkgdir}/usr/share
-  ln -s /usr/share/doc/OGRE/ OGRE/docs
-}
-
-# vim:set ts=2 sw=2 et:

Copied: ogre/repos/community-x86_64/PKGBUILD (from rev 417496, 
ogre/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-22 04:13:22 UTC (rev 417497)
@@ -0,0 +1,70 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgbase=ogre
+pkgname=('ogre' 'ogre-docs')
+pkgver=1.11.5
+pkgrel=1
+pkgdesc='Scene-oriented, flexible 3D engine written in C++'
+arch=('x86_64')
+url='http://www.ogre3d.org'
+license=('custom:MIT')
+depends=('freeimage' 'freetype2' 'libxaw' 'libxrandr' 'openexr'
+ 'nvidia-cg-toolkit' 'zziplib' 'sdl2' 'glu' 'tinyxml')
+makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'python' 'swig' 
'systemd' 'java-environment')
+install=ogre.install
+source=("https://github.com/OGRECave/ogre/archive/v${pkgver}.tar.gz;)
+sha512sums=('d2b91d53734f031fd40dd0ed96bd1a7a7a826ac094ec0b7b03648daccd856ebef9d89854c1df64270375a5af7a8a6079b9223ffcee53ee38e62405492aec2206')
+
+prepare() {
+  mkdir ogre-${pkgver}/build
+}
+
+build() {
+  cd ogre-${pkgver}/build
+
+  export JAVA_HOME=/usr/lib/jvm/default
+
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DOGRE_BUILD_DEPENDENCIES=FALSE \
+-DCMAKE_BUILD_TYPE=RelWithDebInfo \
+-DOGRE_BUILD_PLUGIN_FREEIMAGE=TRUE \
+-DOGRE_BUILD_PLUGIN_EXRCODEC=TRUE
+
+  make
+  make OgreDoc
+}
+
+package_ogre() {
+  optdepends=('cppunit: unit testing'
+  'python: python bindings'
+  'java-environment: jni bindings'
+  'ogre-docs: documentation')
+
+  cd ogre-${pkgver}/build
+
+  make DESTDIR=${pkgdir} install
+
+  mv ${pkgdir}/usr/bin/SampleBrowser ${pkgdir}/usr/bin/OgreSampleBrowser
+  install -Dm644 ../LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+
+  # move docs out of this package
+  mv ${pkgdir}/usr/share/OGRE/docs ${srcdir}/docs
+}
+
+package_ogre-docs() {
+  pkgdesc="Documentation for ogre"
+  depends=()
+
+  cd ogre-${pkgver}/build
+
+  # move docs into this package
+  install -dm755 ${pkgdir}/usr/share/doc
+  mv ${srcdir}/docs ${pkgdir}/usr/share/doc/OGRE/
+
+  # symlink for docs
+  install -dm755 ${pkgdir}/usr/share/OGRE/
+  cd ${pkgdir}/usr/share
+  ln -s /usr/share/doc/OGRE/ OGRE/docs
+}

[arch-commits] Commit in wt/trunk (PKGBUILD)

2018-12-21 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, December 22, 2018 @ 03:54:40
  Author: svenstaro
Revision: 417494

upgpkg: wt 4.0.5-1

Modified:
  wt/trunk/PKGBUILD

--+
 PKGBUILD |   14 --
 1 file changed, 8 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-22 03:33:13 UTC (rev 417493)
+++ PKGBUILD2018-12-22 03:54:40 UTC (rev 417494)
@@ -3,8 +3,8 @@
 # Contributor: Denis Martinez 
 
 pkgname=wt
-pkgver=4.0.4
-pkgrel=2
+pkgver=4.0.5
+pkgrel=1
 pkgdesc="a C++ library and application server for developing and deploying web 
applications"
 arch=('x86_64')
 url="http://www.webtoolkit.eu/;
@@ -20,13 +20,15 @@
'qt4: for the Wt/Qt interopability example (wtwithqt)')
 backup=('etc/wt/wt_config.xml')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/kdeforche/wt/archive/${pkgver}.tar.gz;)
-sha512sums=('7f9fee9b1c145adb610bf9b0860867a2f09699a1c914418938955c5648b3207db361ec48b3afe9e6faa6cc0b5874bedd44481fdd8adb8fc558cfc3dc17369ee7')
+sha512sums=('5513b428bfd3e778726c947606677f3e0774b38e640e61cd94906a2e0c75d204a68072b54ddeb3614a7ba08f5668e6eb3a96d9c8df3744b09dc36ad9be12d924')
 
+prepare() {
+  mkdir "$srcdir"/${pkgname}-${pkgver}/build
+}
+
 build() {
-  cd "$srcdir"/${pkgname}-${pkgver}
+  cd "$srcdir"/${pkgname}-${pkgver}/build
 
-  [[ -d build ]] && rm -r build
-  mkdir -p build && cd build
   cmake \
   -DCONNECTOR_HTTP=ON \
   -DWT_CPP_11_MODE=-std=c++11 \


[arch-commits] Commit in wt/repos/community-x86_64 (PKGBUILD PKGBUILD)

2018-12-21 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, December 22, 2018 @ 03:54:55
  Author: svenstaro
Revision: 417495

archrelease: copy trunk to community-x86_64

Added:
  wt/repos/community-x86_64/PKGBUILD
(from rev 417494, wt/trunk/PKGBUILD)
Deleted:
  wt/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  100 +++--
 1 file changed, 51 insertions(+), 49 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-22 03:54:40 UTC (rev 417494)
+++ PKGBUILD2018-12-22 03:54:55 UTC (rev 417495)
@@ -1,49 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Denis Martinez 
-
-pkgname=wt
-pkgver=4.0.4
-pkgrel=2
-pkgdesc="a C++ library and application server for developing and deploying web 
applications"
-arch=('x86_64')
-url="http://www.webtoolkit.eu/;
-license=('GPL')
-depends=('boost-libs' 'libharu' 'graphicsmagick' 'pango' 'zlib' 'libgl')
-makedepends=('boost' 'cmake' 'postgresql-libs' 'fcgi' 'sqlite' 'mysql++' 'qt4' 
'doxygen' 'mesa' 'glu')
-optdepends=('openssl: for SSL support in built-in webserver'
-   'fcgi: for FastCGI support'
-   'postgresql-libs: for PostgreSQL Dbo support'
-'libmariadbclient: for MySQL Dbo support'
-   'sqlite: for Sqlite Dbo support'
-   'mysql++: for the hangman example'
-   'qt4: for the Wt/Qt interopability example (wtwithqt)')
-backup=('etc/wt/wt_config.xml')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/kdeforche/wt/archive/${pkgver}.tar.gz;)
-sha512sums=('7f9fee9b1c145adb610bf9b0860867a2f09699a1c914418938955c5648b3207db361ec48b3afe9e6faa6cc0b5874bedd44481fdd8adb8fc558cfc3dc17369ee7')
-
-build() {
-  cd "$srcdir"/${pkgname}-${pkgver}
-
-  [[ -d build ]] && rm -r build
-  mkdir -p build && cd build
-  cmake \
-  -DCONNECTOR_HTTP=ON \
-  -DWT_CPP_11_MODE=-std=c++11 \
-  -DWT_WRASTERIMAGE_IMPLEMENTATION=GraphicsMagick \
-  -DCMAKE_INSTALL_PREFIX=/usr \
-  -DWEBUSER=http \
-  -DWEBGROUP=http \
-  -DUSE_SYSTEM_SQLITE3=ON \
-  -DINSTALL_EXAMPLES=ON \
-  -DBUILD_EXAMPLES=ON \
-  -DINSTALL_FINDWT_CMAKE_FILE=ON \
-  ..
-  make
-}
-
-package() {
-  cd "$srcdir"/${pkgname}-${pkgver}/build
-
-  make DESTDIR="$pkgdir" install
-}

Copied: wt/repos/community-x86_64/PKGBUILD (from rev 417494, wt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-22 03:54:55 UTC (rev 417495)
@@ -0,0 +1,51 @@
+# Maintainer: Sergej Pupykin 
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Denis Martinez 
+
+pkgname=wt
+pkgver=4.0.5
+pkgrel=1
+pkgdesc="a C++ library and application server for developing and deploying web 
applications"
+arch=('x86_64')
+url="http://www.webtoolkit.eu/;
+license=('GPL')
+depends=('boost-libs' 'libharu' 'graphicsmagick' 'pango' 'zlib' 'libgl')
+makedepends=('boost' 'cmake' 'postgresql-libs' 'fcgi' 'sqlite' 'mysql++' 'qt4' 
'doxygen' 'mesa' 'glu')
+optdepends=('openssl: for SSL support in built-in webserver'
+   'fcgi: for FastCGI support'
+   'postgresql-libs: for PostgreSQL Dbo support'
+'libmariadbclient: for MySQL Dbo support'
+   'sqlite: for Sqlite Dbo support'
+   'mysql++: for the hangman example'
+   'qt4: for the Wt/Qt interopability example (wtwithqt)')
+backup=('etc/wt/wt_config.xml')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/kdeforche/wt/archive/${pkgver}.tar.gz;)
+sha512sums=('5513b428bfd3e778726c947606677f3e0774b38e640e61cd94906a2e0c75d204a68072b54ddeb3614a7ba08f5668e6eb3a96d9c8df3744b09dc36ad9be12d924')
+
+prepare() {
+  mkdir "$srcdir"/${pkgname}-${pkgver}/build
+}
+
+build() {
+  cd "$srcdir"/${pkgname}-${pkgver}/build
+
+  cmake \
+  -DCONNECTOR_HTTP=ON \
+  -DWT_CPP_11_MODE=-std=c++11 \
+  -DWT_WRASTERIMAGE_IMPLEMENTATION=GraphicsMagick \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DWEBUSER=http \
+  -DWEBGROUP=http \
+  -DUSE_SYSTEM_SQLITE3=ON \
+  -DINSTALL_EXAMPLES=ON \
+  -DBUILD_EXAMPLES=ON \
+  -DINSTALL_FINDWT_CMAKE_FILE=ON \
+  ..
+  make
+}
+
+package() {
+  cd "$srcdir"/${pkgname}-${pkgver}/build
+
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in glbinding/repos/community-x86_64 (PKGBUILD PKGBUILD)

2018-12-21 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, December 22, 2018 @ 03:33:13
  Author: svenstaro
Revision: 417493

archrelease: copy trunk to community-x86_64

Added:
  glbinding/repos/community-x86_64/PKGBUILD
(from rev 417492, glbinding/trunk/PKGBUILD)
Deleted:
  glbinding/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   98 ++---
 1 file changed, 49 insertions(+), 49 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-22 03:32:49 UTC (rev 417492)
+++ PKGBUILD2018-12-22 03:33:13 UTC (rev 417493)
@@ -1,49 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: carstene1ns  - http://git.io/ctPKG
-# Contributor: Xentec 
-
-pkgname=glbinding
-pkgver=3.0.2
-pkgrel=1
-pkgdesc="A C++ binding for the OpenGL API, generated using the gl.xml 
specification"
-arch=('x86_64')
-url="http://www.glbinding.org;
-license=('MIT')
-depends=('libgl' 'glfw')
-makedepends=('cmake' 'mesa')
-checkdepends=('python')
-source=($pkgname-$pkgver.tar.gz::"https://github.com/cginternals/glbinding/archive/v$pkgver.tar.gz;)
-sha256sums=('23a383f3ed31af742a4952b6c26faa9c346dd982ba9112c68293a578a6e542ad')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  rm -rf build
-  mkdir build
-}
-
-build() {
-  cd $pkgname-$pkgver/build
-
-  cmake .. \
-  -DCMAKE_INSTALL_PREFIX=/usr \
-  -DCMAKE_BUILD_TYPE=Release \
-  -DOPTION_BUILD_TESTS=ON
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver/build
-
-  make test
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make -C build DESTDIR="$pkgdir/" install
-
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-  install -d "$pkgdir"/usr/share/doc/$pkgname
-  install -m644 README.md AUTHORS "$pkgdir"/usr/share/doc/$pkgname
-}

Copied: glbinding/repos/community-x86_64/PKGBUILD (from rev 417492, 
glbinding/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-22 03:33:13 UTC (rev 417493)
@@ -0,0 +1,49 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: carstene1ns  - http://git.io/ctPKG
+# Contributor: Xentec 
+
+pkgname=glbinding
+pkgver=3.0.2
+pkgrel=2
+pkgdesc="A C++ binding for the OpenGL API, generated using the gl.xml 
specification"
+arch=('x86_64')
+url="http://www.glbinding.org;
+license=('MIT')
+depends=('libgl' 'glfw')
+makedepends=('cmake' 'mesa')
+checkdepends=('python')
+source=($pkgname-$pkgver.tar.gz::"https://github.com/cginternals/glbinding/archive/v$pkgver.tar.gz;)
+sha256sums=('23a383f3ed31af742a4952b6c26faa9c346dd982ba9112c68293a578a6e542ad')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  mkdir build
+}
+
+build() {
+  cd $pkgname-$pkgver/build
+
+  cmake .. \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DCMAKE_BUILD_TYPE=Release \
+  -DOPTION_BUILD_TESTS=ON
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver/build
+
+  make test
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make -C build DESTDIR="$pkgdir/" install
+
+  rm "$pkgdir"/usr/bin/glinfo
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  install -d "$pkgdir"/usr/share/doc/$pkgname
+  install -m644 README.md AUTHORS "$pkgdir"/usr/share/doc/$pkgname
+}


[arch-commits] Commit in glbinding/trunk (PKGBUILD)

2018-12-21 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, December 22, 2018 @ 03:32:49
  Author: svenstaro
Revision: 417492

Fix conflict with mesa-demos

Modified:
  glbinding/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-22 00:49:54 UTC (rev 417491)
+++ PKGBUILD2018-12-22 03:32:49 UTC (rev 417492)
@@ -4,7 +4,7 @@
 
 pkgname=glbinding
 pkgver=3.0.2
-pkgrel=1
+pkgrel=2
 pkgdesc="A C++ binding for the OpenGL API, generated using the gl.xml 
specification"
 arch=('x86_64')
 url="http://www.glbinding.org;
@@ -18,7 +18,6 @@
 prepare() {
   cd $pkgname-$pkgver
 
-  rm -rf build
   mkdir build
 }
 
@@ -43,6 +42,7 @@
 
   make -C build DESTDIR="$pkgdir/" install
 
+  rm "$pkgdir"/usr/bin/glinfo
   install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
   install -d "$pkgdir"/usr/share/doc/$pkgname
   install -m644 README.md AUTHORS "$pkgdir"/usr/share/doc/$pkgname


[arch-commits] Commit in linux-zen/repos (7 files)

2018-12-21 Thread Jan Steffens via arch-commits
Date: Saturday, December 22, 2018 @ 01:16:21
  Author: heftig
Revision: 342652

archrelease: copy trunk to staging-x86_64

Added:
  linux-zen/repos/staging-x86_64/
  linux-zen/repos/staging-x86_64/60-linux.hook
(from rev 342651, linux-zen/trunk/60-linux.hook)
  linux-zen/repos/staging-x86_64/90-linux.hook
(from rev 342651, linux-zen/trunk/90-linux.hook)
  linux-zen/repos/staging-x86_64/PKGBUILD
(from rev 342651, linux-zen/trunk/PKGBUILD)
  linux-zen/repos/staging-x86_64/config
(from rev 342651, linux-zen/trunk/config)
  linux-zen/repos/staging-x86_64/linux.install
(from rev 342651, linux-zen/trunk/linux.install)
  linux-zen/repos/staging-x86_64/linux.preset
(from rev 342651, linux-zen/trunk/linux.preset)

---+
 60-linux.hook |   12 
 90-linux.hook |   11 
 PKGBUILD  |  243 +
 config| 9842 
 linux.install |   12 
 linux.preset  |   14 
 6 files changed, 10134 insertions(+)

The diff is longer than the limit of 200KB.
Use svn diff -r 342651:342652 to see the changes.


[arch-commits] Commit in linux-zen/trunk (PKGBUILD)

2018-12-21 Thread Jan Steffens via arch-commits
Date: Saturday, December 22, 2018 @ 01:15:42
  Author: heftig
Revision: 342650

4.19.12.zen1-1

Modified:
  linux-zen/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-21 17:05:23 UTC (rev 342649)
+++ PKGBUILD2018-12-22 01:15:42 UTC (rev 342650)
@@ -4,7 +4,7 @@
 
 pkgbase=linux-zen   # Build stock -zen kernel
 #pkgbase=linux-custom   # Build kernel with a different name
-_srcver=4.19.11-zen1
+_srcver=4.19.12-zen1
 pkgver=${_srcver//-/.}
 pkgrel=1
 arch=(x86_64)


[arch-commits] Commit in linux/repos (7 files)

2018-12-21 Thread Jan Steffens via arch-commits
Date: Saturday, December 22, 2018 @ 01:16:23
  Author: heftig
Revision: 342653

archrelease: copy trunk to staging-x86_64

Added:
  linux/repos/staging-x86_64/
  linux/repos/staging-x86_64/60-linux.hook
(from rev 342651, linux/trunk/60-linux.hook)
  linux/repos/staging-x86_64/90-linux.hook
(from rev 342651, linux/trunk/90-linux.hook)
  linux/repos/staging-x86_64/PKGBUILD
(from rev 342651, linux/trunk/PKGBUILD)
  linux/repos/staging-x86_64/config
(from rev 342651, linux/trunk/config)
  linux/repos/staging-x86_64/linux.install
(from rev 342651, linux/trunk/linux.install)
  linux/repos/staging-x86_64/linux.preset
(from rev 342651, linux/trunk/linux.preset)

---+
 60-linux.hook |   12 
 90-linux.hook |   11 
 PKGBUILD  |  243 +
 config| 9798 
 linux.install |   12 
 linux.preset  |   14 
 6 files changed, 10090 insertions(+)

The diff is longer than the limit of 200KB.
Use svn diff -r 342652:342653 to see the changes.


[arch-commits] Commit in linux/trunk (PKGBUILD)

2018-12-21 Thread Jan Steffens via arch-commits
Date: Saturday, December 22, 2018 @ 01:15:44
  Author: heftig
Revision: 342651

4.19.12.arch1-1

Modified:
  linux/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-22 01:15:42 UTC (rev 342650)
+++ PKGBUILD2018-12-22 01:15:44 UTC (rev 342651)
@@ -4,7 +4,7 @@
 
 pkgbase=linux   # Build stock -ARCH kernel
 #pkgbase=linux-custom   # Build kernel with a different name
-_srcver=4.19.11-arch1
+_srcver=4.19.12-arch1
 pkgver=${_srcver//-/.}
 pkgrel=1
 arch=(x86_64)


[arch-commits] Commit in gendesk/repos/community-x86_64 (PKGBUILD PKGBUILD)

2018-12-21 Thread Alexander Rødseth via arch-commits
Date: Saturday, December 22, 2018 @ 00:49:54
  Author: arodseth
Revision: 417491

archrelease: copy trunk to community-x86_64

Added:
  gendesk/repos/community-x86_64/PKGBUILD
(from rev 417490, gendesk/trunk/PKGBUILD)
Deleted:
  gendesk/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   75 +
 1 file changed, 36 insertions(+), 39 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-22 00:49:43 UTC (rev 417490)
+++ PKGBUILD2018-12-22 00:49:54 UTC (rev 417491)
@@ -1,39 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-
-pkgname=gendesk
-pkgver=1.0.1
-pkgrel=1
-pkgdesc='Utility for generating desktop files'
-arch=('x86_64')
-url='https://gendesk.roboticoverlords.org/'
-license=('MIT')
-makedepends=('gcc-go' 'git' 'mercurial')
-source=("https://roboticoverlords.org/$pkgname/$pkgname-$pkgver.tar.xz"{,.asc}
-'https://roboticoverlords.org/images/default.png')
-validpgpkeys=('962855F072C7A01846405864FCF3C8CB5CF9C8D4')
-sha256sums=('0d10ae331213ff93ea5290d73eed444f8bd795aae3e2302e9c5eaf5dfadbac6c'
-'SKIP'
-'4d96eded48e536d02e35727c36dc20844c2e44654e81baf78e10aee4eb48e837')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-
-  GOPATH=`pwd` go get -d -v
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  GOPATH=`pwd` go build -buildmode=pie -ldflags="-s -w"
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  install -Dm755 "$pkgname-$pkgver" "$pkgdir/usr/bin/$pkgname"
-  install -Dm644 "$srcdir/default.png" "$pkgdir/usr/share/pixmaps/default.png"
-  install -Dm644 "$pkgname.1.gz" "$pkgdir/usr/share/man/man1/$pkgname.1.gz"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim: ts=2 sw=2 et:

Copied: gendesk/repos/community-x86_64/PKGBUILD (from rev 417490, 
gendesk/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-22 00:49:54 UTC (rev 417491)
@@ -0,0 +1,36 @@
+# Maintainer: Alexander F. Rødseth 
+
+pkgname=gendesk
+pkgver=1.0.2
+pkgrel=1
+pkgdesc='Utility for generating desktop files'
+arch=('x86_64')
+url='https://gendesk.roboticoverlords.org/'
+license=('MIT')
+makedepends=('gcc-go' 'git' 'mercurial')
+source=("https://roboticoverlords.org/$pkgname/$pkgname-$pkgver.tar.xz"{,.asc}
+'https://roboticoverlords.org/images/default.png')
+validpgpkeys=('962855F072C7A01846405864FCF3C8CB5CF9C8D4')
+sha256sums=('cb48fda9f501fa7d014bec5e4324a5f751904a473651c4a7f665736061c6c27d'
+'SKIP'
+'4d96eded48e536d02e35727c36dc20844c2e44654e81baf78e10aee4eb48e837')
+
+prepare() {
+  cd $pkgname-$pkgver
+  GOPATH="$PWD" go get -d -v
+}
+
+build() {
+  cd $pkgname-$pkgver
+  GOPATH="$PWD" go build -buildmode=pie -ldflags="-s -w"
+}
+
+package() {
+  cd $pkgname-$pkgver
+  install -Dm755 "$pkgname-$pkgver" "$pkgdir/usr/bin/$pkgname"
+  install -Dm644 "$srcdir/default.png" "$pkgdir/usr/share/pixmaps/default.png"
+  install -Dm644 "$pkgname.1.gz" "$pkgdir/usr/share/man/man1/$pkgname.1.gz"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in gendesk/trunk (PKGBUILD)

2018-12-21 Thread Alexander Rødseth via arch-commits
Date: Saturday, December 22, 2018 @ 00:49:43
  Author: arodseth
Revision: 417490

upgpkg: gendesk 1.0.2-1

Modified:
  gendesk/trunk/PKGBUILD

--+
 PKGBUILD |   17 +++--
 1 file changed, 7 insertions(+), 10 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-22 00:48:14 UTC (rev 417489)
+++ PKGBUILD2018-12-22 00:49:43 UTC (rev 417490)
@@ -1,7 +1,7 @@
 # Maintainer: Alexander F. Rødseth 
 
 pkgname=gendesk
-pkgver=1.0.1
+pkgver=1.0.2
 pkgrel=1
 pkgdesc='Utility for generating desktop files'
 arch=('x86_64')
@@ -11,25 +11,22 @@
 source=("https://roboticoverlords.org/$pkgname/$pkgname-$pkgver.tar.xz"{,.asc}
 'https://roboticoverlords.org/images/default.png')
 validpgpkeys=('962855F072C7A01846405864FCF3C8CB5CF9C8D4')
-sha256sums=('0d10ae331213ff93ea5290d73eed444f8bd795aae3e2302e9c5eaf5dfadbac6c'
+sha256sums=('cb48fda9f501fa7d014bec5e4324a5f751904a473651c4a7f665736061c6c27d'
 'SKIP'
 '4d96eded48e536d02e35727c36dc20844c2e44654e81baf78e10aee4eb48e837')
 
 prepare() {
-  cd "$pkgname-$pkgver"
-
-  GOPATH=`pwd` go get -d -v
+  cd $pkgname-$pkgver
+  GOPATH="$PWD" go get -d -v
 }
 
 build() {
-  cd "$pkgname-$pkgver"
-
-  GOPATH=`pwd` go build -buildmode=pie -ldflags="-s -w"
+  cd $pkgname-$pkgver
+  GOPATH="$PWD" go build -buildmode=pie -ldflags="-s -w"
 }
 
 package() {
-  cd "$pkgname-$pkgver"
-
+  cd $pkgname-$pkgver
   install -Dm755 "$pkgname-$pkgver" "$pkgdir/usr/bin/$pkgname"
   install -Dm644 "$srcdir/default.png" "$pkgdir/usr/share/pixmaps/default.png"
   install -Dm644 "$pkgname.1.gz" "$pkgdir/usr/share/man/man1/$pkgname.1.gz"


[arch-commits] Commit in virt-manager/trunk (PKGBUILD)

2018-12-21 Thread Balló György via arch-commits
Date: Saturday, December 22, 2018 @ 00:48:09
  Author: bgyorgy
Revision: 417488

upgpkg: virt-manager 2.0.0-2

Fix dependencies, move more files to the virt-manager package

Modified:
  virt-manager/trunk/PKGBUILD

--+
 PKGBUILD |   26 ++
 1 file changed, 18 insertions(+), 8 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-21 23:07:27 UTC (rev 417487)
+++ PKGBUILD2018-12-22 00:48:09 UTC (rev 417488)
@@ -5,14 +5,13 @@
 pkgbase=virt-manager
 pkgname=(virt-install virt-manager)
 pkgver=2.0.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Console user interface for managing virtual machines"
 arch=('any')
 url="http://virt-manager.org/;
 license=('GPL')
-depends=('python-gobject' 'libvirt-glib' 'libvirt-python'
-'python-requests' 'libosinfo')
-makedepends=('intltool' 'python2-cairo')
+depends=('libosinfo' 'libvirt-python' 'python-gobject' 'python-requests')
+makedepends=('intltool')
 
source=("https://virt-manager.org/download/sources/virt-manager/virt-manager-$pkgver.tar.gz;)
 
sha512sums=('5d0eb65dceb5c913973edaa52414b1665d1ed9cd3f226e28a592decddec2acd8fdb589f60736edf9b7d95830893812f9aecca2cbdd715033ca7ea53a95472876')
 
@@ -26,12 +25,23 @@
   python setup.py --no-update-icon-cache --no-compile-schemas install --root 
"$pkgdir"
   python -m compileall "${pkgdir}/usr/share/virt-manager"
   python -O -m compileall "${pkgdir}/usr/share/virt-manager"
-  rm "${pkgdir}/usr/bin/virt-manager"
+
+  # Split virt-manager
+  [[ -d $srcdir/virt-manager ]] && rm -r "$srcdir/virt-manager/"
+  mkdir "$srcdir"/virt-manager
+  mv "$pkgdir"/usr/bin/virt-manager \
+ "$pkgdir"/usr/share/{appdata,applications,glib-2.0,icons}/ \
+ "$pkgdir"/usr/share/man/man1/virt-manager.1 \
+ "$srcdir/virt-manager/"
 }
 
 package_virt-manager() {
   pkgdesc="Desktop user interface for managing virtual machines"
-  depends=("virt-install=$pkgver" 'vte3' 'gtk-vnc' 'spice-gtk3' 
'python2-cairo')
-  cd "$srcdir/$pkgbase-$pkgver"
-  install -Dm 755 build/virt-manager -t "${pkgdir}/usr/bin"
+  depends=("virt-install=$pkgver" 'gtk-vnc' 'libvirt-glib' 'spice-gtk' 'vte3')
+
+  cd "$srcdir"/virt-manager
+  mkdir -p "$pkgdir"/usr/{bin,share/man/man1}
+  mv virt-manager "$pkgdir/usr/bin"
+  mv appdata applications glib-2.0 icons "$pkgdir"/usr/share
+  mv virt-manager.1 "$pkgdir"/usr/share/man/man1
 }


[arch-commits] Commit in virt-manager/repos/community-any (PKGBUILD PKGBUILD)

2018-12-21 Thread Balló György via arch-commits
Date: Saturday, December 22, 2018 @ 00:48:14
  Author: bgyorgy
Revision: 417489

archrelease: copy trunk to community-any

Added:
  virt-manager/repos/community-any/PKGBUILD
(from rev 417488, virt-manager/trunk/PKGBUILD)
Deleted:
  virt-manager/repos/community-any/PKGBUILD

--+
 PKGBUILD |   84 ++---
 1 file changed, 47 insertions(+), 37 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-22 00:48:09 UTC (rev 417488)
+++ PKGBUILD2018-12-22 00:48:14 UTC (rev 417489)
@@ -1,37 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Contributor: Daniel Micay 
-# Contributor: Jonathan Wiersma 
-
-pkgbase=virt-manager
-pkgname=(virt-install virt-manager)
-pkgver=2.0.0
-pkgrel=1
-pkgdesc="Console user interface for managing virtual machines"
-arch=('any')
-url="http://virt-manager.org/;
-license=('GPL')
-depends=('python-gobject' 'libvirt-glib' 'libvirt-python'
-'python-requests' 'libosinfo')
-makedepends=('intltool' 'python2-cairo')
-source=("https://virt-manager.org/download/sources/virt-manager/virt-manager-$pkgver.tar.gz;)
-sha512sums=('5d0eb65dceb5c913973edaa52414b1665d1ed9cd3f226e28a592decddec2acd8fdb589f60736edf9b7d95830893812f9aecca2cbdd715033ca7ea53a95472876')
-
-build() {
-  cd "$srcdir/$pkgbase-$pkgver"
-  python setup.py build
-}
-
-package_virt-install() {
-  cd "$srcdir/$pkgbase-$pkgver"
-  python setup.py --no-update-icon-cache --no-compile-schemas install --root 
"$pkgdir"
-  python -m compileall "${pkgdir}/usr/share/virt-manager"
-  python -O -m compileall "${pkgdir}/usr/share/virt-manager"
-  rm "${pkgdir}/usr/bin/virt-manager"
-}
-
-package_virt-manager() {
-  pkgdesc="Desktop user interface for managing virtual machines"
-  depends=("virt-install=$pkgver" 'vte3' 'gtk-vnc' 'spice-gtk3' 
'python2-cairo')
-  cd "$srcdir/$pkgbase-$pkgver"
-  install -Dm 755 build/virt-manager -t "${pkgdir}/usr/bin"
-}

Copied: virt-manager/repos/community-any/PKGBUILD (from rev 417488, 
virt-manager/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-22 00:48:14 UTC (rev 417489)
@@ -0,0 +1,47 @@
+# Maintainer: Sergej Pupykin 
+# Contributor: Daniel Micay 
+# Contributor: Jonathan Wiersma 
+
+pkgbase=virt-manager
+pkgname=(virt-install virt-manager)
+pkgver=2.0.0
+pkgrel=2
+pkgdesc="Console user interface for managing virtual machines"
+arch=('any')
+url="http://virt-manager.org/;
+license=('GPL')
+depends=('libosinfo' 'libvirt-python' 'python-gobject' 'python-requests')
+makedepends=('intltool')
+source=("https://virt-manager.org/download/sources/virt-manager/virt-manager-$pkgver.tar.gz;)
+sha512sums=('5d0eb65dceb5c913973edaa52414b1665d1ed9cd3f226e28a592decddec2acd8fdb589f60736edf9b7d95830893812f9aecca2cbdd715033ca7ea53a95472876')
+
+build() {
+  cd "$srcdir/$pkgbase-$pkgver"
+  python setup.py build
+}
+
+package_virt-install() {
+  cd "$srcdir/$pkgbase-$pkgver"
+  python setup.py --no-update-icon-cache --no-compile-schemas install --root 
"$pkgdir"
+  python -m compileall "${pkgdir}/usr/share/virt-manager"
+  python -O -m compileall "${pkgdir}/usr/share/virt-manager"
+
+  # Split virt-manager
+  [[ -d $srcdir/virt-manager ]] && rm -r "$srcdir/virt-manager/"
+  mkdir "$srcdir"/virt-manager
+  mv "$pkgdir"/usr/bin/virt-manager \
+ "$pkgdir"/usr/share/{appdata,applications,glib-2.0,icons}/ \
+ "$pkgdir"/usr/share/man/man1/virt-manager.1 \
+ "$srcdir/virt-manager/"
+}
+
+package_virt-manager() {
+  pkgdesc="Desktop user interface for managing virtual machines"
+  depends=("virt-install=$pkgver" 'gtk-vnc' 'libvirt-glib' 'spice-gtk' 'vte3')
+
+  cd "$srcdir"/virt-manager
+  mkdir -p "$pkgdir"/usr/{bin,share/man/man1}
+  mv virt-manager "$pkgdir/usr/bin"
+  mv appdata applications glib-2.0 icons "$pkgdir"/usr/share
+  mv virt-manager.1 "$pkgdir"/usr/share/man/man1
+}


[arch-commits] Commit in qgis/trunk (PKGBUILD)

2018-12-21 Thread Balló György via arch-commits
Date: Friday, December 21, 2018 @ 23:07:22
  Author: bgyorgy
Revision: 417486

upgpkg: qgis 3.4.3-1

Update to new version

Modified:
  qgis/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-21 23:01:58 UTC (rev 417485)
+++ PKGBUILD2018-12-21 23:07:22 UTC (rev 417486)
@@ -9,7 +9,7 @@
 # Contributor: Eric Forgeot < http://esclinux.tk >
 
 pkgname=qgis
-pkgver=3.4.2
+pkgver=3.4.3
 pkgrel=1
 pkgdesc='Geographic Information System (GIS) that supports vector, raster & 
database formats'
 url='https://qgis.org/'
@@ -29,7 +29,7 @@
 'python-numpy: Processing plugin'
 'python-yaml: Processing plugin')
 source=("https://qgis.org/downloads/$pkgname-$pkgver.tar.bz2;)
-sha256sums=('6a7f304985940048046074ad7724da44cbaf857a72e2228163d25153be3e6273')
+sha256sums=('56e3b9c75aedb027e81f5fb71f5cccbe87144e0b7376c6816a1e8664aa998d8b')
 
 prepare() {
   [[ -d build ]] || mkdir build


[arch-commits] Commit in qgis/repos/community-x86_64 (PKGBUILD PKGBUILD)

2018-12-21 Thread Balló György via arch-commits
Date: Friday, December 21, 2018 @ 23:07:27
  Author: bgyorgy
Revision: 417487

archrelease: copy trunk to community-x86_64

Added:
  qgis/repos/community-x86_64/PKGBUILD
(from rev 417486, qgis/trunk/PKGBUILD)
Deleted:
  qgis/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  110 ++---
 1 file changed, 55 insertions(+), 55 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-21 23:07:22 UTC (rev 417486)
+++ PKGBUILD2018-12-21 23:07:27 UTC (rev 417487)
@@ -1,55 +0,0 @@
-# Maintainer: Balló György 
-# Contributor: Doug Newgard 
-# Contributor: XavierCLL 
-# Contributor: SaultDon 
-# Contributor: Lantald < lantald at gmx.com >
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org
-# Contributor: Gerardo Exequiel Pozzi 
-# Contributor: Eric Forgeot < http://esclinux.tk >
-
-pkgname=qgis
-pkgver=3.4.2
-pkgrel=1
-pkgdesc='Geographic Information System (GIS) that supports vector, raster & 
database formats'
-url='https://qgis.org/'
-license=(GPL)
-arch=(x86_64)
-depends=(desktop-file-utils gdal hicolor-icon-theme libzip 
python-qscintilla-qt5 qca qt5-3d
- qt5-serialport qt5-webkit qt5-xmlpatterns qtkeychain qwtpolar 
spatialindex python-sip)
-makedepends=(cmake fcgi gsl python-six qt5-tools txt2tags sip)
-optdepends=('fcgi: Map server'
-'gpsbabel: GPS Tools plugin'
-'gsl: Georeferencer plugin'
-'python-gdal: DB Manager plugin; Processing plugin'
-'python-jinja: MetaSearch plugin'
-'python-owslib: MetaSearch plugin'
-'python-psycopg2: DB Manager plugin; Processing plugin'
-'python-pygments: MetaSearch plugin'
-'python-numpy: Processing plugin'
-'python-yaml: Processing plugin')
-source=("https://qgis.org/downloads/$pkgname-$pkgver.tar.bz2;)
-sha256sums=('6a7f304985940048046074ad7724da44cbaf857a72e2228163d25153be3e6273')
-
-prepare() {
-  [[ -d build ]] || mkdir build
-}
-
-build() {
-  cd build
-  cmake -G "Unix Makefiles" ../$pkgname-$pkgver/ \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_3D=TRUE \
--DWITH_SERVER=TRUE \
--DWITH_CUSTOM_WIDGETS=TRUE \
--DBINDINGS_GLOBAL_INSTALL=TRUE \
--DQGIS_MANUAL_SUBDIR=share/man \
--DWITH_QWTPOLAR=TRUE \
--DWITH_INTERNAL_QWTPOLAR=FALSE
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: qgis/repos/community-x86_64/PKGBUILD (from rev 417486, 
qgis/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-21 23:07:27 UTC (rev 417487)
@@ -0,0 +1,55 @@
+# Maintainer: Balló György 
+# Contributor: Doug Newgard 
+# Contributor: XavierCLL 
+# Contributor: SaultDon 
+# Contributor: Lantald < lantald at gmx.com >
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org
+# Contributor: Gerardo Exequiel Pozzi 
+# Contributor: Eric Forgeot < http://esclinux.tk >
+
+pkgname=qgis
+pkgver=3.4.3
+pkgrel=1
+pkgdesc='Geographic Information System (GIS) that supports vector, raster & 
database formats'
+url='https://qgis.org/'
+license=(GPL)
+arch=(x86_64)
+depends=(desktop-file-utils gdal hicolor-icon-theme libzip 
python-qscintilla-qt5 qca qt5-3d
+ qt5-serialport qt5-webkit qt5-xmlpatterns qtkeychain qwtpolar 
spatialindex python-sip)
+makedepends=(cmake fcgi gsl python-six qt5-tools txt2tags sip)
+optdepends=('fcgi: Map server'
+'gpsbabel: GPS Tools plugin'
+'gsl: Georeferencer plugin'
+'python-gdal: DB Manager plugin; Processing plugin'
+'python-jinja: MetaSearch plugin'
+'python-owslib: MetaSearch plugin'
+'python-psycopg2: DB Manager plugin; Processing plugin'
+'python-pygments: MetaSearch plugin'
+'python-numpy: Processing plugin'
+'python-yaml: Processing plugin')
+source=("https://qgis.org/downloads/$pkgname-$pkgver.tar.bz2;)
+sha256sums=('56e3b9c75aedb027e81f5fb71f5cccbe87144e0b7376c6816a1e8664aa998d8b')
+
+prepare() {
+  [[ -d build ]] || mkdir build
+}
+
+build() {
+  cd build
+  cmake -G "Unix Makefiles" ../$pkgname-$pkgver/ \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_3D=TRUE \
+-DWITH_SERVER=TRUE \
+-DWITH_CUSTOM_WIDGETS=TRUE \
+-DBINDINGS_GLOBAL_INSTALL=TRUE \
+-DQGIS_MANUAL_SUBDIR=share/man \
+-DWITH_QWTPOLAR=TRUE \
+-DWITH_INTERNAL_QWTPOLAR=FALSE
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in firefox-developer-edition-i18n/repos/community-any (2 files)

2018-12-21 Thread Andrew Crerar via arch-commits
Date: Friday, December 21, 2018 @ 23:01:58
  Author: andrewsc
Revision: 417485

archrelease: copy trunk to community-any

Added:
  firefox-developer-edition-i18n/repos/community-any/PKGBUILD
(from rev 417484, firefox-developer-edition-i18n/trunk/PKGBUILD)
Deleted:
  firefox-developer-edition-i18n/repos/community-any/PKGBUILD

--+
 PKGBUILD |  464 ++---
 1 file changed, 232 insertions(+), 232 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-21 23:01:30 UTC (rev 417484)
+++ PKGBUILD2018-12-21 23:01:58 UTC (rev 417485)
@@ -1,232 +0,0 @@
-# Maintainer: Andrew Crerar 
-
-pkgbase=firefox-developer-edition-i18n
-pkgver=65.0b5
-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=('e5994df0b606caf75c6fad5820938a0c18acd2ce300813cecbb81403a843899da32d04805bdc50c6ad8c1616e79521274e06ca45b860e427a58e8214a27bd811'
-
'895298a9231c60afb4497c2db170a293755c1a1359769e189a5aa3c1c86d97bfe22d56325d7ac2e0fc494ec203fcfc16f7a0b9b6790cd5dfb22107a76ad1bf2b'
-
'f245039d439ca0866aa23549477f7126da27fdcebbfa57fc28cbc21f2d373c84568ae30c99d2698c141393985619231e7eab4983822d83251f0753636fc23b6b'
-
'4cddc7c51524c39be2b80c32fdffe472ff2c561f0bc8c8ff2e4724a1f5567e77b940b085001e8e0199db022da252cf3bd71a68ebfa0a8cd3fc5f9bd3ef24926a'
-
'd3a21d5585e0311aa52c3f4901ba251c22e482403f56aac37b873b308dc5f068faf9a170a18612af22ffcb8dcba935d60bdb66ab898399aad8c5d8af847eec67'
-
'7f2bf7868d818041639d8fcaeb602c7d638b73c84a0809f24f73d559bcb8703007d0e71c8240c65c6471ccab93a381dddb709cc20b44ecc4e11a27d9ecf451e7'
-

[arch-commits] Commit in firefox-developer-edition-i18n/trunk (PKGBUILD)

2018-12-21 Thread Andrew Crerar via arch-commits
Date: Friday, December 21, 2018 @ 23:01:30
  Author: andrewsc
Revision: 417484

upgpkg: firefox-developer-edition-i18n 65.0b6-1

firefox-developer-edition-i18n: Updating to 65.0b6

Modified:
  firefox-developer-edition-i18n/trunk/PKGBUILD

--+
 PKGBUILD |  196 ++---
 1 file changed, 98 insertions(+), 98 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-21 22:53:09 UTC (rev 417483)
+++ PKGBUILD2018-12-21 23:01:30 UTC (rev 417484)
@@ -1,7 +1,7 @@
 # Maintainer: Andrew Crerar 
 
 pkgbase=firefox-developer-edition-i18n
-pkgver=65.0b5
+pkgver=65.0b6
 pkgrel=1
 pkgdesc="Language pack for Firefox Developer Edition"
 arch=('any')
@@ -133,100 +133,100 @@
 
"$pkgdir/usr/lib/firefox-developer-edition/browser/extensions/langpack-$1...@devedition.mozilla.org.xpi"
 }
 
-sha512sums=('e5994df0b606caf75c6fad5820938a0c18acd2ce300813cecbb81403a843899da32d04805bdc50c6ad8c1616e79521274e06ca45b860e427a58e8214a27bd811'
-
'895298a9231c60afb4497c2db170a293755c1a1359769e189a5aa3c1c86d97bfe22d56325d7ac2e0fc494ec203fcfc16f7a0b9b6790cd5dfb22107a76ad1bf2b'
-
'f245039d439ca0866aa23549477f7126da27fdcebbfa57fc28cbc21f2d373c84568ae30c99d2698c141393985619231e7eab4983822d83251f0753636fc23b6b'
-
'4cddc7c51524c39be2b80c32fdffe472ff2c561f0bc8c8ff2e4724a1f5567e77b940b085001e8e0199db022da252cf3bd71a68ebfa0a8cd3fc5f9bd3ef24926a'
-
'd3a21d5585e0311aa52c3f4901ba251c22e482403f56aac37b873b308dc5f068faf9a170a18612af22ffcb8dcba935d60bdb66ab898399aad8c5d8af847eec67'
-
'7f2bf7868d818041639d8fcaeb602c7d638b73c84a0809f24f73d559bcb8703007d0e71c8240c65c6471ccab93a381dddb709cc20b44ecc4e11a27d9ecf451e7'
-
'b80f9bf4dc13b102058ce182d8f98c97a864691311f73f1f994c3e0f9481cbdd2ae3ebd16b7f2779eaf7b5f2c797b34832d731b0c5afc83808a08741e54190cf'
-
'e4b4929003d0679ae4a3ad340744aa6ceb9d0b4cb68996467ee5302eee20062ca72d90ed99bea0ce016a246a1530eaebf3a178f53fa0ed6b731aa68a4eb95413'
-
'5169990f2e93bf4c3dfe432120d10b01f2865246ed2abd12e173e8a9c10ddd1295bed7a0064c10e1ff4487e4c226602a83dfc48815b3db5f9b3be2607518e4aa'
-
'1efc660e41d433f0636bb0cfe55b688170ef71230c0ac2e14804a51234e689bfb86d3eda4fb03e69cab14887cd4d8d11b740e960e2388ef9d4cdc32b09f65cf9'
-
'96e029025125313d3350e9820f4f21dcf496842f2cea4965e4b22eed41b3ee90964c947222d9f8fe2a9c76539e5f926e9d8b6a7687f390cd96b5cac61e033d07'
-
'415f3881266e5614c003ec3a4f32b15aa0d2347cd8a696bdaf761aa4a1db2e64609d5805d212bd5a50a0a29dee8c149fbdf080ebf2a881bd0c053bbee6d1b46c'
-
'0f8322accba899b71b405fdead271583167f0d7311b9838946a6e00d3e6d229d06877b1771ed380c17d580ee63804c662b5ad573d802d3c603b6b138e1734bf4'
-
'6d9c55bda4385690cd2d42c63f99709a275d6f4fdb39b8992632d428962e4b249f979e2c0defd2854bc2a3c32b09725d6f3f7b1afd7975b2b99cef1d200470ef'
-
'c7a86ab231303d204c7d57d9691f0a453b460ff2dfd4e3d465a8f4dff48f655940491372c5844bbeac30ce9c0caf20bb8525f9178d0f970e48d872e59714a929'
-
'ed8a60587625117cab651d2c4fffa59b06b3e707dcae742c7ba60e1ab963a73986abfb0703bfb26ef502a39801e3989182077e74890eab75d685bc2057b0c48a'
-
'050f8dfd1c6e60100de711fe3f5aa2678a6c0a320f5fa42bd6bacdf05497dbf2a6dbf51f91b9c4d9c2ff1484ca7853c33973dc967e9bef57f54bf9b5a70df72a'
-
'471e968e65c323666da97c20ea73df95b4da768486eaa011af4aaa205c6319270ee0618969142192b0eea828f6565f513ad5c2694a8dc04a56329c0f4ee0e597'
-
'1fb32184b8f3378208a7d38062e81a02f9cf76d6f076999eb8ff349aaa62a4f340c64c662de67eb27bd1361dfa22d9336bd5b0b9e7b7b002e31c1dc5bd469214'
-
'08c75ed4288e9c5b959526f81267e159993cda8c308cc875cfc51a007981d57abc2d6b373b367db3317f3fe43e5285d06a3abe780feab57300a6a6e55b0df541'
-
'638aff6de6e616622d778e1778f204f9a00256e83d531b2ba04570c60570925e2cbd0b686a77c4c22661a88dd485749f2cd836c0293da1b2785f712cf1cb25c7'
-
'38fa2730b821c3d2b762d169d584a210087b5f0fd8484c54e5bbc3b672d26c4ebb25aee102847e479f40889cdba0e336c111a51b68428fbb0cb76352d83be8ba'
-
'31dcc422ff575dc4209a2aa34e364caed2e0447a2f1e6589385b1c30a84f008e91f8e45eff09c55c1744ecdc0f9e5ae198477055c4042da470901055d036026f'
-
'72d4a548915a83e9bdba4e97a3f578e7af8beb454207cc97bc3840b6f96040f13cb12a658f24c03df47d65c66b8dcc650e2f4915f22df4bc27052a40bfe6ca26'
-
'95bc0f97dea4ad75ea7c4132825f2ca9def116d277244c77230b445de5ba5a18496231ecc69926793eca3ab16a4237db254037719a9deca6e8501455687c2cc8'
-
'0d69ed0024cb3d5fecaed5065d363dd773361b55b3663826dad3b843174094ca26a4f0c056017b8802da833d25d5bc2027d14925938f8ab452737d2e164af79a'
-
'37f592184f63412e4e9db4a533f1a22524cee68f785fdc1bca14fdeff140c9bfd42c983b8caeb71f7842d0467b5e77931734b85947406955fb1cf4973c8a3aa9'
-
'7379b9e8f135b5d384f5b5d4d5a6cb78bb18097a47d11beb95db729d95eeef2d0c72874399ca82a5137cc04dca7a33b0d12e390af69064cea41802b18cbeebd8'
-

[arch-commits] Commit in firefox-developer-edition/repos/community-x86_64 (8 files)

2018-12-21 Thread Andrew Crerar via arch-commits
Date: Friday, December 21, 2018 @ 22:53:09
  Author: andrewsc
Revision: 417483

archrelease: copy trunk to community-x86_64

Added:
  firefox-developer-edition/repos/community-x86_64/PKGBUILD
(from rev 417482, firefox-developer-edition/trunk/PKGBUILD)
  
firefox-developer-edition/repos/community-x86_64/firefox-developer-edition.desktop
(from rev 417482, 
firefox-developer-edition/trunk/firefox-developer-edition.desktop)
  firefox-developer-edition/repos/community-x86_64/firefox-install-dir.patch
(from rev 417482, firefox-developer-edition/trunk/firefox-install-dir.patch)
  firefox-developer-edition/repos/community-x86_64/firefox-symbolic.svg
(from rev 417482, 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  |  348 ++--
 firefox-developer-edition.desktop |  622 ++--
 firefox-install-dir.patch |   84 ++--
 firefox-symbolic.svg  |  128 +++
 4 files changed, 591 insertions(+), 591 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-21 22:52:45 UTC (rev 417482)
+++ PKGBUILD2018-12-21 22:53:09 UTC (rev 417483)
@@ -1,174 +0,0 @@
-# Maintainer: Andrew Crerar 
-# Contributor: Jan Alexander Steffens (heftig) 
-
-pkgname=firefox-developer-edition
-pkgver=65.0b5
-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' 'sqlite' 'ttf-font' 'libpulse')
-makedepends=('unzip' 'zip' 'diffutils' 'python2' 'python' 'yasm' 'mesa' 
'imake' 'inetutils'
- 'xorg-server-xvfb' 'autoconf2.13' 'rust' 'mercurial' 'clang' 
'llvm' 'jack'
- 'gtk2' 'nodejs' 'python2-psutil' 'cbindgen' 'nasm')
-optdepends=('networkmanager: Location detection via available WiFi networks'
-'libnotify: Notification integration'
-'pulseaudio: Audio support'
-'speech-dispatcher: Text-to-Speech'
-'hunspell-en_US: Spell Checking, American English')
-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
-ac_add_options --enable-rust-simd
-ac_add_options --enable-lto
-export CC=clang
-export CXX=clang++
-export AR=llvm-ar
-export NM=llvm-nm
-export RANLIB=llvm-ranlib
-
-# 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 

[arch-commits] Commit in firefox-developer-edition/trunk (PKGBUILD)

2018-12-21 Thread Andrew Crerar via arch-commits
Date: Friday, December 21, 2018 @ 22:52:45
  Author: andrewsc
Revision: 417482

upgpkg: firefox-developer-edition 65.0b6-1

firefox-developer-edition: Updating to 65.0b6

Modified:
  firefox-developer-edition/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-21 22:27:26 UTC (rev 417481)
+++ PKGBUILD2018-12-21 22:52:45 UTC (rev 417482)
@@ -2,7 +2,7 @@
 # Contributor: Jan Alexander Steffens (heftig) 
 
 pkgname=firefox-developer-edition
-pkgver=65.0b5
+pkgver=65.0b6
 pkgrel=1
 pkgdesc="Developer Edition of the popular Firefox web browser"
 arch=('x86_64')


[arch-commits] Commit in pcmanfm-gtk3/repos/community-x86_64 (PKGBUILD PKGBUILD)

2018-12-21 Thread Balló György via arch-commits
Date: Friday, December 21, 2018 @ 22:27:26
  Author: bgyorgy
Revision: 417481

archrelease: copy trunk to community-x86_64

Added:
  pcmanfm-gtk3/repos/community-x86_64/PKGBUILD
(from rev 417480, pcmanfm-gtk3/trunk/PKGBUILD)
Deleted:
  pcmanfm-gtk3/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   67 ++---
 1 file changed, 33 insertions(+), 34 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-21 22:27:21 UTC (rev 417480)
+++ PKGBUILD2018-12-21 22:27:26 UTC (rev 417481)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Unknown47 
-# Contributor: Angel Velasquez 
-# Contributor: Juergen Hoetzel 
-
-pkgname=pcmanfm-gtk3
-_pkgname=pcmanfm
-pkgver=1.3.0
-pkgrel=1
-pkgdesc='Extremely fast and lightweight file manager (GTK+ 3 version)'
-arch=('x86_64')
-url='https://lxde.org/'
-license=('GPL')
-groups=('lxde-gtk3')
-depends=('libfm-gtk3' 'lxmenu-data')
-makedepends=('intltool')
-optdepends=('gvfs: for trash support, mounting with udisks and remote 
filesystems'
-'xarchiver: archive management')
-conflicts=($_pkgname)
-source=(https://downloads.sourceforge.net/$_pkgname/$_pkgname-$pkgver.tar.xz)
-sha256sums=('5a693e9bf3f3294f0ee7264c1c1a600a88ee27d1572e7dd5c4b0e84aa7778ffb')
-
-build() {
-  cd $_pkgname-$pkgver
-  ./configure --sysconfdir=/etc --prefix=/usr --with-gtk=3
-  make
-}
-
-package() {
-  cd $_pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: pcmanfm-gtk3/repos/community-x86_64/PKGBUILD (from rev 417480, 
pcmanfm-gtk3/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-21 22:27:26 UTC (rev 417481)
@@ -0,0 +1,33 @@
+# Maintainer: Balló György 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Unknown47 
+# Contributor: Angel Velasquez 
+# Contributor: Juergen Hoetzel 
+
+pkgname=pcmanfm-gtk3
+_pkgname=pcmanfm
+pkgver=1.3.1
+pkgrel=1
+pkgdesc='Extremely fast and lightweight file manager (GTK+ 3 version)'
+arch=('x86_64')
+url='https://lxde.org/'
+license=('GPL')
+groups=('lxde-gtk3')
+depends=('libfm-gtk3' 'lxmenu-data')
+makedepends=('intltool')
+optdepends=('gvfs: for trash support, mounting with udisks and remote 
filesystems'
+'xarchiver: archive management')
+conflicts=($_pkgname)
+source=(https://downloads.sourceforge.net/$_pkgname/$_pkgname-$pkgver.tar.xz)
+sha256sums=('6804043b3ee3a703edde41c724946174b505fe958703eadbd7e0876ece836855')
+
+build() {
+  cd $_pkgname-$pkgver
+  ./configure --sysconfdir=/etc --prefix=/usr --with-gtk=3
+  make
+}
+
+package() {
+  cd $_pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in pcmanfm-gtk3/trunk (PKGBUILD)

2018-12-21 Thread Balló György via arch-commits
Date: Friday, December 21, 2018 @ 22:27:21
  Author: bgyorgy
Revision: 417480

upgpkg: pcmanfm-gtk3 1.3.1-1

Update to new version

Modified:
  pcmanfm-gtk3/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-21 22:26:29 UTC (rev 417479)
+++ PKGBUILD2018-12-21 22:27:21 UTC (rev 417480)
@@ -6,7 +6,7 @@
 
 pkgname=pcmanfm-gtk3
 _pkgname=pcmanfm
-pkgver=1.3.0
+pkgver=1.3.1
 pkgrel=1
 pkgdesc='Extremely fast and lightweight file manager (GTK+ 3 version)'
 arch=('x86_64')
@@ -19,7 +19,7 @@
 'xarchiver: archive management')
 conflicts=($_pkgname)
 source=(https://downloads.sourceforge.net/$_pkgname/$_pkgname-$pkgver.tar.xz)
-sha256sums=('5a693e9bf3f3294f0ee7264c1c1a600a88ee27d1572e7dd5c4b0e84aa7778ffb')
+sha256sums=('6804043b3ee3a703edde41c724946174b505fe958703eadbd7e0876ece836855')
 
 build() {
   cd $_pkgname-$pkgver


[arch-commits] Commit in pcmanfm/repos/community-x86_64 (PKGBUILD PKGBUILD)

2018-12-21 Thread Balló György via arch-commits
Date: Friday, December 21, 2018 @ 22:26:29
  Author: bgyorgy
Revision: 417479

archrelease: copy trunk to community-x86_64

Added:
  pcmanfm/repos/community-x86_64/PKGBUILD
(from rev 417478, pcmanfm/trunk/PKGBUILD)
Deleted:
  pcmanfm/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   63 ++---
 1 file changed, 31 insertions(+), 32 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-21 22:26:24 UTC (rev 417478)
+++ PKGBUILD2018-12-21 22:26:29 UTC (rev 417479)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Unknown47 
-# Contributor: Angel Velasquez 
-# Contributor: Juergen Hoetzel 
-
-pkgname=pcmanfm
-pkgver=1.3.0
-pkgrel=1
-pkgdesc='Extremely fast and lightweight file manager'
-arch=('x86_64')
-url='https://lxde.org/'
-license=('GPL')
-groups=('lxde')
-depends=('libfm-gtk2' 'lxmenu-data')
-makedepends=('intltool')
-optdepends=('gvfs: for trash support, mounting with udisks and remote 
filesystems'
-'xarchiver: archive management')
-source=(https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.xz)
-sha256sums=('5a693e9bf3f3294f0ee7264c1c1a600a88ee27d1572e7dd5c4b0e84aa7778ffb')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --sysconfdir=/etc --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: pcmanfm/repos/community-x86_64/PKGBUILD (from rev 417478, 
pcmanfm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-21 22:26:29 UTC (rev 417479)
@@ -0,0 +1,31 @@
+# Maintainer: Balló György 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Unknown47 
+# Contributor: Angel Velasquez 
+# Contributor: Juergen Hoetzel 
+
+pkgname=pcmanfm
+pkgver=1.3.1
+pkgrel=1
+pkgdesc='Extremely fast and lightweight file manager'
+arch=('x86_64')
+url='https://lxde.org/'
+license=('GPL')
+groups=('lxde')
+depends=('libfm-gtk2' 'lxmenu-data')
+makedepends=('intltool')
+optdepends=('gvfs: for trash support, mounting with udisks and remote 
filesystems'
+'xarchiver: archive management')
+source=(https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.xz)
+sha256sums=('6804043b3ee3a703edde41c724946174b505fe958703eadbd7e0876ece836855')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --sysconfdir=/etc --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in pcmanfm/trunk (PKGBUILD)

2018-12-21 Thread Balló György via arch-commits
Date: Friday, December 21, 2018 @ 22:26:24
  Author: bgyorgy
Revision: 417478

upgpkg: pcmanfm 1.3.1-1

Update to new version

Modified:
  pcmanfm/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-21 22:24:27 UTC (rev 417477)
+++ PKGBUILD2018-12-21 22:26:24 UTC (rev 417478)
@@ -5,7 +5,7 @@
 # Contributor: Juergen Hoetzel 
 
 pkgname=pcmanfm
-pkgver=1.3.0
+pkgver=1.3.1
 pkgrel=1
 pkgdesc='Extremely fast and lightweight file manager'
 arch=('x86_64')
@@ -17,7 +17,7 @@
 optdepends=('gvfs: for trash support, mounting with udisks and remote 
filesystems'
 'xarchiver: archive management')
 source=(https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.xz)
-sha256sums=('5a693e9bf3f3294f0ee7264c1c1a600a88ee27d1572e7dd5c4b0e84aa7778ffb')
+sha256sums=('6804043b3ee3a703edde41c724946174b505fe958703eadbd7e0876ece836855')
 
 build() {
   cd $pkgname-$pkgver


[arch-commits] Commit in libfm/repos/community-x86_64 (PKGBUILD PKGBUILD)

2018-12-21 Thread Balló György via arch-commits
Date: Friday, December 21, 2018 @ 22:24:27
  Author: bgyorgy
Revision: 417477

archrelease: copy trunk to community-x86_64

Added:
  libfm/repos/community-x86_64/PKGBUILD
(from rev 417476, libfm/trunk/PKGBUILD)
Deleted:
  libfm/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  265 ++---
 1 file changed, 132 insertions(+), 133 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-21 22:23:57 UTC (rev 417476)
+++ PKGBUILD2018-12-21 22:24:27 UTC (rev 417477)
@@ -1,133 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Unknown47 
-# Contributor: Angel Velasquez 
-# Contributor: Juergen Hoetzel 
-
-pkgbase=libfm
-pkgname=(libfm libfm-extra libfm-gtk2 libfm-gtk3)
-pkgver=1.3.0.2
-pkgrel=1
-pkgdesc='Library for file management'
-url='https://lxde.org/'
-arch=('x86_64')
-license=('GPL')
-depends=('gtk2' 'gtk3' 'libexif' 'menu-cache')
-makedepends=('intltool' 'gtk-doc')
-source=(https://downloads.sourceforge.net/pcmanfm/libfm-$pkgver.tar.xz)
-sha256sums=('18d06f7996ce1cf8947df6e106bc0338c6ae0c4138c316f2501f6f6f435c7c72')
-
-prepare() {
-  cd $pkgbase-$pkgver
-  # Update xarchiver option
-  # https://github.com/lxde/libfm/issues/35
-  sed -i 's/create=xarchiver --add-to %F/create=xarchiver --compress %F/' 
data/archivers.list
-
-  autoreconf -fi
-}
-
-build() {
-  # GTK+ 2 version
-  [ -d gtk2 ] || cp -r $pkgbase-$pkgver gtk2
-  cd gtk2
-  ./configure --prefix=/usr \
---sysconfdir=/etc \
---with-gnu-ld \
---enable-gtk-doc
-
-  #https://bugzilla.gnome.org/show_bug.cgi?id=656231
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-
-  cd "$srcdir"
-  # GTK+ 3 version
-  [ -d gtk3 ] || cp -r $pkgbase-$pkgver gtk3
-  cd gtk3
-  ./configure --prefix=/usr \
---sysconfdir=/etc \
---with-gnu-ld \
---with-gtk=3
-
-  #https://bugzilla.gnome.org/show_bug.cgi?id=656231
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-package_libfm() {
-  depends=('libexif' "libfm-extra=$pkgver" 'menu-cache')
-  
-  cd gtk2
-  make DESTDIR="$pkgdir" install
-
-  # Temporary fix to FS#32361
-  rm -rf "$pkgdir"/usr/include/libfm
-  mv "$pkgdir"/usr/include/libfm-1.0/ "$pkgdir"/usr/include/libfm
-
-  # Split libfm-extra
-  [[ -d $srcdir/libfm-extra ]] && rm -r "$srcdir/libfm-extra/"
-  mkdir "$srcdir"/libfm-extra
-  mv "$pkgdir"/usr/include/libfm/fm-{extra,version,xml-file}.h \
- "$pkgdir"/usr/lib/libfm-extra.* \
- "$pkgdir"/usr/lib/pkgconfig/libfm-extra.pc \
- "$srcdir/libfm-extra/"
-
-  # Split libfm-gtk2
-  [[ -d $srcdir/libfm-gtk2 ]] && rm -r "$srcdir/libfm-gtk2/"
-  mkdir "$srcdir"/libfm-gtk2
-  mv "$pkgdir/usr/bin" \
- "$pkgdir"/usr/lib/libfm-gtk.* \
- "$pkgdir"/usr/lib/libfm/modules/gtk-* \
- "$pkgdir/usr/lib/pkgconfig/libfm-gtk.pc" \
- "$pkgdir/usr/share/applications" \
- "$pkgdir/usr/share/man" \
- "$srcdir/libfm-gtk2/"
-}
-
-package_libfm-extra() {
-  pkgdesc="Extra library for file management" 
-  depends=('glib2')
-
-  cd "$srcdir"/libfm-extra
-  mkdir -p "$pkgdir"/usr/{include/libfm,lib/pkgconfig}
-  mv *.h "$pkgdir/usr/include/libfm"
-  mv libfm-extra.so* "$pkgdir/usr/lib"
-  mv libfm-extra.pc "$pkgdir/usr/lib/pkgconfig"
-}
-
-package_libfm-gtk2() {
-  pkgdesc='GTK+ 2 library for file management'
-  depends=('gtk2' "libfm=$pkgver")
-  replaces=('lxshortcut')
-  provides=('lxshortcut')
-  conflicts=('lxshortcut')
-
-  cd "$srcdir"/libfm-gtk2
-  mkdir -p "$pkgdir"/usr/{lib/{libfm/modules,pkgconfig},share}
-  mv bin "$pkgdir/usr"
-  mv libfm-gtk.so* "$pkgdir"/usr/lib
-  mv gtk-* "$pkgdir"/usr/lib/libfm/modules
-  mv libfm-gtk.pc "$pkgdir/usr/lib/pkgconfig"
-  mv applications "$pkgdir/usr/share"
-  mv man "$pkgdir/usr/share"
-}
-
-package_libfm-gtk3() {
-  pkgdesc='GTK+ 3 library for file management'
-  depends=('gtk3' "libfm=$pkgver")
-  conflicts=('libfm-gtk2' 'lxshortcut')
-
-  cd gtk3
-  make DESTDIR="$srcdir"/libfm-gtk3 install
-
-  cd "$srcdir"/libfm-gtk3
-  mkdir -p "$pkgdir"/usr/{lib/{libfm/modules,pkgconfig},share}
-  mv usr/bin "$pkgdir/usr"
-  mv usr/lib/libfm-gtk3.so* "$pkgdir"/usr/lib
-  mv usr/lib/libfm/modules/gtk-* "$pkgdir"/usr/lib/libfm/modules
-  mv usr/lib/pkgconfig/libfm-gtk3.pc "$pkgdir/usr/lib/pkgconfig"
-  mv usr/share/applications "$pkgdir/usr/share"
-  mv usr/share/man "$pkgdir/usr/share"
-}

Copied: libfm/repos/community-x86_64/PKGBUILD (from rev 417476, 
libfm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-21 22:24:27 UTC (rev 417477)
@@ -0,0 +1,132 @@
+# Maintainer: Balló György 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Unknown47 
+# Contributor: Angel Velasquez 
+# Contributor: Juergen Hoetzel 
+
+pkgbase=libfm
+pkgname=(libfm libfm-extra libfm-gtk2 libfm-gtk3)
+pkgver=1.3.1
+pkgrel=1

[arch-commits] Commit in libfm/trunk (PKGBUILD)

2018-12-21 Thread Balló György via arch-commits
Date: Friday, December 21, 2018 @ 22:23:57
  Author: bgyorgy
Revision: 417476

upgpkg: libfm 1.3.1-1

Update to new version

Modified:
  libfm/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-21 22:19:22 UTC (rev 417475)
+++ PKGBUILD2018-12-21 22:23:57 UTC (rev 417476)
@@ -6,7 +6,7 @@
 
 pkgbase=libfm
 pkgname=(libfm libfm-extra libfm-gtk2 libfm-gtk3)
-pkgver=1.3.0.2
+pkgver=1.3.1
 pkgrel=1
 pkgdesc='Library for file management'
 url='https://lxde.org/'
@@ -15,7 +15,7 @@
 depends=('gtk2' 'gtk3' 'libexif' 'menu-cache')
 makedepends=('intltool' 'gtk-doc')
 source=(https://downloads.sourceforge.net/pcmanfm/libfm-$pkgver.tar.xz)
-sha256sums=('18d06f7996ce1cf8947df6e106bc0338c6ae0c4138c316f2501f6f6f435c7c72')
+sha256sums=('96b1244bde41ca0eef0332cfb5c67bb16725dfd102128f3e6f74fadc13a1cfe4')
 
 prepare() {
   cd $pkgbase-$pkgver


[arch-commits] Commit in sugar-activity-terminal/repos/community-any (2 files)

2018-12-21 Thread Balló György via arch-commits
Date: Friday, December 21, 2018 @ 22:19:22
  Author: bgyorgy
Revision: 417475

archrelease: copy trunk to community-any

Added:
  sugar-activity-terminal/repos/community-any/PKGBUILD
(from rev 417474, sugar-activity-terminal/trunk/PKGBUILD)
Deleted:
  sugar-activity-terminal/repos/community-any/PKGBUILD

--+
 PKGBUILD |   49 -
 1 file changed, 24 insertions(+), 25 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-21 22:19:16 UTC (rev 417474)
+++ PKGBUILD2018-12-21 22:19:22 UTC (rev 417475)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-
-pkgname=sugar-activity-terminal
-_pkgname=Terminal
-pkgver=45.3
-pkgrel=1
-pkgdesc="Terminal emulator for Sugar"
-arch=('any')
-url="https://wiki.sugarlabs.org/go/Activities/Terminal;
-license=('GPL')
-groups=('sugar-fructose')
-depends=('sugar-toolkit-gtk3' 'vte3')
-source=(https://download.sugarlabs.org/sources/sucrose/fructose/$_pkgname/$_pkgname-$pkgver.tar.bz2)
-sha256sums=('d07c4c41ff3edfec7d6b1ac2916a7eb14da984ac1e769dd0f047fb4b34f6aba7')
-
-prepare() {
-  cd $_pkgname-$pkgver
-  sed -i 's@^#!.*python$@#!/usr/bin/python2@' helpbutton.py setup.py
-}
-
-package() {
-  cd $_pkgname-$pkgver
-  python2 setup.py install --prefix "$pkgdir/usr" --skip-install-desktop-file
-}

Copied: sugar-activity-terminal/repos/community-any/PKGBUILD (from rev 417474, 
sugar-activity-terminal/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-21 22:19:22 UTC (rev 417475)
@@ -0,0 +1,24 @@
+# Maintainer: Balló György 
+
+pkgname=sugar-activity-terminal
+_pkgname=Terminal
+pkgver=45.4
+pkgrel=1
+pkgdesc="Terminal emulator for Sugar"
+arch=('any')
+url="https://wiki.sugarlabs.org/go/Activities/Terminal;
+license=('GPL')
+groups=('sugar-fructose')
+depends=('sugar-toolkit-gtk3' 'vte3')
+source=(https://download.sugarlabs.org/sources/sucrose/fructose/$_pkgname/$_pkgname-$pkgver.tar.bz2)
+sha256sums=('86f76b42ecf1feea0140a5db75ef9a2d5620282a9dc7956a40d61171cee4c002')
+
+prepare() {
+  cd $_pkgname-$pkgver
+  sed -i 's@^#!.*python$@#!/usr/bin/python2@' helpbutton.py setup.py
+}
+
+package() {
+  cd $_pkgname-$pkgver
+  python2 setup.py install --prefix "$pkgdir/usr" --skip-install-desktop-file
+}


[arch-commits] Commit in sugar-activity-terminal/trunk (PKGBUILD)

2018-12-21 Thread Balló György via arch-commits
Date: Friday, December 21, 2018 @ 22:19:16
  Author: bgyorgy
Revision: 417474

upgpkg: sugar-activity-terminal 45.4-1

Update to new version

Modified:
  sugar-activity-terminal/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-21 22:17:07 UTC (rev 417473)
+++ PKGBUILD2018-12-21 22:19:16 UTC (rev 417474)
@@ -2,7 +2,7 @@
 
 pkgname=sugar-activity-terminal
 _pkgname=Terminal
-pkgver=45.3
+pkgver=45.4
 pkgrel=1
 pkgdesc="Terminal emulator for Sugar"
 arch=('any')
@@ -11,7 +11,7 @@
 groups=('sugar-fructose')
 depends=('sugar-toolkit-gtk3' 'vte3')
 
source=(https://download.sugarlabs.org/sources/sucrose/fructose/$_pkgname/$_pkgname-$pkgver.tar.bz2)
-sha256sums=('d07c4c41ff3edfec7d6b1ac2916a7eb14da984ac1e769dd0f047fb4b34f6aba7')
+sha256sums=('86f76b42ecf1feea0140a5db75ef9a2d5620282a9dc7956a40d61171cee4c002')
 
 prepare() {
   cd $_pkgname-$pkgver


[arch-commits] Commit in gnome-subtitles/repos/community-x86_64 (PKGBUILD PKGBUILD)

2018-12-21 Thread Balló György via arch-commits
Date: Friday, December 21, 2018 @ 22:17:07
  Author: bgyorgy
Revision: 417473

archrelease: copy trunk to community-x86_64

Added:
  gnome-subtitles/repos/community-x86_64/PKGBUILD
(from rev 417472, gnome-subtitles/trunk/PKGBUILD)
Deleted:
  gnome-subtitles/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   69 ++---
 1 file changed, 34 insertions(+), 35 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-21 22:17:03 UTC (rev 417472)
+++ PKGBUILD2018-12-21 22:17:07 UTC (rev 417473)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-
-pkgname=gnome-subtitles
-pkgver=1.4.1
-pkgrel=1
-pkgdesc="Video subtitle editor for GNOME"
-arch=('x86_64')
-url="http://www.gnomesubtitles.org/;
-license=('GPL')
-depends=('gst-plugins-base' 'gtk-sharp-3' 'gtkspell3')
-makedepends=('intltool' 'gnome-doc-utils')
-optdepends=('gst-plugins-good: Extra media codecs'
-'gst-plugins-bad: Extra media codecs'
-'gst-plugins-ugly: Extra media codecs'
-'gst-libav: Extra media codecs')
-source=(https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz)
-sha256sums=('f5766ea81c48aa70d54842bf24c1f958536f9b3aa6354843219b71a5a02aae0c')
-
-prepare() {
-  cd $pkgname-$pkgver
-  sed -i 's/libenchant.so.1/libenchant-2.so.2/' 
src/GnomeSubtitles/Execution/gnome-subtitles.exe.config
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --disable-schemas-compile
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: gnome-subtitles/repos/community-x86_64/PKGBUILD (from rev 417472, 
gnome-subtitles/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-21 22:17:07 UTC (rev 417473)
@@ -0,0 +1,34 @@
+# Maintainer: Balló György 
+
+pkgname=gnome-subtitles
+pkgver=1.4.2
+pkgrel=1
+pkgdesc="Video subtitle editor for GNOME"
+arch=('x86_64')
+url="http://www.gnomesubtitles.org/;
+license=('GPL')
+depends=('gst-plugins-base' 'gtk-sharp-3' 'gtkspell3')
+makedepends=('intltool' 'itstool')
+optdepends=('gst-plugins-good: Extra media codecs'
+'gst-plugins-bad: Extra media codecs'
+'gst-plugins-ugly: Extra media codecs'
+'gst-libav: Extra media codecs')
+source=(https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz)
+sha256sums=('12847186070c8edbfc17d4aa1118a2ad9d8a9d40b806adf5b7041b71e4682641')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i 's/libenchant.so.1/libenchant-2.so.2/' 
src/GnomeSubtitles/Execution/gnome-subtitles.exe.config
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --disable-schemas-compile
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in gnome-subtitles/trunk (PKGBUILD)

2018-12-21 Thread Balló György via arch-commits
Date: Friday, December 21, 2018 @ 22:17:03
  Author: bgyorgy
Revision: 417472

upgpkg: gnome-subtitles 1.4.2-1

Update to new version

Modified:
  gnome-subtitles/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-21 22:13:46 UTC (rev 417471)
+++ PKGBUILD2018-12-21 22:17:03 UTC (rev 417472)
@@ -1,7 +1,7 @@
 # Maintainer: Balló György 
 
 pkgname=gnome-subtitles
-pkgver=1.4.1
+pkgver=1.4.2
 pkgrel=1
 pkgdesc="Video subtitle editor for GNOME"
 arch=('x86_64')
@@ -8,13 +8,13 @@
 url="http://www.gnomesubtitles.org/;
 license=('GPL')
 depends=('gst-plugins-base' 'gtk-sharp-3' 'gtkspell3')
-makedepends=('intltool' 'gnome-doc-utils')
+makedepends=('intltool' 'itstool')
 optdepends=('gst-plugins-good: Extra media codecs'
 'gst-plugins-bad: Extra media codecs'
 'gst-plugins-ugly: Extra media codecs'
 'gst-libav: Extra media codecs')
 source=(https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz)
-sha256sums=('f5766ea81c48aa70d54842bf24c1f958536f9b3aa6354843219b71a5a02aae0c')
+sha256sums=('12847186070c8edbfc17d4aa1118a2ad9d8a9d40b806adf5b7041b71e4682641')
 
 prepare() {
   cd $pkgname-$pkgver


[arch-commits] Commit in cherrytree/trunk (PKGBUILD)

2018-12-21 Thread Balló György via arch-commits
Date: Friday, December 21, 2018 @ 22:13:39
  Author: bgyorgy
Revision: 417470

upgpkg: cherrytree 0.38.7-1

Update to new version

Modified:
  cherrytree/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-21 22:10:04 UTC (rev 417469)
+++ PKGBUILD2018-12-21 22:13:39 UTC (rev 417470)
@@ -5,7 +5,7 @@
 # Contributor: Tomas A. Schertel 
 
 pkgname=cherrytree
-pkgver=0.38.6
+pkgver=0.38.7
 pkgrel=1
 pkgdesc='Hierarchical note taking application featuring rich text and syntax 
highlighting'
 arch=('any')
@@ -15,7 +15,7 @@
 optdepends=('python2-pyenchant: for spell checking support'
 'p7zip: for password protection support')
 source=(https://www.giuspen.com/software/$pkgname-$pkgver.tar.xz)
-sha256sums=('aac22d430a6a6d35ca37910419f9ecc2a818f9a4b43ee5356599120ff6f3032d')
+sha256sums=('22a195b86644ed74e49cf11c4b9433cfd9dfa1fa99d698527b45c291d2df47d3')
 
 build() {
   cd $pkgname-$pkgver


[arch-commits] Commit in cherrytree/repos/community-any (PKGBUILD PKGBUILD)

2018-12-21 Thread Balló György via arch-commits
Date: Friday, December 21, 2018 @ 22:13:46
  Author: bgyorgy
Revision: 417471

archrelease: copy trunk to community-any

Added:
  cherrytree/repos/community-any/PKGBUILD
(from rev 417470, cherrytree/trunk/PKGBUILD)
Deleted:
  cherrytree/repos/community-any/PKGBUILD

--+
 PKGBUILD |   56 
 1 file changed, 28 insertions(+), 28 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-21 22:13:39 UTC (rev 417470)
+++ PKGBUILD2018-12-21 22:13:46 UTC (rev 417471)
@@ -1,28 +0,0 @@
-# Maintainer: Balló György 
-# Contributor: Bartłomiej Piotrowski
-# Contributor: Brad Fanella 
-# Contributor: Allan McRae 
-# Contributor: Tomas A. Schertel 
-
-pkgname=cherrytree
-pkgver=0.38.6
-pkgrel=1
-pkgdesc='Hierarchical note taking application featuring rich text and syntax 
highlighting'
-arch=('any')
-url='https://www.giuspen.com/cherrytree/'
-license=('GPL3')
-depends=('pygtksourceview2' 'python2-dbus')
-optdepends=('python2-pyenchant: for spell checking support'
-'p7zip: for password protection support')
-source=(https://www.giuspen.com/software/$pkgname-$pkgver.tar.xz)
-sha256sums=('aac22d430a6a6d35ca37910419f9ecc2a818f9a4b43ee5356599120ff6f3032d')
-
-build() {
-  cd $pkgname-$pkgver
-  python2 setup.py build
-}
-
-package() {
-  cd $pkgname-$pkgver
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}

Copied: cherrytree/repos/community-any/PKGBUILD (from rev 417470, 
cherrytree/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-21 22:13:46 UTC (rev 417471)
@@ -0,0 +1,28 @@
+# Maintainer: Balló György 
+# Contributor: Bartłomiej Piotrowski
+# Contributor: Brad Fanella 
+# Contributor: Allan McRae 
+# Contributor: Tomas A. Schertel 
+
+pkgname=cherrytree
+pkgver=0.38.7
+pkgrel=1
+pkgdesc='Hierarchical note taking application featuring rich text and syntax 
highlighting'
+arch=('any')
+url='https://www.giuspen.com/cherrytree/'
+license=('GPL3')
+depends=('pygtksourceview2' 'python2-dbus')
+optdepends=('python2-pyenchant: for spell checking support'
+'p7zip: for password protection support')
+source=(https://www.giuspen.com/software/$pkgname-$pkgver.tar.xz)
+sha256sums=('22a195b86644ed74e49cf11c4b9433cfd9dfa1fa99d698527b45c291d2df47d3')
+
+build() {
+  cd $pkgname-$pkgver
+  python2 setup.py build
+}
+
+package() {
+  cd $pkgname-$pkgver
+  python2 setup.py install --root="$pkgdir" --optimize=1
+}


[arch-commits] Commit in gramps/repos/community-any (PKGBUILD PKGBUILD)

2018-12-21 Thread Balló György via arch-commits
Date: Friday, December 21, 2018 @ 22:10:04
  Author: bgyorgy
Revision: 417469

archrelease: copy trunk to community-any

Added:
  gramps/repos/community-any/PKGBUILD
(from rev 417468, gramps/trunk/PKGBUILD)
Deleted:
  gramps/repos/community-any/PKGBUILD

--+
 PKGBUILD |   73 ++---
 1 file changed, 36 insertions(+), 37 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-21 22:09:59 UTC (rev 417468)
+++ PKGBUILD2018-12-21 22:10:04 UTC (rev 417469)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Sergej Pupykin 
-# Contributor: William Rea 
-# Contributor: Cory Farmer 
-
-pkgname=gramps
-pkgver=5.0.0
-pkgrel=1
-epoch=2
-pkgdesc="Genealogy program, which helps you track your family tree"
-arch=('any')
-url="https://gramps-project.org/;
-license=('GPL')
-depends=('gtk3' 'python-bsddb' 'python-cairo' 'python-gobject' 'xdg-utils')
-makedepends=('intltool')
-optdepends=('osm-gps-map: show maps in the geography view'
-'graphviz: enable creation of graphs (required for tree reports)'
-'python-pyicu: improves localised sorting'
-'gtkspell3: enable spell checking in the notes'
-'rcs: manage multiple revisions of your family trees'
-'python-pillow: crop and convert images to JPG'
-'libgexiv2: manage Exif metadata embedded in your media'
-'geocode-glib: associate a geographical position to a place name')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/gramps-project/$pkgname/archive/v$pkgver.tar.gz;)
-sha256sums=('404da8f517381c2a29de717f3f3a46d8a1c1b77bfac5e494b9c4d0d8c7257fb6')
-
-build() {
-  cd $pkgname-$pkgver
-  python3 setup.py build
-}
-
-package() {
-  cd $pkgname-$pkgver
-  python3 setup.py install --root="$pkgdir" --optimize=1
-  echo -n '/usr/share' 
>"$pkgdir"/usr/lib/python*/site-packages/gramps/gen/utils/resource-path
-}

Copied: gramps/repos/community-any/PKGBUILD (from rev 417468, 
gramps/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-21 22:10:04 UTC (rev 417469)
@@ -0,0 +1,36 @@
+# Maintainer: Balló György 
+# Contributor: Sergej Pupykin 
+# Contributor: William Rea 
+# Contributor: Cory Farmer 
+
+pkgname=gramps
+pkgver=5.0.1
+pkgrel=1
+epoch=2
+pkgdesc="Genealogy program, which helps you track your family tree"
+arch=('any')
+url="https://gramps-project.org/;
+license=('GPL')
+depends=('gtk3' 'python-bsddb' 'python-cairo' 'python-gobject' 'xdg-utils')
+makedepends=('intltool')
+optdepends=('osm-gps-map: show maps in the geography view'
+'graphviz: enable creation of graphs (required for tree reports)'
+'python-pyicu: improves localised sorting'
+'gtkspell3: enable spell checking in the notes'
+'rcs: manage multiple revisions of your family trees'
+'python-pillow: crop and convert images to JPG'
+'libgexiv2: manage Exif metadata embedded in your media'
+'geocode-glib: associate a geographical position to a place name')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/gramps-project/$pkgname/archive/v$pkgver.tar.gz;)
+sha256sums=('3a81265764a314cca0540593ccd639c5b76199615b3b0aace0b2540fc186eba5')
+
+build() {
+  cd $pkgname-$pkgver
+  python3 setup.py build
+}
+
+package() {
+  cd $pkgname-$pkgver
+  python3 setup.py install --root="$pkgdir" --optimize=1
+  echo -n '/usr/share' 
>"$pkgdir"/usr/lib/python*/site-packages/gramps/gen/utils/resource-path
+}


[arch-commits] Commit in gramps/trunk (PKGBUILD)

2018-12-21 Thread Balló György via arch-commits
Date: Friday, December 21, 2018 @ 22:09:59
  Author: bgyorgy
Revision: 417468

upgpkg: gramps 2:5.0.1-1

Update to new version

Modified:
  gramps/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-21 22:07:03 UTC (rev 417467)
+++ PKGBUILD2018-12-21 22:09:59 UTC (rev 417468)
@@ -4,7 +4,7 @@
 # Contributor: Cory Farmer 
 
 pkgname=gramps
-pkgver=5.0.0
+pkgver=5.0.1
 pkgrel=1
 epoch=2
 pkgdesc="Genealogy program, which helps you track your family tree"
@@ -22,7 +22,7 @@
 'libgexiv2: manage Exif metadata embedded in your media'
 'geocode-glib: associate a geographical position to a place name')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/gramps-project/$pkgname/archive/v$pkgver.tar.gz;)
-sha256sums=('404da8f517381c2a29de717f3f3a46d8a1c1b77bfac5e494b9c4d0d8c7257fb6')
+sha256sums=('3a81265764a314cca0540593ccd639c5b76199615b3b0aace0b2540fc186eba5')
 
 build() {
   cd $pkgname-$pkgver


[arch-commits] Commit in libhandy/repos/community-x86_64 (PKGBUILD PKGBUILD)

2018-12-21 Thread Balló György via arch-commits
Date: Friday, December 21, 2018 @ 22:07:03
  Author: bgyorgy
Revision: 417467

archrelease: copy trunk to community-x86_64

Added:
  libhandy/repos/community-x86_64/PKGBUILD
(from rev 417466, libhandy/trunk/PKGBUILD)
Deleted:
  libhandy/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   57 -
 1 file changed, 28 insertions(+), 29 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-21 22:06:59 UTC (rev 417466)
+++ PKGBUILD2018-12-21 22:07:03 UTC (rev 417467)
@@ -1,29 +0,0 @@
-# Maintainer: Balló György 
-
-pkgname=libhandy
-pkgver=0.0.5
-pkgrel=2
-pkgdesc="Library full of GTK+ widgets for mobile phones"
-arch=(x86_64)
-url="https://source.puri.sm/Librem5/libhandy;
-license=(LGPL2.1)
-depends=(gtk3)
-makedepends=(git glade gobject-introspection meson vala)
-_commit=9c99704e4cc02d8aff8c03ebd583197677f67e52  # tags/v0.0.5^0
-source=("git+https://source.puri.sm/Librem5/libhandy.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^v//;s/-/+/g'
-}
-
-build() {
-  arch-meson $pkgname build -Dgtk_doc=true
-  ninja -C build
-}
-
-package() {
-  DESTDIR="$pkgdir" meson install -C build
-  rm -r "$pkgdir"/usr/{bin,subdir}
-}

Copied: libhandy/repos/community-x86_64/PKGBUILD (from rev 417466, 
libhandy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-21 22:07:03 UTC (rev 417467)
@@ -0,0 +1,28 @@
+# Maintainer: Balló György 
+
+pkgname=libhandy
+pkgver=0.0.6
+pkgrel=1
+pkgdesc="Library full of GTK+ widgets for mobile phones"
+arch=(x86_64)
+url="https://source.puri.sm/Librem5/libhandy;
+license=(LGPL2.1)
+depends=(gtk3)
+makedepends=(git glade gobject-introspection meson vala)
+_commit=cfb1326f11472b77596e136c81424d5ae542e536  # tags/v0.0.6^0
+source=("git+https://source.puri.sm/Librem5/libhandy.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^v//;s/-/+/g'
+}
+
+build() {
+  arch-meson $pkgname build -Dgtk_doc=true -Dexamples=false
+  ninja -C build
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+}


[arch-commits] Commit in libhandy/trunk (PKGBUILD)

2018-12-21 Thread Balló György via arch-commits
Date: Friday, December 21, 2018 @ 22:06:59
  Author: bgyorgy
Revision: 417466

upgpkg: libhandy 0.0.6-1

Update to new version

Modified:
  libhandy/trunk/PKGBUILD

--+
 PKGBUILD |9 -
 1 file changed, 4 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-21 21:27:43 UTC (rev 417465)
+++ PKGBUILD2018-12-21 22:06:59 UTC (rev 417466)
@@ -1,8 +1,8 @@
 # Maintainer: Balló György 
 
 pkgname=libhandy
-pkgver=0.0.5
-pkgrel=2
+pkgver=0.0.6
+pkgrel=1
 pkgdesc="Library full of GTK+ widgets for mobile phones"
 arch=(x86_64)
 url="https://source.puri.sm/Librem5/libhandy;
@@ -9,7 +9,7 @@
 license=(LGPL2.1)
 depends=(gtk3)
 makedepends=(git glade gobject-introspection meson vala)
-_commit=9c99704e4cc02d8aff8c03ebd583197677f67e52  # tags/v0.0.5^0
+_commit=cfb1326f11472b77596e136c81424d5ae542e536  # tags/v0.0.6^0
 source=("git+https://source.puri.sm/Librem5/libhandy.git#commit=$_commit;)
 sha256sums=('SKIP')
 
@@ -19,11 +19,10 @@
 }
 
 build() {
-  arch-meson $pkgname build -Dgtk_doc=true
+  arch-meson $pkgname build -Dgtk_doc=true -Dexamples=false
   ninja -C build
 }
 
 package() {
   DESTDIR="$pkgdir" meson install -C build
-  rm -r "$pkgdir"/usr/{bin,subdir}
 }


[arch-commits] Commit in libdbi-drivers/trunk (PKGBUILD libdbi-drivers.install)

2018-12-21 Thread Balló György via arch-commits
Date: Friday, December 21, 2018 @ 21:27:38
  Author: bgyorgy
Revision: 417464

upgpkg: libdbi-drivers 0.9.0-8

Adopt the package, enable documentation

Modified:
  libdbi-drivers/trunk/PKGBUILD
Deleted:
  libdbi-drivers/trunk/libdbi-drivers.install

+
 PKGBUILD   |   33 +++--
 libdbi-drivers.install |   19 ---
 2 files changed, 15 insertions(+), 37 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-21 21:19:11 UTC (rev 417463)
+++ PKGBUILD2018-12-21 21:27:38 UTC (rev 417464)
@@ -1,35 +1,32 @@
-# Maintainer: Thorsten Töpper 
+# Maintainer: Balló György 
+# Contributor: Thorsten Töpper 
 # Contributor: Olivier Médoc 
 # Contributor: Ashok `ScriptDevil` Gautham 
 
 pkgname=libdbi-drivers
 pkgver=0.9.0
-pkgrel=7
+pkgrel=8
 pkgdesc="Database drivers for libdbi (MySQL, PostgreSQL, and SQLite)"
 url="http://libdbi-drivers.sourceforge.net/;
-license=('GPL')
+license=('LGPL')
 arch=('x86_64')
 depends=('libdbi')
-makedepends=('postgresql-libs' 'libmariadbclient' 'sqlite')
-optdepends=("postgresql-libs: To work with postgresql using libdbdpgsql "
-   "sqlite3: To work with sqlite3 using libdbdsqlite3"
-   "libmariadbclient: To work with mysql using 
libdbdmysql")
-install=libdbi-drivers.install
-source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}/${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+makedepends=('libmariadbclient' 'postgresql-libs' 'sqlite')
+optdepends=('libmariadbclient: To work with MariaDB using libdbdmysql'
+'postgresql-libs: To work with PostgreSQL using libdbdpgsql'
+'sqlite: To work with SQLite using libdbdsqlite3')
+source=("https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz;)
 sha1sums=('8472875d30c216540d48d591b442e40ba4f7df5d')
 
 build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr \
-   --disable-docs \
-   --with-mysql \
-   --with-pgsql \
-   --with-sqlite3
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --localstatedir=/var \
+  --with-mysql --with-pgsql --with-sqlite3
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
   make
 }
 
 package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR=${pkgdir} localstatedir=/var install
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
 }
-

Deleted: libdbi-drivers.install
===
--- libdbi-drivers.install  2018-12-21 21:19:11 UTC (rev 417463)
+++ libdbi-drivers.install  2018-12-21 21:27:38 UTC (rev 417464)
@@ -1,19 +0,0 @@
-# arg 1:  the new package version
-post_install() {
-  ldconfig
-}
-
-# arg 1:  the new package version
-# arg 2:  the old package version
-post_upgrade() {
-  ldconfig
-}
-
-# arg 1:  the old package version
-post_remove() {
-  ldconfig
-}
-
-op=$1
-shift
-$op $*


[arch-commits] Commit in libdbi-drivers/repos/community-x86_64 (3 files)

2018-12-21 Thread Balló György via arch-commits
Date: Friday, December 21, 2018 @ 21:27:43
  Author: bgyorgy
Revision: 417465

archrelease: copy trunk to community-x86_64

Added:
  libdbi-drivers/repos/community-x86_64/PKGBUILD
(from rev 417464, libdbi-drivers/trunk/PKGBUILD)
Deleted:
  libdbi-drivers/repos/community-x86_64/PKGBUILD
  libdbi-drivers/repos/community-x86_64/libdbi-drivers.install

+
 PKGBUILD   |   67 ++-
 libdbi-drivers.install |   19 -
 2 files changed, 32 insertions(+), 54 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-21 21:27:38 UTC (rev 417464)
+++ PKGBUILD2018-12-21 21:27:43 UTC (rev 417465)
@@ -1,35 +0,0 @@
-# Maintainer: Thorsten Töpper 
-# Contributor: Olivier Médoc 
-# Contributor: Ashok `ScriptDevil` Gautham 
-
-pkgname=libdbi-drivers
-pkgver=0.9.0
-pkgrel=7
-pkgdesc="Database drivers for libdbi (MySQL, PostgreSQL, and SQLite)"
-url="http://libdbi-drivers.sourceforge.net/;
-license=('GPL')
-arch=('x86_64')
-depends=('libdbi')
-makedepends=('postgresql-libs' 'libmariadbclient' 'sqlite')
-optdepends=("postgresql-libs: To work with postgresql using libdbdpgsql "
-   "sqlite3: To work with sqlite3 using libdbdsqlite3"
-   "libmariadbclient: To work with mysql using 
libdbdmysql")
-install=libdbi-drivers.install
-source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}/${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha1sums=('8472875d30c216540d48d591b442e40ba4f7df5d')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr \
-   --disable-docs \
-   --with-mysql \
-   --with-pgsql \
-   --with-sqlite3
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR=${pkgdir} localstatedir=/var install
-}
-

Copied: libdbi-drivers/repos/community-x86_64/PKGBUILD (from rev 417464, 
libdbi-drivers/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-21 21:27:43 UTC (rev 417465)
@@ -0,0 +1,32 @@
+# Maintainer: Balló György 
+# Contributor: Thorsten Töpper 
+# Contributor: Olivier Médoc 
+# Contributor: Ashok `ScriptDevil` Gautham 
+
+pkgname=libdbi-drivers
+pkgver=0.9.0
+pkgrel=8
+pkgdesc="Database drivers for libdbi (MySQL, PostgreSQL, and SQLite)"
+url="http://libdbi-drivers.sourceforge.net/;
+license=('LGPL')
+arch=('x86_64')
+depends=('libdbi')
+makedepends=('libmariadbclient' 'postgresql-libs' 'sqlite')
+optdepends=('libmariadbclient: To work with MariaDB using libdbdmysql'
+'postgresql-libs: To work with PostgreSQL using libdbdpgsql'
+'sqlite: To work with SQLite using libdbdsqlite3')
+source=("https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz;)
+sha1sums=('8472875d30c216540d48d591b442e40ba4f7df5d')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --localstatedir=/var \
+  --with-mysql --with-pgsql --with-sqlite3
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: libdbi-drivers.install
===
--- libdbi-drivers.install  2018-12-21 21:27:38 UTC (rev 417464)
+++ libdbi-drivers.install  2018-12-21 21:27:43 UTC (rev 417465)
@@ -1,19 +0,0 @@
-# arg 1:  the new package version
-post_install() {
-  ldconfig
-}
-
-# arg 1:  the new package version
-# arg 2:  the old package version
-post_upgrade() {
-  ldconfig
-}
-
-# arg 1:  the old package version
-post_remove() {
-  ldconfig
-}
-
-op=$1
-shift
-$op $*


[arch-commits] Commit in libdbi/trunk (PKGBUILD)

2018-12-21 Thread Balló György via arch-commits
Date: Friday, December 21, 2018 @ 21:19:11
  Author: bgyorgy
Revision: 417463

Use https source

Modified:
  libdbi/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-21 21:16:19 UTC (rev 417462)
+++ PKGBUILD2018-12-21 21:19:11 UTC (rev 417463)
@@ -12,7 +12,7 @@
 arch=('x86_64')
 depends=('glibc')
 options=(!emptydirs)
-source=("http://downloads.sourceforge.net/$pkgbase/$pkgbase-$pkgver.tar.gz;)
+source=("https://downloads.sourceforge.net/$pkgbase/$pkgbase-$pkgver.tar.gz;)
 sha1sums=('6c1ecfb78f43a921d5f914299304bd6c82cb0e23')
 
 build() {


[arch-commits] Commit in libdbi/repos/community-x86_64 (3 files)

2018-12-21 Thread Balló György via arch-commits
Date: Friday, December 21, 2018 @ 21:15:43
  Author: bgyorgy
Revision: 417461

archrelease: copy trunk to community-x86_64

Added:
  libdbi/repos/community-x86_64/PKGBUILD
(from rev 417460, libdbi/trunk/PKGBUILD)
Deleted:
  libdbi/repos/community-x86_64/PKGBUILD
  libdbi/repos/community-x86_64/libdbi.install

+
 PKGBUILD   |   64 ++-
 libdbi.install |   13 ---
 2 files changed, 36 insertions(+), 41 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-21 21:15:38 UTC (rev 417460)
+++ PKGBUILD2018-12-21 21:15:43 UTC (rev 417461)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Thorsten Töpper 
-# Contributor: Carl Flippin 
-
-pkgname=libdbi
-pkgver=0.9.0
-pkgrel=3
-pkgdesc="A database independant abstraction layer for C"
-url="http://libdbi.sourceforge.net;
-license=('LGPL')
-arch=('i686' 'x86_64')
-depends=('glibc')
-install=libdbi.install
-source=("http://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha1sums=('6c1ecfb78f43a921d5f914299304bd6c82cb0e23')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make CFLAGS="-fno-fast-math"
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR=${pkgdir} install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: libdbi/repos/community-x86_64/PKGBUILD (from rev 417460, 
libdbi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-21 21:15:43 UTC (rev 417461)
@@ -0,0 +1,36 @@
+# Maintainer: Balló György 
+# Contributor: Thorsten Töpper 
+# Contributor: Carl Flippin 
+
+pkgbase=libdbi
+pkgname=(libdbi libdbi-docs)
+pkgver=0.9.0
+pkgrel=4
+pkgdesc="Database independant abstraction layer for C"
+url="http://libdbi.sourceforge.net/;
+license=('LGPL')
+arch=('x86_64')
+depends=('glibc')
+options=(!emptydirs)
+source=("http://downloads.sourceforge.net/$pkgbase/$pkgbase-$pkgver.tar.gz;)
+sha1sums=('6c1ecfb78f43a921d5f914299304bd6c82cb0e23')
+
+build() {
+  cd $pkgbase-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package_libdbi() {
+  cd $pkgbase-$pkgver
+  make DESTDIR="$pkgdir" install
+  make -C doc DESTDIR="$pkgdir" uninstall
+}
+
+package_libdbi-docs() {
+  pkgdesc="Developer documentation for libdbi"
+  depends=()
+
+  cd $pkgbase-$pkgver
+  make -C doc DESTDIR="$pkgdir" install
+}

Deleted: libdbi.install
===
--- libdbi.install  2018-12-21 21:15:38 UTC (rev 417460)
+++ libdbi.install  2018-12-21 21:15:43 UTC (rev 417461)
@@ -1,13 +0,0 @@
-post_install() {
-  ldconfig
-}
-
-post_upgrade() {
-  ldconfig
-}
-
-post_remove() {
-  ldconfig
-}
-
-# vim:set ts=2 sw=2 et:


[arch-commits] Commit in libdbi/trunk (PKGBUILD libdbi.install)

2018-12-21 Thread Balló György via arch-commits
Date: Friday, December 21, 2018 @ 21:15:38
  Author: bgyorgy
Revision: 417460

upgpkg: libdbi 0.9.0-4

Adopt the package, split out documentation

Modified:
  libdbi/trunk/PKGBUILD
Deleted:
  libdbi/trunk/libdbi.install

+
 PKGBUILD   |   35 ++-
 libdbi.install |   13 -
 2 files changed, 22 insertions(+), 26 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-21 20:43:01 UTC (rev 417459)
+++ PKGBUILD2018-12-21 21:15:38 UTC (rev 417460)
@@ -1,27 +1,36 @@
-# Maintainer: Thorsten Töpper 
+# Maintainer: Balló György 
+# Contributor: Thorsten Töpper 
 # Contributor: Carl Flippin 
 
-pkgname=libdbi
+pkgbase=libdbi
+pkgname=(libdbi libdbi-docs)
 pkgver=0.9.0
-pkgrel=3
-pkgdesc="A database independant abstraction layer for C"
-url="http://libdbi.sourceforge.net;
+pkgrel=4
+pkgdesc="Database independant abstraction layer for C"
+url="http://libdbi.sourceforge.net/;
 license=('LGPL')
 arch=('x86_64')
 depends=('glibc')
-install=libdbi.install
-source=("http://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+options=(!emptydirs)
+source=("http://downloads.sourceforge.net/$pkgbase/$pkgbase-$pkgver.tar.gz;)
 sha1sums=('6c1ecfb78f43a921d5f914299304bd6c82cb0e23')
 
 build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
+  cd $pkgbase-$pkgver
   ./configure --prefix=/usr
-  make CFLAGS="-fno-fast-math"
+  make
 }
 
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR=${pkgdir} install
+package_libdbi() {
+  cd $pkgbase-$pkgver
+  make DESTDIR="$pkgdir" install
+  make -C doc DESTDIR="$pkgdir" uninstall
 }
 
-# vim:set ts=2 sw=2 et:
+package_libdbi-docs() {
+  pkgdesc="Developer documentation for libdbi"
+  depends=()
+
+  cd $pkgbase-$pkgver
+  make -C doc DESTDIR="$pkgdir" install
+}

Deleted: libdbi.install
===
--- libdbi.install  2018-12-21 20:43:01 UTC (rev 417459)
+++ libdbi.install  2018-12-21 21:15:38 UTC (rev 417460)
@@ -1,13 +0,0 @@
-post_install() {
-  ldconfig
-}
-
-post_upgrade() {
-  ldconfig
-}
-
-post_remove() {
-  ldconfig
-}
-
-# vim:set ts=2 sw=2 et:


[arch-commits] Commit in git-lfs/repos (2 files)

2018-12-21 Thread Morten Linderud via arch-commits
Date: Friday, December 21, 2018 @ 20:43:01
  Author: foxboron
Revision: 417459

archrelease: copy trunk to community-testing-x86_64

Added:
  git-lfs/repos/community-testing-x86_64/
  git-lfs/repos/community-testing-x86_64/PKGBUILD
(from rev 417458, git-lfs/trunk/PKGBUILD)

--+
 PKGBUILD |   38 ++
 1 file changed, 38 insertions(+)

Copied: git-lfs/repos/community-testing-x86_64/PKGBUILD (from rev 417458, 
git-lfs/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2018-12-21 20:43:01 UTC (rev 417459)
@@ -0,0 +1,38 @@
+# Maintainer: Morten Linderud 
+
+pkgname=git-lfs
+pkgver=2.6.1
+pkgrel=1
+pkgdesc="Git extension for versioning large files"
+arch=('x86_64')
+url="https://git-lfs.github.com;
+license=('MIT')
+makedepends=('go-pie' 'ruby-ronn' 'go-tools')
+depends=('git')
+source=("git+https://github.com/git-lfs/git-lfs.git#tag=v${pkgver};)
+#validpgpkeys=('4DB92D1D8CEE7E54F06713452D0C9BC12F82B3A1') # brian m. carlson 

+#validpgpkeys=('88ACE9B29196305BA9947552F1BA225C0223B187') # brian m. carlson 

+sha256sums=('SKIP')
+
+build(){
+  cd "$pkgname"
+  go build \
+-gcflags "all=-trimpath=${PWD}" \
+-asmflags "all=-trimpath=${PWD}" \
+-ldflags "-extldflags ${LDFLAGS}" \
+.
+  make man
+}
+
+check(){
+  cd "$pkgname"
+  make test
+}
+
+package() {
+  cd "$pkgname"
+  install -Dm755 $pkgname "$pkgdir"/usr/bin/$pkgname
+  install -Dm644 LICENSE.md "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  install -Dm644 -t "$pkgdir"/usr/share/man/man1 man/*.1 
+  install -Dm644 -t "$pkgdir"/usr/share/man/man5 man/*.5 
+}


[arch-commits] Commit in git-lfs/trunk (PKGBUILD)

2018-12-21 Thread Morten Linderud via arch-commits
Date: Friday, December 21, 2018 @ 20:42:54
  Author: foxboron
Revision: 417458

upgpkg: git-lfs 2.6.1-1

Modified:
  git-lfs/trunk/PKGBUILD

--+
 PKGBUILD |   37 +
 1 file changed, 17 insertions(+), 20 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-21 19:59:11 UTC (rev 417457)
+++ PKGBUILD2018-12-21 20:42:54 UTC (rev 417458)
@@ -1,40 +1,37 @@
 # Maintainer: Morten Linderud 
 
 pkgname=git-lfs
-pkgver=2.5.2
-pkgrel=2
+pkgver=2.6.1
+pkgrel=1
 pkgdesc="Git extension for versioning large files"
 arch=('x86_64')
 url="https://git-lfs.github.com;
 license=('MIT')
-makedepends=('go-pie' 'ruby-ronn')
+makedepends=('go-pie' 'ruby-ronn' 'go-tools')
 depends=('git')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/git-lfs/git-lfs/archive/v${pkgver}.tar.gz;)
-sha256sums=('0ab21f0f9b6c40acd9748a1669f1023ef38f913d8be83bbf7b7c7d983bd3c4d1')
+source=("git+https://github.com/git-lfs/git-lfs.git#tag=v${pkgver};)
+#validpgpkeys=('4DB92D1D8CEE7E54F06713452D0C9BC12F82B3A1') # brian m. carlson 

+#validpgpkeys=('88ACE9B29196305BA9947552F1BA225C0223B187') # brian m. carlson 

+sha256sums=('SKIP')
 
-prepare(){
-  mkdir -p src/github.com/git-lfs
-  ln -rTsf "${pkgname}-${pkgver}" src/github.com/git-lfs/git-lfs
-}
-
 build(){
-  export GOPATH="${srcdir}" 
-  cd "src/github.com/git-lfs/git-lfs"
-  go generate ./commands
-  go install -gcflags "all=-trimpath=${GOPATH}" -asmflags 
"all=-trimpath=${GOPATH}" ./...
+  cd "$pkgname"
+  go build \
+-gcflags "all=-trimpath=${PWD}" \
+-asmflags "all=-trimpath=${PWD}" \
+-ldflags "-extldflags ${LDFLAGS}" \
+.
   make man
 }
 
 check(){
-  export GOPATH="${srcdir}" 
-  cd "src/github.com/git-lfs/git-lfs"
-  go test ./...
+  cd "$pkgname"
+  make test
 }
 
 package() {
-  install -Dm755 ./bin/$pkgname "$pkgdir"/usr/bin/$pkgname
-
-  cd "${pkgname}-${pkgver}"
+  cd "$pkgname"
+  install -Dm755 $pkgname "$pkgdir"/usr/bin/$pkgname
   install -Dm644 LICENSE.md "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
   install -Dm644 -t "$pkgdir"/usr/share/man/man1 man/*.1 
   install -Dm644 -t "$pkgdir"/usr/share/man/man5 man/*.5 


[arch-commits] Commit in wine/repos/multilib-x86_64 (8 files)

2018-12-21 Thread Felix Yan via arch-commits
Date: Friday, December 21, 2018 @ 19:59:11
  Author: felixonmars
Revision: 417457

archrelease: copy trunk to multilib-x86_64

Added:
  wine/repos/multilib-x86_64/30-win32-aliases.conf
(from rev 417456, wine/trunk/30-win32-aliases.conf)
  wine/repos/multilib-x86_64/PKGBUILD
(from rev 417456, wine/trunk/PKGBUILD)
  wine/repos/multilib-x86_64/wine-binfmt.conf
(from rev 417456, wine/trunk/wine-binfmt.conf)
  wine/repos/multilib-x86_64/wine.install
(from rev 417456, wine/trunk/wine.install)
Deleted:
  wine/repos/multilib-x86_64/30-win32-aliases.conf
  wine/repos/multilib-x86_64/PKGBUILD
  wine/repos/multilib-x86_64/wine-binfmt.conf
  wine/repos/multilib-x86_64/wine.install

---+
 30-win32-aliases.conf |   40 ++---
 PKGBUILD  |  328 
 wine-binfmt.conf  |4 
 wine.install  |   14 +-
 4 files changed, 193 insertions(+), 193 deletions(-)

Deleted: 30-win32-aliases.conf
===
--- 30-win32-aliases.conf   2018-12-21 19:58:47 UTC (rev 417456)
+++ 30-win32-aliases.conf   2018-12-21 19:59:11 UTC (rev 417457)
@@ -1,20 +0,0 @@
-
-
-
-  
-MS Shell Dlg
-Microsoft Sans Serif
-sans-serif
-  
-  
-MS Shell Dlg 2
-Tahoma
-sans-serif
-  
-
-  
-MS Sans Serif
-Microsoft Sans Serif
-sans-serif
-  
-

Copied: wine/repos/multilib-x86_64/30-win32-aliases.conf (from rev 417456, 
wine/trunk/30-win32-aliases.conf)
===
--- 30-win32-aliases.conf   (rev 0)
+++ 30-win32-aliases.conf   2018-12-21 19:59:11 UTC (rev 417457)
@@ -0,0 +1,20 @@
+
+
+
+  
+MS Shell Dlg
+Microsoft Sans Serif
+sans-serif
+  
+  
+MS Shell Dlg 2
+Tahoma
+sans-serif
+  
+
+  
+MS Sans Serif
+Microsoft Sans Serif
+sans-serif
+  
+

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-21 19:58:47 UTC (rev 417456)
+++ PKGBUILD2018-12-21 19:59:11 UTC (rev 417457)
@@ -1,164 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Jan "heftig" Steffens 
-# Contributor: Eduardo Romero 
-# Contributor: Giovanni Scafora 
-
-pkgname=wine
-pkgver=4.0rc2
-pkgrel=1
-
-_pkgbasever=${pkgver/rc/-rc}
-
-source=(https://dl.winehq.org/wine/source/4.0/$pkgname-$_pkgbasever.tar.xz{,.sign}
-30-win32-aliases.conf
-wine-binfmt.conf)
-sha512sums=('3678e746a317761b9c47daee336d1875578fada229330c9b5c4203e438f826c9d00b60661f109b4a3b98d27de75721810d96dfde4d786de5055cb36f576419b2'
-'SKIP'
-
'6e54ece7ec7022b3c9d94ad64bdf1017338da16c618966e8baf398e6f18f80f7b0576edf1d1da47ed77b96d577e4cbb2bb0156b0b11c183a0accf22654b0a2bb'
-
'bdde7ae015d8a98ba55e84b86dc05aca1d4f8de85be7e4bd6187054bfe4ac83b5a20538945b63fb073caab78022141e9545685e4e3698c97ff173cf30859e285')
-validpgpkeys=(5AC1A08B03BD7A313E0A955AF5E6E9EEB9461DD7
-  DA23579A74D4AD9AF9D3F945CEFAC8EAAF17519D)
-
-pkgdesc="A compatibility layer for running Windows programs"
-url="http://www.winehq.com;
-arch=(x86_64)
-options=(staticlibs)
-license=(LGPL)
-depends=(
-  fontconfig  lib32-fontconfig
-  lcms2   lib32-lcms2
-  libxml2 lib32-libxml2
-  libxcursor  lib32-libxcursor
-  libxrandr   lib32-libxrandr
-  libxdamage  lib32-libxdamage
-  libxi   lib32-libxi
-  gettext lib32-gettext
-  freetype2   lib32-freetype2
-  glu lib32-glu
-  libsm   lib32-libsm
-  gcc-libslib32-gcc-libs
-  libpcap lib32-libpcap
-  desktop-file-utils
-)
-makedepends=(autoconf ncurses bison perl fontforge flex
-  'gcc>=4.5.0-2'
-  gifliblib32-giflib
-  libpnglib32-libpng
-  gnutlslib32-gnutls
-  libxinerama   lib32-libxinerama
-  libxcomposite lib32-libxcomposite
-  libxmulib32-libxmu
-  libxxf86vmlib32-libxxf86vm
-  libldap   lib32-libldap
-  mpg123lib32-mpg123
-  openallib32-openal
-  v4l-utils lib32-v4l-utils
-  libpulse  lib32-libpulse
-  alsa-lib  lib32-alsa-lib
-  libxcomposite lib32-libxcomposite
-  mesa  lib32-mesa
-  mesa-libgllib32-mesa-libgl
-  opencl-icd-loader lib32-opencl-icd-loader
-  libxslt   lib32-libxslt
-  gst-plugins-base-libs lib32-gst-plugins-base-libs
-  vulkan-icd-loader lib32-vulkan-icd-loader
-  vulkan-headers
-  samba
-  opencl-headers
-)
-optdepends=(
-  gifliblib32-giflib
-  libpnglib32-libpng
-  libldap   lib32-libldap
-  gnutlslib32-gnutls
-  mpg123lib32-mpg123
-  openallib32-openal
-  v4l-utils lib32-v4l-utils
-  libpulse  lib32-libpulse
-  alsa-plugins

[arch-commits] Commit in wine/trunk (PKGBUILD)

2018-12-21 Thread Felix Yan via arch-commits
Date: Friday, December 21, 2018 @ 19:58:47
  Author: felixonmars
Revision: 417456

upgpkg: wine 4.0rc3-1

Modified:
  wine/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-21 19:46:30 UTC (rev 417455)
+++ PKGBUILD2018-12-21 19:58:47 UTC (rev 417456)
@@ -4,7 +4,7 @@
 # Contributor: Giovanni Scafora 
 
 pkgname=wine
-pkgver=4.0rc2
+pkgver=4.0rc3
 pkgrel=1
 
 _pkgbasever=${pkgver/rc/-rc}
@@ -12,7 +12,7 @@
 
source=(https://dl.winehq.org/wine/source/4.0/$pkgname-$_pkgbasever.tar.xz{,.sign}
 30-win32-aliases.conf
 wine-binfmt.conf)
-sha512sums=('3678e746a317761b9c47daee336d1875578fada229330c9b5c4203e438f826c9d00b60661f109b4a3b98d27de75721810d96dfde4d786de5055cb36f576419b2'
+sha512sums=('8987dd46581803ef669a5b29b69268ded471644071443119c90bb0830ed2f1c6781107c17ac291188360b075a076da7f70602927354797c309df1bdca1e61c86'
 'SKIP'
 
'6e54ece7ec7022b3c9d94ad64bdf1017338da16c618966e8baf398e6f18f80f7b0576edf1d1da47ed77b96d577e4cbb2bb0156b0b11c183a0accf22654b0a2bb'
 
'bdde7ae015d8a98ba55e84b86dc05aca1d4f8de85be7e4bd6187054bfe4ac83b5a20538945b63fb073caab78022141e9545685e4e3698c97ff173cf30859e285')


[arch-commits] Commit in deepin-topbar/repos/community-x86_64 (PKGBUILD PKGBUILD)

2018-12-21 Thread Felix Yan via arch-commits
Date: Friday, December 21, 2018 @ 19:46:30
  Author: felixonmars
Revision: 417455

archrelease: copy trunk to community-x86_64

Added:
  deepin-topbar/repos/community-x86_64/PKGBUILD
(from rev 417454, deepin-topbar/trunk/PKGBUILD)
Deleted:
  deepin-topbar/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   50 +-
 1 file changed, 25 insertions(+), 25 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-21 19:46:12 UTC (rev 417454)
+++ PKGBUILD2018-12-21 19:46:30 UTC (rev 417455)
@@ -1,25 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: kirigaya 
-
-pkgname=deepin-topbar
-pkgver=0.5.1
-pkgrel=1
-pkgdesc="This is topbar for Deepin"
-arch=('x86_64')
-url="https://github.com/kirigayakazushin/deepin-topbar;
-license=('GPL')
-depends=('deepin-qt5integration' 'deepin-qt-dbus-factory')
-makedepends=('qt5-tools')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/kirigayakazushin/deepin-topbar/archive/$pkgver.tar.gz;)
-sha512sums=('f7fd77759bff5c2871a7c5ddc91e3614f03ce5493423bfcde0802ecef0601f09882bbd6a3d2188300d4064ab429da6c60e2256e54f6c61e7f1c7a77fcaf77c5b')
-
-build() {
-  cd $pkgname-$pkgver
-  qmake QMAKE_CFLAGS_ISYSTEM= PREFIX=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make INSTALL_ROOT="$pkgdir" install
-}

Copied: deepin-topbar/repos/community-x86_64/PKGBUILD (from rev 417454, 
deepin-topbar/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-21 19:46:30 UTC (rev 417455)
@@ -0,0 +1,25 @@
+# Maintainer: Felix Yan 
+# Contributor: kirigaya 
+
+pkgname=deepin-topbar
+pkgver=0.6.0
+pkgrel=1
+pkgdesc="This is topbar for Deepin"
+arch=('x86_64')
+url="https://github.com/kirigayakazushin/deepin-topbar;
+license=('GPL')
+depends=('deepin-network-utils' 'deepin-qt5integration' 
'deepin-qt-dbus-factory' 'libdbusmenu-qt5')
+makedepends=('cmake' 'qt5-tools')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/kirigayakazushin/deepin-topbar/archive/$pkgver.tar.gz;)
+sha512sums=('fd9155c148235a76072e9a96d6e2b38122a5257319381a7f1224f5e2901ba9ca290c11dda09570ca942080126d49796b87c28371502e9d66032a4389724560df')
+
+build() {
+  cd $pkgname-$pkgver
+  cmake . -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in deepin-topbar/trunk (PKGBUILD)

2018-12-21 Thread Felix Yan via arch-commits
Date: Friday, December 21, 2018 @ 19:46:12
  Author: felixonmars
Revision: 417454

upgpkg: deepin-topbar 0.6.0-1

Modified:
  deepin-topbar/trunk/PKGBUILD

--+
 PKGBUILD |   12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-21 19:43:54 UTC (rev 417453)
+++ PKGBUILD2018-12-21 19:46:12 UTC (rev 417454)
@@ -2,24 +2,24 @@
 # Contributor: kirigaya 
 
 pkgname=deepin-topbar
-pkgver=0.5.1
+pkgver=0.6.0
 pkgrel=1
 pkgdesc="This is topbar for Deepin"
 arch=('x86_64')
 url="https://github.com/kirigayakazushin/deepin-topbar;
 license=('GPL')
-depends=('deepin-qt5integration' 'deepin-qt-dbus-factory')
-makedepends=('qt5-tools')
+depends=('deepin-network-utils' 'deepin-qt5integration' 
'deepin-qt-dbus-factory' 'libdbusmenu-qt5')
+makedepends=('cmake' 'qt5-tools')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/kirigayakazushin/deepin-topbar/archive/$pkgver.tar.gz;)
-sha512sums=('f7fd77759bff5c2871a7c5ddc91e3614f03ce5493423bfcde0802ecef0601f09882bbd6a3d2188300d4064ab429da6c60e2256e54f6c61e7f1c7a77fcaf77c5b')
+sha512sums=('fd9155c148235a76072e9a96d6e2b38122a5257319381a7f1224f5e2901ba9ca290c11dda09570ca942080126d49796b87c28371502e9d66032a4389724560df')
 
 build() {
   cd $pkgname-$pkgver
-  qmake QMAKE_CFLAGS_ISYSTEM= PREFIX=/usr
+  cmake . -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib
   make
 }
 
 package() {
   cd $pkgname-$pkgver
-  make INSTALL_ROOT="$pkgdir" install
+  make DESTDIR="$pkgdir" install
 }


[arch-commits] Commit in python-pyrsistent/repos/community-x86_64 (4 files)

2018-12-21 Thread Felix Yan via arch-commits
Date: Friday, December 21, 2018 @ 19:43:54
  Author: felixonmars
Revision: 417453

archrelease: copy trunk to community-x86_64

Added:
  python-pyrsistent/repos/community-x86_64/LICENCE.mit
(from rev 417452, python-pyrsistent/trunk/LICENCE.mit)
  python-pyrsistent/repos/community-x86_64/PKGBUILD
(from rev 417452, python-pyrsistent/trunk/PKGBUILD)
Deleted:
  python-pyrsistent/repos/community-x86_64/LICENCE.mit
  python-pyrsistent/repos/community-x86_64/PKGBUILD

-+
 LICENCE.mit |   44 
 PKGBUILD|  104 +-
 2 files changed, 74 insertions(+), 74 deletions(-)

Deleted: LICENCE.mit
===
--- LICENCE.mit 2018-12-21 19:43:35 UTC (rev 417452)
+++ LICENCE.mit 2018-12-21 19:43:54 UTC (rev 417453)
@@ -1,22 +0,0 @@
-Copyright (c) 2015 Tobias Gustafsson
-
-Permission is hereby granted, free of charge, to any person
-obtaining a copy of this software and associated documentation
-files (the "Software"), to deal in the Software without
-restriction, including without limitation the rights to use,
-copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the
-Software is furnished to do so, subject to the following
-conditions:
-
-The above copyright notice and this permission notice shall be
-included in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
-OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
-HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
-WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
-FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
-OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file

Copied: python-pyrsistent/repos/community-x86_64/LICENCE.mit (from rev 417452, 
python-pyrsistent/trunk/LICENCE.mit)
===
--- LICENCE.mit (rev 0)
+++ LICENCE.mit 2018-12-21 19:43:54 UTC (rev 417453)
@@ -0,0 +1,22 @@
+Copyright (c) 2015 Tobias Gustafsson
+
+Permission is hereby granted, free of charge, to any person
+obtaining a copy of this software and associated documentation
+files (the "Software"), to deal in the Software without
+restriction, including without limitation the rights to use,
+copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the
+Software is furnished to do so, subject to the following
+conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-21 19:43:35 UTC (rev 417452)
+++ PKGBUILD2018-12-21 19:43:54 UTC (rev 417453)
@@ -1,52 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgbase=python-pyrsistent
-pkgname=('python-pyrsistent' 'python2-pyrsistent')
-pkgver=0.14.7
-pkgrel=1
-pkgdesc="Persistent/Functional/Immutable data structures"
-arch=('x86_64')
-license=('MIT')
-url="https://github.com/tobgu/pyrsistent;
-makedepends=('python-setuptools' 'python2-setuptools')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
'python-hypothesis' 'python2-hypothesis')
-source=("https://pypi.io/packages/source/p/pyrsistent/pyrsistent-$pkgver.tar.gz;
-LICENCE.mit)
-sha512sums=('6b7bdbdba57b0f85cd485d61136a29eab2f0b11ffb71cac4e25bebcaf8a0288adf33a38c23ec133437933343480281f54696f9dcc67138200411dc8145702da2'
-
'036bd5cc2a62b004576ecc50a84dc7d187d8108f52cb886f7e32bed324327af2dc132100e1c8f1dd2ce35b774f74898020f04a315e5137319deda18a449e791a')
-
-prepare() {
-  cp -a pyrsistent-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/pyrsistent-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/pyrsistent-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/pyrsistent-$pkgver
-  python setup.py pytest
-
-  cd "$srcdir"/pyrsistent-$pkgver-py2
-  python2 setup.py pytest
-}
-
-package_python-pyrsistent() {
-  depends=('python-six')
-
-  cd pyrsistent-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 ../LICENCE.mit 

[arch-commits] Commit in python-pyrsistent/trunk (PKGBUILD)

2018-12-21 Thread Felix Yan via arch-commits
Date: Friday, December 21, 2018 @ 19:43:35
  Author: felixonmars
Revision: 417452

upgpkg: python-pyrsistent 0.14.8-1

Modified:
  python-pyrsistent/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-21 19:40:49 UTC (rev 417451)
+++ PKGBUILD2018-12-21 19:43:35 UTC (rev 417452)
@@ -2,7 +2,7 @@
 
 pkgbase=python-pyrsistent
 pkgname=('python-pyrsistent' 'python2-pyrsistent')
-pkgver=0.14.7
+pkgver=0.14.8
 pkgrel=1
 pkgdesc="Persistent/Functional/Immutable data structures"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
'python-hypothesis' 'python2-hypothesis')
 
source=("https://pypi.io/packages/source/p/pyrsistent/pyrsistent-$pkgver.tar.gz;
 LICENCE.mit)
-sha512sums=('6b7bdbdba57b0f85cd485d61136a29eab2f0b11ffb71cac4e25bebcaf8a0288adf33a38c23ec133437933343480281f54696f9dcc67138200411dc8145702da2'
+sha512sums=('16981bc6f0f1e30c438ed83bd2636b3a8a56ffe5d61430f29278aa7d29f9dd9318955a05898e1d0a2232fccf88ec1238c6a254f9356b0058e4d00b99073fa0af'
 
'036bd5cc2a62b004576ecc50a84dc7d187d8108f52cb886f7e32bed324327af2dc132100e1c8f1dd2ce35b774f74898020f04a315e5137319deda18a449e791a')
 
 prepare() {


[arch-commits] Commit in python-hypothesis/repos/community-any (PKGBUILD PKGBUILD)

2018-12-21 Thread Felix Yan via arch-commits
Date: Friday, December 21, 2018 @ 19:40:49
  Author: felixonmars
Revision: 417451

archrelease: copy trunk to community-any

Added:
  python-hypothesis/repos/community-any/PKGBUILD
(from rev 417450, python-hypothesis/trunk/PKGBUILD)
Deleted:
  python-hypothesis/repos/community-any/PKGBUILD

--+
 PKGBUILD |  156 ++---
 1 file changed, 78 insertions(+), 78 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-21 19:40:30 UTC (rev 417450)
+++ PKGBUILD2018-12-21 19:40:49 UTC (rev 417451)
@@ -1,78 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgbase=python-hypothesis
-pkgname=('python-hypothesis' 'python2-hypothesis')
-pkgver=3.84.4
-pkgrel=1
-pkgdesc="Advanced Quickcheck style testing library for Python"
-arch=('any')
-license=('MPL')
-url="https://hypothesis.readthedocs.org;
-makedepends=('python-setuptools' 'python2-setuptools' 'python-attrs' 
'python2-attrs'
- 'python-coverage' 'python2-coverage' 'python2-enum34')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'flake8' 
'python2-flake8' 'python-pytz'
-  'python2-pytz' 'python-numpy' 'python2-numpy' 'python-faker' 
'python2-faker'
-  'python-flaky' 'python2-flaky' 'python-django' 'python2-django' 
'python-pytest-xdist'
-  'python2-pytest-xdist' 'python-mock' 'python2-mock' 
'python-pandas' 'python2-pandas'
-  'python-dpcontracts' 'python2-dpcontracts')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz;)
-sha512sums=('42ca810f49e0cbc6486444b6c56e86a461431ef80491f2626c56cca0e42dd07fc2bb120dc9436b6701da68223e5a9c9f8fe6c4d15d864be5e52bcdb2164d4d84')
-
-prepare() {
-  mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver
-
-  sed -i "/FutureWarning/a \filterwarnings('ignore', 
category=DeprecationWarning, module='pandas.core')" 
hypothesis-$pkgver/hypothesis-python/tests/common/setup.py
-
-  cp -a hypothesis-$pkgver{,-py2}
-
-  rm -r hypothesis-$pkgver/hypothesis-python/tests/py2
-  rm -r hypothesis-$pkgver-py2/hypothesis-python/tests/py3
-
-  export LC_CTYPE=en_US.UTF-8
-}
-
-build() {
-  cd "$srcdir"/hypothesis-$pkgver/hypothesis-python
-  python setup.py build
-
-  cd "$srcdir"/hypothesis-$pkgver-py2/hypothesis-python
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/hypothesis-$pkgver/hypothesis-python
-  mv tests/django ../
-  python setup.py pytest --addopts -n16
-  mv ../django tests/
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python -m tests.django.manage test 
tests.django || warning "Tests failed"
-
-  cd "$srcdir"/hypothesis-$pkgver-py2/hypothesis-python
-  mv tests/django ../
-  python2 setup.py pytest --addopts -n16
-  mv ../django tests/
-  PYTHONPATH="$PWD/build/lib:$PYTHONPATH" python2 -m tests.django.manage test 
tests.django
-}
-
-package_python-hypothesis() {
-  depends=('python-attrs' 'python-coverage')
-  optdepends=('python-pytz: for datetime and django module'
-  'python-faker: for fakefactory and django module'
-  'python-django: for django module'
-  'python-numpy: for numpy module'
-  'python-pytest: for pytest module')
-
-  cd hypothesis-$pkgver/hypothesis-python
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-hypothesis() {
-  depends=('python2-attrs' 'python2-coverage' 'python2-enum34')
-  optdepends=('python2-pytz: for datetime and django module'
-  'python2-faker: for fakefactory and django module'
-  'python2-django: for django module'
-  'python2-numpy: for numpy module'
-  'python2-pytest: for pytest module')
-
-  cd hypothesis-$pkgver-py2/hypothesis-python
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-hypothesis/repos/community-any/PKGBUILD (from rev 417450, 
python-hypothesis/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-21 19:40:49 UTC (rev 417451)
@@ -0,0 +1,78 @@
+# Maintainer: Felix Yan 
+
+pkgbase=python-hypothesis
+pkgname=('python-hypothesis' 'python2-hypothesis')
+pkgver=3.84.5
+pkgrel=1
+pkgdesc="Advanced Quickcheck style testing library for Python"
+arch=('any')
+license=('MPL')
+url="https://hypothesis.readthedocs.org;
+makedepends=('python-setuptools' 'python2-setuptools' 'python-attrs' 
'python2-attrs'
+ 'python-coverage' 'python2-coverage' 'python2-enum34')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'flake8' 
'python2-flake8' 'python-pytz'
+  'python2-pytz' 'python-numpy' 'python2-numpy' 'python-faker' 
'python2-faker'
+  'python-flaky' 'python2-flaky' 'python-django' 'python2-django' 
'python-pytest-xdist'
+  'python2-pytest-xdist' 'python-mock' 'python2-mock' 
'python-pandas' 

[arch-commits] Commit in python-hypothesis/trunk (PKGBUILD)

2018-12-21 Thread Felix Yan via arch-commits
Date: Friday, December 21, 2018 @ 19:40:30
  Author: felixonmars
Revision: 417450

upgpkg: python-hypothesis 3.84.5-1

Modified:
  python-hypothesis/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-21 18:59:06 UTC (rev 417449)
+++ PKGBUILD2018-12-21 19:40:30 UTC (rev 417450)
@@ -2,7 +2,7 @@
 
 pkgbase=python-hypothesis
 pkgname=('python-hypothesis' 'python2-hypothesis')
-pkgver=3.84.4
+pkgver=3.84.5
 pkgrel=1
 pkgdesc="Advanced Quickcheck style testing library for Python"
 arch=('any')
@@ -16,7 +16,7 @@
   'python2-pytest-xdist' 'python-mock' 'python2-mock' 
'python-pandas' 'python2-pandas'
   'python-dpcontracts' 'python2-dpcontracts')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz;)
-sha512sums=('42ca810f49e0cbc6486444b6c56e86a461431ef80491f2626c56cca0e42dd07fc2bb120dc9436b6701da68223e5a9c9f8fe6c4d15d864be5e52bcdb2164d4d84')
+sha512sums=('7b1107adf4b84f7b4506e6cc6466946b7b54b1003d18938beeffd9cff08c25976abed1a8ce8bf68481b338f6d4f839a8d101b2225be1758ee72727d90b07750d')
 
 prepare() {
   mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver


[arch-commits] Commit in z3/trunk (PKGBUILD)

2018-12-21 Thread Felix Yan via arch-commits
Date: Friday, December 21, 2018 @ 18:58:47
  Author: felixonmars
Revision: 417448

upgpkg: z3 4.8.4-1

Modified:
  z3/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-21 18:08:46 UTC (rev 417447)
+++ PKGBUILD2018-12-21 18:58:47 UTC (rev 417448)
@@ -4,7 +4,7 @@
 
 pkgbase=z3
 pkgname=('z3' 'python-z3' 'python2-z3')
-pkgver=4.8.3
+pkgver=4.8.4
 pkgrel=1
 pkgdesc='High-performance theorem prover'
 url='https://github.com/Z3Prover/z3'
@@ -14,7 +14,7 @@
 makedepends=('cmake' 'python2' 'python2-setuptools' 'python' 
'python-setuptools' 'gcc-libs' 'gmp')
 optdepends=('python2-setuptools: bindings for python2')
 source=(https://github.com/Z3Prover/z3/archive/${pkgbase}-${pkgver}.tar.gz)
-sha512sums=('34a2dca0083ed469fdaf5ac062dda26248633245607ddd9ef90629c5f76ae30f87bfa4191c04ba9be7a617bf182a1bd00b59fd2274699e12ece69b86088c8044')
+sha512sums=('4660ba6ab33a6345b2e8396c332d4afcfc73eda66ceb2595a39f152df4d62a9ea0f349b0f9212389ba84ecba6bdae6ad9b62b376ba44dc4d9c74f80d7a818bf4')
 
 prepare() {
   cd ${pkgbase}-${pkgbase}-${pkgver}


[arch-commits] Commit in z3/repos/community-x86_64 (PKGBUILD PKGBUILD)

2018-12-21 Thread Felix Yan via arch-commits
Date: Friday, December 21, 2018 @ 18:59:06
  Author: felixonmars
Revision: 417449

archrelease: copy trunk to community-x86_64

Added:
  z3/repos/community-x86_64/PKGBUILD
(from rev 417448, z3/trunk/PKGBUILD)
Deleted:
  z3/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  138 ++---
 1 file changed, 69 insertions(+), 69 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-21 18:58:47 UTC (rev 417448)
+++ PKGBUILD2018-12-21 18:59:06 UTC (rev 417449)
@@ -1,69 +0,0 @@
-# Maintainer: Felix Yan 
-# Maintainer: Levente Polyak 
-# Contributor: rudy.matela
-
-pkgbase=z3
-pkgname=('z3' 'python-z3' 'python2-z3')
-pkgver=4.8.3
-pkgrel=1
-pkgdesc='High-performance theorem prover'
-url='https://github.com/Z3Prover/z3'
-arch=('x86_64')
-license=('MIT')
- # 'java-environment-common' 'mono' 'ocaml' 'ocaml-findlib'
-makedepends=('cmake' 'python2' 'python2-setuptools' 'python' 
'python-setuptools' 'gcc-libs' 'gmp')
-optdepends=('python2-setuptools: bindings for python2')
-source=(https://github.com/Z3Prover/z3/archive/${pkgbase}-${pkgver}.tar.gz)
-sha512sums=('34a2dca0083ed469fdaf5ac062dda26248633245607ddd9ef90629c5f76ae30f87bfa4191c04ba9be7a617bf182a1bd00b59fd2274699e12ece69b86088c8044')
-
-prepare() {
-  cd ${pkgbase}-${pkgbase}-${pkgver}
-  mkdir -p build
-}
-
-build() {
-  cd ${pkgbase}-${pkgbase}-${pkgver}/build
-  cmake .. \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DBUILD_PYTHON_BINDINGS=1 \
--DPYTHON_EXECUTABLE=/usr/bin/python \
--DUSE_LIB_GMP=1
-  make
-}
-
-package_z3() {
-  depends=('gcc-libs' 'gmp')
-  provides=('libz3' 'libz3.so')
-  cd ${pkgbase}-${pkgbase}-${pkgver}/build
-  make DESTDIR="${pkgdir}" install
-  install -Dm 644 ../LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  rm -r "${pkgdir}"/usr/lib/python*
-}
-
-package_python-z3() {
-  depends=('python' 'libz3')
-  cd ${pkgbase}-${pkgbase}-${pkgver}/build
-  make DESTDIR="${pkgdir}" install
-  install -Dm 644 ../LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  cd "${pkgdir}"
-  rm -r usr/include usr/bin usr/lib/cmake usr/lib/lib*
-  python -m compileall .
-  python -O -m compileall .
-}
-
-package_python2-z3() {
-  depends=('python2' 'libz3')
-  cd ${pkgbase}-${pkgbase}-${pkgver}/build
-  make DESTDIR="${pkgdir}" install
-  install -Dm 644 ../LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  cd "${pkgdir}"
-  rm -r usr/include usr/bin usr/lib/cmake usr/lib/lib*
-  mv usr/lib/python* usr/lib/python2.7
-  [ -n "${SOURCE_DATE_EPOCH}" ] && find . -exec touch -h -d 
@$SOURCE_DATE_EPOCH {} +
-  python2 -m compileall .
-  python2 -O -m compileall .
-}
-
-# vim: ts=2 sw=2 et:

Copied: z3/repos/community-x86_64/PKGBUILD (from rev 417448, z3/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-21 18:59:06 UTC (rev 417449)
@@ -0,0 +1,69 @@
+# Maintainer: Felix Yan 
+# Maintainer: Levente Polyak 
+# Contributor: rudy.matela
+
+pkgbase=z3
+pkgname=('z3' 'python-z3' 'python2-z3')
+pkgver=4.8.4
+pkgrel=1
+pkgdesc='High-performance theorem prover'
+url='https://github.com/Z3Prover/z3'
+arch=('x86_64')
+license=('MIT')
+ # 'java-environment-common' 'mono' 'ocaml' 'ocaml-findlib'
+makedepends=('cmake' 'python2' 'python2-setuptools' 'python' 
'python-setuptools' 'gcc-libs' 'gmp')
+optdepends=('python2-setuptools: bindings for python2')
+source=(https://github.com/Z3Prover/z3/archive/${pkgbase}-${pkgver}.tar.gz)
+sha512sums=('4660ba6ab33a6345b2e8396c332d4afcfc73eda66ceb2595a39f152df4d62a9ea0f349b0f9212389ba84ecba6bdae6ad9b62b376ba44dc4d9c74f80d7a818bf4')
+
+prepare() {
+  cd ${pkgbase}-${pkgbase}-${pkgver}
+  mkdir -p build
+}
+
+build() {
+  cd ${pkgbase}-${pkgbase}-${pkgver}/build
+  cmake .. \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DBUILD_PYTHON_BINDINGS=1 \
+-DPYTHON_EXECUTABLE=/usr/bin/python \
+-DUSE_LIB_GMP=1
+  make
+}
+
+package_z3() {
+  depends=('gcc-libs' 'gmp')
+  provides=('libz3' 'libz3.so')
+  cd ${pkgbase}-${pkgbase}-${pkgver}/build
+  make DESTDIR="${pkgdir}" install
+  install -Dm 644 ../LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  rm -r "${pkgdir}"/usr/lib/python*
+}
+
+package_python-z3() {
+  depends=('python' 'libz3')
+  cd ${pkgbase}-${pkgbase}-${pkgver}/build
+  make DESTDIR="${pkgdir}" install
+  install -Dm 644 ../LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  cd "${pkgdir}"
+  rm -r usr/include usr/bin usr/lib/cmake usr/lib/lib*
+  python -m compileall .
+  python -O -m compileall .
+}
+
+package_python2-z3() {
+  depends=('python2' 'libz3')
+  cd ${pkgbase}-${pkgbase}-${pkgver}/build
+  make DESTDIR="${pkgdir}" install
+  install -Dm 644 ../LICENSE.txt -t 

[arch-commits] Commit in font-awesome/trunk (PKGBUILD)

2018-12-21 Thread Morten Linderud via arch-commits
Date: Friday, December 21, 2018 @ 18:08:36
  Author: foxboron
Revision: 417446

upgpkg: font-awesome 5.6.0-1

Modified:
  font-awesome/trunk/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-21 18:05:26 UTC (rev 417445)
+++ PKGBUILD2018-12-21 18:08:36 UTC (rev 417446)
@@ -3,7 +3,7 @@
 
 pkgbase=font-awesome
 pkgname=(ttf-font-awesome otf-font-awesome)
-pkgver=5.5.0
+pkgver=5.6.0
 pkgrel=1
 pkgdesc="Iconic font designed for Bootstrap"
 url="http://fontawesome.com;
@@ -11,13 +11,13 @@
 arch=('any')
 depends=('fontconfig')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/FortAwesome/Font-Awesome/archive/$pkgver.tar.gz;)
-sha256sums=('62b5459ab0769880245bb6ce6ec7486a877e14e75b75568d5e25304dcb52a55b')
+sha256sums=('d3c8dd3c0335c3d2fe523572eb398599c9eb130381be32d20f5978ccd9d4310a')
 
 package_ttf-font-awesome() {
   cd "Font-Awesome-${pkgver}"
   install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
   install -d "$pkgdir/usr/share/fonts/TTF"
-  install -m644 ./web-fonts-with-css/webfonts/*.ttf 
"$pkgdir/usr/share/fonts/TTF"
+  install -m644 ./webfonts/*.ttf "$pkgdir/usr/share/fonts/TTF"
 }
 
 package_otf-font-awesome() {
@@ -24,5 +24,5 @@
   cd "Font-Awesome-${pkgver}"
   install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
   install -d "$pkgdir/usr/share/fonts/OTF"
-  install -m644 ./use-on-desktop/*.otf "$pkgdir/usr/share/fonts/OTF"
+  install -m644 ./otfs/*.otf "$pkgdir/usr/share/fonts/OTF"
 }


[arch-commits] Commit in font-awesome/repos/community-any (PKGBUILD PKGBUILD)

2018-12-21 Thread Morten Linderud via arch-commits
Date: Friday, December 21, 2018 @ 18:08:46
  Author: foxboron
Revision: 417447

archrelease: copy trunk to community-any

Added:
  font-awesome/repos/community-any/PKGBUILD
(from rev 417446, font-awesome/trunk/PKGBUILD)
Deleted:
  font-awesome/repos/community-any/PKGBUILD

--+
 PKGBUILD |   56 
 1 file changed, 28 insertions(+), 28 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-21 18:08:36 UTC (rev 417446)
+++ PKGBUILD2018-12-21 18:08:46 UTC (rev 417447)
@@ -1,28 +0,0 @@
-# Maintainer: Morten Linderud  
-# Contributor: Alad Wenter 

-
-pkgbase=font-awesome
-pkgname=(ttf-font-awesome otf-font-awesome)
-pkgver=5.5.0
-pkgrel=1
-pkgdesc="Iconic font designed for Bootstrap"
-url="http://fontawesome.com;
-license=('custom:OFL')
-arch=('any')
-depends=('fontconfig')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/FortAwesome/Font-Awesome/archive/$pkgver.tar.gz;)
-sha256sums=('62b5459ab0769880245bb6ce6ec7486a877e14e75b75568d5e25304dcb52a55b')
-
-package_ttf-font-awesome() {
-  cd "Font-Awesome-${pkgver}"
-  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
-  install -d "$pkgdir/usr/share/fonts/TTF"
-  install -m644 ./web-fonts-with-css/webfonts/*.ttf 
"$pkgdir/usr/share/fonts/TTF"
-}
-
-package_otf-font-awesome() {
-  cd "Font-Awesome-${pkgver}"
-  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
-  install -d "$pkgdir/usr/share/fonts/OTF"
-  install -m644 ./use-on-desktop/*.otf "$pkgdir/usr/share/fonts/OTF"
-}

Copied: font-awesome/repos/community-any/PKGBUILD (from rev 417446, 
font-awesome/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-21 18:08:46 UTC (rev 417447)
@@ -0,0 +1,28 @@
+# Maintainer: Morten Linderud  
+# Contributor: Alad Wenter 

+
+pkgbase=font-awesome
+pkgname=(ttf-font-awesome otf-font-awesome)
+pkgver=5.6.0
+pkgrel=1
+pkgdesc="Iconic font designed for Bootstrap"
+url="http://fontawesome.com;
+license=('custom:OFL')
+arch=('any')
+depends=('fontconfig')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/FortAwesome/Font-Awesome/archive/$pkgver.tar.gz;)
+sha256sums=('d3c8dd3c0335c3d2fe523572eb398599c9eb130381be32d20f5978ccd9d4310a')
+
+package_ttf-font-awesome() {
+  cd "Font-Awesome-${pkgver}"
+  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
+  install -d "$pkgdir/usr/share/fonts/TTF"
+  install -m644 ./webfonts/*.ttf "$pkgdir/usr/share/fonts/TTF"
+}
+
+package_otf-font-awesome() {
+  cd "Font-Awesome-${pkgver}"
+  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
+  install -d "$pkgdir/usr/share/fonts/OTF"
+  install -m644 ./otfs/*.otf "$pkgdir/usr/share/fonts/OTF"
+}


[arch-commits] Commit in mypy/repos/community-any (PKGBUILD PKGBUILD)

2018-12-21 Thread Morten Linderud via arch-commits
Date: Friday, December 21, 2018 @ 18:05:26
  Author: foxboron
Revision: 417445

archrelease: copy trunk to community-any

Added:
  mypy/repos/community-any/PKGBUILD
(from rev 417444, mypy/trunk/PKGBUILD)
Deleted:
  mypy/repos/community-any/PKGBUILD

--+
 PKGBUILD |   52 ++--
 1 file changed, 26 insertions(+), 26 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-21 18:05:18 UTC (rev 417444)
+++ PKGBUILD2018-12-21 18:05:26 UTC (rev 417445)
@@ -1,26 +0,0 @@
-# Maintainer: Morten Linderud 
-# Contributor: icasdri 
-# Contributor: hexchain 
-
-pkgname=mypy
-pkgver=0.641
-pkgrel=1
-pkgdesc='Optional static typing for Python 2 and 3 (PEP484)'
-url="http://www.mypy-lang.org/;
-arch=('any')
-license=('MIT')
-depends=('python' 'python-psutil' 'python-typed-ast' 'python-mypy_extensions')
-makedepends=('python-setuptools' 'git')
-source=("$pkgname-$pkgver.tar.gz::https://pypi.org/packages/source/m/$pkgname/$pkgname-$pkgver.tar.gz;)
-sha256sums=('8e071ec32cc226e948a34bbb3d196eb0fd96f3ac69b6843a5aff9bd4efa14455')
-
-build() {
-cd "$pkgname-$pkgver"
-python setup.py build
-}
-
-package() {
-cd "$pkgname-$pkgver"
-python setup.py install --prefix="/usr" --root="${pkgdir}" --optimize=1 
--skip-build
-install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: mypy/repos/community-any/PKGBUILD (from rev 417444, mypy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-21 18:05:26 UTC (rev 417445)
@@ -0,0 +1,26 @@
+# Maintainer: Morten Linderud 
+# Contributor: icasdri 
+# Contributor: hexchain 
+
+pkgname=mypy
+pkgver=0.650
+pkgrel=1
+pkgdesc='Optional static typing for Python 2 and 3 (PEP484)'
+url="http://www.mypy-lang.org/;
+arch=('any')
+license=('MIT')
+depends=('python' 'python-psutil' 'python-typed-ast' 'python-mypy_extensions')
+makedepends=('python-setuptools' 'git')
+source=("$pkgname-$pkgver.tar.gz::https://pypi.org/packages/source/m/$pkgname/$pkgname-$pkgver.tar.gz;)
+sha256sums=('38d5b5f835a81817dcc0af8d155bce4e9aefa03794fe32ed154d6612e83feafa')
+
+build() {
+cd "$pkgname-$pkgver"
+python setup.py build
+}
+
+package() {
+cd "$pkgname-$pkgver"
+python setup.py install --prefix="/usr" --root="${pkgdir}" --optimize=1 
--skip-build
+install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


[arch-commits] Commit in mypy/trunk (PKGBUILD)

2018-12-21 Thread Morten Linderud via arch-commits
Date: Friday, December 21, 2018 @ 18:05:18
  Author: foxboron
Revision: 417444

upgpkg: mypy 0.650-1

Modified:
  mypy/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-21 18:04:00 UTC (rev 417443)
+++ PKGBUILD2018-12-21 18:05:18 UTC (rev 417444)
@@ -3,7 +3,7 @@
 # Contributor: hexchain 
 
 pkgname=mypy
-pkgver=0.641
+pkgver=0.650
 pkgrel=1
 pkgdesc='Optional static typing for Python 2 and 3 (PEP484)'
 url="http://www.mypy-lang.org/;
@@ -12,7 +12,7 @@
 depends=('python' 'python-psutil' 'python-typed-ast' 'python-mypy_extensions')
 makedepends=('python-setuptools' 'git')
 
source=("$pkgname-$pkgver.tar.gz::https://pypi.org/packages/source/m/$pkgname/$pkgname-$pkgver.tar.gz;)
-sha256sums=('8e071ec32cc226e948a34bbb3d196eb0fd96f3ac69b6843a5aff9bd4efa14455')
+sha256sums=('38d5b5f835a81817dcc0af8d155bce4e9aefa03794fe32ed154d6612e83feafa')
 
 build() {
 cd "$pkgname-$pkgver"


[arch-commits] Commit in python-autobahn/repos/community-any (PKGBUILD PKGBUILD)

2018-12-21 Thread Morten Linderud via arch-commits
Date: Friday, December 21, 2018 @ 18:04:00
  Author: foxboron
Revision: 417443

archrelease: copy trunk to community-any

Added:
  python-autobahn/repos/community-any/PKGBUILD
(from rev 417442, python-autobahn/trunk/PKGBUILD)
Deleted:
  python-autobahn/repos/community-any/PKGBUILD

--+
 PKGBUILD |   88 ++---
 1 file changed, 44 insertions(+), 44 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-21 18:03:51 UTC (rev 417442)
+++ PKGBUILD2018-12-21 18:04:00 UTC (rev 417443)
@@ -1,44 +0,0 @@
-# Maintainer: Morten Linderud 
-# Maintainer: Anatol Pomozov
-
-pkgbase=python-autobahn
-pkgname=(python-autobahn python2-autobahn)
-pkgver=18.11.1
-pkgrel=1
-pkgdesc='Real-time framework for Web, Mobile & Internet of Things'
-arch=(any)
-url='http://autobahn.ws/python/'
-license=(MIT)
-makedepends=(python-setuptools python2-setuptools python-twisted python-six 
python-txaio python2-twisted python2-six python2-txaio)
-checkdepends=(python2-unittest2)
-source=(https://pypi.io/packages/source/a/autobahn/autobahn-$pkgver.tar.gz)
-sha256sums=('c7e775e46fc033160fa89942de4953ca739f26167f74431dc2c8a3cd165b8755')
-
-build() {
-  cd "$srcdir/autobahn-$pkgver"
-  python setup.py build
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir/autobahn-$pkgver"
-  #It requires python-unittest2 in [community]
-  #python setup.py test
-  #python2 setup.py test
-}
-
-package_python-autobahn() {
-  depends=(python python-twisted python-six python-txaio)
-
-  cd "$srcdir/autobahn-$pkgver"
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_python2-autobahn() {
-  depends=(python2 python2-twisted python2-six python2-txaio)
-
-  cd "$srcdir/autobahn-$pkgver"
-  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python-autobahn/repos/community-any/PKGBUILD (from rev 417442, 
python-autobahn/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-21 18:04:00 UTC (rev 417443)
@@ -0,0 +1,44 @@
+# Maintainer: Morten Linderud 
+# Maintainer: Anatol Pomozov
+
+pkgbase=python-autobahn
+pkgname=(python-autobahn python2-autobahn)
+pkgver=18.11.2
+pkgrel=1
+pkgdesc='Real-time framework for Web, Mobile & Internet of Things'
+arch=(any)
+url='http://autobahn.ws/python/'
+license=(MIT)
+makedepends=(python-setuptools python2-setuptools python-twisted python-six 
python-txaio python2-twisted python2-six python2-txaio)
+checkdepends=(python2-unittest2)
+source=(https://pypi.io/packages/source/a/autobahn/autobahn-$pkgver.tar.gz)
+sha256sums=('43262e500aaf8b89fb5f0b60ab13163500ee877908cdd6861208546d95c6dba0')
+
+build() {
+  cd "$srcdir/autobahn-$pkgver"
+  python setup.py build
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir/autobahn-$pkgver"
+  #It requires python-unittest2 in [community]
+  #python setup.py test
+  #python2 setup.py test
+}
+
+package_python-autobahn() {
+  depends=(python python-twisted python-six python-txaio)
+
+  cd "$srcdir/autobahn-$pkgver"
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_python2-autobahn() {
+  depends=(python2 python2-twisted python2-six python2-txaio)
+
+  cd "$srcdir/autobahn-$pkgver"
+  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


[arch-commits] Commit in python-autobahn/trunk (PKGBUILD)

2018-12-21 Thread Morten Linderud via arch-commits
Date: Friday, December 21, 2018 @ 18:03:51
  Author: foxboron
Revision: 417442

upgpkg: python-autobahn 18.11.2-1

Modified:
  python-autobahn/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-21 17:58:16 UTC (rev 417441)
+++ PKGBUILD2018-12-21 18:03:51 UTC (rev 417442)
@@ -3,7 +3,7 @@
 
 pkgbase=python-autobahn
 pkgname=(python-autobahn python2-autobahn)
-pkgver=18.11.1
+pkgver=18.11.2
 pkgrel=1
 pkgdesc='Real-time framework for Web, Mobile & Internet of Things'
 arch=(any)
@@ -12,7 +12,7 @@
 makedepends=(python-setuptools python2-setuptools python-twisted python-six 
python-txaio python2-twisted python2-six python2-txaio)
 checkdepends=(python2-unittest2)
 source=(https://pypi.io/packages/source/a/autobahn/autobahn-$pkgver.tar.gz)
-sha256sums=('c7e775e46fc033160fa89942de4953ca739f26167f74431dc2c8a3cd165b8755')
+sha256sums=('43262e500aaf8b89fb5f0b60ab13163500ee877908cdd6861208546d95c6dba0')
 
 build() {
   cd "$srcdir/autobahn-$pkgver"


[arch-commits] Commit in mate-notification-daemon/repos/community-x86_64 (2 files)

2018-12-21 Thread Brad Fanella via arch-commits
Date: Friday, December 21, 2018 @ 17:58:16
  Author: cesura
Revision: 417441

archrelease: copy trunk to community-x86_64

Added:
  mate-notification-daemon/repos/community-x86_64/PKGBUILD
(from rev 417440, mate-notification-daemon/trunk/PKGBUILD)
Deleted:
  mate-notification-daemon/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   70 ++---
 1 file changed, 35 insertions(+), 35 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-21 17:57:39 UTC (rev 417440)
+++ PKGBUILD2018-12-21 17:58:16 UTC (rev 417441)
@@ -1,35 +0,0 @@
-# Maintainer: Brad Fanella 
-# Contributor: Martin Wimpress 
-
-pkgname=mate-notification-daemon
-pkgver=1.20.1
-pkgrel=1
-provides=('notification-daemon')
-pkgdesc="Notification daemon for MATE"
-url="https://mate-desktop.org;
-arch=('x86_64')
-license=('GPL')
-groups=('mate')
-depends=('dbus-glib' 'libcanberra' 'libwnck3' 'libnotify')
-makedepends=('intltool' 'python')
-conflicts=('mate-notification-daemon-gtk3')
-replaces=('mate-notification-daemon-gtk3')
-source=("https://pub.mate-desktop.org/releases/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-sha256sums=('e85cd01f40d238c57b3da30537fbd561102e652f492b20ebfea79938d8e39a43')
-
-build() {
-cd ${pkgname}-${pkgver}
-./configure \
---prefix=/usr \
---libexecdir=/usr/lib/${pkgname}
-
-#https://bugzilla.gnome.org/show_bug.cgi?id=656231
-sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-make
-}
-
-package() {
-cd ${pkgname}-${pkgver}
-make DESTDIR="${pkgdir}" install
-}

Copied: mate-notification-daemon/repos/community-x86_64/PKGBUILD (from rev 
417440, mate-notification-daemon/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-21 17:58:16 UTC (rev 417441)
@@ -0,0 +1,35 @@
+# Maintainer: Brad Fanella 
+# Contributor: Martin Wimpress 
+
+pkgname=mate-notification-daemon
+pkgver=1.20.2
+pkgrel=1
+provides=('notification-daemon')
+pkgdesc="Notification daemon for MATE"
+url="https://mate-desktop.org;
+arch=('x86_64')
+license=('GPL')
+groups=('mate')
+depends=('dbus-glib' 'libcanberra' 'libwnck3' 'libnotify')
+makedepends=('intltool' 'python')
+conflicts=('mate-notification-daemon-gtk3')
+replaces=('mate-notification-daemon-gtk3')
+source=("https://pub.mate-desktop.org/releases/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
+sha256sums=('d6cbda8a8b25902e3e3f792108860348d0f22531ece1b86d768e6ee98f71c028')
+
+build() {
+   cd "${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --libexecdir=/usr/lib/${pkgname}
+
+   #https://bugzilla.gnome.org/show_bug.cgi?id=656231
+   sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+   make
+}
+
+package() {
+   cd "${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+}


[arch-commits] Commit in mate-notification-daemon/trunk (PKGBUILD)

2018-12-21 Thread Brad Fanella via arch-commits
Date: Friday, December 21, 2018 @ 17:57:39
  Author: cesura
Revision: 417440

upgpkg: mate-notification-daemon 1.20.2-1

Updated to version 1.20.2

Modified:
  mate-notification-daemon/trunk/PKGBUILD

--+
 PKGBUILD |   22 +++---
 1 file changed, 11 insertions(+), 11 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-21 17:57:17 UTC (rev 417439)
+++ PKGBUILD2018-12-21 17:57:39 UTC (rev 417440)
@@ -2,7 +2,7 @@
 # Contributor: Martin Wimpress 
 
 pkgname=mate-notification-daemon
-pkgver=1.20.1
+pkgver=1.20.2
 pkgrel=1
 provides=('notification-daemon')
 pkgdesc="Notification daemon for MATE"
@@ -15,21 +15,21 @@
 conflicts=('mate-notification-daemon-gtk3')
 replaces=('mate-notification-daemon-gtk3')
 
source=("https://pub.mate-desktop.org/releases/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-sha256sums=('e85cd01f40d238c57b3da30537fbd561102e652f492b20ebfea79938d8e39a43')
+sha256sums=('d6cbda8a8b25902e3e3f792108860348d0f22531ece1b86d768e6ee98f71c028')
 
 build() {
-cd ${pkgname}-${pkgver}
-./configure \
---prefix=/usr \
---libexecdir=/usr/lib/${pkgname}
+   cd "${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --libexecdir=/usr/lib/${pkgname}
 
-#https://bugzilla.gnome.org/show_bug.cgi?id=656231
-sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+   #https://bugzilla.gnome.org/show_bug.cgi?id=656231
+   sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
 
-make
+   make
 }
 
 package() {
-cd ${pkgname}-${pkgver}
-make DESTDIR="${pkgdir}" install
+   cd "${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
 }


[arch-commits] Commit in mate-menus/repos/community-x86_64 (PKGBUILD PKGBUILD)

2018-12-21 Thread Brad Fanella via arch-commits
Date: Friday, December 21, 2018 @ 17:57:17
  Author: cesura
Revision: 417439

archrelease: copy trunk to community-x86_64

Added:
  mate-menus/repos/community-x86_64/PKGBUILD
(from rev 417438, mate-menus/trunk/PKGBUILD)
Deleted:
  mate-menus/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   70 ++---
 1 file changed, 35 insertions(+), 35 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-21 17:56:33 UTC (rev 417438)
+++ PKGBUILD2018-12-21 17:57:17 UTC (rev 417439)
@@ -1,35 +0,0 @@
-# Maintainer: Brad Fanella 
-# Contributor: Martin Wimpress 
-
-pkgname=mate-menus
-pkgver=1.20.1
-pkgrel=1
-pkgdesc="MATE menu specifications"
-url="https://mate-desktop.org;
-arch=('x86_64')
-license=('GPL' 'LGPL')
-depends=('glib2')
-makedepends=('gobject-introspection' 'intltool' 'python2')
-optdepends=('python2: python2 bindings')
-groups=('mate')
-source=("https://pub.mate-desktop.org/releases/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-sha256sums=('c6eb74022f9cb283cd7603e9e5aac25258bfe970da661ca9c050f8a50c9f17dd')
-
-build() {
-cd ${pkgname}-${pkgver}
-PYTHON=/usr/bin/python2 ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---localstatedir=/var \
---enable-python
-
-#https://bugzilla.gnome.org/show_bug.cgi?id=656231
-sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-make
-}
-
-package() {
-cd ${pkgname}-${pkgver}
-make DESTDIR="${pkgdir}" install
-}

Copied: mate-menus/repos/community-x86_64/PKGBUILD (from rev 417438, 
mate-menus/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-21 17:57:17 UTC (rev 417439)
@@ -0,0 +1,35 @@
+# Maintainer: Brad Fanella 
+# Contributor: Martin Wimpress 
+
+pkgname=mate-menus
+pkgver=1.20.2
+pkgrel=1
+pkgdesc="MATE menu specifications"
+url="https://mate-desktop.org;
+arch=('x86_64')
+license=('GPL' 'LGPL')
+depends=('glib2')
+makedepends=('gobject-introspection' 'intltool' 'python2')
+optdepends=('python2: python2 bindings')
+groups=('mate')
+source=("https://pub.mate-desktop.org/releases/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
+sha256sums=('e277df3b3072c2177277644a8c7b0191cc5c3779f1b8db99ef183734d4b4c4a3')
+
+build() {
+   cd "${pkgname}-${pkgver}"
+   PYTHON=/usr/bin/python2 ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --localstatedir=/var \
+   --enable-python
+
+   #https://bugzilla.gnome.org/show_bug.cgi?id=656231
+   sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+   make
+}
+
+package() {
+   cd "${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+}


[arch-commits] Commit in mate-menus/trunk (PKGBUILD)

2018-12-21 Thread Brad Fanella via arch-commits
Date: Friday, December 21, 2018 @ 17:56:33
  Author: cesura
Revision: 417438

upgpkg: mate-menus 1.20.2-1

Updated to version 1.20.2

Modified:
  mate-menus/trunk/PKGBUILD

--+
 PKGBUILD |   28 ++--
 1 file changed, 14 insertions(+), 14 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-21 17:55:17 UTC (rev 417437)
+++ PKGBUILD2018-12-21 17:56:33 UTC (rev 417438)
@@ -2,8 +2,8 @@
 # Contributor: Martin Wimpress 
 
 pkgname=mate-menus
-pkgver=1.20.1
-pkgrel=2
+pkgver=1.20.2
+pkgrel=1
 pkgdesc="MATE menu specifications"
 url="https://mate-desktop.org;
 arch=('x86_64')
@@ -13,23 +13,23 @@
 optdepends=('python2: python2 bindings')
 groups=('mate')
 
source=("https://pub.mate-desktop.org/releases/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-sha256sums=('c6eb74022f9cb283cd7603e9e5aac25258bfe970da661ca9c050f8a50c9f17dd')
+sha256sums=('e277df3b3072c2177277644a8c7b0191cc5c3779f1b8db99ef183734d4b4c4a3')
 
 build() {
-cd ${pkgname}-${pkgver}
-PYTHON=/usr/bin/python2 ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---localstatedir=/var \
---enable-python
+   cd "${pkgname}-${pkgver}"
+   PYTHON=/usr/bin/python2 ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --localstatedir=/var \
+   --enable-python
 
-#https://bugzilla.gnome.org/show_bug.cgi?id=656231
-sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+   #https://bugzilla.gnome.org/show_bug.cgi?id=656231
+   sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
 
-make
+   make
 }
 
 package() {
-cd ${pkgname}-${pkgver}
-make DESTDIR="${pkgdir}" install
+   cd "${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
 }


[arch-commits] Commit in mate-media/repos/community-x86_64 (PKGBUILD PKGBUILD)

2018-12-21 Thread Brad Fanella via arch-commits
Date: Friday, December 21, 2018 @ 17:55:17
  Author: cesura
Revision: 417437

archrelease: copy trunk to community-x86_64

Added:
  mate-media/repos/community-x86_64/PKGBUILD
(from rev 417436, mate-media/trunk/PKGBUILD)
Deleted:
  mate-media/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   64 ++---
 1 file changed, 32 insertions(+), 32 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-21 17:54:39 UTC (rev 417436)
+++ PKGBUILD2018-12-21 17:55:17 UTC (rev 417437)
@@ -1,32 +0,0 @@
-# Maintainer: Brad Fanella 
-# Contributor: Martin Wimpress 
-
-pkgname=mate-media
-pkgver=1.20.1
-pkgrel=1
-url="https://mate-desktop.org;
-pkgdesc="MATE Media Tools"
-arch=('x86_64')
-license=('GPL')
-depends=('libcanberra' 'libmatemixer' 'mate-desktop')
-makedepends=('intltool')
-source=("https://pub.mate-desktop.org/releases/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-groups=('mate-extra')
-conflicts=('mate-media-gtk3')
-replaces=('mate-media-gtk3')
-sha256sums=('49273998491d802df97306c10dfd49178fc266ddbce3f0b2ef61390c503d64b5')
-
-build() {
-cd ${pkgname}-${pkgver}
-./configure \
---prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib/${pkgname} \
---localstatedir=/var
-make
-}
-
-package() {
-cd ${pkgname}-${pkgver}
-make DESTDIR="${pkgdir}" install
-}

Copied: mate-media/repos/community-x86_64/PKGBUILD (from rev 417436, 
mate-media/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-21 17:55:17 UTC (rev 417437)
@@ -0,0 +1,32 @@
+# Maintainer: Brad Fanella 
+# Contributor: Martin Wimpress 
+
+pkgname=mate-media
+pkgver=1.20.2
+pkgrel=1
+url="https://mate-desktop.org;
+pkgdesc="MATE Media Tools"
+arch=('x86_64')
+license=('GPL')
+depends=('libcanberra' 'libmatemixer' 'mate-desktop')
+makedepends=('intltool')
+source=("https://pub.mate-desktop.org/releases/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
+groups=('mate-extra')
+conflicts=('mate-media-gtk3')
+replaces=('mate-media-gtk3')
+sha256sums=('dbd60c7c8beabc8e93842c03da7767bad5694c09bca5df88fcf0e6aa0552d319')
+
+build() {
+   cd "${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+--sysconfdir=/etc \
+   --libexecdir=/usr/lib/${pkgname} \
+   --localstatedir=/var
+   make
+}
+
+package() {
+   cd "${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+}


[arch-commits] Commit in mate-media/trunk (PKGBUILD)

2018-12-21 Thread Brad Fanella via arch-commits
Date: Friday, December 21, 2018 @ 17:54:39
  Author: cesura
Revision: 417436

upgpkg: mate-media 1.20.2-1

Updated to version 1.20.2

Modified:
  mate-media/trunk/PKGBUILD

--+
 PKGBUILD |   22 +++---
 1 file changed, 11 insertions(+), 11 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-21 17:52:18 UTC (rev 417435)
+++ PKGBUILD2018-12-21 17:54:39 UTC (rev 417436)
@@ -2,7 +2,7 @@
 # Contributor: Martin Wimpress 
 
 pkgname=mate-media
-pkgver=1.20.1
+pkgver=1.20.2
 pkgrel=1
 url="https://mate-desktop.org;
 pkgdesc="MATE Media Tools"
@@ -14,19 +14,19 @@
 groups=('mate-extra')
 conflicts=('mate-media-gtk3')
 replaces=('mate-media-gtk3')
-sha256sums=('49273998491d802df97306c10dfd49178fc266ddbce3f0b2ef61390c503d64b5')
+sha256sums=('dbd60c7c8beabc8e93842c03da7767bad5694c09bca5df88fcf0e6aa0552d319')
 
 build() {
-cd ${pkgname}-${pkgver}
-./configure \
---prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib/${pkgname} \
---localstatedir=/var
-make
+   cd "${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+--sysconfdir=/etc \
+   --libexecdir=/usr/lib/${pkgname} \
+   --localstatedir=/var
+   make
 }
 
 package() {
-cd ${pkgname}-${pkgver}
-make DESTDIR="${pkgdir}" install
+   cd "${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
 }


[arch-commits] Commit in mate-icon-theme/repos/community-any (PKGBUILD PKGBUILD)

2018-12-21 Thread Brad Fanella via arch-commits
Date: Friday, December 21, 2018 @ 17:52:18
  Author: cesura
Revision: 417435

archrelease: copy trunk to community-any

Added:
  mate-icon-theme/repos/community-any/PKGBUILD
(from rev 417434, mate-icon-theme/trunk/PKGBUILD)
Deleted:
  mate-icon-theme/repos/community-any/PKGBUILD

--+
 PKGBUILD |   54 +++---
 1 file changed, 27 insertions(+), 27 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-21 17:51:34 UTC (rev 417434)
+++ PKGBUILD2018-12-21 17:52:18 UTC (rev 417435)
@@ -1,27 +0,0 @@
-# Maintainer: Brad Fanella 
-# Contributor: Martin Wimpress 
-
-pkgname=mate-icon-theme
-pkgver=1.20.2
-pkgrel=1
-pkgdesc="MATE icon theme"
-url="http://mate-desktop.org;
-arch=('any')
-license=('LGPL')
-options=('!emptydirs')
-makedepends=('icon-naming-utils' 'intltool')
-groups=('mate')
-source=("http://pub.mate-desktop.org/releases/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-sha256sums=('d69acb308c563399ac560e60783c22a7808e81967e036d48c5df44071a006cda')
-
-build() {
-cd ${pkgname}-${pkgver}
-./configure \
---prefix=/usr
-make
-}
-
-package() {
-cd ${pkgname}-${pkgver}
-make DESTDIR="${pkgdir}" install
-}

Copied: mate-icon-theme/repos/community-any/PKGBUILD (from rev 417434, 
mate-icon-theme/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-21 17:52:18 UTC (rev 417435)
@@ -0,0 +1,27 @@
+# Maintainer: Brad Fanella 
+# Contributor: Martin Wimpress 
+
+pkgname=mate-icon-theme
+pkgver=1.20.3
+pkgrel=1
+pkgdesc="MATE icon theme"
+url="http://mate-desktop.org;
+arch=('any')
+license=('LGPL')
+options=('!emptydirs')
+makedepends=('icon-naming-utils' 'intltool')
+groups=('mate')
+source=("http://pub.mate-desktop.org/releases/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
+sha256sums=('64ae1a5a33f90d95cecc344bbefd5ff62cb4c45674f7ac4fbdc928c164458582')
+
+build() {
+   cd "${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr
+   make
+}
+
+package() {
+   cd "${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+}


[arch-commits] Commit in mate-icon-theme/trunk (PKGBUILD)

2018-12-21 Thread Brad Fanella via arch-commits
Date: Friday, December 21, 2018 @ 17:51:34
  Author: cesura
Revision: 417434

upgpkg: mate-icon-theme 1.20.3-1

Updated to version 1.20.3

Modified:
  mate-icon-theme/trunk/PKGBUILD

--+
 PKGBUILD |   16 
 1 file changed, 8 insertions(+), 8 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-21 17:22:50 UTC (rev 417433)
+++ PKGBUILD2018-12-21 17:51:34 UTC (rev 417434)
@@ -2,7 +2,7 @@
 # Contributor: Martin Wimpress 
 
 pkgname=mate-icon-theme
-pkgver=1.20.2
+pkgver=1.20.3
 pkgrel=1
 pkgdesc="MATE icon theme"
 url="http://mate-desktop.org;
@@ -12,16 +12,16 @@
 makedepends=('icon-naming-utils' 'intltool')
 groups=('mate')
 
source=("http://pub.mate-desktop.org/releases/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-sha256sums=('d69acb308c563399ac560e60783c22a7808e81967e036d48c5df44071a006cda')
+sha256sums=('64ae1a5a33f90d95cecc344bbefd5ff62cb4c45674f7ac4fbdc928c164458582')
 
 build() {
-cd ${pkgname}-${pkgver}
-./configure \
---prefix=/usr
-make
+   cd "${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr
+   make
 }
 
 package() {
-cd ${pkgname}-${pkgver}
-make DESTDIR="${pkgdir}" install
+   cd "${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
 }


[arch-commits] Commit in mate-menu/trunk (PKGBUILD)

2018-12-21 Thread Balló György via arch-commits
Date: Friday, December 21, 2018 @ 17:22:50
  Author: bgyorgy
Revision: 417433

Update upstream URL

Modified:
  mate-menu/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-21 17:19:58 UTC (rev 417432)
+++ PKGBUILD2018-12-21 17:22:50 UTC (rev 417433)
@@ -5,7 +5,7 @@
 pkgrel=1
 pkgdesc="Advanced menu for MATE Panel, a fork of MintMenu"
 arch=('any')
-url="https://bitbucket.org/ubuntu-mate/mate-menu;
+url="https://github.com/ubuntu-mate/mate-menu;
 license=('GPL')
 depends=('mate-panel' 'python2-configobj' 'python2-gobject' 
'python2-pyinotify' 'python2-xdg' 'python2-xlib' 'xdg-utils' 
'python2-setproctitle')
 makedepends=('python2-distutils-extra' 'python2-setuptools')


[arch-commits] Commit in mate-applet-streamer/repos/community-x86_64 (2 files)

2018-12-21 Thread Balló György via arch-commits
Date: Friday, December 21, 2018 @ 17:19:58
  Author: bgyorgy
Revision: 417432

archrelease: copy trunk to community-x86_64

Added:
  mate-applet-streamer/repos/community-x86_64/PKGBUILD
(from rev 417431, mate-applet-streamer/trunk/PKGBUILD)
Deleted:
  mate-applet-streamer/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   54 +++---
 1 file changed, 27 insertions(+), 27 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-21 17:19:53 UTC (rev 417431)
+++ PKGBUILD2018-12-21 17:19:58 UTC (rev 417432)
@@ -1,27 +0,0 @@
-# Contributor: Martin Wimpress 
-
-pkgname=mate-applet-streamer
-pkgver=0.3.10
-pkgrel=3
-pkgdesc="A MATE panel applet to let you play your favourite online radio 
station with a single click."
-url="http://www.zavedil.com/online-radio-applet/;
-arch=('x86_64')
-license=('GPL')
-depends=('gst-plugins-base' 'libnotify' 'mate-panel')
-optdepends=('gst-plugins-bad: for playing MP3 streams')
-source=("http://www.zavedil.com/wp-content/uploads/2016/01/${pkgname}-${pkgver}.tar.gz;)
-sha1sums=('d33b21af6ecb9a622ae579fbe909f37500cf0a2e')
-
-build() {
-cd ${pkgname}-${pkgver}
-./configure \
---prefix=/usr \
---libexecdir=/usr/lib/${pkgname}
-make
-}
-
-package() {
-cd ${pkgname}-${pkgver}
-make DESTDIR="${pkgdir}" install
-rm -f "${pkgdir}/usr/share/glib-2.0/schemas/gschemas.compiled"
-}

Copied: mate-applet-streamer/repos/community-x86_64/PKGBUILD (from rev 417431, 
mate-applet-streamer/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-21 17:19:58 UTC (rev 417432)
@@ -0,0 +1,27 @@
+# Contributor: Martin Wimpress 
+
+pkgname=mate-applet-streamer
+pkgver=0.4.0
+pkgrel=1
+pkgdesc="MATE panel applet to let you play your favourite online radio station 
with a single click"
+url="http://www.zavedil.com/online-radio-applet/;
+arch=('x86_64')
+license=('GPL')
+depends=('gst-plugins-base' 'libnotify' 'mate-panel')
+optdepends=('gst-plugins-bad: for playing MP3 streams')
+source=("http://www.zavedil.com/wp-content/uploads/2017/06/${pkgname}-${pkgver}.tar.gz;)
+sha1sums=('59e61ccfdb8585976b6eaac11fe4a923215b3d5f')
+
+build() {
+cd ${pkgname}-${pkgver}
+./configure \
+--prefix=/usr \
+--libexecdir=/usr/lib/${pkgname}
+make
+}
+
+package() {
+cd ${pkgname}-${pkgver}
+make DESTDIR="${pkgdir}" install
+rm -f "${pkgdir}/usr/share/glib-2.0/schemas/gschemas.compiled"
+}


[arch-commits] Commit in mate-applet-streamer/trunk (PKGBUILD)

2018-12-21 Thread Balló György via arch-commits
Date: Friday, December 21, 2018 @ 17:19:53
  Author: bgyorgy
Revision: 417431

upgpkg: mate-applet-streamer 0.4.0-1

Update to new version

Modified:
  mate-applet-streamer/trunk/PKGBUILD

--+
 PKGBUILD |   10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-21 17:13:12 UTC (rev 417430)
+++ PKGBUILD2018-12-21 17:19:53 UTC (rev 417431)
@@ -1,16 +1,16 @@
 # Contributor: Martin Wimpress 
 
 pkgname=mate-applet-streamer
-pkgver=0.3.10
-pkgrel=3
-pkgdesc="A MATE panel applet to let you play your favourite online radio 
station with a single click."
+pkgver=0.4.0
+pkgrel=1
+pkgdesc="MATE panel applet to let you play your favourite online radio station 
with a single click"
 url="http://www.zavedil.com/online-radio-applet/;
 arch=('x86_64')
 license=('GPL')
 depends=('gst-plugins-base' 'libnotify' 'mate-panel')
 optdepends=('gst-plugins-bad: for playing MP3 streams')
-source=("http://www.zavedil.com/wp-content/uploads/2016/01/${pkgname}-${pkgver}.tar.gz;)
-sha1sums=('d33b21af6ecb9a622ae579fbe909f37500cf0a2e')
+source=("http://www.zavedil.com/wp-content/uploads/2017/06/${pkgname}-${pkgver}.tar.gz;)
+sha1sums=('59e61ccfdb8585976b6eaac11fe4a923215b3d5f')
 
 build() {
 cd ${pkgname}-${pkgver}


[arch-commits] Commit in mate-applet-dock/repos/community-any (PKGBUILD PKGBUILD)

2018-12-21 Thread Balló György via arch-commits
Date: Friday, December 21, 2018 @ 17:13:12
  Author: bgyorgy
Revision: 417430

archrelease: copy trunk to community-any

Added:
  mate-applet-dock/repos/community-any/PKGBUILD
(from rev 417429, mate-applet-dock/trunk/PKGBUILD)
Deleted:
  mate-applet-dock/repos/community-any/PKGBUILD

--+
 PKGBUILD |   61 ++---
 1 file changed, 30 insertions(+), 31 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-21 17:13:07 UTC (rev 417429)
+++ PKGBUILD2018-12-21 17:13:12 UTC (rev 417430)
@@ -1,31 +0,0 @@
-# $Id$
-# Contriburor: Balló György 
-
-pkgname=mate-applet-dock
-_pkgname=mate-dock-applet
-pkgver=0.86
-pkgrel=1
-pkgdesc="Application dock for the MATE panel"
-arch=('any')
-url="https://github.com/robint99/dock-applet;
-license=('GPL3')
-depends=('libnotify' 'mate-panel' 'python-cairo' 'python-dbus' 
'python-gobject' 'python-pillow'
- 'python-xdg' 'python-xlib' 'bamf')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/robint99/$_pkgname/archive/V$pkgver.tar.gz;)
-sha256sums=('2546e03800d69ab05491b12bc5631c9c05eb96e1892e72ffb36f613b2b00bc98')
-
-prepare() {
-  cd $_pkgname-$pkgver
-  autoreconf -fi
-}
-
-build() {
-  cd $_pkgname-$pkgver
-  ./configure --prefix=/usr --with-gtk3
-  make
-}
-
-package() {
-  cd $_pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: mate-applet-dock/repos/community-any/PKGBUILD (from rev 417429, 
mate-applet-dock/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-21 17:13:12 UTC (rev 417430)
@@ -0,0 +1,30 @@
+# Contriburor: Balló György 
+
+pkgname=mate-applet-dock
+_pkgname=mate-dock-applet
+pkgver=0.87
+pkgrel=1
+pkgdesc="Application dock for the MATE panel"
+arch=('any')
+url="https://github.com/robint99/dock-applet;
+license=('GPL3')
+depends=('bamf' 'libnotify' 'mate-panel' 'python-cairo' 'python-dbus' 
'python-gobject'
+ 'python-pillow' 'python-xdg' 'python-xlib')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/robint99/$_pkgname/archive/V$pkgver.tar.gz;)
+sha256sums=('69b8b3dc5fb9d9e4c2e2e18a7a7d5ef9daed796f3c6003ddb389e4209b29d404')
+
+prepare() {
+  cd $_pkgname-$pkgver
+  autoreconf -fi
+}
+
+build() {
+  cd $_pkgname-$pkgver
+  ./configure --prefix=/usr --with-gtk3
+  make
+}
+
+package() {
+  cd $_pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in mate-applet-dock/trunk (PKGBUILD)

2018-12-21 Thread Balló György via arch-commits
Date: Friday, December 21, 2018 @ 17:13:07
  Author: bgyorgy
Revision: 417429

upgpkg: mate-applet-dock 0.87-1

Update to new version

Modified:
  mate-applet-dock/trunk/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-21 16:21:39 UTC (rev 417428)
+++ PKGBUILD2018-12-21 17:13:07 UTC (rev 417429)
@@ -2,16 +2,16 @@
 
 pkgname=mate-applet-dock
 _pkgname=mate-dock-applet
-pkgver=0.86
+pkgver=0.87
 pkgrel=1
 pkgdesc="Application dock for the MATE panel"
 arch=('any')
 url="https://github.com/robint99/dock-applet;
 license=('GPL3')
-depends=('libnotify' 'mate-panel' 'python-cairo' 'python-dbus' 
'python-gobject' 'python-pillow'
- 'python-xdg' 'python-xlib' 'bamf')
+depends=('bamf' 'libnotify' 'mate-panel' 'python-cairo' 'python-dbus' 
'python-gobject'
+ 'python-pillow' 'python-xdg' 'python-xlib')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/robint99/$_pkgname/archive/V$pkgver.tar.gz;)
-sha256sums=('2546e03800d69ab05491b12bc5631c9c05eb96e1892e72ffb36f613b2b00bc98')
+sha256sums=('69b8b3dc5fb9d9e4c2e2e18a7a7d5ef9daed796f3c6003ddb389e4209b29d404')
 
 prepare() {
   cd $_pkgname-$pkgver


[arch-commits] Commit in syslinux/repos/testing-x86_64 (11 files)

2018-12-21 Thread Anatol Pomozov via arch-commits
Date: Friday, December 21, 2018 @ 17:05:23
  Author: anatolik
Revision: 342649

archrelease: copy trunk to testing-x86_64

Added:
  syslinux/repos/testing-x86_64/PKGBUILD
(from rev 342648, syslinux/trunk/PKGBUILD)
  syslinux/repos/testing-x86_64/single-load-segment.patch
(from rev 342648, syslinux/trunk/single-load-segment.patch)
  syslinux/repos/testing-x86_64/strip_note_section.patch
(from rev 342648, syslinux/trunk/strip_note_section.patch)
  syslinux/repos/testing-x86_64/syslinux-install_update
(from rev 342648, syslinux/trunk/syslinux-install_update)
  syslinux/repos/testing-x86_64/syslinux.cfg
(from rev 342648, syslinux/trunk/syslinux.cfg)
  syslinux/repos/testing-x86_64/syslinux.install
(from rev 342648, syslinux/trunk/syslinux.install)
Deleted:
  syslinux/repos/testing-x86_64/PKGBUILD
  syslinux/repos/testing-x86_64/strip_note_section.patch
  syslinux/repos/testing-x86_64/syslinux-install_update
  syslinux/repos/testing-x86_64/syslinux.cfg
  syslinux/repos/testing-x86_64/syslinux.install

---+
 PKGBUILD  |  181 
 single-load-segment.patch |  304 ++
 strip_note_section.patch  |   58 +-
 syslinux-install_update   |  930 ++--
 syslinux.cfg  |  156 +++
 syslinux.install  |   64 +--
 6 files changed, 1001 insertions(+), 692 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-21 17:04:38 UTC (rev 342648)
+++ PKGBUILD2018-12-21 17:05:23 UTC (rev 342649)
@@ -1,88 +0,0 @@
-# Maintainer: Tobias Powalowski 
-# Maintainer: Thomas Bächler 
-# Maintainer: Anatol Pomozov 
-# Contributor: Keshav Amburay <(the ddoott ridikulus ddoott rat) (aatt) 
(gemmaeiil) (ddoott) (ccoomm)>
-
-pkgname=syslinux
-pkgver=6.04.alpha
-#_tag=syslinux-$pkgver
-_commit=5e426532210bb830d2d7426eb8d8c154d9dfcba6
-pkgrel=1
-pkgdesc='Collection of boot loaders that boot from FAT, ext2/3/4 and btrfs 
filesystems, from CDs and via PXE'
-url='http://www.syslinux.org/'
-arch=(x86_64)
-backup=(boot/syslinux/syslinux.cfg)
-install=syslinux.install
-license=(GPL2)
-# syslinux build system is a mess of submakes that does not work with -jN
-# efi32/com32 do not like Arch cflags/ldflags, though it would be nice to have 
the flags for userspace tools
-options=(!makeflags !buildflags)
-makedepends=(git python2 nasm upx asciidoc)
-makedepends_x86_64=(lib32-glibc) # efi32 needs it
-optdepends=('perl-crypt-passwdmd5: For md5pass'
-'perl-digest-sha1: For sha1pass'
-'mtools:   For mkdiskimage and syslinux support'
-'gptfdisk: For GPT support'
-'util-linux:   For isohybrid'
-'efibootmgr:   For EFI support'
-'dosfstools:   For EFI support')
-
-# The syslinux-install_update script is maintained at 
https://gist.github.com/pyther/772138
-# Script not yet updated for syslinux-efi
-source=(git://repo.or.cz/syslinux.git#commit=$_commit
-syslinux.cfg
-syslinux-install_update
-   strip_note_section.patch
-)
-sha1sums=('SKIP'
-  '1145f454bd297d373ad123425f93620c3e92f585'
-  'df5160a138ca8c6502d67fe1a64fec78b50e82c2'
-  '11d928087764ca286af0327d40230f219348568c')
-
-_targets='bios efi32'
-case "$CARCH" in
-  x86_64) _targets+=' efi64' ;;
-esac
-
-prepare() {
-  cd syslinux
-
-  # https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=906414
-  patch -p1 < ../strip_note_section.patch
-
-  # do not swallow efi compilation output to make debugging easier
-  sed 's|> /dev/null 2>&1||' -i efi/check-gnu-efi.sh
-
-  # disable debug and development flags to reduce bootloader size
-  truncate --size 0 mk/devel.mk
-}
-
-build() {
-  cd syslinux
-  export LDFLAGS+=--no-dynamic-linker  # workaround for binutils 2.28 
http://www.syslinux.org/wiki/index.php?title=Building
-  export EXTRA_CFLAGS=-fno-PIE   # to fix gpxe build
-  make PYTHON=python2 $_targets
-}
-
-check() {
-  cd syslinux
-  # tests fail to compile
-  # make unittest
-  true
-}
-
-package() {
-  cd syslinux
-  make $_targets install INSTALLROOT="$pkgdir" SBINDIR=/usr/bin 
MANDIR=/usr/share/man AUXDIR=/usr/lib/syslinux
-
-  rm -r "$pkgdir"/usr/lib/syslinux/{com32,dosutil,syslinux.com}
-  install -D -m644 COPYING "$pkgdir"/usr/share/licenses/syslinux/COPYING
-  install -d "$pkgdir"/usr/share/doc
-  cp -ar doc "$pkgdir"/usr/share/doc/syslinux
-
-  install -d "$pkgdir"/usr/lib/syslinux/bios
-  mv "$pkgdir"/usr/lib/syslinux/{*.bin,*.c32,*.0,memdisk} 
"$pkgdir"/usr/lib/syslinux/bios 
-
-  install -D -m0644 ../syslinux.cfg "$pkgdir"/boot/syslinux/syslinux.cfg
-  install -D -m0755 ../syslinux-install_update 
"$pkgdir"/usr/bin/syslinux-install_update
-}

Copied: syslinux/repos/testing-x86_64/PKGBUILD (from rev 342648, 
syslinux/trunk/PKGBUILD)
===
--- PKGBUILD

[arch-commits] Commit in syslinux/trunk (PKGBUILD single-load-segment.patch)

2018-12-21 Thread Anatol Pomozov via arch-commits
Date: Friday, December 21, 2018 @ 17:04:38
  Author: anatolik
Revision: 342648

FS#61059 fix UEFI loader functionality

Added:
  syslinux/trunk/single-load-segment.patch
Modified:
  syslinux/trunk/PKGBUILD

---+
 PKGBUILD  |9 +
 single-load-segment.patch |  304 
 2 files changed, 311 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-21 16:59:44 UTC (rev 342647)
+++ PKGBUILD2018-12-21 17:04:38 UTC (rev 342648)
@@ -7,7 +7,7 @@
 pkgver=6.04.alpha
 #_tag=syslinux-$pkgver
 _commit=5e426532210bb830d2d7426eb8d8c154d9dfcba6
-pkgrel=1
+pkgrel=2
 pkgdesc='Collection of boot loaders that boot from FAT, ext2/3/4 and btrfs 
filesystems, from CDs and via PXE'
 url='http://www.syslinux.org/'
 arch=(x86_64)
@@ -33,11 +33,13 @@
 syslinux.cfg
 syslinux-install_update
strip_note_section.patch
+single-load-segment.patch
 )
 sha1sums=('SKIP'
   '1145f454bd297d373ad123425f93620c3e92f585'
   'df5160a138ca8c6502d67fe1a64fec78b50e82c2'
-  '11d928087764ca286af0327d40230f219348568c')
+  '11d928087764ca286af0327d40230f219348568c'
+  '830c88005fb6c9e759f67b91ab33a10b002385de')
 
 _targets='bios efi32'
 case "$CARCH" in
@@ -50,6 +52,9 @@
   # https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=906414
   patch -p1 < ../strip_note_section.patch
 
+  # https://bugs.archlinux.org/task/61059
+  patch -p1 < ../single-load-segment.patch
+
   # do not swallow efi compilation output to make debugging easier
   sed 's|> /dev/null 2>&1||' -i efi/check-gnu-efi.sh
 

Added: single-load-segment.patch
===
--- single-load-segment.patch   (rev 0)
+++ single-load-segment.patch   2018-12-21 17:04:38 UTC (rev 342648)
@@ -0,0 +1,304 @@
+Author: Lukas Schwaighofer 
+Description: Force the linker to put all sections into a single PT_LOAD
+ segment. This is required when using binutils >= 2.31 which writes two PT_LOAD
+ segments by default. This is not supported by the wrapper.c script used to
+ convert the shared object into an elf binary.
+Forwarded: https://www.syslinux.org/archives/2018-August/026167.html
+
+---
+ efi/i386/syslinux.ld   | 37 +
+ efi/x86_64/syslinux.ld | 37 +
+ 2 files changed, 42 insertions(+), 32 deletions(-)
+
+diff --git a/efi/i386/syslinux.ld b/efi/i386/syslinux.ld
+index bab3fc7..5b4589d 100644
+--- a/efi/i386/syslinux.ld
 b/efi/i386/syslinux.ld
+@@ -19,6 +19,11 @@ OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386")
+ OUTPUT_ARCH(i386)
+ ENTRY(_start)
+ 
++PHDRS
++{
++  all PT_LOAD ;
++}
++
+ SECTIONS
+ {
+   . = 0;
+@@ -31,7 +36,7 @@ SECTIONS
+   *(.text)
+   *(.text.*)
+   __text_end = .;
+-  }
++  } :all
+ 
+   . = ALIGN(16);
+ 
+@@ -40,7 +45,7 @@ SECTIONS
+   *(.rodata)
+   *(.rodata.*)
+   __rodata_end = .;
+-  }
++  } :all
+ 
+   . = ALIGN(4);
+ 
+@@ -49,14 +54,14 @@ SECTIONS
+   KEEP (*(SORT(.ctors.*)))
+   KEEP (*(.ctors))
+   __ctors_end = .;
+-  }
++  } :all
+ 
+   .dtors : {
+   __dtors_start = .;
+   KEEP (*(SORT(.dtors.*)))
+   KEEP (*(.dtors))
+   __dtors_end = .;
+-  }
++  } :all
+ 
+   . = ALIGN(4096);
+   .rel : {
+@@ -64,7 +69,7 @@ SECTIONS
+   *(.rel.data)
+   *(.rel.data.*)
+   *(.rel.ctors)
+-  }
++  } :all
+ 
+   . = ALIGN(4);
+ 
+@@ -72,14 +77,14 @@ SECTIONS
+   __gnu_hash_start = .;
+   *(.gnu.hash)
+   __gnu_hash_end = .;
+-  }
++  } :all
+ 
+ 
+   .dynsym : {
+   __dynsym_start = .;
+   *(.dynsym)
+   __dynsym_end = .;
+-  }
++  } :all
+ 
+   . = ALIGN(4);
+ 
+@@ -87,7 +92,7 @@ SECTIONS
+   __dynstr_start = .;
+   *(.dynstr)
+   __dynstr_end = .;
+-  }
++  } :all
+ 
+   . = ALIGN(4);
+ 
+@@ -104,7 +109,7 @@ SECTIONS
+   KEEP (*(.got.plt))
+   KEEP (*(.got))
+   __got_end = .;
+-  }
++  } :all
+ 
+   . = ALIGN(4);
+ 
+@@ -112,7 +117,7 @@ SECTIONS
+   __dynamic_start = .;
+   *(.dynamic)
+   __dynamic_end = .;
+-  }
++  } :all
+ 
+   . = ALIGN(16);
+ 
+@@ -122,19 +127,19 @@ SECTIONS
+   *(.data.*)
+   *(.lowmem)
+   __data_end = .;
+-  }
++  } :all
+ 
+   .reloc : {
+   *(.reloc)
+-  }
++  } :all
+ 
+   .symtab : {
+   *(.symtab)
+-  }
++  } :all
+ 
+   .strtab : {
+   *(.strtab)
+-  }

[arch-commits] Commit in graphite/trunk (PKGBUILD)

2018-12-21 Thread Andreas Radke via arch-commits
Date: Friday, December 21, 2018 @ 16:59:33
  Author: andyrtr
Revision: 342646

upgpkg: graphite 1:1.3.13-1

upstream update 1.3.13

Modified:
  graphite/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-21 15:52:15 UTC (rev 342645)
+++ PKGBUILD2018-12-21 16:59:33 UTC (rev 342646)
@@ -1,7 +1,7 @@
 # Maintainer: AndyRTR 
 
 pkgname=graphite
-pkgver=1.3.12
+pkgver=1.3.13
 pkgrel=1
 epoch=1
 arch=('x86_64')
@@ -15,7 +15,7 @@
 checkdepends=('python2-fonttools')
 options=('!emptydirs')
 
source=(https://github.com/silnrsi/graphite/releases/download/${pkgver}/graphite2-${pkgver}.tgz)
-sha1sums=('9efb65423924f0c204f7b208af8567ce1284cd8d')
+sha1sums=('bd3494575a1ff1c5b4ea796444274dab1e5992c9')
 
 
 prepare() {
@@ -22,7 +22,7 @@
   cd "${srcdir}"
 
   # python2 fixes
-  sed -i "s:\/usr\/bin\/python:\/usr\/bin\/python2:" 
graphite2-${pkgver}/tests/{corrupt.py,defuzz,fnttxtrender,fuzzbidi,fuzztest,hbspeeds,jsoncmp}
+  sed -i "s:\/usr\/bin\/python:\/usr\/bin\/python2:" 
graphite2-${pkgver}/tests/{corrupt.py,defuzz,fnttxtrender,hbspeeds,jsoncmp}
 }
 
 build() {


[arch-commits] Commit in graphite/repos (testing-x86_64 testing-x86_64/PKGBUILD)

2018-12-21 Thread Andreas Radke via arch-commits
Date: Friday, December 21, 2018 @ 16:59:44
  Author: andyrtr
Revision: 342647

archrelease: copy trunk to testing-x86_64

Added:
  graphite/repos/testing-x86_64/
  graphite/repos/testing-x86_64/PKGBUILD
(from rev 342646, graphite/trunk/PKGBUILD)

--+
 PKGBUILD |   62 +
 1 file changed, 62 insertions(+)

Copied: graphite/repos/testing-x86_64/PKGBUILD (from rev 342646, 
graphite/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2018-12-21 16:59:44 UTC (rev 342647)
@@ -0,0 +1,62 @@
+# Maintainer: AndyRTR 
+
+pkgname=graphite
+pkgver=1.3.13
+pkgrel=1
+epoch=1
+arch=('x86_64')
+url="https://github.com/silnrsi/graphite;
+pkgdesc='reimplementation of the SIL Graphite text processing engine'
+license=('LGPL' 'GPL' 'custom')
+depends=('gcc-libs')
+makedepends=('cmake' 'freetype2' 'python2'
+ # for documentation
+ 'doxygen' 'dblatex' 'graphviz' 'asciidoc')
+checkdepends=('python2-fonttools')
+options=('!emptydirs')
+source=(https://github.com/silnrsi/graphite/releases/download/${pkgver}/graphite2-${pkgver}.tgz)
+sha1sums=('bd3494575a1ff1c5b4ea796444274dab1e5992c9')
+
+
+prepare() {
+  cd "${srcdir}"
+
+  # python2 fixes
+  sed -i "s:\/usr\/bin\/python:\/usr\/bin\/python2:" 
graphite2-${pkgver}/tests/{corrupt.py,defuzz,fnttxtrender,hbspeeds,jsoncmp}
+}
+
+build() {
+  mkdir build
+  cd build
+  cmake -G "Unix Makefiles" ../graphite2-${pkgver} \
+   -DCMAKE_C_FLAGS:STRING="${CFLAGS}" \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_BUILD_TYPE:STRING=Release \
+   -DGRAPHITE2_COMPARE_RENDERER=OFF \
+
+  # fix unwanted -O3 cflag (taken form Debian)
+  find . -type f ! -name "rules" ! -name "changelog" -exec sed -i -e 
's/\-O3//g' {} \;
+
+  make 
+  make -j1 docs
+}
+
+check() {
+  cd "${srcdir}"/build
+  # python2 fixes
+  sed -i "s:python:python2:g" tests/CTestTestfile.cmake
+  ctest || true
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="$pkgdir/" install
+  # install doc files
+  mkdir -p "${pkgdir}"/usr/share/doc/graphite2/api
+  cp -vrf doc/doxygen/{html,latex/refman.pdf} 
"${pkgdir}"/usr/share/doc/graphite2/api
+  cp -vrf doc/{GTF,manual}.html "${pkgdir}"/usr/share/doc/graphite2
+
+  # licenses
+  mkdir -p "${pkgdir}"/usr/share/licenses/${pkgname}
+  install -m644 "${srcdir}"/graphite2-${pkgver}/COPYING 
"${pkgdir}"/usr/share/licenses/${pkgname}/
+}


[arch-commits] Commit in logstash/repos/community-x86_64 (14 files)

2018-12-21 Thread Massimiliano Torromeo via arch-commits
Date: Friday, December 21, 2018 @ 16:21:39
  Author: mtorromeo
Revision: 417428

archrelease: copy trunk to community-x86_64

Added:
  logstash/repos/community-x86_64/PKGBUILD
(from rev 417427, logstash/trunk/PKGBUILD)
  logstash/repos/community-x86_64/build.patch
(from rev 417427, logstash/trunk/build.patch)
  logstash/repos/community-x86_64/bundle.config
(from rev 417427, logstash/trunk/bundle.config)
  logstash/repos/community-x86_64/logstash-sysuser.conf
(from rev 417427, logstash/trunk/logstash-sysuser.conf)
  logstash/repos/community-x86_64/logstash-tmpfile.conf
(from rev 417427, logstash/trunk/logstash-tmpfile.conf)
  logstash/repos/community-x86_64/logstash.service
(from rev 417427, logstash/trunk/logstash.service)
  logstash/repos/community-x86_64/logstash@.service
(from rev 417427, logstash/trunk/logstash@.service)
Deleted:
  logstash/repos/community-x86_64/PKGBUILD
  logstash/repos/community-x86_64/build.patch
  logstash/repos/community-x86_64/bundle.config
  logstash/repos/community-x86_64/logstash-sysuser.conf
  logstash/repos/community-x86_64/logstash-tmpfile.conf
  logstash/repos/community-x86_64/logstash.service
  logstash/repos/community-x86_64/logstash@.service

---+
 PKGBUILD  |  225 
 build.patch   |  116 
 bundle.config |8 -
 logstash-sysuser.conf |2 
 logstash-tmpfile.conf |   12 +-
 logstash.service  |   46 -
 logstash@.service |   14 +-
 7 files changed, 212 insertions(+), 211 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-21 16:21:14 UTC (rev 417427)
+++ PKGBUILD2018-12-21 16:21:39 UTC (rev 417428)
@@ -1,112 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Massimiliano Torromeo 
-
-pkgname=logstash
-pkgver=6.5.3
-_jrubyver=9.1.13.0
-pkgrel=1
-pkgdesc='Tool for managing events and logs'
-url='https://www.elastic.co/products/logstash/'
-arch=('x86_64')
-license=('Apache')
-depends=('java-runtime-headless>=8' 'ruby' 'ruby-bundler' 'coreutils' 'awk')
-makedepends=('java-environment<11' 'git')
-backup=('etc/conf.d/logstash'
-'etc/logstash/jvm.options'
-'etc/logstash/log4j2.properties'
-'etc/logstash/logstash.yml'
-'etc/logstash/pipelines.yml')
-_jrubydist=jruby-dist-${_jrubyver}-bin.tar.gz
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/elastic/logstash/archive/v${pkgver}.tar.gz
-
https://repo1.maven.org/maven2/org/jruby/jruby-dist/${_jrubyver}/${_jrubydist}
-build.patch
-logstash.service
-logstash@.service
-logstash-sysuser.conf
-logstash-tmpfile.conf
-bundle.config)
-noextract=(${_jrubydist})
-sha256sums=('97d88e6c234e277f2e602577fa28d59abf6b714fa0d22bfff940d9f45381280c'
-'9d156646623ac2f27174721035b52572a4b05690db7c1293295aa2c04aad3908'
-'640f1c81e6c68f9d1256875db89f5439992e2b8188fb7e6e3ddcdae1c33a3af8'
-'2b8b29297202334c784fdd7f2eb8d7e776c24c783b3c9f8387b500ab0039335c'
-'a01ea29d4f53d785f6eb926ebfe445e64ed5b3dab5d0418848589dd79502d876'
-'18a68a59ddb0ce19778e83b65e68dd568d65b7180bf45b4cf298fb332d69eb26'
-'346b630484f8a35b1a549e94e53e3e151527852a29c72cc6e529221215a7f533'
-'fe05315345e4489458c3eecac43726800109c1e390e74a14584096f6c041fee1')
-sha512sums=('7ebba7907ea72063ea6f8d2fb7fcb1bb72dbca4cb37733dfc8d3e13a80c58c75d1d8d9bf95006f226cdb53a50453369598a707b864f31548a37e42a2f6e65b56'
-
'ef88f613ada2665d4f63b2e2f15594739de8ba501406e76de417821f44847b0e258524687b0ae0cf5b737520aa4dd9bb59d80a4b89a81408cda638f28bebbead'
-
'21adfc88d980cabb3a45ac029b5dddf8c4b4bc96ac95999ae85fa655101ff58b139bceb613c0e91c108f3f78dcb21ba6f997ee2884c58c3a55eaa7938b6959c4'
-
'817097565519dc7c5eac7521339947c74c6148683ca594356dd2ceb3274a1e94f8e7318ce310e0fe5789d7ab0d4c23404f814bef31036a11ddfec08d16814c69'
-
'ce2cef4a784845b00d7c867273555811450bc459669abb5be944bfbbb02708129983e45376a9b308d6db22b2c7b4a7a212827a4826f2a27bc7e143cebc9abfe0'
-
'd811dc3b18d0032b79b4669c9f6aefca49963897c309d83cbf87616c7b8cb5944c17c8072980bcd115d0fb57ef1624d98259ff1082d402d308c33e766ee89699'
-
'05ea8af97c4f6ac9ba5518b99dc3136859edd24d8376940b48b8c7a70586c8bc188deb1079a99e19d437c39e0eb17d68e7cc3f9af4aa3ad2bc6a87c08cae94a6'
-
'5091aa34cc31acd50fd2865714080cf6e67c2d437424f27e001bb409c2885a0e82eabe4ce17461d60c181f460a16df0a03d53bac6015fb731b3e5225735fd4da')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  rm bin/*.bat
-  sed -e 's|LS_SETTINGS_DIR=.*|LS_SETTINGS_DIR="/etc/logstash"|' -i 
config/startup.options
-  sed -e '1i [ -f /etc/profile.d/jre.sh ] && . /etc/profile.d/jre.sh' -i 
bin/logstash.lib.sh
-
-  # remove deprecated JVM options
-  sed 's|"-XX:+UseParNewGC", ||g' -i logstash-core/benchmarks/build.gradle
-  sed 

[arch-commits] Commit in logstash/trunk (PKGBUILD)

2018-12-21 Thread Massimiliano Torromeo via arch-commits
Date: Friday, December 21, 2018 @ 16:21:14
  Author: mtorromeo
Revision: 417427

upgpkg: logstash 6.5.4-1

Modified:
  logstash/trunk/PKGBUILD

--+
 PKGBUILD |   15 ---
 1 file changed, 8 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-21 16:20:15 UTC (rev 417426)
+++ PKGBUILD2018-12-21 16:21:14 UTC (rev 417427)
@@ -2,7 +2,8 @@
 # Maintainer: Massimiliano Torromeo 
 
 pkgname=logstash
-pkgver=6.5.3
+pkgver=6.5.4
+_pkgver=7129b4f377af08a65c6fab4de49f9b155374970b
 _jrubyver=9.1.13.0
 pkgrel=1
 pkgdesc='Tool for managing events and logs'
@@ -17,7 +18,7 @@
 'etc/logstash/logstash.yml'
 'etc/logstash/pipelines.yml')
 _jrubydist=jruby-dist-${_jrubyver}-bin.tar.gz
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/elastic/logstash/archive/v${pkgver}.tar.gz
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/elastic/logstash/archive/${_pkgver}.tar.gz
 
https://repo1.maven.org/maven2/org/jruby/jruby-dist/${_jrubyver}/${_jrubydist}
 build.patch
 logstash.service
@@ -26,7 +27,7 @@
 logstash-tmpfile.conf
 bundle.config)
 noextract=(${_jrubydist})
-sha256sums=('97d88e6c234e277f2e602577fa28d59abf6b714fa0d22bfff940d9f45381280c'
+sha256sums=('b4b4e45ead7f14e50258ca03483e3ea9e525adf3c064fbb3d07c357697a38188'
 '9d156646623ac2f27174721035b52572a4b05690db7c1293295aa2c04aad3908'
 '640f1c81e6c68f9d1256875db89f5439992e2b8188fb7e6e3ddcdae1c33a3af8'
 '2b8b29297202334c784fdd7f2eb8d7e776c24c783b3c9f8387b500ab0039335c'
@@ -34,7 +35,7 @@
 '18a68a59ddb0ce19778e83b65e68dd568d65b7180bf45b4cf298fb332d69eb26'
 '346b630484f8a35b1a549e94e53e3e151527852a29c72cc6e529221215a7f533'
 'fe05315345e4489458c3eecac43726800109c1e390e74a14584096f6c041fee1')
-sha512sums=('7ebba7907ea72063ea6f8d2fb7fcb1bb72dbca4cb37733dfc8d3e13a80c58c75d1d8d9bf95006f226cdb53a50453369598a707b864f31548a37e42a2f6e65b56'
+sha512sums=('05dade085ed687e194cb1b7090d792e45b92682d7572e09b8ed5fd88e59e6332cad58255882013248588e8deb55e9dc7a899cb513336cfaf111a6350b246f1b1'
 
'ef88f613ada2665d4f63b2e2f15594739de8ba501406e76de417821f44847b0e258524687b0ae0cf5b737520aa4dd9bb59d80a4b89a81408cda638f28bebbead'
 
'21adfc88d980cabb3a45ac029b5dddf8c4b4bc96ac95999ae85fa655101ff58b139bceb613c0e91c108f3f78dcb21ba6f997ee2884c58c3a55eaa7938b6959c4'
 
'817097565519dc7c5eac7521339947c74c6148683ca594356dd2ceb3274a1e94f8e7318ce310e0fe5789d7ab0d4c23404f814bef31036a11ddfec08d16814c69'
@@ -44,7 +45,7 @@
 
'5091aa34cc31acd50fd2865714080cf6e67c2d437424f27e001bb409c2885a0e82eabe4ce17461d60c181f460a16df0a03d53bac6015fb731b3e5225735fd4da')
 
 prepare() {
-  cd ${pkgname}-${pkgver}
+  cd ${pkgname}-${_pkgver}
   rm bin/*.bat
   sed -e 's|LS_SETTINGS_DIR=.*|LS_SETTINGS_DIR="/etc/logstash"|' -i 
config/startup.options
   sed -e '1i [ -f /etc/profile.d/jre.sh ] && . /etc/profile.d/jre.sh' -i 
bin/logstash.lib.sh
@@ -67,7 +68,7 @@
 }
 
 build() {
-  cd ${pkgname}-${pkgver}
+  cd ${pkgname}-${_pkgver}
   export PATH="/usr/lib/jvm/java-10-openjdk/bin:$PWD/vendor/jruby/bin:$PATH"
 
   # gradle downloadAndInstallJRuby (system gradle currently not working)
@@ -85,7 +86,7 @@
 }
 
 package() {
-  cd ${pkgname}-${pkgver}
+  cd ${pkgname}-${_pkgver}
 
   install -dm 755 "${pkgdir}/usr/share/logstash" "${pkgdir}/etc/conf.d"
   mv config/startup.options "${pkgdir}/etc/conf.d/logstash"


[arch-commits] Commit in stack/repos (3 files)

2018-12-21 Thread Felix Yan via arch-commits
Date: Friday, December 21, 2018 @ 16:17:47
  Author: felixonmars
Revision: 417423

archrelease: copy trunk to community-staging-x86_64

Added:
  stack/repos/community-staging-x86_64/
  stack/repos/community-staging-x86_64/PKGBUILD
(from rev 417422, stack/trunk/PKGBUILD)
  stack/repos/community-staging-x86_64/stack.install
(from rev 417422, stack/trunk/stack.install)

---+
 PKGBUILD  |   75 
 stack.install |4 ++
 2 files changed, 79 insertions(+)

Copied: stack/repos/community-staging-x86_64/PKGBUILD (from rev 417422, 
stack/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-12-21 16:17:47 UTC (rev 417423)
@@ -0,0 +1,75 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=stack
+pkgver=1.9.3
+pkgrel=16
+pkgdesc="The Haskell Tool Stack"
+url="https://github.com/commercialhaskell/stack;
+license=("BSD")
+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-githash' 
'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' 'git' 'haskell-quickcheck' 'haskell-hspec' 
'haskell-smallcheck')
+checkdepends=('cabal-install')
+conflicts=('haskell-stack')
+replaces=('haskell-stack')
+install="stack.install"
+source=("git+https://github.com/commercialhaskell/stack.git#tag=v$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cd $pkgname
+  hpack
+  sed -i '/semigroups/d' $pkgname.cabal
+}
+
+build() {
+  cd $pkgname
+
+  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
+  # 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 $pkgname
+
+  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 417422, 
stack/trunk/stack.install)
===
--- community-staging-x86_64/stack.install  (rev 0)
+++ community-staging-x86_64/stack.install  2018-12-21 16:17:47 UTC (rev 
417423)
@@ -0,0 +1,4 @@
+post_install() {
+  

[arch-commits] Commit in stack/trunk (PKGBUILD)

2018-12-21 Thread Felix Yan via arch-commits
Date: Friday, December 21, 2018 @ 16:17:31
  Author: felixonmars
Revision: 417422

upgpkg: stack 1.9.3-16

rebuild with path-io 1.4.1

Modified:
  stack/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-21 16:13:18 UTC (rev 417421)
+++ PKGBUILD2018-12-21 16:17:31 UTC (rev 417422)
@@ -3,7 +3,7 @@
 
 pkgname=stack
 pkgver=1.9.3
-pkgrel=15
+pkgrel=16
 pkgdesc="The Haskell Tool Stack"
 url="https://github.com/commercialhaskell/stack;
 license=("BSD")


  1   2   3   4   >