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

2018-07-29 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, July 30, 2018 @ 05:00:24
  Author: svenstaro
Revision: 364912

archrelease: copy trunk to community-x86_64

Added:
  openmw/repos/community-x86_64/PKGBUILD
(from rev 364911, openmw/trunk/PKGBUILD)
Deleted:
  openmw/repos/community-x86_64/PKGBUILD
  openmw/repos/community-x86_64/qt-5.11.patch

---+
 PKGBUILD  |   72 ---
 qt-5.11.patch |   78 
 2 files changed, 34 insertions(+), 116 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-07-30 05:00:18 UTC (rev 364911)
+++ PKGBUILD2018-07-30 05:00:24 UTC (rev 364912)
@@ -1,38 +0,0 @@
-# $Id:
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Sandy Carter 
-pkgname=openmw
-pkgver=0.43.0
-pkgrel=4
-pkgdesc="Open-source engine reimplementation for the role-playing game 
Morrowind"
-arch=('x86_64')
-url="http://www.openmw.org;
-license=('GPL3' 'MIT' 'custom')
-depends=('openal' 'openscenegraph' 'mygui' 'bullet' 'qt5-base' 'ffmpeg' 'sdl2' 
'unshield' 'libxt')
-makedepends=('cmake' 'boost' 'doxygen' 'ninja')
-source=("https://github.com/OpenMW/openmw/archive/openmw-${pkgver}.tar.gz;
-'qt-5.11.patch')
-sha512sums=('e902dd2274c05838bb1171f07d7a673fc7b85d1290a9e01c8ab89f1c279bd236332ecdc0f2b7944ec7209a0e6022ff472639b5724bf26904e3a2d338c7be401a'
-
'a53775dc3dbdc69ed213fed86382a71768545f9950c59429410c731242d6b43b7e61d4be539c99b5ac87bf92e28be7eb43552c16d30103d1ce50edc853c987de')
-
-prepare() {
-  mkdir -p build
-  cd $pkgname-$pkgname-$pkgver
-  patch -Np1 -i ../qt-5.11.patch
-}
-
-build() {
-  cd build
-  cmake "../$pkgname-$pkgname-$pkgver" \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DDESIRED_QT_VERSION=5 \
--GNinja
-  ninja
-}
-
-package() {
-  DESTDIR="$pkgdir" ninja -C build install
-}
-
-# vim: ts=2 sw=2 et:

Copied: openmw/repos/community-x86_64/PKGBUILD (from rev 364911, 
openmw/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-07-30 05:00:24 UTC (rev 364912)
@@ -0,0 +1,34 @@
+# $Id:
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Sandy Carter 
+pkgname=openmw
+pkgver=0.44.0
+pkgrel=1
+pkgdesc="Open-source engine reimplementation for the role-playing game 
Morrowind"
+arch=('x86_64')
+url="http://www.openmw.org;
+license=('GPL3' 'MIT' 'custom')
+depends=('openal' 'openscenegraph' 'mygui' 'bullet' 'qt5-base' 'ffmpeg' 'sdl2' 
'unshield' 'libxt')
+makedepends=('cmake' 'boost' 'doxygen' 'ninja')
+source=("https://github.com/OpenMW/openmw/archive/openmw-${pkgver}.tar.gz;)
+sha512sums=('1b178891274361b7821ac1d3d66976ed5d443545531499d98f7ed30823f3891172cc5dcb3f7382ba0f561774a92b9ad8805e0c9582b78d2f010e4ed661219017')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake "../$pkgname-$pkgname-$pkgver" \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DDESIRED_QT_VERSION=5 \
+-GNinja
+  ninja
+}
+
+package() {
+  DESTDIR="$pkgdir" ninja -C build install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: qt-5.11.patch
===
--- qt-5.11.patch   2018-07-30 05:00:18 UTC (rev 364911)
+++ qt-5.11.patch   2018-07-30 05:00:24 UTC (rev 364912)
@@ -1,78 +0,0 @@
-From 2c9d46a60bd8d35f132cb106e5255d590b13640b Mon Sep 17 00:00:00 2001
-From: Andreas Sturmlechner 
-Date: Tue, 17 Apr 2018 23:03:56 +0200
-Subject: [PATCH] Fix build with Qt 5.11_beta3 (dropping qt5_use_modules)
-

- apps/launcher/CMakeLists.txt | 2 +-
- apps/opencs/CMakeLists.txt   | 2 +-
- apps/wizard/CMakeLists.txt   | 2 +-
- components/CMakeLists.txt| 2 +-
- extern/osgQt/CMakeLists.txt  | 2 +-
- 5 files changed, 5 insertions(+), 5 deletions(-)
-
-diff --git a/apps/launcher/CMakeLists.txt b/apps/launcher/CMakeLists.txt
-index aec8c2533a..99e7b4daac 100644
 a/apps/launcher/CMakeLists.txt
-+++ b/apps/launcher/CMakeLists.txt
-@@ -106,7 +106,7 @@ if (DESIRED_QT_VERSION MATCHES 4)
- target_link_libraries(openmw-launcher ${QT_QTMAIN_LIBRARY})
- endif(WIN32)
- else()
--qt5_use_modules(openmw-launcher Widgets Core)
-+target_link_libraries(openmw-launcher Qt5::Widgets Qt5::Core)
- endif()
- 
- if (BUILD_WITH_CODE_COVERAGE)
-diff --git a/apps/opencs/CMakeLists.txt b/apps/opencs/CMakeLists.txt
-index b9279bf912..f07b518a98 100644
 a/apps/opencs/CMakeLists.txt
-+++ b/apps/opencs/CMakeLists.txt
-@@ -246,7 +246,7 @@ if (DESIRED_QT_VERSION MATCHES 4)
- target_link_libraries(openmw-cs ${QT_QTMAIN_LIBRARY})
- endif()
- else()
--qt5_use_modules(openmw-cs Widgets Core Network OpenGL)
-+target_link_libraries(openmw-cs Qt5::Widgets Qt5::Core Qt5::Network 
Qt5::OpenGL)
- endif()
- 
- if (WIN32)
-diff --git a/apps/wizard/CMakeLists.txt b/apps/wizard/CMakeLists.txt
-index 5f7338e520..8d97bbcbfa 100644
 

[arch-commits] Commit in openmw/trunk (PKGBUILD qt-5.11.patch)

2018-07-29 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, July 30, 2018 @ 05:00:18
  Author: svenstaro
Revision: 364911

upgpkg: openmw 0.44.0-1

Modified:
  openmw/trunk/PKGBUILD
Deleted:
  openmw/trunk/qt-5.11.patch

---+
 PKGBUILD  |   14 +++---
 qt-5.11.patch |   78 
 2 files changed, 5 insertions(+), 87 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-07-30 03:45:01 UTC (rev 364910)
+++ PKGBUILD2018-07-30 05:00:18 UTC (rev 364911)
@@ -2,8 +2,8 @@
 # Maintainer: Sven-Hendrik Haase 
 # Contributor: Sandy Carter 
 pkgname=openmw
-pkgver=0.43.0
-pkgrel=4
+pkgver=0.44.0
+pkgrel=1
 pkgdesc="Open-source engine reimplementation for the role-playing game 
Morrowind"
 arch=('x86_64')
 url="http://www.openmw.org;
@@ -10,15 +10,11 @@
 license=('GPL3' 'MIT' 'custom')
 depends=('openal' 'openscenegraph' 'mygui' 'bullet' 'qt5-base' 'ffmpeg' 'sdl2' 
'unshield' 'libxt')
 makedepends=('cmake' 'boost' 'doxygen' 'ninja')
-source=("https://github.com/OpenMW/openmw/archive/openmw-${pkgver}.tar.gz;
-'qt-5.11.patch')
-sha512sums=('e902dd2274c05838bb1171f07d7a673fc7b85d1290a9e01c8ab89f1c279bd236332ecdc0f2b7944ec7209a0e6022ff472639b5724bf26904e3a2d338c7be401a'
-
'a53775dc3dbdc69ed213fed86382a71768545f9950c59429410c731242d6b43b7e61d4be539c99b5ac87bf92e28be7eb43552c16d30103d1ce50edc853c987de')
+source=("https://github.com/OpenMW/openmw/archive/openmw-${pkgver}.tar.gz;)
+sha512sums=('1b178891274361b7821ac1d3d66976ed5d443545531499d98f7ed30823f3891172cc5dcb3f7382ba0f561774a92b9ad8805e0c9582b78d2f010e4ed661219017')
 
 prepare() {
-  mkdir -p build
-  cd $pkgname-$pkgname-$pkgver
-  patch -Np1 -i ../qt-5.11.patch
+  mkdir build
 }
 
 build() {

Deleted: qt-5.11.patch
===
--- qt-5.11.patch   2018-07-30 03:45:01 UTC (rev 364910)
+++ qt-5.11.patch   2018-07-30 05:00:18 UTC (rev 364911)
@@ -1,78 +0,0 @@
-From 2c9d46a60bd8d35f132cb106e5255d590b13640b Mon Sep 17 00:00:00 2001
-From: Andreas Sturmlechner 
-Date: Tue, 17 Apr 2018 23:03:56 +0200
-Subject: [PATCH] Fix build with Qt 5.11_beta3 (dropping qt5_use_modules)
-

- apps/launcher/CMakeLists.txt | 2 +-
- apps/opencs/CMakeLists.txt   | 2 +-
- apps/wizard/CMakeLists.txt   | 2 +-
- components/CMakeLists.txt| 2 +-
- extern/osgQt/CMakeLists.txt  | 2 +-
- 5 files changed, 5 insertions(+), 5 deletions(-)
-
-diff --git a/apps/launcher/CMakeLists.txt b/apps/launcher/CMakeLists.txt
-index aec8c2533a..99e7b4daac 100644
 a/apps/launcher/CMakeLists.txt
-+++ b/apps/launcher/CMakeLists.txt
-@@ -106,7 +106,7 @@ if (DESIRED_QT_VERSION MATCHES 4)
- target_link_libraries(openmw-launcher ${QT_QTMAIN_LIBRARY})
- endif(WIN32)
- else()
--qt5_use_modules(openmw-launcher Widgets Core)
-+target_link_libraries(openmw-launcher Qt5::Widgets Qt5::Core)
- endif()
- 
- if (BUILD_WITH_CODE_COVERAGE)
-diff --git a/apps/opencs/CMakeLists.txt b/apps/opencs/CMakeLists.txt
-index b9279bf912..f07b518a98 100644
 a/apps/opencs/CMakeLists.txt
-+++ b/apps/opencs/CMakeLists.txt
-@@ -246,7 +246,7 @@ if (DESIRED_QT_VERSION MATCHES 4)
- target_link_libraries(openmw-cs ${QT_QTMAIN_LIBRARY})
- endif()
- else()
--qt5_use_modules(openmw-cs Widgets Core Network OpenGL)
-+target_link_libraries(openmw-cs Qt5::Widgets Qt5::Core Qt5::Network 
Qt5::OpenGL)
- endif()
- 
- if (WIN32)
-diff --git a/apps/wizard/CMakeLists.txt b/apps/wizard/CMakeLists.txt
-index 5f7338e520..8d97bbcbfa 100644
 a/apps/wizard/CMakeLists.txt
-+++ b/apps/wizard/CMakeLists.txt
-@@ -118,7 +118,7 @@ if (DESIRED_QT_VERSION MATCHES 4)
- target_link_libraries(openmw-wizard ${QT_QTMAIN_LIBRARY})
- endif()
- else()
--qt5_use_modules(openmw-wizard Widgets Core)
-+target_link_libraries(openmw-wizard Qt5::Widgets Qt5::Core)
- endif()
- 
- if (OPENMW_USE_UNSHIELD)
-diff --git a/components/CMakeLists.txt b/components/CMakeLists.txt
-index 8256f14437..ecb844a9bd 100644
 a/components/CMakeLists.txt
-+++ b/components/CMakeLists.txt
-@@ -216,7 +216,7 @@ if (USE_QT)
- ${QT_QTCORE_LIBRARY}
- ${QT_QTGUI_LIBRARY})
- else()
--qt5_use_modules(components Widgets Core)
-+target_link_libraries(components Qt5::Widgets Qt5::Core)
- endif()
- endif()
- 
-diff --git a/extern/osgQt/CMakeLists.txt b/extern/osgQt/CMakeLists.txt
-index 3bd08a390a..78a4e60344 100644
 a/extern/osgQt/CMakeLists.txt
-+++ b/extern/osgQt/CMakeLists.txt
-@@ -12,7 +12,7 @@ if (DESIRED_QT_VERSION MATCHES 4)
- include(${QT_USE_FILE})
- target_link_libraries(${OSGQT_LIBRARY} ${QT_QTCORE_LIBRARY} 
${QT_QTOPENGL_LIBRARY})
- else()
--qt5_use_modules(${OSGQT_LIBRARY} Core OpenGL)
-+target_link_libraries(${OSGQT_LIBRARY} Qt5::Core Qt5::OpenGL)
- endif()
- 
- link_directories(${CMAKE_CURRENT_BINARY_DIR})


[arch-commits] Commit in haskell-wai-app-static/repos (2 files)

2018-07-29 Thread Felix Yan via arch-commits
Date: Monday, July 30, 2018 @ 03:45:01
  Author: felixonmars
Revision: 364910

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-wai-app-static/repos/community-staging-x86_64/
  haskell-wai-app-static/repos/community-staging-x86_64/PKGBUILD
(from rev 364909, haskell-wai-app-static/trunk/PKGBUILD)

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

Copied: haskell-wai-app-static/repos/community-staging-x86_64/PKGBUILD (from 
rev 364909, haskell-wai-app-static/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-07-30 03:45:01 UTC (rev 364910)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=wai-app-static
+pkgname=haskell-wai-app-static
+pkgver=3.1.6.2
+pkgrel=78
+pkgdesc="WAI application for static serving"
+url="http://www.yesodweb.com/book/web-application-interface;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-blaze-html' 'haskell-blaze-markup' 
'haskell-cryptonite'
+ 'haskell-file-embed' 'haskell-http-date' 'haskell-http-types' 
'haskell-memory'
+ 'haskell-mime-types' 'haskell-old-locale' 
'haskell-optparse-applicative'
+ 'haskell-unix-compat' 'haskell-unordered-containers' 'haskell-wai' 
'haskell-wai-extra'
+ 'haskell-warp' 'haskell-zlib')
+makedepends=('ghc' 'haskell-hspec' 'haskell-mockery' 'haskell-network' 
'haskell-temporary')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('20c79810096f12d3901af3474a5ef4fe2385e639f97f2de803b09902d115321e3be7544cc3741b52b75a2710a0141bc19cb611fd4e6248ec60d11b522b9cb59c')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-print
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


[arch-commits] Commit in haskell-wai-app-static/trunk (PKGBUILD)

2018-07-29 Thread Felix Yan via arch-commits
Date: Monday, July 30, 2018 @ 03:44:46
  Author: felixonmars
Revision: 364909

upgpkg: haskell-wai-app-static 3.1.6.2-78

rebuild with file-embed 0.0.11

Modified:
  haskell-wai-app-static/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-07-30 03:43:53 UTC (rev 364908)
+++ PKGBUILD2018-07-30 03:44:46 UTC (rev 364909)
@@ -5,7 +5,7 @@
 _hkgname=wai-app-static
 pkgname=haskell-wai-app-static
 pkgver=3.1.6.2
-pkgrel=77
+pkgrel=78
 pkgdesc="WAI application for static serving"
 url="http://www.yesodweb.com/book/web-application-interface;
 license=("MIT")


[arch-commits] Commit in haskell-file-embed/repos (2 files)

2018-07-29 Thread Felix Yan via arch-commits
Date: Monday, July 30, 2018 @ 03:43:53
  Author: felixonmars
Revision: 364908

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-file-embed/repos/community-staging-x86_64/
  haskell-file-embed/repos/community-staging-x86_64/PKGBUILD
(from rev 364907, haskell-file-embed/trunk/PKGBUILD)

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

Copied: haskell-file-embed/repos/community-staging-x86_64/PKGBUILD (from rev 
364907, haskell-file-embed/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-07-30 03:43:53 UTC (rev 364908)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=file-embed
+pkgname=haskell-file-embed
+pkgver=0.0.11
+pkgrel=1
+pkgdesc="Use Template Haskell to embed file contents directly."
+url="https://github.com/snoyberg/file-embed;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('2c6ac6bdf951706a6d2cfe317bb6c50e3fb166acd746ff9af0420212bfc8f298cf4dea08b2e38cb4615b98cbc15954e1b7d46918970234e4ab91012e34bf7b41')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


[arch-commits] Commit in haskell-file-embed/trunk (PKGBUILD)

2018-07-29 Thread Felix Yan via arch-commits
Date: Monday, July 30, 2018 @ 03:43:36
  Author: felixonmars
Revision: 364907

upgpkg: haskell-file-embed 0.0.11-1

rebuild with file-embed 0.0.11

Modified:
  haskell-file-embed/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-07-30 03:28:17 UTC (rev 364906)
+++ PKGBUILD2018-07-30 03:43:36 UTC (rev 364907)
@@ -4,8 +4,8 @@
 
 _hkgname=file-embed
 pkgname=haskell-file-embed
-pkgver=0.0.10.1
-pkgrel=5
+pkgver=0.0.11
+pkgrel=1
 pkgdesc="Use Template Haskell to embed file contents directly."
 url="https://github.com/snoyberg/file-embed;
 license=("custom:BSD3")
@@ -13,7 +13,7 @@
 depends=('ghc-libs')
 makedepends=('ghc')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('101ddf9cd463b5d2e17d243c72aa0afd51d0eb32dd46da0d677e2b5acf921f8f28c8d50710a81d9165e7ad42210b7f44d7db6c69c8c3a56a167e5e29e7950f1d')
+sha512sums=('2c6ac6bdf951706a6d2cfe317bb6c50e3fb166acd746ff9af0420212bfc8f298cf4dea08b2e38cb4615b98cbc15954e1b7d46918970234e4ab91012e34bf7b41')
 
 build() {
 cd "${srcdir}/${_hkgname}-${pkgver}"


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

2018-07-29 Thread Felix Yan via arch-commits
Date: Monday, July 30, 2018 @ 03:28:17
  Author: felixonmars
Revision: 364906

archrelease: copy trunk to community-x86_64

Added:
  hopenpgp-tools/repos/community-x86_64/PKGBUILD
(from rev 364905, hopenpgp-tools/trunk/PKGBUILD)
Deleted:
  hopenpgp-tools/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-07-30 03:27:59 UTC (rev 364905)
+++ PKGBUILD2018-07-30 03:28:17 UTC (rev 364906)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Arch Haskell Team 
-
-pkgname=hopenpgp-tools
-pkgver=0.21.1
-pkgrel=54
-pkgdesc="hOpenPGP-based command-line tools"
-url="http://floss.scru.org/hopenpgp-tools;
-license=("AGPL3")
-arch=('x86_64')
-depends=('ghc-libs' 'haskell-aeson' 'haskell-attoparsec' 
'haskell-base16-bytestring'
- 'haskell-binary-conduit' 'haskell-conduit' 'haskell-conduit-extra' 
'haskell-crypto-pubkey'
- 'haskell-cryptohash' 'haskell-errors' 'haskell-fgl' 
'haskell-graphviz' 'haskell-hopenpgp'
- 'haskell-http-client' 'haskell-http-client-tls' 'haskell-http-types' 
'haskell-ixset-typed'
- 'haskell-lens' 'haskell-monad-loops' 'haskell-openpgp-asciiarmor'
- 'haskell-optparse-applicative' 'haskell-prettyprinter'
- 'haskell-prettyprinter-ansi-terminal' 
'haskell-prettyprinter-convert-ansi-wl-pprint'
- 'haskell-resourcet' 'haskell-time-locale-compat' 'haskell-yaml')
-makedepends=('alex' 'happy' 'ghc')
-source=(https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('0f079cdc3d99c5e2679810c38d57e40a045bf91c26fd734c50a7715f803efa9367d2ee389dd8362c1c1d00f75227370b481e9b1fb74ad41c8fb0fc51c5c71e38')
-
-build() {
-cd "${srcdir}/${pkgname}-${pkgver}"
-
-runhaskell Setup configure -O --prefix=/usr --enable-executable-dynamic 
--docdir="/usr/share/doc/${pkgname}"
-runhaskell Setup build
-}
-
-package() {
-cd "${srcdir}/${pkgname}-${pkgver}"
-runhaskell Setup copy --destdir="${pkgdir}"
-
-rm "$pkgdir/usr/share/doc/hopenpgp-tools/LICENSE"
-rmdir "$pkgdir/usr/share/doc/hopenpgp-tools" "$pkgdir/usr/share/doc" 
"$pkgdir/usr/share"
-}

Copied: hopenpgp-tools/repos/community-x86_64/PKGBUILD (from rev 364905, 
hopenpgp-tools/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-07-30 03:28:17 UTC (rev 364906)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hopenpgp-tools
+pkgver=0.21.2
+pkgrel=1
+pkgdesc="hOpenPGP-based command-line tools"
+url="http://floss.scru.org/hopenpgp-tools;
+license=("AGPL3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-attoparsec' 
'haskell-base16-bytestring'
+ 'haskell-binary-conduit' 'haskell-conduit' 'haskell-conduit-extra' 
'haskell-crypto-pubkey'
+ 'haskell-cryptohash' 'haskell-errors' 'haskell-fgl' 
'haskell-graphviz' 'haskell-hopenpgp'
+ 'haskell-http-client' 'haskell-http-client-tls' 'haskell-http-types' 
'haskell-ixset-typed'
+ 'haskell-lens' 'haskell-monad-loops' 'haskell-openpgp-asciiarmor'
+ 'haskell-optparse-applicative' 'haskell-prettyprinter'
+ 'haskell-prettyprinter-ansi-terminal' 
'haskell-prettyprinter-convert-ansi-wl-pprint'
+ 'haskell-resourcet' 'haskell-time-locale-compat' 'haskell-yaml')
+makedepends=('alex' 'happy' 'ghc')
+source=(https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('2a5e1487670b9616a5546ec0cd2671e712aeef8017daf20ce78eebd569445355025f9b39a897747dcf9ededf0dba713319bb5bfa02349fd38a69af65962264c5')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --prefix=/usr --enable-executable-dynamic 
--docdir="/usr/share/doc/${pkgname}"
+runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+
+rm "$pkgdir/usr/share/doc/hopenpgp-tools/LICENSE"
+rmdir "$pkgdir/usr/share/doc/hopenpgp-tools" "$pkgdir/usr/share/doc" 
"$pkgdir/usr/share"
+}


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

2018-07-29 Thread Felix Yan via arch-commits
Date: Monday, July 30, 2018 @ 03:27:59
  Author: felixonmars
Revision: 364905

upgpkg: hopenpgp-tools 0.21.2-1

Modified:
  hopenpgp-tools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-07-30 03:23:35 UTC (rev 364904)
+++ PKGBUILD2018-07-30 03:27:59 UTC (rev 364905)
@@ -3,8 +3,8 @@
 # Contributor: Arch Haskell Team 
 
 pkgname=hopenpgp-tools
-pkgver=0.21.1
-pkgrel=54
+pkgver=0.21.2
+pkgrel=1
 pkgdesc="hOpenPGP-based command-line tools"
 url="http://floss.scru.org/hopenpgp-tools;
 license=("AGPL3")
@@ -19,7 +19,7 @@
  'haskell-resourcet' 'haskell-time-locale-compat' 'haskell-yaml')
 makedepends=('alex' 'happy' 'ghc')
 
source=(https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('0f079cdc3d99c5e2679810c38d57e40a045bf91c26fd734c50a7715f803efa9367d2ee389dd8362c1c1d00f75227370b481e9b1fb74ad41c8fb0fc51c5c71e38')
+sha512sums=('2a5e1487670b9616a5546ec0cd2671e712aeef8017daf20ce78eebd569445355025f9b39a897747dcf9ededf0dba713319bb5bfa02349fd38a69af65962264c5')
 
 build() {
 cd "${srcdir}/${pkgname}-${pkgver}"


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

2018-07-29 Thread Felix Yan via arch-commits
Date: Monday, July 30, 2018 @ 03:23:35
  Author: felixonmars
Revision: 364904

archrelease: copy trunk to community-staging-any

Added:
  python-txaio/repos/community-staging-any/PKGBUILD
(from rev 364903, python-txaio/trunk/PKGBUILD)
Deleted:
  python-txaio/repos/community-staging-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-07-30 03:14:57 UTC (rev 364903)
+++ PKGBUILD2018-07-30 03:23:35 UTC (rev 364904)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Anatol Pomozov
-
-pkgbase=python-txaio
-pkgname=(python-txaio python2-txaio)
-pkgver=18.7.1
-pkgrel=1
-pkgdesc='Compatibility API between asyncio/Twisted/Trollius'
-arch=('any')
-url="https://github.com/crossbario/txaio;
-license=('MIT')
-makedepends=('python-setuptools' 'python2-setuptools')
-checkdepends=('python-pytest' 'python-mock' 'python-twisted' 'python2-pytest' 
'python2-mock' 'python2-twisted')
-source=("https://pypi.io/packages/source/t/txaio/txaio-$pkgver.tar.gz;)
-sha512sums=('d88cc8862340d269470e91a3e2d60c5c3ca6e169e838069f690e35bbf07d3db516b59e0e76cb83cfd1217ca73c0705fdae451df3d9c69adc421579eb2f1b68d9')
-
-prepare() {
-  # This tests whether pip can install the sdist, and is completely broken
-  # except in their boutique setup. They won't fix it.
-  # https://github.com/crossbario/txaio/issues/77#issuecomment-246276723
-  rm txaio-$pkgver/test/test_packaging.py
-  cp -a txaio-$pkgver{,-py2}
-
-  # Fix tests on Python 3.7 (https://github.com/crossbario/txaio/issues/134)
-  sed -i 's/asyncio\.test_utils/test.test_asyncio.utils/' 
txaio-$pkgver/test/*.py
-}
-
-build() {
-  cd "$srcdir"/txaio-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/txaio-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/txaio-$pkgver
-  python -m pytest
-
-  cd "$srcdir"/txaio-$pkgver-py2
-  python2 -m pytest
-}
-
-package_python-txaio() {
-  depends=('python-six')
-
-  cd txaio-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-txaio() {
-  depends=('python2-six')
-
-  cd txaio-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-txaio/repos/community-staging-any/PKGBUILD (from rev 364903, 
python-txaio/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-07-30 03:23:35 UTC (rev 364904)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Anatol Pomozov
+
+pkgbase=python-txaio
+pkgname=(python-txaio python2-txaio)
+pkgver=18.7.1
+pkgrel=1
+pkgdesc='Compatibility API between asyncio/Twisted/Trollius'
+arch=('any')
+url="https://github.com/crossbario/txaio;
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools')
+checkdepends=('python-pytest' 'python-mock' 'python-twisted' 'python2-pytest' 
'python2-mock' 'python2-twisted')
+source=("https://pypi.io/packages/source/t/txaio/txaio-$pkgver.tar.gz;)
+sha512sums=('d88cc8862340d269470e91a3e2d60c5c3ca6e169e838069f690e35bbf07d3db516b59e0e76cb83cfd1217ca73c0705fdae451df3d9c69adc421579eb2f1b68d9')
+
+prepare() {
+  # This tests whether pip can install the sdist, and is completely broken
+  # except in their boutique setup. They won't fix it.
+  # https://github.com/crossbario/txaio/issues/77#issuecomment-246276723
+  rm txaio-$pkgver/test/test_packaging.py
+  cp -a txaio-$pkgver{,-py2}
+
+  # Fix tests on Python 3.7 (https://github.com/crossbario/txaio/issues/134)
+  sed -i 's/asyncio\.test_utils/test.test_asyncio.utils/' 
txaio-$pkgver/test/*.py
+}
+
+build() {
+  cd "$srcdir"/txaio-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/txaio-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/txaio-$pkgver
+  python -m pytest
+
+  cd "$srcdir"/txaio-$pkgver-py2
+  python2 -m pytest
+}
+
+package_python-txaio() {
+  depends=('python-six')
+
+  cd txaio-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-txaio() {
+  depends=('python2-six')
+
+  cd txaio-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2018-07-29 Thread Felix Yan via arch-commits
Date: Monday, July 30, 2018 @ 03:14:57
  Author: felixonmars
Revision: 364903

archrelease: copy trunk to community-staging-any

Added:
  python-openstackclient/repos/community-staging-any/PKGBUILD
(from rev 364902, python-openstackclient/trunk/PKGBUILD)
Deleted:
  python-openstackclient/repos/community-staging-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-07-30 01:19:07 UTC (rev 364902)
+++ PKGBUILD2018-07-30 03:14:57 UTC (rev 364903)
@@ -1,68 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Daniel Wallace 
-
-pkgbase=python-openstackclient
-pkgname=(python-openstackclient python2-openstackclient)
-pkgver=3.16.0
-pkgrel=1
-pkgdesc="OpenStack Command-line Client"
-arch=('any')
-url="https://docs.openstack.org/python-openstackclient/latest/;
-license=('Apache')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-pbr' 
'python2-pbr' 'python-babel'
- 'python2-babel' 'python-cliff' 'python2-cliff' 
'python-keystoneclient'
- 'python2-keystoneclient' 'python-keystoneauth1' 
'python2-keystoneauth1'
- 'python-osc-lib' 'python2-osc-lib' 'python-oslo-utils' 
'python2-oslo-utils'
- 'python-oslo-i18n' 'python2-oslo-i18n' 'python-openstacksdk' 
'python2-openstacksdk'
- 'python-glanceclient' 'python2-glanceclient' 'python-novaclient' 
'python2-novaclient'
- 'python-cinderclient' 'python2-cinderclient')
-checkdepends=('python-oslotest' 'python2-oslotest' 'python-requests-mock' 
'python2-requests-mock'
-  'python-testrepository' 'python2-testrepository')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/openstack/python-openstackclient/archive/$pkgver.tar.gz;)
-sha512sums=('a6dc06f17c34b005e30ce9334d8256e53056388cb976b55ac025950054a831d3762d4cacd078aecfb8558987b10ab8e6a4d08ecab64f441a22388aa8c245a378')
-
-export PBR_VERSION=$pkgver
-
-prepare() {
-  cp -a python-openstackclient-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/python-openstackclient-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/python-openstackclient-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/python-openstackclient-$pkgver
-  python setup.py testr || warning "Tests failed: 
https://storyboard.openstack.org/#!/story/2003143;
-
-  cd "$srcdir"/python-openstackclient-$pkgver-py2
-  PYTHON=python2 python2 setup.py testr || warning "Tests failed: 
https://storyboard.openstack.org/#!/story/2003143;
-}
-
-package_python-openstackclient() {
-  depends=('python-six' 'python-pbr' 'python-babel' 'python-cliff' 
'python-keystoneclient'
-   'python-keystoneauth1' 'python-osc-lib' 'python-oslo-utils' 
'python-oslo-i18n'
-   'python-openstacksdk' 'python-glanceclient' 'python-novaclient' 
'python-cinderclient')
-
-  cd "$srcdir"/python-openstackclient-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-openstackclient() {
-  depends=('python2-six' 'python2-pbr' 'python2-babel' 'python2-cliff' 
'python2-keystoneclient'
-   'python2-keystoneauth1' 'python2-osc-lib' 'python2-oslo-utils' 
'python2-oslo-i18n'
-   'python2-openstacksdk' 'python2-glanceclient' 'python2-novaclient'
-   'python2-cinderclient')
-
-  cd "$srcdir"/python-openstackclient-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-
-  mv "$pkgdir"/usr/bin/openstack{,2}
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-openstackclient/repos/community-staging-any/PKGBUILD (from rev 
364902, python-openstackclient/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-07-30 03:14:57 UTC (rev 364903)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Wallace 
+
+pkgbase=python-openstackclient
+pkgname=(python-openstackclient python2-openstackclient)
+pkgver=3.16.0
+pkgrel=1
+pkgdesc="OpenStack Command-line Client"
+arch=('any')
+url="https://docs.openstack.org/python-openstackclient/latest/;
+license=('Apache')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-pbr' 
'python2-pbr' 'python-babel'
+ 'python2-babel' 'python-cliff' 'python2-cliff' 
'python-keystoneclient'
+ 'python2-keystoneclient' 'python-keystoneauth1' 
'python2-keystoneauth1'
+ 'python-osc-lib' 'python2-osc-lib' 'python-oslo-utils' 
'python2-oslo-utils'
+ 'python-oslo-i18n' 'python2-oslo-i18n' 'python-openstacksdk' 
'python2-openstacksdk'
+ 'python-glanceclient' 'python2-glanceclient' 'python-novaclient' 
'python2-novaclient'
+ 'python-cinderclient' 'python2-cinderclient')
+checkdepends=('python-oslotest' 'python2-oslotest' 'python-requests-mock' 
'python2-requests-mock'
+  

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

2018-07-29 Thread Felix Yan via arch-commits
Date: Monday, July 30, 2018 @ 01:18:43
  Author: felixonmars
Revision: 364901

upgpkg: python-hypothesis 3.66.12-1

Modified:
  python-hypothesis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-07-30 01:11:22 UTC (rev 364900)
+++ PKGBUILD2018-07-30 01:18:43 UTC (rev 364901)
@@ -3,7 +3,7 @@
 
 pkgbase=python-hypothesis
 pkgname=('python-hypothesis' 'python2-hypothesis')
-pkgver=3.66.11
+pkgver=3.66.12
 pkgrel=1
 pkgdesc="Advanced Quickcheck style testing library for Python"
 arch=('any')
@@ -17,7 +17,7 @@
   'python-django' 'python2-django' 'python-pytest-xdist' 
'python2-pytest-xdist'
   'python-mock' 'python2-mock' 'python-pandas' 'python2-pandas')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-$pkgver.tar.gz;)
-sha512sums=('4cd596fcda88ad00472b39a0f6fb8d7687c233910131e02bf80715a7fefb1e769f947613aea2964502335f986943fe2040404988393455f8d98befc1db8cc348')
+sha512sums=('e608bdbe44b7b6518a3f9aef7652e7f2eb1404207232a5573750101549f16ed400946fef9bb109ffb4e42374e2c6318c99791aed2289af337093937f6308')
 
 prepare() {
   mv hypothesis-hypothesis-python-$pkgver hypothesis-$pkgver


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

2018-07-29 Thread Felix Yan via arch-commits
Date: Monday, July 30, 2018 @ 01:19:07
  Author: felixonmars
Revision: 364902

archrelease: copy trunk to community-staging-any

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

--+
 PKGBUILD |  158 ++---
 1 file changed, 79 insertions(+), 79 deletions(-)

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

Copied: python-hypothesis/repos/community-staging-any/PKGBUILD (from rev 
364901, python-hypothesis/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-07-30 01:19:07 UTC (rev 364902)
@@ -0,0 +1,79 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-hypothesis
+pkgname=('python-hypothesis' 'python2-hypothesis')
+pkgver=3.66.12
+pkgrel=1
+pkgdesc="Advanced Quickcheck style testing library for Python"
+arch=('any')
+license=('MPL')
+url="https://hypothesis.readthedocs.org;
+makedepends=('python-setuptools' 'python2-setuptools' 'python-attrs' 
'python2-attrs'
+ 'python-coverage' 'python2-coverage' 'python2-enum34')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'flake8' 
'python2-flake8' 'python-pytz'
+  'python2-pytz' 'python-numpy' 'python2-numpy' 'python-faker' 
'python2-faker'
+  'python-flaky' 'python2-flaky' 'python-pytest-benchmark' 
'python2-pytest-benchmark'
+  'python-django' 

[arch-commits] Commit in jenkins/repos/community-any (14 files)

2018-07-29 Thread Felix Yan via arch-commits
Date: Monday, July 30, 2018 @ 01:11:22
  Author: felixonmars
Revision: 364900

archrelease: copy trunk to community-any

Added:
  jenkins/repos/community-any/LICENSE
(from rev 364899, jenkins/trunk/LICENSE)
  jenkins/repos/community-any/PKGBUILD
(from rev 364899, jenkins/trunk/PKGBUILD)
  jenkins/repos/community-any/jenkins.conf
(from rev 364899, jenkins/trunk/jenkins.conf)
  jenkins/repos/community-any/jenkins.install
(from rev 364899, jenkins/trunk/jenkins.install)
  jenkins/repos/community-any/jenkins.service
(from rev 364899, jenkins/trunk/jenkins.service)
  jenkins/repos/community-any/jenkins.sysusers
(from rev 364899, jenkins/trunk/jenkins.sysusers)
  jenkins/repos/community-any/jenkins.tmpfiles
(from rev 364899, jenkins/trunk/jenkins.tmpfiles)
Deleted:
  jenkins/repos/community-any/LICENSE
  jenkins/repos/community-any/PKGBUILD
  jenkins/repos/community-any/jenkins.conf
  jenkins/repos/community-any/jenkins.install
  jenkins/repos/community-any/jenkins.service
  jenkins/repos/community-any/jenkins.sysusers
  jenkins/repos/community-any/jenkins.tmpfiles

--+
 LICENSE  |   46 +--
 PKGBUILD |   90 ++---
 jenkins.conf |   26 +++
 jenkins.install  |   14 
 jenkins.service  |   48 ++--
 jenkins.sysusers |4 +-
 jenkins.tmpfiles |2 -
 7 files changed, 115 insertions(+), 115 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2018-07-30 01:10:43 UTC (rev 364899)
+++ LICENSE 2018-07-30 01:11:22 UTC (rev 364900)
@@ -1,23 +0,0 @@
-The MIT License
-
-Copyright (c) 2004-, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number 
of other of contributors
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.
-
-

Copied: jenkins/repos/community-any/LICENSE (from rev 364899, 
jenkins/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2018-07-30 01:11:22 UTC (rev 364900)
@@ -0,0 +1,23 @@
+The MIT License
+
+Copyright (c) 2004-, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number 
of other of contributors
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+
+

Deleted: PKGBUILD
===
--- PKGBUILD2018-07-30 01:10:43 UTC (rev 364899)
+++ PKGBUILD2018-07-30 01:11:22 UTC (rev 364900)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Alexander Rødseth 
-# Contributor: Marcel Huber 
-# Contributor: Illarion Kovalchuk 
-
-pkgname=jenkins
-pkgver=2.134
-pkgrel=1
-pkgdesc='Extendable continuous integration server (latest)'
-arch=('any')
-url='https://jenkins.io'
-license=('MIT')
-depends=('java-runtime=8' 'ttf-dejavu' 'libcups')
-provides=('jenkins-ci')
-conflicts=('jenkins-ci')
-replaces=('jenkins-ci')
-backup=('etc/conf.d/jenkins')

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

2018-07-29 Thread Felix Yan via arch-commits
Date: Monday, July 30, 2018 @ 01:10:43
  Author: felixonmars
Revision: 364899

upgpkg: jenkins 2.135-1

Modified:
  jenkins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-07-30 00:02:25 UTC (rev 364898)
+++ PKGBUILD2018-07-30 01:10:43 UTC (rev 364899)
@@ -5,7 +5,7 @@
 # Contributor: Illarion Kovalchuk 
 
 pkgname=jenkins
-pkgver=2.134
+pkgver=2.135
 pkgrel=1
 pkgdesc='Extendable continuous integration server (latest)'
 arch=('any')
@@ -25,7 +25,7 @@
 'jenkins.tmpfiles'
 'jenkins.sysusers'
 'LICENSE')
-sha512sums=('786f27f9079c2b3c5c5d1299ea30e547b46b3496903ce012291450b2f6b6339ca0127e40e86961fe2ab7358e8eb8bae32bed40531c9e0bf93a1a44852f412979'
+sha512sums=('42c6163da1686895de89b56bc4aa85151eb871d562af51bfb8c80e973d9e4ef71e293c6d77a0abce4d6a6773c918b40f13b6622fe88d16ad9a5959b0ca22f7f1'
 
'3a8421cef3953d899c150609f959cf5d5dd6d08d079a5e0f48bfece4f3c80491722b9e90ef841fddb87401c226b8338297c5c4e83e55a33ef8d6e387de3048d0'
 
'a336b006d3711abb75b49a2e12c09ee61cf3275a2cdbbd3676480e2f6ca8ba0fb4b9c08f3f9da193252c4fca827e9a1d5eaad847d0a889445693427ae1571fe7'
 
'a845a7147be54affc586dfce9a188ec24c92e673e88dec0b62da386d2e597de6ecda103429008562abd897f179a52c37cf2188ebc65b8c636efd07d707e18f90'


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

2018-07-29 Thread Eli Schwartz via arch-commits
Date: Monday, July 30, 2018 @ 00:02:25
  Author: eschwartz
Revision: 364898

archrelease: copy trunk to community-x86_64

Added:
  busybox/repos/community-x86_64/PKGBUILD
(from rev 364897, busybox/trunk/PKGBUILD)
  busybox/repos/community-x86_64/config
(from rev 364897, busybox/trunk/config)
Deleted:
  busybox/repos/community-x86_64/PKGBUILD
  busybox/repos/community-x86_64/config

--+
 PKGBUILD |   76 +
 config   | 2330 ++---
 2 files changed, 1214 insertions(+), 1192 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-07-30 00:01:55 UTC (rev 364897)
+++ PKGBUILD2018-07-30 00:02:25 UTC (rev 364898)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Jens Pranaitis 
-
-pkgname=busybox
-pkgver=1.28.4
-pkgrel=2
-pkgdesc="Utilities for rescue and embedded systems"
-arch=("x86_64")
-url="https://www.busybox.net;
-license=('GPL')
-makedepends=("ncurses" "musl" "kernel-headers-musl")
-source=("$url/downloads/$pkgname-$pkgver.tar.bz2"
-"config")
-sha256sums=('e3c14a3699dc7e82fed397392957afc78e37bdf25398ac38ead6e84621b2ae6a'
-'7a067356b7e0f85ce1ba0aa6d2fd4f14de14872e80f7dd2f3cedd7e31d6c5a5b')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  cp "$srcdir"/config .config
-  # reproducible build
-  export KCONFIG_NOTIMESTAMP=1
-  make CC=musl-gcc
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  install -Dm0755 busybox "$pkgdir"/usr/bin/busybox
-
-  # docs
-  install -Dm644 docs/busybox.1 "$pkgdir"/usr/share/man/man1/busybox.1
-  for doc in BusyBox.html BusyBox.txt; do
-install -Dm644 docs/$doc "$pkgdir"/usr/share/doc/$pkgname/$doc
-  done
-}

Copied: busybox/repos/community-x86_64/PKGBUILD (from rev 364897, 
busybox/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-07-30 00:02:25 UTC (rev 364898)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Jens Pranaitis 
+
+pkgname=busybox
+pkgver=1.29.1
+pkgrel=1
+pkgdesc="Utilities for rescue and embedded systems"
+arch=("x86_64")
+url="https://www.busybox.net;
+license=('GPL')
+makedepends=("ncurses" "musl" "kernel-headers-musl")
+source=("$url/downloads/$pkgname-$pkgver.tar.bz2"{,.sig}
+"config")
+sha256sums=('fc250730ea16d28839bfecda3c431683fa6bd4273ffca6b632cbeb3556c914c3'
+'SKIP'
+'858835074fd5bb22551f8aceb92581a1132650f75dfb18c0afdbd521a5a9dcfa')
+validpgpkeys=('C9E9416F76E610DBD09D040F47B70C55ACC9965B') # Denis Vlasenko 

+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  cp "$srcdir"/config .config
+  # reproducible build
+  export KCONFIG_NOTIMESTAMP=1
+  make CC=musl-gcc
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  install -Dm0755 busybox "$pkgdir"/usr/bin/busybox
+
+  # docs
+  install -Dm644 docs/busybox.1 "$pkgdir"/usr/share/man/man1/busybox.1
+  for doc in BusyBox.html BusyBox.txt; do
+install -Dm644 docs/$doc "$pkgdir"/usr/share/doc/$pkgname/$doc
+  done
+}

Deleted: config
===
--- config  2018-07-30 00:01:55 UTC (rev 364897)
+++ config  2018-07-30 00:02:25 UTC (rev 364898)
@@ -1,1155 +0,0 @@
-#
-# Automatically generated make config: don't edit
-# Busybox version: 1.28.4
-# Sun May 27 12:17:21 2018
-#
-CONFIG_HAVE_DOT_CONFIG=y
-
-#
-# Settings
-#
-CONFIG_DESKTOP=y
-# CONFIG_EXTRA_COMPAT is not set
-# CONFIG_FEDORA_COMPAT is not set
-CONFIG_INCLUDE_SUSv2=y
-CONFIG_LONG_OPTS=y
-CONFIG_SHOW_USAGE=y
-CONFIG_FEATURE_VERBOSE_USAGE=y
-CONFIG_FEATURE_COMPRESS_USAGE=y
-CONFIG_LFS=y
-# CONFIG_PAM is not set
-CONFIG_FEATURE_DEVPTS=y
-# CONFIG_FEATURE_UTMP is not set
-# CONFIG_FEATURE_WTMP is not set
-CONFIG_FEATURE_PIDFILE=y
-CONFIG_PID_FILE_PATH="/run"
-CONFIG_BUSYBOX=y
-CONFIG_FEATURE_INSTALLER=y
-# CONFIG_INSTALL_NO_USR is not set
-CONFIG_FEATURE_SUID=y
-CONFIG_FEATURE_SUID_CONFIG=y
-CONFIG_FEATURE_SUID_CONFIG_QUIET=y
-CONFIG_FEATURE_PREFER_APPLETS=y
-CONFIG_BUSYBOX_EXEC_PATH="/proc/self/exe"
-# CONFIG_SELINUX is not set
-# CONFIG_FEATURE_CLEAN_UP is not set
-CONFIG_FEATURE_SYSLOG=y
-CONFIG_PLATFORM_LINUX=y
-
-#
-# Build Options
-#
-CONFIG_STATIC=y
-# CONFIG_PIE is not set
-# CONFIG_NOMMU is not set
-# CONFIG_BUILD_LIBBUSYBOX is not set
-# CONFIG_FEATURE_LIBBUSYBOX_STATIC is not set
-# CONFIG_FEATURE_INDIVIDUAL is not set
-# CONFIG_FEATURE_SHARED_BUSYBOX is not set
-CONFIG_CROSS_COMPILER_PREFIX=""
-CONFIG_SYSROOT=""
-CONFIG_EXTRA_CFLAGS=""
-CONFIG_EXTRA_LDFLAGS=""
-CONFIG_EXTRA_LDLIBS=""
-# CONFIG_USE_PORTABLE_CODE is not set
-
-#
-# Installation Options ("make install" behavior)
-#
-# CONFIG_INSTALL_APPLET_SYMLINKS is not set
-# CONFIG_INSTALL_APPLET_HARDLINKS is not set
-# CONFIG_INSTALL_APPLET_SCRIPT_WRAPPERS is not set
-CONFIG_INSTALL_APPLET_DONT=y
-# CONFIG_INSTALL_SH_APPLET_SYMLINK is not set
-# 

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

2018-07-29 Thread Eli Schwartz via arch-commits
Date: Monday, July 30, 2018 @ 00:01:55
  Author: eschwartz
Revision: 364897

upgpkg: busybox 1.29.1-1

upstream release

Modified:
  busybox/trunk/PKGBUILD
  busybox/trunk/config

--+
 PKGBUILD |   12 +++-
 config   |   28 
 2 files changed, 31 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-07-29 21:51:08 UTC (rev 364896)
+++ PKGBUILD2018-07-30 00:01:55 UTC (rev 364897)
@@ -3,17 +3,19 @@
 # Contributor: Jens Pranaitis 
 
 pkgname=busybox
-pkgver=1.28.4
-pkgrel=2
+pkgver=1.29.1
+pkgrel=1
 pkgdesc="Utilities for rescue and embedded systems"
 arch=("x86_64")
 url="https://www.busybox.net;
 license=('GPL')
 makedepends=("ncurses" "musl" "kernel-headers-musl")
-source=("$url/downloads/$pkgname-$pkgver.tar.bz2"
+source=("$url/downloads/$pkgname-$pkgver.tar.bz2"{,.sig}
 "config")
-sha256sums=('e3c14a3699dc7e82fed397392957afc78e37bdf25398ac38ead6e84621b2ae6a'
-'7a067356b7e0f85ce1ba0aa6d2fd4f14de14872e80f7dd2f3cedd7e31d6c5a5b')
+sha256sums=('fc250730ea16d28839bfecda3c431683fa6bd4273ffca6b632cbeb3556c914c3'
+'SKIP'
+'858835074fd5bb22551f8aceb92581a1132650f75dfb18c0afdbd521a5a9dcfa')
+validpgpkeys=('C9E9416F76E610DBD09D040F47B70C55ACC9965B') # Denis Vlasenko 

 
 build() {
   cd "$srcdir/$pkgname-$pkgver"

Modified: config
===
--- config  2018-07-29 21:51:08 UTC (rev 364896)
+++ config  2018-07-30 00:01:55 UTC (rev 364897)
@@ -1,7 +1,7 @@
 #
 # Automatically generated make config: don't edit
-# Busybox version: 1.28.4
-# Sun May 27 12:17:21 2018
+# Busybox version: 1.29.1
+# Sun Jul 29 19:56:13 2018
 #
 CONFIG_HAVE_DOT_CONFIG=y
 
@@ -52,6 +52,7 @@
 CONFIG_EXTRA_LDFLAGS=""
 CONFIG_EXTRA_LDLIBS=""
 # CONFIG_USE_PORTABLE_CODE is not set
+CONFIG_STACK_OPTIMIZATION_386=y
 
 #
 # Installation Options ("make install" behavior)
@@ -90,6 +91,7 @@
 CONFIG_SHA3_SMALL=1
 CONFIG_FEATURE_FAST_TOP=y
 # CONFIG_FEATURE_ETC_NETWORKS is not set
+# CONFIG_FEATURE_ETC_SERVICES is not set
 CONFIG_FEATURE_EDITING=y
 CONFIG_FEATURE_EDITING_MAX_LEN=1024
 # CONFIG_FEATURE_EDITING_VI is not set
@@ -100,6 +102,7 @@
 CONFIG_FEATURE_TAB_COMPLETION=y
 CONFIG_FEATURE_USERNAME_COMPLETION=y
 CONFIG_FEATURE_EDITING_FANCY_PROMPT=y
+CONFIG_FEATURE_EDITING_WINCH=y
 # CONFIG_FEATURE_EDITING_ASK_TERMINAL is not set
 CONFIG_LOCALE_SUPPORT=y
 CONFIG_UNICODE_SUPPORT=y
@@ -149,6 +152,7 @@
 CONFIG_XZCAT=y
 CONFIG_XZ=y
 CONFIG_BZIP2=y
+CONFIG_BZIP2_SMALL=8
 CONFIG_FEATURE_BZIP2_DECOMPRESS=y
 CONFIG_CPIO=y
 CONFIG_FEATURE_CPIO_O=y
@@ -286,6 +290,7 @@
 CONFIG_FEATURE_FLOAT_SLEEP=y
 CONFIG_SORT=y
 CONFIG_FEATURE_SORT_BIG=y
+# CONFIG_FEATURE_SORT_OPTIMIZE_MEMORY is not set
 CONFIG_SPLIT=y
 CONFIG_FEATURE_SPLIT_FANCY=y
 CONFIG_STAT=y
@@ -477,6 +482,7 @@
 CONFIG_HALT=y
 CONFIG_POWEROFF=y
 CONFIG_REBOOT=y
+# CONFIG_FEATURE_WAIT_FOR_INIT is not set
 # CONFIG_FEATURE_CALL_TELINIT is not set
 CONFIG_TELINIT_PATH=""
 CONFIG_INIT=y
@@ -704,6 +710,7 @@
 CONFIG_FEATURE_VOLUMEID_HFS=y
 CONFIG_FEATURE_VOLUMEID_ISO9660=y
 CONFIG_FEATURE_VOLUMEID_JFS=y
+# CONFIG_FEATURE_VOLUMEID_LFS is not set
 CONFIG_FEATURE_VOLUMEID_LINUXRAID=y
 CONFIG_FEATURE_VOLUMEID_LINUXSWAP=y
 CONFIG_FEATURE_VOLUMEID_LUKS=y
@@ -778,8 +785,10 @@
 CONFIG_FEATURE_LESS_REGEXP=y
 CONFIG_FEATURE_LESS_WINCH=y
 CONFIG_FEATURE_LESS_ASK_TERMINAL=y
-# CONFIG_FEATURE_LESS_DASHCMD is not set
-# CONFIG_FEATURE_LESS_LINENUMS is not set
+CONFIG_FEATURE_LESS_DASHCMD=y
+CONFIG_FEATURE_LESS_LINENUMS=y
+CONFIG_FEATURE_LESS_RAW=y
+CONFIG_FEATURE_LESS_ENV=y
 CONFIG_LSSCSI=y
 CONFIG_MAKEDEVS=y
 # CONFIG_FEATURE_MAKEDEVS_LEAF is not set
@@ -899,6 +908,8 @@
 CONFIG_FEATURE_NETSTAT_WIDE=y
 CONFIG_FEATURE_NETSTAT_PRG=y
 CONFIG_NSLOOKUP=y
+CONFIG_FEATURE_NSLOOKUP_BIG=y
+CONFIG_FEATURE_NSLOOKUP_LONG_OPTIONS=y
 CONFIG_NTPD=y
 CONFIG_FEATURE_NTPD_SERVER=y
 CONFIG_FEATURE_NTPD_CONF=y
@@ -909,6 +920,8 @@
 CONFIG_ROUTE=y
 CONFIG_SLATTACH=y
 CONFIG_SSL_CLIENT=y
+CONFIG_TC=y
+CONFIG_FEATURE_TC_INGRESS=y
 CONFIG_TCPSVD=y
 CONFIG_UDPSVD=y
 CONFIG_TELNET=y
@@ -960,6 +973,7 @@
 CONFIG_FEATURE_UDHCPC6_RFC3646=y
 CONFIG_FEATURE_UDHCPC6_RFC4704=y
 CONFIG_FEATURE_UDHCPC6_RFC4833=y
+CONFIG_FEATURE_UDHCPC6_RFC5970=y
 
 #
 # Common options for DHCP applets
@@ -1046,6 +1060,7 @@
 CONFIG_SV=y
 CONFIG_SV_DEFAULT_SERVICE_DIR="/var/service"
 CONFIG_SVC=y
+CONFIG_SVOK=y
 CONFIG_SVLOGD=y
 # CONFIG_CHCON is not set
 # CONFIG_GETENFORCE is not set
@@ -1074,6 +1089,8 @@
 CONFIG_ASH_OPTIMIZE_FOR_SIZE=y
 CONFIG_ASH_INTERNAL_GLOB=y
 CONFIG_ASH_BASH_COMPAT=y
+CONFIG_ASH_BASH_SOURCE_CURDIR=y
+CONFIG_ASH_BASH_NOT_FOUND_HOOK=y
 CONFIG_ASH_JOB_CONTROL=y
 CONFIG_ASH_ALIAS=y
 CONFIG_ASH_RANDOM_SUPPORT=y
@@ -1090,6 +1107,8 @@
 # CONFIG_HUSH is not set
 # CONFIG_HUSH_BASH_COMPAT is not set
 # CONFIG_HUSH_BRACE_EXPANSION is not set
+# CONFIG_HUSH_LINENO_VAR is not set
+# CONFIG_HUSH_BASH_SOURCE_CURDIR is not set
 # 

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

2018-07-29 Thread Jerome Leclanche via arch-commits
Date: Sunday, July 29, 2018 @ 21:51:08
  Author: jleclanche
Revision: 364896

archrelease: copy trunk to community-any

Added:
  prettier/repos/community-any/PKGBUILD
(from rev 364895, prettier/trunk/PKGBUILD)
Deleted:
  prettier/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-07-29 21:48:37 UTC (rev 364895)
+++ PKGBUILD2018-07-29 21:51:08 UTC (rev 364896)
@@ -1,22 +0,0 @@
-# $Id$
-# Maintainer: Jerome Leclanche 
-
-pkgname=prettier
-pkgver=1.11.1
-pkgrel=1
-pkgdesc="An opinionated code formatter for JavScript, ES2017, JSX, Flow, 
TypeScript, JSON, CSS, LESS, SCSS, GraphQL, Markdown"
-arch=("any")
-
-url="https://prettier.io/;
-license=("MIT")
-depends=("nodejs")
-makedepends=("npm")
-source=("https://registry.npmjs.org/less/-/$pkgname-$pkgver.tgz;)
-sha256sums=("48de130547af17495b26838de4eca6162dfaebf55a9b9696fa4ed51c38820435")
-noextract=("$pkgname-$pkgver.tgz")
-
-
-package() {
-   npm install -g --prefix "$pkgdir/usr" "$srcdir"/$pkgname-$pkgver.tgz
-   rmdir "$pkgdir/usr/etc"
-}

Copied: prettier/repos/community-any/PKGBUILD (from rev 364895, 
prettier/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-07-29 21:51:08 UTC (rev 364896)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jerome Leclanche 
+
+pkgname=prettier
+pkgver=1.14.0
+pkgrel=1
+pkgdesc="An opinionated code formatter for JS, JSON, CSS, YAML and much more"
+arch=("any")
+url="https://prettier.io/;
+license=("MIT")
+depends=("nodejs")
+makedepends=("yarn")
+source=("https://github.com/$pkgname/$pkgname/archive/$pkgver.tar.gz;)
+sha256sums=("ac3f10aa6fefc312674cea2d71ba67621adeed458d8902b8c1a18256c43b252c")
+
+
+build() {
+   cd "$srcdir/$pkgname-$pkgver"
+   yarn
+   yarn build
+}
+
+
+package() {
+   install -d "$pkgdir/usr/lib/$pkgname"
+   cd "$pkgdir/usr/lib/$pkgname"
+   cp -a "$srcdir/$pkgname-$pkgver/dist/"* .
+   install -d "$pkgdir/usr/bin"
+   ln -s "/usr/lib/$pkgname/bin-$pkgname.js" "$pkgdir/usr/bin/$pkgname"
+}


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

2018-07-29 Thread Jerome Leclanche via arch-commits
Date: Sunday, July 29, 2018 @ 21:48:37
  Author: jleclanche
Revision: 364895

upgpkg: prettier 1.14.0-1

Upstream release 1.14.0

Modified:
  prettier/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-07-29 21:19:33 UTC (rev 364894)
+++ PKGBUILD2018-07-29 21:48:37 UTC (rev 364895)
@@ -2,21 +2,29 @@
 # Maintainer: Jerome Leclanche 
 
 pkgname=prettier
-pkgver=1.11.1
+pkgver=1.14.0
 pkgrel=1
-pkgdesc="An opinionated code formatter for JavScript, ES2017, JSX, Flow, 
TypeScript, JSON, CSS, LESS, SCSS, GraphQL, Markdown"
+pkgdesc="An opinionated code formatter for JS, JSON, CSS, YAML and much more"
 arch=("any")
-
 url="https://prettier.io/;
 license=("MIT")
 depends=("nodejs")
-makedepends=("npm")
-source=("https://registry.npmjs.org/less/-/$pkgname-$pkgver.tgz;)
-sha256sums=("48de130547af17495b26838de4eca6162dfaebf55a9b9696fa4ed51c38820435")
-noextract=("$pkgname-$pkgver.tgz")
+makedepends=("yarn")
+source=("https://github.com/$pkgname/$pkgname/archive/$pkgver.tar.gz;)
+sha256sums=("ac3f10aa6fefc312674cea2d71ba67621adeed458d8902b8c1a18256c43b252c")
 
 
+build() {
+   cd "$srcdir/$pkgname-$pkgver"
+   yarn
+   yarn build
+}
+
+
 package() {
-   npm install -g --prefix "$pkgdir/usr" "$srcdir"/$pkgname-$pkgver.tgz
-   rmdir "$pkgdir/usr/etc"
+   install -d "$pkgdir/usr/lib/$pkgname"
+   cd "$pkgdir/usr/lib/$pkgname"
+   cp -a "$srcdir/$pkgname-$pkgver/dist/"* .
+   install -d "$pkgdir/usr/bin"
+   ln -s "/usr/lib/$pkgname/bin-$pkgname.js" "$pkgdir/usr/bin/$pkgname"
 }


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

2018-07-29 Thread Kyle Keen via arch-commits
Date: Sunday, July 29, 2018 @ 21:19:14
  Author: kkeen
Revision: 364893

upgpkg: seamonkey 2.49.4-1

Modified:
  seamonkey/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-07-29 20:20:58 UTC (rev 364892)
+++ PKGBUILD2018-07-29 21:19:14 UTC (rev 364893)
@@ -2,7 +2,7 @@
 # Maintainer: Kyle Keen 
 
 pkgname=seamonkey
-pkgver=2.49.3
+pkgver=2.49.4
 pkgrel=1
 pkgdesc="SeaMonkey internet suite"
 arch=('x86_64')
@@ -19,7 +19,7 @@
 seamonkey-2.0-lang.patch
 patch-bug1435212.xz
no-crmf.diff)
-sha256sums=('1823ed983bbc62e40f622288d5b24be9214ff28f15bf3f21028cc992fa96484b'
+sha256sums=('c8a66774d0a3525698b559fa2c41397186f2de99c5733e35b8eafb0ae5ccc4ee'
 'da8cc2001ae77f2b357d267f9f8d3d7e48c7d37b99ff3fb73fbbfc0b9329744a'
 'ab19d10fbd6258aec37ab5e5efb12429814b2c24a1193284a48dd654311b4e2e'
 'dce68858694f820a9a1fc2428038a88ea00b4835cea0778734db794fea3bb21a'


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

2018-07-29 Thread Kyle Keen via arch-commits
Date: Sunday, July 29, 2018 @ 21:19:33
  Author: kkeen
Revision: 364894

archrelease: copy trunk to community-x86_64

Added:
  seamonkey/repos/community-x86_64/PKGBUILD
(from rev 364893, seamonkey/trunk/PKGBUILD)
  seamonkey/repos/community-x86_64/mozconfig
(from rev 364893, seamonkey/trunk/mozconfig)
  seamonkey/repos/community-x86_64/no-crmf.diff
(from rev 364893, seamonkey/trunk/no-crmf.diff)
  seamonkey/repos/community-x86_64/patch-bug1435212.xz
(from rev 364893, seamonkey/trunk/patch-bug1435212.xz)
  seamonkey/repos/community-x86_64/seamonkey-2.0-lang.patch
(from rev 364893, seamonkey/trunk/seamonkey-2.0-lang.patch)
Deleted:
  seamonkey/repos/community-x86_64/PKGBUILD
  seamonkey/repos/community-x86_64/mozconfig
  seamonkey/repos/community-x86_64/no-crmf.diff
  seamonkey/repos/community-x86_64/patch-bug1435212.xz
  seamonkey/repos/community-x86_64/seamonkey-2.0-lang.patch

--+
 PKGBUILD |  190 ++---
 mozconfig|   78 +-
 no-crmf.diff |   30 +++
 seamonkey-2.0-lang.patch |   22 ++---
 4 files changed, 160 insertions(+), 160 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-07-29 21:19:14 UTC (rev 364893)
+++ PKGBUILD2018-07-29 21:19:33 UTC (rev 364894)
@@ -1,95 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen 
-
-pkgname=seamonkey
-pkgver=2.49.3
-pkgrel=1
-pkgdesc="SeaMonkey internet suite"
-arch=('x86_64')
-license=('MPL')
-depends=('alsa-lib'  'dbus-glib'  'desktop-file-utils'  'gtk2' 'gtk3' 
'hunspell'  'libevent'  'libnotify'  'libvpx'  'libxt' 'mime-types'  
'mozilla-common'  'nss'  'sqlite'  'startup-notification' 'libpulse' 'icu' 
'gconf')
-makedepends=('unzip' 'zip' 'pkg-config'  'python2' 'yasm' 'wireless_tools' 
'mesa' 'autoconf2.13' 'imake' 'python3' 'gst-plugins-base')
-optdepends=('gst-plugins-base: vorbis decoding, ogg demuxing'
-'gst-plugins-bad: aac, vp8 and opus decoding'
-'gst-plugins-good: webm and mp4 demuxing'
-'gst-plugins-ugly: h.264 decoding')
-url="http://www.seamonkey-project.org/;
-source=("https://archive.mozilla.org/pub/mozilla.org/seamonkey/releases/$pkgver/source/seamonkey-$pkgver.source.tar.xz;
-mozconfig
-seamonkey-2.0-lang.patch
-patch-bug1435212.xz
-   no-crmf.diff)
-sha256sums=('1823ed983bbc62e40f622288d5b24be9214ff28f15bf3f21028cc992fa96484b'
-'da8cc2001ae77f2b357d267f9f8d3d7e48c7d37b99ff3fb73fbbfc0b9329744a'
-'ab19d10fbd6258aec37ab5e5efb12429814b2c24a1193284a48dd654311b4e2e'
-'dce68858694f820a9a1fc2428038a88ea00b4835cea0778734db794fea3bb21a'
-'fb85a538044c15471c12cf561d6aa74570f8de7b054a7063ef88ee1bdfc1ccbb')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-  cp ../mozconfig .mozconfig
-  #patch -Np1 -i ../seamonkey-2.0-lang.patch
-
-  # FS#48404
-  #echo "ac_add_options --enable-gstreamer=1.0" >> .mozconfig
-
-  # ffmpeg 4.0 patch from freebsd
-  # 
https://github.com/freebsd/freebsd-ports/blob/master/www/seamonkey/files/patch-bug1435212
-  patch -Np1 -d mozilla -i ../../patch-bug1435212
-
-  # Don't exit with error when some libs are missing which we have in
-  # system.
-  sed -i '/^MOZ_PKG_FATAL_WARNINGS/s@= 1@= 0@' suite/installer/Makefile.in
-
-  # configure script misdetects the preprocessor without an optimization level
-  sed -i '/ac_cpp=/s/$CPPFLAGS/& -O2/' configure
-
-  # 2.26 build fix from wgnie (blfs ch 37)
-  sed -i 's/$(MOZ_ZLIB_CFLAGS)/& $(MOZ_PIXMAN_CFLAGS)/' config/config.mk
-
-  # work around from FS#54395
-  patch -Np1 -d mozilla -i ../../no-crmf.diff
-  sed -i "s/'crmf',//" mozilla/security/manager/ssl/moz.build
-  sed -i 's/^.*-lcrmf/#&/' mozilla/config/external/nss/crmf/moz.build
-  sed -i 's/ -lcrmf"/"/' mozilla/old-configure.in.orig
-  sed -i 's/ -lcrmf"/"/' mozilla/old-configure
-  sed -i 's/SDK_LIBS = crmf/SDK_LIBS = /' 
mozilla/config/external/nss/Makefile.in
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  export LDFLAGS="$LDFLAGS -Wl,-rpath,/usr/lib/seamonkey-$pkgver"
-  export MOZ_MAKE_FLAGS="$MAKEFLAGS"
-  unset MAKEFLAGS
-  unset CPPFLAGS
-
-  # GCC 6
-  CFLAGS+=" -fno-delete-null-pointer-checks -fno-lifetime-dse 
-fno-schedule-insns2"
-  CXXFLAGS+=" -fno-delete-null-pointer-checks -fno-lifetime-dse 
-fno-schedule-insns2"
-
-  make -j1 -f client.mk build
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  make -j1 -f client.mk DESTDIR="$pkgdir" INSTALL_SDK= install
-
-  rm -rf "$pkgdir"/usr/lib/seamonkey-$pkgver/{dictionaries,hyphenation}
-  ln -s /usr/share/hunspell "$pkgdir/usr/lib/seamonkey-$pkgver/dictionaries"
-  ln -s /usr/share/hyphen "$pkgdir/usr/lib/seamonkey-$pkgver/hyphenation"
-
-  install -Dm644 suite/branding/nightly/icons/gtk/seamonkey.png \
-"$pkgdir/usr/share/pixmaps/seamonkey.png"
-
-  install -Dm644 mozilla/toolkit/mozapps/installer/linux/rpm/mozilla.desktop \
-

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

2018-07-29 Thread Morten Linderud via arch-commits
Date: Sunday, July 29, 2018 @ 20:20:58
  Author: foxboron
Revision: 364892

upgpkg: hy 0.15.0-1

Modified:
  hy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-07-29 20:17:46 UTC (rev 364891)
+++ PKGBUILD2018-07-29 20:20:58 UTC (rev 364892)
@@ -31,7 +31,7 @@
 cd "$pkgname-$pkgver"
 python setup.py develop --user
 PATH="$HOME/.local/bin:$PATH"
-python setup.py pytest --addopts "-k 'not test_bin'"
+python setup.py pytest #--addopts "-k 'not test_bin'"
 }
 
 package() {


[arch-commits] Commit in (embree2 luxblend25 luxrays luxrender)

2018-07-29 Thread Lukas Jirkovsky via arch-commits
Date: Sunday, July 29, 2018 @ 20:17:46
  Author: stativ
Revision: 364891

drop luxrender packages.

Deleted:
  embree2/
  luxblend25/
  luxrays/
  luxrender/


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

2018-07-29 Thread Eli Schwartz via arch-commits
Date: Sunday, July 29, 2018 @ 20:06:55
  Author: eschwartz
Revision: 364886

archrelease: copy trunk to community-staging-any

Added:
  python-openstackclient/repos/community-staging-any/
  python-openstackclient/repos/community-staging-any/PKGBUILD
(from rev 364885, python-openstackclient/trunk/PKGBUILD)

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

Copied: python-openstackclient/repos/community-staging-any/PKGBUILD (from rev 
364885, python-openstackclient/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2018-07-29 20:06:55 UTC (rev 364886)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Wallace 
+
+pkgbase=python-openstackclient
+pkgname=(python-openstackclient python2-openstackclient)
+pkgver=3.16.0
+pkgrel=1
+pkgdesc="OpenStack Command-line Client"
+arch=('any')
+url="https://docs.openstack.org/python-openstackclient/latest/;
+license=('Apache')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-pbr' 
'python2-pbr' 'python-babel'
+ 'python2-babel' 'python-cliff' 'python2-cliff' 
'python-keystoneclient'
+ 'python2-keystoneclient' 'python-keystoneauth1' 
'python2-keystoneauth1'
+ 'python-osc-lib' 'python2-osc-lib' 'python-oslo-utils' 
'python2-oslo-utils'
+ 'python-oslo-i18n' 'python2-oslo-i18n' 'python-openstacksdk' 
'python2-openstacksdk'
+ 'python-glanceclient' 'python2-glanceclient' 'python-novaclient' 
'python2-novaclient'
+ 'python-cinderclient' 'python2-cinderclient')
+checkdepends=('python-oslotest' 'python2-oslotest' 'python-requests-mock' 
'python2-requests-mock'
+  'python-testrepository' 'python2-testrepository')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/openstack/python-openstackclient/archive/$pkgver.tar.gz;)
+sha512sums=('a6dc06f17c34b005e30ce9334d8256e53056388cb976b55ac025950054a831d3762d4cacd078aecfb8558987b10ab8e6a4d08ecab64f441a22388aa8c245a378')
+
+export PBR_VERSION=$pkgver
+
+prepare() {
+  cp -a python-openstackclient-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/python-openstackclient-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/python-openstackclient-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/python-openstackclient-$pkgver
+  python setup.py testr || warning "Tests failed: 
https://storyboard.openstack.org/#!/story/2003143;
+
+  cd "$srcdir"/python-openstackclient-$pkgver-py2
+  PYTHON=python2 python2 setup.py testr || warning "Tests failed: 
https://storyboard.openstack.org/#!/story/2003143;
+}
+
+package_python-openstackclient() {
+  depends=('python-six' 'python-pbr' 'python-babel' 'python-cliff' 
'python-keystoneclient'
+   'python-keystoneauth1' 'python-osc-lib' 'python-oslo-utils' 
'python-oslo-i18n'
+   'python-openstacksdk' 'python-glanceclient' 'python-novaclient' 
'python-cinderclient')
+
+  cd "$srcdir"/python-openstackclient-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-openstackclient() {
+  depends=('python2-six' 'python2-pbr' 'python2-babel' 'python2-cliff' 
'python2-keystoneclient'
+   'python2-keystoneauth1' 'python2-osc-lib' 'python2-oslo-utils' 
'python2-oslo-i18n'
+   'python2-openstacksdk' 'python2-glanceclient' 'python2-novaclient'
+   'python2-cinderclient')
+
+  cd "$srcdir"/python-openstackclient-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+
+  mv "$pkgdir"/usr/bin/openstack{,2}
+}
+
+# vim:set ts=2 sw=2 et:


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

2018-07-29 Thread Eli Schwartz via arch-commits
Date: Sunday, July 29, 2018 @ 20:06:33
  Author: eschwartz
Revision: 364885

upgpkg: python-openstackclient 3.16.0-1

upstream release
python 3.7 rebuild

Modified:
  python-openstackclient/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-07-29 20:01:18 UTC (rev 364884)
+++ PKGBUILD2018-07-29 20:06:33 UTC (rev 364885)
@@ -4,11 +4,11 @@
 
 pkgbase=python-openstackclient
 pkgname=(python-openstackclient python2-openstackclient)
-pkgver=3.15.0
+pkgver=3.16.0
 pkgrel=1
 pkgdesc="OpenStack Command-line Client"
 arch=('any')
-url="http://docs.openstack.org/developer/python-openstackclient;
+url="https://docs.openstack.org/python-openstackclient/latest/;
 license=('Apache')
 makedepends=('python-setuptools' 'python2-setuptools' 'python-pbr' 
'python2-pbr' 'python-babel'
  'python2-babel' 'python-cliff' 'python2-cliff' 
'python-keystoneclient'
@@ -17,14 +17,15 @@
  'python-oslo-i18n' 'python2-oslo-i18n' 'python-openstacksdk' 
'python2-openstacksdk'
  'python-glanceclient' 'python2-glanceclient' 'python-novaclient' 
'python2-novaclient'
  'python-cinderclient' 'python2-cinderclient')
-checkdepends=('python-oslotest' 'python2-oslotest' 'python-requests-mock' 
'python2-requests-mock')
+checkdepends=('python-oslotest' 'python2-oslotest' 'python-requests-mock' 
'python2-requests-mock'
+  'python-testrepository' 'python2-testrepository')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/openstack/python-openstackclient/archive/$pkgver.tar.gz;)
-sha512sums=('add61798b179c6b83dc1638235358ece1b0e0672a277236a618995d56ce1d4f8f73299b13a086d4f1b23d39c112a67f7b54b5a461c84f580909c1f8f75780da2')
+sha512sums=('a6dc06f17c34b005e30ce9334d8256e53056388cb976b55ac025950054a831d3762d4cacd078aecfb8558987b10ab8e6a4d08ecab64f441a22388aa8c245a378')
 
+export PBR_VERSION=$pkgver
+
 prepare() {
   cp -a python-openstackclient-$pkgver{,-py2}
-
-  export PBR_VERSION=$pkgver
 }
 
 build() {
@@ -37,10 +38,10 @@
 
 check() {
   cd "$srcdir"/python-openstackclient-$pkgver
-  python setup.py testr || warning "Tests failed"
+  python setup.py testr || warning "Tests failed: 
https://storyboard.openstack.org/#!/story/2003143;
 
   cd "$srcdir"/python-openstackclient-$pkgver-py2
-  PYTHON=python2 python2 setup.py testr
+  PYTHON=python2 python2 setup.py testr || warning "Tests failed: 
https://storyboard.openstack.org/#!/story/2003143;
 }
 
 package_python-openstackclient() {


[arch-commits] Commit in python-osc-lib/repos/community-staging-any (2 files)

2018-07-29 Thread Eli Schwartz via arch-commits
Date: Sunday, July 29, 2018 @ 20:01:18
  Author: eschwartz
Revision: 364884

archrelease: copy trunk to community-staging-any

Added:
  python-osc-lib/repos/community-staging-any/PKGBUILD
(from rev 364883, python-osc-lib/trunk/PKGBUILD)
Deleted:
  python-osc-lib/repos/community-staging-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-07-29 20:00:54 UTC (rev 364883)
+++ PKGBUILD2018-07-29 20:01:18 UTC (rev 364884)
@@ -1,64 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Daniel Wallace 
-
-pkgbase=python-osc-lib
-pkgname=(python-osc-lib python2-osc-lib)
-pkgver=1.11.0
-pkgrel=1
-pkgdesc="OpenStackClient Library"
-arch=('any')
-url="https://docs.openstack.org/osc-lib/latest/;
-license=('Apache')
-makedepends=('git' 'python-setuptools' 'python2-setuptools' 'python-pbr' 
'python2-pbr'
- 'python-babel' 'python2-babel' 'python-cliff' 'python2-cliff'
- 'python-keystoneauth1' 'python2-keystoneauth1' 
'python-os-client-config'
- 'python2-os-client-config' 'python-oslo-i18n' 'python2-oslo-i18n' 
'python-oslo-utils'
- 'python2-oslo-utils' 'python-simplejson' 'python2-simplejson' 
'python-stevedore'
- 'python2-stevedore' 'python-openstacksdk' 'python2-openstacksdk')
-checkdepends=('python-oslotest' 'python2-oslotest' 'python-requests-mock'
-  'python2-requests-mock' 'python-testrepository' 
'python2-testrepository')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/openstack/osc-lib/archive/$pkgver.tar.gz;)
-sha512sums=('6b837b99b6fb59e2db3964d0c0ac14f0f457c80bcffe958f8e1b258ada82d93e1738a2763805f0af99ed0951136f687c85907179cab813c0a75e2694476dbaea')
-
-prepare() {
-  cp -a osc-lib-$pkgver{,-py2}
-
-  export PBR_VERSION=$pkgver
-}
-
-build() {
-  cd "$srcdir"/osc-lib-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/osc-lib-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/osc-lib-$pkgver
-  stestr run || warning "Tests failed"
-
-  cd "$srcdir"/osc-lib-$pkgver-py2
-  PYTHON=python2 stestr2 run || warning "Tests failed"
-}
-
-package_python-osc-lib() {
-  depends=('python-six' 'python-pbr' 'python-babel' 'python-cliff' 
'python-keystoneauth1'
-   'python-os-client-config' 'python-oslo-i18n' 'python-oslo-utils' 
'python-stevedore'
-   'python-simplejson' 'python-openstacksdk')
-
-  cd osc-lib-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-osc-lib() {
-  depends=('python2-six' 'python2-pbr' 'python2-babel' 'python2-cliff' 
'python2-keystoneauth1'
-   'python2-os-client-config' 'python2-oslo-i18n' 'python2-oslo-utils' 
'python2-stevedore'
-   'python2-simplejson' 'python2-openstacksdk')
-
-  cd osc-lib-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-osc-lib/repos/community-staging-any/PKGBUILD (from rev 364883, 
python-osc-lib/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-07-29 20:01:18 UTC (rev 364884)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Wallace 
+
+pkgbase=python-osc-lib
+pkgname=(python-osc-lib python2-osc-lib)
+pkgver=1.11.0
+pkgrel=2
+pkgdesc="OpenStackClient Library"
+arch=('any')
+url="https://docs.openstack.org/osc-lib/latest/;
+license=('Apache')
+makedepends=('git' 'python-setuptools' 'python2-setuptools' 'python-pbr' 
'python2-pbr'
+ 'python-babel' 'python2-babel' 'python-cliff' 'python2-cliff'
+ 'python-keystoneauth1' 'python2-keystoneauth1' 
'python-os-client-config'
+ 'python2-os-client-config' 'python-oslo-i18n' 'python2-oslo-i18n' 
'python-oslo-utils'
+ 'python2-oslo-utils' 'python-simplejson' 'python2-simplejson' 
'python-stevedore'
+ 'python2-stevedore' 'python-openstacksdk' 'python2-openstacksdk')
+checkdepends=('python-oslotest' 'python2-oslotest' 'python-requests-mock'
+  'python2-requests-mock' 'python-testrepository' 
'python2-testrepository')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/openstack/osc-lib/archive/$pkgver.tar.gz;)
+sha512sums=('6b837b99b6fb59e2db3964d0c0ac14f0f457c80bcffe958f8e1b258ada82d93e1738a2763805f0af99ed0951136f687c85907179cab813c0a75e2694476dbaea')
+
+export PBR_VERSION=$pkgver
+
+prepare() {
+  # https://storyboard.openstack.org/#!/story/2003142
+  sed -i 's/issubclass/isinstance/' osc-lib-$pkgver/osc_lib/utils/__init__.py
+  cp -a osc-lib-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/osc-lib-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/osc-lib-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/osc-lib-$pkgver
+  stestr run || warning "Tests failed"
+
+  cd 

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

2018-07-29 Thread Eli Schwartz via arch-commits
Date: Sunday, July 29, 2018 @ 20:00:54
  Author: eschwartz
Revision: 364883

upgpkg: python-osc-lib 1.11.0-2

fix another python 3.7 issue not caught in the latest release

Modified:
  python-osc-lib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-07-29 19:41:28 UTC (rev 364882)
+++ PKGBUILD2018-07-29 20:00:54 UTC (rev 364883)
@@ -5,7 +5,7 @@
 pkgbase=python-osc-lib
 pkgname=(python-osc-lib python2-osc-lib)
 pkgver=1.11.0
-pkgrel=1
+pkgrel=2
 pkgdesc="OpenStackClient Library"
 arch=('any')
 url="https://docs.openstack.org/osc-lib/latest/;
@@ -21,10 +21,12 @@
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/openstack/osc-lib/archive/$pkgver.tar.gz;)
 
sha512sums=('6b837b99b6fb59e2db3964d0c0ac14f0f457c80bcffe958f8e1b258ada82d93e1738a2763805f0af99ed0951136f687c85907179cab813c0a75e2694476dbaea')
 
+export PBR_VERSION=$pkgver
+
 prepare() {
+  # https://storyboard.openstack.org/#!/story/2003142
+  sed -i 's/issubclass/isinstance/' osc-lib-$pkgver/osc_lib/utils/__init__.py
   cp -a osc-lib-$pkgver{,-py2}
-
-  export PBR_VERSION=$pkgver
 }
 
 build() {


[arch-commits] Commit in realtime-privileges/repos/community-testing-any (12 files)

2018-07-29 Thread David Runge via arch-commits
Date: Sunday, July 29, 2018 @ 19:41:28
  Author: dvzrv
Revision: 364882

archrelease: copy trunk to community-testing-any

Added:
  realtime-privileges/repos/community-testing-any/40-realtime-privileges.rules
(from rev 364881, realtime-privileges/trunk/40-realtime-privileges.rules)
  realtime-privileges/repos/community-testing-any/99-realtime-privileges.conf
(from rev 364881, realtime-privileges/trunk/99-realtime-privileges.conf)
  realtime-privileges/repos/community-testing-any/ChangeLog
(from rev 364881, realtime-privileges/trunk/ChangeLog)
  realtime-privileges/repos/community-testing-any/PKGBUILD
(from rev 364881, realtime-privileges/trunk/PKGBUILD)
  realtime-privileges/repos/community-testing-any/realtime-privileges.install
(from rev 364881, realtime-privileges/trunk/realtime-privileges.install)
  
realtime-privileges/repos/community-testing-any/sysusers-realtime-privileges.conf
(from rev 364881, 
realtime-privileges/trunk/sysusers-realtime-privileges.conf)
Deleted:
  realtime-privileges/repos/community-testing-any/40-realtime-privileges.rules
  realtime-privileges/repos/community-testing-any/99-realtime-privileges.conf
  realtime-privileges/repos/community-testing-any/ChangeLog
  realtime-privileges/repos/community-testing-any/PKGBUILD
  realtime-privileges/repos/community-testing-any/realtime-privileges.install
  
realtime-privileges/repos/community-testing-any/sysusers-realtime-privileges.conf

---+
 40-realtime-privileges.rules  |   12 +++
 99-realtime-privileges.conf   |4 +-
 ChangeLog |   17 +-
 PKGBUILD  |   61 ++--
 realtime-privileges.install   |   14 
 sysusers-realtime-privileges.conf |6 +--
 6 files changed, 59 insertions(+), 55 deletions(-)

Deleted: 40-realtime-privileges.rules
===
--- 40-realtime-privileges.rules2018-07-29 19:41:18 UTC (rev 364881)
+++ 40-realtime-privileges.rules2018-07-29 19:41:28 UTC (rev 364882)
@@ -1,6 +0,0 @@
-# rw access to /dev/cpu_dma_latency to prevent CPUs from going into idle state
-KERNEL=="cpu_dma_latency", GROUP="realtime"
-# rw access to /dev/rtc0
-KERNEL=="rtc0", GROUP="realtimrealtimee"
-# rw access to /dev/hpet0
-KERNEL=="hpet", GROUP="realtime"

Copied: 
realtime-privileges/repos/community-testing-any/40-realtime-privileges.rules 
(from rev 364881, realtime-privileges/trunk/40-realtime-privileges.rules)
===
--- 40-realtime-privileges.rules(rev 0)
+++ 40-realtime-privileges.rules2018-07-29 19:41:28 UTC (rev 364882)
@@ -0,0 +1,6 @@
+# rw access to /dev/cpu_dma_latency to prevent CPUs from going into idle state
+KERNEL=="cpu_dma_latency", GROUP="realtime"
+# rw access to /dev/rtc0
+KERNEL=="rtc0", GROUP="realtime"
+# rw access to /dev/hpet0
+KERNEL=="hpet", GROUP="realtime"

Deleted: 99-realtime-privileges.conf
===
--- 99-realtime-privileges.conf 2018-07-29 19:41:18 UTC (rev 364881)
+++ 99-realtime-privileges.conf 2018-07-29 19:41:28 UTC (rev 364882)
@@ -1,2 +0,0 @@
-@realtime - rtprio 98
-@realtime - memlock unlimited

Copied: 
realtime-privileges/repos/community-testing-any/99-realtime-privileges.conf 
(from rev 364881, realtime-privileges/trunk/99-realtime-privileges.conf)
===
--- 99-realtime-privileges.conf (rev 0)
+++ 99-realtime-privileges.conf 2018-07-29 19:41:28 UTC (rev 364882)
@@ -0,0 +1,2 @@
+@realtime - rtprio 98
+@realtime - memlock unlimited

Deleted: ChangeLog
===
--- ChangeLog   2018-07-29 19:41:18 UTC (rev 364881)
+++ ChangeLog   2018-07-29 19:41:28 UTC (rev 364882)
@@ -1,7 +0,0 @@
-Changes with 1:
-   * Adding dedicated 'realtime' group using sysusers.d.
-   * Adding limits.conf drop in file. This adds rtprio 98 and memlock 
unlimited
-   for the realtime group.
-   * Adding access to /dev/cpu_dma_latency for group 'realtime' with the 
help
-   of a udev rule. This enables applications to stop the CPU from 
going to
-   idle states.

Copied: realtime-privileges/repos/community-testing-any/ChangeLog (from rev 
364881, realtime-privileges/trunk/ChangeLog)
===
--- ChangeLog   (rev 0)
+++ ChangeLog   2018-07-29 19:41:28 UTC (rev 364882)
@@ -0,0 +1,10 @@
+Changes with 2:
+   * Fixed a typo in the udev rule.
+
+Changes with 1:
+   * Adding dedicated 'realtime' group using sysusers.d.
+   * Adding limits.conf drop in file. This adds rtprio 98 and memlock 
unlimited
+   for the realtime group.
+   * Adding 

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

2018-07-29 Thread David Runge via arch-commits
Date: Sunday, July 29, 2018 @ 19:41:18
  Author: dvzrv
Revision: 364881

upgpkg: realtime-privileges 2-1

Fixing typo in udev rule.

Modified:
  realtime-privileges/trunk/40-realtime-privileges.rules
  realtime-privileges/trunk/ChangeLog
  realtime-privileges/trunk/PKGBUILD

--+
 40-realtime-privileges.rules |2 +-
 ChangeLog|3 +++
 PKGBUILD |7 ---
 3 files changed, 8 insertions(+), 4 deletions(-)

Modified: 40-realtime-privileges.rules
===
--- 40-realtime-privileges.rules2018-07-29 18:51:50 UTC (rev 364880)
+++ 40-realtime-privileges.rules2018-07-29 19:41:18 UTC (rev 364881)
@@ -1,6 +1,6 @@
 # rw access to /dev/cpu_dma_latency to prevent CPUs from going into idle state
 KERNEL=="cpu_dma_latency", GROUP="realtime"
 # rw access to /dev/rtc0
-KERNEL=="rtc0", GROUP="realtimrealtimee"
+KERNEL=="rtc0", GROUP="realtime"
 # rw access to /dev/hpet0
 KERNEL=="hpet", GROUP="realtime"

Modified: ChangeLog
===
--- ChangeLog   2018-07-29 18:51:50 UTC (rev 364880)
+++ ChangeLog   2018-07-29 19:41:18 UTC (rev 364881)
@@ -1,3 +1,6 @@
+Changes with 2:
+   * Fixed a typo in the udev rule.
+
 Changes with 1:
* Adding dedicated 'realtime' group using sysusers.d.
* Adding limits.conf drop in file. This adds rtprio 98 and memlock 
unlimited

Modified: PKGBUILD
===
--- PKGBUILD2018-07-29 18:51:50 UTC (rev 364880)
+++ PKGBUILD2018-07-29 19:41:18 UTC (rev 364881)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: David Runge 
 pkgname=realtime-privileges
-pkgver=1
+pkgver=2
 pkgrel=1
 pkgdesc="Realtime privileges for users"
 arch=('any')
@@ -16,8 +16,8 @@
 'ChangeLog')
 
sha512sums=('4d812d89561519fe79613d03b531408122a3ae729eba631187848c3480d6235b483102e8c647e6eb2f579293f462b0dae7f4f04d56e085063e24d69f3ed96b4a'
 
'2f4d048a3e3c6de75bb7432092e1943143507110ff33aa9f7f2ca4ed3f028536c8f910735f5218f0fa6cc89e8eae70699bcce18c0dadc07e518fc3cf33611518'
-
'10e047ec557540c3847ed8c1e494d59d52dc2d102a58d8cf210cbad6042740782172bd7e674c19f1f6048f5210576b075a494f9b4bba9cc5fd3e78f61fa35cc4'
-
'05a958946d691861e6803c1cfe4147159c09a43d6a9eca7169ad4c23009c4bea2890243307e21f3798746e65d877ba9b37f4f3e444a8560ef60b7f052296b27f')
+
'9b37478e352bd27b1e8f37996306054d71fa9a0afd589bfb6c77dc59eaced25517ecc5ecaaa7aa22cb0c9a865e2579e1e279d7cbe27986c661b4eb0c48bf1b1a'
+
'11f115c77867763424074234dbe4f4e87d83e0423ed1ebf43bb279bebda8ee64f8c44589f508f72ecce4e5f4b0824188f9d30cb36a799a60f35745b534f61f06')
 
 package() {
   # realtime group installed through sysusers.d
@@ -27,4 +27,5 @@
   install -vDm 644 "99-${pkgname}.conf" -t "${pkgdir}/etc/security/limits.d/"
   # udev rules, giving access to devices to realtime group
   install -vDm 644 "40-${pkgname}.rules" -t "${pkgdir}/usr/lib/udev/rules.d/"
+  install -vDm 644 ChangeLog -t "${pkgdir}/usr/share/doc/${pkgname}/"
 }


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

2018-07-29 Thread Evangelos Foutras via arch-commits
Date: Sunday, July 29, 2018 @ 18:51:50
  Author: foutrelis
Revision: 364880

archrelease: copy trunk to community-staging-any

Added:
  scapy3k/repos/community-staging-any/
  scapy3k/repos/community-staging-any/PKGBUILD
(from rev 364879, scapy3k/trunk/PKGBUILD)

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

Copied: scapy3k/repos/community-staging-any/PKGBUILD (from rev 364879, 
scapy3k/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2018-07-29 18:51:50 UTC (rev 364880)
@@ -0,0 +1,49 @@
+# Maintainer: Levente Polyak 
+
+pkgname=scapy3k
+_pkgname=scapy-python3
+pkgver=0.25
+pkgrel=1
+pkgdesc='Powerful interactive packet manipulation program (based on scapy) 
written in Python'
+url='https://github.com/phaethon/scapy'
+depends=('tcpdump' 'python' )
+optdepends=('python-cryptography: WEP decryption, IPsec and certificate 
support'
+'python-pyx: psdump() and pdfdump() functions'
+'python-matplotlib: plotting support'
+'python-netifaces: network interface information support'
+'graphviz: conversations() method support'
+'sox: for VOIP support')
+checkdepends=('python-cryptography' 'python-pyx' 'python-matplotlib' 
'python-netifaces' 'graphviz' 'sox')
+conflicts=('scapy')
+arch=('any')
+license=('GPL2')
+source=(https://pypi.org/packages/source/s/$_pkgname/$_pkgname-$pkgver.tar.gz)
+sha256sums=('2ae1b3bd9759844e830a6cc3ba11c3f25b08433a8ee3e7eddc08224905e5ef2b')
+sha512sums=('74cb8149e843962394425aec54f3aecc894c8d003efd6eb3d1a7ca0dea760cc30ed8fe7f08769c3dc2f959a32169adccf97006571c6f450cb678e624ac68da3d')
+
+prepare() {
+  cd ${_pkgname}-${pkgver}
+  sed -r 's|((bin\|doc)/(UT)?scapy)|\13k|g' -i setup.py
+  mv doc/scapy.1.gz doc/scapy3k.1.gz
+  mv bin/scapy{,3k}
+  mv bin/UTscapy{,3k}
+}
+
+build() {
+  cd ${_pkgname}-${pkgver}
+  python setup.py build
+}
+
+check() {
+  cd ${_pkgname}-${pkgver}/test
+  # Run only main tests, without network access
+  #./run_tests -K netaccess -F
+}
+
+package() {
+  cd ${_pkgname}-${pkgver}
+  python setup.py install -O1 --skip-build --root="${pkgdir}" --prefix=/usr
+  install -Dm 644 doc/scapy/*.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


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

2018-07-29 Thread Evangelos Foutras via arch-commits
Date: Sunday, July 29, 2018 @ 18:51:38
  Author: foutrelis
Revision: 364879

Python 3.7 rebuild

Modified:
  scapy3k/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-07-29 18:23:45 UTC (rev 364878)
+++ PKGBUILD2018-07-29 18:51:38 UTC (rev 364879)
@@ -1,9 +1,9 @@
 # Maintainer: Levente Polyak 
 
 pkgname=scapy3k
-_pkgname=scapy
-pkgver=0.23
-pkgrel=2
+_pkgname=scapy-python3
+pkgver=0.25
+pkgrel=1
 pkgdesc='Powerful interactive packet manipulation program (based on scapy) 
written in Python'
 url='https://github.com/phaethon/scapy'
 depends=('tcpdump' 'python' )
@@ -17,9 +17,9 @@
 conflicts=('scapy')
 arch=('any')
 license=('GPL2')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/phaethon/scapy/archive/v${pkgver}.tar.gz)
-sha256sums=('b4cd88724f2c4ce3af11f98af89dc118e180bb7b462e0d4bedd493b3f6813a2d')
-sha512sums=('2c341bc0459024311b1724cd6ee2d05651197b413c9b79f9bd2b4d60feb8baead1991c7c7dd1c229f3f06ff2901c5c50de15bac1d4fd367e6969fd9053649418')
+source=(https://pypi.org/packages/source/s/$_pkgname/$_pkgname-$pkgver.tar.gz)
+sha256sums=('2ae1b3bd9759844e830a6cc3ba11c3f25b08433a8ee3e7eddc08224905e5ef2b')
+sha512sums=('74cb8149e843962394425aec54f3aecc894c8d003efd6eb3d1a7ca0dea760cc30ed8fe7f08769c3dc2f959a32169adccf97006571c6f450cb678e624ac68da3d')
 
 prepare() {
   cd ${_pkgname}-${pkgver}


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

2018-07-29 Thread Jan Steffens via arch-commits
Date: Sunday, July 29, 2018 @ 18:32:31
  Author: heftig
Revision: 329667

archrelease: copy trunk to extra-x86_64

Added:
  paprefs/repos/extra-x86_64/PKGBUILD
(from rev 329666, paprefs/trunk/PKGBUILD)
Deleted:
  paprefs/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-07-29 18:32:01 UTC (rev 329666)
+++ PKGBUILD2018-07-29 18:32:31 UTC (rev 329667)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Corrado Primier 
-# Contributor: William Rea 
-# Contributor: Daniel J Griffiths 
-
-pkgname=paprefs
-pkgver=0.9.10+16+g534d20a
-pkgrel=1
-pkgdesc="Configuration dialog for PulseAudio"
-arch=(x86_64)
-url="https://freedesktop.org/software/pulseaudio/paprefs/;
-license=(GPL2)
-depends=(gtkmm3 libsigc++ dbus-glib pulseaudio)
-makedepends=(intltool lynx git)
-_commit=534d20a1d738f21365b56a08f6553d1be8ca8914  # master
-source=("git+https://anongit.freedesktop.org/git/pulseaudio/paprefs#commit=$_commit;)
-sha512sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^v//;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./bootstrap.sh
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-  install -Dt "$pkgdir/usr/share/doc/$pkgname" -m644 doc/README
-}

Copied: paprefs/repos/extra-x86_64/PKGBUILD (from rev 329666, 
paprefs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-07-29 18:32:31 UTC (rev 329667)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Corrado Primier 
+# Contributor: William Rea 
+# Contributor: Daniel J Griffiths 
+
+pkgname=paprefs
+pkgver=1.0
+pkgrel=1
+pkgdesc="Configuration dialog for PulseAudio"
+url="https://freedesktop.org/software/pulseaudio/paprefs/;
+license=(GPL2)
+arch=(x86_64)
+depends=(gtkmm3 libsigc++ dbus-glib pulseaudio)
+makedepends=(meson lynx tidy git)
+_commit=9963030dc010ee691c4f15fe22d78bcd4beb198a  # tags/v1.0^0
+source=("git+https://anongit.freedesktop.org/git/pulseaudio/paprefs#commit=$_commit;)
+sha512sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^v//;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+}
+
+build() {
+  arch-meson $pkgname build -D lynx=true
+  ninja -C build
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+  install -Dt "$pkgdir/usr/share/doc/$pkgname" -m644 build/doc/README
+}


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

2018-07-29 Thread Jan Steffens via arch-commits
Date: Sunday, July 29, 2018 @ 18:32:01
  Author: heftig
Revision: 329666

1.0-1

Modified:
  paprefs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-07-29 17:37:00 UTC (rev 329665)
+++ PKGBUILD2018-07-29 18:32:01 UTC (rev 329666)
@@ -5,7 +5,7 @@
 # Contributor: Daniel J Griffiths 
 
 pkgname=paprefs
-pkgver=0.9.10+17+gc6f1217
+pkgver=1.0
 pkgrel=1
 pkgdesc="Configuration dialog for PulseAudio"
 url="https://freedesktop.org/software/pulseaudio/paprefs/;
@@ -13,7 +13,7 @@
 arch=(x86_64)
 depends=(gtkmm3 libsigc++ dbus-glib pulseaudio)
 makedepends=(meson lynx tidy git)
-_commit=c6f1217d4365e9ca9e126baed08334b23721c684  # master
+_commit=9963030dc010ee691c4f15fe22d78bcd4beb198a  # tags/v1.0^0
 
source=("git+https://anongit.freedesktop.org/git/pulseaudio/paprefs#commit=$_commit;)
 sha512sums=('SKIP')
 
@@ -33,4 +33,5 @@
 
 package() {
   DESTDIR="$pkgdir" meson install -C build
+  install -Dt "$pkgdir/usr/share/doc/$pkgname" -m644 build/doc/README
 }


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

2018-07-29 Thread David Runge via arch-commits
Date: Sunday, July 29, 2018 @ 18:23:45
  Author: dvzrv
Revision: 364878

archrelease: copy trunk to multilib-testing-x86_64

Added:
  lib32-jack2/repos/multilib-testing-x86_64/
  lib32-jack2/repos/multilib-testing-x86_64/PKGBUILD
(from rev 364877, lib32-jack2/trunk/PKGBUILD)

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

Copied: lib32-jack2/repos/multilib-testing-x86_64/PKGBUILD (from rev 364877, 
lib32-jack2/trunk/PKGBUILD)
===
--- multilib-testing-x86_64/PKGBUILD(rev 0)
+++ multilib-testing-x86_64/PKGBUILD2018-07-29 18:23:45 UTC (rev 364878)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: David Runge 
+# Contributor: speps 
+
+pkgname=lib32-jack2
+pkgver=1.9.12
+pkgrel=2
+pkgdesc="The next-generation JACK with SMP support (32 bit)"
+arch=('x86_64')
+url="http://jackaudio.org/;
+license=('GPL')
+depends=('lib32-celt' 'lib32-gcc-libs' 'lib32-opus' 'jack2')
+makedepends=('celt' 'doxygen' 'gcc-multilib' 'lib32-celt' 'lib32-gcc-libs' 
'lib32-opus' 'libffado' 'libsamplerate' 'opus' 'python')
+provides=('lib32-jack')
+conflicts=('lib32-jack' 'jack2-multilib' 'jack2-dbus-multilib')
+replaces=('jack2-multilib' 'jack2-dbus-multilib')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/jackaudio/${pkgname#lib32-}/archive/v${pkgver}.tar.gz;)
+sha512sums=('f0271dfc8f8e2f2489ca52f431ad4fa420665816d6c67a01a76da1d4b5ae91f6dad8c4e3309ec5e0c159c9d312ed56021ab323d74bce828ace26f1b8d477ddfa')
+
+build() {
+  cd "${pkgname#lib32-}-${pkgver}"
+
+  python waf configure --prefix=/usr \
+--libdir=/usr/lib \
+--libdir32=/usr/lib32 \
+--mixed
+  python waf build
+}
+
+package() {
+  cd "${pkgname#lib32-}-${pkgver}"
+
+  python waf install --destdir="${pkgdir}"
+  # remove all non-32bit and those provided by jack2{,-dbus}
+  rm -rf "${pkgdir}"/usr/{bin,lib,include,share}
+}
+
+# vim:set ts=2 sw=2 et:


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

2018-07-29 Thread David Runge via arch-commits
Date: Sunday, July 29, 2018 @ 18:23:36
  Author: dvzrv
Revision: 364877

upgpkg: lib32-jack2 1.9.12-2

Fixing source array.

Modified:
  lib32-jack2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-07-29 17:21:48 UTC (rev 364876)
+++ PKGBUILD2018-07-29 18:23:36 UTC (rev 364877)
@@ -4,7 +4,7 @@
 
 pkgname=lib32-jack2
 pkgver=1.9.12
-pkgrel=1
+pkgrel=2
 pkgdesc="The next-generation JACK with SMP support (32 bit)"
 arch=('x86_64')
 url="http://jackaudio.org/;
@@ -14,7 +14,7 @@
 provides=('lib32-jack')
 conflicts=('lib32-jack' 'jack2-multilib' 'jack2-dbus-multilib')
 replaces=('jack2-multilib' 'jack2-dbus-multilib')
-source=("https://github.com/jackaudio/${pkgname#lib32-}/archive/v${pkgver}.tar.gz;)
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/jackaudio/${pkgname#lib32-}/archive/v${pkgver}.tar.gz;)
 
sha512sums=('f0271dfc8f8e2f2489ca52f431ad4fa420665816d6c67a01a76da1d4b5ae91f6dad8c4e3309ec5e0c159c9d312ed56021ab323d74bce828ace26f1b8d477ddfa')
 
 build() {


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

2018-07-29 Thread Jan Steffens via arch-commits
Date: Sunday, July 29, 2018 @ 17:37:00
  Author: heftig
Revision: 329665

archrelease: copy trunk to testing-x86_64

Added:
  pkgconf/repos/testing-x86_64/
  pkgconf/repos/testing-x86_64/PKGBUILD
(from rev 329664, pkgconf/trunk/PKGBUILD)
  pkgconf/repos/testing-x86_64/platform-pkg-config.in
(from rev 329664, pkgconf/trunk/platform-pkg-config.in)

+
 PKGBUILD   |   81 +++
 platform-pkg-config.in |   11 ++
 2 files changed, 92 insertions(+)

Copied: pkgconf/repos/testing-x86_64/PKGBUILD (from rev 329664, 
pkgconf/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2018-07-29 17:37:00 UTC (rev 329665)
@@ -0,0 +1,81 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Johannes Löthberg 
+# Contributor: Piotr Gorski 
+# Contributor: Lucy 
+# Contributor: Bartlomiej Piotrowski 
+
+pkgname=pkgconf
+pkgver=1.5.3
+pkgrel=1
+pkgdesc="Package compiler and linker metadata toolkit"
+url="https://git.dereferenced.org/pkgconf/pkgconf;
+license=(custom:ISC)
+arch=(x86_64)
+depends=(glibc sh)
+makedepends=(git)
+provides=(pkg-config pkgconfig)
+conflicts=(pkg-config)
+replaces=(pkg-config)
+groups=(base-devel)
+_commit=101b99b5b59d58fe6c6dc46ae22edb049cc0bd3a  # tags/pkgconf-1.5.3
+source=("git+$url#commit=$_commit" platform-pkg-config.in)
+sha256sums=('SKIP'
+'7c61338fbd83f9783d805c2f2f97b426977895a2f4b79e0ae5bc8e9d7996edaa')
+
+_pcdirs=/usr/lib/pkgconfig:/usr/share/pkgconfig
+_libdir=/usr/lib
+_includedir=/usr/include
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^pkgconf-//;s/-/+/g'
+}
+
+prepare() {
+  mkdir build
+  cd $pkgname
+  ./autogen.sh
+}
+
+build() {
+  cd build
+  ../$pkgname/configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--with-pkg-config-dir="$_pcdirs" \
+--with-system-libdir="$_libdir" \
+--with-system-includedir="$_includedir" \
+--disable-static
+  make
+}
+
+package() {
+  DESTDIR="$pkgdir" make -C build install
+
+  # From https://src.fedoraproject.org/rpms/pkgconf/
+  sed -e "s|@TARGET_PLATFORM@|$CHOST|g" \
+  -e "s|@PKGCONF_LIBDIRS@|$_pcdirs|g" \
+  -e "s|@PKGCONF_SYSLIBDIR@|$_libdir|g" \
+  -e "s|@PKGCONF_SYSINCDIR@|$_includedir|g" \
+  platform-pkg-config.in |
+install -D /dev/stdin "$pkgdir/usr/bin/$CHOST-pkg-config"
+  ln -s $CHOST-pkg-config "$pkgdir/usr/bin/pkg-config"
+
+  # Multilib
+  if [[ $CARCH = x86_64 ]]; then
+_host32=${CHOST/x86_64/i686}
+sed -e "s|@TARGET_PLATFORM@|$_host32|g" \
+-e "s|@PKGCONF_LIBDIRS@|${_pcdirs/lib/lib32}|g" \
+-e "s|@PKGCONF_SYSLIBDIR@|${_libdir/lib/lib32}|g" \
+-e "s|@PKGCONF_SYSINCDIR@|$_includedir|g" \
+platform-pkg-config.in |
+  install -D /dev/stdin "$pkgdir/usr/bin/$_host32-pkg-config"
+ln -s $_host32-pkg-config "$pkgdir/usr/bin/pkg-config-32"
+  fi
+
+  ln -s pkgconf.1 "$pkgdir/usr/share/man/man1/pkg-config.1"
+  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 $pkgname/COPYING
+}
+
+# vim:set sw=2 et:

Copied: pkgconf/repos/testing-x86_64/platform-pkg-config.in (from rev 329664, 
pkgconf/trunk/platform-pkg-config.in)
===
--- testing-x86_64/platform-pkg-config.in   (rev 0)
+++ testing-x86_64/platform-pkg-config.in   2018-07-29 17:37:00 UTC (rev 
329665)
@@ -0,0 +1,11 @@
+#!/bin/sh
+
+# Simple wrapper to tell pkgconf to behave as a platform-specific version of 
pkg-config
+# Platform: @TARGET_PLATFORM@
+
+: ${PKG_CONFIG_LIBDIR=@PKGCONF_LIBDIRS@}
+: ${PKG_CONFIG_SYSTEM_LIBRARY_PATH=@PKGCONF_SYSLIBDIR@} 
+: ${PKG_CONFIG_SYSTEM_INCLUDE_PATH=@PKGCONF_SYSINCDIR@}
+export PKG_CONFIG_LIBDIR PKG_CONFIG_SYSTEM_LIBRARY_PATH 
PKG_CONFIG_SYSTEM_INCLUDE_PATH
+
+exec pkgconf "$@"


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

2018-07-29 Thread Jan Steffens via arch-commits
Date: Sunday, July 29, 2018 @ 17:36:36
  Author: heftig
Revision: 329664

1.5.3-1

Modified:
  pkgconf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-07-29 16:01:47 UTC (rev 329663)
+++ PKGBUILD2018-07-29 17:36:36 UTC (rev 329664)
@@ -6,7 +6,7 @@
 # Contributor: Bartlomiej Piotrowski 
 
 pkgname=pkgconf
-pkgver=1.5.2
+pkgver=1.5.3
 pkgrel=1
 pkgdesc="Package compiler and linker metadata toolkit"
 url="https://git.dereferenced.org/pkgconf/pkgconf;
@@ -18,7 +18,7 @@
 conflicts=(pkg-config)
 replaces=(pkg-config)
 groups=(base-devel)
-_commit=4735e17287003b24e86b909f473af14771b8b32c  # tags/pkgconf-1.5.2
+_commit=101b99b5b59d58fe6c6dc46ae22edb049cc0bd3a  # tags/pkgconf-1.5.3
 source=("git+$url#commit=$_commit" platform-pkg-config.in)
 sha256sums=('SKIP'
 '7c61338fbd83f9783d805c2f2f97b426977895a2f4b79e0ae5bc8e9d7996edaa')


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

2018-07-29 Thread David Runge via arch-commits
Date: Sunday, July 29, 2018 @ 17:20:03
  Author: dvzrv
Revision: 364872

upgpkg: jack2 1.9.12-3

Removing PAM limits.conf and udev rules (now taken care of in 
realtime-privileges). Clarifying pkgdescs. Adding realtime-privileges to 
optdepends. Fixing source array.

Modified:
  jack2/trunk/PKGBUILD
Deleted:
  jack2/trunk/40-hpet-permissions.rules
  jack2/trunk/99-audio.conf

---+
 40-hpet-permissions.rules |2 --
 99-audio.conf |2 --
 PKGBUILD  |   36 +++-
 3 files changed, 7 insertions(+), 33 deletions(-)

Deleted: 40-hpet-permissions.rules
===
--- 40-hpet-permissions.rules   2018-07-29 17:12:15 UTC (rev 364871)
+++ 40-hpet-permissions.rules   2018-07-29 17:20:03 UTC (rev 364872)
@@ -1,2 +0,0 @@
-KERNEL=="rtc0", GROUP="audio"
-KERNEL=="hpet", GROUP="audio"

Deleted: 99-audio.conf
===
--- 99-audio.conf   2018-07-29 17:12:15 UTC (rev 364871)
+++ 99-audio.conf   2018-07-29 17:20:03 UTC (rev 364872)
@@ -1,2 +0,0 @@
-@audio - rtprio99
-@audio - memlock   unlimited

Modified: PKGBUILD
===
--- PKGBUILD2018-07-29 17:12:15 UTC (rev 364871)
+++ PKGBUILD2018-07-29 17:20:03 UTC (rev 364872)
@@ -9,19 +9,15 @@
 pkgname=('jack2' 'jack2-dbus')
 pkgdesc="The next-generation JACK with SMP support"
 pkgver=1.9.12
-pkgrel=2
+pkgrel=3
 arch=('x86_64')
 url="http://jackaudio.org/;
 license=('GPL')
 groups=('pro-audio')
-makedepends=('python' 'python2-dbus' 'libffado' 'celt' 'opus' 'doxygen')
-source=("${pkgbase}-${pkgver}::https://github.com/jackaudio/${pkgbase}/archive/v${pkgver}.tar.gz;
-'99-audio.conf'
-'40-hpet-permissions.rules'
-)
-sha512sums=('f0271dfc8f8e2f2489ca52f431ad4fa420665816d6c67a01a76da1d4b5ae91f6dad8c4e3309ec5e0c159c9d312ed56021ab323d74bce828ace26f1b8d477ddfa'
-
'c21f593d46ff12d1b8d3ce7ca4593c230a673e67ed4e486944f52fd51bdf902873d3fb253220c8ec9c6c5d5b9f002ecf3dd72318222cd748b1925bfcbf1df5d7'
-
'1f876aa61de4bc4e54d46dde7f8c8c2aa575fc382c09f3dc6819c328224b1998c7171cfd3039d35ca214e40909ad71f8d56a9b3b5652046beb5ca97e44a780b1')
+makedepends=('celt' 'doxygen' 'libffado' 'opus' 'python' 'python2-dbus')
+optdepends=('realtime-privileges: Acquire realtime privileges')
+source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/jackaudio/${pkgbase}/archive/v${pkgver}.tar.gz;)
+sha512sums=('f0271dfc8f8e2f2489ca52f431ad4fa420665816d6c67a01a76da1d4b5ae91f6dad8c4e3309ec5e0c159c9d312ed56021ab323d74bce828ace26f1b8d477ddfa')
 prepare() {
   cd "${pkgbase}-${pkgver}"
 
@@ -57,41 +53,23 @@
 }
 
 package_jack2() {
-  pkgdesc="The next-generation JACK with SMP support"
+  pkgdesc="JACK low-latency audio server for multi-processor machines (daemon 
activation)"
   depends=('celt' 'opus' 'libffado' 'python2-dbus')
   conflicts=('jack')
   provides=('jack' 'jackmp' 'jackdmp' 'jackdbus')
-  backup=(etc/security/limits.d/99-audio.conf)
 
   cd "${pkgname}-${pkgver}"
   python waf install --destdir="${pkgdir}"
-
-  # configure realtime access/scheduling
-  # see https://bugs.archlinux.org/task/26343
-  install -vDm 644 "${srcdir}/99-audio.conf" \
-"${pkgdir}/etc/security/limits.d/99-audio.conf"
-
-  install -vDm 644 "${srcdir}/40-hpet-permissions.rules" \
-"${pkgdir}/usr/lib/udev/rules.d/40-hpet-permissions.rules"
 }
 
 package_jack2-dbus() {
-  pkgdesc="The next-generation JACK with SMP support (for D-BUS interaction 
only)"
+  pkgdesc="JACK low-latency audio server for multi-processor machines (only 
dbus activation)"
   depends=('celt' 'opus' 'libffado' 'python2-dbus')
   conflicts=('jack' 'jack2')
   provides=('jack' 'jack2' 'jackmp' 'jackdmp' 'jackdbus')
-  backup=(etc/security/limits.d/99-audio.conf)
 
   cd "${pkgname}-${pkgver}"
   python waf install --destdir="${pkgdir}"
-
-  # configure realtime access/scheduling
-  # see https://bugs.archlinux.org/task/26343
-  install -vDm 644 "${srcdir}/99-audio.conf" \
-"${pkgdir}/etc/security/limits.d/99-audio.conf"
-
-  install -vDm 644 "${srcdir}/40-hpet-permissions.rules" \
-"${pkgdir}/usr/lib/udev/rules.d/40-hpet-permissions.rules"
 }
 
 # vim:set ts=2 sw=2 et:


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

2018-07-29 Thread David Runge via arch-commits
Date: Sunday, July 29, 2018 @ 17:20:09
  Author: dvzrv
Revision: 364873

archrelease: copy trunk to community-testing-x86_64

Added:
  jack2/repos/community-testing-x86_64/
  jack2/repos/community-testing-x86_64/PKGBUILD
(from rev 364872, jack2/trunk/PKGBUILD)

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

Copied: jack2/repos/community-testing-x86_64/PKGBUILD (from rev 364872, 
jack2/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2018-07-29 17:20:09 UTC (rev 364873)
@@ -0,0 +1,75 @@
+# $Id$
+# Maintainer: David Runge 
+# Contributor: Ray Rashif 
+# Contributor: Daniele Paolella 
+# Contributor: Philipp Ãœberbacher 
+# Contributor: Thomas Bahn 
+
+pkgbase=jack2
+pkgname=('jack2' 'jack2-dbus')
+pkgdesc="The next-generation JACK with SMP support"
+pkgver=1.9.12
+pkgrel=3
+arch=('x86_64')
+url="http://jackaudio.org/;
+license=('GPL')
+groups=('pro-audio')
+makedepends=('celt' 'doxygen' 'libffado' 'opus' 'python' 'python2-dbus')
+optdepends=('realtime-privileges: Acquire realtime privileges')
+source=("${pkgbase}-${pkgver}.tar.gz::https://github.com/jackaudio/${pkgbase}/archive/v${pkgver}.tar.gz;)
+sha512sums=('f0271dfc8f8e2f2489ca52f431ad4fa420665816d6c67a01a76da1d4b5ae91f6dad8c4e3309ec5e0c159c9d312ed56021ab323d74bce828ace26f1b8d477ddfa')
+prepare() {
+  cd "${pkgbase}-${pkgver}"
+
+  # https://github.com/jackaudio/jack2/issues/308
+  sed -i 's:bin/env python:bin/env python2:' \
+"example-clients/jack_control"
+
+  # copy of the source for jack2-dbus
+  cp -r "${srcdir}/${pkgbase}-${pkgver}" "${srcdir}/${pkgname[1]}-${pkgver}"
+
+  # configure jack2
+  python waf configure --prefix=/usr \
+   --htmldir="/usr/share/doc/${pkgbase}/" \
+   --freebob=no \
+   --classic \
+   --dbus
+
+  # configure jack2-dbus
+  cd "${srcdir}/${pkgname[1]}-${pkgver}"
+  python waf configure --prefix=/usr \
+   --htmldir="/usr/share/doc/${pkgbase}/" \
+   --freebob=no \
+   --dbus
+}
+
+build() {
+  # build jack2
+  cd "${pkgname[0]}-${pkgver}"
+  python waf build
+  # build jack2-dbus
+  cd "${srcdir}/${pkgname[1]}-${pkgver}"
+  python waf build
+}
+
+package_jack2() {
+  pkgdesc="JACK low-latency audio server for multi-processor machines (daemon 
activation)"
+  depends=('celt' 'opus' 'libffado' 'python2-dbus')
+  conflicts=('jack')
+  provides=('jack' 'jackmp' 'jackdmp' 'jackdbus')
+
+  cd "${pkgname}-${pkgver}"
+  python waf install --destdir="${pkgdir}"
+}
+
+package_jack2-dbus() {
+  pkgdesc="JACK low-latency audio server for multi-processor machines (only 
dbus activation)"
+  depends=('celt' 'opus' 'libffado' 'python2-dbus')
+  conflicts=('jack' 'jack2')
+  provides=('jack' 'jack2' 'jackmp' 'jackdmp' 'jackdbus')
+
+  cd "${pkgname}-${pkgver}"
+  python waf install --destdir="${pkgdir}"
+}
+
+# vim:set ts=2 sw=2 et:


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

2018-07-29 Thread Jaroslav Lichtblau via arch-commits
Date: Sunday, July 29, 2018 @ 17:12:15
  Author: jlichtblau
Revision: 364871

archrelease: copy trunk to community-staging-x86_64

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

---+
 PKGBUILD  |   30 ++
 postgis.changelog |  107 
 2 files changed, 137 insertions(+)

Copied: postgis/repos/community-staging-x86_64/PKGBUILD (from rev 364870, 
postgis/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-07-29 17:12:15 UTC (rev 364871)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org
+# Contributor: William Rea 
+
+pkgname=postgis
+pkgver=2.4.4
+pkgrel=4
+pkgdesc="Adds support for geographic objects to PostgreSQL"
+arch=('x86_64')
+url="http://postgis.net/;
+license=('GPL')
+depends=('postgresql' 'gdal' 'json-c' 'proj' 'protobuf-c')
+changelog=$pkgname.changelog
+options=('!makeflags')
+source=(http://download.osgeo.org/postgis/source/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('0663efb589210d5048d95c817e5cf29552ec8180e16d4c6ef56c94255faca8c2')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+}

Copied: postgis/repos/community-staging-x86_64/postgis.changelog (from rev 
364870, postgis/trunk/postgis.changelog)
===
--- community-staging-x86_64/postgis.changelog  (rev 0)
+++ community-staging-x86_64/postgis.changelog  2018-07-29 17:12:15 UTC (rev 
364871)
@@ -0,0 +1,107 @@
+2018-07-29 Jaroslav Lichtblau 
+* postgis-2.4.4-4 protobuf 3.6.0 rebuild
+
+2018-05-16 Jaroslav Lichtblau 
+* postgis-2.4.4-2 proj soname rebuild
+
+2018-05-12 Jaroslav Lichtblau 
+* postgis-2.4.4-1
+
+2018-01-16 Jaroslav Lichtblau 
+* postgis-2.4.3-1
+
+2017-11-16 Jaroslav Lichtblau 
+* postgis-2.4.2-1
+
+2017-11-12 Jaroslav Lichtblau 
+* postgis-2.4.1-2 postgresql 10.1 rebuild, FS#56296 + FS#56266 fix
+
+2017-10-21 Jaroslav Lichtblau 
+* postgis-2.4.1-1
+
+2017-10-21 Jaroslav Lichtblau 
+* postgis-2.4.0-1
+
+2017-07-03 Jaroslav Lichtblau 
+* postgis-2.3.3-1
+
+2017-03-02 Jaroslav Lichtblau 
+* postgis-2.3.2-1
+
+2016-12-12 Jaroslav Lichtblau 
+* postgis-2.3.1-1
+
+2016-11-21 Jaroslav Lichtblau 
+* postgis-2.3.0-2 postgresql 9.6.1 rebuild
+
+2016-09-30 Jaroslav Lichtblau 
+* postgis-2.3.0-1
+
+2016-09-14 Jaroslav Lichtblau 
+* postgis-2.2.2-2 proj 4.9.3 rebuild
+
+2016-05-16 Jaroslav Lichtblau 
+* postgis-2.2.2-1
+
+2016-01-22 Jaroslav Lichtblau 
+* postgis-2.2.1-2 postgresql 9.5 rebuild
+
+2016-01-09 Jaroslav Lichtblau 
+* postgis-2.2.1-1
+
+2015-10-22 Jaroslav Lichtblau 
+* postgis-2.2.0-1
+
+2015-09-12 Jaroslav Lichtblau 
+* postgis-2.1.8-1
+
+2015-06-28 Jaroslav Lichtblau 
+* postgis-2.1.5-2 gdal 2.0.0 rebuild
+
+2015-03-14 Jaroslav Lichtblau 
+* postgis-2.1.5-2 proj soname rebuild
+
+2015-01-20 Jaroslav Lichtblau 
+* postgis-2.1.5-1
+
+2014-09-12 Jaroslav Lichtblau 
+* postgis-2.1.4-1
+
+2014-05-25 Jaroslav Lichtblau 
+* postgis-2.1.3-1
+
+2014-04-02 Jaroslav Lichtblau 
+* postgis-2.1.2-1
+
+2013-11-11 Jaroslav Lichtblau 
+* postgis-2.1.1-1
+
+2013-08-22 Maxime Gauduin 
+* postgis-2.1.0-1
+* Fixes FS#35816
+
+2013-06-15 Jaroslav Lichtblau 
+* postgis-2.0.3-1
+
+2013-01-05 Jaroslav Lichtblau 
+* postgis-2.0.2-1
+
+2012-09-24 Dan McGee 
+* Rebuild for PostgreSQL 9.2.x
+* Update to minor release 2.0.1
+
+2012-05-31 Andrea Scarpino 
+* Add JSON-C support
+* Build utils (FS#25836)
+
+2012-05-31 Andrea Scarpino 
+* Update to major release 2.0.0-1
+
+2011-10-26 Jaroslav Lichtblau 
+* FS#26159 fix in postgis-1.5.3-2
+
+2010-10-30 Jaroslav Lichtblau 
+* Update to major release 1.5.2
+
+2010-03-21 Jaroslav Lichtblau 
+* Update to major release 1.5.1


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

2018-07-29 Thread Jaroslav Lichtblau via arch-commits
Date: Sunday, July 29, 2018 @ 17:12:06
  Author: jlichtblau
Revision: 364870

upgpkg: postgis 2.4.4-4 - protobuf 3.6.0 rebuild

Modified:
  postgis/trunk/PKGBUILD
  postgis/trunk/postgis.changelog

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

Modified: PKGBUILD
===
--- PKGBUILD2018-07-29 17:04:07 UTC (rev 364869)
+++ PKGBUILD2018-07-29 17:12:06 UTC (rev 364870)
@@ -5,7 +5,7 @@
 
 pkgname=postgis
 pkgver=2.4.4
-pkgrel=3
+pkgrel=4
 pkgdesc="Adds support for geographic objects to PostgreSQL"
 arch=('x86_64')
 url="http://postgis.net/;
@@ -14,7 +14,7 @@
 changelog=$pkgname.changelog
 options=('!makeflags')
 source=(http://download.osgeo.org/postgis/source/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('3cb38ee24dad72a66677cb210ad5f07b0a97411664ede582a5cdbc0ca2d72573db4e9121b6af2eab9cdee6a41122c3f5c59e618df4ee028a3cae7ee35d8670f2')
+sha256sums=('0663efb589210d5048d95c817e5cf29552ec8180e16d4c6ef56c94255faca8c2')
 
 build() {
   cd ${pkgname}-${pkgver}

Modified: postgis.changelog
===
--- postgis.changelog   2018-07-29 17:04:07 UTC (rev 364869)
+++ postgis.changelog   2018-07-29 17:12:06 UTC (rev 364870)
@@ -1,3 +1,6 @@
+2018-07-29 Jaroslav Lichtblau 
+* postgis-2.4.4-4 protobuf 3.6.0 rebuild
+
 2018-05-16 Jaroslav Lichtblau 
 * postgis-2.4.4-2 proj soname rebuild
 


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

2018-07-29 Thread Felix Yan via arch-commits
Date: Sunday, July 29, 2018 @ 17:03:52
  Author: felixonmars
Revision: 364868

upgpkg: hledger-ui 1.10-15

rebuild with vty 5.23.1

Modified:
  hledger-ui/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-07-29 17:02:53 UTC (rev 364867)
+++ PKGBUILD2018-07-29 17:03:52 UTC (rev 364868)
@@ -4,7 +4,7 @@
 
 pkgname=hledger-ui
 pkgver=1.10
-pkgrel=14
+pkgrel=15
 pkgdesc="Curses-style user interface for the hledger accounting tool"
 url="http://hledger.org;
 license=("GPL")


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

2018-07-29 Thread Felix Yan via arch-commits
Date: Sunday, July 29, 2018 @ 17:04:07
  Author: felixonmars
Revision: 364869

archrelease: copy trunk to community-staging-x86_64

Added:
  hledger-ui/repos/community-staging-x86_64/
  hledger-ui/repos/community-staging-x86_64/PKGBUILD
(from rev 364868, hledger-ui/trunk/PKGBUILD)

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

Copied: hledger-ui/repos/community-staging-x86_64/PKGBUILD (from rev 364868, 
hledger-ui/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-07-29 17:04:07 UTC (rev 364869)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger-ui
+pkgver=1.10
+pkgrel=15
+pkgdesc="Curses-style user interface for the hledger accounting tool"
+url="http://hledger.org;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'hledger' 'haskell-hledger-lib' 'haskell-ansi-terminal' 
'haskell-async'
+ 'haskell-base-compat-batteries' 'haskell-cmdargs' 
'haskell-data-default' 'haskell-fsnotify'
+ 'haskell-hunit' 'haskell-microlens' 'haskell-microlens-platform' 
'haskell-megaparsec'
+ 'haskell-pretty-show' 'haskell-safe' 'haskell-split' 
'haskell-text-zipper'
+ 'haskell-vector' 'haskell-brick' 'haskell-vty')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('a493cb27f3d5ca184a46e7bb43fe14d5e7286ca6e15fa134eac966e969d45fde7c09dc1f5965f4c27609bc2b0d81bfca4c20d8242cd43bbc19e0e4ea8747c5ee')
+
+prepare() {
+# It does nothing
+sed -e '/mtl-compat/d' \
+-i ${pkgname}-${pkgver}/${pkgname}.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup configure -O --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+-fthreaded
+runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-07-29 Thread Felix Yan via arch-commits
Date: Sunday, July 29, 2018 @ 17:02:53
  Author: felixonmars
Revision: 364867

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-brick/repos/community-staging-x86_64/
  haskell-brick/repos/community-staging-x86_64/PKGBUILD
(from rev 364866, haskell-brick/trunk/PKGBUILD)

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

Copied: haskell-brick/repos/community-staging-x86_64/PKGBUILD (from rev 364866, 
haskell-brick/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-07-29 17:02:53 UTC (rev 364867)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=brick
+pkgname=haskell-brick
+pkgver=0.38
+pkgrel=6
+pkgdesc="A declarative terminal user interface library"
+url="https://github.com/jtdaugherty/brick;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-vty' 'haskell-data-clist' 'haskell-dlist' 
'haskell-microlens'
+ 'haskell-microlens-th' 'haskell-microlens-mtl' 'haskell-config-ini' 
'haskell-vector'
+ 'haskell-contravariant' 'haskell-text-zipper'
+ 'haskell-word-wrap')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('d04fe9bf5f74114400492a89bebc4b51b65fa898258540afebdd5c6bade0c714239e86dea7295d1162703398b6ed3facc5ea0b9880c2d35e64f0cdfa0934')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-demos
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-07-29 Thread Felix Yan via arch-commits
Date: Sunday, July 29, 2018 @ 17:02:38
  Author: felixonmars
Revision: 364866

upgpkg: haskell-brick 0.38-6

rebuild with vty 5.23.1

Modified:
  haskell-brick/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-07-29 16:55:50 UTC (rev 364865)
+++ PKGBUILD2018-07-29 17:02:38 UTC (rev 364866)
@@ -5,7 +5,7 @@
 _hkgname=brick
 pkgname=haskell-brick
 pkgver=0.38
-pkgrel=5
+pkgrel=6
 pkgdesc="A declarative terminal user interface library"
 url="https://github.com/jtdaugherty/brick;
 license=("custom:BSD3")


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

2018-07-29 Thread Jaroslav Lichtblau via arch-commits
Date: Sunday, July 29, 2018 @ 16:55:41
  Author: jlichtblau
Revision: 364864

upgpkg: qmmp 1.2.3-1 - new upstream release

Modified:
  qmmp/trunk/PKGBUILD
  qmmp/trunk/qmmp.changelog

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

Modified: PKGBUILD
===
--- PKGBUILD2018-07-29 16:50:37 UTC (rev 364863)
+++ PKGBUILD2018-07-29 16:55:41 UTC (rev 364864)
@@ -2,7 +2,7 @@
 # Maintainer: Jaroslav Lichtblau 
 
 pkgname=qmmp
-pkgver=1.2.2
+pkgver=1.2.3
 pkgrel=1
 pkgdesc="Qt5 based audio-player"
 arch=('x86_64')
@@ -31,7 +31,7 @@
 'ffmpeg' 'libsamplerate' 'wavpack')
 changelog=$pkgname.changelog
 source=(http://qmmp.ylsoftware.com/files/$pkgname-$pkgver.tar.bz2)
-sha512sums=('deec5ad6e53222d390e5f147ac1dbf3f471c0266eb32315b9b334348ae10f54b88842ae016d95282a41d27592c46f3479c6f594dc8eccb330750025469b468b6')
+sha256sums=('32a162b273a61b5d7a568f266d0cc3c3dab63c310d89046280ace42d84ac9816')
 
 build() {
   cd "${srcdir}"/$pkgname-$pkgver

Modified: qmmp.changelog
===
--- qmmp.changelog  2018-07-29 16:50:37 UTC (rev 364863)
+++ qmmp.changelog  2018-07-29 16:55:41 UTC (rev 364864)
@@ -1,3 +1,6 @@
+2018-07-29 Jaroslav Lichtblau 
+   * qmmp 1.2.3-1
+
 2018-06-14 Jaroslav Lichtblau 
* qmmp 1.2.2-1
 


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

2018-07-29 Thread Jaroslav Lichtblau via arch-commits
Date: Sunday, July 29, 2018 @ 16:55:50
  Author: jlichtblau
Revision: 364865

archrelease: copy trunk to community-x86_64

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

+
 PKGBUILD   |   98 +-
 qmmp.changelog |  491 +++
 2 files changed, 296 insertions(+), 293 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-07-29 16:55:41 UTC (rev 364864)
+++ PKGBUILD2018-07-29 16:55:50 UTC (rev 364865)
@@ -1,49 +0,0 @@
-#$Id$
-# Maintainer: Jaroslav Lichtblau 
-
-pkgname=qmmp
-pkgver=1.2.2
-pkgrel=1
-pkgdesc="Qt5 based audio-player"
-arch=('x86_64')
-url="http://qmmp.ylsoftware.com/;
-license=('GPL')
-depends=('alsa-lib' 'curl' 'desktop-file-utils' 'hicolor-icon-theme' 'libmad'
- 'libvorbis' 'libogg' 'libxkbcommon-x11' 'taglib' 'xdg-utils' 
'qt5-x11extras')
-makedepends=('cmake' 'flac' 'jack' 'libmpcdec' 'pulseaudio' 'ffmpeg' 
'libcdio-paranoia'
- 'libcddb' 'libmms' 'libsamplerate' 'libmodplug' 'libsndfile' 
'wavpack'
- 'projectm' 'mesa' 'faad2' 'libgme' 'libsidplayfp' 'opusfile' 
'wildmidi' 'qt5-tools')
-optdepends=('flac: native FLAC support'
-'jack: JACK sound output'
-'libmpcdec: Musepack support'
-'pulseaudio: PulseAudio output'
-'libcdio-paranoia: Compact Disc input and control support'
-'libcddb: CDDB server support'
-'libmms: MMS stream protocol support'
-'libmodplug: MOD playing library'
-'libsndfile: sampled sound support'
-'projectm: visual efects'
-'faad2: ADTS AAC support'
-'libgme: support for chiptunes from various platforms'
-'libsidplayfp: C64 music support'
-'opusfile: Opus support'
-'wildmidi: MIDI support'
-'ffmpeg' 'libsamplerate' 'wavpack')
-changelog=$pkgname.changelog
-source=(http://qmmp.ylsoftware.com/files/$pkgname-$pkgver.tar.bz2)
-sha512sums=('deec5ad6e53222d390e5f147ac1dbf3f471c0266eb32315b9b334348ae10f54b88842ae016d95282a41d27592c46f3479c6f594dc8eccb330750025469b468b6')
-
-build() {
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  cmake . -DCMAKE_INSTALL_PREFIX=/usr \
-  -DCMAKE_INSTALL_LIBDIR=lib \
-  -DUSE_HAL:BOOL=FALSE
-  make
-}
-
-package() {
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  make DESTDIR="${pkgdir}" install
-}

Copied: qmmp/repos/community-x86_64/PKGBUILD (from rev 364864, 
qmmp/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-07-29 16:55:50 UTC (rev 364865)
@@ -0,0 +1,49 @@
+#$Id$
+# Maintainer: Jaroslav Lichtblau 
+
+pkgname=qmmp
+pkgver=1.2.3
+pkgrel=1
+pkgdesc="Qt5 based audio-player"
+arch=('x86_64')
+url="http://qmmp.ylsoftware.com/;
+license=('GPL')
+depends=('alsa-lib' 'curl' 'desktop-file-utils' 'hicolor-icon-theme' 'libmad'
+ 'libvorbis' 'libogg' 'libxkbcommon-x11' 'taglib' 'xdg-utils' 
'qt5-x11extras')
+makedepends=('cmake' 'flac' 'jack' 'libmpcdec' 'pulseaudio' 'ffmpeg' 
'libcdio-paranoia'
+ 'libcddb' 'libmms' 'libsamplerate' 'libmodplug' 'libsndfile' 
'wavpack'
+ 'projectm' 'mesa' 'faad2' 'libgme' 'libsidplayfp' 'opusfile' 
'wildmidi' 'qt5-tools')
+optdepends=('flac: native FLAC support'
+'jack: JACK sound output'
+'libmpcdec: Musepack support'
+'pulseaudio: PulseAudio output'
+'libcdio-paranoia: Compact Disc input and control support'
+'libcddb: CDDB server support'
+'libmms: MMS stream protocol support'
+'libmodplug: MOD playing library'
+'libsndfile: sampled sound support'
+'projectm: visual efects'
+'faad2: ADTS AAC support'
+'libgme: support for chiptunes from various platforms'
+'libsidplayfp: C64 music support'
+'opusfile: Opus support'
+'wildmidi: MIDI support'
+'ffmpeg' 'libsamplerate' 'wavpack')
+changelog=$pkgname.changelog
+source=(http://qmmp.ylsoftware.com/files/$pkgname-$pkgver.tar.bz2)
+sha256sums=('32a162b273a61b5d7a568f266d0cc3c3dab63c310d89046280ace42d84ac9816')
+
+build() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  cmake . -DCMAKE_INSTALL_PREFIX=/usr \
+  -DCMAKE_INSTALL_LIBDIR=lib \
+  -DUSE_HAL:BOOL=FALSE
+  make
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  make DESTDIR="${pkgdir}" install
+}

Deleted: qmmp.changelog
===
--- qmmp.changelog  2018-07-29 16:55:41 UTC (rev 364864)
+++ qmmp.changelog  2018-07-29 16:55:50 UTC (rev 364865)
@@ 

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

2018-07-29 Thread David Runge via arch-commits
Date: Sunday, July 29, 2018 @ 16:50:37
  Author: dvzrv
Revision: 364863

archrelease: copy trunk to community-testing-any

Added:
  realtime-privileges/repos/community-testing-any/
  realtime-privileges/repos/community-testing-any/40-realtime-privileges.rules
(from rev 364862, realtime-privileges/trunk/40-realtime-privileges.rules)
  realtime-privileges/repos/community-testing-any/99-realtime-privileges.conf
(from rev 364862, realtime-privileges/trunk/99-realtime-privileges.conf)
  realtime-privileges/repos/community-testing-any/ChangeLog
(from rev 364862, realtime-privileges/trunk/ChangeLog)
  realtime-privileges/repos/community-testing-any/PKGBUILD
(from rev 364862, realtime-privileges/trunk/PKGBUILD)
  realtime-privileges/repos/community-testing-any/realtime-privileges.install
(from rev 364862, realtime-privileges/trunk/realtime-privileges.install)
  
realtime-privileges/repos/community-testing-any/sysusers-realtime-privileges.conf
(from rev 364862, 
realtime-privileges/trunk/sysusers-realtime-privileges.conf)

---+
 40-realtime-privileges.rules  |6 ++
 99-realtime-privileges.conf   |2 ++
 ChangeLog |7 +++
 PKGBUILD  |   30 ++
 realtime-privileges.install   |7 +++
 sysusers-realtime-privileges.conf |3 +++
 6 files changed, 55 insertions(+)

Copied: 
realtime-privileges/repos/community-testing-any/40-realtime-privileges.rules 
(from rev 364862, realtime-privileges/trunk/40-realtime-privileges.rules)
===
--- community-testing-any/40-realtime-privileges.rules  
(rev 0)
+++ community-testing-any/40-realtime-privileges.rules  2018-07-29 16:50:37 UTC 
(rev 364863)
@@ -0,0 +1,6 @@
+# rw access to /dev/cpu_dma_latency to prevent CPUs from going into idle state
+KERNEL=="cpu_dma_latency", GROUP="realtime"
+# rw access to /dev/rtc0
+KERNEL=="rtc0", GROUP="realtimrealtimee"
+# rw access to /dev/hpet0
+KERNEL=="hpet", GROUP="realtime"

Copied: 
realtime-privileges/repos/community-testing-any/99-realtime-privileges.conf 
(from rev 364862, realtime-privileges/trunk/99-realtime-privileges.conf)
===
--- community-testing-any/99-realtime-privileges.conf   
(rev 0)
+++ community-testing-any/99-realtime-privileges.conf   2018-07-29 16:50:37 UTC 
(rev 364863)
@@ -0,0 +1,2 @@
+@realtime - rtprio 98
+@realtime - memlock unlimited

Copied: realtime-privileges/repos/community-testing-any/ChangeLog (from rev 
364862, realtime-privileges/trunk/ChangeLog)
===
--- community-testing-any/ChangeLog (rev 0)
+++ community-testing-any/ChangeLog 2018-07-29 16:50:37 UTC (rev 364863)
@@ -0,0 +1,7 @@
+Changes with 1:
+   * Adding dedicated 'realtime' group using sysusers.d.
+   * Adding limits.conf drop in file. This adds rtprio 98 and memlock 
unlimited
+   for the realtime group.
+   * Adding access to /dev/cpu_dma_latency for group 'realtime' with the 
help
+   of a udev rule. This enables applications to stop the CPU from 
going to
+   idle states.

Copied: realtime-privileges/repos/community-testing-any/PKGBUILD (from rev 
364862, realtime-privileges/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2018-07-29 16:50:37 UTC (rev 364863)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: David Runge 
+pkgname=realtime-privileges
+pkgver=1
+pkgrel=1
+pkgdesc="Realtime privileges for users"
+arch=('any')
+url="https://wiki.archlinux.org/index.php/Realtime_process_management;
+license=('GPL')
+groups=('pro-audio' 'realtime')
+install="${pkgname}.install"
+changelog=ChangeLog
+source=("99-${pkgname}.conf"
+"sysusers-${pkgname}.conf"
+"40-${pkgname}.rules"
+'ChangeLog')
+sha512sums=('4d812d89561519fe79613d03b531408122a3ae729eba631187848c3480d6235b483102e8c647e6eb2f579293f462b0dae7f4f04d56e085063e24d69f3ed96b4a'
+
'2f4d048a3e3c6de75bb7432092e1943143507110ff33aa9f7f2ca4ed3f028536c8f910735f5218f0fa6cc89e8eae70699bcce18c0dadc07e518fc3cf33611518'
+
'10e047ec557540c3847ed8c1e494d59d52dc2d102a58d8cf210cbad6042740782172bd7e674c19f1f6048f5210576b075a494f9b4bba9cc5fd3e78f61fa35cc4'
+
'05a958946d691861e6803c1cfe4147159c09a43d6a9eca7169ad4c23009c4bea2890243307e21f3798746e65d877ba9b37f4f3e444a8560ef60b7f052296b27f')
+
+package() {
+  # realtime group installed through sysusers.d
+  install -vDm 644 "sysusers-${pkgname}.conf" \
+"${pkgdir}/usr/lib/sysusers.d/${pkgname}.conf"
+  # limits for realtime group
+  install -vDm 644 "99-${pkgname}.conf" -t 

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

2018-07-29 Thread Jan Steffens via arch-commits
Date: Sunday, July 29, 2018 @ 16:48:57
  Author: heftig
Revision: 364862

archrelease: copy trunk to community-staging-x86_64

Added:
  vigra/repos/community-staging-x86_64/
  vigra/repos/community-staging-x86_64/PKGBUILD
(from rev 364861, vigra/trunk/PKGBUILD)
  
vigra/repos/community-staging-x86_64/fix-incorrect-template-parameter-type.patch
(from rev 364861, vigra/trunk/fix-incorrect-template-parameter-type.patch)
  vigra/repos/community-staging-x86_64/py3.7.diff
(from rev 364861, vigra/trunk/py3.7.diff)

-+
 PKGBUILD|   76 ++
 fix-incorrect-template-parameter-type.patch |  139 ++
 py3.7.diff  |   19 +++
 3 files changed, 234 insertions(+)

Copied: vigra/repos/community-staging-x86_64/PKGBUILD (from rev 364861, 
vigra/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-07-29 16:48:57 UTC (rev 364862)
@@ -0,0 +1,76 @@
+# $Id$
+# Maintainer: Bruno Pagani 
+# Contributor: AndyRTR 
+# Contributor: Lukas Jirkovsky 
+
+pkgbase=vigra
+pkgname=('vigra' 'vigra-doc')
+pkgver=1.11.1
+pkgrel=9
+pkgdesc="Computer vision library"
+arch=('x86_64')
+url="https://ukoethe.github.io/vigra/;
+license=('custom:MIT')
+makedepends=(# runtime deps
+ 'libpng' 'libtiff' 'openexr' 'gcc-libs' 'sh' 'hdf5' 'fftw'
+ # additional makedeps
+ 'cmake' 'boost' 'python-numpy')
+checkdepends=('python-nose')
+source=("https://github.com/ukoethe/vigra/releases/download/Version-${pkgver//./-}/vigra-${pkgver}-src.tar.gz;
+'fix-incorrect-template-parameter-type.patch' 'py3.7.diff')
+sha256sums=('a5564e1083f6af6a885431c1ee718bad77d11f117198b277557f8558fa461aaf'
+'f151f902483dfa2b1f3d431f54bb161300cf184158c9f416fa653d19ab363cc4'
+'8fcdcce50c377be44387cbd4a001dadf5e03b32483de55c05a359c887e95a05b')
+
+prepare() {
+  mkdir -p build
+  cd ${pkgbase}-${pkgver}
+  # https://github.com/ukoethe/vigra/issues/414
+  patch -Np1 -i ../fix-incorrect-template-parameter-type.patch
+  # python 3.7 compat
+  patch -Np1 -i ../py3.7.diff
+}
+
+build() {
+  cd build
+  cmake ../${pkgbase}-${pkgver} \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DPYTHON_EXECUTABLE=/usr/bin/python \
+  -DWITH_OPENEXR=true \
+  -DWITH_VIGRANUMPY=1 \
+  -DDOCINSTALL=share/doc
+  make
+}
+
+check() {
+  cd build
+  make -j1 -k check || warning "Tests failed" # 
https://github.com/ukoethe/vigra/issues/409
+}
+
+package_vigra() {
+  pkgdesc="Computer vision library"
+  depends=('libpng' 'libtiff' 'openexr' 'gcc-libs' 'sh' 'hdf5' 'fftw')
+  optdepends=('python: for python bindings'
+  'boost-libs: for python bindings')
+
+  cd build
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 "${srcdir}"/${pkgbase}-${pkgver}/LICENSE.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+  
+  # Remove doc
+  rm -rf "${pkgdir}"/usr/share/doc
+}
+
+package_vigra-doc() {
+  pkgdesc="Computer vision library - documentation and examples"
+  #arch=('any') # Not supported for now, maybe later
+
+  cd build
+  make DESTDIR="${pkgdir}" install
+
+  # Remove vigra package content
+  rm -rf "${pkgdir}"/usr/{bin,include,lib}
+
+  install -Dm644 "${srcdir}"/${pkgbase}-${pkgver}/LICENSE.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}

Copied: 
vigra/repos/community-staging-x86_64/fix-incorrect-template-parameter-type.patch
 (from rev 364861, vigra/trunk/fix-incorrect-template-parameter-type.patch)
===
--- community-staging-x86_64/fix-incorrect-template-parameter-type.patch
(rev 0)
+++ community-staging-x86_64/fix-incorrect-template-parameter-type.patch
2018-07-29 16:48:57 UTC (rev 364862)
@@ -0,0 +1,139 @@
+From 81958d302494e137f98a8b1d7869841532f90388 Mon Sep 17 00:00:00 2001
+From: JaimeIvanCervantes 
+Date: Fri, 16 Jun 2017 13:21:45 -0700
+Subject: [PATCH] multi_convolution: Fix for incorrect template parameter type
+ when using unsigned int N for TinyVector SIZE. (Fixes #414)
+
+---
+ include/vigra/multi_convolution.hxx | 28 ++--
+ 1 file changed, 14 insertions(+), 14 deletions(-)
+
+diff --git a/include/vigra/multi_convolution.hxx 
b/include/vigra/multi_convolution.hxx
+index 1b5efa740..ec89bcf58 100644
+--- a/include/vigra/multi_convolution.hxx
 b/include/vigra/multi_convolution.hxx
+@@ -1426,7 +1426,7 @@ gaussianSmoothMultiArray(MultiArrayView const 
& source,
+   class T2, class S2>
+ void
+ gaussianGradientMultiArray(MultiArrayView const & source,
+-   MultiArrayView, S2> 
dest,
++   MultiArrayView, 
S2> dest,
+double sigma,
+

[arch-commits] Commit in vigra/trunk (PKGBUILD py3.7.diff)

2018-07-29 Thread Jan Steffens via arch-commits
Date: Sunday, July 29, 2018 @ 16:47:04
  Author: heftig
Revision: 364861

1.11.1-9

Added:
  vigra/trunk/py3.7.diff
Modified:
  vigra/trunk/PKGBUILD

+
 PKGBUILD   |9 ++---
 py3.7.diff |   19 +++
 2 files changed, 25 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-07-29 16:44:59 UTC (rev 364860)
+++ PKGBUILD2018-07-29 16:47:04 UTC (rev 364861)
@@ -6,7 +6,7 @@
 pkgbase=vigra
 pkgname=('vigra' 'vigra-doc')
 pkgver=1.11.1
-pkgrel=8
+pkgrel=9
 pkgdesc="Computer vision library"
 arch=('x86_64')
 url="https://ukoethe.github.io/vigra/;
@@ -17,9 +17,10 @@
  'cmake' 'boost' 'python-numpy')
 checkdepends=('python-nose')
 
source=("https://github.com/ukoethe/vigra/releases/download/Version-${pkgver//./-}/vigra-${pkgver}-src.tar.gz;
-'fix-incorrect-template-parameter-type.patch')
+'fix-incorrect-template-parameter-type.patch' 'py3.7.diff')
 sha256sums=('a5564e1083f6af6a885431c1ee718bad77d11f117198b277557f8558fa461aaf'
-'f151f902483dfa2b1f3d431f54bb161300cf184158c9f416fa653d19ab363cc4')
+'f151f902483dfa2b1f3d431f54bb161300cf184158c9f416fa653d19ab363cc4'
+'8fcdcce50c377be44387cbd4a001dadf5e03b32483de55c05a359c887e95a05b')
 
 prepare() {
   mkdir -p build
@@ -26,6 +27,8 @@
   cd ${pkgbase}-${pkgver}
   # https://github.com/ukoethe/vigra/issues/414
   patch -Np1 -i ../fix-incorrect-template-parameter-type.patch
+  # python 3.7 compat
+  patch -Np1 -i ../py3.7.diff
 }
 
 build() {

Added: py3.7.diff
===
--- py3.7.diff  (rev 0)
+++ py3.7.diff  2018-07-29 16:47:04 UTC (rev 364861)
@@ -0,0 +1,19 @@
+diff -u -r vigra-1.11.1/vigranumpy/src/core/vigranumpycore.cxx 
vigra-1.11.1-py3.7/vigranumpy/src/core/vigranumpycore.cxx
+--- vigra-1.11.1/vigranumpy/src/core/vigranumpycore.cxx2017-05-19 
17:01:08.0 +0200
 vigra-1.11.1-py3.7/vigranumpy/src/core/vigranumpycore.cxx  2018-07-29 
18:29:46.514547076 +0200
+@@ -59,10 +59,14 @@
+   Py_ssize_t size = PyUnicode_GET_DATA_SIZE(s.ptr());
+   const char * data = PyUnicode_AS_DATA(s.ptr());
+   return checksum(data, size);
+-#else
++#elif (PY_MAJOR_VERSION == 3) && (PY_MINOR_VERSION < 7)
+   Py_ssize_t size = 0;
+   char * data = PyUnicode_AsUTF8AndSize(s.ptr(), );
+   return checksum(data, size);
++#else
++  Py_ssize_t size = 0;
++  const char * data = PyUnicode_AsUTF8AndSize(s.ptr(), );
++  return checksum(data, size);
+ #endif
+ }
+ 


[arch-commits] Commit in (9 files)

2018-07-29 Thread David Runge via arch-commits
Date: Sunday, July 29, 2018 @ 16:44:59
  Author: dvzrv
Revision: 364860

Adding realtime-privileges.

Added:
  realtime-privileges/
  realtime-privileges/repos/
  realtime-privileges/trunk/
  realtime-privileges/trunk/40-realtime-privileges.rules
  realtime-privileges/trunk/99-realtime-privileges.conf
  realtime-privileges/trunk/ChangeLog
  realtime-privileges/trunk/PKGBUILD
  realtime-privileges/trunk/realtime-privileges.install
  realtime-privileges/trunk/sysusers-realtime-privileges.conf

---+
 40-realtime-privileges.rules  |6 ++
 99-realtime-privileges.conf   |2 ++
 ChangeLog |7 +++
 PKGBUILD  |   30 ++
 realtime-privileges.install   |7 +++
 sysusers-realtime-privileges.conf |3 +++
 6 files changed, 55 insertions(+)

Added: realtime-privileges/trunk/40-realtime-privileges.rules
===
--- realtime-privileges/trunk/40-realtime-privileges.rules  
(rev 0)
+++ realtime-privileges/trunk/40-realtime-privileges.rules  2018-07-29 
16:44:59 UTC (rev 364860)
@@ -0,0 +1,6 @@
+# rw access to /dev/cpu_dma_latency to prevent CPUs from going into idle state
+KERNEL=="cpu_dma_latency", GROUP="realtime"
+# rw access to /dev/rtc0
+KERNEL=="rtc0", GROUP="realtimrealtimee"
+# rw access to /dev/hpet0
+KERNEL=="hpet", GROUP="realtime"

Added: realtime-privileges/trunk/99-realtime-privileges.conf
===
--- realtime-privileges/trunk/99-realtime-privileges.conf   
(rev 0)
+++ realtime-privileges/trunk/99-realtime-privileges.conf   2018-07-29 
16:44:59 UTC (rev 364860)
@@ -0,0 +1,2 @@
+@realtime - rtprio 98
+@realtime - memlock unlimited

Added: realtime-privileges/trunk/ChangeLog
===
--- realtime-privileges/trunk/ChangeLog (rev 0)
+++ realtime-privileges/trunk/ChangeLog 2018-07-29 16:44:59 UTC (rev 364860)
@@ -0,0 +1,7 @@
+Changes with 1:
+   * Adding dedicated 'realtime' group using sysusers.d.
+   * Adding limits.conf drop in file. This adds rtprio 98 and memlock 
unlimited
+   for the realtime group.
+   * Adding access to /dev/cpu_dma_latency for group 'realtime' with the 
help
+   of a udev rule. This enables applications to stop the CPU from 
going to
+   idle states.

Added: realtime-privileges/trunk/PKGBUILD
===
--- realtime-privileges/trunk/PKGBUILD  (rev 0)
+++ realtime-privileges/trunk/PKGBUILD  2018-07-29 16:44:59 UTC (rev 364860)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: David Runge 
+pkgname=realtime-privileges
+pkgver=1
+pkgrel=1
+pkgdesc="Realtime privileges for users"
+arch=('any')
+url="https://wiki.archlinux.org/index.php/Realtime_process_management;
+license=('GPL')
+groups=('pro-audio' 'realtime')
+install="${pkgname}.install"
+changelog=ChangeLog
+source=("99-${pkgname}.conf"
+"sysusers-${pkgname}.conf"
+"40-${pkgname}.rules"
+'ChangeLog')
+sha512sums=('4d812d89561519fe79613d03b531408122a3ae729eba631187848c3480d6235b483102e8c647e6eb2f579293f462b0dae7f4f04d56e085063e24d69f3ed96b4a'
+
'2f4d048a3e3c6de75bb7432092e1943143507110ff33aa9f7f2ca4ed3f028536c8f910735f5218f0fa6cc89e8eae70699bcce18c0dadc07e518fc3cf33611518'
+
'10e047ec557540c3847ed8c1e494d59d52dc2d102a58d8cf210cbad6042740782172bd7e674c19f1f6048f5210576b075a494f9b4bba9cc5fd3e78f61fa35cc4'
+
'05a958946d691861e6803c1cfe4147159c09a43d6a9eca7169ad4c23009c4bea2890243307e21f3798746e65d877ba9b37f4f3e444a8560ef60b7f052296b27f')
+
+package() {
+  # realtime group installed through sysusers.d
+  install -vDm 644 "sysusers-${pkgname}.conf" \
+"${pkgdir}/usr/lib/sysusers.d/${pkgname}.conf"
+  # limits for realtime group
+  install -vDm 644 "99-${pkgname}.conf" -t "${pkgdir}/etc/security/limits.d/"
+  # udev rules, giving access to devices to realtime group
+  install -vDm 644 "40-${pkgname}.rules" -t "${pkgdir}/usr/lib/udev/rules.d/"
+}


Property changes on: realtime-privileges/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: realtime-privileges/trunk/realtime-privileges.install
===
--- realtime-privileges/trunk/realtime-privileges.install   
(rev 0)
+++ realtime-privileges/trunk/realtime-privileges.install   2018-07-29 
16:44:59 UTC (rev 364860)
@@ -0,0 +1,7 @@
+post_install() {
+  echo "The 'realtime' group has been created. Add your user to it and 
re-login to use realtime privileges."
+}
+
+post_remove() {
+  echo "Privileges for realtime 

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

2018-07-29 Thread Jaroslav Lichtblau via arch-commits
Date: Sunday, July 29, 2018 @ 16:43:15
  Author: jlichtblau
Revision: 364858

upgpkg: syncthing 0.14.49-1 - new upstream release

Modified:
  syncthing/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-07-29 16:39:52 UTC (rev 364857)
+++ PKGBUILD2018-07-29 16:43:15 UTC (rev 364858)
@@ -6,7 +6,7 @@
 # Contributor: korjjj 
 
 pkgname=('syncthing' 'syncthing-relaysrv')
-pkgver=0.14.48
+pkgver=0.14.49
 pkgrel=1
 arch=('x86_64')
 url="http://syncthing.net/;
@@ -19,7 +19,7 @@
 syncthing-relaysrv.tmpfiles
 syncthing-relaysrv.service)
 validpgpkeys=('37C84554E7E0A261E4F76E1ED26E6ED000654A3E') # Syncthing Release 
Management
-sha256sums=('b4922518b012aa9bc46b39404a71ca00e5bcc2f0e0ad21a27a841a4965a9b32f'
+sha256sums=('520ff7d23e37bf01ea23ea57b5b22688de9f34d6f9aba3b61f1c3f1e8bfcbf1a'
 'SKIP'
 '6ab96a5949e223d315d49663734ad27b70c72469c691a61ac198cb7794cb5eaa'
 'f88985f2d374af57f17ef6362c37a305467858195b74d1c1def71d97273f'
@@ -37,13 +37,13 @@
   go run build.go -no-upgrade -version v${pkgver} build strelaysrv
 }
 
-# check() {
-#   export GOPATH="${srcdir}" GOROOT_FINAL="/usr/bin"
-#   cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-#   if [ "${CARCH}" == "x86_64" ] ; then
-# go run build.go -no-upgrade test
-#   fi
-# }
+check() {
+  export GOPATH="${srcdir}" GOROOT_FINAL="/usr/bin"
+  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
+  if [ "${CARCH}" == "x86_64" ] ; then
+go run build.go -no-upgrade test
+  fi
+}
 
 package_syncthing() {
   pkgdesc="Open Source Continuous Replication / Cluster Synchronization Thing"


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

2018-07-29 Thread Jaroslav Lichtblau via arch-commits
Date: Sunday, July 29, 2018 @ 16:43:32
  Author: jlichtblau
Revision: 364859

archrelease: copy trunk to community-x86_64

Added:
  syncthing/repos/community-x86_64/PKGBUILD
(from rev 364858, syncthing/trunk/PKGBUILD)
  syncthing/repos/community-x86_64/syncthing-relaysrv.service
(from rev 364858, syncthing/trunk/syncthing-relaysrv.service)
  syncthing/repos/community-x86_64/syncthing-relaysrv.sysusers
(from rev 364858, syncthing/trunk/syncthing-relaysrv.sysusers)
  syncthing/repos/community-x86_64/syncthing-relaysrv.tmpfiles
(from rev 364858, syncthing/trunk/syncthing-relaysrv.tmpfiles)
  syncthing/repos/community-x86_64/syncthing.install
(from rev 364858, syncthing/trunk/syncthing.install)
Deleted:
  syncthing/repos/community-x86_64/PKGBUILD
  syncthing/repos/community-x86_64/syncthing-relaysrv.service
  syncthing/repos/community-x86_64/syncthing-relaysrv.sysusers
  syncthing/repos/community-x86_64/syncthing-relaysrv.tmpfiles
  syncthing/repos/community-x86_64/syncthing.install

-+
 PKGBUILD|  188 +-
 syncthing-relaysrv.service  |   34 +++
 syncthing-relaysrv.sysusers |4 
 syncthing-relaysrv.tmpfiles |2 
 syncthing.install   |   18 ++--
 5 files changed, 123 insertions(+), 123 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-07-29 16:43:15 UTC (rev 364858)
+++ PKGBUILD2018-07-29 16:43:32 UTC (rev 364859)
@@ -1,94 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Martin Wimpress 
-# Contributor: Sauyon Lee 
-# Contributor: Kevin MacMartin 
-# Contributor: korjjj 
-
-pkgname=('syncthing' 'syncthing-relaysrv')
-pkgver=0.14.48
-pkgrel=1
-arch=('x86_64')
-url="http://syncthing.net/;
-license=('MPL')
-depends=('glibc')
-makedepends=('git' 'go' 'inetutils')
-options=('!strip')
-source=(https://github.com/syncthing/syncthing/releases/download/v$pkgver/syncthing-source-v${pkgver}.tar.gz{,.asc}
-syncthing-relaysrv.sysusers
-syncthing-relaysrv.tmpfiles
-syncthing-relaysrv.service)
-validpgpkeys=('37C84554E7E0A261E4F76E1ED26E6ED000654A3E') # Syncthing Release 
Management
-sha256sums=('b4922518b012aa9bc46b39404a71ca00e5bcc2f0e0ad21a27a841a4965a9b32f'
-'SKIP'
-'6ab96a5949e223d315d49663734ad27b70c72469c691a61ac198cb7794cb5eaa'
-'f88985f2d374af57f17ef6362c37a305467858195b74d1c1def71d97273f'
-'7c2fbc9608d81f8080f8a9102b867a52a050b61f426a0c182ccc1cb5815e4981')
-
-prepare() {
-  install -d "src/github.com/syncthing"
-  mv "${pkgbase}" "src/github.com/syncthing/${pkgbase}"
-}
-
-build() {
-  export GOPATH="${srcdir}" GOROOT_FINAL="/usr/bin"
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  go run build.go -no-upgrade -version v${pkgver} build
-  go run build.go -no-upgrade -version v${pkgver} build strelaysrv
-}
-
-# check() {
-#   export GOPATH="${srcdir}" GOROOT_FINAL="/usr/bin"
-#   cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-#   if [ "${CARCH}" == "x86_64" ] ; then
-# go run build.go -no-upgrade test
-#   fi
-# }
-
-package_syncthing() {
-  pkgdesc="Open Source Continuous Replication / Cluster Synchronization Thing"
-  install=$pkgname.install
-
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  install -Dm755 ${pkgname} "${pkgdir}/usr/bin/${pkgname}"
-  install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
-  install -Dm644 "etc/linux-systemd/system/${pkgname}-resume.service" \
-"${pkgdir}/usr/lib/systemd/system/${pkgname}-resume.service"
-  install -Dm644 "etc/linux-systemd/system/${pkgname}@.service" \
-"${pkgdir}/usr/lib/systemd/system/${pkgname}@.service"
-  install -Dm644 "etc/linux-systemd/user/${pkgname}.service" \
-"${pkgdir}/usr/lib/systemd/user/${pkgname}.service"
-
-  # license
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-
-  # ufw preset
-  install -Dm644 etc/firewall-ufw/syncthing \
-"$pkgdir/etc/ufw/applications.d/ufw-syncthing"
-
-  # man pages
-  cd "${srcdir}/src/github.com/syncthing/${pkgname}/man"
-  for file in $(find . -name '*.1' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man1/$file
-  done
-  for file in $(find . -name '*.5' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man5/$file
-  done
-  for file in $(find . -name '*.7' -print); do
-install -Dm644 $file "${pkgdir}"/usr/share/man/man7/$file
-  done
-}
-
-package_syncthing-relaysrv() {
-  pkgdesc='Relay server for Syncthing'
-
-  cd "${srcdir}/src/github.com/syncthing/${pkgbase}"
-  install -Dm755 strelaysrv "${pkgdir}"/usr/bin/${pkgname}
-
-  install -Dm644 "${srcdir}"/${pkgname}.service \
-"${pkgdir}"/usr/lib/systemd/system/${pkgname}.service
-  install -Dm644 "${srcdir}/${pkgname}.tmpfiles" \
-"$pkgdir/usr/lib/tmpfiles.d/${pkgname}.conf"
-  install -Dm644 "${srcdir}/${pkgname}.sysusers" \
-

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

2018-07-29 Thread Jan Steffens via arch-commits
Date: Sunday, July 29, 2018 @ 16:39:52
  Author: heftig
Revision: 364857

archrelease: copy trunk to community-staging-any

Added:
  python-treq/repos/community-staging-any/
  python-treq/repos/community-staging-any/PKGBUILD
(from rev 364856, python-treq/trunk/PKGBUILD)
  python-treq/repos/community-staging-any/py3.7.diff
(from rev 364856, python-treq/trunk/py3.7.diff)

+
 PKGBUILD   |   62 +++
 py3.7.diff |   17 
 2 files changed, 79 insertions(+)

Copied: python-treq/repos/community-staging-any/PKGBUILD (from rev 364856, 
python-treq/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2018-07-29 16:39:52 UTC (rev 364857)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-treq
+pkgname=('python-treq' 'python2-treq')
+pkgver=18.6.0
+pkgrel=2
+pkgdesc="A requests-like API built on top of twisted.web's Agent"
+arch=('any')
+license=('MIT')
+url='https://github.com/twisted/treq'
+makedepends=('python-setuptools' 'python2-setuptools' 'python-incremental' 
'python2-incremental'
+ 'python-requests' 'python2-requests' 'python2-pyopenssl' 
'python-pyopenssl'
+ 'python-service-identity' 'python2-service-identity' 
'python-idna' 'python2-idna'
+ 'python-attrs' 'python2-attrs' 'python-twisted' 'python2-twisted' 
'httpbin'
+ 'python2-httpbin')
+checkdepends=('python-mock' 'python2-mock' 'python-pytest-runner' 
'python2-pytest-runner')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/twisted/treq/archive/release-$pkgver.tar.gz;
+py3.7.diff)
+sha512sums=('1d0d793725647c6b451853f166436040e49095fca43f6c74053f3ba18ec8f8ae0095ed78c7d141cc95dfba9674339ac44262943225bec7be0f0cb05253758688'
+
'6806e8186c8742ac3c40e71d4e14b25b96d198995f03a8730755b3594b4a9e854fd799ceec4d6799571e14e02bca2d3797658b2f2eba38b76a8660156e44c84e')
+
+prepare() {
+  patch -d treq-release-$pkgver -p1 < py3.7.diff
+  cp -a treq-release-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/treq-release-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/treq-release-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/treq-release-$pkgver
+  python setup.py pytest
+
+  cd "$srcdir"/treq-release-$pkgver-py2
+  python2 setup.py pytest
+}
+
+package_python-treq() {
+  depends=('python-incremental' 'python-requests' 'python-pyopenssl' 
'python-service-identity'
+   'python-idna' 'python-attrs' 'python-twisted')
+
+  cd treq-release-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-treq() {
+  depends=('python2-incremental' 'python2-requests' 'python2-pyopenssl' 
'python2-service-identity'
+   'python2-idna' 'python2-attrs' 'python2-twisted')
+
+  cd treq-release-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:

Copied: python-treq/repos/community-staging-any/py3.7.diff (from rev 364856, 
python-treq/trunk/py3.7.diff)
===
--- community-staging-any/py3.7.diff(rev 0)
+++ community-staging-any/py3.7.diff2018-07-29 16:39:52 UTC (rev 364857)
@@ -0,0 +1,17 @@
+diff -u -r treq-release-18.6.0/src/treq/test/test_multipart.py 
treq-release-18.6.0-py3.7/src/treq/test/test_multipart.py
+--- treq-release-18.6.0/src/treq/test/test_multipart.py2018-06-29 
07:26:36.0 +0200
 treq-release-18.6.0-py3.7/src/treq/test/test_multipart.py  2018-07-29 
18:37:15.842395815 +0200
+@@ -594,8 +594,11 @@
+ )
+ )
+ 
+-form = cgi.parse_multipart(BytesIO(output), {"boundary": b"heyDavid"})
+-self.assertEqual(set([b'just a string\r\n', b'another string']),
++form = cgi.parse_multipart(BytesIO(output), {
++"boundary": b"heyDavid",
++"CONTENT-LENGTH": str(len(output)),
++})
++self.assertEqual(set(['just a string\r\n', 'another string']),
+  set(form['cfield']))
+ 
+ self.assertEqual(set([b'my lovely bytes2']), set(form['efield']))


[arch-commits] Commit in python-treq/trunk (PKGBUILD py3.7.diff)

2018-07-29 Thread Jan Steffens via arch-commits
Date: Sunday, July 29, 2018 @ 16:39:18
  Author: heftig
Revision: 364856

18.6.0-2: python 3.7

Added:
  python-treq/trunk/py3.7.diff
Modified:
  python-treq/trunk/PKGBUILD

+
 PKGBUILD   |9 ++---
 py3.7.diff |   17 +
 2 files changed, 23 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-07-29 16:37:00 UTC (rev 364855)
+++ PKGBUILD2018-07-29 16:39:18 UTC (rev 364856)
@@ -4,7 +4,7 @@
 pkgbase=python-treq
 pkgname=('python-treq' 'python2-treq')
 pkgver=18.6.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A requests-like API built on top of twisted.web's Agent"
 arch=('any')
 license=('MIT')
@@ -15,10 +15,13 @@
  'python-attrs' 'python2-attrs' 'python-twisted' 'python2-twisted' 
'httpbin'
  'python2-httpbin')
 checkdepends=('python-mock' 'python2-mock' 'python-pytest-runner' 
'python2-pytest-runner')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/twisted/treq/archive/release-$pkgver.tar.gz;)
-sha512sums=('1d0d793725647c6b451853f166436040e49095fca43f6c74053f3ba18ec8f8ae0095ed78c7d141cc95dfba9674339ac44262943225bec7be0f0cb05253758688')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/twisted/treq/archive/release-$pkgver.tar.gz;
+py3.7.diff)
+sha512sums=('1d0d793725647c6b451853f166436040e49095fca43f6c74053f3ba18ec8f8ae0095ed78c7d141cc95dfba9674339ac44262943225bec7be0f0cb05253758688'
+
'6806e8186c8742ac3c40e71d4e14b25b96d198995f03a8730755b3594b4a9e854fd799ceec4d6799571e14e02bca2d3797658b2f2eba38b76a8660156e44c84e')
 
 prepare() {
+  patch -d treq-release-$pkgver -p1 < py3.7.diff
   cp -a treq-release-$pkgver{,-py2}
 }
 

Added: py3.7.diff
===
--- py3.7.diff  (rev 0)
+++ py3.7.diff  2018-07-29 16:39:18 UTC (rev 364856)
@@ -0,0 +1,17 @@
+diff -u -r treq-release-18.6.0/src/treq/test/test_multipart.py 
treq-release-18.6.0-py3.7/src/treq/test/test_multipart.py
+--- treq-release-18.6.0/src/treq/test/test_multipart.py2018-06-29 
07:26:36.0 +0200
 treq-release-18.6.0-py3.7/src/treq/test/test_multipart.py  2018-07-29 
18:37:15.842395815 +0200
+@@ -594,8 +594,11 @@
+ )
+ )
+ 
+-form = cgi.parse_multipart(BytesIO(output), {"boundary": b"heyDavid"})
+-self.assertEqual(set([b'just a string\r\n', b'another string']),
++form = cgi.parse_multipart(BytesIO(output), {
++"boundary": b"heyDavid",
++"CONTENT-LENGTH": str(len(output)),
++})
++self.assertEqual(set(['just a string\r\n', 'another string']),
+  set(form['cfield']))
+ 
+ self.assertEqual(set([b'my lovely bytes2']), set(form['efield']))


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

2018-07-29 Thread Jaroslav Lichtblau via arch-commits
Date: Sunday, July 29, 2018 @ 16:36:50
  Author: jlichtblau
Revision: 364854

upgpkg: hugo 0.45.1-1 - new upstream release

Modified:
  hugo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-07-29 16:21:31 UTC (rev 364853)
+++ PKGBUILD2018-07-29 16:36:50 UTC (rev 364854)
@@ -5,7 +5,7 @@
 # Contributor: Brenton Horne
 
 pkgname=hugo
-pkgver=0.44
+pkgver=0.45.1
 pkgrel=1
 pkgdesc="Fast and Flexible Static Site Generator in Go"
 arch=('x86_64')
@@ -15,7 +15,7 @@
 makedepends=('go-pie' 'git')
 optdepends=('pygmentize: syntax-highlight code snippets')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/gohugoio/${pkgname}/archive/v${pkgver}.tar.gz)
-sha256sums=('63e6ae4be7e7b23ab5551842182b49be9a9a07a82d217c1a7a2815b49976129d')
+sha256sums=('4d8be74015fcc0be56d7a1d719b8b4900973e1e8ad4da9c9867c4c003f95ccfc')
 
 prepare() {
   cd "${srcdir}"/${pkgname}-${pkgver}


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

2018-07-29 Thread Jaroslav Lichtblau via arch-commits
Date: Sunday, July 29, 2018 @ 16:37:00
  Author: jlichtblau
Revision: 364855

archrelease: copy trunk to community-x86_64

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

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

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

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


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

2018-07-29 Thread Eli Schwartz via arch-commits
Date: Sunday, July 29, 2018 @ 16:21:31
  Author: eschwartz
Revision: 364853

archrelease: copy trunk to community-any

Added:
  aurpublish/repos/community-any/
  aurpublish/repos/community-any/PKGBUILD
(from rev 364852, aurpublish/trunk/PKGBUILD)

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

Copied: aurpublish/repos/community-any/PKGBUILD (from rev 364852, 
aurpublish/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2018-07-29 16:21:31 UTC (rev 364853)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Eli Schwartz 
+
+pkgname=aurpublish
+pkgver=r20.g8664477
+pkgrel=1
+pkgdesc="PKGBUILD management/upload framework for the Arch User Repository"
+arch=('any')
+url="https://github.com/eli-schwartz/${pkgname};
+license=('GPL')
+depends=('git' 'openssh')
+_commit=86644774c1a764ef54c374d728ab4514232d6c1d
+source=("git+${url}.git?signed#commit=${_commit}")
+sha512sums=('SKIP')
+validpgpkeys=('BD27B07A5EF45C2ADAF70E0484818A6819AF4A9B') # Eli Schwartz 

+
+pkgver() {
+cd "${srcdir}"/${pkgname}
+
+printf "r%s.g%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short 
HEAD)"
+}
+
+build() {
+cd "${srcdir}"/${pkgname}
+
+make PREFIX=/usr
+}
+
+package() {
+cd "${srcdir}"/${pkgname}
+
+make PREFIX=/usr DESTDIR="${pkgdir}" install
+}


[arch-commits] Commit in (4 files)

2018-07-29 Thread Eli Schwartz via arch-commits
Date: Sunday, July 29, 2018 @ 16:21:05
  Author: eschwartz
Revision: 364852

Initial upload of aurpublish

It's somewhat unofficially popular and I received no objections on a-d-p

Added:
  aurpublish/
  aurpublish/repos/
  aurpublish/trunk/
  aurpublish/trunk/PKGBUILD

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

Added: aurpublish/trunk/PKGBUILD
===
--- aurpublish/trunk/PKGBUILD   (rev 0)
+++ aurpublish/trunk/PKGBUILD   2018-07-29 16:21:05 UTC (rev 364852)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Eli Schwartz 
+
+pkgname=aurpublish
+pkgver=r20.g8664477
+pkgrel=1
+pkgdesc="PKGBUILD management/upload framework for the Arch User Repository"
+arch=('any')
+url="https://github.com/eli-schwartz/${pkgname};
+license=('GPL')
+depends=('git' 'openssh')
+_commit=86644774c1a764ef54c374d728ab4514232d6c1d
+source=("git+${url}.git?signed#commit=${_commit}")
+sha512sums=('SKIP')
+validpgpkeys=('BD27B07A5EF45C2ADAF70E0484818A6819AF4A9B') # Eli Schwartz 

+
+pkgver() {
+cd "${srcdir}"/${pkgname}
+
+printf "r%s.g%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short 
HEAD)"
+}
+
+build() {
+cd "${srcdir}"/${pkgname}
+
+make PREFIX=/usr
+}
+
+package() {
+cd "${srcdir}"/${pkgname}
+
+make PREFIX=/usr DESTDIR="${pkgdir}" install
+}


Property changes on: aurpublish/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


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

2018-07-29 Thread Jaroslav Lichtblau via arch-commits
Date: Sunday, July 29, 2018 @ 16:18:53
  Author: jlichtblau
Revision: 364850

upgpkg: youtube-dl 2018.07.29-2 - Python 3.7 rebuild

Modified:
  youtube-dl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-07-29 16:18:04 UTC (rev 364849)
+++ PKGBUILD2018-07-29 16:18:53 UTC (rev 364850)
@@ -4,7 +4,7 @@
 
 pkgname=youtube-dl
 pkgver=2018.07.29
-pkgrel=1
+pkgrel=2
 pkgdesc="A small command-line program to download videos from YouTube.com and 
a few more sites"
 arch=('any')
 url="http://rg3.github.io/youtube-dl/;


[arch-commits] Commit in youtube-dl/repos/community-staging-any (PKGBUILD PKGBUILD)

2018-07-29 Thread Jaroslav Lichtblau via arch-commits
Date: Sunday, July 29, 2018 @ 16:19:04
  Author: jlichtblau
Revision: 364851

archrelease: copy trunk to community-staging-any

Added:
  youtube-dl/repos/community-staging-any/PKGBUILD
(from rev 364850, youtube-dl/trunk/PKGBUILD)
Deleted:
  youtube-dl/repos/community-staging-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-07-29 16:18:53 UTC (rev 364850)
+++ PKGBUILD2018-07-29 16:19:04 UTC (rev 364851)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-# Maintainer: Jaroslav Lichtblau 
-
-pkgname=youtube-dl
-pkgver=2018.07.10
-pkgrel=2
-pkgdesc="A small command-line program to download videos from YouTube.com and 
a few more sites"
-arch=('any')
-url="http://rg3.github.io/youtube-dl/;
-license=('custom')
-depends=('python' 'python-setuptools')
-optdepends=('ffmpeg: for video post-processing'
-'rtmpdump: for rtmp streams support'
-'atomicparsley: for embedding thumbnails into m4a files'
-'python-crypto: for hlsnative downloader')
-source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.sig})
-sha256sums=('ad8326e25be0da9f5c6a8f16f96396893f64263d237d5cfacf4dcc4012542fe6'
-'SKIP')
-validpgpkeys=('7D33D762FD6C35130481347FDB4B54CBA4826A18'  # Philipp Hagemeister
-  'ED7F5BF46B3BBED81C87368E2C393E0F18A9236D') # Sergey M.
-
-prepare() {
-  cd ${pkgname}
-  sed -i 's|etc/bash_completion.d|share/bash-completion/completions|' setup.py
-  sed -i 's|etc/fish/completions|share/fish/completions|' setup.py
-}
-
-package() {
-  cd ${pkgname}
-  python setup.py install --root="${pkgdir}/" --optimize=1
-  mv 
"${pkgdir}/usr/share/bash-completion/completions/youtube-dl.bash-completion" \
- "${pkgdir}/usr/share/bash-completion/completions/youtube-dl"
-  install -Dm644 youtube-dl.zsh 
"${pkgdir}/usr/share/zsh/site-functions/_youtube-dl"
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: youtube-dl/repos/community-staging-any/PKGBUILD (from rev 364850, 
youtube-dl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-07-29 16:19:04 UTC (rev 364851)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+# Maintainer: Jaroslav Lichtblau 
+
+pkgname=youtube-dl
+pkgver=2018.07.29
+pkgrel=2
+pkgdesc="A small command-line program to download videos from YouTube.com and 
a few more sites"
+arch=('any')
+url="http://rg3.github.io/youtube-dl/;
+license=('custom')
+depends=('python' 'python-setuptools')
+optdepends=('ffmpeg: for video post-processing'
+'rtmpdump: for rtmp streams support'
+'atomicparsley: for embedding thumbnails into m4a files'
+'python-crypto: for hlsnative downloader')
+source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.sig})
+sha256sums=('52a6cced5f076b28a3c6cf09d198bb14022789a0bb79eda5c3fe277ef7fe3aa3'
+'SKIP')
+validpgpkeys=('7D33D762FD6C35130481347FDB4B54CBA4826A18'  # Philipp Hagemeister
+  'ED7F5BF46B3BBED81C87368E2C393E0F18A9236D') # Sergey M.
+
+prepare() {
+  cd ${pkgname}
+  sed -i 's|etc/bash_completion.d|share/bash-completion/completions|' setup.py
+  sed -i 's|etc/fish/completions|share/fish/completions|' setup.py
+}
+
+package() {
+  cd ${pkgname}
+  python setup.py install --root="${pkgdir}/" --optimize=1
+  mv 
"${pkgdir}/usr/share/bash-completion/completions/youtube-dl.bash-completion" \
+ "${pkgdir}/usr/share/bash-completion/completions/youtube-dl"
+  install -Dm644 youtube-dl.zsh 
"${pkgdir}/usr/share/zsh/site-functions/_youtube-dl"
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


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

2018-07-29 Thread Felix Yan via arch-commits
Date: Sunday, July 29, 2018 @ 16:18:04
  Author: felixonmars
Revision: 364849

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-vty/repos/community-staging-x86_64/
  haskell-vty/repos/community-staging-x86_64/PKGBUILD
(from rev 364848, haskell-vty/trunk/PKGBUILD)

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

Copied: haskell-vty/repos/community-staging-x86_64/PKGBUILD (from rev 364848, 
haskell-vty/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-07-29 16:18:04 UTC (rev 364849)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=vty
+pkgname=haskell-vty
+pkgver=5.23.1
+pkgrel=1
+pkgdesc="A simple terminal UI library"
+url="https://github.com/jtdaugherty/vty;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-blaze-builder' 'haskell-microlens' 
'haskell-microlens-mtl'
+ 'haskell-microlens-th' 'haskell-hashable' 'haskell-parallel'
+ 'haskell-utf8-string' 'haskell-vector')
+makedepends=('ghc' 'haskell-hunit' 'haskell-quickcheck' 'haskell-smallcheck'
+ 'haskell-quickcheck-assertions' 'haskell-test-framework'
+ 'haskell-test-framework-smallcheck' 
'haskell-test-framework-hunit' 'haskell-random'
+ 'haskell-string-qq')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('002d0251c10a1d22384984e56ba29eab0ed2d2d8dd748c8d613fa76db4ce2c65b48aeb85b20e31c617f57ef47f604eee778c72e4c9fe7320498561a9cd385e23')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+# https://github.com/jtdaugherty/vty/issues/132
+# https://github.com/haskell/cabal/issues/4918
+cd $_hkgname-$pkgver
+# runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-07-29 Thread Jaroslav Lichtblau via arch-commits
Date: Sunday, July 29, 2018 @ 16:15:52
  Author: jlichtblau
Revision: 364848

archrelease: copy trunk to community-any

Added:
  youtube-dl/repos/community-any/PKGBUILD
(from rev 364847, youtube-dl/trunk/PKGBUILD)
Deleted:
  youtube-dl/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-07-29 16:15:42 UTC (rev 364847)
+++ PKGBUILD2018-07-29 16:15:52 UTC (rev 364848)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-# Maintainer: Jaroslav Lichtblau 
-
-pkgname=youtube-dl
-pkgver=2018.07.10
-pkgrel=1
-pkgdesc="A small command-line program to download videos from YouTube.com and 
a few more sites"
-arch=('any')
-url="http://rg3.github.io/youtube-dl/;
-license=('custom')
-depends=('python' 'python-setuptools')
-optdepends=('ffmpeg: for video post-processing'
-'rtmpdump: for rtmp streams support'
-'atomicparsley: for embedding thumbnails into m4a files'
-'python-crypto: for hlsnative downloader')
-source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.sig})
-sha256sums=('ad8326e25be0da9f5c6a8f16f96396893f64263d237d5cfacf4dcc4012542fe6'
-'SKIP')
-validpgpkeys=('7D33D762FD6C35130481347FDB4B54CBA4826A18'  # Philipp Hagemeister
-  'ED7F5BF46B3BBED81C87368E2C393E0F18A9236D') # Sergey M.
-
-prepare() {
-  cd ${pkgname}
-  sed -i 's|etc/bash_completion.d|share/bash-completion/completions|' setup.py
-  sed -i 's|etc/fish/completions|share/fish/completions|' setup.py
-}
-
-package() {
-  cd ${pkgname}
-  python setup.py install --root="${pkgdir}/" --optimize=1
-  mv 
"${pkgdir}/usr/share/bash-completion/completions/youtube-dl.bash-completion" \
- "${pkgdir}/usr/share/bash-completion/completions/youtube-dl"
-  install -Dm644 youtube-dl.zsh 
"${pkgdir}/usr/share/zsh/site-functions/_youtube-dl"
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: youtube-dl/repos/community-any/PKGBUILD (from rev 364847, 
youtube-dl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-07-29 16:15:52 UTC (rev 364848)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+# Maintainer: Jaroslav Lichtblau 
+
+pkgname=youtube-dl
+pkgver=2018.07.29
+pkgrel=1
+pkgdesc="A small command-line program to download videos from YouTube.com and 
a few more sites"
+arch=('any')
+url="http://rg3.github.io/youtube-dl/;
+license=('custom')
+depends=('python' 'python-setuptools')
+optdepends=('ffmpeg: for video post-processing'
+'rtmpdump: for rtmp streams support'
+'atomicparsley: for embedding thumbnails into m4a files'
+'python-crypto: for hlsnative downloader')
+source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.sig})
+sha256sums=('52a6cced5f076b28a3c6cf09d198bb14022789a0bb79eda5c3fe277ef7fe3aa3'
+'SKIP')
+validpgpkeys=('7D33D762FD6C35130481347FDB4B54CBA4826A18'  # Philipp Hagemeister
+  'ED7F5BF46B3BBED81C87368E2C393E0F18A9236D') # Sergey M.
+
+prepare() {
+  cd ${pkgname}
+  sed -i 's|etc/bash_completion.d|share/bash-completion/completions|' setup.py
+  sed -i 's|etc/fish/completions|share/fish/completions|' setup.py
+}
+
+package() {
+  cd ${pkgname}
+  python setup.py install --root="${pkgdir}/" --optimize=1
+  mv 
"${pkgdir}/usr/share/bash-completion/completions/youtube-dl.bash-completion" \
+ "${pkgdir}/usr/share/bash-completion/completions/youtube-dl"
+  install -Dm644 youtube-dl.zsh 
"${pkgdir}/usr/share/zsh/site-functions/_youtube-dl"
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


[arch-commits] Commit in python-ruamel-yaml/repos/community-staging-x86_64 (2 files)

2018-07-29 Thread Felix Yan via arch-commits
Date: Sunday, July 29, 2018 @ 16:15:22
  Author: felixonmars
Revision: 364846

archrelease: copy trunk to community-staging-x86_64

Added:
  python-ruamel-yaml/repos/community-staging-x86_64/PKGBUILD
(from rev 364845, python-ruamel-yaml/trunk/PKGBUILD)
Deleted:
  python-ruamel-yaml/repos/community-staging-x86_64/PKGBUILD

--+
 PKGBUILD |   46 +++---
 1 file changed, 23 insertions(+), 23 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-07-29 16:14:55 UTC (rev 364845)
+++ PKGBUILD2018-07-29 16:15:22 UTC (rev 364846)
@@ -1,23 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Samuel Littley 
-# Contributor: rnons 
-
-pkgname=python-ruamel-yaml
-pkgver=0.15.45
-pkgrel=1
-pkgdesc="YAML parser/emitter that supports roundtrip preservation of comments, 
seq/map flow style, and map key order"
-arch=('x86_64')
-url="https://bitbucket.org/ruamel/yaml;
-license=("MIT")
-makedepends=('python-pip' 'python-wheel')
-source=("https://pypi.io/packages/source/r/ruamel.yaml/ruamel.yaml-$pkgver.tar.gz;)
-sha512sums=('6cb80f9ffda4d78d0b67ed0f4b10171b61e6c19617078d825cbd9ebb507486c648c2f987837ca696a6c81f393774be3c99e08980b0a0bbb3a837e17b39eaa3ee')
-
-package() {
-  depends=('python')
-
-  cd ruamel.yaml-$pkgver
-  LC_CTYPE=en_US.UTF-8 pip install . --root="$pkgdir"
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-ruamel-yaml/repos/community-staging-x86_64/PKGBUILD (from rev 
364845, python-ruamel-yaml/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-07-29 16:15:22 UTC (rev 364846)
@@ -0,0 +1,23 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Samuel Littley 
+# Contributor: rnons 
+
+pkgname=python-ruamel-yaml
+pkgver=0.15.46
+pkgrel=1
+pkgdesc="YAML parser/emitter that supports roundtrip preservation of comments, 
seq/map flow style, and map key order"
+arch=('x86_64')
+url="https://bitbucket.org/ruamel/yaml;
+license=("MIT")
+makedepends=('python-pip' 'python-wheel')
+source=("https://pypi.io/packages/source/r/ruamel.yaml/ruamel.yaml-$pkgver.tar.gz;)
+sha512sums=('4ce7cf7cc08c292de314299cb7f7a182c283b94dc06faf10938698d22866c26c9fa31cb91bce81614f405dc3426547dfbc175bd3a29612977ea5377ed97b1d8b')
+
+package() {
+  depends=('python')
+
+  cd ruamel.yaml-$pkgver
+  LC_CTYPE=en_US.UTF-8 pip install . --root="$pkgdir"
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2018-07-29 Thread Jaroslav Lichtblau via arch-commits
Date: Sunday, July 29, 2018 @ 16:15:42
  Author: jlichtblau
Revision: 364847

upgpkg: youtube-dl 2018.07.29-1 - new upstream release

Modified:
  youtube-dl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-07-29 16:15:22 UTC (rev 364846)
+++ PKGBUILD2018-07-29 16:15:42 UTC (rev 364847)
@@ -3,8 +3,8 @@
 # Maintainer: Jaroslav Lichtblau 
 
 pkgname=youtube-dl
-pkgver=2018.07.10
-pkgrel=2
+pkgver=2018.07.29
+pkgrel=1
 pkgdesc="A small command-line program to download videos from YouTube.com and 
a few more sites"
 arch=('any')
 url="http://rg3.github.io/youtube-dl/;
@@ -15,7 +15,7 @@
 'atomicparsley: for embedding thumbnails into m4a files'
 'python-crypto: for hlsnative downloader')
 
source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.sig})
-sha256sums=('ad8326e25be0da9f5c6a8f16f96396893f64263d237d5cfacf4dcc4012542fe6'
+sha256sums=('52a6cced5f076b28a3c6cf09d198bb14022789a0bb79eda5c3fe277ef7fe3aa3'
 'SKIP')
 validpgpkeys=('7D33D762FD6C35130481347FDB4B54CBA4826A18'  # Philipp Hagemeister
   'ED7F5BF46B3BBED81C87368E2C393E0F18A9236D') # Sergey M.


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

2018-07-29 Thread Felix Yan via arch-commits
Date: Sunday, July 29, 2018 @ 16:14:55
  Author: felixonmars
Revision: 364845

upgpkg: python-ruamel-yaml 0.15.46-1

Modified:
  python-ruamel-yaml/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-07-29 16:14:42 UTC (rev 364844)
+++ PKGBUILD2018-07-29 16:14:55 UTC (rev 364845)
@@ -4,7 +4,7 @@
 # Contributor: rnons 
 
 pkgname=python-ruamel-yaml
-pkgver=0.15.45
+pkgver=0.15.46
 pkgrel=1
 pkgdesc="YAML parser/emitter that supports roundtrip preservation of comments, 
seq/map flow style, and map key order"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 license=("MIT")
 makedepends=('python-pip' 'python-wheel')
 
source=("https://pypi.io/packages/source/r/ruamel.yaml/ruamel.yaml-$pkgver.tar.gz;)
-sha512sums=('6cb80f9ffda4d78d0b67ed0f4b10171b61e6c19617078d825cbd9ebb507486c648c2f987837ca696a6c81f393774be3c99e08980b0a0bbb3a837e17b39eaa3ee')
+sha512sums=('4ce7cf7cc08c292de314299cb7f7a182c283b94dc06faf10938698d22866c26c9fa31cb91bce81614f405dc3426547dfbc175bd3a29612977ea5377ed97b1d8b')
 
 package() {
   depends=('python')


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

2018-07-29 Thread Felix Yan via arch-commits
Date: Sunday, July 29, 2018 @ 16:14:42
  Author: felixonmars
Revision: 364844

upgpkg: haskell-vty 5.23.1-1

rebuild with vty 5.23.1

Modified:
  haskell-vty/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-07-29 16:13:45 UTC (rev 364843)
+++ PKGBUILD2018-07-29 16:14:42 UTC (rev 364844)
@@ -4,8 +4,8 @@
 
 _hkgname=vty
 pkgname=haskell-vty
-pkgver=5.23
-pkgrel=2
+pkgver=5.23.1
+pkgrel=1
 pkgdesc="A simple terminal UI library"
 url="https://github.com/jtdaugherty/vty;
 license=("custom:BSD3")
@@ -18,7 +18,7 @@
  'haskell-test-framework-smallcheck' 
'haskell-test-framework-hunit' 'haskell-random'
  'haskell-string-qq')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('3278f125eeedc086e29f987ff7dcc609b40e41af038b3e9d233f1d34306f198cd70c7d7827adbacbf9039d8f2ff3d37718536b7af32347802717258387d2bb00')
+sha512sums=('002d0251c10a1d22384984e56ba29eab0ed2d2d8dd748c8d613fa76db4ce2c65b48aeb85b20e31c617f57ef47f604eee778c72e4c9fe7320498561a9cd385e23')
 
 build() {
 cd $_hkgname-$pkgver


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

2018-07-29 Thread Jaroslav Lichtblau via arch-commits
Date: Sunday, July 29, 2018 @ 16:13:45
  Author: jlichtblau
Revision: 364843

archrelease: copy trunk to community-any

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

+
 PKGBUILD   |  104 -
 josm.changelog |  573 +++
 josm.conf.d|8 
 3 files changed, 344 insertions(+), 341 deletions(-)

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

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

Deleted: josm.changelog
===
--- josm.changelog  2018-07-29 16:13:33 UTC (rev 364842)
+++ josm.changelog  2018-07-29 16:13:45 UTC (rev 

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

2018-07-29 Thread Jaroslav Lichtblau via arch-commits
Date: Sunday, July 29, 2018 @ 16:13:33
  Author: jlichtblau
Revision: 364842

upgpkg: josm 14066-1 - new upstream release

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

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

Modified: PKGBUILD
===
--- PKGBUILD2018-07-29 16:10:00 UTC (rev 364841)
+++ PKGBUILD2018-07-29 16:13:33 UTC (rev 364842)
@@ -3,7 +3,7 @@
 # Contributor: Michele Schäuble 
 
 pkgname=josm
-pkgver=14026
+pkgver=14066
 pkgrel=1
 pkgdesc="An editor for OpenStreetMap written in Java"
 arch=('any')
@@ -16,7 +16,7 @@
 
https://josm.openstreetmap.de/export/HEAD/$pkgname/trunk/linux/tested/usr/share/applications/$pkgname.desktop
 $pkgname.conf.d)
 noextract=($pkgname-tested.jar)
-sha256sums=('91e26a40a7b4890fd27e841dd509bf749a723ba159b73e2c33ab482fe41051fb'
+sha256sums=('2af684f80dab53abadf81118ac3677d1210de8620fe658186e3e85bccb57b01a'
 '9b18b076fd371fc87b851a700bb1fff6547b061769af57a3abc9af83405c16d2'
 'c86a73251eed42fcb129ae9b88a0ee3cf03d8d00a9385519ad536d5af0907663')
 

Modified: josm.changelog
===
--- josm.changelog  2018-07-29 16:10:00 UTC (rev 364841)
+++ josm.changelog  2018-07-29 16:13:33 UTC (rev 364842)
@@ -1,3 +1,6 @@
+2018-07-29 Jaroslav Lichtblau 
+   * josm 14066-1
+
 2018-07-14 Jaroslav Lichtblau 
* josm 14026-1
 


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

2018-07-29 Thread Fabio Castelli via arch-commits
Date: Sunday, July 29, 2018 @ 16:06:47
  Author: muflone
Revision: 364838

archrelease: copy trunk to community-testing-x86_64

Added:
  xca/repos/community-testing-x86_64/PKGBUILD
(from rev 364837, xca/trunk/PKGBUILD)
Deleted:
  xca/repos/community-testing-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-07-29 16:06:36 UTC (rev 364837)
+++ PKGBUILD2018-07-29 16:06:47 UTC (rev 364838)
@@ -1,26 +0,0 @@
-# $Id
-# Maintainer: Muflone http://www.muflone.com/contacts/english/
-# Contributor: Andrea Zucchelli 
-
-pkgname=xca
-pkgver=2.1.0
-pkgrel=2
-pkgdesc='Graphical user interface to OpenSSL, RSA/DSA public keys, 
certificates, signing requests and revokation lists'
-arch=('x86_64')
-url='https://hohnstaedt.de/xca/'
-license=('BSD')
-depends=('qt5-tools' 'libltdl' 'desktop-file-utils' 'gtk-update-icon-cache')
-source=("https://github.com/chris2511/${pkgname}/releases/download/RELEASE.${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('9d6adf3f6ae8a471a6f5fa3b76b98bf1c09baddb60847ceeae597aab400e36c9')
-
-build () {
-  cd "${pkgname}-${pkgver}"
-  ./configure --prefix=/usr --sysconfdir=/etc --with-openssl
-  sed -i  -r 's/(^LDFLAGS.*$)/LDFLAGS='"'"'-lstdc++'"'"'/' Local.mak
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  make install destdir="${pkgdir}"
-  install -m 644 -D COPYRIGHT 
"${pkgdir}/usr/share/licenses/${pkgname}/COPYRIGHT"
-}

Copied: xca/repos/community-testing-x86_64/PKGBUILD (from rev 364837, 
xca/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-07-29 16:06:47 UTC (rev 364838)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Muflone http://www.muflone.com/contacts/english/
+# Contributor: Andrea Zucchelli 
+
+pkgname=xca
+pkgver=2.1.0
+pkgrel=2
+pkgdesc='Graphical user interface to OpenSSL, RSA/DSA public keys, 
certificates, signing requests and revokation lists'
+arch=('x86_64')
+url='https://hohnstaedt.de/xca/'
+license=('BSD')
+depends=('qt5-tools' 'libltdl' 'desktop-file-utils' 'gtk-update-icon-cache')
+source=("https://github.com/chris2511/${pkgname}/releases/download/RELEASE.${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('9d6adf3f6ae8a471a6f5fa3b76b98bf1c09baddb60847ceeae597aab400e36c9')
+
+build () {
+  cd "${pkgname}-${pkgver}"
+  ./configure --prefix=/usr --sysconfdir=/etc --with-openssl
+  sed -i  -r 's/(^LDFLAGS.*$)/LDFLAGS='"'"'-lstdc++'"'"'/' Local.mak
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make install destdir="${pkgdir}"
+  install -m 644 -D COPYRIGHT 
"${pkgdir}/usr/share/licenses/${pkgname}/COPYRIGHT"
+}


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

2018-07-29 Thread Fabio Castelli via arch-commits
Date: Sunday, July 29, 2018 @ 16:06:36
  Author: muflone
Revision: 364837

upgpkg: xca 2.1.0-2

Modified:
  xca/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-07-29 16:06:07 UTC (rev 364836)
+++ PKGBUILD2018-07-29 16:06:36 UTC (rev 364837)
@@ -1,4 +1,4 @@
-# $Id
+# $Id$
 # Maintainer: Muflone http://www.muflone.com/contacts/english/
 # Contributor: Andrea Zucchelli 
 


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

2018-07-29 Thread Fabio Castelli via arch-commits
Date: Sunday, July 29, 2018 @ 16:06:07
  Author: muflone
Revision: 364836

archrelease: copy trunk to community-testing-x86_64

Added:
  xca/repos/community-testing-x86_64/
  xca/repos/community-testing-x86_64/PKGBUILD
(from rev 364835, xca/trunk/PKGBUILD)

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

Copied: xca/repos/community-testing-x86_64/PKGBUILD (from rev 364835, 
xca/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2018-07-29 16:06:07 UTC (rev 364836)
@@ -0,0 +1,26 @@
+# $Id
+# Maintainer: Muflone http://www.muflone.com/contacts/english/
+# Contributor: Andrea Zucchelli 
+
+pkgname=xca
+pkgver=2.1.0
+pkgrel=2
+pkgdesc='Graphical user interface to OpenSSL, RSA/DSA public keys, 
certificates, signing requests and revokation lists'
+arch=('x86_64')
+url='https://hohnstaedt.de/xca/'
+license=('BSD')
+depends=('qt5-tools' 'libltdl' 'desktop-file-utils' 'gtk-update-icon-cache')
+source=("https://github.com/chris2511/${pkgname}/releases/download/RELEASE.${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('9d6adf3f6ae8a471a6f5fa3b76b98bf1c09baddb60847ceeae597aab400e36c9')
+
+build () {
+  cd "${pkgname}-${pkgver}"
+  ./configure --prefix=/usr --sysconfdir=/etc --with-openssl
+  sed -i  -r 's/(^LDFLAGS.*$)/LDFLAGS='"'"'-lstdc++'"'"'/' Local.mak
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make install destdir="${pkgdir}"
+  install -m 644 -D COPYRIGHT 
"${pkgdir}/usr/share/licenses/${pkgname}/COPYRIGHT"
+}


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

2018-07-29 Thread Fabio Castelli via arch-commits
Date: Sunday, July 29, 2018 @ 16:05:41
  Author: muflone
Revision: 364835

Added:
  xca/
  xca/repos/
  xca/trunk/
  xca/trunk/PKGBUILD

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

Added: xca/trunk/PKGBUILD
===
--- xca/trunk/PKGBUILD  (rev 0)
+++ xca/trunk/PKGBUILD  2018-07-29 16:05:41 UTC (rev 364835)
@@ -0,0 +1,26 @@
+# $Id
+# Maintainer: Muflone http://www.muflone.com/contacts/english/
+# Contributor: Andrea Zucchelli 
+
+pkgname=xca
+pkgver=2.1.0
+pkgrel=2
+pkgdesc='Graphical user interface to OpenSSL, RSA/DSA public keys, 
certificates, signing requests and revokation lists'
+arch=('x86_64')
+url='https://hohnstaedt.de/xca/'
+license=('BSD')
+depends=('qt5-tools' 'libltdl' 'desktop-file-utils' 'gtk-update-icon-cache')
+source=("https://github.com/chris2511/${pkgname}/releases/download/RELEASE.${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('9d6adf3f6ae8a471a6f5fa3b76b98bf1c09baddb60847ceeae597aab400e36c9')
+
+build () {
+  cd "${pkgname}-${pkgver}"
+  ./configure --prefix=/usr --sysconfdir=/etc --with-openssl
+  sed -i  -r 's/(^LDFLAGS.*$)/LDFLAGS='"'"'-lstdc++'"'"'/' Local.mak
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make install destdir="${pkgdir}"
+  install -m 644 -D COPYRIGHT 
"${pkgdir}/usr/share/licenses/${pkgname}/COPYRIGHT"
+}


Property changes on: xca/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


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

2018-07-29 Thread Jan Steffens via arch-commits
Date: Sunday, July 29, 2018 @ 16:01:47
  Author: heftig
Revision: 329663

archrelease: copy trunk to staging-any

Added:
  python-rdflib/repos/staging-any/
  python-rdflib/repos/staging-any/PKGBUILD
(from rev 329662, python-rdflib/trunk/PKGBUILD)
  python-rdflib/repos/staging-any/py3.7.diff
(from rev 329662, python-rdflib/trunk/py3.7.diff)

+
 PKGBUILD   |   71 +++
 py3.7.diff |   19 +++
 2 files changed, 90 insertions(+)

Copied: python-rdflib/repos/staging-any/PKGBUILD (from rev 329662, 
python-rdflib/trunk/PKGBUILD)
===
--- staging-any/PKGBUILD(rev 0)
+++ staging-any/PKGBUILD2018-07-29 16:01:47 UTC (rev 329663)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer:
+# Contributor: Andrea Scarpino 
+# Contributor: Leif Warner 
+
+pkgbase=python-rdflib
+pkgname=('python2-rdflib' 'python-rdflib')
+pkgver=4.2.2
+pkgrel=2
+pkgdesc="A Python library for working with RDF, a simple yet powerful language 
for representing information"
+arch=('any')
+url="http://rdflib.net/;
+license=('BSD')
+makedepends=('python2-isodate' 'python-isodate' 'python2-setuptools' 
'python-setuptools')
+checkdepends=('python2-nose' 'python-nose' 'python2-pyparsing' 
'python-pyparsing' 'python2-six'
+  'python-six' 'python-html5lib' 'python2-html5lib' 
'python-sparqlwrapper'
+  'python2-sparqlwrapper' 'python-networkx' 'python2-networkx' 
'python-decorator'
+  'python2-decorator')
+source=(rdflib-$pkgver.tar.gz::https://github.com/RDFLib/rdflib/tarball/$pkgver
+py3.7.diff)
+sha1sums=('08fe9d3480af78ca70380eeae082524ce70bb9d3'
+  '71e6b688c981a3f1387f68944580c1e5d5363915')
+
+prepare() {
+  patch -d RDFLib-rdflib-* -p1 < py3.7.diff
+  cp -r RDFLib-rdflib-* python2-rdflib
+  cd python2-rdflib
+  sed -i 's|/usr/bin/env python|/usr/bin/env python2|' 
rdflib/extras/{describer.py,infixowl.py} \
+
rdflib/plugins/parsers/{ntriples.py,notation3.py,structureddata.py,pyRdfa/extras/httpheader.py}
 \
+rdflib/tools/rdfpipe.py
+}
+
+build() {
+  cd RDFLib-rdflib-*
+  python setup.py build
+  cd ../python2-rdflib
+  python2 setup.py build
+}
+
+check() {
+  cd RDFLib-rdflib-*
+  #python setup.py test # Will download and install rdflib again
+  nosetests3 --where=./build/src \
+--with-doctest \
+--doctest-extension=.doctest \
+--doctest-tests
+  cd ../python2-rdflib
+  #python2 setup.py test # Same
+  python2 run_tests.py --with-xunit
+}
+
+package_python2-rdflib() {
+  depends=('python2-isodate')
+
+  cd python2-rdflib
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644  LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  cd "$pkgdir/usr/bin"
+  for i in * ; do 
+mv $i $i-py2
+  done
+}
+
+package_python-rdflib() {
+  depends=('python-isodate')
+
+  cd RDFLib-rdflib-*
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644  LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Copied: python-rdflib/repos/staging-any/py3.7.diff (from rev 329662, 
python-rdflib/trunk/py3.7.diff)
===
--- staging-any/py3.7.diff  (rev 0)
+++ staging-any/py3.7.diff  2018-07-29 16:01:47 UTC (rev 329663)
@@ -0,0 +1,19 @@
+diff -u -r RDFLib-rdflib-2fb94c8/rdflib/plugins/sparql/evaluate.py 
RDFLib-rdflib-2fb94c8-py3.7/rdflib/plugins/sparql/evaluate.py
+--- RDFLib-rdflib-2fb94c8/rdflib/plugins/sparql/evaluate.py2017-01-29 
17:51:48.0 +0100
 RDFLib-rdflib-2fb94c8-py3.7/rdflib/plugins/sparql/evaluate.py  
2018-07-29 17:31:55.614217759 +0200
+@@ -326,9 +326,12 @@
+ # import pdb; pdb.set_trace()
+ res = evalPart(ctx, slice.p)
+ i = 0
+-while i < slice.start:
+-res.next()
+-i += 1
++try:
++while i < slice.start:
++res.next()
++i += 1
++except StopIteration:
++return
+ i = 0
+ for x in res:
+ i += 1


[arch-commits] Commit in python-rdflib/trunk (PKGBUILD py3.7.diff)

2018-07-29 Thread Jan Steffens via arch-commits
Date: Sunday, July 29, 2018 @ 16:00:59
  Author: heftig
Revision: 329662

4.2.2-2

Added:
  python-rdflib/trunk/py3.7.diff
Modified:
  python-rdflib/trunk/PKGBUILD

+
 PKGBUILD   |   20 
 py3.7.diff |   19 +++
 2 files changed, 31 insertions(+), 8 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-07-29 13:33:29 UTC (rev 329661)
+++ PKGBUILD2018-07-29 16:00:59 UTC (rev 329662)
@@ -6,19 +6,23 @@
 pkgbase=python-rdflib
 pkgname=('python2-rdflib' 'python-rdflib')
 pkgver=4.2.2
-pkgrel=1
+pkgrel=2
 pkgdesc="A Python library for working with RDF, a simple yet powerful language 
for representing information"
 arch=('any')
 url="http://rdflib.net/;
 license=('BSD')
 makedepends=('python2-isodate' 'python-isodate' 'python2-setuptools' 
'python-setuptools')
-checkdepends=('python2-nose' 'python-nose' 'python2-pyparsing' 
'python-pyparsing' 
-  'python2-six' 'python-six' 'python-html5lib' 'python2-html5lib' 
'python-sparqlwrapper'
-  'python2-sparqlwrapper')
-source=(rdflib-$pkgver.tar.gz::https://github.com/RDFLib/rdflib/tarball/$pkgver)
-sha1sums=('08fe9d3480af78ca70380eeae082524ce70bb9d3')
+checkdepends=('python2-nose' 'python-nose' 'python2-pyparsing' 
'python-pyparsing' 'python2-six'
+  'python-six' 'python-html5lib' 'python2-html5lib' 
'python-sparqlwrapper'
+  'python2-sparqlwrapper' 'python-networkx' 'python2-networkx' 
'python-decorator'
+  'python2-decorator')
+source=(rdflib-$pkgver.tar.gz::https://github.com/RDFLib/rdflib/tarball/$pkgver
+py3.7.diff)
+sha1sums=('08fe9d3480af78ca70380eeae082524ce70bb9d3'
+  '71e6b688c981a3f1387f68944580c1e5d5363915')
 
 prepare() {
+  patch -d RDFLib-rdflib-* -p1 < py3.7.diff
   cp -r RDFLib-rdflib-* python2-rdflib
   cd python2-rdflib
   sed -i 's|/usr/bin/env python|/usr/bin/env python2|' 
rdflib/extras/{describer.py,infixowl.py} \
@@ -39,10 +43,10 @@
   nosetests3 --where=./build/src \
 --with-doctest \
 --doctest-extension=.doctest \
---doctest-tests || true # Tests failing - 4.1.2
+--doctest-tests
   cd ../python2-rdflib
   #python2 setup.py test # Same
-  python2 run_tests.py --with-xunit || true
+  python2 run_tests.py --with-xunit
 }
 
 package_python2-rdflib() {

Added: py3.7.diff
===
--- py3.7.diff  (rev 0)
+++ py3.7.diff  2018-07-29 16:00:59 UTC (rev 329662)
@@ -0,0 +1,19 @@
+diff -u -r RDFLib-rdflib-2fb94c8/rdflib/plugins/sparql/evaluate.py 
RDFLib-rdflib-2fb94c8-py3.7/rdflib/plugins/sparql/evaluate.py
+--- RDFLib-rdflib-2fb94c8/rdflib/plugins/sparql/evaluate.py2017-01-29 
17:51:48.0 +0100
 RDFLib-rdflib-2fb94c8-py3.7/rdflib/plugins/sparql/evaluate.py  
2018-07-29 17:31:55.614217759 +0200
+@@ -326,9 +326,12 @@
+ # import pdb; pdb.set_trace()
+ res = evalPart(ctx, slice.p)
+ i = 0
+-while i < slice.start:
+-res.next()
+-i += 1
++try:
++while i < slice.start:
++res.next()
++i += 1
++except StopIteration:
++return
+ i = 0
+ for x in res:
+ i += 1


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

2018-07-29 Thread Jan Steffens via arch-commits
Date: Sunday, July 29, 2018 @ 15:21:07
  Author: heftig
Revision: 364834

archrelease: copy trunk to community-staging-any

Added:
  apache-libcloud/repos/community-staging-any/
  apache-libcloud/repos/community-staging-any/PKGBUILD
(from rev 364833, apache-libcloud/trunk/PKGBUILD)
  apache-libcloud/repos/community-staging-any/py3.7.diff
(from rev 364833, apache-libcloud/trunk/py3.7.diff)

+
 PKGBUILD   |   62 +
 py3.7.diff |  109 +++
 2 files changed, 171 insertions(+)

Copied: apache-libcloud/repos/community-staging-any/PKGBUILD (from rev 364833, 
apache-libcloud/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2018-07-29 15:21:07 UTC (rev 364834)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Wallace 
+# Contributor: Lex Black 
+# Contributor: Alasdair Haswell 
+
+pkgbase=apache-libcloud
+pkgname=('python-apache-libcloud' 'python2-apache-libcloud')
+pkgver=2.3.0
+pkgrel=2
+pkgdesc="Apache Libcloud is a standard Python library that abstracts away 
differences among multiple cloud provider APIs"
+arch=('any')
+url="https://libcloud.apache.org;
+license=('Apache')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-requests' 
'python2-requests')
+checkdepends=('python-mock' 'python2-mock' 'python-pytest-runner' 
'python2-pytest-runner' 'openssh'
+  'python-requests-mock' 'python2-requests-mock')
+source=("https://pypi.io/packages/source/a/apache-libcloud/apache-libcloud-${pkgver}.tar.gz;
+py3.7.diff)
+sha512sums=('3c77b0261a9386af7b215f354126d0f3189209eeab3cac8e02eabddcb36ccc979159e148854bf0118ba2d8b9fa5bf57f493b144b860b1809c9aeff9efb0161a5'
+
'080da5aab7ca75c0041dab927526921cb4ebcbb9fdd4a8bf35baca214a378f962c3a9ba7ea55b262ffb4ff2d02b84fddee3483cdaa7c869d386cc24e2834cd71')
+
+prepare() {
+  patch -d apache-libcloud-$pkgver -p1 < py3.7.diff
+  cp -a apache-libcloud-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir/apache-libcloud-$pkgver"
+  python setup.py build
+
+  cd "$srcdir/apache-libcloud-$pkgver-py2"
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir/apache-libcloud-$pkgver"
+  cp libcloud/test/secrets.py-dist libcloud/test/secrets.py
+  python setup.py test
+  rm libcloud/test/secrets.py
+
+  cd "$srcdir/apache-libcloud-$pkgver-py2"
+  cp libcloud/test/secrets.py-dist libcloud/test/secrets.py
+  python2 setup.py test
+  rm libcloud/test/secrets.py
+}
+
+package_python-apache-libcloud() {
+  depends=('python-requests')
+
+  cd apache-libcloud-$pkgver
+  python setup.py install --root="$pkgdir"
+}
+
+package_python2-apache-libcloud() {
+  depends=('python2-requests')
+  replaces=('apache-libcloud')
+  conflicts=('apache-libcloud')
+
+  cd apache-libcloud-$pkgver-py2
+  python2 setup.py install --root="$pkgdir"
+}

Copied: apache-libcloud/repos/community-staging-any/py3.7.diff (from rev 
364833, apache-libcloud/trunk/py3.7.diff)
===
--- community-staging-any/py3.7.diff(rev 0)
+++ community-staging-any/py3.7.diff2018-07-29 15:21:07 UTC (rev 364834)
@@ -0,0 +1,109 @@
+diff -u -r apache-libcloud-2.3.0/libcloud/common/dimensiondata.py 
apache-libcloud-2.3.0-py3.7/libcloud/common/dimensiondata.py
+--- apache-libcloud-2.3.0/libcloud/common/dimensiondata.py 2017-04-11 
00:03:27.0 +0200
 apache-libcloud-2.3.0-py3.7/libcloud/common/dimensiondata.py   
2018-07-29 17:14:21.030942695 +0200
+@@ -526,7 +526,7 @@
+  method).object
+ yield resp
+ if len(resp) <= 0:
+-raise StopIteration
++return
+ 
+ pcount = resp.get('pageCount')  # pylint: disable=no-member
+ psize = resp.get('pageSize')  # pylint: disable=no-member
+diff -u -r apache-libcloud-2.3.0/libcloud/compute/drivers/azure.py 
apache-libcloud-2.3.0-py3.7/libcloud/compute/drivers/azure.py
+--- apache-libcloud-2.3.0/libcloud/compute/drivers/azure.py2017-04-24 
04:18:37.0 +0200
 apache-libcloud-2.3.0-py3.7/libcloud/compute/drivers/azure.py  
2018-07-29 17:14:21.034276037 +0200
+@@ -1435,7 +1435,7 @@
+ 
+ return response
+ 
+-def _perform_post(self, path, body, response_type=None, async=False):
++def _perform_post(self, path, body, response_type=None, is_async=False):
+ request = AzureHTTPRequest()
+ request.method = 'POST'
+ request.host = AZURE_SERVICE_MANAGEMENT_HOST
+@@ -1447,7 +1447,7 @@
+ 
+ return response
+ 
+-def _perform_put(self, path, body, response_type=None, async=False):
++def _perform_put(self, path, body, response_type=None, is_async=False):
+ request = AzureHTTPRequest()
+ request.method = 'PUT'
+ 

[arch-commits] Commit in apache-libcloud/trunk (PKGBUILD py3.7.diff)

2018-07-29 Thread Jan Steffens via arch-commits
Date: Sunday, July 29, 2018 @ 15:20:13
  Author: heftig
Revision: 364833

2.3.0-2: python 3.7

Added:
  apache-libcloud/trunk/py3.7.diff
Modified:
  apache-libcloud/trunk/PKGBUILD

+
 PKGBUILD   |9 +++-
 py3.7.diff |  109 +++
 2 files changed, 115 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-07-29 15:17:36 UTC (rev 364832)
+++ PKGBUILD2018-07-29 15:20:13 UTC (rev 364833)
@@ -7,7 +7,7 @@
 pkgbase=apache-libcloud
 pkgname=('python-apache-libcloud' 'python2-apache-libcloud')
 pkgver=2.3.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Apache Libcloud is a standard Python library that abstracts away 
differences among multiple cloud provider APIs"
 arch=('any')
 url="https://libcloud.apache.org;
@@ -15,10 +15,13 @@
 makedepends=('python-setuptools' 'python2-setuptools' 'python-requests' 
'python2-requests')
 checkdepends=('python-mock' 'python2-mock' 'python-pytest-runner' 
'python2-pytest-runner' 'openssh'
   'python-requests-mock' 'python2-requests-mock')
-source=("https://pypi.io/packages/source/a/apache-libcloud/apache-libcloud-${pkgver}.tar.gz;)
-sha512sums=('3c77b0261a9386af7b215f354126d0f3189209eeab3cac8e02eabddcb36ccc979159e148854bf0118ba2d8b9fa5bf57f493b144b860b1809c9aeff9efb0161a5')
+source=("https://pypi.io/packages/source/a/apache-libcloud/apache-libcloud-${pkgver}.tar.gz;
+py3.7.diff)
+sha512sums=('3c77b0261a9386af7b215f354126d0f3189209eeab3cac8e02eabddcb36ccc979159e148854bf0118ba2d8b9fa5bf57f493b144b860b1809c9aeff9efb0161a5'
+
'080da5aab7ca75c0041dab927526921cb4ebcbb9fdd4a8bf35baca214a378f962c3a9ba7ea55b262ffb4ff2d02b84fddee3483cdaa7c869d386cc24e2834cd71')
 
 prepare() {
+  patch -d apache-libcloud-$pkgver -p1 < py3.7.diff
   cp -a apache-libcloud-$pkgver{,-py2}
 }
 

Added: py3.7.diff
===
--- py3.7.diff  (rev 0)
+++ py3.7.diff  2018-07-29 15:20:13 UTC (rev 364833)
@@ -0,0 +1,109 @@
+diff -u -r apache-libcloud-2.3.0/libcloud/common/dimensiondata.py 
apache-libcloud-2.3.0-py3.7/libcloud/common/dimensiondata.py
+--- apache-libcloud-2.3.0/libcloud/common/dimensiondata.py 2017-04-11 
00:03:27.0 +0200
 apache-libcloud-2.3.0-py3.7/libcloud/common/dimensiondata.py   
2018-07-29 17:14:21.030942695 +0200
+@@ -526,7 +526,7 @@
+  method).object
+ yield resp
+ if len(resp) <= 0:
+-raise StopIteration
++return
+ 
+ pcount = resp.get('pageCount')  # pylint: disable=no-member
+ psize = resp.get('pageSize')  # pylint: disable=no-member
+diff -u -r apache-libcloud-2.3.0/libcloud/compute/drivers/azure.py 
apache-libcloud-2.3.0-py3.7/libcloud/compute/drivers/azure.py
+--- apache-libcloud-2.3.0/libcloud/compute/drivers/azure.py2017-04-24 
04:18:37.0 +0200
 apache-libcloud-2.3.0-py3.7/libcloud/compute/drivers/azure.py  
2018-07-29 17:14:21.034276037 +0200
+@@ -1435,7 +1435,7 @@
+ 
+ return response
+ 
+-def _perform_post(self, path, body, response_type=None, async=False):
++def _perform_post(self, path, body, response_type=None, is_async=False):
+ request = AzureHTTPRequest()
+ request.method = 'POST'
+ request.host = AZURE_SERVICE_MANAGEMENT_HOST
+@@ -1447,7 +1447,7 @@
+ 
+ return response
+ 
+-def _perform_put(self, path, body, response_type=None, async=False):
++def _perform_put(self, path, body, response_type=None, is_async=False):
+ request = AzureHTTPRequest()
+ request.method = 'PUT'
+ request.host = AZURE_SERVICE_MANAGEMENT_HOST
+@@ -1459,7 +1459,7 @@
+ 
+ return response
+ 
+-def _perform_delete(self, path, async=False):
++def _perform_delete(self, path, is_async=False):
+ request = AzureHTTPRequest()
+ request.method = 'DELETE'
+ request.host = AZURE_SERVICE_MANAGEMENT_HOST
+@@ -1470,7 +1470,7 @@
+ 
+ self.raise_for_response(response, 202)
+ 
+-if async:
++if is_async:
+ return self._parse_response_for_async_op(response)
+ 
+ def _perform_request(self, request):
+diff -u -r apache-libcloud-2.3.0/libcloud/storage/drivers/dummy.py 
apache-libcloud-2.3.0-py3.7/libcloud/storage/drivers/dummy.py
+--- apache-libcloud-2.3.0/libcloud/storage/drivers/dummy.py2017-04-11 
00:03:27.0 +0200
 apache-libcloud-2.3.0-py3.7/libcloud/storage/drivers/dummy.py  
2018-07-29 17:14:21.034276037 +0200
+@@ -44,8 +44,6 @@
+ yield self._get_chunk(self._chunk_len)
+ i += 1
+ 
+-raise StopIteration
+-
+ def _get_chunk(self, chunk_len):
+ chunk = [str(x) for x in random.randint(97, 120)]
+ return chunk
+diff -u -r apache-libcloud-2.3.0/libcloud/utils/py3.py 

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

2018-07-29 Thread Jan Steffens via arch-commits
Date: Sunday, July 29, 2018 @ 15:17:36
  Author: heftig
Revision: 364832

archrelease: copy trunk to community-staging-x86_64

Added:
  luxrender/repos/community-staging-x86_64/
  luxrender/repos/community-staging-x86_64/PKGBUILD
(from rev 364831, luxrender/trunk/PKGBUILD)
  luxrender/repos/community-staging-x86_64/fix_deprecated_native.diff
(from rev 364831, luxrender/trunk/fix_deprecated_native.diff)
  luxrender/repos/community-staging-x86_64/force_python3.diff
(from rev 364831, luxrender/trunk/force_python3.diff)
  luxrender/repos/community-staging-x86_64/luxrender-gcc7.patch
(from rev 364831, luxrender/trunk/luxrender-gcc7.patch)
  luxrender/repos/community-staging-x86_64/no-lib64.diff
(from rev 364831, luxrender/trunk/no-lib64.diff)
  luxrender/repos/community-staging-x86_64/py3.7.diff
(from rev 364831, luxrender/trunk/py3.7.diff)

+
 PKGBUILD   |   62 
 fix_deprecated_native.diff |   12 
 force_python3.diff |   12 
 luxrender-gcc7.patch   |   13 
 no-lib64.diff  |   11 
 py3.7.diff |  618 +++
 6 files changed, 728 insertions(+)

Copied: luxrender/repos/community-staging-x86_64/PKGBUILD (from rev 364831, 
luxrender/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-07-29 15:17:36 UTC (rev 364832)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Lukas Jirkovsky 
+# Contributor: flixie <69...@gmx.net>
+# Contributor: Imanol Celaya 
+pkgname=luxrender
+pkgver=1.6
+_pkgver=b3f85cf7742f
+pkgrel=17
+pkgdesc="Rendering system for physically correct, unbiased image synthesis"
+arch=('x86_64')
+url="http://www.luxrender.net/;
+license=('GPL')
+depends=('boost-libs' 'embree2' 'freeimage' 'openexr' 'openimageio' 'libpng' 
'opencl-icd-loader' 'libgl' 'fftw')
+optdepends=('luxblend25: Blender exporter' 'qt4: Qt GUI'
+'python: pylux Python interface')
+makedepends=('cmake' 'boost' 'mesa' 'qt4' "luxrays=$pkgver" 'python' 
'opencl-headers')
+source=($pkgname-$pkgver.tar.bz2::https://bitbucket.org/luxrender/lux/get/v${pkgver/./}.tar.bz2
 \
+force_python3.diff luxrender-gcc7.patch fix_deprecated_native.diff 
no-lib64.diff py3.7.diff)
+sha256sums=('29144f657087644086928a66421df5d25fc4dccd05970200932f5693650ddecf'
+'916a45aec1326e6990c1ff9f141080c17a33ed793c44d1af9a2dacb9b21c19d2'
+'e51e33ac85c247696a0cab7751b5e91a23df5dac45af05b9ee68299e4a37dc6d'
+'0a35caff0cb72fb57c13ba932403849b9280f56506676d0144eceaf13e470209'
+'6172c8dc1616dd5e396f1c9dc538f74a62959a818690839ea700db19745c13dc'
+'e1b86f3d678f765ff22001db388c6e12cdd342d1771dc5247d061590164d8a9f')
+
+prepare() {
+  cd "$srcdir"/luxrender-lux-$_pkgver
+
+  patch -Np1 < ../force_python3.diff
+  # fix build with GCC 7 (Fedora)
+  patch -Np1 < ../luxrender-gcc7.patch
+  # fix build with boost 1.66 (the deprecated native() method was removed)
+  patch -Np1 < ../fix_deprecated_native.diff
+  # fix library path on x86_64
+  patch -Np1 < ../no-lib64.diff
+  # fix for python 3.7
+  patch -Np1 < ../py3.7.diff
+}
+
+build() {
+  cd "$srcdir"/luxrender-lux-$_pkgver
+
+
+  cmake . \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLUXRAYS_DISABLE_OPENCL=OFF \
+-DPYTHON_CUSTOM=ON \
+-DPYTHON_LIBRARIES=/usr/lib/libpython3.7m.so \
+-DPYTHON_INCLUDE_PATH=/usr/include/python3.7m/ \
+-DCMAKE_EXE_LINKER_FLAGS=-lpthread
+  make
+}
+
+package() {
+  cd "$srcdir"/luxrender-lux-$_pkgver
+  make DESTDIR="$pkgdir" install
+
+  # install pylux
+  install -D -m644 pylux.so "$pkgdir"/usr/lib/python3.7/site-packages/pylux.so
+}
+
+# vim:set ts=2 sw=2 et:

Copied: luxrender/repos/community-staging-x86_64/fix_deprecated_native.diff 
(from rev 364831, luxrender/trunk/fix_deprecated_native.diff)
===
--- community-staging-x86_64/fix_deprecated_native.diff 
(rev 0)
+++ community-staging-x86_64/fix_deprecated_native.diff 2018-07-29 15:17:36 UTC 
(rev 364832)
@@ -0,0 +1,12 @@
+diff -rup luxrender-lux-b3f85cf7742f.orig/core/renderfarm.cpp 
luxrender-lux-b3f85cf7742f/core/renderfarm.cpp
+--- luxrender-lux-b3f85cf7742f.orig/core/renderfarm.cpp2016-05-09 
23:21:17.0 +0200
 luxrender-lux-b3f85cf7742f/core/renderfarm.cpp 2017-12-29 
21:34:12.481269755 +0100
+@@ -892,7 +892,7 @@ void RenderFarm::updateFilm(Scene *scene
+   
stream.rdbuf()->set_option(boost::asio::socket_base::keep_alive(true));
+ #if defined(__linux__) || defined(__MACOSX__)
+   // Set keep alive parameters on *nix platforms
+-  const int nativeSocket = 
static_cast(stream.rdbuf()->native());
++  const int nativeSocket = 
static_cast(stream.rdbuf()->native_handle());
+

[arch-commits] Commit in luxrender/trunk (PKGBUILD no-lib64.diff py3.7.diff)

2018-07-29 Thread Jan Steffens via arch-commits
Date: Sunday, July 29, 2018 @ 15:15:59
  Author: heftig
Revision: 364831

1.6-17: python 3.7

Added:
  luxrender/trunk/no-lib64.diff
  luxrender/trunk/py3.7.diff
Modified:
  luxrender/trunk/PKGBUILD

---+
 PKGBUILD  |   21 +
 no-lib64.diff |   11 
 py3.7.diff|  618 
 3 files changed, 641 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-07-29 15:08:56 UTC (rev 364830)
+++ PKGBUILD2018-07-29 15:15:59 UTC (rev 364831)
@@ -5,7 +5,7 @@
 pkgname=luxrender
 pkgver=1.6
 _pkgver=b3f85cf7742f
-pkgrel=16
+pkgrel=17
 pkgdesc="Rendering system for physically correct, unbiased image synthesis"
 arch=('x86_64')
 url="http://www.luxrender.net/;
@@ -15,11 +15,13 @@
 'python: pylux Python interface')
 makedepends=('cmake' 'boost' 'mesa' 'qt4' "luxrays=$pkgver" 'python' 
'opencl-headers')
 
source=($pkgname-$pkgver.tar.bz2::https://bitbucket.org/luxrender/lux/get/v${pkgver/./}.tar.bz2
 \
-force_python3.diff luxrender-gcc7.patch fix_deprecated_native.diff)
+force_python3.diff luxrender-gcc7.patch fix_deprecated_native.diff 
no-lib64.diff py3.7.diff)
 sha256sums=('29144f657087644086928a66421df5d25fc4dccd05970200932f5693650ddecf'
 '916a45aec1326e6990c1ff9f141080c17a33ed793c44d1af9a2dacb9b21c19d2'
 'e51e33ac85c247696a0cab7751b5e91a23df5dac45af05b9ee68299e4a37dc6d'
-'0a35caff0cb72fb57c13ba932403849b9280f56506676d0144eceaf13e470209')
+'0a35caff0cb72fb57c13ba932403849b9280f56506676d0144eceaf13e470209'
+'6172c8dc1616dd5e396f1c9dc538f74a62959a818690839ea700db19745c13dc'
+'e1b86f3d678f765ff22001db388c6e12cdd342d1771dc5247d061590164d8a9f')
 
 prepare() {
   cd "$srcdir"/luxrender-lux-$_pkgver
@@ -29,6 +31,10 @@
   patch -Np1 < ../luxrender-gcc7.patch
   # fix build with boost 1.66 (the deprecated native() method was removed)
   patch -Np1 < ../fix_deprecated_native.diff
+  # fix library path on x86_64
+  patch -Np1 < ../no-lib64.diff
+  # fix for python 3.7
+  patch -Np1 < ../py3.7.diff
 }
 
 build() {
@@ -39,8 +45,8 @@
 -DCMAKE_INSTALL_PREFIX=/usr \
 -DLUXRAYS_DISABLE_OPENCL=OFF \
 -DPYTHON_CUSTOM=ON \
--DPYTHON_LIBRARIES=/usr/lib/libpython3.6m.so \
--DPYTHON_INCLUDE_PATH=/usr/include/python3.6m/ \
+-DPYTHON_LIBRARIES=/usr/lib/libpython3.7m.so \
+-DPYTHON_INCLUDE_PATH=/usr/include/python3.7m/ \
 -DCMAKE_EXE_LINKER_FLAGS=-lpthread
   make
 }
@@ -49,11 +55,8 @@
   cd "$srcdir"/luxrender-lux-$_pkgver
   make DESTDIR="$pkgdir" install
 
-  # fix library path on x86_64
-  [ "$CARCH" = "x86_64" ] && mv "$pkgdir"/usr/lib64 "$pkgdir"/usr/lib
-
   # install pylux
-  install -D -m644 pylux.so "$pkgdir"/usr/lib/python3.6/pylux.so
+  install -D -m644 pylux.so "$pkgdir"/usr/lib/python3.7/site-packages/pylux.so
 }
 
 # vim:set ts=2 sw=2 et:

Added: no-lib64.diff
===
--- no-lib64.diff   (rev 0)
+++ no-lib64.diff   2018-07-29 15:15:59 UTC (rev 364831)
@@ -0,0 +1,11 @@
+diff -u -r luxrender-lux-b3f85cf7742f/CMakeLists.txt 
luxrender-lux-b3f85cf7742f-lib/CMakeLists.txt
+--- luxrender-lux-b3f85cf7742f/CMakeLists.txt  2016-05-09 23:21:17.0 
+0200
 luxrender-lux-b3f85cf7742f-lib/CMakeLists.txt  2018-07-29 
16:09:18.682728166 +0200
+@@ -224,7 +224,6 @@
+   STRING(REGEX MATCH "(x86_64-*)|(X86_64-*)|(AMD64-*)|(amd64-*)" 
_mach_x86_64 ${MACHINE})
+   IF (_mach_x86_64)
+   SET(ARCH_X86_64 1)
+-  SET(LIB_SUFFIX 64)
+   #jromang - Hack to avoid boost bug on x64  Ubuntu 8.10 and 
Fedora 10 (http://www.luxrender.net/mantis/view.php?id=433)
+   ADD_DEFINITIONS(-DBOOST_NO_INTRINSIC_INT64_T)
+   ENDIF (_mach_x86_64)

Added: py3.7.diff
===
--- py3.7.diff  (rev 0)
+++ py3.7.diff  2018-07-29 15:15:59 UTC (rev 364831)
@@ -0,0 +1,618 @@
+diff -u -r luxrender-lux-b3f85cf7742f/python/binding.cpp 
luxrender-lux-b3f85cf7742f-py3.7/python/binding.cpp
+--- luxrender-lux-b3f85cf7742f/python/binding.cpp  2016-05-09 
23:21:17.0 +0200
 luxrender-lux-b3f85cf7742f-py3.7/python/binding.cpp2018-07-29 
17:01:42.325353797 +0200
+@@ -193,7 +193,7 @@
+ 
+ 
+   // Add definitions given in other header files
+-  export_PyContext();
++  export_PyLuxContext();
+   export_PyDynload();
+   export_PyFlexImageFilm();
+   // export_PyRenderer();
+diff -u -r luxrender-lux-b3f85cf7742f/python/pycontext.h 
luxrender-lux-b3f85cf7742f-py3.7/python/pycontext.h
+--- luxrender-lux-b3f85cf7742f/python/pycontext.h  2016-05-09 
23:21:17.0 +0200
 luxrender-lux-b3f85cf7742f-py3.7/python/pycontext.h2018-07-29 
17:03:05.042267372 +0200
+@@ -359,13 +359,13 @@
+ }
+ 
+ /*
+- * PyContext 

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

2018-07-29 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, July 29, 2018 @ 15:08:56
  Author: svenstaro
Revision: 364830

archrelease: copy trunk to community-x86_64

Added:
  telegram-desktop/repos/community-x86_64/CMakeLists.inj
(from rev 364829, telegram-desktop/trunk/CMakeLists.inj)
  telegram-desktop/repos/community-x86_64/PKGBUILD
(from rev 364829, telegram-desktop/trunk/PKGBUILD)
  telegram-desktop/repos/community-x86_64/libtgvoip.patch
(from rev 364829, telegram-desktop/trunk/libtgvoip.patch)
  telegram-desktop/repos/community-x86_64/no-gtk2.patch
(from rev 364829, telegram-desktop/trunk/no-gtk2.patch)
  telegram-desktop/repos/community-x86_64/tdesktop.patch
(from rev 364829, telegram-desktop/trunk/tdesktop.patch)
  telegram-desktop/repos/community-x86_64/tg.protocol
(from rev 364829, telegram-desktop/trunk/tg.protocol)
Deleted:
  telegram-desktop/repos/community-x86_64/CMakeLists.inj
  telegram-desktop/repos/community-x86_64/PKGBUILD
  telegram-desktop/repos/community-x86_64/libtgvoip.patch
  telegram-desktop/repos/community-x86_64/no-gtk2.patch
  telegram-desktop/repos/community-x86_64/tdesktop.patch
  telegram-desktop/repos/community-x86_64/tg.protocol

-+
 CMakeLists.inj  |   30 -
 PKGBUILD|  189 -
 libtgvoip.patch |   36 -
 no-gtk2.patch   |   56 +-
 tdesktop.patch  | 1098 +++---
 tg.protocol |   22 -
 6 files changed, 715 insertions(+), 716 deletions(-)

Deleted: CMakeLists.inj
===
--- CMakeLists.inj  2018-07-29 15:08:52 UTC (rev 364829)
+++ CMakeLists.inj  2018-07-29 15:08:56 UTC (rev 364830)
@@ -1,15 +0,0 @@
-# - debian/CMakeLists.inj begin -
-# The text will be putted into the appropriate CMakeLists by debian/rules 
script
-
-# Avoid rpath compiler parameter
-set_target_properties(Telegram PROPERTIES SKIP_BUILD_RPATH TRUE)
-
-# This makes up for patch of gyp utility, supporting precompiled headers. If
-# Telegram/Patches/gyp.diff file will be changed in future, please check these
-# lines.
-include(../../Telegram/gyp/PrecompiledHeader.cmake)
-add_precompiled_header(Telegram ../../Telegram/SourceFiles/stdafx.h)
-add_precompiled_header(lib_export 
../../Telegram/SourceFiles/export/export_pch.h)
-
-# vim: ft=cmake
-# -- debian/CMakeLists.inj end --

Copied: telegram-desktop/repos/community-x86_64/CMakeLists.inj (from rev 
364829, telegram-desktop/trunk/CMakeLists.inj)
===
--- CMakeLists.inj  (rev 0)
+++ CMakeLists.inj  2018-07-29 15:08:56 UTC (rev 364830)
@@ -0,0 +1,15 @@
+# - debian/CMakeLists.inj begin -
+# The text will be putted into the appropriate CMakeLists by debian/rules 
script
+
+# Avoid rpath compiler parameter
+set_target_properties(Telegram PROPERTIES SKIP_BUILD_RPATH TRUE)
+
+# This makes up for patch of gyp utility, supporting precompiled headers. If
+# Telegram/Patches/gyp.diff file will be changed in future, please check these
+# lines.
+include(../../Telegram/gyp/PrecompiledHeader.cmake)
+add_precompiled_header(Telegram ../../Telegram/SourceFiles/stdafx.h)
+add_precompiled_header(lib_export 
../../Telegram/SourceFiles/export/export_pch.h)
+
+# vim: ft=cmake
+# -- debian/CMakeLists.inj end --

Deleted: PKGBUILD
===
--- PKGBUILD2018-07-29 15:08:52 UTC (rev 364829)
+++ PKGBUILD2018-07-29 15:08:56 UTC (rev 364830)
@@ -1,95 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: hexchain 
-
-# Thanks Nicholas Guriev  for the patches!
-# https://github.com/mymedia2/tdesktop
-
-pkgname=telegram-desktop
-pkgver=1.3.10
-pkgrel=1
-pkgdesc='Official Telegram Desktop client'
-arch=('x86_64')
-url="https://desktop.telegram.org/;
-license=('GPL3')
-depends=('ffmpeg' 'hicolor-icon-theme' 'minizip' 'openal' 'qt5-base' 
'qt5-imageformats' 'openssl')
-makedepends=('cmake' 'git' 'gyp' 'range-v3' 'python' 'libappindicator-gtk3')
-optdepends=('libnotify: desktop notifications')
-source=(
-
"tdesktop::git+https://github.com/telegramdesktop/tdesktop.git#tag=v$pkgver;
-"libtgvoip::git+https://github.com/telegramdesktop/libtgvoip;
-"variant::git+https://github.com/mapbox/variant;
-"GSL::git+https://github.com/Microsoft/GSL.git;
-"Catch::git+https://github.com/philsquared/Catch;
-"crl::git+https://github.com/telegramdesktop/crl.git;
-"tg.protocol"
-"CMakeLists.inj"
-"tdesktop.patch"
-"no-gtk2.patch"
-"libtgvoip.patch"
-)
-sha512sums=('SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-
'b87414ceaae19185a8a5749cea1f6d9f3fc3c69b8dd729e3db8790cde00b987c3c827cd30baf0eac579d1884e34aa2f37bb90778c3c0bc9ca211d75a82891b9d'
-

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

2018-07-29 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, July 29, 2018 @ 15:08:52
  Author: svenstaro
Revision: 364829

upgpkg: telegram-desktop 1.3.10-2

Allow unity badge integration, let's hope this doesn't break anything

Modified:
  telegram-desktop/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-07-29 14:56:52 UTC (rev 364828)
+++ PKGBUILD2018-07-29 15:08:52 UTC (rev 364829)
@@ -6,7 +6,7 @@
 
 pkgname=telegram-desktop
 pkgver=1.3.10
-pkgrel=1
+pkgrel=2
 pkgdesc='Official Telegram Desktop client'
 arch=('x86_64')
 url="https://desktop.telegram.org/;
@@ -59,7 +59,7 @@
 build() {
 cd "$srcdir/tdesktop"
 export LANG=en_US.UTF-8
-export 
GYP_DEFINES="TDESKTOP_DISABLE_CRASH_REPORTS,TDESKTOP_DISABLE_AUTOUPDATE,TDESKTOP_DISABLE_REGISTER_CUSTOM_SCHEME,TDESKTOP_DISABLE_UNITY_INTEGRATION"
+export 
GYP_DEFINES="TDESKTOP_DISABLE_CRASH_REPORTS,TDESKTOP_DISABLE_AUTOUPDATE,TDESKTOP_DISABLE_REGISTER_CUSTOM_SCHEME"
 export EXTRA_FLAGS="-Winvalid-pch"
 export CPPFLAGS="$CPPFLAGS $EXTRA_FLAGS"
 export CXXFLAGS="$CXXFLAGS $EXTRA_FLAGS"


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

2018-07-29 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, July 29, 2018 @ 14:54:39
  Author: svenstaro
Revision: 364658

Fix checksums

Modified:
  telegram-desktop/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-07-29 14:54:38 UTC (rev 364657)
+++ PKGBUILD2018-07-29 14:54:39 UTC (rev 364658)
@@ -37,8 +37,7 @@
 
'2647251940f0d3a2d41ca8a32a592f1ab1e23fe02d3b11d8dc3a54ef34df7c290c9cbf3df76b09970e1cba15c149bc38d49fc824a173d4b21c54edb3c5d5a3da'
 
'00b4307143cf599859d9b9b6d7ac4acbe8b407da55a1e3833921e113dc3aed8c61f2e5f2c1c37e81a261ba4b9e6f40d9bf5f8c90c20dcf0820cfb73852cb091d'
 
'7a37e0ca582145a56a411585aec0bc94889dc18a80cc038d2efa237e19eebf8b67d56825e068be88f7566b08316ce068d7f20c25729caa33d0e9d6c370325025'
-
'd60694dc701aa985b0e82a12c9732b945082470441c687b33167a94f94efcf253baf43bb7280ec160ba338485ee5c62de138e4804cae05f27cc5cf4298166d39'
-
'536dfada1a4fbffda32893fb2ac8a0f2412e23ac20a19f032a826cc5e0518b1d35004cba42ee9244e253d34429050e782ffc57ffca4f01b8733a40bc69b98958')
+
'd60694dc701aa985b0e82a12c9732b945082470441c687b33167a94f94efcf253baf43bb7280ec160ba338485ee5c62de138e4804cae05f27cc5cf4298166d39')
 
 prepare() {
 cd "$srcdir/tdesktop"


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

2018-07-29 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, July 29, 2018 @ 14:45:51
  Author: svenstaro
Revision: 364517

upgpkg: absl-py 0.3.0-1

Modified:
  absl-py/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-07-29 14:32:11 UTC (rev 364516)
+++ PKGBUILD2018-07-29 14:45:51 UTC (rev 364517)
@@ -1,8 +1,8 @@
 # Maintainer: Sven-Hendrik Haase 
 
 pkgname=absl-py
-pkgver=0.2.2
-pkgrel=2
+pkgver=0.3.0
+pkgrel=1
 pkgdesc="Abseil Python Common Libraries"
 arch=(any)
 url="https://github.com/abseil/abseil-py;
@@ -9,7 +9,7 @@
 license=(APACHE)
 makedepends=(python-setuptools)
 source=(https://pypi.io/packages/source/a/absl-py/absl-py-$pkgver.tar.gz)
-sha512sums=('15cb6afff6c8f469d5c7646a4c9b757ee77f0a41ffba6f39a5f6bc1106039cb77a24352d52aaace35a2d8c43d80923e28e4f0a3e29a047c3a4c57e701785c0e4')
+sha512sums=('82a7b792614be7b1816ef075643b040afacc03fc907b0dd6bb5194b086ee0a159a4d7548b1fb0e708d3cf7233ccabda0184058b3b34f2562d9a111f348d7430f')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"


[arch-commits] Commit in absl-py/repos/community-staging-any (PKGBUILD PKGBUILD)

2018-07-29 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, July 29, 2018 @ 14:45:56
  Author: svenstaro
Revision: 364518

archrelease: copy trunk to community-staging-any

Added:
  absl-py/repos/community-staging-any/PKGBUILD
(from rev 364517, absl-py/trunk/PKGBUILD)
Deleted:
  absl-py/repos/community-staging-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-07-29 14:45:51 UTC (rev 364517)
+++ PKGBUILD2018-07-29 14:45:56 UTC (rev 364518)
@@ -1,27 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-
-pkgname=absl-py
-pkgver=0.2.2
-pkgrel=2
-pkgdesc="Abseil Python Common Libraries"
-arch=(any)
-url="https://github.com/abseil/abseil-py;
-license=(APACHE)
-makedepends=(python-setuptools)
-source=(https://pypi.io/packages/source/a/absl-py/absl-py-$pkgver.tar.gz)
-sha512sums=('15cb6afff6c8f469d5c7646a4c9b757ee77f0a41ffba6f39a5f6bc1106039cb77a24352d52aaace35a2d8c43d80923e28e4f0a3e29a047c3a4c57e701785c0e4')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  python setup.py build
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  python setup.py install -O1 --root="${pkgdir}" --skip-build
-  chmod -R +r "${pkgdir}"/usr/lib
-}
-
-# vim:set ts=2 sw=2 et:

Copied: absl-py/repos/community-staging-any/PKGBUILD (from rev 364517, 
absl-py/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-07-29 14:45:56 UTC (rev 364518)
@@ -0,0 +1,27 @@
+# Maintainer: Sven-Hendrik Haase 
+
+pkgname=absl-py
+pkgver=0.3.0
+pkgrel=1
+pkgdesc="Abseil Python Common Libraries"
+arch=(any)
+url="https://github.com/abseil/abseil-py;
+license=(APACHE)
+makedepends=(python-setuptools)
+source=(https://pypi.io/packages/source/a/absl-py/absl-py-$pkgver.tar.gz)
+sha512sums=('82a7b792614be7b1816ef075643b040afacc03fc907b0dd6bb5194b086ee0a159a4d7548b1fb0e708d3cf7233ccabda0184058b3b34f2562d9a111f348d7430f')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  python setup.py build
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  python setup.py install -O1 --root="${pkgdir}" --skip-build
+  chmod -R +r "${pkgdir}"/usr/lib
+}
+
+# vim:set ts=2 sw=2 et:


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

2018-07-29 Thread David Runge via arch-commits
Date: Sunday, July 29, 2018 @ 14:32:11
  Author: dvzrv
Revision: 364516

archrelease: copy trunk to community-x86_64

Added:
  paulstretch/repos/community-x86_64/
  paulstretch/repos/community-x86_64/PKGBUILD
(from rev 364515, paulstretch/trunk/PKGBUILD)

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

Copied: paulstretch/repos/community-x86_64/PKGBUILD (from rev 364515, 
paulstretch/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2018-07-29 14:32:11 UTC (rev 364516)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: David Runge 
+_pkgver=2.2-2
+pkgname=paulstretch
+pkgver=${_pkgver//-/.}
+pkgrel=1
+pkgdesc="An experimental program for extreme stretching audio"
+arch=('x86_64')
+url="http://hypermammut.sourceforge.net/paulstretch/;
+license=('GPL2')
+groups=('pro-audio')
+depends=('audiofile' 'fftw' 'fltk' 'libvorbis' 'libmad' 'mxml' 'portaudio')
+source=("https://sourceforge.net/projects/hypermammut/files/${pkgname}/${_pkgver//-*/}/${pkgname}-${_pkgver}.tar.bz2;)
+sha512sums=('cb076edc8ffcaae651220345b7205b8317cc8eed175c2a88992e8e27e2173b42272da4267dbd5054a2fc01eec7c104e816369eee86b39d746bf9eab3d7f55bc6')
+
+prepare() {
+  mv -v "$pkgname-${_pkgver}" "$pkgname-$pkgver"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  fluid -c GUI.fl
+  fluid -c FreeEditUI.fl
+
+  g++ -ggdb GUI.cxx FreeEditUI.cxx *.cpp Input/*.cpp Output/*.cpp \
+  `fltk-config --cflags` \
+  `fltk-config --ldflags` \
+  -laudiofile \
+  -lfftw3f \
+  -lvorbisenc \
+  -lvorbis \
+  -logg \
+  -lz \
+  -lvorbisenc \
+  -lvorbisfile \
+  -lportaudio \
+  -lpthread \
+  -lmad \
+  -lmxml \
+  `pkg-config --cflags --libs jack samplerate` \
+  -DHAVE_JACK \
+  -DENABLE_RESAMPLING \
+  -o ${pkgname}
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  install -vDm 755 ${pkgname} -t "${pkgdir}/usr/bin/"
+  install -vDm 644 readme.txt -t "${pkgdir}/usr/share/doc/${pkgname}/"
+
+}


[arch-commits] Commit in (4 files)

2018-07-29 Thread David Runge via arch-commits
Date: Sunday, July 29, 2018 @ 14:29:58
  Author: dvzrv
Revision: 364515

Adding paulstretch from AUR.

Added:
  paulstretch/
  paulstretch/repos/
  paulstretch/trunk/
  paulstretch/trunk/PKGBUILD

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

Added: paulstretch/trunk/PKGBUILD
===
--- paulstretch/trunk/PKGBUILD  (rev 0)
+++ paulstretch/trunk/PKGBUILD  2018-07-29 14:29:58 UTC (rev 364515)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: David Runge 
+_pkgver=2.2-2
+pkgname=paulstretch
+pkgver=${_pkgver//-/.}
+pkgrel=1
+pkgdesc="An experimental program for extreme stretching audio"
+arch=('x86_64')
+url="http://hypermammut.sourceforge.net/paulstretch/;
+license=('GPL2')
+groups=('pro-audio')
+depends=('audiofile' 'fftw' 'fltk' 'libvorbis' 'libmad' 'mxml' 'portaudio')
+source=("https://sourceforge.net/projects/hypermammut/files/${pkgname}/${_pkgver//-*/}/${pkgname}-${_pkgver}.tar.bz2;)
+sha512sums=('cb076edc8ffcaae651220345b7205b8317cc8eed175c2a88992e8e27e2173b42272da4267dbd5054a2fc01eec7c104e816369eee86b39d746bf9eab3d7f55bc6')
+
+prepare() {
+  mv -v "$pkgname-${_pkgver}" "$pkgname-$pkgver"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  fluid -c GUI.fl
+  fluid -c FreeEditUI.fl
+
+  g++ -ggdb GUI.cxx FreeEditUI.cxx *.cpp Input/*.cpp Output/*.cpp \
+  `fltk-config --cflags` \
+  `fltk-config --ldflags` \
+  -laudiofile \
+  -lfftw3f \
+  -lvorbisenc \
+  -lvorbis \
+  -logg \
+  -lz \
+  -lvorbisenc \
+  -lvorbisfile \
+  -lportaudio \
+  -lpthread \
+  -lmad \
+  -lmxml \
+  `pkg-config --cflags --libs jack samplerate` \
+  -DHAVE_JACK \
+  -DENABLE_RESAMPLING \
+  -o ${pkgname}
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  install -vDm 755 ${pkgname} -t "${pkgdir}/usr/bin/"
+  install -vDm 644 readme.txt -t "${pkgdir}/usr/share/doc/${pkgname}/"
+
+}


Property changes on: paulstretch/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


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

2018-07-29 Thread Jan Steffens via arch-commits
Date: Sunday, July 29, 2018 @ 14:04:13
  Author: heftig
Revision: 364514

archrelease: copy trunk to community-staging-any

Added:
  hy/repos/community-staging-any/
  hy/repos/community-staging-any/PKGBUILD
(from rev 364513, hy/trunk/PKGBUILD)

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

Copied: hy/repos/community-staging-any/PKGBUILD (from rev 364513, 
hy/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2018-07-29 14:04:13 UTC (rev 364514)
@@ -0,0 +1,42 @@
+# Maintainer: Morten Linderud 
+# Contributor: JP Cimalando 
+
+pkgname=hy
+pkgver=0.15.0
+pkgrel=1
+pkgdesc="A dialect of Lisp that's embedded in Python"
+arch=('any')
+url="http://hylang.org/;
+license=('MIT')
+depends=('python-rply' 'python-astor' 'python-clint')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest' 'python-pytest-runner')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/hylang/hy/archive/$pkgver.tar.gz;)
+md5sums=('74e6def3be716730706ff273bfa648eb')
+
+prepare() {
+cd "$pkgname-$pkgver"
+
+# usually generated from git metadata and aded to PyPI sdist
+# PyPI does not include testsuite files.
+echo "__version__ = '$pkgver'" > hy/version.py
+}
+
+build() {
+cd "$pkgname-$pkgver"
+python setup.py build
+}
+
+check(){
+cd "$pkgname-$pkgver"
+python setup.py develop --user
+PATH="$HOME/.local/bin:$PATH"
+python setup.py pytest --addopts "-k 'not test_bin'"
+}
+
+package() {
+cd "$pkgname-$pkgver"
+python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
+install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+rm -rf "$pkgdir/usr/get_version"
+}


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

2018-07-29 Thread Jan Steffens via arch-commits
Date: Sunday, July 29, 2018 @ 14:03:22
  Author: heftig
Revision: 364513

0.15.0-1

Modified:
  hy/trunk/PKGBUILD (contents, properties)

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

Modified: PKGBUILD
===
--- PKGBUILD2018-07-29 14:00:42 UTC (rev 364512)
+++ PKGBUILD2018-07-29 14:03:22 UTC (rev 364513)
@@ -2,8 +2,8 @@
 # Contributor: JP Cimalando 
 
 pkgname=hy
-pkgver=0.14.0
-pkgrel=5
+pkgver=0.15.0
+pkgrel=1
 pkgdesc="A dialect of Lisp that's embedded in Python"
 arch=('any')
 url="http://hylang.org/;
@@ -12,7 +12,7 @@
 makedepends=('python-setuptools')
 checkdepends=('python-pytest' 'python-pytest-runner')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/hylang/hy/archive/$pkgver.tar.gz;)
-md5sums=('49f088476ba9eb3c0993299456a8eae5')
+md5sums=('74e6def3be716730706ff273bfa648eb')
 
 prepare() {
 cd "$pkgname-$pkgver"
@@ -29,6 +29,8 @@
 
 check(){
 cd "$pkgname-$pkgver"
+python setup.py develop --user
+PATH="$HOME/.local/bin:$PATH"
 python setup.py pytest --addopts "-k 'not test_bin'"
 }
 


Property changes on: hy/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in python-astor/repos/community-staging-any (3 files)

2018-07-29 Thread Jan Steffens via arch-commits
Date: Sunday, July 29, 2018 @ 14:00:42
  Author: heftig
Revision: 364512

archrelease: copy trunk to community-staging-any

Added:
  python-astor/repos/community-staging-any/PKGBUILD
(from rev 364511, python-astor/trunk/PKGBUILD)
Deleted:
  python-astor/repos/community-staging-any/PKGBUILD
  
python-astor/repos/community-staging-any/do-not-use-async-as-a-keyword-argument.patch

--+
 PKGBUILD |  108 ++---
 do-not-use-async-as-a-keyword-argument.patch |  123 -
 2 files changed, 52 insertions(+), 179 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-07-29 13:58:52 UTC (rev 364511)
+++ PKGBUILD2018-07-29 14:00:42 UTC (rev 364512)
@@ -1,56 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-astor
-pkgname=('python-astor' 'python2-astor')
-pkgver=0.6.2
-pkgrel=2
-pkgdesc="Read/rewrite/write Python ASTs"
-arch=('any')
-license=('BSD')
-url="http://astor.rtfd.org/;
-makedepends=('python-setuptools' 'python2-setuptools')
-checkdepends=('python-nose' 'python2-nose' 'python2-unittest2')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/berkerpeksag/astor/archive/$pkgver.tar.gz;
-do-not-use-async-as-a-keyword-argument.patch)
-sha512sums=('ccda3f0432522be1f8ada5589e56a7cb6da83a29fb8d9e0f4167fd492d7d6f55c0f4ed18af81d60340147894978b6ee8efb24edb68b92cdd78d053d5d53c6d66'
-
'ebe7126a25694b3b7df65fa5311632cec973802dd38a6d7a57c415f4b3925a1177c4d3f702e1d49b4c203296ff2fd09b4992a36c26084bb1939cd4593d903a20')
-
-prepare() {
-  # https://github.com/berkerpeksag/astor/issues/86
-  patch -d astor-$pkgver -Np1 < do-not-use-async-as-a-keyword-argument.patch
-  cp -a astor-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/astor-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/astor-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  # https://github.com/berkerpeksag/astor/issues/89
-  cd "$srcdir"/astor-$pkgver
-  nosetests3 || warning "Tests failed"
-
-  cd "$srcdir"/astor-$pkgver-py2
-  nosetests2
-}
-
-package_python-astor() {
-  depends=('python')
-
-  cd astor-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-astor() {
-  depends=('python2')
-
-  cd astor-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-astor/repos/community-staging-any/PKGBUILD (from rev 364511, 
python-astor/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-07-29 14:00:42 UTC (rev 364512)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-astor
+pkgname=('python-astor' 'python2-astor')
+pkgver=0.7.1
+pkgrel=1
+pkgdesc="Read/rewrite/write Python ASTs"
+arch=('any')
+license=('BSD')
+url="http://astor.rtfd.org/;
+makedepends=('python-setuptools' 'python2-setuptools')
+checkdepends=('python-nose' 'python2-nose' 'python2-unittest2')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/berkerpeksag/astor/archive/$pkgver.tar.gz;)
+sha512sums=('02764e5751e4c4b0ffa83da262b87e0a6bf027461529a99d3ca01a415db0896754f2b3f278e8a28f9bce4972ee7a75eec4eec5ac47d1064e6d6656a007b38a64')
+
+prepare() {
+  cp -a astor-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/astor-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/astor-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  # https://github.com/berkerpeksag/astor/issues/89
+  cd "$srcdir"/astor-$pkgver
+  nosetests3 || warning "Tests failed"
+
+  cd "$srcdir"/astor-$pkgver-py2
+  nosetests2
+}
+
+package_python-astor() {
+  depends=('python')
+
+  cd astor-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-astor() {
+  depends=('python2')
+
+  cd astor-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Deleted: do-not-use-async-as-a-keyword-argument.patch
===
--- do-not-use-async-as-a-keyword-argument.patch2018-07-29 13:58:52 UTC 
(rev 364511)
+++ do-not-use-async-as-a-keyword-argument.patch2018-07-29 14:00:42 UTC 
(rev 364512)
@@ -1,123 +0,0 @@
-From fe1ef7f9d746847c157197e4cb2ab6505fe19faf Mon Sep 17 00:00:00 2001
-From: Berker Peksag 
-Date: Fri, 23 Mar 2018 16:50:21 +0300
-Subject: [PATCH] Don't use 'async' as a keyword argument (#94)
-
-Fixes #86

- .travis.yml|  2 ++
- astor/code_gen.py  | 18 +-
- docs/changelog.rst | 21 +
- 3 files changed, 32 insertions(+), 9 deletions(-)
-
-diff --git a/.travis.yml b/.travis.yml

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

2018-07-29 Thread Jan Steffens via arch-commits
Date: Sunday, July 29, 2018 @ 13:58:52
  Author: heftig
Revision: 364511

0.7.1-1

Modified:
  python-astor/trunk/PKGBUILD
Deleted:
  python-astor/trunk/do-not-use-async-as-a-keyword-argument.patch

--+
 PKGBUILD |   12 --
 do-not-use-async-as-a-keyword-argument.patch |  123 -
 2 files changed, 4 insertions(+), 131 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-07-29 13:35:16 UTC (rev 364510)
+++ PKGBUILD2018-07-29 13:58:52 UTC (rev 364511)
@@ -3,8 +3,8 @@
 
 pkgbase=python-astor
 pkgname=('python-astor' 'python2-astor')
-pkgver=0.6.2
-pkgrel=2
+pkgver=0.7.1
+pkgrel=1
 pkgdesc="Read/rewrite/write Python ASTs"
 arch=('any')
 license=('BSD')
@@ -11,14 +11,10 @@
 url="http://astor.rtfd.org/;
 makedepends=('python-setuptools' 'python2-setuptools')
 checkdepends=('python-nose' 'python2-nose' 'python2-unittest2')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/berkerpeksag/astor/archive/$pkgver.tar.gz;
-do-not-use-async-as-a-keyword-argument.patch)
-sha512sums=('ccda3f0432522be1f8ada5589e56a7cb6da83a29fb8d9e0f4167fd492d7d6f55c0f4ed18af81d60340147894978b6ee8efb24edb68b92cdd78d053d5d53c6d66'
-
'ebe7126a25694b3b7df65fa5311632cec973802dd38a6d7a57c415f4b3925a1177c4d3f702e1d49b4c203296ff2fd09b4992a36c26084bb1939cd4593d903a20')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/berkerpeksag/astor/archive/$pkgver.tar.gz;)
+sha512sums=('02764e5751e4c4b0ffa83da262b87e0a6bf027461529a99d3ca01a415db0896754f2b3f278e8a28f9bce4972ee7a75eec4eec5ac47d1064e6d6656a007b38a64')
 
 prepare() {
-  # https://github.com/berkerpeksag/astor/issues/86
-  patch -d astor-$pkgver -Np1 < do-not-use-async-as-a-keyword-argument.patch
   cp -a astor-$pkgver{,-py2}
 }
 

Deleted: do-not-use-async-as-a-keyword-argument.patch
===
--- do-not-use-async-as-a-keyword-argument.patch2018-07-29 13:35:16 UTC 
(rev 364510)
+++ do-not-use-async-as-a-keyword-argument.patch2018-07-29 13:58:52 UTC 
(rev 364511)
@@ -1,123 +0,0 @@
-From fe1ef7f9d746847c157197e4cb2ab6505fe19faf Mon Sep 17 00:00:00 2001
-From: Berker Peksag 
-Date: Fri, 23 Mar 2018 16:50:21 +0300
-Subject: [PATCH] Don't use 'async' as a keyword argument (#94)
-
-Fixes #86

- .travis.yml|  2 ++
- astor/code_gen.py  | 18 +-
- docs/changelog.rst | 21 +
- 3 files changed, 32 insertions(+), 9 deletions(-)
-
-diff --git a/.travis.yml b/.travis.yml
-index 64bedd8..df42c87 100644
 a/.travis.yml
-+++ b/.travis.yml
-@@ -9,9 +9,11 @@ python:
-   - 3.6
-   - pypy
-   - pypy3.3-5.2-alpha1
-+  - 3.7-dev
- matrix:
-   allow_failures:
-   - python: 2.6
-+  - python: 3.7-dev
- cache: pip
- install:
-   - pip install tox-travis
-diff --git a/astor/code_gen.py b/astor/code_gen.py
-index 7c27f70..47d6acc 100644
 a/astor/code_gen.py
-+++ b/astor/code_gen.py
-@@ -308,8 +308,8 @@ def visit_Expr(self, node):
- self.statement(node)
- self.generic_visit(node)
- 
--def visit_FunctionDef(self, node, async=False):
--prefix = 'async ' if async else ''
-+def visit_FunctionDef(self, node, is_async=False):
-+prefix = 'async ' if is_async else ''
- self.decorators(node, 1 if self.indentation else 2)
- self.statement(node, '%sdef %s' % (prefix, node.name), '(')
- self.visit_arguments(node.args)
-@@ -322,7 +322,7 @@ def visit_FunctionDef(self, node, async=False):
- 
- # introduced in Python 3.5
- def visit_AsyncFunctionDef(self, node):
--self.visit_FunctionDef(node, async=True)
-+self.visit_FunctionDef(node, is_async=True)
- 
- def visit_ClassDef(self, node):
- have_args = []
-@@ -364,24 +364,24 @@ def visit_If(self, node):
- self.else_body(else_)
- break
- 
--def visit_For(self, node, async=False):
-+def visit_For(self, node, is_async=False):
- set_precedence(node, node.target)
--prefix = 'async ' if async else ''
-+prefix = 'async ' if is_async else ''
- self.statement(node, '%sfor ' % prefix,
-node.target, ' in ', node.iter, ':')
- self.body_or_else(node)
- 
- # introduced in Python 3.5
- def visit_AsyncFor(self, node):
--self.visit_For(node, async=True)
-+self.visit_For(node, is_async=True)
- 
- def visit_While(self, node):
- set_precedence(node, node.test)
- self.statement(node, 'while ', node.test, ':')
- self.body_or_else(node)
- 
--def visit_With(self, node, async=False):
--prefix = 'async ' if async else ''
-+def visit_With(self, node, is_async=False):
-+prefix = 'async ' if is_async else ''
- self.statement(node, '%swith ' % prefix)
- if hasattr(node, "context_expr"):  # Python < 3.3
- 

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

2018-07-29 Thread Jan Steffens via arch-commits
Date: Sunday, July 29, 2018 @ 13:35:16
  Author: heftig
Revision: 364510

archrelease: copy trunk to community-staging-x86_64

Added:
  borg/repos/community-staging-x86_64/
  borg/repos/community-staging-x86_64/PKGBUILD
(from rev 364509, borg/trunk/PKGBUILD)

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

Copied: borg/repos/community-staging-x86_64/PKGBUILD (from rev 364509, 
borg/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-07-29 13:35:16 UTC (rev 364510)
@@ -0,0 +1,62 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Vlad M. 
+
+pkgname=borg
+_pkgname=borgbackup
+pkgver=1.1.6
+pkgrel=3
+pkgdesc='Deduplicating backup program with compression and authenticated 
encryption'
+url='https://borgbackup.github.io/'
+license=('BSD')
+arch=('x86_64')
+depends=('acl' 'lz4' 'openssl' 'python-msgpack' 'python-setuptools' 'xz' 
'zstd')
+optdepends=('openssh: repositories on remote hosts'
+'python-llfuse: mounting backups as a FUSE file system')
+makedepends=('cython' 'python-sphinx' 'python-guzzle-sphinx-theme')
+checkdepends=('python-pytest' 'python-pytest-cov' 'python-pytest-benchmark' 
'python-mock')
+provides=('borgbackup')
+replaces=('borgbackup')
+source=("https://github.com/$_pkgname/$pkgname/releases/download/$pkgver/$_pkgname-$pkgver.tar.gz;
+
"https://github.com/borgbackup/borg/commit/d6ce4d9e7e28b89fbedcd883cac2912415164449.patch;
+
"https://github.com/borgbackup/borg/commit/b951a2ee429dd86fb122820867dd7d0954b49951.patch;)
+sha256sums=('a1d2e474c85d3ad3d59b3f8209b5549653c88912082ea0159d27a2e80c910930'
+'9974ffa97694a06c9b30b943176775ccc02927c1baea165955ab5c6e3cab85d4'
+'01026a97983be999352c77d326025db40d4cb51bf30928bff692153dd101a751')
+
+prepare() {
+  cd "$srcdir/$_pkgname-$pkgver"
+  # msgpack versions are constantly broken: 
https://bugs.archlinux.org/task/58974
+  patch -p1 -i ../d6ce4d9e7e28b89fbedcd883cac2912415164449.patch
+  # python 3.7 fix
+  patch -p1 -i ../b951a2ee429dd86fb122820867dd7d0954b49951.patch
+}
+
+build() {
+  cd "$srcdir/$_pkgname-$pkgver"
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir/$_pkgname-$pkgver/build/lib.linux-$CARCH-"*
+  LANG=en_US.UTF-8 PYTHONPATH="$PWD:$PYTHONPATH" py.test --cov=borg \
+--benchmark-skip --pyargs borg.testsuite -v \
+-k 'not test_non_ascii_acl'
+}
+
+package() {
+  cd "$srcdir/$_pkgname-$pkgver"
+
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  # remove junk files
+  rm -r "$pkgdir"/usr/lib/python*/site-packages/{.benchmarks,.coverage}
+
+  install -Dm644 scripts/shell_completions/bash/borg \
+"$pkgdir/usr/share/bash-completion/completions/borg"
+  install -Dm644 scripts/shell_completions/fish/borg.fish \
+"$pkgdir/usr/share/fish/completions/borg.fish"
+  install -Dm644 scripts/shell_completions/zsh/_borg 
"$pkgdir/usr/share/zsh/site-functions/_borg"
+
+  install -Dm644 -t "$pkgdir/usr/share/man/man1/" "docs/man/"*.1
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2018-07-29 Thread Evangelos Foutras via arch-commits
Date: Sunday, July 29, 2018 @ 13:33:24
  Author: foutrelis
Revision: 329660

upgpkg: xfwm4 4.12.5-1

New upstream release.

Modified:
  xfwm4/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-07-29 12:48:07 UTC (rev 329659)
+++ PKGBUILD2018-07-29 13:33:24 UTC (rev 329660)
@@ -3,7 +3,7 @@
 # Contributor: tobias 
 
 pkgname=xfwm4
-pkgver=4.12.4
+pkgver=4.12.5
 pkgrel=1
 pkgdesc="Xfce window manager"
 arch=('x86_64')
@@ -13,7 +13,7 @@
 depends=('libxfce4ui' 'libwnck' 'libdrm' 'hicolor-icon-theme')
 makedepends=('intltool')
 
source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
-sha256sums=('fa74048a75649a6e92df763a3cfb706d3fed1e1a6adf567f6693325a5a6efb36')
+sha256sums=('7775c0221c2d023275e7ed6d85e57d965e5cc1407bb6a05c53cc38d8caca')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"


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

2018-07-29 Thread Evangelos Foutras via arch-commits
Date: Sunday, July 29, 2018 @ 13:33:29
  Author: foutrelis
Revision: 329661

archrelease: copy trunk to extra-x86_64

Added:
  xfwm4/repos/extra-x86_64/PKGBUILD
(from rev 329660, xfwm4/trunk/PKGBUILD)
Deleted:
  xfwm4/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-07-29 13:33:24 UTC (rev 329660)
+++ PKGBUILD2018-07-29 13:33:29 UTC (rev 329661)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras 
-# Contributor: tobias 
-
-pkgname=xfwm4
-pkgver=4.12.4
-pkgrel=1
-pkgdesc="Xfce window manager"
-arch=('i686' 'x86_64')
-url="http://www.xfce.org/;
-license=('GPL2')
-groups=('xfce4')
-depends=('libxfce4ui' 'libwnck' 'libdrm' 'hicolor-icon-theme')
-makedepends=('intltool')
-source=(http://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
-sha256sums=('fa74048a75649a6e92df763a3cfb706d3fed1e1a6adf567f6693325a5a6efb36')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib \
---localstatedir=/var \
---disable-static \
---enable-startup-notification \
---enable-randr \
---enable-compositor \
---enable-xsync \
---disable-debug
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: xfwm4/repos/extra-x86_64/PKGBUILD (from rev 329660, 
xfwm4/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-07-29 13:33:29 UTC (rev 329661)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+# Contributor: tobias 
+
+pkgname=xfwm4
+pkgver=4.12.5
+pkgrel=1
+pkgdesc="Xfce window manager"
+arch=('x86_64')
+url="http://www.xfce.org/;
+license=('GPL2')
+groups=('xfce4')
+depends=('libxfce4ui' 'libwnck' 'libdrm' 'hicolor-icon-theme')
+makedepends=('intltool')
+source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
+sha256sums=('7775c0221c2d023275e7ed6d85e57d965e5cc1407bb6a05c53cc38d8caca')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib \
+--localstatedir=/var \
+--disable-static \
+--enable-startup-notification \
+--enable-randr \
+--enable-compositor \
+--enable-xsync \
+--disable-debug
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2018-07-29 Thread Jan Steffens via arch-commits
Date: Sunday, July 29, 2018 @ 13:27:19
  Author: heftig
Revision: 364509

1.1.6-3: python 3.7

Modified:
  borg/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-07-29 12:47:56 UTC (rev 364508)
+++ PKGBUILD2018-07-29 13:27:19 UTC (rev 364509)
@@ -4,7 +4,7 @@
 pkgname=borg
 _pkgname=borgbackup
 pkgver=1.1.6
-pkgrel=2
+pkgrel=3
 pkgdesc='Deduplicating backup program with compression and authenticated 
encryption'
 url='https://borgbackup.github.io/'
 license=('BSD')
@@ -17,14 +17,18 @@
 provides=('borgbackup')
 replaces=('borgbackup')
 
source=("https://github.com/$_pkgname/$pkgname/releases/download/$pkgver/$_pkgname-$pkgver.tar.gz;
-
"https://github.com/borgbackup/borg/pull/3891/commits/d6ce4d9e7e28b89fbedcd883cac2912415164449.patch;)
+
"https://github.com/borgbackup/borg/commit/d6ce4d9e7e28b89fbedcd883cac2912415164449.patch;
+
"https://github.com/borgbackup/borg/commit/b951a2ee429dd86fb122820867dd7d0954b49951.patch;)
 sha256sums=('a1d2e474c85d3ad3d59b3f8209b5549653c88912082ea0159d27a2e80c910930'
-'9974ffa97694a06c9b30b943176775ccc02927c1baea165955ab5c6e3cab85d4')
+'9974ffa97694a06c9b30b943176775ccc02927c1baea165955ab5c6e3cab85d4'
+'01026a97983be999352c77d326025db40d4cb51bf30928bff692153dd101a751')
 
 prepare() {
   cd "$srcdir/$_pkgname-$pkgver"
   # msgpack versions are constantly broken: 
https://bugs.archlinux.org/task/58974
   patch -p1 -i ../d6ce4d9e7e28b89fbedcd883cac2912415164449.patch
+  # python 3.7 fix
+  patch -p1 -i ../b951a2ee429dd86fb122820867dd7d0954b49951.patch
 }
 
 build() {


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

2018-07-29 Thread Felix Yan via arch-commits
Date: Sunday, July 29, 2018 @ 12:36:42
  Author: felixonmars
Revision: 364500

upgpkg: xmobar 0.26-64

rebuild with tasty 1.1.0.3

Modified:
  xmobar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-07-29 12:35:32 UTC (rev 364499)
+++ PKGBUILD2018-07-29 12:36:42 UTC (rev 364500)
@@ -5,7 +5,7 @@
 
 pkgname=xmobar
 pkgver=0.26
-pkgrel=63
+pkgrel=64
 pkgdesc='Minimalistic Text Based Status Bar'
 url='https://hackage.haskell.org/package/xmobar'
 license=('custom:BSD3')


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

2018-07-29 Thread Felix Yan via arch-commits
Date: Sunday, July 29, 2018 @ 12:37:04
  Author: felixonmars
Revision: 364501

archrelease: copy trunk to community-staging-x86_64

Added:
  xmobar/repos/community-staging-x86_64/
  xmobar/repos/community-staging-x86_64/PKGBUILD
(from rev 364500, xmobar/trunk/PKGBUILD)

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

Copied: xmobar/repos/community-staging-x86_64/PKGBUILD (from rev 364500, 
xmobar/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-07-29 12:37:04 UTC (rev 364501)
@@ -0,0 +1,45 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Jelle van der Waa 
+# Contributer: Sergej Pupykin 
+# Contributor: Arch Haskell Team 
+
+pkgname=xmobar
+pkgver=0.26
+pkgrel=64
+pkgdesc='Minimalistic Text Based Status Bar'
+url='https://hackage.haskell.org/package/xmobar'
+license=('custom:BSD3')
+arch=('x86_64')
+depends=('libxft' 'libxinerama' 'libxrandr' 'libxpm' 'ghc-libs' 'haskell-x11'
+ 'haskell-x11-xft' 'haskell-utf8-string' 'haskell-network-uri'
+ 'haskell-hinotify' 'haskell-regex-base' 'haskell-regex-compat' 
'haskell-http'
+ 'haskell-dbus0.10' 'haskell-libmpd' 'haskell-iwlib' 'wireless_tools')
+makedepends=('ghc')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/jaor/xmobar/archive/${pkgver}.tar.gz
+
hinotify-0.3.10.patch::https://github.com/jaor/xmobar/commit/fb0a23f395445540f865ae00b33e75e0175db4ef.patch)
+sha512sums=('c67c1552f7183a6f33b472f19686cda41cca27c0de89a8d0dcb1f8ea008aea85a143d75608d4392a1a1c9933737a6cbe881cff9ddd13f632d581cd0e10ca8d4d'
+
'53b7cca689386e976383ebbe56db877fb01896a5dfcb1e4e4e5424a9ce1ef7cc75a38dbed2bdb23e9521357c1e5945a7b58f70df07029fd38e398c6ca4891264')
+
+prepare() {
+  cd xmobar-$pkgver
+  patch -p1 -i ../hinotify-0.3.10.patch
+}
+
+build() {
+  cd xmobar-${pkgver}
+  runhaskell setup configure -O \
+--enable-shared \
+--prefix=/usr \
+--enable-executable-dynamic \
+--disable-library-vanilla \
+--flags="with_utf8 with_xft with_iwlib with_xpm with_inotify with_mpd 
with_dbus with_mpris"
+  runhaskell setup build
+}
+
+package() {
+  cd xmobar-${pkgver}
+  runhaskell setup copy --destdir="${pkgdir}"
+  install -Dm 644 license "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+# vim: ts=2 sw=2 et:


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

2018-07-29 Thread Felix Yan via arch-commits
Date: Sunday, July 29, 2018 @ 12:35:32
  Author: felixonmars
Revision: 364499

archrelease: copy trunk to community-staging-x86_64

Added:
  tamarin-prover/repos/community-staging-x86_64/
  tamarin-prover/repos/community-staging-x86_64/PKGBUILD
(from rev 364498, tamarin-prover/trunk/PKGBUILD)

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

Copied: tamarin-prover/repos/community-staging-x86_64/PKGBUILD (from rev 
364498, tamarin-prover/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-07-29 12:35:32 UTC (rev 364499)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=tamarin-prover
+pkgver=1.4.0
+pkgrel=69
+pkgdesc="The Tamarin prover for security protocol analysis"
+url="http://tamarin-prover.github.io;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'graphviz' 'maude' 'haskell-hunit' 'haskell-binary-orphans'
+ 'haskell-blaze-builder' 'haskell-blaze-html' 'haskell-cmdargs' 
'haskell-conduit'
+ 'haskell-fclabels' 'haskell-file-embed' 'haskell-gitrev' 
'haskell-http-types'
+ 'haskell-lifted-base' 'haskell-monad-unlift'
+ 'haskell-resourcet' 'haskell-safe' 'haskell-shakespeare' 
'haskell-threads'
+ 'haskell-wai' 'haskell-warp' 'haskell-yesod-core' 
'haskell-yesod-static'
+ 'haskell-tamarin-prover-utils' 'haskell-tamarin-prover-term'
+ 'haskell-tamarin-prover-theory')
+optdepends=('ocaml: for sapic support')
+makedepends=('ghc' 'ocaml')
+source=("tamarin-prover-$pkgver.tar.gz::https://github.com/tamarin-prover/tamarin-prover/archive/$pkgver.tar.gz;)
+sha512sums=('7c1afe6a53b596c2ce01e9ad7a7f464af1f4efbc5f8edc13d5ec8bc32ce4e91ddde91dff6ab8e01cf3cf30a37a3a18953d937debc36c9df664f718d968e2ae74')
+
+prepare() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+sed -i '/cp sapic/d' plugins/sapic/Makefile
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-executable-dynamic --prefix=/usr \
+--docdir="/usr/share/doc/${pkgname}" --datasubdir="$pkgname" \
+-fthreaded -ftest-coverage -f-build-tests
+runhaskell Setup build
+
+cd plugins/sapic
+make -j1
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+
+install -Dm644 etc/filetype.vim 
"$pkgdir"/usr/share/vim/vimfiles/filetype.vim
+install -Dm644 etc/spthy.vim 
"$pkgdir"/usr/share/vim/vimfiles/syntax/spthy.vim
+install -Dm644 etc/sapic.vim 
"$pkgdir"/usr/share/vim/vimfiles/syntax/sapic.vim
+
+cd plugins/sapic
+install -Dm755 sapic "$pkgdir"/usr/bin/sapic
+}


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

2018-07-29 Thread Felix Yan via arch-commits
Date: Sunday, July 29, 2018 @ 12:35:18
  Author: felixonmars
Revision: 364498

upgpkg: tamarin-prover 1.4.0-69

rebuild with tasty 1.1.0.3

Modified:
  tamarin-prover/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-07-29 12:33:41 UTC (rev 364497)
+++ PKGBUILD2018-07-29 12:35:18 UTC (rev 364498)
@@ -4,7 +4,7 @@
 
 pkgname=tamarin-prover
 pkgver=1.4.0
-pkgrel=68
+pkgrel=69
 pkgdesc="The Tamarin prover for security protocol analysis"
 url="http://tamarin-prover.github.io;
 license=("GPL")


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

2018-07-29 Thread Jan Steffens via arch-commits
Date: Sunday, July 29, 2018 @ 12:34:42
  Author: heftig
Revision: 329654

archrelease: copy trunk to staging-x86_64

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

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

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

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

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

2018-07-29 Thread Jan Steffens via arch-commits
Date: Sunday, July 29, 2018 @ 12:34:25
  Author: heftig
Revision: 329653

archrelease: copy trunk to staging-x86_64

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

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

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

Copied: nvidia/repos/staging-x86_64/kernel-4.16.patch (from rev 329652, 
nvidia/trunk/kernel-4.16.patch)
===
--- staging-x86_64/kernel-4.16.patch(rev 0)
+++ staging-x86_64/kernel-4.16.patch2018-07-29 12:34:25 UTC (rev 329653)
@@ -0,0 +1,33 @@
+diff --git a/kernel/common/inc/nv-linux.h b/kernel/common/inc/nv-linux.h
+index 10fc418..22ef968 100644
+--- a/kernel/common/inc/nv-linux.h
 b/kernel/common/inc/nv-linux.h
+@@ -175,7 +175,11 @@ static inline uid_t __kuid_val(kuid_t uid)
+ 
+ #if defined(NV_VM_INSERT_PAGE_PRESENT)
+ #include 
++#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 16, 0)
+ #include 
++#else
++#include 
++#endif
+ #endif
+ 
+ #if defined(CONFIG_SWIOTLB) && defined(NVCPU_AARCH64)
+diff --git a/kernel/conftest.sh b/kernel/conftest.sh
+index b23dbb4..42dc576 100755
+--- a/kernel/conftest.sh
 b/kernel/conftest.sh
+@@ -1906,7 +1906,12 @@ compile_test() {
+ # Determine if the phys_to_dma function is present.
+ #
+ CODE="

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

2018-07-29 Thread Jan Steffens via arch-commits
Date: Sunday, July 29, 2018 @ 12:33:33
  Author: heftig
Revision: 364496

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

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

Copied: acpi_call/repos/community-staging-x86_64/PKGBUILD (from rev 364494, 
acpi_call/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-07-29 12:33:33 UTC (rev 364496)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: mortzu 
+# Contributor: fnord0 
+
+pkgbase=acpi_call
+pkgname=(acpi_call acpi_call-dkms)
+pkgver=1.1.0
+pkgrel=146
+pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
+url='https://github.com/mkottman/acpi_call'
+arch=('x86_64')
+license=('GPL')
+depends=('linux>=4.17' 'linux<4.18')
+makedepends=('linux-headers>=4.17' 'linux-headers<4.18')
+_extramodules=extramodules-4.17-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 364495, 
acpi_call/trunk/dkms.conf)
===
--- community-staging-x86_64/dkms.conf  (rev 0)
+++ community-staging-x86_64/dkms.conf  2018-07-29 12:33:33 UTC (rev 364496)
@@ -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"


  1   2   3   4   >