[arch-commits] Commit in java-openjdk/trunk (8 files)

2019-06-17 Thread Levente Polyak via arch-commits
Date: Tuesday, June 18, 2019 @ 05:12:26
  Author: anthraxx
Revision: 356351

upgpkg: java-openjdk 12.0.1.u12-1

Modified:
  java-openjdk/trunk/PKGBUILD
  java-openjdk/trunk/freedesktop-java.desktop
  java-openjdk/trunk/freedesktop-jconsole.desktop
  java-openjdk/trunk/freedesktop-jshell.desktop
  java-openjdk/trunk/install_jdk-openjdk.sh
  java-openjdk/trunk/install_jre-openjdk-headless.sh
  java-openjdk/trunk/install_jre-openjdk.sh
Deleted:
  java-openjdk/trunk/freedesktop-policytool.desktop

-+
 PKGBUILD|   57 --
 freedesktop-java.desktop|   12 
 freedesktop-jconsole.desktop|   12 
 freedesktop-jshell.desktop  |8 ++---
 freedesktop-policytool.desktop  |   13 
 install_jdk-openjdk.sh  |2 -
 install_jre-openjdk-headless.sh |4 +-
 install_jre-openjdk.sh  |2 -
 8 files changed, 45 insertions(+), 65 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-06-18 05:09:27 UTC (rev 356350)
+++ PKGBUILD2019-06-18 05:12:26 UTC (rev 356351)
@@ -2,21 +2,13 @@
 # Maintainer: Guillaume ALAUX 
 
 # TODO add test, see about packaging jtreg and using it here
-# TODO see about building with OpenJDK10
-# TODO add javazi
-# TODO when IcedTea provides it, package icedtea-web and add it as optdepends
-# TODO package OpenJFX for OpenJDK10 and add it as optdepends
 
-## EXPLORATIONS
-# TODO extract a jmods package from jdk10-openjdk?
-# TODO extract a jdk-headless package?
-
 pkgbase=java-openjdk
 pkgname=('jre-openjdk-headless' 'jre-openjdk' 'jdk-openjdk' 'openjdk-src' 
'openjdk-doc')
-_majorver=11
+_majorver=12
 _minorver=0
-_securityver=3
-_updatever=4
+_securityver=1
+_updatever=12
 pkgrel=1
 pkgver=${_majorver}.${_minorver}.${_securityver}.u${_updatever}
 _hg_tag=jdk-${_majorver}.${_minorver}.${_securityver}+${_updatever}
@@ -23,20 +15,18 @@
 arch=('x86_64')
 url='https://openjdk.java.net/'
 license=('custom')
-makedepends=('java-environment>=10' 'cpio' 'unzip' 'zip' 'libelf' 'libcups' 
'libx11'
- 'libxrender' 'libxtst' 'libxt' 'libxext' 'alsa-lib' 'pandoc'
+makedepends=('java-environment>=11' 'cpio' 'unzip' 'zip' 'libelf' 'libcups' 
'libx11'
+ 'libxrender' 'libxtst' 'libxt' 'libxext' 'libxrandr' 'alsa-lib' 
'pandoc'
  'graphviz' 'freetype2' 'libjpeg-turbo' 'giflib' 'libpng' 'lcms2'
  'libnet' 'bash')
 
source=(http://hg.openjdk.java.net/jdk-updates/jdk${_majorver}u/archive/${_hg_tag}.tar.gz
 freedesktop-java.desktop
 freedesktop-jconsole.desktop
-freedesktop-policytool.desktop
 freedesktop-jshell.desktop)
-sha256sums=('a60b4dff1e726c4e0df25042db7ea30f4b9af2d0995deabc6172bfb7e9a5c104'
-'575587ad58dfa9908f046d307b9afc7b0b2eb20a1eb454f8fdbbd539ea7b3d01'
-'2f57b7c7dd671eabe9fa10c4f1283573e99d7f7c36eccd82c95b705979a2e8cb'
-'d8907cefaf87f9afcbf1a2079868c03e0209cc1e7b99fbd4022641802c8cf30c'
-'f271618a8c2a892b554caf26857af41efdf0d8bcb95d57ce7ba535d6979e96da')
+sha256sums=('055917843af812b2fcec82ec65c6448c353fa54174d3583d5c62ca8d9b15c0d0'
+'779dba7cf4f5de7cd512adf969354ec4aefddb33d970757eb3c49ea1fd8d5184'
+'fa67642a8ba1173c30536a12dfbeeacf5d0f37918849057c1049b88a81f261ed'
+'0a1d66a3e4774d7fad267c8a4e726ecf362ae2f33df12439567e0fb249655c48')
 
 case "${CARCH}" in
   x86_64) _JARCH='x86_64';;
@@ -45,7 +35,7 @@
 
 _jvmdir=/usr/lib/jvm/java-${_majorver}-openjdk
 _jdkdir=jdk${_majorver}u-${_hg_tag}
-_imgdir=${_jdkdir}/build/linux-${_JARCH}-normal-server-release/images
+_imgdir=${_jdkdir}/build/linux-${_JARCH}-server-release/images
 
 _nonheadless=(lib/libawt_xawt.{so,debuginfo}
   lib/libjawt.{so,debuginfo}
@@ -64,9 +54,9 @@
 NUM_PROC_OPT="--with-num-cores=${MAKEFLAG_J}"
   fi
 
-  # We filter out -O flags so that the optimization of HotSpot is not lowered 
from O3 to O2
-  local _CFLAGS="${CFLAGS//-O2} ${CPPFLAGS}"
-  local _CXXFLAGS="${CXXFLAGS//-O2} ${CPPFLAGS}"
+  # Avoid optimization of HotSpot to be lowered from O3 to O2
+  local _CFLAGS="${CFLAGS//-O2/-O3} ${CPPFLAGS}"
+  local _CXXFLAGS="${CXXFLAGS//-O2/-O3} ${CPPFLAGS}"
   local _LDFLAGS=${LDFLAGS}
   if [[ ${CARCH} = i686 ]]; then
 echo "Removing '-fno-plt' from CFLAGS and CXXFLAGS to prevent build fail 
with this architecture"
@@ -143,7 +133,7 @@
   cp -a bin lib \
 "${pkgdir}${_jvmdir}"
 
-  for f in ${_nonheadless[@]}; do
+  for f in "${_nonheadless[@]}"; do
 rm "${pkgdir}${_jvmdir}/${f}"
   done
 
@@ -162,8 +152,10 @@
   ln -s /usr/share/licenses/${pkgbase} "${pkgdir}/${_jvmdir}/legal"
 
   # Man pages
-  for f in man/man1/* man/ja/man1/*; do
-install -Dm 644 "${f}" 
"${pkgdir}/usr/share/${f/\.1/-openjdk${_majorver}.1}"
+  for f in bin/*; do
+f=$(basename "${f}")
+_man=../jdk/man/man1/"${f}.1"
+test -f "${_man}" && install -Dm 644 

[arch-commits] Commit in java-openjdk/repos/extra-x86_64 (15 files)

2019-06-17 Thread Levente Polyak via arch-commits
Date: Tuesday, June 18, 2019 @ 05:12:35
  Author: anthraxx
Revision: 356352

archrelease: copy trunk to extra-x86_64

Added:
  java-openjdk/repos/extra-x86_64/PKGBUILD
(from rev 356351, java-openjdk/trunk/PKGBUILD)
  java-openjdk/repos/extra-x86_64/freedesktop-java.desktop
(from rev 356351, java-openjdk/trunk/freedesktop-java.desktop)
  java-openjdk/repos/extra-x86_64/freedesktop-jconsole.desktop
(from rev 356351, java-openjdk/trunk/freedesktop-jconsole.desktop)
  java-openjdk/repos/extra-x86_64/freedesktop-jshell.desktop
(from rev 356351, java-openjdk/trunk/freedesktop-jshell.desktop)
  java-openjdk/repos/extra-x86_64/install_jdk-openjdk.sh
(from rev 356351, java-openjdk/trunk/install_jdk-openjdk.sh)
  java-openjdk/repos/extra-x86_64/install_jre-openjdk-headless.sh
(from rev 356351, java-openjdk/trunk/install_jre-openjdk-headless.sh)
  java-openjdk/repos/extra-x86_64/install_jre-openjdk.sh
(from rev 356351, java-openjdk/trunk/install_jre-openjdk.sh)
Deleted:
  java-openjdk/repos/extra-x86_64/PKGBUILD
  java-openjdk/repos/extra-x86_64/freedesktop-java.desktop
  java-openjdk/repos/extra-x86_64/freedesktop-jconsole.desktop
  java-openjdk/repos/extra-x86_64/freedesktop-jshell.desktop
  java-openjdk/repos/extra-x86_64/freedesktop-policytool.desktop
  java-openjdk/repos/extra-x86_64/install_jdk-openjdk.sh
  java-openjdk/repos/extra-x86_64/install_jre-openjdk-headless.sh
  java-openjdk/repos/extra-x86_64/install_jre-openjdk.sh

-+
 PKGBUILD|  549 ++
 freedesktop-java.desktop|   24 -
 freedesktop-jconsole.desktop|   22 -
 freedesktop-jshell.desktop  |   18 -
 freedesktop-policytool.desktop  |   13 
 install_jdk-openjdk.sh  |  100 +++---
 install_jre-openjdk-headless.sh |   96 +++---
 install_jre-openjdk.sh  |   70 ++--
 8 files changed, 436 insertions(+), 456 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-18 05:12:26 UTC (rev 356351)
+++ PKGBUILD2019-06-18 05:12:35 UTC (rev 356352)
@@ -1,278 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Guillaume ALAUX 
-
-# TODO add test, see about packaging jtreg and using it here
-# TODO see about building with OpenJDK10
-# TODO add javazi
-# TODO when IcedTea provides it, package icedtea-web and add it as optdepends
-# TODO package OpenJFX for OpenJDK10 and add it as optdepends
-
-## EXPLORATIONS
-# TODO extract a jmods package from jdk10-openjdk?
-# TODO extract a jdk-headless package?
-
-pkgbase=java-openjdk
-pkgname=('jre-openjdk-headless' 'jre-openjdk' 'jdk-openjdk' 'openjdk-src' 
'openjdk-doc')
-_majorver=11
-_minorver=0
-_securityver=3
-_updatever=4
-pkgrel=1
-pkgver=${_majorver}.${_minorver}.${_securityver}.u${_updatever}
-_hg_tag=jdk-${_majorver}.${_minorver}.${_securityver}+${_updatever}
-arch=('x86_64')
-url='https://openjdk.java.net/'
-license=('custom')
-makedepends=('java-environment>=10' 'cpio' 'unzip' 'zip' 'libelf' 'libcups' 
'libx11'
- 'libxrender' 'libxtst' 'libxt' 'libxext' 'alsa-lib' 'pandoc'
- 'graphviz' 'freetype2' 'libjpeg-turbo' 'giflib' 'libpng' 'lcms2'
- 'libnet' 'bash')
-source=(http://hg.openjdk.java.net/jdk-updates/jdk${_majorver}u/archive/${_hg_tag}.tar.gz
-freedesktop-java.desktop
-freedesktop-jconsole.desktop
-freedesktop-policytool.desktop
-freedesktop-jshell.desktop)
-sha256sums=('a60b4dff1e726c4e0df25042db7ea30f4b9af2d0995deabc6172bfb7e9a5c104'
-'575587ad58dfa9908f046d307b9afc7b0b2eb20a1eb454f8fdbbd539ea7b3d01'
-'2f57b7c7dd671eabe9fa10c4f1283573e99d7f7c36eccd82c95b705979a2e8cb'
-'d8907cefaf87f9afcbf1a2079868c03e0209cc1e7b99fbd4022641802c8cf30c'
-'f271618a8c2a892b554caf26857af41efdf0d8bcb95d57ce7ba535d6979e96da')
-
-case "${CARCH}" in
-  x86_64) _JARCH='x86_64';;
-  i686)   _JARCH='x86';;
-esac
-
-_jvmdir=/usr/lib/jvm/java-${_majorver}-openjdk
-_jdkdir=jdk${_majorver}u-${_hg_tag}
-_imgdir=${_jdkdir}/build/linux-${_JARCH}-normal-server-release/images
-
-_nonheadless=(lib/libawt_xawt.{so,debuginfo}
-  lib/libjawt.{so,debuginfo}
-  lib/libjsound.{so,debuginfo}
-  lib/libsplashscreen.{so,debuginfo})
-
-build() {
-  cd ${_jdkdir}
-
-  NUM_PROC_OPT=''
-  MAKEFLAG_J=$(echo ${MAKEFLAGS} | sed -En 's/.*-j([0-9]+).*/\1/p')
-  if [ -n "${MAKEFLAG_J}" ]; then
-# 
http://hg.openjdk.java.net/jdk10/jdk10/file/85e6cb013b98/make/InitSupport.gmk#l105
-echo "Removing '-j${MAKEFLAG_J}' from MAKEFLAGS to prevent build fail. 
Passing it directly to ./configure."
-export MAKEFLAGS=${MAKEFLAGS/-j${MAKEFLAG_J}/}
-NUM_PROC_OPT="--with-num-cores=${MAKEFLAG_J}"
-  fi
-
-  # We filter out -O flags so that the optimization of HotSpot is not lowered 
from O3 to O2
-  local _CFLAGS="${CFLAGS//-O2} ${CPPFLAGS}"
-  local _CXXFLAGS="${CXXFLAGS//-O2} ${CPPFLAGS}"
-  local 

[arch-commits] Commit in java10-openjdk/trunk (3 files)

2019-06-17 Thread Levente Polyak via arch-commits
Date: Tuesday, June 18, 2019 @ 05:09:19
  Author: anthraxx
Revision: 356348

upgpkg: java10-openjdk 10.0.2.u13-1

Modified:
  java10-openjdk/trunk/PKGBUILD
  java10-openjdk/trunk/install_jre10-openjdk-headless.sh
Deleted:
  java10-openjdk/trunk/freedesktop-policytool.desktop

---+
 PKGBUILD  |   24 
 freedesktop-policytool.desktop|   13 -
 install_jre10-openjdk-headless.sh |2 +-
 3 files changed, 13 insertions(+), 26 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-06-18 05:07:51 UTC (rev 356347)
+++ PKGBUILD2019-06-18 05:09:19 UTC (rev 356348)
@@ -30,12 +30,10 @@
 
source=(http://hg.openjdk.java.net/jdk-updates/jdk${_majorver}u/archive/${_hg_tag}.tar.gz
 freedesktop-java.desktop
 freedesktop-jconsole.desktop
-freedesktop-policytool.desktop
 freedesktop-jshell.desktop)
 sha256sums=('f34a53b049f2e3ee8d954998687c4a48b56f24efbb2738ae7fe81bbbdff7f078'
 '819e6ca314641c3115566f9478fbd8671f5d884a3d4e65f05950b4bd2d3b8451'
 '5276edf203e5a75607c55b8bd4ae4f76cf61360811190286829c66d0c4b06554'
-'7f3bc3e424b6d8bac403eb336d81524680f347300c233400222a3850f937c659'
 '0bcdb1eb9640775ca61e87ffeb9b0e0f99386b41f51fec753688bdd5ff9b6010')
 
 case "${CARCH}" in
@@ -64,9 +62,10 @@
 NUM_PROC_OPT="--with-num-cores=${MAKEFLAG_J}"
   fi
 
-  _CFLAGS="${CFLAGS} ${CPPFLAGS}"
-  _CXXFLAGS="${CXXFLAGS} ${CPPFLAGS}"
-  _LDFLAGS=${LDFLAGS}
+  # Avoid optimization of HotSpot being lowered from O3 to O2
+  local _CFLAGS="${CFLAGS//-O2/-O3} ${CPPFLAGS}"
+  local _CXXFLAGS="${CXXFLAGS//-O2/-O3} ${CPPFLAGS}"
+  local _LDFLAGS=${LDFLAGS}
   if [[ ${CARCH} = i686 ]]; then
 echo "Removing '-fno-plt' from CFLAGS and CXXFLAGS to prevent build fail 
with this architecture"
 _CFLAGS=${CFLAGS/-fno-plt/}
@@ -107,10 +106,11 @@
   find "../${_imgdir}" -iname '*.so' -exec chmod +x {} \;
 }
 
-# check() {
-#   cd "${pkgname}-${pkgver}"
-#   make -k check
-# }
+check() {
+  cd ${_jdkdir}
+  #make -k check
+  #make run-test-tier1
+}
 
 package_jre10-openjdk-headless() {
   pkgdesc="OpenJDK Java ${_majorver} headless runtime environment"
@@ -141,7 +141,7 @@
   cp -a bin lib \
 "${pkgdir}${_jvmdir}"
 
-  for f in ${_nonheadless[@]}; do
+  for f in "${_nonheadless[@]}"; do
 rm "${pkgdir}${_jvmdir}/${f}"
   done
 
@@ -184,7 +184,7 @@
 
   install -dm 755 "${pkgdir}${_jvmdir}"
 
-  for f in ${_nonheadless[@]}; do
+  for f in "${_nonheadless[@]}"; do
 install -Dm 644 ${f} "${pkgdir}${_jvmdir}/${f}"
   done
 
@@ -243,7 +243,7 @@
   done
 
   # Desktop files
-  for f in jconsole policytool java jshell; do
+  for f in jconsole java jshell; do
 install -Dm 644 \
   "${srcdir}/freedesktop-${f}.desktop" \
   "${pkgdir}/usr/share/applications/${f}-${pkgbase}.desktop"

Deleted: freedesktop-policytool.desktop
===
--- freedesktop-policytool.desktop  2019-06-18 05:07:51 UTC (rev 356347)
+++ freedesktop-policytool.desktop  2019-06-18 05:09:19 UTC (rev 356348)
@@ -1,13 +0,0 @@
-[Desktop Entry]
-Name=OpenJDK Java 10 Policy Tool
-Name[fi]=OpenJDK Java 10 - käytäntötyökalu
-Name[fr]=OpenJDK Java 10 - Outil de réglage
-Comment=OpenJDK Java 10 Policy Tool
-Comment[fi]=OpenJDK Java 10 - käytäntötyökalu
-Comment[fr]=OpenJDK Java 10 - Outil de réglage
-Keywords=java;security;policytool
-Exec=/usr/lib/jvm/java-10-openjdk/bin/policytool
-Terminal=false
-Type=Application
-Icon=java10-openjdk
-Categories=Settings;

Modified: install_jre10-openjdk-headless.sh
===
--- install_jre10-openjdk-headless.sh   2019-06-18 05:07:51 UTC (rev 356347)
+++ install_jre10-openjdk-headless.sh   2019-06-18 05:09:19 UTC (rev 356348)
@@ -25,7 +25,7 @@
   esac
 
   if [ ! -f /etc/ssl/certs/java/cacerts ]; then
- /usr/bin/update-ca-trust
+/usr/bin/update-ca-trust
   fi
 }
 


[arch-commits] Commit in gn/trunk (chromium-gn-version.sh)

2019-06-17 Thread Evangelos Foutras via arch-commits
Date: Tuesday, June 18, 2019 @ 05:09:20
  Author: foutrelis
Revision: 356349

Add script to get the gn version used by Chromium

Added:
  gn/trunk/chromium-gn-version.sh

+
 chromium-gn-version.sh |8 
 1 file changed, 8 insertions(+)

Added: chromium-gn-version.sh
===
--- chromium-gn-version.sh  (rev 0)
+++ chromium-gn-version.sh  2019-06-18 05:09:20 UTC (rev 356349)
@@ -0,0 +1,8 @@
+#!/bin/bash
+
+set -eo pipefail
+
+chromium_version=$(curl -s https://omahaproxy.appspot.com/linux)
+
+curl -s 
https://chromium.googlesource.com/chromium/src/+/refs/tags/$chromium_version/DEPS?format=TEXT
 |
+   base64 -d | grep -Po "'gn_version': 'git_revision:\K[^']*"


Property changes on: gn/trunk/chromium-gn-version.sh
___
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property


[arch-commits] Commit in java10-openjdk/repos/extra-x86_64 (15 files)

2019-06-17 Thread Levente Polyak via arch-commits
Date: Tuesday, June 18, 2019 @ 05:09:27
  Author: anthraxx
Revision: 356350

archrelease: copy trunk to extra-x86_64

Added:
  java10-openjdk/repos/extra-x86_64/PKGBUILD
(from rev 356349, java10-openjdk/trunk/PKGBUILD)
  java10-openjdk/repos/extra-x86_64/freedesktop-java.desktop
(from rev 356349, java10-openjdk/trunk/freedesktop-java.desktop)
  java10-openjdk/repos/extra-x86_64/freedesktop-jconsole.desktop
(from rev 356349, java10-openjdk/trunk/freedesktop-jconsole.desktop)
  java10-openjdk/repos/extra-x86_64/freedesktop-jshell.desktop
(from rev 356349, java10-openjdk/trunk/freedesktop-jshell.desktop)
  java10-openjdk/repos/extra-x86_64/install_jdk10-openjdk.sh
(from rev 356349, java10-openjdk/trunk/install_jdk10-openjdk.sh)
  java10-openjdk/repos/extra-x86_64/install_jre10-openjdk-headless.sh
(from rev 356349, java10-openjdk/trunk/install_jre10-openjdk-headless.sh)
  java10-openjdk/repos/extra-x86_64/install_jre10-openjdk.sh
(from rev 356349, java10-openjdk/trunk/install_jre10-openjdk.sh)
Deleted:
  java10-openjdk/repos/extra-x86_64/PKGBUILD
  java10-openjdk/repos/extra-x86_64/freedesktop-java.desktop
  java10-openjdk/repos/extra-x86_64/freedesktop-jconsole.desktop
  java10-openjdk/repos/extra-x86_64/freedesktop-jshell.desktop
  java10-openjdk/repos/extra-x86_64/freedesktop-policytool.desktop
  java10-openjdk/repos/extra-x86_64/install_jdk10-openjdk.sh
  java10-openjdk/repos/extra-x86_64/install_jre10-openjdk-headless.sh
  java10-openjdk/repos/extra-x86_64/install_jre10-openjdk.sh

---+
 PKGBUILD  |  556 ++--
 freedesktop-java.desktop  |   24 -
 freedesktop-jconsole.desktop  |   22 -
 freedesktop-jshell.desktop|   18 -
 freedesktop-policytool.desktop|   13 
 install_jdk10-openjdk.sh  |  100 +++---
 install_jre10-openjdk-headless.sh |   96 +++---
 install_jre10-openjdk.sh  |   70 ++--
 8 files changed, 443 insertions(+), 456 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-18 05:09:20 UTC (rev 356349)
+++ PKGBUILD2019-06-18 05:09:27 UTC (rev 356350)
@@ -1,278 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Guillaume ALAUX 
-
-# TODO add test, see about packaging jtreg and using it here
-# TODO see about building with OpenJDK10
-# TODO add javazi
-# TODO when IcedTea provides it, package icedtea-web and add it as optdepends
-# TODO package OpenJFX for OpenJDK10 and add it as optdepends
-
-## EXPLORATIONS
-# TODO extract a jmods package from jdk10-openjdk?
-# TODO extract a jdk-headless package?
-
-pkgbase=java10-openjdk
-pkgname=('jre10-openjdk-headless' 'jre10-openjdk' 'jdk10-openjdk' 
'openjdk10-src' 'openjdk10-doc')
-_majorver=10
-_minorver=0
-_securityver=2
-_updatever=13
-pkgrel=1
-pkgver=${_majorver}.${_minorver}.${_securityver}.u${_updatever}
-_hg_tag=jdk-${_majorver}.${_minorver}.${_securityver}+${_updatever}
-arch=('x86_64')
-url='http://openjdk.java.net/'
-license=('custom')
-makedepends=('jdk10-openjdk' 'cpio' 'unzip' 'zip' 'libelf' 'libcups' 'libx11'
- 'libxrender' 'libxtst' 'libxt' 'libxext' 'alsa-lib' 'pandoc'
- 'graphviz' 'freetype2' 'libjpeg-turbo' 'giflib' 'libpng' 'lcms2'
- 'libnet' 'bash')
-source=(http://hg.openjdk.java.net/jdk-updates/jdk${_majorver}u/archive/${_hg_tag}.tar.gz
-freedesktop-java.desktop
-freedesktop-jconsole.desktop
-freedesktop-policytool.desktop
-freedesktop-jshell.desktop)
-sha256sums=('f34a53b049f2e3ee8d954998687c4a48b56f24efbb2738ae7fe81bbbdff7f078'
-'819e6ca314641c3115566f9478fbd8671f5d884a3d4e65f05950b4bd2d3b8451'
-'5276edf203e5a75607c55b8bd4ae4f76cf61360811190286829c66d0c4b06554'
-'7f3bc3e424b6d8bac403eb336d81524680f347300c233400222a3850f937c659'
-'0bcdb1eb9640775ca61e87ffeb9b0e0f99386b41f51fec753688bdd5ff9b6010')
-
-case "${CARCH}" in
-  x86_64) _JARCH='x86_64';;
-  i686)   _JARCH='x86';;
-esac
-
-_jvmdir=/usr/lib/jvm/java-${_majorver}-openjdk
-_jdkdir=jdk${_majorver}u-${_hg_tag}
-_imgdir=${_jdkdir}/build/linux-${_JARCH}-normal-server-release/images
-
-_nonheadless=(lib/libawt_xawt.so
-  lib/libjawt.so
-  lib/libjsoundalsa.so
-  lib/libsplashscreen.so)
-
-build() {
-  cd ${_jdkdir}
-
-  NUM_PROC_OPT=''
-  MAKEFLAG_J=$(echo ${MAKEFLAGS} | sed -En 's/.*-j([0-9]+).*/\1/p')
-  if [ -n "${MAKEFLAG_J}" ]; then
-# 
http://hg.openjdk.java.net/jdk10/jdk10/file/85e6cb013b98/make/InitSupport.gmk#l105
-echo "Removing '-j${MAKEFLAG_J}' from MAKEFLAGS to prevent build fail. 
Passing it directly to ./configure."
-export MAKEFLAGS=${MAKEFLAGS/-j${MAKEFLAG_J}/}
-NUM_PROC_OPT="--with-num-cores=${MAKEFLAG_J}"
-  fi
-
-  _CFLAGS="${CFLAGS} ${CPPFLAGS}"
-  _CXXFLAGS="${CXXFLAGS} ${CPPFLAGS}"
-  _LDFLAGS=${LDFLAGS}
-  if [[ ${CARCH} = i686 ]]; then
-echo "Removing 

[arch-commits] Commit in java8-openjdk/repos/extra-x86_64 (8 files)

2019-06-17 Thread Levente Polyak via arch-commits
Date: Tuesday, June 18, 2019 @ 05:07:51
  Author: anthraxx
Revision: 356347

archrelease: copy trunk to extra-x86_64

Added:
  java8-openjdk/repos/extra-x86_64/PKGBUILD
(from rev 356346, java8-openjdk/trunk/PKGBUILD)
  java8-openjdk/repos/extra-x86_64/install_jdk8-openjdk.sh
(from rev 356346, java8-openjdk/trunk/install_jdk8-openjdk.sh)
  java8-openjdk/repos/extra-x86_64/install_jre8-openjdk-headless.sh
(from rev 356346, java8-openjdk/trunk/install_jre8-openjdk-headless.sh)
  java8-openjdk/repos/extra-x86_64/install_jre8-openjdk.sh
(from rev 356346, java8-openjdk/trunk/install_jre8-openjdk.sh)
Deleted:
  java8-openjdk/repos/extra-x86_64/PKGBUILD
  java8-openjdk/repos/extra-x86_64/install_jdk8-openjdk.sh
  java8-openjdk/repos/extra-x86_64/install_jre8-openjdk-headless.sh
  java8-openjdk/repos/extra-x86_64/install_jre8-openjdk.sh

--+
 PKGBUILD |  555 ++---
 install_jdk8-openjdk.sh  |  100 +++---
 install_jre8-openjdk-headless.sh |   96 +++---
 install_jre8-openjdk.sh  |   84 ++---
 4 files changed, 411 insertions(+), 424 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-18 05:07:45 UTC (rev 356346)
+++ PKGBUILD2019-06-18 05:07:51 UTC (rev 356347)
@@ -1,284 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Guillaume ALAUX 
-# Contributor: Boyan Ding 
-
-# TODO
-# once icedtea:
-#   pulse
-#   add policytool desktop files
-
-# Package 'openjfx' must be updated when this one is
-pkgname=('jre8-openjdk-headless' 'jre8-openjdk' 'jdk8-openjdk' 'openjdk8-src' 
'openjdk8-doc')
-pkgbase=java8-openjdk
-_java_ver=8
-_jdk_update=212
-_jdk_build=01
-pkgver=${_java_ver}.u${_jdk_update}
-_repo_ver=jdk${_java_ver}u${_jdk_update}-b${_jdk_build}
-pkgrel=2
-arch=('x86_64')
-url='http://openjdk.java.net/'
-license=('custom')
-makedepends=('jdk7-openjdk' 'ccache' 'cpio' 'unzip' 'zip'
- 'libxrender' 'libxtst' 'fontconfig' 'libcups' 'alsa-lib')
-_url_src=http://hg.openjdk.java.net/jdk8u/jdk8u
-source=(jdk8u-${_repo_ver}.tar.gz::${_url_src}/archive/${_repo_ver}.tar.gz
-
corba-${_repo_ver}.tar.gz::${_url_src}/corba/archive/${_repo_ver}.tar.gz
-
hotspot-${_repo_ver}.tar.gz::${_url_src}/hotspot/archive/${_repo_ver}.tar.gz
-jdk-${_repo_ver}.tar.gz::${_url_src}/jdk/archive/${_repo_ver}.tar.gz
-
jaxws-${_repo_ver}.tar.gz::${_url_src}/jaxws/archive/${_repo_ver}.tar.gz
-jaxp-${_repo_ver}.tar.gz::${_url_src}/jaxp/archive/${_repo_ver}.tar.gz
-
langtools-${_repo_ver}.tar.gz::${_url_src}/langtools/archive/${_repo_ver}.tar.gz
-
nashorn-${_repo_ver}.tar.gz::${_url_src}/nashorn/archive/${_repo_ver}.tar.gz)
-
-sha256sums=('81b5e0c769c8439a8660baae148021a7b6589dde190988dda88580c1d9a5803d'
-'2a5fe4f4acc92bd325cf487b4c83d03383d97eb54f03eafbf6422e6b2ec8a6b0'
-'c892af62a60d42b6913a759227383301fb33edff8e623c6e75960798bf0961a2'
-'08d1b06640ac9dc666820a7ebf52502210b29123c5cad4f26aa3a3851999ad92'
-'c2f8f7a163429b0dfc3aee4f23dbb9da2fab9dd9a1b9fce06ec789efc2c33c39'
-'bc530a1894e16f3b5afca69fdddc52caaf2ed719cc4ca09753f9a1b067cbc6c1'
-'b978a5c459f8da55c7d4a52bf625fce3882f127cebf2f176182227ebd1c98e65'
-'02cbc8874beab2066061fe277e9249a505987bc01ef8a3b8fff3e2c38ffcfd22')
-
-case "${CARCH}" in
-  'x86_64') _JARCH=amd64 ; _DOC_ARCH=x86_64 ;;
-  'i686'  ) _JARCH=i386  ; _DOC_ARCH=x86;;
-esac
-
-_jdkname=openjdk8
-_jvmdir=/usr/lib/jvm/java-8-openjdk
-_prefix="jdk8u-${_repo_ver}/image"
-_imgdir="${_prefix}/jvm/openjdk-1.8.0_$(printf '%.2d' ${_jdk_update})"
-_nonheadless=(bin/policytool
-  lib/${_JARCH}/libjsound.so
-  lib/${_JARCH}/libjsoundalsa.so
-  lib/${_JARCH}/libsplashscreen.so)
-
-prepare() {
-  cd jdk8u-${_repo_ver}
-  for subrepo in corba hotspot jdk jaxws jaxp langtools nashorn; do
-ln -s ../${subrepo}-${_repo_ver} ${subrepo}
-  done
-}
-
-build() {
-  cd jdk8u-${_repo_ver}
-
-  unset JAVA_HOME
-  # http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1346
-  export MAKEFLAGS=${MAKEFLAGS/-j*}
-
-  # We filter out -O flags so that the optimization of HotSpot is not lowered 
from O3 to O2
-  export CFLAGS="${CFLAGS//-O2/-O3} ${CPPFLAGS} 
-Wno-error=deprecated-declarations -Wno-error=stringop-overflow= 
-Wno-error=return-type -Wno-error=cpp -fno-lifetime-dse 
-fno-delete-null-pointer-checks"
-  export CXXFLAGS="${CXXFLAGS} ${CPPFLAGS}"
-
-  install -d -m 755 "${srcdir}/${_prefix}/"
-  sh configure \
---prefix="${srcdir}/${_prefix}" \
---with-update-version="${_jdk_update}" \
---with-build-number="b${_jdk_build}" \
---with-milestone="fcs" \
---enable-unlimited-crypto \
---with-zlib=system \
---with-extra-cflags="${CFLAGS}" \
---with-extra-cxxflags="${CXXFLAGS}" \
---with-extra-ldflags="${LDFLAGS}"
-
-  # TODO OpenJDK does not 

[arch-commits] Commit in java8-openjdk/trunk (2 files)

2019-06-17 Thread Levente Polyak via arch-commits
Date: Tuesday, June 18, 2019 @ 05:07:45
  Author: anthraxx
Revision: 356346

upgpkg: java8-openjdk 8.u222-1

Modified:
  java8-openjdk/trunk/PKGBUILD
  java8-openjdk/trunk/install_jre8-openjdk-headless.sh

--+
 PKGBUILD |   45 +
 install_jre8-openjdk-headless.sh |2 -
 2 files changed, 17 insertions(+), 30 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-06-18 04:50:03 UTC (rev 356345)
+++ PKGBUILD2019-06-18 05:07:45 UTC (rev 356346)
@@ -2,24 +2,18 @@
 # Maintainer: Guillaume ALAUX 
 # Contributor: Boyan Ding 
 
-# TODO
-# once icedtea:
-#   pulse
-#   add policytool desktop files
-
-# Package 'openjfx' must be updated when this one is
 pkgname=('jre8-openjdk-headless' 'jre8-openjdk' 'jdk8-openjdk' 'openjdk8-src' 
'openjdk8-doc')
 pkgbase=java8-openjdk
 _java_ver=8
-_jdk_update=212
-_jdk_build=01
+_jdk_update=222
+_jdk_build=05
 pkgver=${_java_ver}.u${_jdk_update}
 _repo_ver=jdk${_java_ver}u${_jdk_update}-b${_jdk_build}
-pkgrel=2
+pkgrel=1
 arch=('x86_64')
 url='http://openjdk.java.net/'
 license=('custom')
-makedepends=('jdk7-openjdk' 'ccache' 'cpio' 'unzip' 'zip'
+makedepends=('java-environment=8' 'ccache' 'cpio' 'unzip' 'zip'
  'libxrender' 'libxtst' 'fontconfig' 'libcups' 'alsa-lib')
 _url_src=http://hg.openjdk.java.net/jdk8u/jdk8u
 source=(jdk8u-${_repo_ver}.tar.gz::${_url_src}/archive/${_repo_ver}.tar.gz
@@ -31,14 +25,14 @@
 
langtools-${_repo_ver}.tar.gz::${_url_src}/langtools/archive/${_repo_ver}.tar.gz
 
nashorn-${_repo_ver}.tar.gz::${_url_src}/nashorn/archive/${_repo_ver}.tar.gz)
 
-sha256sums=('81b5e0c769c8439a8660baae148021a7b6589dde190988dda88580c1d9a5803d'
-'2a5fe4f4acc92bd325cf487b4c83d03383d97eb54f03eafbf6422e6b2ec8a6b0'
-'c892af62a60d42b6913a759227383301fb33edff8e623c6e75960798bf0961a2'
-'08d1b06640ac9dc666820a7ebf52502210b29123c5cad4f26aa3a3851999ad92'
-'c2f8f7a163429b0dfc3aee4f23dbb9da2fab9dd9a1b9fce06ec789efc2c33c39'
-'bc530a1894e16f3b5afca69fdddc52caaf2ed719cc4ca09753f9a1b067cbc6c1'
-'b978a5c459f8da55c7d4a52bf625fce3882f127cebf2f176182227ebd1c98e65'
-'02cbc8874beab2066061fe277e9249a505987bc01ef8a3b8fff3e2c38ffcfd22')
+sha256sums=('9556cee8070449fd515e1dfb4c23b6499d5dc49586136e17fb8862aff3e37024'
+'996e17a077a00e4d205f635c38f432a0eee5225e556a35bf6b5d333b72a2d12f'
+'48955c5d073129b57bb2a03f27397a1eb743459663848dbd896ccd8ad9de'
+'66f1805fdd465813618399ac1bd3b4fbe87a2820afb803cfb6d59a45eebfe51f'
+'92e876099a42001e8c8ec749cc00f10a9e2d8d5dba57d8e15e20d05d02474460'
+'465b40d283fd2063e4422c3c7f2a43da0dcfe70e8125442cff9134436c8a18d1'
+'845e3c106beb7319180adcb41a0f5d40de169453291da4050b326f828de7d8c7'
+'96673ee96926ee942148a3e8cc381e172db550bc9af9e230ac0526b45d65234c')
 
 case "${CARCH}" in
   'x86_64') _JARCH=amd64 ; _DOC_ARCH=x86_64 ;;
@@ -68,7 +62,7 @@
   # http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1346
   export MAKEFLAGS=${MAKEFLAGS/-j*}
 
-  # We filter out -O flags so that the optimization of HotSpot is not lowered 
from O3 to O2
+  # Avoid optimization of HotSpot being lowered from O3 to O2
   export CFLAGS="${CFLAGS//-O2/-O3} ${CPPFLAGS} 
-Wno-error=deprecated-declarations -Wno-error=stringop-overflow= 
-Wno-error=return-type -Wno-error=cpp -fno-lifetime-dse 
-fno-delete-null-pointer-checks"
   export CXXFLAGS="${CXXFLAGS} ${CPPFLAGS}"
 
@@ -150,7 +144,7 @@
   mv "${pkgdir}${_jvmdir}"/jre/lib/management/snmp.acl{.template,}
 
   # Remove 'non-headless' lib files
-  for f in ${_nonheadless[@]}; do
+  for f in "${_nonheadless[@]}"; do
 rm "${pkgdir}${_jvmdir}/jre/${f}"
   done
 
@@ -180,7 +174,7 @@
   ln -sf /usr/share/licenses/${pkgbase} 
"${pkgdir}/usr/share/licenses/${pkgname}"
 
   # Move config files that were set in _backup_etc from ./lib to /etc
-  for file in ${_backup_etc[@]}; do
+  for file in "${_backup_etc[@]}"; do
 _filepkgpath=${_jvmdir}/jre/lib/${file#etc/java-8-openjdk/}
 install -D -m 644 "${pkgdir}${_filepkgpath}" "${pkgdir}/${file}"
 ln -sf /${file} "${pkgdir}${_filepkgpath}"
@@ -194,8 +188,6 @@
   'alsa-lib: for basic sound support'
   'gtk2: for the Gtk+ look and feel - desktop usage'
   'java8-openjfx: for JavaFX GUI components support')
-  # TODO when adding IcedTea: 'giflib: for gif format support'
-  # TODO when adding IcedTea: 'libpulse: for advanced sound support'
   provides=('java-runtime=8' 'java-runtime-openjdk=8')
   install=install_jre8-openjdk.sh
   replaces=('jre8-openjdk-wm')
@@ -202,7 +194,7 @@
 
   cd ${_imgdir}/jre
 
-  for f in ${_nonheadless[@]}; do
+  for f in "${_nonheadless[@]}"; do
 install -D ${f} "${pkgdir}${_jvmdir}/jre/${f}"
   done
 
@@ -217,11 +209,6 @@
   done
   popd
 
-  # Desktop files
-  # TODO 

[arch-commits] Commit in ocaml/trunk (PKGBUILD ocaml-4.08.0.patch)

2019-06-17 Thread Jürgen Hötzel via arch-commits
Date: Tuesday, June 18, 2019 @ 04:50:03
  Author: juergen
Revision: 356345

Fix OCaml build issues: https://github.com/ocaml/ocaml/issues/8742

Added:
  ocaml/trunk/ocaml-4.08.0.patch
Modified:
  ocaml/trunk/PKGBUILD

+
 PKGBUILD   |   12 +---
 ocaml-4.08.0.patch |   13 +
 2 files changed, 22 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-06-18 04:26:31 UTC (rev 356344)
+++ PKGBUILD2019-06-18 04:50:03 UTC (rev 356345)
@@ -11,10 +11,16 @@
 depends=('gdbm')
 makedepends=('tk>=8.6.0' 'ncurses>=5.6-7')
 optdepends=('ncurses: advanced ncurses features' 'tk: advanced tk features')
-source=(https://caml.inria.fr/distrib/ocaml-${pkgver%.*}/${pkgname}-${pkgver}.tar.xz)
-sha1sums=('7af535a715f13f666134a57c492984febd9327ba')
+source=(https://caml.inria.fr/distrib/ocaml-${pkgver%.*}/${pkgname}-${pkgver}.tar.xz
 ocaml-${pkgver}.patch)
+sha1sums=('7af535a715f13f666134a57c492984febd9327ba'
+  'edac6453b1aef6e97367af447f08dd3e8a3e2909')
 options=('!makeflags' '!emptydirs' 'staticlibs')
 
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  patch -i "${srcdir}/ocaml-${pkgver}.patch"
+}
+
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"
   ./configure -prefix /usr -mandir '$(PREFIX)/share/man'
@@ -23,7 +29,7 @@
 
 package_ocaml() {
   cd "${srcdir}/${pkgbase}-${pkgver}"
-  make DESTDIR="${pkgdir}/usr" install
+  make DESTDIR="${pkgdir}" install
 
   # Save >10MB with this one, makepkg only strips debug symbols.
   #find "${pkgdir}/usr/lib" -type f -name '*.so.*' -exec strip 
--strip-unneeded {} \;

Added: ocaml-4.08.0.patch
===
--- ocaml-4.08.0.patch  (rev 0)
+++ ocaml-4.08.0.patch  2019-06-18 04:50:03 UTC (rev 356345)
@@ -0,0 +1,13 @@
+diff --git a/Makefile b/Makefile
+index 2a9413a97..a0f7ac4b7 100644
+--- a/Makefile
 b/Makefile
+@@ -1285,7 +1285,5 @@ SOURCE_FILES=$(shell git ls-files '*.ml' '*.mli' | grep 
-v boot/menhir/parser)
+ 
+ AST_FILES=$(addsuffix .ast,$(SOURCE_FILES))
+ 
+-build-all-asts: $(AST_FILES)
+-
+ CAMLC_DPARSETREE := \
+$(CAMLRUN) ./ocamlc -nostdlib -nopervasives \
+  -stop-after parsing -dparsetree
\ No newline at end of file


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

2019-06-17 Thread Jan Steffens via arch-commits
Date: Tuesday, June 18, 2019 @ 04:25:40
  Author: heftig
Revision: 482085

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 482080, vhba-module/trunk/60-vhba.rules)
  vhba-module/repos/community-staging-x86_64/PKGBUILD
(from rev 482080, vhba-module/trunk/PKGBUILD)
  vhba-module/repos/community-staging-x86_64/dkms.conf
(from rev 482080, 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 
482080, vhba-module/trunk/60-vhba.rules)
===
--- community-staging-x86_64/60-vhba.rules  (rev 0)
+++ community-staging-x86_64/60-vhba.rules  2019-06-18 04:25:40 UTC (rev 
482085)
@@ -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 482080, 
vhba-module/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-06-18 04:25:40 UTC (rev 482085)
@@ -0,0 +1,52 @@
+# Maintainer: Ray Rashif 
+# Contributor: Mateusz Herych 
+# Contributor: Charles Lindsay 
+
+pkgbase=vhba-module
+pkgname=(vhba-module vhba-module-dkms)
+pkgver=20190410
+pkgrel=22
+pkgdesc="Kernel module that emulates SCSI devices"
+url="http://cdemu.sourceforge.net/;
+arch=(x86_64)
+license=(GPL)
+depends=('linux')
+makedepends=('linux-headers')
+_extramodules=extramodules-ARCH
+source=("https://downloads.sourceforge.net/cdemu/$pkgbase-$pkgver.tar.bz2;
+60-vhba.rules dkms.conf)
+sha256sums=('0c18954a8c2c7e208b20afdf785501b23be9382345e6577eba5d653002862394'
+'3052cb1cadbdf4bfb0b588bb8ed80691940d8dd63dc5502943d597eaf9f40c3b'
+'8cab0ebb4fee72069d63616b0983f105b98d1261e72e9bef5509a6e60bc382a7')
+
+prepare() {
+  cd $pkgbase-$pkgver
+  sed -i 's/20190302/20190410/' Makefile  # Fixup VHBA_VERSION
+}
+
+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 482080, 
vhba-module/trunk/dkms.conf)
===
--- community-staging-x86_64/dkms.conf  (rev 0)
+++ community-staging-x86_64/dkms.conf  2019-06-18 04:25:40 UTC (rev 482085)
@@ -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 nvidia-390xx/repos (4 files)

2019-06-17 Thread Jan Steffens via arch-commits
Date: Tuesday, June 18, 2019 @ 04:25:41
  Author: heftig
Revision: 356339

archrelease: copy trunk to staging-x86_64

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

---+
 PKGBUILD  |   90 
 kernel-4.16.patch |   33 +
 kernel-5.1.patch  |  130 
 3 files changed, 253 insertions(+)

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

Copied: nvidia-390xx/repos/staging-x86_64/kernel-4.16.patch (from rev 356338, 
nvidia-390xx/trunk/kernel-4.16.patch)
===
--- staging-x86_64/kernel-4.16.patch(rev 0)
+++ staging-x86_64/kernel-4.16.patch2019-06-18 04:25:41 UTC (rev 356339)
@@ -0,0 +1,33 @@
+diff --git a/kernel/common/inc/nv-linux.h b/kernel/common/inc/nv-linux.h
+index 10fc418..22ef968 100644
+--- a/kernel/common/inc/nv-linux.h
 b/kernel/common/inc/nv-linux.h
+@@ -175,7 +175,11 @@ static inline uid_t __kuid_val(kuid_t uid)
+ 
+ #if 

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

2019-06-17 Thread Jan Steffens via arch-commits
Date: Tuesday, June 18, 2019 @ 04:25:41
  Author: heftig
Revision: 356340

archrelease: copy trunk to staging-x86_64

Added:
  nvidia/repos/staging-x86_64/
  nvidia/repos/staging-x86_64/PKGBUILD
(from rev 356338, nvidia/trunk/PKGBUILD)
  nvidia/repos/staging-x86_64/fs62142.patch
(from rev 356338, nvidia/trunk/fs62142.patch)

---+
 PKGBUILD  |   85 
 fs62142.patch |   13 
 2 files changed, 98 insertions(+)

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

Copied: nvidia/repos/staging-x86_64/fs62142.patch (from rev 356338, 
nvidia/trunk/fs62142.patch)
===
--- staging-x86_64/fs62142.patch(rev 0)
+++ staging-x86_64/fs62142.patch2019-06-18 04:25:41 UTC (rev 356340)
@@ -0,0 +1,13 @@
+diff --git a/kernel/nvidia/nv-dma.c b/kernel/nvidia/nv-dma.c
+index 73cdeed..e691014 100644
+--- a/kernel/nvidia/nv-dma.c
 b/kernel/nvidia/nv-dma.c
+@@ -606,7 +606,7 @@ static NvBool nv_dma_is_map_resource_implemented
+ #if defined(NV_DMA_MAP_RESOURCE_PRESENT)
+ const struct dma_map_ops *ops = get_dma_ops(>dev->dev);
+ 
+-return (ops->map_resource != NULL);
++return (ops && ops->map_resource);
+ #else
+ return NV_FALSE;
+ #endif


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

2019-06-17 Thread Jan Steffens via arch-commits
Date: Tuesday, June 18, 2019 @ 04:25:37
  Author: heftig
Revision: 482079

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

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

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


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

2019-06-17 Thread Jan Steffens via arch-commits
Date: Tuesday, June 18, 2019 @ 04:25:18
  Author: heftig
Revision: 482074

0.0.20190601-6: kernel 5.1.11.arch1-1

Modified:
  wireguard-arch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-18 04:25:16 UTC (rev 482073)
+++ PKGBUILD2019-06-18 04:25:18 UTC (rev 482074)
@@ -2,7 +2,7 @@
 
 pkgname=wireguard-arch
 pkgver=0.0.20190601
-pkgrel=5
+pkgrel=6
 pkgdesc='Wireguard module for Arch Kernel'
 url='https://www.wireguard.com/'
 arch=('x86_64')


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

2019-06-17 Thread Jan Steffens via arch-commits
Date: Tuesday, June 18, 2019 @ 04:25:37
  Author: heftig
Revision: 482080

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: virtualbox-modules-arch/repos/community-staging-x86_64/PKGBUILD (from 
rev 482076, virtualbox-modules-arch/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-06-18 04:25:37 UTC (rev 482080)
@@ -0,0 +1,52 @@
+# Maintainer: Sébastien Luttringer
+# Contributor: Ionut Biru 
+
+pkgbase=virtualbox-modules-arch
+pkgname=('virtualbox-host-modules-arch' 'virtualbox-guest-modules-arch')
+pkgver=6.0.8
+pkgrel=13
+arch=('x86_64')
+url='http://virtualbox.org'
+license=('GPL')
+depends=('linux')
+makedepends=('linux-headers'
+ "virtualbox-host-dkms>=$pkgver"
+ "virtualbox-guest-dkms>=$pkgver")
+
+_extramodules=extramodules-ARCH
+
+package_virtualbox-host-modules-arch(){
+  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
+  pkgdesc='Virtualbox host kernel modules for Arch Kernel'
+  replaces=('virtualbox-modules' 'virtualbox-host-modules')
+  conflicts=('virtualbox-modules' 'virtualbox-host-modules'
+ 'virtualbox-host-dkms')
+  provides=('VIRTUALBOX-HOST-MODULES')
+
+  cd "/var/lib/dkms/vboxhost/${pkgver}_OSE/$_kernver/$CARCH/module"
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m0644 *
+
+  # compress each module individually
+  find "$pkgdir" -name '*.ko' -exec xz -T1 {} +
+
+  # systemd module loading
+  printf '%s\n' vboxdrv vboxpci vboxnetadp vboxnetflt |
+install -D -m0644 /dev/stdin "$pkgdir/usr/lib/modules-load.d/$pkgname.conf"
+}
+
+package_virtualbox-guest-modules-arch(){
+  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
+  pkgdesc='Virtualbox guest kernel modules for Arch Kernel'
+  replaces=('virtualbox-archlinux-modules' 'virtualbox-guest-modules')
+  conflicts=('virtualbox-archlinux-modules' 'virtualbox-guest-modules'
+ 'virtualbox-guest-dkms')
+  provides=('VIRTUALBOX-GUEST-MODULES')
+
+  cd "/var/lib/dkms/vboxsf/${pkgver}_OSE/$_kernver/$CARCH/module"
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m0644 *
+
+  # compress each module individually
+  find "$pkgdir" -name '*.ko' -exec xz -T1 {} +
+}
+
+# vim:set sw=2 et:


[arch-commits] Commit in ndiswrapper-arch/repos (6 files)

2019-06-17 Thread Jan Steffens via arch-commits
Date: Tuesday, June 18, 2019 @ 04:25:39
  Author: heftig
Revision: 482082

archrelease: copy trunk to community-staging-x86_64

Added:
  ndiswrapper-arch/repos/community-staging-x86_64/
  ndiswrapper-arch/repos/community-staging-x86_64/PKGBUILD
(from rev 482075, ndiswrapper-arch/trunk/PKGBUILD)
  ndiswrapper-arch/repos/community-staging-x86_64/linux-4.11.patch
(from rev 482075, ndiswrapper-arch/trunk/linux-4.11.patch)
  ndiswrapper-arch/repos/community-staging-x86_64/linux-4.13.patch
(from rev 482075, ndiswrapper-arch/trunk/linux-4.13.patch)
  ndiswrapper-arch/repos/community-staging-x86_64/linux-4.15.patch
(from rev 482075, ndiswrapper-arch/trunk/linux-4.15.patch)
  ndiswrapper-arch/repos/community-staging-x86_64/linux-5.0.patch
(from rev 482075, ndiswrapper-arch/trunk/linux-5.0.patch)

--+
 PKGBUILD |   43 +++
 linux-4.11.patch |   55 ++
 linux-4.13.patch |   27 +++
 linux-4.15.patch |  199 +
 linux-5.0.patch  |   25 ++
 5 files changed, 349 insertions(+)

Copied: ndiswrapper-arch/repos/community-staging-x86_64/PKGBUILD (from rev 
482075, ndiswrapper-arch/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-06-18 04:25:39 UTC (rev 482082)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+# Contributor: maz-1 
+
+pkgname=ndiswrapper-arch
+pkgver=1.61
+_extramodules=extramodules-ARCH
+pkgrel=42
+pkgdesc="Module for NDIS (Windows Network Drivers) drivers supplied by 
vendors, kernel module for Arch kernel"
+arch=('x86_64')
+url="https://sourceforge.net/projects/ndiswrapper/;
+license=('GPL')
+depends=('linux')
+makedepends=('linux-headers')
+provides=('NDISWRAPPER-MODULE')
+replaces=('ndiswrapper-module')
+source=("ndiswrapper-$pkgver.tar.gz::https://github.com/pgiri/ndiswrapper/archive/v$pkgver.tar.gz;
+'linux-4.11.patch' 'linux-4.13.patch' 'linux-4.15.patch' 
'linux-5.0.patch')
+sha512sums=('85f550f2952137529e0e9855f4d94b7bbc64cbf8a84a31c1b75a4be09d97478a997e64fa6e1ff4e0d29a97a79fc3d4dab1ebdaa9edb3d627a215f47aa4d52823'
+
'5350308406457658fb31c378d6f3dd2a34c7331aebe5bdc80744bf955f1144e88181441704ccc7532f55d6fbe8d410440fb8838c2955d688dde4b55f74fc6ba5'
+
'de026a271cbfbefee99bc00a13c50be87294e5e2c5407d23cff6ce2d2a0c853542ce4f7e3e150741c7e8e32466fb1ab7cab266957da5bcca8376fb0f38e94482'
+
'52bd3d2025ffb8a3f6a4a1a1fee1b87d3811f30a210a54aaa7b37838eb256cd766bc1aeda24e4b4f4829992584931ecd97a042794c9b854bd1ebbf452dce2abf'
+
'4918dcebd62ae577401469719f1a8866edd3dc97667aa3de287af1530aa68f50dc2508c883ecd2c9d1fe20f226ecd342b04b08f7a2cace0e531e5f49bbc12f2c')
+
+prepare() {
+  cd ndiswrapper-$pkgver
+  patch --no-backup-if-mismatch -p1 -i "$srcdir"/linux-4.11.patch
+  patch --no-backup-if-mismatch -p1 -i "$srcdir"/linux-4.13.patch
+  patch --no-backup-if-mismatch -p1 -i "$srcdir"/linux-4.15.patch -d 
ndiswrapper
+  patch --no-backup-if-mismatch -p1 -i "$srcdir"/linux-5.0.patch
+}
+
+build() {
+  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
+
+  cd ndiswrapper-$pkgver/ndiswrapper
+  make -C driver KVERS_UNAME="$_kernver"
+}
+
+package() {
+  cd ndiswrapper-$pkgver/ndiswrapper
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m644 driver/*.ko
+  find "$pkgdir" -name '*.ko' -exec xz {} +
+}

Copied: ndiswrapper-arch/repos/community-staging-x86_64/linux-4.11.patch (from 
rev 482075, ndiswrapper-arch/trunk/linux-4.11.patch)
===
--- community-staging-x86_64/linux-4.11.patch   (rev 0)
+++ community-staging-x86_64/linux-4.11.patch   2019-06-18 04:25:39 UTC (rev 
482082)
@@ -0,0 +1,55 @@
+commit fa2aeeccd5366378ca2eb83c6daee64b511fe792
+Author: Felix Yan 
+Date:   Tue May 16 01:32:56 2017 +0800
+
+Add support for Linux 4.11+
+
+diff --git a/ndiswrapper/driver/ndis.c b/ndiswrapper/driver/ndis.c
+index c1913a05..2ab4dd21 100644
+--- a/ndiswrapper/driver/ndis.c
 b/ndiswrapper/driver/ndis.c
+@@ -2258,7 +2258,9 @@ wstdcall void NdisMIndicateReceivePacket(struct 
ndis_mp_block *nmb,
+   WARNING("empty packet ignored");
+   continue;
+   }
++#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 11, 0)
+   wnd->net_dev->last_rx = jiffies;
++#endif
+   /* get total number of bytes in packet */
+   NdisGetFirstBufferFromPacketSafe(packet, , ,
+, _length,
+@@ -2346,7 +2348,9 @@ wstdcall void EthRxIndicateHandler(struct ndis_mp_block 
*nmb, void *rx_ctx,
+   ERROR("nmb is NULL");
+   EXIT3(return);
+   }
++#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 11, 0)
+   wnd->net_dev->last_rx = jiffies;
++#endif
+ 
+   if (look_ahead_size < packet_size) {
+   

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

2019-06-17 Thread Jan Steffens via arch-commits
Date: Tuesday, June 18, 2019 @ 04:25:36
  Author: heftig
Revision: 482078

archrelease: copy trunk to community-staging-x86_64

Added:
  wireguard-arch/repos/community-staging-x86_64/
  wireguard-arch/repos/community-staging-x86_64/PKGBUILD
(from rev 482075, wireguard-arch/trunk/PKGBUILD)

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

Copied: wireguard-arch/repos/community-staging-x86_64/PKGBUILD (from rev 
482075, wireguard-arch/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-06-18 04:25:36 UTC (rev 482078)
@@ -0,0 +1,27 @@
+# Maintainer: Christian Hesse 
+
+pkgname=wireguard-arch
+pkgver=0.0.20190601
+pkgrel=6
+pkgdesc='Wireguard module for Arch Kernel'
+url='https://www.wireguard.com/'
+arch=('x86_64')
+license=('GPL')
+depends=('linux')
+makedepends=('linux-headers' "wireguard-dkms>=$pkgver")
+conflicts=('wireguard-dkms')
+provides=('WIREGUARD-MODULE')
+
+_extramodules='extramodules-ARCH'
+
+package() {
+  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
+
+  cd "/var/lib/dkms/wireguard/${pkgver}/$_kernver/$CARCH/module"
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m0644 *
+
+  # compress each module individually
+  find "$pkgdir" -name '*.ko' -exec xz -T1 {} +
+}
+
+# vim:set sw=2 et:


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

2019-06-17 Thread Jan Steffens via arch-commits
Date: Tuesday, June 18, 2019 @ 04:25:20
  Author: heftig
Revision: 482075

0.1.0-9: kernel 5.1.11.arch1-1

Modified:
  deepin-anything-arch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-18 04:25:18 UTC (rev 482074)
+++ PKGBUILD2019-06-18 04:25:20 UTC (rev 482075)
@@ -3,7 +3,7 @@
 pkgname=deepin-anything-arch
 pkgver=0.1.0
 _extramodules=extramodules-ARCH
-pkgrel=8
+pkgrel=9
 pkgdesc="Deepin Anything file search tool, kernel module for Arch kernel"
 arch=('x86_64')
 url="https://github.com/linuxdeepin/deepin-anything;


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

2019-06-17 Thread Jan Steffens via arch-commits
Date: Tuesday, June 18, 2019 @ 04:25:16
  Author: heftig
Revision: 482073

1.61-42: kernel 5.1.11.arch1-1

Modified:
  ndiswrapper-arch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-18 04:25:12 UTC (rev 482072)
+++ PKGBUILD2019-06-18 04:25:16 UTC (rev 482073)
@@ -4,7 +4,7 @@
 pkgname=ndiswrapper-arch
 pkgver=1.61
 _extramodules=extramodules-ARCH
-pkgrel=41
+pkgrel=42
 pkgdesc="Module for NDIS (Windows Network Drivers) drivers supplied by 
vendors, kernel module for Arch kernel"
 arch=('x86_64')
 url="https://sourceforge.net/projects/ndiswrapper/;


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

2019-06-17 Thread Jan Steffens via arch-commits
Date: Tuesday, June 18, 2019 @ 04:25:35
  Author: heftig
Revision: 482076

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: r8168/repos/community-staging-x86_64/PKGBUILD (from rev 482075, 
r8168/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-06-18 04:25:35 UTC (rev 482076)
@@ -0,0 +1,37 @@
+# Maintainer: Massimiliano Torromeo 
+# Contributor: Bob Fanger < bfanger(at)gmail >
+# Contributor: Filip , Det < nimetonmaili(at)gmail >
+
+pkgname=r8168
+pkgver=8.047.01
+pkgrel=21
+pkgdesc="A kernel module for Realtek 8168 network cards"
+url="http://www.realtek.com.tw;
+license=("GPL")
+arch=('x86_64')
+depends=('glibc' 'linux')
+makedepends=('linux-headers')
+source=(https://github.com/mtorromeo/r8168/archive/$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('d298c4b52bb68b494230c219879eaf57cabe255f3475f7a792f76ad7fd83a0eb')
+
+build() {
+   KERNEL_VERSION=$(

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

2019-06-17 Thread Jan Steffens via arch-commits
Date: Tuesday, June 18, 2019 @ 04:25:36
  Author: heftig
Revision: 482077

archrelease: copy trunk to community-staging-x86_64

Added:
  deepin-anything-arch/repos/community-staging-x86_64/
  deepin-anything-arch/repos/community-staging-x86_64/PKGBUILD
(from rev 482075, deepin-anything-arch/trunk/PKGBUILD)

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

Copied: deepin-anything-arch/repos/community-staging-x86_64/PKGBUILD (from rev 
482075, deepin-anything-arch/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-06-18 04:25:36 UTC (rev 482077)
@@ -0,0 +1,28 @@
+# Maintainer: Felix Yan 
+
+pkgname=deepin-anything-arch
+pkgver=0.1.0
+_extramodules=extramodules-ARCH
+pkgrel=9
+pkgdesc="Deepin Anything file search tool, kernel module for Arch kernel"
+arch=('x86_64')
+url="https://github.com/linuxdeepin/deepin-anything;
+license=('GPL3')
+depends=('linux')
+makedepends=('linux-headers')
+provides=('DEEPIN-ANYTHING-MODULE')
+replaces=('deepin-anything-module')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-anything/archive/$pkgver.tar.gz;)
+sha512sums=('892828f7c52bb267993507890329e3f3b03550dd5a575a61a70995ce5d9f8cd27f1f1e5b21d4a1ec213ffc430d5236102a9e49b98a0fc0bf2f9042e719d9bfde')
+
+build() {
+  cd deepin-anything-$pkgver
+  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
+  make -C kernelmod kdir=/usr/lib/modules/$_kernver/build
+}
+
+package() {
+  cd deepin-anything-$pkgver
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m644 kernelmod/*.ko
+  find "$pkgdir" -name '*.ko' -exec xz {} +
+}


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

2019-06-17 Thread Jan Steffens via arch-commits
Date: Tuesday, June 18, 2019 @ 04:25:40
  Author: heftig
Revision: 482084

archrelease: copy trunk to community-staging-x86_64

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

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

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


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

2019-06-17 Thread Jan Steffens via arch-commits
Date: Tuesday, June 18, 2019 @ 04:25:40
  Author: heftig
Revision: 482083

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: bbswitch/repos/community-staging-x86_64/PKGBUILD (from rev 482075, 
bbswitch/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-06-18 04:25:40 UTC (rev 482083)
@@ -0,0 +1,38 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: M0Rf30
+# Contributor: Samsagax 
+
+pkgbase=bbswitch
+pkgname=(bbswitch bbswitch-dkms)
+pkgver=0.8
+pkgrel=231
+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')
+makedepends=('linux-headers')
+_extramodules=extramodules-ARCH
+source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz;)
+md5sums=('5b116b31ace3604ddf9d1fc1f4bc5807')
+
+build() {
+  cd ${pkgbase}-${pkgver}
+  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+  make KDIR=/lib/modules/${_kernver}/build
+}
+
+package_bbswitch() {
+  cd ${pkgbase}-${pkgver}
+  install -Dt "${pkgdir}/usr/lib/modules/${_extramodules}" -m644 *.ko
+  find "${pkgdir}" -name '*.ko' -exec xz {} +
+}
+
+package_bbswitch-dkms() {
+  depends=('dkms')
+  conflicts=('bbswitch')
+  provides=('bbswitch')
+
+  cd ${pkgbase}-${pkgver}
+  install -Dt "${pkgdir}/usr/src/${pkgbase}-${pkgver}" -m644 Makefile 
bbswitch.c dkms/dkms.conf
+}


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

2019-06-17 Thread Jan Steffens via arch-commits
Date: Tuesday, June 18, 2019 @ 04:25:15
  Author: heftig
Revision: 356338

430.26-4: kernel 5.1.11.arch1-1

Modified:
  nvidia/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-18 04:25:13 UTC (rev 356337)
+++ PKGBUILD2019-06-18 04:25:15 UTC (rev 356338)
@@ -6,7 +6,7 @@
 pkgname=(nvidia nvidia-dkms)
 pkgver=430.26
 _extramodules=extramodules-ARCH
-pkgrel=3
+pkgrel=4
 pkgdesc="NVIDIA drivers for linux"
 arch=('x86_64')
 url="http://www.nvidia.com/;


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

2019-06-17 Thread Jan Steffens via arch-commits
Date: Tuesday, June 18, 2019 @ 04:25:13
  Author: heftig
Revision: 356337

390.116-31: kernel 5.1.11.arch1-1

Modified:
  nvidia-390xx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-18 04:06:07 UTC (rev 356336)
+++ PKGBUILD2019-06-18 04:25:13 UTC (rev 356337)
@@ -6,7 +6,7 @@
 pkgname=(nvidia-390xx nvidia-390xx-dkms)
 pkgver=390.116
 _extramodules=extramodules-ARCH
-pkgrel=30
+pkgrel=31
 pkgdesc="NVIDIA drivers for linux, 390xx legacy branch"
 arch=('x86_64')
 url="http://www.nvidia.com/;


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

2019-06-17 Thread Jan Steffens via arch-commits
Date: Tuesday, June 18, 2019 @ 04:25:12
  Author: heftig
Revision: 482072

1.1.0-225: kernel 5.1.11.arch1-1

Modified:
  acpi_call/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-18 04:25:11 UTC (rev 482071)
+++ PKGBUILD2019-06-18 04:25:12 UTC (rev 482072)
@@ -5,7 +5,7 @@
 pkgbase=acpi_call
 pkgname=(acpi_call acpi_call-dkms)
 pkgver=1.1.0
-pkgrel=224
+pkgrel=225
 pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
 url='https://github.com/mkottman/acpi_call'
 arch=('x86_64')


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

2019-06-17 Thread Jan Steffens via arch-commits
Date: Tuesday, June 18, 2019 @ 04:25:39
  Author: heftig
Revision: 482081

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

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

Copied: acpi_call/repos/community-staging-x86_64/PKGBUILD (from rev 482075, 
acpi_call/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-06-18 04:25:39 UTC (rev 482081)
@@ -0,0 +1,61 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: mortzu 
+# Contributor: fnord0 
+
+pkgbase=acpi_call
+pkgname=(acpi_call acpi_call-dkms)
+pkgver=1.1.0
+pkgrel=225
+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')
+makedepends=('linux-headers')
+_extramodules=extramodules-ARCH
+source=("acpi_call-${pkgver}.tar.gz::https://github.com/mkottman/acpi_call/archive/v${pkgver}.tar.gz;
+dkms.conf)
+sha256sums=('d0d14b42944282724fca76f57d598eed794ef97448f387d1c489d85ad813f2f0'
+'32e6ea6523b13132c6c7838bba7fbf3d040ba2d35a892c2c356245612720df8a')
+
+prepare() {
+  cd $pkgbase-$pkgver
+
+  # Fix build with Linux >= 3.17
+  sed -i 's|acpi/acpi.h|linux/acpi.h|' acpi_call.c
+
+  # Fix build with Linux >= 4.12
+  sed -i 's|asm/uaccess.h|linux/uaccess.h|' acpi_call.c
+}
+
+build() {
+  cd $pkgbase-$pkgver
+  make KVERSION="$(cat /usr/lib/modules/$_extramodules/version)"
+}
+
+package_acpi_call() {
+  cd $pkgbase-$pkgver
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m644 *.ko
+  find "$pkgdir" -name '*.ko' -exec xz {} +
+
+  echo acpi_call | install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/modules-load.d/acpi_call.conf"
+
+  mkdir -p "$pkgdir/usr/share/acpi_call"
+  cp -t "$pkgdir/usr/share/acpi_call" -dr --no-preserve=ownership examples 
support
+}
+
+package_acpi_call-dkms() {
+  depends=(dkms)
+  provides=("acpi_call=$pkgver-$pkgrel")
+  conflicts=(acpi_call)
+
+  cd $pkgbase-$pkgver
+  install -Dt "$pkgdir/usr/src/$pkgbase-$pkgver" -m644 Makefile acpi_call.c 
../dkms.conf
+
+  echo acpi_call | install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/modules-load.d/acpi_call.conf"
+
+  mkdir -p "$pkgdir/usr/share/acpi_call"
+  cp -t "$pkgdir/usr/share/acpi_call" -dr --no-preserve=ownership examples 
support
+}
+
+# vim:set ts=2 sw=2 et:

Copied: acpi_call/repos/community-staging-x86_64/dkms.conf (from rev 482076, 
acpi_call/trunk/dkms.conf)
===
--- community-staging-x86_64/dkms.conf  (rev 0)
+++ community-staging-x86_64/dkms.conf  2019-06-18 04:25:39 UTC (rev 482081)
@@ -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 virtualbox-modules-arch/trunk (PKGBUILD)

2019-06-17 Thread Jan Steffens via arch-commits
Date: Tuesday, June 18, 2019 @ 04:25:07
  Author: heftig
Revision: 482068

6.0.8-13: kernel 5.1.11.arch1-1

Modified:
  virtualbox-modules-arch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-18 04:25:05 UTC (rev 482067)
+++ PKGBUILD2019-06-18 04:25:07 UTC (rev 482068)
@@ -4,7 +4,7 @@
 pkgbase=virtualbox-modules-arch
 pkgname=('virtualbox-host-modules-arch' 'virtualbox-guest-modules-arch')
 pkgver=6.0.8
-pkgrel=12
+pkgrel=13
 arch=('x86_64')
 url='http://virtualbox.org'
 license=('GPL')


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

2019-06-17 Thread Jan Steffens via arch-commits
Date: Tuesday, June 18, 2019 @ 04:25:11
  Author: heftig
Revision: 482071

20190410-22: kernel 5.1.11.arch1-1

Modified:
  vhba-module/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-18 04:25:09 UTC (rev 482070)
+++ PKGBUILD2019-06-18 04:25:11 UTC (rev 482071)
@@ -5,7 +5,7 @@
 pkgbase=vhba-module
 pkgname=(vhba-module vhba-module-dkms)
 pkgver=20190410
-pkgrel=21
+pkgrel=22
 pkgdesc="Kernel module that emulates SCSI devices"
 url="http://cdemu.sourceforge.net/;
 arch=(x86_64)


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

2019-06-17 Thread Jan Steffens via arch-commits
Date: Tuesday, June 18, 2019 @ 04:25:04
  Author: heftig
Revision: 482066

0.43-119: kernel 5.1.11.arch1-1

Modified:
  tp_smapi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-18 03:46:00 UTC (rev 482065)
+++ PKGBUILD2019-06-18 04:25:04 UTC (rev 482066)
@@ -9,7 +9,7 @@
 
 pkgname=tp_smapi
 pkgver=0.43
-pkgrel=118
+pkgrel=119
 pkgdesc="Modules for ThinkPad's SMAPI functionality"
 arch=('x86_64')
 url='https://github.com/evgeni/tp_smapi'


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

2019-06-17 Thread Jan Steffens via arch-commits
Date: Tuesday, June 18, 2019 @ 04:25:08
  Author: heftig
Revision: 482069

0.8-231: kernel 5.1.11.arch1-1

Modified:
  bbswitch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-18 04:25:07 UTC (rev 482068)
+++ PKGBUILD2019-06-18 04:25:08 UTC (rev 482069)
@@ -5,7 +5,7 @@
 pkgbase=bbswitch
 pkgname=(bbswitch bbswitch-dkms)
 pkgver=0.8
-pkgrel=230
+pkgrel=231
 pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus 
laptops"
 arch=('x86_64')
 url="http://github.com/Bumblebee-Project/bbswitch;


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

2019-06-17 Thread Jan Steffens via arch-commits
Date: Tuesday, June 18, 2019 @ 04:25:05
  Author: heftig
Revision: 482067

6.30.223.271-112: kernel 5.1.11.arch1-1

Modified:
  broadcom-wl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-18 04:25:04 UTC (rev 482066)
+++ PKGBUILD2019-06-18 04:25:05 UTC (rev 482067)
@@ -5,7 +5,7 @@
 #_kernelname=-custom  # Build against kernel with a different name
 pkgname=${_module}${_kernelname}
 pkgver=6.30.223.271
-pkgrel=111
+pkgrel=112
 pkgdesc='Broadcom 802.11 Linux STA wireless driver'
 arch=('x86_64')
 
url='https://www.broadcom.com/support/download-search/?pf=Wireless+LAN+Infrastructure'


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

2019-06-17 Thread Jan Steffens via arch-commits
Date: Tuesday, June 18, 2019 @ 04:25:09
  Author: heftig
Revision: 482070

8.047.01-21: kernel 5.1.11.arch1-1

Modified:
  r8168/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-18 04:25:08 UTC (rev 482069)
+++ PKGBUILD2019-06-18 04:25:09 UTC (rev 482070)
@@ -4,7 +4,7 @@
 
 pkgname=r8168
 pkgver=8.047.01
-pkgrel=20
+pkgrel=21
 pkgdesc="A kernel module for Realtek 8168 network cards"
 url="http://www.realtek.com.tw;
 license=("GPL")


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

2019-06-17 Thread Jan Steffens via arch-commits
Date: Tuesday, June 18, 2019 @ 04:05:29
  Author: heftig
Revision: 356334

5.1.11.zen1-1

Modified:
  linux-zen/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-18 04:05:28 UTC (rev 356333)
+++ PKGBUILD2019-06-18 04:05:29 UTC (rev 356334)
@@ -4,7 +4,7 @@
 
 pkgbase=linux-zen   # Build stock -zen kernel
 #pkgbase=linux-custom   # Build kernel with a different name
-_srcver=5.1.10-zen1
+_srcver=5.1.11-zen1
 pkgver=${_srcver//-/.}
 pkgrel=1
 arch=(x86_64)


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

2019-06-17 Thread Jan Steffens via arch-commits
Date: Tuesday, June 18, 2019 @ 04:05:28
  Author: heftig
Revision: 356333

5.1.11.arch1-1

Modified:
  linux/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-17 23:32:16 UTC (rev 356332)
+++ PKGBUILD2019-06-18 04:05:28 UTC (rev 356333)
@@ -4,7 +4,7 @@
 
 pkgbase=linux   # Build stock -ARCH kernel
 #pkgbase=linux-custom   # Build kernel with a different name
-_srcver=5.1.10-arch1
+_srcver=5.1.11-arch1
 pkgver=${_srcver//-/.}
 pkgrel=1
 arch=(x86_64)


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

2019-06-17 Thread Jan Steffens via arch-commits
Date: Tuesday, June 18, 2019 @ 04:06:07
  Author: heftig
Revision: 356336

archrelease: copy trunk to staging-x86_64

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

---+
 60-linux.hook |   12 
 90-linux.hook |   11 
 PKGBUILD  |  231 +
 config| 9977 
 linux.install |   12 
 linux.preset  |   14 
 6 files changed, 10257 insertions(+)

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


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

2019-06-17 Thread Jan Steffens via arch-commits
Date: Tuesday, June 18, 2019 @ 04:06:07
  Author: heftig
Revision: 356335

archrelease: copy trunk to staging-x86_64

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

---+
 60-linux.hook |   12 
 90-linux.hook |   11 
 PKGBUILD  |  231 +
 config|10009 
 linux.install |   12 
 linux.preset  |   14 
 6 files changed, 10289 insertions(+)

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


[arch-commits] Commit in atom/repos/community-x86_64 (24 files)

2019-06-17 Thread Nicola Squartini via arch-commits
Date: Tuesday, June 18, 2019 @ 03:46:00
  Author: tensor5
Revision: 482065

archrelease: copy trunk to community-x86_64

Added:
  atom/repos/community-x86_64/PKGBUILD
(from rev 482064, atom/trunk/PKGBUILD)
  atom/repos/community-x86_64/atom.js
(from rev 482064, atom/trunk/atom.js)
  atom/repos/community-x86_64/dugite-use-system-git.patch
(from rev 482064, atom/trunk/dugite-use-system-git.patch)
  atom/repos/community-x86_64/electron-3.patch
(from rev 482064, atom/trunk/electron-3.patch)
  atom/repos/community-x86_64/fix-atom-sh.patch
(from rev 482064, atom/trunk/fix-atom-sh.patch)
  atom/repos/community-x86_64/fix-license-path.patch
(from rev 482064, atom/trunk/fix-license-path.patch)
  atom/repos/community-x86_64/fix-restart.patch
(from rev 482064, atom/trunk/fix-restart.patch)
  atom/repos/community-x86_64/no-unsafe-eval-warning.patch
(from rev 482064, atom/trunk/no-unsafe-eval-warning.patch)
  atom/repos/community-x86_64/node-env-production.patch
(from rev 482064, atom/trunk/node-env-production.patch)
  atom/repos/community-x86_64/symbols-view-use-system-ctags.patch
(from rev 482064, atom/trunk/symbols-view-use-system-ctags.patch)
  atom/repos/community-x86_64/use-system-apm.patch
(from rev 482064, atom/trunk/use-system-apm.patch)
  atom/repos/community-x86_64/use-system-electron.patch
(from rev 482064, atom/trunk/use-system-electron.patch)
Deleted:
  atom/repos/community-x86_64/PKGBUILD
  atom/repos/community-x86_64/atom.js
  atom/repos/community-x86_64/dugite-use-system-git.patch
  atom/repos/community-x86_64/electron-3.patch
  atom/repos/community-x86_64/fix-atom-sh.patch
  atom/repos/community-x86_64/fix-license-path.patch
  atom/repos/community-x86_64/fix-restart.patch
  atom/repos/community-x86_64/no-unsafe-eval-warning.patch
  atom/repos/community-x86_64/node-env-production.patch
  atom/repos/community-x86_64/symbols-view-use-system-ctags.patch
  atom/repos/community-x86_64/use-system-apm.patch
  atom/repos/community-x86_64/use-system-electron.patch

-+
 PKGBUILD|  248 -
 atom.js |   66 ++--
 dugite-use-system-git.patch |   66 ++--
 electron-3.patch|   22 -
 fix-atom-sh.patch   |  304 ++---
 fix-license-path.patch  |   44 +--
 fix-restart.patch   |   22 -
 no-unsafe-eval-warning.patch|   22 -
 node-env-production.patch   |   26 -
 symbols-view-use-system-ctags.patch |   22 -
 use-system-apm.patch|   64 ++--
 use-system-electron.patch   |  486 +-
 12 files changed, 696 insertions(+), 696 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-18 03:44:29 UTC (rev 482064)
+++ PKGBUILD2019-06-18 03:46:00 UTC (rev 482065)
@@ -1,124 +0,0 @@
-# Maintainer: Nicola Squartini 
-
-pkgname=atom
-pkgver=1.38.1
-pkgrel=1
-pkgdesc='A hackable text editor for the 21st Century'
-arch=('x86_64')
-url='https://github.com/atom/atom'
-license=('MIT' 'custom')
-depends=('apm' 'electron' 'libxkbfile')
-makedepends=('git' 'npm')
-optdepends=('ctags: symbol indexing support'
-'git: Git and GitHub integration')
-replaces=('atom-editor')
-options=(!emptydirs)
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/atom/atom/archive/v${pkgver}.tar.gz;
-'atom.js'
-'dugite-use-system-git.patch'
-'electron-3.patch'
-'fix-atom-sh.patch'
-'fix-license-path.patch'
-'fix-restart.patch'
-'no-unsafe-eval-warning.patch'
-'node-env-production.patch'
-'symbols-view-use-system-ctags.patch'
-'use-system-apm.patch'
-'use-system-electron.patch')
-sha256sums=('474932b9915308ed4b024e2d1cf061ffb0c0740702915771d192a9b3544eb397'
-'cdf87ab82cfcf69e8904684c59b08c35a68540ea16ab173fce06037ac341efcd'
-'530b46d31df0f5e8f5881e1608a66fe75d549092a6db2e72ba3ad69c48714153'
-'75a672adc0237ea8c93ff67d8296eb73b87792b7b58cdaef7bf596fb6edd073f'
-'b3d3706519556a59ba557b695017c9debe8b23efe2782cdb440131520bc0540d'
-'f41cfc85b23fae85d5aef7bf2201b8c8d7d26b01ae825b0deaf6dbaf3e16b0f9'
-'5a52859d5ceaa6f9d26fa657d6d728dee6e24684914cfc1d5736ccd9793fb86a'
-'bb474831629575636b1129e9f5e64c72a62926757b4b85f0c51b47b91fffd6ae'
-'85612ba035047b8599692ce458b903ef2204995e102b3ff47dc05923d6c2e7d8'
-'3c68e6b3751313e1d386e721f8f819fb051351fb2cf8e753b1d773a0f475fef8'
-'53f43c9328a66e24b3467a0a06d9dfde83475f7e54251bf7a523beafaa043806'
-'4ff7d60aacad1618015532ba2fec60d519213a8c6acaa370e0ccbc02718362b3')
-
-prepare() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  patch -Np1 -i "${srcdir}"/fix-atom-sh.patch
-  patch -Np1 -i "${srcdir}"/use-system-electron.patch
-  patch 

[arch-commits] Commit in atom/trunk (PKGBUILD fix-license-path.patch)

2019-06-17 Thread Nicola Squartini via arch-commits
Date: Tuesday, June 18, 2019 @ 03:44:29
  Author: tensor5
Revision: 482064

upgpkg: atom 1.38.2-1

Modified:
  atom/trunk/PKGBUILD
  atom/trunk/fix-license-path.patch

+
 PKGBUILD   |6 +++---
 fix-license-path.patch |2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-06-18 03:00:13 UTC (rev 482063)
+++ PKGBUILD2019-06-18 03:44:29 UTC (rev 482064)
@@ -1,7 +1,7 @@
 # Maintainer: Nicola Squartini 
 
 pkgname=atom
-pkgver=1.38.1
+pkgver=1.38.2
 pkgrel=1
 pkgdesc='A hackable text editor for the 21st Century'
 arch=('x86_64')
@@ -25,12 +25,12 @@
 'symbols-view-use-system-ctags.patch'
 'use-system-apm.patch'
 'use-system-electron.patch')
-sha256sums=('474932b9915308ed4b024e2d1cf061ffb0c0740702915771d192a9b3544eb397'
+sha256sums=('b78c83975d9626752e05b14a27e5ad1bba623e887082e1c6f056902fd3fa7207'
 'cdf87ab82cfcf69e8904684c59b08c35a68540ea16ab173fce06037ac341efcd'
 '530b46d31df0f5e8f5881e1608a66fe75d549092a6db2e72ba3ad69c48714153'
 '75a672adc0237ea8c93ff67d8296eb73b87792b7b58cdaef7bf596fb6edd073f'
 'b3d3706519556a59ba557b695017c9debe8b23efe2782cdb440131520bc0540d'
-'f41cfc85b23fae85d5aef7bf2201b8c8d7d26b01ae825b0deaf6dbaf3e16b0f9'
+'0ffc18cdb458f6eee97a41c34c0d91103ce1579ec3d6a4067be5556977c189f5'
 '5a52859d5ceaa6f9d26fa657d6d728dee6e24684914cfc1d5736ccd9793fb86a'
 'bb474831629575636b1129e9f5e64c72a62926757b4b85f0c51b47b91fffd6ae'
 '85612ba035047b8599692ce458b903ef2204995e102b3ff47dc05923d6c2e7d8'

Modified: fix-license-path.patch
===
--- fix-license-path.patch  2019-06-18 03:00:13 UTC (rev 482063)
+++ fix-license-path.patch  2019-06-18 03:44:29 UTC (rev 482064)
@@ -11,7 +11,7 @@
for (let window of this.getAllWindows()) {
 --- a/src/workspace.js
 +++ b/src/workspace.js
-@@ -1138,7 +1138,7 @@
+@@ -1136,7 +1136,7 @@
  
// Open Atom's license in the active pane.
openLicense () {


[arch-commits] Commit in zcash/repos/community-x86_64 (9 files)

2019-06-17 Thread Nicola Squartini via arch-commits
Date: Tuesday, June 18, 2019 @ 03:00:13
  Author: tensor5
Revision: 482063

archrelease: copy trunk to community-x86_64

Added:
  zcash/repos/community-x86_64/PKGBUILD
(from rev 482062, zcash/trunk/PKGBUILD)
  zcash/repos/community-x86_64/libsnark-no-gtest.patch
(from rev 482062, zcash/trunk/libsnark-no-gtest.patch)
  zcash/repos/community-x86_64/use-system-qpid-proton.patch
(from rev 482062, zcash/trunk/use-system-qpid-proton.patch)
  zcash/repos/community-x86_64/use-system-rust.patch
(from rev 482062, zcash/trunk/use-system-rust.patch)
  zcash/repos/community-x86_64/zcashd.service
(from rev 482062, zcash/trunk/zcashd.service)
Deleted:
  zcash/repos/community-x86_64/PKGBUILD
  zcash/repos/community-x86_64/libsnark-no-gtest.patch
  zcash/repos/community-x86_64/use-system-rust.patch
  zcash/repos/community-x86_64/zcashd.service

--+
 PKGBUILD |  239 -
 libsnark-no-gtest.patch  |   44 +++
 use-system-qpid-proton.patch |   26 
 use-system-rust.patch|   31 +++--
 zcashd.service   |   18 +--
 5 files changed, 198 insertions(+), 160 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-18 02:59:09 UTC (rev 482062)
+++ PKGBUILD2019-06-18 03:00:13 UTC (rev 482063)
@@ -1,118 +0,0 @@
-# Maintainer: Nicola Squartini 
-
-pkgname=zcash
-pkgver=2.0.4
-_commit=be1d68ef763ce405d4d04d7f4d3dfbbdd9084687
-pkgrel=1
-pkgdesc='Permissionless financial system employing zero-knowledge security'
-arch=('x86_64')
-url='https://z.cash/'
-license=('MIT')
-depends=('boost-libs' 'libevent' 'qpid-proton' 'zeromq')
-makedepends=('boost' 'cmake' 'git' 'gmock' 'python' 'rust' 'wget')
-checkdepends=('python2-pyblake2' 'python2-pyzmq' 'python2-qpid-proton')
-source=("git+https://github.com/zcash/zcash.git#commit=${_commit};
-'libsnark-no-gtest.patch'
-"use-system-rust.patch"
-'zcashd.service')
-sha512sums=('SKIP'
-
'3c002c9d721853089f02cc397e2bc4130574a9c06b1118824338efedc476daa5bdbdcf55bf6beba69fb9c4bd065b871b3111259fa1e25828f333056d340282a1'
-
'dba24a8a99da58c856bf346631b675b5b2512514384c85a3ffbbacd4c51df808d127de926850eeb36993597f31a0052ac758d065c9cecbb05a87c079555e0a54'
-
'2fb8b0a636ca9c7ee15f0fd2c47046c8323ade3de9562f393da7541eee50dd14b12107dd29b0e1ee90ff88963e2f7e25b12435166a1812df5c88c579c12dde88')
-
-prepare() {
-cd ${pkgname}
-
-# Set gitattributes on src/clientversion.cpp
-git archive --format=tar ${_commit} -- src/clientversion.cpp | tar -xf -
-
-patch -Np1 -i ../libsnark-no-gtest.patch
-patch -Np1 -i ../use-system-rust.patch
-
-# Runs forever
-sed -e '/prioritisetransaction.py/d' -i qa/pull-tester/rpc-tests.sh
-}
-
-build() {
-cd ${pkgname}
-
-cd depends
-rust_crates=(
-  crate_aes
-  crate_aesni
-  crate_aes_soft 
-  crate_arrayvec
-  crate_bellman
-  crate_bitflags
-  crate_bit_vec
-  crate_blake2_rfc
-  crate_block_cipher_trait
-  crate_byte_tools
-  crate_byteorder
-  crate_constant_time_eq
-  crate_crossbeam
-  crate_digest
-  crate_fpe
-  crate_fuchsia_zircon
-  crate_fuchsia_zircon_sys
-  crate_futures_cpupool
-  crate_futures
-  crate_generic_array
-  crate_lazy_static
-  crate_libc
-  crate_nodrop
-  crate_num_bigint
-  crate_num_cpus
-  crate_num_integer
-  crate_num_traits
-  crate_opaque_debug
-  crate_pairing
-  crate_rand
-  crate_sapling_crypto
-  crate_stream_cipher
-  crate_typenum
-  crate_winapi_i686_pc_windows_gnu
-  crate_winapi
-  crate_winapi_x86_64_pc_windows_gnu
-  crate_zip32
-)
-make install \
-native_packages='' \
-packages="bdb ${rust_crates[*]} librustzcash"
-cd ..
-
-BUILD="$(./depends/config.guess)"
-CPPFLAGS="${CPPFLAGS} -I${PWD}/depends/${BUILD}/include"
-LDFLAGS="${LDFLAGS} -L${PWD}/depends/${BUILD}/lib"
-
-./autogen.sh
-depends_prefix="${PWD}/depends/${BUILD}" ./configure --prefix=/usr
-make
-}
-
-check() {
-cd ${pkgname}
-
-# Tests require python2
-mkdir "${srcdir}/python"
-ln -s /usr/bin/python2 "${srcdir}/python/python"
-export PATH="${srcdir}/python:${PATH}"
-
-./zcutil/fetch-params.sh --testnet
-# ./qa/zcash/full_test_suite.py
-# ./qa/pull-tester/rpc-tests.sh
-}
-
-package() {
-cd ${pkgname}
-
-make DESTDIR="${pkgdir}" install
-
-for ext in '-cli' '-tx' 'd'; do
-install -Dm644 contrib/zcash${ext}.bash-completion \
-"${pkgdir}"/usr/share/bash-completion/completions/zcash${ext}
-done
-
-install -Dm644 -t "${pkgdir}"/usr/lib/systemd/user ../zcashd.service
-install -Dm644 COPYING "${pkgdir}"/usr/share/licenses/${pkgname}/COPYING
-}

Copied: zcash/repos/community-x86_64/PKGBUILD (from rev 482062, 

[arch-commits] Commit in zcash/trunk (3 files)

2019-06-17 Thread Nicola Squartini via arch-commits
Date: Tuesday, June 18, 2019 @ 02:59:09
  Author: tensor5
Revision: 482062

upgpkg: zcash 2.0.5_2-1

Added:
  zcash/trunk/use-system-qpid-proton.patch
Modified:
  zcash/trunk/PKGBUILD
  zcash/trunk/use-system-rust.patch

--+
 PKGBUILD |   11 +++
 use-system-qpid-proton.patch |   26 ++
 use-system-rust.patch|   11 ++-
 3 files changed, 43 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-06-18 01:48:34 UTC (rev 482061)
+++ PKGBUILD2019-06-18 02:59:09 UTC (rev 482062)
@@ -1,8 +1,8 @@
 # Maintainer: Nicola Squartini 
 
 pkgname=zcash
-pkgver=2.0.4
-_commit=be1d68ef763ce405d4d04d7f4d3dfbbdd9084687
+pkgver=2.0.5_2
+_commit=9e833b39ee3e771d16f8124d9d5ee812a48d0cde
 pkgrel=1
 pkgdesc='Permissionless financial system employing zero-knowledge security'
 arch=('x86_64')
@@ -13,11 +13,13 @@
 checkdepends=('python2-pyblake2' 'python2-pyzmq' 'python2-qpid-proton')
 source=("git+https://github.com/zcash/zcash.git#commit=${_commit};
 'libsnark-no-gtest.patch'
-"use-system-rust.patch"
+'use-system-qpid-proton.patch'
+'use-system-rust.patch'
 'zcashd.service')
 sha512sums=('SKIP'
 
'3c002c9d721853089f02cc397e2bc4130574a9c06b1118824338efedc476daa5bdbdcf55bf6beba69fb9c4bd065b871b3111259fa1e25828f333056d340282a1'
-
'dba24a8a99da58c856bf346631b675b5b2512514384c85a3ffbbacd4c51df808d127de926850eeb36993597f31a0052ac758d065c9cecbb05a87c079555e0a54'
+
'019870971a0cec093d0552585f4140f39dd65f90cb56b97e512bbaf0d79c0f1574295e722310d4e1762af12ff693802fc465765d4d1410d209e259326f307d6a'
+
'e2bdf46696e70a93ffcb45bf4e081c780cda8f11f6fa346b6807731f7c739f18c689c4e78a71f8bd7099874108b6b6584b8a96395bbca8d5441f7600a3fe0ebe'
 
'2fb8b0a636ca9c7ee15f0fd2c47046c8323ade3de9562f393da7541eee50dd14b12107dd29b0e1ee90ff88963e2f7e25b12435166a1812df5c88c579c12dde88')
 
 prepare() {
@@ -27,6 +29,7 @@
 git archive --format=tar ${_commit} -- src/clientversion.cpp | tar -xf -
 
 patch -Np1 -i ../libsnark-no-gtest.patch
+patch -Np1 -i ../use-system-qpid-proton.patch
 patch -Np1 -i ../use-system-rust.patch
 
 # Runs forever

Added: use-system-qpid-proton.patch
===
--- use-system-qpid-proton.patch(rev 0)
+++ use-system-qpid-proton.patch2019-06-18 02:59:09 UTC (rev 482062)
@@ -0,0 +1,26 @@
+--- a/configure.ac
 b/configure.ac
+@@ -587,17 +587,13 @@
+ [],
+ [AC_MSG_WARN([Proton headers not found, disabling Proton support])
+ use_proton=no])
+- AC_CHECK_LIB([qpid-proton-cpp-static], [main],
+-[PROTON_LIBS="-lqpid-proton-cpp-static"],
+-[AC_MSG_WARN([Proton qpid-proton-cpp-static library not found, disabling 
Proton support])
++ AC_CHECK_LIB([qpid-proton-cpp], [main],
++[PROTON_LIBS="-lqpid-proton-cpp"],
++[AC_MSG_WARN([Proton qpid-proton-cpp library not found, disabling Proton 
support])
+ use_proton=no])
+- AC_CHECK_LIB([qpid-proton-core-static], [main],
+-[PROTON_LIBS+=" -lqpid-proton-core-static"],
+-[AC_MSG_WARN([Proton qpid-proton-core-static library not found, disabling 
Proton support])
+-use_proton=no])
+- AC_CHECK_LIB([qpid-proton-static], [main],
+-[PROTON_LIBS+=" -lqpid-proton-static"],
+-[AC_MSG_WARN([Proton qpid-proton-static library not found, disabling 
Proton support])
++ AC_CHECK_LIB([qpid-proton-core], [main],
++[PROTON_LIBS+=" -lqpid-proton-core"],
++[AC_MSG_WARN([Proton qpid-proton-core library not found, disabling Proton 
support])
+ use_proton=no])
+ fi
+ if test x$use_proton = xyes; then

Modified: use-system-rust.patch
===
--- use-system-rust.patch   2019-06-18 01:48:34 UTC (rev 482061)
+++ use-system-rust.patch   2019-06-18 02:59:09 UTC (rev 482062)
@@ -8,4 +8,13 @@
 +$(package)_dependencies=$(rust_crates)
  $(package)_patches=cargo.config 0001-Start-using-cargo-clippy-for-CI.patch 
remove-dev-dependencies.diff
  
- ifeq ($(host_os),mingw32)
+ $(package)_rust_target=$(if 
$(rust_rust_target_$(canonical_host)),$(rust_rust_target_$(canonical_host)),$(canonical_host))
+@@ -33,7 +33,7 @@
+ endef
+ 
+ define $(package)_build_cmds
+-  $(host_prefix)/native/bin/cargo build --package librustzcash 
$($(package)_build_opts)
++  cargo build --package librustzcash $($(package)_build_opts)
+ endef
+ 
+ define $(package)_stage_cmds


[arch-commits] Commit in cuda/repos/community-x86_64 (10 files)

2019-06-17 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, June 18, 2019 @ 01:48:34
  Author: svenstaro
Revision: 482061

archrelease: copy trunk to community-x86_64

Added:
  cuda/repos/community-x86_64/PKGBUILD
(from rev 482060, cuda/trunk/PKGBUILD)
  cuda/repos/community-x86_64/cuda-findgllib_mk.diff
(from rev 482060, cuda/trunk/cuda-findgllib_mk.diff)
  cuda/repos/community-x86_64/cuda.conf
(from rev 482060, cuda/trunk/cuda.conf)
  cuda/repos/community-x86_64/cuda.install
(from rev 482060, cuda/trunk/cuda.install)
  cuda/repos/community-x86_64/cuda.sh
(from rev 482060, cuda/trunk/cuda.sh)
Deleted:
  cuda/repos/community-x86_64/PKGBUILD
  cuda/repos/community-x86_64/cuda-findgllib_mk.diff
  cuda/repos/community-x86_64/cuda.conf
  cuda/repos/community-x86_64/cuda.install
  cuda/repos/community-x86_64/cuda.sh

+
 PKGBUILD   |  166 +++
 cuda-findgllib_mk.diff |   44 ++--
 cuda.conf  |6 -
 cuda.install   |   22 +++---
 cuda.sh|3 
 5 files changed, 121 insertions(+), 120 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-18 01:47:58 UTC (rev 482060)
+++ PKGBUILD2019-06-18 01:48:34 UTC (rev 482061)
@@ -1,83 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Co-Maintainer: Konstantin Gizdov 
-pkgname=cuda
-pkgver=10.1.168
-_basever=10.1.105
-_driverver=418.39
-pkgrel=1
-pkgdesc="NVIDIA's GPU programming toolkit"
-arch=('x86_64')
-url="https://developer.nvidia.com/cuda-zone;
-license=('custom:NVIDIA')
-depends=('gcc-libs' 'opencl-nvidia' 'nvidia-utils' 'gcc')
-replaces=('cuda-toolkit' 'cuda-sdk')
-provides=('cuda-toolkit' 'cuda-sdk')
-optdepends=('gdb: for cuda-gdb'
-'java-runtime=8: for nsight and nvvp')
-options=(!strip staticlibs)
-install=cuda.install
-source=(https://developer.nvidia.com/compute/cuda/10.1/Prod/local_installers/cuda_${_basever}_${_driverver}_linux.run
-
https://developer.nvidia.com/compute/cuda/10.1/Prod/local_installers/cuda_10.1.168_418.67_linux.run
-cuda.sh
-cuda.conf
-cuda-findgllib_mk.diff)
-sha512sums=('07cdc053989758e4cdccaad566cae7127fa79780ad85033ea52d33cc4c43c9de08e88dd087390c58b542e51703f256859cdf51a018ee57e6a412f45fb9561622'
-
'85635012ec7081e200fb46f973852939f9709e802f495c288d5f31ff1fbd283a578fdaca0afa8955e6e0c7ca6c4862428da5168e0938b48390952d8633350910'
-
'ce0b8df5d918ec8429da4ab8f9dee463ac04055ee5b0beeb0386b67d765a4c892d314995776a0d695cd06bcfbaf996e4904935ddc898a9d774f6bf965d989dea'
-
'714d973bc79446f73bebe85306b3566fe25b554bcbcba2fcbe76709a3eca71fb5d183ab4da2d3b5e9326cb9cd8d13a93f6d4a005ea5a41f7ef8e6c6e81e06b5e'
-
'41d6b6cad934f135eafde610d1cbd862033977fd4416a4b6abaa47709a70bab7fcf6f8377c21329084fb9db13f2a8c8c20e93c15292d7d4a6448d70a33b23f1b')
-
-prepare() {
-  sh cuda_${_basever}_${_driverver}_linux.run --target "${srcdir}" --noexec
-  sh cuda_10.1.168_418.67_linux.run --target "${srcdir}" --noexec
-
-  # Fix up samples tht use findgllib_mk
-  for f in builds/cuda-samples/*/*/findgllib.mk; do
-patch $f cuda-findgllib_mk.diff
-  done
-}
-
-package() {
-  mkdir -p "${pkgdir}/opt/"
-
-  cd "${srcdir}/builds"
-  cp -r cuda-toolkit "${pkgdir}/opt/cuda"
-  cp -r cublas/include/* "${pkgdir}/opt/cuda/include/"
-  cp -r cublas/lib64/* "${pkgdir}/opt/cuda/lib64/"
-  cp -r cuda-samples "${pkgdir}/opt/cuda/samples"
-  ln -s /opt/cuda/targets/x86_64-linux/lib "${pkgdir}/opt/cuda/lib"
-  ln -s /opt/cuda/nvvm/lib64 "${pkgdir}/opt/cuda/nvvm/lib"
-
-  # Use GCC 8
-  ln -s /usr/bin/gcc "${pkgdir}/opt/cuda/bin/gcc"
-  ln -s /usr/bin/g++ "${pkgdir}/opt/cuda/bin/g++"
-
-  # Create soname links.
-  # We have to be weird about this since for some reason the ELF SONAME is 
incorrect or at least partially incorrect for some libs.
-  # Best we can do is create all symlinks and hope for the best.
-  # Their installer used to perform this for us but now it's all manual and I 
think this is what we'll be stuck with for now.
-  find cuda-toolkit/targets -type f -name '*.so*' ! -path '*stubs/*' -print0 | 
while read -rd $'\0' _lib; do
-_base=${_lib%.so.*}
-_current_soname=$(basename ${_lib%.*})
-while [[ $_current_soname != $(basename $_base) ]]; do
-  ln -sf ${_lib##*/} ${pkgdir}/opt/cuda/lib64/$_current_soname
-  _current_soname=${_current_soname%.*}
-done
-  done
-
-  # Install profile and ld.so.config files
-  install -Dm755 "${srcdir}/cuda.sh" "${pkgdir}/etc/profile.d/cuda.sh"
-  install -Dm644 "${srcdir}/cuda.conf" "${pkgdir}/etc/ld.so.conf.d/cuda.conf"
-
-  mkdir -p "${pkgdir}/usr/share/licenses/${pkgname}"
-  ln -s /opt/cuda/doc/pdf/EULA.pdf 
"${pkgdir}/usr/share/licenses/${pkgname}/EULA.pdf"
-
-  # Remove included copy of java and link to system java 8
-  rm -fr  "${pkgdir}/opt/cuda/jre"
-  sed 's|../jre/bin/java|/usr/lib/jvm/java-8-openjdk/jre/bin/java|g' \
--i 

[arch-commits] Commit in cuda/trunk (PKGBUILD cuda.sh)

2019-06-17 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, June 18, 2019 @ 01:47:58
  Author: svenstaro
Revision: 482060

upgpkg: cuda 10.1.168-2

Add CUDA_PATH to shell profile (Fixes FS#62915)

Modified:
  cuda/trunk/PKGBUILD
  cuda/trunk/cuda.sh

--+
 PKGBUILD |4 ++--
 cuda.sh  |1 +
 2 files changed, 3 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-06-18 01:29:16 UTC (rev 482059)
+++ PKGBUILD2019-06-18 01:47:58 UTC (rev 482060)
@@ -4,7 +4,7 @@
 pkgver=10.1.168
 _basever=10.1.105
 _driverver=418.39
-pkgrel=1
+pkgrel=2
 pkgdesc="NVIDIA's GPU programming toolkit"
 arch=('x86_64')
 url="https://developer.nvidia.com/cuda-zone;
@@ -23,7 +23,7 @@
 cuda-findgllib_mk.diff)
 
sha512sums=('07cdc053989758e4cdccaad566cae7127fa79780ad85033ea52d33cc4c43c9de08e88dd087390c58b542e51703f256859cdf51a018ee57e6a412f45fb9561622'
 
'85635012ec7081e200fb46f973852939f9709e802f495c288d5f31ff1fbd283a578fdaca0afa8955e6e0c7ca6c4862428da5168e0938b48390952d8633350910'
-
'ce0b8df5d918ec8429da4ab8f9dee463ac04055ee5b0beeb0386b67d765a4c892d314995776a0d695cd06bcfbaf996e4904935ddc898a9d774f6bf965d989dea'
+
'b3691913027b8390161c7412d87a905712d90434cc82027a52f203f8ae3dda755738f734f8190277471e4541d685b524568ad03af58d4b7ebad346eee11c10e4'
 
'714d973bc79446f73bebe85306b3566fe25b554bcbcba2fcbe76709a3eca71fb5d183ab4da2d3b5e9326cb9cd8d13a93f6d4a005ea5a41f7ef8e6c6e81e06b5e'
 
'41d6b6cad934f135eafde610d1cbd862033977fd4416a4b6abaa47709a70bab7fcf6f8377c21329084fb9db13f2a8c8c20e93c15292d7d4a6448d70a33b23f1b')
 

Modified: cuda.sh
===
--- cuda.sh 2019-06-18 01:29:16 UTC (rev 482059)
+++ cuda.sh 2019-06-18 01:47:58 UTC (rev 482060)
@@ -1 +1,2 @@
+export CUDA_PATH=/opt/cuda
 export PATH=$PATH:/opt/cuda/bin


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

2019-06-17 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, June 18, 2019 @ 01:29:16
  Author: svenstaro
Revision: 482059

archrelease: copy trunk to community-x86_64

Added:
  neovim/repos/community-x86_64/PKGBUILD
(from rev 482058, neovim/trunk/PKGBUILD)
Deleted:
  neovim/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  101 -
 1 file changed, 53 insertions(+), 48 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-18 01:29:08 UTC (rev 482058)
+++ PKGBUILD2019-06-18 01:29:16 UTC (rev 482059)
@@ -1,48 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Florian Walch 
-# Contributor: Florian Hahn 
-
-pkgname=neovim
-pkgver=0.3.7
-pkgrel=2
-pkgdesc='Fork of Vim aiming to improve user experience, plugins, and GUIs'
-arch=('x86_64')
-url='https://neovim.io'
-license=('custom:neovim')
-depends=('jemalloc' 'libtermkey' 'libuv' 'msgpack-c' 'unibilium' 'libvterm' 
'luajit')
-makedepends=('cmake' 'ninja' 'lua51-mpack' 'lua51-lpeg' 'gperf')
-optdepends=('python-neovim: for Python 3 plugin support (see :help python)'
-'xclip: for clipboard support (or xsel) (see :help clipboard)'
-'xsel: for clipboard support (or xclip) (see :help clipboard)')
-source=("https://github.com/neovim/neovim/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('1d770a4643a44da65f0a03c90e18e89f337b16ec3eca20dbffa21bcab10c836062ef82974437b64bd766f7b07317cd3dc8e3e72b9d5d0911b1d4f2c528cd20c2')
-
-build() {
-  cmake -Hneovim-${pkgver} -Bbuild -GNinja \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DENABLE_JEMALLOC=ON
-  cmake --build build
-}
-
-check() {
-  cd "${srcdir}/build"
-  ./bin/nvim --version
-  ./bin/nvim --headless -u NONE -i NONE -c ':quit'
-}
-
-package() {
-  cd "${srcdir}/build"
-  DESTDIR="${pkgdir}" cmake --build . --target install
-
-  cd "${srcdir}/neovim-${pkgver}"
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  install -Dm644 runtime/nvim.desktop 
"${pkgdir}/usr/share/applications/nvim.desktop"
-  install -Dm644 runtime/nvim.png "${pkgdir}/usr/share/pixmaps/nvim.png"
-
-  # Make Arch vim packages work
-  mkdir -p "${pkgdir}"/usr/share/vim
-  echo "set runtimepath+=/usr/share/vim/vimfiles" > 
"${pkgdir}"/usr/share/nvim/sysinit.vim
-}
-
-# vim:set sw=2 sts=2 et:

Copied: neovim/repos/community-x86_64/PKGBUILD (from rev 482058, 
neovim/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-18 01:29:16 UTC (rev 482059)
@@ -0,0 +1,53 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Florian Walch 
+# Contributor: Florian Hahn 
+
+pkgname=neovim
+pkgver=0.3.7
+pkgrel=3
+pkgdesc='Fork of Vim aiming to improve user experience, plugins, and GUIs'
+arch=('x86_64')
+url='https://neovim.io'
+backup=('etc/xdg/nvim/sysinit.vim')
+license=('custom:neovim')
+depends=('jemalloc' 'libtermkey' 'libuv' 'msgpack-c' 'unibilium' 'libvterm' 
'luajit')
+makedepends=('cmake' 'ninja' 'lua51-mpack' 'lua51-lpeg' 'gperf')
+optdepends=('python-neovim: for Python 3 plugin support (see :help python)'
+'xclip: for clipboard support (or xsel) (see :help clipboard)'
+'xsel: for clipboard support (or xclip) (see :help clipboard)')
+source=("https://github.com/neovim/neovim/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('1d770a4643a44da65f0a03c90e18e89f337b16ec3eca20dbffa21bcab10c836062ef82974437b64bd766f7b07317cd3dc8e3e72b9d5d0911b1d4f2c528cd20c2')
+
+build() {
+  cmake -Hneovim-${pkgver} -Bbuild -GNinja \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DENABLE_JEMALLOC=ON
+  cmake --build build
+}
+
+check() {
+  cd "${srcdir}/build"
+  ./bin/nvim --version
+  ./bin/nvim --headless -u NONE -i NONE -c ':quit'
+}
+
+package() {
+  cd "${srcdir}/build"
+  DESTDIR="${pkgdir}" cmake --build . --target install
+
+  cd "${srcdir}/neovim-${pkgver}"
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm644 runtime/nvim.desktop 
"${pkgdir}/usr/share/applications/nvim.desktop"
+  install -Dm644 runtime/nvim.png "${pkgdir}/usr/share/pixmaps/nvim.png"
+
+  # Make Arch vim packages work
+  mkdir -p "${pkgdir}"/etc/xdg/nvim
+  echo "\" This line makes pacman-installed global Arch Linux vim packages 
work." > "${pkgdir}"/etc/xdg/nvim/sysinit.vim
+  echo "source /usr/share/nvim/archlinux.vim" >> 
"${pkgdir}"/etc/xdg/nvim/sysinit.vim
+
+  mkdir -p "${pkgdir}"/usr/share/vim
+  echo "set runtimepath+=/usr/share/vim/vimfiles" > 
"${pkgdir}"/usr/share/nvim/archlinux.vim
+}
+
+# vim:set sw=2 sts=2 et:


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

2019-06-17 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, June 18, 2019 @ 01:29:08
  Author: svenstaro
Revision: 482058

upgpkg: neovim 0.3.7-3

Try to fix FS#62762

Modified:
  neovim/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-18 01:22:50 UTC (rev 482057)
+++ PKGBUILD2019-06-18 01:29:08 UTC (rev 482058)
@@ -4,10 +4,11 @@
 
 pkgname=neovim
 pkgver=0.3.7
-pkgrel=2
+pkgrel=3
 pkgdesc='Fork of Vim aiming to improve user experience, plugins, and GUIs'
 arch=('x86_64')
 url='https://neovim.io'
+backup=('etc/xdg/nvim/sysinit.vim')
 license=('custom:neovim')
 depends=('jemalloc' 'libtermkey' 'libuv' 'msgpack-c' 'unibilium' 'libvterm' 
'luajit')
 makedepends=('cmake' 'ninja' 'lua51-mpack' 'lua51-lpeg' 'gperf')
@@ -41,8 +42,12 @@
   install -Dm644 runtime/nvim.png "${pkgdir}/usr/share/pixmaps/nvim.png"
 
   # Make Arch vim packages work
+  mkdir -p "${pkgdir}"/etc/xdg/nvim
+  echo "\" This line makes pacman-installed global Arch Linux vim packages 
work." > "${pkgdir}"/etc/xdg/nvim/sysinit.vim
+  echo "source /usr/share/nvim/archlinux.vim" >> 
"${pkgdir}"/etc/xdg/nvim/sysinit.vim
+
   mkdir -p "${pkgdir}"/usr/share/vim
-  echo "set runtimepath+=/usr/share/vim/vimfiles" > 
"${pkgdir}"/usr/share/nvim/sysinit.vim
+  echo "set runtimepath+=/usr/share/vim/vimfiles" > 
"${pkgdir}"/usr/share/nvim/archlinux.vim
 }
 
 # vim:set sw=2 sts=2 et:


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

2019-06-17 Thread Eli Schwartz via arch-commits
Date: Tuesday, June 18, 2019 @ 01:22:32
  Author: eschwartz
Revision: 482056

upgpkg: hub 2.12.0-1

upstream release
hub now uses go modules, which means that the GOPATH hacks can be dropped

Modified:
  hub/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-18 01:21:06 UTC (rev 482055)
+++ PKGBUILD2019-06-18 01:22:32 UTC (rev 482056)
@@ -4,7 +4,7 @@
 # Contributor: Alfredo Palhares 
 
 pkgname=hub
-pkgver=2.11.2
+pkgver=2.12.0
 pkgrel=1
 
 pkgdesc="cli interface for Github"
@@ -15,31 +15,35 @@
 depends=('git')
 makedepends=('go-pie')
 
-source=("hub-$pkgver.tar.gz::https://github.com/github/hub/archive/v$pkgver.tar.gz;)
-sha256sums=('1a80685d3d4fe14012c4f5e5cda9a2c5fe680a81729e692008aa1414f8e1f972')
-b2sums=('0650e21f9a3ff83d07f2a0e2ba1bf11bac1ac96fc4a17fc77bcc21addc1fd65769e49751d19dd79624970d8474d727695ee90f28f42b07fa6f9cd0b775dc6c0d')
+source=("hub-$pkgver.tar.gz::https://github.com/github/hub/archive/v$pkgver.tar.gz;
+
"https://github.com/github/hub/commit/7d915e232caed4f89b95f9c93c94c98b3f38a9c9.patch;)
+sha256sums=('937e0ea3ba6dcc8030889d987313efa4da27b6c54ed20fb40fbf5ff9df4c3780'
+'fc7f7bfc4a58c9c631fd8f3696c96a7d0a96dc53322f1cc3e95cd003ecf7661e')
+b2sums=('f4ba878c5ea541b39b8640bc615ed0b1d0e2686d9b491b05cff2664a9e91e29a6bf4ef2bba415de8f6f3439a33807b9e19c8a5da6b90c845bcc963c276f1'
+
'b3b3f9c77ff44e4c71722cbe894dd5878c2740e813d27dc3883e242acde1c4e2b0d80756ad7e370dce310c5e1b5c8a9e9bf482a3f54ab9ea313676e2d792dda1')
 
 prepare() {
-  mkdir -p src/github.com/github
-  cp -r hub-$pkgver src/github.com/github/hub
+  cd "$srcdir"/hub-$pkgver
+
+  # activate go modules by default on new enough golang compiler
+  patch -p1 -i ../7d915e232caed4f89b95f9c93c94c98b3f38a9c9.patch
 }
 
 build() {
-  cd src/github.com/github/hub
+  cd "$srcdir"/hub-$pkgver
 
-  export GOPATH="$srcdir"
   make
   make man-pages
 }
 
 check() {
-  cd src/github.com/github/hub
+  cd "$srcdir"/hub-$pkgver
 
-  GOPATH="$srcdir" make test
+  make test
 }
 
 package() {
-  cd src/github.com/github/hub
+  cd "$srcdir"/hub-$pkgver
 
   make PREFIX="$pkgdir"/usr install
 


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

2019-06-17 Thread Eli Schwartz via arch-commits
Date: Tuesday, June 18, 2019 @ 01:22:50
  Author: eschwartz
Revision: 482057

archrelease: copy trunk to community-x86_64

Added:
  hub/repos/community-x86_64/PKGBUILD
(from rev 482056, hub/trunk/PKGBUILD)
Deleted:
  hub/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-18 01:22:32 UTC (rev 482056)
+++ PKGBUILD2019-06-18 01:22:50 UTC (rev 482057)
@@ -1,50 +0,0 @@
-# Maintainer: Johannes Löthberg 
-# Maintainer: Eli Schwartz 
-# Contributor: Daniel Wallace 
-# Contributor: Alfredo Palhares 
-
-pkgname=hub
-pkgver=2.11.2
-pkgrel=1
-
-pkgdesc="cli interface for Github"
-url="https://hub.github.com;
-arch=('x86_64')
-license=('MIT')
-
-depends=('git')
-makedepends=('go-pie')
-
-source=("hub-$pkgver.tar.gz::https://github.com/github/hub/archive/v$pkgver.tar.gz;)
-sha256sums=('1a80685d3d4fe14012c4f5e5cda9a2c5fe680a81729e692008aa1414f8e1f972')
-b2sums=('0650e21f9a3ff83d07f2a0e2ba1bf11bac1ac96fc4a17fc77bcc21addc1fd65769e49751d19dd79624970d8474d727695ee90f28f42b07fa6f9cd0b775dc6c0d')
-
-prepare() {
-  mkdir -p src/github.com/github
-  cp -r hub-$pkgver src/github.com/github/hub
-}
-
-build() {
-  cd src/github.com/github/hub
-
-  export GOPATH="$srcdir"
-  make
-  make man-pages
-}
-
-check() {
-  cd src/github.com/github/hub
-
-  GOPATH="$srcdir" make test
-}
-
-package() {
-  cd src/github.com/github/hub
-
-  make PREFIX="$pkgdir"/usr install
-
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-  install -Dm644 etc/hub.bash_completion.sh 
"$pkgdir"/usr/share/bash-completion/completions/hub
-  install -Dm644 etc/hub.zsh_completion 
"$pkgdir"/usr/share/zsh/site-functions/_hub
-  install -Dm644 etc/hub.fish_completion 
"$pkgdir"/usr/share/fish/vendor_completions.d/hub.fish
-}

Copied: hub/repos/community-x86_64/PKGBUILD (from rev 482056, 
hub/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-18 01:22:50 UTC (rev 482057)
@@ -0,0 +1,54 @@
+# Maintainer: Johannes Löthberg 
+# Maintainer: Eli Schwartz 
+# Contributor: Daniel Wallace 
+# Contributor: Alfredo Palhares 
+
+pkgname=hub
+pkgver=2.12.0
+pkgrel=1
+
+pkgdesc="cli interface for Github"
+url="https://hub.github.com;
+arch=('x86_64')
+license=('MIT')
+
+depends=('git')
+makedepends=('go-pie')
+
+source=("hub-$pkgver.tar.gz::https://github.com/github/hub/archive/v$pkgver.tar.gz;
+
"https://github.com/github/hub/commit/7d915e232caed4f89b95f9c93c94c98b3f38a9c9.patch;)
+sha256sums=('937e0ea3ba6dcc8030889d987313efa4da27b6c54ed20fb40fbf5ff9df4c3780'
+'fc7f7bfc4a58c9c631fd8f3696c96a7d0a96dc53322f1cc3e95cd003ecf7661e')
+b2sums=('f4ba878c5ea541b39b8640bc615ed0b1d0e2686d9b491b05cff2664a9e91e29a6bf4ef2bba415de8f6f3439a33807b9e19c8a5da6b90c845bcc963c276f1'
+
'b3b3f9c77ff44e4c71722cbe894dd5878c2740e813d27dc3883e242acde1c4e2b0d80756ad7e370dce310c5e1b5c8a9e9bf482a3f54ab9ea313676e2d792dda1')
+
+prepare() {
+  cd "$srcdir"/hub-$pkgver
+
+  # activate go modules by default on new enough golang compiler
+  patch -p1 -i ../7d915e232caed4f89b95f9c93c94c98b3f38a9c9.patch
+}
+
+build() {
+  cd "$srcdir"/hub-$pkgver
+
+  make
+  make man-pages
+}
+
+check() {
+  cd "$srcdir"/hub-$pkgver
+
+  make test
+}
+
+package() {
+  cd "$srcdir"/hub-$pkgver
+
+  make PREFIX="$pkgdir"/usr install
+
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  install -Dm644 etc/hub.bash_completion.sh 
"$pkgdir"/usr/share/bash-completion/completions/hub
+  install -Dm644 etc/hub.zsh_completion 
"$pkgdir"/usr/share/zsh/site-functions/_hub
+  install -Dm644 etc/hub.fish_completion 
"$pkgdir"/usr/share/fish/vendor_completions.d/hub.fish
+}


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

2019-06-17 Thread Nicola Squartini via arch-commits
Date: Tuesday, June 18, 2019 @ 01:20:18
  Author: tensor5
Revision: 482054

upgpkg: qpid-proton 0.28.0-1

Modified:
  qpid-proton/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-17 23:51:26 UTC (rev 482053)
+++ PKGBUILD2019-06-18 01:20:18 UTC (rev 482054)
@@ -1,7 +1,7 @@
 # Maintainer: Nicola Squartini 
 
 pkgname=(qpid-proton python2-qpid-proton)
-pkgver=0.26.0
+pkgver=0.28.0
 pkgrel=1
 pkgdesc='High-performance, lightweight messaging library'
 arch=('x86_64')
@@ -9,7 +9,7 @@
 license=('Apache')
 makedepends=('cmake' 'doxygen' 'python' 'python2' 'swig')
 
source=("http://www.apache.org/dist/qpid/proton/${pkgver}/qpid-proton-${pkgver}.tar.gz;)
-sha512sums=('e7c028aa4cabb0925c9e6f648a9c9fcfcbb66102aa4e1a82aa801153491db211c5154f95d21928a9c80cb5ef18f0038df0036fbb880ea6083f1b8cc91bd1e888')
+sha512sums=('98c82db9a13543f81ccf0b5d6e4d2f18cb8446016969f3582fb7a50604a189b27c124eb9899887ba10405cce5d9ccb65fa385d57c60a511e5e067b77d74a3fa1')
 
 build() {
 cd ${pkgname}-${pkgver}


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

2019-06-17 Thread Nicola Squartini via arch-commits
Date: Tuesday, June 18, 2019 @ 01:21:06
  Author: tensor5
Revision: 482055

archrelease: copy trunk to community-x86_64

Added:
  qpid-proton/repos/community-x86_64/PKGBUILD
(from rev 482054, qpid-proton/trunk/PKGBUILD)
Deleted:
  qpid-proton/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-18 01:20:18 UTC (rev 482054)
+++ PKGBUILD2019-06-18 01:21:06 UTC (rev 482055)
@@ -1,42 +0,0 @@
-# Maintainer: Nicola Squartini 
-
-pkgname=(qpid-proton python2-qpid-proton)
-pkgver=0.26.0
-pkgrel=1
-pkgdesc='High-performance, lightweight messaging library'
-arch=('x86_64')
-url='https://qpid.apache.org/proton'
-license=('Apache')
-makedepends=('cmake' 'doxygen' 'python' 'python2' 'swig')
-source=("http://www.apache.org/dist/qpid/proton/${pkgver}/qpid-proton-${pkgver}.tar.gz;)
-sha512sums=('e7c028aa4cabb0925c9e6f648a9c9fcfcbb66102aa4e1a82aa801153491db211c5154f95d21928a9c80cb5ef18f0038df0036fbb880ea6083f1b8cc91bd1e888')
-
-build() {
-cd ${pkgname}-${pkgver}
-
-mkdir build
-cd build
-cmake \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_SUFFIX='' \
--DSYSINSTALL_BINDINGS=ON \
-..
-make
-
-cd python/dist
-python2 setup.py build
-}
-
-package_qpid-proton() {
-depends=('jsoncpp' 'python' 'ruby')
-
-cd ${pkgname}-${pkgver}/build
-make DESTDIR="${pkgdir}" install
-}
-
-package_python2-qpid-proton() {
-depends=('python2')
-
-cd qpid-proton-${pkgver}/build/python/dist
-python2 setup.py install --root="${pkgdir}" --skip-build --optimize=1
-}

Copied: qpid-proton/repos/community-x86_64/PKGBUILD (from rev 482054, 
qpid-proton/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-18 01:21:06 UTC (rev 482055)
@@ -0,0 +1,42 @@
+# Maintainer: Nicola Squartini 
+
+pkgname=(qpid-proton python2-qpid-proton)
+pkgver=0.28.0
+pkgrel=1
+pkgdesc='High-performance, lightweight messaging library'
+arch=('x86_64')
+url='https://qpid.apache.org/proton'
+license=('Apache')
+makedepends=('cmake' 'doxygen' 'python' 'python2' 'swig')
+source=("http://www.apache.org/dist/qpid/proton/${pkgver}/qpid-proton-${pkgver}.tar.gz;)
+sha512sums=('98c82db9a13543f81ccf0b5d6e4d2f18cb8446016969f3582fb7a50604a189b27c124eb9899887ba10405cce5d9ccb65fa385d57c60a511e5e067b77d74a3fa1')
+
+build() {
+cd ${pkgname}-${pkgver}
+
+mkdir build
+cd build
+cmake \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_SUFFIX='' \
+-DSYSINSTALL_BINDINGS=ON \
+..
+make
+
+cd python/dist
+python2 setup.py build
+}
+
+package_qpid-proton() {
+depends=('jsoncpp' 'python' 'ruby')
+
+cd ${pkgname}-${pkgver}/build
+make DESTDIR="${pkgdir}" install
+}
+
+package_python2-qpid-proton() {
+depends=('python2')
+
+cd qpid-proton-${pkgver}/build/python/dist
+python2 setup.py install --root="${pkgdir}" --skip-build --optimize=1
+}


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

2019-06-17 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, June 17, 2019 @ 23:51:16
  Author: svenstaro
Revision: 482052

upgpkg: minio 2019.06.15-2

Fix version display (Fixes FS#62774)

Modified:
  minio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-17 23:46:57 UTC (rev 482051)
+++ PKGBUILD2019-06-17 23:51:16 UTC (rev 482052)
@@ -4,8 +4,9 @@
 
 pkgname=minio
 pkgver=2019.06.15
-_pkgver="${pkgver//./-}T23-07-18Z"
-pkgrel=1
+_timever=T23:07:18Z
+_pkgver="${pkgver//./-}${_timever//:/-}"
+pkgrel=2
 pkgdesc='Object storage server compatible with Amazon S3'
 arch=('x86_64')
 url='https://minio.io'
@@ -13,12 +14,12 @@
 depends=('glibc')
 makedepends=('go-pie' 'git')
 options=('!strip')
-source=(https://github.com/minio/minio/archive/RELEASE.${_pkgver}.tar.gz
+source=(git+https://github.com/minio/minio.git#tag=RELEASE.${_pkgver}
 minio.conf
 minio.service
 minio.sysusers)
 backup=('etc/minio/minio.conf')
-sha512sums=('88b4ec5232e44f7f574a8576b74d878eaac2024679491c7fe44865f12b5b1b5a005f629bda6ebc1750c0700676ad077583628f5a5e83d511c93da4dacf31fa91'
+sha512sums=('SKIP'
 
'630a5d109409074b67be71b663a43ad09104121cca3637bb0542df19e375023bff7d7e2cbf39e52cc3cd060d41c363a90bd4ff7734aed1a5ca43a600f6d6d275'
 
'59aa13b47494564c8eea23dd48fdccef0e65adc0defd4bbd9ca039fd602de0791e1311e444bddca71a1bec7a58cb4eaafad09a8d9ae61eb1e534287dfdf610c2'
 
'7e4617aed266cf48a2ff9b0e80e31641d998537c78d2c56ce97b828cfc77d96dbf64728d4235dac7382d6e5b201388bef6722959302de5e2298d93f4ec1e0e63')
@@ -26,8 +27,11 @@
 build() {
   export GOPATH="${srcdir}/go"
   mkdir -p "${GOPATH}/src/github.com/minio"
-  mv "${srcdir}/minio-RELEASE.${_pkgver}" 
"${GOPATH}/src/github.com/minio/minio"
+  mv "${srcdir}/minio" "${GOPATH}/src/github.com/minio/minio"
   cd "${GOPATH}/src/github.com/minio/minio"
+  sed -i "s/Version.*/Version = \"${pkgver//./-}${_timever}\"/g" 
cmd/build-constants.go
+  sed -i "s/ReleaseTag.*/ReleaseTag = \"RELEASE.${_pkgver}\"/g" 
cmd/build-constants.go
+  sed -i "s/CommitID.*/CommitID = \"$(git rev-parse HEAD)\"/g" 
cmd/build-constants.go
   GO111MODULE=on go build
 }
 
@@ -35,10 +39,9 @@
   install -dm750 -o 103 -g 103 "${pkgdir}/srv/minio"
   install -dm750 -o 103 -g 103 "${pkgdir}/var/lib/minio"
 
-  export GOPATH="${srcdir}/go"
-  cd "${GOPATH}/src/github.com/minio/minio"
-  install -Dm755 "${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
-  install -Dm644 "${srcdir}/minio.conf" "${pkgdir}/etc/minio/${pkgname}.conf"
-  install -Dm644 "${srcdir}/minio.service" 
"${pkgdir}/usr/lib/systemd/system/${pkgname}.service"
-  install -Dm644 "${srcdir}/minio.sysusers" 
"${pkgdir}/usr/lib/sysusers.d/${pkgname}.conf"
+  cd "${srcdir}/go/src/github.com/minio/minio"
+  install -Dm755 minio "${pkgdir}/usr/bin/minio"
+  install -Dm644 "${srcdir}/minio.conf" "${pkgdir}/etc/minio/minio.conf"
+  install -Dm644 "${srcdir}/minio.service" 
"${pkgdir}/usr/lib/systemd/system/minio.service"
+  install -Dm644 "${srcdir}/minio.sysusers" 
"${pkgdir}/usr/lib/sysusers.d/minio.conf"
 }


[arch-commits] Commit in minio/repos/community-x86_64 (8 files)

2019-06-17 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, June 17, 2019 @ 23:51:26
  Author: svenstaro
Revision: 482053

archrelease: copy trunk to community-x86_64

Added:
  minio/repos/community-x86_64/PKGBUILD
(from rev 482052, minio/trunk/PKGBUILD)
  minio/repos/community-x86_64/minio.conf
(from rev 482052, minio/trunk/minio.conf)
  minio/repos/community-x86_64/minio.service
(from rev 482052, minio/trunk/minio.service)
  minio/repos/community-x86_64/minio.sysusers
(from rev 482052, minio/trunk/minio.sysusers)
Deleted:
  minio/repos/community-x86_64/PKGBUILD
  minio/repos/community-x86_64/minio.conf
  minio/repos/community-x86_64/minio.service
  minio/repos/community-x86_64/minio.sysusers

+
 PKGBUILD   |   91 ---
 minio.conf |   16 -
 minio.service  |   54 
 minio.sysusers |2 -
 4 files changed, 83 insertions(+), 80 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-17 23:51:16 UTC (rev 482052)
+++ PKGBUILD2019-06-17 23:51:26 UTC (rev 482053)
@@ -1,44 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Frederik Schwan 
-# Contributor: Daniel Maslowski 
-
-pkgname=minio
-pkgver=2019.06.15
-_pkgver="${pkgver//./-}T23-07-18Z"
-pkgrel=1
-pkgdesc='Object storage server compatible with Amazon S3'
-arch=('x86_64')
-url='https://minio.io'
-license=('APACHE')
-depends=('glibc')
-makedepends=('go-pie' 'git')
-options=('!strip')
-source=(https://github.com/minio/minio/archive/RELEASE.${_pkgver}.tar.gz
-minio.conf
-minio.service
-minio.sysusers)
-backup=('etc/minio/minio.conf')
-sha512sums=('88b4ec5232e44f7f574a8576b74d878eaac2024679491c7fe44865f12b5b1b5a005f629bda6ebc1750c0700676ad077583628f5a5e83d511c93da4dacf31fa91'
-
'630a5d109409074b67be71b663a43ad09104121cca3637bb0542df19e375023bff7d7e2cbf39e52cc3cd060d41c363a90bd4ff7734aed1a5ca43a600f6d6d275'
-
'59aa13b47494564c8eea23dd48fdccef0e65adc0defd4bbd9ca039fd602de0791e1311e444bddca71a1bec7a58cb4eaafad09a8d9ae61eb1e534287dfdf610c2'
-
'7e4617aed266cf48a2ff9b0e80e31641d998537c78d2c56ce97b828cfc77d96dbf64728d4235dac7382d6e5b201388bef6722959302de5e2298d93f4ec1e0e63')
-
-build() {
-  export GOPATH="${srcdir}/go"
-  mkdir -p "${GOPATH}/src/github.com/minio"
-  mv "${srcdir}/minio-RELEASE.${_pkgver}" 
"${GOPATH}/src/github.com/minio/minio"
-  cd "${GOPATH}/src/github.com/minio/minio"
-  GO111MODULE=on go build
-}
-
-package() {
-  install -dm750 -o 103 -g 103 "${pkgdir}/srv/minio"
-  install -dm750 -o 103 -g 103 "${pkgdir}/var/lib/minio"
-
-  export GOPATH="${srcdir}/go"
-  cd "${GOPATH}/src/github.com/minio/minio"
-  install -Dm755 "${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
-  install -Dm644 "${srcdir}/minio.conf" "${pkgdir}/etc/minio/${pkgname}.conf"
-  install -Dm644 "${srcdir}/minio.service" 
"${pkgdir}/usr/lib/systemd/system/${pkgname}.service"
-  install -Dm644 "${srcdir}/minio.sysusers" 
"${pkgdir}/usr/lib/sysusers.d/${pkgname}.conf"
-}

Copied: minio/repos/community-x86_64/PKGBUILD (from rev 482052, 
minio/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-17 23:51:26 UTC (rev 482053)
@@ -0,0 +1,47 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Frederik Schwan 
+# Contributor: Daniel Maslowski 
+
+pkgname=minio
+pkgver=2019.06.15
+_timever=T23:07:18Z
+_pkgver="${pkgver//./-}${_timever//:/-}"
+pkgrel=2
+pkgdesc='Object storage server compatible with Amazon S3'
+arch=('x86_64')
+url='https://minio.io'
+license=('APACHE')
+depends=('glibc')
+makedepends=('go-pie' 'git')
+options=('!strip')
+source=(git+https://github.com/minio/minio.git#tag=RELEASE.${_pkgver}
+minio.conf
+minio.service
+minio.sysusers)
+backup=('etc/minio/minio.conf')
+sha512sums=('SKIP'
+
'630a5d109409074b67be71b663a43ad09104121cca3637bb0542df19e375023bff7d7e2cbf39e52cc3cd060d41c363a90bd4ff7734aed1a5ca43a600f6d6d275'
+
'59aa13b47494564c8eea23dd48fdccef0e65adc0defd4bbd9ca039fd602de0791e1311e444bddca71a1bec7a58cb4eaafad09a8d9ae61eb1e534287dfdf610c2'
+
'7e4617aed266cf48a2ff9b0e80e31641d998537c78d2c56ce97b828cfc77d96dbf64728d4235dac7382d6e5b201388bef6722959302de5e2298d93f4ec1e0e63')
+
+build() {
+  export GOPATH="${srcdir}/go"
+  mkdir -p "${GOPATH}/src/github.com/minio"
+  mv "${srcdir}/minio" "${GOPATH}/src/github.com/minio/minio"
+  cd "${GOPATH}/src/github.com/minio/minio"
+  sed -i "s/Version.*/Version = \"${pkgver//./-}${_timever}\"/g" 
cmd/build-constants.go
+  sed -i "s/ReleaseTag.*/ReleaseTag = \"RELEASE.${_pkgver}\"/g" 
cmd/build-constants.go
+  sed -i "s/CommitID.*/CommitID = \"$(git rev-parse HEAD)\"/g" 
cmd/build-constants.go
+  GO111MODULE=on go build
+}
+
+package() {
+  install -dm750 -o 103 -g 103 "${pkgdir}/srv/minio"
+  install -dm750 -o 103 -g 103 "${pkgdir}/var/lib/minio"
+
+  

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

2019-06-17 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, June 17, 2019 @ 23:46:57
  Author: svenstaro
Revision: 482051

archrelease: copy trunk to community-x86_64

Added:
  minio-client/repos/community-x86_64/
  minio-client/repos/community-x86_64/PKGBUILD
(from rev 482050, minio-client/trunk/PKGBUILD)
  minio-client/repos/community-x86_64/minio-client.install
(from rev 482050, minio-client/trunk/minio-client.install)

--+
 PKGBUILD |   34 ++
 minio-client.install |3 +++
 2 files changed, 37 insertions(+)

Copied: minio-client/repos/community-x86_64/PKGBUILD (from rev 482050, 
minio-client/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2019-06-17 23:46:57 UTC (rev 482051)
@@ -0,0 +1,34 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Dhananjay Balan 
+
+pkgname=minio-client
+pkgver=2019.06.12
+_timever=T20:35:20Z
+_pkgver="${pkgver//./-}${_timever//:/-}"
+pkgrel=1
+pkgdesc='Replacement for ls, cp, mkdir, diff and rsync commands for 
filesystems and object storage'
+arch=('x86_64')
+url='https://minio.io/downloads/#minio-client'
+license=('Apache')
+makedepends=('go-pie' 'git')
+depends=('glibc')
+install=minio-client.install
+source=(git+https://github.com/minio/mc.git#tag=RELEASE.${_pkgver})
+sha512sums=('SKIP')
+
+build() {
+  export GOPATH="$srcdir/go"
+  mkdir -p "$GOPATH/src/github.com/minio"
+  mv "$srcdir/mc" "$GOPATH/src/github.com/minio/mc/"
+  cd "$GOPATH/src/github.com/minio/mc"
+  sed -i "s/Version.*/Version = \"${pkgver//./-}${_timever}\"/g" 
cmd/build-constants.go
+  sed -i "s/ReleaseTag.*/ReleaseTag = \"RELEASE.${_pkgver}\"/g" 
cmd/build-constants.go
+  sed -i "s/CommitID.*/CommitID = \"$(git rev-parse HEAD)\"/g" 
cmd/build-constants.go
+
+  GO111MODULE=on go build
+}
+
+package() {
+  install -Dm755 go/src/github.com/minio/mc/mc "$pkgdir/usr/bin/mcli"
+}
+# vim:set ts=2 sw=2 et:

Copied: minio-client/repos/community-x86_64/minio-client.install (from rev 
482050, minio-client/trunk/minio-client.install)
===
--- community-x86_64/minio-client.install   (rev 0)
+++ community-x86_64/minio-client.install   2019-06-17 23:46:57 UTC (rev 
482051)
@@ -0,0 +1,3 @@
+pre_install() {
+echo "NOTE: The binary is named mcli, suggested by 
https://github.com/minio/mc/blob/RELEASE.2018-01-18T21-18-56Z/CONFLICT.md;
+}


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

2019-06-17 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, June 17, 2019 @ 23:46:51
  Author: svenstaro
Revision: 482050

upgpkg: minio-client 2019.06.12-1

Modified:
  minio-client/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-17 23:29:04 UTC (rev 482049)
+++ PKGBUILD2019-06-17 23:46:51 UTC (rev 482050)
@@ -23,12 +23,12 @@
   cd "$GOPATH/src/github.com/minio/mc"
   sed -i "s/Version.*/Version = \"${pkgver//./-}${_timever}\"/g" 
cmd/build-constants.go
   sed -i "s/ReleaseTag.*/ReleaseTag = \"RELEASE.${_pkgver}\"/g" 
cmd/build-constants.go
-  sed -i "s/CommitID.*/CommitID = \"$(git rev-parse HEAD | cut -c1-12)\"/g" 
cmd/build-constants.g
+  sed -i "s/CommitID.*/CommitID = \"$(git rev-parse HEAD)\"/g" 
cmd/build-constants.go
 
   GO111MODULE=on go build
 }
 
 package() {
-  install -Dm755 go/github.com/minio/mc "$pkgdir/usr/bin/mcli"
+  install -Dm755 go/src/github.com/minio/mc/mc "$pkgdir/usr/bin/mcli"
 }
 # vim:set ts=2 sw=2 et:


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

2019-06-17 Thread Levente Polyak via arch-commits
Date: Monday, June 17, 2019 @ 23:32:09
  Author: anthraxx
Revision: 356331

upgpkg: linux-hardened 5.1.11.a-3

Modified:
  linux-hardened/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-17 21:59:34 UTC (rev 356330)
+++ PKGBUILD2019-06-17 23:32:09 UTC (rev 356331)
@@ -8,7 +8,7 @@
 _hardenedver=a
 _srcname=linux-${_pkgver}
 pkgver=${_pkgver}.${_hardenedver}
-pkgrel=2
+pkgrel=3
 url='https://github.com/anthraxx/linux-hardened'
 arch=('x86_64')
 license=('GPL2')


[arch-commits] Commit in linux-hardened/repos/testing-x86_64 (12 files)

2019-06-17 Thread Levente Polyak via arch-commits
Date: Monday, June 17, 2019 @ 23:32:16
  Author: anthraxx
Revision: 356332

archrelease: copy trunk to testing-x86_64

Added:
  linux-hardened/repos/testing-x86_64/60-linux.hook
(from rev 356331, linux-hardened/trunk/60-linux.hook)
  linux-hardened/repos/testing-x86_64/90-linux.hook
(from rev 356331, linux-hardened/trunk/90-linux.hook)
  linux-hardened/repos/testing-x86_64/PKGBUILD
(from rev 356331, linux-hardened/trunk/PKGBUILD)
  linux-hardened/repos/testing-x86_64/config.x86_64
(from rev 356331, linux-hardened/trunk/config.x86_64)
  linux-hardened/repos/testing-x86_64/linux.install
(from rev 356331, linux-hardened/trunk/linux.install)
  linux-hardened/repos/testing-x86_64/linux.preset
(from rev 356331, linux-hardened/trunk/linux.preset)
Deleted:
  linux-hardened/repos/testing-x86_64/60-linux.hook
  linux-hardened/repos/testing-x86_64/90-linux.hook
  linux-hardened/repos/testing-x86_64/PKGBUILD
  linux-hardened/repos/testing-x86_64/config.x86_64
  linux-hardened/repos/testing-x86_64/linux.install
  linux-hardened/repos/testing-x86_64/linux.preset

---+
 60-linux.hook |   24 
 90-linux.hook |   22 
 PKGBUILD  |  480 -
 config.x86_64 |19950 
 linux.install |   26 
 linux.preset  |   28 
 6 files changed, 10265 insertions(+), 10265 deletions(-)

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


[arch-commits] Commit in (5 files)

2019-06-17 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, June 17, 2019 @ 23:29:04
  Author: svenstaro
Revision: 482049

Move minio-client from AUR

Added:
  minio-client/
  minio-client/repos/
  minio-client/trunk/
  minio-client/trunk/PKGBUILD
  minio-client/trunk/minio-client.install

--+
 PKGBUILD |   34 ++
 minio-client.install |3 +++
 2 files changed, 37 insertions(+)

Added: minio-client/trunk/PKGBUILD
===
--- minio-client/trunk/PKGBUILD (rev 0)
+++ minio-client/trunk/PKGBUILD 2019-06-17 23:29:04 UTC (rev 482049)
@@ -0,0 +1,34 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Dhananjay Balan 
+
+pkgname=minio-client
+pkgver=2019.06.12
+_timever=T20:35:20Z
+_pkgver="${pkgver//./-}${_timever//:/-}"
+pkgrel=1
+pkgdesc='Replacement for ls, cp, mkdir, diff and rsync commands for 
filesystems and object storage'
+arch=('x86_64')
+url='https://minio.io/downloads/#minio-client'
+license=('Apache')
+makedepends=('go-pie' 'git')
+depends=('glibc')
+install=minio-client.install
+source=(git+https://github.com/minio/mc.git#tag=RELEASE.${_pkgver})
+sha512sums=('SKIP')
+
+build() {
+  export GOPATH="$srcdir/go"
+  mkdir -p "$GOPATH/src/github.com/minio"
+  mv "$srcdir/mc" "$GOPATH/src/github.com/minio/mc/"
+  cd "$GOPATH/src/github.com/minio/mc"
+  sed -i "s/Version.*/Version = \"${pkgver//./-}${_timever}\"/g" 
cmd/build-constants.go
+  sed -i "s/ReleaseTag.*/ReleaseTag = \"RELEASE.${_pkgver}\"/g" 
cmd/build-constants.go
+  sed -i "s/CommitID.*/CommitID = \"$(git rev-parse HEAD | cut -c1-12)\"/g" 
cmd/build-constants.g
+
+  GO111MODULE=on go build
+}
+
+package() {
+  install -Dm755 go/github.com/minio/mc "$pkgdir/usr/bin/mcli"
+}
+# vim:set ts=2 sw=2 et:

Added: minio-client/trunk/minio-client.install
===
--- minio-client/trunk/minio-client.install (rev 0)
+++ minio-client/trunk/minio-client.install 2019-06-17 23:29:04 UTC (rev 
482049)
@@ -0,0 +1,3 @@
+pre_install() {
+echo "NOTE: The binary is named mcli, suggested by 
https://github.com/minio/mc/blob/RELEASE.2018-01-18T21-18-56Z/CONFLICT.md;
+}


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

2019-06-17 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, June 17, 2019 @ 23:02:59
  Author: svenstaro
Revision: 482047

upgpkg: tensorboard 1.14.0-1

Modified:
  tensorboard/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-17 22:55:10 UTC (rev 482046)
+++ PKGBUILD2019-06-17 23:02:59 UTC (rev 482047)
@@ -1,7 +1,7 @@
 # Maintainer: Sven-Hendrik Haase 
 
 pkgname=tensorboard
-pkgver=1.13.1
+pkgver=1.14.0
 pkgrel=1
 pkgdesc="TensorFlow's Visualization Toolkit"
 url='https://github.com/tensorflow/tensorboard'
@@ -11,7 +11,7 @@
  'python-html5lib' 'python-protobuf' 'python-setuptools' 
'python-tensorflow' 'python-grpcio')
 makedepends=('bazel' 'tree')
 source=("https://github.com/tensorflow/tensorboard/archive/${pkgver}.tar.gz;)
-sha512sums=('13995728f9007b305d989180aba4da50ff70a1382e8f6121427db7cbdbb6139a971a1f4d96bc0bc9ce6795d432a528b1b08158a1b1ec2822939bb5d4f08e8e74')
+sha512sums=('fa42928371a37468d005c3736d21e6a9453dc509c58da405168d1b72e10cc93e857aaf852539721d51c8ab83cf9991250ea165a8798c8acc5c66d022ef8e2c16')
 
 build() {
   cd "$pkgname-$pkgver"


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

2019-06-17 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, June 17, 2019 @ 23:03:04
  Author: svenstaro
Revision: 482048

archrelease: copy trunk to community-x86_64

Added:
  tensorboard/repos/community-x86_64/PKGBUILD
(from rev 482047, tensorboard/trunk/PKGBUILD)
Deleted:
  tensorboard/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  106 ++---
 1 file changed, 53 insertions(+), 53 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-17 23:02:59 UTC (rev 482047)
+++ PKGBUILD2019-06-17 23:03:04 UTC (rev 482048)
@@ -1,53 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-
-pkgname=tensorboard
-pkgver=1.13.1
-pkgrel=1
-pkgdesc="TensorFlow's Visualization Toolkit"
-url='https://github.com/tensorflow/tensorboard'
-arch=('x86_64')
-license=('APACHE')
-depends=('python' 'python-werkzeug' 'python-numpy' 'python-bleach' 
'python-wheel' 'python-markdown' 'python-tensorflow-serving-api'
- 'python-html5lib' 'python-protobuf' 'python-setuptools' 
'python-tensorflow' 'python-grpcio')
-makedepends=('bazel' 'tree')
-source=("https://github.com/tensorflow/tensorboard/archive/${pkgver}.tar.gz;)
-sha512sums=('13995728f9007b305d989180aba4da50ff70a1382e8f6121427db7cbdbb6139a971a1f4d96bc0bc9ce6795d432a528b1b08158a1b1ec2822939bb5d4f08e8e74')
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  bazel build tensorboard:tensorboard
-  bazel build //tensorboard/pip_package:build_pip_package
-
-  mkdir pypackage
-  cp -R 
bazel-bin/tensorboard/pip_package/build_pip_package.runfiles/org_tensorflow_tensorboard/external
 pypackage
-  cp -R 
bazel-bin/tensorboard/pip_package/build_pip_package.runfiles/org_tensorflow_tensorboard/tensorboard
 pypackage
-  cp tensorboard/pip_package/{README.rst,MANIFEST.in} pypackage
-  cp README.md pypackage
-  cp tensorboard/pip_package/setup.py pypackage
-  cd pypackage
-  python setup.py build
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-  cd pypackage
-  python setup.py install --root="$pkgdir" --optimize=1
-
-  rm -r "$pkgdir"/usr/lib/python3.7/site-packages/external/
-
-  
_requires="$pkgdir"/usr/lib/python3.7/site-packages/tensorboard-${pkgver}-py3.7.egg-info/requires.txt
-  # This is ugly: We need to patch it to use current bleach and html5lib
-  # because old ones are not even compatible with Python 3.6 and we don't have
-  # those in Arch of course.
-  sed -i 's/bleach==.*/bleach/' ${_requires}
-  sed -i 's/html5lib==.*/html5lib/' ${_requires}
-  # Other ugly hack: workaround for issues 650
-  # https://github.com/tensorflow/tensorboard/issues/650
-  sed -i '/^futures/d' ${_requires}
-}
-
-# vim:set ts=2 sw=2 et:

Copied: tensorboard/repos/community-x86_64/PKGBUILD (from rev 482047, 
tensorboard/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-17 23:03:04 UTC (rev 482048)
@@ -0,0 +1,53 @@
+# Maintainer: Sven-Hendrik Haase 
+
+pkgname=tensorboard
+pkgver=1.14.0
+pkgrel=1
+pkgdesc="TensorFlow's Visualization Toolkit"
+url='https://github.com/tensorflow/tensorboard'
+arch=('x86_64')
+license=('APACHE')
+depends=('python' 'python-werkzeug' 'python-numpy' 'python-bleach' 
'python-wheel' 'python-markdown' 'python-tensorflow-serving-api'
+ 'python-html5lib' 'python-protobuf' 'python-setuptools' 
'python-tensorflow' 'python-grpcio')
+makedepends=('bazel' 'tree')
+source=("https://github.com/tensorflow/tensorboard/archive/${pkgver}.tar.gz;)
+sha512sums=('fa42928371a37468d005c3736d21e6a9453dc509c58da405168d1b72e10cc93e857aaf852539721d51c8ab83cf9991250ea165a8798c8acc5c66d022ef8e2c16')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  bazel build tensorboard:tensorboard
+  bazel build //tensorboard/pip_package:build_pip_package
+
+  mkdir pypackage
+  cp -R 
bazel-bin/tensorboard/pip_package/build_pip_package.runfiles/org_tensorflow_tensorboard/external
 pypackage
+  cp -R 
bazel-bin/tensorboard/pip_package/build_pip_package.runfiles/org_tensorflow_tensorboard/tensorboard
 pypackage
+  cp tensorboard/pip_package/{README.rst,MANIFEST.in} pypackage
+  cp README.md pypackage
+  cp tensorboard/pip_package/setup.py pypackage
+  cd pypackage
+  python setup.py build
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  cd pypackage
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  rm -r "$pkgdir"/usr/lib/python3.7/site-packages/external/
+
+  
_requires="$pkgdir"/usr/lib/python3.7/site-packages/tensorboard-${pkgver}-py3.7.egg-info/requires.txt
+  # This is ugly: We need to patch it to use current bleach and html5lib
+  # because old ones are not even compatible with Python 3.6 and we don't have
+  # those in Arch of course.
+  sed -i 's/bleach==.*/bleach/' ${_requires}
+  sed -i 's/html5lib==.*/html5lib/' ${_requires}
+  # Other ugly hack: workaround for issues 

[arch-commits] Commit in python-tensorflow-estimator/repos/community-any (2 files)

2019-06-17 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, June 17, 2019 @ 22:55:10
  Author: svenstaro
Revision: 482046

archrelease: copy trunk to community-any

Added:
  python-tensorflow-estimator/repos/community-any/PKGBUILD
(from rev 482045, python-tensorflow-estimator/trunk/PKGBUILD)
Deleted:
  python-tensorflow-estimator/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-17 22:55:05 UTC (rev 482045)
+++ PKGBUILD2019-06-17 22:55:10 UTC (rev 482046)
@@ -1,35 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Maintainer: Konstantin Gizdov (kgizdov) 
-
-pkgname=python-tensorflow-estimator
-pkgver=1.13.0
-pkgrel=2
-pkgdesc="A high-level TensorFlow API that greatly simplifies machine learning 
programming"
-url="https://github.com/tensorflow/estimator;
-license=('APACHE')
-arch=('any')
-makedepends=('bazel' 'python-wheel' 'python-setuptools' 'python-pip' 
'python-tensorflow')
-source=("https://github.com/tensorflow/estimator/archive/v${pkgver}.tar.gz;)
-sha512sums=('e4be92b805776d2be5f391f737f1043b994f42721173c4d4a7dbf3fac9b00121cb072091a474bf71c7dcd952fc8b330cf9254c7a5ad9d096ba1cdc12ba12078b')
-
-build() {
-  cd estimator-${pkgver}
-
-  bazel build //tensorflow_estimator/tools/pip_package:build_pip_package
-  bazel-bin/tensorflow_estimator/tools/pip_package/build_pip_package 
${srcdir}/estimator_pip
-}
-
-check() {
-  cd estimator-${pkgver}
-
-  # Of course, upstream doesn't care about working tests...
-  # Revisit this at some point.
-  # bazel test //tensorflow_estimator/...
-}
-
-package() {
-  cd estimator-${pkgver}
-
-  WHEEL_PACKAGE=$(find ${srcdir}/estimator_pip -name "tensor*.whl")
-  pip install --ignore-installed --upgrade --root "$pkgdir"/ $WHEEL_PACKAGE 
--no-dependencies
-}

Copied: python-tensorflow-estimator/repos/community-any/PKGBUILD (from rev 
482045, python-tensorflow-estimator/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-17 22:55:10 UTC (rev 482046)
@@ -0,0 +1,37 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Konstantin Gizdov (kgizdov) 
+
+pkgname=python-tensorflow-estimator
+pkgver=1.14.0rc1
+_pkgver=1.14.0-rc1
+pkgrel=1
+pkgdesc="A high-level TensorFlow API that greatly simplifies machine learning 
programming"
+url="https://github.com/tensorflow/estimator;
+license=('APACHE')
+arch=('any')
+depends=('python-wrapt')
+makedepends=('bazel' 'python-wheel' 'python-setuptools' 'python-pip' 
'python-tensorflow')
+source=("https://github.com/tensorflow/estimator/archive/v${_pkgver}.tar.gz;)
+sha512sums=('59d9505b01c8bb1f88ab310f341c8a96c3699676e0440b04ade76d66a3940c94b50a2f8ba1704873aae9c6dde0be3d734f0c8f3cf99901b17baa82704d784085')
+
+build() {
+  cd estimator-${_pkgver}
+
+  bazel build //tensorflow_estimator/tools/pip_package:build_pip_package
+  bazel-bin/tensorflow_estimator/tools/pip_package/build_pip_package 
${srcdir}/estimator_pip
+}
+
+check() {
+  cd estimator-${_pkgver}
+
+  # Of course, upstream doesn't care about working tests...
+  # Revisit this at some point.
+  # bazel test //tensorflow_estimator/...
+}
+
+package() {
+  cd estimator-${_pkgver}
+
+  WHEEL_PACKAGE=$(find ${srcdir}/estimator_pip -name "tensor*.whl")
+  pip install --ignore-installed --upgrade --root "$pkgdir"/ $WHEEL_PACKAGE 
--no-dependencies
+}


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

2019-06-17 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, June 17, 2019 @ 22:55:05
  Author: svenstaro
Revision: 482045

upgpkg: python-tensorflow-estimator 1.14.0rc1-1

Modified:
  python-tensorflow-estimator/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-17 22:50:58 UTC (rev 482044)
+++ PKGBUILD2019-06-17 22:55:05 UTC (rev 482045)
@@ -2,18 +2,20 @@
 # Maintainer: Konstantin Gizdov (kgizdov) 
 
 pkgname=python-tensorflow-estimator
-pkgver=1.13.0
-pkgrel=2
+pkgver=1.14.0rc1
+_pkgver=1.14.0-rc1
+pkgrel=1
 pkgdesc="A high-level TensorFlow API that greatly simplifies machine learning 
programming"
 url="https://github.com/tensorflow/estimator;
 license=('APACHE')
 arch=('any')
+depends=('python-wrapt')
 makedepends=('bazel' 'python-wheel' 'python-setuptools' 'python-pip' 
'python-tensorflow')
-source=("https://github.com/tensorflow/estimator/archive/v${pkgver}.tar.gz;)
-sha512sums=('e4be92b805776d2be5f391f737f1043b994f42721173c4d4a7dbf3fac9b00121cb072091a474bf71c7dcd952fc8b330cf9254c7a5ad9d096ba1cdc12ba12078b')
+source=("https://github.com/tensorflow/estimator/archive/v${_pkgver}.tar.gz;)
+sha512sums=('59d9505b01c8bb1f88ab310f341c8a96c3699676e0440b04ade76d66a3940c94b50a2f8ba1704873aae9c6dde0be3d734f0c8f3cf99901b17baa82704d784085')
 
 build() {
-  cd estimator-${pkgver}
+  cd estimator-${_pkgver}
 
   bazel build //tensorflow_estimator/tools/pip_package:build_pip_package
   bazel-bin/tensorflow_estimator/tools/pip_package/build_pip_package 
${srcdir}/estimator_pip
@@ -20,7 +22,7 @@
 }
 
 check() {
-  cd estimator-${pkgver}
+  cd estimator-${_pkgver}
 
   # Of course, upstream doesn't care about working tests...
   # Revisit this at some point.
@@ -28,7 +30,7 @@
 }
 
 package() {
-  cd estimator-${pkgver}
+  cd estimator-${_pkgver}
 
   WHEEL_PACKAGE=$(find ${srcdir}/estimator_pip -name "tensor*.whl")
   pip install --ignore-installed --upgrade --root "$pkgdir"/ $WHEEL_PACKAGE 
--no-dependencies


[arch-commits] Commit in python-tensorflow-serving-api/trunk (PKGBUILD)

2019-06-17 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, June 17, 2019 @ 22:50:52
  Author: svenstaro
Revision: 482043

upgpkg: python-tensorflow-serving-api 1.14.0rc0-1

Modified:
  python-tensorflow-serving-api/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-17 22:42:27 UTC (rev 482042)
+++ PKGBUILD2019-06-17 22:50:52 UTC (rev 482043)
@@ -2,7 +2,8 @@
 # Contributor: getzze 
 pkgname=python-tensorflow-serving-api
 _name=tensorflow_serving_api
-pkgver=1.13.0
+pkgver=1.14.0rc0
+_pkgver=1.14.0-rc0
 pkgrel=1
 pkgdesc="Flexible, high-performance serving system for machine learning 
models, designed for production environments"
 arch=(any)
@@ -10,8 +11,8 @@
 license=('Apache')
 depends=('python' 'python-grpcio' 'python-tensorflow' 'python-protobuf')
 makedepends=('bazel' 'python-wheel' 'python-pip')
-source=("https://github.com/tensorflow/serving/archive/${pkgver}.tar.gz;)
-sha256sums=('203da51d5de211d4fb2106c89dd4f52e119fd9ca7945b9c57675b1299bbbd381')
+source=("https://github.com/tensorflow/serving/archive/${_pkgver}.tar.gz;)
+sha256sums=('af50117af512e4b9866f29741894f221fa18349bb156dbf26ac6549b75b6ad26')
 
 build() {
   cd serving-*


[arch-commits] Commit in python-tensorflow-serving-api/repos/community-any (2 files)

2019-06-17 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, June 17, 2019 @ 22:50:58
  Author: svenstaro
Revision: 482044

archrelease: copy trunk to community-any

Added:
  python-tensorflow-serving-api/repos/community-any/PKGBUILD
(from rev 482043, python-tensorflow-serving-api/trunk/PKGBUILD)
Deleted:
  python-tensorflow-serving-api/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-17 22:50:52 UTC (rev 482043)
+++ PKGBUILD2019-06-17 22:50:58 UTC (rev 482044)
@@ -1,26 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: getzze 
-pkgname=python-tensorflow-serving-api
-_name=tensorflow_serving_api
-pkgver=1.13.0
-pkgrel=1
-pkgdesc="Flexible, high-performance serving system for machine learning 
models, designed for production environments"
-arch=(any)
-url="https://www.tensorflow.org/serving/;
-license=('Apache')
-depends=('python' 'python-grpcio' 'python-tensorflow' 'python-protobuf')
-makedepends=('bazel' 'python-wheel' 'python-pip')
-source=("https://github.com/tensorflow/serving/archive/${pkgver}.tar.gz;)
-sha256sums=('203da51d5de211d4fb2106c89dd4f52e119fd9ca7945b9c57675b1299bbbd381')
-
-build() {
-  cd serving-*
-  bazel build -c opt tensorflow_serving/tools/pip_package:build_pip_package
-  bazel-bin/tensorflow_serving/tools/pip_package/build_pip_package /tmp/pip
-}
-
-package() {
-  cd serving-*
-  pip install --ignore-installed --upgrade --root "${pkgdir}"/ 
/tmp/pip/tensorflow_serving*.whl --no-dependencies
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: python-tensorflow-serving-api/repos/community-any/PKGBUILD (from rev 
482043, python-tensorflow-serving-api/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-17 22:50:58 UTC (rev 482044)
@@ -0,0 +1,27 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: getzze 
+pkgname=python-tensorflow-serving-api
+_name=tensorflow_serving_api
+pkgver=1.14.0rc0
+_pkgver=1.14.0-rc0
+pkgrel=1
+pkgdesc="Flexible, high-performance serving system for machine learning 
models, designed for production environments"
+arch=(any)
+url="https://www.tensorflow.org/serving/;
+license=('Apache')
+depends=('python' 'python-grpcio' 'python-tensorflow' 'python-protobuf')
+makedepends=('bazel' 'python-wheel' 'python-pip')
+source=("https://github.com/tensorflow/serving/archive/${_pkgver}.tar.gz;)
+sha256sums=('af50117af512e4b9866f29741894f221fa18349bb156dbf26ac6549b75b6ad26')
+
+build() {
+  cd serving-*
+  bazel build -c opt tensorflow_serving/tools/pip_package:build_pip_package
+  bazel-bin/tensorflow_serving/tools/pip_package/build_pip_package /tmp/pip
+}
+
+package() {
+  cd serving-*
+  pip install --ignore-installed --upgrade --root "${pkgdir}"/ 
/tmp/pip/tensorflow_serving*.whl --no-dependencies
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}


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

2019-06-17 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, June 17, 2019 @ 22:42:21
  Author: svenstaro
Revision: 482041

upgpkg: ripgrep 11.0.1-2

Install fish completions to proper path and compile with --locked

Modified:
  ripgrep/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-17 22:25:26 UTC (rev 482040)
+++ PKGBUILD2019-06-17 22:42:21 UTC (rev 482041)
@@ -1,8 +1,8 @@
-# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Sven-Hendrik Haase 
 # Contributor: Andrew Gallant 
 pkgname=ripgrep
 pkgver=11.0.1
-pkgrel=1
+pkgrel=2
 pkgdesc="A search tool that combines the usability of ag with the raw speed of 
grep"
 arch=('x86_64')
 url="https://github.com/BurntSushi/ripgrep;
@@ -15,7 +15,7 @@
 build() {
   cd "$pkgname-$pkgver"
 
-  cargo build --release --features 'pcre2'
+  cargo build --release --locked --features 'pcre2'
 }
 
 package() {
@@ -25,7 +25,7 @@
 
   install -Dm644 "complete/_rg" "$pkgdir/usr/share/zsh/site-functions/_rg"
   install -Dm644 "target/release/build/ripgrep-"*/out/rg.bash 
"$pkgdir/usr/share/bash-completion/completions/rg"
-  install -Dm644 "target/release/build/ripgrep-"*/out/rg.fish 
"$pkgdir/usr/share/fish/completions/rg.fish"
+  install -Dm644 "target/release/build/ripgrep-"*/out/rg.fish 
"$pkgdir/usr/share/fish/vendor_completions.d/rg.fish"
 
   install -Dm644 "target/release/build/ripgrep-"*/out/rg.1 
"$pkgdir/usr/share/man/man1/rg.1"
   install -Dm644 "README.md" "$pkgdir/usr/share/doc/${pkgname}/README.md"


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

2019-06-17 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, June 17, 2019 @ 22:42:27
  Author: svenstaro
Revision: 482042

archrelease: copy trunk to community-x86_64

Added:
  ripgrep/repos/community-x86_64/PKGBUILD
(from rev 482041, ripgrep/trunk/PKGBUILD)
Deleted:
  ripgrep/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-17 22:42:21 UTC (rev 482041)
+++ PKGBUILD2019-06-17 22:42:27 UTC (rev 482042)
@@ -1,36 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Andrew Gallant 
-pkgname=ripgrep
-pkgver=11.0.1
-pkgrel=1
-pkgdesc="A search tool that combines the usability of ag with the raw speed of 
grep"
-arch=('x86_64')
-url="https://github.com/BurntSushi/ripgrep;
-license=('MIT' 'custom')
-depends=('gcc-libs' 'pcre2')
-makedepends=('cargo' 'asciidoc')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/BurntSushi/$pkgname/archive/$pkgver.tar.gz;)
-sha512sums=('73d3bf0c18d5a1289f31e3b330a9980d05f7e692a354d8ae1657d1636cfa49c4b76370f15f6df6e5f38e83ee9b3d49507f9da5439af545652fe276096a92a83f')
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  cargo build --release --features 'pcre2'
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  install -Dm755 "target/release/rg" "$pkgdir/usr/bin/rg"
-
-  install -Dm644 "complete/_rg" "$pkgdir/usr/share/zsh/site-functions/_rg"
-  install -Dm644 "target/release/build/ripgrep-"*/out/rg.bash 
"$pkgdir/usr/share/bash-completion/completions/rg"
-  install -Dm644 "target/release/build/ripgrep-"*/out/rg.fish 
"$pkgdir/usr/share/fish/completions/rg.fish"
-
-  install -Dm644 "target/release/build/ripgrep-"*/out/rg.1 
"$pkgdir/usr/share/man/man1/rg.1"
-  install -Dm644 "README.md" "$pkgdir/usr/share/doc/${pkgname}/README.md"
-
-  install -Dm644 "COPYING" "$pkgdir/usr/share/licenses/${pkgname}/COPYING"
-  install -Dm644 "LICENSE-MIT" 
"$pkgdir/usr/share/licenses/${pkgname}/LICENSE-MIT"
-  install -Dm644 "UNLICENSE" "$pkgdir/usr/share/licenses/${pkgname}/UNLICENSE"
-}

Copied: ripgrep/repos/community-x86_64/PKGBUILD (from rev 482041, 
ripgrep/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-17 22:42:27 UTC (rev 482042)
@@ -0,0 +1,36 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Andrew Gallant 
+pkgname=ripgrep
+pkgver=11.0.1
+pkgrel=2
+pkgdesc="A search tool that combines the usability of ag with the raw speed of 
grep"
+arch=('x86_64')
+url="https://github.com/BurntSushi/ripgrep;
+license=('MIT' 'custom')
+depends=('gcc-libs' 'pcre2')
+makedepends=('cargo' 'asciidoc')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/BurntSushi/$pkgname/archive/$pkgver.tar.gz;)
+sha512sums=('73d3bf0c18d5a1289f31e3b330a9980d05f7e692a354d8ae1657d1636cfa49c4b76370f15f6df6e5f38e83ee9b3d49507f9da5439af545652fe276096a92a83f')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  cargo build --release --locked --features 'pcre2'
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  install -Dm755 "target/release/rg" "$pkgdir/usr/bin/rg"
+
+  install -Dm644 "complete/_rg" "$pkgdir/usr/share/zsh/site-functions/_rg"
+  install -Dm644 "target/release/build/ripgrep-"*/out/rg.bash 
"$pkgdir/usr/share/bash-completion/completions/rg"
+  install -Dm644 "target/release/build/ripgrep-"*/out/rg.fish 
"$pkgdir/usr/share/fish/vendor_completions.d/rg.fish"
+
+  install -Dm644 "target/release/build/ripgrep-"*/out/rg.1 
"$pkgdir/usr/share/man/man1/rg.1"
+  install -Dm644 "README.md" "$pkgdir/usr/share/doc/${pkgname}/README.md"
+
+  install -Dm644 "COPYING" "$pkgdir/usr/share/licenses/${pkgname}/COPYING"
+  install -Dm644 "LICENSE-MIT" 
"$pkgdir/usr/share/licenses/${pkgname}/LICENSE-MIT"
+  install -Dm644 "UNLICENSE" "$pkgdir/usr/share/licenses/${pkgname}/UNLICENSE"
+}


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

2019-06-17 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, June 17, 2019 @ 22:25:26
  Author: svenstaro
Revision: 482040

archrelease: copy trunk to community-x86_64

Added:
  emscripten/repos/community-x86_64/PKGBUILD
(from rev 482039, emscripten/trunk/PKGBUILD)
  emscripten/repos/community-x86_64/emscripten.install
(from rev 482039, emscripten/trunk/emscripten.install)
  emscripten/repos/community-x86_64/emscripten.sh
(from rev 482039, emscripten/trunk/emscripten.sh)
Deleted:
  emscripten/repos/community-x86_64/PKGBUILD
  emscripten/repos/community-x86_64/emscripten.install
  emscripten/repos/community-x86_64/emscripten.sh

+
 PKGBUILD   |  178 +--
 emscripten.install |   22 +++---
 emscripten.sh  |   14 ++--
 3 files changed, 107 insertions(+), 107 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-17 22:25:15 UTC (rev 482039)
+++ PKGBUILD2019-06-17 22:25:26 UTC (rev 482040)
@@ -1,89 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: carstene1ns  - http://git.io/ctPKG
-# Contributor: Stefan Husmann 
-# Contributor: Vlad Kolotvin 
-
-pkgname=emscripten
-pkgver=1.38.32
-pkgrel=1
-pkgdesc="LLVM-based project that compiles C and C++ into highly-optimizable 
JavaScript for the web"
-arch=('x86_64')
-url="http://emscripten.org;
-license=('custom')
-depends=('nodejs' 'python')
-makedepends=('cmake' 'libxml2')
-optdepends=('java-environment: for using clojure'
-'ruby: for using websockify addon'
-'cmake: for emcc --show-ports')
-install=$pkgname.install
-source=(emscripten-$pkgver.tar.gz::"https://github.com/kripken/emscripten/archive/$pkgver.tar.gz;
-
emscripten-fastcomp-$pkgver.tar.gz::"https://github.com/kripken/emscripten-fastcomp/archive/$pkgver.tar.gz;
-
emscripten-fastcomp-clang-$pkgver.tar.gz::"https://github.com/kripken/emscripten-fastcomp-clang/archive/$pkgver.tar.gz;
-"emscripten.sh")
-sha512sums=('e1363dd30412a1b6863ecc8a4cc3003162dbf9c0570aac2895441132f826d7c7cc301d5f09bf768eb0958a190bf127b0e7a722e6c1cbdea265342bd90641cda9'
-
'f565fb2247a0df5c07ba28e620e99b0251b7ce1adeee25082df216a3b2a885fb285a43547da986a081ffef61a776054f07086d1eb08edb2e79fe1a334a104476'
-
'de51d87b35112d755121bb671d47025066eb9bea4ecd036bb51eaf6975fd5254112b7602effbbabc8112c7ff9fdea867397d6ac4a5c6cf952cc2cdbf88e5bf27'
-
'52007717c21c22f5d9f027268de2516e969f2ffb8e37121f75ca2697b7ddcde6c0be9636d19df7b3c2e89bc769f5361750c62f9fcb84d224cde3c8626bc9c93b')
-
-prepare() {
-  cd emscripten-fastcomp-$pkgver
-
-  mkdir build
-
-  # put clang source into the right place (http://git.io/i1GBkg)
-  rm -rf tools/clang
-  ln -s "$srcdir"/emscripten-fastcomp-clang-$pkgver tools/clang
-
-  cd ../emscripten-$pkgver
-
-  # adapt config file template to use our custom environment variable and path
-  sed -e "s|getenv('LLVM')|getenv('EMSCRIPTEN_FASTCOMP')|" \
--e 's|{{{ LLVM_ROOT }}}|/usr/lib/emscripten-fastcomp|' \
--i tools/settings_template_readonly.py
-}
-
-build() {
-  cd emscripten-fastcomp-$pkgver/build
-
-  cmake .. \
--DPYTHON_EXECUTABLE=/usr/bin/python \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_SKIP_RPATH=YES \
--DLLVM_TARGETS_TO_BUILD="X86;JSBackend" \
--DLLVM_BUILD_RUNTIME=OFF \
--DLLVM_INCLUDE_EXAMPLES=OFF \
--DLLVM_INCLUDE_TESTS=OFF \
--DCLANG_INCLUDE_TESTS=OFF
-  make
-}
-
-package() {
-  # exported variables
-  install -Dm755 "$srcdir"/emscripten.sh "$pkgdir"/etc/profile.d/emscripten.sh
-
-  # LLVM-backend, TODO: include only needed tools
-  cd "$srcdir"/emscripten-fastcomp-$pkgver
-  install -Dm644 emscripten-version.txt 
"$pkgdir"/usr/lib/emscripten-fastcomp/emscripten-version.txt
-  install -m755 build/bin/* "$pkgdir"/usr/lib/emscripten-fastcomp
-
-  # copy structure
-  cd "$srcdir"/emscripten-$pkgver
-  install -d "$pkgdir"/usr/lib/emscripten
-  cp -rup em* cmake site src system third_party tools 
"$pkgdir"/usr/lib/emscripten
-
-  # remove clutter
-  rm "$pkgdir"/usr/lib/emscripten-fastcomp/{*-test,llvm-lit}
-  rm "$pkgdir"/usr/lib/emscripten/*.bat
-
-  # docs
-  install -d "$pkgdir"/usr/share/doc
-  ln -s /usr/lib/emscripten/site/source/docs "$pkgdir"/usr/share/doc/$pkgname
-
-  # license
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-
-  # Get rid of some duplicated binaries (see FS#61487).
-  for link in ++ -6.0 -cl -cpp; do
-  ln -sf clang "$pkgdir"/usr/lib/emscripten-fastcomp/clang$link
-  done
-}

Copied: emscripten/repos/community-x86_64/PKGBUILD (from rev 482039, 
emscripten/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-17 22:25:26 UTC (rev 482040)
@@ -0,0 +1,89 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: carstene1ns  - http://git.io/ctPKG
+# Contributor: Stefan Husmann 
+# Contributor: Vlad Kolotvin 
+
+pkgname=emscripten

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

2019-06-17 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, June 17, 2019 @ 22:25:15
  Author: svenstaro
Revision: 482039

upgpkg: emscripten 1.38.36-1

Modified:
  emscripten/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-17 22:02:18 UTC (rev 482038)
+++ PKGBUILD2019-06-17 22:25:15 UTC (rev 482039)
@@ -4,7 +4,7 @@
 # Contributor: Vlad Kolotvin 
 
 pkgname=emscripten
-pkgver=1.38.32
+pkgver=1.38.36
 pkgrel=1
 pkgdesc="LLVM-based project that compiles C and C++ into highly-optimizable 
JavaScript for the web"
 arch=('x86_64')
@@ -20,9 +20,9 @@
 
emscripten-fastcomp-$pkgver.tar.gz::"https://github.com/kripken/emscripten-fastcomp/archive/$pkgver.tar.gz;
 
emscripten-fastcomp-clang-$pkgver.tar.gz::"https://github.com/kripken/emscripten-fastcomp-clang/archive/$pkgver.tar.gz;
 "emscripten.sh")
-sha512sums=('e1363dd30412a1b6863ecc8a4cc3003162dbf9c0570aac2895441132f826d7c7cc301d5f09bf768eb0958a190bf127b0e7a722e6c1cbdea265342bd90641cda9'
-
'f565fb2247a0df5c07ba28e620e99b0251b7ce1adeee25082df216a3b2a885fb285a43547da986a081ffef61a776054f07086d1eb08edb2e79fe1a334a104476'
-
'de51d87b35112d755121bb671d47025066eb9bea4ecd036bb51eaf6975fd5254112b7602effbbabc8112c7ff9fdea867397d6ac4a5c6cf952cc2cdbf88e5bf27'
+sha512sums=('70ec76c0e196c2e91182adb144eace500c00ae35f4a78b5818d059eeb05e875d93216e344631a32324e55dda51c290e9772c67bd59a837e08437eda11b25d026'
+
'5606353b02f82cb23628fa408ee21543f1733aeb5964b01bbf2a7fff84a3a13e44ad4bd96a266e7e918e2a32f12221bced4bdf501e2799906c6d5b4a1364465c'
+
'9d0e54bc15e0a60da3182e99728e5dd1723175c82ca03791bee6ac59fd5ae6bf9f3da673fc2b7b4fd91802d366c422ef22fe7fda909df720bf4ac37b2b36ab89'
 
'52007717c21c22f5d9f027268de2516e969f2ffb8e37121f75ca2697b7ddcde6c0be9636d19df7b3c2e89bc769f5361750c62f9fcb84d224cde3c8626bc9c93b')
 
 prepare() {


[arch-commits] Commit in unbound/repos/community-x86_64 (12 files)

2019-06-17 Thread Gaëtan Bisson via arch-commits
Date: Monday, June 17, 2019 @ 22:02:18
  Author: bisson
Revision: 482038

archrelease: copy trunk to community-x86_64

Added:
  unbound/repos/community-x86_64/PKGBUILD
(from rev 482037, unbound/trunk/PKGBUILD)
  unbound/repos/community-x86_64/conf
(from rev 482037, unbound/trunk/conf)
  unbound/repos/community-x86_64/hook
(from rev 482037, unbound/trunk/hook)
  unbound/repos/community-x86_64/service
(from rev 482037, unbound/trunk/service)
  unbound/repos/community-x86_64/sysusers.d
(from rev 482037, unbound/trunk/sysusers.d)
  unbound/repos/community-x86_64/tmpfiles.d
(from rev 482037, unbound/trunk/tmpfiles.d)
Deleted:
  unbound/repos/community-x86_64/PKGBUILD
  unbound/repos/community-x86_64/conf
  unbound/repos/community-x86_64/hook
  unbound/repos/community-x86_64/service
  unbound/repos/community-x86_64/sysusers.d
  unbound/repos/community-x86_64/tmpfiles.d

+
 PKGBUILD   |  132 +--
 conf   |   12 ++---
 hook   |   20 
 service|   26 +--
 sysusers.d |2 
 tmpfiles.d |2 
 6 files changed, 97 insertions(+), 97 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-17 22:02:10 UTC (rev 482037)
+++ PKGBUILD2019-06-17 22:02:18 UTC (rev 482038)
@@ -1,66 +0,0 @@
-# Maintainer: Gaetan Bisson 
-# Contributor: Hisato Tatekura 
-# Contributor: Massimiliano Torromeo 
-
-pkgname=unbound
-pkgver=1.9.1
-pkgrel=1
-pkgdesc='Validating, recursive, and caching DNS resolver'
-url='https://unbound.net/'
-license=('custom:BSD')
-arch=('x86_64')
-makedepends=('expat')
-optdepends=('expat: unbound-anchor')
-depends=('fstrm' 'openssl' 'libsodium' 'protobuf-c' 'libevent' 'ldns' 
'dnssec-anchors')
-backup=('etc/unbound/unbound.conf')
-validpgpkeys=('EDFAA3F2CA4E6EB05681AF8E9F6F1C2D7E045F8D')
-source=("https://unbound.net/downloads/${pkgname}-${pkgver}.tar.gz"{,.asc}
-'sysusers.d'
-'tmpfiles.d'
-'service'
-'hook'
-'conf')
-sha256sums=('c3c0bf9b86ccba4ca64f93dd4fe7351308ab54293f297a67de5a8914c1dc59c5'
-'SKIP'
-'85b8f00881fb93bcce83bdfe3246463a396eb5b352c0d7f5fca32fcb839d22fa'
-'31a573f43287dd7e3678be1680388bfc7d8dee8280eb2443f521a4b349aaa6b6'
-'a8a31511cb3d8c8092f0f9edb8887701eceac0108a177af8486c35a1d3ead601'
-'2746aede36b1f57efdcc370b7643ce31ff9e6acb9a1f62705987b07eaed866a3'
-'ddc0ead682c5035cdd3a29d4ab12936a73573c82c27f14026998a378de56f418')
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   ./configure \
-   --prefix=/usr \
-   --sysconfdir=/etc \
-   --localstatedir=/var \
-   --sbindir=/usr/bin \
-   --disable-rpath \
-   --enable-dnscrypt \
-   --enable-dnstap \
-   --enable-pie \
-   --enable-relro-now \
-   --enable-subnet \
-   --enable-tfo-client \
-   --enable-tfo-server \
-   --with-conf-file=/etc/unbound/unbound.conf \
-   --with-pidfile=/run/unbound.pid \
-   --with-rootkey-file=/etc/trusted-key.key \
-   --with-libevent \
-
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-   install -Dm644 doc/example.conf.in 
"${pkgdir}/etc/unbound/unbound.conf.example"
-   install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-   install -Dm644 ../sysusers.d "${pkgdir}/usr/lib/sysusers.d/unbound.conf"
-   install -Dm644 ../service 
"${pkgdir}/usr/lib/systemd/system/unbound.service"
-   install -Dm644 ../conf "${pkgdir}/etc/unbound/unbound.conf"
-
-   # Trust anchor file available from within unbound's chroot.
-   install -Dm644 ../tmpfiles.d "${pkgdir}/usr/lib/tmpfiles.d/unbound.conf"
-   install -Dm644 ../hook 
"${pkgdir}/usr/share/libalpm/hooks/unbound-key.hook"
-}

Copied: unbound/repos/community-x86_64/PKGBUILD (from rev 482037, 
unbound/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-17 22:02:18 UTC (rev 482038)
@@ -0,0 +1,66 @@
+# Maintainer: Gaetan Bisson 
+# Contributor: Hisato Tatekura 
+# Contributor: Massimiliano Torromeo 
+
+pkgname=unbound
+pkgver=1.9.2
+pkgrel=1
+pkgdesc='Validating, recursive, and caching DNS resolver'
+url='https://unbound.net/'
+license=('custom:BSD')
+arch=('x86_64')
+makedepends=('expat')
+optdepends=('expat: unbound-anchor')
+depends=('fstrm' 'openssl' 'libsodium' 'protobuf-c' 'libevent' 'ldns' 
'dnssec-anchors')
+backup=('etc/unbound/unbound.conf')
+validpgpkeys=('EDFAA3F2CA4E6EB05681AF8E9F6F1C2D7E045F8D')
+source=("https://unbound.net/downloads/${pkgname}-${pkgver}.tar.gz"{,.asc}
+'sysusers.d'
+'tmpfiles.d'
+'service'
+

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

2019-06-17 Thread Gaëtan Bisson via arch-commits
Date: Monday, June 17, 2019 @ 22:02:10
  Author: bisson
Revision: 482037

upstream update

Modified:
  unbound/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-17 20:52:10 UTC (rev 482036)
+++ PKGBUILD2019-06-17 22:02:10 UTC (rev 482037)
@@ -3,7 +3,7 @@
 # Contributor: Massimiliano Torromeo 
 
 pkgname=unbound
-pkgver=1.9.1
+pkgver=1.9.2
 pkgrel=1
 pkgdesc='Validating, recursive, and caching DNS resolver'
 url='https://unbound.net/'
@@ -20,7 +20,7 @@
 'service'
 'hook'
 'conf')
-sha256sums=('c3c0bf9b86ccba4ca64f93dd4fe7351308ab54293f297a67de5a8914c1dc59c5'
+sha256sums=('6f7acec5cf451277fcda31729886ae7dd62537c4f506855603e3aa153fcb6b95'
 'SKIP'
 '85b8f00881fb93bcce83bdfe3246463a396eb5b352c0d7f5fca32fcb839d22fa'
 '31a573f43287dd7e3678be1680388bfc7d8dee8280eb2443f521a4b349aaa6b6'


[arch-commits] Commit in linux-hardened/repos/extra-x86_64 (12 files)

2019-06-17 Thread Levente Polyak via arch-commits
Date: Monday, June 17, 2019 @ 21:59:34
  Author: anthraxx
Revision: 356330

archrelease: copy trunk to extra-x86_64

Added:
  linux-hardened/repos/extra-x86_64/60-linux.hook
(from rev 356329, linux-hardened/trunk/60-linux.hook)
  linux-hardened/repos/extra-x86_64/90-linux.hook
(from rev 356329, linux-hardened/trunk/90-linux.hook)
  linux-hardened/repos/extra-x86_64/PKGBUILD
(from rev 356329, linux-hardened/trunk/PKGBUILD)
  linux-hardened/repos/extra-x86_64/config.x86_64
(from rev 356329, linux-hardened/trunk/config.x86_64)
  linux-hardened/repos/extra-x86_64/linux.install
(from rev 356329, linux-hardened/trunk/linux.install)
  linux-hardened/repos/extra-x86_64/linux.preset
(from rev 356329, linux-hardened/trunk/linux.preset)
Deleted:
  linux-hardened/repos/extra-x86_64/60-linux.hook
  linux-hardened/repos/extra-x86_64/90-linux.hook
  linux-hardened/repos/extra-x86_64/PKGBUILD
  linux-hardened/repos/extra-x86_64/config.x86_64
  linux-hardened/repos/extra-x86_64/linux.install
  linux-hardened/repos/extra-x86_64/linux.preset

---+
 60-linux.hook |   24 
 90-linux.hook |   22 
 PKGBUILD  |  480 -
 config.x86_64 |19950 
 linux.install |   26 
 linux.preset  |   28 
 6 files changed, 10265 insertions(+), 10265 deletions(-)

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


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

2019-06-17 Thread Levente Polyak via arch-commits
Date: Monday, June 17, 2019 @ 21:59:26
  Author: anthraxx
Revision: 356329

upgpkg: linux-hardened 5.1.11.a-2 (gcc rebuild)

Modified:
  linux-hardened/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-17 21:02:51 UTC (rev 356328)
+++ PKGBUILD2019-06-17 21:59:26 UTC (rev 356329)
@@ -8,7 +8,7 @@
 _hardenedver=a
 _srcname=linux-${_pkgver}
 pkgver=${_pkgver}.${_hardenedver}
-pkgrel=1
+pkgrel=2
 url='https://github.com/anthraxx/linux-hardened'
 arch=('x86_64')
 license=('GPL2')


[arch-commits] Commit in linux-hardened/repos/extra-x86_64 (12 files)

2019-06-17 Thread Levente Polyak via arch-commits
Date: Monday, June 17, 2019 @ 21:02:51
  Author: anthraxx
Revision: 356328

archrelease: copy trunk to extra-x86_64

Added:
  linux-hardened/repos/extra-x86_64/60-linux.hook
(from rev 356327, linux-hardened/trunk/60-linux.hook)
  linux-hardened/repos/extra-x86_64/90-linux.hook
(from rev 356327, linux-hardened/trunk/90-linux.hook)
  linux-hardened/repos/extra-x86_64/PKGBUILD
(from rev 356327, linux-hardened/trunk/PKGBUILD)
  linux-hardened/repos/extra-x86_64/config.x86_64
(from rev 356327, linux-hardened/trunk/config.x86_64)
  linux-hardened/repos/extra-x86_64/linux.install
(from rev 356327, linux-hardened/trunk/linux.install)
  linux-hardened/repos/extra-x86_64/linux.preset
(from rev 356327, linux-hardened/trunk/linux.preset)
Deleted:
  linux-hardened/repos/extra-x86_64/60-linux.hook
  linux-hardened/repos/extra-x86_64/90-linux.hook
  linux-hardened/repos/extra-x86_64/PKGBUILD
  linux-hardened/repos/extra-x86_64/config.x86_64
  linux-hardened/repos/extra-x86_64/linux.install
  linux-hardened/repos/extra-x86_64/linux.preset

---+
 60-linux.hook |   24 
 90-linux.hook |   22 
 PKGBUILD  |  480 -
 config.x86_64 |19950 
 linux.install |   26 
 linux.preset  |   28 
 6 files changed, 10265 insertions(+), 10265 deletions(-)

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


[arch-commits] Commit in linux-hardened/trunk (PKGBUILD config.x86_64)

2019-06-17 Thread Levente Polyak via arch-commits
Date: Monday, June 17, 2019 @ 21:02:44
  Author: anthraxx
Revision: 356327

upgpkg: linux-hardened 5.1.11.a-1

Modified:
  linux-hardened/trunk/PKGBUILD
  linux-hardened/trunk/config.x86_64

---+
 PKGBUILD  |   10 +-
 config.x86_64 |2 +-
 2 files changed, 6 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-06-17 20:11:33 UTC (rev 356326)
+++ PKGBUILD2019-06-17 21:02:44 UTC (rev 356327)
@@ -4,11 +4,11 @@
 # Contributor: Thomas Baechler 
 
 pkgbase=linux-hardened
-_pkgver=5.1.10
+_pkgver=5.1.11
 _hardenedver=a
 _srcname=linux-${_pkgver}
 pkgver=${_pkgver}.${_hardenedver}
-pkgrel=2
+pkgrel=1
 url='https://github.com/anthraxx/linux-hardened'
 arch=('x86_64')
 license=('GPL2')
@@ -23,11 +23,11 @@
 linux.preset   # standard config files for mkinitcpio ramdisk
 )
 replaces=('linux-grsec')
-sha256sums=('39063041532579cb7e9fab5837313a8e6639c1c583cd39c72b313b3abfa9fbcf'
+sha256sums=('11fd93207290272389ad284b8b042041d088fbee0ed5798e933bf8e91697d219'
 'SKIP'
-'d8d33bebab3e9a0c30823f1e17427ff1a6a70dea8dce5f5ccc6a4c92b8e936c9'
+'2becca7172da15cd3ebf6295851ba45faa2371f6b6b8fe279ba88c7f0ec1eea1'
 'SKIP'
-'025580d1499596b4448eb33ac95223aac2a352dec16bdfdde9f61646c9d7f05d'
+'60f4dabb92ebfc6130252c406542e4b9e953e4d1764508da64ba131f4d3a579f'
 'ae2e95db94ef7176207c690224169594d49445e04249d2499e9d2fbc117a0b21'
 'c043f3033bb781e2688794a59f6d1f7ed49ef9b13eb77ff9a425df33a244a636'
 'ad6344badc91ad0630caacde83f7f9b97276f80d26a20619a87952be65492c65')

Modified: config.x86_64
===
--- config.x86_64   2019-06-17 20:11:33 UTC (rev 356326)
+++ config.x86_64   2019-06-17 21:02:44 UTC (rev 356327)
@@ -1,6 +1,6 @@
 #
 # Automatically generated file; DO NOT EDIT.
-# Linux/x86 5.1.10 Kernel Configuration
+# Linux/x86 5.1.11 Kernel Configuration
 #
 
 #


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

2019-06-17 Thread Antonio Rojas via arch-commits
Date: Monday, June 17, 2019 @ 20:51:46
  Author: arojas
Revision: 482035

https

Modified:
  python-cinderclient/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-17 20:51:22 UTC (rev 482034)
+++ PKGBUILD2019-06-17 20:51:46 UTC (rev 482035)
@@ -6,7 +6,7 @@
 pkgrel=1
 pkgdesc="OpenStack Block Storage API Client Library"
 arch=('any')
-url="http://docs.openstack.org/developer/python-cinderclient;
+url="https://docs.openstack.org/developer/python-cinderclient;
 license=('Apache')
 depends=('python-six' 'python-pbr' 'python-babel' 'python-prettytable' 
'python-keystoneclient'
  'python-requests' 'python-oslo-utils')


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

2019-06-17 Thread Antonio Rojas via arch-commits
Date: Monday, June 17, 2019 @ 20:52:10
  Author: arojas
Revision: 482036

https

Modified:
  python-cogapp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-17 20:51:46 UTC (rev 482035)
+++ PKGBUILD2019-06-17 20:52:10 UTC (rev 482036)
@@ -4,7 +4,7 @@
 pkgver=3.0.0
 pkgrel=1
 pkgdesc="A code generator for executing Python snippets in source files"
-url="http://nedbatchelder.com/code/cog;
+url="https://nedbatchelder.com/code/cog;
 license=('MIT')
 arch=('any')
 depends=('python')


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

2019-06-17 Thread Antonio Rojas via arch-commits
Date: Monday, June 17, 2019 @ 20:51:22
  Author: arojas
Revision: 482034

https

Modified:
  python-certifi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-17 20:50:10 UTC (rev 482033)
+++ PKGBUILD2019-06-17 20:51:22 UTC (rev 482034)
@@ -9,7 +9,7 @@
 pkgrel=1
 pkgdesc="Python package for providing Mozilla's CA Bundle"
 arch=(any)
-url="http://pypi.python.org/pypi/certifi;
+url="https://pypi.python.org/pypi/certifi;
 license=('GPL')
 makedepends=('python-setuptools' 'python2-setuptools')
 
source=("https://pypi.io/packages/source/${_libname:0:1}/$_libname/$_libname-$pkgver.tar.gz;)


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

2019-06-17 Thread Antonio Rojas via arch-commits
Date: Monday, June 17, 2019 @ 20:49:36
  Author: arojas
Revision: 482032

https

Modified:
  python-ansi2html/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-17 20:49:14 UTC (rev 482031)
+++ PKGBUILD2019-06-17 20:49:36 UTC (rev 482032)
@@ -6,7 +6,7 @@
 pkgrel=1
 pkgdesc="Convert text with ANSI color codes to HTML"
 arch=('any')
-url="http://pypi.python.org/pypi/ansi2html;
+url="https://pypi.python.org/pypi/ansi2html;
 license=('GPL')
 depends=('python-six' 'python-setuptools')
 
source=("https://files.pythonhosted.org/packages/source/${_libname:0:1}/$_libname/$_libname-$pkgver.tar.gz;)


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

2019-06-17 Thread Antonio Rojas via arch-commits
Date: Monday, June 17, 2019 @ 20:50:10
  Author: arojas
Revision: 482033

https

Modified:
  python-astor/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-17 20:49:36 UTC (rev 482032)
+++ PKGBUILD2019-06-17 20:50:10 UTC (rev 482033)
@@ -6,7 +6,7 @@
 pkgdesc="Read/rewrite/write Python ASTs"
 arch=('any')
 license=('BSD')
-url="http://astor.rtfd.org/;
+url="https://astor.rtfd.org/;
 depends=('python')
 makedepends=('python-setuptools')
 checkdepends=('python-nose')


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

2019-06-17 Thread Antonio Rojas via arch-commits
Date: Monday, June 17, 2019 @ 20:49:14
  Author: arojas
Revision: 482031

https

Modified:
  python2-traceback2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-17 20:48:58 UTC (rev 482030)
+++ PKGBUILD2019-06-17 20:49:14 UTC (rev 482031)
@@ -5,7 +5,7 @@
 pkgrel=4
 pkgdesc='Backports of the traceback module'
 arch=('any')
-url='http://pypi.python.org/pypi/traceback2'
+url='https://pypi.python.org/pypi/traceback2'
 license=('PSF')
 depends=('python2-linecache2' 'python2-six')
 makedepends=('python2-setuptools' 'python2-pbr')


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

2019-06-17 Thread Antonio Rojas via arch-commits
Date: Monday, June 17, 2019 @ 20:48:42
  Author: arojas
Revision: 482029

https

Modified:
  python2-monotonic/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-17 20:48:25 UTC (rev 482028)
+++ PKGBUILD2019-06-17 20:48:42 UTC (rev 482029)
@@ -5,7 +5,7 @@
 pkgrel=1
 pkgdesc="An implementation of time.monotonic() for Python 2 & < 3.3"
 arch=('any')
-url='http://pypi.python.org/pypi/monotonic'
+url='https://pypi.python.org/pypi/monotonic'
 license=('Apache')
 depends=('python2')
 makedepends=('python2-setuptools' 'git')


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

2019-06-17 Thread Antonio Rojas via arch-commits
Date: Monday, June 17, 2019 @ 20:48:58
  Author: arojas
Revision: 482030

https

Modified:
  python2-pathlib2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-17 20:48:42 UTC (rev 482029)
+++ PKGBUILD2019-06-17 20:48:58 UTC (rev 482030)
@@ -5,7 +5,7 @@
 pkgrel=1
 pkgdesc='Object-oriented filesystem paths'
 arch=('any')
-url='http://pypi.python.org/pypi/pathlib2'
+url='https://pypi.python.org/pypi/pathlib2'
 license=('MIT')
 depends=('python2-six' 'python2-scandir')
 makedepends=('python2-setuptools')


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

2019-06-17 Thread Antonio Rojas via arch-commits
Date: Monday, June 17, 2019 @ 20:48:25
  Author: arojas
Revision: 482028

https

Modified:
  python2-linecache2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-17 20:48:05 UTC (rev 482027)
+++ PKGBUILD2019-06-17 20:48:25 UTC (rev 482028)
@@ -5,7 +5,7 @@
 pkgrel=2
 pkgdesc='Backports of the linecache module'
 arch=('any')
-url='http://pypi.python.org/pypi/linecache2'
+url='https://pypi.python.org/pypi/linecache2'
 license=('PSF')
 depends=('python2')
 makedepends=('python2-setuptools' 'python2-pbr')


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

2019-06-17 Thread Antonio Rojas via arch-commits
Date: Monday, June 17, 2019 @ 20:48:05
  Author: arojas
Revision: 482027

https

Modified:
  python2-importlib_resources/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-17 20:47:36 UTC (rev 482026)
+++ PKGBUILD2019-06-17 20:48:05 UTC (rev 482027)
@@ -5,7 +5,7 @@
 pkgrel=1
 pkgdesc='Read resources from Python packages'
 arch=('any')
-url='http://pypi.python.org/pypi/importlib_resources'
+url='https://pypi.python.org/pypi/importlib_resources'
 license=('Apache')
 depends=('python2-typing' 'python2-pathlib2' 'python2-setuptools' 
'python2-wheel')
 makedepends=('python2-setuptools')


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

2019-06-17 Thread Antonio Rojas via arch-commits
Date: Monday, June 17, 2019 @ 20:47:36
  Author: arojas
Revision: 482026

https

Modified:
  python2-docs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-17 20:47:20 UTC (rev 482025)
+++ PKGBUILD2019-06-17 20:47:36 UTC (rev 482026)
@@ -6,7 +6,7 @@
 pkgrel=1
 pkgdesc="Set of HTML documentation for python."
 arch=('any')
-url="http://docs.python.org/;
+url="https://docs.python.org/;
 license=('GPL')
 install=python2-docs.install
 options=('docs')


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

2019-06-17 Thread Antonio Rojas via arch-commits
Date: Monday, June 17, 2019 @ 20:47:20
  Author: arojas
Revision: 482025

https

Modified:
  python2-contextlib2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-17 20:46:49 UTC (rev 482024)
+++ PKGBUILD2019-06-17 20:47:20 UTC (rev 482025)
@@ -7,7 +7,7 @@
 pkgrel=2
 pkgdesc="contextlib2 is a backport of the standard library’s contextlib module 
to earlier Python versions"
 arch=('any')
-url="http://pypi.python.org/pypi/${_pypiname};
+url="https://pypi.python.org/pypi/${_pypiname};
 license=('PSF')
 depends=('python2')
 makedepends=('python2-setuptools')


[arch-commits] Commit in python2-backports-abc/trunk (PKGBUILD)

2019-06-17 Thread Antonio Rojas via arch-commits
Date: Monday, June 17, 2019 @ 20:46:49
  Author: arojas
Revision: 482024

https

Modified:
  python2-backports-abc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-17 20:46:21 UTC (rev 482023)
+++ PKGBUILD2019-06-17 20:46:49 UTC (rev 482024)
@@ -5,7 +5,7 @@
 pkgrel=2
 pkgdesc="A backport of recent additions to the 'collections.abc' module."
 arch=('any')
-url='http://pypi.python.org/pypi/backports_abc'
+url='https://pypi.python.org/pypi/backports_abc'
 license=('PSF')
 depends=('python2')
 makedepends=('python2-setuptools')


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

2019-06-17 Thread Antonio Rojas via arch-commits
Date: Monday, June 17, 2019 @ 20:46:21
  Author: arojas
Revision: 482023

https

Modified:
  pystatgrab/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-17 20:45:40 UTC (rev 482022)
+++ PKGBUILD2019-06-17 20:46:21 UTC (rev 482023)
@@ -6,7 +6,7 @@
 pkgrel=2
 pkgdesc="Python bindings for libstatgrab"
 arch=('x86_64')
-url="http://www.i-scream.org/pystatgrab;
+url="https://www.i-scream.org/pystatgrab;
 license=('GPL')
 depends=('python' 'libstatgrab')
 makedepends=('cython')


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

2019-06-17 Thread Antonio Rojas via arch-commits
Date: Monday, June 17, 2019 @ 20:45:40
  Author: arojas
Revision: 482022

https

Modified:
  pv/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-17 20:45:13 UTC (rev 482021)
+++ PKGBUILD2019-06-17 20:45:40 UTC (rev 482022)
@@ -7,7 +7,7 @@
 pkgrel=2
 pkgdesc='A terminal-based tool for monitoring the progress of data through a 
pipeline.'
 arch=('x86_64')
-url='http://www.ivarch.com/programs/pv.shtml'
+url='https://www.ivarch.com/programs/pv.shtml'
 license=('custom:Artistic 2.0')
 depends=('glibc')
 source=("https://www.ivarch.com/programs/sources/$pkgname-$pkgver.tar.bz2;)


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

2019-06-17 Thread Antonio Rojas via arch-commits
Date: Monday, June 17, 2019 @ 20:45:13
  Author: arojas
Revision: 482021

https

Modified:
  puzzles/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-17 20:44:40 UTC (rev 482020)
+++ PKGBUILD2019-06-17 20:45:13 UTC (rev 482021)
@@ -7,7 +7,7 @@
 pkgrel=1
 pkgdesc="Simon Tatham's Portable Puzzle Collection"
 arch=('x86_64')
-url="http://www.chiark.greenend.org.uk/~sgtatham/puzzles/;
+url="https://www.chiark.greenend.org.uk/~sgtatham/puzzles/;
 license=('MIT')
 makedepends=('pkgconfig' 'git')
 depends=('gtk2' 'desktop-file-utils')


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

2019-06-17 Thread Antonio Rojas via arch-commits
Date: Monday, June 17, 2019 @ 20:44:40
  Author: arojas
Revision: 482020

https

Modified:
  pstotext/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-17 20:44:00 UTC (rev 482019)
+++ PKGBUILD2019-06-17 20:44:40 UTC (rev 482020)
@@ -9,7 +9,7 @@
 pkgrel=5
 pkgdesc="Converts Postscript to text"
 arch=('x86_64')
-url="http://www.cs.wisc.edu/~ghost/doc/pstotext.htm;
+url="https://www.cs.wisc.edu/~ghost/doc/pstotext.htm;
 license=('GPL')
 depends=('ghostscript')
 source=(ftp://ftp.netbsd.org/pub/pkgsrc/distfiles/$pkgname-$pkgver.tar.gz)


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

2019-06-17 Thread Antonio Rojas via arch-commits
Date: Monday, June 17, 2019 @ 20:44:00
  Author: arojas
Revision: 482019

https

Modified:
  protege/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-17 20:43:35 UTC (rev 482018)
+++ PKGBUILD2019-06-17 20:44:00 UTC (rev 482019)
@@ -9,7 +9,7 @@
 pkgrel=1
 pkgdesc='Free, open source ontology editor and knowledge-base framework'
 arch=('any')
-url='http://protege.stanford.edu/'
+url='https://protege.stanford.edu/'
 license=('MPL')
 depends=('java-runtime>=8' 'graphviz')
 makedepends=('maven' 'jdk8-openjdk')


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

2019-06-17 Thread Antonio Rojas via arch-commits
Date: Monday, June 17, 2019 @ 20:43:21
  Author: arojas
Revision: 482017

https

Modified:
  postgis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-17 20:42:18 UTC (rev 482016)
+++ PKGBUILD2019-06-17 20:43:21 UTC (rev 482017)
@@ -7,13 +7,13 @@
 pkgrel=1
 pkgdesc="Adds support for geographic objects to PostgreSQL"
 arch=('x86_64')
-url="http://postgis.net/;
+url="https://postgis.net/;
 license=('GPL')
 depends=('postgresql' 'gdal' 'json-c' 'proj' 'protobuf-c')
 makedepends=('clang' 'llvm')
 changelog=$pkgname.changelog
 # options=('!makeflags')
-source=(http://download.osgeo.org/postgis/source/${pkgname}-${pkgver}.tar.gz)
+source=(https://download.osgeo.org/postgis/source/${pkgname}-${pkgver}.tar.gz)
 sha256sums=('b6cb286c5016029d984f8c440947bf9178da72e1f6f840ed639270e1c451db5e')
 
 build() {


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

2019-06-17 Thread Antonio Rojas via arch-commits
Date: Monday, June 17, 2019 @ 20:43:35
  Author: arojas
Revision: 482018

https

Modified:
  proj/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-17 20:43:21 UTC (rev 482017)
+++ PKGBUILD2019-06-17 20:43:35 UTC (rev 482018)
@@ -8,7 +8,7 @@
 pkgrel=1
 pkgdesc='Cartographic Projections library'
 arch=('x86_64')
-url="http://trac.osgeo.org/proj/;
+url="https://trac.osgeo.org/proj/;
 license=('MIT')
 makedepends=('autoconf' 'sqlite')
 changelog=$pkgname.changelog


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

2019-06-17 Thread Antonio Rojas via arch-commits
Date: Monday, June 17, 2019 @ 20:42:18
  Author: arojas
Revision: 482016

https

Modified:
  postfwd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-17 20:41:55 UTC (rev 482015)
+++ PKGBUILD2019-06-17 20:42:18 UTC (rev 482016)
@@ -6,10 +6,10 @@
 pkgrel=3
 pkgdesc="Combines complex postfix restrictions in a ruleset similar to those 
of the most firewalls"
 arch=(any)
-url="http://postfwd.org/;
+url="https://postfwd.org/;
 license=('bsd')
 depends=('perl' 'perl-io-multiplex' 'perl-net-server' 'perl-net-dns')
-source=("http://postfwd.org/$pkgname-$pkgver.tar.gz;
+source=("https://postfwd.org/$pkgname-$pkgver.tar.gz;
 "postfwd.sysusers"
 "service")
 md5sums=('8e01328416c735d55efec90dede8bff2'


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

2019-06-17 Thread Antonio Rojas via arch-commits
Date: Monday, June 17, 2019 @ 20:41:55
  Author: arojas
Revision: 482015

https

Modified:
  ponyc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-17 20:41:31 UTC (rev 482014)
+++ PKGBUILD2019-06-17 20:41:55 UTC (rev 482015)
@@ -4,7 +4,7 @@
 pkgver=0.28.1
 pkgrel=1
 pkgdesc='An actor model, capabilities, high performance programming language'
-url='http://ponylang.org/'
+url='https://ponylang.org/'
 arch=('x86_64')
 license=('BSD')
 depends=('llvm7-libs')


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

2019-06-17 Thread Antonio Rojas via arch-commits
Date: Monday, June 17, 2019 @ 20:41:31
  Author: arojas
Revision: 482014

https

Modified:
  poedit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-17 20:40:50 UTC (rev 482013)
+++ PKGBUILD2019-06-17 20:41:31 UTC (rev 482014)
@@ -11,7 +11,7 @@
 pkgrel=3
 pkgdesc="Cross-platform gettext catalogs (.po files) editor"
 arch=('x86_64')
-url="http://www.poedit.net/;
+url="https://www.poedit.net/;
 license=('MIT')
 depends=('gtkspell3' 'lucene++' 'wxgtk3')
 makedepends=('boost')


[arch-commits] Commit in plasma-maliit-plugins/trunk (PKGBUILD)

2019-06-17 Thread Antonio Rojas via arch-commits
Date: Monday, June 17, 2019 @ 20:40:30
  Author: arojas
Revision: 482012

https

Modified:
  plasma-maliit-plugins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-17 20:39:42 UTC (rev 482011)
+++ PKGBUILD2019-06-17 20:40:30 UTC (rev 482012)
@@ -8,7 +8,7 @@
 pkgdesc="Plasma Integration for Maliit virtual keyboard"
 arch=('x86_64')
 license=('GPL')
-url="http://projects.kde.org/plasma-maliit-plugins;
+url="https://cgit.kde.org/plasma-maliit-plugins.git;
 depends=('plasma-maliit-framework')
 makedepends=('git')
 source=("git+https://github.com/KDE/plasma-maliit-plugins.git#commit=$_commit;)


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

2019-06-17 Thread Antonio Rojas via arch-commits
Date: Monday, June 17, 2019 @ 20:40:50
  Author: arojas
Revision: 482013

https

Modified:
  pm2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-17 20:40:30 UTC (rev 482012)
+++ PKGBUILD2019-06-17 20:40:50 UTC (rev 482013)
@@ -5,7 +5,7 @@
 pkgrel=1
 pkgdesc='Production process manager for Node.JS applications with a built-in 
load balancer'
 arch=('any')
-url='http://pm2.keymetrics.io'
+url='https://pm2.keymetrics.io'
 license=('AGPL3')
 depends=('nodejs' 'semver')
 makedepends=('npm' 'git')


[arch-commits] Commit in plasma-maliit-framework/trunk (PKGBUILD)

2019-06-17 Thread Antonio Rojas via arch-commits
Date: Monday, June 17, 2019 @ 20:39:42
  Author: arojas
Revision: 482011

https

Modified:
  plasma-maliit-framework/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-17 20:38:21 UTC (rev 482010)
+++ PKGBUILD2019-06-17 20:39:42 UTC (rev 482011)
@@ -8,7 +8,7 @@
 pkgdesc="Framework for Maliit integration with Plasma"
 arch=('x86_64')
 license=('GPL')
-url="http://projects.kde.org/plasma-maliit-framework;
+url="https://cgit.kde.org/plasma-maliit-framework.git;
 depends=('qt5-declarative' 'kwayland' 'karchive')
 makedepends=('git')
 
source=("git+https://github.com/KDE/plasma-maliit-framework.git#commit=$_commit;)


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

2019-06-17 Thread Antonio Rojas via arch-commits
Date: Monday, June 17, 2019 @ 20:38:21
  Author: arojas
Revision: 482010

https

Modified:
  pius/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-17 20:38:01 UTC (rev 482009)
+++ PKGBUILD2019-06-17 20:38:21 UTC (rev 482010)
@@ -5,7 +5,7 @@
 pkgrel=1
 pkgdesc="PGP Individual User Signer"
 arch=('any')
-url="http://www.phildev.net/pius/;
+url="https://www.phildev.net/pius/;
 license=('GPL')
 depends=('python-six')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/jaymzh/pius/archive/v$pkgver.tar.gz;)


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

2019-06-17 Thread Antonio Rojas via arch-commits
Date: Monday, June 17, 2019 @ 20:38:01
  Author: arojas
Revision: 482009

https

Modified:
  pingus/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-17 20:37:34 UTC (rev 482008)
+++ PKGBUILD2019-06-17 20:38:01 UTC (rev 482009)
@@ -5,7 +5,7 @@
 pkgrel=26
 pkgdesc="A Lemmings clone, i.e. a level-based puzzle game."
 arch=('x86_64')
-url="http://pingus.seul.org;
+url="https://pingus.seul.org;
 license=('GPL')
 depends=('sdl_image' 'sdl_mixer' 'libgl' 'boost-libs>=1.49')
 makedepends=('scons' 'boost>=1.49' 'mesa' 'glu')


[arch-commits] Commit in pidgin-xmpp-receipts/trunk (PKGBUILD)

2019-06-17 Thread Antonio Rojas via arch-commits
Date: Monday, June 17, 2019 @ 20:37:34
  Author: arojas
Revision: 482008

https

Modified:
  pidgin-xmpp-receipts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-06-17 20:37:08 UTC (rev 482007)
+++ PKGBUILD2019-06-17 20:37:34 UTC (rev 482008)
@@ -5,7 +5,7 @@
 pkgver=0.8
 pkgrel=2
 pkgdesc='This pidgin-plugin implements xmpp message delivery receipts 
(XEP-0184)'
-url='http://devel.kondorgulasch.de/pidgin-xmpp-receipts/'
+url='https://devel.kondorgulasch.de/pidgin-xmpp-receipts/'
 arch=('x86_64')
 license=('GPL3')
 depends=('pidgin' 'libpurple')


  1   2   3   >