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

2017-11-30 Thread Christian Hesse via arch-commits
Date: Friday, December 1, 2017 @ 07:58:26
  Author: eworm
Revision: 311207

archrelease: copy trunk to testing-x86_64

Added:
  grub/repos/testing-x86_64/
  grub/repos/testing-x86_64/0002-intel-ucode.patch
(from rev 311206, grub/trunk/0002-intel-ucode.patch)
  grub/repos/testing-x86_64/0003-10_linux-detect-archlinux-initramfs.patch
(from rev 311206, grub/trunk/0003-10_linux-detect-archlinux-initramfs.patch)
  grub/repos/testing-x86_64/0004-add-GRUB_COLOR_variables.patch
(from rev 311206, grub/trunk/0004-add-GRUB_COLOR_variables.patch)
  
grub/repos/testing-x86_64/0005-Allow_GRUB_to_mount_ext234_filesystems_that_have_the_encryption_feature.patch
(from rev 311206, 
grub/trunk/0005-Allow_GRUB_to_mount_ext234_filesystems_that_have_the_encryption_feature.patch)
  
grub/repos/testing-x86_64/0006-tsc-Change-default-tsc-calibration-method-to-pmtimer-on-EFI-systems.patch
(from rev 311206, 
grub/trunk/0006-tsc-Change-default-tsc-calibration-method-to-pmtimer-on-EFI-systems.patch)
  grub/repos/testing-x86_64/PKGBUILD
(from rev 311206, grub/trunk/PKGBUILD)
  grub/repos/testing-x86_64/grub.cfg
(from rev 311206, grub/trunk/grub.cfg)
  grub/repos/testing-x86_64/grub.default
(from rev 311206, grub/trunk/grub.default)
  grub/repos/testing-x86_64/grub.install
(from rev 311206, grub/trunk/grub.install)

+
 0002-intel-ucode.patch 
|   52 +
 0003-10_linux-detect-archlinux-initramfs.patch 
|   44 +
 0004-add-GRUB_COLOR_variables.patch
|   32 
 
0005-Allow_GRUB_to_mount_ext234_filesystems_that_have_the_encryption_feature.patch
 |  140 +++
 0006-tsc-Change-default-tsc-calibration-method-to-pmtimer-on-EFI-systems.patch 
|   31 
 PKGBUILD   
|  373 ++
 grub.cfg   
|  139 +++
 grub.default   
|   54 +
 grub.install   
|   15 
 9 files changed, 880 insertions(+)

Copied: grub/repos/testing-x86_64/0002-intel-ucode.patch (from rev 311206, 
grub/trunk/0002-intel-ucode.patch)
===
--- testing-x86_64/0002-intel-ucode.patch   (rev 0)
+++ testing-x86_64/0002-intel-ucode.patch   2017-12-01 07:58:26 UTC (rev 
311207)
@@ -0,0 +1,52 @@
+diff --git a/util/grub.d/10_linux.in b/util/grub.d/10_linux.in
+index de9044c..f5d3e78 100644
+--- a/util/grub.d/10_linux.in
 b/util/grub.d/10_linux.in
+@@ -133,13 +133,15 @@ linux_entry ()
+   echo'$(echo "$message" | grub_quote)'
+   linux   ${rel_dirname}/${basename} 
root=${linux_root_device_thisversion} ro ${args}
+ EOF
+-  if test -n "${initrd}" ; then
++  if test -n "${initrd}" -o -n "${initrd_extra}" ; then
+ # TRANSLATORS: ramdisk isn't identifier. Should be translated.
+ message="$(gettext_printf "Loading initial ramdisk ...")"
+-sed "s/^/$submenu_indentation/" << EOF
+-  echo'$(echo "$message" | grub_quote)'
+-  initrd  ${rel_dirname}/${initrd}
+-EOF
++printf '  %s\n' "echo '$(echo "$message" | grub_quote)'" | sed 
"s/^/$submenu_indentation/"
++printf '  %s ' 'initrd' | sed "s/^/$submenu_indentation/"
++for i in ${initrd_extra} ${initrd}; do
++  printf ' %s/%s' "${rel_dirname}" "${i}"
++done
++printf '\n'
+   fi
+   sed "s/^/$submenu_indentation/" << EOF
+ }
+@@ -202,6 +204,12 @@ while [ "x$list" != "x" ] ; do
+   break
+ fi
+   done
++  initrd_extra=
++  for i in intel-ucode.img; do
++if test -e "${dirname}/${i}" ; then
++  initrd_extra="${initrd_extra} ${i}"
++fi
++  done
+ 
+   config=
+   for i in "${dirname}/config-${version}" "${dirname}/config-${alt_version}" 
"/etc/kernels/kernel-config-${version}" ; do
+@@ -216,8 +224,8 @@ while [ "x$list" != "x" ] ; do
+   initramfs=`grep CONFIG_INITRAMFS_SOURCE= "${config}" | cut -f2 -d= | tr 
-d \"`
+   fi
+ 
+-  if test -n "${initrd}" ; then
+-gettext_printf "Found initrd image: %s\n" "${dirname}/${initrd}" >&2
++  if test -n "${initrd}" -o -n "${initrd_extra}" ; then
++gettext_printf "Found initrd image(s) in %s:%s\n" "${dirname}" 
"${initrd_extra} ${initrd}" >&2
+   elif test -z "${initramfs}" ; then
+ # "UUID=" and "ZFS=" magic is parsed by initrd or initramfs.  Since 
there's
+ # no initrd or builtin initramfs, it can't work here.
+-- 
+2.9.2
+

Copied: 
grub/repos/testing-x86_64/0003-10_linux-detect-archlinux-initramfs.patch (from 
rev 311206, grub/trunk/0003-10_linux-detect-archlinux-initramfs.patch)
===
--- 

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

2017-11-30 Thread Christian Hesse via arch-commits
Date: Friday, December 1, 2017 @ 07:58:15
  Author: eworm
Revision: 311206

upgpkg: grub 2:2.02-4

Change default tsc calibration method to pmtimer on EFI systems (FS#56521)

Added:
  
grub/trunk/0006-tsc-Change-default-tsc-calibration-method-to-pmtimer-on-EFI-systems.patch
Modified:
  grub/trunk/PKGBUILD

+
 0006-tsc-Change-default-tsc-calibration-method-to-pmtimer-on-EFI-systems.patch 
|   31 ++
 PKGBUILD   
|8 ++
 2 files changed, 38 insertions(+), 1 deletion(-)

Added: 
0006-tsc-Change-default-tsc-calibration-method-to-pmtimer-on-EFI-systems.patch
===
--- 
0006-tsc-Change-default-tsc-calibration-method-to-pmtimer-on-EFI-systems.patch  
(rev 0)
+++ 
0006-tsc-Change-default-tsc-calibration-method-to-pmtimer-on-EFI-systems.patch  
2017-12-01 07:58:15 UTC (rev 311206)
@@ -0,0 +1,31 @@
+From 446794de8da4329ea532cbee4ca877bcafd0e534 Mon Sep 17 00:00:00 2001
+From: "David E. Box" 
+Date: Fri, 15 Sep 2017 15:37:05 -0700
+Subject: tsc: Change default tsc calibration method to pmtimer on EFI systems
+
+On efi systems, make pmtimer based tsc calibration the default over the
+pit. This prevents Grub from hanging on Intel SoC systems that power gate
+the pit.
+
+Signed-off-by: David E. Box 
+Reviewed-by: Daniel Kiper 
+---
+ grub-core/kern/i386/tsc.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/grub-core/kern/i386/tsc.c b/grub-core/kern/i386/tsc.c
+index 2e85289d8..f266eb131 100644
+--- a/grub-core/kern/i386/tsc.c
 b/grub-core/kern/i386/tsc.c
+@@ -68,7 +68,7 @@ grub_tsc_init (void)
+ #ifdef GRUB_MACHINE_XEN
+   (void) (grub_tsc_calibrate_from_xen () || calibrate_tsc_hardcode());
+ #elif defined (GRUB_MACHINE_EFI)
+-  (void) (grub_tsc_calibrate_from_pit () || grub_tsc_calibrate_from_pmtimer 
() || grub_tsc_calibrate_from_efi() || calibrate_tsc_hardcode());
++  (void) (grub_tsc_calibrate_from_pmtimer () || grub_tsc_calibrate_from_pit 
() || grub_tsc_calibrate_from_efi() || calibrate_tsc_hardcode());
+ #elif defined (GRUB_MACHINE_COREBOOT)
+   (void) (grub_tsc_calibrate_from_pmtimer () || grub_tsc_calibrate_from_pit 
() || calibrate_tsc_hardcode());
+ #else
+-- 
+cgit v1.1-26-g67d0
+

Modified: PKGBUILD
===
--- PKGBUILD2017-12-01 07:34:39 UTC (rev 311205)
+++ PKGBUILD2017-12-01 07:58:15 UTC (rev 311206)
@@ -22,7 +22,7 @@
 pkgname="grub"
 pkgdesc="GNU GRand Unified Bootloader (2)"
 pkgver=2.02
-pkgrel=3
+pkgrel=4
 epoch=2
 url="https://www.gnu.org/software/grub/;
 arch=('x86_64')
@@ -64,6 +64,7 @@
 '0003-10_linux-detect-archlinux-initramfs.patch'
 '0004-add-GRUB_COLOR_variables.patch'
 
'0005-Allow_GRUB_to_mount_ext234_filesystems_that_have_the_encryption_feature.patch'
+
'0006-tsc-Change-default-tsc-calibration-method-to-pmtimer-on-EFI-systems.patch'
 'grub.default'
 'grub.cfg')
 
@@ -76,6 +77,7 @@
 'b41e4438319136b5e74e0abdfcb64ae115393e4e15207490272c425f54026dd3'
 'a5198267ceb04dceb6d2ea7800281a42b3f91fd02da55d2cc9ea20d47273ca29'
 '535422c510a050d41efe7720dbe54de29e04bdb8f86fd5aea5feb0b24f7abe46'
+'c38f2b2caae33008b35a37d8293d8bf13bf6fd779a4504925da1837fd007aeb5'
 '74e5dd2090a153c10a7b9599b73bb09e70fddc6a019dd41641b0f10b9d773d82'
 'c5e4f3836130c6885e9273c21f057263eba53f4b7c0e2f111f6e5f2e487a47ad')
 
@@ -99,6 +101,10 @@
patch -Np1 -i 
"${srcdir}/0005-Allow_GRUB_to_mount_ext234_filesystems_that_have_the_encryption_feature.patch"
echo
 
+   msg "Patch to change default tsc calibration method to pmtimer on EFI 
systems"
+   patch -Np1 -i 
"${srcdir}/0006-tsc-Change-default-tsc-calibration-method-to-pmtimer-on-EFI-systems.patch"
+   echo
+
msg "Fix DejaVuSans.ttf location so that grub-mkfont can create *.pf2 
files for starfield theme"
sed 's|/usr/share/fonts/dejavu|/usr/share/fonts/dejavu 
/usr/share/fonts/TTF|g' -i "configure.ac"
 


[arch-commits] Commit in imagemagick/repos/extra-x86_64 (4 files)

2017-11-30 Thread Antonio Rojas via arch-commits
Date: Friday, December 1, 2017 @ 07:34:39
  Author: arojas
Revision: 311205

archrelease: copy trunk to extra-x86_64

Added:
  imagemagick/repos/extra-x86_64/PKGBUILD
(from rev 311204, imagemagick/trunk/PKGBUILD)
  imagemagick/repos/extra-x86_64/perlmagick.rpath.patch
(from rev 311204, imagemagick/trunk/perlmagick.rpath.patch)
Deleted:
  imagemagick/repos/extra-x86_64/PKGBUILD
  imagemagick/repos/extra-x86_64/perlmagick.rpath.patch

+
 PKGBUILD   |  198 +++
 perlmagick.rpath.patch |   22 ++---
 2 files changed, 110 insertions(+), 110 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-01 07:33:44 UTC (rev 311204)
+++ PKGBUILD2017-12-01 07:34:39 UTC (rev 311205)
@@ -1,99 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgbase=imagemagick
-pkgname=('imagemagick' 'imagemagick-doc')
-pkgver=6.9.9.24
-pkgrel=1
-arch=('x86_64')
-url="http://www.imagemagick.org/;
-license=('custom')
-makedepends=('libltdl' 'lcms2' 'libxt' 'fontconfig' 'libxext' 'ghostscript'
- 'openexr' 'libwmf' 'librsvg' 'libxml2' 'liblqr' 'openjpeg2' 
'libraw' 'libraqm'
- 'opencl-headers' 'opencl-icd-loader' 'libwebp' 'subversion' 'glu')
-source=(http://www.imagemagick.org/download/ImageMagick-${pkgver%.*}-${pkgver##*.}.tar.xz{,.asc}
-perlmagick.rpath.patch)
-sha256sums=('b1ac0e9b9d4e0580525a6499766e7aed28b7dcdfc6c5ccf511ea75c32f65e3c2'
-'SKIP'
-'17218bbecc17f3c7a86935a09d5a47e46113a1fc28f7d91c2fe495019cc36088')
-validpgpkeys=('D8272EF51DA223E4D05B466989AB63D48277377A')
-
-prepare() {
-  cd ImageMagick-${pkgver%.*}-${pkgver##*.}
-  sed '/AC_PATH_XTRA/d' -i configure.ac
-  patch -p0 -i "${srcdir}/perlmagick.rpath.patch"
-  autoreconf --force --install
-}
-
-build() {
-  cd ImageMagick-${pkgver%.*}-${pkgver##*.}
-  [[ $CARCH = "i686" ]] && EXTRAOPTS="--with-gcc-arch=i686"
-  [[ $CARCH = "x86_64" ]] && EXTRAOPTS="--with-gcc-arch=x86-64"
-
-  ./configure --prefix=/usr --sysconfdir=/etc --with-modules \
---enable-hdri --with-wmf --with-openexr --with-xml \
---with-webp --with-gslib --with-gs-font-dir=/usr/share/fonts/Type1 \
---with-perl --with-perl-options="INSTALLDIRS=vendor" --with-lqr 
--with-rsvg \
---enable-opencl --with-openjp2 --without-gvc --without-djvu 
--without-autotrace \
---without-jbig --without-fpx --without-dps --without-fftw $EXTRAOPTS
-  make
-}
-
-check() {
-  cd ImageMagick-${pkgver%.*}-${pkgver##*.}
-#  make check
-}
-
-package_imagemagick() {
-  pkgdesc="An image viewing/manipulation program"
-  depends=('libltdl' 'lcms2' 'libxt' 'fontconfig' 'libxext' 'liblqr' 'libraqm' 
'opencl-icd-loader')
-  optdepends=('imagemagick-doc: for additional information'
-  'ghostscript: for Ghostscript support' 
-  'openexr: for OpenEXR support' 
- 'openjpeg2: for JP2 support' 
-  'libwmf: for WMF support' 
-  'librsvg: for SVG support' 
-  'libxml2: for XML support' 
-  'libpng: for PNG support' 
- 'libwebp: for WEBP support'
-  'libraw: for DNG support')
-  backup=("etc/ImageMagick-${pkgver%%.*}/coder.xml"
-  "etc/ImageMagick-${pkgver%%.*}/colors.xml"
-  "etc/ImageMagick-${pkgver%%.*}/delegates.xml"
-  "etc/ImageMagick-${pkgver%%.*}/log.xml"
-  "etc/ImageMagick-${pkgver%%.*}/magic.xml"
-  "etc/ImageMagick-${pkgver%%.*}/mime.xml"
-  "etc/ImageMagick-${pkgver%%.*}/policy.xml"
-  "etc/ImageMagick-${pkgver%%.*}/quantization-table.xml"
-  "etc/ImageMagick-${pkgver%%.*}/thresholds.xml"
-  "etc/ImageMagick-${pkgver%%.*}/type.xml"
-  "etc/ImageMagick-${pkgver%%.*}/type-dejavu.xml"
-  "etc/ImageMagick-${pkgver%%.*}/type-ghostscript.xml"
-  "etc/ImageMagick-${pkgver%%.*}/type-windows.xml")
-  options=('!docs' 'libtool' '!emptydirs')
-
-  cd ImageMagick-${pkgver%.*}-${pkgver##*.}
-  make -j1 DESTDIR="${pkgdir}" install
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/imagemagick/LICENSE"
-  install -Dm644 NOTICE "${pkgdir}/usr/share/licenses/imagemagick/NOTICE"
-
-#Cleaning
-  rm -f "${pkgdir}"/usr/lib/*.la
-
-# 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;
-}
-
-package_imagemagick-doc() {
-  pkgdesc="The ImageMagick documentation (utilities manuals and libraries API)"
-
-  cd ImageMagick-${pkgver%.*}-${pkgver##*.}
-  make DESTDIR="${pkgdir}" install-data-html
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/imagemagick-doc/LICENSE"
-  install 

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

2017-11-30 Thread Antonio Rojas via arch-commits
Date: Friday, December 1, 2017 @ 07:33:44
  Author: arojas
Revision: 311204

Update to 6.9.9.25

Modified:
  imagemagick/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-01 07:08:36 UTC (rev 311203)
+++ PKGBUILD2017-12-01 07:33:44 UTC (rev 311204)
@@ -3,7 +3,7 @@
 
 pkgbase=imagemagick
 pkgname=('imagemagick' 'imagemagick-doc')
-pkgver=6.9.9.24
+pkgver=6.9.9.25
 pkgrel=1
 arch=('x86_64')
 url="http://www.imagemagick.org/;
@@ -13,7 +13,7 @@
  'opencl-headers' 'opencl-icd-loader' 'libwebp' 'subversion' 'glu')
 
source=(http://www.imagemagick.org/download/ImageMagick-${pkgver%.*}-${pkgver##*.}.tar.xz{,.asc}
 perlmagick.rpath.patch)
-sha256sums=('b1ac0e9b9d4e0580525a6499766e7aed28b7dcdfc6c5ccf511ea75c32f65e3c2'
+sha256sums=('5d78b1b50c6d71aee9d5aba8d2c2d1f26b739d432a0cfef5afb8316a45e58771'
 'SKIP'
 '17218bbecc17f3c7a86935a09d5a47e46113a1fc28f7d91c2fe495019cc36088')
 validpgpkeys=('D8272EF51DA223E4D05B466989AB63D48277377A')


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

2017-11-30 Thread Antonio Rojas via arch-commits
Date: Friday, December 1, 2017 @ 07:08:10
  Author: arojas
Revision: 311202

Update to 1.12.0

Modified:
  liferea/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-01 01:08:41 UTC (rev 311201)
+++ PKGBUILD2017-12-01 07:08:10 UTC (rev 311202)
@@ -2,8 +2,7 @@
 # Maintainer: Eric Bélanger 
 
 pkgname=liferea
-_pkgver=1.12-rc3
-pkgver=${_pkgver//-/}
+pkgver=1.12.0
 pkgrel=1
 pkgdesc="A desktop news aggregator for online news feeds and weblogs"
 arch=('x86_64')
@@ -18,16 +17,16 @@
'gst-plugins-good: for media player plugin support'
'gst-plugins-bad: for media player plugin support')
 options=('!emptydirs')
-source=(https://github.com/lwindolf/liferea/releases/download/v${_pkgver}/liferea-${_pkgver}.tar.bz2)
-sha1sums=('6f5ae98bacf01f450055f6453bba7f5dc6b96e66')
+source=(https://github.com/lwindolf/liferea/releases/download/v$pkgver/$pkgname-$pkgver.tar.bz2)
+sha256sums=('e0b878292fbfd7a5c8d90b8972a9b9e5d2f0897279b5cfb150326f410b7a1f0b')
 
 build() {
-  cd liferea-${_pkgver}
+  cd $pkgname-$pkgver
   ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--disable-schemas-compile
   make
 }
 
 package() {
-  cd liferea-${_pkgver}
+  cd $pkgname-$pkgver
   make DESTDIR="${pkgdir}" install
 }


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

2017-11-30 Thread Antonio Rojas via arch-commits
Date: Friday, December 1, 2017 @ 07:08:36
  Author: arojas
Revision: 311203

archrelease: copy trunk to extra-x86_64

Added:
  liferea/repos/extra-x86_64/PKGBUILD
(from rev 311202, liferea/trunk/PKGBUILD)
Deleted:
  liferea/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-01 07:08:10 UTC (rev 311202)
+++ PKGBUILD2017-12-01 07:08:36 UTC (rev 311203)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=liferea
-_pkgver=1.12-rc3
-pkgver=${_pkgver//-/}
-pkgrel=1
-pkgdesc="A desktop news aggregator for online news feeds and weblogs"
-arch=('i686' 'x86_64')
-url="http://liferea.sourceforge.net/;
-license=('GPL')
-depends=('webkit2gtk' 'libpeas' 'python-gobject')
-makedepends=('intltool' 'gobject-introspection')
-optdepends=('gnome-keyring: for keyring plugin support'
-'libgnome-keyring: for keyring plugin support'
-'python-cairo: for the tray icon plugin'
-   'gst-plugins-base: for media player plugin support'
-   'gst-plugins-good: for media player plugin support'
-   'gst-plugins-bad: for media player plugin support')
-options=('!emptydirs')
-source=(https://github.com/lwindolf/liferea/releases/download/v${_pkgver}/liferea-${_pkgver}.tar.bz2)
-sha1sums=('6f5ae98bacf01f450055f6453bba7f5dc6b96e66')
-
-build() {
-  cd liferea-${_pkgver}
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--disable-schemas-compile
-  make
-}
-
-package() {
-  cd liferea-${_pkgver}
-  make DESTDIR="${pkgdir}" install
-}

Copied: liferea/repos/extra-x86_64/PKGBUILD (from rev 311202, 
liferea/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-01 07:08:36 UTC (rev 311203)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=liferea
+pkgver=1.12.0
+pkgrel=1
+pkgdesc="A desktop news aggregator for online news feeds and weblogs"
+arch=('x86_64')
+url="http://liferea.sourceforge.net/;
+license=('GPL')
+depends=('webkit2gtk' 'libpeas' 'python-gobject')
+makedepends=('intltool' 'gobject-introspection')
+optdepends=('gnome-keyring: for keyring plugin support'
+'libgnome-keyring: for keyring plugin support'
+'python-cairo: for the tray icon plugin'
+   'gst-plugins-base: for media player plugin support'
+   'gst-plugins-good: for media player plugin support'
+   'gst-plugins-bad: for media player plugin support')
+options=('!emptydirs')
+source=(https://github.com/lwindolf/liferea/releases/download/v$pkgver/$pkgname-$pkgver.tar.bz2)
+sha256sums=('e0b878292fbfd7a5c8d90b8972a9b9e5d2f0897279b5cfb150326f410b7a1f0b')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--disable-schemas-compile
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="${pkgdir}" install
+}


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

2017-11-30 Thread Antonio Rojas via arch-commits
Date: Friday, December 1, 2017 @ 07:04:05
  Author: arojas
Revision: 270902

archrelease: copy trunk to community-x86_64

Added:
  qbittorrent/repos/community-x86_64/PKGBUILD
(from rev 270901, qbittorrent/trunk/PKGBUILD)
  qbittorrent/repos/community-x86_64/qbittorrent@.service
(from rev 270901, qbittorrent/trunk/qbittorrent@.service)
Deleted:
  qbittorrent/repos/community-x86_64/PKGBUILD
  qbittorrent/repos/community-x86_64/qbittorrent@.service

--+
 PKGBUILD |  114 -
 qbittorrent@.service |   24 +-
 2 files changed, 69 insertions(+), 69 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-01 07:03:13 UTC (rev 270901)
+++ PKGBUILD2017-12-01 07:04:05 UTC (rev 270902)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Contributor: Timothy Redaelli 
-# Contributor: carstene1ns  - http://git.io/ctPKG
-# Contributor: Jkkyll Wu 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Daniel J Griffiths 
-# Contributor: Geoffroy Carrier 
-
-pkgbase=qbittorrent
-pkgname=(qbittorrent qbittorrent-nox)
-pkgver=4.0.1
-pkgrel=1
-arch=(x86_64)
-url="https://www.qbittorrent.org;
-license=(custom GPL)
-makedepends=(libtorrent-rasterbar boost qt5-tools qt5-svg)
-source=(https://downloads.sourceforge.net/sourceforge/qbittorrent/$pkgname-$pkgver.tar.xz{,.asc})
-sha256sums=('e30ff8b5088861467490a16dcc5988e72e2dfbd2fc3a4fd1a43941a8ca411e4e'
-'SKIP')
-validpgpkeys=('D8F3DA77AAC6741053599C136E4A2D025B7CC9A2')
-
-build() {
-  cd $pkgbase-$pkgver
-
-  mkdir $pkgbase
-  pushd $pkgbase
-  ../configure --prefix=/usr
-  make
-
-  # Build nox variant
-  popd
-  mkdir "$pkgbase-nox"
-  pushd "$pkgbase-nox"
-  ../configure --prefix=/usr --disable-gui --enable-systemd
-}
-
-package_qbittorrent() {
-  pkgdesc="An advanced BitTorrent client programmed in C++, based on Qt 
toolkit and libtorrent-rasterbar."
-  depends=(libtorrent-rasterbar qt5-svg hicolor-icon-theme)
-  optdepends=('python: needed for torrent search tab')
-
-  cd $pkgbase-$pkgver/$pkgbase
-
-  make INSTALL_ROOT="$pkgdir" install
-  install -Dm644 "$srcdir"/$pkgbase-$pkgver/COPYING 
"$pkgdir"/usr/share/licenses/$pkgname/COPYING
-}
-
-package_qbittorrent-nox() {
-  pkgdesc="An advanced BitTorrent client programmed in C++, based on Qt 
toolkit and libtorrent-rasterbar, w/o gui"
-  depends=(libtorrent-rasterbar qt5-base)
-
-  cd $pkgbase-$pkgver/$pkgbase-nox
-
-  make INSTALL_ROOT="$pkgdir" install
-  install -Dm644 "$srcdir"/$pkgbase-$pkgver/COPYING 
"$pkgdir"/usr/share/licenses/$pkgname/COPYING
-}

Copied: qbittorrent/repos/community-x86_64/PKGBUILD (from rev 270901, 
qbittorrent/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-01 07:04:05 UTC (rev 270902)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Timothy Redaelli 
+# Contributor: carstene1ns  - http://git.io/ctPKG
+# Contributor: Jkkyll Wu 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Daniel J Griffiths 
+# Contributor: Geoffroy Carrier 
+
+pkgbase=qbittorrent
+pkgname=(qbittorrent qbittorrent-nox)
+pkgver=4.0.2
+pkgrel=1
+arch=(x86_64)
+url="https://www.qbittorrent.org;
+license=(custom GPL)
+makedepends=(libtorrent-rasterbar boost qt5-tools qt5-svg)
+source=(https://downloads.sourceforge.net/sourceforge/qbittorrent/$pkgname-$pkgver.tar.xz{,.asc})
+sha256sums=('09240274036be42328131602cd69e12bac909031b0b827c1168ae305d67bbac3'
+'SKIP')
+validpgpkeys=('D8F3DA77AAC6741053599C136E4A2D025B7CC9A2')
+
+build() {
+  cd $pkgbase-$pkgver
+
+  mkdir $pkgbase
+  pushd $pkgbase
+  ../configure --prefix=/usr
+  make
+
+  # Build nox variant
+  popd
+  mkdir "$pkgbase-nox"
+  pushd "$pkgbase-nox"
+  ../configure --prefix=/usr --disable-gui --enable-systemd
+}
+
+package_qbittorrent() {
+  pkgdesc="An advanced BitTorrent client programmed in C++, based on Qt 
toolkit and libtorrent-rasterbar."
+  depends=(libtorrent-rasterbar qt5-svg hicolor-icon-theme)
+  optdepends=('python: needed for torrent search tab')
+
+  cd $pkgbase-$pkgver/$pkgbase
+
+  make INSTALL_ROOT="$pkgdir" install
+  install -Dm644 "$srcdir"/$pkgbase-$pkgver/COPYING 
"$pkgdir"/usr/share/licenses/$pkgname/COPYING
+}
+
+package_qbittorrent-nox() {
+  pkgdesc="An advanced BitTorrent client programmed in C++, based on Qt 
toolkit and libtorrent-rasterbar, w/o gui"
+  depends=(libtorrent-rasterbar qt5-base)
+
+  cd $pkgbase-$pkgver/$pkgbase-nox
+
+  make INSTALL_ROOT="$pkgdir" install
+  install -Dm644 "$srcdir"/$pkgbase-$pkgver/COPYING 
"$pkgdir"/usr/share/licenses/$pkgname/COPYING
+}

Deleted: 

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

2017-11-30 Thread Antonio Rojas via arch-commits
Date: Friday, December 1, 2017 @ 07:03:13
  Author: arojas
Revision: 270901

Update to 4.0.2

Modified:
  qbittorrent/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-01 01:10:40 UTC (rev 270900)
+++ PKGBUILD2017-12-01 07:03:13 UTC (rev 270901)
@@ -9,7 +9,7 @@
 
 pkgbase=qbittorrent
 pkgname=(qbittorrent qbittorrent-nox)
-pkgver=4.0.1
+pkgver=4.0.2
 pkgrel=1
 arch=(x86_64)
 url="https://www.qbittorrent.org;
@@ -16,7 +16,7 @@
 license=(custom GPL)
 makedepends=(libtorrent-rasterbar boost qt5-tools qt5-svg)
 
source=(https://downloads.sourceforge.net/sourceforge/qbittorrent/$pkgname-$pkgver.tar.xz{,.asc})
-sha256sums=('e30ff8b5088861467490a16dcc5988e72e2dfbd2fc3a4fd1a43941a8ca411e4e'
+sha256sums=('09240274036be42328131602cd69e12bac909031b0b827c1168ae305d67bbac3'
 'SKIP')
 validpgpkeys=('D8F3DA77AAC6741053599C136E4A2D025B7CC9A2')
 


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

2017-11-30 Thread Sven-Hendrik Haase via arch-commits
Date: Friday, December 1, 2017 @ 01:10:19
  Author: svenstaro
Revision: 270899

upgpkg: tensorflow 1.4.0-4

bazel 0.8.0 rebuild

Modified:
  tensorflow/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-12-01 00:55:11 UTC (rev 270898)
+++ PKGBUILD2017-12-01 01:10:19 UTC (rev 270899)
@@ -6,7 +6,7 @@
 pkgname=(tensorflow tensorflow-opt tensorflow-cuda tensorflow-opt-cuda 
python-tensorflow python-tensorflow-opt python-tensorflow-cuda 
python-tensorflow-opt-cuda)
 pkgver=1.4.0
 _pkgver=1.4.0
-pkgrel=3
+pkgrel=4
 pkgdesc="Library for computation using data flow graphs for scalable machine 
learning"
 url="https://www.tensorflow.org/;
 license=('APACHE')


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

2017-11-30 Thread Sven-Hendrik Haase via arch-commits
Date: Friday, December 1, 2017 @ 01:10:40
  Author: svenstaro
Revision: 270900

archrelease: copy trunk to community-x86_64

Added:
  tensorflow/repos/community-x86_64/PKGBUILD
(from rev 270899, tensorflow/trunk/PKGBUILD)
Deleted:
  tensorflow/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  434 ++---
 1 file changed, 217 insertions(+), 217 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-01 01:10:19 UTC (rev 270899)
+++ PKGBUILD2017-12-01 01:10:40 UTC (rev 270900)
@@ -1,217 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Adria Arrufat (archdria) 
-# Contributor: Thibault Lorrain (fredszaq) 
-
-pkgbase=tensorflow
-pkgname=(tensorflow tensorflow-opt tensorflow-cuda tensorflow-opt-cuda 
python-tensorflow python-tensorflow-opt python-tensorflow-cuda 
python-tensorflow-opt-cuda)
-pkgver=1.4.0
-_pkgver=1.4.0
-pkgrel=3
-pkgdesc="Library for computation using data flow graphs for scalable machine 
learning"
-url="https://www.tensorflow.org/;
-license=('APACHE')
-arch=('x86_64')
-makedepends=('bazel' 'python-numpy' 'gcc6' 'cuda' 'nvidia-utils'
- 'cudnn' 'python-pip' 'python-wheel' 'python-setuptools')
-optdepends=('tensorboard: Tensorflow visualization toolkit')
-source=("https://github.com/tensorflow/tensorflow/archive/v${_pkgver}.tar.gz;)
-sha512sums=('37ac22faf9e59faf8dc5d952df1e7bc73c27905d564a508d3fd172fff37da10c99b3d6b62b3684b88688fd109172c9de61f620ff0eb2209d73553d6617912dda')
-
-prepare() {
-  cp -r tensorflow-${_pkgver} tensorflow-${_pkgver}-opt
-  cp -r tensorflow-${_pkgver} tensorflow-${_pkgver}-cuda
-  cp -r tensorflow-${_pkgver} tensorflow-${_pkgver}-opt-cuda
-  # These environment variables influence the behavior of the configure call 
below.
-  export PYTHON_BIN_PATH=/usr/bin/python
-  export USE_DEFAULT_PYTHON_LIB_PATH=1
-  export TF_NEED_JEMALLOC=1
-  export TF_NEED_GCP=0
-  export TF_NEED_HDFS=0
-  export TF_NEED_S3=0
-  export TF_ENABLE_XLA=1
-  export TF_NEED_GDR=0
-  export TF_NEED_VERBS=0
-  export TF_NEED_OPENCL=0
-  export TF_NEED_MPI=0
-}
-
-build() {
-  cd ${srcdir}/tensorflow-${_pkgver}
-  export CC_OPT_FLAGS="-march=x86-64"
-  export TF_NEED_CUDA=0
-  ./configure
-  bazel build --config=opt //tensorflow:libtensorflow.so 
//tensorflow/tools/pip_package:build_pip_package
-  bazel-bin/tensorflow/tools/pip_package/build_pip_package ${srcdir}/tmp
-
-  cd ${srcdir}/tensorflow-${_pkgver}-cuda
-  export CC_OPT_FLAGS="-march=x86-64"
-  export TF_NEED_CUDA=1
-  # For next version instead of the gcc-6 stuff:
-  export GCC_HOST_COMPILER_PATH=/usr/bin/gcc-6
-  export TF_CUDA_CLANG=0
-  # export CLANG_CUDA_COMPILER_PATH=/usr/bin/clang
-  export CUDA_TOOLKIT_PATH=/opt/cuda
-  export TF_CUDA_VERSION=$($CUDA_TOOLKIT_PATH/bin/nvcc --version | sed -n 
's/^.*release \(.*\),.*/\1/p')
-  export CUDNN_INSTALL_PATH=/opt/cuda
-  export TF_CUDNN_VERSION=$(sed -n 's/^#define CUDNN_MAJOR\s*\(.*\).*/\1/p' 
$CUDNN_INSTALL_PATH/include/cudnn.h)
-  export TF_CUDA_COMPUTE_CAPABILITIES=3.0,3.5,5.2,6.1,6.2
-  ./configure
-  bazel build --config=opt --config=cuda //tensorflow:libtensorflow.so 
//tensorflow/tools/pip_package:build_pip_package
-  bazel-bin/tensorflow/tools/pip_package/build_pip_package ${srcdir}/tmpcuda
-
-  cd ${srcdir}/tensorflow-${_pkgver}-opt
-  export CC_OPT_FLAGS="-march=haswell"
-  export TF_NEED_CUDA=0
-  ./configure
-  bazel build --config=opt //tensorflow:libtensorflow.so 
//tensorflow/tools/pip_package:build_pip_package
-  bazel-bin/tensorflow/tools/pip_package/build_pip_package ${srcdir}/tmpopt
-
-  cd ${srcdir}/tensorflow-${_pkgver}-opt-cuda
-  export CC_OPT_FLAGS="-march=haswell"
-  export TF_NEED_CUDA=1
-  # For next version instead of the gcc-6 stuff:
-  export GCC_HOST_COMPILER_PATH=/usr/bin/gcc-6
-  export TF_CUDA_CLANG=0
-  # export CLANG_CUDA_COMPILER_PATH=/usr/bin/clang
-  export CUDA_TOOLKIT_PATH=/opt/cuda
-  export TF_CUDA_VERSION=$($CUDA_TOOLKIT_PATH/bin/nvcc --version | sed -n 
's/^.*release \(.*\),.*/\1/p')
-  export CUDNN_INSTALL_PATH=/opt/cuda
-  export TF_CUDNN_VERSION=$(sed -n 's/^#define CUDNN_MAJOR\s*\(.*\).*/\1/p' 
$CUDNN_INSTALL_PATH/include/cudnn.h)
-  export TF_CUDA_COMPUTE_CAPABILITIES=3.0,3.5,5.2,6.1,6.2
-  ./configure
-  bazel build --config=opt --config=cuda //tensorflow:libtensorflow.so 
//tensorflow/tools/pip_package:build_pip_package
-  bazel-bin/tensorflow/tools/pip_package/build_pip_package ${srcdir}/tmpcudaopt
-}
-
-package_tensorflow() {
-  cd ${srcdir}/tensorflow-${_pkgver}
-
-  tensorflow/c/generate-pc.sh --prefix=/usr --version=${pkgver}
-  install -Dm644 tensorflow.pc ${pkgdir}/usr/lib/pkgconfig/tensorflow.pc
-  install -Dm755 bazel-bin/tensorflow/libtensorflow.so 
${pkgdir}/usr/lib/libtensorflow.so
-  install -Dm755 bazel-bin/tensorflow/libtensorflow_framework.so 
${pkgdir}/usr/lib/libtensorflow_framework.so
-  

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

2017-11-30 Thread Gaëtan Bisson via arch-commits
Date: Friday, December 1, 2017 @ 01:08:41
  Author: bisson
Revision: 311201

new pgp key

Modified:
  s-nail/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-30 19:19:10 UTC (rev 311200)
+++ PKGBUILD2017-12-01 01:08:41 UTC (rev 311201)
@@ -13,7 +13,7 @@
 arch=('x86_64')
 depends=('openssl' 'krb5' 'libidn')
 optdepends=('smtp-forwarder: for sending mail')
-validpgpkeys=('232C220BCB5690A37BD22FFDEB66022795F382CE')
+validpgpkeys=('EE19E1C1F2F7054F8D3954D8308964B51883A0DD')
 source=("https://www.sdaoden.eu/downloads/${pkgname}-${pkgver}.tar.xz"{,.asc})
 sha256sums=('73422698534b53a3510efe47177c3f0295c0d6c88d872e8b193bb3937f1a9e2e'
 'SKIP')


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

2017-11-30 Thread Dan Printzell via arch-commits
Date: Thursday, November 30, 2017 @ 23:40:07
  Author: wild
Revision: 270897

archrelease: copy trunk to community-x86_64

Added:
  dmd/repos/community-x86_64/PKGBUILD
(from rev 270896, dmd/trunk/PKGBUILD)
  dmd/repos/community-x86_64/dmd-doc.desktop
(from rev 270896, dmd/trunk/dmd-doc.desktop)
  dmd/repos/community-x86_64/dmd.conf
(from rev 270896, dmd/trunk/dmd.conf)
Deleted:
  dmd/repos/community-x86_64/PKGBUILD
  dmd/repos/community-x86_64/dmd-doc.desktop
  dmd/repos/community-x86_64/dmd.conf

-+
 PKGBUILD|  236 +++---
 dmd-doc.desktop |   14 +--
 dmd.conf|   10 +-
 3 files changed, 130 insertions(+), 130 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-30 23:39:55 UTC (rev 270896)
+++ PKGBUILD2017-11-30 23:40:07 UTC (rev 270897)
@@ -1,118 +0,0 @@
-# $Id$
-# Maintainer: Dan Printzell 
-# Contributor: Mihails Strasunse 
-# Contributor: Sven-Hendrik Haase 
-# Contributor: Chris Brannon 
-# Contributor: Andrea Scarpino 
-# Contributor: Anders Bergh 
-# Contributor: Alexander Fehr 
-
-pkgname=('dmd' 'dmd-docs' 'libphobos')
-pkgdesc="D programming language compiler and standard library"
-groups=('dlang' 'dlang-dmd')
-pkgbase=dmd
-pkgver=2.077.0
-pkgrel=1
-epoch=1
-arch=('x86_64')
-url="http://www.dlang.org;
-makedepends=('git' 'dmd')
-source=("git+https://github.com/dlang/dmd.git#tag=v$pkgver;
-"git+https://github.com/dlang/druntime.git#tag=v$pkgver;
-"git+https://github.com/dlang/phobos.git#tag=v$pkgver;
-
"http://downloads.dlang.org/releases/2.x/$pkgver/dmd.$pkgver.linux.tar.xz;
-
"http://downloads.dlang.org/releases/2.x/$pkgver/dmd.$pkgver.linux.tar.xz.sig;
-"dmd.conf"
-"dmd-doc.desktop")
-sha256sums=('SKIP'
-'SKIP'
-'SKIP'
-'54471d7c5fdb73dd38cd8ab1d8ac4cb6b7aca0d0d18e7a9f38dcafcb242732f4'
-'SKIP'
-'3d639e89528fed1da90006f4dfb2b0fdc41308da5a96d953381ff4ccf257c035'
-'19c9cd3670bdef7fbde88de36c459d940e6b7bacc2a5e48aefbfd1b2c1895e07')
-validpgpkeys=('AFC7DB45693D62BB472BF27BAB8FE924C2F7E724') # Martin Nowak 

-noextract=("dmd.$pkgver.linux.tar.xz")
-
-prepare() {
-# We only want to extract the docs & samples, not the prebuild executables
-tar xfJ "dmd.$pkgver.linux.tar.xz" dmd2/html
-}
-
-build() {
-cd "$srcdir"/dmd
-make -f posix.mak RELEASE=1 PIC=1
-
-cd "$srcdir"/druntime
-make -f posix.mak DMD="$srcdir"/dmd/src/dmd RELEASE=1 PIC=1
-
-cd "$srcdir"/phobos
-make -f posix.mak DMD="$srcdir"/dmd/src/dmd RELEASE=1 PIC=1
-}
-
-package_dmd() {
-pkgdesc="The D programming language reference compiler"
-backup=('etc/dmd.conf')
-depends=('gcc' 'libphobos')
-optdepends=(
-'dtools: collection of useful utilities for development in D'
-'gcc-multilib: to cross-compile 32-bit applications'
-'dmd-docs: documentation and sample code for D'
-)
-provides=("d-compiler=$pkgver")
-license=('Boost')
-
-install -Dm755 dmd/src/dmd "$pkgdir"/usr/bin/dmd
-
-mkdir -p "$pkgdir"/etc
-install -Dm644 dmd.conf "$pkgdir"/etc/dmd.conf
-
-mkdir -p "$pkgdir"/usr/share/man/man1
-mkdir -p "$pkgdir"/usr/share/man/man5
-cp -r dmd/docs/man/man1/* "$pkgdir"/usr/share/man/man1/
-cp -r dmd/docs/man/man5/* "$pkgdir"/usr/share/man/man5/
-
-install -Dm644 dmd/LICENSE.txt 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-
-find "$pkgdir"/usr -type f | xargs chmod 0644
-chmod 755 "$pkgdir"/usr/bin/*
-}
-
-package_dmd-docs() {
-pkgdesc="Documentation and sample code for D programming language"
-depends=('dmd')
-license=('Boost')
-
-mkdir -p "$pkgdir"/usr/share/applications
-install -Dm644 dmd-doc.desktop 
"$pkgdir"/usr/share/applications/dmd-doc.desktop
-
-mkdir -p "$pkgdir"/usr/share/d/samples/
-cp -r dmd/samples/* "$pkgdir"/usr/share/d/samples/
-
-mkdir -p "$pkgdir"/usr/share/d/html
-cp -r dmd2/html/* "$pkgdir"/usr/share/d/html/
-
-install -Dm644 dmd/LICENSE.txt 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_libphobos() {
-pkgdesc="The Phobos standard library for D programming language"
-options=('staticlibs')
-depends=('gcc-libs')
-conflicts=('libphobos-devel')
-provides=("d-runtime=$pkgver" "d-stdlib=$pkgver" "libphobos-devel=$pkgver")
-replaces=('libphobos-devel')
-license=('Boost')
-
-mkdir -p "$pkgdir"/usr/lib
-install -Dm644 phobos/generated/linux/release/*/libphobos2.{a,so} 
"$pkgdir"/usr/lib/
-install -Dm644 phobos/LICENSE_1_0.txt 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-
-mkdir -p "$pkgdir"/usr/include/dlang/dmd
-cp -r phobos/{*.d,etc,std} "$pkgdir"/usr/include/dlang/dmd
-cp -r druntime/import/* 

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

2017-11-30 Thread Dan Printzell via arch-commits
Date: Thursday, November 30, 2017 @ 23:39:55
  Author: wild
Revision: 270896

upgpkg: dmd 1:2.077.1-1

Updated to 2.077.1

Modified:
  dmd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-30 21:16:57 UTC (rev 270895)
+++ PKGBUILD2017-11-30 23:39:55 UTC (rev 270896)
@@ -11,7 +11,7 @@
 pkgdesc="D programming language compiler and standard library"
 groups=('dlang' 'dlang-dmd')
 pkgbase=dmd
-pkgver=2.077.0
+pkgver=2.077.1
 pkgrel=1
 epoch=1
 arch=('x86_64')
@@ -27,7 +27,7 @@
 sha256sums=('SKIP'
 'SKIP'
 'SKIP'
-'54471d7c5fdb73dd38cd8ab1d8ac4cb6b7aca0d0d18e7a9f38dcafcb242732f4'
+'075882fab8d3602d58148fa51500759819327ab42519c9a75f1b922c8afad423'
 'SKIP'
 '3d639e89528fed1da90006f4dfb2b0fdc41308da5a96d953381ff4ccf257c035'
 '19c9cd3670bdef7fbde88de36c459d940e6b7bacc2a5e48aefbfd1b2c1895e07')


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

2017-11-30 Thread Sven-Hendrik Haase via arch-commits
Date: Thursday, November 30, 2017 @ 21:16:57
  Author: svenstaro
Revision: 270895

archrelease: copy trunk to community-testing-x86_64

Added:
  bazel/repos/community-testing-x86_64/
  bazel/repos/community-testing-x86_64/PKGBUILD
(from rev 270894, bazel/trunk/PKGBUILD)

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

Copied: bazel/repos/community-testing-x86_64/PKGBUILD (from rev 270894, 
bazel/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2017-11-30 21:16:57 UTC (rev 270895)
@@ -0,0 +1,38 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Frederik Schwan 
+# Contributor: Simon Legner 
+
+pkgname=bazel
+pkgver=0.8.0
+pkgrel=1
+pkgdesc='Correct, reproducible, and fast builds for everyone'
+arch=('x86_64')
+license=('Apache')
+url='https://bazel.io/'
+depends=('java-environment>=8' 'java-environment<9' 'libarchive' 'zip' 'unzip')
+makedepends=('git' 'protobuf' 'python')
+options=('!distcc' '!strip')
+source=(https://github.com/bazelbuild/bazel/releases/download/${pkgver}/bazel-${pkgver}-dist.zip
+
https://github.com/bazelbuild/bazel/releases/download/${pkgver}/bazel-${pkgver}-dist.zip.sig)
+sha512sums=('742eecf6f141632ecad25dcee978942004c1b37966c42cff2c1a5e97a01c0870d61959eb6b1d038d5a26ff2338871a2cdb65fa4fc02e37beca76b89981c837e1'
+'SKIP')
+validpgpkeys=('71A1D0EFCFEB6281FD0437C93D5919B448457EE0')
+
+build() {
+  ./compile.sh
+  ./output/bazel build scripts:bazel-complete.bash
+  cd output
+  ./bazel shutdown
+}
+
+package() {
+  install -Dm755 ${srcdir}/scripts/packages/bazel.sh ${pkgdir}/usr/bin/bazel
+  install -Dm755 ${srcdir}/output/bazel ${pkgdir}/usr/bin/bazel-real
+  install -Dm644 ${srcdir}/bazel-bin/scripts/bazel-complete.bash 
${pkgdir}/usr/share/bash-completion/completions/bazel
+  install -Dm644 ${srcdir}/scripts/zsh_completion/_bazel 
${pkgdir}/usr/share/zsh/site-functions/_bazel
+  mkdir -p ${pkgdir}/opt/bazel/
+  for d in examples third_party tools; do
+cp -r ${srcdir}/${d} ${pkgdir}/opt/bazel/
+  done
+}
+# vim:set ts=2 sw=2 et:


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

2017-11-30 Thread Sven-Hendrik Haase via arch-commits
Date: Thursday, November 30, 2017 @ 21:16:37
  Author: svenstaro
Revision: 270894

Delete fuckup

Deleted:
  bazel/repos/testing-x86_64/


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

2017-11-30 Thread Sven-Hendrik Haase via arch-commits
Date: Thursday, November 30, 2017 @ 21:14:51
  Author: svenstaro
Revision: 270893

archrelease: copy trunk to testing-x86_64

Added:
  bazel/repos/testing-x86_64/
  bazel/repos/testing-x86_64/PKGBUILD
(from rev 270892, bazel/trunk/PKGBUILD)

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

Copied: bazel/repos/testing-x86_64/PKGBUILD (from rev 270892, 
bazel/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-11-30 21:14:51 UTC (rev 270893)
@@ -0,0 +1,38 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Frederik Schwan 
+# Contributor: Simon Legner 
+
+pkgname=bazel
+pkgver=0.8.0
+pkgrel=1
+pkgdesc='Correct, reproducible, and fast builds for everyone'
+arch=('x86_64')
+license=('Apache')
+url='https://bazel.io/'
+depends=('java-environment>=8' 'java-environment<9' 'libarchive' 'zip' 'unzip')
+makedepends=('git' 'protobuf' 'python')
+options=('!distcc' '!strip')
+source=(https://github.com/bazelbuild/bazel/releases/download/${pkgver}/bazel-${pkgver}-dist.zip
+
https://github.com/bazelbuild/bazel/releases/download/${pkgver}/bazel-${pkgver}-dist.zip.sig)
+sha512sums=('742eecf6f141632ecad25dcee978942004c1b37966c42cff2c1a5e97a01c0870d61959eb6b1d038d5a26ff2338871a2cdb65fa4fc02e37beca76b89981c837e1'
+'SKIP')
+validpgpkeys=('71A1D0EFCFEB6281FD0437C93D5919B448457EE0')
+
+build() {
+  ./compile.sh
+  ./output/bazel build scripts:bazel-complete.bash
+  cd output
+  ./bazel shutdown
+}
+
+package() {
+  install -Dm755 ${srcdir}/scripts/packages/bazel.sh ${pkgdir}/usr/bin/bazel
+  install -Dm755 ${srcdir}/output/bazel ${pkgdir}/usr/bin/bazel-real
+  install -Dm644 ${srcdir}/bazel-bin/scripts/bazel-complete.bash 
${pkgdir}/usr/share/bash-completion/completions/bazel
+  install -Dm644 ${srcdir}/scripts/zsh_completion/_bazel 
${pkgdir}/usr/share/zsh/site-functions/_bazel
+  mkdir -p ${pkgdir}/opt/bazel/
+  for d in examples third_party tools; do
+cp -r ${srcdir}/${d} ${pkgdir}/opt/bazel/
+  done
+}
+# vim:set ts=2 sw=2 et:


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

2017-11-30 Thread Sven-Hendrik Haase via arch-commits
Date: Thursday, November 30, 2017 @ 21:14:36
  Author: svenstaro
Revision: 270892

upgpkg: bazel 0.8.0-1

Modified:
  bazel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-30 19:32:16 UTC (rev 270891)
+++ PKGBUILD2017-11-30 21:14:36 UTC (rev 270892)
@@ -3,7 +3,7 @@
 # Contributor: Simon Legner 
 
 pkgname=bazel
-pkgver=0.7.0
+pkgver=0.8.0
 pkgrel=1
 pkgdesc='Correct, reproducible, and fast builds for everyone'
 arch=('x86_64')
@@ -14,7 +14,7 @@
 options=('!distcc' '!strip')
 
source=(https://github.com/bazelbuild/bazel/releases/download/${pkgver}/bazel-${pkgver}-dist.zip
 
https://github.com/bazelbuild/bazel/releases/download/${pkgver}/bazel-${pkgver}-dist.zip.sig)
-sha512sums=('039ab6a04fd4422bd14503187e6cc0d07301723b3ecae906606fa12ccea72190d82237899c103c1adfdf05dc8672887790780ddfb4cce87cd590adbde3d3f6d4'
+sha512sums=('742eecf6f141632ecad25dcee978942004c1b37966c42cff2c1a5e97a01c0870d61959eb6b1d038d5a26ff2338871a2cdb65fa4fc02e37beca76b89981c837e1'
 'SKIP')
 validpgpkeys=('71A1D0EFCFEB6281FD0437C93D5919B448457EE0')
 


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

2017-11-30 Thread Antonio Rojas via arch-commits
Date: Thursday, November 30, 2017 @ 19:32:16
  Author: arojas
Revision: 270891

archrelease: copy trunk to community-x86_64

Added:
  pitivi/repos/community-x86_64/PKGBUILD
(from rev 270890, pitivi/trunk/PKGBUILD)
Deleted:
  pitivi/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-30 19:31:53 UTC (rev 270890)
+++ PKGBUILD2017-11-30 19:32:16 UTC (rev 270891)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Abhishek Dasgupta 
-# Contributor: Gabor Nyekhelyi (n0gabor) 
-
-pkgname=pitivi
-pkgver=0.99
-pkgrel=1
-pkgdesc="Editor for audio/video projects using the GStreamer framework"
-arch=('x86_64')
-url="http://www.pitivi.org/;
-license=('LGPL')
-depends=('gtk3' 'gst-editing-services' 'gst-plugins-good' 'gst-python'
- 'libnotify' 'python-gobject' 'python-numpy' 'python-cairo'
- 'desktop-file-utils' 'python-matplotlib' 'gst-plugins-bad'
- 'python-dbus' 'gst-transcoder')
-makedepends=('intltool' 'itstool' 'git' 'python-nose' 'meson')
-optdepends=('frei0r-plugins: additional video effects, clip transformation 
feature'
-'gst-libav: additional multimedia codecs'
-'gst-plugins-ugly: additional multimedia codecs')
-source=(https://ftp.gnome.org/pub/GNOME/sources/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz)
-sha256sums=('c9d02fd669801e0de94b5ca06179da6e8a7e1cb666b843fc12df6f0632db8f7c')
-
-prepare() {
-  cd $pkgname-$pkgver
-  sed -e '/tests/d' -i meson.build # needs gst-devtools
-}
-
-build() {
-  cd $pkgname-$pkgver
-  meson --prefix=/usr build
-  ninja -C build
-}
-
-package() {
-  cd $pkgname-$pkgver
-  DESTDIR="$pkgdir" ninja install -C build
-}

Copied: pitivi/repos/community-x86_64/PKGBUILD (from rev 270890, 
pitivi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-30 19:32:16 UTC (rev 270891)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Abhishek Dasgupta 
+# Contributor: Gabor Nyekhelyi (n0gabor) 
+
+pkgname=pitivi
+pkgver=0.99
+pkgrel=2
+pkgdesc="Editor for audio/video projects using the GStreamer framework"
+arch=('x86_64')
+url="http://www.pitivi.org/;
+license=('LGPL')
+depends=('gtk3' 'gst-editing-services' 'gst-plugins-good' 'gst-python'
+ 'libnotify' 'python-gobject' 'python-numpy' 'python-cairo'
+ 'python-matplotlib' 'gst-plugins-bad' 'python-dbus' 'gst-transcoder' 
'gsound')
+makedepends=('intltool' 'itstool' 'meson')
+optdepends=('frei0r-plugins: additional video effects, clip transformation 
feature'
+'gst-libav: additional multimedia codecs'
+'gst-plugins-ugly: additional multimedia codecs')
+source=(https://ftp.gnome.org/pub/GNOME/sources/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz)
+sha256sums=('c9d02fd669801e0de94b5ca06179da6e8a7e1cb666b843fc12df6f0632db8f7c')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -e '/tests/d' -i meson.build # needs gst-devtools
+}
+
+build() {
+  cd $pkgname-$pkgver
+  meson --prefix=/usr build
+  ninja -C build
+}
+
+package() {
+  cd $pkgname-$pkgver
+  DESTDIR="$pkgdir" ninja install -C build
+}


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

2017-11-30 Thread Antonio Rojas via arch-commits
Date: Thursday, November 30, 2017 @ 19:31:53
  Author: arojas
Revision: 270890

Add gsound dependency (FS#56517)

Modified:
  pitivi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-30 19:21:55 UTC (rev 270889)
+++ PKGBUILD2017-11-30 19:31:53 UTC (rev 270890)
@@ -5,7 +5,7 @@
 
 pkgname=pitivi
 pkgver=0.99
-pkgrel=1
+pkgrel=2
 pkgdesc="Editor for audio/video projects using the GStreamer framework"
 arch=('x86_64')
 url="http://www.pitivi.org/;
@@ -12,9 +12,8 @@
 license=('LGPL')
 depends=('gtk3' 'gst-editing-services' 'gst-plugins-good' 'gst-python'
  'libnotify' 'python-gobject' 'python-numpy' 'python-cairo'
- 'desktop-file-utils' 'python-matplotlib' 'gst-plugins-bad'
- 'python-dbus' 'gst-transcoder')
-makedepends=('intltool' 'itstool' 'git' 'python-nose' 'meson')
+ 'python-matplotlib' 'gst-plugins-bad' 'python-dbus' 'gst-transcoder' 
'gsound')
+makedepends=('intltool' 'itstool' 'meson')
 optdepends=('frei0r-plugins: additional video effects, clip transformation 
feature'
 'gst-libav: additional multimedia codecs'
 'gst-plugins-ugly: additional multimedia codecs')


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

2017-11-30 Thread Antonio Rojas via arch-commits
Date: Thursday, November 30, 2017 @ 19:21:55
  Author: arojas
Revision: 270889

archrelease: copy trunk to community-x86_64

Added:
  giac/repos/community-x86_64/PKGBUILD
(from rev 270888, giac/trunk/PKGBUILD)
Deleted:
  giac/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-30 19:21:30 UTC (rev 270888)
+++ PKGBUILD2017-11-30 19:21:55 UTC (rev 270889)
@@ -1,44 +0,0 @@
-# $Id: PKGBUILD 175037 2016-05-12 15:18:07Z arojas $
-# Maintainer: Antonio Rojas 
-
-pkgbase=giac
-pkgname=(xcas libgiac)
-_pkgver=1.4.9-29
-pkgver=${_pkgver//-/.}
-pkgrel=1
-pkgdesc="A free computer algebra system"
-arch=(x86_64)
-url="http://www-fourier.ujf-grenoble.fr/~parisse/giac.html;
-license=(GPL3)
-makedepends=(mpfi gsl pari ntl lapack libpng libjpeg fltk texlive-core)
-source=("http://www-fourier.ujf-grenoble.fr/~parisse/debian/dists/stable/main/source/${pkgbase}_${_pkgver}.tar.gz;)
-sha256sums=('d873dd84180ebe06bd843584539b23c85cf1a66bfe0cbb622a6146c63088329d')
-
-build() {
-  cd $pkgbase-${pkgver%.*}
-
-  ./configure --prefix=/usr
-  make
-}
-
-package_xcas() {
-  depends=(libgiac fltk)
-  conflicts=(giac)
-  provides=(giac)
-  replaces=(giac)
-
-  cd $pkgbase-${pkgver%.*}
-  make DESTDIR="$pkgdir" install
-
-  rm -r "$pkgdir"/usr/{lib,include}
-}
-
-package_libgiac() {
-  pkgdesc="Giac shared library"
-  depends=(mpfi gsl pari ntl lapack libpng)
-
-  cd $pkgbase-${pkgver%.*}
-  make DESTDIR="$pkgdir" install
-
-  rm -r "$pkgdir"/usr/{bin,share}
-}

Copied: giac/repos/community-x86_64/PKGBUILD (from rev 270888, 
giac/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-30 19:21:55 UTC (rev 270889)
@@ -0,0 +1,44 @@
+# $Id: PKGBUILD 175037 2016-05-12 15:18:07Z arojas $
+# Maintainer: Antonio Rojas 
+
+pkgbase=giac
+pkgname=(xcas libgiac)
+_pkgver=1.4.9-33
+pkgver=${_pkgver//-/.}
+pkgrel=1
+pkgdesc="A free computer algebra system"
+arch=(x86_64)
+url="http://www-fourier.ujf-grenoble.fr/~parisse/giac.html;
+license=(GPL3)
+makedepends=(mpfi gsl pari ntl lapack libpng libjpeg fltk texlive-core)
+source=("http://www-fourier.ujf-grenoble.fr/~parisse/debian/dists/stable/main/source/${pkgbase}_${_pkgver}.tar.gz;)
+sha256sums=('bba6978c7a4e7678722163f2830f6dda01665673cba8d99988d9ab44890c07b8')
+
+build() {
+  cd $pkgbase-${pkgver%.*}
+
+  ./configure --prefix=/usr
+  make
+}
+
+package_xcas() {
+  depends=(libgiac fltk)
+  conflicts=(giac)
+  provides=(giac)
+  replaces=(giac)
+
+  cd $pkgbase-${pkgver%.*}
+  make DESTDIR="$pkgdir" install
+
+  rm -r "$pkgdir"/usr/{lib,include}
+}
+
+package_libgiac() {
+  pkgdesc="Giac shared library"
+  depends=(mpfi gsl pari ntl lapack libpng)
+
+  cd $pkgbase-${pkgver%.*}
+  make DESTDIR="$pkgdir" install
+
+  rm -r "$pkgdir"/usr/{bin,share}
+}


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

2017-11-30 Thread Antonio Rojas via arch-commits
Date: Thursday, November 30, 2017 @ 19:21:30
  Author: arojas
Revision: 270888

Update to 1.4.9.33

Modified:
  giac/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-30 19:18:58 UTC (rev 270887)
+++ PKGBUILD2017-11-30 19:21:30 UTC (rev 270888)
@@ -3,7 +3,7 @@
 
 pkgbase=giac
 pkgname=(xcas libgiac)
-_pkgver=1.4.9-29
+_pkgver=1.4.9-33
 pkgver=${_pkgver//-/.}
 pkgrel=1
 pkgdesc="A free computer algebra system"
@@ -12,7 +12,7 @@
 license=(GPL3)
 makedepends=(mpfi gsl pari ntl lapack libpng libjpeg fltk texlive-core)
 
source=("http://www-fourier.ujf-grenoble.fr/~parisse/debian/dists/stable/main/source/${pkgbase}_${_pkgver}.tar.gz;)
-sha256sums=('d873dd84180ebe06bd843584539b23c85cf1a66bfe0cbb622a6146c63088329d')
+sha256sums=('bba6978c7a4e7678722163f2830f6dda01665673cba8d99988d9ab44890c07b8')
 
 build() {
   cd $pkgbase-${pkgver%.*}


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

2017-11-30 Thread Jan Steffens via arch-commits
Date: Thursday, November 30, 2017 @ 19:17:34
  Author: heftig
Revision: 311196

archrelease: copy trunk to staging-x86_64

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

---+
 PKGBUILD  |   73 
 kernel-4.11.patch |   38 +++
 kernel-4.14.patch |   29 
 3 files changed, 140 insertions(+)

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

Copied: nvidia-340xx/repos/staging-x86_64/kernel-4.11.patch (from rev 311195, 
nvidia-340xx/trunk/kernel-4.11.patch)
===
--- staging-x86_64/kernel-4.11.patch(rev 0)
+++ staging-x86_64/kernel-4.11.patch2017-11-30 19:17:34 UTC (rev 311196)
@@ -0,0 +1,38 @@
+--- kernel/uvm/nvidia_uvm_lite.c   2017-09-27 13:50:46.334075042 +0200
 kernel/uvm/nvidia_uvm_lite.c   2017-09-27 13:56:06.358041280 +0200
+@@ -818,7 +818,11 @@
+ }
+ 
+ #if defined(NV_VM_OPERATIONS_STRUCT_HAS_FAULT)
++#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 11, 0)
+ int _fault(struct vm_area_struct *vma, struct vm_fault *vmf)
++#else 
++int _fault(struct vm_fault *vmf)  
++#endif
+ {
+ #if defined(NV_VM_FAULT_HAS_ADDRESS)
+ unsigned long vaddr = vmf->address;
+@@ -828,7 +832,11 @@
+ struct page *page = NULL;
+ int retval;
+ 
++#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 11, 0)
+ retval = _fault_common(vma, vaddr, , vmf->flags);
++#else
++retval = _fault_common(NULL, vaddr, , vmf->flags);
++#endif
+ 
+ vmf->page = 

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

2017-11-30 Thread Jan Steffens via arch-commits
Date: Thursday, November 30, 2017 @ 19:17:07
  Author: heftig
Revision: 311195

archrelease: copy trunk to staging-x86_64

Added:
  nvidia/repos/staging-x86_64/
  nvidia/repos/staging-x86_64/PKGBUILD
(from rev 311194, nvidia/trunk/PKGBUILD)
  nvidia/repos/staging-x86_64/fix-abi.patch
(from rev 311194, nvidia/trunk/fix-abi.patch)

---+
 PKGBUILD  |   77 
 fix-abi.patch |   12 
 2 files changed, 89 insertions(+)

Copied: nvidia/repos/staging-x86_64/PKGBUILD (from rev 311194, 
nvidia/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2017-11-30 19:17:07 UTC (rev 311195)
@@ -0,0 +1,77 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgbase=nvidia
+pkgname=(nvidia nvidia-dkms)
+pkgver=387.34
+_extramodules=extramodules-4.14-ARCH
+pkgrel=7
+pkgdesc="NVIDIA drivers for linux"
+arch=('x86_64')
+url="http://www.nvidia.com/;
+makedepends=('nvidia-libgl' "nvidia-utils=${pkgver}" 'linux' 
'linux-headers>=4.14' 'linux-headers<4.15')
+license=('custom')
+options=('!strip')
+source=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;)
+sha256sums=('d540908e76aeecb1f4a2812acf5ad37346934a6b7c8043c8b3ce230a48ceb440')
+
+_pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
+
+prepare() {
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}"
+
+cp -a kernel kernel-dkms
+cd kernel-dkms
+sed -i "s/__VERSION_STRING/${pkgver}/" dkms.conf
+sed -i 's/__JOBS/`nproc`/' dkms.conf
+sed -i 's/__DKMS_MODULES//' dkms.conf
+sed -i '$iBUILT_MODULE_NAME[0]="nvidia"\
+DEST_MODULE_LOCATION[0]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[1]="nvidia-uvm"\
+DEST_MODULE_LOCATION[1]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[2]="nvidia-modeset"\
+DEST_MODULE_LOCATION[2]="/kernel/drivers/video"\
+BUILT_MODULE_NAME[3]="nvidia-drm"\
+DEST_MODULE_LOCATION[3]="/kernel/drivers/video"' dkms.conf
+
+# Gift for linux-rt guys
+sed -i 's/NV_EXCLUDE_BUILD_MODULES/IGNORE_PREEMPT_RT_PRESENCE=1 
NV_EXCLUDE_BUILD_MODULES/' dkms.conf
+}
+
+build() {
+_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+cd "${_pkg}"/kernel
+make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
+}
+
+package_nvidia() {
+pkgdesc="NVIDIA drivers for linux"
+depends=('linux>=4.14' 'linux<4.15' "nvidia-utils=${pkgver}" 'libgl')
+
+install -Dt "${pkgdir}/usr/lib/modules/${_extramodules}" -m644 \
+  "${srcdir}/${_pkg}/kernel"/nvidia{,-modeset,-drm,-uvm}.ko
+
+find "${pkgdir}" -name '*.ko' -exec gzip -n {} +
+
+echo "blacklist nouveau" |
+  install -Dm644 /dev/stdin "${pkgdir}/usr/lib/modprobe.d/nvidia.conf"
+}
+
+package_nvidia-dkms() {
+pkgdesc="NVIDIA driver sources for linux"
+depends=('dkms' "nvidia-utils=$pkgver" 'libgl')
+optdepends=('linux-headers: Build the module for Arch kernel'
+'linux-lts-headers: Build the module for LTS Arch kernel')
+conflicts+=('nvidia')
+
+cd ${_pkg}
+
+install -dm 755 "${pkgdir}"/usr/src
+cp -dr --no-preserve='ownership' kernel-dkms 
"${pkgdir}/usr/src/nvidia-${pkgver}"
+
+echo "blacklist nouveau" |
+  install -Dm644 /dev/stdin "${pkgdir}/usr/lib/modprobe.d/nvidia.conf"
+}

Copied: nvidia/repos/staging-x86_64/fix-abi.patch (from rev 311194, 
nvidia/trunk/fix-abi.patch)
===
--- staging-x86_64/fix-abi.patch(rev 0)
+++ staging-x86_64/fix-abi.patch2017-11-30 19:17:07 UTC (rev 311195)
@@ -0,0 +1,12 @@
+diff -u -r kernel/nvidia-drm/nvidia-drm-fence.c 
kernel-patched/nvidia-drm/nvidia-drm-fence.c
+--- kernel/nvidia-drm/nvidia-drm-fence.c   2016-08-09 01:43:19.0 
+0200
 kernel-patched/nvidia-drm/nvidia-drm-fence.c   2016-08-25 
14:31:34.419655564 +0200
+@@ -325,7 +325,7 @@
+ struct nvidia_drm_gem_object *nv_gem;
+ };
+ 
+-static void nvidia_drm_gem_prime_soft_fence_event
++static void NVKMS_KAPI_CALL nvidia_drm_gem_prime_soft_fence_event
+ (
+ void *dataPtr,
+ NvU32 dataU32


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

2017-11-30 Thread Jan Steffens via arch-commits
Date: Thursday, November 30, 2017 @ 19:16:44
  Author: heftig
Revision: 270881

archrelease: copy trunk to community-staging-x86_64

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

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

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

Copied: acpi_call/repos/community-staging-x86_64/dkms.conf (from rev 270880, 
acpi_call/trunk/dkms.conf)
===
--- community-staging-x86_64/dkms.conf  (rev 0)
+++ community-staging-x86_64/dkms.conf  2017-11-30 19:16:44 UTC (rev 270881)
@@ -0,0 +1,9 @@
+PACKAGE_NAME="acpi_call"
+PACKAGE_VERSION="#MODULE_VERSION#"
+AUTOINSTALL="yes"
+
+MAKE[0]="make KVERSION=$kernelver"
+CLEAN="make clean"
+
+BUILT_MODULE_NAME[0]="acpi_call"
+DEST_MODULE_LOCATION[0]="/kernel/drivers/acpi"


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

2017-11-30 Thread Jan Steffens via arch-commits
Date: Thursday, November 30, 2017 @ 19:16:14
  Author: heftig
Revision: 270880

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: vhba-module/repos/community-staging-x86_64/60-vhba.rules (from rev 
270879, vhba-module/trunk/60-vhba.rules)
===
--- community-staging-x86_64/60-vhba.rules  (rev 0)
+++ community-staging-x86_64/60-vhba.rules  2017-11-30 19:16:14 UTC (rev 
270880)
@@ -0,0 +1 @@
+ACTION=="add", KERNEL=="vhba_ctl", NAME="vhba_ctl", MODE="0660", OWNER="root", 
GROUP="cdemu", TAG+="uaccess"

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

Copied: vhba-module/repos/community-staging-x86_64/dkms.conf (from rev 270879, 
vhba-module/trunk/dkms.conf)
===
--- community-staging-x86_64/dkms.conf  (rev 0)
+++ community-staging-x86_64/dkms.conf  2017-11-30 19:16:14 UTC (rev 270880)
@@ -0,0 +1,9 @@
+PACKAGE_NAME="vhba-module"
+PACKAGE_VERSION="#MODULE_VERSION#"
+AUTOINSTALL="yes"
+
+MAKE[0]="make KERNELRELEASE=$kernelver"
+CLEAN="make clean"
+
+BUILT_MODULE_NAME[0]="vhba"
+DEST_MODULE_LOCATION[0]="/kernel/drivers/scsi"


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

2017-11-30 Thread Jan Steffens via arch-commits
Date: Thursday, November 30, 2017 @ 19:15:49
  Author: heftig
Revision: 270879

archrelease: copy trunk to community-staging-x86_64

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

--+
 PKGBUILD |   42 ++
 linux-4.11.patch |   14 ++
 2 files changed, 56 insertions(+)

Copied: r8168/repos/community-staging-x86_64/PKGBUILD (from rev 270878, 
r8168/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-11-30 19:15:49 UTC (rev 270879)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+# Contributor: Bob Fanger < bfanger(at)gmail >
+# Contributor: Filip , Det < nimetonmaili(at)gmail >
+
+pkgname=r8168
+pkgver=8.045.08
+pkgrel=10
+pkgdesc="A kernel module for Realtek 8168 network cards"
+url="http://www.realtek.com.tw;
+license=("GPL")
+arch=('x86_64')
+depends=('glibc' 'linux')
+makedepends=('linux-headers')
+source=(https://github.com/mtorromeo/r8168/archive/$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('18161cb72fc872a9aed194514f7b8fb8b255b6fa6ed3d2dd459700eaad575f31')
+
+build() {
+   _kernver=$(pacman -Q linux | sed -r 's#.* ([0-9]+\.[0-9]+).*#\1#')
+   KERNEL_VERSION=$(cat 
/usr/lib/modules/extramodules-$_kernver-ARCH/version)
+   msg2 "Kernel = $KERNEL_VERSION"
+
+   cd "$pkgname-$pkgver"
+   # avoid using the Makefile directly -- it doesn't understand
+   # any kernel but the current.
+   make -C /usr/lib/modules/$KERNEL_VERSION/build \
+   SUBDIRS="$srcdir/$pkgname-$pkgver/src" \
+   EXTRA_CFLAGS="-DCONFIG_R8168_NAPI -DCONFIG_R8168_VLAN" \
+   modules
+}
+
+package() {
+   _kernver=$(pacman -Q linux | sed -r 's#.* ([0-9]+\.[0-9]+).*#\1#')
+   depends=("linux>=$_kernver" "linux<${_kernver/.*}.$(expr ${_kernver/*.} 
+ 1)")
+
+   cd "$pkgname-$pkgver"
+   install -Dt "$pkgdir/usr/lib/modules/extramodules-$_kernver-ARCH" -m644 
src/r8168.ko
+   find "$pkgdir" -name '*.ko' -exec gzip -n {} +
+
+   echo "blacklist r8169" | \
+   install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/modprobe.d/r8168.conf"
+}

Copied: r8168/repos/community-staging-x86_64/linux-4.11.patch (from rev 270878, 
r8168/trunk/linux-4.11.patch)
===
--- community-staging-x86_64/linux-4.11.patch   (rev 0)
+++ community-staging-x86_64/linux-4.11.patch   2017-11-30 19:15:49 UTC (rev 
270879)
@@ -0,0 +1,14 @@
+diff --git a/src/r8168_n.c b/src/r8168_n.c
+index 3c5a7e7..e2026bb 100755
+--- a/src/r8168_n.c
 b/src/r8168_n.c
+@@ -25732,7 +25732,9 @@ process_pkt:
+ if (rtl8168_rx_vlan_skb(tp, desc, skb) < 0)
+ rtl8168_rx_skb(tp, skb);
+ 
++#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 11, 0)
+ dev->last_rx = jiffies;
++#endif
+ RTLDEV->stats.rx_bytes += pkt_size;
+ RTLDEV->stats.rx_packets++;
+ }


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

2017-11-30 Thread Jan Steffens via arch-commits
Date: Thursday, November 30, 2017 @ 19:15:26
  Author: heftig
Revision: 311194

archrelease: copy trunk to staging-x86_64

Added:
  nvidia-304xx/repos/staging-x86_64/
  nvidia-304xx/repos/staging-x86_64/PKGBUILD
(from rev 311193, nvidia-304xx/trunk/PKGBUILD)
  nvidia-304xx/repos/staging-x86_64/disable-mtrr.patch
(from rev 311193, nvidia-304xx/trunk/disable-mtrr.patch)
  nvidia-304xx/repos/staging-x86_64/kernel-4.14.patch
(from rev 311193, nvidia-304xx/trunk/kernel-4.14.patch)

+
 PKGBUILD   |   71 +++
 disable-mtrr.patch |   24 +
 kernel-4.14.patch  |   29 
 3 files changed, 124 insertions(+)

Copied: nvidia-304xx/repos/staging-x86_64/PKGBUILD (from rev 311193, 
nvidia-304xx/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2017-11-30 19:15:26 UTC (rev 311194)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Baechler 
+
+pkgbase=nvidia-304xx
+pkgname=(nvidia-304xx nvidia-304xx-dkms)
+pkgver=304.137
+_extramodules=extramodules-4.14-ARCH
+pkgrel=10
+pkgdesc="NVIDIA drivers for linux, 304xx legacy branch"
+arch=('x86_64')
+url="http://www.nvidia.com/;
+makedepends=("nvidia-304xx-utils=${pkgver}" 'linux' 'linux-headers>=4.14' 
'linux-headers<4.15')
+conflicts=('nvidia')
+license=('custom')
+options=('!strip')
+source=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;
+'disable-mtrr.patch' 'kernel-4.14.patch')
+sha512sums=('4ab648647e4f3e2c352b2eab6454c264fe4728d8eb1264fafee2a4ab1a4ce59516abcf8490044d31e35309ea951e564cc217e13f7139a48bbf650a4238c5b87c'
+
'54e8825e523f11706890e09e476498f3a30f75ce4e350ff2ff8a1e1c3af574d9ccfb8903543766b6863d94cdfbf46e68cd3d33380867dd976cafc8dd2dd78774'
+
'ccaa40e085d985ec4280003e36dd06e60958ed1408867379fd21a68a18d48aa4be311bf9ad1e804f7a7245c90be98e919d2ec30f45d290f1cdb19c866bdb8a8d')
+
+_pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
+
+prepare() {
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}"
+# patches here
+
+patch -Np1 --no-backup-if-mismatch < "${srcdir}/kernel-4.14.patch"
+
+# FS#47092
+#patch -d kernel -Np1 --no-backup-if-mismatch < 
"${srcdir}/disable-mtrr.patch"
+
+cp -a kernel kernel-dkms
+}
+
+build() {
+_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+cd "${_pkg}"/kernel
+make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
+}
+
+package_nvidia-304xx() {
+pkgdesc="NVIDIA drivers for linux, 304xx legacy branch"
+depends=('linux>=4.14' 'linux<4.15' "nvidia-304xx-utils=${pkgver}" 'libgl')
+
+install -Dt "${pkgdir}/usr/lib/modules/${_extramodules}" -m644 \
+  "${srcdir}/${_pkg}/kernel"/nvidia.ko
+
+find "${pkgdir}" -name '*.ko' -exec gzip -n {} +
+
+echo "blacklist nouveau" |
+  install -Dm644 /dev/stdin "${pkgdir}/usr/lib/modprobe.d/nvidia.conf"
+}
+
+package_nvidia-304xx-dkms() {
+pkgdesc="NVIDIA driver sources for linux, 304xx legacy branch"
+depends=('dkms' "nvidia-304xx-utils=$pkgver" 'libgl')
+optdepends=('linux-headers: Build the module for Arch kernel'
+'linux-lts-headers: Build the module for LTS Arch kernel')
+conflicts+=('nvidia-304xx')
+
+cd ${_pkg}
+
+install -dm 755 "${pkgdir}"/usr/src
+cp -dr --no-preserve='ownership' kernel-dkms 
"${pkgdir}/usr/src/nvidia-${pkgver}"
+
+echo "blacklist nouveau" |
+  install -Dm644 /dev/stdin "${pkgdir}/usr/lib/modprobe.d/nvidia.conf"
+}

Copied: nvidia-304xx/repos/staging-x86_64/disable-mtrr.patch (from rev 311193, 
nvidia-304xx/trunk/disable-mtrr.patch)
===
--- staging-x86_64/disable-mtrr.patch   (rev 0)
+++ staging-x86_64/disable-mtrr.patch   2017-11-30 19:15:26 UTC (rev 311194)
@@ -0,0 +1,24 @@
+Author: Luca Boccassi 
+Description: Disable MTRR on kernel >= 4.3
+ From kernel 4.3 and newer (commit 2baa891e42d84) mtrr_add and mtrr_del are no
+ longer exported. The Nvidia kernel shim still uses it as of 304.131, causing
+ the module to error out when loading. Disable MTRR if running on 4.3 or 
greater
+ until upstream fixes it.
+--- a/nv-linux.h
 b/nv-linux.h
+@@ -256,6 +256,15 @@
+ #include 
+ #endif
+ 
++/*
++ * As of version 304.131, os-agp.c and os-mtrr.c still use deprecated
++ * kernel APIs for mtrr which are no longer exported since 4.3, causing
++ * the module to error out when loaded.
++ */
++#if LINUX_VERSION_CODE >= KERNEL_VERSION(4,3,0)
++#undef CONFIG_MTRR
++#endif
++
+ #if !defined(NV_VMWARE) && defined(CONFIG_MTRR)
+ #include 
+ #endif

Copied: nvidia-304xx/repos/staging-x86_64/kernel-4.14.patch (from rev 311193, 

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

2017-11-30 Thread Jan Steffens via arch-commits
Date: Thursday, November 30, 2017 @ 19:15:03
  Author: heftig
Revision: 270878

archrelease: copy trunk to community-staging-x86_64

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

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

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


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

2017-11-30 Thread Jan Steffens via arch-commits
Date: Thursday, November 30, 2017 @ 19:14:40
  Author: heftig
Revision: 270877

archrelease: copy trunk to community-staging-x86_64

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

-+
 PKGBUILD|   75 ++
 virtualbox-modules-arch.install |   18 +
 2 files changed, 93 insertions(+)

Copied: virtualbox-modules-arch/repos/community-staging-x86_64/PKGBUILD (from 
rev 270876, virtualbox-modules-arch/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-11-30 19:14:40 UTC (rev 270877)
@@ -0,0 +1,75 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+# Contributor: Ionut Biru 
+
+pkgbase=virtualbox-modules-arch
+pkgname=('virtualbox-host-modules-arch' 'virtualbox-guest-modules-arch')
+pkgver=5.2.2
+pkgrel=6
+_linux_major=4
+_linux_minor=14
+arch=('x86_64')
+url='http://virtualbox.org'
+license=('GPL')
+makedepends=("linux>=${_linux_major}.${_linux_minor}"
+ "linux<${_linux_major}.$((_linux_minor+1))"
+ "linux-headers>=${_linux_major}.${_linux_minor}"
+ "linux-headers<${_linux_major}.$((_linux_minor+1))"
+ "virtualbox-host-dkms>=$pkgver"
+ "virtualbox-guest-dkms>=$pkgver")
+
+_extramodules=extramodules-${_linux_major}.${_linux_minor}-ARCH
+
+package_virtualbox-host-modules-arch(){
+  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
+  pkgdesc='Virtualbox host kernel modules for Arch Kernel'
+  depends=("linux>=${_linux_major}.${_linux_minor}"
+   "linux<${_linux_major}.$((_linux_minor+1))")
+  replaces=('virtualbox-modules' 'virtualbox-host-modules')
+  conflicts=('virtualbox-modules' 'virtualbox-host-modules'
+'virtualbox-host-dkms')
+  provides=('VIRTUALBOX-HOST-MODULES')
+  #install=virtualbox-modules-arch.install
+
+  cd "/var/lib/dkms/vboxhost/${pkgver}_OSE/$_kernver/$CARCH/module"
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m644 *
+
+  # compress each module individually
+  find "$pkgdir" -name '*.ko' -exec gzip -n {} +
+
+  # systemd module loading
+  printf "vboxdrv\nvboxpci\nvboxnetadp\nvboxnetflt\n" |
+install -Dm644 /dev/stdin "$pkgdir/usr/lib/modules-load.d/$pkgname.conf"
+}
+
+package_virtualbox-guest-modules-arch(){
+  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
+  pkgdesc='Virtualbox guest kernel modules for Arch Kernel'
+  license=('GPL')
+  depends=("linux>=${_linux_major}.${_linux_minor}"
+   "linux<${_linux_major}.$((_linux_minor+1))")
+  replaces=('virtualbox-archlinux-modules' 'virtualbox-guest-modules')
+  conflicts=('virtualbox-archlinux-modules' 'virtualbox-guest-modules'
+ 'virtualbox-guest-dkms')
+  provides=('VIRTUALBOX-GUEST-MODULES')
+  #install=virtualbox-modules-arch.install
+
+  cd "/var/lib/dkms/vboxguest/${pkgver}_OSE/$_kernver/$CARCH/module"
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m644 *
+
+  # compress each module individually
+  find "$pkgdir" -name '*.ko' -exec gzip -n {} +
+
+  # systemd module loading
+  printf "vboxguest\nvboxsf\nvboxvideo\n" |
+install -Dm644 /dev/stdin "$pkgdir/usr/lib/modules-load.d/$pkgname.conf"
+}
+
+# vim:set ts=2 sw=2 et:
+
+
+
+
+
+
+

Copied: 
virtualbox-modules-arch/repos/community-staging-x86_64/virtualbox-modules-arch.install
 (from rev 270876, 
virtualbox-modules-arch/trunk/virtualbox-modules-arch.install)
===
--- community-staging-x86_64/virtualbox-modules-arch.install
(rev 0)
+++ community-staging-x86_64/virtualbox-modules-arch.install2017-11-30 
19:14:40 UTC (rev 270877)
@@ -0,0 +1,18 @@
+#!/bin/sh
+
+_depmod() {
+  EXTRAMODULES=extramodules-4.13-ARCH
+  depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+}
+
+post_install() {
+  _depmod
+}
+
+post_upgrade() {
+  _depmod
+}
+
+post_remove() {
+  _depmod
+}


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

2017-11-30 Thread Jan Steffens via arch-commits
Date: Thursday, November 30, 2017 @ 19:14:18
  Author: heftig
Revision: 270876

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: tp_smapi/repos/community-staging-x86_64/PKGBUILD (from rev 270875, 
tp_smapi/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-11-30 19:14:18 UTC (rev 270876)
@@ -0,0 +1,44 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: xduugu
+# Contributor: nh2
+# Contributor: Steven Davidovitz 
+# Contributor: Nick B 
+# Contributor: Christof Musik 
+# Contributor: Stefan Rupp 
+# Contributor: Ignas Anikevicius 
+
+pkgname=tp_smapi
+_pkgname=tp-smapi
+pkgver=0.42
+_extradir=/usr/lib/modules/extramodules-4.14-ARCH
+pkgrel=37
+pkgdesc="Modules for ThinkPad's SMAPI functionality"
+arch=('x86_64')
+url='https://github.com/evgeni/tp_smapi'
+license=('GPL')
+depends=('linux>=4.14' 'linux<4.15')
+makedepends=('linux-headers>=4.14' 'linux-headers<4.15')
+source=("$pkgname-$_pkgname-$pkgver.tar.gz::https://github.com/evgeni/$pkgname/archive/$_pkgname/$pkgver.tar.gz;)
+md5sums=('6a51d3aa459ad7a6ebfbb8c29527b3ee')
+
+build() {
+  cd $pkgname-$_pkgname-$pkgver
+
+  # https://bugs.archlinux.org/task/54975 (kernel has no 
_GLOBAL_OFFSET_TABLE_):
+  # Clear EXTRA_CFLAGS since it defaults to injecting CFLAGS and -fno-plt 
breaks the modules
+
+  make HDAPS=1 KVER="$(<$_extradir/version)" EXTRA_CFLAGS=
+}
+
+package() {
+  cd $pkgname-$_pkgname-$pkgver
+
+  # install kernel modules
+  find . -name "*.ko" -exec install -Dt "$pkgdir$_extradir" {} +
+
+  # compress kernel modules
+  find "$pkgdir" -name "*.ko" -exec gzip -n -9 {} +
+
+  # load module on startup
+  echo tp_smapi | install -Dm644 /dev/stdin 
"$pkgdir/usr/lib/modules-load.d/$pkgname.conf"
+}


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

2017-11-30 Thread Jan Steffens via arch-commits
Date: Thursday, November 30, 2017 @ 19:10:01
  Author: heftig
Revision: 311191

387.34-7: kernel 4.14.3

Modified:
  nvidia/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-30 19:08:47 UTC (rev 311190)
+++ PKGBUILD2017-11-30 19:10:01 UTC (rev 311191)
@@ -7,7 +7,7 @@
 pkgname=(nvidia nvidia-dkms)
 pkgver=387.34
 _extramodules=extramodules-4.14-ARCH
-pkgrel=6
+pkgrel=7
 pkgdesc="NVIDIA drivers for linux"
 arch=('x86_64')
 url="http://www.nvidia.com/;


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

2017-11-30 Thread Jan Steffens via arch-commits
Date: Thursday, November 30, 2017 @ 19:10:32
  Author: heftig
Revision: 311193

340.104-9: kernel 4.14.3

Modified:
  nvidia-340xx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-30 19:10:21 UTC (rev 311192)
+++ PKGBUILD2017-11-30 19:10:32 UTC (rev 311193)
@@ -6,7 +6,7 @@
 pkgname=(nvidia-340xx nvidia-340xx-dkms)
 pkgver=340.104
 _extramodules=extramodules-4.14-ARCH
-pkgrel=8
+pkgrel=9
 pkgdesc="NVIDIA drivers for linux, 340xx legacy branch"
 arch=('x86_64')
 url="http://www.nvidia.com/;


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

2017-11-30 Thread Jan Steffens via arch-commits
Date: Thursday, November 30, 2017 @ 19:10:21
  Author: heftig
Revision: 311192

304.137-10: kernel 4.14.3

Modified:
  nvidia-304xx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-30 19:10:01 UTC (rev 311191)
+++ PKGBUILD2017-11-30 19:10:21 UTC (rev 311192)
@@ -6,7 +6,7 @@
 pkgname=(nvidia-304xx nvidia-304xx-dkms)
 pkgver=304.137
 _extramodules=extramodules-4.14-ARCH
-pkgrel=9
+pkgrel=10
 pkgdesc="NVIDIA drivers for linux, 304xx legacy branch"
 arch=('x86_64')
 url="http://www.nvidia.com/;


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

2017-11-30 Thread Jan Steffens via arch-commits
Date: Thursday, November 30, 2017 @ 19:09:43
  Author: heftig
Revision: 270875

5.2.2-6: kernel 4.14.3

Modified:
  virtualbox-modules-arch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-30 19:09:22 UTC (rev 270874)
+++ PKGBUILD2017-11-30 19:09:43 UTC (rev 270875)
@@ -5,7 +5,7 @@
 pkgbase=virtualbox-modules-arch
 pkgname=('virtualbox-host-modules-arch' 'virtualbox-guest-modules-arch')
 pkgver=5.2.2
-pkgrel=5
+pkgrel=6
 _linux_major=4
 _linux_minor=14
 arch=('x86_64')


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

2017-11-30 Thread Jan Steffens via arch-commits
Date: Thursday, November 30, 2017 @ 19:09:22
  Author: heftig
Revision: 270874

20170610-23: kernel 4.14.3

Modified:
  vhba-module/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-30 19:06:47 UTC (rev 270873)
+++ PKGBUILD2017-11-30 19:09:22 UTC (rev 270874)
@@ -6,7 +6,7 @@
 pkgbase=vhba-module
 pkgname=(vhba-module vhba-module-dkms)
 pkgver=20170610
-pkgrel=22
+pkgrel=23
 pkgdesc="Kernel module that emulates SCSI devices"
 url="http://cdemu.sourceforge.net/;
 arch=(x86_64)


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

2017-11-30 Thread Antonio Rojas via arch-commits
Date: Thursday, November 30, 2017 @ 19:08:47
  Author: arojas
Revision: 311190

archrelease: copy trunk to extra-x86_64

Added:
  r/repos/extra-x86_64/PKGBUILD
(from rev 311189, r/trunk/PKGBUILD)
  r/repos/extra-x86_64/R.conf
(from rev 311189, r/trunk/R.conf)
  r/repos/extra-x86_64/r.desktop
(from rev 311189, r/trunk/r.desktop)
  r/repos/extra-x86_64/r.png
(from rev 311189, r/trunk/r.png)
Deleted:
  r/repos/extra-x86_64/PKGBUILD
  r/repos/extra-x86_64/R.conf
  r/repos/extra-x86_64/r.desktop
  r/repos/extra-x86_64/r.png

---+
 PKGBUILD  |  176 +---
 R.conf|4 -
 r.desktop |   22 +++
 3 files changed, 100 insertions(+), 102 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-30 19:07:57 UTC (rev 311189)
+++ PKGBUILD2017-11-30 19:08:47 UTC (rev 311190)
@@ -1,89 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren 
-# Contributor: Damir Perisa 
-# Contributor: K. Piche 
-
-pkgname=r
-pkgver=3.4.2
-pkgrel=3
-pkgdesc="Language and environment for statistical computing and graphics"
-arch=('i686' 'x86_64')
-license=('GPL')
-url='http://www.r-project.org/'
-depends=('blas' 'lapack' 'bzip2'  'libpng' 'libjpeg' 'libtiff'
- 'ncurses' 'pcre' 'readline' 'zlib' 'perl' 'gcc-libs'
- 'libxt' 'libxmu' 'pango' 'xz' 'desktop-file-utils' 'zip' 'unzip')
-makedepends=('jdk7-openjdk' 'gcc-fortran' 'tk')
-optdepends=('tk: tcl/tk interface' 'texlive-bin: latex sty files' 
'gcc-fortran: needed to compile some CRAN packages')
-backup=('etc/R/Makeconf' 'etc/R/Renviron' 'etc/R/ldpaths' 'etc/R/repositories' 
'etc/R/javaconf')
-options=('!makeflags' '!emptydirs')
-source=("http://cran.r-project.org/src/base/R-${pkgver%%.*}/R-${pkgver}.tar.gz;
-   'r.desktop'
-   'r.png'
-   'R.conf')
-sha1sums=('fb0e555bb49121e849436ce9e7e3bc4f7893664f'
-  'dd214eee232b7aced7366722ad416b6b39be8e1b'
-  'a69a07ec363440efc18ce0a7f2af103375dea978'
-  '43668da6cfd1b4455a99f23e79e2059294dddac9')
-
-prepare() {
-   cd R-${pkgver}
-   # set texmf dir correctly in makefile
-   sed -i 's|$(rsharedir)/texmf|${datarootdir}/texmf|' share/Makefile.in
-   # fix for texinfo 5.X
-   sed -i 's|test ${makeinfo_version_min} -lt 7|test ${makeinfo_version_min} 
-lt 0|' configure
-}
-
-build() {
-   cd R-${pkgver}
-   ./configure  --prefix=/usr \
-   --libdir=/usr/lib \
-   --sysconfdir=/etc/R \
-   --datarootdir=/usr/share \
- rsharedir=/usr/share/R/ \
- rincludedir=/usr/include/R/ \
- rdocdir=/usr/share/doc/R/ \
---with-x \
-   --enable-R-shlib \
---with-lapack \
-   --with-blas \
-F77=gfortran \
-   LIBnn=lib
-   make
-
-# make libRmath.so
-   cd src/nmath/standalone
-   make shared
-}
-
-package() {
-   cd R-${pkgver}
-   make DESTDIR="${pkgdir}" install
-
-# install libRmath.so
-   cd src/nmath/standalone
-   make DESTDIR="${pkgdir}" install
-
-   #  Fixup R wrapper scripts.
-   sed -i "s|${pkgdir} ||" "${pkgdir}/usr/bin/R"
-   rm "${pkgdir}/usr/lib/R/bin/R"
-   cd "${pkgdir}/usr/lib/R/bin"
-   ln -s ../../../bin/R
-
-  # install some freedesktop.org compatibility
-  install -Dm644 "${srcdir}/r.desktop" \
-   "${pkgdir}/usr/share/applications/r.desktop"
-  install -Dm644 "${srcdir}/r.png" \
-   "${pkgdir}/usr/share/pixmaps/r.png"
-
-  # move the config directory to /etc and create symlinks
-  install -d "${pkgdir}/etc/R"
-  cd "${pkgdir}/usr/lib/R/etc"
-  for i in *; do
-mv -f ${i} "${pkgdir}/etc/R"
-ln -s /etc/R/${i} ${i}
-  done
-
-  # Install ld.so.conf.d file to ensure other applications access the shared 
lib
-  install -Dm644 "${srcdir}/R.conf" "${pkgdir}/etc/ld.so.conf.d/R.conf"
-}

Copied: r/repos/extra-x86_64/PKGBUILD (from rev 311189, r/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-30 19:08:47 UTC (rev 311190)
@@ -0,0 +1,87 @@
+# $Id$
+# Maintainer: Ronald van Haren 
+# Contributor: Damir Perisa 
+# Contributor: K. Piche 
+
+pkgname=r
+pkgver=3.4.3
+pkgrel=1
+pkgdesc="Language and environment for statistical computing and graphics"
+arch=('x86_64')
+license=('GPL')
+url='https://www.r-project.org/'
+depends=('blas' 'lapack' 'bzip2'  'libpng' 'libjpeg' 'libtiff'
+ 'ncurses' 'pcre' 'readline' 'zlib' 'perl' 'gcc-libs'
+ 'libxt' 'libxmu' 'pango' 'xz' 'zip' 'unzip' 'curl' 'icu')
+makedepends=('jdk7-openjdk' 'gcc-fortran' 'tk')
+optdepends=('tk: tcl/tk interface' 'texlive-bin: latex sty files' 
'gcc-fortran: needed to compile some CRAN packages')
+backup=('etc/R/Makeconf' 'etc/R/Renviron' 'etc/R/ldpaths' 'etc/R/repositories' 
'etc/R/javaconf')

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

2017-11-30 Thread Antonio Rojas via arch-commits
Date: Thursday, November 30, 2017 @ 19:07:57
  Author: arojas
Revision: 311189

Update to 3.4.3

Modified:
  r/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-30 18:59:38 UTC (rev 311188)
+++ PKGBUILD2017-11-30 19:07:57 UTC (rev 311189)
@@ -4,24 +4,24 @@
 # Contributor: K. Piche 
 
 pkgname=r
-pkgver=3.4.2
-pkgrel=3
+pkgver=3.4.3
+pkgrel=1
 pkgdesc="Language and environment for statistical computing and graphics"
 arch=('x86_64')
 license=('GPL')
-url='http://www.r-project.org/'
+url='https://www.r-project.org/'
 depends=('blas' 'lapack' 'bzip2'  'libpng' 'libjpeg' 'libtiff'
  'ncurses' 'pcre' 'readline' 'zlib' 'perl' 'gcc-libs'
- 'libxt' 'libxmu' 'pango' 'xz' 'desktop-file-utils' 'zip' 'unzip')
+ 'libxt' 'libxmu' 'pango' 'xz' 'zip' 'unzip' 'curl' 'icu')
 makedepends=('jdk7-openjdk' 'gcc-fortran' 'tk')
 optdepends=('tk: tcl/tk interface' 'texlive-bin: latex sty files' 
'gcc-fortran: needed to compile some CRAN packages')
 backup=('etc/R/Makeconf' 'etc/R/Renviron' 'etc/R/ldpaths' 'etc/R/repositories' 
'etc/R/javaconf')
 options=('!makeflags' '!emptydirs')
-source=("http://cran.r-project.org/src/base/R-${pkgver%%.*}/R-${pkgver}.tar.gz;
+source=("https://cran.r-project.org/src/base/R-${pkgver%%.*}/R-${pkgver}.tar.gz;
'r.desktop'
'r.png'
'R.conf')
-sha1sums=('fb0e555bb49121e849436ce9e7e3bc4f7893664f'
+sha1sums=('537d481888f20d385b3039f2f2b0c49b7b0fb5de'
   'dd214eee232b7aced7366722ad416b6b39be8e1b'
   'a69a07ec363440efc18ce0a7f2af103375dea978'
   '43668da6cfd1b4455a99f23e79e2059294dddac9')
@@ -30,8 +30,6 @@
cd R-${pkgver}
# set texmf dir correctly in makefile
sed -i 's|$(rsharedir)/texmf|${datarootdir}/texmf|' share/Makefile.in
-   # fix for texinfo 5.X
-   sed -i 's|test ${makeinfo_version_min} -lt 7|test ${makeinfo_version_min} 
-lt 0|' configure
 }
 
 build() {


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

2017-11-30 Thread Jan Steffens via arch-commits
Date: Thursday, November 30, 2017 @ 19:06:32
  Author: heftig
Revision: 270870

1.1.0-82: kernel 4.14.3

Modified:
  acpi_call/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-30 18:52:41 UTC (rev 270869)
+++ PKGBUILD2017-11-30 19:06:32 UTC (rev 270870)
@@ -6,7 +6,7 @@
 pkgbase=acpi_call
 pkgname=(acpi_call acpi_call-dkms)
 pkgver=1.1.0
-pkgrel=81
+pkgrel=82
 pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
 url='https://github.com/mkottman/acpi_call'
 arch=('x86_64')


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

2017-11-30 Thread Jan Steffens via arch-commits
Date: Thursday, November 30, 2017 @ 19:06:43
  Author: heftig
Revision: 270872

8.045.08-10: kernel 4.14.3

Modified:
  r8168/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-30 19:06:38 UTC (rev 270871)
+++ PKGBUILD2017-11-30 19:06:43 UTC (rev 270872)
@@ -5,7 +5,7 @@
 
 pkgname=r8168
 pkgver=8.045.08
-pkgrel=9
+pkgrel=10
 pkgdesc="A kernel module for Realtek 8168 network cards"
 url="http://www.realtek.com.tw;
 license=("GPL")


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

2017-11-30 Thread Jan Steffens via arch-commits
Date: Thursday, November 30, 2017 @ 19:06:47
  Author: heftig
Revision: 270873

0.42-37: kernel 4.14.3

Modified:
  tp_smapi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-30 19:06:43 UTC (rev 270872)
+++ PKGBUILD2017-11-30 19:06:47 UTC (rev 270873)
@@ -11,7 +11,7 @@
 _pkgname=tp-smapi
 pkgver=0.42
 _extradir=/usr/lib/modules/extramodules-4.14-ARCH
-pkgrel=36
+pkgrel=37
 pkgdesc="Modules for ThinkPad's SMAPI functionality"
 arch=('x86_64')
 url='https://github.com/evgeni/tp_smapi'


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

2017-11-30 Thread Jan Steffens via arch-commits
Date: Thursday, November 30, 2017 @ 19:06:38
  Author: heftig
Revision: 270871

0.8-88: kernel 4.14.3

Modified:
  bbswitch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-30 19:06:32 UTC (rev 270870)
+++ PKGBUILD2017-11-30 19:06:38 UTC (rev 270871)
@@ -6,7 +6,7 @@
 pkgbase=bbswitch
 pkgname=(bbswitch bbswitch-dkms)
 pkgver=0.8
-pkgrel=87
+pkgrel=88
 pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus 
laptops"
 arch=('x86_64')
 url="http://github.com/Bumblebee-Project/bbswitch;


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

2017-11-30 Thread Jan Steffens via arch-commits
Date: Thursday, November 30, 2017 @ 18:57:24
  Author: heftig
Revision: 311187

archrelease: copy trunk to staging-x86_64

Added:
  linux/repos/staging-x86_64/
  
linux/repos/staging-x86_64/0001-platform-x86-hp-wmi-Fix-tablet-mode-detection-for-co.patch
(from rev 311186, 
linux/trunk/0001-platform-x86-hp-wmi-Fix-tablet-mode-detection-for-co.patch)
  linux/repos/staging-x86_64/60-linux.hook
(from rev 311186, linux/trunk/60-linux.hook)
  linux/repos/staging-x86_64/90-linux.hook
(from rev 311186, linux/trunk/90-linux.hook)
  linux/repos/staging-x86_64/PKGBUILD
(from rev 311186, linux/trunk/PKGBUILD)
  linux/repos/staging-x86_64/config
(from rev 311186, linux/trunk/config)
  linux/repos/staging-x86_64/linux.install
(from rev 311186, linux/trunk/linux.install)
  linux/repos/staging-x86_64/linux.preset
(from rev 311186, linux/trunk/linux.preset)

-+
 0001-platform-x86-hp-wmi-Fix-tablet-mode-detection-for-co.patch |   38 
 60-linux.hook   |   12 
 90-linux.hook   |   11 
 PKGBUILD|  236 
 config  | 8437 
++
 linux.install   |   10 
 linux.preset|   14 
 7 files changed, 8758 insertions(+)

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


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

2017-11-30 Thread Pierre Neidhardt via arch-commits
Date: Thursday, November 30, 2017 @ 18:52:41
  Author: ambrevar
Revision: 270869

archrelease: copy trunk to community-any

Added:
  qutebrowser/repos/community-any/PKGBUILD
(from rev 270868, qutebrowser/trunk/PKGBUILD)
Deleted:
  qutebrowser/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-30 18:52:21 UTC (rev 270868)
+++ PKGBUILD2017-11-30 18:52:41 UTC (rev 270869)
@@ -1,54 +0,0 @@
-# Maintainer: Pierre Neidhardt 
-# Contributor: Florian Bruhin (The Compiler) 
-
-pkgname=qutebrowser
-pkgver=1.0.3
-_pkgver=1.0.3-1
-pkgrel=2
-pkgdesc="A keyboard-driven, vim-like browser based on PyQt5"
-arch=("any")
-url="http://www.qutebrowser.org/;
-license=("GPL")
-depends=("python-attrs" "python-jinja" "python-pygments" "python-pypeg2"
-   "python-pyqt5>=5.7" "python-yaml" "qt5-base>=5.7.1" "qt5-webengine")
-makedepends=("asciidoc")
-optdepends=("gst-libav: media playback"
-   "gst-plugins-base: media playback"
-   "gst-plugins-good: media playback"
-   "gst-plugins-bad: media playback"
-   "gst-plugins-ugly: media playback"
-   "pdfjs: displaying PDF in-browser"
-   "qt5-webkit: alternative backend")
-options=(!emptydirs)
-source=(
-   
"https://github.com/qutebrowser/qutebrowser/releases/download/v$pkgver/qutebrowser-$_pkgver.tar.gz;
-   
"https://github.com/qutebrowser/qutebrowser/releases/download/v$pkgver/qutebrowser-$_pkgver.tar.gz.asc;)
-validpgpkeys=("E04E560002401B8EF0E76F0A916EB0C8FD55A072")
-sha256sums=('577dc83ab7f5ae75026eebc77cde48cb3efb47bfab80a681e5920be7c583a611'
-'SKIP')
-
-build() {
-   cd "$srcdir/$pkgname-$pkgver"
-   a2x -f manpage doc/qutebrowser.1.asciidoc
-   python setup.py build
-}
-
-package() {
-   cd "$srcdir/$pkgname-$pkgver"
-   python setup.py install --root="$pkgdir/" --optimize=1
-   install -Dm644 doc/qutebrowser.1 
"$pkgdir/usr/share/man/man1/qutebrowser.1"
-   install -Dm644 misc/qutebrowser.desktop \
-   "$pkgdir/usr/share/applications/qutebrowser.desktop"
-   for i in 16 24 32 48 64 128 256 512; do
-   install -Dm644 "icons/qutebrowser-${i}x$i.png" \
-   
"$pkgdir/usr/share/icons/hicolor/${i}x$i/apps/qutebrowser.png"
-   done
-   install -Dm644 icons/qutebrowser.svg \
-   "$pkgdir/usr/share/icons/hicolor/scalable/apps/qutebrowser.svg"
-   install -Dm755 -t "$pkgdir/usr/share/qutebrowser/userscripts/" 
misc/userscripts/*
-
-   # TODO: When next release of Qutebrowser comes with a Makefile, use it 
instead
-   # of installing scripts manually.
-   install -Dm755 -t "$pkgdir/usr/share/qutebrowser/scripts/" \
-   
scripts/{importer.py,install_dict.py,keytester.py,open_url_in_instance.sh,testbrowser.py,utils.py}
-}

Copied: qutebrowser/repos/community-any/PKGBUILD (from rev 270868, 
qutebrowser/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-30 18:52:41 UTC (rev 270869)
@@ -0,0 +1,53 @@
+# Maintainer: Pierre Neidhardt 
+# Contributor: Florian Bruhin (The Compiler) 
+
+pkgname=qutebrowser
+pkgver=1.0.4
+pkgrel=1
+pkgdesc="A keyboard-driven, vim-like browser based on PyQt5"
+arch=("any")
+url="http://www.qutebrowser.org/;
+license=("GPL")
+depends=("python-attrs" "python-jinja" "python-pygments" "python-pypeg2"
+   "python-pyqt5>=5.7" "python-yaml" "qt5-base>=5.7.1" "qt5-webengine")
+makedepends=("asciidoc")
+optdepends=("gst-libav: media playback"
+   "gst-plugins-base: media playback"
+   "gst-plugins-good: media playback"
+   "gst-plugins-bad: media playback"
+   "gst-plugins-ugly: media playback"
+   "pdfjs: displaying PDF in-browser"
+   "qt5-webkit: alternative backend")
+options=(!emptydirs)
+source=(
+   
"https://github.com/qutebrowser/qutebrowser/releases/download/v$pkgver/qutebrowser-$pkgver.tar.gz;
+   
"https://github.com/qutebrowser/qutebrowser/releases/download/v$pkgver/qutebrowser-$pkgver.tar.gz.asc;)
+validpgpkeys=("E04E560002401B8EF0E76F0A916EB0C8FD55A072")
+sha256sums=('79d2c1bb3372ff1f08b88e22ae0581ff1de67b3b818e896bac6e9190f2cb1f7d'
+'SKIP')
+
+build() {
+   cd "$srcdir/$pkgname-$pkgver"
+   a2x -f manpage doc/qutebrowser.1.asciidoc
+   python setup.py build
+}
+
+package() {
+   cd "$srcdir/$pkgname-$pkgver"
+   python setup.py install --root="$pkgdir/" --optimize=1
+   install -Dm644 doc/qutebrowser.1 
"$pkgdir/usr/share/man/man1/qutebrowser.1"
+   install -Dm644 misc/qutebrowser.desktop \
+   "$pkgdir/usr/share/applications/qutebrowser.desktop"
+   for i 

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

2017-11-30 Thread Pierre Neidhardt via arch-commits
Date: Thursday, November 30, 2017 @ 18:52:21
  Author: ambrevar
Revision: 270868

upgpkg: qutebrowser 1.0.4-1

Modified:
  qutebrowser/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-30 18:51:04 UTC (rev 270867)
+++ PKGBUILD2017-11-30 18:52:21 UTC (rev 270868)
@@ -2,9 +2,8 @@
 # Contributor: Florian Bruhin (The Compiler) 
 
 pkgname=qutebrowser
-pkgver=1.0.3
-_pkgver=1.0.3-1
-pkgrel=2
+pkgver=1.0.4
+pkgrel=1
 pkgdesc="A keyboard-driven, vim-like browser based on PyQt5"
 arch=("any")
 url="http://www.qutebrowser.org/;
@@ -21,10 +20,10 @@
"qt5-webkit: alternative backend")
 options=(!emptydirs)
 source=(
-   
"https://github.com/qutebrowser/qutebrowser/releases/download/v$pkgver/qutebrowser-$_pkgver.tar.gz;
-   
"https://github.com/qutebrowser/qutebrowser/releases/download/v$pkgver/qutebrowser-$_pkgver.tar.gz.asc;)
+   
"https://github.com/qutebrowser/qutebrowser/releases/download/v$pkgver/qutebrowser-$pkgver.tar.gz;
+   
"https://github.com/qutebrowser/qutebrowser/releases/download/v$pkgver/qutebrowser-$pkgver.tar.gz.asc;)
 validpgpkeys=("E04E560002401B8EF0E76F0A916EB0C8FD55A072")
-sha256sums=('577dc83ab7f5ae75026eebc77cde48cb3efb47bfab80a681e5920be7c583a611'
+sha256sums=('79d2c1bb3372ff1f08b88e22ae0581ff1de67b3b818e896bac6e9190f2cb1f7d'
 'SKIP')
 
 build() {


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

2017-11-30 Thread Andrzej Giniewicz via arch-commits
Date: Thursday, November 30, 2017 @ 18:51:04
  Author: aginiewicz
Revision: 270867

archrelease: copy trunk to community-x86_64

Added:
  blosc/repos/community-x86_64/PKGBUILD
(from rev 270866, blosc/trunk/PKGBUILD)
Deleted:
  blosc/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-30 18:50:54 UTC (rev 270866)
+++ PKGBUILD2017-11-30 18:51:04 UTC (rev 270867)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Andrzej Giniewicz 
-
-pkgname=blosc
-pkgver=1.12.1
-pkgrel=1
-pkgdesc='A blocking, shuffling and loss-less compression library.'
-arch=('i686' 'x86_64')
-url='http://blosc.org/'
-license=('BSD')
-depends=('lz4' 'snappy' 'zlib' 'zstd')
-makedepends=('cmake')
-options=(staticlibs)
-source=("https://github.com/Blosc/c-blosc/archive/v${pkgver}.tar.gz;)
-md5sums=('6fa4ecb7ef70803a190dd386bf4a2e93')
-
-build() {
-  cd "${srcdir}"
-  rm -rf build
-  mkdir build
-  cd build
-
-  cmake -DCMAKE_INSTALL_PREFIX="/usr" \
--DPREFER_EXTERNAL_LZ4="ON" \
--DBUILD_TESTS="OFF" \
-../c-blosc-${pkgver}
-
-  make
-}
-
-package() {
-  cd "${srcdir}/build"
-
-  make DESTDIR="${pkgdir}" install
-
-  install -Dm644 "$srcdir"/c-blosc-${pkgver}/LICENSES/BLOSC.txt 
"$pkgdir"/usr/share/licenses/$pkgname/LICENCE
-}

Copied: blosc/repos/community-x86_64/PKGBUILD (from rev 270866, 
blosc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-30 18:51:04 UTC (rev 270867)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Andrzej Giniewicz 
+
+pkgname=blosc
+pkgver=1.12.1
+pkgrel=2
+pkgdesc='A blocking, shuffling and loss-less compression library.'
+arch=('x86_64')
+url='http://blosc.org/'
+license=('BSD')
+depends=('snappy' 'zstd')
+makedepends=('cmake')
+options=(staticlibs)
+source=("https://github.com/Blosc/c-blosc/archive/v${pkgver}.tar.gz;)
+md5sums=('6fa4ecb7ef70803a190dd386bf4a2e93')
+
+build() {
+  cd "${srcdir}"
+  rm -rf build
+  mkdir build
+  cd build
+
+  cmake -DCMAKE_INSTALL_PREFIX="/usr" \
+-DPREFER_EXTERNAL_LZ4="ON" \
+   -DPREFER_EXTERNAL_ZLIB="ON" \
+   -DPREFER_EXTERNAL_SNAPPY="ON" \
+   -DPREFER_EXTERNAL_ZSTD="ON" \
+-DBUILD_TESTS="OFF" \
+../c-blosc-${pkgver}
+
+  make
+}
+
+package() {
+  cd "${srcdir}/build"
+
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 "$srcdir"/c-blosc-${pkgver}/LICENSES/BLOSC.txt 
"$pkgdir"/usr/share/licenses/$pkgname/LICENCE
+}


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

2017-11-30 Thread Andrzej Giniewicz via arch-commits
Date: Thursday, November 30, 2017 @ 18:50:54
  Author: aginiewicz
Revision: 270866

upgpkg: blosc 1.12.1-2

blosc: use external zlib, snappy and zstd

Modified:
  blosc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-30 18:43:32 UTC (rev 270865)
+++ PKGBUILD2017-11-30 18:50:54 UTC (rev 270866)
@@ -3,12 +3,12 @@
 
 pkgname=blosc
 pkgver=1.12.1
-pkgrel=1
+pkgrel=2
 pkgdesc='A blocking, shuffling and loss-less compression library.'
 arch=('x86_64')
 url='http://blosc.org/'
 license=('BSD')
-depends=('lz4' 'snappy' 'zlib' 'zstd')
+depends=('snappy' 'zstd')
 makedepends=('cmake')
 options=(staticlibs)
 source=("https://github.com/Blosc/c-blosc/archive/v${pkgver}.tar.gz;)
@@ -22,6 +22,9 @@
 
   cmake -DCMAKE_INSTALL_PREFIX="/usr" \
 -DPREFER_EXTERNAL_LZ4="ON" \
+   -DPREFER_EXTERNAL_ZLIB="ON" \
+   -DPREFER_EXTERNAL_SNAPPY="ON" \
+   -DPREFER_EXTERNAL_ZSTD="ON" \
 -DBUILD_TESTS="OFF" \
 ../c-blosc-${pkgver}
 


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

2017-11-30 Thread Jan Steffens via arch-commits
Date: Thursday, November 30, 2017 @ 18:47:13
  Author: heftig
Revision: 311186

4.14.3-1

Modified:
  linux/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-30 18:12:35 UTC (rev 311185)
+++ PKGBUILD2017-11-30 18:47:13 UTC (rev 311186)
@@ -5,7 +5,7 @@
 pkgbase=linux   # Build stock -ARCH kernel
 #pkgbase=linux-custom   # Build kernel with a different name
 _srcname=linux-4.14
-pkgver=4.14.2
+pkgver=4.14.3
 pkgrel=1
 arch=('x86_64')
 url="https://www.kernel.org/;
@@ -29,7 +29,7 @@
 )
 sha256sums=('f81d59477e90a130857ce18dc02f4fbe5725854911db1e7ba770c7cd350f96a7'
 'SKIP'
-'2dc86272e55d31c55bdeaa47b3d44fbd6235a396e37d82c2b47aa27f6ba82ee3'
+'e13995c11d0c2d3379c887666dbfaca619200fb8853db6d5d67f97d47fd959b7'
 'SKIP'
 'a68e94064f040d60e8e4c3380efeee085b54d252d527e960dd17ac688505d5b6'
 'ae2e95db94ef7176207c690224169594d49445e04249d2499e9d2fbc117a0b21'


[arch-commits] Commit in sdlmame/repos/community-x86_64 (7 files)

2017-11-30 Thread Antonio Rojas via arch-commits
Date: Thursday, November 30, 2017 @ 18:43:32
  Author: arojas
Revision: 270865

archrelease: copy trunk to community-x86_64

Added:
  sdlmame/repos/community-x86_64/PKGBUILD
(from rev 270864, sdlmame/trunk/PKGBUILD)
  sdlmame/repos/community-x86_64/extras.tar.gz
(from rev 270864, sdlmame/trunk/extras.tar.gz)
  sdlmame/repos/community-x86_64/sdlmame.sh
(from rev 270864, sdlmame/trunk/sdlmame.sh)
Deleted:
  sdlmame/repos/community-x86_64/PKGBUILD
  sdlmame/repos/community-x86_64/extras.tar.gz
  sdlmame/repos/community-x86_64/sdlmame.install
  sdlmame/repos/community-x86_64/sdlmame.sh

-+
 PKGBUILD|  187 ++
 sdlmame.install |8 --
 sdlmame.sh  |  112 
 3 files changed, 148 insertions(+), 159 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-30 18:42:51 UTC (rev 270864)
+++ PKGBUILD2017-11-30 18:43:32 UTC (rev 270865)
@@ -1,95 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: robb_force 
-# Maintainer: JJDaNiMoTh 
-
-pkgname=sdlmame
-pkgver=0.191
-pkgrel=1
-pkgdesc="A port of the popular Multiple Arcade Machine Emulator using SDL with 
OpenGL support."
-url="http://mamedev.org/;
-license=('GPL2')
-arch=('i686' 'x86_64')
-depends=('sdl2' 'libxinerama' 'sdl2_ttf' 'alsa-lib' 'qt5-base')
-makedepends=('unzip' 'nasm' 'mesa' 'glu' 'wget' 'python2')
-install=sdlmame.install
-source=("https://github.com/mamedev/mame/releases/download/mame${pkgver/./}/mame${pkgver/./}s.zip;
-   "sdlmame.sh"
-   "extras.tar.gz"
-   ${_patches})
-sha256sums=('60ae6173deda8ba20a2f2520b516e99ae922f27138feef1d7ffaf77a8f88960a'
-'06e7f5dca2255a16b3336a6d2b9af8276a8d8c672635aed83e9e8f636db3cef7'
-'5ba55ce8c33743207a12a7509efdf13dd98f5d87fa12f0e471ea523d3ae4f4ac')
-
-prepare() {
-  cd "$srcdir"/
-  echo "A" | unzip mame.zip || true
-}
-
-build() {
-  cd "$srcdir"
-  make \
-NOWERROR=1 \
-OPTIMIZE=2 \
-PYTHON_EXECUTABLE=/usr/bin/python2 \
-TOOLS=1 \
-ARCHOPTS=-flifetime-dse=1 \
--j1
-}
-
-package() {
-  cd "$srcdir"
-  # Install the sdlmame script
-  install -Dm755 "$srcdir"/${pkgname}.sh "$pkgdir"/usr/bin/${pkgname}
-
-  # Install the applications and the UI font in /usr/share
-  install -Dm755 mame "$pkgdir"/usr/lib/${pkgname}/${pkgname} || \
-  install -Dm755 mame64 "$pkgdir"/usr/lib/${pkgname}/${pkgname}
-
-  install -m755 chdman "$pkgdir"/usr/lib/${pkgname}/chdman
-  install -m755 jedutil "$pkgdir"/usr/lib/${pkgname}/jedutil
-  install -m755 regrep "$pkgdir"/usr/lib/${pkgname}/regrep
-  install -m755 romcmp "$pkgdir"/usr/lib/${pkgname}/romcmp
-#  install -m755 testkeys "$pkgdir"/usr/lib/${pkgname}/testkeys
-  install -m755 src2html "$pkgdir"/usr/lib/${pkgname}/src2html
-  install -m755 srcclean "$pkgdir"/usr/lib/${pkgname}/srcclean
-  install -m755 ldverify "$pkgdir"/usr/lib/${pkgname}/ldverify
-  install -m755 ldresample "$pkgdir"/usr/lib/${pkgname}/ldresample
-
-  # ln binaries
-  install -dm755 "$pkgdir"/usr/share/${pkgname}
-  for i in $pkgname chdman jedutil regrep romcmp testkeys src2html srcclean 
ldverify ldresample; do
-ln -s /usr/lib/$pkgname/$i "$pkgdir"/usr/share/$pkgname/$i
-  done
-
-  # Install the extra bits
-  install -d "$pkgdir"/usr/share/${pkgname}/{artwork,ctrlr,hash,keymaps,shader}
-  install -d "$pkgdir"/usr/share/man/man1
-  install -d "$pkgdir"/usr/share/man/man6
-  install -m644 src/osd/modules/opengl/shader/glsl*.*h 
"$pkgdir"/usr/share/${pkgname}/shader/
-#  install -m644 src/osd/sdl/man/*.1* "$pkgdir"/usr/share/man/man1/
-#  install -m644 src/osd/sdl/man/*.6* "$pkgdir"/usr/share/man/man6/
-
-  cp -a "$srcdir"/artwork/* "$pkgdir"/usr/share/${pkgname}/artwork/
-  install -m644 "$srcdir"/ctrlr/* "$pkgdir"/usr/share/${pkgname}/ctrlr/
-  install -m644 keymaps/* "$pkgdir"/usr/share/${pkgname}/keymaps/
-  install -m644 hash/* "$pkgdir"/usr/share/${pkgname}/hash/
-  cp -a bgfx "$pkgdir"/usr/share/${pkgname}/bgfx
-  cp -a plugins "$pkgdir"/usr/share/${pkgname}/plugins
-  cp -a language "$pkgdir"/usr/share/${pkgname}/language
-
-  # Include the license
-  install -Dm644 docs/LICENSE "$pkgdir"/usr/share/licenses/${pkgname}/LICENSE
-
-  # FS#28203
-  sed -i 's|KEYCODE_2_PAD|KEYCODE_2PAD|' 
"$pkgdir"/usr/share/sdlmame/ctrlr/*.cfg
-  sed -i 's|KEYCODE_4_PAD|KEYCODE_4PAD|' 
"$pkgdir"/usr/share/sdlmame/ctrlr/*.cfg
-  sed -i 's|KEYCODE_6_PAD|KEYCODE_6PAD|' 
"$pkgdir"/usr/share/sdlmame/ctrlr/*.cfg
-  sed -i 's|KEYCODE_8_PAD|KEYCODE_8PAD|' 
"$pkgdir"/usr/share/sdlmame/ctrlr/*.cfg
-
-  find "$pkgdir" -type f -exec strip {} \;
-
-  # documentation
-  install -dm0755 "$pkgdir"/usr/share/doc
-  cp -a docs "$pkgdir"/usr/share/doc/$pkgname
-}

Copied: sdlmame/repos/community-x86_64/PKGBUILD (from rev 270864, 
sdlmame/trunk/PKGBUILD)

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

2017-11-30 Thread Antonio Rojas via arch-commits
Date: Thursday, November 30, 2017 @ 18:42:51
  Author: arojas
Revision: 270864

Update to 0.192

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

-+
 PKGBUILD|   13 +
 sdlmame.install |8 
 2 files changed, 5 insertions(+), 16 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-11-30 18:35:57 UTC (rev 270863)
+++ PKGBUILD2017-11-30 18:42:51 UTC (rev 270864)
@@ -1,10 +1,11 @@
 # $Id$
-# Maintainer: Sergej Pupykin 
+# Maintainer:
+# Contributor: Sergej Pupykin 
 # Contributor: robb_force 
-# Maintainer: JJDaNiMoTh 
+# Contributor: JJDaNiMoTh 
 
 pkgname=sdlmame
-pkgver=0.191
+pkgver=0.192
 pkgrel=1
 pkgdesc="A port of the popular Multiple Arcade Machine Emulator using SDL with 
OpenGL support."
 url="http://mamedev.org/;
@@ -12,22 +13,19 @@
 arch=('x86_64')
 depends=('sdl2' 'libxinerama' 'sdl2_ttf' 'alsa-lib' 'qt5-base')
 makedepends=('unzip' 'nasm' 'mesa' 'glu' 'wget' 'python2')
-install=sdlmame.install
 
source=("https://github.com/mamedev/mame/releases/download/mame${pkgver/./}/mame${pkgver/./}s.zip;
"sdlmame.sh"
"extras.tar.gz"
${_patches})
-sha256sums=('60ae6173deda8ba20a2f2520b516e99ae922f27138feef1d7ffaf77a8f88960a'
+sha256sums=('dddadc42fdc5be7652108633d930258faf1d900ee546def6b41a5bc7d1979da3'
 '06e7f5dca2255a16b3336a6d2b9af8276a8d8c672635aed83e9e8f636db3cef7'
 '5ba55ce8c33743207a12a7509efdf13dd98f5d87fa12f0e471ea523d3ae4f4ac')
 
 prepare() {
-  cd "$srcdir"/
   echo "A" | unzip mame.zip || true
 }
 
 build() {
-  cd "$srcdir"
   make \
 NOWERROR=1 \
 OPTIMIZE=2 \
@@ -38,7 +36,6 @@
 }
 
 package() {
-  cd "$srcdir"
   # Install the sdlmame script
   install -Dm755 "$srcdir"/${pkgname}.sh "$pkgdir"/usr/bin/${pkgname}
 

Deleted: sdlmame.install
===
--- sdlmame.install 2017-11-30 18:35:57 UTC (rev 270863)
+++ sdlmame.install 2017-11-30 18:42:51 UTC (rev 270864)
@@ -1,8 +0,0 @@
-post_install()
-{
-  echo " SDLMAME and the additional MAME utilities have been installed"
-  echo " in /usr/share/sdlmame However, SDLMAME can be run by"
-  echo " typing sdlmame and it's options. Try running SDLMAME with"
-  echo " these options:"
-  echo " sdlmame  -nowindow -noswitchres"
-}


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

2017-11-30 Thread Alexander Rødseth via arch-commits
Date: Thursday, November 30, 2017 @ 18:35:57
  Author: arodseth
Revision: 270863

archrelease: copy trunk to community-any

Added:
  wordpress/repos/community-any/PKGBUILD
(from rev 270862, wordpress/trunk/PKGBUILD)
  wordpress/repos/community-any/password_reset_exploit.patch
(from rev 270862, wordpress/trunk/password_reset_exploit.patch)
  wordpress/repos/community-any/wordpress.install
(from rev 270862, wordpress/trunk/wordpress.install)
Deleted:
  wordpress/repos/community-any/PKGBUILD
  wordpress/repos/community-any/password_reset_exploit.patch
  wordpress/repos/community-any/wordpress.install

--+
 PKGBUILD |   76 -
 password_reset_exploit.patch |   66 +--
 wordpress.install|   42 +++---
 3 files changed, 92 insertions(+), 92 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-30 18:35:33 UTC (rev 270862)
+++ PKGBUILD2017-11-30 18:35:57 UTC (rev 270863)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Thomas Dziedzic 
-# Contributor: Jose Valecillos 
-# Contributor: Kaos 
-# Contributor: Christopher Rogers 
-
-pkgname=wordpress
-pkgver=4.9
-pkgrel=1
-pkgdesc='Blog tool and publishing platform'
-arch=('any')
-url='https://wordpress.org/'
-license=('GPL')
-depends=('php')
-optdepends=('nginx: Web server for serving Wordpress'
-'apache: Web server for serving Wordpress'
-'mariadb: Database server')
-options=('emptydirs')
-install="$pkgname.install"
-source=("https://wordpress.org/$pkgname-$pkgver.tar.gz;
-'password_reset_exploit.patch')
-sha256sums=('e20dc8d14a62aea05a6eba0a37cabf0b83282746242dab2bd6b9728fc12c28be'
-'68244b5bd534b21c88dc25074bf1fbc7a26d601cee69d78a467b1287f9eb2eed')
-
-prepare() {
-  cd "$pkgname"
-
-  patch -p1 -i "$srcdir/password_reset_exploit.patch"
-}
-
-package() {
-  install -d "$pkgdir/usr/share/webapps"
-  cp -r "$pkgname" "$pkgdir/usr/share/webapps"
-}
-
-# getver: wordpress.org/download/
-# vim: ts=2 sw=2 et:

Copied: wordpress/repos/community-any/PKGBUILD (from rev 270862, 
wordpress/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-30 18:35:57 UTC (rev 270863)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: Thomas Dziedzic 
+# Contributor: Jose Valecillos 
+# Contributor: Kaos 
+# Contributor: Christopher Rogers 
+
+pkgname=wordpress
+pkgver=4.9.1
+pkgrel=1
+pkgdesc='Blog tool and publishing platform'
+arch=('any')
+url='https://wordpress.org/'
+license=('GPL')
+depends=('php')
+optdepends=('nginx: Web server for serving Wordpress'
+'apache: Web server for serving Wordpress'
+'mariadb: Database server')
+options=('emptydirs')
+install="$pkgname.install"
+source=("https://wordpress.org/$pkgname-$pkgver.tar.gz;
+'password_reset_exploit.patch')
+sha256sums=('a94ae99cda7666bfd482b36f268ad240a3bde2a66724e1312dabf068a9555100'
+'68244b5bd534b21c88dc25074bf1fbc7a26d601cee69d78a467b1287f9eb2eed')
+
+prepare() {
+  cd "$pkgname"
+
+  patch -p1 -i "$srcdir/password_reset_exploit.patch"
+}
+
+package() {
+  install -d "$pkgdir/usr/share/webapps"
+  cp -r "$pkgname" "$pkgdir/usr/share/webapps"
+}
+
+# getver: wordpress.org/download/
+# vim: ts=2 sw=2 et:

Deleted: password_reset_exploit.patch
===
--- password_reset_exploit.patch2017-11-30 18:35:33 UTC (rev 270862)
+++ password_reset_exploit.patch2017-11-30 18:35:57 UTC (rev 270863)
@@ -1,33 +0,0 @@
 a/wp-includes/pluggable.php2017-05-07 15:19:40.838218673 +0200
-+++ b/wp-includes/pluggable.php2017-05-07 15:25:35.661548515 +0200
-@@ -321,15 +321,21 @@
-* https://core.trac.wordpress.org/ticket/5007.
-*/
- 
--  if ( !isset( $from_email ) ) {
--  // Get the site domain and get rid of www.
--  $sitename = strtolower( $_SERVER['SERVER_NAME'] );
--  if ( substr( $sitename, 0, 4 ) == 'www.' ) {
--  $sitename = substr( $sitename, 4 );
--  }
--
--  $from_email = 'wordpress@' . $sitename;
--  }
-+// Thanks simlevesque @ https://news.ycombinator.com/item?id=14265092
-+if ( !isset( $from_email ) ) {
-+// Get the site domain and get rid of www.
-+$sitename = strtolower( WP_HOME );
-+if ( substr( $sitename, 0, 7 ) == 'http://' ) {
-+$sitename = substr( $sitename, 7 );
-+}
-+if ( substr( 

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

2017-11-30 Thread Alexander Rødseth via arch-commits
Date: Thursday, November 30, 2017 @ 18:35:33
  Author: arodseth
Revision: 270862

upgpkg: wordpress 4.9.1-1

Modified:
  wordpress/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-30 17:38:12 UTC (rev 270861)
+++ PKGBUILD2017-11-30 18:35:33 UTC (rev 270862)
@@ -6,7 +6,7 @@
 # Contributor: Christopher Rogers 
 
 pkgname=wordpress
-pkgver=4.9
+pkgver=4.9.1
 pkgrel=1
 pkgdesc='Blog tool and publishing platform'
 arch=('any')
@@ -20,7 +20,7 @@
 install="$pkgname.install"
 source=("https://wordpress.org/$pkgname-$pkgver.tar.gz;
 'password_reset_exploit.patch')
-sha256sums=('e20dc8d14a62aea05a6eba0a37cabf0b83282746242dab2bd6b9728fc12c28be'
+sha256sums=('a94ae99cda7666bfd482b36f268ad240a3bde2a66724e1312dabf068a9555100'
 '68244b5bd534b21c88dc25074bf1fbc7a26d601cee69d78a467b1287f9eb2eed')
 
 prepare() {


[arch-commits] Commit in thunderbird/repos/extra-x86_64 (16 files)

2017-11-30 Thread Jan Steffens via arch-commits
Date: Thursday, November 30, 2017 @ 18:12:35
  Author: heftig
Revision: 311185

archrelease: copy trunk to extra-x86_64

Added:
  
thunderbird/repos/extra-x86_64/0001-Bug-1338655-Don-t-try-to-build-mp4parse-bindings.-r-.patch
(from rev 311182, 
thunderbird/trunk/0001-Bug-1338655-Don-t-try-to-build-mp4parse-bindings.-r-.patch)
  thunderbird/repos/extra-x86_64/PKGBUILD
(from rev 311182, thunderbird/trunk/PKGBUILD)
  thunderbird/repos/extra-x86_64/fix-wifi-scanner.diff
(from rev 311182, thunderbird/trunk/fix-wifi-scanner.diff)
  thunderbird/repos/extra-x86_64/glibc-2.26-fix.diff
(from rev 311182, thunderbird/trunk/glibc-2.26-fix.diff)
  thunderbird/repos/extra-x86_64/no-crmf.diff
(from rev 311182, thunderbird/trunk/no-crmf.diff)
  thunderbird/repos/extra-x86_64/rust-i686.patch
(from rev 311183, thunderbird/trunk/rust-i686.patch)
  thunderbird/repos/extra-x86_64/thunderbird-install-dir.patch
(from rev 311183, thunderbird/trunk/thunderbird-install-dir.patch)
  thunderbird/repos/extra-x86_64/thunderbird.desktop
(from rev 311183, thunderbird/trunk/thunderbird.desktop)
Deleted:
  
thunderbird/repos/extra-x86_64/0001-Bug-1338655-Don-t-try-to-build-mp4parse-bindings.-r-.patch
  thunderbird/repos/extra-x86_64/PKGBUILD
  thunderbird/repos/extra-x86_64/fix-wifi-scanner.diff
  thunderbird/repos/extra-x86_64/glibc-2.26-fix.diff
  thunderbird/repos/extra-x86_64/no-crmf.diff
  thunderbird/repos/extra-x86_64/rust-i686.patch
  thunderbird/repos/extra-x86_64/thunderbird-install-dir.patch
  thunderbird/repos/extra-x86_64/thunderbird.desktop

-+
 0001-Bug-1338655-Don-t-try-to-build-mp4parse-bindings.-r-.patch |   96 -
 PKGBUILD|  362 +++
 fix-wifi-scanner.diff   |   32 
 glibc-2.26-fix.diff |  516 
+-
 no-crmf.diff|   78 -
 rust-i686.patch |   32 
 thunderbird-install-dir.patch   |   24 
 thunderbird.desktop |  346 +++---
 8 files changed, 743 insertions(+), 743 deletions(-)

Deleted: 0001-Bug-1338655-Don-t-try-to-build-mp4parse-bindings.-r-.patch
===
--- 0001-Bug-1338655-Don-t-try-to-build-mp4parse-bindings.-r-.patch 
2017-11-30 18:12:34 UTC (rev 311184)
+++ 0001-Bug-1338655-Don-t-try-to-build-mp4parse-bindings.-r-.patch 
2017-11-30 18:12:35 UTC (rev 311185)
@@ -1,48 +0,0 @@
-From bbd48a5613c872883616884cfaf41665b0e4ec9b Mon Sep 17 00:00:00 2001
-From: Ralph Giles 
-Date: Fri, 10 Feb 2017 12:58:18 -0800
-Subject: [PATCH] Bug 1338655 - Don't try to build mp4parse bindings. r=froydnj
-
-We use the cheddar crate to generate a C header file
-for our mp4parse_capi wrapper crate. Currently we
-do this at code check-in time via update-rust.sh.
-
-Cargo 0.18 and later will try to execute a build.rs
-file in the crate source tree regardless of whether
-it's specified in Cargo.toml so patching out that
-line just results in 'crate cheddar not found'.
-
-This change restores the old behaviour by substituting
-a 'build = false' line instead.
-
-We do have syntex vendored, but we don't currently build
-it by default, so I prefer this solution to just vendoring
-cheddar and generating the header at build time. The syntex
-crate is quite large and adds significantly to our compile
-time.
-
-MozReview-Commit-ID: InJRRODWAdP
-
---HG--
-extra : rebase_source : 29378fcbc86015ce6cc22dc66d38a43ddbac204e

- media/libstagefright/binding/mp4parse-cargo.patch | 5 +++--
- media/libstagefright/binding/mp4parse_capi/Cargo.toml | 2 ++
- 2 files changed, 5 insertions(+), 2 deletions(-)
-
-diff --git a/media/libstagefright/binding/mp4parse_capi/Cargo.toml 
b/media/libstagefright/binding/mp4parse_capi/Cargo.toml
-index aee7ee947151a27c..d7e3f55119d3f4b6 100644
 a/media/libstagefright/binding/mp4parse_capi/Cargo.toml
-+++ b/media/libstagefright/binding/mp4parse_capi/Cargo.toml
-@@ -18,6 +18,8 @@ exclude = [
-   "*.mp4",
- ]
- 
-+build = false
-+
- [dependencies]
- byteorder = "1.0.0"
- "mp4parse" = {version = "0.6.0", path = "../mp4parse"}
--- 
-2.12.2
-

Copied: 
thunderbird/repos/extra-x86_64/0001-Bug-1338655-Don-t-try-to-build-mp4parse-bindings.-r-.patch
 (from rev 311182, 
thunderbird/trunk/0001-Bug-1338655-Don-t-try-to-build-mp4parse-bindings.-r-.patch)
===
--- 0001-Bug-1338655-Don-t-try-to-build-mp4parse-bindings.-r-.patch 
(rev 0)
+++ 0001-Bug-1338655-Don-t-try-to-build-mp4parse-bindings.-r-.patch 
2017-11-30 18:12:35 UTC (rev 311185)
@@ -0,0 +1,48 @@
+From bbd48a5613c872883616884cfaf41665b0e4ec9b Mon Sep 17 00:00:00 2001
+From: Ralph 

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

2017-11-30 Thread Pierre Schmitz via arch-commits
Date: Thursday, November 30, 2017 @ 18:12:34
  Author: pierre
Revision: 311184

archrelease: copy trunk to extra-any

Added:
  composer/repos/extra-any/PKGBUILD
(from rev 311183, composer/trunk/PKGBUILD)
Deleted:
  composer/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-30 18:12:07 UTC (rev 311183)
+++ PKGBUILD2017-11-30 18:12:34 UTC (rev 311184)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Pierre Schmitz 
-
-pkgname=composer
-pkgver=1.5.1
-pkgrel=1
-pkgdesc="Dependency Manager for PHP"
-arch=('any')
-license=('MIT')
-url='https://getcomposer.org/'
-depends=('php')
-makedepends=('git')
-checkdepends=('git' 'mercurial' 'parallel')
-replaces=('php-composer')
-conflicts=('php-composer')
-provides=('php-composer')
-source=("${pkgname}::git+https://github.com/composer/composer.git#tag=${pkgver};
-
"${pkgname}-${pkgver}.phar::https://getcomposer.org/download/${pkgver}/composer.phar;)
-md5sums=('SKIP'
- '43e330d8c79d008dd810f0479f5cb003')
-
-prepare() {
-   cd ${srcdir}/${pkgname}
-
-   php ${srcdir}/${pkgname}-${pkgver}.phar -n install --no-dev 
--prefer-dist
-}
-
-build() {
-   cd ${srcdir}/${pkgname}
-
-   php -d phar.readonly=Off bin/compile
-}
-
-check() {
-   cd ${srcdir}/${pkgname}
-
-   # check if the upstream build and ours differ
-   diff -q ${srcdir}/${pkgname}-${pkgver}.phar composer.phar
-
-   git config --global user.email "${USER}@${HOST}"
-   git config --global user.name "${USER}"
-
-   # Install the dev dependencies to run the unit tests
-   bin/composer -n install --prefer-dist
-
-   ls -d tests/Composer/Test/* | parallel --gnu --keep-order 
vendor/bin/phpunit {} \;
-}
-
-package() {
-   cd ${srcdir}/${pkgname}
-
-   install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-   install -Dm755 composer.phar ${pkgdir}/usr/bin/composer
-}

Copied: composer/repos/extra-any/PKGBUILD (from rev 311183, 
composer/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-30 18:12:34 UTC (rev 311184)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Pierre Schmitz 
+
+pkgname=composer
+pkgver=1.5.3
+pkgrel=1
+pkgdesc="Dependency Manager for PHP"
+arch=('any')
+license=('MIT')
+url='https://getcomposer.org/'
+depends=('php')
+makedepends=('git')
+checkdepends=('git' 'mercurial' 'parallel')
+replaces=('php-composer')
+conflicts=('php-composer')
+provides=('php-composer')
+source=("${pkgname}::git+https://github.com/composer/composer.git#tag=${pkgver};
+
"${pkgname}-${pkgver}.phar::https://getcomposer.org/download/${pkgver}/composer.phar;)
+md5sums=('SKIP'
+ '113e891fb5cf11e83f24ffb93c6791b3')
+
+prepare() {
+   cd ${srcdir}/${pkgname}
+
+   php ${srcdir}/${pkgname}-${pkgver}.phar -n install --no-dev 
--prefer-dist
+}
+
+build() {
+   cd ${srcdir}/${pkgname}
+
+   php -d phar.readonly=Off bin/compile
+}
+
+check() {
+   cd ${srcdir}/${pkgname}
+
+   # check if the upstream build and ours differ
+   diff -q ${srcdir}/${pkgname}-${pkgver}.phar composer.phar
+
+   git config --global user.email "${USER}@${HOST}"
+   git config --global user.name "${USER}"
+
+   # Install the dev dependencies to run the unit tests
+   bin/composer -n install --prefer-dist
+
+   ls -d tests/Composer/Test/* | parallel --gnu --keep-order 
vendor/bin/phpunit {} \;
+}
+
+package() {
+   cd ${srcdir}/${pkgname}
+
+   install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+   install -Dm755 composer.phar ${pkgdir}/usr/bin/composer
+}


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

2017-11-30 Thread Pierre Schmitz via arch-commits
Date: Thursday, November 30, 2017 @ 18:12:07
  Author: pierre
Revision: 311183

upgpkg: composer 1.5.3-1

Modified:
  composer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-30 18:11:44 UTC (rev 311182)
+++ PKGBUILD2017-11-30 18:12:07 UTC (rev 311183)
@@ -2,7 +2,7 @@
 # Maintainer: Pierre Schmitz 
 
 pkgname=composer
-pkgver=1.5.1
+pkgver=1.5.3
 pkgrel=1
 pkgdesc="Dependency Manager for PHP"
 arch=('any')
@@ -17,7 +17,7 @@
 
source=("${pkgname}::git+https://github.com/composer/composer.git#tag=${pkgver};
 
"${pkgname}-${pkgver}.phar::https://getcomposer.org/download/${pkgver}/composer.phar;)
 md5sums=('SKIP'
- '43e330d8c79d008dd810f0479f5cb003')
+ '113e891fb5cf11e83f24ffb93c6791b3')
 
 prepare() {
cd ${srcdir}/${pkgname}


[arch-commits] Commit in thunderbird-i18n/repos/extra-any (PKGBUILD PKGBUILD)

2017-11-30 Thread Jan Steffens via arch-commits
Date: Thursday, November 30, 2017 @ 18:11:44
  Author: heftig
Revision: 311182

archrelease: copy trunk to extra-any

Added:
  thunderbird-i18n/repos/extra-any/PKGBUILD
(from rev 311181, thunderbird-i18n/trunk/PKGBUILD)
Deleted:
  thunderbird-i18n/repos/extra-any/PKGBUILD

--+
 PKGBUILD |  314 ++---
 1 file changed, 157 insertions(+), 157 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-30 17:37:10 UTC (rev 311181)
+++ PKGBUILD2017-11-30 18:11:44 UTC (rev 311182)
@@ -1,157 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Andrea Scarpino 
-# Contributor: Thomas Baechler 
-
-pkgbase=thunderbird-i18n
-pkgver=52.4.0
-pkgrel=1
-pkgdesc="Language pack for Thunderbird"
-arch=('any')
-url="http://www.mozilla.com/;
-license=('MPL' 'GPL')
-
-_languages=(
-  'ar "Arabic"'
-  'ast"Asturian"'
-  'be "Belarusian"'
-  'bg "Bulgarian"'
-  'bn-BD  "Bengali (Bangladesh)"'
-  'br "Breton"'
-  'ca "Catalan"'
-  'cs "Czech"'
-  'cy "Welsh"'
-  'da "Danish"'
-  'de "German"'
-  'dsb"Lower Sorbian"'
-  'el "Greek"'
-  'en-GB  "English (British)"'
-  'en-US  "English (US)"'
-  'es-AR  "Spanish (Argentina)"'
-  'es-ES  "Spanish (Spain)"'
-  'et "Estonian"'
-  'eu "Basque"'
-  'fi "Finnish"'
-  'fr "French"'
-  'fy-NL  "Frisian"'
-  'ga-IE  "Irish"'
-  'gd "Gaelic (Scotland)"'
-  'gl "Galician"'
-  'he "Hebrew"'
-  'hr "Croatian"'
-  'hsb"Upper Sorbian"'
-  'hu "Hungarian"'
-  'hy-AM  "Armenian"'
-  'id "Indonesian"'
-  'is "Icelandic"'
-  'it "Italian"'
-  'ja "Japanese"'
-  'ko "Korean"'
-  'lt "Lithuanian"'
-  'nb-NO  "Norwegian (Bokmål)"'
-  'nl "Dutch"'
-  'nn-NO  "Norwegian (Nynorsk)"'
-  'pa-IN  "Punjabi (India)"'
-  'pl "Polish"'
-  'pt-BR  "Portuguese (Brazilian)"'
-  'pt-PT  "Portuguese (Portugal)"'
-  'rm "Romansh"'
-  'ro "Romanian"'
-  'ru "Russian"'
-  'si "Sinhala"'
-  'sk "Slovak"'
-  'sl "Slovenian"'
-  'sq "Albanian"'
-  'sr "Serbian"'
-  'sv-SE  "Swedish"'
-  'ta-LK  "Tamil (Sri Lanka)"'
-  'tr "Turkish"'
-  'uk "Ukrainian"'
-  'vi "Vietnamese"'
-  'zh-CN  "Chinese (Simplified)"'
-  'zh-TW  "Chinese (Traditional)"'
-)
-
-pkgname=()
-source=()
-_url=https://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/$pkgver/linux-i686/xpi
-
-for _lang in "${_languages[@]}"; do
-  _locale=${_lang%% *}
-  _pkgname=thunderbird-i18n-${_locale,,}
-
-  pkgname+=($_pkgname)
-  source+=("thunderbird-i18n-$pkgver-$_locale.xpi::$_url/$_locale.xpi")
-  eval "package_$_pkgname() {
-_package $_lang
-  }"
-done
-
-# Don't extract anything
-noextract=(${source[@]%%::*})
-
-_package() {
-  pkgdesc="$2 language pack for Thunderbird"
-  depends=("thunderbird>=$pkgver")
-  install -Dm644 thunderbird-i18n-$pkgver-$1.xpi \
-
"$pkgdir/usr/lib/thunderbird/extensions/langpack-$1...@thunderbird.mozilla.org.xpi"
-}
-
-sha256sums=('5b17a53001f7605f9e12a9881573f93940dd5756bd54788546201c97fc323c3f'
-'e3f5a29ee9258e49306cd1580d603b635a5ac7c8840c838504606143c141562a'
-'1d5e536ebe848d9a9ac773c6e15ef895601c1754a9f0ee69a7ab229ec931dc32'
-'18063549c65ddcfb1c438b5be60ebf27f2b6ed2b926e52ba2b9fd078510bb42d'
-'cd6a5a1c7b9ee0f688815ed2d6ebffcb5300fd1ebca9f0bc0d26c0f8d8530d12'
-'8ee2714cf3efc9477059047d70d3429601e2451e32d823ad48ecfacbad802edc'
-'8b4929329075581266bc18189660c6200f6084153530d45ca6ce2865572a392b'
-'d3898778cd4aceea175c46ddc386b47cbe134a1b89322cee285e5925042032d1'
-'c95bcfee29f32aaf12dba7e835f35311eb71dc923c71dfc063b8150165e552dd'
-'cf1efa5a056dbb9b98324b1b959a61467af15ea82ad586369b4b46856d89d990'
-'6d8bc484a1edcdbff75d39dea9f33b85b92514058f505f2915810609796e8a1a'
-'94bc57a6b7ca577fcfeac8a04e2cb20c30a54582b8f5c8906c449e20ac1641d4'
-'c5201686e88cde81222817b006957bbee08df0745fdbfeeea067b558f9131872'
-'45905f12c6053324c1ed880837fbb6b00afd631d83907d6274fc4aa53a4861a3'
-'1b281ee6cf6898fe7aec71b1f8ec6a4bceffae6d1720dd64d678a41bdc5ba197'
-'f6bb96a72a3a8271b9796d9516908de2b885028d7e3cf00913fa74415b7a9ce3'
-'2d49b3b67e7b0c8f99871906e65d5e3a6cd684ad3dde05a730dfc8d328205005'
-'eee8043f3300c1fbef18d87c783de89a11e69a75e7185e0fe0ce5a73a0feca0c'
-'448a3d9d8f4babd98872e2f91c2837342e4c01fc6bbeb0bed3a4f4e14ea381b6'
-'fde89077936d1ef35642d6b451926e885f69b9636b66314c4d1d182a9b753ee0'
-'98c758ebd8c286bb93a1b9b75a5af1939944c520164a5b38f1f39936529fd7bb'
-'1225accf01b15e7e3132ef51d9275ce573a3615360f16647c91bc078134f5002'
-'22d847437c25ff7aa94b9f5ca1147277c87bccb5b38afa4f0ef7fa5124a59cdf'
-

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

2017-11-30 Thread Andreas Radke via arch-commits
Date: Thursday, November 30, 2017 @ 17:06:33
  Author: andyrtr
Revision: 311179

archrelease: copy trunk to testing-x86_64

Added:
  linux-lts/repos/testing-x86_64/
  linux-lts/repos/testing-x86_64/90-linux.hook
(from rev 311178, linux-lts/trunk/90-linux.hook)
  linux-lts/repos/testing-x86_64/PKGBUILD
(from rev 311178, linux-lts/trunk/PKGBUILD)
  linux-lts/repos/testing-x86_64/change-default-console-loglevel.patch
(from rev 311178, linux-lts/trunk/change-default-console-loglevel.patch)
  linux-lts/repos/testing-x86_64/config
(from rev 311178, linux-lts/trunk/config)
  linux-lts/repos/testing-x86_64/linux-lts.install
(from rev 311178, linux-lts/trunk/linux-lts.install)
  linux-lts/repos/testing-x86_64/linux-lts.preset
(from rev 311178, linux-lts/trunk/linux-lts.preset)

---+
 90-linux.hook |   11 
 PKGBUILD  |  291 +
 change-default-console-loglevel.patch |   11 
 config| 7977 
 linux-lts.install |   33 
 linux-lts.preset  |   14 
 6 files changed, 8337 insertions(+)

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


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

2017-11-30 Thread Andreas Radke via arch-commits
Date: Thursday, November 30, 2017 @ 17:06:11
  Author: andyrtr
Revision: 311178

upgpkg: linux-lts 4.9.66-1

upstream update 4.9.66

Modified:
  linux-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-30 14:22:12 UTC (rev 311177)
+++ PKGBUILD2017-11-30 17:06:11 UTC (rev 311178)
@@ -4,7 +4,7 @@
 pkgbase=linux-lts
 #pkgbase=linux-lts-custom
 _srcname=linux-4.9
-pkgver=4.9.65
+pkgver=4.9.66
 pkgrel=1
 arch=('x86_64')
 url="https://www.kernel.org/;
@@ -23,7 +23,7 @@
 # https://www.kernel.org/pub/linux/kernel/v4.x/sha256sums.asc
 sha256sums=('029098dcffab74875e086ae970e3828456838da6e0ba22ce3f64ef764f3d7f1a'
 'SKIP'
-'3e1937ad3aeb89ac247e96551059babe3c959c6c8868107adac6f3634e39a4ae'
+'830f408e18d1a4f692b1a51f8659f7cc56a876aa1827b4d8c8848e8381c92b2d'
 'SKIP'
 '6c4d909ae6594a2956c257539c8b2f67a8de52d7335be172787d6dc8aca12c99'
 '834bd254b56ab71d73f59b3221f056c72f559553c04718e350ab2a3e2991afe0'


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

2017-11-30 Thread Gaëtan Bisson via arch-commits
Date: Thursday, November 30, 2017 @ 16:46:04
  Author: bisson
Revision: 270856

archrelease: copy trunk to community-x86_64

Added:
  nsd/repos/community-x86_64/PKGBUILD
(from rev 270855, nsd/trunk/PKGBUILD)
  nsd/repos/community-x86_64/install
(from rev 270855, nsd/trunk/install)
  nsd/repos/community-x86_64/service
(from rev 270855, nsd/trunk/service)
  nsd/repos/community-x86_64/tmpfiles.d
(from rev 270855, nsd/trunk/tmpfiles.d)
Deleted:
  nsd/repos/community-x86_64/PKGBUILD
  nsd/repos/community-x86_64/install
  nsd/repos/community-x86_64/service
  nsd/repos/community-x86_64/tmpfiles.d

+
 PKGBUILD   |  102 +--
 install|   22 ++--
 service|   26 +++
 tmpfiles.d |2 -
 4 files changed, 76 insertions(+), 76 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-30 16:45:33 UTC (rev 270855)
+++ PKGBUILD2017-11-30 16:46:04 UTC (rev 270856)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson 
-# Contributor: Kaiting Chen 
-# Contributor: Roberto Alsina 
-
-pkgname=nsd
-pkgver=4.1.16
-pkgrel=2
-pkgdesc='Authoritative only, high performance and simple DNS server'
-url='https://www.nlnetlabs.nl/nsd/'
-license=('BSD')
-arch=('i686' 'x86_64')
-depends=('openssl' 'libevent')
-makedepends=('flex')
-validpgpkeys=('EDFAA3F2CA4E6EB05681AF8E9F6F1C2D7E045F8D')
-source=("https://www.nlnetlabs.nl/downloads/${pkgname}/${pkgname}-${pkgver}.tar.gz"{,.asc}
-'tmpfiles.d'
-'service')
-sha256sums=('7f8367ad23cc5cddffa885e7e2f549123c8b4123db9726df41d99f255d6baab2'
-'SKIP'
-'8e72816177069d6b82306c4b61ca4d0eefd2a77a31ea79c50635eea5aecf8c5b'
-'5ec7616df32c29ddec25a6ec772db5053e234410cf1042f2945d0f554b1f9b65')
-
-install=install
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   ./configure \
-   --prefix=/ \
-   --sbindir=/usr/bin \
-   --datarootdir=/usr/share \
-   --with-pidfile=/run/nsd/nsd.pid \
-   --enable-ratelimit \
-   --enable-relro-now \
-   --enable-pie \
-
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-   install -Dm644 ../tmpfiles.d "${pkgdir}"/usr/lib/tmpfiles.d/nsd.conf
-   install -Dm644 ../service "${pkgdir}"/usr/lib/systemd/system/nsd.service
-   rmdir "${pkgdir}"/{tmp,run/{nsd,}}
-
-   rm doc/differences.pdf
-   install -d "${pkgdir}"/usr/share/{doc,licenses}/"${pkgname}"
-   install -m644 doc/* "${pkgdir}"/usr/share/doc/"${pkgname}"
-   ln -s ../../doc/"${pkgname}"/LICENSE 
"${pkgdir}"/usr/share/licenses/"${pkgname}"/LICENSE
-}

Copied: nsd/repos/community-x86_64/PKGBUILD (from rev 270855, 
nsd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-30 16:46:04 UTC (rev 270856)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Kaiting Chen 
+# Contributor: Roberto Alsina 
+
+pkgname=nsd
+pkgver=4.1.18
+pkgrel=1
+pkgdesc='Authoritative only, high performance and simple DNS server'
+url='https://www.nlnetlabs.nl/nsd/'
+license=('BSD')
+arch=('x86_64')
+depends=('openssl' 'libevent')
+makedepends=('flex')
+validpgpkeys=('EDFAA3F2CA4E6EB05681AF8E9F6F1C2D7E045F8D')
+source=("https://www.nlnetlabs.nl/downloads/${pkgname}/${pkgname}-${pkgver}.tar.gz"{,.asc}
+'tmpfiles.d'
+'service')
+sha256sums=('8c1db23c5ad44c6410874161e78f785475d3f08ed0daae57fe56c44e33a89c0f'
+'SKIP'
+'8e72816177069d6b82306c4b61ca4d0eefd2a77a31ea79c50635eea5aecf8c5b'
+'5ec7616df32c29ddec25a6ec772db5053e234410cf1042f2945d0f554b1f9b65')
+
+install=install
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/ \
+   --sbindir=/usr/bin \
+   --datarootdir=/usr/share \
+   --with-pidfile=/run/nsd/nsd.pid \
+   --enable-ratelimit \
+   --enable-relro-now \
+   --enable-pie \
+
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   install -Dm644 ../tmpfiles.d "${pkgdir}"/usr/lib/tmpfiles.d/nsd.conf
+   install -Dm644 ../service "${pkgdir}"/usr/lib/systemd/system/nsd.service
+   rmdir "${pkgdir}"/{tmp,run/{nsd,}}
+
+   rm doc/differences.pdf
+   install -d "${pkgdir}"/usr/share/{doc,licenses}/"${pkgname}"
+   install -m644 doc/* "${pkgdir}"/usr/share/doc/"${pkgname}"
+   ln -s ../../doc/"${pkgname}"/LICENSE 
"${pkgdir}"/usr/share/licenses/"${pkgname}"/LICENSE
+}

Deleted: install

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

2017-11-30 Thread Gaëtan Bisson via arch-commits
Date: Thursday, November 30, 2017 @ 16:45:33
  Author: bisson
Revision: 270855

upstream update

Modified:
  nsd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-30 15:32:06 UTC (rev 270854)
+++ PKGBUILD2017-11-30 16:45:33 UTC (rev 270855)
@@ -4,8 +4,8 @@
 # Contributor: Roberto Alsina 
 
 pkgname=nsd
-pkgver=4.1.16
-pkgrel=2
+pkgver=4.1.18
+pkgrel=1
 pkgdesc='Authoritative only, high performance and simple DNS server'
 url='https://www.nlnetlabs.nl/nsd/'
 license=('BSD')
@@ -16,7 +16,7 @@
 
source=("https://www.nlnetlabs.nl/downloads/${pkgname}/${pkgname}-${pkgver}.tar.gz"{,.asc}
 'tmpfiles.d'
 'service')
-sha256sums=('7f8367ad23cc5cddffa885e7e2f549123c8b4123db9726df41d99f255d6baab2'
+sha256sums=('8c1db23c5ad44c6410874161e78f785475d3f08ed0daae57fe56c44e33a89c0f'
 'SKIP'
 '8e72816177069d6b82306c4b61ca4d0eefd2a77a31ea79c50635eea5aecf8c5b'
 '5ec7616df32c29ddec25a6ec772db5053e234410cf1042f2945d0f554b1f9b65')


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

2017-11-30 Thread Felix Yan via arch-commits
Date: Thursday, November 30, 2017 @ 15:31:29
  Author: felixonmars
Revision: 270851

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-gtk/repos/community-staging-x86_64/PKGBUILD (from rev 270850, 
haskell-gtk/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-11-30 15:31:29 UTC (rev 270851)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+
+pkgname=haskell-gtk
+pkgver=0.14.8
+pkgrel=2
+pkgdesc="Binding to the gtk library for Gtk2Hs."
+url="https://hackage.haskell.org/package/gtk3;
+license=('LGPL2.1')
+arch=('x86_64')
+depends=('ghc-libs' 'gtk3' 'haskell-pango' 'haskell-mtl' 'haskell-text')
+makedepends=('ghc' 'haskell-gtk2hs-buildtools')
+provides=('gtk2hs-gtk')
+replaces=('gtk2hs-gtk')
+conflicts=('gtk2hs-gtk')
+source=("https://hackage.haskell.org/packages/archive/gtk3/${pkgver}/gtk3-${pkgver}.tar.gz;)
+sha512sums=('df2b7dca3184580cc6c0c6facb5db56b32714ffae5858583ec67006e2e69d3202e6537430a696558ad181cd68939cd31de0ad6ddeca42061c1a5461df0f75d68')
+
+build() {
+cd "${srcdir}/gtk3-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/gtk3-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+}


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

2017-11-30 Thread Felix Yan via arch-commits
Date: Thursday, November 30, 2017 @ 15:31:06
  Author: felixonmars
Revision: 270850

upgpkg: haskell-gtk 0.14.8-2

rebuild with cairo,0.13.4.2

Modified:
  haskell-gtk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-30 15:26:37 UTC (rev 270849)
+++ PKGBUILD2017-11-30 15:31:06 UTC (rev 270850)
@@ -3,7 +3,7 @@
 
 pkgname=haskell-gtk
 pkgver=0.14.8
-pkgrel=1
+pkgrel=2
 pkgdesc="Binding to the gtk library for Gtk2Hs."
 url="https://hackage.haskell.org/package/gtk3;
 license=('LGPL2.1')


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

2017-11-30 Thread Felix Yan via arch-commits
Date: Thursday, November 30, 2017 @ 15:26:37
  Author: felixonmars
Revision: 270849

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-pango/repos/community-staging-x86_64/PKGBUILD (from rev 270848, 
haskell-pango/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-11-30 15:26:37 UTC (rev 270849)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+
+_hkgname=pango
+pkgname=haskell-pango
+pkgver=0.13.4.0
+pkgrel=4
+pkgdesc="Binding to the pango library for Gtk2Hs."
+url="https://hackage.haskell.org/package/pango;
+license=('LGPL2.1')
+arch=('x86_64')
+depends=('ghc-libs' 'pango' 'haskell-glib' 'haskell-cairo')
+makedepends=('ghc' "haskell-gtk2hs-buildtools" "mesa")
+provides=('gtk2hs-pango')
+replaces=('gtk2hs-pango')
+conflicts=('gtk2hs-pango')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('3edc7ca5ef81444ea9559d33a95b3ef6a38118ac614c6e69dd9babf11e69ce1a44a69f1c13ffd5ebe4bb0a98520c909d89517a9eb4b94c77a5f9d75f579d8789')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+}


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

2017-11-30 Thread Felix Yan via arch-commits
Date: Thursday, November 30, 2017 @ 15:26:13
  Author: felixonmars
Revision: 270848

upgpkg: haskell-pango 0.13.4.0-4

rebuild with cairo,0.13.4.2

Modified:
  haskell-pango/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-30 15:25:14 UTC (rev 270847)
+++ PKGBUILD2017-11-30 15:26:13 UTC (rev 270848)
@@ -4,7 +4,7 @@
 _hkgname=pango
 pkgname=haskell-pango
 pkgver=0.13.4.0
-pkgrel=3
+pkgrel=4
 pkgdesc="Binding to the pango library for Gtk2Hs."
 url="https://hackage.haskell.org/package/pango;
 license=('LGPL2.1')


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

2017-11-30 Thread Felix Yan via arch-commits
Date: Thursday, November 30, 2017 @ 15:25:14
  Author: felixonmars
Revision: 270847

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-cairo/repos/community-staging-x86_64/PKGBUILD (from rev 270846, 
haskell-cairo/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-11-30 15:25:14 UTC (rev 270847)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+
+pkgname=haskell-cairo
+pkgver=0.13.4.2
+pkgrel=1
+pkgdesc="Binding to the cairo library for Gtk2Hs."
+url="https://hackage.haskell.org/package/cairo;
+license=('LGPL2.1')
+arch=('x86_64')
+depends=('ghc-libs' 'cairo' 'haskell-mtl' 'haskell-utf8-string' 'haskell-text')
+makedepends=("haskell-gtk2hs-buildtools" "mesa" 'ghc')
+conflicts=('gtk2hs-cairo')
+provides=('gtk2hs-cairo')
+replaces=('gtk2hs-cairo')
+source=("https://hackage.haskell.org/packages/archive/cairo/${pkgver}/cairo-${pkgver}.tar.gz;)
+sha512sums=('e2d4aee4d13b99d3ed5d52dd5ebef73576fbd96c1f69b0596c1d15c7a657918e5662007dec845e4fc4e435d814303c9bf02acf6cdc7df6b0f37e26f519da59a5')
+
+build() {
+cd "${srcdir}/cairo-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/cairo-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+}


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

2017-11-30 Thread Felix Yan via arch-commits
Date: Thursday, November 30, 2017 @ 15:24:39
  Author: felixonmars
Revision: 270846

upgpkg: haskell-cairo 0.13.4.2-1

rebuild with cairo,0.13.4.2

Modified:
  haskell-cairo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-30 15:16:45 UTC (rev 270845)
+++ PKGBUILD2017-11-30 15:24:39 UTC (rev 270846)
@@ -2,8 +2,8 @@
 # Maintainer: Sergej Pupykin 
 
 pkgname=haskell-cairo
-pkgver=0.13.4.1
-pkgrel=2
+pkgver=0.13.4.2
+pkgrel=1
 pkgdesc="Binding to the cairo library for Gtk2Hs."
 url="https://hackage.haskell.org/package/cairo;
 license=('LGPL2.1')
@@ -14,7 +14,7 @@
 provides=('gtk2hs-cairo')
 replaces=('gtk2hs-cairo')
 
source=("https://hackage.haskell.org/packages/archive/cairo/${pkgver}/cairo-${pkgver}.tar.gz;)
-sha512sums=('d7570190ee637a637f8612ef3cc5e6a6ee7f093329180cac5f818e75119549a63ca99af7a0bfabd7445a9de1ae1c69dea0baa6620920ffd3dd92c7d062bc4d02')
+sha512sums=('e2d4aee4d13b99d3ed5d52dd5ebef73576fbd96c1f69b0596c1d15c7a657918e5662007dec845e4fc4e435d814303c9bf02acf6cdc7df6b0f37e26f519da59a5')
 
 build() {
 cd "${srcdir}/cairo-${pkgver}"


[arch-commits] Commit in pycharm-community-edition (4 files)

2017-11-30 Thread Maxime Gauduin via arch-commits
Date: Thursday, November 30, 2017 @ 15:16:45
  Author: alucryd
Revision: 270845

archrelease: copy trunk to community-x86_64

Added:
  pycharm-community-edition/repos/
  pycharm-community-edition/repos/community-x86_64/
  pycharm-community-edition/repos/community-x86_64/PKGBUILD
(from rev 270844, pycharm-community-edition/trunk/PKGBUILD)
  pycharm-community-edition/repos/community-x86_64/pycharm.desktop
(from rev 270844, pycharm-community-edition/trunk/pycharm.desktop)

-+
 PKGBUILD|   44 
 pycharm.desktop |   11 +++
 2 files changed, 55 insertions(+)

Copied: pycharm-community-edition/repos/community-x86_64/PKGBUILD (from rev 
270844, pycharm-community-edition/trunk/PKGBUILD)
===
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2017-11-30 15:16:45 UTC (rev 270845)
@@ -0,0 +1,44 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: David Keogh 
+
+pkgname=pycharm-community-edition
+pkgver=2017.3
+pkgrel=1
+pkgdesc='Python IDE for Professional Developers'
+arch=('x86_64')
+url='http://www.jetbrains.com/pycharm/'
+license=('Apache')
+depends=('gcc-libs' 'giflib' 'glibc' 'java-runtime' 'sh' 'ttf-font')
+optdepends=('ipython2: IPython integration for Python 2'
+'ipython: IPython integration for Python 3'
+'python2: Python 2 support'
+'python: Python 3 support')
+makedepends=('python2-setuptools' 'python-setuptools')
+conflicts=('pycharm' 'pycharm-community' 'pycharm-professional')
+provides=('pycharm')
+source=("https://download.jetbrains.com/python/pycharm-community-${pkgver}.tar.gz;
+'pycharm.desktop')
+sha256sums=('b973581cb3de0f0f5a203231f67b21a45b7dd58968393cef49d48403cb1b8ad1'
+'28e0d3200c721e61831d8246eba8f72485d3c8379d10bfa75ccb5331b6749480')
+
+build() {
+  cd pycharm-community-${pkgver}
+
+  python2 helpers/pydev/setup_cython.py build_ext --inplace
+  python3 helpers/pydev/setup_cython.py build_ext --inplace
+  rm -rf bin/fsnotifier{,-arm} lib/libpty/linux/x86
+}
+
+package() {
+  cd pycharm-community-${pkgver}
+
+  install -dm 755 
"${pkgdir}"/usr/{bin,share/{applications,doc,licenses,pixmaps,pycharm}}
+  cp -dr --no-preserve='ownership' bin helpers lib plugins 
"${pkgdir}"/usr/share/pycharm/
+  cp -dr --no-preserve='ownership' help "${pkgdir}"/usr/share/doc/pycharm/
+  cp -dr --no-preserve='ownership' license 
"${pkgdir}"/usr/share/licenses/pycharm/
+  ln -s /usr/share/pycharm/bin/pycharm.sh $pkgdir/usr/bin/pycharm
+  ln -s /usr/share/pycharm/bin/pycharm.png "${pkgdir}"/usr/share/pixmaps/
+  install -m 644 ../pycharm.desktop -t "${pkgdir}"/usr/share/applications/
+}
+
+# vim: ts=2 sw=2 et:

Copied: pycharm-community-edition/repos/community-x86_64/pycharm.desktop (from 
rev 270844, pycharm-community-edition/trunk/pycharm.desktop)
===
--- repos/community-x86_64/pycharm.desktop  (rev 0)
+++ repos/community-x86_64/pycharm.desktop  2017-11-30 15:16:45 UTC (rev 
270845)
@@ -0,0 +1,11 @@
+[Desktop Entry]
+Version=1.0
+Type=Application
+Name=PyCharm Community Edition
+Comment=Python IDE for Professional Developers.
+Exec=/usr/bin/pycharm %f
+Icon=pycharm
+Terminal=false
+StartupNotify=true
+StartupWMClass=jetbrains-pycharm-ce
+Categories=Development;IDE;Python;


[arch-commits] Commit in (4 files)

2017-11-30 Thread Maxime Gauduin via arch-commits
Date: Thursday, November 30, 2017 @ 15:16:18
  Author: alucryd
Revision: 270844

Add pycharm-community-edition

Added:
  pycharm-community-edition/
  pycharm-community-edition/trunk/
  pycharm-community-edition/trunk/PKGBUILD
  pycharm-community-edition/trunk/pycharm.desktop

-+
 PKGBUILD|   44 
 pycharm.desktop |   11 +++
 2 files changed, 55 insertions(+)

Added: pycharm-community-edition/trunk/PKGBUILD
===
--- pycharm-community-edition/trunk/PKGBUILD(rev 0)
+++ pycharm-community-edition/trunk/PKGBUILD2017-11-30 15:16:18 UTC (rev 
270844)
@@ -0,0 +1,44 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: David Keogh 
+
+pkgname=pycharm-community-edition
+pkgver=2017.3
+pkgrel=1
+pkgdesc='Python IDE for Professional Developers'
+arch=('x86_64')
+url='http://www.jetbrains.com/pycharm/'
+license=('Apache')
+depends=('gcc-libs' 'giflib' 'glibc' 'java-runtime' 'sh' 'ttf-font')
+optdepends=('ipython2: IPython integration for Python 2'
+'ipython: IPython integration for Python 3'
+'python2: Python 2 support'
+'python: Python 3 support')
+makedepends=('python2-setuptools' 'python-setuptools')
+conflicts=('pycharm' 'pycharm-community' 'pycharm-professional')
+provides=('pycharm')
+source=("https://download.jetbrains.com/python/pycharm-community-${pkgver}.tar.gz;
+'pycharm.desktop')
+sha256sums=('b973581cb3de0f0f5a203231f67b21a45b7dd58968393cef49d48403cb1b8ad1'
+'28e0d3200c721e61831d8246eba8f72485d3c8379d10bfa75ccb5331b6749480')
+
+build() {
+  cd pycharm-community-${pkgver}
+
+  python2 helpers/pydev/setup_cython.py build_ext --inplace
+  python3 helpers/pydev/setup_cython.py build_ext --inplace
+  rm -rf bin/fsnotifier{,-arm} lib/libpty/linux/x86
+}
+
+package() {
+  cd pycharm-community-${pkgver}
+
+  install -dm 755 
"${pkgdir}"/usr/{bin,share/{applications,doc,licenses,pixmaps,pycharm}}
+  cp -dr --no-preserve='ownership' bin helpers lib plugins 
"${pkgdir}"/usr/share/pycharm/
+  cp -dr --no-preserve='ownership' help "${pkgdir}"/usr/share/doc/pycharm/
+  cp -dr --no-preserve='ownership' license 
"${pkgdir}"/usr/share/licenses/pycharm/
+  ln -s /usr/share/pycharm/bin/pycharm.sh $pkgdir/usr/bin/pycharm
+  ln -s /usr/share/pycharm/bin/pycharm.png "${pkgdir}"/usr/share/pixmaps/
+  install -m 644 ../pycharm.desktop -t "${pkgdir}"/usr/share/applications/
+}
+
+# vim: ts=2 sw=2 et:


Property changes on: pycharm-community-edition/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: pycharm-community-edition/trunk/pycharm.desktop
===
--- pycharm-community-edition/trunk/pycharm.desktop 
(rev 0)
+++ pycharm-community-edition/trunk/pycharm.desktop 2017-11-30 15:16:18 UTC 
(rev 270844)
@@ -0,0 +1,11 @@
+[Desktop Entry]
+Version=1.0
+Type=Application
+Name=PyCharm Community Edition
+Comment=Python IDE for Professional Developers.
+Exec=/usr/bin/pycharm %f
+Icon=pycharm
+Terminal=false
+StartupNotify=true
+StartupWMClass=jetbrains-pycharm-ce
+Categories=Development;IDE;Python;


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

2017-11-30 Thread Jan Steffens via arch-commits
Date: Thursday, November 30, 2017 @ 14:22:12
  Author: heftig
Revision: 311177

52.5.0-1

Modified:
  thunderbird-i18n/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-30 14:22:01 UTC (rev 311176)
+++ PKGBUILD2017-11-30 14:22:12 UTC (rev 311177)
@@ -4,7 +4,7 @@
 # Contributor: Thomas Baechler 
 
 pkgbase=thunderbird-i18n
-pkgver=52.4.0
+pkgver=52.5.0
 pkgrel=1
 pkgdesc="Language pack for Thunderbird"
 arch=('any')
@@ -97,61 +97,61 @@
 
"$pkgdir/usr/lib/thunderbird/extensions/langpack-$1...@thunderbird.mozilla.org.xpi"
 }
 
-sha256sums=('5b17a53001f7605f9e12a9881573f93940dd5756bd54788546201c97fc323c3f'
-'e3f5a29ee9258e49306cd1580d603b635a5ac7c8840c838504606143c141562a'
-'1d5e536ebe848d9a9ac773c6e15ef895601c1754a9f0ee69a7ab229ec931dc32'
-'18063549c65ddcfb1c438b5be60ebf27f2b6ed2b926e52ba2b9fd078510bb42d'
-'cd6a5a1c7b9ee0f688815ed2d6ebffcb5300fd1ebca9f0bc0d26c0f8d8530d12'
-'8ee2714cf3efc9477059047d70d3429601e2451e32d823ad48ecfacbad802edc'
-'8b4929329075581266bc18189660c6200f6084153530d45ca6ce2865572a392b'
-'d3898778cd4aceea175c46ddc386b47cbe134a1b89322cee285e5925042032d1'
-'c95bcfee29f32aaf12dba7e835f35311eb71dc923c71dfc063b8150165e552dd'
-'cf1efa5a056dbb9b98324b1b959a61467af15ea82ad586369b4b46856d89d990'
-'6d8bc484a1edcdbff75d39dea9f33b85b92514058f505f2915810609796e8a1a'
-'94bc57a6b7ca577fcfeac8a04e2cb20c30a54582b8f5c8906c449e20ac1641d4'
-'c5201686e88cde81222817b006957bbee08df0745fdbfeeea067b558f9131872'
-'45905f12c6053324c1ed880837fbb6b00afd631d83907d6274fc4aa53a4861a3'
-'1b281ee6cf6898fe7aec71b1f8ec6a4bceffae6d1720dd64d678a41bdc5ba197'
-'f6bb96a72a3a8271b9796d9516908de2b885028d7e3cf00913fa74415b7a9ce3'
-'2d49b3b67e7b0c8f99871906e65d5e3a6cd684ad3dde05a730dfc8d328205005'
-'eee8043f3300c1fbef18d87c783de89a11e69a75e7185e0fe0ce5a73a0feca0c'
-'448a3d9d8f4babd98872e2f91c2837342e4c01fc6bbeb0bed3a4f4e14ea381b6'
-'fde89077936d1ef35642d6b451926e885f69b9636b66314c4d1d182a9b753ee0'
-'98c758ebd8c286bb93a1b9b75a5af1939944c520164a5b38f1f39936529fd7bb'
-'1225accf01b15e7e3132ef51d9275ce573a3615360f16647c91bc078134f5002'
-'22d847437c25ff7aa94b9f5ca1147277c87bccb5b38afa4f0ef7fa5124a59cdf'
-'d184019e5989bd88b8bdb7a27788535b0a3a487921d85339ad0a1bb81cf46a40'
-'a35d8e9441219196eb90a31d1f65f08493ded91fc1ebb1b712c417827451ff13'
-'8d46ec38430a1939cde04141c9f5bcfe22b81a154bebb89dc112ff199042203f'
-'119c5055305b8f16b02a822b70044ff2410cc79f32a456d59c71c455002b8523'
-'1444e2582233eb0ed7abc8566ea951d6938f75bc069a20b47d6f5cd8608a740c'
-'b98796554589eb7ff3e30bd8fbbb27c8d2ad31bc74d96d4070df1f0eeba40544'
-'ed1d4f05c0d4d2c8f4dc4227c43a4f08be01ec6aed92a3ede2ca83550543bbe6'
-'5bd33fd191ed602e3ab0c47e9d8106328e73dcb07e3ae10062470d1de138aec0'
-'eed6b20e25e34b0ee1498948c8baed0060abe1b3a25f9188b123c81fd044771b'
-'5800130bfd912f58e6335791afde9718a59dd3428a589581fca160394a3f4b75'
-'8846bd908fa6481e2ed0a2e7fa1cfbd7bbfe02a78b1cca75e9b2a1ddaffe1084'
-'89192fe23dbce157aeec48168b45ac94cc47bd6d83907b3ab7dbaeabe5b7b7ef'
-'90bc80f8742b35525af3e1f4fad4c5e6fb3442423b6be7ddb8c4a5be76bcf564'
-'24cd76bbfab1f20c5f916bdaff001759d75bee16e6a15f56b5e66d8a8d730d0c'
-'a9523e8f9cd9e653b645c1b7b8105d98f3c33c6723f07d9e6a2a1e4b9e6abdaa'
-'22961936b2e19e95838777b24e29d3f43eab296a75958036b20c21471301f96d'
-'c806abe05b9614690c9c8466a3b3c8e15fab6bbe6fa166e23f0dbb64f5e70be6'
-'46cd992cd75c2216af075f5d1080f3620e1e6ead488de2e14ed56f7698669d25'
-'273539724246f023b0afdf79a9dd517ab0e71606381900ca26b0844a5e30e9c9'
-'7923394ff64a094d4da561b962b694011e79c8e586c8d125cb450878d3cb53f1'
-'91afce6ed4b6e4a52b03a83db4610685cc272e829a5da10db79c371ef9b00e2f'
-'0972682e3c8b1767dd45efd8dfc1d5fe664731d4a7786a12104452ba29b449c9'
-'662fdebfb7b71ac6136e1ce707234440672a9b019f2a4b3337bf24338349b7a5'
-'027776f83ce747dac6bf7bc939a6c53495022131bdb283496e0bff9deaa2a0b4'
-'ddeb2172f620877f95b69cfbe8d1bda1dc77b1829ad491189e9cf5f5ddbdd8de'
-'e36184d7264bcdd4bf7dbd9e8e547ccce50d2eb057cddd8589752f03df1a1f06'
-'e721f6e1ba3818c5ef258dddf19d5d7cdd635c485d620d4fda2107bcb0fb67c8'
-'d17e021710ecb696ec97a339e579ecf67d0397b26ac2a7b578358a40fbcea3f8'
-'708c1093cf817a0502cb65014e73c0881f94dabead931c71beb4b563e948575e'
-

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

2017-11-30 Thread Jan Steffens via arch-commits
Date: Thursday, November 30, 2017 @ 14:22:01
  Author: heftig
Revision: 311176

52.5.0-1

Modified:
  thunderbird/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-30 13:43:39 UTC (rev 311175)
+++ PKGBUILD2017-11-30 14:22:01 UTC (rev 311176)
@@ -6,8 +6,8 @@
 # Contributor: Anders Bostrom 
 
 pkgname=thunderbird
-pkgver=52.4.0
-pkgrel=2
+pkgver=52.5.0
+pkgrel=1
 pkgdesc="Standalone mail and news reader from mozilla.org"
 arch=(x86_64)
 license=(MPL GPL LGPL)
@@ -22,7 +22,7 @@
 0001-Bug-1338655-Don-t-try-to-build-mp4parse-bindings.-r-.patch
 no-crmf.diff rust-i686.patch glibc-2.26-fix.diff fix-wifi-scanner.diff
 $pkgname.desktop thunderbird-install-dir.patch)
-sha256sums=('7f57b5b4d4ec42b04afcff8327abc2d3c6185c0bcc1ad138825d021a2d3f578c'
+sha256sums=('7f169d1110db6d184a1be750a59734cbe639fb304bd76553aeaa1bde3bb7f779'
 '413cd6d366d78f325d80ebebccfd0afa0d266b40b2e54b66ba2fa03c15f3ea67'
 'a7317caba56e89932bd9e3b9352d94701dd9a419685057f238b1ded8dc0adcd7'
 'f61ea706ce6905f568b9bdafd1b044b58f20737426f0aa5019ddb9b64031a269'


[arch-commits] Commit in exim/repos/community-x86_64 (22 files)

2017-11-30 Thread Levente Polyak via arch-commits
Date: Thursday, November 30, 2017 @ 12:51:21
  Author: anthraxx
Revision: 270843

archrelease: copy trunk to community-x86_64

Added:
  exim/repos/community-x86_64/PKGBUILD
(from rev 270842, exim/trunk/PKGBUILD)
  exim/repos/community-x86_64/aliases
(from rev 270842, exim/trunk/aliases)
  exim/repos/community-x86_64/exim-submission.socket
(from rev 270842, exim/trunk/exim-submission.socket)
  exim/repos/community-x86_64/exim-submission@.service
(from rev 270842, exim/trunk/exim-submission@.service)
  exim/repos/community-x86_64/exim.Makefile
(from rev 270842, exim/trunk/exim.Makefile)
  exim/repos/community-x86_64/exim.install
(from rev 270842, exim/trunk/exim.install)
  exim/repos/community-x86_64/exim.logrotate
(from rev 270842, exim/trunk/exim.logrotate)
  exim/repos/community-x86_64/exim.service
(from rev 270842, exim/trunk/exim.service)
  exim/repos/community-x86_64/exim.socket
(from rev 270842, exim/trunk/exim.socket)
  exim/repos/community-x86_64/exim@.service
(from rev 270842, exim/trunk/exim@.service)
Deleted:
  exim/repos/community-x86_64/CVE-2017-1000369.patch
  exim/repos/community-x86_64/CVE-2017-16943.patch
  exim/repos/community-x86_64/PKGBUILD
  exim/repos/community-x86_64/aliases
  exim/repos/community-x86_64/exim-submission.socket
  exim/repos/community-x86_64/exim-submission@.service
  exim/repos/community-x86_64/exim.Makefile
  exim/repos/community-x86_64/exim.install
  exim/repos/community-x86_64/exim.logrotate
  exim/repos/community-x86_64/exim.service
  exim/repos/community-x86_64/exim.socket
  exim/repos/community-x86_64/exim@.service

--+
 CVE-2017-1000369.patch   |   68 -
 CVE-2017-16943.patch |   56 -
 PKGBUILD |  199 +--
 aliases  |   70 -
 exim-submission.socket   |   20 
 exim-submission@.service |   22 
 exim.Makefile| 2460 ++---
 exim.install |   28 
 exim.logrotate   |   12 
 exim.service |   20 
 exim.socket  |   20 
 exim@.service|   14 
 12 files changed, 1428 insertions(+), 1561 deletions(-)

Deleted: CVE-2017-1000369.patch
===
--- CVE-2017-1000369.patch  2017-11-30 12:51:02 UTC (rev 270842)
+++ CVE-2017-1000369.patch  2017-11-30 12:51:21 UTC (rev 270843)
@@ -1,68 +0,0 @@
-From 65e061b76867a9ea7aeeb535341b790b90ae6c21 Mon Sep 17 00:00:00 2001
-From: "Heiko Schlittermann (HS12-RIPE)" 
-Date: Wed, 31 May 2017 23:08:56 +0200
-Subject: [PATCH] Cleanup (prevent repeated use of -p/-oMr to avoid mem leak)
-

- doc/doc-docbook/spec.xfpt |  3 ++-
- src/src/exim.c| 19 +--
- 2 files changed, 19 insertions(+), 3 deletions(-)
-
-diff --git a/doc/doc-docbook/spec.xfpt b/doc/doc-docbook/spec.xfpt
-index 06373ccde..7816bc26d 100644
 a/doc/doc-docbook/spec.xfpt
-+++ b/doc/doc-docbook/spec.xfpt
-@@ -4274,7 +4274,7 @@ or &%-bs%& is used. For &%-bh%&, the protocol is forced 
to one of the standard
- SMTP protocol names (see the description of &$received_protocol$& in section
- &<>&). For &%-bs%&, the protocol is always &"local-"& followed by
- one of those same names. For &%-bS%& (batched SMTP) however, the protocol can
--be set by &%-oMr%&.
-+be set by &%-oMr%&. Repeated use of this option is not supported.
- 
- .vitem &%-oMs%&&~<&'host&~name'&>
- .oindex "&%-oMs%&"
-@@ -4374,6 +4374,7 @@ host name and its colon can be omitted when only the 
protocol is to be set.
- Note the Exim already has two private options, &%-pd%& and &%-ps%&, that refer
- to embedded Perl. It is therefore impossible to set a protocol value of &`d`&
- or &`s`& using this option (but that does not seem a real limitation).
-+Repeated use of this option is not supported.
- 
- .vitem &%-q%&
- .oindex "&%-q%&"
-diff --git a/src/src/exim.c b/src/src/exim.c
-index 67583e584..88e119778 100644
 a/src/src/exim.c
-+++ b/src/src/exim.c
-@@ -3106,7 +3106,14 @@ for (i = 1; i < argc; i++)
- 
-   /* -oMr: Received protocol */
- 
--  else if (Ustrcmp(argrest, "Mr") == 0) received_protocol = argv[++i];
-+  else if (Ustrcmp(argrest, "Mr") == 0)
-+
-+if (received_protocol)
-+  {
-+  fprintf(stderr, "received_protocol is set already\n");
-+  exit(EXIT_FAILURE);
-+  }
-+else received_protocol = argv[++i];
- 
-   /* -oMs: Set sender host name */
- 
-@@ -3202,7 +3209,15 @@ for (i = 1; i < argc; i++)
- 
- if (*argrest != 0)
-   {
--  uschar *hn = Ustrchr(argrest, ':');
-+  uschar *hn;
-+
-+  if (received_protocol)
-+{
-+fprintf(stderr, "received_protocol is set already\n");
-+exit(EXIT_FAILURE);
-+}
-+
-+  hn = Ustrchr(argrest, ':');
-   if (hn == NULL)
- {
- received_protocol = argrest;

Deleted: CVE-2017-16943.patch

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

2017-11-30 Thread Levente Polyak via arch-commits
Date: Thursday, November 30, 2017 @ 12:51:02
  Author: anthraxx
Revision: 270842

upgpkg: exim 4.89.1-1 (security update)

https://security.archlinux.org/AVG-518
CVE-2017-16944
CVE-2017-16943
CVE-2017-10140
CVE-2017-1000369

Modified:
  exim/trunk/PKGBUILD
Deleted:
  exim/trunk/CVE-2017-1000369.patch
  exim/trunk/CVE-2017-16943.patch

+
 CVE-2017-1000369.patch |   68 ---
 CVE-2017-16943.patch   |   56 --
 PKGBUILD   |   25 +
 3 files changed, 8 insertions(+), 141 deletions(-)

Deleted: CVE-2017-1000369.patch
===
--- CVE-2017-1000369.patch  2017-11-30 12:09:23 UTC (rev 270841)
+++ CVE-2017-1000369.patch  2017-11-30 12:51:02 UTC (rev 270842)
@@ -1,68 +0,0 @@
-From 65e061b76867a9ea7aeeb535341b790b90ae6c21 Mon Sep 17 00:00:00 2001
-From: "Heiko Schlittermann (HS12-RIPE)" 
-Date: Wed, 31 May 2017 23:08:56 +0200
-Subject: [PATCH] Cleanup (prevent repeated use of -p/-oMr to avoid mem leak)
-

- doc/doc-docbook/spec.xfpt |  3 ++-
- src/src/exim.c| 19 +--
- 2 files changed, 19 insertions(+), 3 deletions(-)
-
-diff --git a/doc/doc-docbook/spec.xfpt b/doc/doc-docbook/spec.xfpt
-index 06373ccde..7816bc26d 100644
 a/doc/doc-docbook/spec.xfpt
-+++ b/doc/doc-docbook/spec.xfpt
-@@ -4274,7 +4274,7 @@ or &%-bs%& is used. For &%-bh%&, the protocol is forced 
to one of the standard
- SMTP protocol names (see the description of &$received_protocol$& in section
- &<>&). For &%-bs%&, the protocol is always &"local-"& followed by
- one of those same names. For &%-bS%& (batched SMTP) however, the protocol can
--be set by &%-oMr%&.
-+be set by &%-oMr%&. Repeated use of this option is not supported.
- 
- .vitem &%-oMs%&&~<&'host&~name'&>
- .oindex "&%-oMs%&"
-@@ -4374,6 +4374,7 @@ host name and its colon can be omitted when only the 
protocol is to be set.
- Note the Exim already has two private options, &%-pd%& and &%-ps%&, that refer
- to embedded Perl. It is therefore impossible to set a protocol value of &`d`&
- or &`s`& using this option (but that does not seem a real limitation).
-+Repeated use of this option is not supported.
- 
- .vitem &%-q%&
- .oindex "&%-q%&"
-diff --git a/src/src/exim.c b/src/src/exim.c
-index 67583e584..88e119778 100644
 a/src/src/exim.c
-+++ b/src/src/exim.c
-@@ -3106,7 +3106,14 @@ for (i = 1; i < argc; i++)
- 
-   /* -oMr: Received protocol */
- 
--  else if (Ustrcmp(argrest, "Mr") == 0) received_protocol = argv[++i];
-+  else if (Ustrcmp(argrest, "Mr") == 0)
-+
-+if (received_protocol)
-+  {
-+  fprintf(stderr, "received_protocol is set already\n");
-+  exit(EXIT_FAILURE);
-+  }
-+else received_protocol = argv[++i];
- 
-   /* -oMs: Set sender host name */
- 
-@@ -3202,7 +3209,15 @@ for (i = 1; i < argc; i++)
- 
- if (*argrest != 0)
-   {
--  uschar *hn = Ustrchr(argrest, ':');
-+  uschar *hn;
-+
-+  if (received_protocol)
-+{
-+fprintf(stderr, "received_protocol is set already\n");
-+exit(EXIT_FAILURE);
-+}
-+
-+  hn = Ustrchr(argrest, ':');
-   if (hn == NULL)
- {
- received_protocol = argrest;

Deleted: CVE-2017-16943.patch
===
--- CVE-2017-16943.patch2017-11-30 12:09:23 UTC (rev 270841)
+++ CVE-2017-16943.patch2017-11-30 12:51:02 UTC (rev 270842)
@@ -1,56 +0,0 @@
-From 4090d62a4b25782129cc1643596dc2f6e8f63bde Mon Sep 17 00:00:00 2001
-From: Jeremy Harris 
-Date: Fri, 24 Nov 2017 20:22:33 +
-Subject: [PATCH 1/1] Avoid release of store if there have been later
- allocations.  Bug 2199
-

- doc/doc-txt/ChangeLog | 4 
- src/src/receive.c | 7 ---
- 2 files changed, 8 insertions(+), 3 deletions(-)
-
-diff --git a/doc/doc-txt/ChangeLog b/doc/doc-txt/ChangeLog
-index e937ba2..a2d9339 100644
 a/doc/doc-txt/ChangeLog
-+++ b/doc/doc-txt/ChangeLog
-@@ -59,6 +59,10 @@ JH/30 Fix a logging bug on aarch64: an unsafe routine was 
previously used for
-   connection in response to HELO" was logged instead of the actual 4xx
-   error for the HELO.
- 
-+JH/34 Bug 2199: fix a use-after-free while reading smtp input for header 
lines.
-+  A crafted sequence of BDAT commands could result in in-use memory beeing
-+  freed.
-+
- 
- Exim version 4.89
- -
-diff --git a/src/src/receive.c b/src/src/receive.c
-index 95cf13e..20672db 100644
 a/src/src/receive.c
-+++ b/src/src/receive.c
-@@ -1772,8 +1772,8 @@ for (;;)
-   (and sometimes lunatic messages can have ones that are 100s of K long) we
-   call store_release() for strings that have been copied - if the string is at
-   the start of a block (and therefore the only thing in it, because we aren't
--  doing any 

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

2017-11-30 Thread Jan Steffens via arch-commits
Date: Thursday, November 30, 2017 @ 12:02:35
  Author: heftig
Revision: 311172

archrelease: copy trunk to testing-x86_64

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

---+
 60-linux.hook |   24 
 90-linux.hook |   22 
 PKGBUILD  |  482 -
 config|16948 
 linux.install |   20 
 linux.preset  |   28 
 6 files changed, 8762 insertions(+), 8762 deletions(-)

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


[arch-commits] Commit in firefox/repos/extra-x86_64 (19 files)

2017-11-30 Thread Jan Steffens via arch-commits
Date: Thursday, November 30, 2017 @ 12:01:59
  Author: heftig
Revision: 311171

archrelease: copy trunk to extra-x86_64

Added:
  
firefox/repos/extra-x86_64/0001-Bug-1360278-Add-preference-to-trigger-context-menu-o.patch
(from rev 311170, 
firefox/trunk/0001-Bug-1360278-Add-preference-to-trigger-context-menu-o.patch)
  
firefox/repos/extra-x86_64/0002-Bug-1419426-Implement-browserSettings.contextMenuSho.patch
(from rev 311170, 
firefox/trunk/0002-Bug-1419426-Implement-browserSettings.contextMenuSho.patch)
  firefox/repos/extra-x86_64/PKGBUILD
(from rev 311170, firefox/trunk/PKGBUILD)
  firefox/repos/extra-x86_64/firefox-install-dir.patch
(from rev 311170, firefox/trunk/firefox-install-dir.patch)
  firefox/repos/extra-x86_64/firefox-symbolic.svg
(from rev 311170, firefox/trunk/firefox-symbolic.svg)
  firefox/repos/extra-x86_64/firefox.desktop
(from rev 311170, firefox/trunk/firefox.desktop)
  firefox/repos/extra-x86_64/no-plt.diff
(from rev 311170, firefox/trunk/no-plt.diff)
  firefox/repos/extra-x86_64/upload-symbol-archive
(from rev 311170, firefox/trunk/upload-symbol-archive)
  firefox/repos/extra-x86_64/wifi-disentangle.patch
(from rev 311170, firefox/trunk/wifi-disentangle.patch)
  firefox/repos/extra-x86_64/wifi-fix-interface.patch
(from rev 311170, firefox/trunk/wifi-fix-interface.patch)
Deleted:
  
firefox/repos/extra-x86_64/0001-Bug-1360278-Add-preference-to-trigger-context-menu-o.patch
  firefox/repos/extra-x86_64/PKGBUILD
  firefox/repos/extra-x86_64/firefox-install-dir.patch
  firefox/repos/extra-x86_64/firefox-symbolic.svg
  firefox/repos/extra-x86_64/firefox.desktop
  firefox/repos/extra-x86_64/no-plt.diff
  firefox/repos/extra-x86_64/upload-symbol-archive
  firefox/repos/extra-x86_64/wifi-disentangle.patch
  firefox/repos/extra-x86_64/wifi-fix-interface.patch

-+
 0001-Bug-1360278-Add-preference-to-trigger-context-menu-o.patch |  405 +++---
 0002-Bug-1419426-Implement-browserSettings.contextMenuSho.patch |  254 
 PKGBUILD|  395 +++---
 firefox-install-dir.patch   |   25 
 firefox-symbolic.svg|   60 
 firefox.desktop |  622 
+-
 no-plt.diff |   96 -
 upload-symbol-archive   |   46 
 wifi-disentangle.patch  |  490 +++
 wifi-fix-interface.patch|   52 
 10 files changed, 1353 insertions(+), 1092 deletions(-)

Deleted: 0001-Bug-1360278-Add-preference-to-trigger-context-menu-o.patch
===
--- 0001-Bug-1360278-Add-preference-to-trigger-context-menu-o.patch 
2017-11-30 12:01:10 UTC (rev 311170)
+++ 0001-Bug-1360278-Add-preference-to-trigger-context-menu-o.patch 
2017-11-30 12:01:59 UTC (rev 311171)
@@ -1,202 +0,0 @@
-From 34508b32f65d5ad8143623b1258eb92d347514e2 Mon Sep 17 00:00:00 2001
-Message-Id: 
<34508b32f65d5ad8143623b1258eb92d347514e2.1511260210.git.jan.steff...@gmail.com>
-From: Robin Grenet 
-Date: Thu, 16 Nov 2017 13:35:58 +0100
-Subject: [PATCH] Bug 1360278 - Add preference to trigger context menu on mouse
- up for GTK+ and macOS, r=mstange,smaug
-
-MozReview-Commit-ID: Bg60bD8jIg6
-
---HG--
-extra : rebase_source : cc8bd5796096f49ad4fdab81885a426afd6117e4

- modules/libpref/init/all.js |  4 
- widget/cocoa/nsChildView.mm | 23 +--
- widget/gtk/nsWindow.cpp | 27 ---
- widget/gtk/nsWindow.h   |  2 ++
- widget/nsBaseWidget.cpp | 16 
- widget/nsBaseWidget.h   |  6 ++
- 6 files changed, 69 insertions(+), 9 deletions(-)
-
-diff --git a/modules/libpref/init/all.js b/modules/libpref/init/all.js
-index 315422a6e2255e5f..92bcf5f02564d46e 100644
 a/modules/libpref/init/all.js
-+++ b/modules/libpref/init/all.js
-@@ -234,6 +234,10 @@ pref("browser.sessionhistory.max_total_viewers", -1);
-
- pref("ui.use_native_colors", true);
- pref("ui.click_hold_context_menus", false);
-+
-+// Pop up context menu on mouseup instead of mousedown, if that's the OS 
default.
-+// Note: ignored on Windows (context menus always use mouseup)
-+pref("ui.context_menus.after_mouseup", false);
- // Duration of timeout of incremental search in menus (ms).  0 means infinite.
- pref("ui.menu.incremental_search.timeout", 1000);
- // If true, all popups won't hide automatically on blur
-diff --git a/widget/cocoa/nsChildView.mm b/widget/cocoa/nsChildView.mm
-index cac897327a190422..bf42b4f8c0950753 100644
 a/widget/cocoa/nsChildView.mm
-+++ b/widget/cocoa/nsChildView.mm
-@@ -4700,30 +4700,49 @@ NSEvent* gLastDragMouseDownEvent = nil;
-   if (!mGeckoChild)
- return;
-

[arch-commits] Commit in firefox-i18n/repos/extra-any (PKGBUILD PKGBUILD)

2017-11-30 Thread Jan Steffens via arch-commits
Date: Thursday, November 30, 2017 @ 12:01:10
  Author: heftig
Revision: 311170

archrelease: copy trunk to extra-any

Added:
  firefox-i18n/repos/extra-any/PKGBUILD
(from rev 311169, firefox-i18n/trunk/PKGBUILD)
Deleted:
  firefox-i18n/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-30 11:56:03 UTC (rev 311169)
+++ PKGBUILD2017-11-30 12:01:10 UTC (rev 311170)
@@ -1,232 +0,0 @@
-# $Id$
-# Maintainer: Thomas Baechler 
-# Contributor: Jaroslaw Swierczynski 
-# Contributor: Michal Hybner 
-# Contributor: Andrea Scarpino 
-
-pkgbase=firefox-i18n
-pkgver=57.0
-pkgrel=1
-pkgdesc="Language pack for Firefox"
-arch=('any')
-url="http://www.mozilla.com/;
-license=('MPL' 'GPL')
-
-_languages=(
-  'ach"Acholi"'
-  'af "Afrikaans"'
-  'an "Aragonese"'
-  'ar "Arabic"'
-  'as "Assamese"'
-  'ast"Asturian"'
-  'az "Azerbaijani"'
-  'be "Belarusian"'
-  'bg "Bulgarian"'
-  'bn-BD  "Bengali (Bangladesh)"'
-  'bn-IN  "Bengali (India)"'
-  'br "Breton"'
-  'bs "Bosnian"'
-  'ca "Catalan"'
-  'cak"Maya Kaqchikel"'
-  'cs "Czech"'
-  'cy "Welsh"'
-  'da "Danish"'
-  'de "German"'
-  'dsb"Lower Sorbian"'
-  'el "Greek"'
-  'en-GB  "English (British)"'
-  'en-US  "English (US)"'
-  'en-ZA  "English (South African)"'
-  'eo "Esperanto"'
-  'es-AR  "Spanish (Argentina)"'
-  'es-CL  "Spanish (Chile)"'
-  'es-ES  "Spanish (Spain)"'
-  'es-MX  "Spanish (Mexico)"'
-  'et "Estonian"'
-  'eu "Basque"'
-  'fa "Persian"'
-  'ff "Fulah"'
-  'fi "Finnish"'
-  'fr "French"'
-  'fy-NL  "Frisian"'
-  'ga-IE  "Irish"'
-  'gd "Gaelic (Scotland)"'
-  'gl "Galician"'
-  'gn "Guarani"'
-  'gu-IN  "Gujarati (India)"'
-  'he "Hebrew"'
-  'hi-IN  "Hindi (India)"'
-  'hr "Croatian"'
-  'hsb"Upper Sorbian"'
-  'hu "Hungarian"'
-  'hy-AM  "Armenian"'
-  'id "Indonesian"'
-  'is "Icelandic"'
-  'it "Italian"'
-  'ja "Japanese"'
-  'ka "Georgian"'
-  'kab"Kabyle"'
-  'kk "Kazakh"'
-  'km "Khmer"'
-  'kn "Kannada"'
-  'ko "Korean"'
-  'lij"Ligurian"'
-  'lt "Lithuanian"'
-  'lv "Latvian"'
-  'mai"Maithili"'
-  'mk "Macedonian"'
-  'ml "Malayalam"'
-  'mr "Marathi"'
-  'ms "Malay"'
-  'my "Burmese"'
-  'nb-NO  "Norwegian (Bokmål)"'
-  'nl "Dutch"'
-  'nn-NO  "Norwegian (Nynorsk)"'
-  'or "Oriya"'
-  'pa-IN  "Punjabi (India)"'
-  'pl "Polish"'
-  'pt-BR  "Portuguese (Brazilian)"'
-  'pt-PT  "Portuguese (Portugal)"'
-  'rm "Romansh"'
-  'ro "Romanian"'
-  'ru "Russian"'
-  'si "Sinhala"'
-  'sk "Slovak"'
-  'sl "Slovenian"'
-  'son"Songhai"'
-  'sq "Albanian"'
-  'sr "Serbian"'
-  'sv-SE  "Swedish"'
-  'ta "Tamil"'
-  'te "Telugu"'
-  'th "Thai"'
-  'tr "Turkish"'
-  'uk "Ukrainian"'
-  'ur "Urdu"'
-  'uz "Uzbek"'
-  'vi "Vietnamese"'
-  'xh "Xhosa"'
-  'zh-CN  "Chinese (Simplified)"'
-  'zh-TW  "Chinese (Traditional)"'
-)
-
-pkgname=()
-source=()
-_url=https://ftp.mozilla.org/pub/firefox/releases/$pkgver/linux-x86_64/xpi
-
-for _lang in "${_languages[@]}"; do
-  _locale=${_lang%% *}
-  _pkgname=firefox-i18n-${_locale,,}
-
-  pkgname+=($_pkgname)
-  source+=("firefox-i18n-$pkgver-$_locale.xpi::$_url/$_locale.xpi")
-  eval "package_$_pkgname() {
-_package $_lang
-  }"
-done
-
-# Don't extract anything
-noextract=(${source[@]%%::*})
-
-_package() {
-  pkgdesc="$2 language pack for Firefox"
-  depends=("firefox>=$pkgver")
-  install -Dm644 firefox-i18n-$pkgver-$1.xpi \
-
"$pkgdir/usr/lib/firefox/browser/extensions/langpack-$1...@firefox.mozilla.org.xpi"
-}
-
-sha256sums=('000d31d272ec1dcf94fb47cd006c96ac74c0109ad78ff3c2b66eb7b1db1d3c74'
-'a3e1aff345f6ffb1e82ba55c04e91ac6da0ae02f8d9146c963c7cec812a788d5'
-'a8708b1a8b07161e1bbdda9594ae3c17be59916c17fabbb857a51c093f4ae814'
-'8d2ef26e5fb1f2f15585ac1a6af22300f4e9a99caf64f10bb4f9f8d5f4fa6bad'
-'1ba6874911e21bc052fafdeae0637a59d05cbcf9602cf7007a685d4b35363525'
-'2bc6b317ae7d4c433e21ba2ebd1d72bf9587edfc9347ca9924cd12fcdd157426'
-'3a60286c17bc34e05550e69b744a27fb0f6e9960cc3aba4c4796150f2bab2bad'
-'eaea8efbfb73ce7d9f64cf534ac0b64b48fc231f82f40001a53062c35ba30e85'
-'13db806a1213fb759f4489f6931a9c9309ad7fe3e6f9baeb55796efc9f60f358'
-'3ccca355b507383473799481468f366c5d9634034863bdd519ab733867d17851'
-'0c27d535c64640fd1a1571295257867bda0d637f0559c62ce6637478bcdc38ab'
-'1fa26a6217a90f22ac169e065237e94cbc290d75a42cfbe48f4635cc51be1412'
-

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

2017-11-30 Thread Jan Steffens via arch-commits
Date: Thursday, November 30, 2017 @ 11:56:03
  Author: heftig
Revision: 311169

57.0.1-1

Added:
  firefox/trunk/0002-Bug-1419426-Implement-browserSettings.contextMenuSho.patch
Modified:
  firefox/trunk/0001-Bug-1360278-Add-preference-to-trigger-context-menu-o.patch
  firefox/trunk/PKGBUILD
  firefox/trunk/firefox-install-dir.patch

-+
 0001-Bug-1360278-Add-preference-to-trigger-context-menu-o.patch |   36 -
 0002-Bug-1419426-Implement-browserSettings.contextMenuSho.patch |  254 
++
 PKGBUILD|   13 
 firefox-install-dir.patch   |   11 
 4 files changed, 287 insertions(+), 27 deletions(-)

Modified: 0001-Bug-1360278-Add-preference-to-trigger-context-menu-o.patch
===
--- 0001-Bug-1360278-Add-preference-to-trigger-context-menu-o.patch 
2017-11-30 11:42:41 UTC (rev 311168)
+++ 0001-Bug-1360278-Add-preference-to-trigger-context-menu-o.patch 
2017-11-30 11:56:03 UTC (rev 311169)
@@ -1,9 +1,9 @@
-From 34508b32f65d5ad8143623b1258eb92d347514e2 Mon Sep 17 00:00:00 2001
-Message-Id: 
<34508b32f65d5ad8143623b1258eb92d347514e2.1511260210.git.jan.steff...@gmail.com>
+From 05ec1aa0d5e8806dd0c5c6d08c82846a1389b599 Mon Sep 17 00:00:00 2001
+Message-Id: 
<05ec1aa0d5e8806dd0c5c6d08c82846a1389b599.1512038840.git.jan.steff...@gmail.com>
 From: Robin Grenet 
 Date: Thu, 16 Nov 2017 13:35:58 +0100
-Subject: [PATCH] Bug 1360278 - Add preference to trigger context menu on mouse
- up for GTK+ and macOS, r=mstange,smaug
+Subject: [PATCH 1/2] Bug 1360278 - Add preference to trigger context menu on
+ mouse up for GTK+ and macOS, r=mstange,smaug
 
 MozReview-Commit-ID: Bg60bD8jIg6
 
@@ -19,10 +19,10 @@
  6 files changed, 69 insertions(+), 9 deletions(-)
 
 diff --git a/modules/libpref/init/all.js b/modules/libpref/init/all.js
-index 315422a6e2255e5f..92bcf5f02564d46e 100644
+index 9febead1d363d792..7a6e6a20f3cc3fd6 100644
 --- a/modules/libpref/init/all.js
 +++ b/modules/libpref/init/all.js
-@@ -234,6 +234,10 @@ pref("browser.sessionhistory.max_total_viewers", -1);
+@@ -231,6 +231,10 @@ pref("browser.sessionhistory.max_total_viewers", -1);
  
  pref("ui.use_native_colors", true);
  pref("ui.click_hold_context_menus", false);
@@ -34,10 +34,10 @@
  pref("ui.menu.incremental_search.timeout", 1000);
  // If true, all popups won't hide automatically on blur
 diff --git a/widget/cocoa/nsChildView.mm b/widget/cocoa/nsChildView.mm
-index cac897327a190422..bf42b4f8c0950753 100644
+index 25b4c1ba7a2d1207..2affd1ef386cbfd0 100644
 --- a/widget/cocoa/nsChildView.mm
 +++ b/widget/cocoa/nsChildView.mm
-@@ -4700,30 +4700,49 @@ NSEvent* gLastDragMouseDownEvent = nil;
+@@ -4719,30 +4719,49 @@ NSEvent* gLastDragMouseDownEvent = nil;
if (!mGeckoChild)
  return;
  
@@ -90,10 +90,10 @@
NS_OBJC_END_TRY_ABORT_BLOCK;
  }
 diff --git a/widget/gtk/nsWindow.cpp b/widget/gtk/nsWindow.cpp
-index 87cc858ca7efd11d..17992f78bbf0a0a7 100644
+index 37b6aae4c3d0b4e7..2b80124538c20ed6 100644
 --- a/widget/gtk/nsWindow.cpp
 +++ b/widget/gtk/nsWindow.cpp
-@@ -2737,6 +2737,19 @@ static guint ButtonMaskFromGDKButton(guint button)
+@@ -2727,6 +2727,19 @@ static guint ButtonMaskFromGDKButton(guint button)
  return GDK_BUTTON1_MASK << (button - 1);
  }
  
@@ -113,7 +113,7 @@
  void
  nsWindow::OnButtonPressEvent(GdkEventButton *aEvent)
  {
-@@ -2806,13 +2819,8 @@ nsWindow::OnButtonPressEvent(GdkEventButton *aEvent)
+@@ -2796,13 +2809,8 @@ nsWindow::OnButtonPressEvent(GdkEventButton *aEvent)
  DispatchInputEvent();
  
  // right menu click on linux should also pop up a context menu
@@ -129,7 +129,7 @@
  }
  }
  
-@@ -2848,6 +2856,11 @@ nsWindow::OnButtonReleaseEvent(GdkEventButton *aEvent)
+@@ -2838,6 +2846,11 @@ nsWindow::OnButtonReleaseEvent(GdkEventButton *aEvent)
  
  DispatchInputEvent();
  mLastMotionPressure = pressure;
@@ -142,7 +142,7 @@
  
  void
 diff --git a/widget/gtk/nsWindow.h b/widget/gtk/nsWindow.h
-index 0fafc8994579fe3c..7a28e3260c0fdefb 100644
+index f7c07d57491b0b83..b969c9db4306ba6a 100644
 --- a/widget/gtk/nsWindow.h
 +++ b/widget/gtk/nsWindow.h
 @@ -245,6 +245,8 @@ private:
@@ -155,10 +155,10 @@
  void   ThemeChanged(void);
  void   OnDPIChanged(void);
 diff --git a/widget/nsBaseWidget.cpp b/widget/nsBaseWidget.cpp
-index 13fccd7f7d6627fb..e4ca5e011894f5c4 100644
+index 996409f45db11cc7..de73fe36d27955cd 100644
 --- a/widget/nsBaseWidget.cpp
 +++ b/widget/nsBaseWidget.cpp
-@@ -1218,6 +1218,22 @@ 
nsBaseWidget::DispatchEventToAPZOnly(mozilla::WidgetInputEvent* aEvent)
+@@ -1222,6 +1222,22 @@ 
nsBaseWidget::DispatchEventToAPZOnly(mozilla::WidgetInputEvent* aEvent)
}
  }
  
@@ -182,10 +182,10 @@
  nsBaseWidget::GetDocument() const
  {
 diff --git a/widget/nsBaseWidget.h b/widget/nsBaseWidget.h
-index 

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

2017-11-30 Thread Jan Steffens via arch-commits
Date: Thursday, November 30, 2017 @ 11:42:41
  Author: heftig
Revision: 311168

4.14.3-1

Modified:
  linux-zen/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-30 10:49:29 UTC (rev 311167)
+++ PKGBUILD2017-11-30 11:42:41 UTC (rev 311168)
@@ -6,8 +6,8 @@
 pkgbase=linux-zen   # Build -zen kernel
 #pkgbase=linux-custom   # Build kernel with a different name
 _srcname=linux-4.14
-_zenpatch=zen-4.14.2-e0127de5f5bf8be283a81d9caca32646e13c3272.diff
-pkgver=4.14.2
+_zenpatch=zen-4.14.3-6f039f2cc8c3a511562d347ddc96c4f9c5a0c4aa.diff
+pkgver=4.14.3
 pkgrel=1
 arch=('x86_64')
 url="https://github.com/zen-kernel/zen-kernel;
@@ -33,9 +33,9 @@
 )
 sha256sums=('f81d59477e90a130857ce18dc02f4fbe5725854911db1e7ba770c7cd350f96a7'
 'SKIP'
-'2dc86272e55d31c55bdeaa47b3d44fbd6235a396e37d82c2b47aa27f6ba82ee3'
+'e13995c11d0c2d3379c887666dbfaca619200fb8853db6d5d67f97d47fd959b7'
 'SKIP'
-'6f86c4184aa5b64a1f4d81799a2a44f659efe05e6927c7496476e08a68f9ec49'
+'c6bd7c30b22f1203087d798bc450256ff194d1c435d413feefa40b943870d7cf'
 'SKIP'
 '70b96391a0ccdbb3a5fe917bd9d870159001a664da6a27ae44fbc826d2869818'
 'ae2e95db94ef7176207c690224169594d49445e04249d2499e9d2fbc117a0b21'


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

2017-11-30 Thread Jan Steffens via arch-commits
Date: Thursday, November 30, 2017 @ 10:49:29
  Author: heftig
Revision: 311167

57.0.1-1

Modified:
  firefox-i18n/trunk/PKGBUILD

--+
 PKGBUILD |  192 ++---
 1 file changed, 96 insertions(+), 96 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-11-30 10:42:15 UTC (rev 311166)
+++ PKGBUILD2017-11-30 10:49:29 UTC (rev 311167)
@@ -5,7 +5,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgbase=firefox-i18n
-pkgver=57.0
+pkgver=57.0.1
 pkgrel=1
 pkgdesc="Language pack for Firefox"
 arch=('any')
@@ -135,98 +135,98 @@
 
"$pkgdir/usr/lib/firefox/browser/extensions/langpack-$1...@firefox.mozilla.org.xpi"
 }
 
-sha256sums=('000d31d272ec1dcf94fb47cd006c96ac74c0109ad78ff3c2b66eb7b1db1d3c74'
-'a3e1aff345f6ffb1e82ba55c04e91ac6da0ae02f8d9146c963c7cec812a788d5'
-'a8708b1a8b07161e1bbdda9594ae3c17be59916c17fabbb857a51c093f4ae814'
-'8d2ef26e5fb1f2f15585ac1a6af22300f4e9a99caf64f10bb4f9f8d5f4fa6bad'
-'1ba6874911e21bc052fafdeae0637a59d05cbcf9602cf7007a685d4b35363525'
-'2bc6b317ae7d4c433e21ba2ebd1d72bf9587edfc9347ca9924cd12fcdd157426'
-'3a60286c17bc34e05550e69b744a27fb0f6e9960cc3aba4c4796150f2bab2bad'
-'eaea8efbfb73ce7d9f64cf534ac0b64b48fc231f82f40001a53062c35ba30e85'
-'13db806a1213fb759f4489f6931a9c9309ad7fe3e6f9baeb55796efc9f60f358'
-'3ccca355b507383473799481468f366c5d9634034863bdd519ab733867d17851'
-'0c27d535c64640fd1a1571295257867bda0d637f0559c62ce6637478bcdc38ab'
-'1fa26a6217a90f22ac169e065237e94cbc290d75a42cfbe48f4635cc51be1412'
-'4cd909d163eee151735133ea95e1fe84717faf3ce1a8080a12bb1f3dac1eea03'
-'5f2cc97712cbf62111cab6491d4bfe771aecebf5a3cc908bc3888da1098b2061'
-'46c4275236d487b3f3e73331dc27b91437f20eaacd4dc3f3944e5fbc941d713b'
-'e424f912ca1a20f81fb431743eda49df3bc606ae8cd97b606e439731fea3502f'
-'6be7c22952f9fd2a9ea366514851666351560bde940d925ee0887a5b0bebb38f'
-'b38844f23dec6eb91ce3a39e1b1011326b337f7196f14711e0b2bcf8a6af4c8e'
-'0efd0ae87321a8debe51964367c9d037f863585842b97cae16e6358e0c96f833'
-'d77316afaacf861a82584138bd45c97c5caca45f08dc7150b2ab45dad93d1861'
-'06506d93eb70c3421cee089fe11dbd9ec98b768e3cd27524221a777cea94e11d'
-'7dffebb5f774086c6c2b06a1b31bf72090342882cea93982506448e7115752de'
-'ac8b76c6ad2f10b62c784cb97b30b7c8cf0b466102a3732199a2ce5f355aa0db'
-'002ab3c4a68c97edb3c1a9c14ebd33e36089f20dbd05d7287cbce2d874aa9b5e'
-'d955820a9f8cc45357a73465f99b2ef7ec9c52def3f91d86b6c96d7d7b681b36'
-'38510cb43907ffaa51ef7c561edc591fcbed6fa2964d4af441c341e3a83b22c3'
-'a016bcb97ba15d3ed7be5687c0304deb5c8cb0b3b66f4dda9257ea479ef905f2'
-'dcbed2cae03babd17d915887deed8105d54d29b42e9d948a56cd4ac79e7d48cb'
-'89b622ab51acbd5344ef7ba41183a633b2f9c30f2eee46270454b6ff6845c705'
-'aa3e3b5d6394a703caadc0edf143bd3f426e6b7602228a201dfa0c90dcd9'
-'e3b4cdff9951a1794ca7b58d66f1fa8f54a821d288b9fa562758cffb0eed90a1'
-'ea79eec0ab147b1adad6c822fc2d143376554bd7571637aedc6be183937f5e23'
-'f6f39dba4b8526bbd78cc8cee7268a8d9e894d9942177aba4f3c2862435f2370'
-'64268c589750469ff57cbff54c7f7c5c6b5a816b8ef96675adfdf5c848962865'
-'9763da205a835bb4217e36ff3ef4d6bdcf341a46be44c43a430576ca694b2ae1'
-'998a1f5ff2ab5b85e29ecc39b082d9c0f6a9bbdda6010d9da68cc89496446eb9'
-'7c964990d19f9487b4421fafad0cc535974fe8edcce51aaebba90919ef20cde4'
-'b0a6fd154dfdb4378b7749ec8535d6e59ec47142dda4be1fda08573c5aebc38e'
-'ab1699b8727aa79e80f4c47b20e5355fb0fecb68c8e27f71791a1cbdc3d8d1ca'
-'659fd0c6cb77443c38781ddd04039627e725be55536e6f78031c7387bf935574'
-'0b3145eb603e6216a2319362d56d849a23f60113efe006f2d365a069ae94e43f'
-'d7d45cd393fdbc2868cdbacb1dc63958164f561dcfc08603c0decfe83fae7c2f'
-'e9b8f7e973660f2a9574769286cb72a963847fd765a6ba1f3192cdd3139d4d92'
-'7a10f3862dbbf8b894b6fa5e2af16f576a596621ce0d39dd0c7ffa94bf87f544'
-'ebe04b126b79b28865c4596f664ad903ab22773f84f9b0075d498a0d5d467b2a'
-'6c0ebfe0d4f636eee3c4bbe487c65716e4dcade9534e20feb30372b259a13c51'
-'d90ffb70c9e5996b97d723999396724ffc9afd9cfc1b8c9992887c23edae447d'
-'55d92e6a196d9aef1476d3d8b28cd1994291c9597b9bf3316f2d7071e3112869'
-'86d8c8b15371d46f41c2e7981690619bd580150b06a2aa200b1e7559fae9fd88'
-'47b5a89a66bec891a3713d322b2340b04c4e0f76b438e2be8c9c8c5466c5ca2a'
-'cf34bea1bbb439bf46eca14ff9455b48be2fec8c4690c96a5d8861af16edd2ba'
-'2dc030e237efbb3a436dfb62d605d4a58e9e4fc74bf8be656bafca29bb47b9c9'
-

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

2017-11-30 Thread Christian Hesse via arch-commits
Date: Thursday, November 30, 2017 @ 10:42:15
  Author: eworm
Revision: 311166

archrelease: copy trunk to testing-any

Added:
  archlinux-keyring/repos/testing-any/
  archlinux-keyring/repos/testing-any/PKGBUILD
(from rev 311165, archlinux-keyring/trunk/PKGBUILD)
  archlinux-keyring/repos/testing-any/archlinux-keyring.install
(from rev 311165, archlinux-keyring/trunk/archlinux-keyring.install)

---+
 PKGBUILD  |   25 +
 archlinux-keyring.install |   11 +++
 2 files changed, 36 insertions(+)

Copied: archlinux-keyring/repos/testing-any/PKGBUILD (from rev 311165, 
archlinux-keyring/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2017-11-30 10:42:15 UTC (rev 311166)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Pierre Schmitz <pie...@archlinux.de>
+
+pkgname=archlinux-keyring
+pkgver=20171130
+pkgrel=1
+pkgdesc='Arch Linux PGP keyring'
+arch=('any')
+url='https://projects.archlinux.org/archlinux-keyring.git/'
+license=('GPL')
+install="${pkgname}.install"
+source=("https://sources.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz;
+
"https://sources.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz.sig;)
+sha256sums=('f073bbf27ceebca399761a68e0ebfb472a3024f914d950002add10dba96916ad'
+'SKIP')
+validpgpkeys=('4AA4767BBC9C4B1D18AE28B77F2D434B9741E8AC'  # Pierre Schmitz 
<pie...@archlinux.de>
+  'A314827C4E4250A204CE6E13284FC34C8E4B1A25'  # Thomas Bächler 
<tho...@bchlr.de>
+  '86CFFCA918CF3AF47147588051E8B148AC34'  # Evangelos Foutras 
<evange...@foutrelis.com>
+  'F3691687D867B81B51CE07D9BBE43771487328A9'  # Bartlomiej 
Piotrowski <b...@bpiotrowski.pl>
+  'BD84DE71F493DF6814B0167254EDC91609BC9183') # Christian Hesse 
<chri...@n-hes.se>
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make PREFIX=/usr DESTDIR=${pkgdir} install
+}

Copied: archlinux-keyring/repos/testing-any/archlinux-keyring.install (from rev 
311165, archlinux-keyring/trunk/archlinux-keyring.install)
===
--- testing-any/archlinux-keyring.install   (rev 0)
+++ testing-any/archlinux-keyring.install   2017-11-30 10:42:15 UTC (rev 
311166)
@@ -0,0 +1,11 @@
+post_upgrade() {
+   if usr/bin/pacman-key -l >/dev/null 2>&1; then
+   usr/bin/pacman-key --populate archlinux
+   fi
+}
+
+post_install() {
+   if [ -x usr/bin/pacman-key ]; then
+   post_upgrade
+   fi
+}


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

2017-11-30 Thread Christian Hesse via arch-commits
Date: Thursday, November 30, 2017 @ 10:42:11
  Author: eworm
Revision: 311165

upgpkg: archlinux-keyring 20171130-1

Modified:
  archlinux-keyring/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-30 10:03:44 UTC (rev 311164)
+++ PKGBUILD2017-11-30 10:42:11 UTC (rev 311165)
@@ -2,7 +2,7 @@
 # Maintainer: Pierre Schmitz <pie...@archlinux.de>
 
 pkgname=archlinux-keyring
-pkgver=20171020
+pkgver=20171130
 pkgrel=1
 pkgdesc='Arch Linux PGP keyring'
 arch=('any')
@@ -11,7 +11,7 @@
 install="${pkgname}.install"
 
source=("https://sources.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz;
 
"https://sources.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz.sig;)
-sha256sums=('7f5944e2491aa79d5ed8fb8799d29337e90e1bca4b7ed82135f88a9c856bf56f'
+sha256sums=('f073bbf27ceebca399761a68e0ebfb472a3024f914d950002add10dba96916ad'
 'SKIP')
 validpgpkeys=('4AA4767BBC9C4B1D18AE28B77F2D434B9741E8AC'  # Pierre Schmitz 
<pie...@archlinux.de>
   'A314827C4E4250A204CE6E13284FC34C8E4B1A25'  # Thomas Bächler 
<tho...@bchlr.de>


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

2017-11-30 Thread Felix Yan via arch-commits
Date: Thursday, November 30, 2017 @ 10:07:28
  Author: felixonmars
Revision: 270840

fix metadata

Modified:
  python-stestr/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-30 09:57:58 UTC (rev 270839)
+++ PKGBUILD2017-11-30 10:07:28 UTC (rev 270840)
@@ -7,9 +7,9 @@
 pkgname=(python-stestr python2-stestr)
 pkgver=1.1.0
 pkgrel=1
-pkgdesc="The most basic Text::Unidecode port"
-url="https://github.com/kmike/stestr;
-license=('PerlArtistic')
+pkgdesc="A test runner runner similar to testrepository"
+url="http://stestr.readthedocs.io/en/latest/;
+license=('Apache')
 arch=('any')
 makedepends=('python-future' 'python2-future' 'python-pbr' 'python2-pbr' 
'python-subunit'
  'python2-subunit' 'python-fixtures' 'python2-fixtures' 
'python-testtools'


[arch-commits] Commit in nvidia-settings/repos/extra-x86_64 (4 files)

2017-11-30 Thread Felix Yan via arch-commits
Date: Thursday, November 30, 2017 @ 10:03:44
  Author: felixonmars
Revision: 311164

archrelease: copy trunk to extra-x86_64

Added:
  nvidia-settings/repos/extra-x86_64/PKGBUILD
(from rev 311163, nvidia-settings/trunk/PKGBUILD)
  nvidia-settings/repos/extra-x86_64/libxnvctrl_so.patch
(from rev 311163, nvidia-settings/trunk/libxnvctrl_so.patch)
Deleted:
  nvidia-settings/repos/extra-x86_64/PKGBUILD
  nvidia-settings/repos/extra-x86_64/libxnvctrl_so.patch

-+
 PKGBUILD|  122 ++---
 libxnvctrl_so.patch |  134 +-
 2 files changed, 128 insertions(+), 128 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-30 10:03:19 UTC (rev 311163)
+++ PKGBUILD2017-11-30 10:03:44 UTC (rev 311164)
@@ -1,61 +0,0 @@
-# Maintainer: Felix Yan 
-# Maintainer: Levente Polyak 
-
-pkgbase=nvidia-settings
-pkgname=('nvidia-settings' 'libxnvctrl')
-pkgver=387.22
-pkgrel=1
-pkgdesc="Tool for configuring the NVIDIA graphics driver"
-url='https://github.com/NVIDIA/nvidia-settings'
-arch=('i686' 'x86_64')
-license=('GPL2')
-makedepends=('git' 'inetutils' 'gtk2' 'jansson' 'gtk3' 'libxv' 'libvdpau' 
'nvidia-utils' 'libxext')
-options=('staticlibs')
-source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/NVIDIA/nvidia-settings/archive/${pkgver}.tar.gz
-libxnvctrl_so.patch)
-sha512sums=('dae157a54d0e48e94776db95927d27fca0370c7ffa67d79ce6fa372ce40bd766c081a65cd090a532c311a8f727beca6d0d9fcd526dc7791b2c73d4193854439b'
-
'f69f5dc84fe624579a3c9ce877f4ae4e34c2184877576afbea07b8abdd7ff01e470517f2b77cd11a904518cbcb83fb388ca1d0006f0ef2854723920c9cf8')
-
-prepare() {
-  export PREFIX=/usr
-  export NV_USE_BUNDLED_LIBJANSSON=0
-  cd ${pkgbase}-${pkgver}
-  patch -p1 < "${srcdir}/libxnvctrl_so.patch"
-}
-
-build() {
-  cd ${pkgbase}-${pkgver}
-  make
-  make -C src/libXNVCtrl
-}
-
-package_nvidia-settings() {
-  depends=('jansson' 'gtk3' 'libxv' 'libvdpau' 'nvidia-utils' 'libxnvctrl')
-
-  cd ${pkgbase}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-
-  install -D -m644 doc/nvidia-settings.desktop 
"${pkgdir}/usr/share/applications/nvidia-settings.desktop"
-  install -D -m644 doc/nvidia-settings.png 
"${pkgdir}/usr/share/pixmaps/nvidia-settings.png"
-  sed -e 's:__UTILS_PATH__:/usr/bin:' -e 
's:__PIXMAP_PATH__:/usr/share/pixmaps:' -i 
"${pkgdir}/usr/share/applications/nvidia-settings.desktop"
-
-  rm "$pkgdir/usr/lib/libnvidia-gtk2.so.$pkgver"
-}
-
-package_libxnvctrl() {
-  depends=('libxext')
-  pkgdesc='NVIDIA NV-CONTROL X extension'
-
-  cd ${pkgbase}-${pkgver}
-  install -Dm 644 doc/{NV-CONTROL-API.txt,FRAMELOCK.txt} -t 
"${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 samples/{Makefile,README,*.c,*.h,*.mk} -t 
"${pkgdir}/usr/share/doc/${pkgname}/samples"
-
-  cd src/libXNVCtrl
-  install -Dm 644 *.h -t "${pkgdir}/usr/include/NVCtrl"
-  install -Dm 644 libXNVCtrl.a -t "${pkgdir}/usr/lib"
-  install -Dm 755 libXNVCtrl.so.0.0.0 -t "${pkgdir}/usr/lib"
-  ln -s libXNVCtrl.so.0.0.0 "${pkgdir}/usr/lib/libXNVCtrl.so.0"
-  ln -s libXNVCtrl.so.0 "${pkgdir}/usr/lib/libXNVCtrl.so"
-}
-
-# vim: ts=2 sw=2 et:

Copied: nvidia-settings/repos/extra-x86_64/PKGBUILD (from rev 311163, 
nvidia-settings/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-30 10:03:44 UTC (rev 311164)
@@ -0,0 +1,61 @@
+# Maintainer: Felix Yan 
+# Maintainer: Levente Polyak 
+
+pkgbase=nvidia-settings
+pkgname=('nvidia-settings' 'libxnvctrl')
+pkgver=387.34
+pkgrel=1
+pkgdesc="Tool for configuring the NVIDIA graphics driver"
+url='https://github.com/NVIDIA/nvidia-settings'
+arch=('x86_64')
+license=('GPL2')
+makedepends=('git' 'inetutils' 'gtk2' 'jansson' 'gtk3' 'libxv' 'libvdpau' 
'nvidia-utils' 'libxext')
+options=('staticlibs')
+source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/NVIDIA/nvidia-settings/archive/${pkgver}.tar.gz
+libxnvctrl_so.patch)
+sha512sums=('559c859c0740575ab93edce013587250b98d7d2cd55198b5103fe97423d31ed9f113d83c240c402404de88074c285a07e46342538610d3d5dade7bed59d60090'
+
'f69f5dc84fe624579a3c9ce877f4ae4e34c2184877576afbea07b8abdd7ff01e470517f2b77cd11a904518cbcb83fb388ca1d0006f0ef2854723920c9cf8')
+
+prepare() {
+  export PREFIX=/usr
+  export NV_USE_BUNDLED_LIBJANSSON=0
+  cd ${pkgbase}-${pkgver}
+  patch -p1 < "${srcdir}/libxnvctrl_so.patch"
+}
+
+build() {
+  cd ${pkgbase}-${pkgver}
+  make
+  make -C src/libXNVCtrl
+}
+
+package_nvidia-settings() {
+  depends=('jansson' 'gtk3' 'libxv' 'libvdpau' 'nvidia-utils' 'libxnvctrl')
+
+  cd ${pkgbase}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  install -D -m644 doc/nvidia-settings.desktop 

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

2017-11-30 Thread Felix Yan via arch-commits
Date: Thursday, November 30, 2017 @ 10:03:19
  Author: felixonmars
Revision: 311163

upgpkg: nvidia-settings 387.34-1

Modified:
  nvidia-settings/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-30 07:18:33 UTC (rev 311162)
+++ PKGBUILD2017-11-30 10:03:19 UTC (rev 311163)
@@ -3,7 +3,7 @@
 
 pkgbase=nvidia-settings
 pkgname=('nvidia-settings' 'libxnvctrl')
-pkgver=387.22
+pkgver=387.34
 pkgrel=1
 pkgdesc="Tool for configuring the NVIDIA graphics driver"
 url='https://github.com/NVIDIA/nvidia-settings'
@@ -13,7 +13,7 @@
 options=('staticlibs')
 
source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/NVIDIA/nvidia-settings/archive/${pkgver}.tar.gz
 libxnvctrl_so.patch)
-sha512sums=('dae157a54d0e48e94776db95927d27fca0370c7ffa67d79ce6fa372ce40bd766c081a65cd090a532c311a8f727beca6d0d9fcd526dc7791b2c73d4193854439b'
+sha512sums=('559c859c0740575ab93edce013587250b98d7d2cd55198b5103fe97423d31ed9f113d83c240c402404de88074c285a07e46342538610d3d5dade7bed59d60090'
 
'f69f5dc84fe624579a3c9ce877f4ae4e34c2184877576afbea07b8abdd7ff01e470517f2b77cd11a904518cbcb83fb388ca1d0006f0ef2854723920c9cf8')
 
 prepare() {


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

2017-11-30 Thread Felix Yan via arch-commits
Date: Thursday, November 30, 2017 @ 09:57:58
  Author: felixonmars
Revision: 270839

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-30 09:57:31 UTC (rev 270838)
+++ PKGBUILD2017-11-30 09:57:58 UTC (rev 270839)
@@ -1,77 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Daniel Wallace 
-
-pkgbase=python-keystoneauth1
-pkgname=(python-keystoneauth1 python2-keystoneauth1)
-pkgver=3.2.0
-pkgrel=1
-pkgdesc="Authentication Library for OpenStack Identity"
-arch=('any')
-url="http://docs.openstack.org/developer/keystoneauth;
-license=('Apache')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-pbr' 
'python2-pbr' 'python-iso8601'
- 'python2-iso8601' 'python-positional' 'python2-positional' 
'python-requests'
- 'python2-requests' 'python-stevedore' 'python2-stevedore')
-checkdepends=('python-testrepository' 'python2-testrepository' 
'python-requests-mock'
-  'python2-requests-mock' 'python-testscenarios' 
'python2-testscenarios'
-  'python-mock' 'python2-mock' 'python-lxml' 'python2-lxml' 
'python-oslo-config'
-  'python2-oslo-config' 'python-betamax' 'python2-betamax' 
'python-oslotest'
-  'python2-oslotest' 'python-oslo-utils' 'python2-oslo-utils' 
'python-requests-kerberos'
-  'python2-requests-kerberos' 'python-oauthlib' 'python2-oauthlib' 
'python-pycodestyle'
-  'python2-pycodestyle')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/openstack/keystoneauth/archive/$pkgver.tar.gz;)
-sha512sums=('2e5a4de91c1807f0b2f50ef43e4d1851211a57d10818759f560528090a03f98c24c4ea1df0f9b63f79c66371ee28c1b868880d19ea842a9949782a54e390bb5d')
-
-prepare() {
-  # Use pycodestyle
-  sed -i 's/pep8/pycodestyle/g' 
keystoneauth-$pkgver/keystoneauth1/tests/unit/test_hacking_checks.py
-
-  cp -a keystoneauth-$pkgver{,-py2}
-
-  export PBR_VERSION=$pkgver
-}
-
-build() {
-  cd "$srcdir"/keystoneauth-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/keystoneauth-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/keystoneauth-$pkgver
-  python setup.py testr || warning "Tests failed"
-
-  cd "$srcdir"/keystoneauth-$pkgver-py2
-  PYTHON=python2 python2 setup.py testr
-}
-
-package_python-keystoneauth1() {
-  depends=('python-pbr' 'python-iso8601' 'python-stevedore' 
'python-positional' 'python-requests')
-  optdepends=('python-requests-kerberos: for kerberos support'
-  'python-lxml: for saml2 support'
-  'python-oauthlib: for oauth1 support'
-  'python-betamax: for betamax support'
-  'python-fixtures: for betamax support'
-  'python-mock: for betamax support')
-
-  cd "$srcdir"/keystoneauth-$pkgver
-  python setup.py install --root="$pkgdir/" --optimize=1
-}
-
-package_python2-keystoneauth1() {
-  depends=('python2-pbr' 'python2-iso8601' 'python2-stevedore' 
'python2-positional' 'python2-requests')
-  optdepends=('python2-requests-kerberos: for kerberos support'
-  'python2-lxml: for saml2 support'
-  'python2-oauthlib: for oauth1 support'
-  'python2-betamax: for betamax support'
-  'python2-fixtures: for betamax support'
-  'python2-mock: for betamax support')
-
-  cd "$srcdir"/keystoneauth-$pkgver-py2
-  python2 setup.py install --root="$pkgdir/" --optimize=1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-keystoneauth1/repos/community-any/PKGBUILD (from rev 270838, 
python-keystoneauth1/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-30 09:57:58 UTC (rev 270839)
@@ -0,0 +1,77 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Wallace 
+
+pkgbase=python-keystoneauth1
+pkgname=(python-keystoneauth1 python2-keystoneauth1)
+pkgver=3.3.0
+pkgrel=1
+pkgdesc="Authentication Library for OpenStack Identity"
+arch=('any')
+url="http://docs.openstack.org/developer/keystoneauth;
+license=('Apache')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-pbr' 
'python2-pbr' 'python-iso8601'
+ 'python2-iso8601' 'python-positional' 'python2-positional' 
'python-requests'
+ 'python2-requests' 'python-stevedore' 'python2-stevedore')
+checkdepends=('python-requests-mock' 'python2-requests-mock' 
'python-testscenarios'
+  'python2-testscenarios' 'python-mock' 'python2-mock' 
'python-lxml' 'python2-lxml'
+  'python-oslo-config' 'python2-oslo-config' 

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

2017-11-30 Thread Felix Yan via arch-commits
Date: Thursday, November 30, 2017 @ 09:57:31
  Author: felixonmars
Revision: 270838

upgpkg: python-keystoneauth1 3.3.0-1

Modified:
  python-keystoneauth1/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-30 09:55:06 UTC (rev 270837)
+++ PKGBUILD2017-11-30 09:57:31 UTC (rev 270838)
@@ -4,7 +4,7 @@
 
 pkgbase=python-keystoneauth1
 pkgname=(python-keystoneauth1 python2-keystoneauth1)
-pkgver=3.2.0
+pkgver=3.3.0
 pkgrel=1
 pkgdesc="Authentication Library for OpenStack Identity"
 arch=('any')
@@ -13,15 +13,15 @@
 makedepends=('python-setuptools' 'python2-setuptools' 'python-pbr' 
'python2-pbr' 'python-iso8601'
  'python2-iso8601' 'python-positional' 'python2-positional' 
'python-requests'
  'python2-requests' 'python-stevedore' 'python2-stevedore')
-checkdepends=('python-testrepository' 'python2-testrepository' 
'python-requests-mock'
-  'python2-requests-mock' 'python-testscenarios' 
'python2-testscenarios'
-  'python-mock' 'python2-mock' 'python-lxml' 'python2-lxml' 
'python-oslo-config'
-  'python2-oslo-config' 'python-betamax' 'python2-betamax' 
'python-oslotest'
-  'python2-oslotest' 'python-oslo-utils' 'python2-oslo-utils' 
'python-requests-kerberos'
-  'python2-requests-kerberos' 'python-oauthlib' 'python2-oauthlib' 
'python-pycodestyle'
-  'python2-pycodestyle')
+checkdepends=('python-requests-mock' 'python2-requests-mock' 
'python-testscenarios'
+  'python2-testscenarios' 'python-mock' 'python2-mock' 
'python-lxml' 'python2-lxml'
+  'python-oslo-config' 'python2-oslo-config' 'python-betamax' 
'python2-betamax'
+  'python-oslotest' 'python2-oslotest' 'python-oslo-utils' 
'python2-oslo-utils'
+  'python-requests-kerberos' 'python2-requests-kerberos' 
'python-oauthlib'
+  'python2-oauthlib' 'python-pycodestyle' 'python2-pycodestyle' 
'python-stestr'
+  'python2-stestr')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/openstack/keystoneauth/archive/$pkgver.tar.gz;)
-sha512sums=('2e5a4de91c1807f0b2f50ef43e4d1851211a57d10818759f560528090a03f98c24c4ea1df0f9b63f79c66371ee28c1b868880d19ea842a9949782a54e390bb5d')
+sha512sums=('9a885a878a31336cf2386edc72157fc84813b3365f128c8c7179761725681ddd78204b3586257b69cd284cedd32a6751ee384061796bfa9b95db338716bca4e2')
 
 prepare() {
   # Use pycodestyle
@@ -42,10 +42,10 @@
 
 check() {
   cd "$srcdir"/keystoneauth-$pkgver
-  python setup.py testr || warning "Tests failed"
+  stestr run || warning "Tests failed"
 
   cd "$srcdir"/keystoneauth-$pkgver-py2
-  PYTHON=python2 python2 setup.py testr
+  stestr2 run
 }
 
 package_python-keystoneauth1() {


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

2017-11-30 Thread Felix Yan via arch-commits
Date: Thursday, November 30, 2017 @ 09:55:06
  Author: felixonmars
Revision: 270837

archrelease: copy trunk to community-any

Added:
  python-stestr/repos/community-any/
  python-stestr/repos/community-any/PKGBUILD
(from rev 270836, python-stestr/trunk/PKGBUILD)

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

Copied: python-stestr/repos/community-any/PKGBUILD (from rev 270836, 
python-stestr/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2017-11-30 09:55:06 UTC (rev 270837)
@@ -0,0 +1,69 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Simon Sapin 
+# Contributor: Kyle Keen 
+
+pkgbase=python-stestr
+pkgname=(python-stestr python2-stestr)
+pkgver=1.1.0
+pkgrel=1
+pkgdesc="The most basic Text::Unidecode port"
+url="https://github.com/kmike/stestr;
+license=('PerlArtistic')
+arch=('any')
+makedepends=('python-future' 'python2-future' 'python-pbr' 'python2-pbr' 
'python-subunit'
+ 'python2-subunit' 'python-fixtures' 'python2-fixtures' 
'python-testtools'
+ 'python2-testtools' 'python-yaml' 'python2-yaml')
+checkdepends=('python-hacking' 'python2-hacking' 'python-sphinx' 
'python2-sphinx' 'python-mock'
+  'python2-mock' 'python-subunit2sql' 'python2-subunit2sql' 
'python-coverage'
+  'python2-coverage' 'python-ddt' 'python2-ddt')
+source=("https://pypi.io/packages/source/s/stestr/stestr-$pkgver.tar.gz;)
+sha512sums=('7490f0982c77190adf97daae965a957fc40d0e418a64fc38ccb50817a7266b06224e61f17ae9c84edfe200417eaab726cf834646bfa2efbac67ea029dea54df1')
+
+prepare() {
+  cp -a stestr-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/stestr-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/stestr-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/stestr-$pkgver
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+  (
+export PYTHONPATH="$PWD/tmp_install/usr/lib/python3.6/site-packages"
+export PATH="$PWD/tmp_install/usr/bin:$PATH"
+stestr run || warning "Tests failed"
+  )
+
+  cd "$srcdir"/stestr-$pkgver-py2
+  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
+  (
+export PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages"
+export PATH="$PWD/tmp_install/usr/bin:$PATH"
+stestr run || warning "Tests failed"
+  )
+}
+
+package_python-stestr() {
+  depends=('python-future' 'python-pbr' 'python-subunit' 'python-fixtures' 
'python-testtools'
+   'python-yaml')
+
+  cd stestr-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-stestr() {
+  depends=('python2-future' 'python2-pbr' 'python2-subunit' 'python2-fixtures' 
'python2-testtools'
+   'python2-yaml')
+
+  cd stestr-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+
+  mv "$pkgdir"/usr/bin/stestr{,2}
+}


[arch-commits] Commit in (4 files)

2017-11-30 Thread Felix Yan via arch-commits
Date: Thursday, November 30, 2017 @ 09:54:39
  Author: felixonmars
Revision: 270836

addpkg: python-stestr 1.1.0-1

Added:
  python-stestr/
  python-stestr/repos/
  python-stestr/trunk/
  python-stestr/trunk/PKGBUILD

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

Added: python-stestr/trunk/PKGBUILD
===
--- python-stestr/trunk/PKGBUILD(rev 0)
+++ python-stestr/trunk/PKGBUILD2017-11-30 09:54:39 UTC (rev 270836)
@@ -0,0 +1,69 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Simon Sapin 
+# Contributor: Kyle Keen 
+
+pkgbase=python-stestr
+pkgname=(python-stestr python2-stestr)
+pkgver=1.1.0
+pkgrel=1
+pkgdesc="The most basic Text::Unidecode port"
+url="https://github.com/kmike/stestr;
+license=('PerlArtistic')
+arch=('any')
+makedepends=('python-future' 'python2-future' 'python-pbr' 'python2-pbr' 
'python-subunit'
+ 'python2-subunit' 'python-fixtures' 'python2-fixtures' 
'python-testtools'
+ 'python2-testtools' 'python-yaml' 'python2-yaml')
+checkdepends=('python-hacking' 'python2-hacking' 'python-sphinx' 
'python2-sphinx' 'python-mock'
+  'python2-mock' 'python-subunit2sql' 'python2-subunit2sql' 
'python-coverage'
+  'python2-coverage' 'python-ddt' 'python2-ddt')
+source=("https://pypi.io/packages/source/s/stestr/stestr-$pkgver.tar.gz;)
+sha512sums=('7490f0982c77190adf97daae965a957fc40d0e418a64fc38ccb50817a7266b06224e61f17ae9c84edfe200417eaab726cf834646bfa2efbac67ea029dea54df1')
+
+prepare() {
+  cp -a stestr-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/stestr-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/stestr-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/stestr-$pkgver
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+  (
+export PYTHONPATH="$PWD/tmp_install/usr/lib/python3.6/site-packages"
+export PATH="$PWD/tmp_install/usr/bin:$PATH"
+stestr run || warning "Tests failed"
+  )
+
+  cd "$srcdir"/stestr-$pkgver-py2
+  python2 setup.py install --root="$PWD/tmp_install" --optimize=1
+  (
+export PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages"
+export PATH="$PWD/tmp_install/usr/bin:$PATH"
+stestr run || warning "Tests failed"
+  )
+}
+
+package_python-stestr() {
+  depends=('python-future' 'python-pbr' 'python-subunit' 'python-fixtures' 
'python-testtools'
+   'python-yaml')
+
+  cd stestr-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-stestr() {
+  depends=('python2-future' 'python2-pbr' 'python2-subunit' 'python2-fixtures' 
'python2-testtools'
+   'python2-yaml')
+
+  cd stestr-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+
+  mv "$pkgdir"/usr/bin/stestr{,2}
+}


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


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

2017-11-30 Thread Felix Yan via arch-commits
Date: Thursday, November 30, 2017 @ 09:35:48
  Author: felixonmars
Revision: 270835

archrelease: copy trunk to community-any

Added:
  python-subunit2sql/repos/community-any/
  python-subunit2sql/repos/community-any/PKGBUILD
(from rev 270834, python-subunit2sql/trunk/PKGBUILD)

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

Copied: python-subunit2sql/repos/community-any/PKGBUILD (from rev 270834, 
python-subunit2sql/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2017-11-30 09:35:48 UTC (rev 270835)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Wallace 
+
+pkgbase=python-subunit2sql
+pkgname=(python-subunit2sql python2-subunit2sql)
+pkgver=1.8.0
+pkgrel=1
+pkgdesc="Command to Read a subunit file or stream and put the data in a SQL DB"
+arch=('any')
+url="https://pypi.python.org/pypi/subunit2sql;
+license=('Apache')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-pbr' 
'python2-pbr' 'python-alembic'
+ 'python2-alembic' 'python-stevedore' 'python2-stevedore' 
'python-sqlalchemy'
+ 'python2-sqlalchemy' 'python-oslo-config' 'python2-oslo-config' 
'python-dateutil'
+ 'python2-dateutil' 'python-subunit' 'python2-subunit' 
'python-oslo-db'
+ 'python2-oslo-db')
+checkdepends=('python-testrepository' 'python2-testrepository' 'python-mock' 
'python2-mock'
+  'python-testresources' 'python2-testresources' 
'python-testscenarios'
+  'python2-testscenarios' 'python-oslo-concurrency' 
'python2-oslo-concurrency')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/openstack-infra/subunit2sql/archive/$pkgver.tar.gz;)
+sha512sums=('af77a24237f08ab18d5118c133596de13b7a72a79895f3ef71faa12a5ef5033bd2734b592c4944fcc48b8605cb5d0904968a0b0625828631d21d3f4621502d80')
+
+prepare() {
+  cp -a subunit2sql-$pkgver{,-py2}
+
+  export PBR_VERSION=$pkgver
+}
+
+build() {
+  cd "$srcdir"/subunit2sql-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/subunit2sql-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/subunit2sql-$pkgver
+  python setup.py testr || warning "Tests failed"
+
+  cd "$srcdir"/subunit2sql-$pkgver-py2
+  PYTHON=python2 python2 setup.py testr || warning "Tests failed"
+}
+
+package_python-subunit2sql() {
+  depends=('python-six' 'python-pbr' 'python-alembic' 'python-stevedore' 
'python-sqlalchemy'
+   'python-oslo-config' 'python-dateutil' 'python-subunit' 
'python-oslo-db')
+
+  cd "$srcdir"/subunit2sql-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-subunit2sql() {
+  depends=('python2-six' 'python2-pbr' 'python2-alembic' 'python2-stevedore' 
'python2-sqlalchemy'
+   'python2-oslo-config' 'python2-dateutil' 'python2-subunit' 
'python2-oslo-db')
+
+  cd "$srcdir"/subunit2sql-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+
+  mv "$pkgdir"/usr/bin/sql2subunit{,2}
+  mv "$pkgdir"/usr/bin/subunit2sql{,2}
+  mv "$pkgdir"/usr/bin/subunit2sql-db-manage{,2}
+  mv "$pkgdir"/usr/bin/subunit2sql-graph{,2}
+}
+
+# vim:set ts=2 sw=2 et:


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

2017-11-30 Thread Felix Yan via arch-commits
Date: Thursday, November 30, 2017 @ 09:35:32
  Author: felixonmars
Revision: 270834

upgpkg: python-subunit2sql 1.8.0-1

Modified:
  python-subunit2sql/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-30 09:32:47 UTC (rev 270833)
+++ PKGBUILD2017-11-30 09:35:32 UTC (rev 270834)
@@ -57,6 +57,11 @@
 
   cd "$srcdir"/subunit2sql-$pkgver-py2
   python2 setup.py install --root="$pkgdir" --optimize=1
+
+  mv "$pkgdir"/usr/bin/sql2subunit{,2}
+  mv "$pkgdir"/usr/bin/subunit2sql{,2}
+  mv "$pkgdir"/usr/bin/subunit2sql-db-manage{,2}
+  mv "$pkgdir"/usr/bin/subunit2sql-graph{,2}
 }
 
 # vim:set ts=2 sw=2 et:


[arch-commits] Commit in (4 files)

2017-11-30 Thread Felix Yan via arch-commits
Date: Thursday, November 30, 2017 @ 09:32:47
  Author: felixonmars
Revision: 270833

addpkg: python-subunit2sql 1.8.0-1

Added:
  python-subunit2sql/
  python-subunit2sql/repos/
  python-subunit2sql/trunk/
  python-subunit2sql/trunk/PKGBUILD

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

Added: python-subunit2sql/trunk/PKGBUILD
===
--- python-subunit2sql/trunk/PKGBUILD   (rev 0)
+++ python-subunit2sql/trunk/PKGBUILD   2017-11-30 09:32:47 UTC (rev 270833)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Wallace 
+
+pkgbase=python-subunit2sql
+pkgname=(python-subunit2sql python2-subunit2sql)
+pkgver=1.8.0
+pkgrel=1
+pkgdesc="Command to Read a subunit file or stream and put the data in a SQL DB"
+arch=('any')
+url="https://pypi.python.org/pypi/subunit2sql;
+license=('Apache')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-pbr' 
'python2-pbr' 'python-alembic'
+ 'python2-alembic' 'python-stevedore' 'python2-stevedore' 
'python-sqlalchemy'
+ 'python2-sqlalchemy' 'python-oslo-config' 'python2-oslo-config' 
'python-dateutil'
+ 'python2-dateutil' 'python-subunit' 'python2-subunit' 
'python-oslo-db'
+ 'python2-oslo-db')
+checkdepends=('python-testrepository' 'python2-testrepository' 'python-mock' 
'python2-mock'
+  'python-testresources' 'python2-testresources' 
'python-testscenarios'
+  'python2-testscenarios' 'python-oslo-concurrency' 
'python2-oslo-concurrency')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/openstack-infra/subunit2sql/archive/$pkgver.tar.gz;)
+sha512sums=('af77a24237f08ab18d5118c133596de13b7a72a79895f3ef71faa12a5ef5033bd2734b592c4944fcc48b8605cb5d0904968a0b0625828631d21d3f4621502d80')
+
+prepare() {
+  cp -a subunit2sql-$pkgver{,-py2}
+
+  export PBR_VERSION=$pkgver
+}
+
+build() {
+  cd "$srcdir"/subunit2sql-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/subunit2sql-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/subunit2sql-$pkgver
+  python setup.py testr || warning "Tests failed"
+
+  cd "$srcdir"/subunit2sql-$pkgver-py2
+  PYTHON=python2 python2 setup.py testr || warning "Tests failed"
+}
+
+package_python-subunit2sql() {
+  depends=('python-six' 'python-pbr' 'python-alembic' 'python-stevedore' 
'python-sqlalchemy'
+   'python-oslo-config' 'python-dateutil' 'python-subunit' 
'python-oslo-db')
+
+  cd "$srcdir"/subunit2sql-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-subunit2sql() {
+  depends=('python2-six' 'python2-pbr' 'python2-alembic' 'python2-stevedore' 
'python2-sqlalchemy'
+   'python2-oslo-config' 'python2-dateutil' 'python2-subunit' 
'python2-oslo-db')
+
+  cd "$srcdir"/subunit2sql-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:


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


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

2017-11-30 Thread Felix Yan via arch-commits
Date: Thursday, November 30, 2017 @ 09:31:35
  Author: felixonmars
Revision: 270832

archrelease: copy trunk to community-any

Added:
  coffeescript/repos/community-any/PKGBUILD
(from rev 270831, coffeescript/trunk/PKGBUILD)
Deleted:
  coffeescript/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-30 09:31:18 UTC (rev 270831)
+++ PKGBUILD2017-11-30 09:31:35 UTC (rev 270832)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: sloppybench 
-# Contributor: der_FeniX 
-# Contributor: Anatol Pomozov 
-# Contributor: Gordin <9ordin @t gmail dot com>
-# Contributor: Simon Lipp 
-# Contributor: Chris Bolton 
-# Contributor: Sergei Lebedev 
-# Contributor: flying sheep 
-
-pkgname=coffeescript
-pkgver=2.0.1
-pkgrel=1
-pkgdesc='CoffeeScript is a little language that compiles into JavaScript'
-arch=('any')
-url='http://coffeescript.org'
-license=('MIT')
-depends=('nodejs')
-makedepends=('npm')
-provides=("coffee-script=$pkgver")
-conflicts=('coffee-script')
-replaces=('coffee-script')
-source=("https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz;)
-noextract=("$pkgname-$pkgver.tgz")
-sha512sums=('9ab81750ec11a1caef491c088bfdad01eb10389cf62b14b230d3252d25619c993f7991ca8a7612246720518664ce649066da5bdd484625e66fd000147a1ef2c9')
-
-package() {
-  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
-
-  # Why 777? :/
-  chmod -R u=rwX,go=rX "$pkgdir"
-
-  rm -r "$pkgdir"/usr/etc
-  mkdir -p "$pkgdir/usr/share/licenses/$pkgname"
-  ln -s "../../../lib/node_modules/$pkgname/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/"
-}

Copied: coffeescript/repos/community-any/PKGBUILD (from rev 270831, 
coffeescript/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-30 09:31:35 UTC (rev 270832)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: sloppybench 
+# Contributor: der_FeniX 
+# Contributor: Anatol Pomozov 
+# Contributor: Gordin <9ordin @t gmail dot com>
+# Contributor: Simon Lipp 
+# Contributor: Chris Bolton 
+# Contributor: Sergei Lebedev 
+# Contributor: flying sheep 
+
+pkgname=coffeescript
+pkgver=2.0.3
+pkgrel=1
+pkgdesc='CoffeeScript is a little language that compiles into JavaScript'
+arch=('any')
+url='http://coffeescript.org'
+license=('MIT')
+depends=('nodejs')
+makedepends=('npm')
+provides=("coffee-script=$pkgver")
+conflicts=('coffee-script')
+replaces=('coffee-script')
+source=("https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz;)
+noextract=("$pkgname-$pkgver.tgz")
+sha512sums=('8887d437eef52322361500015e1d65bb365e420ab050f79687a943a2f25ab5042cfb7d1bbf21a7058d2be019c3d21a0c01ab0db9954794bd54d3d3b2d597d27a')
+
+package() {
+  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
+
+  # Why 777? :/
+  chmod -R u=rwX,go=rX "$pkgdir"
+
+  rm -r "$pkgdir"/usr/etc
+  mkdir -p "$pkgdir/usr/share/licenses/$pkgname"
+  ln -s "../../../lib/node_modules/$pkgname/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/"
+}


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

2017-11-30 Thread Felix Yan via arch-commits
Date: Thursday, November 30, 2017 @ 09:31:18
  Author: felixonmars
Revision: 270831

upgpkg: coffeescript 2.0.3-1

Modified:
  coffeescript/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-30 09:29:53 UTC (rev 270830)
+++ PKGBUILD2017-11-30 09:31:18 UTC (rev 270831)
@@ -10,7 +10,7 @@
 # Contributor: flying sheep 
 
 pkgname=coffeescript
-pkgver=2.0.1
+pkgver=2.0.3
 pkgrel=1
 pkgdesc='CoffeeScript is a little language that compiles into JavaScript'
 arch=('any')
@@ -23,7 +23,7 @@
 replaces=('coffee-script')
 source=("https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz;)
 noextract=("$pkgname-$pkgver.tgz")
-sha512sums=('9ab81750ec11a1caef491c088bfdad01eb10389cf62b14b230d3252d25619c993f7991ca8a7612246720518664ce649066da5bdd484625e66fd000147a1ef2c9')
+sha512sums=('8887d437eef52322361500015e1d65bb365e420ab050f79687a943a2f25ab5042cfb7d1bbf21a7058d2be019c3d21a0c01ab0db9954794bd54d3d3b2d597d27a')
 
 package() {
   npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz


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

2017-11-30 Thread Felix Yan via arch-commits
Date: Thursday, November 30, 2017 @ 09:29:35
  Author: felixonmars
Revision: 270829

upgpkg: python-oslo-concurrency 3.23.0-2

fix file conflicts

Modified:
  python-oslo-concurrency/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-30 09:27:01 UTC (rev 270828)
+++ PKGBUILD2017-11-30 09:29:35 UTC (rev 270829)
@@ -5,7 +5,7 @@
 pkgbase=python-oslo-concurrency
 pkgname=(python-oslo-concurrency python2-oslo-concurrency)
 pkgver=3.23.0
-pkgrel=1
+pkgrel=2
 pkgdesc="OpenStack library for all concurrency-related code"
 arch=('any')
 url="https://pypi.python.org/pypi/oslo.concurrency/$pkgver;
@@ -55,6 +55,8 @@
 
   cd "$srcdir"/oslo.concurrency-$pkgver-py2
   python2 setup.py install --root="$pkgdir" --optimize=1
+
+  mv "$pkgdir"/usr/bin/lockutils-wrapper{,2}
 }
 
 # vim:set ts=2 sw=2 et:


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

2017-11-30 Thread Felix Yan via arch-commits
Date: Thursday, November 30, 2017 @ 09:29:53
  Author: felixonmars
Revision: 270830

archrelease: copy trunk to community-any

Added:
  python-oslo-concurrency/repos/community-any/PKGBUILD
(from rev 270829, python-oslo-concurrency/trunk/PKGBUILD)
Deleted:
  python-oslo-concurrency/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-30 09:29:35 UTC (rev 270829)
+++ PKGBUILD2017-11-30 09:29:53 UTC (rev 270830)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Daniel Wallace 
-
-pkgbase=python-oslo-concurrency
-pkgname=(python-oslo-concurrency python2-oslo-concurrency)
-pkgver=3.23.0
-pkgrel=1
-pkgdesc="OpenStack library for all concurrency-related code"
-arch=('any')
-url="https://pypi.python.org/pypi/oslo.concurrency/$pkgver;
-license=('Apache')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-pbr' 
'python2-pbr' 'python-oslo-config'
- 'python2-oslo-config' 'python-oslo-i18n' 'python2-oslo-i18n' 
'python-oslo-utils'
- 'python2-oslo-utils' 'python-fasteners' 'python2-fasteners' 
'python2-enum34')
-checkdepends=('python-mock' 'python2-mock' 'python-oslotest' 
'python2-oslotest' 'python-oslo-config'
-  'python2-oslo-config' 'python-eventlet' 'python2-eventlet')
-options=('!emptydirs')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/openstack/oslo.concurrency/archive/$pkgver.tar.gz;)
-sha512sums=('449c6bcbb0c2f9e088ef3b0cbd600b1dd41dfcf1effa9bd097bf6dd4d53254980b047c6cec52c7aabd922f485ac1966d890462de57953569a4bfa315cfcbc8c0')
-
-prepare() {
-  cp -a oslo.concurrency-$pkgver{,-py2}
-
-  export PBR_VERSION=$pkgver
-}
-
-build() {
-  cd "$srcdir"/oslo.concurrency-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/oslo.concurrency-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/oslo.concurrency-$pkgver
-  python setup.py testr || warning "Tests failed"
-
-  cd "$srcdir"/oslo.concurrency-$pkgver-py2
-  PYTHON=python2 python2 setup.py testr || warning "Tests failed"
-}
-
-package_python-oslo-concurrency() {
-  depends=('python-six' 'python-pbr' 'python-oslo-config' 'python-oslo-i18n' 
'python-oslo-utils'
-   'python-fasteners')
-
-  cd "$srcdir"/oslo.concurrency-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}
-
-package_python2-oslo-concurrency() {
-  depends=('python2-six' 'python2-pbr' 'python2-oslo-config' 
'python2-oslo-i18n'
-   'python2-oslo-utils' 'python2-fasteners' 'python2-enum34')
-
-  cd "$srcdir"/oslo.concurrency-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-oslo-concurrency/repos/community-any/PKGBUILD (from rev 270829, 
python-oslo-concurrency/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-30 09:29:53 UTC (rev 270830)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Wallace 
+
+pkgbase=python-oslo-concurrency
+pkgname=(python-oslo-concurrency python2-oslo-concurrency)
+pkgver=3.23.0
+pkgrel=2
+pkgdesc="OpenStack library for all concurrency-related code"
+arch=('any')
+url="https://pypi.python.org/pypi/oslo.concurrency/$pkgver;
+license=('Apache')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-pbr' 
'python2-pbr' 'python-oslo-config'
+ 'python2-oslo-config' 'python-oslo-i18n' 'python2-oslo-i18n' 
'python-oslo-utils'
+ 'python2-oslo-utils' 'python-fasteners' 'python2-fasteners' 
'python2-enum34')
+checkdepends=('python-mock' 'python2-mock' 'python-oslotest' 
'python2-oslotest' 'python-oslo-config'
+  'python2-oslo-config' 'python-eventlet' 'python2-eventlet')
+options=('!emptydirs')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/openstack/oslo.concurrency/archive/$pkgver.tar.gz;)
+sha512sums=('449c6bcbb0c2f9e088ef3b0cbd600b1dd41dfcf1effa9bd097bf6dd4d53254980b047c6cec52c7aabd922f485ac1966d890462de57953569a4bfa315cfcbc8c0')
+
+prepare() {
+  cp -a oslo.concurrency-$pkgver{,-py2}
+
+  export PBR_VERSION=$pkgver
+}
+
+build() {
+  cd "$srcdir"/oslo.concurrency-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/oslo.concurrency-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/oslo.concurrency-$pkgver
+  python setup.py testr || warning "Tests failed"
+
+  cd "$srcdir"/oslo.concurrency-$pkgver-py2
+  PYTHON=python2 python2 setup.py testr || warning "Tests failed"
+}
+
+package_python-oslo-concurrency() {
+  depends=('python-six' 'python-pbr' 'python-oslo-config' 'python-oslo-i18n' 
'python-oslo-utils'
+   'python-fasteners')
+
+  cd "$srcdir"/oslo.concurrency-$pkgver
+  python setup.py install 

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

2017-11-30 Thread Felix Yan via arch-commits
Date: Thursday, November 30, 2017 @ 09:27:01
  Author: felixonmars
Revision: 270828

archrelease: copy trunk to community-any

Added:
  python-oslo-concurrency/repos/community-any/
  python-oslo-concurrency/repos/community-any/PKGBUILD
(from rev 270827, python-oslo-concurrency/trunk/PKGBUILD)

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

Copied: python-oslo-concurrency/repos/community-any/PKGBUILD (from rev 270827, 
python-oslo-concurrency/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2017-11-30 09:27:01 UTC (rev 270828)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Wallace 
+
+pkgbase=python-oslo-concurrency
+pkgname=(python-oslo-concurrency python2-oslo-concurrency)
+pkgver=3.23.0
+pkgrel=1
+pkgdesc="OpenStack library for all concurrency-related code"
+arch=('any')
+url="https://pypi.python.org/pypi/oslo.concurrency/$pkgver;
+license=('Apache')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-pbr' 
'python2-pbr' 'python-oslo-config'
+ 'python2-oslo-config' 'python-oslo-i18n' 'python2-oslo-i18n' 
'python-oslo-utils'
+ 'python2-oslo-utils' 'python-fasteners' 'python2-fasteners' 
'python2-enum34')
+checkdepends=('python-mock' 'python2-mock' 'python-oslotest' 
'python2-oslotest' 'python-oslo-config'
+  'python2-oslo-config' 'python-eventlet' 'python2-eventlet')
+options=('!emptydirs')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/openstack/oslo.concurrency/archive/$pkgver.tar.gz;)
+sha512sums=('449c6bcbb0c2f9e088ef3b0cbd600b1dd41dfcf1effa9bd097bf6dd4d53254980b047c6cec52c7aabd922f485ac1966d890462de57953569a4bfa315cfcbc8c0')
+
+prepare() {
+  cp -a oslo.concurrency-$pkgver{,-py2}
+
+  export PBR_VERSION=$pkgver
+}
+
+build() {
+  cd "$srcdir"/oslo.concurrency-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/oslo.concurrency-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/oslo.concurrency-$pkgver
+  python setup.py testr || warning "Tests failed"
+
+  cd "$srcdir"/oslo.concurrency-$pkgver-py2
+  PYTHON=python2 python2 setup.py testr || warning "Tests failed"
+}
+
+package_python-oslo-concurrency() {
+  depends=('python-six' 'python-pbr' 'python-oslo-config' 'python-oslo-i18n' 
'python-oslo-utils'
+   'python-fasteners')
+
+  cd "$srcdir"/oslo.concurrency-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-oslo-concurrency() {
+  depends=('python2-six' 'python2-pbr' 'python2-oslo-config' 
'python2-oslo-i18n'
+   'python2-oslo-utils' 'python2-fasteners' 'python2-enum34')
+
+  cd "$srcdir"/oslo.concurrency-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in (4 files)

2017-11-30 Thread Felix Yan via arch-commits
Date: Thursday, November 30, 2017 @ 09:26:28
  Author: felixonmars
Revision: 270827

addpkg: python-oslo-concurrency 3.23.0-1

Added:
  python-oslo-concurrency/
  python-oslo-concurrency/repos/
  python-oslo-concurrency/trunk/
  python-oslo-concurrency/trunk/PKGBUILD

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

Added: python-oslo-concurrency/trunk/PKGBUILD
===
--- python-oslo-concurrency/trunk/PKGBUILD  (rev 0)
+++ python-oslo-concurrency/trunk/PKGBUILD  2017-11-30 09:26:28 UTC (rev 
270827)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Wallace 
+
+pkgbase=python-oslo-concurrency
+pkgname=(python-oslo-concurrency python2-oslo-concurrency)
+pkgver=3.23.0
+pkgrel=1
+pkgdesc="OpenStack library for all concurrency-related code"
+arch=('any')
+url="https://pypi.python.org/pypi/oslo.concurrency/$pkgver;
+license=('Apache')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-pbr' 
'python2-pbr' 'python-oslo-config'
+ 'python2-oslo-config' 'python-oslo-i18n' 'python2-oslo-i18n' 
'python-oslo-utils'
+ 'python2-oslo-utils' 'python-fasteners' 'python2-fasteners' 
'python2-enum34')
+checkdepends=('python-mock' 'python2-mock' 'python-oslotest' 
'python2-oslotest' 'python-oslo-config'
+  'python2-oslo-config' 'python-eventlet' 'python2-eventlet')
+options=('!emptydirs')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/openstack/oslo.concurrency/archive/$pkgver.tar.gz;)
+sha512sums=('449c6bcbb0c2f9e088ef3b0cbd600b1dd41dfcf1effa9bd097bf6dd4d53254980b047c6cec52c7aabd922f485ac1966d890462de57953569a4bfa315cfcbc8c0')
+
+prepare() {
+  cp -a oslo.concurrency-$pkgver{,-py2}
+
+  export PBR_VERSION=$pkgver
+}
+
+build() {
+  cd "$srcdir"/oslo.concurrency-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/oslo.concurrency-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/oslo.concurrency-$pkgver
+  python setup.py testr || warning "Tests failed"
+
+  cd "$srcdir"/oslo.concurrency-$pkgver-py2
+  PYTHON=python2 python2 setup.py testr || warning "Tests failed"
+}
+
+package_python-oslo-concurrency() {
+  depends=('python-six' 'python-pbr' 'python-oslo-config' 'python-oslo-i18n' 
'python-oslo-utils'
+   'python-fasteners')
+
+  cd "$srcdir"/oslo.concurrency-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-oslo-concurrency() {
+  depends=('python2-six' 'python2-pbr' 'python2-oslo-config' 
'python2-oslo-i18n'
+   'python2-oslo-utils' 'python2-fasteners' 'python2-enum34')
+
+  cd "$srcdir"/oslo.concurrency-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:


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


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

2017-11-30 Thread Jonathan Steel via arch-commits
Date: Thursday, November 30, 2017 @ 09:12:26
  Author: jsteel
Revision: 270826

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-30 09:12:14 UTC (rev 270825)
+++ PKGBUILD2017-11-30 09:12:26 UTC (rev 270826)
@@ -1,34 +0,0 @@
-# Maintainer: Jonathan Steel 
-# Contributor: Chris Severance aur.severach AatT spamgourmet.com
-# Contributor: Alper KANAT 
-
-pkgname=aws-cli
-pkgver=1.12.0
-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=('15924f5c3336469d332b6d87fcf93013')
-
-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 270825, 
aws-cli/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-30 09:12:26 UTC (rev 270826)
@@ -0,0 +1,34 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Chris Severance aur.severach AatT spamgourmet.com
+# Contributor: Alper KANAT 
+
+pkgname=aws-cli
+pkgver=1.14.1
+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=('d6223097ac16905afc72639763faddcb')
+
+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 python-botocore/trunk (PKGBUILD)

2017-11-30 Thread Jonathan Steel via arch-commits
Date: Thursday, November 30, 2017 @ 09:11:57
  Author: jsteel
Revision: 270823

upgpkg: python-botocore 1.8.5-1

Modified:
  python-botocore/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-30 09:08:04 UTC (rev 270822)
+++ PKGBUILD2017-11-30 09:11:57 UTC (rev 270823)
@@ -4,7 +4,7 @@
 # Contributor: Chris Fordham
 
 pkgname=python-botocore
-pkgver=1.8.0
+pkgver=1.8.5
 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=('9a421d99f043748853d53a11a1d85adb')
+md5sums=('383c95ba27546bb242ee9b5005ec4b85')
 
 build() {
   cd botocore-$pkgver


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

2017-11-30 Thread Jonathan Steel via arch-commits
Date: Thursday, November 30, 2017 @ 09:12:14
  Author: jsteel
Revision: 270825

upgpkg: aws-cli 1.14.1-1

Modified:
  aws-cli/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-11-30 09:12:06 UTC (rev 270824)
+++ PKGBUILD2017-11-30 09:12:14 UTC (rev 270825)
@@ -3,7 +3,7 @@
 # Contributor: Alper KANAT 
 
 pkgname=aws-cli
-pkgver=1.12.0
+pkgver=1.14.1
 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=('15924f5c3336469d332b6d87fcf93013')
+md5sums=('d6223097ac16905afc72639763faddcb')
 
 build() {
   cd $pkgname-$pkgver


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

2017-11-30 Thread Jonathan Steel via arch-commits
Date: Thursday, November 30, 2017 @ 09:12:06
  Author: jsteel
Revision: 270824

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-30 09:11:57 UTC (rev 270823)
+++ PKGBUILD2017-11-30 09:12:06 UTC (rev 270824)
@@ -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.8.0
-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=('9a421d99f043748853d53a11a1d85adb')
-
-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 270823, 
python-botocore/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-30 09:12:06 UTC (rev 270824)
@@ -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.8.5
+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=('383c95ba27546bb242ee9b5005ec4b85')
+
+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 python-s3transfer/repos/community-any (PKGBUILD PKGBUILD)

2017-11-30 Thread Jonathan Steel via arch-commits
Date: Thursday, November 30, 2017 @ 09:08:04
  Author: jsteel
Revision: 270822

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-30 09:07:49 UTC (rev 270821)
+++ PKGBUILD2017-11-30 09:08:04 UTC (rev 270822)
@@ -1,28 +0,0 @@
-# Maintainer: Jonathan Steel 
-# Contributor: Chris Severance aur.severach AatT spamgourmet.com
-
-pkgname=python-s3transfer
-pkgver=0.1.11
-pkgrel=1
-pkgdesc='Amazon S3 Transfer Manager for Python'
-arch=('any')
-url="https://github.com/boto/s3transfer;
-license=('Apache')
-depends=('python-botocore')
-makedepends=('python-setuptools')
-source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('d1029c6a10da77adc2d4918eedea7065')
-
-build() {
-  cd s3transfer-$pkgver
-
-  python setup.py build
-}
-
-package() {
-  cd s3transfer-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-s3transfer/repos/community-any/PKGBUILD (from rev 270821, 
python-s3transfer/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-30 09:08:04 UTC (rev 270822)
@@ -0,0 +1,28 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Chris Severance aur.severach AatT spamgourmet.com
+
+pkgname=python-s3transfer
+pkgver=0.1.12
+pkgrel=1
+pkgdesc='Amazon S3 Transfer Manager for Python'
+arch=('any')
+url="https://github.com/boto/s3transfer;
+license=('Apache')
+depends=('python-botocore')
+makedepends=('python-setuptools')
+source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
+md5sums=('09a9ae2ddc5bb7dfb98f018127b79137')
+
+build() {
+  cd s3transfer-$pkgver
+
+  python setup.py build
+}
+
+package() {
+  cd s3transfer-$pkgver
+
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


  1   2   >