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

2018-04-02 Thread Jan Steffens via arch-commits
Date: Tuesday, April 3, 2018 @ 01:48:01
  Author: heftig
Revision: 320877

archrelease: copy trunk to staging-x86_64

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

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

Copied: nvidia-340xx/repos/staging-x86_64/PKGBUILD (from rev 320876, 
nvidia-340xx/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2018-04-03 01:48:01 UTC (rev 320877)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgbase=nvidia-340xx
+pkgname=(nvidia-340xx nvidia-340xx-dkms)
+pkgver=340.106
+_extramodules=extramodules-4.16-ARCH
+pkgrel=24
+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.16' 
'linux-headers<4.17')
+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=('ea61d463148435b6c0d16203c06372e5dc93443607ece0709f789c5c08909a3ec51c1994df97b835bba58008cdc7fe588e403006eb00631482a2a9854a81ec0a'
+
'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.16' 'linux<4.17' "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')
+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 320876, 
nvidia-340xx/trunk/kernel-4.11.patch)
===
--- staging-x86_64/kernel-4.11.patch(rev 0)
+++ staging-x86_64/kernel-4.11.patch2018-04-03 01:48:01 UTC (rev 320877)
@@ -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
+ {
+ vmf->page = NULL;
+ 

[arch-commits] Commit in nvidia/repos (staging-x86_64 staging-x86_64/PKGBUILD)

2018-04-02 Thread Jan Steffens via arch-commits
Date: Tuesday, April 3, 2018 @ 01:47:42
  Author: heftig
Revision: 320876

archrelease: copy trunk to staging-x86_64

Added:
  nvidia/repos/staging-x86_64/
  nvidia/repos/staging-x86_64/PKGBUILD
(from rev 320875, nvidia/trunk/PKGBUILD)

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

Copied: nvidia/repos/staging-x86_64/PKGBUILD (from rev 320875, 
nvidia/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2018-04-03 01:47:42 UTC (rev 320876)
@@ -0,0 +1,81 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgbase=nvidia
+pkgname=(nvidia nvidia-dkms)
+pkgver=390.48
+_extramodules=extramodules-4.16-ARCH
+pkgrel=4
+pkgdesc="NVIDIA drivers for linux"
+arch=('x86_64')
+url="http://www.nvidia.com/;
+makedepends=('nvidia-libgl' "nvidia-utils=${pkgver}" 'linux' 
'linux-headers>=4.16' 'linux-headers<4.17')
+license=('custom')
+options=('!strip')
+source=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;)
+sha256sums=('2d4bf72801f101a85df6fd1464021380ad51f5a30df05dadaf1fb546a175a441')
+
+_pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
+
+prepare() {
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}"
+
+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.16' 'linux<4.17' "nvidia-utils=${pkgver}" 'libgl')
+
+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" 'libgl')
+optdepends=('linux-headers: Build the module for Arch kernel'
+'linux-lts-headers: Build the module for LTS Arch kernel')
+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"
+}


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

2018-04-02 Thread Jan Steffens via arch-commits
Date: Tuesday, April 3, 2018 @ 01:45:16
  Author: heftig
Revision: 320875

340.106-24

Modified:
  nvidia-340xx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-04-03 01:44:07 UTC (rev 320874)
+++ PKGBUILD2018-04-03 01:45:16 UTC (rev 320875)
@@ -5,12 +5,12 @@
 pkgbase=nvidia-340xx
 pkgname=(nvidia-340xx nvidia-340xx-dkms)
 pkgver=340.106
-_extramodules=extramodules-4.15-ARCH
-pkgrel=23
+_extramodules=extramodules-4.16-ARCH
+pkgrel=24
 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.15' 
'linux-headers<4.16')
+makedepends=("nvidia-340xx-utils=${pkgver}" 'linux' 'linux-headers>=4.16' 
'linux-headers<4.17')
 conflicts=('nvidia')
 license=('custom')
 options=('!strip')
@@ -42,7 +42,7 @@
 
 package_nvidia-340xx() {
 pkgdesc="NVIDIA drivers for linux, 340xx legacy branch"
-depends=('linux>=4.15' 'linux<4.16' "nvidia-340xx-utils=${pkgver}" 'libgl')
+depends=('linux>=4.16' 'linux<4.17' "nvidia-340xx-utils=${pkgver}" 'libgl')
 
 install -Dt "${pkgdir}/usr/lib/modules/${_extramodules}" -m644 \
   "${srcdir}/${_pkg}/kernel"/{nvidia,uvm/nvidia-uvm}.ko


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

2018-04-02 Thread Jan Steffens via arch-commits
Date: Tuesday, April 3, 2018 @ 01:44:07
  Author: heftig
Revision: 320874

390.48-4

Modified:
  nvidia/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-04-03 01:29:37 UTC (rev 320873)
+++ PKGBUILD2018-04-03 01:44:07 UTC (rev 320874)
@@ -6,12 +6,12 @@
 pkgbase=nvidia
 pkgname=(nvidia nvidia-dkms)
 pkgver=390.48
-_extramodules=extramodules-4.15-ARCH
-pkgrel=3
+_extramodules=extramodules-4.16-ARCH
+pkgrel=4
 pkgdesc="NVIDIA drivers for linux"
 arch=('x86_64')
 url="http://www.nvidia.com/;
-makedepends=('nvidia-libgl' "nvidia-utils=${pkgver}" 'linux' 
'linux-headers>=4.15' 'linux-headers<4.16')
+makedepends=('nvidia-libgl' "nvidia-utils=${pkgver}" 'linux' 
'linux-headers>=4.16' 'linux-headers<4.17')
 license=('custom')
 options=('!strip')
 
source=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;)
@@ -49,7 +49,7 @@
 
 package_nvidia() {
 pkgdesc="NVIDIA drivers for linux"
-depends=('linux>=4.15' 'linux<4.16' "nvidia-utils=${pkgver}" 'libgl')
+depends=('linux>=4.16' 'linux<4.17' "nvidia-utils=${pkgver}" 'libgl')
 
 install -Dt "${pkgdir}/usr/lib/modules/${_extramodules}" -m644 \
   "${srcdir}/${_pkg}/kernel"/nvidia{,-modeset,-drm,-uvm}.ko


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

2018-04-02 Thread Jan Steffens via arch-commits
Date: Tuesday, April 3, 2018 @ 01:41:13
  Author: heftig
Revision: 313938

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 313937, tp_smapi/trunk/PKGBUILD)

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

Copied: tp_smapi/repos/community-staging-x86_64/PKGBUILD (from rev 313937, 
tp_smapi/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-04-03 01:41:13 UTC (rev 313938)
@@ -0,0 +1,50 @@
+# $Id$
+# 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=12
+pkgdesc="Modules for ThinkPad's SMAPI functionality"
+arch=('x86_64')
+url='https://github.com/evgeni/tp_smapi'
+license=('GPL')
+depends=('linux>=4.16' 'linux<4.17')
+makedepends=('linux-headers>=4.16' 'linux-headers<4.17' 'git')
+_extradir=/usr/lib/modules/extramodules-4.16-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 vhba-module/repos (4 files)

2018-04-02 Thread Jan Steffens via arch-commits
Date: Tuesday, April 3, 2018 @ 01:41:34
  Author: heftig
Revision: 313939

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 313938, vhba-module/trunk/60-vhba.rules)
  vhba-module/repos/community-staging-x86_64/PKGBUILD
(from rev 313938, vhba-module/trunk/PKGBUILD)
  vhba-module/repos/community-staging-x86_64/dkms.conf
(from rev 313938, vhba-module/trunk/dkms.conf)

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

Copied: vhba-module/repos/community-staging-x86_64/60-vhba.rules (from rev 
313938, vhba-module/trunk/60-vhba.rules)
===
--- community-staging-x86_64/60-vhba.rules  (rev 0)
+++ community-staging-x86_64/60-vhba.rules  2018-04-03 01:41:34 UTC (rev 
313939)
@@ -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 313938, 
vhba-module/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-04-03 01:41:34 UTC (rev 313939)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Ray Rashif 
+# Contributor: Mateusz Herych 
+# Contributor: Charles Lindsay 
+
+pkgbase=vhba-module
+pkgname=(vhba-module vhba-module-dkms)
+pkgver=20170610
+pkgrel=59
+pkgdesc="Kernel module that emulates SCSI devices"
+url="http://cdemu.sourceforge.net/;
+arch=(x86_64)
+license=(GPL)
+depends=('linux>=4.16' 'linux<4.17')
+makedepends=('linux-headers>=4.16' 'linux-headers<4.17')
+_extramodules=extramodules-4.16-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 313938, 
vhba-module/trunk/dkms.conf)
===
--- community-staging-x86_64/dkms.conf  (rev 0)
+++ community-staging-x86_64/dkms.conf  2018-04-03 01:41:34 UTC (rev 313939)
@@ -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 vhba-module/trunk (PKGBUILD)

2018-04-02 Thread Jan Steffens via arch-commits
Date: Tuesday, April 3, 2018 @ 01:40:40
  Author: heftig
Revision: 313937

20170610-59

Modified:
  vhba-module/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-04-03 01:39:46 UTC (rev 313936)
+++ PKGBUILD2018-04-03 01:40:40 UTC (rev 313937)
@@ -6,14 +6,14 @@
 pkgbase=vhba-module
 pkgname=(vhba-module vhba-module-dkms)
 pkgver=20170610
-pkgrel=58
+pkgrel=59
 pkgdesc="Kernel module that emulates SCSI devices"
 url="http://cdemu.sourceforge.net/;
 arch=(x86_64)
 license=(GPL)
-depends=('linux>=4.15' 'linux<4.16')
-makedepends=('linux-headers>=4.15' 'linux-headers<4.16')
-_extramodules=extramodules-4.15-ARCH
+depends=('linux>=4.16' 'linux<4.17')
+makedepends=('linux-headers>=4.16' 'linux-headers<4.17')
+_extramodules=extramodules-4.16-ARCH
 source=("https://downloads.sourceforge.net/cdemu/$pkgbase-$pkgver.tar.bz2;
 60-vhba.rules dkms.conf)
 sha256sums=('7970c93f989d9c4f2629371bf5ee7a76f95e4c12342c3320ddc528d0df02d9ec'


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

2018-04-02 Thread Jan Steffens via arch-commits
Date: Tuesday, April 3, 2018 @ 01:39:41
  Author: heftig
Revision: 313935

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 313934, acpi_call/trunk/PKGBUILD)
  acpi_call/repos/community-staging-x86_64/dkms.conf
(from rev 313934, acpi_call/trunk/dkms.conf)

---+
 PKGBUILD  |   62 
 dkms.conf |9 
 2 files changed, 71 insertions(+)

Copied: acpi_call/repos/community-staging-x86_64/PKGBUILD (from rev 313934, 
acpi_call/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-04-03 01:39:41 UTC (rev 313935)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: mortzu 
+# Contributor: fnord0 
+
+pkgbase=acpi_call
+pkgname=(acpi_call acpi_call-dkms)
+pkgver=1.1.0
+pkgrel=118
+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.16' 'linux<4.17')
+makedepends=('linux-headers>=4.16' 'linux-headers<4.17')
+_extramodules=extramodules-4.16-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 313934, 
acpi_call/trunk/dkms.conf)
===
--- community-staging-x86_64/dkms.conf  (rev 0)
+++ community-staging-x86_64/dkms.conf  2018-04-03 01:39:41 UTC (rev 313935)
@@ -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 tp_smapi/trunk (PKGBUILD)

2018-04-02 Thread Jan Steffens via arch-commits
Date: Tuesday, April 3, 2018 @ 01:39:46
  Author: heftig
Revision: 313936

0.43-12

Modified:
  tp_smapi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-04-03 01:39:41 UTC (rev 313935)
+++ PKGBUILD2018-04-03 01:39:46 UTC (rev 313936)
@@ -10,14 +10,14 @@
 
 pkgname=tp_smapi
 pkgver=0.43
-_extradir=/usr/lib/modules/extramodules-4.15-ARCH
-pkgrel=11
+pkgrel=12
 pkgdesc="Modules for ThinkPad's SMAPI functionality"
 arch=('x86_64')
 url='https://github.com/evgeni/tp_smapi'
 license=('GPL')
-depends=('linux>=4.15' 'linux<4.16')
-makedepends=('linux-headers>=4.15' 'linux-headers<4.16' 'git')
+depends=('linux>=4.16' 'linux<4.17')
+makedepends=('linux-headers>=4.16' 'linux-headers<4.17' 'git')
+_extradir=/usr/lib/modules/extramodules-4.16-ARCH
 _commit=a63729ab30d85430048f65c37f29188ab484cd52  # tags/tp-smapi/0.43
 source=("git+https://github.com/evgeni/tp_smapi#commit=$_commit;)
 sha256sums=('SKIP')


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

2018-04-02 Thread Jan Steffens via arch-commits
Date: Tuesday, April 3, 2018 @ 01:39:22
  Author: heftig
Revision: 313934

archrelease: copy trunk to community-staging-x86_64

Added:
  r8168/repos/community-staging-x86_64/
  r8168/repos/community-staging-x86_64/PKGBUILD
(from rev 313933, r8168/trunk/PKGBUILD)
  r8168/repos/community-staging-x86_64/linux-4.15.patch
(from rev 313933, r8168/trunk/linux-4.15.patch)

--+
 PKGBUILD |   49 
 linux-4.15.patch |   81 +
 2 files changed, 130 insertions(+)

Copied: r8168/repos/community-staging-x86_64/PKGBUILD (from rev 313933, 
r8168/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-04-03 01:39:22 UTC (rev 313934)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+# Contributor: Bob Fanger < bfanger(at)gmail >
+# Contributor: Filip , Det < nimetonmaili(at)gmail >
+
+pkgname=r8168
+pkgver=8.045.08
+pkgrel=46
+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
+linux-4.15.patch)
+sha256sums=('18161cb72fc872a9aed194514f7b8fb8b255b6fa6ed3d2dd459700eaad575f31'
+'6434f0d1fcb08e3605a17859d3b8946c65bcf14737e223315b6468b3394c5cd7')
+
+prepare() {
+   cd "$pkgname-$pkgver"
+   patch -Np1 -i ../linux-4.15.patch
+}
+
+build() {
+   _kernver=$(pacman -Q linux | sed -r 's#.* ([0-9]+\.[0-9]+).*#\1#')
+   KERNEL_VERSION=$(cat 
/usr/lib/modules/extramodules-$_kernver-ARCH/version)
+   msg2 "Kernel = $KERNEL_VERSION"
+
+   cd "$pkgname-$pkgver"
+   # avoid using the Makefile directly -- it doesn't understand
+   # any kernel but the current.
+   make -C /usr/lib/modules/$KERNEL_VERSION/build \
+   SUBDIRS="$srcdir/$pkgname-$pkgver/src" \
+   EXTRA_CFLAGS="-DCONFIG_R8168_NAPI -DCONFIG_R8168_VLAN" \
+   modules
+}
+
+package() {
+   _kernver=$(pacman -Q linux | sed -r 's#.* ([0-9]+\.[0-9]+).*#\1#')
+   depends=("linux>=$_kernver" "linux<${_kernver/.*}.$(expr ${_kernver/*.} 
+ 1)")
+
+   cd "$pkgname-$pkgver"
+   install -Dt "$pkgdir/usr/lib/modules/extramodules-$_kernver-ARCH" -m644 
src/*.ko
+   find "$pkgdir" -name '*.ko' -exec xz {} +
+
+   echo "blacklist r8169" | \
+   install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/modprobe.d/r8168.conf"
+}

Copied: r8168/repos/community-staging-x86_64/linux-4.15.patch (from rev 313933, 
r8168/trunk/linux-4.15.patch)
===
--- community-staging-x86_64/linux-4.15.patch   (rev 0)
+++ community-staging-x86_64/linux-4.15.patch   2018-04-03 01:39:22 UTC (rev 
313934)
@@ -0,0 +1,81 @@
+diff -u -r r8168-8.045.08/src/r8168_n.c r8168-8.045.08-4.15/src/r8168_n.c
+--- r8168-8.045.08/src/r8168_n.c   2017-09-22 17:31:17.0 +0200
 r8168-8.045.08-4.15/src/r8168_n.c  2018-01-29 12:33:34.283394438 +0100
+@@ -407,8 +407,13 @@
+ static void rtl8168_sleep_rx_enable(struct net_device *dev);
+ static void rtl8168_dsm(struct net_device *dev, int dev_state);
+ 
++#if LINUX_VERSION_CODE < KERNEL_VERSION(4,15,0)
+ static void rtl8168_esd_timer(unsigned long __opaque);
+ static void rtl8168_link_timer(unsigned long __opaque);
++#else
++static void rtl8168_esd_timer(struct timer_list *timer_list);
++static void rtl8168_link_timer(struct timer_list *timer_list);
++#endif
+ static void rtl8168_tx_clear(struct rtl8168_private *tp);
+ static void rtl8168_rx_clear(struct rtl8168_private *tp);
+ 
+@@ -22964,7 +22969,11 @@
+ struct rtl8168_private *tp = netdev_priv(dev);
+ struct timer_list *timer = >esd_timer;
+ 
+-setup_timer(timer, rtl8168_esd_timer, (unsigned long)dev);
++#if LINUX_VERSION_CODE < KERNEL_VERSION(4,15,0)
++setup_timer(timer, rtl8168_esd_timer, (unsigned long)tp);
++#else
++timer_setup(timer, rtl8168_esd_timer, 0);
++#endif
+ mod_timer(timer, jiffies + RTL8168_ESD_TIMEOUT);
+ }
+ 
+@@ -22978,7 +22987,11 @@
+ struct rtl8168_private *tp = netdev_priv(dev);
+ struct timer_list *timer = >link_timer;
+ 
+-setup_timer(timer, rtl8168_link_timer, (unsigned long)dev);
++#if LINUX_VERSION_CODE < KERNEL_VERSION(4,15,0)
++setup_timer(timer, rtl8168_link_timer, (unsigned long)tp);
++#else
++timer_setup(timer, rtl8168_link_timer, 0);
++#endif
+ mod_timer(timer, jiffies + RTL8168_LINK_TIMEOUT);
+ }
+ 
+@@ -24717,10 +24730,16 @@
+ #define PCI_DEVICE_SERIAL_NUMBER (0x0164)
+ 
+ static void
++#if LINUX_VERSION_CODE < KERNEL_VERSION(4,15,0)
+ 

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

2018-04-02 Thread Jan Steffens via arch-commits
Date: Tuesday, April 3, 2018 @ 01:39:03
  Author: heftig
Revision: 313933

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: bbswitch/repos/community-staging-x86_64/PKGBUILD (from rev 313932, 
bbswitch/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-04-03 01:39:03 UTC (rev 313933)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: M0Rf30
+# Contributor: Samsagax 
+
+pkgbase=bbswitch
+pkgname=(bbswitch bbswitch-dkms)
+pkgver=0.8
+pkgrel=124
+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.16' 'linux<4.17')
+makedepends=('linux-headers>=4.16' 'linux-headers<4.17')
+_extramodules=extramodules-4.16-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 r8168/trunk (PKGBUILD)

2018-04-02 Thread Jan Steffens via arch-commits
Date: Tuesday, April 3, 2018 @ 01:38:20
  Author: heftig
Revision: 313932

8.045.08-46

Modified:
  r8168/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-04-03 01:37:14 UTC (rev 313931)
+++ PKGBUILD2018-04-03 01:38:20 UTC (rev 313932)
@@ -5,7 +5,7 @@
 
 pkgname=r8168
 pkgver=8.045.08
-pkgrel=45
+pkgrel=46
 pkgdesc="A kernel module for Realtek 8168 network cards"
 url="http://www.realtek.com.tw;
 license=("GPL")


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

2018-04-02 Thread Jan Steffens via arch-commits
Date: Tuesday, April 3, 2018 @ 01:37:14
  Author: heftig
Revision: 313931

0.8-124

Modified:
  bbswitch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-04-03 01:35:26 UTC (rev 313930)
+++ PKGBUILD2018-04-03 01:37:14 UTC (rev 313931)
@@ -6,14 +6,14 @@
 pkgbase=bbswitch
 pkgname=(bbswitch bbswitch-dkms)
 pkgver=0.8
-pkgrel=123
+pkgrel=124
 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.15' 'linux<4.16')
-makedepends=('linux-headers>=4.15' 'linux-headers<4.16')
-_extramodules=extramodules-4.15-ARCH
+depends=('linux>=4.16' 'linux<4.17')
+makedepends=('linux-headers>=4.16' 'linux-headers<4.17')
+_extramodules=extramodules-4.16-ARCH
 
source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz;)
 md5sums=('5b116b31ace3604ddf9d1fc1f4bc5807')
 


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

2018-04-02 Thread Jan Steffens via arch-commits
Date: Tuesday, April 3, 2018 @ 01:35:26
  Author: heftig
Revision: 313930

1.1.0-118

Modified:
  acpi_call/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-04-02 23:22:57 UTC (rev 313929)
+++ PKGBUILD2018-04-03 01:35:26 UTC (rev 313930)
@@ -6,14 +6,14 @@
 pkgbase=acpi_call
 pkgname=(acpi_call acpi_call-dkms)
 pkgver=1.1.0
-pkgrel=117
+pkgrel=118
 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.15' 'linux<4.16')
-makedepends=('linux-headers>=4.15' 'linux-headers<4.16')
-_extramodules=extramodules-4.15-ARCH
+depends=('linux>=4.16' 'linux<4.17')
+makedepends=('linux-headers>=4.16' 'linux-headers<4.17')
+_extramodules=extramodules-4.16-ARCH
 
source=("acpi_call-${pkgver}.tar.gz::https://github.com/mkottman/acpi_call/archive/v${pkgver}.tar.gz;
 dkms.conf)
 sha256sums=('d0d14b42944282724fca76f57d598eed794ef97448f387d1c489d85ad813f2f0'


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

2018-04-02 Thread Jan Steffens via arch-commits
Date: Tuesday, April 3, 2018 @ 01:29:37
  Author: heftig
Revision: 320873

archrelease: copy trunk to staging-x86_64

Added:
  linux/repos/staging-x86_64/
  
linux/repos/staging-x86_64/0001-add-sysctl-to-disallow-unprivileged-CLONE_NEWUSER-by.patch
(from rev 320872, 
linux/trunk/0001-add-sysctl-to-disallow-unprivileged-CLONE_NEWUSER-by.patch)
  
linux/repos/staging-x86_64/0002-drm-i915-edp-Only-use-the-alternate-fixed-mode-if-it.patch
(from rev 320872, 
linux/trunk/0002-drm-i915-edp-Only-use-the-alternate-fixed-mode-if-it.patch)
  linux/repos/staging-x86_64/60-linux.hook
(from rev 320872, linux/trunk/60-linux.hook)
  linux/repos/staging-x86_64/90-linux.hook
(from rev 320872, linux/trunk/90-linux.hook)
  linux/repos/staging-x86_64/PKGBUILD
(from rev 320872, linux/trunk/PKGBUILD)
  linux/repos/staging-x86_64/config
(from rev 320872, linux/trunk/config)
  linux/repos/staging-x86_64/linux.install
(from rev 320872, linux/trunk/linux.install)
  linux/repos/staging-x86_64/linux.preset
(from rev 320872, linux/trunk/linux.preset)

-+
 0001-add-sysctl-to-disallow-unprivileged-CLONE_NEWUSER-by.patch |  103 
 0002-drm-i915-edp-Only-use-the-alternate-fixed-mode-if-it.patch |   42 
 60-linux.hook   |   12 
 90-linux.hook   |   11 
 PKGBUILD|  236 
 config  | 9600 
++
 linux.install   |   10 
 linux.preset|   14 
 8 files changed, 10028 insertions(+)

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


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

2018-04-02 Thread Jan Steffens via arch-commits
Date: Tuesday, April 3, 2018 @ 01:22:17
  Author: heftig
Revision: 320872

4.16-1

Modified:
  linux/trunk/0001-add-sysctl-to-disallow-unprivileged-CLONE_NEWUSER-by.patch
  linux/trunk/0002-drm-i915-edp-Only-use-the-alternate-fixed-mode-if-it.patch
  linux/trunk/PKGBUILD
  linux/trunk/config

-+
 0001-add-sysctl-to-disallow-unprivileged-CLONE_NEWUSER-by.patch |   18 
 0002-drm-i915-edp-Only-use-the-alternate-fixed-mode-if-it.patch |   14 
 PKGBUILD|   21 
 config  |  318 
++
 4 files changed, 225 insertions(+), 146 deletions(-)

Modified: 0001-add-sysctl-to-disallow-unprivileged-CLONE_NEWUSER-by.patch
===
--- 0001-add-sysctl-to-disallow-unprivileged-CLONE_NEWUSER-by.patch 
2018-04-02 23:59:06 UTC (rev 320871)
+++ 0001-add-sysctl-to-disallow-unprivileged-CLONE_NEWUSER-by.patch 
2018-04-03 01:22:17 UTC (rev 320872)
@@ -1,5 +1,5 @@
-From 188720e92122385994143a06cb16a930053eb503 Mon Sep 17 00:00:00 2001
-Message-Id: 
<188720e92122385994143a06cb16a930053eb503.1520639721.git.jan.steff...@gmail.com>
+From ed80ff656462322e0bc7813d736800321097e10a Mon Sep 17 00:00:00 2001
+Message-Id: 

 From: Serge Hallyn 
 Date: Fri, 31 May 2013 19:12:12 +0100
 Subject: [PATCH 1/2] add sysctl to disallow unprivileged CLONE_NEWUSER by
@@ -15,10 +15,10 @@
  3 files changed, 30 insertions(+)
 
 diff --git a/kernel/fork.c b/kernel/fork.c
-index 2295fc69717f..6f320a216e7d 100644
+index e5d9d405ae4e..c4be89c51f25 100644
 --- a/kernel/fork.c
 +++ b/kernel/fork.c
-@@ -102,6 +102,11 @@
+@@ -103,6 +103,11 @@
  
  #define CREATE_TRACE_POINTS
  #include 
@@ -30,7 +30,7 @@
  
  /*
   * Minimum number of threads to boot the kernel
-@@ -1550,6 +1555,10 @@ static __latent_entropy struct task_struct 
*copy_process(
+@@ -1591,6 +1596,10 @@ static __latent_entropy struct task_struct 
*copy_process(
if ((clone_flags & (CLONE_NEWUSER|CLONE_FS)) == 
(CLONE_NEWUSER|CLONE_FS))
return ERR_PTR(-EINVAL);
  
@@ -41,7 +41,7 @@
/*
 * Thread groups must share signals as well, and detached threads
 * can only be started up within the thread group.
-@@ -2343,6 +2352,12 @@ SYSCALL_DEFINE1(unshare, unsigned long, unshare_flags)
+@@ -2385,6 +2394,12 @@ SYSCALL_DEFINE1(unshare, unsigned long, unshare_flags)
if (unshare_flags & CLONE_NEWNS)
unshare_flags |= CLONE_FS;
  
@@ -55,7 +55,7 @@
if (err)
goto bad_unshare_out;
 diff --git a/kernel/sysctl.c b/kernel/sysctl.c
-index 557d46728577..c19d7a828913 100644
+index f98f28c12020..7256d339a32a 100644
 --- a/kernel/sysctl.c
 +++ b/kernel/sysctl.c
 @@ -105,6 +105,9 @@ extern int core_uses_pid;
@@ -68,7 +68,7 @@
  extern int pid_max;
  extern int pid_max_min, pid_max_max;
  extern int percpu_pagelist_fraction;
-@@ -513,6 +516,15 @@ static struct ctl_table kern_table[] = {
+@@ -515,6 +518,15 @@ static struct ctl_table kern_table[] = {
.proc_handler   = proc_dointvec,
},
  #endif
@@ -99,5 +99,5 @@
  static DEFINE_MUTEX(userns_state_mutex);
  
 -- 
-2.16.2
+2.16.3
 

Modified: 0002-drm-i915-edp-Only-use-the-alternate-fixed-mode-if-it.patch
===
--- 0002-drm-i915-edp-Only-use-the-alternate-fixed-mode-if-it.patch 
2018-04-02 23:59:06 UTC (rev 320871)
+++ 0002-drm-i915-edp-Only-use-the-alternate-fixed-mode-if-it.patch 
2018-04-03 01:22:17 UTC (rev 320872)
@@ -1,7 +1,7 @@
-From 704e31424615c87ad82424a9b09a452d762daed0 Mon Sep 17 00:00:00 2001
-Message-Id: 
<704e31424615c87ad82424a9b09a452d762daed0.1520639721.git.jan.steff...@gmail.com>
-In-Reply-To: 
<188720e92122385994143a06cb16a930053eb503.1520639721.git.jan.steff...@gmail.com>
-References: 
<188720e92122385994143a06cb16a930053eb503.1520639721.git.jan.steff...@gmail.com>
+From 7f7ff058a768b93f6a8592f3540471a93aef9a27 Mon Sep 17 00:00:00 2001
+Message-Id: 
<7f7ff058a768b93f6a8592f3540471a93aef9a27.1522624056.git.jan.steff...@gmail.com>
+In-Reply-To: 

+References: 

 From: Jim Bride 
 Date: Mon, 6 Nov 2017 13:38:57 -0800
 Subject: [PATCH 2/2] drm/i915/edp: Only use the alternate fixed mode if it's
@@ -24,10 +24,10 @@
  1 file changed, 2 insertions(+), 1 deletion(-)
 
 diff --git a/drivers/gpu/drm/i915/intel_dp.c b/drivers/gpu/drm/i915/intel_dp.c
-index add4b2434aa3..14a8bef9fdfe 100644
+index a29868cd30c7..b6d07b615b12 100644
 --- a/drivers/gpu/drm/i915/intel_dp.c
 +++ b/drivers/gpu/drm/i915/intel_dp.c
-@@ -1616,7 +1616,8 @@ static bool 

[arch-commits] Commit in fuse3/repos/testing-x86_64 (4 files)

2018-04-02 Thread Anatol Pomozov via arch-commits
Date: Monday, April 2, 2018 @ 23:59:06
  Author: anatolik
Revision: 320871

archrelease: copy trunk to testing-x86_64

Added:
  fuse3/repos/testing-x86_64/PKGBUILD
(from rev 320870, fuse3/trunk/PKGBUILD)
  fuse3/repos/testing-x86_64/fuse.conf
(from rev 320870, fuse3/trunk/fuse.conf)
Deleted:
  fuse3/repos/testing-x86_64/PKGBUILD
  fuse3/repos/testing-x86_64/fuse.conf

---+
 PKGBUILD  |  146 ++--
 fuse.conf |   18 +++
 2 files changed, 83 insertions(+), 81 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-04-02 23:58:34 UTC (rev 320870)
+++ PKGBUILD2018-04-02 23:59:06 UTC (rev 320871)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren 
-# Contributor: Tom Gundersen 
-# Contributor: Mark Rosenstand 
-
-pkgbase=fuse3
-pkgname=(fuse-common fuse3)
-pkgver=3.2.2
-pkgrel=1
-arch=('x86_64')
-url='https://github.com/libfuse/libfuse'
-license=('GPL2')
-makedepends=('pkg-config' 'meson' 'udev')
-options=(!emptydirs)
-source=(https://github.com/libfuse/libfuse/releases/download/fuse-$pkgver/fuse-$pkgver.tar.xz{,.asc}
-   'fuse.conf')
-sha1sums=('66527efcfe5f8b849f96bdd83851d8105b4bde3d'
-  'SKIP'
-  '3b42e37a741d4651099225987dc40e7f02a716ad')
-validpgpkeys=(ED31791B2C5C1613AF388B8AD113FCAC3C4E599F) # Nikolaus Rath 

-
-build() {
-  cd fuse-$pkgver
-
-  rm -rf build
-  meson --prefix=/usr --sbindir=bin . build
-  cd build
-  ninja
-}
-
-package_fuse-common() {
-  pkgdesc="Common files for fuse2/3 packages"
-  backup=(etc/fuse.conf)
-  depends=(glibc)
-
-  cd fuse-$pkgver/build
-  DESTDIR=${pkgdir} ninja install
-
-  install -Dm644 ${srcdir}/fuse.conf ${pkgdir}/etc/fuse.conf
-
-  # static device nodes are handled by udev
-  rm -r ${pkgdir}/dev
-
-  # Remove init script in wrong path
-  # Don't add our own for now, as fusectl fs oopses on 2.6.18
-  rm -r ${pkgdir}/etc/init.d
-
-  # part of fuse3 package
-  rm -r 
${pkgdir}/usr/{bin/fusermount3,include,lib/{pkgconfig,libfuse3.so*},share/man/man1/fusermount3.1.gz}
-
-  mv ${pkgdir}/usr/bin/mount.fuse3 ${pkgdir}/usr/bin/mount.fuse
-}
-
-package_fuse3() {
-  pkgdesc="A library that makes it possible to implement a filesystem in a 
userspace program."
-  depends=('fuse-common')
-
-  cd fuse-$pkgver/build
-
-  DESTDIR=${pkgdir} ninja install
-
-  # Remove init script in wrong path
-  # Don't add our own for now, as fusectl fs oopses on 2.6.18
-  rm -r ${pkgdir}/etc/init.d
-
-  # static device nodes are handled by udev
-  rm -r ${pkgdir}/dev
-
-  # part of fuse-common package
-  rm -r ${pkgdir}/usr/lib/udev/rules.d
-  rm ${pkgdir}/usr/share/man/man8/mount.fuse.8.gz ${pkgdir}/usr/bin/mount.fuse3
-}

Copied: fuse3/repos/testing-x86_64/PKGBUILD (from rev 320870, 
fuse3/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-04-02 23:59:06 UTC (rev 320871)
@@ -0,0 +1,74 @@
+# $Id$
+# Maintainer: Ronald van Haren 
+# Contributor: Tom Gundersen 
+# Contributor: Mark Rosenstand 
+
+pkgbase=fuse3
+pkgname=(fuse-common fuse3)
+pkgver=3.2.2
+pkgrel=2
+arch=('x86_64')
+url='https://github.com/libfuse/libfuse'
+license=('GPL2')
+makedepends=('pkg-config' 'meson' 'udev')
+options=(!emptydirs)
+source=(https://github.com/libfuse/libfuse/releases/download/fuse-$pkgver/fuse-$pkgver.tar.xz{,.asc}
+   'fuse.conf')
+sha1sums=('66527efcfe5f8b849f96bdd83851d8105b4bde3d'
+  'SKIP'
+  '3b42e37a741d4651099225987dc40e7f02a716ad')
+validpgpkeys=(ED31791B2C5C1613AF388B8AD113FCAC3C4E599F) # Nikolaus Rath 

+
+build() {
+  cd fuse-$pkgver
+
+  rm -rf build
+  meson --prefix=/usr --sbindir=bin . build
+  cd build
+  ninja
+}
+
+package_fuse-common() {
+  pkgdesc="Common files for fuse2/3 packages"
+  backup=(etc/fuse.conf)
+  depends=(glibc)
+
+  cd fuse-$pkgver/build
+  DESTDIR=${pkgdir} ninja install
+
+  install -Dm644 ${srcdir}/fuse.conf ${pkgdir}/etc/fuse.conf
+
+  # static device nodes are handled by udev
+  rm -r ${pkgdir}/dev
+
+  # Remove init script in wrong path
+  # Don't add our own for now, as fusectl fs oopses on 2.6.18
+  rm -r ${pkgdir}/etc/init.d
+
+  # part of fuse3 package
+  rm -r 
${pkgdir}/usr/{bin/fusermount3,include,lib/{pkgconfig,libfuse3.so*},share/man/man1/fusermount3.1.gz}
+
+  mv ${pkgdir}/usr/bin/mount.fuse3 ${pkgdir}/usr/bin/mount.fuse
+}
+
+package_fuse3() {
+  pkgdesc="A library that makes it possible to implement a filesystem in a 
userspace program."
+  depends=('fuse-common')
+
+  cd fuse-$pkgver/build
+
+  DESTDIR=${pkgdir} ninja install
+
+  # Remove init script in wrong path
+  # Don't add our own for now, as fusectl fs oopses on 2.6.18
+  rm -r ${pkgdir}/etc/init.d
+
+  rm ${pkgdir}/etc/fuse.conf
+
+  # static device nodes are handled by udev
+  rm -r ${pkgdir}/dev
+
+  

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

2018-04-02 Thread Anatol Pomozov via arch-commits
Date: Monday, April 2, 2018 @ 23:58:34
  Author: anatolik
Revision: 320870

upgpkg: fuse3 3.2.2-2

FS#58077: fuse3 should not include fuse.conf file

Modified:
  fuse3/trunk/PKGBUILD

--+
 PKGBUILD |4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-04-02 23:34:34 UTC (rev 320869)
+++ PKGBUILD2018-04-02 23:58:34 UTC (rev 320870)
@@ -6,7 +6,7 @@
 pkgbase=fuse3
 pkgname=(fuse-common fuse3)
 pkgver=3.2.2
-pkgrel=1
+pkgrel=2
 arch=('x86_64')
 url='https://github.com/libfuse/libfuse'
 license=('GPL2')
@@ -63,6 +63,8 @@
   # Don't add our own for now, as fusectl fs oopses on 2.6.18
   rm -r ${pkgdir}/etc/init.d
 
+  rm ${pkgdir}/etc/fuse.conf
+
   # static device nodes are handled by udev
   rm -r ${pkgdir}/dev
 


[arch-commits] Commit in glade/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2018-04-02 Thread Jan Steffens via arch-commits
Date: Monday, April 2, 2018 @ 23:34:34
  Author: heftig
Revision: 320869

archrelease: copy trunk to extra-x86_64

Added:
  glade/repos/extra-x86_64/PKGBUILD
(from rev 320868, glade/trunk/PKGBUILD)
Deleted:
  glade/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   82 ++---
 1 file changed, 41 insertions(+), 41 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-04-02 23:33:52 UTC (rev 320868)
+++ PKGBUILD2018-04-02 23:34:34 UTC (rev 320869)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Douglas Soares de Andrade 
-
-pkgname=glade
-pkgver=3.22.0+9+g5ec4d708
-pkgrel=1
-pkgdesc="User Interface Builder for GTK+ applications"
-url="https://glade.gnome.org/;
-arch=(x86_64)
-license=(GPL LGPL)
-depends=(gtk3 libxml2)
-makedepends=(intltool gtk-doc gobject-introspection python-gobject itstool 
docbook-xsl git
- gnome-common webkit2gtk)
-optdepends=('devhelp: development help')
-_commit=5ec4d70853874b8b64f9d4317a8dc262b9d0f27f  # master
-source=("git+https://git.gnome.org/browse/glade#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^GLADE_//;s/_/./g;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---disable-static --enable-gtk-doc
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}

Copied: glade/repos/extra-x86_64/PKGBUILD (from rev 320868, 
glade/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-04-02 23:34:34 UTC (rev 320869)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Douglas Soares de Andrade 
+
+pkgname=glade
+pkgver=3.22.1
+pkgrel=1
+pkgdesc="User Interface Builder for GTK+ applications"
+url="https://glade.gnome.org/;
+arch=(x86_64)
+license=(GPL LGPL)
+depends=(gtk3 libxml2)
+makedepends=(intltool gtk-doc gobject-introspection python-gobject itstool 
docbook-xsl git
+ gnome-common webkit2gtk)
+optdepends=('devhelp: development help')
+_commit=e73a66b3f36ed6c3d9086ad1a50a789f34502a72  # tags/GLADE_3_22_1^0
+source=("git+https://gitlab.gnome.org/GNOME/glade.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^GLADE_//;s/_/./g;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--disable-static --enable-gtk-doc
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}


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

2018-04-02 Thread Jan Steffens via arch-commits
Date: Monday, April 2, 2018 @ 23:33:52
  Author: heftig
Revision: 320868

3.22.1-1

Modified:
  glade/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-04-02 23:07:10 UTC (rev 320867)
+++ PKGBUILD2018-04-02 23:33:52 UTC (rev 320868)
@@ -3,7 +3,7 @@
 # Contributor: Douglas Soares de Andrade 
 
 pkgname=glade
-pkgver=3.22.0+9+g5ec4d708
+pkgver=3.22.1
 pkgrel=1
 pkgdesc="User Interface Builder for GTK+ applications"
 url="https://glade.gnome.org/;
@@ -13,8 +13,8 @@
 makedepends=(intltool gtk-doc gobject-introspection python-gobject itstool 
docbook-xsl git
  gnome-common webkit2gtk)
 optdepends=('devhelp: development help')
-_commit=5ec4d70853874b8b64f9d4317a8dc262b9d0f27f  # master
-source=("git+https://git.gnome.org/browse/glade#commit=$_commit;)
+_commit=e73a66b3f36ed6c3d9086ad1a50a789f34502a72  # tags/GLADE_3_22_1^0
+source=("git+https://gitlab.gnome.org/GNOME/glade.git#commit=$_commit;)
 sha256sums=('SKIP')
 
 pkgver() {


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

2018-04-02 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, April 2, 2018 @ 23:22:57
  Author: svenstaro
Revision: 313929

archrelease: copy trunk to community-x86_64

Added:
  openshadinglanguage/repos/community-x86_64/PKGBUILD
(from rev 313928, openshadinglanguage/trunk/PKGBUILD)
  openshadinglanguage/repos/community-x86_64/llvm-static-system-libs.patch
(from rev 313928, openshadinglanguage/trunk/llvm-static-system-libs.patch)
Deleted:
  openshadinglanguage/repos/community-x86_64/PKGBUILD
  openshadinglanguage/repos/community-x86_64/llvm-static-system-libs.patch

---+
 PKGBUILD  |   96 
 llvm-static-system-libs.patch |   30 ++--
 2 files changed, 63 insertions(+), 63 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-04-02 23:22:49 UTC (rev 313928)
+++ PKGBUILD2018-04-02 23:22:57 UTC (rev 313929)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-pkgname=openshadinglanguage
-pkgver=1.9.7
-pkgrel=6
-pkgdesc="Advanced shading language for production GI renderers"
-arch=(x86_64)
-url="https://github.com/imageworks/OpenShadingLanguage;
-license=('custom')
-depends=('boost-libs' 'openimageio' 'openexr' 'intel-tbb' 'freetype2' 'libpng'
- 'libtiff' 'zlib' 'ncurses')
-makedepends=('boost' 'cmake' 'llvm' 'clang')
-source=(https://github.com/imageworks/OpenShadingLanguage/archive/Release-${pkgver}.tar.gz)
-sha512sums=('ab232e45eaecb9d56938bfbd2a76999c3dc3033c31cdae3bd48f18642f98211b7255aa2a11bfda13a29100f4bfeade0643d34cb5007d23662894a48139b166e5')
-
-prepare() {
-  cd OpenShadingLanguage-Release-$pkgver
-
-  # Add system libraries needed to link against LLVM components (zlib, ncurses)
-  # This is required in order to statically link against LLVM
-  #patch -Np1 < $srcdir/llvm-static-system-libs.patch
-}
-
-build() {
-  cd OpenShadingLanguage-Release-$pkgver/src
-
-  [[ -d build ]] && rm -r build
-  mkdir build && cd build
-
-  cmake ../.. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DLLVM_STATIC=0 \
--DOSL_BUILD_CPP11=1 \
--DENABLERTTI=ON \
--DSTOP_ON_WARNING=OFF
-  make
-}
-
-package() {
-  cd OpenShadingLanguage-Release-$pkgver/src/build
-
-  make DESTDIR="$pkgdir/" install
-
-  install -Dm644 "$pkgdir"/usr/share/doc/OSL/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: openshadinglanguage/repos/community-x86_64/PKGBUILD (from rev 313928, 
openshadinglanguage/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-04-02 23:22:57 UTC (rev 313929)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+pkgname=openshadinglanguage
+pkgver=1.9.8
+pkgrel=1
+pkgdesc="Advanced shading language for production GI renderers"
+arch=(x86_64)
+url="https://github.com/imageworks/OpenShadingLanguage;
+license=('custom')
+depends=('boost-libs' 'openimageio' 'openexr' 'intel-tbb' 'freetype2' 'libpng'
+ 'libtiff' 'zlib' 'ncurses')
+makedepends=('boost' 'cmake' 'llvm' 'clang')
+source=(https://github.com/imageworks/OpenShadingLanguage/archive/Release-${pkgver}.tar.gz)
+sha512sums=('99a8f4af955058ad94326795caba12599f7ba81e5304389fc48cc23cb12357954609bd27785c0b36d81626da24ad91c1ebeb39303fe5fec08fd7b48c3fa0bd42')
+
+prepare() {
+  cd OpenShadingLanguage-Release-$pkgver
+
+  # Add system libraries needed to link against LLVM components (zlib, ncurses)
+  # This is required in order to statically link against LLVM
+  #patch -Np1 < $srcdir/llvm-static-system-libs.patch
+}
+
+build() {
+  cd OpenShadingLanguage-Release-$pkgver/src
+
+  [[ -d build ]] && rm -r build
+  mkdir build && cd build
+
+  cmake ../.. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DLLVM_STATIC=0 \
+-DOSL_BUILD_CPP11=1 \
+-DENABLERTTI=ON \
+-DSTOP_ON_WARNING=OFF
+  make
+}
+
+package() {
+  cd OpenShadingLanguage-Release-$pkgver/src/build
+
+  make DESTDIR="$pkgdir/" install
+
+  install -Dm644 "$pkgdir"/usr/share/doc/OSL/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: llvm-static-system-libs.patch
===
--- llvm-static-system-libs.patch   2018-04-02 23:22:49 UTC (rev 313928)
+++ llvm-static-system-libs.patch   2018-04-02 23:22:57 UTC (rev 313929)
@@ -1,15 +0,0 @@
-diff -upr 
OpenShadingLanguage-Release-1.5.12.orig/src/cmake/externalpackages.cmake 
OpenShadingLanguage-Release-1.5.12/src/cmake/externalpackages.cmake
 OpenShadingLanguage-Release-1.5.12.orig/src/cmake/externalpackages.cmake   
2014-12-26 22:22:53.0 +0200
-+++ OpenShadingLanguage-Release-1.5.12/src/cmake/externalpackages.cmake
2015-03-16 03:12:56.052479730 +0200
-@@ -211,9 +211,10 @@ if ((LLVM_LIBRARY OR LLVM_STATIC) AND LL
- # if static 

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

2018-04-02 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, April 2, 2018 @ 23:22:49
  Author: svenstaro
Revision: 313928

upgpkg: openshadinglanguage 1.9.8-1

Modified:
  openshadinglanguage/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-04-02 22:06:38 UTC (rev 313927)
+++ PKGBUILD2018-04-02 23:22:49 UTC (rev 313928)
@@ -1,8 +1,8 @@
 # $Id$
 # Maintainer: Sven-Hendrik Haase 
 pkgname=openshadinglanguage
-pkgver=1.9.7
-pkgrel=6
+pkgver=1.9.8
+pkgrel=1
 pkgdesc="Advanced shading language for production GI renderers"
 arch=(x86_64)
 url="https://github.com/imageworks/OpenShadingLanguage;
@@ -11,7 +11,7 @@
  'libtiff' 'zlib' 'ncurses')
 makedepends=('boost' 'cmake' 'llvm' 'clang')
 
source=(https://github.com/imageworks/OpenShadingLanguage/archive/Release-${pkgver}.tar.gz)
-sha512sums=('ab232e45eaecb9d56938bfbd2a76999c3dc3033c31cdae3bd48f18642f98211b7255aa2a11bfda13a29100f4bfeade0643d34cb5007d23662894a48139b166e5')
+sha512sums=('99a8f4af955058ad94326795caba12599f7ba81e5304389fc48cc23cb12357954609bd27785c0b36d81626da24ad91c1ebeb39303fe5fec08fd7b48c3fa0bd42')
 
 prepare() {
   cd OpenShadingLanguage-Release-$pkgver


[arch-commits] Commit in umbrello/kde-unstable (PKGBUILD)

2018-04-02 Thread Antonio Rojas via arch-commits
Date: Monday, April 2, 2018 @ 23:06:43
  Author: arojas
Revision: 320866

Enable kdevelop integration

Modified:
  umbrello/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-04-02 22:54:56 UTC (rev 320865)
+++ PKGBUILD2018-04-02 23:06:43 UTC (rev 320866)
@@ -4,13 +4,13 @@
 
 pkgname=umbrello
 pkgver=18.03.80
-pkgrel=1
+pkgrel=2
 pkgdesc='UML modeller'
 arch=(x86_64)
 url='https://kde.org/applications/development/umbrello'
 license=(GPL)
-depends=(hicolor-icon-theme ktexteditor kdelibs4support qt5-webkit)
-makedepends=(extra-cmake-modules kdoctools python kdesignerplugin)
+depends=(kdelibs4support kdevelop)
+makedepends=(extra-cmake-modules kdoctools python kdesignerplugin 
kdevelop-pg-qt)
 groups=(kde-applications kdesdk)
 
source=("https://download.kde.org/unstable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
 sha256sums=('6dc3f9b9e60756a0d2447b9a91dece8b08d28c265ad45ec02e373d9889a62c81'


[arch-commits] Commit in umbrello/repos/kde-unstable-x86_64 (PKGBUILD PKGBUILD)

2018-04-02 Thread Antonio Rojas via arch-commits
Date: Monday, April 2, 2018 @ 23:07:10
  Author: arojas
Revision: 320867

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  umbrello/repos/kde-unstable-x86_64/PKGBUILD
(from rev 320866, umbrello/kde-unstable/PKGBUILD)
Deleted:
  umbrello/repos/kde-unstable-x86_64/PKGBUILD

--+
 PKGBUILD |   80 ++---
 1 file changed, 40 insertions(+), 40 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-04-02 23:06:43 UTC (rev 320866)
+++ PKGBUILD2018-04-02 23:07:10 UTC (rev 320867)
@@ -1,40 +0,0 @@
-# Maintainer: Antonio Rojas  
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=umbrello
-pkgver=18.03.80
-pkgrel=1
-pkgdesc='UML modeller'
-arch=(x86_64)
-url='https://kde.org/applications/development/umbrello'
-license=(GPL)
-depends=(hicolor-icon-theme ktexteditor kdelibs4support qt5-webkit)
-makedepends=(extra-cmake-modules kdoctools python kdesignerplugin)
-groups=(kde-applications kdesdk)
-source=("https://download.kde.org/unstable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('6dc3f9b9e60756a0d2447b9a91dece8b08d28c265ad45ec02e373d9889a62c81'
-'SKIP')
-validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

-  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

-
-prepare() {
-  mkdir -p build
-}
-
-build() { 
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF \
--DBUILD_UNITTESTS=OFF \
--DBUILD_KF5=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}
-

Copied: umbrello/repos/kde-unstable-x86_64/PKGBUILD (from rev 320866, 
umbrello/kde-unstable/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-04-02 23:07:10 UTC (rev 320867)
@@ -0,0 +1,40 @@
+# Maintainer: Antonio Rojas  
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=umbrello
+pkgver=18.03.80
+pkgrel=2
+pkgdesc='UML modeller'
+arch=(x86_64)
+url='https://kde.org/applications/development/umbrello'
+license=(GPL)
+depends=(kdelibs4support kdevelop)
+makedepends=(extra-cmake-modules kdoctools python kdesignerplugin 
kdevelop-pg-qt)
+groups=(kde-applications kdesdk)
+source=("https://download.kde.org/unstable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('6dc3f9b9e60756a0d2447b9a91dece8b08d28c265ad45ec02e373d9889a62c81'
+'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

+
+prepare() {
+  mkdir -p build
+}
+
+build() { 
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF \
+-DBUILD_UNITTESTS=OFF \
+-DBUILD_KF5=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}
+


[arch-commits] Commit in kdevelop/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2018-04-02 Thread Antonio Rojas via arch-commits
Date: Monday, April 2, 2018 @ 22:54:56
  Author: arojas
Revision: 320865

archrelease: copy trunk to extra-x86_64

Added:
  kdevelop/repos/extra-x86_64/PKGBUILD
(from rev 320864, kdevelop/trunk/PKGBUILD)
Deleted:
  kdevelop/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-04-02 22:54:19 UTC (rev 320864)
+++ PKGBUILD2018-04-02 22:54:56 UTC (rev 320865)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-# Contributor: Giovanni Scafora 
-
-pkgname=kdevelop
-pkgver=5.2.1
-pkgrel=3
-pkgdesc='C++ IDE using KDE technologies'
-arch=(x86_64)
-url='http://www.kdevelop.org/'
-license=(GPL)
-depends=(clang libksysguard kitemmodels knotifyconfig ktexteditor grantlee 
libkomparediff2 qt5-webengine
- kcmutils threadweaver knewstuff)
-makedepends=(extra-cmake-modules kdoctools kdevelop-pg-qt llvm qt5-tools 
plasma-framework krunner okteta python mesa
- boost purpose subversion)
-optdepends=('konsole: embedded terminal'
-'git: Git support' 'subversion: SVN support' 'cvs: CVS support'
-'gdb: GNU debugger support' 'lldb: LLDB debugger support'
-'qt5-doc: Qt documentation integration'
-'cmake: cmake integration'
-'qt5-tools: qthelp plugin'
-'okteta: GNU debugger support'
-'plasma-framework: for the plasma addons'
-'purpose: patch review plugin'
-'cppcheck: code analyzer' 'heaptrack: memory profiler')
-conflicts=(kdevelop-qmljs kdevplatform)
-replaces=(kdevelop-qmljs kdevplatform)
-source=("https://download.kde.org/stable/$pkgname/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.asc}
-
kdebug-386720.patch::"https://cgit.kde.org/kdevelop.git/patch/?id=f2a6941e;)
-sha256sums=('d1c39c563e4fada89eb9f30bd43c6c4beed0fec7ca7d124af587193cfe020650'
-'SKIP'
-'9e52906314f25f036e3c7a9c8d825dd6b196fed70437c6d09ce155ccaaab7591')
-validpgpkeys=('329FD02C5AA48FCC77A4BBF0AC44AC6DB29779E6') # Sven Brauch 

-
-prepare() {
-  mkdir -p build
-
-  cd $pkgname-$pkgver
-  patch -p1 -i ../kdebug-386720.patch # Fix performance issue
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kdevelop/repos/extra-x86_64/PKGBUILD (from rev 320864, 
kdevelop/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-04-02 22:54:56 UTC (rev 320865)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+# Contributor: Giovanni Scafora 
+
+pkgname=kdevelop
+pkgver=5.2.1
+pkgrel=4
+pkgdesc='C++ IDE using KDE technologies'
+arch=(x86_64)
+url='http://www.kdevelop.org/'
+license=(GPL)
+depends=(clang libksysguard kitemmodels knotifyconfig ktexteditor grantlee 
libkomparediff2 qt5-webengine
+ kcmutils threadweaver knewstuff)
+makedepends=(extra-cmake-modules kdoctools kdevelop-pg-qt llvm qt5-tools 
plasma-framework krunner okteta python mesa
+ boost purpose subversion)
+optdepends=('konsole: embedded terminal'
+'git: Git support' 'subversion: SVN support' 'cvs: CVS support'
+'gdb: GNU debugger support' 'lldb: LLDB debugger support'
+'qt5-doc: Qt documentation integration'
+'cmake: cmake integration'
+'qt5-tools: qthelp plugin'
+'okteta: GNU debugger support'
+'plasma-framework: for the plasma addons'
+'purpose: patch review plugin'
+'cppcheck: code analyzer' 'heaptrack: memory profiler')
+conflicts=(kdevelop-qmljs kdevplatform)
+replaces=(kdevelop-qmljs kdevplatform)
+source=("https://download.kde.org/stable/$pkgname/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.asc}
+
kdebug-386720.patch::"https://cgit.kde.org/kdevelop.git/patch/?id=f2a6941e;)
+sha256sums=('d1c39c563e4fada89eb9f30bd43c6c4beed0fec7ca7d124af587193cfe020650'
+'SKIP'
+'9e52906314f25f036e3c7a9c8d825dd6b196fed70437c6d09ce155ccaaab7591')
+validpgpkeys=('329FD02C5AA48FCC77A4BBF0AC44AC6DB29779E6') # Sven Brauch 

+
+prepare() {
+  mkdir -p build
+
+  cd $pkgname-$pkgver
+  patch -p1 -i ../kdebug-386720.patch # Fix performance issue
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2018-04-02 Thread Antonio Rojas via arch-commits
Date: Monday, April 2, 2018 @ 22:54:19
  Author: arojas
Revision: 320864

Build kdevelop test library, needed by umbrello

Modified:
  kdevelop/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-04-02 21:50:59 UTC (rev 320863)
+++ PKGBUILD2018-04-02 22:54:19 UTC (rev 320864)
@@ -5,7 +5,7 @@
 
 pkgname=kdevelop
 pkgver=5.2.1
-pkgrel=3
+pkgrel=4
 pkgdesc='C++ IDE using KDE technologies'
 arch=(x86_64)
 url='http://www.kdevelop.org/'
@@ -44,8 +44,7 @@
   cd build
   cmake ../$pkgname-$pkgver \
 -DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF
+-DCMAKE_INSTALL_LIBDIR=lib
   make
 }
 


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

2018-04-02 Thread Antonio Rojas via arch-commits
Date: Monday, April 2, 2018 @ 22:06:38
  Author: arojas
Revision: 313927

archrelease: copy trunk to community-any

Added:
  mathjax/repos/community-any/PKGBUILD
(from rev 313926, mathjax/trunk/PKGBUILD)
Deleted:
  mathjax/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-04-02 22:06:11 UTC (rev 313926)
+++ PKGBUILD2018-04-02 22:06:38 UTC (rev 313927)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Contributor: Kevin Dodd 
-# Contributor: Tianjiao Yin 
-
-pkgname=mathjax
-pkgver=2.7.3
-pkgrel=1
-pkgdesc='An open source JavaScript display engine for mathematics that works 
in all modern browsers'
-url='https://www.mathjax.org/'
-arch=(any)
-license=(Apache)
-depends=(xorg-mkfontdir fontconfig)
-source=("$pkgname-$pkgver.tar.gz::https://github.com/mathjax/MathJax/archive/$pkgver.tar.gz;)
-sha256sums=('b4d91a1b5d40a87a95c6a173da8e07f649501a5b1edfc0c68f4226516acfda61')
-
-prepare() {
-  cd MathJax-$pkgver
-
-# Remove unneeded stuff, see 
https://github.com/mathjax/MathJax-docs/wiki/Guide%3A-reducing-size-of-a-mathjax-installation
-  rm -r docs test unpacked
-  rm -r fonts/HTML-CSS/TeX/png
-  for _format in eot otf svg ; do
-   find . -type d -name "$_format" -prune -exec rm -rf {} \;
-  done
-}
-
-package() {
-  mkdir -p "$pkgdir"/usr/share/{fonts,licenses/mathjax}
-  cp -a MathJax-$pkgver "$pkgdir"/usr/share/mathjax
-  mv "$pkgdir"/usr/share/mathjax/fonts "$pkgdir"/usr/share/fonts/mathjax
-  ln -s /usr/share/fonts/mathjax "$pkgdir"/usr/share/mathjax/fonts
-  mv "$pkgdir"/usr/share/mathjax/LICENSE 
"$pkgdir"/usr/share/licenses/mathjax/LICENSE
-}

Copied: mathjax/repos/community-any/PKGBUILD (from rev 313926, 
mathjax/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-04-02 22:06:38 UTC (rev 313927)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Kevin Dodd 
+# Contributor: Tianjiao Yin 
+
+pkgname=mathjax
+pkgver=2.7.4
+pkgrel=1
+pkgdesc='An open source JavaScript display engine for mathematics that works 
in all modern browsers'
+url='https://www.mathjax.org/'
+arch=(any)
+license=(Apache)
+depends=(xorg-mkfontdir fontconfig)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/mathjax/MathJax/archive/$pkgver.tar.gz;)
+sha256sums=('6d35d059630d8c47179a58162ba4b9e6e14f3b6f1cbdaf1ef6e00b433e0eede3')
+
+prepare() {
+  cd MathJax-$pkgver
+
+# Remove unneeded stuff, see 
https://github.com/mathjax/MathJax-docs/wiki/Guide%3A-reducing-size-of-a-mathjax-installation
+  rm -r docs test unpacked
+  rm -r fonts/HTML-CSS/TeX/png
+  for _format in eot otf svg ; do
+   find . -type d -name "$_format" -prune -exec rm -rf {} \;
+  done
+}
+
+package() {
+  mkdir -p "$pkgdir"/usr/share/{fonts,licenses/mathjax}
+  cp -a MathJax-$pkgver "$pkgdir"/usr/share/mathjax
+  mv "$pkgdir"/usr/share/mathjax/fonts "$pkgdir"/usr/share/fonts/mathjax
+  ln -s /usr/share/fonts/mathjax "$pkgdir"/usr/share/mathjax/fonts
+  mv "$pkgdir"/usr/share/mathjax/LICENSE 
"$pkgdir"/usr/share/licenses/mathjax/LICENSE
+}


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

2018-04-02 Thread Antonio Rojas via arch-commits
Date: Monday, April 2, 2018 @ 22:06:11
  Author: arojas
Revision: 313926

Update to 2.7.4

Modified:
  mathjax/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-04-02 22:04:10 UTC (rev 313925)
+++ PKGBUILD2018-04-02 22:06:11 UTC (rev 313926)
@@ -4,7 +4,7 @@
 # Contributor: Tianjiao Yin 
 
 pkgname=mathjax
-pkgver=2.7.3
+pkgver=2.7.4
 pkgrel=1
 pkgdesc='An open source JavaScript display engine for mathematics that works 
in all modern browsers'
 url='https://www.mathjax.org/'
@@ -12,7 +12,7 @@
 license=(Apache)
 depends=(xorg-mkfontdir fontconfig)
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/mathjax/MathJax/archive/$pkgver.tar.gz;)
-sha256sums=('b4d91a1b5d40a87a95c6a173da8e07f649501a5b1edfc0c68f4226516acfda61')
+sha256sums=('6d35d059630d8c47179a58162ba4b9e6e14f3b6f1cbdaf1ef6e00b433e0eede3')
 
 prepare() {
   cd MathJax-$pkgver


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

2018-04-02 Thread Antonio Rojas via arch-commits
Date: Monday, April 2, 2018 @ 22:04:10
  Author: arojas
Revision: 313925

archrelease: copy trunk to community-x86_64

Added:
  normaliz/repos/community-x86_64/PKGBUILD
(from rev 313924, normaliz/trunk/PKGBUILD)
Deleted:
  normaliz/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-04-02 22:03:42 UTC (rev 313924)
+++ PKGBUILD2018-04-02 22:04:10 UTC (rev 313925)
@@ -1,25 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Tarn Burton 
-
-pkgname=normaliz
-pkgver=3.5.2
-pkgrel=1
-pkgdesc="A tool for computations in affine monoids, vector configurations, 
lattice polytopes, and rational cones."
-arch=(x86_64)
-url="https://www.normaliz.uni-osnabrueck.de/;
-license=(GPL)
-depends=(gmp)
-makedepends=(boost)
-source=("https://github.com/Normaliz/Normaliz/releases/download/v$pkgver/Normaliz-$pkgver.tar.gz;)
-sha256sums=('8eb83bec61760acf75dbe8a4442883b6bded639ba0aff513ebf50fdca57fa5e0')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: normaliz/repos/community-x86_64/PKGBUILD (from rev 313924, 
normaliz/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-04-02 22:04:10 UTC (rev 313925)
@@ -0,0 +1,25 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Tarn Burton 
+
+pkgname=normaliz
+pkgver=3.5.3
+pkgrel=1
+pkgdesc="A tool for computations in affine monoids, vector configurations, 
lattice polytopes, and rational cones."
+arch=(x86_64)
+url="https://www.normaliz.uni-osnabrueck.de/;
+license=(GPL)
+depends=(gmp)
+makedepends=(boost)
+source=("https://github.com/Normaliz/Normaliz/releases/download/v$pkgver/Normaliz-$pkgver.tar.gz;)
+sha256sums=('fa522ba66d3437a7850500651dd4a3698f5db119b4d73bc0ee4e79dee68badb8')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}


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

2018-04-02 Thread Antonio Rojas via arch-commits
Date: Monday, April 2, 2018 @ 22:03:42
  Author: arojas
Revision: 313924

Update to 3.5.3

Modified:
  normaliz/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-04-02 21:46:07 UTC (rev 313923)
+++ PKGBUILD2018-04-02 22:03:42 UTC (rev 313924)
@@ -2,7 +2,7 @@
 # Contributor: Tarn Burton 
 
 pkgname=normaliz
-pkgver=3.5.2
+pkgver=3.5.3
 pkgrel=1
 pkgdesc="A tool for computations in affine monoids, vector configurations, 
lattice polytopes, and rational cones."
 arch=(x86_64)
@@ -11,7 +11,7 @@
 depends=(gmp)
 makedepends=(boost)
 
source=("https://github.com/Normaliz/Normaliz/releases/download/v$pkgver/Normaliz-$pkgver.tar.gz;)
-sha256sums=('8eb83bec61760acf75dbe8a4442883b6bded639ba0aff513ebf50fdca57fa5e0')
+sha256sums=('fa522ba66d3437a7850500651dd4a3698f5db119b4d73bc0ee4e79dee68badb8')
 
 build() {
   cd $pkgname-$pkgver


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

2018-04-02 Thread Anatol Pomozov via arch-commits
Date: Monday, April 2, 2018 @ 21:50:59
  Author: anatolik
Revision: 320863

archrelease: copy trunk to testing-x86_64

Added:
  hdparm/repos/testing-x86_64/
  hdparm/repos/testing-x86_64/PKGBUILD
(from rev 320862, hdparm/trunk/PKGBUILD)
  hdparm/repos/testing-x86_64/wiper.sh.2_6.max-ranges.patch
(from rev 320862, hdparm/trunk/wiper.sh.2_6.max-ranges.patch)

---+
 PKGBUILD  |   46 +
 wiper.sh.2_6.max-ranges.patch |   84 
 2 files changed, 130 insertions(+)

Copied: hdparm/repos/testing-x86_64/PKGBUILD (from rev 320862, 
hdparm/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2018-04-02 21:50:59 UTC (rev 320863)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Paul Mattal 
+
+pkgname=hdparm
+pkgver=9.56
+pkgrel=1
+pkgdesc="A shell utility for manipulating Linux IDE drive/driver parameters"
+arch=(x86_64)
+depends=('glibc')
+optdepends=('sh: required by idectl and ultrabayd')
+source=(http://downloads.sourceforge.net/sourceforge/hdparm/${pkgname}-${pkgver}.tar.gz
+wiper.sh.2_6.max-ranges.patch)
+license=('BSD')
+url="http://sourceforge.net/projects/hdparm/;
+optdepends=('bash: for wiper.sh script')
+options=('emptydirs')
+sha512sumss=('410539d0bf3cc247181594581edbfb53'
+ '74e368f384166a7710b447573cda120a')
+
+prepare() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  # Fix Range input/output error when wiping Intel G2 and OCZ drives
+  patch -Np1 -i $srcdir/wiper.sh.2_6.max-ranges.patch
+}
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  # install
+  mkdir -p ${pkgdir}/usr/bin
+  make DESTDIR=${pkgdir} sbindir=/usr/bin install
+  install -m755 contrib/idectl ${pkgdir}/usr/bin
+  install -m755 contrib/ultrabayd ${pkgdir}/usr/bin
+
+  install -D -m 0644 $srcdir/$pkgname-$pkgver/wiper/README.txt 
$pkgdir/usr/share/doc/wiper/README.txt
+  install -D -m 0755 $srcdir/$pkgname-$pkgver/wiper/wiper.sh 
$pkgdir/usr/bin/wiper.sh
+
+  #install license file
+  install -D -m 644 LICENSE.TXT $pkgdir/usr/share/licenses/hdparm/LICENSE.TXT
+}
+md5sums=('7900608e32834f65d2654fdb696e71a0'
+ '74e368f384166a7710b447573cda120a')

Copied: hdparm/repos/testing-x86_64/wiper.sh.2_6.max-ranges.patch (from rev 
320862, hdparm/trunk/wiper.sh.2_6.max-ranges.patch)
===
--- testing-x86_64/wiper.sh.2_6.max-ranges.patch
(rev 0)
+++ testing-x86_64/wiper.sh.2_6.max-ranges.patch2018-04-02 21:50:59 UTC 
(rev 320863)
@@ -0,0 +1,84 @@
+--- hdparm-9.28/wiper/wiper.sh.orig2010-03-09 06:17:37.0 -0800
+--- hdparm-9.28/wiper/wiper.sh 2010-05-15 03:08:02.182856971 -0700
+@@ -29,7 +29,7 @@
+ function usage_error(){
+   echo >&2
+   echo "Linux tune-up (TRIM) utility for SATA SSDs"
+-  echo "Usage:  $0 [--verbose] [--commit] " >&2
++  echo "Usage:  $0 [--max-ranges ] [--verbose] [--commit] 
" >&2
+   echo "   Eg:  $0 /dev/sda1" >&2
+   echo >&2
+   exit 1
+@@ -44,6 +44,7 @@
+ 
+ export verbose=0
+ commit=""
++max_ranges=-1
+ destroy_me=""
+ argc=$#
+ arg=""
+@@ -51,6 +52,10 @@
+   commit=yes
+   elif [ "$1" = "--verbose" ]; then
+   verbose=$((verbose + 1))
++  elif [ "$1" = "--max-ranges" -a $argc -gt 1 ]; then
++  max_ranges=$2
++  argc=$((argc - 1))
++  shift
+   elif [ "$1" = "" ]; then
+   usage_error
+   else
+@@ -499,6 +550,18 @@
+   fi
+ fi
+ 
++## Different SSD's have a different maximum number of ranges they'll accept
++## in a single TRIM command.
++if [ $max_ranges -le 0 ] ; then
++  model=`$HDPARM -I $rawdev | $GAWK '/Model Number/ { print $NF }'`
++  case "$model" in
++  SSDSA[12]*)  max_ranges=512 ;;  # Intel X18-M/X25-M
++  OCZ-VERTEX2) max_ranges=64 ;;   # OCZ Vertex2
++  *)   max_ranges=65535
++  esac
++fi
++[ $verbose -gt 0 ] && echo "max-ranges = $max_ranges"
++
+ ## All ready.  Now let the user know exactly what we intend to do:
+ ##
+ mountstatus="$fstype non-mounted"
+@@ -608,7 +671,7 @@
+   nsectors += count;
+   while (count > 0) {
+   this_count  = (count > 65535) ? 65535 : count
+-  printf "%u:%u ", lba, this_count
++  printf "%u:%u \n", lba, this_count
+   if (verbose > 1)
+   printf "%u:%u ", lba, this_count > "/dev/stderr"
+   lba+= this_count
+@@ -695,6 +758,22 @@
+   -v verbose="$verbose"   \
+   -v xfs_blksects="$xfs_blksects" \
+   -v 

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

2018-04-02 Thread Anatol Pomozov via arch-commits
Date: Monday, April 2, 2018 @ 21:50:37
  Author: anatolik
Revision: 320862

upgpkg: hdparm 9.56-1

Modified:
  hdparm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-04-02 21:48:06 UTC (rev 320861)
+++ PKGBUILD2018-04-02 21:50:37 UTC (rev 320862)
@@ -2,7 +2,7 @@
 # Maintainer: Paul Mattal 
 
 pkgname=hdparm
-pkgver=9.54
+pkgver=9.56
 pkgrel=1
 pkgdesc="A shell utility for manipulating Linux IDE drive/driver parameters"
 arch=(x86_64)
@@ -42,5 +42,5 @@
   #install license file
   install -D -m 644 LICENSE.TXT $pkgdir/usr/share/licenses/hdparm/LICENSE.TXT
 }
-md5sums=('3c160eab5783c1d2fbf40f86333f7fcf'
+md5sums=('7900608e32834f65d2654fdb696e71a0'
  '74e368f384166a7710b447573cda120a')


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

2018-04-02 Thread Anatol Pomozov via arch-commits
Date: Monday, April 2, 2018 @ 21:48:06
  Author: anatolik
Revision: 320861

archrelease: copy trunk to testing-x86_64

Added:
  hwloc/repos/testing-x86_64/
  hwloc/repos/testing-x86_64/PKGBUILD
(from rev 320860, hwloc/trunk/PKGBUILD)

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

Copied: hwloc/repos/testing-x86_64/PKGBUILD (from rev 320860, 
hwloc/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2018-04-02 21:48:06 UTC (rev 320861)
@@ -0,0 +1,40 @@
+# Maintainer: Levente Polyak 
+# Contributor: Stéphane Gaudreault 
+# Contributor: Sylvain HENRY 
+# Contributor: Hervé YVIQUEL 
+
+pkgname=hwloc
+pkgver=1.11.10
+pkgrel=1
+pkgdesc='Portable Hardware Locality is a portable abstraction of hierarchical 
architectures'
+url='https://www.open-mpi.org/projects/hwloc/'
+arch=('x86_64')
+license=('BSD')
+depends=('numactl' 'libtool' 'libsystemd')
+makedepends=('cairo' 'libxml2' 'pciutils' 'systemd')
+optdepends=('cairo' 'libxml2' 'pciutils')
+options=('!docs')
+source=(https://www.open-mpi.org/software/hwloc/v1.11/downloads/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('2be808383d8337846fe77ce49c7ad3336fb6857505494d85c0ac03f22c5bd1e7')
+
+build() {
+  cd hwloc-${pkgver}
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--enable-plugins
+  make
+}
+
+check() {
+  cd hwloc-${pkgver}
+  make check
+}
+
+package() {
+  cd hwloc-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


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

2018-04-02 Thread Anatol Pomozov via arch-commits
Date: Monday, April 2, 2018 @ 21:47:41
  Author: anatolik
Revision: 320860

upgpkg: hwloc 1.11.10-1

Modified:
  hwloc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-04-02 21:23:32 UTC (rev 320859)
+++ PKGBUILD2018-04-02 21:47:41 UTC (rev 320860)
@@ -4,7 +4,7 @@
 # Contributor: Hervé YVIQUEL 
 
 pkgname=hwloc
-pkgver=1.11.9
+pkgver=1.11.10
 pkgrel=1
 pkgdesc='Portable Hardware Locality is a portable abstraction of hierarchical 
architectures'
 url='https://www.open-mpi.org/projects/hwloc/'
@@ -15,7 +15,7 @@
 optdepends=('cairo' 'libxml2' 'pciutils')
 options=('!docs')
 
source=(https://www.open-mpi.org/software/hwloc/v1.11/downloads/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('394333184248d63cb2708a976e57f05337d03bb50c33aa3097ff5c5a74a85164')
+sha256sums=('2be808383d8337846fe77ce49c7ad3336fb6857505494d85c0ac03f22c5bd1e7')
 
 build() {
   cd hwloc-${pkgver}


[arch-commits] Commit in kmymoney/trunk (PKGBUILD kmymoney.changelog)

2018-04-02 Thread Jaroslav Lichtblau via arch-commits
Date: Monday, April 2, 2018 @ 21:40:35
  Author: jlichtblau
Revision: 313920

upgpkg: kmymoney 5.0.1-1 - new upstream release

Modified:
  kmymoney/trunk/PKGBUILD
  kmymoney/trunk/kmymoney.changelog

+
 PKGBUILD   |8 
 kmymoney.changelog |3 +++
 2 files changed, 7 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-04-02 21:00:25 UTC (rev 313919)
+++ PKGBUILD2018-04-02 21:40:35 UTC (rev 313920)
@@ -1,6 +1,6 @@
  #$Id$
 # Maintainer: Jaroslav Lichtblau 
-# Maintainer: Laurent Carlier 
+# Contributor: Laurent Carlier 
 # Contributor: Vamp898 
 # Contributor: Jaroslaw Swierczynski 
 # Contributor: Eric Belanger 
@@ -7,8 +7,8 @@
 # Contributor: Todd Maynard 
 
 pkgname=kmymoney
-pkgver=5.0.0
-pkgrel=4
+pkgver=5.0.1
+pkgrel=1
 pkgdesc="Personal finance manager for KDE which operates similarly to MS-Money 
or Quicken"
 arch=('x86_64')
 url="https://kmymoney.org/;
@@ -22,7 +22,7 @@
 changelog=$pkgname.changelog
 
source=(https://download.kde.org/stable/$pkgname/$pkgver/src/$pkgname-$pkgver.tar.xz{,.sig})
 validpgpkeys=('D69A745A55331F44F404D8258D4DE062AA2EB01C')
-sha256sums=('984f5866aa7d7bf53d2ef9bbfbb6e5de0d69972f225031ebfd86b46df131f5ba'
+sha256sums=('dd6e8fc22a48ddcb322565c8f385d6aa44d582cfcf6fe2ff3dc11fc0b6bd2ab1'
 'SKIP')
 
 build() {

Modified: kmymoney.changelog
===
--- kmymoney.changelog  2018-04-02 21:00:25 UTC (rev 313919)
+++ kmymoney.changelog  2018-04-02 21:40:35 UTC (rev 313920)
@@ -1,3 +1,6 @@
+2018-04-02 Jaroslav Lichtblau 
+   * kmymoney 5.0.1-1
+
 2018-02-14 Jaroslav Lichtblau 
* kmymoney 5.0.0-3 aqbanking rebuild
 


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

2018-04-02 Thread Jaroslav Lichtblau via arch-commits
Date: Monday, April 2, 2018 @ 21:40:51
  Author: jlichtblau
Revision: 313921

archrelease: copy trunk to community-staging-x86_64

Added:
  kmymoney/repos/community-staging-x86_64/
  kmymoney/repos/community-staging-x86_64/PKGBUILD
(from rev 313920, kmymoney/trunk/PKGBUILD)
  kmymoney/repos/community-staging-x86_64/kmymoney.changelog
(from rev 313920, kmymoney/trunk/kmymoney.changelog)

+
 PKGBUILD   |   47 
 kmymoney.changelog |   84 +++
 2 files changed, 131 insertions(+)

Copied: kmymoney/repos/community-staging-x86_64/PKGBUILD (from rev 313920, 
kmymoney/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-04-02 21:40:51 UTC (rev 313921)
@@ -0,0 +1,47 @@
+ #$Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Laurent Carlier 
+# Contributor: Vamp898 
+# Contributor: Jaroslaw Swierczynski 
+# Contributor: Eric Belanger 
+# Contributor: Todd Maynard 
+
+pkgname=kmymoney
+pkgver=5.0.1
+pkgrel=1
+pkgdesc="Personal finance manager for KDE which operates similarly to MS-Money 
or Quicken"
+arch=('x86_64')
+url="https://kmymoney.org/;
+license=('GPL')
+depends=('aqbanking' 'boost-libs' 'libalkimia' 'sqlcipher' 'qt5-base' 'qgpgme' 
'karchive'
+ 'kcoreaddons' 'kconfig' 'kwidgetsaddons' 'ki18n' 'kcompletion' 
'kcmutils' 'kitemmodels'
+ 'kitemviews' 'kservice' 'kwallet' 'kiconthemes' 'kxmlgui' 
'kidentitymanagement'
+ 'ktextwidgets' 'knotifications' 'kio' 'kdoctools' 'kholidays' 'kross' 
'kactivities'
+ 'kqtquickcharts' 'kdiagram' 'kdewebkit' 'kcontacts' 'libical' 
'akonadi' 'shared-mime-info')
+makedepends=('boost' 'extra-cmake-modules' 'doxygen')
+changelog=$pkgname.changelog
+source=(https://download.kde.org/stable/$pkgname/$pkgver/src/$pkgname-$pkgver.tar.xz{,.sig})
+validpgpkeys=('D69A745A55331F44F404D8258D4DE062AA2EB01C')
+sha256sums=('dd6e8fc22a48ddcb322565c8f385d6aa44d582cfcf6fe2ff3dc11fc0b6bd2ab1'
+'SKIP')
+
+build() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  mkdir build
+  cd build
+
+  cmake ../ \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DCMAKE_BUILD_TYPE=RELEASE \
+-DCMAKE_SKIP_RPATH=YES \
+-Wno-dev
+  make
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-$pkgver/build
+
+  make DESTDIR="${pkgdir}" install
+}

Copied: kmymoney/repos/community-staging-x86_64/kmymoney.changelog (from rev 
313920, kmymoney/trunk/kmymoney.changelog)
===
--- community-staging-x86_64/kmymoney.changelog (rev 0)
+++ community-staging-x86_64/kmymoney.changelog 2018-04-02 21:40:51 UTC (rev 
313921)
@@ -0,0 +1,84 @@
+2018-04-02 Jaroslav Lichtblau 
+   * kmymoney 5.0.1-1
+
+2018-02-14 Jaroslav Lichtblau 
+   * kmymoney 5.0.0-3 aqbanking rebuild
+
+2018-02-09 Jaroslav Lichtblau 
+   * kmymoney 5.0.0-2 dependencies ammended
+
+2018-02-07 Jaroslav Lichtblau 
+   * kmymoney 5.0.0-1
+
+2017-12-27 Jaroslav Lichtblau 
+   * kmymoney 4.8.1.1-1
+
+2017-10-18 Jaroslav Lichtblau 
+   * kmymoney 4.8.1-2 FS#55997 fix
+
+2017-10-08 Jaroslav Lichtblau 
+   * kmymoney 4.8.1-1
+
+2017-06-04 Jaroslav Lichtblau 
+   * kmymoney 4.8.0-5 FS#54044 fix
+
+2016-09-01 Jaroslav Lichtblau 
+   * kmymoney 4.8.0-3 aqbanking so name rebuild
+
+2016-06-18 Jaroslav Lichtblau 
+   * kmymoney 4.8.0-2 #364355 fixed
+
+2016-06-15 Jaroslav Lichtblau 
+   * kmymoney 4.8.0-1 x86_64
+   * i686 build fails https://bugs.kde.org/show_bug.cgi?id=364355
+
+2016-04-29 Jaroslav Lichtblau 
+   * kmymoney 4.7.2-4 pacman hooks rebuild
+
+2016-01-09 Jaroslav Lichtblau 
+   * kmymoney 4.7.2-3 libical rebuild
+
+2015-04-28 Jaroslav Lichtblau 
+   * kmymoney 4.7.2-1
+
+2014-11-02 Jaroslav Lichtblau 
+   * kmymoney 4.7.1-1
+
+2014-10-02 Jaroslav Lichtblau 
+   * kmymoney 4.7.0-1
+
+2013-10-06 Jaroslav Lichtblau 
+   * kmymoney 4.6.4-1
+
+2012-09-09 Jaroslav Lichtblau 
+   * kmymoney 4.6.3-1
+
+2012-08-09  Eric Belanger  
+* kmymoney 4.6.2-2
+   * Rebuild against libofx 0.9.5
+
+2011-02-19 Jaroslav Lichtblau 
+   * 

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

2018-04-02 Thread Anatol Pomozov via arch-commits
Date: Monday, April 2, 2018 @ 21:23:32
  Author: anatolik
Revision: 320859

archrelease: copy trunk to testing-x86_64

Added:
  fuse3/repos/testing-x86_64/
  fuse3/repos/testing-x86_64/PKGBUILD
(from rev 320858, fuse3/trunk/PKGBUILD)
  fuse3/repos/testing-x86_64/fuse.conf
(from rev 320858, fuse3/trunk/fuse.conf)

---+
 PKGBUILD  |   72 
 fuse.conf |9 +++
 2 files changed, 81 insertions(+)

Copied: fuse3/repos/testing-x86_64/PKGBUILD (from rev 320858, 
fuse3/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2018-04-02 21:23:32 UTC (rev 320859)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Ronald van Haren 
+# Contributor: Tom Gundersen 
+# Contributor: Mark Rosenstand 
+
+pkgbase=fuse3
+pkgname=(fuse-common fuse3)
+pkgver=3.2.2
+pkgrel=1
+arch=('x86_64')
+url='https://github.com/libfuse/libfuse'
+license=('GPL2')
+makedepends=('pkg-config' 'meson' 'udev')
+options=(!emptydirs)
+source=(https://github.com/libfuse/libfuse/releases/download/fuse-$pkgver/fuse-$pkgver.tar.xz{,.asc}
+   'fuse.conf')
+sha1sums=('66527efcfe5f8b849f96bdd83851d8105b4bde3d'
+  'SKIP'
+  '3b42e37a741d4651099225987dc40e7f02a716ad')
+validpgpkeys=(ED31791B2C5C1613AF388B8AD113FCAC3C4E599F) # Nikolaus Rath 

+
+build() {
+  cd fuse-$pkgver
+
+  rm -rf build
+  meson --prefix=/usr --sbindir=bin . build
+  cd build
+  ninja
+}
+
+package_fuse-common() {
+  pkgdesc="Common files for fuse2/3 packages"
+  backup=(etc/fuse.conf)
+  depends=(glibc)
+
+  cd fuse-$pkgver/build
+  DESTDIR=${pkgdir} ninja install
+
+  install -Dm644 ${srcdir}/fuse.conf ${pkgdir}/etc/fuse.conf
+
+  # static device nodes are handled by udev
+  rm -r ${pkgdir}/dev
+
+  # Remove init script in wrong path
+  # Don't add our own for now, as fusectl fs oopses on 2.6.18
+  rm -r ${pkgdir}/etc/init.d
+
+  # part of fuse3 package
+  rm -r 
${pkgdir}/usr/{bin/fusermount3,include,lib/{pkgconfig,libfuse3.so*},share/man/man1/fusermount3.1.gz}
+
+  mv ${pkgdir}/usr/bin/mount.fuse3 ${pkgdir}/usr/bin/mount.fuse
+}
+
+package_fuse3() {
+  pkgdesc="A library that makes it possible to implement a filesystem in a 
userspace program."
+  depends=('fuse-common')
+
+  cd fuse-$pkgver/build
+
+  DESTDIR=${pkgdir} ninja install
+
+  # Remove init script in wrong path
+  # Don't add our own for now, as fusectl fs oopses on 2.6.18
+  rm -r ${pkgdir}/etc/init.d
+
+  # static device nodes are handled by udev
+  rm -r ${pkgdir}/dev
+
+  # part of fuse-common package
+  rm -r ${pkgdir}/usr/lib/udev/rules.d
+  rm ${pkgdir}/usr/share/man/man8/mount.fuse.8.gz ${pkgdir}/usr/bin/mount.fuse3
+}

Copied: fuse3/repos/testing-x86_64/fuse.conf (from rev 320858, 
fuse3/trunk/fuse.conf)
===
--- testing-x86_64/fuse.conf(rev 0)
+++ testing-x86_64/fuse.conf2018-04-02 21:23:32 UTC (rev 320859)
@@ -0,0 +1,9 @@
+# Set the maximum number of FUSE mounts allowed to non-root users.
+# The default is 1000.
+#
+#mount_max = 1000
+
+# Allow non-root users to specify the 'allow_other' or 'allow_root'
+# mount options.
+#
+#user_allow_other


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

2018-04-02 Thread Anatol Pomozov via arch-commits
Date: Monday, April 2, 2018 @ 21:23:05
  Author: anatolik
Revision: 320858

upgpkg: fuse3 3.2.2-1

Modified:
  fuse3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-04-02 19:18:05 UTC (rev 320857)
+++ PKGBUILD2018-04-02 21:23:05 UTC (rev 320858)
@@ -5,7 +5,7 @@
 
 pkgbase=fuse3
 pkgname=(fuse-common fuse3)
-pkgver=3.2.1
+pkgver=3.2.2
 pkgrel=1
 arch=('x86_64')
 url='https://github.com/libfuse/libfuse'
@@ -14,7 +14,7 @@
 options=(!emptydirs)
 
source=(https://github.com/libfuse/libfuse/releases/download/fuse-$pkgver/fuse-$pkgver.tar.xz{,.asc}
'fuse.conf')
-sha1sums=('0461603b2c9baadae0bee0e22aeb3a4f3a41ec31'
+sha1sums=('66527efcfe5f8b849f96bdd83851d8105b4bde3d'
   'SKIP'
   '3b42e37a741d4651099225987dc40e7f02a716ad')
 validpgpkeys=(ED31791B2C5C1613AF388B8AD113FCAC3C4E599F) # Nikolaus Rath 



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

2018-04-02 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, April 2, 2018 @ 21:00:25
  Author: svenstaro
Revision: 313919

archrelease: copy trunk to community-x86_64

Added:
  love/repos/community-x86_64/PKGBUILD
(from rev 313918, love/trunk/PKGBUILD)
Deleted:
  love/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-04-02 21:00:14 UTC (rev 313918)
+++ PKGBUILD2018-04-02 21:00:25 UTC (rev 313919)
@@ -1,29 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Linus Sjögren 
-# Contributor: Eric Forgeot < http://anamnese.online.fr >, dreeze
-pkgname=love
-pkgver=0.10.2
-pkgrel=1
-pkgdesc="An open-source 2D game engine which uses the versatile Lua scripting 
language to create dynamic gaming experiences"
-arch=(i686 x86_64)
-url="http://love2d.org/;
-license=('zlib')
-depends=('luajit' 'physfs' 'freetype2' 'devil' 'mpg123' 'openal' 'libvorbis' 
'libmodplug' 'sdl2' 'shared-mime-info' 'hicolor-icon-theme' 
'desktop-file-utils' 'libtheora')
-source=("https://bitbucket.org/rude/love/downloads/love-${pkgver}-linux-src.tar.gz;)
-md5sums=('11936c4fafe666bdea077cb006c060a4')
-
-build() {
-  cd "$srcdir"/love-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$srcdir"/love-$pkgver
-
-  make DESTDIR="$pkgdir" install
-
-  install -Dm0644 "license.txt" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: love/repos/community-x86_64/PKGBUILD (from rev 313918, 
love/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-04-02 21:00:25 UTC (rev 313919)
@@ -0,0 +1,29 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Linus Sjögren 
+# Contributor: Eric Forgeot < http://anamnese.online.fr >, dreeze
+pkgname=love
+pkgver=11.0
+pkgrel=1
+pkgdesc="An open-source 2D game engine which uses the versatile Lua scripting 
language to create dynamic gaming experiences"
+arch=(x86_64)
+url="http://love2d.org/;
+license=('zlib')
+depends=('luajit' 'physfs' 'freetype2' 'devil' 'mpg123' 'openal' 'libvorbis' 
'libmodplug' 'sdl2' 'shared-mime-info' 'hicolor-icon-theme' 
'desktop-file-utils' 'libtheora')
+source=("https://bitbucket.org/rude/love/downloads/love-${pkgver}-linux-src.tar.gz;)
+sha512sums=('4617af57662e80a4fd3be50d891d3728ec6dcc8a3b286b6713479aaa448c47e19bc7c53f3dc879180ccd7cc71c091ed3c8723b99e8be22fbe6112acc78c2c50c')
+
+build() {
+  cd "$srcdir"/love-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir"/love-$pkgver
+
+  make DESTDIR="$pkgdir" install
+
+  install -Dm0644 "license.txt" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:


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

2018-04-02 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, April 2, 2018 @ 21:00:14
  Author: svenstaro
Revision: 313918

upgpkg: love 11.0-1

Modified:
  love/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-04-02 19:03:33 UTC (rev 313917)
+++ PKGBUILD2018-04-02 21:00:14 UTC (rev 313918)
@@ -2,7 +2,7 @@
 # Contributor: Linus Sjögren 
 # Contributor: Eric Forgeot < http://anamnese.online.fr >, dreeze
 pkgname=love
-pkgver=0.10.2
+pkgver=11.0
 pkgrel=1
 pkgdesc="An open-source 2D game engine which uses the versatile Lua scripting 
language to create dynamic gaming experiences"
 arch=(x86_64)
@@ -10,7 +10,7 @@
 license=('zlib')
 depends=('luajit' 'physfs' 'freetype2' 'devil' 'mpg123' 'openal' 'libvorbis' 
'libmodplug' 'sdl2' 'shared-mime-info' 'hicolor-icon-theme' 
'desktop-file-utils' 'libtheora')
 
source=("https://bitbucket.org/rude/love/downloads/love-${pkgver}-linux-src.tar.gz;)
-md5sums=('11936c4fafe666bdea077cb006c060a4')
+sha512sums=('4617af57662e80a4fd3be50d891d3728ec6dcc8a3b286b6713479aaa448c47e19bc7c53f3dc879180ccd7cc71c091ed3c8723b99e8be22fbe6112acc78c2c50c')
 
 build() {
   cd "$srcdir"/love-$pkgver


[arch-commits] Commit in apache/repos/testing-x86_64 (18 files)

2018-04-02 Thread Anatol Pomozov via arch-commits
Date: Monday, April 2, 2018 @ 19:18:05
  Author: anatolik
Revision: 320857

archrelease: copy trunk to testing-x86_64

Added:
  apache/repos/testing-x86_64/PKGBUILD
(from rev 320856, apache/trunk/PKGBUILD)
  apache/repos/testing-x86_64/apache-2.2-optionsbleed-CVE-2017-9798.patch
(from rev 320856, apache/trunk/apache-2.2-optionsbleed-CVE-2017-9798.patch)
  apache/repos/testing-x86_64/apache.tmpfiles.conf
(from rev 320856, apache/trunk/apache.tmpfiles.conf)
  apache/repos/testing-x86_64/arch.layout
(from rev 320856, apache/trunk/arch.layout)
  apache/repos/testing-x86_64/httpd.logrotate
(from rev 320856, apache/trunk/httpd.logrotate)
  apache/repos/testing-x86_64/httpd.service
(from rev 320856, apache/trunk/httpd.service)
  apache/repos/testing-x86_64/nohttp2forprefork.patch
(from rev 320856, apache/trunk/nohttp2forprefork.patch)
  apache/repos/testing-x86_64/openssl-malloc-init.patch
(from rev 320856, apache/trunk/openssl-malloc-init.patch)
  apache/repos/testing-x86_64/script_name.patch
(from rev 320856, apache/trunk/script_name.patch)
Deleted:
  apache/repos/testing-x86_64/PKGBUILD
  apache/repos/testing-x86_64/apache-2.2-optionsbleed-CVE-2017-9798.patch
  apache/repos/testing-x86_64/apache.tmpfiles.conf
  apache/repos/testing-x86_64/arch.layout
  apache/repos/testing-x86_64/httpd.logrotate
  apache/repos/testing-x86_64/httpd.service
  apache/repos/testing-x86_64/nohttp2forprefork.patch
  apache/repos/testing-x86_64/openssl-malloc-init.patch
  apache/repos/testing-x86_64/script_name.patch

-+
 PKGBUILD|  261 +++---
 apache-2.2-optionsbleed-CVE-2017-9798.patch |   42 -
 apache.tmpfiles.conf|2 
 arch.layout |   44 -
 httpd.logrotate |   14 
 httpd.service   |   30 
 nohttp2forprefork.patch | 1012 +-
 openssl-malloc-init.patch   |   40 -
 script_name.patch   |  168 ++--
 9 files changed, 808 insertions(+), 805 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-04-02 19:17:03 UTC (rev 320856)
+++ PKGBUILD2018-04-02 19:18:05 UTC (rev 320857)
@@ -1,129 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Andrea Scarpino 
-# Contributor: Pierre Schmitz 
-
-pkgname=apache
-pkgver=2.4.33
-pkgrel=2
-pkgdesc='A high performance Unix-based HTTP server'
-arch=('x86_64')
-url='http://www.apache.org/dist/httpd'
-license=('APACHE')
-backup=(
-etc/httpd/conf/httpd.conf
-etc/httpd/conf/extra/httpd-{autoindex,dav,default,info,languages}.conf
-etc/httpd/conf/extra/httpd-{manual,mpm,multilang-errordoc}.conf
-etc/httpd/conf/extra/httpd-{ssl,userdir,vhosts}.conf
-etc/httpd/conf/extra/proxy-html.conf
-etc/httpd/conf/{mime.types,magic}
-etc/logrotate.d/httpd
-)
-provides=('mod_proxy_uwsgi')
-depends=('zlib' 'apr-util' 'pcre' 'libnghttp2' 'openssl')
-makedepends=('libxml2' 'lua' 'curl' 'brotli' 'jansson')
-optdepends=(
-'lua: for mod_lua module'
-'libxml2: for mod_proxy_html, mod_xml2enc modules'
-'curl: for mod_md module'
-'jansson: for mod_md module'
-'brotli: for mod_brotli module'
-'lynx: apachectl status'
-)
-source=(
-https://www.apache.org/dist/httpd/httpd-${pkgver}.tar.bz2{,.asc}
-openssl-malloc-init.patch
-apache.tmpfiles.conf
-httpd.logrotate
-httpd.service
-arch.layout
-)
-sha256sums=('de02511859b00d17845b9abdd1f975d5ccb5d0b280c567da5bf2ad4b70846f05'
-'SKIP'
-'d305f8b52ac2a9bbda7bb0776496471e69e9d30642740f594d00086a8c7e344c'
-'63da1a420f4714a3e7af2672d28384419cc7eedbe7bf35baebd02938fabc15bf'
-'0bbbfae23a917b2fce0bf8f900f60319b50769224a96314e9301a75ccd078e16'
-'f574bac6d5f398e7a649fc0e1ca66ff01ad4ef34dac71258e93d8a9d9a2b3960'
-'dda05c6e76f12624e418ca18a36f2e90ec1c5b1cc52fed7142fce6076ec413f3')
-validpgpkeys=('A93D62ECC3C8EA12DB220EC934EA76E6791485A8' # Jim Jagielski
-  'B9E8213AEFB861AF35A41F2C995E35221AD84DFF') # Daniel Ruggeri 
-
-prepare() {
-  cd httpd-${pkgver}
-
-  # set default user
-  sed -e 's#User daemon#User http#' \
-  -e 's#Group daemon#Group http#' \
-  -i docs/conf/httpd.conf.in
-
-  cat "${srcdir}/arch.layout" >> config.layout
-
-  # https://github.com/openssl/openssl/issues/2865
-  patch -Np1 -i ../openssl-malloc-init.patch
-}
-
-build() {
-  cd httpd-${pkgver}
-
-  ./configure --sbindir=/usr/bin \
-  --enable-layout=Arch \
-  --enable-mpms-shared=all \
-  --enable-modules=all \
-  --enable-mods-shared=all \
-  --enable-so \
-  --enable-suexec \
-  --with-suexec-caller=http \
-  --with-suexec-docroot=/srv/http \
-  

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

2018-04-02 Thread Anatol Pomozov via arch-commits
Date: Monday, April 2, 2018 @ 19:17:03
  Author: anatolik
Revision: 320856

upgpkg: apache 2.4.33-3

FS#58005: fix mod_proxy_uwsgi conflicts/replaces statement

Modified:
  apache/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-04-02 19:10:29 UTC (rev 320855)
+++ PKGBUILD2018-04-02 19:17:03 UTC (rev 320856)
@@ -5,7 +5,7 @@
 
 pkgname=apache
 pkgver=2.4.33
-pkgrel=2
+pkgrel=3
 pkgdesc='A high performance Unix-based HTTP server'
 arch=('x86_64')
 url='http://www.apache.org/dist/httpd'
@@ -20,6 +20,8 @@
 etc/logrotate.d/httpd
 )
 provides=('mod_proxy_uwsgi')
+conflicts=('mod_proxy_uwsgi')
+replaces=('mod_proxy_uwsgi')
 depends=('zlib' 'apr-util' 'pcre' 'libnghttp2' 'openssl')
 makedepends=('libxml2' 'lua' 'curl' 'brotli' 'jansson')
 optdepends=(
@@ -28,6 +30,7 @@
 'curl: for mod_md module'
 'jansson: for mod_md module'
 'brotli: for mod_brotli module'
+'uwsgi: for mod_proxy_uwsgi module'
 'lynx: apachectl status'
 )
 source=(


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

2018-04-02 Thread Jürgen Hötzel via arch-commits
Date: Monday, April 2, 2018 @ 19:10:19
  Author: juergen
Revision: 320854

upgpkg: sbcl 1.4.6-1

Modified:
  sbcl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-04-02 19:07:58 UTC (rev 320853)
+++ PKGBUILD2018-04-02 19:10:19 UTC (rev 320854)
@@ -5,7 +5,7 @@
 # Contributor: Leslie Polzer (skypher)
 
 pkgname=sbcl
-pkgver=1.4.0
+pkgver=1.4.6
 pkgrel=1
 pkgdesc="Steel Bank Common Lisp"
 url="http://www.sbcl.org/;
@@ -16,7 +16,7 @@
 makedepends=('sbcl')
 
source=("https://downloads.sourceforge.net/project/sbcl/sbcl/$pkgver/$pkgname-$pkgver-source.tar.bz2;
   "arch-fixes.lisp")
-sha256sums=('08d59ca79f78311304664d5093764cda94ff2693d92736d1321fa6074b570769'
+sha256sums=('4411b01329d4dd531c8a0cb4036462fb4fd5f6e7abe2d521c6aa2a3adefb8678'
 'b5a6468dcbc1012cae2c3cda155762a37b6d96ef89bba4f723315063b0b5e7ce')
 
 


[arch-commits] Commit in sbcl/repos/extra-x86_64 (6 files)

2018-04-02 Thread Jürgen Hötzel via arch-commits
Date: Monday, April 2, 2018 @ 19:10:29
  Author: juergen
Revision: 320855

archrelease: copy trunk to extra-x86_64

Added:
  sbcl/repos/extra-x86_64/PKGBUILD
(from rev 320854, sbcl/trunk/PKGBUILD)
  sbcl/repos/extra-x86_64/arch-fixes.lisp
(from rev 320854, sbcl/trunk/arch-fixes.lisp)
  sbcl/repos/extra-x86_64/texinfo-4.13a-data_types.patch
(from rev 320854, sbcl/trunk/texinfo-4.13a-data_types.patch)
Deleted:
  sbcl/repos/extra-x86_64/PKGBUILD
  sbcl/repos/extra-x86_64/arch-fixes.lisp
  sbcl/repos/extra-x86_64/texinfo-4.13a-data_types.patch

+
 PKGBUILD   |  150 +++
 arch-fixes.lisp|   42 +-
 texinfo-4.13a-data_types.patch |   64 
 3 files changed, 128 insertions(+), 128 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-04-02 19:10:19 UTC (rev 320854)
+++ PKGBUILD2018-04-02 19:10:29 UTC (rev 320855)
@@ -1,75 +0,0 @@
-# $Id$
-# Contributor: John Proctor 
-# Contributor: Daniel White 
-# Maintainer: Juergen Hoetzel 
-# Contributor: Leslie Polzer (skypher)
-
-pkgname=sbcl
-pkgver=1.4.0
-pkgrel=1
-pkgdesc="Steel Bank Common Lisp"
-url="http://www.sbcl.org/;
-arch=('i686' 'x86_64')
-license=('custom')
-depends=('zlib')
-provides=('common-lisp' 'cl-asdf')
-makedepends=('sbcl')
-source=("https://downloads.sourceforge.net/project/sbcl/sbcl/$pkgver/$pkgname-$pkgver-source.tar.bz2;
-  "arch-fixes.lisp")
-sha256sums=('08d59ca79f78311304664d5093764cda94ff2693d92736d1321fa6074b570769'
-'b5a6468dcbc1012cae2c3cda155762a37b6d96ef89bba4f723315063b0b5e7ce')
-
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  export CFLAGS+=" -D_GNU_SOURCE -fno-omit-frame-pointer 
-DSBCL_HOME=/usr/lib/sbcl"
-  export GNUMAKE="make"
-
-  # build system uses LINKFLAGS and OS_LIBS to build LDFLAGS
-  export LINKFLAGS="$LDFLAGS"
-  unset LDFLAGS
-  unset MAKEFLAGS
-  if [[ ${CARCH} = x86_64  ]]; then
-enable_disable_largefile=enable
-  else
-enable_disable_largefile=disable
-  fi
-  # Make a multi-threaded SBCL, disable LARGEFILE
-  cat >customize-target-features.lisp <
+# Contributor: Daniel White 
+# Maintainer: Juergen Hoetzel 
+# Contributor: Leslie Polzer (skypher)
+
+pkgname=sbcl
+pkgver=1.4.6
+pkgrel=1
+pkgdesc="Steel Bank Common Lisp"
+url="http://www.sbcl.org/;
+arch=('x86_64')
+license=('custom')
+depends=('zlib')
+provides=('common-lisp' 'cl-asdf')
+makedepends=('sbcl')
+source=("https://downloads.sourceforge.net/project/sbcl/sbcl/$pkgver/$pkgname-$pkgver-source.tar.bz2;
+  "arch-fixes.lisp")
+sha256sums=('4411b01329d4dd531c8a0cb4036462fb4fd5f6e7abe2d521c6aa2a3adefb8678'
+'b5a6468dcbc1012cae2c3cda155762a37b6d96ef89bba4f723315063b0b5e7ce')
+
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  export CFLAGS+=" -D_GNU_SOURCE -fno-omit-frame-pointer 
-DSBCL_HOME=/usr/lib/sbcl"
+  export GNUMAKE="make"
+
+  # build system uses LINKFLAGS and OS_LIBS to build LDFLAGS
+  export LINKFLAGS="$LDFLAGS"
+  unset LDFLAGS
+  unset MAKEFLAGS
+  if [[ ${CARCH} = x86_64  ]]; then
+enable_disable_largefile=enable
+  else
+enable_disable_largefile=disable
+  fi
+  # Make a multi-threaded SBCL, disable LARGEFILE
+  cat >customize-target-features.lisp <= endp)
-   break;

Copied: sbcl/repos/extra-x86_64/texinfo-4.13a-data_types.patch (from rev 
320854, sbcl/trunk/texinfo-4.13a-data_types.patch)
===
--- texinfo-4.13a-data_types.patch  (rev 0)
+++ texinfo-4.13a-data_types.patch  2018-04-02 19:10:29 UTC (rev 320855)
@@ -0,0 +1,32 @@
+diff -up texinfo-4.13/info/window.c_old texinfo-4.13/info/window.c
+--- texinfo-4.13/info/window.c_old 2009-08-04 13:46:15.0 +0200
 texinfo-4.13/info/window.c 2009-08-04 13:47:29.0 +0200
+@@ -1581,7 +1581,7 @@ process_node_text (WINDOW *win, char *st
+   const char *carried_over_ptr;
+   size_t carried_over_len, carried_over_count;
+   const char *cur_ptr = mbi_cur_ptr (iter);
+-  int cur_len = mb_len (mbi_cur (iter));
++  size_t cur_len = mb_len (mbi_cur (iter));
+   int replen;
+   int delim = 0;
+   int rc;
+@@ -1754,7 +1754,7 @@ clean_manpage (char *manpage)
+mbi_advance (iter))
+ {
+   const char *cur_ptr = mbi_cur_ptr (iter);
+-  int cur_len = mb_len (mbi_cur (iter));
++  size_t cur_len = mb_len (mbi_cur (iter));
+ 
+   if (cur_len == 1)
+   {
+@@ -1852,8 +1852,8 @@ window_scan_line (WINDOW *win, int line,
+mbi_advance (iter))
+ {
+   const char *cur_ptr = mbi_cur_ptr (iter);
+-  int cur_len = mb_len (mbi_cur (iter));
+-  int replen;
++  size_t cur_len = mb_len (mbi_cur (iter));
++  size_t replen;
+ 
+   if (cur_ptr >= endp)
+   break;


[arch-commits] Commit in maxima/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2018-04-02 Thread Jürgen Hötzel via arch-commits
Date: Monday, April 2, 2018 @ 19:07:58
  Author: juergen
Revision: 320853

archrelease: copy trunk to extra-x86_64

Added:
  maxima/repos/extra-x86_64/PKGBUILD
(from rev 320852, maxima/trunk/PKGBUILD)
Deleted:
  maxima/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-04-02 19:07:45 UTC (rev 320852)
+++ PKGBUILD2018-04-02 19:07:58 UTC (rev 320853)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren 
-# Contributor: Damir Perisa 
-
-pkgname=maxima
-pkgver=5.41.0
-pkgrel=2
-pkgdesc="A sophisticated computer algebra system"
-arch=('i686' 'x86_64')
-license=('GPL')
-url="http://maxima.sourceforge.net;
-depends=('sbcl=1.4.0' 'texinfo' 'sh' 'shared-mime-info')
-makedepends=('python2' 'emacs')
-optdepends=('gnuplot: plotting capabilities' 'rlwrap: readline support via 
/usr/bin/rmaxima' 'tk: graphical xmaxima interface')
-# needs rebuild when bash changes version
-# needs a rebuild when sbcl changes version
-options=('!makeflags' '!zipman') # don't zip info pages or they won't work 
inside maxima
-source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz;)
-sha1sums=('0f69a6603d7334bfec6388151eeb768e8c5e7626')
-
-prepare() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  # set correct python executable to create docs
-  sed -i "s|${PYTHONBIN:-python}|python2|" doc/info/extract_categories.sh
-}
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  ./configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info \
-   --libexecdir=/usr/lib --enable-sbcl --with-default-lisp=sbcl
-
-  # help avoid (re)running makeinfo/tex
-  touch doc/info/maxima.info
-  make
-}
-
-#check() {  # test 23&129 fail from rtest_taylor
-#  cd "${srcdir}/${pkgname}-${pkgver}"
-#  make check
-#}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" emacsdir=/usr/share/emacs/site-lisp/maxima install
-}

Copied: maxima/repos/extra-x86_64/PKGBUILD (from rev 320852, 
maxima/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-04-02 19:07:58 UTC (rev 320853)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Ronald van Haren 
+# Contributor: Damir Perisa 
+
+pkgname=maxima
+pkgver=5.41.0
+pkgrel=3
+pkgdesc="A sophisticated computer algebra system"
+arch=('x86_64')
+license=('GPL')
+url="http://maxima.sourceforge.net;
+depends=('sbcl=1.4.6' 'texinfo' 'sh' 'shared-mime-info')
+makedepends=('python2' 'emacs')
+optdepends=('gnuplot: plotting capabilities' 'rlwrap: readline support via 
/usr/bin/rmaxima' 'tk: graphical xmaxima interface')
+# needs rebuild when bash changes version
+# needs a rebuild when sbcl changes version
+options=('!makeflags' '!zipman') # don't zip info pages or they won't work 
inside maxima
+source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz;)
+sha1sums=('0f69a6603d7334bfec6388151eeb768e8c5e7626')
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  # set correct python executable to create docs
+  sed -i "s|${PYTHONBIN:-python}|python2|" doc/info/extract_categories.sh
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info \
+   --libexecdir=/usr/lib --enable-sbcl --with-default-lisp=sbcl
+
+  # help avoid (re)running makeinfo/tex
+  touch doc/info/maxima.info
+  make
+}
+
+#check() {  # test 23&129 fail from rtest_taylor
+#  cd "${srcdir}/${pkgname}-${pkgver}"
+#  make check
+#}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" emacsdir=/usr/share/emacs/site-lisp/maxima install
+}


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

2018-04-02 Thread Jürgen Hötzel via arch-commits
Date: Monday, April 2, 2018 @ 19:07:45
  Author: juergen
Revision: 320852

sbcl-1.4.6 rebuild

Modified:
  maxima/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-04-02 18:35:36 UTC (rev 320851)
+++ PKGBUILD2018-04-02 19:07:45 UTC (rev 320852)
@@ -4,12 +4,12 @@
 
 pkgname=maxima
 pkgver=5.41.0
-pkgrel=2
+pkgrel=3
 pkgdesc="A sophisticated computer algebra system"
 arch=('x86_64')
 license=('GPL')
 url="http://maxima.sourceforge.net;
-depends=('sbcl=1.4.0' 'texinfo' 'sh' 'shared-mime-info')
+depends=('sbcl=1.4.6' 'texinfo' 'sh' 'shared-mime-info')
 makedepends=('python2' 'emacs')
 optdepends=('gnuplot: plotting capabilities' 'rlwrap: readline support via 
/usr/bin/rmaxima' 'tk: graphical xmaxima interface')
 # needs rebuild when bash changes version


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

2018-04-02 Thread Christian Hesse via arch-commits
Date: Monday, April 2, 2018 @ 19:03:33
  Author: eworm
Revision: 313917

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-04-02 19:03:28 UTC (rev 313916)
+++ PKGBUILD2018-04-02 19:03:33 UTC (rev 313917)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Christian Hesse 
-# Contributor: Karol Babioch 
-
-pkgname='yubikey-manager'
-pkgver=0.5.0
-pkgrel=1
-pkgdesc='Python library and command line tool for configuring a YubiKey'
-arch=('any')
-url='https://developers.yubico.com/yubikey-manager/'
-license=('BSD')
-depends=('python' 'python-click' 'python-cryptography' 'python-pyopenssl' 
'python-pyscard'
- 'python-pyusb' 'python-six' 'ccid' 'libu2f-host' 
'yubikey-personalization')
-makedepends=('python-setuptools')
-validpgpkeys=('8D0B4EBA9345254BCEC0E843514F078FF4AB24C3'  # Dag Heyman 

-  '57A9DEED4C6D962A923BB691816F3ED99921835E') # Emil Lundberg 
(Software Developer) 
-source=("https://developers.yubico.com/$pkgname/Releases/yubikey-manager-$pkgver.tar.gz"{,.sig})
-sha256sums=('c4a7c6f8af3c7f719a0c1dfcbe12440667c60137f74188ff8d4c5506bd631118'
-'SKIP')
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-
-   python setup.py install --root="${pkgdir}/" --optimize=1
-
-   install -D -m0644 COPYING 
"${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-}
-

Copied: yubikey-manager/repos/community-any/PKGBUILD (from rev 313916, 
yubikey-manager/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-04-02 19:03:33 UTC (rev 313917)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Christian Hesse 
+# Contributor: Karol Babioch 
+
+pkgname='yubikey-manager'
+pkgver=0.6.0
+pkgrel=1
+pkgdesc='Python library and command line tool for configuring a YubiKey'
+arch=('any')
+url='https://developers.yubico.com/yubikey-manager/'
+license=('BSD')
+depends=('python' 'python-click' 'python-cryptography' 'python-pyopenssl' 
'python-pyscard'
+ 'python-pyusb' 'python-six' 'ccid' 'libu2f-host' 
'yubikey-personalization')
+makedepends=('python-setuptools')
+validpgpkeys=('8D0B4EBA9345254BCEC0E843514F078FF4AB24C3'  # Dag Heyman 

+  '57A9DEED4C6D962A923BB691816F3ED99921835E') # Emil Lundberg 
(Software Developer) 
+source=("https://developers.yubico.com/$pkgname/Releases/yubikey-manager-$pkgver.tar.gz"{,.sig})
+sha256sums=('ab04a20832eed4312873fb25abaed7fe3040484e33a6a97ec33053ba37d1942c'
+'SKIP')
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   python setup.py install --root="${pkgdir}/" --optimize=1
+
+   install -D -m0644 COPYING 
"${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}
+


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

2018-04-02 Thread Christian Hesse via arch-commits
Date: Monday, April 2, 2018 @ 19:03:28
  Author: eworm
Revision: 313916

upgpkg: yubikey-manager 0.6.0-1

new upstream release

Modified:
  yubikey-manager/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-04-02 19:00:58 UTC (rev 313915)
+++ PKGBUILD2018-04-02 19:03:28 UTC (rev 313916)
@@ -3,7 +3,7 @@
 # Contributor: Karol Babioch 
 
 pkgname='yubikey-manager'
-pkgver=0.5.0
+pkgver=0.6.0
 pkgrel=1
 pkgdesc='Python library and command line tool for configuring a YubiKey'
 arch=('any')
@@ -15,7 +15,7 @@
 validpgpkeys=('8D0B4EBA9345254BCEC0E843514F078FF4AB24C3'  # Dag Heyman 

   '57A9DEED4C6D962A923BB691816F3ED99921835E') # Emil Lundberg 
(Software Developer) 
 
source=("https://developers.yubico.com/$pkgname/Releases/yubikey-manager-$pkgver.tar.gz"{,.sig})
-sha256sums=('c4a7c6f8af3c7f719a0c1dfcbe12440667c60137f74188ff8d4c5506bd631118'
+sha256sums=('ab04a20832eed4312873fb25abaed7fe3040484e33a6a97ec33053ba37d1942c'
 'SKIP')
 
 package() {


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

2018-04-02 Thread Christian Hesse via arch-commits
Date: Monday, April 2, 2018 @ 19:00:58
  Author: eworm
Revision: 313915

archrelease: copy trunk to community-x86_64

Added:
  python-pyodbc/repos/community-x86_64/PKGBUILD
(from rev 313914, python-pyodbc/trunk/PKGBUILD)
Deleted:
  python-pyodbc/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-04-02 19:00:53 UTC (rev 313914)
+++ PKGBUILD2018-04-02 19:00:58 UTC (rev 313915)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Christian Hesse 
-# Contributor: Robert Knauer 
-
-pkgbase=python-pyodbc
-pkgname=(python-pyodbc python2-pyodbc)
-_srcname=pyodbc
-pkgver=4.0.22
-pkgrel=1
-pkgdesc='ODBC module for Python'
-arch=('x86_64')
-url='https://github.com/mkleehammer/pyodbc'
-license=('MIT')
-makedepends=('python' 'python2' 'unixodbc')
-source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/mkleehammer/pyodbc/archive/${pkgver}.tar.gz;)
-sha256sums=('ddc8e676a559b8b1221ceb9c227fd5951c405fd4c7be3cbb57771cd0bf9cb217')
-
-prepare() {
-   echo "Version: ${pkgver}.0" > "${srcdir}/${_srcname}-${pkgver}/PKG-INFO"
-}
-
-package_python-pyodbc() {
-   pkgdesc='ODBC module for Python 3.x'
-   depends=('python' 'unixodbc')
-
-   cd "${srcdir}/${_srcname}-${pkgver}"
-
-   python setup.py install --root="${pkgdir}/" --optimize=1
-}
-
-package_python2-pyodbc() {
-   pkgdesc='ODBC module for Python 2.x'
-   depends=('python2' 'unixodbc')
-
-   cd "${srcdir}/${_srcname}-${pkgver}"
-
-   python2 setup.py install --root="${pkgdir}/" --optimize=1
-}
-

Copied: python-pyodbc/repos/community-x86_64/PKGBUILD (from rev 313914, 
python-pyodbc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-04-02 19:00:58 UTC (rev 313915)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Christian Hesse 
+# Contributor: Robert Knauer 
+
+pkgbase=python-pyodbc
+pkgname=(python-pyodbc python2-pyodbc)
+_srcname=pyodbc
+pkgver=4.0.23
+pkgrel=1
+pkgdesc='ODBC module for Python'
+arch=('x86_64')
+url='https://github.com/mkleehammer/pyodbc'
+license=('MIT')
+makedepends=('python' 'python2' 'unixodbc')
+source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/mkleehammer/pyodbc/archive/${pkgver}.tar.gz;)
+sha256sums=('00a104b7aa619ebed96828439aeb5b19ec27b7dd7d6876ec5fc8b087579a351c')
+
+prepare() {
+   echo "Version: ${pkgver}.0" > "${srcdir}/${_srcname}-${pkgver}/PKG-INFO"
+}
+
+package_python-pyodbc() {
+   pkgdesc='ODBC module for Python 3.x'
+   depends=('python' 'unixodbc')
+
+   cd "${srcdir}/${_srcname}-${pkgver}"
+
+   python setup.py install --root="${pkgdir}/" --optimize=1
+}
+
+package_python2-pyodbc() {
+   pkgdesc='ODBC module for Python 2.x'
+   depends=('python2' 'unixodbc')
+
+   cd "${srcdir}/${_srcname}-${pkgver}"
+
+   python2 setup.py install --root="${pkgdir}/" --optimize=1
+}
+


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

2018-04-02 Thread Christian Hesse via arch-commits
Date: Monday, April 2, 2018 @ 19:00:53
  Author: eworm
Revision: 313914

upgpkg: python-pyodbc 4.0.23-1

new upstream release

Modified:
  python-pyodbc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-04-02 17:49:56 UTC (rev 313913)
+++ PKGBUILD2018-04-02 19:00:53 UTC (rev 313914)
@@ -5,7 +5,7 @@
 pkgbase=python-pyodbc
 pkgname=(python-pyodbc python2-pyodbc)
 _srcname=pyodbc
-pkgver=4.0.22
+pkgver=4.0.23
 pkgrel=1
 pkgdesc='ODBC module for Python'
 arch=('x86_64')
@@ -13,7 +13,7 @@
 license=('MIT')
 makedepends=('python' 'python2' 'unixodbc')
 
source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/mkleehammer/pyodbc/archive/${pkgver}.tar.gz;)
-sha256sums=('ddc8e676a559b8b1221ceb9c227fd5951c405fd4c7be3cbb57771cd0bf9cb217')
+sha256sums=('00a104b7aa619ebed96828439aeb5b19ec27b7dd7d6876ec5fc8b087579a351c')
 
 prepare() {
echo "Version: ${pkgver}.0" > "${srcdir}/${_srcname}-${pkgver}/PKG-INFO"


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

2018-04-02 Thread Christian Hesse via arch-commits
Date: Monday, April 2, 2018 @ 18:35:36
  Author: eworm
Revision: 320851

archrelease: copy trunk to testing-x86_64

Added:
  iproute2/repos/testing-x86_64/
  iproute2/repos/testing-x86_64/0001-make-iproute2-fhs-compliant.patch
(from rev 320850, iproute2/trunk/0001-make-iproute2-fhs-compliant.patch)
  iproute2/repos/testing-x86_64/PKGBUILD
(from rev 320850, iproute2/trunk/PKGBUILD)

+
 0001-make-iproute2-fhs-compliant.patch |  101 +++
 PKGBUILD   |   63 +++
 2 files changed, 164 insertions(+)

Copied: iproute2/repos/testing-x86_64/0001-make-iproute2-fhs-compliant.patch 
(from rev 320850, iproute2/trunk/0001-make-iproute2-fhs-compliant.patch)
===
--- testing-x86_64/0001-make-iproute2-fhs-compliant.patch   
(rev 0)
+++ testing-x86_64/0001-make-iproute2-fhs-compliant.patch   2018-04-02 
18:35:36 UTC (rev 320851)
@@ -0,0 +1,101 @@
+From f0624f6cc656cb177b64e2664f2a806221bfab58 Mon Sep 17 00:00:00 2001
+From: Christian Hesse 
+Date: Thu, 28 Jul 2016 08:49:20 +0200
+Subject: [PATCH 1/1] make iproute2 fhs compliant
+
+Signed-off-by: Christian Hesse 
+---
+ Makefile   |  2 +-
+ netem/Makefile |  4 ++--
+ tc/q_netem.c   |  2 +-
+ tc/tc_util.c   | 15 +++
+ tc/tc_util.h   |  1 +
+ 5 files changed, 20 insertions(+), 4 deletions(-)
+
+diff --git a/Makefile b/Makefile
+index eb571a5..db0a04c 100644
+--- a/Makefile
 b/Makefile
+@@ -14,7 +14,7 @@ DBM_INCLUDE:=$(DESTDIR)/usr/include
+ 
+ SHARED_LIBS = y
+ 
+-DEFINES= -DRESOLVE_HOSTNAMES -DLIBDIR=\"$(LIBDIR)\"
++DEFINES= -DRESOLVE_HOSTNAMES -DLIBDIR=\"$(LIBDIR)\" -DDATADIR=\"$(DATADIR)\"
+ ifneq ($(SHARED_LIBS),y)
+ DEFINES+= -DNO_SHARED_LIBS
+ endif
+diff --git a/netem/Makefile b/netem/Makefile
+index e52e125..5b4d283 100644
+--- a/netem/Makefile
 b/netem/Makefile
+@@ -20,9 +20,9 @@ stats: stats.c
+   $(HOSTCC) $(CCOPTS) -I../include -o $@ $@.c -lm
+ 
+ install: all
+-  mkdir -p $(DESTDIR)$(LIBDIR)/tc
++  mkdir -p $(DESTDIR)$(DATADIR)/tc
+   for i in $(DISTDATA); \
+-  do install -m 644 $$i $(DESTDIR)$(LIBDIR)/tc; \
++  do install -m 644 $$i $(DESTDIR)$(DATADIR)/tc; \
+   done
+ 
+ clean:
+diff --git a/tc/q_netem.c b/tc/q_netem.c
+index 8fe2204..a15a5c7 100644
+--- a/tc/q_netem.c
 b/tc/q_netem.c
+@@ -113,7 +113,7 @@ static int get_distribution(const char *type, __s16 *data, 
int maxdata)
+   char *line = NULL;
+   char name[128];
+ 
+-  snprintf(name, sizeof(name), "%s/%s.dist", get_tc_lib(), type);
++  snprintf(name, sizeof(name), "%s/%s.dist", get_tc_datadir(), type);
+   if ((f = fopen(name, "r")) == NULL) {
+   fprintf(stderr, "No distribution data for %s (%s: %s)\n",
+   type, name, strerror(errno));
+diff --git a/tc/tc_util.c b/tc/tc_util.c
+index afc4cf5..728b854 100644
+--- a/tc/tc_util.c
 b/tc/tc_util.c
+@@ -32,6 +32,10 @@
+ #define LIBDIR "/usr/lib"
+ #endif
+ 
++#ifndef DATADIR
++#define DATADIR "/usr/share"
++#endif
++
+ static struct db_names *cls_names;
+ 
+ #define NAMES_DB "/etc/iproute2/tc_cls"
+@@ -73,6 +77,17 @@ const char *get_tc_lib(void)
+   return lib_dir;
+ }
+ 
++const char *get_tc_datadir(void)
++{
++  const char *data_dir;
++
++  data_dir = getenv("TC_DATA_DIR");
++  if (!data_dir)
++  data_dir = DATADIR "/tc/";
++
++  return data_dir;
++}
++
+ int get_qdisc_handle(__u32 *h, const char *str)
+ {
+   __u32 maj;
+diff --git a/tc/tc_util.h b/tc/tc_util.h
+index 61e60b1..6d448de 100644
+--- a/tc/tc_util.h
 b/tc/tc_util.h
+@@ -55,6 +55,7 @@ struct exec_util {
+ };
+ 
+ const char *get_tc_lib(void);
++const char *get_tc_datadir(void);
+ 
+ struct qdisc_util *get_qdisc_kind(const char *str);
+ struct filter_util *get_filter_kind(const char *str);

Copied: iproute2/repos/testing-x86_64/PKGBUILD (from rev 320850, 
iproute2/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2018-04-02 18:35:36 UTC (rev 320851)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Christian Hesse 
+# Maintainer: Ronald van Haren 
+# Contributor: Judd Vinet 
+
+pkgname=iproute2
+pkgver=4.16.0
+pkgrel=1
+pkgdesc='IP Routing Utilities'
+arch=('x86_64')
+license=('GPL2')
+url='https://git.kernel.org/pub/scm/network/iproute2/iproute2.git'
+depends=('glibc' 'iptables' 'libelf')
+optdepends=('linux-atm: ATM support')
+groups=('base')
+provides=('iproute')
+# Upstream commit b2fd7a0e6efa7b85a041b5cb9ea6fc1a6a798fd3 removed old 
documentation.
+# Add conflict and replace to get rid of the package. TODO: Remove anytime 
soon.
+conflicts=('iproute' 'iproute2-doc')
+replaces=('iproute' 'iproute2-doc')
+backup=('etc/iproute2/ematch_map'
+   

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

2018-04-02 Thread Christian Hesse via arch-commits
Date: Monday, April 2, 2018 @ 18:35:30
  Author: eworm
Revision: 320850

upgpkg: iproute2 4.16.0-1

new upstream release

Modified:
  iproute2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-04-02 17:49:45 UTC (rev 320849)
+++ PKGBUILD2018-04-02 18:35:30 UTC (rev 320850)
@@ -4,7 +4,7 @@
 # Contributor: Judd Vinet 
 
 pkgname=iproute2
-pkgver=4.15.0
+pkgver=4.16.0
 pkgrel=1
 pkgdesc='IP Routing Utilities'
 arch=('x86_64')
@@ -29,7 +29,7 @@
 validpgpkeys=('9F6FC345B05BE7E766B83C8F80A77F6095CDE47E') # Stephen Hemminger
 
source=("https://www.kernel.org/pub/linux/utils/net/${pkgname}/${pkgname}-${pkgver}.tar."{xz,sign}
 '0001-make-iproute2-fhs-compliant.patch')
-sha256sums=('48d4616a99d7b609b7b795c0ae8ec57099fb0271ed89253e8772c02327798355'
+sha256sums=('0c5c24020fd7349fe25728c5edee9fb6a1bc8a38f08e23be5c57a6301e55ee0a'
 'SKIP'
 'f60fefe4c17d3b768824bb50ae6416292bcebba06d73452e23f4147b46b827d3')
 


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

2018-04-02 Thread Jaroslav Lichtblau via arch-commits
Date: Monday, April 2, 2018 @ 17:49:56
  Author: jlichtblau
Revision: 313913

archrelease: copy trunk to community-x86_64

Added:
  homebank/repos/community-x86_64/PKGBUILD
(from rev 313912, homebank/trunk/PKGBUILD)
  homebank/repos/community-x86_64/homebank.changelog
(from rev 313912, homebank/trunk/homebank.changelog)
Deleted:
  homebank/repos/community-x86_64/PKGBUILD
  homebank/repos/community-x86_64/homebank.changelog

+
 PKGBUILD   |   60 +-
 homebank.changelog |  169 +--
 2 files changed, 116 insertions(+), 113 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-04-02 17:49:37 UTC (rev 313912)
+++ PKGBUILD2018-04-02 17:49:56 UTC (rev 313913)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: William Rea 
-
-pkgname=homebank
-pkgver=5.1.7
-pkgrel=1
-pkgdesc="Free, easy, personal accounting for everyone"
-arch=('x86_64')
-url="http://homebank.free.fr/;
-license=('GPL')
-depends=('desktop-file-utils' 'gtk3' 'hicolor-icon-theme' 'libofx'
- 'librsvg' 'perl-xml-parser' 'shared-mime-info' 'libsoup')
-makedepends=('intltool')
-changelog=$pkgname.changelog
-source=(http://homebank.free.fr/public/$pkgname-$pkgver.tar.gz)
-sha256sums=('579e53c00764b78d79e8e388b9202c760a9c9efdaca83b32d948f92e0dfa5fa7')
-
-build() {
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  make DESTDIR="${pkgdir}" install
-}

Copied: homebank/repos/community-x86_64/PKGBUILD (from rev 313912, 
homebank/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-04-02 17:49:56 UTC (rev 313913)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: William Rea 
+
+pkgname=homebank
+pkgver=5.1.8
+pkgrel=1
+pkgdesc="Free, easy, personal accounting for everyone"
+arch=('x86_64')
+url="http://homebank.free.fr/;
+license=('GPL')
+depends=('desktop-file-utils' 'gtk3' 'hicolor-icon-theme' 'libofx'
+ 'librsvg' 'perl-xml-parser' 'shared-mime-info' 'libsoup')
+makedepends=('intltool')
+changelog=$pkgname.changelog
+source=(http://homebank.free.fr/public/$pkgname-$pkgver.tar.gz)
+sha256sums=('1083fcbc609cbc981a42c63d84a09cc7dc3dd40f57d29e08b720be2b3eaff23b')
+
+build() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  make DESTDIR="${pkgdir}" install
+}

Deleted: homebank.changelog
===
--- homebank.changelog  2018-04-02 17:49:37 UTC (rev 313912)
+++ homebank.changelog  2018-04-02 17:49:56 UTC (rev 313913)
@@ -1,83 +0,0 @@
-2018-01-07 Jaroslav Lichtblau 
-   * homebank 5.1.7-1
-
-2017-09-16 Jaroslav Lichtblau 
-   * homebank 5.1.6-1
-
-2017-05-11 Jaroslav Lichtblau 
-   * homebank 5.1.5-1
-
-2017-02-16 Jaroslav Lichtblau 
-   * homebank 5.1.4-1
-
-2017-01-23 Jaroslav Lichtblau 
-   * homebank 5.1.3-1
-
-2016-12-08 Jaroslav Lichtblau 
-   * homebank 5.1.2-1
-
-2016-11-06 Jaroslav Lichtblau 
-   * homebank 5.1.1-1
-
-2016-10-17 Jaroslav Lichtblau 
-   * homebank 5.1-1
-
-2016-07-25 Jaroslav Lichtblau 
-   * homebank 5.0.9-1
-
-2016-05-22 Jaroslav Lichtblau 
-   * homebank 5.0.8-1
-
-2016-05-09 Jaroslav Lichtblau 
-   * homebank 5.0.7-1
-
-2016-04-29 Jaroslav Lichtblau 
-   * homebank 5.0.6-2 pacman hooks rebuild
-
-2015-11-01 Jaroslav Lichtblau 
-   * homebank 5.0.6-1
-
-2015-09-26 Jaroslav Lichtblau 
-   * homebank 5.0.5-1
-
-2015-06-15 Jaroslav Lichtblau 
-   * homebank 5.0.3-1
-
-2015-05-14 Jaroslav Lichtblau 
-   * homebank 5.0.2-1
-
-2015-04-18 Jaroslav Lichtblau 
-   * homebank 5.0.1-1
-
-2015-02-08 Jaroslav Lichtblau 
-   * homebank 5.0.0-1
-
-2014-08-10 Jaroslav Lichtblau 
-   * homebank 4.6.3-1
-
-2014-07-29 Jaroslav Lichtblau 
-   * homebank 4.6.2-1
-
-2014-06-28 Jaroslav Lichtblau 
-   * homebank 4.6.1-1
-
-2014-03-02 Jaroslav Lichtblau 
-   * homebank 4.5.6-1
-
-2014-02-04 Jaroslav Lichtblau 
- 

[arch-commits] Commit in homebank/trunk (PKGBUILD homebank.changelog)

2018-04-02 Thread Jaroslav Lichtblau via arch-commits
Date: Monday, April 2, 2018 @ 17:49:37
  Author: jlichtblau
Revision: 313912

upgpkg: homebank 5.1.8-1 - new upstream release

Modified:
  homebank/trunk/PKGBUILD
  homebank/trunk/homebank.changelog

+
 PKGBUILD   |4 ++--
 homebank.changelog |3 +++
 2 files changed, 5 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-04-02 17:46:16 UTC (rev 313911)
+++ PKGBUILD2018-04-02 17:49:37 UTC (rev 313912)
@@ -3,7 +3,7 @@
 # Contributor: William Rea 
 
 pkgname=homebank
-pkgver=5.1.7
+pkgver=5.1.8
 pkgrel=1
 pkgdesc="Free, easy, personal accounting for everyone"
 arch=('x86_64')
@@ -14,7 +14,7 @@
 makedepends=('intltool')
 changelog=$pkgname.changelog
 source=(http://homebank.free.fr/public/$pkgname-$pkgver.tar.gz)
-sha256sums=('579e53c00764b78d79e8e388b9202c760a9c9efdaca83b32d948f92e0dfa5fa7')
+sha256sums=('1083fcbc609cbc981a42c63d84a09cc7dc3dd40f57d29e08b720be2b3eaff23b')
 
 build() {
   cd "${srcdir}"/$pkgname-$pkgver

Modified: homebank.changelog
===
--- homebank.changelog  2018-04-02 17:46:16 UTC (rev 313911)
+++ homebank.changelog  2018-04-02 17:49:37 UTC (rev 313912)
@@ -1,3 +1,6 @@
+2018-04-02 Jaroslav Lichtblau 
+   * homebank 5.1.8-1
+
 2018-01-07 Jaroslav Lichtblau 
* homebank 5.1.7-1
 


[arch-commits] Commit in kmail/kde-unstable (PKGBUILD)

2018-04-02 Thread Antonio Rojas via arch-commits
Date: Monday, April 2, 2018 @ 17:49:45
  Author: arojas
Revision: 320849

libktnef rename

Modified:
  kmail/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-04-02 17:47:29 UTC (rev 320848)
+++ PKGBUILD2018-04-02 17:49:45 UTC (rev 320849)
@@ -9,7 +9,7 @@
 url="https://community.kde.org/KDE_PIM;
 license=(GPL2)
 depends=(kdepim-runtime kmail-account-wizard akonadi-import-wizard 
mbox-importer
- pim-data-exporter pim-sieve-editor kontactinterface libktnef)
+ pim-data-exporter pim-sieve-editor kontactinterface ktnef)
 makedepends=(extra-cmake-modules kdoctools boost python)
 optdepends=('kleopatra: mail encryption support' 'kdepim-addons: additional 
plugins')
 conflicts=('ktnef<18')


[arch-commits] Commit in kdepim-addons/kde-unstable (PKGBUILD)

2018-04-02 Thread Antonio Rojas via arch-commits
Date: Monday, April 2, 2018 @ 17:47:29
  Author: arojas
Revision: 320848

libktnef rename

Modified:
  kdepim-addons/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-04-02 17:46:22 UTC (rev 320847)
+++ PKGBUILD2018-04-02 17:47:29 UTC (rev 320848)
@@ -8,7 +8,7 @@
 arch=(x86_64)
 url='https://community.kde.org/KDE_PIM'
 license=(GPL LGPL FDL)
-depends=(incidenceeditor libktnef libksieve akonadi-notes 
akonadi-import-wizard kparts poppler-qt5)
+depends=(incidenceeditor ktnef libksieve akonadi-notes akonadi-import-wizard 
kparts poppler-qt5)
 makedepends=(extra-cmake-modules kdoctools boost python)
 groups=(kde-applications kdepim)
 
source=("https://download.kde.org/unstable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})


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

2018-04-02 Thread Jaroslav Lichtblau via arch-commits
Date: Monday, April 2, 2018 @ 17:46:03
  Author: jlichtblau
Revision: 313910

upgpkg: libalkimia 7.0.1-1 - new upstream release

Modified:
  libalkimia/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-04-02 17:43:08 UTC (rev 313909)
+++ PKGBUILD2018-04-02 17:46:03 UTC (rev 313910)
@@ -4,8 +4,8 @@
 # Contributor: gumper 
 
 pkgname=libalkimia
-pkgver=7.0
-pkgrel=4
+pkgver=7.0.1
+pkgrel=1
 pkgdesc="A library with common classes and functionality used by finance 
applications for the KDE SC"
 arch=('x86_64')
 url="http://kde-apps.org/content/show.php/libalkimia?content=137323;
@@ -14,7 +14,7 @@
 makedepends=('cmake' 'doxygen' 'extra-cmake-modules')
 
source=(http://download.kde.org/stable/alkimia/$pkgver/src/alkimia-$pkgver.tar.xz{,.sig})
 validpgpkeys=('D69A745A55331F44F404D8258D4DE062AA2EB01C') #Thomas Baumgart 

-sha256sums=('0c70d0d3b6c020d5bcf92b6f1c395f3bad53a08d4e2b2c17e70c2079e9f43158'
+sha256sums=('42c49025b3f8489dcbc5df55101ef95bc920e160b9d5ecf573a88062883931bb'
 'SKIP')
 
 build() {


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

2018-04-02 Thread Jaroslav Lichtblau via arch-commits
Date: Monday, April 2, 2018 @ 17:46:16
  Author: jlichtblau
Revision: 313911

archrelease: copy trunk to community-staging-x86_64

Added:
  libalkimia/repos/community-staging-x86_64/
  libalkimia/repos/community-staging-x86_64/PKGBUILD
(from rev 313910, libalkimia/trunk/PKGBUILD)

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

Copied: libalkimia/repos/community-staging-x86_64/PKGBUILD (from rev 313910, 
libalkimia/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-04-02 17:46:16 UTC (rev 313911)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Laurent Carlier 
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: gumper 
+
+pkgname=libalkimia
+pkgver=7.0.1
+pkgrel=1
+pkgdesc="A library with common classes and functionality used by finance 
applications for the KDE SC"
+arch=('x86_64')
+url="http://kde-apps.org/content/show.php/libalkimia?content=137323;
+license=('LGPL')
+depends=('qt5-base')
+makedepends=('cmake' 'doxygen' 'extra-cmake-modules')
+source=(http://download.kde.org/stable/alkimia/$pkgver/src/alkimia-$pkgver.tar.xz{,.sig})
+validpgpkeys=('D69A745A55331F44F404D8258D4DE062AA2EB01C') #Thomas Baumgart 

+sha256sums=('42c49025b3f8489dcbc5df55101ef95bc920e160b9d5ecf573a88062883931bb'
+'SKIP')
+
+build() {
+  cd "${srcdir}"
+
+  mkdir build
+  cd build
+
+  cmake ../alkimia-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DCMAKE_BUILD_TYPE=Release \
+-Wno-dev
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+
+  make DESTDIR="${pkgdir}" install
+}


[arch-commits] Commit in libktnef (kde-unstable)

2018-04-02 Thread Antonio Rojas via arch-commits
Date: Monday, April 2, 2018 @ 17:46:22
  Author: arojas
Revision: 320847

cleanup

Deleted:
  libktnef/kde-unstable/


[arch-commits] Commit in ktnef (3 files)

2018-04-02 Thread Antonio Rojas via arch-commits
Date: Monday, April 2, 2018 @ 17:45:35
  Author: arojas
Revision: 320845

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  ktnef/repos/
  ktnef/repos/kde-unstable-x86_64/
  ktnef/repos/kde-unstable-x86_64/PKGBUILD
(from rev 320844, ktnef/kde-unstable/PKGBUILD)

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

Copied: ktnef/repos/kde-unstable-x86_64/PKGBUILD (from rev 320844, 
ktnef/kde-unstable/PKGBUILD)
===
--- repos/kde-unstable-x86_64/PKGBUILD  (rev 0)
+++ repos/kde-unstable-x86_64/PKGBUILD  2018-04-02 17:45:35 UTC (rev 320845)
@@ -0,0 +1,37 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=ktnef
+pkgver=18.03.80
+pkgrel=1
+pkgdesc="API for handling TNEF data"
+arch=(x86_64)
+url="https://community.kde.org/KDE_PIM;
+license=(LGPL)
+depends=(kcalutils kcontacts)
+makedepends=(extra-cmake-modules python)
+conflicts=(libktnef)
+provides=(libktnef)
+replaces=(libktnef)
+source=("https://download.kde.org/unstable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('c51103e3014bf66abafb870e4d691ba2853fd19f0743e8a0d540066a60bbc2e0'
+'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in kmail/repos/kde-unstable-x86_64 (PKGBUILD PKGBUILD)

2018-04-02 Thread Antonio Rojas via arch-commits
Date: Monday, April 2, 2018 @ 17:45:07
  Author: arojas
Revision: 320844

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  kmail/repos/kde-unstable-x86_64/PKGBUILD
(from rev 320843, kmail/kde-unstable/PKGBUILD)
Deleted:
  kmail/repos/kde-unstable-x86_64/PKGBUILD

--+
 PKGBUILD |   80 ++---
 1 file changed, 40 insertions(+), 40 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-04-02 17:44:35 UTC (rev 320843)
+++ PKGBUILD2018-04-02 17:45:07 UTC (rev 320844)
@@ -1,40 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Maintainer: Felix Yan 
-
-pkgname=kmail
-pkgver=18.03.80
-pkgrel=1
-pkgdesc="KDE mail client"
-arch=(x86_64)
-url="https://community.kde.org/KDE_PIM;
-license=(GPL2)
-depends=(kdepim-runtime kmail-account-wizard akonadi-import-wizard 
mbox-importer
- pim-data-exporter pim-sieve-editor kontactinterface libktnef)
-makedepends=(extra-cmake-modules kdoctools boost python)
-optdepends=('kleopatra: mail encryption support' 'kdepim-addons: additional 
plugins')
-conflicts=(ktnef)
-replaces=(ktnef)
-groups=(kde-applications kdepim)
-source=("https://download.kde.org/unstable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('8f21ce80a3bc78578fe2e156236aa7d155b091655793de6a3f03cffa21761c3b'
-'SKIP')
-validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

-  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kmail/repos/kde-unstable-x86_64/PKGBUILD (from rev 320843, 
kmail/kde-unstable/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-04-02 17:45:07 UTC (rev 320844)
@@ -0,0 +1,40 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgname=kmail
+pkgver=18.03.80
+pkgrel=2
+pkgdesc="KDE mail client"
+arch=(x86_64)
+url="https://community.kde.org/KDE_PIM;
+license=(GPL2)
+depends=(kdepim-runtime kmail-account-wizard akonadi-import-wizard 
mbox-importer
+ pim-data-exporter pim-sieve-editor kontactinterface libktnef)
+makedepends=(extra-cmake-modules kdoctools boost python)
+optdepends=('kleopatra: mail encryption support' 'kdepim-addons: additional 
plugins')
+conflicts=('ktnef<18')
+replaces=('ktnef<18')
+groups=(kde-applications kdepim)
+source=("https://download.kde.org/unstable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('8f21ce80a3bc78578fe2e156236aa7d155b091655793de6a3f03cffa21761c3b'
+'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in (ktnef ktnef/kde-unstable ktnef/kde-unstable/PKGBUILD)

2018-04-02 Thread Antonio Rojas via arch-commits
Date: Monday, April 2, 2018 @ 17:44:35
  Author: arojas
Revision: 320843

Use upstream name

Added:
  ktnef/
  ktnef/kde-unstable/
  ktnef/kde-unstable/PKGBUILD

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

Added: ktnef/kde-unstable/PKGBUILD
===
--- ktnef/kde-unstable/PKGBUILD (rev 0)
+++ ktnef/kde-unstable/PKGBUILD 2018-04-02 17:44:35 UTC (rev 320843)
@@ -0,0 +1,37 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=ktnef
+pkgver=18.03.80
+pkgrel=1
+pkgdesc="API for handling TNEF data"
+arch=(x86_64)
+url="https://community.kde.org/KDE_PIM;
+license=(LGPL)
+depends=(kcalutils kcontacts)
+makedepends=(extra-cmake-modules python)
+conflicts=(libktnef)
+provides=(libktnef)
+replaces=(libktnef)
+source=("https://download.kde.org/unstable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('c51103e3014bf66abafb870e4d691ba2853fd19f0743e8a0d540066a60bbc2e0'
+'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck 

+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2018-04-02 Thread Jaroslav Lichtblau via arch-commits
Date: Monday, April 2, 2018 @ 17:43:08
  Author: jlichtblau
Revision: 313909

archrelease: copy trunk to community-x86_64

Added:
  movit/repos/community-x86_64/PKGBUILD
(from rev 313908, movit/trunk/PKGBUILD)
Deleted:
  movit/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-04-02 17:42:52 UTC (rev 313908)
+++ PKGBUILD2018-04-02 17:43:08 UTC (rev 313909)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Evert Vorster 
-# Contributor: Martin Sandsmark 
-
-pkgname=movit
-pkgver=1.6.1
-pkgrel=1
-pkgdesc="The modern video toolkit"
-arch=('x86_64')
-url="http://movit.sesse.net/;
-license=('GPL')
-depends=('fftw' 'libepoxy')
-makedepends=('eigen' 'gtest' 'sdl2')
-source=(https://movit.sesse.net/$pkgname-$pkgver.tar.gz)
-sha256sums=('5dfbaedb77f79c413792cb84d7aefe381d8d86cdd432c6e39a7f5ceed7d60a90')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make DESTDIR="$pkgdir" install
-}

Copied: movit/repos/community-x86_64/PKGBUILD (from rev 313908, 
movit/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-04-02 17:43:08 UTC (rev 313909)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Evert Vorster 
+# Contributor: Martin Sandsmark 
+
+pkgname=movit
+pkgver=1.6.2
+pkgrel=1
+pkgdesc="The modern video toolkit"
+arch=('x86_64')
+url="http://movit.sesse.net/;
+license=('GPL')
+depends=('fftw' 'libepoxy')
+makedepends=('eigen' 'gtest' 'sdl2')
+source=(https://movit.sesse.net/$pkgname-$pkgver.tar.gz)
+sha256sums=('7428d56c23a38224c9333b8bb4a0c4f6b171ba64d4799c16516d40b30d0230e1')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR="$pkgdir" install
+}


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

2018-04-02 Thread Jaroslav Lichtblau via arch-commits
Date: Monday, April 2, 2018 @ 17:42:52
  Author: jlichtblau
Revision: 313908

upgpkg: movit 1.6.2-1 - new upstream release

Modified:
  movit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-04-02 17:21:42 UTC (rev 313907)
+++ PKGBUILD2018-04-02 17:42:52 UTC (rev 313908)
@@ -4,7 +4,7 @@
 # Contributor: Martin Sandsmark 
 
 pkgname=movit
-pkgver=1.6.1
+pkgver=1.6.2
 pkgrel=1
 pkgdesc="The modern video toolkit"
 arch=('x86_64')
@@ -13,7 +13,7 @@
 depends=('fftw' 'libepoxy')
 makedepends=('eigen' 'gtest' 'sdl2')
 source=(https://movit.sesse.net/$pkgname-$pkgver.tar.gz)
-sha256sums=('5dfbaedb77f79c413792cb84d7aefe381d8d86cdd432c6e39a7f5ceed7d60a90')
+sha256sums=('7428d56c23a38224c9333b8bb4a0c4f6b171ba64d4799c16516d40b30d0230e1')
 
 build() {
   cd $pkgname-$pkgver


[arch-commits] Commit in kmail/kde-unstable (PKGBUILD)

2018-04-02 Thread Antonio Rojas via arch-commits
Date: Monday, April 2, 2018 @ 17:40:16
  Author: arojas
Revision: 320842

Version ktnef conflicts

Modified:
  kmail/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-04-02 15:56:39 UTC (rev 320841)
+++ PKGBUILD2018-04-02 17:40:16 UTC (rev 320842)
@@ -3,7 +3,7 @@
 
 pkgname=kmail
 pkgver=18.03.80
-pkgrel=1
+pkgrel=2
 pkgdesc="KDE mail client"
 arch=(x86_64)
 url="https://community.kde.org/KDE_PIM;
@@ -12,8 +12,8 @@
  pim-data-exporter pim-sieve-editor kontactinterface libktnef)
 makedepends=(extra-cmake-modules kdoctools boost python)
 optdepends=('kleopatra: mail encryption support' 'kdepim-addons: additional 
plugins')
-conflicts=(ktnef)
-replaces=(ktnef)
+conflicts=('ktnef<18')
+replaces=('ktnef<18')
 groups=(kde-applications kdepim)
 
source=("https://download.kde.org/unstable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
 sha256sums=('8f21ce80a3bc78578fe2e156236aa7d155b091655793de6a3f03cffa21761c3b'


[arch-commits] Commit in ario/repos/community-x86_64 (6 files)

2018-04-02 Thread Jaroslav Lichtblau via arch-commits
Date: Monday, April 2, 2018 @ 17:21:42
  Author: jlichtblau
Revision: 313907

archrelease: copy trunk to community-x86_64

Added:
  ario/repos/community-x86_64/PKGBUILD
(from rev 313906, ario/trunk/PKGBUILD)
  ario/repos/community-x86_64/ario.changelog
(from rev 313906, ario/trunk/ario.changelog)
Deleted:
  ario/repos/community-x86_64/PKGBUILD
  ario/repos/community-x86_64/ario.changelog
  ario/repos/community-x86_64/drop-libunique.patch
  ario/repos/community-x86_64/glib.patch

--+
 PKGBUILD |   75 +
 ario.changelog   |   81 +
 drop-libunique.patch |   65 ---
 glib.patch   |   24 --
 4 files changed, 77 insertions(+), 168 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-04-02 17:21:31 UTC (rev 313906)
+++ PKGBUILD2018-04-02 17:21:42 UTC (rev 313907)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau 
-
-pkgname=ario
-pkgver=1.5.1
-pkgrel=5
-pkgdesc="A GTK client for MPD inspired by Rhythmbox but much lighter and 
faster"
-arch=('i686' 'x86_64')
-url="http://ario-player.sourceforge.net/;
-license=('GPL')
-depends=('avahi' 'curl' 'dbus-glib' 'gnutls' 'gtk2'
- 'libmpdclient' 'libnotify' 'libsoup' 'taglib' 'xdg-utils')
-makedepends=('intltool' 'perl-xml-parser' 'patch')
-changelog=$pkgname.changelog
-source=(http://downloads.sourceforge.net/sourceforge/$pkgname-player/$pkgname-$pkgver.tar.gz
-glib.patch
-drop-libunique.patch)
-sha256sums=('0831281ab8634eb92424b61230eee035822f7f92d8b0526da7316c898239c91e'
-'16481cc5fe3fb52ee36bae63522e319193285542fe0c8ab4281ecc5794a82184'
-'6531b09c8e9d1b077a25ca4a37e34a09fdf8d1d0966cf3b0a93f539c324c6a8b')
-
-prepare() {
-  cd "${srcdir}"/$pkgname-$pkgver
-  patch -p1 -i ../glib.patch
-  patch -p1 -i ../drop-libunique.patch
-  autoreconf -fi
-}
-
-build() {
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  ./configure --prefix=/usr --sysconfdir=/etc
-  make
- }
-
-package () {
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  make DESTDIR="${pkgdir}" install
-}

Copied: ario/repos/community-x86_64/PKGBUILD (from rev 313906, 
ario/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-04-02 17:21:42 UTC (rev 313907)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+
+pkgname=ario
+pkgver=1.6
+pkgrel=1
+pkgdesc="A GTK client for MPD inspired by Rhythmbox but much lighter and 
faster"
+arch=('x86_64')
+url="http://ario-player.sourceforge.net/;
+license=('GPL')
+depends=('avahi' 'curl' 'dbus-glib' 'gnutls' 'gtk3'
+ 'libmpdclient' 'libnotify' 'libsoup' 'taglib' 'xdg-utils')
+makedepends=('intltool' 'perl-xml-parser' 'patch')
+changelog=$pkgname.changelog
+source=(http://downloads.sourceforge.net/sourceforge/$pkgname-player/$pkgname-$pkgver.tar.gz)
+sha256sums=('1442ede8eef994384489d72d028d7f7b1a1c81efe737f7147587dd02c772d09a')
+
+prepare() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  autoreconf -fi
+}
+
+build() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+ }
+
+package () {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  make DESTDIR="${pkgdir}" install
+}

Deleted: ario.changelog
===
--- ario.changelog  2018-04-02 17:21:31 UTC (rev 313906)
+++ ario.changelog  2018-04-02 17:21:42 UTC (rev 313907)
@@ -1,39 +0,0 @@
-2016-04-29 Jaroslav Lichtblau 
-   * ario 1.5.1-4 pacman hooks part 1 rebuild
-
-2012-01-26  Eric Belanger  
-   * Rebuild against libpng 1.5 and libtiff 4.0
-
-2011-07-19 Jaroslav Lichtblau 
-   * Update to major release 1.5.1
-
-2010-08-11 Jaroslav Lichtblau 
-   * Update to major release 1.5
-
-2010-02-14 Jaroslav Lichtblau 
-   * Update to major release 1.4.4
-
-2010-01-23 Jaroslav Lichtblau 
-   * Update to major release 1.4.3
-
-2009-12-22 Jaroslav Lichtblau 
-   * updated to major version 1.4.2
-
-2009-12-19 Jaroslav Lichtblau 
-   * updated to major version 1.4.1
-
-2009-12-01 Jaroslav Lichtblau 
-   * updated to major version 1.4
-
-2009-05-27 Jaroslav Lichtblau 
-   * 'taglib' dependency added - version 1.3-2
-
-2009-05-24 Jaroslav Lichtblau 
-   * updated to major version 1.3
-
-2009-03-17 Jaroslav Lichtblau 
-   * updated to major version 1.2.2
-
-2009-01-22 Jaroslav Lichtblau 
-   * adopted 

[arch-commits] Commit in ario/trunk (4 files)

2018-04-02 Thread Jaroslav Lichtblau via arch-commits
Date: Monday, April 2, 2018 @ 17:21:31
  Author: jlichtblau
Revision: 313906

upgpkg: ario 1.6-1 - new upstream release

Modified:
  ario/trunk/PKGBUILD
  ario/trunk/ario.changelog
Deleted:
  ario/trunk/drop-libunique.patch
  ario/trunk/glib.patch

--+
 PKGBUILD |   17 
 ario.changelog   |3 ++
 drop-libunique.patch |   65 -
 glib.patch   |   24 --
 4 files changed, 9 insertions(+), 100 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-04-02 17:18:42 UTC (rev 313905)
+++ PKGBUILD2018-04-02 17:21:31 UTC (rev 313906)
@@ -2,27 +2,22 @@
 # Maintainer: Jaroslav Lichtblau 
 
 pkgname=ario
-pkgver=1.5.1
-pkgrel=5
+pkgver=1.6
+pkgrel=1
 pkgdesc="A GTK client for MPD inspired by Rhythmbox but much lighter and 
faster"
 arch=('x86_64')
 url="http://ario-player.sourceforge.net/;
 license=('GPL')
-depends=('avahi' 'curl' 'dbus-glib' 'gnutls' 'gtk2'
+depends=('avahi' 'curl' 'dbus-glib' 'gnutls' 'gtk3'
  'libmpdclient' 'libnotify' 'libsoup' 'taglib' 'xdg-utils')
 makedepends=('intltool' 'perl-xml-parser' 'patch')
 changelog=$pkgname.changelog
-source=(http://downloads.sourceforge.net/sourceforge/$pkgname-player/$pkgname-$pkgver.tar.gz
-glib.patch
-drop-libunique.patch)
-sha256sums=('0831281ab8634eb92424b61230eee035822f7f92d8b0526da7316c898239c91e'
-'16481cc5fe3fb52ee36bae63522e319193285542fe0c8ab4281ecc5794a82184'
-'6531b09c8e9d1b077a25ca4a37e34a09fdf8d1d0966cf3b0a93f539c324c6a8b')
+source=(http://downloads.sourceforge.net/sourceforge/$pkgname-player/$pkgname-$pkgver.tar.gz)
+sha256sums=('1442ede8eef994384489d72d028d7f7b1a1c81efe737f7147587dd02c772d09a')
 
 prepare() {
   cd "${srcdir}"/$pkgname-$pkgver
-  patch -p1 -i ../glib.patch
-  patch -p1 -i ../drop-libunique.patch
+
   autoreconf -fi
 }
 

Modified: ario.changelog
===
--- ario.changelog  2018-04-02 17:18:42 UTC (rev 313905)
+++ ario.changelog  2018-04-02 17:21:31 UTC (rev 313906)
@@ -1,3 +1,6 @@
+2018-04-02 Jaroslav Lichtblau 
+   * ario 1.6
+
 2016-04-29 Jaroslav Lichtblau 
* ario 1.5.1-4 pacman hooks part 1 rebuild
 

Deleted: drop-libunique.patch
===
--- drop-libunique.patch2018-04-02 17:18:42 UTC (rev 313905)
+++ drop-libunique.patch2018-04-02 17:21:31 UTC (rev 313906)
@@ -1,65 +0,0 @@
-diff -Naur ario-1.5.1.orig/configure.ac ario-1.5.1/configure.ac
 ario-1.5.1.orig/configure.ac   2011-06-13 18:11:30.0 +0200
-+++ ario-1.5.1/configure.ac2017-01-26 14:20:51.574818457 +0100
-@@ -36,7 +36,6 @@
-  gthread-2.0
-  gio-2.0
-  libxml-2.0
-- unique-1.0
-  libcurl
-  gnutls])
- 
-diff -Naur ario-1.5.1.orig/src/ario-main.c ario-1.5.1/src/ario-main.c
 ario-1.5.1.orig/src/ario-main.c2011-06-13 11:58:37.0 +0200
-+++ ario-1.5.1/src/ario-main.c 2017-01-26 15:15:24.790597138 +0100
-@@ -36,20 +36,14 @@
- 
- #ifdef WIN32
- #include 
--#else
--#include 
- #endif
- 
- #ifndef WIN32
--static UniqueResponse
--ario_main_on_message_received (G_GNUC_UNUSED UniqueApp *app,
--   G_GNUC_UNUSED UniqueCommand command,
--   G_GNUC_UNUSED UniqueMessageData *message,
--   G_GNUC_UNUSED guint time_,
--   ArioShell *shell)
-+static void
-+ario_main_on_activated (G_GNUC_UNUSED GApplication *app,
-+ArioShell *shell)
- {
- ario_shell_present (shell);
--return UNIQUE_RESPONSE_OK;
- }
- #endif
- 
-@@ -89,11 +83,12 @@
- return 0;
- }
- #else
--UniqueApp *app;
--app = unique_app_new ("org.Ario", NULL);
--if (unique_app_is_running (app)) {
-+GApplication *app;
-+app = g_application_new ("org.Ario", G_APPLICATION_FLAGS_NONE);
-+g_application_register (app, NULL, NULL);
-+if (g_application_get_is_remote (app)) {
- if (ario_conf_get_boolean (PREF_ONE_INSTANCE, 
PREF_ONE_INSTANCE_DEFAULT)) {
--unique_app_send_message (app, UNIQUE_ACTIVATE, NULL);
-+g_application_activate (app);
- g_object_unref (app);
- return 0;
- }
-@@ -134,8 +129,7 @@
- ario_shell_construct (shell, minimized);
- 
- #ifndef WIN32
--unique_app_watch_window (app, GTK_WINDOW (shell));
--g_signal_connect (app, "message-received", G_CALLBACK 
(ario_main_on_message_received), shell);
-+

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

2018-04-02 Thread Alexander Rødseth via arch-commits
Date: Monday, April 2, 2018 @ 17:18:42
  Author: arodseth
Revision: 313905

archrelease: copy trunk to community-x86_64

Added:
  magnum/repos/community-x86_64/PKGBUILD
(from rev 313904, magnum/trunk/PKGBUILD)
Deleted:
  magnum/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   95 ++---
 1 file changed, 47 insertions(+), 48 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-04-02 17:18:27 UTC (rev 313904)
+++ PKGBUILD2018-04-02 17:18:42 UTC (rev 313905)
@@ -1,48 +0,0 @@
-# Maintainer: Alexander F Rødseth 
-# Contributor: mosra 
-
-pkgname=magnum
-pkgver=2016.05.13
-pkgrel=2
-pkgdesc='2D/3D graphics engine for C++11/C++14'
-arch=('x86_64' 'i686')
-url='http://mosra.cz/blog/magnum.php'
-license=('MIT')
-depends=('corrade' 'openal' 'sdl2')
-provides=('libmagnum')
-makedepends=('cmake' 'git' 'ninja')
-source=('git://github.com/mosra/magnum.git#commit=67bd8a9b9938')
-sha1sums=('SKIP')
-
-build() {
-  mkdir -p build
-  cd build
-
-  cmake ../magnum \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_AUDIO=ON \
--DWITH_SDL2APPLICATION=ON \
--DWITH_GLXAPPLICATION=ON \
--DWITH_WINDOWLESSGLXAPPLICATION=ON \
--DWITH_GLXCONTEXT=ON \
--DWITH_MAGNUMFONT=ON \
--DWITH_MAGNUMFONTCONVERTER=ON \
--DWITH_OBJIMPORTER=ON \
--DWITH_TGAIMAGECONVERTER=ON \
--DWITH_TGAIMPORTER=ON \
--DWITH_WAVAUDIOIMPORTER=ON \
--DWITH_DISTANCEFIELDCONVERTER=ON \
--DWITH_FONTCONVERTER=ON \
--DWITH_MAGNUMINFO=ON \
--GNinja
-  ninja
-}
-
-package() {
-  DESTDIR="$pkgdir" ninja -C build install
-  install -Dm644 "magnum/COPYING" \
-"$pkgdir/usr/share/licenses/$pkgname/COPYING"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: magnum/repos/community-x86_64/PKGBUILD (from rev 313904, 
magnum/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-04-02 17:18:42 UTC (rev 313905)
@@ -0,0 +1,47 @@
+# Maintainer: Alexander F Rødseth 
+# Contributor: mosra 
+
+pkgname=magnum
+pkgver=2018.02
+pkgrel=1
+pkgdesc='2D/3D graphics engine for C++11/C++14'
+arch=('x86_64')
+url='http://mosra.cz/blog/magnum.php'
+license=('MIT')
+depends=('corrade' 'openal' 'sdl2')
+makedepends=('cmake' 'git' 'ninja')
+source=("git+https://github.com/mosra/magnum.git#tag=v$pkgver;)
+sha1sums=('SKIP')
+
+build() {
+  mkdir -p build
+  cd build
+  cmake ../magnum \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_AUDIO=ON \
+-DWITH_SDL2APPLICATION=ON \
+-DWITH_GLXAPPLICATION=ON \
+-DWITH_WINDOWLESSGLXAPPLICATION=ON \
+-DWITH_GLXCONTEXT=ON \
+-DWITH_MAGNUMFONT=ON \
+-DWITH_MAGNUMFONTCONVERTER=ON \
+-DWITH_OBJIMPORTER=ON \
+-DWITH_TGAIMAGECONVERTER=ON \
+-DWITH_TGAIMPORTER=ON \
+-DWITH_WAVAUDIOIMPORTER=ON \
+-DWITH_DISTANCEFIELDCONVERTER=ON \
+-DWITH_FONTCONVERTER=ON \
+-DWITH_MAGNUMINFO=ON \
+-GNinja
+  ninja
+}
+
+package() {
+  DESTDIR="$pkgdir" ninja -C build install
+  install -Dm644 "magnum/COPYING" \
+"$pkgdir/usr/share/licenses/$pkgname/COPYING"
+}
+
+# getver: no
+# vim: ts=2 sw=2 et:


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

2018-04-02 Thread Alexander Rødseth via arch-commits
Date: Monday, April 2, 2018 @ 17:18:27
  Author: arodseth
Revision: 313904

upgpkg: magnum 2018.02-1

Modified:
  magnum/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-04-02 17:12:52 UTC (rev 313903)
+++ PKGBUILD2018-04-02 17:18:27 UTC (rev 313904)
@@ -2,22 +2,20 @@
 # Contributor: mosra 
 
 pkgname=magnum
-pkgver=2016.05.13
-pkgrel=2
+pkgver=2018.02
+pkgrel=1
 pkgdesc='2D/3D graphics engine for C++11/C++14'
 arch=('x86_64')
 url='http://mosra.cz/blog/magnum.php'
 license=('MIT')
 depends=('corrade' 'openal' 'sdl2')
-provides=('libmagnum')
 makedepends=('cmake' 'git' 'ninja')
-source=('git://github.com/mosra/magnum.git#commit=67bd8a9b9938')
+source=("git+https://github.com/mosra/magnum.git#tag=v$pkgver;)
 sha1sums=('SKIP')
 
 build() {
   mkdir -p build
   cd build
-
   cmake ../magnum \
 -DCMAKE_BUILD_TYPE=Release \
 -DCMAKE_INSTALL_PREFIX=/usr \
@@ -45,4 +43,5 @@
 "$pkgdir/usr/share/licenses/$pkgname/COPYING"
 }
 
-# vim:set ts=2 sw=2 et:
+# getver: no
+# vim: ts=2 sw=2 et:


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

2018-04-02 Thread Alexander Rødseth via arch-commits
Date: Monday, April 2, 2018 @ 17:12:52
  Author: arodseth
Revision: 313903

archrelease: copy trunk to community-x86_64

Added:
  corrade/repos/community-x86_64/PKGBUILD
(from rev 313902, corrade/trunk/PKGBUILD)
Deleted:
  corrade/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-04-02 17:12:21 UTC (rev 313902)
+++ PKGBUILD2018-04-02 17:12:52 UTC (rev 313903)
@@ -1,32 +0,0 @@
-# Maintainer: Alexander F Rødseth 
-# Contributor: mosra 
-
-pkgname=corrade
-pkgver=2018.02
-pkgrel=1
-pkgdesc='Utility library for C++11/C++14'
-arch=('x86_64')
-url='http://mosra.cz/blog/corrade.php'
-license=('MIT')
-makedepends=('cmake' 'git' 'ninja')
-source=("git+https://github.com/mosra/corrade.git#tag=v$pkgver;)
-sha1sums=('SKIP')
-
-build() {
-  mkdir -p build
-  cd build
-  cmake ../corrade \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--GNinja
-  ninja
-}
-
-package() {
-  DESTDIR="$pkgdir" ninja -C build install
-  install -Dm644 "corrade/COPYING" \
-"$pkgdir/usr/share/licenses/$pkgname/COPYING"
-}
-
-# getver: no
-# vim: ts=2 sw=2 et:

Copied: corrade/repos/community-x86_64/PKGBUILD (from rev 313902, 
corrade/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-04-02 17:12:52 UTC (rev 313903)
@@ -0,0 +1,32 @@
+# Maintainer: Alexander F Rødseth 
+# Contributor: mosra 
+
+pkgname=corrade
+pkgver=2018.02
+pkgrel=1
+pkgdesc='Utility library for C++11/C++14'
+arch=('x86_64')
+url='http://mosra.cz/blog/corrade.php'
+license=('MIT')
+makedepends=('cmake' 'git' 'ninja')
+source=("git+https://github.com/mosra/corrade.git#tag=v$pkgver;)
+sha1sums=('SKIP')
+
+build() {
+  mkdir -p build
+  cd build
+  cmake ../corrade \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-GNinja
+  ninja
+}
+
+package() {
+  DESTDIR="$pkgdir" ninja -C build install
+  install -Dm644 "corrade/COPYING" \
+"$pkgdir/usr/share/licenses/$pkgname/COPYING"
+}
+
+# getver: no
+# vim: ts=2 sw=2 et:


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

2018-04-02 Thread Alexander Rødseth via arch-commits
Date: Monday, April 2, 2018 @ 17:12:21
  Author: arodseth
Revision: 313902

archrelease: copy trunk to community-x86_64

Added:
  corrade/repos/community-x86_64/PKGBUILD
(from rev 313901, corrade/trunk/PKGBUILD)
Deleted:
  corrade/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-04-02 17:12:07 UTC (rev 313901)
+++ PKGBUILD2018-04-02 17:12:21 UTC (rev 313902)
@@ -1,34 +0,0 @@
-# Maintainer: Alexander F Rødseth 
-# Contributor: mosra 
-
-pkgname=corrade
-pkgver=2016.05.13
-pkgrel=1
-pkgdesc='Utility library for C++11/C++14'
-arch=('x86_64' 'i686')
-url='http://mosra.cz/blog/corrade.php'
-license=('MIT')
-provides=('libcorrade')
-makedepends=('cmake' 'git' 'ninja')
-depends=('gcc-libs')
-source=('git://github.com/mosra/corrade.git#commit=142b2a7241')
-sha1sums=('SKIP')
-
-build() {
-  mkdir -p build
-  cd build
-
-  cmake ../corrade \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--GNinja
-  ninja
-}
-
-package() {
-  DESTDIR="$pkgdir" ninja -C build install
-  install -Dm644 "corrade/COPYING" \
-"$pkgdir/usr/share/licenses/$pkgname/COPYING"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: corrade/repos/community-x86_64/PKGBUILD (from rev 313901, 
corrade/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-04-02 17:12:21 UTC (rev 313902)
@@ -0,0 +1,32 @@
+# Maintainer: Alexander F Rødseth 
+# Contributor: mosra 
+
+pkgname=corrade
+pkgver=2018.02
+pkgrel=1
+pkgdesc='Utility library for C++11/C++14'
+arch=('x86_64')
+url='http://mosra.cz/blog/corrade.php'
+license=('MIT')
+makedepends=('cmake' 'git' 'ninja')
+source=("git+https://github.com/mosra/corrade.git#tag=v$pkgver;)
+sha1sums=('SKIP')
+
+build() {
+  mkdir -p build
+  cd build
+  cmake ../corrade \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-GNinja
+  ninja
+}
+
+package() {
+  DESTDIR="$pkgdir" ninja -C build install
+  install -Dm644 "corrade/COPYING" \
+"$pkgdir/usr/share/licenses/$pkgname/COPYING"
+}
+
+# getver: no
+# vim: ts=2 sw=2 et:


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

2018-04-02 Thread Alexander Rødseth via arch-commits
Date: Monday, April 2, 2018 @ 17:12:07
  Author: arodseth
Revision: 313901

upgpkg: corrade 2018.02-1

Modified:
  corrade/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-04-02 17:11:28 UTC (rev 313900)
+++ PKGBUILD2018-04-02 17:12:07 UTC (rev 313901)
@@ -2,22 +2,19 @@
 # Contributor: mosra 
 
 pkgname=corrade
-pkgver=2016.05.13
+pkgver=2018.02
 pkgrel=1
 pkgdesc='Utility library for C++11/C++14'
 arch=('x86_64')
 url='http://mosra.cz/blog/corrade.php'
 license=('MIT')
-provides=('libcorrade')
 makedepends=('cmake' 'git' 'ninja')
-depends=('gcc-libs')
-source=('git://github.com/mosra/corrade.git#commit=142b2a7241')
+source=("git+https://github.com/mosra/corrade.git#tag=v$pkgver;)
 sha1sums=('SKIP')
 
 build() {
   mkdir -p build
   cd build
-
   cmake ../corrade \
 -DCMAKE_BUILD_TYPE=Release \
 -DCMAKE_INSTALL_PREFIX=/usr \
@@ -31,4 +28,5 @@
 "$pkgdir/usr/share/licenses/$pkgname/COPYING"
 }
 
-# vim:set ts=2 sw=2 et:
+# getver: no
+# vim: ts=2 sw=2 et:


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

2018-04-02 Thread Jaroslav Lichtblau via arch-commits
Date: Monday, April 2, 2018 @ 17:11:28
  Author: jlichtblau
Revision: 313900

archrelease: copy trunk to community-any

Added:
  colorgcc/repos/community-any/PKGBUILD
(from rev 313899, colorgcc/trunk/PKGBUILD)
Deleted:
  colorgcc/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-04-02 17:11:09 UTC (rev 313899)
+++ PKGBUILD2018-04-02 17:11:28 UTC (rev 313900)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Eric Belanger 
-# Maintainer: Jaroslav Lichtblau 
-
-pkgname=colorgcc
-pkgver=1.4.4
-pkgrel=2
-pkgdesc="A Perl wrapper to colorize the output of compilers with warning/error 
messages matching the gcc output format"
-arch=('any')
-url="http://www.schlueters.de/colorgcc.html;
-license=('GPL')
-depends=('perl')
-makedepends=('git')
-backup=('etc/colorgcc/colorgccrc')
-source=(git://github.com/olibre/colorgcc.git#tag=$pkgver)
-sha1sums=('SKIP')
-
-package() {
-  cd ${pkgname}
-  install -D -m755 colorgcc.pl "${pkgdir}/usr/bin/colorgcc"
-  install -D -m644 colorgccrc "${pkgdir}/etc/colorgcc/colorgccrc"
-  install -D -m644 README.md "${pkgdir}/usr/share/doc/colorgcc/README"
-
-  install -d "${pkgdir}/usr/lib/colorgcc/bin"
-  for i in cc c++ gcc g++ ; do
-ln -s /usr/bin/colorgcc "${pkgdir}/usr/lib/colorgcc/bin/${i}"
-  done
-}

Copied: colorgcc/repos/community-any/PKGBUILD (from rev 313899, 
colorgcc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-04-02 17:11:28 UTC (rev 313900)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Eric Belanger 
+# Maintainer: Jaroslav Lichtblau 
+
+pkgname=colorgcc
+pkgver=1.4.5
+pkgrel=1
+pkgdesc="A Perl wrapper to colorize the output of compilers with warning/error 
messages matching the gcc output format"
+arch=('any')
+url="https://github.com/colorgcc/colorgcc;
+license=('GPL')
+depends=('perl')
+backup=('etc/colorgcc/colorgccrc')
+source=($pkgname-$pkgver.tar.gz::https://github.com/$pkgname/$pkgname/archive/$pkgver.tar.gz)
+sha256sums=('2febee044d26770edbc1f8de56d2339a6ed2b69289dcc7ca2b33d21eb3980ef8')
+
+package() {
+  cd $pkgname-$pkgver
+  install -Dm755 colorgcc.pl "${pkgdir}/usr/bin/colorgcc"
+  install -Dm644 colorgccrc.txt "${pkgdir}/etc/colorgcc/colorgccrc"
+  install -Dm644 README "${pkgdir}/usr/share/doc/colorgcc/README"
+
+  install -d "${pkgdir}/usr/lib/colorgcc/bin"
+  for i in cc c++ gcc g++ ; do
+ln -s /usr/bin/colorgcc "${pkgdir}/usr/lib/colorgcc/bin/${i}"
+  done
+}


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

2018-04-02 Thread Jaroslav Lichtblau via arch-commits
Date: Monday, April 2, 2018 @ 17:11:09
  Author: jlichtblau
Revision: 313899

upgpkg: colorgcc 1.4.5-1 - new upstream release

Modified:
  colorgcc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-04-02 17:05:14 UTC (rev 313898)
+++ PKGBUILD2018-04-02 17:11:09 UTC (rev 313899)
@@ -3,23 +3,22 @@
 # Maintainer: Jaroslav Lichtblau 
 
 pkgname=colorgcc
-pkgver=1.4.4
-pkgrel=2
+pkgver=1.4.5
+pkgrel=1
 pkgdesc="A Perl wrapper to colorize the output of compilers with warning/error 
messages matching the gcc output format"
 arch=('any')
-url="http://www.schlueters.de/colorgcc.html;
+url="https://github.com/colorgcc/colorgcc;
 license=('GPL')
 depends=('perl')
-makedepends=('git')
 backup=('etc/colorgcc/colorgccrc')
-source=(git://github.com/olibre/colorgcc.git#tag=$pkgver)
-sha1sums=('SKIP')
+source=($pkgname-$pkgver.tar.gz::https://github.com/$pkgname/$pkgname/archive/$pkgver.tar.gz)
+sha256sums=('2febee044d26770edbc1f8de56d2339a6ed2b69289dcc7ca2b33d21eb3980ef8')
 
 package() {
-  cd ${pkgname}
-  install -D -m755 colorgcc.pl "${pkgdir}/usr/bin/colorgcc"
-  install -D -m644 colorgccrc "${pkgdir}/etc/colorgcc/colorgccrc"
-  install -D -m644 README.md "${pkgdir}/usr/share/doc/colorgcc/README"
+  cd $pkgname-$pkgver
+  install -Dm755 colorgcc.pl "${pkgdir}/usr/bin/colorgcc"
+  install -Dm644 colorgccrc.txt "${pkgdir}/etc/colorgcc/colorgccrc"
+  install -Dm644 README "${pkgdir}/usr/share/doc/colorgcc/README"
 
   install -d "${pkgdir}/usr/lib/colorgcc/bin"
   for i in cc c++ gcc g++ ; do


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

2018-04-02 Thread Felix Yan via arch-commits
Date: Monday, April 2, 2018 @ 17:05:14
  Author: felixonmars
Revision: 313898

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-04-02 17:04:53 UTC (rev 313897)
+++ PKGBUILD2018-04-02 17:05:14 UTC (rev 313898)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Daniel Wallace 
-# Contributor: Limao Luo 
-
-pkgbase=python-jsonpatch
-pkgname=(python-jsonpatch python2-jsonpatch)
-pkgver=1.21
-pkgrel=1
-pkgdesc="An implementation of the JSON Patch format"
-arch=("any")
-url="https://github.com/stefankoegl/python-json-patch;
-license=("BSD")
-makedepends=("python-setuptools" "python2-setuptools" "python-jsonpointer" 
"python2-jsonpointer"
- "python-pypandoc" "python2-pypandoc")
-checkdepends=('python-coverage' 'python2-coverage')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/stefankoegl/python-json-patch/archive/v$pkgver.tar.gz;)
-sha512sums=('c650c75bdc322ccd4d89b18ab85b3d417f4a3e7f200c0ffe585495ca15f88dea9cbaf5fb2d47ab0b328189cd85ff9d58b718151817ec01536808fbd328cd1409')
-
-prepare(){
-  cp -a python-json-patch-$pkgver{,-py2}
-  find python-json-patch-$pkgver-py2 -name \*.py -exec sed -i '1s/python$/&2/' 
{} +
-}
-
-build() {
-  cd "$srcdir"/python-json-patch-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/python-json-patch-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/python-json-patch-$pkgver
-  coverage run --source=jsonpatch tests.py
-
-  cd "$srcdir"/python-json-patch-$pkgver-py2
-  coverage2 run --source=jsonpatch tests.py
-}
-
-package_python-jsonpatch() {
-  depends=("python-jsonpointer")
-
-  cd "$srcdir"/python-json-patch-$pkgver
-
-  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
-  python setup.py install --prefix=/usr --root="$pkgdir"
-}
-package_python2-jsonpatch() {
-  depends=("python2-jsonpointer")
-
-  cd "$srcdir"/python-json-patch-$pkgver-py2
-
-  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
-  python2 setup.py install --prefix=/usr --root="$pkgdir"
-  for _bin in "$pkgdir"/usr/bin/*; do
-mv "$_bin"{,2}
-  done
-}

Copied: python-jsonpatch/repos/community-any/PKGBUILD (from rev 313897, 
python-jsonpatch/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-04-02 17:05:14 UTC (rev 313898)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Wallace 
+# Contributor: Limao Luo 
+
+pkgbase=python-jsonpatch
+pkgname=(python-jsonpatch python2-jsonpatch)
+pkgver=1.23
+pkgrel=1
+pkgdesc="An implementation of the JSON Patch format"
+arch=("any")
+url="https://github.com/stefankoegl/python-json-patch;
+license=("BSD")
+makedepends=("python-setuptools" "python2-setuptools" "python-jsonpointer" 
"python2-jsonpointer"
+ "python-pypandoc" "python2-pypandoc")
+checkdepends=('python-coverage' 'python2-coverage')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/stefankoegl/python-json-patch/archive/v$pkgver.tar.gz;)
+sha512sums=('87b12037174af6ebff81b2e544985460bd33d417845c146436bc49bd7b964b2f4cc5f9f810d817e048e69846c8f97a38fce7512168902602c94469b0bcd4fa3c')
+
+prepare(){
+  cp -a python-json-patch-$pkgver{,-py2}
+  find python-json-patch-$pkgver-py2 -name \*.py -exec sed -i '1s/python$/&2/' 
{} +
+}
+
+build() {
+  cd "$srcdir"/python-json-patch-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/python-json-patch-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/python-json-patch-$pkgver
+  coverage run --source=jsonpatch tests.py
+
+  cd "$srcdir"/python-json-patch-$pkgver-py2
+  coverage2 run --source=jsonpatch tests.py
+}
+
+package_python-jsonpatch() {
+  depends=("python-jsonpointer")
+
+  cd "$srcdir"/python-json-patch-$pkgver
+
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+  python setup.py install --prefix=/usr --root="$pkgdir"
+}
+package_python2-jsonpatch() {
+  depends=("python2-jsonpointer")
+
+  cd "$srcdir"/python-json-patch-$pkgver-py2
+
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+  python2 setup.py install --prefix=/usr --root="$pkgdir"
+  for _bin in "$pkgdir"/usr/bin/*; do
+mv "$_bin"{,2}
+  done
+}


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

2018-04-02 Thread Felix Yan via arch-commits
Date: Monday, April 2, 2018 @ 17:04:53
  Author: felixonmars
Revision: 313897

upgpkg: python-jsonpatch 1.23-1

Modified:
  python-jsonpatch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-04-02 17:02:33 UTC (rev 313896)
+++ PKGBUILD2018-04-02 17:04:53 UTC (rev 313897)
@@ -5,7 +5,7 @@
 
 pkgbase=python-jsonpatch
 pkgname=(python-jsonpatch python2-jsonpatch)
-pkgver=1.21
+pkgver=1.23
 pkgrel=1
 pkgdesc="An implementation of the JSON Patch format"
 arch=("any")
@@ -15,7 +15,7 @@
  "python-pypandoc" "python2-pypandoc")
 checkdepends=('python-coverage' 'python2-coverage')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/stefankoegl/python-json-patch/archive/v$pkgver.tar.gz;)
-sha512sums=('c650c75bdc322ccd4d89b18ab85b3d417f4a3e7f200c0ffe585495ca15f88dea9cbaf5fb2d47ab0b328189cd85ff9d58b718151817ec01536808fbd328cd1409')
+sha512sums=('87b12037174af6ebff81b2e544985460bd33d417845c146436bc49bd7b964b2f4cc5f9f810d817e048e69846c8f97a38fce7512168902602c94469b0bcd4fa3c')
 
 prepare(){
   cp -a python-json-patch-$pkgver{,-py2}


[arch-commits] Commit in syncthing-gtk/repos/community-any (5 files)

2018-04-02 Thread Jaroslav Lichtblau via arch-commits
Date: Monday, April 2, 2018 @ 17:02:33
  Author: jlichtblau
Revision: 313896

archrelease: copy trunk to community-any

Added:
  syncthing-gtk/repos/community-any/PKGBUILD
(from rev 313894, syncthing-gtk/trunk/PKGBUILD)
  syncthing-gtk/repos/community-any/kde-statusicon.patch
(from rev 313895, syncthing-gtk/trunk/kde-statusicon.patch)
Deleted:
  syncthing-gtk/repos/community-any/PKGBUILD
  syncthing-gtk/repos/community-any/fix-icon-path.patch
  syncthing-gtk/repos/community-any/kde-statusicon.patch

--+
 PKGBUILD |   97 +++--
 fix-icon-path.patch  |   50 -
 kde-statusicon.patch |   88 ++--
 3 files changed, 90 insertions(+), 145 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-04-02 17:02:27 UTC (rev 313895)
+++ PKGBUILD2018-04-02 17:02:33 UTC (rev 313896)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Martin Wimpress 
-# Contributor: kozec 
-
-pkgname=syncthing-gtk
-pkgver=0.9.3
-pkgrel=1
-epoch=1
-pkgdesc='GTK3 based GUI and notification area icon for Syncthing'
-arch=('any')
-url='https://github.com/syncthing/syncthing-gtk'
-license=('GPL2')
-depends=('syncthing>=0.13' 'gtk3' 'libnotify' 'python2-pyinotify'
- 'python2-bcrypt' 'python2-cairo' 'python2-dateutil' 'python2-gobject')
-makedepends=('python2-setuptools')
-optdepends=('python2-caja: file manager integration for Caja'
-'python2-nautilus: file manager integration for Nautilus'
-'nemo-python: file manager integration for Nemo')
-source=($pkgname-$pkgver.tar.gz::https://github.com/syncthing/$pkgname/archive/v$pkgver.tar.gz
-kde-statusicon.patch
-fix-icon-path.patch)
-sha256sums=('c5eaf6d80ad0479f8e8d59c65d6ab4f9c96325175704a15bbb10e5fb8bb4988a'
-'109d8c970045e60251fc64865f05322b23a0995ee6725be02905941cb3a1ae0d'
-'34b752396db02668016c2c2a57b475f4ade9533f50fb682db6f8a9d239a84653')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  # Enable Gtk.StatusIcon in KDE
-  patch -Np1 -i ../kde-statusicon.patch
-
-  # Fix icon path on about dialog
-  patch -Np1 -i ../fix-icon-path.patch
-}
-
-build() {
-  cd $pkgname-$pkgver
-  python2 setup.py build
-}
-
-package() {
-  cd $pkgname-$pkgver
-  python2 setup.py install --root="${pkgdir}" --optimize=1
-
-  # Move filemanager extensions into their right place (FS#57123)
-  mkdir -p "${pkgdir}"/usr/share/{caja,nautilus,nemo}-python/extensions/
-  mv "${pkgdir}"/usr/share/syncthing-gtk/syncthing-plugin-caja.py 
"${pkgdir}"/usr/share/caja-python/extensions/
-  mv "${pkgdir}"/usr/share/syncthing-gtk/syncthing-plugin-nautilus.py 
"${pkgdir}"/usr/share/nautilus-python/extensions/
-  mv "${pkgdir}"/usr/share/syncthing-gtk/syncthing-plugin-nemo.py 
"${pkgdir}"/usr/share/nemo-python/extensions/
-}

Copied: syncthing-gtk/repos/community-any/PKGBUILD (from rev 313894, 
syncthing-gtk/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-04-02 17:02:33 UTC (rev 313896)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Martin Wimpress 
+# Contributor: kozec 
+
+pkgname=syncthing-gtk
+pkgver=0.9.3.1
+pkgrel=1
+epoch=1
+pkgdesc='GTK3 based GUI and notification area icon for Syncthing'
+arch=('any')
+url='https://github.com/syncthing/syncthing-gtk'
+license=('GPL2')
+depends=('syncthing>=0.13' 'gtk3' 'libnotify' 'python2-pyinotify'
+ 'python2-bcrypt' 'python2-cairo' 'python2-dateutil' 'python2-gobject')
+makedepends=('python2-setuptools')
+optdepends=('python2-caja: file manager integration for Caja'
+'python2-nautilus: file manager integration for Nautilus'
+'nemo-python: file manager integration for Nemo')
+source=($pkgname-$pkgver.tar.gz::https://github.com/syncthing/$pkgname/archive/v$pkgver.tar.gz
+kde-statusicon.patch)
+sha256sums=('0adcdd4be83f2e65aeeb5250d6d4b69c12216dbd740c8051b6a434a9154bd9b4'
+'109d8c970045e60251fc64865f05322b23a0995ee6725be02905941cb3a1ae0d')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # Enable Gtk.StatusIcon in KDE
+  patch -Np1 -i ../kde-statusicon.patch
+}
+
+build() {
+  cd $pkgname-$pkgver
+  python2 setup.py build
+}
+
+package() {
+  cd $pkgname-$pkgver
+  python2 setup.py install --root="${pkgdir}" --optimize=1
+
+  # Move filemanager extensions into their right place (FS#57123)
+  mkdir -p "${pkgdir}"/usr/share/{caja,nautilus,nemo}-python/extensions/
+  mv "${pkgdir}"/usr/share/syncthing-gtk/syncthing-plugin-caja.py 
"${pkgdir}"/usr/share/caja-python/extensions/
+  mv "${pkgdir}"/usr/share/syncthing-gtk/syncthing-plugin-nautilus.py 
"${pkgdir}"/usr/share/nautilus-python/extensions/
+  mv 

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

2018-04-02 Thread Antonio Rojas via arch-commits
Date: Monday, April 2, 2018 @ 17:02:27
  Author: arojas
Revision: 313895

archrelease: copy trunk to community-x86_64

Added:
  smb4k/repos/community-x86_64/PKGBUILD
(from rev 313894, smb4k/trunk/PKGBUILD)
Deleted:
  smb4k/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-04-02 17:02:14 UTC (rev 313894)
+++ PKGBUILD2018-04-02 17:02:27 UTC (rev 313895)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Contributor: Emanuele Rampichini 
-
-pkgname=smb4k
-pkgver=2.0.2
-pkgrel=1
-pkgdesc="A KDE program that browses samba shares"
-arch=(i686 x86_64)
-url="http://smb4k.sourceforge.net/;
-license=(GPL)
-depends=(kparts hicolor-icon-theme)
-makedepends=(extra-cmake-modules kdoctools python plasma-framework)
-source=("http://downloads.sourceforge.net/project/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
-sha256sums=('01cbd10fe7a293243a65333baa65871eec8de007d0110639498fc1e4c190a199')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=RELEASE \
--DKDE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-
-  make DESTDIR="$pkgdir" install
-}

Copied: smb4k/repos/community-x86_64/PKGBUILD (from rev 313894, 
smb4k/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-04-02 17:02:27 UTC (rev 313895)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Giovanni Scafora 
+# Contributor: Emanuele Rampichini 
+
+pkgname=smb4k
+pkgver=2.1.0
+pkgrel=1
+pkgdesc="A KDE program that browses samba shares"
+arch=(x86_64)
+url="https://smb4k.sourceforge.net/;
+license=(GPL)
+depends=(kparts hicolor-icon-theme)
+makedepends=(extra-cmake-modules kdoctools python plasma-framework)
+source=("https://downloads.sourceforge.net/project/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=('db55be3433763e0f93efb62c8749c9aa94553ce8a9cd7fae19760abd92886ef6')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in syncthing-gtk/trunk (PKGBUILD fix-icon-path.patch)

2018-04-02 Thread Jaroslav Lichtblau via arch-commits
Date: Monday, April 2, 2018 @ 17:02:14
  Author: jlichtblau
Revision: 313894

upgpkg: syncthing-gtk 1:0.9.3.1-1 - new upstream release

Modified:
  syncthing-gtk/trunk/PKGBUILD
Deleted:
  syncthing-gtk/trunk/fix-icon-path.patch

-+
 PKGBUILD|   13 -
 fix-icon-path.patch |   50 --
 2 files changed, 4 insertions(+), 59 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-04-02 17:02:01 UTC (rev 313893)
+++ PKGBUILD2018-04-02 17:02:14 UTC (rev 313894)
@@ -4,7 +4,7 @@
 # Contributor: kozec 
 
 pkgname=syncthing-gtk
-pkgver=0.9.3
+pkgver=0.9.3.1
 pkgrel=1
 epoch=1
 pkgdesc='GTK3 based GUI and notification area icon for Syncthing'
@@ -18,11 +18,9 @@
 'python2-nautilus: file manager integration for Nautilus'
 'nemo-python: file manager integration for Nemo')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/syncthing/$pkgname/archive/v$pkgver.tar.gz
-kde-statusicon.patch
-fix-icon-path.patch)
-sha256sums=('c5eaf6d80ad0479f8e8d59c65d6ab4f9c96325175704a15bbb10e5fb8bb4988a'
-'109d8c970045e60251fc64865f05322b23a0995ee6725be02905941cb3a1ae0d'
-'34b752396db02668016c2c2a57b475f4ade9533f50fb682db6f8a9d239a84653')
+kde-statusicon.patch)
+sha256sums=('0adcdd4be83f2e65aeeb5250d6d4b69c12216dbd740c8051b6a434a9154bd9b4'
+'109d8c970045e60251fc64865f05322b23a0995ee6725be02905941cb3a1ae0d')
 
 prepare() {
   cd $pkgname-$pkgver
@@ -29,9 +27,6 @@
 
   # Enable Gtk.StatusIcon in KDE
   patch -Np1 -i ../kde-statusicon.patch
-
-  # Fix icon path on about dialog
-  patch -Np1 -i ../fix-icon-path.patch
 }
 
 build() {

Deleted: fix-icon-path.patch
===
--- fix-icon-path.patch 2018-04-02 17:02:01 UTC (rev 313893)
+++ fix-icon-path.patch 2018-04-02 17:02:14 UTC (rev 313894)
@@ -1,50 +0,0 @@
-From bee33afd49644754140c327677b01ec1e486dcde Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Ball=C3=B3=20Gy=C3=B6rgy?= 
-Date: Fri, 26 Jan 2018 20:20:34 +0100
-Subject: [PATCH] Fix icon path on about dialog
-

- syncthing_gtk/aboutdialog.py | 7 +--
- syncthing_gtk/app.py | 2 +-
- 2 files changed, 6 insertions(+), 3 deletions(-)
-
-diff --git a/syncthing_gtk/aboutdialog.py b/syncthing_gtk/aboutdialog.py
-index 8f788f8..2e5a431 100644
 a/syncthing_gtk/aboutdialog.py
-+++ b/syncthing_gtk/aboutdialog.py
-@@ -10,8 +10,9 @@
- 
- class AboutDialog(object):
-   """ Standard looking about dialog """
--  def __init__(self, app, gladepath):
-+  def __init__(self, app, gladepath, iconpath):
-   self.gladepath = gladepath
-+  self.iconpath = iconpath
-   self.setup_widgets(app)
-   
-   def show(self, parent=None):
-@@ -28,8 +29,10 @@ def close(self):
-   self.dialog.destroy()
-   
-   def setup_widgets(self, app):
--  # Load glade file
-   self.builder = UIBuilder()
-+  # Fix icon path
-+  self.builder.replace_icon_path("icons/", self.iconpath)
-+  # Load glade file
-   self.builder.add_from_file(os.path.join(self.gladepath, 
"about.glade"))
-   self.builder.connect_signals(self)
-   self.dialog = self.builder.get_object("dialog")
-diff --git a/syncthing_gtk/app.py b/syncthing_gtk/app.py
-index f910ca5..6d21487 100644
 a/syncthing_gtk/app.py
-+++ b/syncthing_gtk/app.py
-@@ -1699,7 +1699,7 @@ def cb_exit(self, *a):
-   
-   def cb_about(self, *a):
-   from syncthing_gtk.aboutdialog import AboutDialog
--  AboutDialog(self, self.gladepath).show(self["window"])
-+  AboutDialog(self, self.gladepath, 
self.iconpath).show(self["window"])
-   
-   def cb_delete_event(self, *e):
-   # Hide main window


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

2018-04-02 Thread Antonio Rojas via arch-commits
Date: Monday, April 2, 2018 @ 17:02:01
  Author: arojas
Revision: 313893

Update to 2.1.0

Modified:
  smb4k/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-04-02 16:56:07 UTC (rev 313892)
+++ PKGBUILD2018-04-02 17:02:01 UTC (rev 313893)
@@ -1,9 +1,10 @@
 # $Id$
-# Maintainer: Giovanni Scafora 
+# Maintainer: Antonio Rojas 
+# Contributor: Giovanni Scafora 
 # Contributor: Emanuele Rampichini 
 
 pkgname=smb4k
-pkgver=2.0.2
+pkgver=2.1.0
 pkgrel=1
 pkgdesc="A KDE program that browses samba shares"
 arch=(x86_64)
@@ -11,8 +12,8 @@
 license=(GPL)
 depends=(kparts hicolor-icon-theme)
 makedepends=(extra-cmake-modules kdoctools python plasma-framework)
-source=("https://downloads.sourceforge.net/project/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
-sha256sums=('01cbd10fe7a293243a65333baa65871eec8de007d0110639498fc1e4c190a199')
+source=("https://downloads.sourceforge.net/project/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=('db55be3433763e0f93efb62c8749c9aa94553ce8a9cd7fae19760abd92886ef6')
 
 prepare() {
   mkdir -p build
@@ -23,8 +24,7 @@
 
   cmake ../$pkgname-$pkgver \
 -DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=RELEASE \
--DKDE_INSTALL_LIBDIR=lib \
+-DCMAKE_INSTALL_LIBDIR=lib \
 -DBUILD_TESTING=OFF
   make
 }


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

2018-04-02 Thread Jaroslav Lichtblau via arch-commits
Date: Monday, April 2, 2018 @ 16:56:07
  Author: jlichtblau
Revision: 313892

archrelease: copy trunk to community-x86_64

Added:
  libgdamm/repos/community-x86_64/PKGBUILD
(from rev 313891, libgdamm/trunk/PKGBUILD)
Deleted:
  libgdamm/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-04-02 16:55:49 UTC (rev 313891)
+++ PKGBUILD2018-04-02 16:56:07 UTC (rev 313892)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Ionut Biru 
-# Contributor: Jan de Groot 
-
-pkgbase=libgdamm
-pkgname=(libgdamm libgdamm-docs)
-pkgver=4.99.10
-pkgrel=2
-arch=('i686' 'x86_64')
-makedepends=('libgda' 'libsigc++' 'glibmm' 'glibmm-docs')
-url="http://www.gtkmm.org/;
-license=('LGPL')
-options=('!emptydirs')
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgbase/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('9ba757b44db17313cd2ac2bc0e87a06bfc332dd3dfd132c141c8091334ee2c24')
-
-build() {
-  cd "${srcdir}/${pkgbase}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-package_libgdamm() {
-  pkgdesc="C++ bindings for libgda"
-  depends=('libgda' 'glibmm' 'libsigc++')
-  cd "${srcdir}/${pkgbase}-${pkgver}"
-
-  sed -i -e 's/^doc_subdirs/#doc_subdirs/' Makefile
-
-  make DESTDIR="${pkgdir}" install
-}
-
-package_libgdamm-docs() {
-  pkgdesc="Developer documentation for libgdamm"
-
-  cd "${srcdir}/${pkgbase}-${pkgver}"
-  make -C docs DESTDIR="${pkgdir}" install
-}

Copied: libgdamm/repos/community-x86_64/PKGBUILD (from rev 313891, 
libgdamm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-04-02 16:56:07 UTC (rev 313892)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Ionut Biru 
+# Contributor: Jan de Groot 
+
+pkgbase=libgdamm
+pkgname=(libgdamm libgdamm-docs)
+pkgver=4.99.11
+pkgrel=1
+arch=('x86_64')
+makedepends=('libgda' 'libsigc++' 'glibmm' 'glibmm-docs')
+url="http://www.gtkmm.org/;
+license=('LGPL')
+options=('!emptydirs')
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgbase/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('e9820070a1b258fbdfa9b6583d97dfdb1340c90bb353c5f5e21522375609d0bb')
+
+build() {
+  cd "${srcdir}/${pkgbase}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package_libgdamm() {
+  pkgdesc="C++ bindings for libgda"
+  depends=('libgda' 'glibmm' 'libsigc++')
+  cd "${srcdir}/${pkgbase}-${pkgver}"
+
+  sed -i -e 's/^doc_subdirs/#doc_subdirs/' Makefile
+
+  make DESTDIR="${pkgdir}" install
+}
+
+package_libgdamm-docs() {
+  pkgdesc="Developer documentation for libgdamm"
+
+  cd "${srcdir}/${pkgbase}-${pkgver}"
+  make -C docs DESTDIR="${pkgdir}" install
+}


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

2018-04-02 Thread Jaroslav Lichtblau via arch-commits
Date: Monday, April 2, 2018 @ 16:55:49
  Author: jlichtblau
Revision: 313891

upgpkg: libgdamm 4.99.11-1 - new upstream release

Modified:
  libgdamm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-04-02 16:53:36 UTC (rev 313890)
+++ PKGBUILD2018-04-02 16:55:49 UTC (rev 313891)
@@ -5,8 +5,8 @@
 
 pkgbase=libgdamm
 pkgname=(libgdamm libgdamm-docs)
-pkgver=4.99.10
-pkgrel=2
+pkgver=4.99.11
+pkgrel=1
 arch=('x86_64')
 makedepends=('libgda' 'libsigc++' 'glibmm' 'glibmm-docs')
 url="http://www.gtkmm.org/;
@@ -13,7 +13,7 @@
 license=('LGPL')
 options=('!emptydirs')
 
source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgbase/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('9ba757b44db17313cd2ac2bc0e87a06bfc332dd3dfd132c141c8091334ee2c24')
+sha256sums=('e9820070a1b258fbdfa9b6583d97dfdb1340c90bb353c5f5e21522375609d0bb')
 
 build() {
   cd "${srcdir}/${pkgbase}-${pkgver}"


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

2018-04-02 Thread Jaroslav Lichtblau via arch-commits
Date: Monday, April 2, 2018 @ 16:53:36
  Author: jlichtblau
Revision: 313890

archrelease: copy trunk to community-x86_64

Added:
  tellico/repos/community-x86_64/PKGBUILD
(from rev 313889, tellico/trunk/PKGBUILD)
  tellico/repos/community-x86_64/tellico.changelog
(from rev 313889, tellico/trunk/tellico.changelog)
Deleted:
  tellico/repos/community-x86_64/PKGBUILD
  tellico/repos/community-x86_64/tellico.changelog

---+
 PKGBUILD  |   77 --
 tellico.changelog |  103 ++--
 2 files changed, 93 insertions(+), 87 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-04-02 16:53:17 UTC (rev 313889)
+++ PKGBUILD2018-04-02 16:53:36 UTC (rev 313890)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Ray Rashif 
-# Contributor: Douglas Soares de Andrade 
-
-pkgname=tellico
-pkgver=3.1.1
-pkgrel=1
-pkgdesc="A collection manager for KDE"
-arch=('x86_64')
-url="http://tellico-project.org/;
-license=('GPL')
-depends=('exempi' 'kio' 'libksane' 'libkcddb' 'libcddb' 'libcdio' 
'hicolor-icon-theme' 'kfilemetadata'
- 'knewstuff' 'kxmlgui' 'kitemmodels' 'python2' 'solid' 'khtml' 'yaz' 
'taglib' 'poppler-qt5' 'qt5-base')
-makedepends=('cmake' 'extra-cmake-modules' 'kdoctools' 'libkcddb')
-changelog=$pkgname.changelog
-source=(http://tellico-project.org/files/$pkgname-$pkgver.tar.xz)
-sha256sums=('e55c64bdc7dcb2c6ae6b9edf182cc177a57ed22db1371400cfeefd07346ecbc7')
-
-build() {
-  cd "${srcdir}"
-
-  mkdir build && cd build
-
-  cmake ../$pkgname-$pkgver -DCMAKE_BUILD_TYPE=Release 
-DCMAKE_INSTALL_PREFIX=/usr -DWITH_Nepomuk=OFF
-  make
-}
-
-package() {
-  cd "${srcdir}"/build
-
-  make DESTDIR="${pkgdir}" install
-  
-# fix python 2.7 path
-  find "${pkgdir}" -iname "*.py" | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
-}

Copied: tellico/repos/community-x86_64/PKGBUILD (from rev 313889, 
tellico/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-04-02 16:53:36 UTC (rev 313890)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Ray Rashif 
+# Contributor: Douglas Soares de Andrade 
+
+pkgname=tellico
+pkgver=3.1.2
+pkgrel=1
+pkgdesc="A collection manager for KDE"
+arch=('x86_64')
+url="http://tellico-project.org/;
+license=('GPL')
+depends=('exempi' 'hicolor-icon-theme' 'kio' 'libksane' 'libkcddb' 'libcddb' 
+ 'libcdio' 'kfilemetadata' 'knewstuff' 'kxmlgui' 'kitemmodels'
+ 'python2' 'solid' 'khtml' 'yaz' 'taglib' 'poppler-qt5' 'qt5-base')
+makedepends=('cmake' 'extra-cmake-modules' 'kdoctools' 'libkcddb')
+changelog=$pkgname.changelog
+source=(http://tellico-project.org/files/$pkgname-$pkgver.tar.xz)
+sha256sums=('f94390a9a28ba201fb1ba567fc80e48ef5d66420e9dca3aaae17fedae102f221')
+
+build() {
+  cd "${srcdir}"
+
+  mkdir build && cd build
+
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_Nepomuk=OFF
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+
+  make DESTDIR="${pkgdir}" install
+# fix python 2.7 path
+  find "${pkgdir}" -iname "*.py" | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
+}

Deleted: tellico.changelog
===
--- tellico.changelog   2018-04-02 16:53:17 UTC (rev 313889)
+++ tellico.changelog   2018-04-02 16:53:36 UTC (rev 313890)
@@ -1,50 +0,0 @@
-2018-01-16 Jaroslav Lichtblau 
-   * tellico 3.1.1-1
-
-2018-01-11 Jaroslav Lichtblau 
-   * tellico 3.1-3 libcdio API and ABI changes rebuild
-
-2017-12-02 Jaroslav Lichtblau 
-   * tellico 3.1-2 FS#56026 fix
-
-2017-10-18 Jaroslav Lichtblau 
-   * tellico 3.1-1
-
-2017-03-31 Jaroslav Lichtblau 
-   * tellico 3.0.2-1
-
-2017-02-21 Jaroslav Lichtblau 
-   * tellico 3.0.1-1
-
-2016-12-20 Jaroslav Lichtblau 
-   * tellico 3.0-4 FS#52202 fix
-
-2016-12-18 Jaroslav Lichtblau 
-   * tellico 3.0-3 FS#52188 fix
-
-2016-11-09 Jaroslav Lichtblau 
-   * tellico 3.0-1
-
-2016-04-30 Jaroslav Lichtblau 
-   * tellico 2.3.11-2 pacman hooks rebuild
-
-2015-12-11 Jaroslav Lichtblau 
-   * tellico 2.3.11-1
-
-2015-02-16 Jaroslav Lichtblau 
-  

[arch-commits] Commit in tellico/trunk (PKGBUILD tellico.changelog)

2018-04-02 Thread Jaroslav Lichtblau via arch-commits
Date: Monday, April 2, 2018 @ 16:53:17
  Author: jlichtblau
Revision: 313889

upgpkg: tellico 3.1.2-1 - new upstream release

Modified:
  tellico/trunk/PKGBUILD
  tellico/trunk/tellico.changelog

---+
 PKGBUILD  |   15 +--
 tellico.changelog |3 +++
 2 files changed, 12 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-04-02 16:27:55 UTC (rev 313888)
+++ PKGBUILD2018-04-02 16:53:17 UTC (rev 313889)
@@ -5,18 +5,19 @@
 # Contributor: Douglas Soares de Andrade 
 
 pkgname=tellico
-pkgver=3.1.1
+pkgver=3.1.2
 pkgrel=1
 pkgdesc="A collection manager for KDE"
 arch=('x86_64')
 url="http://tellico-project.org/;
 license=('GPL')
-depends=('exempi' 'kio' 'libksane' 'libkcddb' 'libcddb' 'libcdio' 
'hicolor-icon-theme' 'kfilemetadata'
- 'knewstuff' 'kxmlgui' 'kitemmodels' 'python2' 'solid' 'khtml' 'yaz' 
'taglib' 'poppler-qt5' 'qt5-base')
+depends=('exempi' 'hicolor-icon-theme' 'kio' 'libksane' 'libkcddb' 'libcddb' 
+ 'libcdio' 'kfilemetadata' 'knewstuff' 'kxmlgui' 'kitemmodels'
+ 'python2' 'solid' 'khtml' 'yaz' 'taglib' 'poppler-qt5' 'qt5-base')
 makedepends=('cmake' 'extra-cmake-modules' 'kdoctools' 'libkcddb')
 changelog=$pkgname.changelog
 source=(http://tellico-project.org/files/$pkgname-$pkgver.tar.xz)
-sha256sums=('e55c64bdc7dcb2c6ae6b9edf182cc177a57ed22db1371400cfeefd07346ecbc7')
+sha256sums=('f94390a9a28ba201fb1ba567fc80e48ef5d66420e9dca3aaae17fedae102f221')
 
 build() {
   cd "${srcdir}"
@@ -23,7 +24,10 @@
 
   mkdir build && cd build
 
-  cmake ../$pkgname-$pkgver -DCMAKE_BUILD_TYPE=Release 
-DCMAKE_INSTALL_PREFIX=/usr -DWITH_Nepomuk=OFF
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_Nepomuk=OFF
   make
 }
 
@@ -31,7 +35,6 @@
   cd "${srcdir}"/build
 
   make DESTDIR="${pkgdir}" install
-  
 # fix python 2.7 path
   find "${pkgdir}" -iname "*.py" | xargs sed -i 's|#!/usr/bin/env 
python|#!/usr/bin/env python2|'
 }

Modified: tellico.changelog
===
--- tellico.changelog   2018-04-02 16:27:55 UTC (rev 313888)
+++ tellico.changelog   2018-04-02 16:53:17 UTC (rev 313889)
@@ -1,3 +1,6 @@
+2018-04-02 Jaroslav Lichtblau 
+   * tellico 3.1.2-1
+
 2018-01-16 Jaroslav Lichtblau 
* tellico 3.1.1-1
 


[arch-commits] Commit in josm/repos/community-any (6 files)

2018-04-02 Thread Jaroslav Lichtblau via arch-commits
Date: Monday, April 2, 2018 @ 16:27:55
  Author: jlichtblau
Revision: 313888

archrelease: copy trunk to community-any

Added:
  josm/repos/community-any/PKGBUILD
(from rev 313887, josm/trunk/PKGBUILD)
  josm/repos/community-any/josm.changelog
(from rev 313887, josm/trunk/josm.changelog)
  josm/repos/community-any/josm.conf.d
(from rev 313887, josm/trunk/josm.conf.d)
Deleted:
  josm/repos/community-any/PKGBUILD
  josm/repos/community-any/josm.changelog
  josm/repos/community-any/josm.conf.d

+
 PKGBUILD   |  104 +-
 josm.changelog |  543 +++
 josm.conf.d|8 
 3 files changed, 329 insertions(+), 326 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-04-02 16:27:27 UTC (rev 313887)
+++ PKGBUILD2018-04-02 16:27:55 UTC (rev 313888)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Michele Schäuble 
-
-pkgname=josm
-pkgver=13500
-pkgrel=1
-pkgdesc="An editor for OpenStreetMap written in Java"
-arch=('any')
-url="http://josm.openstreetmap.de/;
-license=('GPL')
-depends=('java-runtime>=8' 'libxtst' 'ttf-font')
-changelog=$pkgname.changelog
-backup=('etc/conf.d/josm')
-source=(https://josm.openstreetmap.de/$pkgname-tested.jar
-
https://josm.openstreetmap.de/export/HEAD/$pkgname/trunk/linux/tested/usr/share/applications/$pkgname.desktop
-$pkgname.conf.d)
-noextract=($pkgname-tested.jar)
-sha256sums=('fbc49a21b0c08f24146bf9c5e1059af4f9cb40dbc70d7bb1fcaaa5823cd1deb7'
-'9b18b076fd371fc87b851a700bb1fff6547b061769af57a3abc9af83405c16d2'
-'c86a73251eed42fcb129ae9b88a0ee3cf03d8d00a9385519ad536d5af0907663')
-
-prepare() {
-  cd "${srcdir}"
-  bsdtar -xf $pkgname-tested.jar images/logo.svg
-}
-
-package() {
-  cd "${srcdir}"
-
-  install -Dm644 $pkgname-tested.jar 
"${pkgdir}"/usr/share/java/$pkgname/$pkgname.jar
-
-#.desktop and icon file
-  install -Dm644 "${srcdir}"/${pkgname}.desktop 
${pkgdir}/usr/share/applications/$pkgname.desktop
-  install -Dm644 images/logo.svg "${pkgdir}"/usr/share/pixmaps/$pkgname.svg
-
-#executable file
-  install -d "${pkgdir}"/usr/bin
-  cat <<"EOF" >"${pkgdir}"/usr/bin/$pkgname 
-#!/bin/sh
-# source application-specific settings
-while true; do
-JOSM_ARGS=
-[ -f /etc/conf.d/josm ] && . /etc/conf.d/josm
-CLASSPATH="/usr/share/java/josm/josm.jar"
-java ${JOSM_ARGS} -cp "${CLASSPATH}" -Djosm.restart=true 
org.openstreetmap.josm.gui.MainApplication "$@"
-[ $? -eq 9 ] || break
-done
-EOF
-  chmod 755 "${pkgdir}"/usr/bin/$pkgname
-  install -Dm644 "${srcdir}"/$pkgname.conf.d "${pkgdir}"/etc/conf.d/$pkgname
-}

Copied: josm/repos/community-any/PKGBUILD (from rev 313887, josm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-04-02 16:27:55 UTC (rev 313888)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Michele Schäuble 
+
+pkgname=josm
+pkgver=13576
+pkgrel=1
+pkgdesc="An editor for OpenStreetMap written in Java"
+arch=('any')
+url="http://josm.openstreetmap.de/;
+license=('GPL')
+depends=('java-runtime>=8' 'libxtst' 'ttf-font')
+changelog=$pkgname.changelog
+backup=('etc/conf.d/josm')
+source=(https://josm.openstreetmap.de/$pkgname-tested.jar
+
https://josm.openstreetmap.de/export/HEAD/$pkgname/trunk/linux/tested/usr/share/applications/$pkgname.desktop
+$pkgname.conf.d)
+noextract=($pkgname-tested.jar)
+sha256sums=('a44d1908798da935e1081df763b37b021650e44ee7c8bde228fa23dd76d6875f'
+'9b18b076fd371fc87b851a700bb1fff6547b061769af57a3abc9af83405c16d2'
+'c86a73251eed42fcb129ae9b88a0ee3cf03d8d00a9385519ad536d5af0907663')
+
+prepare() {
+  cd "${srcdir}"
+  bsdtar -xf $pkgname-tested.jar images/logo.svg
+}
+
+package() {
+  cd "${srcdir}"
+
+  install -Dm644 $pkgname-tested.jar 
"${pkgdir}"/usr/share/java/$pkgname/$pkgname.jar
+
+#.desktop and icon file
+  install -Dm644 "${srcdir}"/${pkgname}.desktop 
${pkgdir}/usr/share/applications/$pkgname.desktop
+  install -Dm644 images/logo.svg "${pkgdir}"/usr/share/pixmaps/$pkgname.svg
+
+#executable file
+  install -d "${pkgdir}"/usr/bin
+  cat <<"EOF" >"${pkgdir}"/usr/bin/$pkgname 
+#!/bin/sh
+# source application-specific settings
+while true; do
+JOSM_ARGS=
+[ -f /etc/conf.d/josm ] && . /etc/conf.d/josm
+CLASSPATH="/usr/share/java/josm/josm.jar"
+java ${JOSM_ARGS} -cp "${CLASSPATH}" -Djosm.restart=true 
org.openstreetmap.josm.gui.MainApplication "$@"
+[ $? -eq 9 ] || break
+done
+EOF
+  chmod 755 "${pkgdir}"/usr/bin/$pkgname
+  install -Dm644 "${srcdir}"/$pkgname.conf.d "${pkgdir}"/etc/conf.d/$pkgname
+}

Deleted: josm.changelog
===
--- 

[arch-commits] Commit in josm/trunk (PKGBUILD josm.changelog)

2018-04-02 Thread Jaroslav Lichtblau via arch-commits
Date: Monday, April 2, 2018 @ 16:27:27
  Author: jlichtblau
Revision: 313887

upgpkg: josm 13576-1 - new upstream release

Modified:
  josm/trunk/PKGBUILD
  josm/trunk/josm.changelog

+
 PKGBUILD   |4 ++--
 josm.changelog |3 +++
 2 files changed, 5 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-04-02 16:21:43 UTC (rev 313886)
+++ PKGBUILD2018-04-02 16:27:27 UTC (rev 313887)
@@ -3,7 +3,7 @@
 # Contributor: Michele Schäuble 
 
 pkgname=josm
-pkgver=13500
+pkgver=13576
 pkgrel=1
 pkgdesc="An editor for OpenStreetMap written in Java"
 arch=('any')
@@ -16,7 +16,7 @@
 
https://josm.openstreetmap.de/export/HEAD/$pkgname/trunk/linux/tested/usr/share/applications/$pkgname.desktop
 $pkgname.conf.d)
 noextract=($pkgname-tested.jar)
-sha256sums=('fbc49a21b0c08f24146bf9c5e1059af4f9cb40dbc70d7bb1fcaaa5823cd1deb7'
+sha256sums=('a44d1908798da935e1081df763b37b021650e44ee7c8bde228fa23dd76d6875f'
 '9b18b076fd371fc87b851a700bb1fff6547b061769af57a3abc9af83405c16d2'
 'c86a73251eed42fcb129ae9b88a0ee3cf03d8d00a9385519ad536d5af0907663')
 

Modified: josm.changelog
===
--- josm.changelog  2018-04-02 16:21:43 UTC (rev 313886)
+++ josm.changelog  2018-04-02 16:27:27 UTC (rev 313887)
@@ -1,3 +1,6 @@
+2018-04-02 Jaroslav Lichtblau 
+   * josm 13576-1
+
 2018-03-08 Jaroslav Lichtblau 
* josm 13500-1
 


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

2018-04-02 Thread Jaroslav Lichtblau via arch-commits
Date: Monday, April 2, 2018 @ 16:21:43
  Author: jlichtblau
Revision: 313886

archrelease: copy trunk to community-x86_64

Added:
  hugo/repos/community-x86_64/PKGBUILD
(from rev 313885, hugo/trunk/PKGBUILD)
Deleted:
  hugo/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   80 ++---
 1 file changed, 40 insertions(+), 40 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-04-02 16:21:29 UTC (rev 313885)
+++ PKGBUILD2018-04-02 16:21:43 UTC (rev 313886)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: fordprefect
-# Contributor: Jonathon Fernyhough 
-# Contributor: Brenton Horne
-
-pkgname=hugo
-pkgver=0.37.1
-pkgrel=1
-pkgdesc="Fast and Flexible Static Site Generator in Go"
-arch=('x86_64')
-url="https://gohugo.io/;
-license=('Apache')
-depends=('glibc')
-makedepends=('go-pie' 'git')
-optdepends=('pygmentize: syntax-highlight code snippets')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/gohugoio/${pkgname}/archive/v${pkgver}.tar.gz)
-sha256sums=('32ceca3bfcda80109ebd16b0cfdeb40c6b6fb1fe86976abdbd0fbce2e6492172')
-
-prepare() {
-  cd "${srcdir}"/${pkgname}-${pkgver}
-  export GOPATH="${srcdir}"
-  export PATH="${PATH}:${srcdir}/bin"
-  install -d "${GOPATH}/src/github.com/gohugoio"
-  cp -a "$(pwd)" "${GOPATH}/src/github.com/gohugoio/hugo"
-}
-
-build() {
-  cd "${GOPATH}/src/github.com/gohugoio/hugo"
-  go get -u github.com/golang/dep/cmd/dep
-  dep ensure
-  go get github.com/magefile/mage
-  mage hugo
-}
-
-package() {
-  cd "${GOPATH}/src/github.com/gohugoio/hugo"
-  install -Dm755 "${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
-  install -Dm644 LICENSE.md "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: hugo/repos/community-x86_64/PKGBUILD (from rev 313885, 
hugo/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-04-02 16:21:43 UTC (rev 313886)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: fordprefect
+# Contributor: Jonathon Fernyhough 
+# Contributor: Brenton Horne
+
+pkgname=hugo
+pkgver=0.38
+pkgrel=1
+pkgdesc="Fast and Flexible Static Site Generator in Go"
+arch=('x86_64')
+url="https://gohugo.io/;
+license=('Apache')
+depends=('glibc')
+makedepends=('go-pie' 'git')
+optdepends=('pygmentize: syntax-highlight code snippets')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/gohugoio/${pkgname}/archive/v${pkgver}.tar.gz)
+sha256sums=('08549563b718cc904e9a71b084f975b4b1fe05ab431e1258cbae23d4b76846ab')
+
+prepare() {
+  cd "${srcdir}"/${pkgname}-${pkgver}
+  export GOPATH="${srcdir}"
+  export PATH="${PATH}:${srcdir}/bin"
+  install -d "${GOPATH}/src/github.com/gohugoio"
+  cp -a "$(pwd)" "${GOPATH}/src/github.com/gohugoio/hugo"
+}
+
+build() {
+  cd "${GOPATH}/src/github.com/gohugoio/hugo"
+  go get -u github.com/golang/dep/cmd/dep
+  dep ensure
+  go get github.com/magefile/mage
+  mage hugo
+}
+
+package() {
+  cd "${GOPATH}/src/github.com/gohugoio/hugo"
+  install -Dm755 "${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
+  install -Dm644 LICENSE.md "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


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

2018-04-02 Thread Jaroslav Lichtblau via arch-commits
Date: Monday, April 2, 2018 @ 16:21:29
  Author: jlichtblau
Revision: 313885

upgpkg: hugo 0.38-1 - new upstream release 

Modified:
  hugo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-04-02 15:07:17 UTC (rev 313884)
+++ PKGBUILD2018-04-02 16:21:29 UTC (rev 313885)
@@ -5,7 +5,7 @@
 # Contributor: Brenton Horne
 
 pkgname=hugo
-pkgver=0.37.1
+pkgver=0.38
 pkgrel=1
 pkgdesc="Fast and Flexible Static Site Generator in Go"
 arch=('x86_64')
@@ -15,7 +15,7 @@
 makedepends=('go-pie' 'git')
 optdepends=('pygmentize: syntax-highlight code snippets')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/gohugoio/${pkgname}/archive/v${pkgver}.tar.gz)
-sha256sums=('32ceca3bfcda80109ebd16b0cfdeb40c6b6fb1fe86976abdbd0fbce2e6492172')
+sha256sums=('08549563b718cc904e9a71b084f975b4b1fe05ab431e1258cbae23d4b76846ab')
 
 prepare() {
   cd "${srcdir}"/${pkgname}-${pkgver}


[arch-commits] Commit in gnome-photos/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2018-04-02 Thread Jan Steffens via arch-commits
Date: Monday, April 2, 2018 @ 15:56:39
  Author: heftig
Revision: 320841

archrelease: copy trunk to extra-x86_64

Added:
  gnome-photos/repos/extra-x86_64/PKGBUILD
(from rev 320840, gnome-photos/trunk/PKGBUILD)
Deleted:
  gnome-photos/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-04-01 23:53:36 UTC (rev 320840)
+++ PKGBUILD2018-04-02 15:56:39 UTC (rev 320841)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=gnome-photos
-pkgver=3.27.92+19+g20868a30
-pkgrel=1
-pkgdesc="Access, organize, and share your photos on GNOME"
-arch=(x86_64)
-url="https://wiki.gnome.org/Apps/Photos;
-license=(GPL)
-depends=(exempi gtk3 libexif librsvg babl gegl gsettings-desktop-schemas 
grilo-plugins lcms2
- tracker-miners geocode-glib grilo gfbgraph libgdata libgexiv2 libraw 
gnome-online-accounts
- gnome-online-miners dleyna-server dleyna-renderer libdazzle)
-makedepends=(itstool python yelp-tools autoconf-archive git)
-groups=(gnome)
-_commit=20868a30076b3a0e713ab4336978364cdb79f326  # master
-source=("git+https://gitlab.gnome.org/GNOME/gnome-photos.git#commit=$_commit;
-"git+https://git.gnome.org/browse/libgd;)
-sha256sums=('SKIP'
-'SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-
-  git submodule init
-  git config --local submodule.libgd.url "$srcdir/libgd"
-  git submodule update
-
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---libexecdir=/usr/lib --enable-compile-warnings=minimum
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-check() {
-  cd $pkgname
-  # disabled: needs dogtail which we don't have
-  #make check
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}

Copied: gnome-photos/repos/extra-x86_64/PKGBUILD (from rev 320840, 
gnome-photos/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-04-02 15:56:39 UTC (rev 320841)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=gnome-photos
+pkgver=3.28.0
+pkgrel=1
+pkgdesc="Access, organize, and share your photos on GNOME"
+arch=(x86_64)
+url="https://wiki.gnome.org/Apps/Photos;
+license=(GPL)
+depends=(exempi gtk3 libexif librsvg babl gegl gsettings-desktop-schemas 
grilo-plugins lcms2
+ tracker-miners geocode-glib grilo gfbgraph libgdata libgexiv2 libraw 
gnome-online-accounts
+ gnome-online-miners dleyna-server dleyna-renderer libdazzle)
+makedepends=(itstool python yelp-tools autoconf-archive git)
+groups=(gnome)
+_commit=cceaa5f8543a995b186cafb5443f3dd1a9c13c9c  # tags/3.28.0^0
+source=("git+https://gitlab.gnome.org/GNOME/gnome-photos.git#commit=$_commit;
+"git+https://git.gnome.org/browse/libgd;)
+sha256sums=('SKIP'
+'SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+
+  git submodule init
+  git config --local submodule.libgd.url "$srcdir/libgd"
+  git submodule update
+
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--libexecdir=/usr/lib --enable-compile-warnings=minimum
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+check() {
+  cd $pkgname
+  # disabled: needs dogtail which we don't have
+  #make check
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}


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

2018-04-02 Thread Antonio Rojas via arch-commits
Date: Monday, April 2, 2018 @ 15:07:17
  Author: arojas
Revision: 313884

archrelease: copy trunk to community-x86_64

Added:
  pynormaliz/repos/community-x86_64/PKGBUILD
(from rev 313883, pynormaliz/trunk/PKGBUILD)
Deleted:
  pynormaliz/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   80 ++---
 1 file changed, 40 insertions(+), 40 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-04-02 15:06:50 UTC (rev 313883)
+++ PKGBUILD2018-04-02 15:07:17 UTC (rev 313884)
@@ -1,40 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgbase=pynormaliz
-pkgname=(python2-pynormaliz python-pynormaliz)
-pkgver=1.10
-pkgrel=1
-pkgdesc="A Python interface to Normaliz"
-arch=(x86_64)
-url="https://github.com/sebasguts/PyNormaliz;
-license=(GPL2)
-makedepends=(python-setuptools python2-setuptools normaliz boost)
-source=("https://pypi.io/packages/source/P/PyNormaliz/PyNormaliz-$pkgver.tar.gz;)
-sha256sums=('bcab283882ee359c8c2ce1f13b0f082446d235a9b190e29d8303fa0c0f7a146e')
-
-prepare() {
-  cp -r PyNormaliz-$pkgver PyNormaliz-$pkgver-py2
-}
-
-build() {
-  cd PyNormaliz-$pkgver
-  python setup.py build
-
-  cd ../PyNormaliz-$pkgver-py2
-  python2 setup.py build
-}
-
-package_python2-pynormaliz() {
-  depends=(python2 normaliz)
-  cd PyNormaliz-$pkgver-py2
-
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
-}
-
-package_python-pynormaliz() {
-  depends=(python normaliz)
-  cd PyNormaliz-$pkgver
-  
-  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
-}
-

Copied: pynormaliz/repos/community-x86_64/PKGBUILD (from rev 313883, 
pynormaliz/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-04-02 15:07:17 UTC (rev 313884)
@@ -0,0 +1,40 @@
+# Maintainer: Antonio Rojas 
+
+pkgbase=pynormaliz
+pkgname=(python2-pynormaliz python-pynormaliz)
+pkgver=1.12
+pkgrel=1
+pkgdesc="A Python interface to Normaliz"
+arch=(x86_64)
+url="https://github.com/sebasguts/PyNormaliz;
+license=(GPL2)
+makedepends=(python-setuptools python2-setuptools normaliz boost)
+source=("https://pypi.io/packages/source/P/PyNormaliz/PyNormaliz-$pkgver.tar.gz;)
+sha256sums=('98e657591ae8d370b8811a7c9b1494b2535b1d2abbfe8a26a88a14fed103cf80')
+
+prepare() {
+  cp -r PyNormaliz-$pkgver PyNormaliz-$pkgver-py2
+}
+
+build() {
+  cd PyNormaliz-$pkgver
+  python setup.py build
+
+  cd ../PyNormaliz-$pkgver-py2
+  python2 setup.py build
+}
+
+package_python2-pynormaliz() {
+  depends=(python2 normaliz)
+  cd PyNormaliz-$pkgver-py2
+
+  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+}
+
+package_python-pynormaliz() {
+  depends=(python normaliz)
+  cd PyNormaliz-$pkgver
+  
+  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+}
+


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

2018-04-02 Thread Antonio Rojas via arch-commits
Date: Monday, April 2, 2018 @ 15:06:50
  Author: arojas
Revision: 313883

Update to 1.12

Modified:
  pynormaliz/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-04-02 15:04:35 UTC (rev 313882)
+++ PKGBUILD2018-04-02 15:06:50 UTC (rev 313883)
@@ -2,7 +2,7 @@
 
 pkgbase=pynormaliz
 pkgname=(python2-pynormaliz python-pynormaliz)
-pkgver=1.10
+pkgver=1.12
 pkgrel=1
 pkgdesc="A Python interface to Normaliz"
 arch=(x86_64)
@@ -10,7 +10,7 @@
 license=(GPL2)
 makedepends=(python-setuptools python2-setuptools normaliz boost)
 
source=("https://pypi.io/packages/source/P/PyNormaliz/PyNormaliz-$pkgver.tar.gz;)
-sha256sums=('bcab283882ee359c8c2ce1f13b0f082446d235a9b190e29d8303fa0c0f7a146e')
+sha256sums=('98e657591ae8d370b8811a7c9b1494b2535b1d2abbfe8a26a88a14fed103cf80')
 
 prepare() {
   cp -r PyNormaliz-$pkgver PyNormaliz-$pkgver-py2


[arch-commits] Commit in gir-to-d/repos/community-x86_64 (PKGBUILD PKGBUILD)

2018-04-02 Thread Antonio Rojas via arch-commits
Date: Monday, April 2, 2018 @ 15:04:35
  Author: arojas
Revision: 313882

archrelease: copy trunk to community-x86_64

Added:
  gir-to-d/repos/community-x86_64/PKGBUILD
(from rev 313881, gir-to-d/trunk/PKGBUILD)
Deleted:
  gir-to-d/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-04-02 15:04:05 UTC (rev 313881)
+++ PKGBUILD2018-04-02 15:04:35 UTC (rev 313882)
@@ -1,28 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=gir-to-d
-pkgver=0.13.0
-pkgrel=1
-pkgdesc="Create D bindings from GObject introspection files"
-arch=(x86_64)
-url="https://github.com/gtkd-developers/gir-to-d;
-license=(LGPL3)
-depends=(gcc-libs)
-makedepends=(meson dmd libphobos)
-source=($pkgname-$pkgver.tar.gz::"https://github.com/gtkd-developers/gir-to-d/archive/v$pkgver.tar.gz;)
-sha256sums=('bf74a6a0199c45671ed6d8e786da2f2f6094e99d3c372c34829e18f9d03fdc8f')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  meson ../$pkgname-$pkgver --prefix=/usr
-  ninja
-}
-
-package() {
-  cd build
-  DESTDIR="$pkgdir" ninja install
-}

Copied: gir-to-d/repos/community-x86_64/PKGBUILD (from rev 313881, 
gir-to-d/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-04-02 15:04:35 UTC (rev 313882)
@@ -0,0 +1,28 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=gir-to-d
+pkgver=0.14.0
+pkgrel=1
+pkgdesc="Create D bindings from GObject introspection files"
+arch=(x86_64)
+url="https://github.com/gtkd-developers/gir-to-d;
+license=(LGPL3)
+depends=(gcc-libs)
+makedepends=(meson dmd libphobos)
+source=($pkgname-$pkgver.tar.gz::"https://github.com/gtkd-developers/gir-to-d/archive/v$pkgver.tar.gz;)
+sha256sums=('cf3504f59b3bd17925336491517eb76515fa382e156051a55347cca949256681')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  meson ../$pkgname-$pkgver --prefix=/usr
+  ninja
+}
+
+package() {
+  cd build
+  DESTDIR="$pkgdir" ninja install
+}


[arch-commits] Commit in gir-to-d/trunk (PKGBUILD)

2018-04-02 Thread Antonio Rojas via arch-commits
Date: Monday, April 2, 2018 @ 15:04:05
  Author: arojas
Revision: 313881

Update to 0.14.0

Modified:
  gir-to-d/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-04-02 13:20:03 UTC (rev 313880)
+++ PKGBUILD2018-04-02 15:04:05 UTC (rev 313881)
@@ -1,7 +1,7 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=gir-to-d
-pkgver=0.13.0
+pkgver=0.14.0
 pkgrel=1
 pkgdesc="Create D bindings from GObject introspection files"
 arch=(x86_64)
@@ -10,7 +10,7 @@
 depends=(gcc-libs)
 makedepends=(meson dmd libphobos)
 
source=($pkgname-$pkgver.tar.gz::"https://github.com/gtkd-developers/gir-to-d/archive/v$pkgver.tar.gz;)
-sha256sums=('bf74a6a0199c45671ed6d8e786da2f2f6094e99d3c372c34829e18f9d03fdc8f')
+sha256sums=('cf3504f59b3bd17925336491517eb76515fa382e156051a55347cca949256681')
 
 prepare() {
   mkdir -p build


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

2018-04-02 Thread Felix Yan via arch-commits
Date: Monday, April 2, 2018 @ 13:20:03
  Author: felixonmars
Revision: 313880

archrelease: copy trunk to community-x86_64

Added:
  python-sqlalchemy/repos/community-x86_64/PKGBUILD
(from rev 313879, python-sqlalchemy/trunk/PKGBUILD)
Deleted:
  python-sqlalchemy/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-04-02 13:05:56 UTC (rev 313879)
+++ PKGBUILD2018-04-02 13:20:03 UTC (rev 313880)
@@ -1,62 +0,0 @@
-# $Id$ 
-# Maintainer: Angel Velasquez 
-# Maintainer: Felix Yan 
-# Contributor: Sébastien Luttringer 
-
-pkgbase=python-sqlalchemy
-pkgname=('python-sqlalchemy' 'python2-sqlalchemy')
-pkgver=1.2.6
-pkgrel=1
-arch=('x86_64') # python2 package contain .so
-url="http://www.sqlalchemy.org/;
-license=('MIT')
-makedepends=('python-setuptools' 'python2-setuptools')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
'python-pytest-xdist' 'python2-pytest-xdist' 'python-mock' 'python2-mock')
-source=("https://pypi.io/packages/source/S/SQLAlchemy/SQLAlchemy-$pkgver.tar.gz"{,.asc})
-validpgpkeys=('83AF7ACE251C13E6BB7DEFBD330239C1C4DAFEE1')
-sha512sums=('439a8238ea2abfc05c8903fd41c19f389bd3e3e41455398dea71d353226eb96ab22aaf497552ba20500a79cc9a111c1faa5272acfa93eb6133f84ab541c3a1bb'
-'SKIP')
-
-prepare() {
-  cp -a SQLAlchemy-$pkgver SQLAlchemy2-$pkgver
-}
-
-build() {
-  cd "$srcdir"/SQLAlchemy-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/SQLAlchemy2-$pkgver
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/SQLAlchemy-$pkgver
-  python setup.py pytest
- 
-  cd "$srcdir"/SQLAlchemy2-$pkgver  
-  python2 setup.py pytest
-}
-
-package_python-sqlalchemy() {
-  pkgdesc='Python SQL toolkit and Object Relational Mapper'
-  depends=('python')
-  optdepends=('python-psycopg2: connect to PostgreSQL database')
-
-  cd SQLAlchemy-$pkgver
-  python setup.py install --root="${pkgdir}"
-  install -D -m644 LICENSE \
- "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_python2-sqlalchemy() {
-  pkgdesc='Python 2 SQL toolkit and Object Relational Mapper'
-  depends=('python2')
-  optdepends=('python2-psycopg2: connect to PostgreSQL database')
-
-  cd SQLAlchemy2-$pkgver
-  python2 setup.py install --root="$pkgdir"
-  install -D -m644 LICENSE \
- "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 ft=sh et:

Copied: python-sqlalchemy/repos/community-x86_64/PKGBUILD (from rev 313879, 
python-sqlalchemy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-04-02 13:20:03 UTC (rev 313880)
@@ -0,0 +1,62 @@
+# $Id$ 
+# Maintainer: Angel Velasquez 
+# Maintainer: Felix Yan 
+# Contributor: Sébastien Luttringer 
+
+pkgbase=python-sqlalchemy
+pkgname=('python-sqlalchemy' 'python2-sqlalchemy')
+pkgver=1.2.6
+pkgrel=1
+arch=('x86_64') # python2 package contain .so
+url="http://www.sqlalchemy.org/;
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 
'python-pytest-xdist' 'python2-pytest-xdist' 'python-mock' 'python2-mock')
+source=("https://pypi.io/packages/source/S/SQLAlchemy/SQLAlchemy-$pkgver.tar.gz"{,.asc})
+validpgpkeys=('83AF7ACE251C13E6BB7DEFBD330239C1C4DAFEE1')
+sha512sums=('439a8238ea2abfc05c8903fd41c19f389bd3e3e41455398dea71d353226eb96ab22aaf497552ba20500a79cc9a111c1faa5272acfa93eb6133f84ab541c3a1bb'
+'SKIP')
+
+prepare() {
+  cp -a SQLAlchemy-$pkgver SQLAlchemy2-$pkgver
+}
+
+build() {
+  cd "$srcdir"/SQLAlchemy-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/SQLAlchemy2-$pkgver
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/SQLAlchemy-$pkgver
+  python setup.py pytest
+ 
+  cd "$srcdir"/SQLAlchemy2-$pkgver  
+  python2 setup.py pytest
+}
+
+package_python-sqlalchemy() {
+  pkgdesc='Python SQL toolkit and Object Relational Mapper'
+  depends=('python')
+  optdepends=('python-psycopg2: connect to PostgreSQL database')
+
+  cd SQLAlchemy-$pkgver
+  python setup.py install --root="${pkgdir}"
+  install -D -m644 LICENSE \
+ "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_python2-sqlalchemy() {
+  pkgdesc='Python 2 SQL toolkit and Object Relational Mapper'
+  depends=('python2')
+  optdepends=('python2-psycopg2: connect to PostgreSQL database')
+
+  cd SQLAlchemy2-$pkgver
+  python2 setup.py install --root="$pkgdir"
+  install -D -m644 LICENSE \
+ "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 ft=sh et:


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

2018-04-02 Thread Felix Yan via arch-commits
Date: Monday, April 2, 2018 @ 13:05:24
  Author: felixonmars
Revision: 313878

upgpkg: sshuttle 0.78.4-1

Modified:
  sshuttle/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-04-02 13:05:05 UTC (rev 313877)
+++ PKGBUILD2018-04-02 13:05:24 UTC (rev 313878)
@@ -3,7 +3,7 @@
 # Contributor: alphazo 
 
 pkgname=sshuttle
-pkgver=0.78.3
+pkgver=0.78.4
 pkgrel=1
 pkgdesc='Transparent proxy server that forwards all TCP packets over ssh'
 arch=('any')
@@ -15,7 +15,7 @@
 backup=('etc/sshuttle/tunnel.conf' 'etc/sshuttle/prefixes.conf')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/sshuttle/$pkgname/archive/v$pkgver.tar.gz;
 'sshuttle.service' 'prefixes.conf' 'tunnel.conf')
-sha512sums=('5c2aaed1c1cda6bd6f0b0c81f0f0c1a6b717c83fa9279d9d13f5e754d7ce9a6b00ca4705868c4971e80a9846477db2ccb88b2927f0ff2c11851633dc12292fa1'
+sha512sums=('3c91d487ffe83a9b8019def6556586e0dc8e6c467275da403178807fb0ef5553781b69357484f58d8c3fda6ef9940caffc371b4698f8b83e4fcba2012575d730'
 
'655ac580a02ea75376701fd40d0a340b2385efe07016b0930eef9cce98faac60e7c96e492b5894f0897c311196bebf514f9dd2a0be1cc8cc21f18fb0bfeab057'
 
'cc5a5dee7991c7641fa8a4fb356e1977aa9d1cbfed63cb5ebf8732c4de76be841f66d9267472e70578b176f528d8cfb4f75e634d5d915f4c8bcdc0b801db8a13'
 
'acd3d0024d4604cc6a96609286c3f27bce2f0b70a068f58a2110dacc235b22ba7cd83c8989f46d0a9391eda7d272040bb3b1b2c547ae3fa0c9f61bef0a187dda')


[arch-commits] Commit in sshuttle/repos/community-any (8 files)

2018-04-02 Thread Felix Yan via arch-commits
Date: Monday, April 2, 2018 @ 13:05:56
  Author: felixonmars
Revision: 313879

archrelease: copy trunk to community-any

Added:
  sshuttle/repos/community-any/PKGBUILD
(from rev 313878, sshuttle/trunk/PKGBUILD)
  sshuttle/repos/community-any/prefixes.conf
(from rev 313878, sshuttle/trunk/prefixes.conf)
  sshuttle/repos/community-any/sshuttle.service
(from rev 313878, sshuttle/trunk/sshuttle.service)
  sshuttle/repos/community-any/tunnel.conf
(from rev 313878, sshuttle/trunk/tunnel.conf)
Deleted:
  sshuttle/repos/community-any/PKGBUILD
  sshuttle/repos/community-any/prefixes.conf
  sshuttle/repos/community-any/sshuttle.service
  sshuttle/repos/community-any/tunnel.conf

--+
 PKGBUILD |   98 ++---
 prefixes.conf|   10 ++---
 sshuttle.service |   16 
 tunnel.conf  |   38 ++--
 4 files changed, 81 insertions(+), 81 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-04-02 13:05:24 UTC (rev 313878)
+++ PKGBUILD2018-04-02 13:05:56 UTC (rev 313879)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: alphazo 
-
-pkgname=sshuttle
-pkgver=0.78.3
-pkgrel=1
-pkgdesc='Transparent proxy server that forwards all TCP packets over ssh'
-arch=('any')
-url="https://github.com/sshuttle/sshuttle;
-license=('GPL2')
-depends=('python-setuptools' 'iptables' 'openssh' 'net-tools')
-makedepends=('python-sphinx' 'python-setuptools_scm')
-checkdepends=('python-pytest-runner' 'python-mock')
-backup=('etc/sshuttle/tunnel.conf' 'etc/sshuttle/prefixes.conf')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/sshuttle/$pkgname/archive/v$pkgver.tar.gz;
-'sshuttle.service' 'prefixes.conf' 'tunnel.conf')
-sha512sums=('5c2aaed1c1cda6bd6f0b0c81f0f0c1a6b717c83fa9279d9d13f5e754d7ce9a6b00ca4705868c4971e80a9846477db2ccb88b2927f0ff2c11851633dc12292fa1'
-
'655ac580a02ea75376701fd40d0a340b2385efe07016b0930eef9cce98faac60e7c96e492b5894f0897c311196bebf514f9dd2a0be1cc8cc21f18fb0bfeab057'
-
'cc5a5dee7991c7641fa8a4fb356e1977aa9d1cbfed63cb5ebf8732c4de76be841f66d9267472e70578b176f528d8cfb4f75e634d5d915f4c8bcdc0b801db8a13'
-
'acd3d0024d4604cc6a96609286c3f27bce2f0b70a068f58a2110dacc235b22ba7cd83c8989f46d0a9391eda7d272040bb3b1b2c547ae3fa0c9f61bef0a187dda')
-
-prepare() {
-  export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
-}
-
-build() {
-  cd $pkgname-$pkgver
-  python setup.py build
-
-  cd docs
-  make man
-}
-
-check() {
-  cd $pkgname-$pkgver
-  python setup.py pytest
-}
-
-package() {
-  cd $pkgname-$pkgver
-  python setup.py install --root="$pkgdir" -O1
-
-  install -Dm644 docs/_build/man/sshuttle.1 
"$pkgdir/usr/share/man/man1/sshuttle.1"
-
-  install -d "$pkgdir/etc/sshuttle"
-  install -m644 "$srcdir"/{tunnel.conf,prefixes.conf} "$pkgdir/etc/sshuttle"
-  install -Dm644 "$srcdir/sshuttle.service" 
"$pkgdir/usr/lib/systemd/system/sshuttle.service"
-}

Copied: sshuttle/repos/community-any/PKGBUILD (from rev 313878, 
sshuttle/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-04-02 13:05:56 UTC (rev 313879)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: alphazo 
+
+pkgname=sshuttle
+pkgver=0.78.4
+pkgrel=1
+pkgdesc='Transparent proxy server that forwards all TCP packets over ssh'
+arch=('any')
+url="https://github.com/sshuttle/sshuttle;
+license=('GPL2')
+depends=('python-setuptools' 'iptables' 'openssh' 'net-tools')
+makedepends=('python-sphinx' 'python-setuptools_scm')
+checkdepends=('python-pytest-runner' 'python-mock')
+backup=('etc/sshuttle/tunnel.conf' 'etc/sshuttle/prefixes.conf')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/sshuttle/$pkgname/archive/v$pkgver.tar.gz;
+'sshuttle.service' 'prefixes.conf' 'tunnel.conf')
+sha512sums=('3c91d487ffe83a9b8019def6556586e0dc8e6c467275da403178807fb0ef5553781b69357484f58d8c3fda6ef9940caffc371b4698f8b83e4fcba2012575d730'
+
'655ac580a02ea75376701fd40d0a340b2385efe07016b0930eef9cce98faac60e7c96e492b5894f0897c311196bebf514f9dd2a0be1cc8cc21f18fb0bfeab057'
+
'cc5a5dee7991c7641fa8a4fb356e1977aa9d1cbfed63cb5ebf8732c4de76be841f66d9267472e70578b176f528d8cfb4f75e634d5d915f4c8bcdc0b801db8a13'
+
'acd3d0024d4604cc6a96609286c3f27bce2f0b70a068f58a2110dacc235b22ba7cd83c8989f46d0a9391eda7d272040bb3b1b2c547ae3fa0c9f61bef0a187dda')
+
+prepare() {
+  export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
+}
+
+build() {
+  cd $pkgname-$pkgver
+  python setup.py build
+
+  cd docs
+  make man
+}
+
+check() {
+  cd $pkgname-$pkgver
+  python setup.py pytest
+}
+
+package() {
+  cd $pkgname-$pkgver
+  python setup.py install --root="$pkgdir" -O1
+
+  install -Dm644 docs/_build/man/sshuttle.1 

[arch-commits] Commit in uglify-js/repos/community-any (4 files)

2018-04-02 Thread Felix Yan via arch-commits
Date: Monday, April 2, 2018 @ 13:05:05
  Author: felixonmars
Revision: 313877

archrelease: copy trunk to community-any

Added:
  uglify-js/repos/community-any/PKGBUILD
(from rev 313876, uglify-js/trunk/PKGBUILD)
  uglify-js/repos/community-any/uglify-js.install
(from rev 313876, uglify-js/trunk/uglify-js.install)
Deleted:
  uglify-js/repos/community-any/PKGBUILD
  uglify-js/repos/community-any/uglify-js.install

---+
 PKGBUILD  |   58 ++--
 uglify-js.install |   16 +++---
 2 files changed, 37 insertions(+), 37 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-04-02 13:04:41 UTC (rev 313876)
+++ PKGBUILD2018-04-02 13:05:05 UTC (rev 313877)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Daniel Nagy 
-
-pkgname=uglify-js
-pkgver=3.3.17
-pkgrel=1
-pkgdesc="JavaScript parser, mangler/compressor and beautifier toolkit"
-arch=('any')
-url='http://lisperator.net/uglifyjs'
-license=('BSD')
-depends=('nodejs')
-makedepends=('npm')
-install=${pkgname}.install
-source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
-noextract=($pkgname-$pkgver.tgz)
-sha512sums=('1af6373a3ce4d14c0c9f57652c6022849490760e1050c71a249de7a019eba107e07b4bc894a73a07691e34348dc36d14b30682b27ca3df60485afe4b9b8618b4')
-
-package() {
-  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
-  rm -r "$pkgdir"/usr/etc
-  mkdir -p "$pkgdir/usr/share/licenses/$pkgname"
-  ln -s "../../../lib/node_modules/uglify-js/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/"
-
-  # Fix npm derp
-  find "$pkgdir/usr" -type d -exec chmod 755 '{}' +
-}
-
-# vim:set ts=2 sw=2 et:

Copied: uglify-js/repos/community-any/PKGBUILD (from rev 313876, 
uglify-js/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-04-02 13:05:05 UTC (rev 313877)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Nagy 
+
+pkgname=uglify-js
+pkgver=3.3.18
+pkgrel=1
+pkgdesc="JavaScript parser, mangler/compressor and beautifier toolkit"
+arch=('any')
+url='http://lisperator.net/uglifyjs'
+license=('BSD')
+depends=('nodejs')
+makedepends=('npm')
+install=${pkgname}.install
+source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
+noextract=($pkgname-$pkgver.tgz)
+sha512sums=('5618c816ff772a74f1fe7b4d8bdc9305b7ebb169d09ea532d36313df6baa53fe62da8109f06004274030615db4e8978e988cd28e6e3505ad225d52afea3ef2f6')
+
+package() {
+  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
+  rm -r "$pkgdir"/usr/etc
+  mkdir -p "$pkgdir/usr/share/licenses/$pkgname"
+  ln -s "../../../lib/node_modules/uglify-js/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/"
+
+  # Fix npm derp
+  find "$pkgdir/usr" -type d -exec chmod 755 '{}' +
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: uglify-js.install
===
--- uglify-js.install   2018-04-02 13:04:41 UTC (rev 313876)
+++ uglify-js.install   2018-04-02 13:05:05 UTC (rev 313877)
@@ -1,8 +0,0 @@
-post_install() {
-  # fixup permissions
-  chmod 755 /usr/lib/node_modules
-}
-
-post_upgrade() {
-  post_install
-}

Copied: uglify-js/repos/community-any/uglify-js.install (from rev 313876, 
uglify-js/trunk/uglify-js.install)
===
--- uglify-js.install   (rev 0)
+++ uglify-js.install   2018-04-02 13:05:05 UTC (rev 313877)
@@ -0,0 +1,8 @@
+post_install() {
+  # fixup permissions
+  chmod 755 /usr/lib/node_modules
+}
+
+post_upgrade() {
+  post_install
+}


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

2018-04-02 Thread Felix Yan via arch-commits
Date: Monday, April 2, 2018 @ 13:04:41
  Author: felixonmars
Revision: 313876

upgpkg: uglify-js 3.3.18-1

Modified:
  uglify-js/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-04-02 13:00:16 UTC (rev 313875)
+++ PKGBUILD2018-04-02 13:04:41 UTC (rev 313876)
@@ -3,7 +3,7 @@
 # Contributor: Daniel Nagy 
 
 pkgname=uglify-js
-pkgver=3.3.17
+pkgver=3.3.18
 pkgrel=1
 pkgdesc="JavaScript parser, mangler/compressor and beautifier toolkit"
 arch=('any')
@@ -14,7 +14,7 @@
 install=${pkgname}.install
 source=(https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz)
 noextract=($pkgname-$pkgver.tgz)
-sha512sums=('1af6373a3ce4d14c0c9f57652c6022849490760e1050c71a249de7a019eba107e07b4bc894a73a07691e34348dc36d14b30682b27ca3df60485afe4b9b8618b4')
+sha512sums=('5618c816ff772a74f1fe7b4d8bdc9305b7ebb169d09ea532d36313df6baa53fe62da8109f06004274030615db4e8978e988cd28e6e3505ad225d52afea3ef2f6')
 
 package() {
   npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz


[arch-commits] Commit in kea/trunk (4 files)

2018-04-02 Thread Baptiste Jonglez via arch-commits
Date: Monday, April 2, 2018 @ 11:40:17
  Author: zorun
Revision: 313856

upgpkg: kea 1.3.0-5

Fix FS#57941

Modified:
  kea/trunk/PKGBUILD
  kea/trunk/kea-dhcp4.service
  kea/trunk/kea-dhcp6.service
Deleted:
  kea/trunk/add-missing-header.patch

--+
 PKGBUILD |6 +++---
 add-missing-header.patch |   18 --
 kea-dhcp4.service|2 +-
 kea-dhcp6.service|2 +-
 4 files changed, 5 insertions(+), 23 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-04-02 11:27:25 UTC (rev 313855)
+++ PKGBUILD2018-04-02 11:40:17 UTC (rev 313856)
@@ -2,7 +2,7 @@
 # Contributor: nfnty
 pkgname='kea'
 pkgver=1.3.0
-pkgrel=4
+pkgrel=5
 pkgdesc='High-performance, extensible DHCP server engine from ISC, supporting 
both DHCPv4 and DHCPv6'
 arch=('x86_64')
 url='http://kea.isc.org'
@@ -31,8 +31,8 @@
 
'81874fd3a12f55ea23593b7248c7653450c3a6e5ba8e79c7c5fb40ab685b0dc5d4e29e50f1bd9018200731dba35f15e5d86c8005c94d14865d73e19983e5'
 
'2ac01524f70c95986cb64f8d0fc29612aec38c8ab95892469329ced071cf3660b4e9997b6e22a62765c244a9c68b41c4729aec8cfe03099e009ce858faa5c661'
 
'13a473bea4f8a1ba40f5667b880010590c5fddecaa76c360113e977c9ab3898558141cda17000def7b1c592b7dc6f8d5a508752351c601f6484abd775b60d214'
-
'24fdd95fc25bcd6aaf21cec598f3d09715418705aadbb2403792b62f4d8789b1897aa65f5e68184612d0a2c1c6be4123491db2fc3b1d602f6e7c5cd6c2d278eb'
-
'f4d54483034ac5d2815a5a06cec84a20aa2849484630d7eeed4d9f2bd7cb96814f80d1f06da2f10b43eabdba0f79f4fb7befe06171001b7d1617844fe8813dae')
+
'873612cdab1c5d72105ccf379885975405e10b4e4b3b93b258293fbd304ea9f6a47e5af5357b130e603d713691d4980d8868a5ed23376e50aba6eb81b348b8cb'
+
'48cd98cfc2a82b4d5f6350e70ba7048976a633ceae3c8f405824d2131700d78a9eeb885a41634a393e3cdaacc9836dda45343b7ae81c44427b46e758d6520f6c')
 validpgpkeys=('BE0E9748B718253A28BB89FFF1B11BF05CF02E57') # Internet Systems 
Consortium, Inc. (Signing key, 2017-2018) 
 
 prepare() {

Deleted: add-missing-header.patch
===
--- add-missing-header.patch2018-04-02 11:27:25 UTC (rev 313855)
+++ add-missing-header.patch2018-04-02 11:40:17 UTC (rev 313856)
@@ -1,18 +0,0 @@
-commit b63da2b6ab2a623539eb1bc8ed3850cb88ef6f26
-Author: Walt Steverson 
-Date:   Fri Jun 9 11:12:42 2017 -0500
-
-Add missing header file option6_pdexclude.h
-
-diff --git a/src/lib/dhcp/Makefile.am b/src/lib/dhcp/Makefile.am
-index 461429ba8..12c3ebf84 100644
 a/src/lib/dhcp/Makefile.am
-+++ b/src/lib/dhcp/Makefile.am
-@@ -99,6 +99,7 @@ libkea_dhcp___include_HEADERS = \
- option6_ia.h \
- option6_iaaddr.h \
- option6_iaprefix.h \
-+option6_pdexclude.h \
- option6_status_code.h \
- option.h \
- option_custom.h \

Modified: kea-dhcp4.service
===
--- kea-dhcp4.service   2018-04-02 11:27:25 UTC (rev 313855)
+++ kea-dhcp4.service   2018-04-02 11:40:17 UTC (rev 313856)
@@ -6,7 +6,7 @@
 After=time-sync.target
 
 [Service]
-ExecStart=/usr/bin/kea-dhcp4 -c /etc/kea/kea.conf
+ExecStart=/usr/bin/kea-dhcp4 -c /etc/kea/kea-dhcp4.conf
 
 [Install]
 WantedBy=multi-user.target

Modified: kea-dhcp6.service
===
--- kea-dhcp6.service   2018-04-02 11:27:25 UTC (rev 313855)
+++ kea-dhcp6.service   2018-04-02 11:40:17 UTC (rev 313856)
@@ -6,7 +6,7 @@
 After=time-sync.target
 
 [Service]
-ExecStart=/usr/bin/kea-dhcp6 -c /etc/kea/kea.conf
+ExecStart=/usr/bin/kea-dhcp6 -c /etc/kea/kea-dhcp6.conf
 
 [Install]
 WantedBy=multi-user.target


[arch-commits] Commit in kea/repos/community-x86_64 (13 files)

2018-04-02 Thread Baptiste Jonglez via arch-commits
Date: Monday, April 2, 2018 @ 11:40:33
  Author: zorun
Revision: 313857

archrelease: copy trunk to community-x86_64

Added:
  kea/repos/community-x86_64/PKGBUILD
(from rev 313856, kea/trunk/PKGBUILD)
  kea/repos/community-x86_64/asiolink-fix-build-with-boost-1.66.patch
(from rev 313856, kea/trunk/asiolink-fix-build-with-boost-1.66.patch)
  kea/repos/community-x86_64/fix-scripts-include-path.patch
(from rev 313856, kea/trunk/fix-scripts-include-path.patch)
  kea/repos/community-x86_64/kea-dhcp4.service
(from rev 313856, kea/trunk/kea-dhcp4.service)
  kea/repos/community-x86_64/kea-dhcp6.service
(from rev 313856, kea/trunk/kea-dhcp6.service)
  kea/repos/community-x86_64/tmpfiles-kea.conf
(from rev 313856, kea/trunk/tmpfiles-kea.conf)
Deleted:
  kea/repos/community-x86_64/PKGBUILD
  kea/repos/community-x86_64/add-missing-header.patch
  kea/repos/community-x86_64/asiolink-fix-build-with-boost-1.66.patch
  kea/repos/community-x86_64/fix-scripts-include-path.patch
  kea/repos/community-x86_64/kea-dhcp4.service
  kea/repos/community-x86_64/kea-dhcp6.service
  kea/repos/community-x86_64/tmpfiles-kea.conf

--+
 PKGBUILD |  158 +++---
 add-missing-header.patch |   18 -
 asiolink-fix-build-with-boost-1.66.patch |  198 -
 fix-scripts-include-path.patch   |  324 ++---
 kea-dhcp4.service|   24 +-
 kea-dhcp6.service|   24 +-
 tmpfiles-kea.conf|2 
 7 files changed, 365 insertions(+), 383 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-04-02 11:40:17 UTC (rev 313856)
+++ PKGBUILD2018-04-02 11:40:33 UTC (rev 313857)
@@ -1,79 +0,0 @@
-# Maintainer: Baptiste Jonglez 
-# Contributor: nfnty
-pkgname='kea'
-pkgver=1.3.0
-pkgrel=4
-pkgdesc='High-performance, extensible DHCP server engine from ISC, supporting 
both DHCPv4 and DHCPv6'
-arch=('x86_64')
-url='http://kea.isc.org'
-license=('MPL2')
-depends=('botan' 'boost-libs' 'log4cplus' 'libmariadbclient' 'postgresql-libs')
-makedepends=('boost'
- 'postgresql' # Needed for some headers
- 'python') # kea-shell
-optdepends=('mariadb: lease information database'
-'postgresql: lease information database'
-'python: to use kea-shell'
-'kea-devel-docs: developer documentation')
-# Checks are disabled for now
-#checkdepends=('gtest' 'postgresql' 'mariadb' 'python' 'procps-ng') # 
procps-ng needed for 'pgrep'
-backup=('etc/kea/kea.conf' 'etc/kea/kea-ca.conf' # Config files up to Kea 1.2
-'etc/kea/kea-dhcp4.conf' 'etc/kea/kea-dhcp6.conf' 
'etc/kea/kea-dhcp-ddns.conf' 'etc/kea/kea-ctrl-agent.conf' 
'etc/kea/keactrl.conf') # New config files as of Kea 1.3
-
-source=(https://ftp.isc.org/isc/kea/${pkgver}/kea-${pkgver}.tar.gz{,.asc}
-fix-scripts-include-path.patch
-asiolink-fix-build-with-boost-1.66.patch
-tmpfiles-kea.conf
-kea-dhcp4.service
-kea-dhcp6.service)
-sha512sums=('4708485efe537d9af00b50da9a3f33b740edaf37d9bbfe96f5625e30715349c48ef8a32f5abb8320f00821aea642a5b7ecdbc9f0d323a71b7a07f46f1bed978b'
-'SKIP'
-
'81874fd3a12f55ea23593b7248c7653450c3a6e5ba8e79c7c5fb40ab685b0dc5d4e29e50f1bd9018200731dba35f15e5d86c8005c94d14865d73e19983e5'
-
'2ac01524f70c95986cb64f8d0fc29612aec38c8ab95892469329ced071cf3660b4e9997b6e22a62765c244a9c68b41c4729aec8cfe03099e009ce858faa5c661'
-
'13a473bea4f8a1ba40f5667b880010590c5fddecaa76c360113e977c9ab3898558141cda17000def7b1c592b7dc6f8d5a508752351c601f6484abd775b60d214'
-
'24fdd95fc25bcd6aaf21cec598f3d09715418705aadbb2403792b62f4d8789b1897aa65f5e68184612d0a2c1c6be4123491db2fc3b1d602f6e7c5cd6c2d278eb'
-
'f4d54483034ac5d2815a5a06cec84a20aa2849484630d7eeed4d9f2bd7cb96814f80d1f06da2f10b43eabdba0f79f4fb7befe06171001b7d1617844fe8813dae')
-validpgpkeys=('BE0E9748B718253A28BB89FFF1B11BF05CF02E57') # Internet Systems 
Consortium, Inc. (Signing key, 2017-2018) 
-
-prepare() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  # The include path is set incorrectly (it uses undefined $prefix instead of 
/usr).
-  # Also, it fallbacks to the absolute path inside the chrooted build dir,
-  # which will certainly not exist on the target system...
-  patch -p1 < "${srcdir}"/fix-scripts-include-path.patch
-
-  patch -p1 < "${srcdir}"/asiolink-fix-build-with-boost-1.66.patch
-}
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  autoreconf --install
-  ./configure \
-  --prefix='/usr' \
-  --sbindir='/usr/bin' \
-  --libexecdir='/usr/bin' \
-  --sysconfdir='/etc' \
-  --localstatedir='/var' \
-  --with-dhcp-mysql \
-  --with-dhcp-pgsql \
-  --enable-shell
-  make
-}
-
-check() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  # Disable for now, 

  1   2   >