[arch-commits] Commit in haskell-pretty-show/repos (4 files)

2017-05-18 Thread Felix Yan
Date: Thursday, May 18, 2017 @ 06:03:34
  Author: felixonmars
Revision: 228455

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  haskell-pretty-show/repos/community-staging-i686/
  haskell-pretty-show/repos/community-staging-i686/PKGBUILD
(from rev 228454, haskell-pretty-show/trunk/PKGBUILD)
  haskell-pretty-show/repos/community-staging-x86_64/
  haskell-pretty-show/repos/community-staging-x86_64/PKGBUILD
(from rev 228454, haskell-pretty-show/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   41 
 community-staging-x86_64/PKGBUILD |   41 
 2 files changed, 82 insertions(+)

Copied: haskell-pretty-show/repos/community-staging-i686/PKGBUILD (from rev 
228454, haskell-pretty-show/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-18 06:03:34 UTC (rev 228455)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=pretty-show
+pkgname=haskell-pretty-show 
+pkgver=1.6.13
+pkgrel=1
+pkgdesc='Tools for working with derived `Show` instances and generic 
inspection of values.'
+url="http://wiki.github.com/yav/pretty-show;
+license=('MIT')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'haskell-lexer')
+makedepends=('happy')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('7917e5b34e3eefdff3b72d37cedd9f692be1176febe1087e713be9e6c00baf5ffbdd3a7ecca685936ddf73a6765f8145d94ac5a9c026fc8de58794e0a06a184e')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-pretty-show/repos/community-staging-x86_64/PKGBUILD (from rev 
228454, haskell-pretty-show/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-18 06:03:34 UTC (rev 228455)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=pretty-show
+pkgname=haskell-pretty-show 
+pkgver=1.6.13
+pkgrel=1
+pkgdesc='Tools for working with derived `Show` instances and generic 
inspection of values.'
+url="http://wiki.github.com/yav/pretty-show;
+license=('MIT')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'haskell-lexer')
+makedepends=('happy')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('7917e5b34e3eefdff3b72d37cedd9f692be1176febe1087e713be9e6c00baf5ffbdd3a7ecca685936ddf73a6765f8145d94ac5a9c026fc8de58794e0a06a184e')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 

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

2017-05-18 Thread Felix Yan
Date: Thursday, May 18, 2017 @ 06:03:12
  Author: felixonmars
Revision: 228454

upgpkg: haskell-pretty-show 1.6.13-1

rebuild with pretty-show,1.6.13

Modified:
  haskell-pretty-show/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-18 06:00:17 UTC (rev 228453)
+++ PKGBUILD2017-05-18 06:03:12 UTC (rev 228454)
@@ -3,7 +3,7 @@
 
 _hkgname=pretty-show
 pkgname=haskell-pretty-show 
-pkgver=1.6.12
+pkgver=1.6.13
 pkgrel=1
 pkgdesc='Tools for working with derived `Show` instances and generic 
inspection of values.'
 url="http://wiki.github.com/yav/pretty-show;
@@ -12,7 +12,7 @@
 depends=('ghc=8.0.1' 'haskell-lexer')
 makedepends=('happy')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-md5sums=('30eb5b9dc961fed83d2b45a49586a172')
+sha512sums=('7917e5b34e3eefdff3b72d37cedd9f692be1176febe1087e713be9e6c00baf5ffbdd3a7ecca685936ddf73a6765f8145d94ac5a9c026fc8de58794e0a06a184e')
 
 build() {
 cd "${srcdir}/${_hkgname}-${pkgver}"


[arch-commits] Commit in adobe-source-han-serif-fonts/repos/community-any (14 files)

2017-05-18 Thread Felix Yan
Date: Thursday, May 18, 2017 @ 06:05:36
  Author: felixonmars
Revision: 228458

archrelease: copy trunk to community-any

Added:
  adobe-source-han-serif-fonts/repos/community-any/44-source-han-serif-cn.conf
(from rev 228457, 
adobe-source-han-serif-fonts/trunk/44-source-han-serif-cn.conf)
  adobe-source-han-serif-fonts/repos/community-any/44-source-han-serif-jp.conf
(from rev 228457, 
adobe-source-han-serif-fonts/trunk/44-source-han-serif-jp.conf)
  adobe-source-han-serif-fonts/repos/community-any/44-source-han-serif-kr.conf
(from rev 228457, 
adobe-source-han-serif-fonts/trunk/44-source-han-serif-kr.conf)
  adobe-source-han-serif-fonts/repos/community-any/44-source-han-serif-otc.conf
(from rev 228457, 
adobe-source-han-serif-fonts/trunk/44-source-han-serif-otc.conf)
  adobe-source-han-serif-fonts/repos/community-any/44-source-han-serif-tw.conf
(from rev 228457, 
adobe-source-han-serif-fonts/trunk/44-source-han-serif-tw.conf)
  adobe-source-han-serif-fonts/repos/community-any/PKGBUILD
(from rev 228457, adobe-source-han-serif-fonts/trunk/PKGBUILD)
  adobe-source-han-serif-fonts/repos/community-any/fonts.install
(from rev 228457, adobe-source-han-serif-fonts/trunk/fonts.install)
Deleted:
  adobe-source-han-serif-fonts/repos/community-any/44-source-han-serif-cn.conf
  adobe-source-han-serif-fonts/repos/community-any/44-source-han-serif-jp.conf
  adobe-source-han-serif-fonts/repos/community-any/44-source-han-serif-kr.conf
  adobe-source-han-serif-fonts/repos/community-any/44-source-han-serif-otc.conf
  adobe-source-han-serif-fonts/repos/community-any/44-source-han-serif-tw.conf
  adobe-source-han-serif-fonts/repos/community-any/PKGBUILD
  adobe-source-han-serif-fonts/repos/community-any/fonts.install

--+
 44-source-han-serif-cn.conf  |   36 ++--
 44-source-han-serif-jp.conf  |   36 ++--
 44-source-han-serif-kr.conf  |   36 ++--
 44-source-han-serif-otc.conf |   84 +--
 44-source-han-serif-tw.conf  |   36 ++--
 PKGBUILD |  296 -
 fonts.install|   22 +--
 7 files changed, 273 insertions(+), 273 deletions(-)

Deleted: 44-source-han-serif-cn.conf
===
--- 44-source-han-serif-cn.conf 2017-05-18 06:04:59 UTC (rev 228457)
+++ 44-source-han-serif-cn.conf 2017-05-18 06:05:36 UTC (rev 228458)
@@ -1,18 +0,0 @@
-
-
-
-   
-   
-   
-   Source Han Serif CN Medium
-   
-   
-   demibold
-   
-   
-

Copied: 
adobe-source-han-serif-fonts/repos/community-any/44-source-han-serif-cn.conf 
(from rev 228457, 
adobe-source-han-serif-fonts/trunk/44-source-han-serif-cn.conf)
===
--- 44-source-han-serif-cn.conf (rev 0)
+++ 44-source-han-serif-cn.conf 2017-05-18 06:05:36 UTC (rev 228458)
@@ -0,0 +1,18 @@
+
+
+
+   
+   
+   
+   Source Han Serif CN Medium
+   
+   
+   demibold
+   
+   
+

Deleted: 44-source-han-serif-jp.conf
===
--- 44-source-han-serif-jp.conf 2017-05-18 06:04:59 UTC (rev 228457)
+++ 44-source-han-serif-jp.conf 2017-05-18 06:05:36 UTC (rev 228458)
@@ -1,18 +0,0 @@
-
-
-
-
-
-
-Source Han Serif JP Medium
-
-
-demibold
-
-
-

Copied: 
adobe-source-han-serif-fonts/repos/community-any/44-source-han-serif-jp.conf 
(from rev 228457, 
adobe-source-han-serif-fonts/trunk/44-source-han-serif-jp.conf)
===
--- 44-source-han-serif-jp.conf (rev 0)
+++ 44-source-han-serif-jp.conf 2017-05-18 06:05:36 UTC (rev 228458)
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+Source Han Serif JP Medium
+
+
+demibold
+
+
+

Deleted: 44-source-han-serif-kr.conf
===
--- 44-source-han-serif-kr.conf 2017-05-18 06:04:59 UTC (rev 228457)
+++ 44-source-han-serif-kr.conf 2017-05-18 06:05:36 UTC (rev 228458)
@@ -1,18 +0,0 @@
-
-
-
-
-
-
-Source Han Serif KR Medium
-
-
-demibold
-
-
-

Copied: 
adobe-source-han-serif-fonts/repos/community-any/44-source-han-serif-kr.conf 
(from rev 228457, 
adobe-source-han-serif-fonts/trunk/44-source-han-serif-kr.conf)
===
--- 44-source-han-serif-kr.conf (rev 0)
+++ 44-source-han-serif-kr.conf 2017-05-18 06:05:36 UTC (rev 228458)
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+Source Han Serif KR Medium
+
+
+

[arch-commits] Commit in adobe-source-han-serif-fonts/trunk (PKGBUILD)

2017-05-18 Thread Felix Yan
Date: Thursday, May 18, 2017 @ 06:04:59
  Author: felixonmars
Revision: 228457

upgpkg: adobe-source-han-serif-fonts 1.001-1

Modified:
  adobe-source-han-serif-fonts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-18 06:04:39 UTC (rev 228456)
+++ PKGBUILD2017-05-18 06:04:59 UTC (rev 228457)
@@ -29,7 +29,7 @@
 _pkgbase=adobe-source-han-serif
 pkgbase=$_pkgbase-fonts
 pkgname=($_pkgbase-jp-fonts $_pkgbase-kr-fonts $_pkgbase-cn-fonts 
$_pkgbase-tw-fonts $_pkgbase-otc-fonts)
-pkgver=1.000
+pkgver=1.001
 pkgrel=1
 pkgdesc='Adobe Source Han Serif - A set of Pan-CJK fonts designed to 
complement Source Serif Pro'
 arch=('any')
@@ -37,18 +37,18 @@
 url='https://github.com/adobe-fonts/source-han-serif'
 depends=('fontconfig')
 install="fonts.install"
-source=("https://github.com/adobe-fonts/source-han-serif/archive/${pkgver}R.tar.gz;
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/adobe-fonts/source-han-serif/archive/${pkgver}R.tar.gz;
 44-source-han-serif-jp.conf
 44-source-han-serif-kr.conf
 44-source-han-serif-cn.conf
 44-source-han-serif-tw.conf
 44-source-han-serif-otc.conf)
-sha256sums=('4962a13bcc28a18d82ca6f8373294a447b85a28e10f9e66beac3f50f29950c01'
-'11cc3eeddaa03f90e02bc0d2a869dc411ca6e0671ff18330092040fa8f9cb9fb'
-'c46faa5bce15917837071384281ec9503fe32e44f3e8751b6af9db1da296610a'
-'9ab6ada83b23f72d961cb27fe62fa7e61aece75e9f8039f77dc09e399dcaf214'
-'4ae2bd5d82a54ae2e7bc95b2bd8417a583b592d1df98b3934f9e028dfea8b405'
-'a5843462df591a027e30c0e15865a0e625d4a3fc7ea2068d66ee7059890de0ce')
+sha512sums=('f393c02550e5724c074edaaf896fab2ac3473af165b39bbed718bdba9a3d42fffbecf28637287f3ecf958502dee18231b4e9b8f64d133001856e65aacf3290a9'
+
'2586f4bb85fe6c4089c65a4b972d5f543ac0459ca7160b7c23cb746720d59d7dcc81ec9eef762de34835fb8e40df65cee9c6ead628bd3bcb52544c517355a965'
+
'21d8e6afcc537a1679e44e2438626202086ea766c7540ef3361b6c1a05e09870a37e0d3b1ad8300e66bc5c8138daf62b22f793089b37d1803279df2c31e6c2ff'
+
'4ca2948c0801ba5f3a3955ff1d4fac1b08ab7c5c3eed8af8e73f71b488a80d2736318006859681c0ba5760048f5e89df700e46fc49710d02d43eafb5816e3db5'
+
'd2046664196eb705564187e2452dbd8df1a0c4cd4289306f82621aa7bcd625f6cf3dcf2e16a88c2ee24f3c4c41cdc1677264393c0e110ecd2088668a42e4b723'
+
'a180c15c87d5f3879c671c2d72adad97a431a94df2c958ba7d9eb60966111a4c342c174a700e07a3ffa32753f729a824d911c1e69e94436f57fcc77bb1743a0b')
 
 _jp=(
 SourceHanSerifJP-Bold.otf


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

2017-05-18 Thread Felix Yan
Date: Thursday, May 18, 2017 @ 08:11:33
  Author: felixonmars
Revision: 296243

upgpkg: udisks2 2.6.5-1

Modified:
  udisks2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-18 05:36:22 UTC (rev 296242)
+++ PKGBUILD2017-05-18 08:11:33 UTC (rev 296243)
@@ -3,7 +3,7 @@
 # Contributor: Ionut Biru 
 
 pkgname=udisks2
-pkgver=2.6.4
+pkgver=2.6.5
 pkgrel=1
 pkgdesc="Disk Management Service, version 2"
 arch=('i686' 'x86_64')
@@ -16,7 +16,7 @@
 'ntfs-3g: NTFS filesystem management support'
 'dosfstools: VFAT filesystem management support')
 
source=("https://github.com/storaged-project/udisks/archive/udisks-$pkgver.tar.gz;)
-sha256sums=('7c7889dbd8f910b8a8094841168c04d48e0bdaf946b22aa5f0742a460473c191')
+sha256sums=('817e2de4efab458a98b24b15066933692e6ee3777430211b4e7aeddd0b9045f2')
 
 build() {
   cd udisks-udisks-$pkgver


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

2017-05-18 Thread Felix Yan
Date: Thursday, May 18, 2017 @ 08:11:38
  Author: felixonmars
Revision: 228459

upgpkg: wine-staging 2.8-1

Modified:
  wine-staging/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-18 06:05:36 UTC (rev 228458)
+++ PKGBUILD2017-05-18 08:11:38 UTC (rev 228459)
@@ -6,7 +6,7 @@
 # Contributor: Giovanni Scafora 
 
 pkgname=wine-staging
-pkgver=2.7
+pkgver=2.8
 pkgrel=1
 
 _pkgbasever=${pkgver/rc/-rc}
@@ -13,7 +13,7 @@
 
 
source=("https://github.com/wine-compholio/wine-patched/archive/staging-$_pkgbasever.tar.gz;
 30-win32-aliases.conf)
-sha1sums=('48f93d42760e25400a59d80e674472ba9c673e13'
+sha1sums=('21611df5967f3f028d52b9b6a6df59096598f6df'
   '023a5c901c6a091c56e76b6a62d141d87cce9fdb')
 
 pkgdesc="A compatibility layer for running Windows programs - Staging branch"


[arch-commits] Commit in wine-staging/repos/community-i686 (4 files)

2017-05-18 Thread Felix Yan
Date: Thursday, May 18, 2017 @ 08:12:27
  Author: felixonmars
Revision: 228460

archrelease: copy trunk to community-i686

Added:
  wine-staging/repos/community-i686/30-win32-aliases.conf
(from rev 228459, wine-staging/trunk/30-win32-aliases.conf)
  wine-staging/repos/community-i686/PKGBUILD
(from rev 228459, wine-staging/trunk/PKGBUILD)
Deleted:
  wine-staging/repos/community-i686/30-win32-aliases.conf
  wine-staging/repos/community-i686/PKGBUILD

--+
 PKGBUILD |  368 ++---
 1 file changed, 184 insertions(+), 184 deletions(-)

Deleted: 30-win32-aliases.conf
===
(Binary files differ)

Copied: wine-staging/repos/community-i686/30-win32-aliases.conf (from rev 
228459, wine-staging/trunk/30-win32-aliases.conf)
===
(Binary files differ)

Deleted: PKGBUILD
===
--- PKGBUILD2017-05-18 08:11:38 UTC (rev 228459)
+++ PKGBUILD2017-05-18 08:12:27 UTC (rev 228460)
@@ -1,184 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Sven-Hendrik Haase 
-# Contributor: Jan "heftig" Steffens 
-# Contributor: Eduardo Romero 
-# Contributor: Giovanni Scafora 
-
-pkgname=wine-staging
-pkgver=2.7
-pkgrel=1
-
-_pkgbasever=${pkgver/rc/-rc}
-
-source=("https://github.com/wine-compholio/wine-patched/archive/staging-$_pkgbasever.tar.gz;
-30-win32-aliases.conf)
-sha1sums=('48f93d42760e25400a59d80e674472ba9c673e13'
-  '023a5c901c6a091c56e76b6a62d141d87cce9fdb')
-
-pkgdesc="A compatibility layer for running Windows programs - Staging branch"
-url="http://www.wine-staging.com;
-arch=(i686 x86_64)
-options=(staticlibs)
-license=(LGPL)
-
-_depends=(
-  attr lib32-attr
-  fontconfig   lib32-fontconfig
-  lcms2lib32-lcms2
-  libxml2  lib32-libxml2
-  libxcursor   lib32-libxcursor
-  libxrandrlib32-libxrandr
-  libxdamage   lib32-libxdamage
-  libxilib32-libxi
-  gettext  lib32-gettext
-  freetype2lib32-freetype2
-  glu  lib32-glu
-  libsmlib32-libsm
-  gcc-libs lib32-gcc-libs
-  libpcap  lib32-libpcap
-  desktop-file-utils
-)
-
-makedepends=(autoconf ncurses bison perl fontforge flex
-  'gcc>=4.5.0-2'   'gcc-multilib>=4.5.0-2'
-  gifliblib32-giflib
-  libpnglib32-libpng
-  gnutlslib32-gnutls
-  libxinerama   lib32-libxinerama
-  libxcomposite lib32-libxcomposite
-  libxmulib32-libxmu
-  libxxf86vmlib32-libxxf86vm
-  libldap   lib32-libldap
-  mpg123lib32-mpg123
-  openallib32-openal
-  v4l-utils lib32-v4l-utils
-  alsa-lib  lib32-alsa-lib
-  libxcomposite lib32-libxcomposite
-  mesa  lib32-mesa
-  mesa-libgllib32-mesa-libgl
-  opencl-icd-loader lib32-opencl-icd-loader
-  libxslt   lib32-libxslt
-  libpulse  lib32-libpulse
-  libva lib32-libva
-  gtk3  lib32-gtk3
-  gst-plugins-base-libs lib32-gst-plugins-base-libs
-  samba
-  opencl-headers
-)
-  
-optdepends=(
-  gifliblib32-giflib
-  libpnglib32-libpng
-  libldap   lib32-libldap
-  gnutlslib32-gnutls
-  mpg123lib32-mpg123
-  openallib32-openal
-  v4l-utils lib32-v4l-utils
-  libpulse  lib32-libpulse
-  alsa-plugins  lib32-alsa-plugins
-  alsa-lib  lib32-alsa-lib
-  libjpeg-turbo lib32-libjpeg-turbo
-  libxcomposite lib32-libxcomposite
-  libxinerama   lib32-libxinerama
-  ncurses   lib32-ncurses
-  opencl-icd-loader lib32-opencl-icd-loader
-  libxslt   lib32-libxslt
-  libva lib32-libva
-  gtk3  lib32-gtk3
-  gst-plugins-base-libs lib32-gst-plugins-base-libs
-  vulkan-icd-loader lib32-vulkan-icd-loader
-  cups
-  samba   dosbox
-)
-
-if [[ $CARCH == i686 ]]; then
-  # Strip lib32 etc. on i686
-  _depends=(${_depends[@]/*32-*/})
-  makedepends=(${makedepends[@]/*32-*/} ${_depends[@]})
-  makedepends=(${makedepends[@]/*-multilib*/})
-  optdepends=(${optdepends[@]/*32-*/})
-  provides=("wine=$pkgver")
-  conflicts=('wine')
-else
-  makedepends=(${makedepends[@]} ${_depends[@]})
-  provides=("wine=$pkgver" "wine-wow64=$pkgver")
-  conflicts=('wine' 'wine-wow64')
-fi
-
-prepare() {
-  # Allow ccache to work
-  mv wine-patched-staging-$_pkgbasever $pkgname
-
-  sed 's|OpenCL/opencl.h|CL/opencl.h|g' -i $pkgname/configure*
-
-  # Get rid of old build dirs
-  rm -rf $pkgname-{32,64}-build
-  mkdir 

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

2017-05-18 Thread Felix Yan
Date: Thursday, May 18, 2017 @ 08:12:40
  Author: felixonmars
Revision: 296244

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  udisks2/repos/extra-i686/PKGBUILD
(from rev 296243, udisks2/trunk/PKGBUILD)
  udisks2/repos/extra-x86_64/PKGBUILD
(from rev 296243, udisks2/trunk/PKGBUILD)
Deleted:
  udisks2/repos/extra-i686/PKGBUILD
  udisks2/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |   78 
 extra-i686/PKGBUILD   |   39 
 extra-x86_64/PKGBUILD |   39 
 3 files changed, 78 insertions(+), 78 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-05-18 08:11:33 UTC (rev 296243)
+++ extra-i686/PKGBUILD 2017-05-18 08:12:40 UTC (rev 296244)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Ionut Biru 
-
-pkgname=udisks2
-pkgver=2.6.4
-pkgrel=1
-pkgdesc="Disk Management Service, version 2"
-arch=('i686' 'x86_64')
-url="http://www.freedesktop.org/wiki/Software/udisks;
-license=('GPL2')
-depends=('glib2' 'systemd' 'polkit' 'libatasmart' 'util-linux' 'libgudev')
-makedepends=('intltool' 'docbook-xsl' 'gobject-introspection' 'gnome-common')
-optdepends=('parted: partition management'
-'gptfdisk: GUID partition table support'
-'ntfs-3g: NTFS filesystem management support'
-'dosfstools: VFAT filesystem management support')
-source=("https://github.com/storaged-project/udisks/archive/udisks-$pkgver.tar.gz;)
-sha256sums=('7c7889dbd8f910b8a8094841168c04d48e0bdaf946b22aa5f0742a460473c191')
-
-build() {
-  cd udisks-udisks-$pkgver
-  ./autogen.sh --prefix=/usr --sysconfdir=/etc \
-  --sbindir=/usr/bin --libexecdir=/usr/lib \
-  --with-systemdsystemunitdir=/usr/lib/systemd/system \
-  --localstatedir=/var --disable-static
-  make
-}
-
-check() {
-  cd udisks-udisks-$pkgver
-  make check
-}
-
-package() {
-  cd udisks-udisks-$pkgver
-  make DESTDIR="$pkgdir" install \
-bash_completiondir=/usr/share/bash-completion/completions
-}

Copied: udisks2/repos/extra-i686/PKGBUILD (from rev 296243, 
udisks2/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-05-18 08:12:40 UTC (rev 296244)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Ionut Biru 
+
+pkgname=udisks2
+pkgver=2.6.5
+pkgrel=1
+pkgdesc="Disk Management Service, version 2"
+arch=('i686' 'x86_64')
+url="http://www.freedesktop.org/wiki/Software/udisks;
+license=('GPL2')
+depends=('glib2' 'systemd' 'polkit' 'libatasmart' 'util-linux' 'libgudev')
+makedepends=('intltool' 'docbook-xsl' 'gobject-introspection' 'gnome-common')
+optdepends=('parted: partition management'
+'gptfdisk: GUID partition table support'
+'ntfs-3g: NTFS filesystem management support'
+'dosfstools: VFAT filesystem management support')
+source=("https://github.com/storaged-project/udisks/archive/udisks-$pkgver.tar.gz;)
+sha256sums=('817e2de4efab458a98b24b15066933692e6ee3777430211b4e7aeddd0b9045f2')
+
+build() {
+  cd udisks-udisks-$pkgver
+  ./autogen.sh --prefix=/usr --sysconfdir=/etc \
+  --sbindir=/usr/bin --libexecdir=/usr/lib \
+  --with-systemdsystemunitdir=/usr/lib/systemd/system \
+  --localstatedir=/var --disable-static
+  make
+}
+
+check() {
+  cd udisks-udisks-$pkgver
+  make check
+}
+
+package() {
+  cd udisks-udisks-$pkgver
+  make DESTDIR="$pkgdir" install \
+bash_completiondir=/usr/share/bash-completion/completions
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-05-18 08:11:33 UTC (rev 296243)
+++ extra-x86_64/PKGBUILD   2017-05-18 08:12:40 UTC (rev 296244)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Ionut Biru 
-
-pkgname=udisks2
-pkgver=2.6.4
-pkgrel=1
-pkgdesc="Disk Management Service, version 2"
-arch=('i686' 'x86_64')
-url="http://www.freedesktop.org/wiki/Software/udisks;
-license=('GPL2')
-depends=('glib2' 'systemd' 'polkit' 'libatasmart' 'util-linux' 'libgudev')
-makedepends=('intltool' 'docbook-xsl' 'gobject-introspection' 'gnome-common')
-optdepends=('parted: partition management'
-'gptfdisk: GUID partition table support'
-'ntfs-3g: NTFS filesystem management support'
-'dosfstools: VFAT filesystem management support')
-source=("https://github.com/storaged-project/udisks/archive/udisks-$pkgver.tar.gz;)
-sha256sums=('7c7889dbd8f910b8a8094841168c04d48e0bdaf946b22aa5f0742a460473c191')
-
-build() {
-  cd udisks-udisks-$pkgver
-  ./autogen.sh --prefix=/usr --sysconfdir=/etc \
-  --sbindir=/usr/bin 

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

2017-05-18 Thread Felix Yan
Date: Thursday, May 18, 2017 @ 08:13:42
  Author: felixonmars
Revision: 228461

archrelease: copy trunk to multilib-x86_64

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

--+
 PKGBUILD |  368 ++---
 1 file changed, 184 insertions(+), 184 deletions(-)

Deleted: 30-win32-aliases.conf
===
(Binary files differ)

Copied: wine-staging/repos/multilib-x86_64/30-win32-aliases.conf (from rev 
228460, wine-staging/trunk/30-win32-aliases.conf)
===
(Binary files differ)

Deleted: PKGBUILD
===
--- PKGBUILD2017-05-18 08:12:27 UTC (rev 228460)
+++ PKGBUILD2017-05-18 08:13:42 UTC (rev 228461)
@@ -1,184 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Sven-Hendrik Haase 
-# Contributor: Jan "heftig" Steffens 
-# Contributor: Eduardo Romero 
-# Contributor: Giovanni Scafora 
-
-pkgname=wine-staging
-pkgver=2.7
-pkgrel=1
-
-_pkgbasever=${pkgver/rc/-rc}
-
-source=("https://github.com/wine-compholio/wine-patched/archive/staging-$_pkgbasever.tar.gz;
-30-win32-aliases.conf)
-sha1sums=('48f93d42760e25400a59d80e674472ba9c673e13'
-  '023a5c901c6a091c56e76b6a62d141d87cce9fdb')
-
-pkgdesc="A compatibility layer for running Windows programs - Staging branch"
-url="http://www.wine-staging.com;
-arch=(i686 x86_64)
-options=(staticlibs)
-license=(LGPL)
-
-_depends=(
-  attr lib32-attr
-  fontconfig   lib32-fontconfig
-  lcms2lib32-lcms2
-  libxml2  lib32-libxml2
-  libxcursor   lib32-libxcursor
-  libxrandrlib32-libxrandr
-  libxdamage   lib32-libxdamage
-  libxilib32-libxi
-  gettext  lib32-gettext
-  freetype2lib32-freetype2
-  glu  lib32-glu
-  libsmlib32-libsm
-  gcc-libs lib32-gcc-libs
-  libpcap  lib32-libpcap
-  desktop-file-utils
-)
-
-makedepends=(autoconf ncurses bison perl fontforge flex
-  'gcc>=4.5.0-2'   'gcc-multilib>=4.5.0-2'
-  gifliblib32-giflib
-  libpnglib32-libpng
-  gnutlslib32-gnutls
-  libxinerama   lib32-libxinerama
-  libxcomposite lib32-libxcomposite
-  libxmulib32-libxmu
-  libxxf86vmlib32-libxxf86vm
-  libldap   lib32-libldap
-  mpg123lib32-mpg123
-  openallib32-openal
-  v4l-utils lib32-v4l-utils
-  alsa-lib  lib32-alsa-lib
-  libxcomposite lib32-libxcomposite
-  mesa  lib32-mesa
-  mesa-libgllib32-mesa-libgl
-  opencl-icd-loader lib32-opencl-icd-loader
-  libxslt   lib32-libxslt
-  libpulse  lib32-libpulse
-  libva lib32-libva
-  gtk3  lib32-gtk3
-  gst-plugins-base-libs lib32-gst-plugins-base-libs
-  samba
-  opencl-headers
-)
-  
-optdepends=(
-  gifliblib32-giflib
-  libpnglib32-libpng
-  libldap   lib32-libldap
-  gnutlslib32-gnutls
-  mpg123lib32-mpg123
-  openallib32-openal
-  v4l-utils lib32-v4l-utils
-  libpulse  lib32-libpulse
-  alsa-plugins  lib32-alsa-plugins
-  alsa-lib  lib32-alsa-lib
-  libjpeg-turbo lib32-libjpeg-turbo
-  libxcomposite lib32-libxcomposite
-  libxinerama   lib32-libxinerama
-  ncurses   lib32-ncurses
-  opencl-icd-loader lib32-opencl-icd-loader
-  libxslt   lib32-libxslt
-  libva lib32-libva
-  gtk3  lib32-gtk3
-  gst-plugins-base-libs lib32-gst-plugins-base-libs
-  vulkan-icd-loader lib32-vulkan-icd-loader
-  cups
-  samba   dosbox
-)
-
-if [[ $CARCH == i686 ]]; then
-  # Strip lib32 etc. on i686
-  _depends=(${_depends[@]/*32-*/})
-  makedepends=(${makedepends[@]/*32-*/} ${_depends[@]})
-  makedepends=(${makedepends[@]/*-multilib*/})
-  optdepends=(${optdepends[@]/*32-*/})
-  provides=("wine=$pkgver")
-  conflicts=('wine')
-else
-  makedepends=(${makedepends[@]} ${_depends[@]})
-  provides=("wine=$pkgver" "wine-wow64=$pkgver")
-  conflicts=('wine' 'wine-wow64')
-fi
-
-prepare() {
-  # Allow ccache to work
-  mv wine-patched-staging-$_pkgbasever $pkgname
-
-  sed 's|OpenCL/opencl.h|CL/opencl.h|g' -i $pkgname/configure*
-
-  # Get rid of old build dirs
-  rm -rf $pkgname-{32,64}-build
-  

[arch-commits] Commit in artwiz-fonts/repos (testing-any testing-any/PKGBUILD)

2017-05-18 Thread Christian Hesse
Date: Thursday, May 18, 2017 @ 11:22:26
  Author: eworm
Revision: 296247

archrelease: copy trunk to testing-any

Added:
  artwiz-fonts/repos/testing-any/
  artwiz-fonts/repos/testing-any/PKGBUILD
(from rev 296246, artwiz-fonts/trunk/PKGBUILD)

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

Copied: artwiz-fonts/repos/testing-any/PKGBUILD (from rev 296246, 
artwiz-fonts/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2017-05-18 11:22:26 UTC (rev 296247)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=artwiz-fonts
+pkgver=1.3
+pkgrel=9
+pkgdesc="This is set of (improved) artwiz fonts"
+arch=('any')
+url="http://artwizaleczapka.sourceforge.net/;
+license=('GPL2')
+depends=('xorg-fonts-encodings' 'xorg-font-utils' 'fontconfig')
+source=(http://downloads.sourceforge.net/sourceforge/artwizaleczapka/artwiz-aleczapka-en-${pkgver}.tar.bz2
+   
http://downloads.sourceforge.net/sourceforge/artwizaleczapka/artwiz-aleczapka-de-${pkgver}.tar.bz2
+   
http://downloads.sourceforge.net/sourceforge/artwizaleczapka/artwiz-aleczapka-se-${pkgver}.tar.bz2)
+sha1sums=('81e711b5f00816c57e205c9e60f69237c709679d'
+  'ab866d5c248642065c80acfb76c6e3d779c59599'
+  '6bc44a55c97963218164dd256212f7f824a0c1df')
+
+package() {
+  install -d "${pkgdir}/usr/share/fonts/artwiz-fonts"
+  for lang in en de se; do
+ install -p -m 0644 artwiz-aleczapka-$lang-${pkgver}/*.pcf 
"${pkgdir}/usr/share/fonts/artwiz-fonts"
+ cat artwiz-aleczapka-$lang-${pkgver}/fonts.alias >> 
"${pkgdir}/usr/share/fonts/artwiz-fonts/fonts.alias"
+  done
+}


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

2017-05-18 Thread Christian Hesse
Date: Thursday, May 18, 2017 @ 11:22:23
  Author: eworm
Revision: 296246

upgpkg: artwiz-fonts 1.3-9

remove install file (pacman hooks!)

Modified:
  artwiz-fonts/trunk/PKGBUILD
Deleted:
  artwiz-fonts/trunk/artwiz-fonts.install

--+
 PKGBUILD |3 +--
 artwiz-fonts.install |   15 ---
 2 files changed, 1 insertion(+), 17 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-05-18 08:14:04 UTC (rev 296245)
+++ PKGBUILD2017-05-18 11:22:23 UTC (rev 296246)
@@ -3,13 +3,12 @@
 
 pkgname=artwiz-fonts
 pkgver=1.3
-pkgrel=8
+pkgrel=9
 pkgdesc="This is set of (improved) artwiz fonts"
 arch=('any')
 url="http://artwizaleczapka.sourceforge.net/;
 license=('GPL2')
 depends=('xorg-fonts-encodings' 'xorg-font-utils' 'fontconfig')
-install=artwiz-fonts.install
 
source=(http://downloads.sourceforge.net/sourceforge/artwizaleczapka/artwiz-aleczapka-en-${pkgver}.tar.bz2

http://downloads.sourceforge.net/sourceforge/artwizaleczapka/artwiz-aleczapka-de-${pkgver}.tar.bz2

http://downloads.sourceforge.net/sourceforge/artwizaleczapka/artwiz-aleczapka-se-${pkgver}.tar.bz2)

Deleted: artwiz-fonts.install
===
--- artwiz-fonts.install2017-05-18 08:14:04 UTC (rev 296245)
+++ artwiz-fonts.install2017-05-18 11:22:23 UTC (rev 296246)
@@ -1,15 +0,0 @@
-post_install() {
-  echo -n "Updating font cache... "
-  fc-cache usr/share/fonts/artwiz-fonts
-  mkfontscale usr/share/fonts/artwiz-fonts
-  mkfontdir usr/share/fonts/artwiz-fonts
-  echo "done."
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}


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

2017-05-18 Thread Christian Hesse
Date: Thursday, May 18, 2017 @ 11:25:32
  Author: eworm
Revision: 296249

archrelease: copy trunk to testing-any

Added:
  bdf-unifont/repos/testing-any/
  bdf-unifont/repos/testing-any/LICENSE
(from rev 296248, bdf-unifont/trunk/LICENSE)
  bdf-unifont/repos/testing-any/PKGBUILD
(from rev 296248, bdf-unifont/trunk/PKGBUILD)

--+
 LICENSE  |   60 
 PKGBUILD |   22 ++
 2 files changed, 82 insertions(+)

Copied: bdf-unifont/repos/testing-any/LICENSE (from rev 296248, 
bdf-unifont/trunk/LICENSE)
===
--- testing-any/LICENSE (rev 0)
+++ testing-any/LICENSE 2017-05-18 11:25:32 UTC (rev 296249)
@@ -0,0 +1,60 @@
+CENSE
+---
+Roman Czyborra released his work (Perl scripts and font .hex files)
+under the following terms:
+
+ All of my works you find here are freeware. You may
+ freely copy, use, quote, modify or redistribute them
+ as long as you properly attribute my contribution and
+ have given a quick thought about whether Roman might
+ perhaps be interested to read what you did with his
+ stuff. Horizontal rules don't apply.
+
+David Starner released what in this package is named "hex2bdf-split"
+under the same license as Roman Czyborra's work.
+
+License for all of Paul Hardy's work (except "johab2ucs2" and
+"blanks.hex", mentioned separately), Makefile and debian/ mods
+by Anthony Fok, and modified software from Luis Gonzalez Miranda
+(with permission granted to Paul Hardy):
+
+ These are released under the terms of the GNU General Public
+ License version 2, or (at your option) a later version.
+
+License for Fonts:
+
+ Any fonts using glyphs from the "wqy-cjk.hex" file (including
+ the default TrueType font) are bound by the terms of the Wen
+ Quan Yi font license.  Those fonts are released under the terms
+ of the GNU General Public License (GPL) versionn 2, with the
+ exception that embedding the font in a document does not by
+ itself bind that document to the terms of the GNU GPL.
+
+ Any fonts that do not use glyphs from the "wqy-cjk.hex" file
+ fall under the above "License for all of Roman Czyborra's work".
+
+ The fonts in "./font/precompiled" do use wqy-cjk.hex, and so
+ are licensed under the GNU GPL version 2, with the exception
+ that embedding the font in a document does not in itself bind
+ that document to the terms of the GNU GPL.  The following
+ paragraphs explaining the exception is taken from the Wen
+ Quan Yi font distribution:
+
+  ** GPL v2.0 license with font embedding exception:
+
+  As a special exception, if you create a document which
+  uses this font, and embed this font or unaltered portions
+  of this font into the document, this font does not by
+  itself cause the resulting document to be covered by
+  the GNU General Public License. This exception does not
+  however invalidate any other reasons why the document
+  might be covered by the GNU General Public License.
+  If you modify this font, you may extend this exception
+  to your version of the font, but you are not obligated
+  to do so. If you do not wish to do so, delete this
+  exception statement from your version.
+
+License for "blanks.hex":
+
+ There is one exception to the above rules: Paul Hardy earlier
+ released the "blanks.hex" file into the public domain.

Copied: bdf-unifont/repos/testing-any/PKGBUILD (from rev 296248, 
bdf-unifont/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2017-05-18 11:25:32 UTC (rev 296249)
@@ -0,0 +1,22 @@
+# $Id: PKGBUILD,v 1.5 2008/09/24 07:16:54 ronald Exp $
+# Maintainer: Ronald van Haren 
+
+pkgname=bdf-unifont
+pkgver=9.0.06
+pkgrel=1
+pkgdesc="GNU Unifont Glyphs"
+arch=('any')
+license=('custom' 'GPL2')
+url="http://unifoundry.com/unifont.html;
+depends=('fontconfig' 'xorg-fonts-encodings' 'xorg-font-utils')
+source=("http://unifoundry.com/pub/unifont-${pkgver}/font-builds/unifont-${pkgver}.bdf.gz"{,.sig}
 'LICENSE')
+validpgpkeys=('95D2E9AB8740D8046387FD151A09227B1F435A33') # Paul Hardy
+sha256sums=('4246c4773ed70f78a7e27ff1118fd257a280d1102200265ad5d58bb2011195ef'
+'SKIP'
+'b301a70ea554b471ca22f9654d8fe0573a93c1ecae3f59f17026f12e58f31e3a')
+
+package() {
+  install -Dm644 "${srcdir}/unifont-${pkgver}.bdf" \
+"${pkgdir}/usr/share/fonts/misc/unifont.bdf"
+  install -Dm644 "${srcdir}/LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


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

2017-05-18 Thread Christian Hesse
Date: Thursday, May 18, 2017 @ 11:25:28
  Author: eworm
Revision: 296248

upgpkg: bdf-unifont 9.0.06-1

* new upstream release
* remove install file (pacman hooks!)

Modified:
  bdf-unifont/trunk/PKGBUILD
Deleted:
  bdf-unifont/trunk/unifont.install

-+
 PKGBUILD|9 -
 unifont.install |   15 ---
 2 files changed, 4 insertions(+), 20 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-05-18 11:22:26 UTC (rev 296247)
+++ PKGBUILD2017-05-18 11:25:28 UTC (rev 296248)
@@ -2,7 +2,7 @@
 # Maintainer: Ronald van Haren 
 
 pkgname=bdf-unifont
-pkgver=9.0.04
+pkgver=9.0.06
 pkgrel=1
 pkgdesc="GNU Unifont Glyphs"
 arch=('any')
@@ -9,12 +9,11 @@
 license=('custom' 'GPL2')
 url="http://unifoundry.com/unifont.html;
 depends=('fontconfig' 'xorg-fonts-encodings' 'xorg-font-utils')
-install=unifont.install
 
source=("http://unifoundry.com/pub/unifont-${pkgver}/font-builds/unifont-${pkgver}.bdf.gz"{,.sig}
 'LICENSE')
 validpgpkeys=('95D2E9AB8740D8046387FD151A09227B1F435A33') # Paul Hardy
-sha1sums=('66e4e60ee65b98eeb5476a34d7a508924dde609b'
-  'SKIP'
-  'e4ba558b4af9b8ab0f129c1f1788e168e412b9be')
+sha256sums=('4246c4773ed70f78a7e27ff1118fd257a280d1102200265ad5d58bb2011195ef'
+'SKIP'
+'b301a70ea554b471ca22f9654d8fe0573a93c1ecae3f59f17026f12e58f31e3a')
 
 package() {
   install -Dm644 "${srcdir}/unifont-${pkgver}.bdf" \

Deleted: unifont.install
===
--- unifont.install 2017-05-18 11:22:26 UTC (rev 296247)
+++ unifont.install 2017-05-18 11:25:28 UTC (rev 296248)
@@ -1,15 +0,0 @@
-post_install() {
-  echo -n "Updating font cache... "
-  fc-cache -s > /dev/null
-  mkfontscale /usr/share/fonts/misc
-  mkfontdir /usr/share/fonts/misc
-  echo "done."
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}


[arch-commits] Commit in font-bitstream-speedo/repos (2 files)

2017-05-18 Thread Christian Hesse
Date: Thursday, May 18, 2017 @ 11:26:47
  Author: eworm
Revision: 296251

archrelease: copy trunk to testing-any

Added:
  font-bitstream-speedo/repos/testing-any/
  font-bitstream-speedo/repos/testing-any/PKGBUILD
(from rev 296250, font-bitstream-speedo/trunk/PKGBUILD)

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

Copied: font-bitstream-speedo/repos/testing-any/PKGBUILD (from rev 296250, 
font-bitstream-speedo/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2017-05-18 11:26:47 UTC (rev 296251)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Eric Belanger 
+# Contributor: Jan de Groot 
+
+pkgname=font-bitstream-speedo
+pkgver=1.0.2
+pkgrel=3
+pkgdesc="Bitstream Speedo fonts"
+arch=('any')
+url="http://xorg.freedesktop.org/;
+license=('custom')
+depends=('xorg-mkfontdir' 'xorg-mkfontscale' 'fontconfig')
+source=(http://xorg.freedesktop.org/releases/individual/font/${pkgname}-${pkgver}.tar.bz2)
+md5sums=('13f6f107be164cfbf6be40d35ecf0c0f')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr \
+  --with-fontdir=/usr/share/fonts/speedo 
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  rm -f "${pkgdir}/usr/share/fonts/speedo"/fonts.*
+  
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}


[arch-commits] Commit in font-bitstream-speedo/trunk (PKGBUILD xfonts.install)

2017-05-18 Thread Christian Hesse
Date: Thursday, May 18, 2017 @ 11:26:44
  Author: eworm
Revision: 296250

upgpkg: font-bitstream-speedo 1.0.2-3

remove install file (pacman hooks!)

Modified:
  font-bitstream-speedo/trunk/PKGBUILD
Deleted:
  font-bitstream-speedo/trunk/xfonts.install

+
 PKGBUILD   |3 +--
 xfonts.install |   15 ---
 2 files changed, 1 insertion(+), 17 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-05-18 11:25:32 UTC (rev 296249)
+++ PKGBUILD2017-05-18 11:26:44 UTC (rev 296250)
@@ -4,13 +4,12 @@
 
 pkgname=font-bitstream-speedo
 pkgver=1.0.2
-pkgrel=2
+pkgrel=3
 pkgdesc="Bitstream Speedo fonts"
 arch=('any')
 url="http://xorg.freedesktop.org/;
 license=('custom')
 depends=('xorg-mkfontdir' 'xorg-mkfontscale' 'fontconfig')
-install=xfonts.install
 
source=(http://xorg.freedesktop.org/releases/individual/font/${pkgname}-${pkgver}.tar.bz2)
 md5sums=('13f6f107be164cfbf6be40d35ecf0c0f')
 

Deleted: xfonts.install
===
--- xfonts.install  2017-05-18 11:25:32 UTC (rev 296249)
+++ xfonts.install  2017-05-18 11:26:44 UTC (rev 296250)
@@ -1,15 +0,0 @@
-post_install() {
-  echo -n "Updating font cache... "
-  fc-cache -s > /dev/null
-  mkfontscale /usr/share/fonts/speedo
-  mkfontdir /usr/share/fonts/speedo
-  echo "done."
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}


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

2017-05-18 Thread Christian Hesse
Date: Thursday, May 18, 2017 @ 11:36:34
  Author: eworm
Revision: 296252

upgpkg: ttf-cheapskate 2.0-11

remove install file (pacman hooks!)

Modified:
  ttf-cheapskate/trunk/PKGBUILD
Deleted:
  ttf-cheapskate/trunk/ttf.install

-+
 PKGBUILD|3 +--
 ttf.install |   15 ---
 2 files changed, 1 insertion(+), 17 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-05-18 11:26:47 UTC (rev 296251)
+++ PKGBUILD2017-05-18 11:36:34 UTC (rev 296252)
@@ -3,13 +3,12 @@
 
 pkgname=ttf-cheapskate
 pkgver=2.0
-pkgrel=10
+pkgrel=11
 pkgdesc="TTFonts collection from dustimo.com"
 arch=('any')
 url="http://dustismo.com/;
 license=('GPL')
 depends=('xorg-fonts-encodings' 'xorg-fonts-alias' 'xorg-font-utils' 
'fontconfig')
-install=ttf.install
 
source=(https://sources.archlinux.org/other/packages/ttf-cheapskate/ttf-dustin_20030517.orig.tar.gz)
 sha1sums=('66fe8772adf3e3390706c2a34380e380d5533677')
 

Deleted: ttf.install
===
--- ttf.install 2017-05-18 11:26:47 UTC (rev 296251)
+++ ttf.install 2017-05-18 11:36:34 UTC (rev 296252)
@@ -1,15 +0,0 @@
-post_install() {
-  echo -n "Updating font cache... "
-  fc-cache -s
-  mkfontscale usr/share/fonts/TTF
-  mkfontdir usr/share/fonts/TTF
-  echo "done."
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}


[arch-commits] Commit in ttf-cheapskate/repos (testing-any testing-any/PKGBUILD)

2017-05-18 Thread Christian Hesse
Date: Thursday, May 18, 2017 @ 11:36:38
  Author: eworm
Revision: 296253

archrelease: copy trunk to testing-any

Added:
  ttf-cheapskate/repos/testing-any/
  ttf-cheapskate/repos/testing-any/PKGBUILD
(from rev 296252, ttf-cheapskate/trunk/PKGBUILD)

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

Copied: ttf-cheapskate/repos/testing-any/PKGBUILD (from rev 296252, 
ttf-cheapskate/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2017-05-18 11:36:38 UTC (rev 296253)
@@ -0,0 +1,22 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=ttf-cheapskate
+pkgver=2.0
+pkgrel=11
+pkgdesc="TTFonts collection from dustimo.com"
+arch=('any')
+url="http://dustismo.com/;
+license=('GPL')
+depends=('xorg-fonts-encodings' 'xorg-fonts-alias' 'xorg-font-utils' 
'fontconfig')
+source=(https://sources.archlinux.org/other/packages/ttf-cheapskate/ttf-dustin_20030517.orig.tar.gz)
+sha1sums=('66fe8772adf3e3390706c2a34380e380d5533677')
+
+package() {
+  cd ttf-dustin-20030517
+  for file in *.zip; do
+bsdtar -xf $file
+  done
+  install -d "${pkgdir}/usr/share/fonts/TTF"
+  install -m644 *.ttf "${pkgdir}/usr/share/fonts/TTF/"
+}


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

2017-05-18 Thread Christian Hesse
Date: Thursday, May 18, 2017 @ 11:44:23
  Author: eworm
Revision: 228470

upgpkg: ttf-inconsolata 20151221.480630d-2

remove install file (pacman hooks!)

Modified:
  ttf-inconsolata/trunk/PKGBUILD
Deleted:
  ttf-inconsolata/trunk/ttf-inconsolata.install

-+
 PKGBUILD|3 +--
 ttf-inconsolata.install |   15 ---
 2 files changed, 1 insertion(+), 17 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-05-18 10:10:32 UTC (rev 228469)
+++ PKGBUILD2017-05-18 11:44:23 UTC (rev 228470)
@@ -3,7 +3,7 @@
 
 pkgname=ttf-inconsolata
 pkgver=20151221.480630d
-pkgrel=1
+pkgrel=2
 pkgdesc="Monospace font for pretty code listings and for the terminal"
 arch=('any')
 url="https://www.google.com/fonts/specimen/Inconsolata;
@@ -11,7 +11,6 @@
 depends=('fontconfig' 'xorg-font-utils')
 
source=('https://sources.archlinux.org/other/community/ttf-inconsolata/ttf-inconsolata-480630d.tar.bz2'
 '75-ttf-inconsolata.conf')
-install=${pkgname}.install
 sha1sums=('628bacd3855a9328c2c84c3ad7d5caf9ebd2dc14'
   '27cf0d59c91fd9ff2fb72de9d7ee5082a46a1792')
 

Deleted: ttf-inconsolata.install
===
--- ttf-inconsolata.install 2017-05-18 10:10:32 UTC (rev 228469)
+++ ttf-inconsolata.install 2017-05-18 11:44:23 UTC (rev 228470)
@@ -1,15 +0,0 @@
-post_install() {
-  echo -n "Updating font cache... "
-  fc-cache -s > /dev/null
-  mkfontscale /usr/share/fonts/TTF
-  mkfontdir /usr/share/fonts/TTF
-  echo "done."
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}


[arch-commits] Commit in ttf-inconsolata/repos/community-any (5 files)

2017-05-18 Thread Christian Hesse
Date: Thursday, May 18, 2017 @ 11:44:27
  Author: eworm
Revision: 228471

archrelease: copy trunk to community-any

Added:
  ttf-inconsolata/repos/community-any/75-ttf-inconsolata.conf
(from rev 228470, ttf-inconsolata/trunk/75-ttf-inconsolata.conf)
  ttf-inconsolata/repos/community-any/PKGBUILD
(from rev 228470, ttf-inconsolata/trunk/PKGBUILD)
Deleted:
  ttf-inconsolata/repos/community-any/75-ttf-inconsolata.conf
  ttf-inconsolata/repos/community-any/PKGBUILD
  ttf-inconsolata/repos/community-any/ttf-inconsolata.install

-+
 PKGBUILD|   45 ++---
 ttf-inconsolata.install |   15 ---
 2 files changed, 22 insertions(+), 38 deletions(-)

Deleted: 75-ttf-inconsolata.conf
===
(Binary files differ)

Copied: ttf-inconsolata/repos/community-any/75-ttf-inconsolata.conf (from rev 
228470, ttf-inconsolata/trunk/75-ttf-inconsolata.conf)
===
(Binary files differ)

Deleted: PKGBUILD
===
--- PKGBUILD2017-05-18 11:44:23 UTC (rev 228470)
+++ PKGBUILD2017-05-18 11:44:27 UTC (rev 228471)
@@ -1,23 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren 
-
-pkgname=ttf-inconsolata
-pkgver=20151221.480630d
-pkgrel=1
-pkgdesc="Monospace font for pretty code listings and for the terminal"
-arch=('any')
-url="https://www.google.com/fonts/specimen/Inconsolata;
-license=('custom:OFL')
-depends=('fontconfig' 'xorg-font-utils')
-source=('https://sources.archlinux.org/other/community/ttf-inconsolata/ttf-inconsolata-480630d.tar.bz2'
-'75-ttf-inconsolata.conf')
-install=${pkgname}.install
-sha1sums=('628bacd3855a9328c2c84c3ad7d5caf9ebd2dc14'
-  '27cf0d59c91fd9ff2fb72de9d7ee5082a46a1792')
-
-package() {
-  install -d ${pkgdir}/usr/share/fonts/TTF
-  install -Dm644 ${srcdir}/inconsolata/*.ttf ${pkgdir}/usr/share/fonts/TTF
-  install -Dm644 ${srcdir}/inconsolata/OFL.txt 
${pkgdir}/usr/share/licenses/ttf-inconsolata/OFL.txt
-  install -Dm644 ${srcdir}/75-ttf-inconsolata.conf 
${pkgdir}/etc/fonts/conf.avail/75-ttf-inconsolata.conf
-}

Copied: ttf-inconsolata/repos/community-any/PKGBUILD (from rev 228470, 
ttf-inconsolata/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-05-18 11:44:27 UTC (rev 228471)
@@ -0,0 +1,22 @@
+# $Id$
+# Maintainer: Ronald van Haren 
+
+pkgname=ttf-inconsolata
+pkgver=20151221.480630d
+pkgrel=2
+pkgdesc="Monospace font for pretty code listings and for the terminal"
+arch=('any')
+url="https://www.google.com/fonts/specimen/Inconsolata;
+license=('custom:OFL')
+depends=('fontconfig' 'xorg-font-utils')
+source=('https://sources.archlinux.org/other/community/ttf-inconsolata/ttf-inconsolata-480630d.tar.bz2'
+'75-ttf-inconsolata.conf')
+sha1sums=('628bacd3855a9328c2c84c3ad7d5caf9ebd2dc14'
+  '27cf0d59c91fd9ff2fb72de9d7ee5082a46a1792')
+
+package() {
+  install -d ${pkgdir}/usr/share/fonts/TTF
+  install -Dm644 ${srcdir}/inconsolata/*.ttf ${pkgdir}/usr/share/fonts/TTF
+  install -Dm644 ${srcdir}/inconsolata/OFL.txt 
${pkgdir}/usr/share/licenses/ttf-inconsolata/OFL.txt
+  install -Dm644 ${srcdir}/75-ttf-inconsolata.conf 
${pkgdir}/etc/fonts/conf.avail/75-ttf-inconsolata.conf
+}

Deleted: ttf-inconsolata.install
===
--- ttf-inconsolata.install 2017-05-18 11:44:23 UTC (rev 228470)
+++ ttf-inconsolata.install 2017-05-18 11:44:27 UTC (rev 228471)
@@ -1,15 +0,0 @@
-post_install() {
-  echo -n "Updating font cache... "
-  fc-cache -s > /dev/null
-  mkfontscale /usr/share/fonts/TTF
-  mkfontdir /usr/share/fonts/TTF
-  echo "done."
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}


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

2017-05-18 Thread Christian Hesse
Date: Thursday, May 18, 2017 @ 11:50:04
  Author: eworm
Revision: 228472

upgpkg: ttf-symbola 9.00-2

Modified:
  ttf-symbola/trunk/PKGBUILD
Deleted:
  ttf-symbola/trunk/ttf-symbola.install

-+
 PKGBUILD|5 ++---
 ttf-symbola.install |9 -
 2 files changed, 2 insertions(+), 12 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-05-18 11:44:27 UTC (rev 228471)
+++ PKGBUILD2017-05-18 11:50:04 UTC (rev 228472)
@@ -5,7 +5,7 @@
 
 pkgname=ttf-symbola
 pkgver=9.00
-pkgrel=1
+pkgrel=2
 pkgdesc="Font for unicode symbols (part of Unicode Fonts for Ancient Scripts)."
 arch=('any')
 url="http://users.teilar.gr/~g1951d/;
@@ -12,9 +12,8 @@
 license=('custom')
 depends=('fontconfig' 'xorg-font-utils')
 makedepends=('unzip')
-install=$pkgname.install
 source=(http://users.teilar.gr/~g1951d/Symbola.zip LICENSE)
-sha1sums=('705120ec73e8a0a142a76fccac041b5347c99b74'
+sha1sums=('9ec5ec364f92836a7bee1b30bd18e4bf3681986b'
   'd5c6cf1db006cfee0e60897ce8bb54bd6611de75')
 
 package() {

Deleted: ttf-symbola.install
===
--- ttf-symbola.install 2017-05-18 11:44:27 UTC (rev 228471)
+++ ttf-symbola.install 2017-05-18 11:50:04 UTC (rev 228472)
@@ -1,9 +0,0 @@
-post_install() {
-  fc-cache -s
-  mkfontscale /usr/share/fonts/TTF
-  mkfontdir /usr/share/fonts/TTF
-}
-
-post_upgrade() {
-  post_install
-}


[arch-commits] Commit in ttf-symbola/repos/community-any (5 files)

2017-05-18 Thread Christian Hesse
Date: Thursday, May 18, 2017 @ 11:50:34
  Author: eworm
Revision: 228473

archrelease: copy trunk to community-any

Added:
  ttf-symbola/repos/community-any/LICENSE
(from rev 228472, ttf-symbola/trunk/LICENSE)
  ttf-symbola/repos/community-any/PKGBUILD
(from rev 228472, ttf-symbola/trunk/PKGBUILD)
Deleted:
  ttf-symbola/repos/community-any/LICENSE
  ttf-symbola/repos/community-any/PKGBUILD
  ttf-symbola/repos/community-any/ttf-symbola.install

-+
 LICENSE |8 
 PKGBUILD|   45 ++---
 ttf-symbola.install |9 -
 3 files changed, 26 insertions(+), 36 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2017-05-18 11:50:04 UTC (rev 228472)
+++ LICENSE 2017-05-18 11:50:34 UTC (rev 228473)
@@ -1,4 +0,0 @@
-In lieu of a licence:
-Fonts in this site are offered free for any use; they may be opened, 
-edited, modified, regenerated, posted, packaged and redistributed.
-fonts designed by George Douros

Copied: ttf-symbola/repos/community-any/LICENSE (from rev 228472, 
ttf-symbola/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2017-05-18 11:50:34 UTC (rev 228473)
@@ -0,0 +1,4 @@
+In lieu of a licence:
+Fonts in this site are offered free for any use; they may be opened, 
+edited, modified, regenerated, posted, packaged and redistributed.
+fonts designed by George Douros

Deleted: PKGBUILD
===
--- PKGBUILD2017-05-18 11:50:04 UTC (rev 228472)
+++ PKGBUILD2017-05-18 11:50:34 UTC (rev 228473)
@@ -1,23 +0,0 @@
-# $Id$
-# Maintainer: Daniel Micay 
-# Contributor: Elena ``of Valhalla'' Grandi 
-# Contributor: Jesse Jaara 
-
-pkgname=ttf-symbola
-pkgver=9.00
-pkgrel=1
-pkgdesc="Font for unicode symbols (part of Unicode Fonts for Ancient Scripts)."
-arch=('any')
-url="http://users.teilar.gr/~g1951d/;
-license=('custom')
-depends=('fontconfig' 'xorg-font-utils')
-makedepends=('unzip')
-install=$pkgname.install
-source=(http://users.teilar.gr/~g1951d/Symbola.zip LICENSE)
-sha1sums=('705120ec73e8a0a142a76fccac041b5347c99b74'
-  'd5c6cf1db006cfee0e60897ce8bb54bd6611de75')
-
-package() {
-  install -Dm644 Symbola.ttf "$pkgdir/usr/share/fonts/TTF/Symbola.ttf"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: ttf-symbola/repos/community-any/PKGBUILD (from rev 228472, 
ttf-symbola/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-05-18 11:50:34 UTC (rev 228473)
@@ -0,0 +1,22 @@
+# $Id$
+# Maintainer: Daniel Micay 
+# Contributor: Elena ``of Valhalla'' Grandi 
+# Contributor: Jesse Jaara 
+
+pkgname=ttf-symbola
+pkgver=9.00
+pkgrel=2
+pkgdesc="Font for unicode symbols (part of Unicode Fonts for Ancient Scripts)."
+arch=('any')
+url="http://users.teilar.gr/~g1951d/;
+license=('custom')
+depends=('fontconfig' 'xorg-font-utils')
+makedepends=('unzip')
+source=(http://users.teilar.gr/~g1951d/Symbola.zip LICENSE)
+sha1sums=('9ec5ec364f92836a7bee1b30bd18e4bf3681986b'
+  'd5c6cf1db006cfee0e60897ce8bb54bd6611de75')
+
+package() {
+  install -Dm644 Symbola.ttf "$pkgdir/usr/share/fonts/TTF/Symbola.ttf"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Deleted: ttf-symbola.install
===
--- ttf-symbola.install 2017-05-18 11:50:04 UTC (rev 228472)
+++ ttf-symbola.install 2017-05-18 11:50:34 UTC (rev 228473)
@@ -1,9 +0,0 @@
-post_install() {
-  fc-cache -s
-  mkfontscale /usr/share/fonts/TTF
-  mkfontdir /usr/share/fonts/TTF
-}
-
-post_upgrade() {
-  post_install
-}


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

2017-05-18 Thread Jonathan Steel
Date: Thursday, May 18, 2017 @ 10:04:26
  Author: jsteel
Revision: 228464

upgpkg: vagrant-substrate 605.0566498-2

Todo List: OpenSSL 1.0 - take 3

Modified:
  vagrant-substrate/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-18 08:13:49 UTC (rev 228463)
+++ PKGBUILD2017-05-18 10:04:26 UTC (rev 228464)
@@ -3,7 +3,7 @@
 pkgname=vagrant-substrate
 _pkgname=vagrant-installers
 pkgver=605.0566498
-pkgrel=1
+pkgrel=2
 pkgdesc="Substrate layer for Vagrant"
 arch=('i686' 'x86_64')
 url="http://vagrantup.com;


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

2017-05-18 Thread Jonathan Steel
Date: Thursday, May 18, 2017 @ 10:04:40
  Author: jsteel
Revision: 228465

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  vagrant-substrate/repos/community-staging-i686/
  vagrant-substrate/repos/community-staging-i686/PKGBUILD
(from rev 228464, vagrant-substrate/trunk/PKGBUILD)
  vagrant-substrate/repos/community-staging-x86_64/
  vagrant-substrate/repos/community-staging-x86_64/PKGBUILD
(from rev 228464, vagrant-substrate/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   72 
 community-staging-x86_64/PKGBUILD |   72 
 2 files changed, 144 insertions(+)

Copied: vagrant-substrate/repos/community-staging-i686/PKGBUILD (from rev 
228464, vagrant-substrate/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-18 10:04:40 UTC (rev 228465)
@@ -0,0 +1,72 @@
+# Maintainer: Jonathan Steel 
+
+pkgname=vagrant-substrate
+_pkgname=vagrant-installers
+pkgver=605.0566498
+pkgrel=2
+pkgdesc="Substrate layer for Vagrant"
+arch=('i686' 'x86_64')
+url="http://vagrantup.com;
+license=('MIT')
+options=('!emptydirs' '!makeflags')
+makedepends=('git' 'puppet' 'chrpath' 'wget')
+depends=('lzo')
+source=(git://github.com/mitchellh/$_pkgname.git#commit=0566498)
+md5sums=('SKIP')
+
+pkgver() {
+  cd $_pkgname
+
+  echo $(git rev-list --count HEAD).$(git describe --always)
+}
+
+prepare() {
+  cd $_pkgname/substrate
+
+  # Use $srcdir for the working directory
+  sed -i "s:/vagrant-substrate:$srcdir/$_pkgname/vagrant-substrate:" \
+hiera/common.yaml
+  sed -i "s:\"/opt/vagrant\":\"$srcdir/$_pkgname/opt/vagrant\":" \
+hiera/common.yaml
+
+  # Use latest openssl
+  sed -i 's/openssl-1.0.2e.tar.gz/openssl-1.0.2k.tar.gz/' \
+modules/openssl/manifests/init.pp
+  # Disable SSLv3
+  sed -i '16 s/shared/shared no-ssl3-method/' \
+modules/openssl/manifests/install/linux.pp
+
+  # Don't create a zip of the substrate
+  sed -i '48,50d' modules/vagrant_substrate/manifests/init.pp
+
+  # Do not set file ownership
+  find . -name *.pp -exec sed -i "/owner.*.=.*.root/d" {} +
+  find . -name *.pp -exec sed -i "/group.*.=.*.root/d" {} +
+
+  # Fix compile issues
+  # https://github.com/mitchellh/vagrant-installers/issues/60
+  sed -i '19 s/-I/-O2 -I/' modules/vagrant_substrate/manifests/staging/posix.pp
+  # chmod u+w the file before chrpath
+  sed -i 's/chrpath --replace/chmod u+w $name; chrpath --replace/' \
+modules/vagrant_substrate/manifests/staging/linux_chrpath.pp
+}
+
+build() {
+  cd $_pkgname/substrate
+
+  FACTER_param_output_dir="$srcdir" puppet apply \
+--detailed-exitcodes \
+--hiera_config=config/hiera.yaml --confdir=config \
+--modulepath=modules manifests/init.pp || test $? -eq 2
+}
+
+package() {
+  cd $_pkgname
+
+  install -d "$pkgdir"/opt
+
+  cp -r vagrant-substrate/staging "$pkgdir"/opt/vagrant
+
+  install -Dm644 LICENSE.md \
+"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Copied: vagrant-substrate/repos/community-staging-x86_64/PKGBUILD (from rev 
228464, vagrant-substrate/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-18 10:04:40 UTC (rev 228465)
@@ -0,0 +1,72 @@
+# Maintainer: Jonathan Steel 
+
+pkgname=vagrant-substrate
+_pkgname=vagrant-installers
+pkgver=605.0566498
+pkgrel=2
+pkgdesc="Substrate layer for Vagrant"
+arch=('i686' 'x86_64')
+url="http://vagrantup.com;
+license=('MIT')
+options=('!emptydirs' '!makeflags')
+makedepends=('git' 'puppet' 'chrpath' 'wget')
+depends=('lzo')
+source=(git://github.com/mitchellh/$_pkgname.git#commit=0566498)
+md5sums=('SKIP')
+
+pkgver() {
+  cd $_pkgname
+
+  echo $(git rev-list --count HEAD).$(git describe --always)
+}
+
+prepare() {
+  cd $_pkgname/substrate
+
+  # Use $srcdir for the working directory
+  sed -i "s:/vagrant-substrate:$srcdir/$_pkgname/vagrant-substrate:" \
+hiera/common.yaml
+  sed -i "s:\"/opt/vagrant\":\"$srcdir/$_pkgname/opt/vagrant\":" \
+hiera/common.yaml
+
+  # Use latest openssl
+  sed -i 's/openssl-1.0.2e.tar.gz/openssl-1.0.2k.tar.gz/' \
+modules/openssl/manifests/init.pp
+  # Disable SSLv3
+  sed -i '16 s/shared/shared no-ssl3-method/' \
+modules/openssl/manifests/install/linux.pp
+
+  # Don't create a zip of the substrate
+  sed -i '48,50d' modules/vagrant_substrate/manifests/init.pp
+
+  # Do not set file ownership
+  find . -name *.pp -exec sed -i "/owner.*.=.*.root/d" {} +
+  find . -name *.pp -exec sed -i "/group.*.=.*.root/d" {} +
+
+  # Fix compile issues
+  # https://github.com/mitchellh/vagrant-installers/issues/60
+  sed -i '19 s/-I/-O2 -I/' modules/vagrant_substrate/manifests/staging/posix.pp
+  # chmod u+w the file before 

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

2017-05-18 Thread Jonathan Steel
Date: Thursday, May 18, 2017 @ 10:09:45
  Author: jsteel
Revision: 228467

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-05-18 10:09:18 UTC (rev 228466)
+++ PKGBUILD2017-05-18 10:09:45 UTC (rev 228467)
@@ -1,30 +0,0 @@
-# Maintainer: Jonathan Steel 
-# Contributor: Chris Severance aur.severach AatT spamgourmet.com
-# Contributor: Ainola
-# Contributor: Chris Fordham
-
-pkgname=python-botocore
-pkgver=1.5.49
-pkgrel=1
-pkgdesc='A low-level interface to a growing number of Amazon Web Services'
-arch=('any')
-url="https://github.com/boto/botocore;
-license=('Apache')
-depends=('python-dateutil' 'python-jmespath' 'python-docutils')
-makedepends=('python-setuptools')
-source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('09a89fbe055b0e42e974d5ebe5ab958a')
-
-build() {
-  cd botocore-$pkgver
-
-  python setup.py build
-}
-
-package() {
-  cd botocore-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-botocore/repos/community-any/PKGBUILD (from rev 228466, 
python-botocore/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-05-18 10:09:45 UTC (rev 228467)
@@ -0,0 +1,30 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Chris Severance aur.severach AatT spamgourmet.com
+# Contributor: Ainola
+# Contributor: Chris Fordham
+
+pkgname=python-botocore
+pkgver=1.5.51
+pkgrel=1
+pkgdesc='A low-level interface to a growing number of Amazon Web Services'
+arch=('any')
+url="https://github.com/boto/botocore;
+license=('Apache')
+depends=('python-dateutil' 'python-jmespath' 'python-docutils')
+makedepends=('python-setuptools')
+source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
+md5sums=('3d69d7b28293117f167aa7e3f3ebf216')
+
+build() {
+  cd botocore-$pkgver
+
+  python setup.py build
+}
+
+package() {
+  cd botocore-$pkgver
+
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2017-05-18 Thread Jonathan Steel
Date: Thursday, May 18, 2017 @ 10:10:32
  Author: jsteel
Revision: 228469

archrelease: copy trunk to community-any

Added:
  aws-cli/repos/community-any/PKGBUILD
(from rev 228468, aws-cli/trunk/PKGBUILD)
Deleted:
  aws-cli/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-05-18 10:10:03 UTC (rev 228468)
+++ PKGBUILD2017-05-18 10:10:32 UTC (rev 228469)
@@ -1,34 +0,0 @@
-# Maintainer: Jonathan Steel 
-# Contributor: Chris Severance aur.severach AatT spamgourmet.com
-# Contributor: Alper KANAT 
-
-pkgname=aws-cli
-pkgver=1.11.86
-pkgrel=1
-pkgdesc='Universal Command Line Interface for Amazon Web Services'
-arch=('any')
-url="https://github.com/aws/aws-cli;
-license=('Apache')
-depends=('python-botocore' 'python-dateutil' 'python-jmespath'
- 'python-colorama' 'python-docutils' 'python-rsa'
- 'python-s3transfer' 'python-yaml')
-makedepends=('python-setuptools')
-source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('9b588282e08bab8a7341dffc82e45300')
-
-build() {
-  cd $pkgname-$pkgver
-
-  python setup.py build
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-  install -Dm644 bin/aws_bash_completer 
"$pkgdir"/usr/share/bash-completion/completions/aws
-
-  rm -f "$pkgdir"/usr/bin/{aws.cmd,aws_bash_completer}
-}

Copied: aws-cli/repos/community-any/PKGBUILD (from rev 228468, 
aws-cli/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-05-18 10:10:32 UTC (rev 228469)
@@ -0,0 +1,34 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Chris Severance aur.severach AatT spamgourmet.com
+# Contributor: Alper KANAT 
+
+pkgname=aws-cli
+pkgver=1.11.88
+pkgrel=1
+pkgdesc='Universal Command Line Interface for Amazon Web Services'
+arch=('any')
+url="https://github.com/aws/aws-cli;
+license=('Apache')
+depends=('python-botocore' 'python-dateutil' 'python-jmespath'
+ 'python-colorama' 'python-docutils' 'python-rsa'
+ 'python-s3transfer' 'python-yaml')
+makedepends=('python-setuptools')
+source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
+md5sums=('e08eb4dd0593a5e03ed1476d03e20f3b')
+
+build() {
+  cd $pkgname-$pkgver
+
+  python setup.py build
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  install -Dm644 bin/aws_bash_completer 
"$pkgdir"/usr/share/bash-completion/completions/aws
+
+  rm -f "$pkgdir"/usr/bin/{aws.cmd,aws_bash_completer}
+}


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

2017-05-18 Thread Jonathan Steel
Date: Thursday, May 18, 2017 @ 10:10:03
  Author: jsteel
Revision: 228468

upgpkg: aws-cli 1.11.88-1

Modified:
  aws-cli/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-18 10:09:45 UTC (rev 228467)
+++ PKGBUILD2017-05-18 10:10:03 UTC (rev 228468)
@@ -3,7 +3,7 @@
 # Contributor: Alper KANAT 
 
 pkgname=aws-cli
-pkgver=1.11.86
+pkgver=1.11.88
 pkgrel=1
 pkgdesc='Universal Command Line Interface for Amazon Web Services'
 arch=('any')
@@ -14,7 +14,7 @@
  'python-s3transfer' 'python-yaml')
 makedepends=('python-setuptools')
 source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('9b588282e08bab8a7341dffc82e45300')
+md5sums=('e08eb4dd0593a5e03ed1476d03e20f3b')
 
 build() {
   cd $pkgname-$pkgver


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

2017-05-18 Thread Jonathan Steel
Date: Thursday, May 18, 2017 @ 10:09:18
  Author: jsteel
Revision: 228466

upgpkg: python-botocore 1.5.51-1

Modified:
  python-botocore/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-18 10:04:40 UTC (rev 228465)
+++ PKGBUILD2017-05-18 10:09:18 UTC (rev 228466)
@@ -4,7 +4,7 @@
 # Contributor: Chris Fordham
 
 pkgname=python-botocore
-pkgver=1.5.49
+pkgver=1.5.51
 pkgrel=1
 pkgdesc='A low-level interface to a growing number of Amazon Web Services'
 arch=('any')
@@ -13,7 +13,7 @@
 depends=('python-dateutil' 'python-jmespath' 'python-docutils')
 makedepends=('python-setuptools')
 source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('09a89fbe055b0e42e974d5ebe5ab958a')
+md5sums=('3d69d7b28293117f167aa7e3f3ebf216')
 
 build() {
   cd botocore-$pkgver


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

2017-05-18 Thread Jan de Groot
Date: Thursday, May 18, 2017 @ 14:47:03
  Author: jgc
Revision: 228476

upgpkg: gogglesmm 1.1.7-2

Build with OpenSSL 1.1

Modified:
  gogglesmm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-18 14:22:01 UTC (rev 228475)
+++ PKGBUILD2017-05-18 14:47:03 UTC (rev 228476)
@@ -4,13 +4,13 @@
 
 pkgname=gogglesmm
 pkgver=1.1.7
-pkgrel=1
+pkgrel=2
 pkgdesc="Music Manager and Player"
 arch=('i686' 'x86_64')
 url="http://gogglesmm.github.io/;
 license=('GPL3')
 depends=('fox-devel>=1.7.48' 'libmad' 'faad2' 'sqlite3'
-'libpulse' 'opus' 'dbus' 'taglib>=1.9.0' 'glew'
+'libpulse' 'opus' 'dbus' 'taglib>=1.9.0' 
 'hicolor-icon-theme' 'desktop-file-utils'
 'libepoxy')
 makedepends=('glproto' 'dri2proto' 'cmake')


[arch-commits] Commit in dblatex/repos/community-any (3 files)

2017-05-18 Thread Lukas Fleischer
Date: Thursday, May 18, 2017 @ 17:44:23
  Author: lfleischer
Revision: 228487

archrelease: copy trunk to community-any

Added:
  dblatex/repos/community-any/PKGBUILD
(from rev 228486, dblatex/trunk/PKGBUILD)
Deleted:
  dblatex/repos/community-any/PKGBUILD
  dblatex/repos/community-any/dblatex-0.3.9-drop-multirow-dependency.patch

--+
 PKGBUILD |   53 ++---
 dblatex-0.3.9-drop-multirow-dependency.patch |   36 
 2 files changed, 23 insertions(+), 66 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-05-18 17:44:19 UTC (rev 228486)
+++ PKGBUILD2017-05-18 17:44:23 UTC (rev 228487)
@@ -1,30 +0,0 @@
-# Maintainer: Lukas Fleischer 
-# Contributor: Marcin Karpezo 
-# Contributor: Andreas Hauser 
-
-pkgname=dblatex
-pkgver=0.3.9
-pkgrel=2
-pkgdesc='DocBook (XML and SGML) to DVI, PDF, PostScript converter using latex.'
-arch=('any')
-url='http://dblatex.sourceforge.net/'
-license=('GPL')
-depends=('docbook-xsl' 'docbook-xml' 'libxslt' 'python2' 'texlive-core' 
'texlive-htmlxml'
- 'texlive-latexextra' 'texlive-pictures')
-source=("https://downloads.sourceforge.net/project/dblatex/dblatex/${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.bz2;
-dblatex-0.3.9-drop-multirow-dependency.patch)
-md5sums=('38e9fd93dd37d71e352010ad40e1dfb4'
- '2ccaf937d0de48c9c283ed0c0f7af5a7')
-
-prepare() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  patch -p1 -i ../dblatex-0.3.9-drop-multirow-dependency.patch
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  python2 setup.py install --root "${pkgdir}" --catalogs=/etc/xml/docbook-xml
-  sed -i -e "s,${pkgdir},," -e "s,#!/usr/bin/env python,#!/usr/bin/env 
python2," \
-"${pkgdir}/usr/bin/dblatex"
-}

Copied: dblatex/repos/community-any/PKGBUILD (from rev 228486, 
dblatex/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-05-18 17:44:23 UTC (rev 228487)
@@ -0,0 +1,23 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Marcin Karpezo 
+# Contributor: Andreas Hauser 
+
+pkgname=dblatex
+pkgver=0.3.10
+pkgrel=1
+pkgdesc='DocBook (XML and SGML) to DVI, PDF, PostScript converter using latex.'
+arch=('any')
+url='http://dblatex.sourceforge.net/'
+license=('GPL')
+depends=('docbook-xsl' 'docbook-xml' 'libxslt' 'python2' 'texlive-core' 
'texlive-htmlxml'
+ 'texlive-latexextra' 'texlive-pictures' 'texlive-science')
+source=("https://downloads.sourceforge.net/project/dblatex/dblatex/${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.bz2;)
+md5sums=('437513c07101cefe5be3cbe83f313878')
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  python2 setup.py install --root "${pkgdir}" --catalogs=/etc/xml/docbook-xml
+  sed -i -e "s,${pkgdir},," -e "s,#!/usr/bin/env python,#!/usr/bin/env 
python2," \
+"${pkgdir}/usr/bin/dblatex"
+}

Deleted: dblatex-0.3.9-drop-multirow-dependency.patch
===
--- dblatex-0.3.9-drop-multirow-dependency.patch2017-05-18 17:44:19 UTC 
(rev 228486)
+++ dblatex-0.3.9-drop-multirow-dependency.patch2017-05-18 17:44:23 UTC 
(rev 228487)
@@ -1,36 +0,0 @@
-# HG changeset patch
-# User marsgui
-# Date 1476384175 -7200
-#  Thu Oct 13 20:42:55 2016 +0200
-# Node ID 4f030d62420c3101d85976f5017b29070d1277b4
-# Parent  58ff524b7f0f0b8127333ba9542c9619dbdd4dbf
-Fix Debian bug #840189: drop multirow dependency
-
-diff -r 58ff524b7f0f -r 4f030d62420c latex/style/dbk_table.sty
 a/latex/style/dbk_table.stySun Oct 02 23:21:03 2016 +0200
-+++ b/latex/style/dbk_table.styThu Oct 13 20:42:55 2016 +0200
-@@ -9,7 +9,6 @@
- \usepackage{longtable}
- \usepackage{lscape}
- \usepackage{colortbl}
--\usepackage{multirow}
- \usepackage{calc}
- \usepackage{hhline}
- 
-@@ -21,16 +20,6 @@
-   \expandafter[\expandafter3\expandafter]\expandafter{%
-   \multicolumn{#1}{#2}{#3}}
- 
--% Make \@xmultirow long
--\expandafter\long\expandafter\def%
--\expandafter\@xmultirow%
--\expandafter#\expandafter1%
--\expandafter[\expandafter#\expandafter2\expandafter]%
--\expandafter#\expandafter3%
--\expandafter[\expandafter#\expandafter4\expandafter]%
--\expandafter#\expandafter5%
--\expandafter{\@xmultirow{#1}[#2]{#3}[#4]{#5}}
--
- % For the newtbl code
- \newdimen\newtblstarfactor%
- \newdimen\newtblsparewidth%


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

2017-05-18 Thread Lukas Fleischer
Date: Thursday, May 18, 2017 @ 17:44:19
  Author: lfleischer
Revision: 228486

upgpkg: dblatex 0.3.10-1

Upstream update.

Modified:
  dblatex/trunk/PKGBUILD
Deleted:
  dblatex/trunk/dblatex-0.3.9-drop-multirow-dependency.patch

--+
 PKGBUILD |   17 +++
 dblatex-0.3.9-drop-multirow-dependency.patch |   36 -
 2 files changed, 5 insertions(+), 48 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-05-18 17:37:35 UTC (rev 228485)
+++ PKGBUILD2017-05-18 17:44:19 UTC (rev 228486)
@@ -3,24 +3,17 @@
 # Contributor: Andreas Hauser 
 
 pkgname=dblatex
-pkgver=0.3.9
-pkgrel=2
+pkgver=0.3.10
+pkgrel=1
 pkgdesc='DocBook (XML and SGML) to DVI, PDF, PostScript converter using latex.'
 arch=('any')
 url='http://dblatex.sourceforge.net/'
 license=('GPL')
 depends=('docbook-xsl' 'docbook-xml' 'libxslt' 'python2' 'texlive-core' 
'texlive-htmlxml'
- 'texlive-latexextra' 'texlive-pictures')
-source=("https://downloads.sourceforge.net/project/dblatex/dblatex/${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.bz2;
-dblatex-0.3.9-drop-multirow-dependency.patch)
-md5sums=('38e9fd93dd37d71e352010ad40e1dfb4'
- '2ccaf937d0de48c9c283ed0c0f7af5a7')
+ 'texlive-latexextra' 'texlive-pictures' 'texlive-science')
+source=("https://downloads.sourceforge.net/project/dblatex/dblatex/${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.bz2;)
+md5sums=('437513c07101cefe5be3cbe83f313878')
 
-prepare() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  patch -p1 -i ../dblatex-0.3.9-drop-multirow-dependency.patch
-}
-
 package() {
   cd "${srcdir}/${pkgname}-${pkgver}"
 

Deleted: dblatex-0.3.9-drop-multirow-dependency.patch
===
--- dblatex-0.3.9-drop-multirow-dependency.patch2017-05-18 17:37:35 UTC 
(rev 228485)
+++ dblatex-0.3.9-drop-multirow-dependency.patch2017-05-18 17:44:19 UTC 
(rev 228486)
@@ -1,36 +0,0 @@
-# HG changeset patch
-# User marsgui
-# Date 1476384175 -7200
-#  Thu Oct 13 20:42:55 2016 +0200
-# Node ID 4f030d62420c3101d85976f5017b29070d1277b4
-# Parent  58ff524b7f0f0b8127333ba9542c9619dbdd4dbf
-Fix Debian bug #840189: drop multirow dependency
-
-diff -r 58ff524b7f0f -r 4f030d62420c latex/style/dbk_table.sty
 a/latex/style/dbk_table.stySun Oct 02 23:21:03 2016 +0200
-+++ b/latex/style/dbk_table.styThu Oct 13 20:42:55 2016 +0200
-@@ -9,7 +9,6 @@
- \usepackage{longtable}
- \usepackage{lscape}
- \usepackage{colortbl}
--\usepackage{multirow}
- \usepackage{calc}
- \usepackage{hhline}
- 
-@@ -21,16 +20,6 @@
-   \expandafter[\expandafter3\expandafter]\expandafter{%
-   \multicolumn{#1}{#2}{#3}}
- 
--% Make \@xmultirow long
--\expandafter\long\expandafter\def%
--\expandafter\@xmultirow%
--\expandafter#\expandafter1%
--\expandafter[\expandafter#\expandafter2\expandafter]%
--\expandafter#\expandafter3%
--\expandafter[\expandafter#\expandafter4\expandafter]%
--\expandafter#\expandafter5%
--\expandafter{\@xmultirow{#1}[#2]{#3}[#4]{#5}}
--
- % For the newtbl code
- \newdimen\newtblstarfactor%
- \newdimen\newtblsparewidth%


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

2017-05-18 Thread Lukas Fleischer
Date: Thursday, May 18, 2017 @ 17:37:35
  Author: lfleischer
Revision: 228485

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-05-18 17:37:30 UTC (rev 228484)
+++ PKGBUILD2017-05-18 17:37:35 UTC (rev 228485)
@@ -1,35 +0,0 @@
-# Maintainer: Lukas Fleischer 
-# Contributor: Andrey Mivrenik 
-# Contributor: Tim Diels 
-
-pkgbase=python-dropbox
-_pkgname=dropbox-sdk-python
-pkgname=(python-dropbox python2-dropbox)
-pkgver=7.2.1
-pkgrel=1
-pkgdesc="Python SDK for Dropbox Core APIs"
-url="https://www.dropbox.com/developers/core/sdks/python;
-arch=('any')
-license=('MIT')
-makedepends=(python-requests python2-requests python-urllib3 python2-urllib3
- python-setuptools python2-setuptools)
-source=("https://github.com/dropbox/$_pkgname/archive/v$pkgver.tar.gz;)
-sha256sums=('1328173d6f5c0ce87ae8a8e808c75ac43cfe99f24af7e1556c5d6dbe5f41b70d')
-
-package_python-dropbox() {
-  depends=(python python-urllib3 python-requests)
-
-  cd "$srcdir/$_pkgname-$pkgver"
-
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm0644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_python2-dropbox() {
-  depends=(python2 python2-urllib3 python2-requests)
-
-  cd "$srcdir/$_pkgname-$pkgver"
-
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -Dm0644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python-dropbox/repos/community-any/PKGBUILD (from rev 228484, 
python-dropbox/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-05-18 17:37:35 UTC (rev 228485)
@@ -0,0 +1,35 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Andrey Mivrenik 
+# Contributor: Tim Diels 
+
+pkgbase=python-dropbox
+_pkgname=dropbox-sdk-python
+pkgname=(python-dropbox python2-dropbox)
+pkgver=7.3.1
+pkgrel=1
+pkgdesc="Python SDK for Dropbox Core APIs"
+url="https://www.dropbox.com/developers/core/sdks/python;
+arch=('any')
+license=('MIT')
+makedepends=(python-requests python2-requests python-urllib3 python2-urllib3
+ python-setuptools python2-setuptools)
+source=("https://github.com/dropbox/$_pkgname/archive/v$pkgver.tar.gz;)
+sha256sums=('1f2f714a0e6bea508856b348e6e70c8b3917b4f4a374739b002c5c355140a947')
+
+package_python-dropbox() {
+  depends=(python python-urllib3 python-requests)
+
+  cd "$srcdir/$_pkgname-$pkgver"
+
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm0644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_python2-dropbox() {
+  depends=(python2 python2-urllib3 python2-requests)
+
+  cd "$srcdir/$_pkgname-$pkgver"
+
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm0644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


[arch-commits] Commit in fop/repos/community-any (PKGBUILD PKGBUILD fop.conf fop.conf)

2017-05-18 Thread Lukas Fleischer
Date: Thursday, May 18, 2017 @ 17:36:42
  Author: lfleischer
Revision: 228483

archrelease: copy trunk to community-any

Added:
  fop/repos/community-any/PKGBUILD
(from rev 228482, fop/trunk/PKGBUILD)
  fop/repos/community-any/fop.conf
(from rev 228482, fop/trunk/fop.conf)
Deleted:
  fop/repos/community-any/PKGBUILD
  fop/repos/community-any/fop.conf

--+
 PKGBUILD |   64 ++---
 fop.conf |   16 +++
 2 files changed, 40 insertions(+), 40 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-05-18 17:36:35 UTC (rev 228482)
+++ PKGBUILD2017-05-18 17:36:42 UTC (rev 228483)
@@ -1,32 +0,0 @@
-# Maintainer: Lukas Fleischer 
-# Contributor: Stefan Husmann 
-# Contributor: Simon Lipp 
-
-pkgname=fop
-pkgver=2.1
-pkgrel=1
-pkgdesc='XSL-FO implementation in Java.'
-arch=('any')
-url='http://xmlgraphics.apache.org/fop/'
-license=('APACHE')
-depends=('java-xmlgraphics-commons' 'java-commons-logging' 'java-commons-io' 
'java-batik'
- 'java-avalon-framework')
-makedepends=('apache-ant' 'java-environment')
-source=("http://ftp-stud.hs-esslingen.de/pub/Mirrors/ftp.apache.org/dist/xmlgraphics/$pkgname/source/$pkgname-$pkgver-src.tar.gz;
-'fop.conf')
-md5sums=('13b5b497dfb0ba8a01093dfc1a89d106'
- '3dc3325bf77afc787024f33e7d6ab99e')
-backup=('etc/fop.conf')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ant package 
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  install -Dm0644 "build/fop.jar" "$pkgdir/usr/share/java/fop/fop.jar"
-  install -Dm0644 "../fop.conf" "$pkgdir/etc/fop.conf"
-  install -Dm0755 "$pkgname" "$pkgdir/usr/bin/$pkgname"
-}

Copied: fop/repos/community-any/PKGBUILD (from rev 228482, fop/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-05-18 17:36:42 UTC (rev 228483)
@@ -0,0 +1,32 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Stefan Husmann 
+# Contributor: Simon Lipp 
+
+pkgname=fop
+pkgver=2.2
+pkgrel=1
+pkgdesc='XSL-FO implementation in Java.'
+arch=('any')
+url='http://xmlgraphics.apache.org/fop/'
+license=('APACHE')
+depends=('java-xmlgraphics-commons' 'java-commons-logging' 'java-commons-io' 
'java-batik'
+ 'java-avalon-framework')
+makedepends=('apache-ant' 'java-environment')
+source=("https://ftp-stud.hs-esslingen.de/pub/Mirrors/ftp.apache.org/dist/xmlgraphics/$pkgname/source/$pkgname-$pkgver-src.tar.gz;
+'fop.conf')
+md5sums=('6d2388bd8851b4883d3258c0afc96895'
+ '3dc3325bf77afc787024f33e7d6ab99e')
+backup=('etc/fop.conf')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  ant -f "$pkgname"/build.xml package
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  install -Dm0644 "$pkgname/build/fop.jar" "$pkgdir/usr/share/java/fop/fop.jar"
+  install -Dm0644 "../fop.conf" "$pkgdir/etc/fop.conf"
+  install -Dm0755 "$pkgname/$pkgname" "$pkgdir/usr/bin/$pkgname"
+}

Deleted: fop.conf
===
--- fop.conf2017-05-18 17:36:35 UTC (rev 228482)
+++ fop.conf2017-05-18 17:36:42 UTC (rev 228483)
@@ -1,8 +0,0 @@
-FOP_HOME="/usr/share/java/fop/"
-CLASSPATH="$CLASSPATH:$FOP_HOME/fop.jar"
-CLASSPATH="$CLASSPATH:/usr/share/java/xmlgraphics-commons/xmlgraphics-commons.jar"
-CLASSPATH="$CLASSPATH:/usr/share/java/commons-io/commons-io.jar"
-CLASSPATH="$CLASSPATH:/usr/share/java/commons-logging/commons-logging.jar"
-CLASSPATH="$CLASSPATH:/usr/share/java/batik/batik-all.jar"
-CLASSPATH="$CLASSPATH:/usr/share/java/avalon-framework/avalon-framework.jar"
-CLASSPATH="$CLASSPATH:/usr/share/java/batik/xml-apis-ext.jar"

Copied: fop/repos/community-any/fop.conf (from rev 228482, fop/trunk/fop.conf)
===
--- fop.conf(rev 0)
+++ fop.conf2017-05-18 17:36:42 UTC (rev 228483)
@@ -0,0 +1,8 @@
+FOP_HOME="/usr/share/java/fop/"
+CLASSPATH="$CLASSPATH:$FOP_HOME/fop.jar"
+CLASSPATH="$CLASSPATH:/usr/share/java/xmlgraphics-commons/xmlgraphics-commons.jar"
+CLASSPATH="$CLASSPATH:/usr/share/java/commons-io/commons-io.jar"
+CLASSPATH="$CLASSPATH:/usr/share/java/commons-logging/commons-logging.jar"
+CLASSPATH="$CLASSPATH:/usr/share/java/batik/batik-all.jar"
+CLASSPATH="$CLASSPATH:/usr/share/java/avalon-framework/avalon-framework.jar"
+CLASSPATH="$CLASSPATH:/usr/share/java/batik/xml-apis-ext.jar"


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

2017-05-18 Thread Lukas Fleischer
Date: Thursday, May 18, 2017 @ 17:37:30
  Author: lfleischer
Revision: 228484

upgpkg: python-dropbox 7.3.1-1

Upstream update.

Modified:
  python-dropbox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-18 17:36:42 UTC (rev 228483)
+++ PKGBUILD2017-05-18 17:37:30 UTC (rev 228484)
@@ -5,7 +5,7 @@
 pkgbase=python-dropbox
 _pkgname=dropbox-sdk-python
 pkgname=(python-dropbox python2-dropbox)
-pkgver=7.2.1
+pkgver=7.3.1
 pkgrel=1
 pkgdesc="Python SDK for Dropbox Core APIs"
 url="https://www.dropbox.com/developers/core/sdks/python;
@@ -14,7 +14,7 @@
 makedepends=(python-requests python2-requests python-urllib3 python2-urllib3
  python-setuptools python2-setuptools)
 source=("https://github.com/dropbox/$_pkgname/archive/v$pkgver.tar.gz;)
-sha256sums=('1328173d6f5c0ce87ae8a8e808c75ac43cfe99f24af7e1556c5d6dbe5f41b70d')
+sha256sums=('1f2f714a0e6bea508856b348e6e70c8b3917b4f4a374739b002c5c355140a947')
 
 package_python-dropbox() {
   depends=(python python-urllib3 python-requests)


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

2017-05-18 Thread Lukas Fleischer
Date: Thursday, May 18, 2017 @ 17:36:35
  Author: lfleischer
Revision: 228482

upgpkg: fop 2.2-1

Upstream update.

Modified:
  fop/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-18 15:08:21 UTC (rev 228481)
+++ PKGBUILD2017-05-18 17:36:35 UTC (rev 228482)
@@ -3,7 +3,7 @@
 # Contributor: Simon Lipp 
 
 pkgname=fop
-pkgver=2.1
+pkgver=2.2
 pkgrel=1
 pkgdesc='XSL-FO implementation in Java.'
 arch=('any')
@@ -14,19 +14,19 @@
 makedepends=('apache-ant' 'java-environment')
 
source=("https://ftp-stud.hs-esslingen.de/pub/Mirrors/ftp.apache.org/dist/xmlgraphics/$pkgname/source/$pkgname-$pkgver-src.tar.gz;
 'fop.conf')
-md5sums=('13b5b497dfb0ba8a01093dfc1a89d106'
+md5sums=('6d2388bd8851b4883d3258c0afc96895'
  '3dc3325bf77afc787024f33e7d6ab99e')
 backup=('etc/fop.conf')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"
-  ant package 
+  ant -f "$pkgname"/build.xml package
 }
 
 package() {
   cd "$srcdir/$pkgname-$pkgver"
 
-  install -Dm0644 "build/fop.jar" "$pkgdir/usr/share/java/fop/fop.jar"
+  install -Dm0644 "$pkgname/build/fop.jar" "$pkgdir/usr/share/java/fop/fop.jar"
   install -Dm0644 "../fop.conf" "$pkgdir/etc/fop.conf"
-  install -Dm0755 "$pkgname" "$pkgdir/usr/bin/$pkgname"
+  install -Dm0755 "$pkgname/$pkgname" "$pkgdir/usr/bin/$pkgname"
 }


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

2017-05-18 Thread Jan de Groot
Date: Thursday, May 18, 2017 @ 14:47:08
  Author: jgc
Revision: 228477

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  gogglesmm/repos/extra-i686/
  gogglesmm/repos/extra-i686/PKGBUILD
(from rev 228476, gogglesmm/trunk/PKGBUILD)
  gogglesmm/repos/extra-x86_64/
  gogglesmm/repos/extra-x86_64/PKGBUILD
(from rev 228476, gogglesmm/trunk/PKGBUILD)

---+
 extra-i686/PKGBUILD   |   31 +++
 extra-x86_64/PKGBUILD |   31 +++
 2 files changed, 62 insertions(+)

Copied: gogglesmm/repos/extra-i686/PKGBUILD (from rev 228476, 
gogglesmm/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-05-18 14:47:08 UTC (rev 228477)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Sander Jansen 
+
+pkgname=gogglesmm
+pkgver=1.1.7
+pkgrel=2
+pkgdesc="Music Manager and Player"
+arch=('i686' 'x86_64')
+url="http://gogglesmm.github.io/;
+license=('GPL3')
+depends=('fox-devel>=1.7.48' 'libmad' 'faad2' 'sqlite3'
+'libpulse' 'opus' 'dbus' 'taglib>=1.9.0' 
+'hicolor-icon-theme' 'desktop-file-utils'
+'libepoxy')
+makedepends=('glproto' 'dri2proto' 'cmake')
+conflicts=('musicmanager')
+replaces=('musicmanager')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/gogglesmm/gogglesmm/archive/$pkgver.tar.gz;)
+sha256sums=('20587b61adcd6d0a9f1cfc026157c963e1308a6d190749d8c4f384c48168985f')
+
+build() {
+  cd gogglesmm-$pkgver
+  cmake -DCMAKE_INSTALL_PREFIX=/usr .
+  make
+}
+
+package() {
+  cd gogglesmm-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Copied: gogglesmm/repos/extra-x86_64/PKGBUILD (from rev 228476, 
gogglesmm/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2017-05-18 14:47:08 UTC (rev 228477)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Sander Jansen 
+
+pkgname=gogglesmm
+pkgver=1.1.7
+pkgrel=2
+pkgdesc="Music Manager and Player"
+arch=('i686' 'x86_64')
+url="http://gogglesmm.github.io/;
+license=('GPL3')
+depends=('fox-devel>=1.7.48' 'libmad' 'faad2' 'sqlite3'
+'libpulse' 'opus' 'dbus' 'taglib>=1.9.0' 
+'hicolor-icon-theme' 'desktop-file-utils'
+'libepoxy')
+makedepends=('glproto' 'dri2proto' 'cmake')
+conflicts=('musicmanager')
+replaces=('musicmanager')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/gogglesmm/gogglesmm/archive/$pkgver.tar.gz;)
+sha256sums=('20587b61adcd6d0a9f1cfc026157c963e1308a6d190749d8c4f384c48168985f')
+
+build() {
+  cd gogglesmm-$pkgver
+  cmake -DCMAKE_INSTALL_PREFIX=/usr .
+  make
+}
+
+package() {
+  cd gogglesmm-$pkgver
+  make DESTDIR="$pkgdir" install
+}


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

2017-05-18 Thread Jan de Groot
Date: Thursday, May 18, 2017 @ 15:08:12
  Author: jgc
Revision: 228480

upgpkg: gq 1.3.4-8

OpenSSL 1.0 rebuild

Modified:
  gq/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-18 14:49:05 UTC (rev 228479)
+++ PKGBUILD2017-05-18 15:08:12 UTC (rev 228480)
@@ -4,7 +4,7 @@
 
 pkgname=gq
 pkgver=1.3.4
-pkgrel=7
+pkgrel=8
 pkgdesc="interactive graphical LDAP browser"
 url="https://sourceforge.net/projects/gqclient/;
 license=("GPL")


[arch-commits] Commit in gq/repos (18 files)

2017-05-18 Thread Jan de Groot
Date: Thursday, May 18, 2017 @ 15:08:21
  Author: jgc
Revision: 228481

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  gq/repos/community-staging-i686/
  gq/repos/community-staging-i686/PKGBUILD
(from rev 228480, gq/trunk/PKGBUILD)
  gq/repos/community-staging-i686/gq-1.3.4-configure.patch
(from rev 228480, gq/trunk/gq-1.3.4-configure.patch)
  gq/repos/community-staging-i686/gq-1.3.4-dso.patch
(from rev 228480, gq/trunk/gq-1.3.4-dso.patch)
  gq/repos/community-staging-i686/gq-1.3.4-errorchain.patch
(from rev 228480, gq/trunk/gq-1.3.4-errorchain.patch)
  gq/repos/community-staging-i686/gq-1.3.4-glibfix.patch
(from rev 228480, gq/trunk/gq-1.3.4-glibfix.patch)
  gq/repos/community-staging-i686/gq-1.3.4-kerberos.patch
(from rev 228480, gq/trunk/gq-1.3.4-kerberos.patch)
  gq/repos/community-staging-i686/gq-1.3.4-sanity-check.patch
(from rev 228480, gq/trunk/gq-1.3.4-sanity-check.patch)
  gq/repos/community-staging-i686/gq-1.3.4-strcmp-null-safe.patch
(from rev 228480, gq/trunk/gq-1.3.4-strcmp-null-safe.patch)
  gq/repos/community-staging-x86_64/
  gq/repos/community-staging-x86_64/PKGBUILD
(from rev 228480, gq/trunk/PKGBUILD)
  gq/repos/community-staging-x86_64/gq-1.3.4-configure.patch
(from rev 228480, gq/trunk/gq-1.3.4-configure.patch)
  gq/repos/community-staging-x86_64/gq-1.3.4-dso.patch
(from rev 228480, gq/trunk/gq-1.3.4-dso.patch)
  gq/repos/community-staging-x86_64/gq-1.3.4-errorchain.patch
(from rev 228480, gq/trunk/gq-1.3.4-errorchain.patch)
  gq/repos/community-staging-x86_64/gq-1.3.4-glibfix.patch
(from rev 228480, gq/trunk/gq-1.3.4-glibfix.patch)
  gq/repos/community-staging-x86_64/gq-1.3.4-kerberos.patch
(from rev 228480, gq/trunk/gq-1.3.4-kerberos.patch)
  gq/repos/community-staging-x86_64/gq-1.3.4-sanity-check.patch
(from rev 228480, gq/trunk/gq-1.3.4-sanity-check.patch)
  gq/repos/community-staging-x86_64/gq-1.3.4-strcmp-null-safe.patch
(from rev 228480, gq/trunk/gq-1.3.4-strcmp-null-safe.patch)

--+
 community-staging-i686/PKGBUILD  |   54 ++
 community-staging-i686/gq-1.3.4-configure.patch  |   13 +
 community-staging-i686/gq-1.3.4-dso.patch|   12 +
 community-staging-i686/gq-1.3.4-errorchain.patch |   47 +
 community-staging-i686/gq-1.3.4-glibfix.patch|  112 +
 community-staging-i686/gq-1.3.4-kerberos.patch   |   11 +
 community-staging-i686/gq-1.3.4-sanity-check.patch   |   19 ++
 community-staging-i686/gq-1.3.4-strcmp-null-safe.patch   |   13 +
 community-staging-x86_64/PKGBUILD|   54 ++
 community-staging-x86_64/gq-1.3.4-configure.patch|   13 +
 community-staging-x86_64/gq-1.3.4-dso.patch  |   12 +
 community-staging-x86_64/gq-1.3.4-errorchain.patch   |   47 +
 community-staging-x86_64/gq-1.3.4-glibfix.patch  |  112 +
 community-staging-x86_64/gq-1.3.4-kerberos.patch |   11 +
 community-staging-x86_64/gq-1.3.4-sanity-check.patch |   19 ++
 community-staging-x86_64/gq-1.3.4-strcmp-null-safe.patch |   13 +
 16 files changed, 562 insertions(+)

Copied: gq/repos/community-staging-i686/PKGBUILD (from rev 228480, 
gq/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-18 15:08:21 UTC (rev 228481)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Gergely Tamas 
+
+pkgname=gq
+pkgver=1.3.4
+pkgrel=8
+pkgdesc="interactive graphical LDAP browser"
+url="https://sourceforge.net/projects/gqclient/;
+license=("GPL")
+depends=('libxml2' 'openssl-1.0' 'gtk2' 'libgnome-keyring' 'libglade' 
'libldap>=2.4.18' 'libgpg-error' 'libgcrypt')
+makedepends=('intltool' 'pkgconfig' 'gnome-doc-utils')
+arch=('i686' 'x86_64')
+source=(https://downloads.sourceforge.net/sourceforge/gqclient/$pkgname-$pkgver.tar.gz
+   gq-1.3.4-kerberos.patch
+   gq-1.3.4-configure.patch
+   gq-1.3.4-dso.patch
+   gq-1.3.4-glibfix.patch
+   gq-1.3.4-errorchain.patch
+   gq-1.3.4-strcmp-null-safe.patch
+   gq-1.3.4-sanity-check.patch)
+sha256sums=('2ac77f3233ddaef718f89c9371ab5165af29cf9738ed46b6bea64b37e45d4b60'
+'bc985d3a59ff08747a58c53112cc2903b0cba438ee3b328b9bbf4976226c5402'
+'a3ba1a50c19469834170632d6f5289cada81f04b7921fb16c37327a5f946f770'
+'7b7a39eafaff8b4ffe34b263330a6eb0b20827c51deaff83e80dbce6460b6e50'
+'ce2b395da210fd5f68d2afb80de2d15f77d4161fbb9911fe876d891cf21cf057'
+'983d2ca845306d76b2fe4167eb1f479f3ee2ad81f3318602be9e99ab117689e6'
+'396098fe4b4550c3260c97fe4de209088860e1fe3acf6aaa9574b67a4d9b85b8'
+

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

2017-05-18 Thread Jan de Groot
Date: Thursday, May 18, 2017 @ 14:22:01
  Author: jgc
Revision: 228475

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  nodejs/repos/community-staging-i686/
  nodejs/repos/community-staging-i686/PKGBUILD
(from rev 228474, nodejs/trunk/PKGBUILD)
  nodejs/repos/community-staging-i686/nodejs-v8-icu59.patch
(from rev 228474, nodejs/trunk/nodejs-v8-icu59.patch)
  nodejs/repos/community-staging-x86_64/
  nodejs/repos/community-staging-x86_64/PKGBUILD
(from rev 228474, nodejs/trunk/PKGBUILD)
  nodejs/repos/community-staging-x86_64/nodejs-v8-icu59.patch
(from rev 228474, nodejs/trunk/nodejs-v8-icu59.patch)

+
 community-staging-i686/PKGBUILD|   77 +++
 community-staging-i686/nodejs-v8-icu59.patch   |   63 ++
 community-staging-x86_64/PKGBUILD  |   77 +++
 community-staging-x86_64/nodejs-v8-icu59.patch |   63 ++
 4 files changed, 280 insertions(+)

Copied: nodejs/repos/community-staging-i686/PKGBUILD (from rev 228474, 
nodejs/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-18 14:22:01 UTC (rev 228475)
@@ -0,0 +1,77 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor  Bartłomiej Piotrowski 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: James Campos 
+# Contributor: BlackEagle < ike DOT devolder AT gmail DOT com >
+# Contributor: Dongsheng Cai 
+# Contributor: Masutu Subric 
+# Contributor: TIanyi Cui 
+
+pkgname=nodejs
+pkgver=7.10.0
+pkgrel=2
+pkgdesc='Evented I/O for V8 javascript'
+arch=('i686' 'x86_64')
+url='http://nodejs.org/'
+license=('MIT')
+depends=('openssl-1.0' 'zlib' 'icu' 'libuv' 'http-parser' 'c-ares') # 'v8')
+makedepends=('python2' 'procps-ng')
+optdepends=('npm: nodejs package manager')
+source=("nodejs-$pkgver.tar.gz::https://github.com/nodejs/node/archive/v$pkgver.tar.gz;
+'nodejs-v8-icu59.patch')
+sha512sums=('b5a1c5167e9f22fccdf61e33a28b03f12c5bb51e4ceefa27b021c5c7e0f3c2ed021cb7ee0b34ea8c4fbf7cafc7a2658a64a7eaa73d75c4905c10683be32bbeb3'
+
'da8071f9b5d7c88c13b812cd422de412c7720a7644620be5e0af8fc79a4af8d8e764308b7607022953a0270c67a6cb2d98d5bad7c2c3974066ec348e4fe86c7b')
+
+prepare() {
+  cd node-$pkgver
+
+  # https://github.com/nodejs/node/pull/11754#issuecomment-285407461
+  patch -Np1 -d deps/v8 <../nodejs-v8-icu59.patch
+
+  msg 'Fixing for python2 name'
+  find -type f -exec sed \
+-e 's_^#!/usr/bin/env python$_&2_' \
+-e 's_^\(#!/usr/bin/python2\).[45]$_\1_' \
+-e 's_^#!/usr/bin/python$_&2_' \
+-e 's_^\( *exec \+\)python\( \+.*\)$_\1python2\2_'\
+-e 's_^\(.*\)python\( \+-c \+.*\)$_\1python2\2_'\
+-e "s_'python'_'python2'_" -i {} \;
+  find test/ -type f -exec sed 's_python _python2 _' -i {} \;
+}
+
+build() {
+  cd node-$pkgver
+
+  export PKG_CONFIG_PATH=/usr/lib/openssl-1.0/pkgconfig
+  export PYTHON=python2
+  ./configure \
+--prefix=/usr \
+--with-intl=system-icu \
+--without-npm \
+--shared-openssl \
+--shared-zlib \
+--shared-libuv \
+--shared-http-parser \
+--shared-cares
+# --shared-v8
+
+  make
+}
+
+check() {
+  cd node-$pkgver
+  # Expected failure: https://github.com/nodejs/node/issues/11627
+  make test || warning "Tests failed"
+}
+
+package() {
+  cd node-$pkgver
+
+  make DESTDIR="$pkgdir" install
+
+  install -D -m644 LICENSE \
+"$pkgdir"/usr/share/licenses/nodejs/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:

Copied: nodejs/repos/community-staging-i686/nodejs-v8-icu59.patch (from rev 
228474, nodejs/trunk/nodejs-v8-icu59.patch)
===
--- community-staging-i686/nodejs-v8-icu59.patch
(rev 0)
+++ community-staging-i686/nodejs-v8-icu59.patch2017-05-18 14:22:01 UTC 
(rev 228475)
@@ -0,0 +1,63 @@
+Index: src/i18n.cc
+diff --git a/src/i18n.cc b/src/i18n.cc
+index 
d2245ef34a9a319a53b4cf4b4ea05ec095fef2d5..7c22871ff5e440f771659d44a0db013b34ec2105
 100644
+--- a/src/i18n.cc
 b/src/i18n.cc
+@@ -30,8 +30,13 @@
+ #include "unicode/ucol.h"
+ #include "unicode/ucurr.h"
+ #include "unicode/unum.h"
++#include "unicode/uvernum.h"
+ #include "unicode/uversion.h"
+ 
++#if U_ICU_VERSION_MAJOR_NUM >= 59
++#include "unicode/char16ptr.h"
++#endif
++
+ namespace v8 {
+ namespace internal {
+ 
+@@ -270,8 +275,13 @@ icu::DecimalFormat* CreateICUNumberFormat(
+   }
+ 
+   UErrorCode status_digits = U_ZERO_ERROR;
++#if U_ICU_VERSION_MAJOR_NUM >= 59
+   uint32_t fraction_digits = ucurr_getDefaultFractionDigits(
+-currency.getTerminatedBuffer(), _digits);
++  icu::toUCharPtr(currency.getTerminatedBuffer()), _digits);

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

2017-05-18 Thread Jan de Groot
Date: Thursday, May 18, 2017 @ 14:21:55
  Author: jgc
Revision: 228474

upgpkg: nodejs 7.10.0-2

OpenSSL 1.0 rebuild

Modified:
  nodejs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-18 11:50:34 UTC (rev 228473)
+++ PKGBUILD2017-05-18 14:21:55 UTC (rev 228474)
@@ -10,7 +10,7 @@
 
 pkgname=nodejs
 pkgver=7.10.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Evented I/O for V8 javascript'
 arch=('i686' 'x86_64')
 url='http://nodejs.org/'


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

2017-05-18 Thread Jan de Groot
Date: Thursday, May 18, 2017 @ 14:48:46
  Author: jgc
Revision: 228478

archrelease: copy trunk to community-i686, community-x86_64

Added:
  gogglesmm/repos/community-i686/PKGBUILD
(from rev 228477, gogglesmm/trunk/PKGBUILD)
  gogglesmm/repos/community-x86_64/PKGBUILD
(from rev 228477, gogglesmm/trunk/PKGBUILD)
Deleted:
  gogglesmm/repos/community-i686/PKGBUILD
  gogglesmm/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   62 
 community-i686/PKGBUILD   |   31 --
 community-x86_64/PKGBUILD |   31 --
 3 files changed, 62 insertions(+), 62 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-05-18 14:47:08 UTC (rev 228477)
+++ community-i686/PKGBUILD 2017-05-18 14:48:46 UTC (rev 228478)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Sander Jansen 
-
-pkgname=gogglesmm
-pkgver=1.1.7
-pkgrel=1
-pkgdesc="Music Manager and Player"
-arch=('i686' 'x86_64')
-url="http://gogglesmm.github.io/;
-license=('GPL3')
-depends=('fox-devel>=1.7.48' 'libmad' 'faad2' 'sqlite3'
-'libpulse' 'opus' 'dbus' 'taglib>=1.9.0' 'glew'
-'hicolor-icon-theme' 'desktop-file-utils'
-'libepoxy')
-makedepends=('glproto' 'dri2proto' 'cmake')
-conflicts=('musicmanager')
-replaces=('musicmanager')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/gogglesmm/gogglesmm/archive/$pkgver.tar.gz;)
-sha256sums=('20587b61adcd6d0a9f1cfc026157c963e1308a6d190749d8c4f384c48168985f')
-
-build() {
-  cd gogglesmm-$pkgver
-  cmake -DCMAKE_INSTALL_PREFIX=/usr .
-  make
-}
-
-package() {
-  cd gogglesmm-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: gogglesmm/repos/community-i686/PKGBUILD (from rev 228477, 
gogglesmm/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-05-18 14:48:46 UTC (rev 228478)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Sander Jansen 
+
+pkgname=gogglesmm
+pkgver=1.1.7
+pkgrel=2
+pkgdesc="Music Manager and Player"
+arch=('i686' 'x86_64')
+url="http://gogglesmm.github.io/;
+license=('GPL3')
+depends=('fox-devel>=1.7.48' 'libmad' 'faad2' 'sqlite3'
+'libpulse' 'opus' 'dbus' 'taglib>=1.9.0' 
+'hicolor-icon-theme' 'desktop-file-utils'
+'libepoxy')
+makedepends=('glproto' 'dri2proto' 'cmake')
+conflicts=('musicmanager')
+replaces=('musicmanager')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/gogglesmm/gogglesmm/archive/$pkgver.tar.gz;)
+sha256sums=('20587b61adcd6d0a9f1cfc026157c963e1308a6d190749d8c4f384c48168985f')
+
+build() {
+  cd gogglesmm-$pkgver
+  cmake -DCMAKE_INSTALL_PREFIX=/usr .
+  make
+}
+
+package() {
+  cd gogglesmm-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-05-18 14:47:08 UTC (rev 228477)
+++ community-x86_64/PKGBUILD   2017-05-18 14:48:46 UTC (rev 228478)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Sander Jansen 
-
-pkgname=gogglesmm
-pkgver=1.1.7
-pkgrel=1
-pkgdesc="Music Manager and Player"
-arch=('i686' 'x86_64')
-url="http://gogglesmm.github.io/;
-license=('GPL3')
-depends=('fox-devel>=1.7.48' 'libmad' 'faad2' 'sqlite3'
-'libpulse' 'opus' 'dbus' 'taglib>=1.9.0' 'glew'
-'hicolor-icon-theme' 'desktop-file-utils'
-'libepoxy')
-makedepends=('glproto' 'dri2proto' 'cmake')
-conflicts=('musicmanager')
-replaces=('musicmanager')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/gogglesmm/gogglesmm/archive/$pkgver.tar.gz;)
-sha256sums=('20587b61adcd6d0a9f1cfc026157c963e1308a6d190749d8c4f384c48168985f')
-
-build() {
-  cd gogglesmm-$pkgver
-  cmake -DCMAKE_INSTALL_PREFIX=/usr .
-  make
-}
-
-package() {
-  cd gogglesmm-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: gogglesmm/repos/community-x86_64/PKGBUILD (from rev 228477, 
gogglesmm/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-05-18 14:48:46 UTC (rev 228478)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Sander Jansen 
+
+pkgname=gogglesmm
+pkgver=1.1.7
+pkgrel=2
+pkgdesc="Music Manager and Player"
+arch=('i686' 'x86_64')
+url="http://gogglesmm.github.io/;
+license=('GPL3')
+depends=('fox-devel>=1.7.48' 'libmad' 'faad2' 'sqlite3'
+'libpulse' 'opus' 'dbus' 'taglib>=1.9.0' 
+'hicolor-icon-theme' 'desktop-file-utils'
+'libepoxy')

[arch-commits] Commit in gogglesmm/repos (extra-i686 extra-x86_64)

2017-05-18 Thread Jan de Groot
Date: Thursday, May 18, 2017 @ 14:49:05
  Author: jgc
Revision: 228479

Community... not extra

Deleted:
  gogglesmm/repos/extra-i686/
  gogglesmm/repos/extra-x86_64/


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

2017-05-18 Thread Johannes Löthberg
Date: Thursday, May 18, 2017 @ 18:52:45
  Author: demize
Revision: 228489

archrelease: copy trunk to community-any

Added:
  salt/repos/community-any/PKGBUILD
(from rev 228488, salt/trunk/PKGBUILD)
  salt/repos/community-any/salt.install
(from rev 228488, salt/trunk/salt.install)
Deleted:
  salt/repos/community-any/PKGBUILD
  salt/repos/community-any/salt.install

--+
 PKGBUILD |  119 ++---
 salt.install |   44 ++---
 2 files changed, 85 insertions(+), 78 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-05-18 18:51:46 UTC (rev 228488)
+++ PKGBUILD2017-05-18 18:52:45 UTC (rev 228489)
@@ -1,56 +0,0 @@
-# $Id$
-# Maintainer: Johannes Löthberg 
-# Contributor: Sébastien Luttringer
-# Contributor: Daniel Wallace 
-# Contributor: Christer Edwards 
-
-pkgname=salt
-pkgver=2016.11.4
-pkgrel=1
-
-pkgdesc='Central system and configuration manager'
-arch=('any')
-url='http://saltstack.org/'
-license=('Apache')
-
-replaces=('salt-zmq' 'salt-raet')
-conflicts=('salt-zmq' 'salt-raet')
-
-depends=('python2-jinja'
- 'python2-msgpack'
- 'python2-yaml'
- 'python2-markupsafe'
- 'python2-requests'
- 'python2-pyzmq'
- 'python2-crypto'
- 'python2-m2crypto'
- 'python2-systemd'
- 'python2-tornado')
-optdepends=('dmidecode: decode SMBIOS/DMI tables'
-'python2-pygit2: gitfs support')
-
-backup=('etc/salt/master'
-'etc/salt/minion')
-
-install=salt.install
-source=("https://pypi.io/packages/source/s/salt/salt-$pkgver.tar.gz;)
-md5sums=('64bdeca9499aec7d9daac0ea7a249252')
-
-package() {
-  cd salt-$pkgver
-  python2 setup.py clean
-  python2 setup.py --salt-pidfile-dir="/run/salt" install --root="$pkgdir" 
--optimize=1
-
-  # default config
-  install -Dm644 conf/master "$pkgdir/etc/salt/master"
-  install -Dm644 conf/minion "$pkgdir/etc/salt/minion"
-
-  # systemd services
-  for _svc in salt-master.service salt-syndic.service salt-minion.service 
salt-api.service; do
-install -Dm644 pkg/$_svc "$pkgdir/usr/lib/systemd/system/$_svc"
-  done
-  install -Dm644 pkg/salt.bash 
"$pkgdir/usr/share/bash-completion/completions/salt"
-  install -Dm644 pkg/zsh_completion.zsh 
"$pkgdir/usr/share/zsh/site-functions/_salt"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: salt/repos/community-any/PKGBUILD (from rev 228488, salt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-05-18 18:52:45 UTC (rev 228489)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Johannes Löthberg 
+# Contributor: Sébastien Luttringer
+# Contributor: Daniel Wallace 
+# Contributor: Christer Edwards 
+
+pkgname=salt
+pkgver=2016.11.5
+pkgrel=2
+
+pkgdesc='Central system and configuration manager'
+arch=('any')
+url='http://saltstack.org/'
+license=('Apache')
+
+replaces=('salt-zmq' 'salt-raet')
+conflicts=('salt-zmq' 'salt-raet')
+
+depends=('python2-jinja'
+ 'python2-msgpack'
+ 'python2-yaml'
+ 'python2-markupsafe'
+ 'python2-requests'
+ 'python2-pyzmq'
+ 'python2-crypto'
+ 'python2-m2crypto'
+ 'python2-systemd'
+ 'python2-tornado')
+optdepends=('dmidecode: decode SMBIOS/DMI tables'
+'python2-pygit2: gitfs support')
+
+backup=('etc/salt/master'
+'etc/salt/minion')
+
+install=salt.install
+source=("https://pypi.io/packages/source/s/salt/salt-$pkgver.tar.gz;
+
"https://patch-diff.githubusercontent.com/raw/saltstack/salt/pull/41244.patch;)
+md5sums=('24e701048378eca9de2a827fba5447fa'
+ '1d186eff9d92259e7cd2db648fdbec02')
+
+prepare() {
+  cd salt-$pkgver
+  patch -p1 <"$srcdir"/41244.patch
+}
+
+package() {
+  cd salt-$pkgver
+  python2 setup.py clean
+  python2 setup.py --salt-pidfile-dir="/run/salt" install --root="$pkgdir" 
--optimize=1
+
+  # default config
+  install -Dm644 conf/master "$pkgdir/etc/salt/master"
+  install -Dm644 conf/minion "$pkgdir/etc/salt/minion"
+
+  # systemd services
+  for _svc in salt-master.service salt-syndic.service salt-minion.service 
salt-api.service; do
+install -Dm644 pkg/$_svc "$pkgdir/usr/lib/systemd/system/$_svc"
+  done
+  install -Dm644 pkg/salt.bash 
"$pkgdir/usr/share/bash-completion/completions/salt"
+  install -Dm644 pkg/zsh_completion.zsh 
"$pkgdir/usr/share/zsh/site-functions/_salt"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: salt.install
===
--- salt.install2017-05-18 18:51:46 UTC (rev 228488)
+++ salt.install2017-05-18 18:52:45 UTC (rev 228489)
@@ -1,22 +0,0 @@
-#!/bin/bash
-
-# arg 1:  the new package version
-# arg 2:  the old package version
-post_upgrade() {
-  if [[ "$(vercmp $2 

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

2017-05-18 Thread Johannes Löthberg
Date: Thursday, May 18, 2017 @ 18:51:46
  Author: demize
Revision: 228488

Apply patch to fix IPv6 nameserver support

https://github.com/saltstack/salt/pull/41244
https://github.com/saltstack/salt/issues/41230

Modified:
  salt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-18 17:44:23 UTC (rev 228487)
+++ PKGBUILD2017-05-18 18:51:46 UTC (rev 228488)
@@ -5,8 +5,8 @@
 # Contributor: Christer Edwards 
 
 pkgname=salt
-pkgver=2016.11.4
-pkgrel=1
+pkgver=2016.11.5
+pkgrel=2
 
 pkgdesc='Central system and configuration manager'
 arch=('any')
@@ -33,9 +33,16 @@
 'etc/salt/minion')
 
 install=salt.install
-source=("https://pypi.io/packages/source/s/salt/salt-$pkgver.tar.gz;)
-md5sums=('64bdeca9499aec7d9daac0ea7a249252')
+source=("https://pypi.io/packages/source/s/salt/salt-$pkgver.tar.gz;
+
"https://patch-diff.githubusercontent.com/raw/saltstack/salt/pull/41244.patch;)
+md5sums=('24e701048378eca9de2a827fba5447fa'
+ '1d186eff9d92259e7cd2db648fdbec02')
 
+prepare() {
+  cd salt-$pkgver
+  patch -p1 <"$srcdir"/41244.patch
+}
+
 package() {
   cd salt-$pkgver
   python2 setup.py clean


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

2017-05-18 Thread Andreas Radke
Date: Thursday, May 18, 2017 @ 18:12:06
  Author: andyrtr
Revision: 296258

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  cups-filters/repos/testing-i686/
  cups-filters/repos/testing-i686/PKGBUILD
(from rev 296257, cups-filters/trunk/PKGBUILD)
  cups-filters/repos/testing-x86_64/
  cups-filters/repos/testing-x86_64/PKGBUILD
(from rev 296257, cups-filters/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   60 ++
 testing-x86_64/PKGBUILD |   60 ++
 2 files changed, 120 insertions(+)

Copied: cups-filters/repos/testing-i686/PKGBUILD (from rev 296257, 
cups-filters/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-05-18 18:12:06 UTC (rev 296258)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Andreas Radke 
+
+pkgname=cups-filters
+pkgver=1.14.0
+pkgrel=1
+pkgdesc="OpenPrinting CUPS Filters"
+arch=('i686' 'x86_64')
+url="https://wiki.linuxfoundation.org/openprinting/cups-filters;
+license=('custom')
+depends=('lcms2' 'poppler' 'qpdf' 'imagemagick' 'liblouis' 'ijs' 'libcups')
+makedepends=('ghostscript' 'ttf-dejavu' 'python' 'mupdf-tools') # ttf-dejavu 
for make check
+optdepends=('ghostscript: for non-PostScript printers to print with CUPS to 
convert PostScript to raster images'
+   'foomatic-db: drivers use Ghostscript to convert PostScript to a 
printable form directly'
+   'foomatic-db-engine: drivers use Ghostscript to convert PostScript 
to a printable form directly'
+   'foomatic-db-nonfree: drivers use Ghostscript to convert PostScript 
to a printable form directly'
+   'antiword: needed to convert MS Word documents (requires also 
docx2txt (AUR)')
+backup=(etc/fonts/conf.d/99pdftoopvp.conf
+etc/cups/cups-browsed.conf)
+source=(https://www.openprinting.org/download/cups-filters/$pkgname-$pkgver.tar.xz)
+provides=('foomatic-filters')
+replaces=('foomatic-filters')
+conflicts=('foomatic-filters')
+sha256sums=('7aa4274df6e6d9b5ff66e079d78dde8254570367c745025e58bc6194371fa5ec')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr  \
+--sysconfdir=/etc \
+--sbindir=/usr/bin \
+--localstatedir=/var \
+--with-rcdir=no \
+--enable-avahi \
+--with-browseremoteprotocols=DNSSD,CUPS \
+--enable-auto-setup-driverless \
+--with-test-font-path=/usr/share/fonts/TTF/DejaVuSans.ttf
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir/" install
+  
+  # add upstream systemd support file
+  install -Dm644 utils/cups-browsed.service 
${pkgdir}/usr/lib/systemd/system/cups-browsed.service
+  sed -i "s|/usr/sbin/cups-browsed|/usr/bin/cups-browsed|" 
${pkgdir}/usr/lib/systemd/system/cups-browsed.service
+  sed -i "s|cups.service|org.cups.cupsd.service|g" 
${pkgdir}/usr/lib/systemd/system/cups-browsed.service
+  
+  # use lp group from cups pkg FS#36769
+  chgrp -R lp ${pkgdir}/etc/cups
+
+  # license
+  mkdir -p "${pkgdir}"/usr/share/licenses/${pkgname}
+  install -m644 "${srcdir}"/${pkgname}-${pkgver}/COPYING 
"${pkgdir}"/usr/share/licenses/${pkgname}/
+}

Copied: cups-filters/repos/testing-x86_64/PKGBUILD (from rev 296257, 
cups-filters/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-05-18 18:12:06 UTC (rev 296258)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Andreas Radke 
+
+pkgname=cups-filters
+pkgver=1.14.0
+pkgrel=1
+pkgdesc="OpenPrinting CUPS Filters"
+arch=('i686' 'x86_64')
+url="https://wiki.linuxfoundation.org/openprinting/cups-filters;
+license=('custom')
+depends=('lcms2' 'poppler' 'qpdf' 'imagemagick' 'liblouis' 'ijs' 'libcups')
+makedepends=('ghostscript' 'ttf-dejavu' 'python' 'mupdf-tools') # ttf-dejavu 
for make check
+optdepends=('ghostscript: for non-PostScript printers to print with CUPS to 
convert PostScript to raster images'
+   'foomatic-db: drivers use Ghostscript to convert PostScript to a 
printable form directly'
+   'foomatic-db-engine: drivers use Ghostscript to convert PostScript 
to a printable form directly'
+   'foomatic-db-nonfree: drivers use Ghostscript to convert PostScript 
to a printable form directly'
+   'antiword: needed to convert MS Word documents (requires also 
docx2txt (AUR)')
+backup=(etc/fonts/conf.d/99pdftoopvp.conf
+etc/cups/cups-browsed.conf)
+source=(https://www.openprinting.org/download/cups-filters/$pkgname-$pkgver.tar.xz)
+provides=('foomatic-filters')
+replaces=('foomatic-filters')
+conflicts=('foomatic-filters')
+sha256sums=('7aa4274df6e6d9b5ff66e079d78dde8254570367c745025e58bc6194371fa5ec')
+
+build() {
+  cd $pkgname-$pkgver
+  

[arch-commits] Commit in hunspell-de/repos/extra-any (PKGBUILD PKGBUILD)

2017-05-18 Thread Andreas Radke
Date: Thursday, May 18, 2017 @ 18:57:00
  Author: andyrtr
Revision: 296260

archrelease: copy trunk to extra-any

Added:
  hunspell-de/repos/extra-any/PKGBUILD
(from rev 296259, hunspell-de/trunk/PKGBUILD)
Deleted:
  hunspell-de/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-05-18 18:56:43 UTC (rev 296259)
+++ PKGBUILD2017-05-18 18:57:00 UTC (rev 296260)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR 
-# Contributor: Alexander Fehr 
-
-pkgname=hunspell-de
-pkgver=20151222
-pkgrel=1
-pkgdesc="German hunspell dictionaries"
-arch=('any')
-url="https://www.j3e.de/ispell/igerman98/;
-license=('GPL')
-makedepends=('hunspell' 'ispell')
-optdepends=('hunspell: the spell checking libraries and apps')
-source=("https://www.j3e.de/ispell/igerman98/dict/igerman98-$pkgver.tar.bz2;)
-md5sums=('d4cc73954389454e4045e0c4c6824813')
-
-build() {
-  cd "$srcdir/igerman98-$pkgver"
-  make hunspell/de_AT.dic hunspell/de_AT.aff \
-   hunspell/de_CH.dic hunspell/de_CH.aff \
-   hunspell/de_DE.dic hunspell/de_DE.aff
-}
-
-package() {
-  cd "$srcdir/igerman98-$pkgver/hunspell"
-  install -dm755 ${pkgdir}/usr/share/hunspell
-  cp -p de_??.dic de_??.aff $pkgdir/usr/share/hunspell
-
-  pushd $pkgdir/usr/share/hunspell/
-  de_DE_aliases="de_BE de_LU"
-  for lang in $de_DE_aliases; do
-ln -s de_DE.aff $lang.aff
-ln -s de_DE.dic $lang.dic
-  done
-  de_CH_aliases="de_LI"
-  for lang in $de_CH_aliases; do
-ln -s de_CH.aff $lang.aff
-ln -s de_CH.dic $lang.dic
-  done
-  popd
-
-  # the symlinks
-  install -dm755 ${pkgdir}/usr/share/myspell/dicts
-  pushd $pkgdir/usr/share/myspell/dicts
-for file in $pkgdir/usr/share/hunspell/*; do
-  ln -sv /usr/share/hunspell/$(basename $file) .
-done
-  popd
-
-  # docs
-  install -dm755 ${pkgdir}/usr/share/doc/$pkgname
-  cp -p README_de_??.txt $pkgdir/usr/share/doc/$pkgname
-}

Copied: hunspell-de/repos/extra-any/PKGBUILD (from rev 296259, 
hunspell-de/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-05-18 18:57:00 UTC (rev 296260)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: AndyRTR 
+# Contributor: Alexander Fehr 
+
+pkgname=hunspell-de
+pkgver=20161207
+pkgrel=1
+pkgdesc="German hunspell dictionaries"
+arch=('any')
+url="https://www.j3e.de/ispell/igerman98/;
+license=('GPL')
+makedepends=('hunspell' 'ispell')
+optdepends=('hunspell: the spell checking libraries and apps')
+source=("https://www.j3e.de/ispell/igerman98/dict/igerman98-$pkgver.tar.bz2;)
+sha256sums=('17296f03c5fea62d76ecc530ebe80f6adc430278f58d472dc1842d71612960a8')
+
+build() {
+  cd "$srcdir/igerman98-$pkgver"
+  make hunspell/de_AT.dic hunspell/de_AT.aff \
+   hunspell/de_CH.dic hunspell/de_CH.aff \
+   hunspell/de_DE.dic hunspell/de_DE.aff
+}
+
+package() {
+  cd "$srcdir/igerman98-$pkgver/hunspell"
+  install -dm755 ${pkgdir}/usr/share/hunspell
+  cp -p de_??.dic de_??.aff $pkgdir/usr/share/hunspell
+
+  pushd $pkgdir/usr/share/hunspell/
+  de_DE_aliases="de_BE de_LU"
+  for lang in $de_DE_aliases; do
+ln -s de_DE.aff $lang.aff
+ln -s de_DE.dic $lang.dic
+  done
+  de_CH_aliases="de_LI"
+  for lang in $de_CH_aliases; do
+ln -s de_CH.aff $lang.aff
+ln -s de_CH.dic $lang.dic
+  done
+  popd
+
+  # the symlinks
+  install -dm755 ${pkgdir}/usr/share/myspell/dicts
+  pushd $pkgdir/usr/share/myspell/dicts
+for file in $pkgdir/usr/share/hunspell/*; do
+  ln -sv /usr/share/hunspell/$(basename $file) .
+done
+  popd
+
+  # docs
+  install -dm755 ${pkgdir}/usr/share/doc/$pkgname
+  cp -p README_de_??.txt $pkgdir/usr/share/doc/$pkgname
+}


[arch-commits] Commit in ibus-typing-booster/trunk (PKGBUILD)

2017-05-18 Thread Jan Steffens
Date: Thursday, May 18, 2017 @ 21:01:33
  Author: heftig
Revision: 296261

1.5.32-1

Modified:
  ibus-typing-booster/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-18 18:57:00 UTC (rev 296260)
+++ PKGBUILD2017-05-18 21:01:33 UTC (rev 296261)
@@ -2,7 +2,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=ibus-typing-booster
-pkgver=1.5.30
+pkgver=1.5.32
 pkgrel=1
 pkgdesc="Predictive input method for the IBus platform"
 url="https://mike-fabian.github.io/ibus-typing-booster/;
@@ -10,7 +10,7 @@
 license=(GPL3)
 depends=(ibus python-gobject python-dbus python-pyenchant m17n-lib sqlite)
 makedepends=(git m17n-db hunspell hunspell-{de,el,en,es,fr,he,hu,it,nl,pl,ro})
-_commit=6b38863bd82ce3c747f7d8e2f0429d4898772961  # master
+_commit=b9930d61d3dc2cb5b3e1764b69342ce1d37a0aad  # master
 
source=("git+https://github.com/mike-fabian/ibus-typing-booster#commit=$_commit;)
 sha512sums=('SKIP')
 
@@ -33,6 +33,7 @@
 package() {
   cd $pkgname
   make DESTDIR="$pkgdir" install
-  gzip --force --best "$pkgdir"/usr/share/$pkgname/data/*.{xml,txt,json}
+
+  cd "$pkgdir/usr/share/$pkgname/data"
+  gzip --force --best *.{txt,json} annotations{,Derived}/*.xml
 }
-


[arch-commits] Commit in ibus-typing-booster/repos/extra-any (PKGBUILD PKGBUILD)

2017-05-18 Thread Jan Steffens
Date: Thursday, May 18, 2017 @ 21:02:05
  Author: heftig
Revision: 296262

archrelease: copy trunk to extra-any

Added:
  ibus-typing-booster/repos/extra-any/PKGBUILD
(from rev 296261, ibus-typing-booster/trunk/PKGBUILD)
Deleted:
  ibus-typing-booster/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-05-18 21:01:33 UTC (rev 296261)
+++ PKGBUILD2017-05-18 21:02:05 UTC (rev 296262)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=ibus-typing-booster
-pkgver=1.5.30
-pkgrel=1
-pkgdesc="Predictive input method for the IBus platform"
-url="https://mike-fabian.github.io/ibus-typing-booster/;
-arch=(any)
-license=(GPL3)
-depends=(ibus python-gobject python-dbus python-pyenchant m17n-lib sqlite)
-makedepends=(git m17n-db hunspell hunspell-{de,el,en,es,fr,he,hu,it,nl,pl,ro})
-_commit=6b38863bd82ce3c747f7d8e2f0429d4898772961  # master
-source=("git+https://github.com/mike-fabian/ibus-typing-booster#commit=$_commit;)
-sha512sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  autoreconf -fvi
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr --libexec=/usr/lib/ibus
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-  gzip --force --best "$pkgdir"/usr/share/$pkgname/data/*.{xml,txt,json}
-}
-

Copied: ibus-typing-booster/repos/extra-any/PKGBUILD (from rev 296261, 
ibus-typing-booster/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-05-18 21:02:05 UTC (rev 296262)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=ibus-typing-booster
+pkgver=1.5.32
+pkgrel=1
+pkgdesc="Predictive input method for the IBus platform"
+url="https://mike-fabian.github.io/ibus-typing-booster/;
+arch=(any)
+license=(GPL3)
+depends=(ibus python-gobject python-dbus python-pyenchant m17n-lib sqlite)
+makedepends=(git m17n-db hunspell hunspell-{de,el,en,es,fr,he,hu,it,nl,pl,ro})
+_commit=b9930d61d3dc2cb5b3e1764b69342ce1d37a0aad  # master
+source=("git+https://github.com/mike-fabian/ibus-typing-booster#commit=$_commit;)
+sha512sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  autoreconf -fvi
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --libexec=/usr/lib/ibus
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+
+  cd "$pkgdir/usr/share/$pkgname/data"
+  gzip --force --best *.{txt,json} annotations{,Derived}/*.xml
+}


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

2017-05-18 Thread Jaroslav Lichtblau
Date: Thursday, May 18, 2017 @ 21:41:31
  Author: jlichtblau
Revision: 228490

upgpkg: castget 1.2.4-1 - new upstream release

Modified:
  castget/trunk/PKGBUILD
  castget/trunk/castget.changelog

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-18 18:52:45 UTC (rev 228489)
+++ PKGBUILD2017-05-18 21:41:31 UTC (rev 228490)
@@ -3,7 +3,7 @@
 # Contributor: Jeff Mickey 
 
 pkgname=castget
-pkgver=1.2.3
+pkgver=1.2.4
 pkgrel=1
 pkgdesc="A simple, command-line based RSS enclosure downloader"
 arch=('i686' 'x86_64')
@@ -10,10 +10,9 @@
 url="http://johndal.com/castget/;
 license=('GPL')
 depends=('glib2' 'libxml2' 'curl' 'id3lib')
-makedepends=('ruby-ronn')
 changelog=$pkgname.changelog
 source=(http://savannah.nongnu.org/download/$pkgname/$pkgname-$pkgver.tar.bz2)
-sha256sums=('70340db77f05f4f73325e282ccfbf58d0df756951577fa118035f8005886361f')
+sha256sums=('91ee310ced5386495eb56b09b3cb4b6660f9cea1a7050a94e9a30d7bc3ba692d')
 
 build() {
   cd "${srcdir}"/$pkgname-$pkgver
@@ -21,6 +20,7 @@
   ./configure --prefix=/usr
   make
 }
+
 package() {
   cd "${srcdir}"/$pkgname-$pkgver
 

Modified: castget.changelog
===
--- castget.changelog   2017-05-18 18:52:45 UTC (rev 228489)
+++ castget.changelog   2017-05-18 21:41:31 UTC (rev 228490)
@@ -1,3 +1,6 @@
+2017-05-18 Jaroslav Lichtblau 
+   * Update to major release 1.2.4
+
 2017-05-17 Jaroslav Lichtblau 
* Update to major release 1.2.3
 


[arch-commits] Commit in castget/repos (8 files)

2017-05-18 Thread Jaroslav Lichtblau
Date: Thursday, May 18, 2017 @ 21:41:49
  Author: jlichtblau
Revision: 228491

archrelease: copy trunk to community-i686, community-x86_64

Added:
  castget/repos/community-i686/PKGBUILD
(from rev 228490, castget/trunk/PKGBUILD)
  castget/repos/community-i686/castget.changelog
(from rev 228490, castget/trunk/castget.changelog)
  castget/repos/community-x86_64/PKGBUILD
(from rev 228490, castget/trunk/PKGBUILD)
  castget/repos/community-x86_64/castget.changelog
(from rev 228490, castget/trunk/castget.changelog)
Deleted:
  castget/repos/community-i686/PKGBUILD
  castget/repos/community-i686/castget.changelog
  castget/repos/community-x86_64/PKGBUILD
  castget/repos/community-x86_64/castget.changelog

+
 /PKGBUILD  |   56 +++
 /castget.changelog |   34 +
 community-i686/PKGBUILD|   28 -
 community-i686/castget.changelog   |   14 
 community-x86_64/PKGBUILD  |   28 -
 community-x86_64/castget.changelog |   14 
 6 files changed, 90 insertions(+), 84 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-05-18 21:41:31 UTC (rev 228490)
+++ community-i686/PKGBUILD 2017-05-18 21:41:49 UTC (rev 228491)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Jeff Mickey 
-
-pkgname=castget
-pkgver=1.2.3
-pkgrel=1
-pkgdesc="A simple, command-line based RSS enclosure downloader"
-arch=('i686' 'x86_64')
-url="http://johndal.com/castget/;
-license=('GPL')
-depends=('glib2' 'libxml2' 'curl' 'id3lib')
-makedepends=('ruby-ronn')
-changelog=$pkgname.changelog
-source=(http://savannah.nongnu.org/download/$pkgname/$pkgname-$pkgver.tar.bz2)
-sha256sums=('70340db77f05f4f73325e282ccfbf58d0df756951577fa118035f8005886361f')
-
-build() {
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  ./configure --prefix=/usr
-  make
-}
-package() {
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  make DESTDIR="${pkgdir}" install
-}

Copied: castget/repos/community-i686/PKGBUILD (from rev 228490, 
castget/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-05-18 21:41:49 UTC (rev 228491)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Jeff Mickey 
+
+pkgname=castget
+pkgver=1.2.4
+pkgrel=1
+pkgdesc="A simple, command-line based RSS enclosure downloader"
+arch=('i686' 'x86_64')
+url="http://johndal.com/castget/;
+license=('GPL')
+depends=('glib2' 'libxml2' 'curl' 'id3lib')
+changelog=$pkgname.changelog
+source=(http://savannah.nongnu.org/download/$pkgname/$pkgname-$pkgver.tar.bz2)
+sha256sums=('91ee310ced5386495eb56b09b3cb4b6660f9cea1a7050a94e9a30d7bc3ba692d')
+
+build() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  make DESTDIR="${pkgdir}" install
+}

Deleted: community-i686/castget.changelog
===
--- community-i686/castget.changelog2017-05-18 21:41:31 UTC (rev 228490)
+++ community-i686/castget.changelog2017-05-18 21:41:49 UTC (rev 228491)
@@ -1,14 +0,0 @@
-2017-05-17 Jaroslav Lichtblau 
-   * Update to major release 1.2.3
-
-2016-03-29 Jaroslav Lichtblau 
-   * Update to major release 1.2.2
-
-2015-12-27 Jaroslav Lichtblau 
-   * Update to major release 1.2.0
-
-2010-06-30 Jaroslav Lichtblau 
-   * Update to major release 1.1.0
-
-2007-07-02 tardo 
-   * Built for x86_64

Copied: castget/repos/community-i686/castget.changelog (from rev 228490, 
castget/trunk/castget.changelog)
===
--- community-i686/castget.changelog(rev 0)
+++ community-i686/castget.changelog2017-05-18 21:41:49 UTC (rev 228491)
@@ -0,0 +1,17 @@
+2017-05-18 Jaroslav Lichtblau 
+   * Update to major release 1.2.4
+
+2017-05-17 Jaroslav Lichtblau 
+   * Update to major release 1.2.3
+
+2016-03-29 Jaroslav Lichtblau 
+   * Update to major release 1.2.2
+
+2015-12-27 Jaroslav Lichtblau 
+   * Update to major release 1.2.0
+
+2010-06-30 Jaroslav Lichtblau 
+   * Update to major release 1.1.0
+
+2007-07-02 tardo 
+   * Built for x86_64

Deleted: community-x86_64/PKGBUILD
===
--- 

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

2017-05-18 Thread Jaroslav Lichtblau
Date: Thursday, May 18, 2017 @ 21:47:00
  Author: jlichtblau
Revision: 228493

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-05-18 21:46:48 UTC (rev 228492)
+++ PKGBUILD2017-05-18 21:47:00 UTC (rev 228493)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-# Maintainer: Jaroslav Lichtblau 
-
-pkgname=youtube-dl
-pkgver=2017.05.14
-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')
-source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.sig})
-sha256sums=('363e8f16752dfc35730351d3ead56ebd34ffa394864f7aa00ebf07d6ec5e8793'
-'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 228492, 
youtube-dl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-05-18 21:47:00 UTC (rev 228493)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+# Maintainer: Jaroslav Lichtblau 
+
+pkgname=youtube-dl
+pkgver=2017.05.18.1
+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')
+source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.sig})
+sha256sums=('549f0ff6400bf0db966f4f2bec7fcf102ae9aff2e044c649c1dcdbd90f6fa299'
+'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 youtube-dl/trunk (PKGBUILD)

2017-05-18 Thread Jaroslav Lichtblau
Date: Thursday, May 18, 2017 @ 21:46:48
  Author: jlichtblau
Revision: 228492

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

Modified:
  youtube-dl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-18 21:41:49 UTC (rev 228491)
+++ PKGBUILD2017-05-18 21:46:48 UTC (rev 228492)
@@ -3,7 +3,7 @@
 # Maintainer: Jaroslav Lichtblau 
 
 pkgname=youtube-dl
-pkgver=2017.05.14
+pkgver=2017.05.18.1
 pkgrel=1
 pkgdesc="A small command-line program to download videos from YouTube.com and 
a few more sites"
 arch=('any')
@@ -14,7 +14,7 @@
 'rtmpdump: for rtmp streams support'
 'atomicparsley: for embedding thumbnails into m4a files')
 
source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.sig})
-sha256sums=('363e8f16752dfc35730351d3ead56ebd34ffa394864f7aa00ebf07d6ec5e8793'
+sha256sums=('549f0ff6400bf0db966f4f2bec7fcf102ae9aff2e044c649c1dcdbd90f6fa299'
 'SKIP')
 validpgpkeys=('7D33D762FD6C35130481347FDB4B54CBA4826A18'  # Philipp Hagemeister
   'ED7F5BF46B3BBED81C87368E2C393E0F18A9236D') # Sergey M. 


[arch-commits] Commit in ipsec-tools/repos (10 files)

2017-05-18 Thread Antonio Rojas
Date: Thursday, May 18, 2017 @ 22:33:02
  Author: arojas
Revision: 228495

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  ipsec-tools/repos/community-staging-i686/
  ipsec-tools/repos/community-staging-i686/PKGBUILD
(from rev 228494, ipsec-tools/trunk/PKGBUILD)
  ipsec-tools/repos/community-staging-i686/ipsec-tools-linux-3.7-compat.patch
(from rev 228494, ipsec-tools/trunk/ipsec-tools-linux-3.7-compat.patch)
  ipsec-tools/repos/community-staging-i686/ipsec.service
(from rev 228494, ipsec-tools/trunk/ipsec.service)
  ipsec-tools/repos/community-staging-i686/racoon.service
(from rev 228494, ipsec-tools/trunk/racoon.service)
  ipsec-tools/repos/community-staging-x86_64/
  ipsec-tools/repos/community-staging-x86_64/PKGBUILD
(from rev 228494, ipsec-tools/trunk/PKGBUILD)
  ipsec-tools/repos/community-staging-x86_64/ipsec-tools-linux-3.7-compat.patch
(from rev 228494, ipsec-tools/trunk/ipsec-tools-linux-3.7-compat.patch)
  ipsec-tools/repos/community-staging-x86_64/ipsec.service
(from rev 228494, ipsec-tools/trunk/ipsec.service)
  ipsec-tools/repos/community-staging-x86_64/racoon.service
(from rev 228494, ipsec-tools/trunk/racoon.service)

-+
 community-staging-i686/PKGBUILD |   46 +
 community-staging-i686/ipsec-tools-linux-3.7-compat.patch   |   50 ++
 community-staging-i686/ipsec.service|   12 ++
 community-staging-i686/racoon.service   |   10 ++
 community-staging-x86_64/PKGBUILD   |   46 +
 community-staging-x86_64/ipsec-tools-linux-3.7-compat.patch |   50 ++
 community-staging-x86_64/ipsec.service  |   12 ++
 community-staging-x86_64/racoon.service |   10 ++
 8 files changed, 236 insertions(+)

Copied: ipsec-tools/repos/community-staging-i686/PKGBUILD (from rev 228494, 
ipsec-tools/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-18 22:33:02 UTC (rev 228495)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Allan Henriksen 
+
+pkgname=ipsec-tools
+pkgver=0.8.2
+pkgrel=6
+pkgdesc="KAME IPSec tools ported to Linux"
+arch=('i686' 'x86_64')
+url="http://ipsec-tools.sourceforge.net/;
+depends=('readline' 'openssl-1.0' 'krb5' 'flex')
+makedepends=('linux-headers')
+license=('GPL')
+options=('!makeflags')
+source=(http://downloads.sourceforge.net/sourceforge/ipsec-tools/$pkgname-$pkgver.tar.bz2
+   racoon.service
+   ipsec.service
+   ipsec-tools-linux-3.7-compat.patch)
+md5sums=('d53ec14a0a3ece64e09e5e34b3350b41'
+ '3a64a9e3b498c6da90450ffb0b758aea'
+ '387a0b0c4f10e42b2bb62282885cdc9c'
+ 'ae1dd20c83dcfce3dedb46ee73e83613')
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+
+  patch -p1 <"$srcdir"/ipsec-tools-linux-3.7-compat.patch
+  sed -i 's#-Werror##' configure.ac
+
+  ./bootstrap
+  CFLAGS+=" -I/usr/include/openssl-1.0" \
+  CPPFLAGS+=" -I/usr/include/openssl-1.0" \
+  LDFLAGS+=" -L/usr/lib/openssl-1.0" \
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--sbindir=/usr/bin \
+   --enable-security-context=no --enable-hybrid --enable-dpd --enable-natt 
\
+   --enable-adminport --enable-gssapi \
+   --with-kernel-headers=/usr/include
+  make
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm0644 "$srcdir"/racoon.service 
"$pkgdir"/usr/lib/systemd/system/racoon.service
+  install -Dm0644 "$srcdir"/ipsec.service 
"$pkgdir"/usr/lib/systemd/system/ipsec.service
+}

Copied: 
ipsec-tools/repos/community-staging-i686/ipsec-tools-linux-3.7-compat.patch 
(from rev 228494, ipsec-tools/trunk/ipsec-tools-linux-3.7-compat.patch)
===
--- community-staging-i686/ipsec-tools-linux-3.7-compat.patch   
(rev 0)
+++ community-staging-i686/ipsec-tools-linux-3.7-compat.patch   2017-05-18 
22:33:02 UTC (rev 228495)
@@ -0,0 +1,50 @@
+--- a/configure.ac
 b/configure.ac
+@@ -74,9 +74,10 @@ case "$host_os" in
+   [ KERNEL_INCLUDE="/lib/modules/`uname -r`/build/include" ])
+ 
+ AC_CHECK_HEADER($KERNEL_INCLUDE/linux/pfkeyv2.h, ,
+-  [ AC_CHECK_HEADER(/usr/src/linux/include/linux/pfkeyv2.h,
+-KERNEL_INCLUDE=/usr/src/linux/include ,
+-[ AC_MSG_ERROR([Unable to find linux-2.6 kernel headers. Aborting.]) 
] ) ] )
++  [ AC_CHECK_HEADER($KERNEL_INCLUDE/uapi/linux/pfkeyv2.h, ,
++[ AC_CHECK_HEADER(/usr/src/linux/include/linux/pfkeyv2.h,
++  KERNEL_INCLUDE=/usr/src/linux/include ,
++  [ AC_MSG_ERROR([Unable to find linux-2.6 kernel headers. 
Aborting.]) ] ) ] ) ] )
+ 

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

2017-05-18 Thread Antonio Rojas
Date: Thursday, May 18, 2017 @ 22:32:24
  Author: arojas
Revision: 228494

openssl-1.0 rebuild

Modified:
  ipsec-tools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-18 21:47:00 UTC (rev 228493)
+++ PKGBUILD2017-05-18 22:32:24 UTC (rev 228494)
@@ -4,7 +4,7 @@
 
 pkgname=ipsec-tools
 pkgver=0.8.2
-pkgrel=5
+pkgrel=6
 pkgdesc="KAME IPSec tools ported to Linux"
 arch=('i686' 'x86_64')
 url="http://ipsec-tools.sourceforge.net/;


[arch-commits] Commit in kvirc/repos (8 files)

2017-05-18 Thread Antonio Rojas
Date: Thursday, May 18, 2017 @ 22:52:34
  Author: arojas
Revision: 228497

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  kvirc/repos/community-staging-i686/
  kvirc/repos/community-staging-i686/PKGBUILD
(from rev 228496, kvirc/trunk/PKGBUILD)
  kvirc/repos/community-staging-i686/kvirc-4.0.4-gcc-4.7.0.patch
(from rev 228496, kvirc/trunk/kvirc-4.0.4-gcc-4.7.0.patch)
  kvirc/repos/community-staging-i686/kvirc-fix-build.patch
(from rev 228496, kvirc/trunk/kvirc-fix-build.patch)
  kvirc/repos/community-staging-x86_64/
  kvirc/repos/community-staging-x86_64/PKGBUILD
(from rev 228496, kvirc/trunk/PKGBUILD)
  kvirc/repos/community-staging-x86_64/kvirc-4.0.4-gcc-4.7.0.patch
(from rev 228496, kvirc/trunk/kvirc-4.0.4-gcc-4.7.0.patch)
  kvirc/repos/community-staging-x86_64/kvirc-fix-build.patch
(from rev 228496, kvirc/trunk/kvirc-fix-build.patch)

--+
 community-staging-i686/PKGBUILD  |   49 +
 community-staging-i686/kvirc-4.0.4-gcc-4.7.0.patch   |   62 +
 community-staging-i686/kvirc-fix-build.patch |   20 +
 community-staging-x86_64/PKGBUILD|   49 +
 community-staging-x86_64/kvirc-4.0.4-gcc-4.7.0.patch |   62 +
 community-staging-x86_64/kvirc-fix-build.patch   |   20 +
 6 files changed, 262 insertions(+)

Copied: kvirc/repos/community-staging-i686/PKGBUILD (from rev 228496, 
kvirc/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-18 22:52:34 UTC (rev 228497)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+
+pkgname=kvirc
+pkgver=4.2.0
+pkgrel=13
+pkgdesc="Qt-based IRC client"
+url="http://www.kvirc.net;
+depends=('python2' 'libxss' 'qt4' 'openssl-1.0')
+arch=(i686 x86_64)
+makedepends=('cmake')
+license=('GPL')
+source=(ftp://ftp.kvirc.de/pub/kvirc/$pkgver/source/$pkgname-$pkgver.tar.bz2 
kvirc-fix-build.patch)
+md5sums=('bf7229aaae132933a18b6a35125a2328'
+ 'dd8a892c17cc34107942fa5d7257f118')
+
+prepare() {
+  cd $pkgname-$pkgver
+  # Fix build
+  patch -p1 -i ../kvirc-fix-build.patch
+  # Fix overlinking
+  sed -e '/lcrypto/d' -i CMakeLists.txt
+}
+
+build() {
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DWANT_KDE4=OFF \
+-DWANT_PERL=ON \
+-DWANT_PHONON=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DOPENSSL_INCLUDE_DIR=/usr/include/openssl-1.0 \
+-DOPENSSL_SSL_LIBRARY=/usr/lib/openssl-1.0/libssl.so \
+-DOPENSSL_CRYPTO_LIBRARY=/usr/lib/openssl-1.0/libcrypto.so
+  make
+}
+
+package() {
+  cd "$srcdir"/build
+  make DESTDIR="$pkgdir" install
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find "$pkgdir/usr/lib/perl5/" -name "*.so") ]]; then
+   _perlver_min=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]);')
+   _perlver_max=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]+1);')
+   depends+=("perl>=$_perlver_min" "perl<$_perlver_max")
+fi
+# template end;
+}

Copied: kvirc/repos/community-staging-i686/kvirc-4.0.4-gcc-4.7.0.patch (from 
rev 228496, kvirc/trunk/kvirc-4.0.4-gcc-4.7.0.patch)
===
--- community-staging-i686/kvirc-4.0.4-gcc-4.7.0.patch  
(rev 0)
+++ community-staging-i686/kvirc-4.0.4-gcc-4.7.0.patch  2017-05-18 22:52:34 UTC 
(rev 228497)
@@ -0,0 +1,62 @@
+Index: /branches/kvirc/4.0/src/modules/mediaplayer/mp_mprisinterface.cpp
+===
+--- /branches/kvirc/4.0/src/modules/mediaplayer/mp_mprisinterface.cpp  
(revision 4667)
 /branches/kvirc/4.0/src/modules/mediaplayer/mp_mprisinterface.cpp  
(revision 6024)
+@@ -190,6 +190,6 @@
+   QString artist;
+   QString title;
+-  foreach (QVariant v, reply.arguments()) {
+-  QDBusArgument arg = qvariant_cast(v);
++  foreach (QVariant w, reply.arguments()) {
++  QDBusArgument arg = qvariant_cast(w);
+   QVariant v = qdbus_cast(arg);
+   if (v.userType() == QVariant::Map) {
+Index: /branches/kvirc/4.0/src/modules/mediaplayer/mp_mprisinterface.cpp
+===
+--- /branches/kvirc/4.0/src/modules/mediaplayer/mp_mprisinterface.cpp  
(revision 6024)
 /branches/kvirc/4.0/src/modules/mediaplayer/mp_mprisinterface.cpp  
(revision 6025)
+@@ -139,6 +139,6 @@
+   return __return_if_fail; \
+   MPRIS_CALL_METHOD("GetMetadata", __return_if_fail) \
+-  foreach (QVariant v, reply.arguments()) { \
+-  QDBusArgument arg = qvariant_cast(v); \
++  foreach (QVariant w, reply.arguments()) { \
++  QDBusArgument arg = qvariant_cast(w); \
+

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

2017-05-18 Thread Antonio Rojas
Date: Thursday, May 18, 2017 @ 22:52:04
  Author: arojas
Revision: 228496

openssl-1.0 rebuild

Modified:
  kvirc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-18 22:33:02 UTC (rev 228495)
+++ PKGBUILD2017-05-18 22:52:04 UTC (rev 228496)
@@ -3,10 +3,10 @@
 
 pkgname=kvirc
 pkgver=4.2.0
-pkgrel=12
+pkgrel=13
 pkgdesc="Qt-based IRC client"
 url="http://www.kvirc.net;
-depends=('python2' 'libxss' 'qt4')
+depends=('python2' 'libxss' 'qt4' 'openssl-1.0')
 arch=(i686 x86_64)
 makedepends=('cmake')
 license=('GPL')


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

2017-05-18 Thread Andreas Radke
Date: Thursday, May 18, 2017 @ 18:11:48
  Author: andyrtr
Revision: 296257

upgpkg: cups-filters 1.14.0-1

upstream update 1.14.0

Modified:
  cups-filters/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-18 12:12:07 UTC (rev 296256)
+++ PKGBUILD2017-05-18 18:11:48 UTC (rev 296257)
@@ -2,7 +2,7 @@
 # Maintainer: Andreas Radke 
 
 pkgname=cups-filters
-pkgver=1.13.5
+pkgver=1.14.0
 pkgrel=1
 pkgdesc="OpenPrinting CUPS Filters"
 arch=('i686' 'x86_64')
@@ -21,7 +21,7 @@
 provides=('foomatic-filters')
 replaces=('foomatic-filters')
 conflicts=('foomatic-filters')
-sha256sums=('35db1c5821c9ff0e0fedcf87b3ae68a424ad951bd8af421a2a1aac5613e17b8d')
+sha256sums=('7aa4274df6e6d9b5ff66e079d78dde8254570367c745025e58bc6194371fa5ec')
 
 build() {
   cd $pkgname-$pkgver
@@ -32,6 +32,7 @@
 --with-rcdir=no \
 --enable-avahi \
 --with-browseremoteprotocols=DNSSD,CUPS \
+--enable-auto-setup-driverless \
 --with-test-font-path=/usr/share/fonts/TTF/DejaVuSans.ttf
   make
 }


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

2017-05-18 Thread Andreas Radke
Date: Thursday, May 18, 2017 @ 18:56:43
  Author: andyrtr
Revision: 296259

upgpkg: hunspell-de 20161207-1

upstream update 20161207

Modified:
  hunspell-de/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-18 18:12:06 UTC (rev 296258)
+++ PKGBUILD2017-05-18 18:56:43 UTC (rev 296259)
@@ -3,7 +3,7 @@
 # Contributor: Alexander Fehr 
 
 pkgname=hunspell-de
-pkgver=20151222
+pkgver=20161207
 pkgrel=1
 pkgdesc="German hunspell dictionaries"
 arch=('any')
@@ -12,7 +12,7 @@
 makedepends=('hunspell' 'ispell')
 optdepends=('hunspell: the spell checking libraries and apps')
 source=("https://www.j3e.de/ispell/igerman98/dict/igerman98-$pkgver.tar.bz2;)
-md5sums=('d4cc73954389454e4045e0c4c6824813')
+sha256sums=('17296f03c5fea62d76ecc530ebe80f6adc430278f58d472dc1842d71612960a8')
 
 build() {
   cd "$srcdir/igerman98-$pkgver"


[arch-commits] Commit in deepin-daemon/trunk (2 files)

2017-05-18 Thread Felix Yan
Date: Friday, May 19, 2017 @ 05:24:52
  Author: felixonmars
Revision: 228498

upgpkg: deepin-daemon 3.1.9-3

Modified:
  deepin-daemon/trunk/PKGBUILD
Deleted:
  deepin-daemon/trunk/polkit-gnome-authentication-agent-1-deepin.desktop

+
 PKGBUILD   |   11 --
 polkit-gnome-authentication-agent-1-deepin.desktop |   87 ---
 2 files changed, 4 insertions(+), 94 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-05-18 22:52:34 UTC (rev 228497)
+++ PKGBUILD2017-05-19 05:24:52 UTC (rev 228498)
@@ -5,7 +5,7 @@
 
 pkgname=deepin-daemon
 pkgver=3.1.9
-pkgrel=2
+pkgrel=3
 pkgdesc='Daemon handling the DDE session settings'
 arch=('i686' 'x86_64')
 url="https://github.com/linuxdeepin/dde-daemon;
@@ -12,7 +12,7 @@
 license=('GPL3')
 depends=('deepin-desktop-schemas' 'gvfs' 'libcanberra-pulse' 'poppler-glib'
  'rfkill' 'acpid' 'bluez' 'deepin-notifications' 'iso-codes' 
'lsb-release'
- 'mobile-broadband-provider-info' 'polkit-gnome' 'udisks2' 'upower' # 
'gcc-libs>=5.3.0-3'
+ 'mobile-broadband-provider-info' 'deepin-polkit-agent' 'udisks2' 
'upower' # 'gcc-libs>=5.3.0-3'
  'libxkbfile' 'accountsservice' 'deepin-desktop-base' 'bamf' 
'pulseaudio'
  'gnome-keyring')
 makedepends=('deepin-dbus-factory' 'deepin-gir-generator' 'deepin-go-lib' 
'deepin-api' 'sqlite'
@@ -25,11 +25,9 @@
 groups=('deepin')
 install="${pkgname}.install"
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/dde-daemon/archive/$pkgver.tar.gz;
-'deepin-daemon.sysusers'
-'polkit-gnome-authentication-agent-1-deepin.desktop')
+'deepin-daemon.sysusers')
 
sha512sums=('5b21b9d6e897ddc2fc26d77b08beffbecf474ec9bcdcd09382b97a87ad080ebfdd917c4828cdf1008657fc761934fe686fdc0b8a90001b5cb3aa7f62a03e5dff'
-
'808c02d4fec4cbbb01119bbb10499090199e738b7dd72c28a57dde098eef6132723f3434c151f79e21d9f788c7f7bae8046573ac93ba917afe0e803fbffa6d5a'
-
'bc0ecd42db4e86c4343f94551552b8436bfdaed6311839313eacd0ba3fcd2d4ce4b8f4c52aefcd9eba0367dbc552de3ad1742319bc4344dd1adc7337f0d80b49')
+
'808c02d4fec4cbbb01119bbb10499090199e738b7dd72c28a57dde098eef6132723f3434c151f79e21d9f788c7f7bae8046573ac93ba917afe0e803fbffa6d5a')
 
 prepare() {
   export GOPATH="$srcdir/build:/usr/share/gocode"
@@ -55,6 +53,5 @@
   cd dde-daemon-$pkgver
   make DESTDIR="$pkgdir" install # USE_GCCGO=1
 
-  install -Dm644 ../polkit-gnome-authentication-agent-1-deepin.desktop 
"$pkgdir/etc/xdg/autostart/polkit-gnome-authentication-agent-1-deepin.desktop"
   install -Dm644 ../deepin-daemon.sysusers 
"$pkgdir/usr/lib/sysusers.d/deepin-daemon.conf"
 }

Deleted: polkit-gnome-authentication-agent-1-deepin.desktop
===
--- polkit-gnome-authentication-agent-1-deepin.desktop  2017-05-18 22:52:34 UTC 
(rev 228497)
+++ polkit-gnome-authentication-agent-1-deepin.desktop  2017-05-19 05:24:52 UTC 
(rev 228498)
@@ -1,87 +0,0 @@
-[Desktop Entry]
-Name=PolicyKit Authentication Agent
-Name[ar]=مدير الاستيثاق PolicyKit
-Name[be]=PolicyKit - аґент аўтэнтыфікацыі
-Name[bn_IN]=PolicyKit অনুমোদনের এজেন্ট
-Name[ca]=Agent d'autenticació del PolicyKit
-Name[cs]=Ověřovací agent PolicyKit
-Name[da]=Godkendelsesprogrammet PolicyKit
-Name[de]=Legitimationsdienst von PolicyKit
-Name[el]=Πράκτορας πιστοποίησης PolicyKit
-Name[en_GB]=PolicyKit Authentication Agent
-Name[es]=Agente de autenticación de PolicyKit
-Name[eu]=PolicyKit autentifikatzeko agentea
-Name[fi]=PolicytKit-tunnistautumisohjelma
-Name[fr]=Agent d'authentification de PolicyKit
-Name[gl]=Axente de autenticación PolicyKit
-Name[gu]=PolicyKit સત્તાધિકરણ એજન્ટ
-Name[hi]=PolicyKit प्रमाणीकरण प्रतिनिधि
-Name[hu]=PolicyKit hitelesítési ügynök
-Name[it]=Agente di autenticazione per PolicyKit
-Name[ja]=PolicyKit 認証エージェント
-Name[kn]=PolicyKit ದೃಢೀಕರಣ ಮಧ್ಯವರ್ತಿ
-Name[lt]=PolicyKit tapatybės nustatymo agentas
-Name[ml]=പോളിസിക്കിറ്റ് ഓഥന്റിക്കേഷന്‍ ഏജന്റ്
-Name[mr]=PolicyKit ऑथेंटीकेशन एजेंट
-Name[or]=PolicyKit ବୈଧିକରଣ ସଦସ୍ୟ
-Name[pa]=ਪਾਲਸੀਕਿੱਟ ਪਰਮਾਣਕਿਤਾ ਏਜੰਟ
-Name[pl]=Agent uwierzytelniania PolicyKit
-Name[pt]=Agente de Autenticação PolicyKit
-Name[pt_BR]=Agente de autenticação PolicyKit
-Name[ro]=Agent de autentificare PolicyKit
-Name[sk]=Agent PolicyKit na overovanie totožnosti
-Name[sl]=PolicyKit program overjanja
-Name[sv]=Autentiseringsagent för PolicyKit
-Name[ta]=PolicyKit அங்கீகார முகவர்
-Name[te]=పాలసీకిట్ ధృవీకరణ ప్రతినిధి
-Name[th]=ตัวกลางสำหรับยืนยันตัวบุคคล PolicyKit
-Name[uk]=Агент автентифікації PolicyKit
-Name[zh_CN]=PolicyKit 认证代理
-Name[zh_HK]=PolicyKit 驗證代理程式
-Name[zh_TW]=PolicyKit 驗證代理程式
-Comment=PolicyKit Authentication Agent
-Comment[ar]=مدير الاستيثاق PolicyKit
-Comment[be]=PolicyKit - аґент аўтэнтыфікацыі
-Comment[bn_IN]=PolicyKit অনুমোদনের এজেন্ট
-Comment[ca]=Agent d'autenticació del PolicyKit

[arch-commits] Commit in deepin-daemon/repos (18 files)

2017-05-18 Thread Felix Yan
Date: Friday, May 19, 2017 @ 05:25:56
  Author: felixonmars
Revision: 228499

archrelease: copy trunk to community-i686, community-x86_64

Added:
  deepin-daemon/repos/community-i686/PKGBUILD
(from rev 228498, deepin-daemon/trunk/PKGBUILD)
  deepin-daemon/repos/community-i686/deepin-daemon.install
(from rev 228498, deepin-daemon/trunk/deepin-daemon.install)
  deepin-daemon/repos/community-i686/deepin-daemon.sysusers
(from rev 228498, deepin-daemon/trunk/deepin-daemon.sysusers)
  deepin-daemon/repos/community-i686/launcher.patch
(from rev 228498, deepin-daemon/trunk/launcher.patch)
  deepin-daemon/repos/community-x86_64/PKGBUILD
(from rev 228498, deepin-daemon/trunk/PKGBUILD)
  deepin-daemon/repos/community-x86_64/deepin-daemon.install
(from rev 228498, deepin-daemon/trunk/deepin-daemon.install)
  deepin-daemon/repos/community-x86_64/deepin-daemon.sysusers
(from rev 228498, deepin-daemon/trunk/deepin-daemon.sysusers)
  deepin-daemon/repos/community-x86_64/launcher.patch
(from rev 228498, deepin-daemon/trunk/launcher.patch)
Deleted:
  deepin-daemon/repos/community-i686/PKGBUILD
  deepin-daemon/repos/community-i686/deepin-daemon.install
  deepin-daemon/repos/community-i686/deepin-daemon.sysusers
  deepin-daemon/repos/community-i686/launcher.patch
  
deepin-daemon/repos/community-i686/polkit-gnome-authentication-agent-1-deepin.desktop
  deepin-daemon/repos/community-x86_64/PKGBUILD
  deepin-daemon/repos/community-x86_64/deepin-daemon.install
  deepin-daemon/repos/community-x86_64/deepin-daemon.sysusers
  deepin-daemon/repos/community-x86_64/launcher.patch
  
deepin-daemon/repos/community-x86_64/polkit-gnome-authentication-agent-1-deepin.desktop

-+
 /PKGBUILD   |  114 
 /deepin-daemon.install  |6 
 /deepin-daemon.sysusers |4 
 /launcher.patch |11352 
++
 community-i686/PKGBUILD |   60 
 community-i686/deepin-daemon.install|3 
 community-i686/deepin-daemon.sysusers   |2 
 community-i686/launcher.patch   | 5676 
-
 community-i686/polkit-gnome-authentication-agent-1-deepin.desktop   |   87 
 community-x86_64/PKGBUILD   |   60 
 community-x86_64/deepin-daemon.install  |3 
 community-x86_64/deepin-daemon.sysusers |2 
 community-x86_64/launcher.patch | 5676 
-
 community-x86_64/polkit-gnome-authentication-agent-1-deepin.desktop |   87 
 14 files changed, 11476 insertions(+), 11656 deletions(-)

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


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

2017-05-18 Thread Christian Hesse
Date: Thursday, May 18, 2017 @ 12:05:46
  Author: eworm
Revision: 296254

remove systemd-tmpfiles from install file

Modified:
  samba/trunk/samba.install

---+
 samba.install |4 
 1 file changed, 4 deletions(-)

Modified: samba.install
===
--- samba.install   2017-05-18 11:36:38 UTC (rev 296253)
+++ samba.install   2017-05-18 12:05:46 UTC (rev 296254)
@@ -1,9 +1,5 @@
 #!/bin/sh
 
-post_install() {
-  systemd-tmpfiles --create samba.conf
-}
-
 post_upgrade() {
   if [ "$(vercmp $2 4.0.4)" -lt 0 ]; then
 echo "Major upgrade from samba 3.x to 4.x,"


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

2017-05-18 Thread Christian Hesse
Date: Thursday, May 18, 2017 @ 12:08:08
  Author: eworm
Revision: 296255

remove install file (pacman hooks!)

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

+
 PKGBUILD   |1 -
 subversion.install |7 ---
 2 files changed, 8 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-05-18 12:05:46 UTC (rev 296254)
+++ PKGBUILD2017-05-18 12:08:08 UTC (rev 296255)
@@ -24,7 +24,6 @@
 provides=('svn')
 backup=('etc/xinetd.d/svn' 'etc/conf.d/svnserve')
 options=('!makeflags' '!emptydirs')
-install=${pkgname}.install
 
source=(https://www.apache.org/dist/subversion/subversion-${pkgver}.tar.bz2{,.asc}
 svn
 svnserve.conf

Deleted: subversion.install
===
--- subversion.install  2017-05-18 12:05:46 UTC (rev 296254)
+++ subversion.install  2017-05-18 12:08:08 UTC (rev 296255)
@@ -1,7 +0,0 @@
-post_install() {
-   usr/bin/systemd-tmpfiles --create svnserve.conf || true
-}
-
-post_upgrade() {
-   post_install
-}


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

2017-05-18 Thread Christian Hesse
Date: Thursday, May 18, 2017 @ 12:12:07
  Author: eworm
Revision: 296256

remove systemd-sysusers from install file (pacman hooks!)

Modified:
  varnish/trunk/varnish.install

-+
 varnish.install |8 
 1 file changed, 8 deletions(-)

Modified: varnish.install
===
--- varnish.install 2017-05-18 12:08:08 UTC (rev 296255)
+++ varnish.install 2017-05-18 12:12:07 UTC (rev 296256)
@@ -3,10 +3,6 @@
   rm -rf var/lib/varnish
 }
 
-post_install() {
-  systemd-sysusers varnish.conf
-}
-
 post_upgrade() {
   if [[ $(vercmp 5.0.0-1 "$2") -eq 1 ]]; then
 echo ":: You must update your VCL to be compatible with varnish 5.0.0. See 
the"
@@ -13,8 +9,4 @@
 echo "   following upgrade guide to port your configuration:"
 echo "   http://varnish-cache.org/docs/5.0/whats-new/upgrading-5.0.html;
   fi
-
-  if [[ $(vercmp 4.1.0-1 "$2") -eq 1 ]]; then
-systemd-sysusers varnish.conf
-  fi
 }