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

2017-05-02 Thread Lukas Fleischer
Date: Wednesday, May 3, 2017 @ 05:19:10
  Author: lfleischer
Revision: 295199

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

Added:
  ncurses/repos/extra-i686/
  ncurses/repos/extra-i686/PKGBUILD
(from rev 295198, ncurses/trunk/PKGBUILD)
  ncurses/repos/extra-x86_64/
  ncurses/repos/extra-x86_64/PKGBUILD
(from rev 295198, ncurses/trunk/PKGBUILD)

---+
 extra-i686/PKGBUILD   |   49 
 extra-x86_64/PKGBUILD |   49 
 2 files changed, 98 insertions(+)

Copied: ncurses/repos/extra-i686/PKGBUILD (from rev 295198, 
ncurses/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-05-03 05:19:10 UTC (rev 295199)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Allan McRae 
+# Contributor: judd 
+
+pkgname=ncurses
+_pkgver=6.0-20170429
+pkgver=${_pkgver/-/+}
+pkgrel=1
+pkgdesc='System V Release 4.0 curses emulation library'
+arch=('i686' 'x86_64')
+url='http://invisible-island.net/ncurses/ncurses.html'
+license=('MIT')
+depends=('glibc' 'gcc-libs')
+provides=('libncurses++w.so' 'libformw.so' 'libmenuw.so' 'libpanelw.so'
+  'libncursesw.so')
+source=(http://invisible-mirror.net/archives/ncurses/current/ncurses-${_pkgver}.tgz{,.asc})
+md5sums=('ea745025cf7fd0aca1f69abbf28bf489'
+ 'SKIP')
+validpgpkeys=('C52048C0C0748FEE227D47A2702353E0F7E48EDB')  # Thomas Dickey
+
+build() {
+  cd $pkgname-${_pkgver}
+
+  ./configure --prefix=/usr --mandir=/usr/share/man \
+--with-pkg-config-libdir=/usr/lib/pkgconfig \
+--with-shared --with-normal --without-debug --without-ada \
+--enable-widec --enable-pc-files --with-cxx-binding --with-cxx-shared
+  make
+}
+
+package() {
+  cd $pkgname-${_pkgver}
+  make DESTDIR="$pkgdir" install
+
+  # fool packages looking to link to non-wide-character ncurses libraries
+  for lib in ncurses ncurses++ form panel menu; do
+echo "INPUT(-l${lib}w)" > "$pkgdir"/usr/lib/lib${lib}.so
+ln -s ${lib}w.pc "$pkgdir"/usr/lib/pkgconfig/${lib}.pc
+  done
+
+  # some packages look for -lcurses during build
+  echo "INPUT(-lncursesw)" > "$pkgdir"/usr/lib/libcursesw.so
+  ln -s libncurses.so "$pkgdir"/usr/lib/libcurses.so
+
+  # install license, rip it from the readme
+  install -d "$pkgdir"/usr/share/licenses/$pkgname
+  grep -B 100 '$Id' README > "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Copied: ncurses/repos/extra-x86_64/PKGBUILD (from rev 295198, 
ncurses/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2017-05-03 05:19:10 UTC (rev 295199)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Allan McRae 
+# Contributor: judd 
+
+pkgname=ncurses
+_pkgver=6.0-20170429
+pkgver=${_pkgver/-/+}
+pkgrel=1
+pkgdesc='System V Release 4.0 curses emulation library'
+arch=('i686' 'x86_64')
+url='http://invisible-island.net/ncurses/ncurses.html'
+license=('MIT')
+depends=('glibc' 'gcc-libs')
+provides=('libncurses++w.so' 'libformw.so' 'libmenuw.so' 'libpanelw.so'
+  'libncursesw.so')
+source=(http://invisible-mirror.net/archives/ncurses/current/ncurses-${_pkgver}.tgz{,.asc})
+md5sums=('ea745025cf7fd0aca1f69abbf28bf489'
+ 'SKIP')
+validpgpkeys=('C52048C0C0748FEE227D47A2702353E0F7E48EDB')  # Thomas Dickey
+
+build() {
+  cd $pkgname-${_pkgver}
+
+  ./configure --prefix=/usr --mandir=/usr/share/man \
+--with-pkg-config-libdir=/usr/lib/pkgconfig \
+--with-shared --with-normal --without-debug --without-ada \
+--enable-widec --enable-pc-files --with-cxx-binding --with-cxx-shared
+  make
+}
+
+package() {
+  cd $pkgname-${_pkgver}
+  make DESTDIR="$pkgdir" install
+
+  # fool packages looking to link to non-wide-character ncurses libraries
+  for lib in ncurses ncurses++ form panel menu; do
+echo "INPUT(-l${lib}w)" > "$pkgdir"/usr/lib/lib${lib}.so
+ln -s ${lib}w.pc "$pkgdir"/usr/lib/pkgconfig/${lib}.pc
+  done
+
+  # some packages look for -lcurses during build
+  echo "INPUT(-lncursesw)" > "$pkgdir"/usr/lib/libcursesw.so
+  ln -s libncurses.so "$pkgdir"/usr/lib/libcurses.so
+
+  # install license, rip it from the readme
+  install -d "$pkgdir"/usr/share/licenses/$pkgname
+  grep -B 100 '$Id' README > "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2017-05-02 Thread Lukas Fleischer
Date: Wednesday, May 3, 2017 @ 05:19:03
  Author: lfleischer
Revision: 295198

upgpkg: ncurses 6.0+20170429-1

Upstream update.

Modified:
  ncurses/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-03 03:48:27 UTC (rev 295197)
+++ PKGBUILD2017-05-03 05:19:03 UTC (rev 295198)
@@ -4,7 +4,7 @@
 # Contributor: judd 
 
 pkgname=ncurses
-_pkgver=6.0-20170401
+_pkgver=6.0-20170429
 pkgver=${_pkgver/-/+}
 pkgrel=1
 pkgdesc='System V Release 4.0 curses emulation library'
@@ -15,7 +15,7 @@
 provides=('libncurses++w.so' 'libformw.so' 'libmenuw.so' 'libpanelw.so'
   'libncursesw.so')
 
source=(http://invisible-mirror.net/archives/ncurses/current/ncurses-${_pkgver}.tgz{,.asc})
-md5sums=('9f97785b37222bfcaaed26de25d8be4b'
+md5sums=('ea745025cf7fd0aca1f69abbf28bf489'
  'SKIP')
 validpgpkeys=('C52048C0C0748FEE227D47A2702353E0F7E48EDB')  # Thomas Dickey
 


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

2017-05-02 Thread Daniel Micay
Date: Wednesday, May 3, 2017 @ 04:06:38
  Author: thestinger
Revision: 226605

CONFIG_EXPERT=y to purge 16 bit cruft / modify_ldt

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

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-03 03:59:06 UTC (rev 226604)
+++ PKGBUILD2017-05-03 04:06:38 UTC (rev 226605)
@@ -27,7 +27,7 @@
 'SKIP'
 'b1a7a98aa97cc0917fcab0def68032d5bf61838c79177bcee2485015458f'
 'SKIP'
-'889a0e4946842f39e1fcde1678d6084718622d297687771f7f19b76a4986835b'
+'73a5637d944672f624d1555c0485c318f9f960ba93fff9f81b7209aba395e999'
 '834bd254b56ab71d73f59b3221f056c72f559553c04718e350ab2a3e2991afe0'
 'ad6344badc91ad0630caacde83f7f9b97276f80d26a20619a87952be65492c65')
 validpgpkeys=(

Modified: config.x86_64
===
--- config.x86_64   2017-05-03 03:59:06 UTC (rev 226604)
+++ config.x86_64   2017-05-03 04:06:38 UTC (rev 226605)
@@ -1,6 +1,6 @@
 #
 # Automatically generated file; DO NOT EDIT.
-# Linux/x86 4.10.13-2 Kernel Configuration
+# Linux/x86 4.10.13-3 Kernel Configuration
 #
 CONFIG_64BIT=y
 CONFIG_X86_64=y
@@ -198,7 +198,7 @@
 CONFIG_SYSCTL_EXCEPTION_TRACE=y
 CONFIG_HAVE_PCSPKR_PLATFORM=y
 CONFIG_BPF=y
-# CONFIG_EXPERT is not set
+CONFIG_EXPERT=y
 CONFIG_UID16=y
 CONFIG_MULTIUSER=y
 CONFIG_SGETMASK_SYSCALL=y
@@ -240,6 +240,7 @@
 # CONFIG_COMPAT_BRK is not set
 # CONFIG_SLAB is not set
 CONFIG_SLUB=y
+# CONFIG_SLOB is not set
 CONFIG_SLAB_FREELIST_RANDOM=y
 CONFIG_SLUB_CPU_PARTIAL=y
 # CONFIG_SYSTEM_DATA_VERIFICATION is not set
@@ -450,6 +451,7 @@
 CONFIG_X86_CMOV=y
 CONFIG_X86_MINIMUM_CPU_FAMILY=64
 CONFIG_X86_DEBUGCTLMSR=y
+# CONFIG_PROCESSOR_SELECT is not set
 CONFIG_CPU_SUP_INTEL=y
 CONFIG_CPU_SUP_AMD=y
 CONFIG_CPU_SUP_CENTAUR=y
@@ -488,8 +490,6 @@
 CONFIG_PERF_EVENTS_INTEL_CSTATE=m
 CONFIG_PERF_EVENTS_AMD_POWER=m
 # CONFIG_VM86 is not set
-CONFIG_X86_16BIT=y
-CONFIG_X86_ESPFIX64=y
 CONFIG_X86_VSYSCALL_EMULATION=y
 CONFIG_I8K=m
 CONFIG_MICROCODE=y
@@ -615,7 +615,7 @@
 CONFIG_CMDLINE_BOOL=y
 CONFIG_CMDLINE="page_poison=1 slab_nomerge"
 # CONFIG_CMDLINE_OVERRIDE is not set
-CONFIG_MODIFY_LDT_SYSCALL=y
+# CONFIG_MODIFY_LDT_SYSCALL is not set
 CONFIG_HAVE_LIVEPATCH=y
 CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
 CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
@@ -626,6 +626,7 @@
 #
 CONFIG_SUSPEND=y
 CONFIG_SUSPEND_FREEZER=y
+# CONFIG_SUSPEND_SKIP_SYNC is not set
 CONFIG_HIBERNATE_CALLBACKS=y
 # CONFIG_HIBERNATION is not set
 CONFIG_PM_SLEEP=y
@@ -639,6 +640,7 @@
 CONFIG_PM_ADVANCED_DEBUG=y
 # CONFIG_PM_TEST_SUSPEND is not set
 CONFIG_PM_SLEEP_DEBUG=y
+# CONFIG_DPM_WATCHDOG is not set
 CONFIG_PM_TRACE=y
 CONFIG_PM_TRACE_RTC=y
 CONFIG_PM_CLK=y
@@ -758,6 +760,7 @@
 CONFIG_PCI_MMCONFIG=y
 CONFIG_PCI_XEN=y
 CONFIG_PCI_DOMAINS=y
+# CONFIG_PCI_CNB20LE_QUIRK is not set
 CONFIG_PCIEPORTBUS=y
 CONFIG_HOTPLUG_PCI_PCIE=y
 CONFIG_PCIEAER=y
@@ -798,6 +801,7 @@
 #
 # CONFIG_PCIE_DW_PLAT is not set
 CONFIG_VMD=m
+# CONFIG_ISA_BUS is not set
 CONFIG_ISA_DMA_API=y
 CONFIG_AMD_NB=y
 CONFIG_PCCARD=m
@@ -1695,6 +1699,7 @@
 CONFIG_CFG80211=m
 # CONFIG_NL80211_TESTMODE is not set
 # CONFIG_CFG80211_DEVELOPER_WARNINGS is not set
+# CONFIG_CFG80211_CERTIFICATION_ONUS is not set
 CONFIG_CFG80211_DEFAULT_PS=y
 # CONFIG_CFG80211_DEBUGFS is not set
 # CONFIG_CFG80211_INTERNAL_REGDB is not set
@@ -2339,6 +2344,7 @@
 CONFIG_PATA_NS87410=m
 CONFIG_PATA_OPTI=m
 CONFIG_PATA_PCMCIA=m
+# CONFIG_PATA_PLATFORM is not set
 CONFIG_PATA_RZ1000=m
 
 #
@@ -2861,6 +2867,7 @@
 CONFIG_USB_VL600=m
 CONFIG_USB_NET_CH9200=m
 CONFIG_WLAN=y
+# CONFIG_WIRELESS_WDS is not set
 CONFIG_WLAN_VENDOR_ADMTEK=y
 CONFIG_ADM8211=m
 CONFIG_ATH_COMMON=m
@@ -3618,6 +3625,7 @@
 CONFIG_SERIAL_RP2=m
 CONFIG_SERIAL_RP2_NR_UARTS=32
 CONFIG_SERIAL_FSL_LPUART=m
+# CONFIG_TTY_PRINTK is not set
 CONFIG_PRINTER=m
 # CONFIG_LP_CONSOLE is not set
 CONFIG_PPDEV=m
@@ -4227,6 +4235,7 @@
 CONFIG_SSB_PCMCIAHOST=y
 CONFIG_SSB_SDIOHOST_POSSIBLE=y
 CONFIG_SSB_SDIOHOST=y
+# CONFIG_SSB_SILENT is not set
 # CONFIG_SSB_DEBUG is not set
 CONFIG_SSB_DRIVER_PCICORE_POSSIBLE=y
 CONFIG_SSB_DRIVER_PCICORE=y
@@ -5065,6 +5074,12 @@
 CONFIG_DRM_I915_USERPTR=y
 CONFIG_DRM_I915_GVT=y
 CONFIG_DRM_I915_GVT_KVMGT=m
+
+#
+# drm/i915 Debugging
+#
+# CONFIG_DRM_I915_WERROR is not set
+# CONFIG_DRM_I915_DEBUG is not set
 CONFIG_DRM_VGEM=m
 CONFIG_DRM_VMWGFX=m
 CONFIG_DRM_VMWGFX_FBCON=y
@@ -5139,6 +5154,7 @@
 # CONFIG_FB_RIVA is not set
 # CONFIG_FB_I740 is not set
 # CONFIG_FB_LE80578 is not set
+# CONFIG_FB_INTEL is not set
 # CONFIG_FB_MATROX is not set
 # CONFIG_FB_RADEON is not set
 # CONFIG_FB_ATY128 is not set
@@ -5672,6 +5688,12 @@
 CONFIG_USB_HIDDEV=y
 
 #
+# USB HID Boot Protocol drivers
+#
+# CONFIG_USB_KBD is 

[arch-commits] Commit in aarch64-linux-gnu-linux-api-headers/trunk (PKGBUILD)

2017-05-02 Thread Anatol Pomozov
Date: Wednesday, May 3, 2017 @ 03:58:36
  Author: anatolik
Revision: 226603

upgpkg: aarch64-linux-gnu-linux-api-headers 4.11-1

Modified:
  aarch64-linux-gnu-linux-api-headers/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-03 03:54:06 UTC (rev 226602)
+++ PKGBUILD2017-05-03 03:58:36 UTC (rev 226603)
@@ -3,7 +3,7 @@
 _target_arch=arm64
 _target=aarch64-linux-gnu
 pkgname=$_target-linux-api-headers
-pkgver=4.10
+pkgver=4.11
 pkgrel=1
 pkgdesc="Kernel headers sanitized for use in userspace ($_target)"
 arch=(any)
@@ -10,7 +10,7 @@
 url='http://www.kernel.org'
 license=(GPL2)
 source=(http://www.kernel.org/pub/linux/kernel/v4.x/linux-$pkgver.tar.xz)
-sha1sums=('1375424721130e93dd6f723537a4db9039a02643')
+sha1sums=('0d2594b7aa3e79521f229569f9e14dc56bdcbd78')
 
 build() {
   cd linux-$pkgver


[arch-commits] Commit in aarch64-linux-gnu-linux-api-headers/repos/community-any (2 files)

2017-05-02 Thread Anatol Pomozov
Date: Wednesday, May 3, 2017 @ 03:59:06
  Author: anatolik
Revision: 226604

archrelease: copy trunk to community-any

Added:
  aarch64-linux-gnu-linux-api-headers/repos/community-any/PKGBUILD
(from rev 226603, aarch64-linux-gnu-linux-api-headers/trunk/PKGBUILD)
Deleted:
  aarch64-linux-gnu-linux-api-headers/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-05-03 03:58:36 UTC (rev 226603)
+++ PKGBUILD2017-05-03 03:59:06 UTC (rev 226604)
@@ -1,29 +0,0 @@
-# Maintainer: Anatol Pomozov 
-
-_target_arch=arm64
-_target=aarch64-linux-gnu
-pkgname=$_target-linux-api-headers
-pkgver=4.10
-pkgrel=1
-pkgdesc="Kernel headers sanitized for use in userspace ($_target)"
-arch=(any)
-url='http://www.kernel.org'
-license=(GPL2)
-source=(http://www.kernel.org/pub/linux/kernel/v4.x/linux-$pkgver.tar.xz)
-sha1sums=('1375424721130e93dd6f723537a4db9039a02643')
-
-build() {
-  cd linux-$pkgver
-
-  make ARCH=$_target_arch mrproper
-  make ARCH=$_target_arch headers_check
-}
-
-package() {
-  cd linux-$pkgver
-
-  make INSTALL_HDR_PATH="$pkgdir/usr/$_target/" ARCH=$_target_arch V=0 
headers_install
-
-  # clean-up unnecessary files generated during install
-  find "$pkgdir" \( -name .install -or -name ..install.cmd \) -delete
-}

Copied: aarch64-linux-gnu-linux-api-headers/repos/community-any/PKGBUILD (from 
rev 226603, aarch64-linux-gnu-linux-api-headers/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-05-03 03:59:06 UTC (rev 226604)
@@ -0,0 +1,29 @@
+# Maintainer: Anatol Pomozov 
+
+_target_arch=arm64
+_target=aarch64-linux-gnu
+pkgname=$_target-linux-api-headers
+pkgver=4.11
+pkgrel=1
+pkgdesc="Kernel headers sanitized for use in userspace ($_target)"
+arch=(any)
+url='http://www.kernel.org'
+license=(GPL2)
+source=(http://www.kernel.org/pub/linux/kernel/v4.x/linux-$pkgver.tar.xz)
+sha1sums=('0d2594b7aa3e79521f229569f9e14dc56bdcbd78')
+
+build() {
+  cd linux-$pkgver
+
+  make ARCH=$_target_arch mrproper
+  make ARCH=$_target_arch headers_check
+}
+
+package() {
+  cd linux-$pkgver
+
+  make INSTALL_HDR_PATH="$pkgdir/usr/$_target/" ARCH=$_target_arch V=0 
headers_install
+
+  # clean-up unnecessary files generated during install
+  find "$pkgdir" \( -name .install -or -name ..install.cmd \) -delete
+}


[arch-commits] Commit in ruby-native-package-installer/repos/community-any (2 files)

2017-05-02 Thread Anatol Pomozov
Date: Wednesday, May 3, 2017 @ 03:54:06
  Author: anatolik
Revision: 226602

archrelease: copy trunk to community-any

Added:
  ruby-native-package-installer/repos/community-any/PKGBUILD
(from rev 226601, ruby-native-package-installer/trunk/PKGBUILD)
Deleted:
  ruby-native-package-installer/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-05-03 03:53:37 UTC (rev 226601)
+++ PKGBUILD2017-05-03 03:54:06 UTC (rev 226602)
@@ -1,21 +0,0 @@
-# Maintainer: Ruby quarry (https://github.com/anatol/quarry)
-
-_gemname=native-package-installer
-pkgname=ruby-$_gemname
-pkgver=1.0.0
-pkgrel=1
-pkgdesc=native-package-installer\ helps\ to\ install\ native\ packages\ on\ 
\"gem\ install\"
-arch=(any)
-url=https://github.com/ruby-gnome2/native-package-installer
-license=(LGPL3)
-depends=(ruby)
-options=(!emptydirs)
-source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem)
-noextract=($_gemname-$pkgver.gem)
-sha1sums=('60e19097b73c921d1dfb415efb0540544ac36ab3')
-
-package() {
-  local _gemdir="$(ruby -e'puts Gem.default_dir')"
-  gem install --ignore-dependencies --no-user-install -i "$pkgdir/$_gemdir" -n 
"$pkgdir/usr/bin" $_gemname-$pkgver.gem
-  rm "$pkgdir/$_gemdir/cache/$_gemname-$pkgver.gem"
-}

Copied: ruby-native-package-installer/repos/community-any/PKGBUILD (from rev 
226601, ruby-native-package-installer/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-05-03 03:54:06 UTC (rev 226602)
@@ -0,0 +1,21 @@
+# Maintainer: Ruby quarry (https://github.com/anatol/quarry)
+
+_gemname=native-package-installer
+pkgname=ruby-$_gemname
+pkgver=1.0.1
+pkgrel=1
+pkgdesc=native-package-installer\ helps\ to\ install\ native\ packages\ on\ 
\"gem\ install\"
+arch=(any)
+url=https://github.com/ruby-gnome2/native-package-installer
+license=(LGPL3)
+depends=(ruby)
+options=(!emptydirs)
+source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem)
+noextract=($_gemname-$pkgver.gem)
+sha1sums=('dcc384d0bcc59c66f04d72af7551c16559c5b524')
+
+package() {
+  local _gemdir="$(ruby -e'puts Gem.default_dir')"
+  gem install --ignore-dependencies --no-user-install -i "$pkgdir/$_gemdir" -n 
"$pkgdir/usr/bin" $_gemname-$pkgver.gem
+  rm "$pkgdir/$_gemdir/cache/$_gemname-$pkgver.gem"
+}


[arch-commits] Commit in ruby-native-package-installer/trunk (PKGBUILD)

2017-05-02 Thread Anatol Pomozov
Date: Wednesday, May 3, 2017 @ 03:53:37
  Author: anatolik
Revision: 226601

upgpkg: ruby-native-package-installer 1.0.1-1

Modified:
  ruby-native-package-installer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-02 21:15:53 UTC (rev 226600)
+++ PKGBUILD2017-05-03 03:53:37 UTC (rev 226601)
@@ -2,7 +2,7 @@
 
 _gemname=native-package-installer
 pkgname=ruby-$_gemname
-pkgver=1.0.0
+pkgver=1.0.1
 pkgrel=1
 pkgdesc=native-package-installer\ helps\ to\ install\ native\ packages\ on\ 
\"gem\ install\"
 arch=(any)
@@ -12,7 +12,7 @@
 options=(!emptydirs)
 source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem)
 noextract=($_gemname-$pkgver.gem)
-sha1sums=('60e19097b73c921d1dfb415efb0540544ac36ab3')
+sha1sums=('dcc384d0bcc59c66f04d72af7551c16559c5b524')
 
 package() {
   local _gemdir="$(ruby -e'puts Gem.default_dir')"


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

2017-05-02 Thread Anatol Pomozov
Date: Wednesday, May 3, 2017 @ 03:48:27
  Author: anatolik
Revision: 295197

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

Added:
  re2/repos/testing-i686/
  re2/repos/testing-i686/PKGBUILD
(from rev 295196, re2/trunk/PKGBUILD)
  re2/repos/testing-x86_64/
  re2/repos/testing-x86_64/PKGBUILD
(from rev 295196, re2/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   32 
 testing-x86_64/PKGBUILD |   32 
 2 files changed, 64 insertions(+)

Copied: re2/repos/testing-i686/PKGBUILD (from rev 295196, re2/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-05-03 03:48:27 UTC (rev 295197)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Anatol Pomozov 
+# Contributor: Gustavo Alvarez 
+# Contributor: Alexandre Bique 
+
+pkgname=re2
+_tag='2017-05-01'
+pkgver=${_tag//-/}
+pkgrel=1
+pkgdesc='C++ library for fast, safe, thread-friendly alternative to 
backtracking regular expression engines like those used in PCRE, Perl, and 
Python'
+url='https://github.com/google/re2'
+depends=(gcc-libs)
+arch=(i686 x86_64)
+license=(BSD)
+source=(re2-$pkgver.zip::https://github.com/google/re2/archive/$_tag.zip)
+sha1sums=('45585605b894f451662c03d6d4406875c4828aa2')
+
+build() {
+  cd re2-$_tag
+  make prefix=/usr
+}
+
+check() {
+  cd re2-$_tag
+  make prefix=/usr test
+}
+
+package() {
+  cd re2-$_tag
+  make prefix=/usr DESTDIR="$pkgdir" install
+  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Copied: re2/repos/testing-x86_64/PKGBUILD (from rev 295196, re2/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-05-03 03:48:27 UTC (rev 295197)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Anatol Pomozov 
+# Contributor: Gustavo Alvarez 
+# Contributor: Alexandre Bique 
+
+pkgname=re2
+_tag='2017-05-01'
+pkgver=${_tag//-/}
+pkgrel=1
+pkgdesc='C++ library for fast, safe, thread-friendly alternative to 
backtracking regular expression engines like those used in PCRE, Perl, and 
Python'
+url='https://github.com/google/re2'
+depends=(gcc-libs)
+arch=(i686 x86_64)
+license=(BSD)
+source=(re2-$pkgver.zip::https://github.com/google/re2/archive/$_tag.zip)
+sha1sums=('45585605b894f451662c03d6d4406875c4828aa2')
+
+build() {
+  cd re2-$_tag
+  make prefix=/usr
+}
+
+check() {
+  cd re2-$_tag
+  make prefix=/usr test
+}
+
+package() {
+  cd re2-$_tag
+  make prefix=/usr DESTDIR="$pkgdir" install
+  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2017-05-02 Thread Anatol Pomozov
Date: Wednesday, May 3, 2017 @ 03:47:41
  Author: anatolik
Revision: 295196

upgpkg: re2 20170501-1

Modified:
  re2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-02 22:46:26 UTC (rev 295195)
+++ PKGBUILD2017-05-03 03:47:41 UTC (rev 295196)
@@ -4,7 +4,7 @@
 # Contributor: Alexandre Bique 
 
 pkgname=re2
-_tag='2017-01-01'
+_tag='2017-05-01'
 pkgver=${_tag//-/}
 pkgrel=1
 pkgdesc='C++ library for fast, safe, thread-friendly alternative to 
backtracking regular expression engines like those used in PCRE, Perl, and 
Python'
@@ -13,7 +13,7 @@
 arch=(i686 x86_64)
 license=(BSD)
 source=(re2-$pkgver.zip::https://github.com/google/re2/archive/$_tag.zip)
-sha1sums=('0c19ad0370af8a6dcff73e714c7f21363dc709db')
+sha1sums=('45585605b894f451662c03d6d4406875c4828aa2')
 
 build() {
   cd re2-$_tag


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

2017-05-02 Thread Antonio Rojas
Date: Tuesday, May 2, 2017 @ 22:45:55
  Author: arojas
Revision: 295194

Update to 0.69

Modified:
  putty/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-02 22:03:18 UTC (rev 295193)
+++ PKGBUILD2017-05-02 22:45:55 UTC (rev 295194)
@@ -2,17 +2,17 @@
 # Maintainer: Eric Bélanger 
 
 pkgname=putty
-pkgver=0.68
+pkgver=0.69
 pkgrel=1
 pkgdesc="A terminal integrated SSH/Telnet client"
 arch=('i686' 'x86_64')
 url="http://www.chiark.greenend.org.uk/~sgtatham/putty/;
 license=('MIT')
-depends=('gtk2')
+depends=('gtk3')
 
source=(http://the.earth.li/~sgtatham/putty/${pkgver}/${pkgname}-${pkgver}.tar.gz
 
putty-${pkgver}.tar.gz.sig::http://the.earth.li/~sgtatham/putty/${pkgver}/putty-${pkgver}.tar.gz.gpg)
-sha1sums=('e6acf0285e0718516cfa1fe775b1a92765387d70'
-  '69137bf036ceca37a4641922c797bb99e932a06c')
+sha1sums=('f98ec09ecba4d9a4efc66fac5c86078cef27b41a'
+  '37e5fab2c834f5d38d84d118ad01fbfad6f97209')
 validpgpkeys=('0054DDAA8ADA15D2768A6DE79DFE2648B43434E4')
 
 build() {


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

2017-05-02 Thread Antonio Rojas
Date: Tuesday, May 2, 2017 @ 22:46:26
  Author: arojas
Revision: 295195

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-05-02 22:45:55 UTC (rev 295194)
+++ extra-i686/PKGBUILD 2017-05-02 22:46:26 UTC (rev 295195)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=putty
-pkgver=0.68
-pkgrel=1
-pkgdesc="A terminal integrated SSH/Telnet client"
-arch=('i686' 'x86_64')
-url="http://www.chiark.greenend.org.uk/~sgtatham/putty/;
-license=('MIT')
-depends=('gtk2')
-source=(http://the.earth.li/~sgtatham/putty/${pkgver}/${pkgname}-${pkgver}.tar.gz
-
putty-${pkgver}.tar.gz.sig::http://the.earth.li/~sgtatham/putty/${pkgver}/putty-${pkgver}.tar.gz.gpg)
-sha1sums=('e6acf0285e0718516cfa1fe775b1a92765387d70'
-  '69137bf036ceca37a4641922c797bb99e932a06c')
-validpgpkeys=('0054DDAA8ADA15D2768A6DE79DFE2648B43434E4')
-
-build() {
-  cd ${pkgname}-${pkgver}/unix
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}/unix
-  make DESTDIR="${pkgdir}" install
-  install -D -m644 ../LICENCE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: putty/repos/extra-i686/PKGBUILD (from rev 295194, putty/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-05-02 22:46:26 UTC (rev 295195)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=putty
+pkgver=0.69
+pkgrel=1
+pkgdesc="A terminal integrated SSH/Telnet client"
+arch=('i686' 'x86_64')
+url="http://www.chiark.greenend.org.uk/~sgtatham/putty/;
+license=('MIT')
+depends=('gtk3')
+source=(http://the.earth.li/~sgtatham/putty/${pkgver}/${pkgname}-${pkgver}.tar.gz
+
putty-${pkgver}.tar.gz.sig::http://the.earth.li/~sgtatham/putty/${pkgver}/putty-${pkgver}.tar.gz.gpg)
+sha1sums=('f98ec09ecba4d9a4efc66fac5c86078cef27b41a'
+  '37e5fab2c834f5d38d84d118ad01fbfad6f97209')
+validpgpkeys=('0054DDAA8ADA15D2768A6DE79DFE2648B43434E4')
+
+build() {
+  cd ${pkgname}-${pkgver}/unix
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}/unix
+  make DESTDIR="${pkgdir}" install
+  install -D -m644 ../LICENCE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-05-02 22:45:55 UTC (rev 295194)
+++ extra-x86_64/PKGBUILD   2017-05-02 22:46:26 UTC (rev 295195)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=putty
-pkgver=0.68
-pkgrel=1
-pkgdesc="A terminal integrated SSH/Telnet client"
-arch=('i686' 'x86_64')
-url="http://www.chiark.greenend.org.uk/~sgtatham/putty/;
-license=('MIT')
-depends=('gtk2')
-source=(http://the.earth.li/~sgtatham/putty/${pkgver}/${pkgname}-${pkgver}.tar.gz
-
putty-${pkgver}.tar.gz.sig::http://the.earth.li/~sgtatham/putty/${pkgver}/putty-${pkgver}.tar.gz.gpg)
-sha1sums=('e6acf0285e0718516cfa1fe775b1a92765387d70'
-  '69137bf036ceca37a4641922c797bb99e932a06c')
-validpgpkeys=('0054DDAA8ADA15D2768A6DE79DFE2648B43434E4')
-
-build() {
-  cd ${pkgname}-${pkgver}/unix
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}/unix
-  make DESTDIR="${pkgdir}" install
-  install -D -m644 ../LICENCE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: putty/repos/extra-x86_64/PKGBUILD (from rev 295194, 
putty/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2017-05-02 22:46:26 UTC (rev 295195)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=putty
+pkgver=0.69
+pkgrel=1
+pkgdesc="A terminal integrated SSH/Telnet client"
+arch=('i686' 'x86_64')
+url="http://www.chiark.greenend.org.uk/~sgtatham/putty/;
+license=('MIT')
+depends=('gtk3')
+source=(http://the.earth.li/~sgtatham/putty/${pkgver}/${pkgname}-${pkgver}.tar.gz
+
putty-${pkgver}.tar.gz.sig::http://the.earth.li/~sgtatham/putty/${pkgver}/putty-${pkgver}.tar.gz.gpg)
+sha1sums=('f98ec09ecba4d9a4efc66fac5c86078cef27b41a'
+  '37e5fab2c834f5d38d84d118ad01fbfad6f97209')
+validpgpkeys=('0054DDAA8ADA15D2768A6DE79DFE2648B43434E4')
+

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

2017-05-02 Thread Jan Steffens
Date: Tuesday, May 2, 2017 @ 22:03:18
  Author: heftig
Revision: 295193

fix badly committed patch

Modified:
  firefox/trunk/0001-Bug-1338655-Don-t-try-to-build-mp4parse-bindings.-r-.patch
  firefox/trunk/PKGBUILD

-+
 0001-Bug-1338655-Don-t-try-to-build-mp4parse-bindings.-r-.patch |   25 
+-
 PKGBUILD|2 
 2 files changed, 4 insertions(+), 23 deletions(-)

Modified: 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-05-02 19:56:29 UTC (rev 295192)
+++ 0001-Bug-1338655-Don-t-try-to-build-mp4parse-bindings.-r-.patch 
2017-05-02 22:03:18 UTC (rev 295193)
@@ -30,26 +30,6 @@
  media/libstagefright/binding/mp4parse_capi/Cargo.toml | 2 ++
  2 files changed, 5 insertions(+), 2 deletions(-)
 
-diff --git a/media/libstagefright/binding/mp4parse-cargo.patch 
b/media/libstagefright/binding/mp4parse-cargo.patch
-index 1dd13d20472a2d95..bfa0ab74b4244943 100644
 a/media/libstagefright/binding/mp4parse-cargo.patch
-+++ b/media/libstagefright/binding/mp4parse-cargo.patch
-@@ -27,12 +27,13 @@ diff --git 
a/media/libstagefright/binding/mp4parse_capi/Cargo.toml b/media/libst
- index aeeebc65..5c0836a 100644
- --- a/media/libstagefright/binding/mp4parse_capi/Cargo.toml
- +++ b/media/libstagefright/binding/mp4parse_capi/Cargo.toml
--@@ -18,18 +18,10 @@ exclude = [
-+@@ -18,18 +18,12 @@ exclude = [
-"*.mp4",
-  ]
-
- -build = "build.rs"
---
-++build = false
-+
-  [dependencies]
-  byteorder = "1.0.0"
-  "mp4parse" = {version = "0.6.0", path = "../mp4parse"}
 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
@@ -57,11 +37,12 @@
 @@ -18,6 +18,8 @@ exclude = [
"*.mp4",
  ]
-
+ 
 +build = false
 +
  [dependencies]
  byteorder = "1.0.0"
  "mp4parse" = {version = "0.6.0", path = "../mp4parse"}
---
+-- 
 2.12.2
+

Modified: PKGBUILD
===
--- PKGBUILD2017-05-02 19:56:29 UTC (rev 295192)
+++ PKGBUILD2017-05-02 22:03:18 UTC (rev 295193)
@@ -26,7 +26,7 @@
 sha256sums=('SKIP'
 'ada313750e6fb14558b37c764409a17c1672a351a46c73b350aa1fe4ea9220ef'
 'a2474b32b9b2d7e0fb53a4c89715507ad1c194bef77713d798fa39d507def9e9'
-'4dd4a2df104f8b08b608f062c8d68620c72b80acea63d8b8c314582d4fbdae85'
+'413cd6d366d78f325d80ebebccfd0afa0d266b40b2e54b66ba2fa03c15f3ea67'
 'd86e41d87363656ee62e12543e2f5181aadcff448e406ef3218e91865ae775cd'
 '9765bca5d63fb5525bbd0520b7ab1d27cabaed697e2fc7791400abc3fa4f13b8')
 


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

2017-05-02 Thread Jaroslav Lichtblau
Date: Tuesday, May 2, 2017 @ 21:15:53
  Author: jlichtblau
Revision: 226600

archrelease: copy trunk to community-any

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

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

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

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


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

2017-05-02 Thread Jaroslav Lichtblau
Date: Tuesday, May 2, 2017 @ 21:15:41
  Author: jlichtblau
Revision: 226599

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

Modified:
  youtube-dl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-02 21:13:23 UTC (rev 226598)
+++ PKGBUILD2017-05-02 21:15:41 UTC (rev 226599)
@@ -3,7 +3,7 @@
 # Maintainer: Jaroslav Lichtblau 
 
 pkgname=youtube-dl
-pkgver=2017.04.28
+pkgver=2017.05.01
 pkgrel=1
 pkgdesc="A small command-line program to download videos from YouTube.com and 
a few more sites"
 arch=('any')
@@ -14,7 +14,7 @@
 'rtmpdump: for rtmp streams support'
 'atomicparsley: for embedding thumbnails into m4a files')
 
source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.sig})
-sha256sums=('72c0a91d551460e1cd85faca0ff0218e5006bbba371d27d75907ac8e917b7534'
+sha256sums=('58e2151634a66fa9ab4a98978fa72bf15990ec1c088ac7e4393cca00c9a32e53'
 'SKIP')
 validpgpkeys=('7D33D762FD6C35130481347FDB4B54CBA4826A18'  # Philipp Hagemeister
   'ED7F5BF46B3BBED81C87368E2C393E0F18A9236D') # Sergey M. 


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

2017-05-02 Thread Jaroslav Lichtblau
Date: Tuesday, May 2, 2017 @ 21:13:23
  Author: jlichtblau
Revision: 226598

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

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

-+
 /PKGBUILD   |   66 ++
 /sdcv.changelog |   30 +
 community-i686/PKGBUILD |   33 ---
 community-i686/sdcv.changelog   |   12 --
 community-x86_64/PKGBUILD   |   33 ---
 community-x86_64/sdcv.changelog |   12 --
 6 files changed, 96 insertions(+), 90 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-05-02 21:13:08 UTC (rev 226597)
+++ community-i686/PKGBUILD 2017-05-02 21:13:23 UTC (rev 226598)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau 
-
-pkgname=sdcv
-pkgver=0.5.0beta4
-pkgrel=2
-pkgdesc="StarDict Console Version"
-arch=('i686' 'x86_64')
-url="http://sdcv.sourceforge.net/;
-license=('GPL')
-depends=('glib2' 'readline' 'zlib')
-makedepends=('cmake')
-provides=('stardict')
-changelog=$pkgname.changelog
-source=(https://sourceforge.net/projects/$pkgname/files/$pkgname/$pkgname-0.5.0-beta4-Source.tar.bz2)
-sha256sums=('19e7ec25de76fc877d35d25542080907b4f89e44d8746f704a24304155483bad')
-
-build() {
-  cd "${srcdir}"/$pkgname-0.5.0-beta4-Source
-
-  mkdir build
-  cd build
-
-  cmake ../ -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr
-  make
-  make lang
-}
-
-package() {
-  cd "${srcdir}"/$pkgname-0.5.0-beta4-Source/build
-
-  make DESTDIR="${pkgdir}" install
-}

Copied: sdcv/repos/community-i686/PKGBUILD (from rev 226597, 
sdcv/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-05-02 21:13:23 UTC (rev 226598)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+
+pkgname=sdcv
+pkgver=0.5.1
+pkgrel=1
+pkgdesc="StarDict Console Version"
+arch=('i686' 'x86_64')
+url="http://dushistov.github.io/sdcv/;
+license=('GPL')
+depends=('glib2' 'readline' 'zlib')
+makedepends=('cmake')
+provides=('stardict')
+changelog=$pkgname.changelog
+source=($pkgname-$pkgver.tar.gz::https://github.com/Dushistov/$pkgname/archive/v$pkgver.tar.gz)
+sha256sums=('d0c64429547adb127d5ff9f0f0db8c4bc663bc413dfb5b5d32c924a67171c247')
+
+build() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  install -d build
+  cd build
+
+  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr ..
+  make
+  make lang
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-$pkgver/build
+
+  make DESTDIR="${pkgdir}" install
+}

Deleted: community-i686/sdcv.changelog
===
--- community-i686/sdcv.changelog   2017-05-02 21:13:08 UTC (rev 226597)
+++ community-i686/sdcv.changelog   2017-05-02 21:13:23 UTC (rev 226598)
@@ -1,12 +0,0 @@
-2016-11-06 Jaroslav Lichtblau 
-   * sdcv 0.5.0beta4-2 readline 7.0 rebuild
-
-2016-05-01 Jaroslav Lichtblau 
-   * sdcv 0.5.0beta4-1
-
-2014-07-07 Jaroslav Lichtblau 
-   * sdcv 0.4.2-8 mtree rebuild
-
-2011-10-26 Jaroslav Lichtblau 
-   * sdcv 0.4.2-6
-   * moved to [community] with 206 votes

Copied: sdcv/repos/community-i686/sdcv.changelog (from rev 226597, 
sdcv/trunk/sdcv.changelog)
===
--- community-i686/sdcv.changelog   (rev 0)
+++ community-i686/sdcv.changelog   2017-05-02 21:13:23 UTC (rev 226598)
@@ -0,0 +1,15 @@
+2017-05-02 Jaroslav Lichtblau 
+   * sdcv 0.5.1-1
+
+2016-11-06 Jaroslav Lichtblau 
+   * sdcv 0.5.0beta4-2 readline 7.0 rebuild
+
+2016-05-01 Jaroslav Lichtblau 
+   * sdcv 0.5.0beta4-1
+
+2014-07-07 Jaroslav Lichtblau 
+   * sdcv 0.4.2-8 mtree rebuild
+
+2011-10-26 Jaroslav Lichtblau 
+   * sdcv 0.4.2-6
+   * moved to [community] with 206 votes

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-05-02 21:13:08 UTC (rev 226597)
+++ 

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

2017-05-02 Thread Jaroslav Lichtblau
Date: Tuesday, May 2, 2017 @ 21:13:08
  Author: jlichtblau
Revision: 226597

upgpkg: sdcv 0.5.1-1 - new upstream release

Modified:
  sdcv/trunk/PKGBUILD
  sdcv/trunk/sdcv.changelog

+
 PKGBUILD   |   18 +-
 sdcv.changelog |3 +++
 2 files changed, 12 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-05-02 18:44:26 UTC (rev 226596)
+++ PKGBUILD2017-05-02 21:13:08 UTC (rev 226597)
@@ -2,32 +2,32 @@
 # Maintainer: Jaroslav Lichtblau 
 
 pkgname=sdcv
-pkgver=0.5.0beta4
-pkgrel=2
+pkgver=0.5.1
+pkgrel=1
 pkgdesc="StarDict Console Version"
 arch=('i686' 'x86_64')
-url="http://sdcv.sourceforge.net/;
+url="http://dushistov.github.io/sdcv/;
 license=('GPL')
 depends=('glib2' 'readline' 'zlib')
 makedepends=('cmake')
 provides=('stardict')
 changelog=$pkgname.changelog
-source=(https://sourceforge.net/projects/$pkgname/files/$pkgname/$pkgname-0.5.0-beta4-Source.tar.bz2)
-sha256sums=('19e7ec25de76fc877d35d25542080907b4f89e44d8746f704a24304155483bad')
+source=($pkgname-$pkgver.tar.gz::https://github.com/Dushistov/$pkgname/archive/v$pkgver.tar.gz)
+sha256sums=('d0c64429547adb127d5ff9f0f0db8c4bc663bc413dfb5b5d32c924a67171c247')
 
 build() {
-  cd "${srcdir}"/$pkgname-0.5.0-beta4-Source
+  cd "${srcdir}"/$pkgname-$pkgver
 
-  mkdir build
+  install -d build
   cd build
 
-  cmake ../ -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr
+  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr ..
   make
   make lang
 }
 
 package() {
-  cd "${srcdir}"/$pkgname-0.5.0-beta4-Source/build
+  cd "${srcdir}"/$pkgname-$pkgver/build
 
   make DESTDIR="${pkgdir}" install
 }

Modified: sdcv.changelog
===
--- sdcv.changelog  2017-05-02 18:44:26 UTC (rev 226596)
+++ sdcv.changelog  2017-05-02 21:13:08 UTC (rev 226597)
@@ -1,3 +1,6 @@
+2017-05-02 Jaroslav Lichtblau 
+   * sdcv 0.5.1-1
+
 2016-11-06 Jaroslav Lichtblau 
* sdcv 0.5.0beta4-2 readline 7.0 rebuild
 


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

2017-05-02 Thread Jan Steffens
Date: Tuesday, May 2, 2017 @ 19:56:29
  Author: heftig
Revision: 295192

Enable BLK_DEBUG_FS, as recommended by Kconfig

Modified:
  linux/trunk/PKGBUILD
  linux/trunk/config.i686
  linux/trunk/config.x86_64

---+
 PKGBUILD  |4 ++--
 config.i686   |2 +-
 config.x86_64 |2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-05-02 19:08:46 UTC (rev 295191)
+++ PKGBUILD2017-05-02 19:56:29 UTC (rev 295192)
@@ -25,8 +25,8 @@
 
 sha256sums=('b67ecafd0a42b3383bf4d82f0850cbff92a7e72a215a6d02f42ddbafcf42a7d6'
 'SKIP'
-'6753a34cbedd170e6e64bcedb05f565406c28d74177c79374bd0b2167dfa2bab'
-'6cf7670b611aa618290a1334e94a3c35aa334b3dd1d7052e32d1aef2d767cfdb'
+'e4e928488d35ba2b4049bd224dee87be9eb574ed3c1882f22c8fd5d8674c9abd'
+'2e38528bd2f1be712f5a274b66882c41d2a9cf996b3a05b4a772c8ba7309b261'
 '834bd254b56ab71d73f59b3221f056c72f559553c04718e350ab2a3e2991afe0'
 'ad6344badc91ad0630caacde83f7f9b97276f80d26a20619a87952be65492c65')
 validpgpkeys=(

Modified: config.i686
===
--- config.i686 2017-05-02 19:08:46 UTC (rev 295191)
+++ config.i686 2017-05-02 19:56:29 UTC (rev 295192)
@@ -342,7 +342,7 @@
 CONFIG_BLK_WBT=y
 CONFIG_BLK_WBT_SQ=y
 CONFIG_BLK_WBT_MQ=y
-# CONFIG_BLK_DEBUG_FS is not set
+CONFIG_BLK_DEBUG_FS=y
 CONFIG_BLK_SED_OPAL=y
 
 #

Modified: config.x86_64
===
--- config.x86_64   2017-05-02 19:08:46 UTC (rev 295191)
+++ config.x86_64   2017-05-02 19:56:29 UTC (rev 295192)
@@ -360,7 +360,7 @@
 CONFIG_BLK_WBT=y
 CONFIG_BLK_WBT_SQ=y
 CONFIG_BLK_WBT_MQ=y
-# CONFIG_BLK_DEBUG_FS is not set
+CONFIG_BLK_DEBUG_FS=y
 CONFIG_BLK_SED_OPAL=y
 
 #


[arch-commits] Commit in qt5-webkit/repos/kde-unstable-x86_64 (4 files)

2017-05-02 Thread Antonio Rojas
Date: Tuesday, May 2, 2017 @ 19:08:46
  Author: arojas
Revision: 295191

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

Added:
  qt5-webkit/repos/kde-unstable-x86_64/PKGBUILD
(from rev 295190, qt5-webkit/kde-unstable/PKGBUILD)
  qt5-webkit/repos/kde-unstable-x86_64/qt5-webkit-icu59.patch
(from rev 295190, qt5-webkit/kde-unstable/qt5-webkit-icu59.patch)
Deleted:
  qt5-webkit/repos/kde-unstable-x86_64/PKGBUILD
  qt5-webkit/repos/kde-unstable-x86_64/qt5-webkit-icu59.patch

+
 PKGBUILD   |  100 
 qt5-webkit-icu59.patch |  146 +++
 2 files changed, 123 insertions(+), 123 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-05-02 19:08:20 UTC (rev 295190)
+++ PKGBUILD2017-05-02 19:08:46 UTC (rev 295191)
@@ -1,50 +0,0 @@
-# $Id: PKGBUILD 240297 2015-06-03 10:22:03Z fyan $
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=qt5-webkit
-_qtver=5.9.0-beta3
-pkgver=${_qtver/-/}
-pkgrel=1
-arch=('i686' 'x86_64')
-url='http://qt-project.org/'
-license=('GPL3' 'LGPL3' 'FDL' 'custom')
-pkgdesc='Classes for a WebKit2 based implementation and a new QML API'
-depends=('qt5-location' 'qt5-sensors' 'qt5-webchannel' 'libwebp' 'libxslt' 
'libxcomposite' 'gst-plugins-base')
-makedepends=('ruby' 'gperf' 'python' 'qt5-doc' 'qt5-tools')
-optdepends=('gst-plugins-good: Webm codec support')
-conflicts=('qt')
-groups=('qt' 'qt5')
-_pkgfqn="${pkgname/5-/}-opensource-src-${_qtver}"
-source=("http://download.qt.io/community_releases/${pkgver%.*}/${_qtver}/qtwebkit-opensource-src-${_qtver}.tar.xz;
-qt5-webkit-icu59.patch)
-sha256sums=('5f69a6a4f89a9da31b51875033870a2113d99a802d36f7eeb7e97ee161e00a4c'
-'3bc9c7202f5cb055311ffb8a14145cef89060c2f4cd5b4f4bf210bd56295')
-
-prepare() {
-  mkdir -p build
-
-# Fix build with ICU 59 (PLD linux)
-  cd ${_pkgfqn}
-  patch -p1 -i ../qt5-webkit-icu59.patch
-}
-
-build() {
-  cd build  
-
-  qmake ../${_pkgfqn}
-  make
-#  make docs
-}
-
-package() {
-  cd build
-  make INSTALL_ROOT="$pkgdir" install # install_docs
-
-  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
-  find "$pkgdir/usr/lib" -type f -name '*.prl' \
--exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
-
-  install -d "$pkgdir"/usr/share/licenses
-  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
-}

Copied: qt5-webkit/repos/kde-unstable-x86_64/PKGBUILD (from rev 295190, 
qt5-webkit/kde-unstable/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-05-02 19:08:46 UTC (rev 295191)
@@ -0,0 +1,50 @@
+# $Id: PKGBUILD 240297 2015-06-03 10:22:03Z fyan $
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-webkit
+_qtver=5.9.0-beta3
+pkgver=${_qtver/-/}
+pkgrel=2
+arch=('i686' 'x86_64')
+url='http://qt-project.org/'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Classes for a WebKit2 based implementation and a new QML API'
+depends=('qt5-location' 'qt5-sensors' 'qt5-webchannel' 'libwebp' 'libxslt' 
'libxcomposite' 'gst-plugins-base')
+makedepends=('ruby' 'gperf' 'python' 'qt5-doc' 'qt5-tools')
+optdepends=('gst-plugins-good: Webm codec support')
+conflicts=('qt')
+groups=('qt' 'qt5')
+_pkgfqn="${pkgname/5-/}-opensource-src-${_qtver}"
+source=("http://download.qt.io/community_releases/${pkgver%.*}/${_qtver}/qtwebkit-opensource-src-${_qtver}.tar.xz;
+qt5-webkit-icu59.patch)
+sha256sums=('5f69a6a4f89a9da31b51875033870a2113d99a802d36f7eeb7e97ee161e00a4c'
+'3bc9c7202f5cb055311ffb8a14145cef89060c2f4cd5b4f4bf210bd56295')
+
+prepare() {
+  mkdir -p build
+
+# Fix build with ICU 59 (PLD linux)
+  cd ${_pkgfqn}
+  patch -p1 -i ../qt5-webkit-icu59.patch
+}
+
+build() {
+  cd build  
+
+  qmake ../${_pkgfqn}
+  make
+  make docs
+}
+
+package() {
+  cd build
+  make INSTALL_ROOT="$pkgdir" install install_docs
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}

Deleted: qt5-webkit-icu59.patch
===
--- qt5-webkit-icu59.patch  2017-05-02 19:08:20 UTC (rev 295190)
+++ qt5-webkit-icu59.patch  2017-05-02 19:08:46 UTC (rev 295191)
@@ -1,73 +0,0 @@
-diff --git a/Source/WTF/wtf/Compiler.h b/Source/WTF/wtf/Compiler.h
-index ead844f..e62cfd4 100644
 a/Source/WTF/wtf/Compiler.h
-+++ b/Source/WTF/wtf/Compiler.h
-@@ -61,6 +61,7 @@
- #define WTF_COMPILER_SUPPORTS_HAS_TRIVIAL_DESTRUCTOR 
__has_feature(has_trivial_destructor)
- #define 

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

2017-05-02 Thread Antonio Rojas
Date: Tuesday, May 2, 2017 @ 19:08:20
  Author: arojas
Revision: 295190

Reenable docs

Modified:
  qt5-webkit/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-02 17:10:17 UTC (rev 295189)
+++ PKGBUILD2017-05-02 19:08:20 UTC (rev 295190)
@@ -5,7 +5,7 @@
 pkgname=qt5-webkit
 _qtver=5.9.0-beta3
 pkgver=${_qtver/-/}
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url='http://qt-project.org/'
 license=('GPL3' 'LGPL3' 'FDL' 'custom')
@@ -34,12 +34,12 @@
 
   qmake ../${_pkgfqn}
   make
-#  make docs
+  make docs
 }
 
 package() {
   cd build
-  make INSTALL_ROOT="$pkgdir" install # install_docs
+  make INSTALL_ROOT="$pkgdir" install install_docs
 
   # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
   find "$pkgdir/usr/lib" -type f -name '*.prl' \


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

2017-05-02 Thread Levente Polyak
Date: Tuesday, May 2, 2017 @ 18:44:26
  Author: anthraxx
Revision: 226596

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

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

---+
 /PKGBUILD |   68 
 community-i686/PKGBUILD   |   42 ---
 community-x86_64/PKGBUILD |   42 ---
 3 files changed, 68 insertions(+), 84 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-05-02 18:44:00 UTC (rev 226595)
+++ community-i686/PKGBUILD 2017-05-02 18:44:26 UTC (rev 226596)
@@ -1,42 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Guillermo Ramos <0xwille at gmail dot com>
-
-pkgname=radare2
-pkgver=1.3.0
-pkgrel=2
-pkgdesc='Open-source tools to disasm, debug, analyze and manipulate binary 
files'
-url='https://radare.org'
-arch=('i686' 'x86_64')
-license=('GPL3' 'LGPL3')
-depends=('sh' 'capstone' 'openssl' 'libzip')
-options=('!emptydirs')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/radare/radare2/archive/${pkgver}.tar.gz
-
capstone3-1.3.0.patch::https://github.com/radare/radare2/commit/d9d5f79278c0413582e056850184cb5ee0767727.patch)
-sha256sums=('37b479224b4acd0159bd8dd1e02da0b250c8c33c17a3b6d7f7bbeb9b975fa749'
-'52622d533eeb5416ce37c5e93e8af52f69e01c937f383da9e66bc75fa2a0c1f1')
-sha512sums=('6d38ea213a335225f3b0e74874fd3b162c8ecb3145198c42f08d736d8d44dfd0d263592b5bd701b54715c1f96145201428babf0d75ca342b4fc36fd77a8800c3'
-
'2ebe155d3a4c397b920ed00eec4e0f414d2b5e53d90538a20f5afb16f14d1a33cf73159ca52c92bc6a17bae826d6fd76e8bee4a6b362b3d5856317e09708f91c')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  patch -p1 < "${srcdir}/capstone3-1.3.0.patch"
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr \
---with-syscapstone \
---with-syszip \
---with-openssl
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  # remove shit
-  rm "${pkgdir}"/usr/bin/r2-{indent,docker} \
-"${pkgdir}/usr/share/man/man1/r2-docker.1"
-}
-
-# vim: ts=2 sw=2 et:

Copied: radare2/repos/community-i686/PKGBUILD (from rev 226595, 
radare2/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-05-02 18:44:26 UTC (rev 226596)
@@ -0,0 +1,34 @@
+# Maintainer: Levente Polyak 
+# Contributor: Guillermo Ramos <0xwille at gmail dot com>
+
+pkgname=radare2
+pkgver=1.4.0
+pkgrel=1
+pkgdesc='Open-source tools to disasm, debug, analyze and manipulate binary 
files'
+url='https://radare.org'
+arch=('i686' 'x86_64')
+license=('GPL3' 'LGPL3')
+depends=('sh' 'capstone' 'openssl' 'libzip')
+options=('!emptydirs')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/radare/radare2/archive/${pkgver}.tar.gz)
+sha256sums=('fb58417a6d35af4096da9130a041e1d36f900b17e2c2594b405a9b88ce33c7a8')
+sha512sums=('618774dbe02eaf160e4b246501d3ff48257305bc795ed241c40ff5e71ee553259384a17786a914cebe563fe8d6a7be1856883875fcee15f8177c8c9a1192889b')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr \
+--with-syscapstone \
+--with-syszip \
+--with-openssl
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  # remove shit
+  rm "${pkgdir}"/usr/bin/r2-{indent,docker} \
+"${pkgdir}/usr/share/man/man1/r2-docker.1"
+}
+
+# vim: ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-05-02 18:44:00 UTC (rev 226595)
+++ community-x86_64/PKGBUILD   2017-05-02 18:44:26 UTC (rev 226596)
@@ -1,42 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Guillermo Ramos <0xwille at gmail dot com>
-
-pkgname=radare2
-pkgver=1.3.0
-pkgrel=2
-pkgdesc='Open-source tools to disasm, debug, analyze and manipulate binary 
files'
-url='https://radare.org'
-arch=('i686' 'x86_64')
-license=('GPL3' 'LGPL3')
-depends=('sh' 'capstone' 'openssl' 'libzip')
-options=('!emptydirs')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/radare/radare2/archive/${pkgver}.tar.gz
-
capstone3-1.3.0.patch::https://github.com/radare/radare2/commit/d9d5f79278c0413582e056850184cb5ee0767727.patch)
-sha256sums=('37b479224b4acd0159bd8dd1e02da0b250c8c33c17a3b6d7f7bbeb9b975fa749'
-'52622d533eeb5416ce37c5e93e8af52f69e01c937f383da9e66bc75fa2a0c1f1')

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

2017-05-02 Thread Levente Polyak
Date: Tuesday, May 2, 2017 @ 18:44:00
  Author: anthraxx
Revision: 226595

upgpkg: radare2 1.4.0-1

Modified:
  radare2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-02 17:08:21 UTC (rev 226594)
+++ PKGBUILD2017-05-02 18:44:00 UTC (rev 226595)
@@ -2,8 +2,8 @@
 # Contributor: Guillermo Ramos <0xwille at gmail dot com>
 
 pkgname=radare2
-pkgver=1.3.0
-pkgrel=2
+pkgver=1.4.0
+pkgrel=1
 pkgdesc='Open-source tools to disasm, debug, analyze and manipulate binary 
files'
 url='https://radare.org'
 arch=('i686' 'x86_64')
@@ -10,18 +10,10 @@
 license=('GPL3' 'LGPL3')
 depends=('sh' 'capstone' 'openssl' 'libzip')
 options=('!emptydirs')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/radare/radare2/archive/${pkgver}.tar.gz
-
capstone3-1.3.0.patch::https://github.com/radare/radare2/commit/d9d5f79278c0413582e056850184cb5ee0767727.patch)
-sha256sums=('37b479224b4acd0159bd8dd1e02da0b250c8c33c17a3b6d7f7bbeb9b975fa749'
-'52622d533eeb5416ce37c5e93e8af52f69e01c937f383da9e66bc75fa2a0c1f1')
-sha512sums=('6d38ea213a335225f3b0e74874fd3b162c8ecb3145198c42f08d736d8d44dfd0d263592b5bd701b54715c1f96145201428babf0d75ca342b4fc36fd77a8800c3'
-
'2ebe155d3a4c397b920ed00eec4e0f414d2b5e53d90538a20f5afb16f14d1a33cf73159ca52c92bc6a17bae826d6fd76e8bee4a6b362b3d5856317e09708f91c')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/radare/radare2/archive/${pkgver}.tar.gz)
+sha256sums=('fb58417a6d35af4096da9130a041e1d36f900b17e2c2594b405a9b88ce33c7a8')
+sha512sums=('618774dbe02eaf160e4b246501d3ff48257305bc795ed241c40ff5e71ee553259384a17786a914cebe563fe8d6a7be1856883875fcee15f8177c8c9a1192889b')
 
-prepare() {
-  cd ${pkgname}-${pkgver}
-  patch -p1 < "${srcdir}/capstone3-1.3.0.patch"
-}
-
 build() {
   cd ${pkgname}-${pkgver}
   ./configure --prefix=/usr \


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

2017-05-02 Thread Lukas Fleischer
Date: Tuesday, May 2, 2017 @ 17:10:17
  Author: lfleischer
Revision: 295189

Update upstream URL

Modified:
  ding-libs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-02 16:43:20 UTC (rev 295188)
+++ PKGBUILD2017-05-02 17:10:17 UTC (rev 295189)
@@ -8,12 +8,12 @@
 pkgrel=1
 pkgdesc="'D is not GLib' utility libraries"
 arch=('i686' 'x86_64')
-url="https://fedorahosted.org/sssd/;
+url="https://pagure.io/SSSD/ding-libs/;
 license=('GPL3' 'LGPL3')
 depends=('glibc')
 makedepends=('doxygen')
 checkdepends=('check')
-source=(https://fedorahosted.org/released/$pkgname/$pkgname-$pkgver.tar.gz{,.asc})
+source=(https://releases.pagure.org/SSSD//$pkgname/$pkgname-$pkgver.tar.gz{,.asc})
 sha1sums=('c8ec86cb93a26e013a13b12a7b0b3fbc1bca16c1'
   'SKIP')
 validpgpkeys=('7B54CAE8A03D66F3D70A5B516F5A90EB44FBC7C7'  # "Pavel Reichl 
"


[arch-commits] Commit in gitlab-runner/repos (24 files)

2017-05-02 Thread Sven-Hendrik Haase
Date: Tuesday, May 2, 2017 @ 17:08:21
  Author: svenstaro
Revision: 226594

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

Added:
  gitlab-runner/repos/community-i686/PKGBUILD
(from rev 226593, gitlab-runner/trunk/PKGBUILD)
  gitlab-runner/repos/community-i686/config.toml
(from rev 226593, gitlab-runner/trunk/config.toml)
  gitlab-runner/repos/community-i686/gitlab-runner.install
(from rev 226593, gitlab-runner/trunk/gitlab-runner.install)
  gitlab-runner/repos/community-i686/gitlab-runner.service
(from rev 226593, gitlab-runner/trunk/gitlab-runner.service)
  gitlab-runner/repos/community-i686/gitlab-runner.sysusers
(from rev 226593, gitlab-runner/trunk/gitlab-runner.sysusers)
  gitlab-runner/repos/community-i686/gitlab-runner.tmpfiles
(from rev 226593, gitlab-runner/trunk/gitlab-runner.tmpfiles)
  gitlab-runner/repos/community-x86_64/PKGBUILD
(from rev 226593, gitlab-runner/trunk/PKGBUILD)
  gitlab-runner/repos/community-x86_64/config.toml
(from rev 226593, gitlab-runner/trunk/config.toml)
  gitlab-runner/repos/community-x86_64/gitlab-runner.install
(from rev 226593, gitlab-runner/trunk/gitlab-runner.install)
  gitlab-runner/repos/community-x86_64/gitlab-runner.service
(from rev 226593, gitlab-runner/trunk/gitlab-runner.service)
  gitlab-runner/repos/community-x86_64/gitlab-runner.sysusers
(from rev 226593, gitlab-runner/trunk/gitlab-runner.sysusers)
  gitlab-runner/repos/community-x86_64/gitlab-runner.tmpfiles
(from rev 226593, gitlab-runner/trunk/gitlab-runner.tmpfiles)
Deleted:
  gitlab-runner/repos/community-i686/PKGBUILD
  gitlab-runner/repos/community-i686/config.toml
  gitlab-runner/repos/community-i686/gitlab-runner.install
  gitlab-runner/repos/community-i686/gitlab-runner.service
  gitlab-runner/repos/community-i686/gitlab-runner.sysusers
  gitlab-runner/repos/community-i686/gitlab-runner.tmpfiles
  gitlab-runner/repos/community-x86_64/PKGBUILD
  gitlab-runner/repos/community-x86_64/config.toml
  gitlab-runner/repos/community-x86_64/gitlab-runner.install
  gitlab-runner/repos/community-x86_64/gitlab-runner.service
  gitlab-runner/repos/community-x86_64/gitlab-runner.sysusers
  gitlab-runner/repos/community-x86_64/gitlab-runner.tmpfiles

-+
 /PKGBUILD   |  148 ++
 /config.toml|2 
 /gitlab-runner.install  |   16 +++
 /gitlab-runner.service  |   34 ++
 /gitlab-runner.sysusers |2 
 /gitlab-runner.tmpfiles |2 
 community-i686/PKGBUILD |   74 ---
 community-i686/config.toml  |1 
 community-i686/gitlab-runner.install|8 -
 community-i686/gitlab-runner.service|   17 ---
 community-i686/gitlab-runner.sysusers   |1 
 community-i686/gitlab-runner.tmpfiles   |1 
 community-x86_64/PKGBUILD   |   74 ---
 community-x86_64/config.toml|1 
 community-x86_64/gitlab-runner.install  |8 -
 community-x86_64/gitlab-runner.service  |   17 ---
 community-x86_64/gitlab-runner.sysusers |1 
 community-x86_64/gitlab-runner.tmpfiles |1 
 18 files changed, 204 insertions(+), 204 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-05-02 17:07:59 UTC (rev 226593)
+++ community-i686/PKGBUILD 2017-05-02 17:08:21 UTC (rev 226594)
@@ -1,74 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Lubomir 'Kuci' Kucera 
-
-pkgname=gitlab-runner
-pkgver=9.1.0
-pkgrel=1
-pkgdesc="The official GitLab CI runner written in Go"
-arch=('i686' 'x86_64')
-url='https://gitlab.com/gitlab-org/gitlab-ci-multi-runner'
-license=('GPL3')
-depends=('ca-certificates' 'curl' 'git' 'glibc' 'tar')
-makedepends=('git' 'go' 'git' 'go-bindata' 'mercurial')
-install='gitlab-runner.install'
-replaces=('gitlab-ci-multi-runner')
-backup=('etc/gitlab-runner/config.toml')
-noextract=('prebuilt-x86_64.tar.xz'
-   'prebuilt-arm.tar.xz')
-
-# Note: This should be built using git because the runner gets its version 
information from there and I
-# haven't found the place to patch that yet.
-source=("git+https://gitlab.com/gitlab-org/gitlab-ci-multi-runner.git#tag=v${pkgver};
-
"https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/master/docker/prebuilt-x86_64.tar.xz;
-
"https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/master/docker/prebuilt-arm.tar.xz;
-"gitlab-runner.install"
-"gitlab-runner.service"
-"gitlab-runner.sysusers"
-"gitlab-runner.tmpfiles"
-"config.toml")
-sha512sums=('SKIP'
-
'aed7657428ae824166c9e62c846f4d78dd1d85fa8a9dd2f7df58f6b470ed197f850a15ac703caadf57f9090d4c9a9b15b6f10194b5e1c3fd14bab1e246a0fba3'
-

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

2017-05-02 Thread Sven-Hendrik Haase
Date: Tuesday, May 2, 2017 @ 17:07:59
  Author: svenstaro
Revision: 226593

upgpkg: gitlab-runner 9.1.1-1

Modified:
  gitlab-runner/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-02 16:46:07 UTC (rev 226592)
+++ PKGBUILD2017-05-02 17:07:59 UTC (rev 226593)
@@ -2,7 +2,7 @@
 # Contributor: Lubomir 'Kuci' Kucera 
 
 pkgname=gitlab-runner
-pkgver=9.1.0
+pkgver=9.1.1
 pkgrel=1
 pkgdesc="The official GitLab CI runner written in Go"
 arch=('i686' 'x86_64')
@@ -27,8 +27,8 @@
 "gitlab-runner.tmpfiles"
 "config.toml")
 sha512sums=('SKIP'
-
'aed7657428ae824166c9e62c846f4d78dd1d85fa8a9dd2f7df58f6b470ed197f850a15ac703caadf57f9090d4c9a9b15b6f10194b5e1c3fd14bab1e246a0fba3'
-
'54d90cc433e8a0d84790001538607e4fb158ce1dadcc450508fd93dfa509bb3af71ec6740bedccf9abfd7e3a8551a1716ba1660db5a7d1c5d8fa8cea4404c15f'
+
'a584bc59a4a029a9e7c1a32d8f67db1f94a5173b0f5457b677a435601f02842a8ea248ef48c26314c4b53b61dc34db625f4277ddd5b753fd0811af7c8bc3e459'
+
'7d63be0e8b54b978acf2a44d28540217da1927d25246879d33720241ea20c473acecd7686e944bcbe76a6c0b98606d829d909f8e8699b78b72aaa9fd3243b19f'
 
'd5888f378c5b12b84e4238b191ef56a97a81c9073d27dcb47065998f0a1f6caf9f13314ae908e72a06f4d29d1bd1f4f72338c97268391e2c98706216c8281f3e'
 
'ed24841242a56a3b10dd80cd23e0c980f6bbe5fd0ebd4c6b46529947e4920cc9c03e4f4b239da8a798c801a6cdd757415113f97e45c1032f2c519fdaec4d3ae0'
 
'8aa7f08702e99053c696fcc2aaba83beb9e9cd6f31973d82862db9350ac46df3a095377625d31fe909677525290d2de922d7a97930ed235774cb8f0da8944d40'


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

2017-05-02 Thread Jan Steffens
Date: Tuesday, May 2, 2017 @ 16:46:07
  Author: heftig
Revision: 226592

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

Added:
  simple-scan/repos/community-i686/PKGBUILD
(from rev 226591, simple-scan/trunk/PKGBUILD)
  simple-scan/repos/community-x86_64/PKGBUILD
(from rev 226591, simple-scan/trunk/PKGBUILD)
Deleted:
  simple-scan/repos/community-i686/PKGBUILD
  simple-scan/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-05-02 16:45:17 UTC (rev 226591)
+++ community-i686/PKGBUILD 2017-05-02 16:46:07 UTC (rev 226592)
@@ -1,37 +0,0 @@
-# $Id$
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Jaroslav Lichtblau 
-# Contributor: Joeny Ang 
-
-pkgname=simple-scan
-pkgver=3.24.1
-pkgrel=1
-pkgdesc="Simple scanning utility"
-url="https://launchpad.net/simple-scan;
-arch=(i686 x86_64)
-license=(GPL3)
-depends=(sane dconf gtk3 colord libgusb)
-makedepends=(yelp-tools intltool vala)
-source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('5eae832b14664183d55aa599801cf32f19ff2174dfba4e3d7e4eb4d55810efb3')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  # Force regeneration
-  touch src/*.vala
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure \
---prefix=/usr \
---disable-schemas-compile \
---disable-packagekit
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: simple-scan/repos/community-i686/PKGBUILD (from rev 226591, 
simple-scan/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-05-02 16:46:07 UTC (rev 226592)
@@ -0,0 +1,37 @@
+# $Id$
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Jaroslav Lichtblau 
+# Contributor: Joeny Ang 
+
+pkgname=simple-scan
+pkgver=3.24.1
+pkgrel=2
+pkgdesc="Simple scanning utility"
+url="https://launchpad.net/simple-scan;
+arch=(i686 x86_64)
+license=(GPL3)
+depends=(sane dconf gtk3 colord libgusb)
+makedepends=(yelp-tools intltool vala)
+source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('5eae832b14664183d55aa599801cf32f19ff2174dfba4e3d7e4eb4d55810efb3')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # Force regeneration
+  touch src/*.vala
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure \
+--prefix=/usr \
+--disable-schemas-compile \
+--disable-packagekit
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-05-02 16:45:17 UTC (rev 226591)
+++ community-x86_64/PKGBUILD   2017-05-02 16:46:07 UTC (rev 226592)
@@ -1,37 +0,0 @@
-# $Id$
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Jaroslav Lichtblau 
-# Contributor: Joeny Ang 
-
-pkgname=simple-scan
-pkgver=3.24.1
-pkgrel=1
-pkgdesc="Simple scanning utility"
-url="https://launchpad.net/simple-scan;
-arch=(i686 x86_64)
-license=(GPL3)
-depends=(sane dconf gtk3 colord libgusb)
-makedepends=(yelp-tools intltool vala)
-source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('5eae832b14664183d55aa599801cf32f19ff2174dfba4e3d7e4eb4d55810efb3')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  # Force regeneration
-  touch src/*.vala
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure \
---prefix=/usr \
---disable-schemas-compile \
---disable-packagekit
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: simple-scan/repos/community-x86_64/PKGBUILD (from rev 226591, 
simple-scan/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-05-02 16:46:07 UTC (rev 226592)
@@ -0,0 +1,37 @@
+# $Id$
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Jaroslav Lichtblau 
+# Contributor: Joeny Ang 
+
+pkgname=simple-scan
+pkgver=3.24.1
+pkgrel=2
+pkgdesc="Simple scanning utility"
+url="https://launchpad.net/simple-scan;
+arch=(i686 x86_64)
+license=(GPL3)
+depends=(sane dconf gtk3 colord libgusb)
+makedepends=(yelp-tools intltool 

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

2017-05-02 Thread Jan Steffens
Date: Tuesday, May 2, 2017 @ 16:45:17
  Author: heftig
Revision: 226591

3.24.1-2

Modified:
  simple-scan/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-02 14:43:01 UTC (rev 226590)
+++ PKGBUILD2017-05-02 16:45:17 UTC (rev 226591)
@@ -5,7 +5,7 @@
 
 pkgname=simple-scan
 pkgver=3.24.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Simple scanning utility"
 url="https://launchpad.net/simple-scan;
 arch=(i686 x86_64)


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

2017-05-02 Thread Jan Steffens
Date: Tuesday, May 2, 2017 @ 16:43:20
  Author: heftig
Revision: 295188

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-05-02 16:42:17 UTC (rev 295187)
+++ extra-i686/PKGBUILD 2017-05-02 16:43:20 UTC (rev 295188)
@@ -1,45 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor : Ionut Biru 
-# Contributor: Timm Preetz 
-
-pkgname=vala
-pkgver=0.36.2
-pkgrel=1
-pkgdesc='Compiler for the GObject type system'
-url='https://wiki.gnome.org/Projects/Vala'
-arch=('i686' 'x86_64')
-license=('LGPL')
-depends=('glib2')
-makedepends=('libxslt' 'git' 'vala')
-checkdepends=('dbus' 'libx11' 'gobject-introspection')
-_commit=c150d12e9ed1cb36697e9bbed6dccb44f4b7c670  # tags/0.36.2^0
-source=("git+https://git.gnome.org/browse/vala#commit=${_commit};)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd ${pkgname}
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd ${pkgname}
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd ${pkgname}
-  ./configure --prefix=/usr --enable-vapigen
-  make
-}
-
-check() {
-  cd ${pkgname}
-  make check
-}
-
-package() {
-  cd ${pkgname}
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: vala/repos/extra-i686/PKGBUILD (from rev 295187, vala/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-05-02 16:43:20 UTC (rev 295188)
@@ -0,0 +1,45 @@
+# Maintainer: Levente Polyak 
+# Contributor : Ionut Biru 
+# Contributor: Timm Preetz 
+
+pkgname=vala
+pkgver=0.36.3
+pkgrel=1
+pkgdesc='Compiler for the GObject type system'
+url='https://wiki.gnome.org/Projects/Vala'
+arch=('i686' 'x86_64')
+license=('LGPL')
+depends=('glib2')
+makedepends=('libxslt' 'git' 'vala')
+checkdepends=('dbus' 'libx11' 'gobject-introspection')
+_commit=b07797b3b60e426cb38fe274c7e1d4885a23d2b3  # tags/0.36.3^0
+source=("git+https://git.gnome.org/browse/vala#commit=${_commit};)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd ${pkgname}
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd ${pkgname}
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd ${pkgname}
+  ./configure --prefix=/usr --enable-vapigen
+  make
+}
+
+check() {
+  cd ${pkgname}
+  make check
+}
+
+package() {
+  cd ${pkgname}
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-05-02 16:42:17 UTC (rev 295187)
+++ extra-x86_64/PKGBUILD   2017-05-02 16:43:20 UTC (rev 295188)
@@ -1,45 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor : Ionut Biru 
-# Contributor: Timm Preetz 
-
-pkgname=vala
-pkgver=0.36.2
-pkgrel=1
-pkgdesc='Compiler for the GObject type system'
-url='https://wiki.gnome.org/Projects/Vala'
-arch=('i686' 'x86_64')
-license=('LGPL')
-depends=('glib2')
-makedepends=('libxslt' 'git' 'vala')
-checkdepends=('dbus' 'libx11' 'gobject-introspection')
-_commit=c150d12e9ed1cb36697e9bbed6dccb44f4b7c670  # tags/0.36.2^0
-source=("git+https://git.gnome.org/browse/vala#commit=${_commit};)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd ${pkgname}
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd ${pkgname}
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd ${pkgname}
-  ./configure --prefix=/usr --enable-vapigen
-  make
-}
-
-check() {
-  cd ${pkgname}
-  make check
-}
-
-package() {
-  cd ${pkgname}
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: vala/repos/extra-x86_64/PKGBUILD (from rev 295187, vala/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2017-05-02 16:43:20 UTC (rev 295188)
@@ -0,0 +1,45 @@
+# Maintainer: Levente Polyak 
+# Contributor : Ionut Biru 
+# Contributor: Timm Preetz 
+
+pkgname=vala
+pkgver=0.36.3
+pkgrel=1
+pkgdesc='Compiler for the GObject type system'
+url='https://wiki.gnome.org/Projects/Vala'
+arch=('i686' 'x86_64')
+license=('LGPL')
+depends=('glib2')
+makedepends=('libxslt' 'git' 

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

2017-05-02 Thread Jan Steffens
Date: Tuesday, May 2, 2017 @ 16:42:17
  Author: heftig
Revision: 295187

0.36.3-1

Modified:
  vala/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-02 15:07:11 UTC (rev 295186)
+++ PKGBUILD2017-05-02 16:42:17 UTC (rev 295187)
@@ -3,7 +3,7 @@
 # Contributor: Timm Preetz 
 
 pkgname=vala
-pkgver=0.36.2
+pkgver=0.36.3
 pkgrel=1
 pkgdesc='Compiler for the GObject type system'
 url='https://wiki.gnome.org/Projects/Vala'
@@ -12,7 +12,7 @@
 depends=('glib2')
 makedepends=('libxslt' 'git' 'vala')
 checkdepends=('dbus' 'libx11' 'gobject-introspection')
-_commit=c150d12e9ed1cb36697e9bbed6dccb44f4b7c670  # tags/0.36.2^0
+_commit=b07797b3b60e426cb38fe274c7e1d4885a23d2b3  # tags/0.36.3^0
 source=("git+https://git.gnome.org/browse/vala#commit=${_commit};)
 sha256sums=('SKIP')
 


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

2017-05-02 Thread Antonio Rojas
Date: Tuesday, May 2, 2017 @ 15:07:11
  Author: arojas
Revision: 295186

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

Added:
  wxgtk/repos/testing-i686/
  wxgtk/repos/testing-i686/PKGBUILD
(from rev 295185, wxgtk/trunk/PKGBUILD)
  wxgtk/repos/testing-i686/make-abicheck-non-fatal.patch
(from rev 295185, wxgtk/trunk/make-abicheck-non-fatal.patch)
  wxgtk/repos/testing-x86_64/
  wxgtk/repos/testing-x86_64/PKGBUILD
(from rev 295185, wxgtk/trunk/PKGBUILD)
  wxgtk/repos/testing-x86_64/make-abicheck-non-fatal.patch
(from rev 295185, wxgtk/trunk/make-abicheck-non-fatal.patch)

--+
 testing-i686/PKGBUILD|   43 +
 testing-i686/make-abicheck-non-fatal.patch   |   15 
 testing-x86_64/PKGBUILD  |   43 +
 testing-x86_64/make-abicheck-non-fatal.patch |   15 
 4 files changed, 116 insertions(+)

Copied: wxgtk/repos/testing-i686/PKGBUILD (from rev 295185, 
wxgtk/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-05-02 15:07:11 UTC (rev 295186)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=wxgtk
+pkgver=3.0.3
+pkgrel=1
+pkgdesc="GTK+ implementation of wxWidgets API for GUI"
+arch=('i686' 'x86_64')
+url="https://wxwidgets.org;
+license=('custom:wxWindows')
+depends=('gtk2' 'gst-plugins-base-libs' 'libsm')
+makedepends=('gst-plugins-base' 'gconf' 'webkitgtk2' 'glu')
+optdepends=('webkitgtk2: for webview support')
+options=('!emptydirs')
+source=(https://github.com/wxWidgets/wxWidgets/releases/download/v$pkgver/wxWidgets-$pkgver.tar.bz2
+make-abicheck-non-fatal.patch)
+sha1sums=('3525306c926e208d9b0272aaa9c091b8c7264e5b'
+  'dfe38650c655395b90bf082b5734c4093508bfa3')
+
+prepare() {
+  cd wxWidgets-${pkgver}
+
+  # C++ ABI check is too strict and breaks with GCC 5.1
+  # https://bugzilla.redhat.com/show_bug.cgi?id=1200611
+  patch -Np1 -i ../make-abicheck-non-fatal.patch
+}
+
+build() {
+  cd wxWidgets-${pkgver}
+  ./autogen.sh
+  ./configure --prefix=/usr --libdir=/usr/lib --with-gtk=2 --with-opengl 
--enable-unicode \
+--enable-graphics_ctx --enable-mediactrl --enable-webview 
--with-regex=builtin \
+--with-libpng=sys --with-libxpm=sys --with-libjpeg=sys --with-libtiff=sys \
+--disable-precomp-headers
+  make
+  make -C locale allmo
+}
+
+package() {
+  cd wxWidgets-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -D -m644 docs/licence.txt 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Copied: wxgtk/repos/testing-i686/make-abicheck-non-fatal.patch (from rev 
295185, wxgtk/trunk/make-abicheck-non-fatal.patch)
===
--- testing-i686/make-abicheck-non-fatal.patch  (rev 0)
+++ testing-i686/make-abicheck-non-fatal.patch  2017-05-02 15:07:11 UTC (rev 
295186)
@@ -0,0 +1,15 @@
+diff -up wxGTK-2.8.12/src/common/appbase.cpp.abicheck 
wxGTK-2.8.12/src/common/appbase.cpp
+--- wxGTK-2.8.12/src/common/appbase.cpp.abicheck   2015-03-12 
17:15:18.0 +0100
 wxGTK-2.8.12/src/common/appbase.cpp2015-03-12 17:15:57.0 
+0100
+@@ -424,10 +424,7 @@ bool wxAppConsole::CheckBuildOptions(con
+ msg.Printf(_T("Mismatch between the program and library build 
versions detected.\nThe library used %s,\nand %s used %s."),
+lib.c_str(), progName.c_str(), prog.c_str());
+ 
+-wxLogFatalError(msg.c_str());
+-
+-// normally wxLogFatalError doesn't return
+-return false;
++wxLogWarning(msg.c_str());
+ }
+ #undef wxCMP
+ 

Copied: wxgtk/repos/testing-x86_64/PKGBUILD (from rev 295185, 
wxgtk/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-05-02 15:07:11 UTC (rev 295186)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=wxgtk
+pkgver=3.0.3
+pkgrel=1
+pkgdesc="GTK+ implementation of wxWidgets API for GUI"
+arch=('i686' 'x86_64')
+url="https://wxwidgets.org;
+license=('custom:wxWindows')
+depends=('gtk2' 'gst-plugins-base-libs' 'libsm')
+makedepends=('gst-plugins-base' 'gconf' 'webkitgtk2' 'glu')
+optdepends=('webkitgtk2: for webview support')
+options=('!emptydirs')
+source=(https://github.com/wxWidgets/wxWidgets/releases/download/v$pkgver/wxWidgets-$pkgver.tar.bz2
+make-abicheck-non-fatal.patch)
+sha1sums=('3525306c926e208d9b0272aaa9c091b8c7264e5b'
+  'dfe38650c655395b90bf082b5734c4093508bfa3')
+
+prepare() {
+  cd wxWidgets-${pkgver}
+
+  # C++ ABI check is too strict and breaks with GCC 5.1
+  # https://bugzilla.redhat.com/show_bug.cgi?id=1200611
+  patch -Np1 -i ../make-abicheck-non-fatal.patch
+}
+

[arch-commits] Commit in wxgtk/trunk (PKGBUILD gst1.0.patch wxgtk-gcc6.patch)

2017-05-02 Thread Antonio Rojas
Date: Tuesday, May 2, 2017 @ 15:06:37
  Author: arojas
Revision: 295185

Update to 3.0.3

Modified:
  wxgtk/trunk/PKGBUILD
Deleted:
  wxgtk/trunk/gst1.0.patch
  wxgtk/trunk/wxgtk-gcc6.patch

--+
 PKGBUILD |   20 -
 gst1.0.patch |  886 -
 wxgtk-gcc6.patch |   39 --
 3 files changed, 6 insertions(+), 939 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-05-02 14:59:11 UTC (rev 295184)
+++ PKGBUILD2017-05-02 15:06:37 UTC (rev 295185)
@@ -2,8 +2,8 @@
 # Maintainer: Eric Bélanger 
 
 pkgname=wxgtk
-pkgver=3.0.2
-pkgrel=6
+pkgver=3.0.3
+pkgrel=1
 pkgdesc="GTK+ implementation of wxWidgets API for GUI"
 arch=('i686' 'x86_64')
 url="https://wxwidgets.org;
@@ -12,12 +12,10 @@
 makedepends=('gst-plugins-base' 'gconf' 'webkitgtk2' 'glu')
 optdepends=('webkitgtk2: for webview support')
 options=('!emptydirs')
-source=(https://downloads.sourceforge.net/wxwindows/wxWidgets-${pkgver}.tar.bz2
-make-abicheck-non-fatal.patch wxgtk-gcc6.patch gst1.0.patch)
-sha1sums=('6461eab4428c0a8b9e41781b8787510484dea800'
-  'dfe38650c655395b90bf082b5734c4093508bfa3'
-  '498202334c69d49c1ebbc9d36ad382cfa237f3f8'
-  '07d47f2fb2efd400ab54302b3bb55da141d76d61')
+source=(https://github.com/wxWidgets/wxWidgets/releases/download/v$pkgver/wxWidgets-$pkgver.tar.bz2
+make-abicheck-non-fatal.patch)
+sha1sums=('3525306c926e208d9b0272aaa9c091b8c7264e5b'
+  'dfe38650c655395b90bf082b5734c4093508bfa3')
 
 prepare() {
   cd wxWidgets-${pkgver}
@@ -25,12 +23,6 @@
   # C++ ABI check is too strict and breaks with GCC 5.1
   # https://bugzilla.redhat.com/show_bug.cgi?id=1200611
   patch -Np1 -i ../make-abicheck-non-fatal.patch
-
-  # Fix build with GCC 6
-  patch -p1 -i ../wxgtk-gcc6.patch
-
-  # Gstreamer 0.10 -> 1.0 patch
-  patch -Np1 -i ../gst1.0.patch
 }
 
 build() {

Deleted: gst1.0.patch
===
--- gst1.0.patch2017-05-02 14:59:11 UTC (rev 295184)
+++ gst1.0.patch2017-05-02 15:06:37 UTC (rev 295185)
@@ -1,886 +0,0 @@
-Index: wxwidgets3.0-3.0.2+dfsg/configure.in
-===
 wxwidgets3.0-3.0.2+dfsg.orig/configure.in
-+++ wxwidgets3.0-3.0.2+dfsg/configure.in
-@@ -7543,43 +7543,22 @@ if test "$wxUSE_MEDIACTRL" = "yes" -o "$
- wxUSE_GSTREAMER="no"
- 
- dnl 
---
--dnl Test for at least 0.8 gstreamer module from pkg-config
--dnl Even totem doesn't accept 0.9 evidently.
--dnl
--dnl So, we first check to see if 0.10 if available - if not we
--dnl try the older 0.8 version
-+dnl Test for at least gstreamer 1.0 module from pkg-config
- dnl 
---
--GST_VERSION_MAJOR=0
--GST_VERSION_MINOR=10
-+GST_VERSION_MAJOR=1
-+GST_VERSION_MINOR=0
- GST_VERSION=$GST_VERSION_MAJOR.$GST_VERSION_MINOR
- 
--if test "$wxUSE_GSTREAMER8" = "no"; then
--PKG_CHECK_MODULES(GST,
--[gstreamer-$GST_VERSION gstreamer-plugins-base-$GST_VERSION],
--[
--wxUSE_GSTREAMER="yes"
--GST_LIBS="$GST_LIBS -lgstinterfaces-$GST_VERSION"
--],
--[
--AC_MSG_WARN([GStreamer 0.10 not available, falling back 
to 0.8])
--GST_VERSION_MINOR=8
--]
--)
--else
--dnl check only for 0.8
--GST_VERSION_MINOR=8
--fi
--
--if test $GST_VERSION_MINOR = "8"; then
--GST_VERSION=$GST_VERSION_MAJOR.$GST_VERSION_MINOR
--PKG_CHECK_MODULES(GST,
--[gstreamer-$GST_VERSION gstreamer-interfaces-$GST_VERSION 
gstreamer-gconf-$GST_VERSION],
--wxUSE_GSTREAMER="yes",
--[
--AC_MSG_WARN([GStreamer 0.8/0.10 not available.])
--])
--fi
--
-+PKG_CHECK_MODULES(GST,
-+[gstreamer-$GST_VERSION gstreamer-plugins-base-$GST_VERSION],
-+[
-+wxUSE_GSTREAMER="yes"
-+GST_LIBS="$GST_LIBS -lgstvideo-$GST_VERSION"
-+],
-+[
-+AC_MSG_WARN([GStreamer 1.0 not available])
-+]
-+)
- 
- if test "$wxUSE_GSTREAMER" = "yes"; then
- CPPFLAGS="$GST_CFLAGS $CPPFLAGS"
-Index: wxwidgets3.0-3.0.2+dfsg/src/unix/mediactrl.cpp
-===
 wxwidgets3.0-3.0.2+dfsg.orig/src/unix/mediactrl.cpp
-+++ wxwidgets3.0-3.0.2+dfsg/src/unix/mediactrl.cpp
-@@ -19,13 +19,7 @@
- 
- #include // main gstreamer header
- 
--// 

[arch-commits] Commit in qt5-doc/repos/kde-unstable-any (PKGBUILD PKGBUILD)

2017-05-02 Thread Antonio Rojas
Date: Tuesday, May 2, 2017 @ 14:59:11
  Author: arojas
Revision: 295184

archrelease: copy kde-unstable to kde-unstable-any

Added:
  qt5-doc/repos/kde-unstable-any/PKGBUILD
(from rev 295183, qt5-doc/kde-unstable/PKGBUILD)
Deleted:
  qt5-doc/repos/kde-unstable-any/PKGBUILD

--+
 PKGBUILD |  122 -
 1 file changed, 57 insertions(+), 65 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-05-02 14:57:49 UTC (rev 295183)
+++ PKGBUILD2017-05-02 14:59:11 UTC (rev 295184)
@@ -1,65 +0,0 @@
-# $Id: PKGBUILD 240297 2015-06-03 10:22:03Z fyan $
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-# Contributor: Michael Hansen 
-
-pkgname=qt5-doc
-_qtver=5.9.0-beta2
-pkgver=${_qtver/-/}
-pkgrel=1
-arch=('any')
-url='http://qt-project.org/'
-license=('GPL3' 'LGPL3' 'FDL' 'custom')
-pkgdesc='A cross-platform application and UI framework (Documentation)'
-depends=('qt5-base')
-makedepends=('qt5-tools' 'python2' 'pciutils' 'libxtst' 'libxcursor' 
'libxrandr' 'libxss' 'libxcomposite')
-groups=('qt' 'qt5')
-_pkgfqn="qt-everywhere-opensource-src-${_qtver}"
-source=("http://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/single/${_pkgfqn}.tar.xz;)
-sha256sums=('b74c30cd80474880b4a0c2f0ed6efdbda16ebe72cdc26f2a85bb025a42d5d838')
-
-prepare() {
-  cd ${_pkgfqn}
-
-  # Use python2 for Python 2.x
-  find . -name '*.py' -exec sed -i \
-'s|#![ ]*/usr/bin/python$|&2|;s|#![ ]*/usr/bin/env python$|&2|' {} +
-  find -name '*.pro' -o -name '*.pri' -o -name '*.prf' | xargs sed -i -e 
's|python -c|python2 -c|g' -e 's|python \$|python2 \$|g'
-
-  ln -s /usr/bin qttools/
-  ln -s /usr/bin/{rcc,uic,moc} qtbase/bin/
-
-  # workaround c++11 detection with GCC6
-  sed -e '/requires(c++11)/d' -i qtserialbus/qtserialbus.pro
-
-  # Hack to force using python2
-  cd "$srcdir"
-  mkdir -p bin
-  ln -s /usr/bin/python2 bin/python
-}
-
-build() {
-  cd ${_pkgfqn}
-
-  export PATH="$srcdir/bin:$PATH"
-  PYTHON=/usr/bin/python2 ./configure -confirm-license -opensource \
--prefix /usr \
--docdir /usr/share/doc/qt \
--headerdir /usr/include/qt \
--archdatadir /usr/lib/qt \
--datadir /usr/share/qt \
--sysconfdir /etc/xdg \
--examplesdir /usr/share/doc/qt/examples
-  make docs
-}
-
-package() {
-  cd ${_pkgfqn}
-  make INSTALL_ROOT="$pkgdir" install_docs
-
-  install -d "$pkgdir"/usr/share/licenses
-  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
-
-# Fix conflicts with qt5-examples
-  rm -r "$pkgdir"/usr/share/doc/qt/examples
-}

Copied: qt5-doc/repos/kde-unstable-any/PKGBUILD (from rev 295183, 
qt5-doc/kde-unstable/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-05-02 14:59:11 UTC (rev 295184)
@@ -0,0 +1,57 @@
+# $Id: PKGBUILD 240297 2015-06-03 10:22:03Z fyan $
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: Michael Hansen 
+
+pkgname=qt5-doc
+_qtver=5.9.0-beta3
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('any')
+url='http://qt-project.org/'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='A cross-platform application and UI framework (Documentation)'
+depends=('qt5-base')
+makedepends=('qt5-tools' 'python2' 'pciutils' 'libxtst' 'libxcursor' 
'libxrandr' 'libxss' 'libxcomposite' 'git')
+groups=('qt' 'qt5')
+_pkgfqn="qt-everywhere-opensource-src-${_qtver}"
+source=("http://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/single/${_pkgfqn}.tar.xz;)
+sha256sums=('dfebc206eb4f15d34f8700af6dfbf87f164861018cba77e8ca6adfaf1c5814f9')
+
+prepare() {
+  cd ${_pkgfqn}
+
+  ln -s /usr/bin qttools/
+  ln -s /usr/bin/{rcc,uic,moc} qtbase/bin/
+
+  # Hack to force using python2
+  cd "$srcdir"
+  mkdir -p bin
+  ln -s /usr/bin/python2 bin/python
+}
+
+build() {
+  cd ${_pkgfqn}
+
+  export PATH="$srcdir/bin:$PATH"
+  PYTHON=/usr/bin/python2 ./configure -confirm-license -opensource \
+-prefix /usr \
+-docdir /usr/share/doc/qt \
+-headerdir /usr/include/qt \
+-archdatadir /usr/lib/qt \
+-datadir /usr/share/qt \
+-sysconfdir /etc/xdg \
+-examplesdir /usr/share/doc/qt/examples
+  make docs
+}
+
+package() {
+  cd ${_pkgfqn}
+  make INSTALL_ROOT="$pkgdir" install_docs
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+
+# Fix conflicts with qt5-examples
+  rm -r "$pkgdir"/usr/share/doc/qt/examples
+}


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

2017-05-02 Thread Antonio Rojas
Date: Tuesday, May 2, 2017 @ 14:57:49
  Author: arojas
Revision: 295183

Update to 5.9.0beta3

Modified:
  qt5-doc/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-02 14:44:52 UTC (rev 295182)
+++ PKGBUILD2017-05-02 14:57:49 UTC (rev 295183)
@@ -12,7 +12,7 @@
 license=('GPL3' 'LGPL3' 'FDL' 'custom')
 pkgdesc='A cross-platform application and UI framework (Documentation)'
 depends=('qt5-base')
-makedepends=('qt5-tools' 'python2' 'pciutils' 'libxtst' 'libxcursor' 
'libxrandr' 'libxss' 'libxcomposite')
+makedepends=('qt5-tools' 'python2' 'pciutils' 'libxtst' 'libxcursor' 
'libxrandr' 'libxss' 'libxcomposite' 'git')
 groups=('qt' 'qt5')
 _pkgfqn="qt-everywhere-opensource-src-${_qtver}"
 
source=("http://download.qt.io/development_releases/qt/${pkgver%.*}/${_qtver}/single/${_pkgfqn}.tar.xz;)
@@ -21,17 +21,9 @@
 prepare() {
   cd ${_pkgfqn}
 
-  # Use python2 for Python 2.x
-  find . -name '*.py' -exec sed -i \
-'s|#![ ]*/usr/bin/python$|&2|;s|#![ ]*/usr/bin/env python$|&2|' {} +
-  find -name '*.pro' -o -name '*.pri' -o -name '*.prf' | xargs sed -i -e 
's|python -c|python2 -c|g' -e 's|python \$|python2 \$|g'
-
   ln -s /usr/bin qttools/
   ln -s /usr/bin/{rcc,uic,moc} qtbase/bin/
 
-  # workaround c++11 detection with GCC6
-  sed -e '/requires(c++11)/d' -i qtserialbus/qtserialbus.pro
-
   # Hack to force using python2
   cd "$srcdir"
   mkdir -p bin


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

2017-05-02 Thread Jan de Groot
Date: Tuesday, May 2, 2017 @ 14:44:52
  Author: jgc
Revision: 295182

Use anongit instead of cgit

Modified:
  poppler/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-02 14:37:29 UTC (rev 295181)
+++ PKGBUILD2017-05-02 14:44:52 UTC (rev 295182)
@@ -12,7 +12,7 @@
 options=('!emptydirs')
 url="https://poppler.freedesktop.org/;
 source=(https://poppler.freedesktop.org/${pkgbase}-${pkgver}.tar.xz
-test::git+https://cgit.freedesktop.org/poppler/test/#commit=0d2bfd4)
+
test::git+https://anongit.freedesktop.org/git/poppler/test/#commit=0d2bfd4)
 sha256sums=('10cca9a67cc2e6f4f9024192b1067c444218bf94430891f43dc819d78536ca31'
 'SKIP')
 


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

2017-05-02 Thread Tobias Powalowski
Date: Tuesday, May 2, 2017 @ 14:43:01
  Author: tpowa
Revision: 226590

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

Added:
  virtualbox-modules-arch/repos/community-testing-i686/
  virtualbox-modules-arch/repos/community-testing-i686/PKGBUILD
(from rev 226589, virtualbox-modules-arch/trunk/PKGBUILD)
  
virtualbox-modules-arch/repos/community-testing-i686/virtualbox-modules-arch.install
(from rev 226589, 
virtualbox-modules-arch/trunk/virtualbox-modules-arch.install)
  virtualbox-modules-arch/repos/community-testing-x86_64/
  virtualbox-modules-arch/repos/community-testing-x86_64/PKGBUILD
(from rev 226589, virtualbox-modules-arch/trunk/PKGBUILD)
  
virtualbox-modules-arch/repos/community-testing-x86_64/virtualbox-modules-arch.install
(from rev 226589, 
virtualbox-modules-arch/trunk/virtualbox-modules-arch.install)

--+
 community-testing-i686/PKGBUILD  |   74 +
 community-testing-i686/virtualbox-modules-arch.install   |   23 
 community-testing-x86_64/PKGBUILD|   74 +
 community-testing-x86_64/virtualbox-modules-arch.install |   23 
 4 files changed, 194 insertions(+)

Copied: virtualbox-modules-arch/repos/community-testing-i686/PKGBUILD (from rev 
226589, virtualbox-modules-arch/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2017-05-02 14:43:01 UTC (rev 226590)
@@ -0,0 +1,74 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+# Contributor: Ionut Biru 
+
+pkgbase=virtualbox-modules-arch
+pkgname=('virtualbox-host-modules-arch' 'virtualbox-guest-modules-arch')
+pkgver=5.1.22
+pkgrel=3
+arch=('i686' 'x86_64')
+url='http://virtualbox.org'
+license=('GPL')
+makedepends=('linux>=4.11' 'linux<4.12'
+ 'linux-headers>=4.11' 'linux-headers<4.12'
+ "virtualbox-host-dkms>=$pkgver"
+ "virtualbox-guest-dkms>=$pkgver")
+
+# remember to also adjust the .install files and the package deps below
+_extramodules=extramodules-4.11-ARCH
+
+package_virtualbox-host-modules-arch(){
+  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
+  pkgdesc='Virtualbox host kernel modules for Arch Kernel'
+  depends=('linux>=4.11' 'linux<4.12')
+  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 -dm755 "$pkgdir/usr/lib/modules/$_extramodules/"
+  install -m644 * "$pkgdir/usr/lib/modules/$_extramodules/"
+
+  # compress earch modules individually
+  find "$pkgdir" -name '*.ko' -exec gzip -9 {} +
+
+  # systemd module loading
+  install -Dm644 /dev/null "$pkgdir/usr/lib/modules-load.d/$pkgname.conf"
+  printf "vboxdrv\nvboxpci\nvboxnetadp\nvboxnetflt\n" >  \
+"$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>=4.11' 'linux<4.12')
+  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 -dm755 "$pkgdir/usr/lib/modules/$_extramodules/"
+  install -m644 * "$pkgdir/usr/lib/modules/$_extramodules/"
+
+  # compress earch modules individually
+  find "$pkgdir" -name '*.ko' -exec gzip -9 {} +
+
+  # systemd module loading
+  install -Dm644 /dev/null "$pkgdir/usr/lib/modules-load.d/$pkgname.conf"
+  printf "vboxguest\nvboxsf\nvboxvideo\n" >  \
+"$pkgdir/usr/lib/modules-load.d/$pkgname.conf"
+}
+
+# vim:set ts=2 sw=2 et:
+
+
+
+
+
+
+

Copied: 
virtualbox-modules-arch/repos/community-testing-i686/virtualbox-modules-arch.install
 (from rev 226589, 
virtualbox-modules-arch/trunk/virtualbox-modules-arch.install)
===
--- community-testing-i686/virtualbox-modules-arch.install  
(rev 0)
+++ community-testing-i686/virtualbox-modules-arch.install  2017-05-02 
14:43:01 UTC (rev 226590)
@@ -0,0 +1,23 @@
+_depmod() {
+  EXTRAMODULES=extramodules-4.11-ARCH
+  depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+}
+
+post_install() {
+  cat << EOF
+==> Virtualbox kernel modules will be loaded at boot time by 
systemd-modules-load.
+==> In order to use them right now, you may want to load them manually.
+==> 

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

2017-05-02 Thread Tobias Powalowski
Date: Tuesday, May 2, 2017 @ 14:42:51
  Author: tpowa
Revision: 226589

upgpkg: virtualbox-modules-arch 5.1.22-3

rebuild against 4.11

Modified:
  virtualbox-modules-arch/trunk/PKGBUILD
  virtualbox-modules-arch/trunk/virtualbox-modules-arch.install

-+
 PKGBUILD|   12 ++--
 virtualbox-modules-arch.install |2 +-
 2 files changed, 7 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-05-02 14:41:59 UTC (rev 226588)
+++ PKGBUILD2017-05-02 14:42:51 UTC (rev 226589)
@@ -5,22 +5,22 @@
 pkgbase=virtualbox-modules-arch
 pkgname=('virtualbox-host-modules-arch' 'virtualbox-guest-modules-arch')
 pkgver=5.1.22
-pkgrel=2
+pkgrel=3
 arch=('i686' 'x86_64')
 url='http://virtualbox.org'
 license=('GPL')
-makedepends=('linux>=4.10' 'linux<4.11'
- 'linux-headers>=4.10' 'linux-headers<4.11'
+makedepends=('linux>=4.11' 'linux<4.12'
+ 'linux-headers>=4.11' 'linux-headers<4.12'
  "virtualbox-host-dkms>=$pkgver"
  "virtualbox-guest-dkms>=$pkgver")
 
 # remember to also adjust the .install files and the package deps below
-_extramodules=extramodules-4.10-ARCH
+_extramodules=extramodules-4.11-ARCH
 
 package_virtualbox-host-modules-arch(){
   _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
   pkgdesc='Virtualbox host kernel modules for Arch Kernel'
-  depends=('linux>=4.10' 'linux<4.11')
+  depends=('linux>=4.11' 'linux<4.12')
   replaces=('virtualbox-modules' 'virtualbox-host-modules')
   conflicts=('virtualbox-modules' 'virtualbox-host-modules'
 'virtualbox-host-dkms')
@@ -44,7 +44,7 @@
   _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
   pkgdesc='Virtualbox guest kernel modules for Arch Kernel'
   license=('GPL')
-  depends=('linux>=4.10' 'linux<4.11')
+  depends=('linux>=4.11' 'linux<4.12')
   replaces=('virtualbox-archlinux-modules' 'virtualbox-guest-modules')
   conflicts=('virtualbox-archlinux-modules' 'virtualbox-guest-modules'
  'virtualbox-guest-dkms')

Modified: virtualbox-modules-arch.install
===
--- virtualbox-modules-arch.install 2017-05-02 14:41:59 UTC (rev 226588)
+++ virtualbox-modules-arch.install 2017-05-02 14:42:51 UTC (rev 226589)
@@ -1,5 +1,5 @@
 _depmod() {
-  EXTRAMODULES=extramodules-4.10-ARCH
+  EXTRAMODULES=extramodules-4.11-ARCH
   depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
 }
 


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

2017-05-02 Thread Tobias Powalowski
Date: Tuesday, May 2, 2017 @ 14:39:02
  Author: tpowa
Revision: 226572

upgpkg: tp_smapi 0.42-16

rebuild against 4.11

Modified:
  tp_smapi/trunk/PKGBUILD
  tp_smapi/trunk/tp_smapi.install

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-02 14:36:18 UTC (rev 226571)
+++ PKGBUILD2017-05-02 14:39:02 UTC (rev 226572)
@@ -10,14 +10,14 @@
 pkgname=tp_smapi
 _pkgname=tp-smapi
 pkgver=0.42
-_extramodules=extramodules-4.10-ARCH
-pkgrel=15
+_extramodules=extramodules-4.11-ARCH
+pkgrel=16
 pkgdesc="Modules for ThinkPad's SMAPI functionality"
 arch=('i686' 'x86_64')
 url='https://github.com/evgeni/tp_smapi'
 license=('GPL')
-depends=('linux>=4.10' 'linux<4.11')
-makedepends=('linux-headers>=4.10' 'linux-headers<4.11')
+depends=('linux>=4.11' 'linux<4.12')
+makedepends=('linux-headers>=4.11' 'linux-headers<4.12')
 install="${pkgname}.install"
 source=("https://github.com/evgeni/$pkgname/archive/$_pkgname/$pkgver.tar.gz;)
 md5sums=('6a51d3aa459ad7a6ebfbb8c29527b3ee')

Modified: tp_smapi.install
===
--- tp_smapi.install2017-05-02 14:36:18 UTC (rev 226571)
+++ tp_smapi.install2017-05-02 14:39:02 UTC (rev 226572)
@@ -1,4 +1,4 @@
-extramodules=/usr/lib/modules/extramodules-4.10-ARCH
+extramodules=/usr/lib/modules/extramodules-4.11-ARCH
 
 post_install() {
   depmod -v $(< "$extramodules/version") &>/dev/null


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

2017-05-02 Thread Tobias Powalowski
Date: Tuesday, May 2, 2017 @ 14:39:10
  Author: tpowa
Revision: 226573

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

Added:
  tp_smapi/repos/community-testing-i686/
  tp_smapi/repos/community-testing-i686/PKGBUILD
(from rev 226572, tp_smapi/trunk/PKGBUILD)
  tp_smapi/repos/community-testing-i686/tp_smapi.install
(from rev 226572, tp_smapi/trunk/tp_smapi.install)
  tp_smapi/repos/community-testing-x86_64/
  tp_smapi/repos/community-testing-x86_64/PKGBUILD
(from rev 226572, tp_smapi/trunk/PKGBUILD)
  tp_smapi/repos/community-testing-x86_64/tp_smapi.install
(from rev 226572, tp_smapi/trunk/tp_smapi.install)

---+
 community-testing-i686/PKGBUILD   |   53 
 community-testing-i686/tp_smapi.install   |   13 ++
 community-testing-x86_64/PKGBUILD |   53 
 community-testing-x86_64/tp_smapi.install |   13 ++
 4 files changed, 132 insertions(+)

Copied: tp_smapi/repos/community-testing-i686/PKGBUILD (from rev 226572, 
tp_smapi/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2017-05-02 14:39:10 UTC (rev 226573)
@@ -0,0 +1,53 @@
+# 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
+_extramodules=extramodules-4.11-ARCH
+pkgrel=16
+pkgdesc="Modules for ThinkPad's SMAPI functionality"
+arch=('i686' 'x86_64')
+url='https://github.com/evgeni/tp_smapi'
+license=('GPL')
+depends=('linux>=4.11' 'linux<4.12')
+makedepends=('linux-headers>=4.11' 'linux-headers<4.12')
+install="${pkgname}.install"
+source=("https://github.com/evgeni/$pkgname/archive/$_pkgname/$pkgver.tar.gz;)
+md5sums=('6a51d3aa459ad7a6ebfbb8c29527b3ee')
+
+build() {
+  cd "$srcdir/$pkgname-$_pkgname-$pkgver"
+
+  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+  make HDAPS=1 KVER="$_kernver" KBASE="/usr/lib/modules/$_kernver"
+}
+
+package() {
+  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+
+  make -C "/usr/lib/modules/${_kernver}/build" \
+INSTALL_MOD_PATH="${pkgdir}/usr" \
+M="$srcdir/$pkgname-$_pkgname-$pkgver" modules_install
+
+  cd "${pkgdir}/usr/lib/modules"
+  mv "${_kernver}/extra" "${_extramodules}"
+  rmdir "${_kernver}"
+
+  # compress kernel modules
+  find "${pkgdir}" -name "*.ko" -exec gzip -9 {} +
+
+  # load module on startup
+  echo tp_smapi > "${srcdir}/${pkgname}.conf"
+  install -Dm644 "${srcdir}/${pkgname}.conf" 
"${pkgdir}/usr/lib/modules-load.d/${pkgname}.conf"
+
+  # update kernel version in install file
+  sed -ri "s|^(extramodules=).*\$|\1/usr/lib/modules/${_extramodules}|" \
+"${startdir}/${pkgname}.install"
+}

Copied: tp_smapi/repos/community-testing-i686/tp_smapi.install (from rev 
226572, tp_smapi/trunk/tp_smapi.install)
===
--- community-testing-i686/tp_smapi.install (rev 0)
+++ community-testing-i686/tp_smapi.install 2017-05-02 14:39:10 UTC (rev 
226573)
@@ -0,0 +1,13 @@
+extramodules=/usr/lib/modules/extramodules-4.11-ARCH
+
+post_install() {
+  depmod -v $(< "$extramodules/version") &>/dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: tp_smapi/repos/community-testing-x86_64/PKGBUILD (from rev 226572, 
tp_smapi/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2017-05-02 14:39:10 UTC (rev 226573)
@@ -0,0 +1,53 @@
+# 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
+_extramodules=extramodules-4.11-ARCH
+pkgrel=16
+pkgdesc="Modules for ThinkPad's SMAPI functionality"
+arch=('i686' 'x86_64')
+url='https://github.com/evgeni/tp_smapi'
+license=('GPL')
+depends=('linux>=4.11' 'linux<4.12')
+makedepends=('linux-headers>=4.11' 'linux-headers<4.12')
+install="${pkgname}.install"
+source=("https://github.com/evgeni/$pkgname/archive/$_pkgname/$pkgver.tar.gz;)
+md5sums=('6a51d3aa459ad7a6ebfbb8c29527b3ee')
+
+build() {
+  cd "$srcdir/$pkgname-$_pkgname-$pkgver"
+
+  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+  make HDAPS=1 KVER="$_kernver" KBASE="/usr/lib/modules/$_kernver"
+}
+
+package() {
+  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+
+  make -C 

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

2017-05-02 Thread Pierre Schmitz
Date: Tuesday, May 2, 2017 @ 14:37:12
  Author: pierre
Revision: 295180

upgpkg: logrotate 3.12.2-1

Modified:
  logrotate/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-02 14:19:05 UTC (rev 295179)
+++ PKGBUILD2017-05-02 14:37:12 UTC (rev 295180)
@@ -2,7 +2,7 @@
 # Maintainer: Pierre Schmitz 
 
 pkgname=logrotate
-pkgver=3.12.1
+pkgver=3.12.2
 pkgrel=1
 pkgdesc="Rotates system logs automatically"
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 backup=('etc/logrotate.conf')
 
source=("https://github.com/logrotate/logrotate/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.xz"{,.asc}
 'logrotate.conf')
-md5sums=('9c3d4c55220497a5530179c1c5e5b6eb'
+md5sums=('923e753825405280aebcc4e73b4b2b55'
  'SKIP'
  '94dae4d3eded2fab9ae879533d3680db')
 validpgpkeys=('992A96E075056E79CD8214F9873DB37572A37B36')


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

2017-05-02 Thread Pierre Schmitz
Date: Tuesday, May 2, 2017 @ 14:37:29
  Author: pierre
Revision: 295181

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

Added:
  logrotate/repos/testing-i686/
  logrotate/repos/testing-i686/PKGBUILD
(from rev 295180, logrotate/trunk/PKGBUILD)
  logrotate/repos/testing-i686/logrotate.conf
(from rev 295180, logrotate/trunk/logrotate.conf)
  logrotate/repos/testing-x86_64/
  logrotate/repos/testing-x86_64/PKGBUILD
(from rev 295180, logrotate/trunk/PKGBUILD)
  logrotate/repos/testing-x86_64/logrotate.conf
(from rev 295180, logrotate/trunk/logrotate.conf)

---+
 testing-i686/PKGBUILD |   53 
 testing-i686/logrotate.conf   |   38 
 testing-x86_64/PKGBUILD   |   53 
 testing-x86_64/logrotate.conf |   38 
 4 files changed, 182 insertions(+)

Copied: logrotate/repos/testing-i686/PKGBUILD (from rev 295180, 
logrotate/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-05-02 14:37:29 UTC (rev 295181)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Pierre Schmitz 
+
+pkgname=logrotate
+pkgver=3.12.2
+pkgrel=1
+pkgdesc="Rotates system logs automatically"
+arch=('i686' 'x86_64')
+url="https://github.com/logrotate/logrotate;
+license=('GPL')
+groups=('base')
+depends=('popt' 'gzip' 'acl')
+backup=('etc/logrotate.conf')
+source=("https://github.com/logrotate/logrotate/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.xz"{,.asc}
+'logrotate.conf')
+md5sums=('923e753825405280aebcc4e73b4b2b55'
+ 'SKIP'
+ '94dae4d3eded2fab9ae879533d3680db')
+validpgpkeys=('992A96E075056E79CD8214F9873DB37572A37B36')
+
+build() {
+   cd "$srcdir/${pkgname}-${pkgver}"
+
+   ./configure \
+   --prefix=/usr \
+   --sbindir=/usr/bin \
+   --mandir=/usr/share/man \
+   --with-compress-command=/usr/bin/gzip \
+   --with-uncompress-command=/usr/bin/gunzip \
+   --with-default-mail-command=/usr/bin/mail \
+   --with-acl
+   make
+}
+
+check() {
+   cd "$srcdir/${pkgname}-${pkgver}"
+
+   make test
+}
+
+package() {
+   cd "$srcdir/${pkgname}-${pkgver}"
+
+   make DESTDIR="$pkgdir" install
+
+   install -dm755 "$pkgdir/etc/logrotate.d"
+   install -Dm644 "$srcdir/logrotate.conf" "$pkgdir/etc/logrotate.conf"
+
+   install -D -m644 examples/logrotate.timer 
${pkgdir}/usr/lib/systemd/system/logrotate.timer
+   install -D -m644 examples/logrotate.service 
${pkgdir}/usr/lib/systemd/system/logrotate.service
+   install -d -m755 $pkgdir/usr/lib/systemd/system/timers.target.wants
+   ln -s ../logrotate.timer 
$pkgdir/usr/lib/systemd/system/timers.target.wants/logrotate.timer
+}

Copied: logrotate/repos/testing-i686/logrotate.conf (from rev 295180, 
logrotate/trunk/logrotate.conf)
===
--- testing-i686/logrotate.conf (rev 0)
+++ testing-i686/logrotate.conf 2017-05-02 14:37:29 UTC (rev 295181)
@@ -0,0 +1,38 @@
+# see "man logrotate" for details
+# rotate log files weekly
+weekly
+
+# keep 4 weeks worth of backlogs
+rotate 4
+
+# restrict maximum size of log files
+#size 20M
+
+# create new (empty) log files after rotating old ones
+create
+
+# uncomment this if you want your log files compressed
+#compress
+
+# Logs are moved into directory for rotation
+# olddir /var/log/archive
+
+# Ignore pacman saved files
+tabooext + .pacorig .pacnew .pacsave
+
+# Arch packages drop log rotation information into this directory
+include /etc/logrotate.d
+
+/var/log/wtmp {
+monthly
+create 0664 root utmp
+minsize 1M
+rotate 1
+}
+
+/var/log/btmp {
+missingok
+monthly
+create 0600 root utmp
+rotate 1
+}

Copied: logrotate/repos/testing-x86_64/PKGBUILD (from rev 295180, 
logrotate/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-05-02 14:37:29 UTC (rev 295181)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Pierre Schmitz 
+
+pkgname=logrotate
+pkgver=3.12.2
+pkgrel=1
+pkgdesc="Rotates system logs automatically"
+arch=('i686' 'x86_64')
+url="https://github.com/logrotate/logrotate;
+license=('GPL')
+groups=('base')
+depends=('popt' 'gzip' 'acl')
+backup=('etc/logrotate.conf')
+source=("https://github.com/logrotate/logrotate/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.xz"{,.asc}
+'logrotate.conf')
+md5sums=('923e753825405280aebcc4e73b4b2b55'
+ 'SKIP'
+ '94dae4d3eded2fab9ae879533d3680db')
+validpgpkeys=('992A96E075056E79CD8214F9873DB37572A37B36')
+
+build() {
+   cd 

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

2017-05-02 Thread Tobias Powalowski
Date: Tuesday, May 2, 2017 @ 14:36:18
  Author: tpowa
Revision: 226571

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

Added:
  bbswitch/repos/community-testing-i686/
  bbswitch/repos/community-testing-i686/PKGBUILD
(from rev 226570, bbswitch/trunk/PKGBUILD)
  bbswitch/repos/community-testing-i686/bbswitch.install
(from rev 226570, bbswitch/trunk/bbswitch.install)
  bbswitch/repos/community-testing-x86_64/
  bbswitch/repos/community-testing-x86_64/PKGBUILD
(from rev 226570, bbswitch/trunk/PKGBUILD)
  bbswitch/repos/community-testing-x86_64/bbswitch.install
(from rev 226570, bbswitch/trunk/bbswitch.install)

---+
 community-testing-i686/PKGBUILD   |   45 
 community-testing-i686/bbswitch.install   |   12 +++
 community-testing-x86_64/PKGBUILD |   45 
 community-testing-x86_64/bbswitch.install |   12 +++
 4 files changed, 114 insertions(+)

Copied: bbswitch/repos/community-testing-i686/PKGBUILD (from rev 226570, 
bbswitch/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2017-05-02 14:36:18 UTC (rev 226571)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: M0Rf30
+# Contributor: Samsagax 
+
+pkgbase=bbswitch
+pkgname=(bbswitch bbswitch-dkms)
+pkgver=0.8
+_extramodules=extramodules-4.11-ARCH # Don't forget to update bbswitch.install
+pkgrel=67
+pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus 
laptops"
+arch=('i686' 'x86_64')
+url="http://github.com/Bumblebee-Project/bbswitch;
+license=('GPL')
+makedepends=('linux-headers>=4.11' 'linux-headers<4.12' 'linux>=4.11' 
'linux<4.12')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz;)
+md5sums=('5b116b31ace3604ddf9d1fc1f4bc5807')
+
+build() {
+  cd ${srcdir}/${pkgbase}-${pkgver}
+
+  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+
+  make KDIR=/lib/modules/${_kernver}/build
+}
+
+package_bbswitch() {
+  depends=('linux>=4.11' 'linux<4.12')
+  install=bbswitch.install
+
+  cd ${srcdir}/${pkgbase}-${pkgver}
+   
+  install -Dm644 bbswitch.ko 
"${pkgdir}"/usr/lib/modules/${_extramodules}/bbswitch.ko
+  gzip "${pkgdir}/usr/lib/modules/${_extramodules}/bbswitch.ko"
  
+}
+
+package_bbswitch-dkms() {
+  depends=('dkms')
+
+  cd ${srcdir}/${pkgbase}-${pkgver}
+
+  install -dm755 "${pkgdir}/usr/src/${pkgbase}-${pkgver}/"
+
+  install -Dm644 Makefile bbswitch.c dkms/dkms.conf 
"${pkgdir}/usr/src/${pkgbase}-${pkgver}/"
+}

Copied: bbswitch/repos/community-testing-i686/bbswitch.install (from rev 
226570, bbswitch/trunk/bbswitch.install)
===
--- community-testing-i686/bbswitch.install (rev 0)
+++ community-testing-i686/bbswitch.install 2017-05-02 14:36:18 UTC (rev 
226571)
@@ -0,0 +1,12 @@
+post_install() {
+EXTRAMODULES='extramodules-4.11-ARCH'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Copied: bbswitch/repos/community-testing-x86_64/PKGBUILD (from rev 226570, 
bbswitch/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2017-05-02 14:36:18 UTC (rev 226571)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: M0Rf30
+# Contributor: Samsagax 
+
+pkgbase=bbswitch
+pkgname=(bbswitch bbswitch-dkms)
+pkgver=0.8
+_extramodules=extramodules-4.11-ARCH # Don't forget to update bbswitch.install
+pkgrel=67
+pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus 
laptops"
+arch=('i686' 'x86_64')
+url="http://github.com/Bumblebee-Project/bbswitch;
+license=('GPL')
+makedepends=('linux-headers>=4.11' 'linux-headers<4.12' 'linux>=4.11' 
'linux<4.12')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz;)
+md5sums=('5b116b31ace3604ddf9d1fc1f4bc5807')
+
+build() {
+  cd ${srcdir}/${pkgbase}-${pkgver}
+
+  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+
+  make KDIR=/lib/modules/${_kernver}/build
+}
+
+package_bbswitch() {
+  depends=('linux>=4.11' 'linux<4.12')
+  install=bbswitch.install
+
+  cd ${srcdir}/${pkgbase}-${pkgver}
+   
+  install -Dm644 bbswitch.ko 
"${pkgdir}"/usr/lib/modules/${_extramodules}/bbswitch.ko
+  gzip "${pkgdir}/usr/lib/modules/${_extramodules}/bbswitch.ko"
  
+}
+
+package_bbswitch-dkms() {
+  depends=('dkms')
+
+  cd ${srcdir}/${pkgbase}-${pkgver}
+
+  install -dm755 

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

2017-05-02 Thread Tobias Powalowski
Date: Tuesday, May 2, 2017 @ 14:36:09
  Author: tpowa
Revision: 226570

upgpkg: bbswitch 0.8-67

rebuild against 4.11

Modified:
  bbswitch/trunk/PKGBUILD
  bbswitch/trunk/bbswitch.install

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-02 14:34:12 UTC (rev 226569)
+++ PKGBUILD2017-05-02 14:36:09 UTC (rev 226570)
@@ -6,13 +6,13 @@
 pkgbase=bbswitch
 pkgname=(bbswitch bbswitch-dkms)
 pkgver=0.8
-_extramodules=extramodules-4.10-ARCH # Don't forget to update bbswitch.install
-pkgrel=66
+_extramodules=extramodules-4.11-ARCH # Don't forget to update bbswitch.install
+pkgrel=67
 pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus 
laptops"
 arch=('i686' 'x86_64')
 url="http://github.com/Bumblebee-Project/bbswitch;
 license=('GPL')
-makedepends=('linux-headers>=4.10' 'linux-headers<4.11' 'linux>=4.10' 
'linux<4.11')
+makedepends=('linux-headers>=4.11' 'linux-headers<4.12' 'linux>=4.11' 
'linux<4.12')
 
source=("$pkgbase-$pkgver.tar.gz::https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz;)
 md5sums=('5b116b31ace3604ddf9d1fc1f4bc5807')
 
@@ -25,7 +25,7 @@
 }
 
 package_bbswitch() {
-  depends=('linux>=4.10' 'linux<4.11')
+  depends=('linux>=4.11' 'linux<4.12')
   install=bbswitch.install
 
   cd ${srcdir}/${pkgbase}-${pkgver}

Modified: bbswitch.install
===
--- bbswitch.install2017-05-02 14:34:12 UTC (rev 226569)
+++ bbswitch.install2017-05-02 14:36:09 UTC (rev 226570)
@@ -1,5 +1,5 @@
 post_install() {
-EXTRAMODULES='extramodules-4.10-ARCH'
+EXTRAMODULES='extramodules-4.11-ARCH'
 depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
 }
 


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

2017-05-02 Thread Tobias Powalowski
Date: Tuesday, May 2, 2017 @ 14:34:00
  Author: tpowa
Revision: 226568

upgpkg: acpi_call 1.1.0-62

rebuild against 4.11

Modified:
  acpi_call/trunk/PKGBUILD
  acpi_call/trunk/acpi_call.install

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-02 14:16:12 UTC (rev 226567)
+++ PKGBUILD2017-05-02 14:34:00 UTC (rev 226568)
@@ -5,14 +5,14 @@
 
 pkgname=acpi_call
 pkgver=1.1.0
-pkgrel=61
-_extramodules=extramodules-4.10-ARCH
+pkgrel=62
+_extramodules=extramodules-4.11-ARCH
 pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
 arch=('i686' 'x86_64')
 url='https://github.com/mkottman/acpi_call'
 license=('GPL')
-depends=('linux>=4.10' 'linux<4.11')
-makedepends=('linux-headers>=4.10' 'linux-headers<4.11')
+depends=('linux>=4.11' 'linux<4.12')
+makedepends=('linux-headers>=4.11' 'linux-headers<4.12')
 install='acpi_call.install'
 
source=("acpi_call-${pkgver}.tar.gz::https://github.com/mkottman/acpi_call/archive/v${pkgver}.tar.gz;)
 sha256sums=('d0d14b42944282724fca76f57d598eed794ef97448f387d1c489d85ad813f2f0')

Modified: acpi_call.install
===
--- acpi_call.install   2017-05-02 14:16:12 UTC (rev 226567)
+++ acpi_call.install   2017-05-02 14:34:00 UTC (rev 226568)
@@ -1,5 +1,5 @@
 post_install() {
-  _extramodules=extramodules-4.10-ARCH
+  _extramodules=extramodules-4.11-ARCH
   depmod $(cat /usr/lib/modules/${_extramodules}/version)
 }
 


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

2017-05-02 Thread Tobias Powalowski
Date: Tuesday, May 2, 2017 @ 14:34:12
  Author: tpowa
Revision: 226569

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

Added:
  acpi_call/repos/community-testing-i686/
  acpi_call/repos/community-testing-i686/PKGBUILD
(from rev 226568, acpi_call/trunk/PKGBUILD)
  acpi_call/repos/community-testing-i686/acpi_call.install
(from rev 226568, acpi_call/trunk/acpi_call.install)
  acpi_call/repos/community-testing-x86_64/
  acpi_call/repos/community-testing-x86_64/PKGBUILD
(from rev 226568, acpi_call/trunk/PKGBUILD)
  acpi_call/repos/community-testing-x86_64/acpi_call.install
(from rev 226568, acpi_call/trunk/acpi_call.install)

+
 community-testing-i686/PKGBUILD|   47 +++
 community-testing-i686/acpi_call.install   |   14 
 community-testing-x86_64/PKGBUILD  |   47 +++
 community-testing-x86_64/acpi_call.install |   14 
 4 files changed, 122 insertions(+)

Copied: acpi_call/repos/community-testing-i686/PKGBUILD (from rev 226568, 
acpi_call/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2017-05-02 14:34:12 UTC (rev 226569)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: mortzu 
+# Contributor: fnord0 
+
+pkgname=acpi_call
+pkgver=1.1.0
+pkgrel=62
+_extramodules=extramodules-4.11-ARCH
+pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
+arch=('i686' 'x86_64')
+url='https://github.com/mkottman/acpi_call'
+license=('GPL')
+depends=('linux>=4.11' 'linux<4.12')
+makedepends=('linux-headers>=4.11' 'linux-headers<4.12')
+install='acpi_call.install'
+source=("acpi_call-${pkgver}.tar.gz::https://github.com/mkottman/acpi_call/archive/v${pkgver}.tar.gz;)
+sha256sums=('d0d14b42944282724fca76f57d598eed794ef97448f387d1c489d85ad813f2f0')
+
+prepare() {
+  cd acpi_call-${pkgver}
+
+  # Fix build with Linux >= 3.17
+  sed -i 's|acpi/acpi.h|linux/acpi.h|' acpi_call.c
+}
+
+build() {
+  cd acpi_call-${pkgver}
+
+  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+
+  make KVERSION="${_kernver}"
+}
+
+package() {
+  cd acpi_call-${pkgver}
+
+  install -dm 755 "${pkgdir}"/usr/lib/{modules/${_extramodules},modules-load.d}
+  install -m 644 acpi_call.ko "${pkgdir}"/usr/lib/modules/${_extramodules}
+  gzip "${pkgdir}"/usr/lib/modules/${_extramodules}/acpi_call.ko
+  echo acpi_call > "${pkgdir}"/usr/lib/modules-load.d/acpi_call.conf
+
+  install -dm 755 "${pkgdir}"/usr/share/acpi_call
+  cp -dr --no-preserve='ownership' {examples,support} 
"${pkgdir}"/usr/share/acpi_call/
+}
+
+# vim: ts=2 sw=2 et:

Copied: acpi_call/repos/community-testing-i686/acpi_call.install (from rev 
226568, acpi_call/trunk/acpi_call.install)
===
--- community-testing-i686/acpi_call.install(rev 0)
+++ community-testing-i686/acpi_call.install2017-05-02 14:34:12 UTC (rev 
226569)
@@ -0,0 +1,14 @@
+post_install() {
+  _extramodules=extramodules-4.11-ARCH
+  depmod $(cat /usr/lib/modules/${_extramodules}/version)
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}
+
+# vim: ts=2 sw=2 et:

Copied: acpi_call/repos/community-testing-x86_64/PKGBUILD (from rev 226568, 
acpi_call/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2017-05-02 14:34:12 UTC (rev 226569)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: mortzu 
+# Contributor: fnord0 
+
+pkgname=acpi_call
+pkgver=1.1.0
+pkgrel=62
+_extramodules=extramodules-4.11-ARCH
+pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
+arch=('i686' 'x86_64')
+url='https://github.com/mkottman/acpi_call'
+license=('GPL')
+depends=('linux>=4.11' 'linux<4.12')
+makedepends=('linux-headers>=4.11' 'linux-headers<4.12')
+install='acpi_call.install'
+source=("acpi_call-${pkgver}.tar.gz::https://github.com/mkottman/acpi_call/archive/v${pkgver}.tar.gz;)
+sha256sums=('d0d14b42944282724fca76f57d598eed794ef97448f387d1c489d85ad813f2f0')
+
+prepare() {
+  cd acpi_call-${pkgver}
+
+  # Fix build with Linux >= 3.17
+  sed -i 's|acpi/acpi.h|linux/acpi.h|' acpi_call.c
+}
+
+build() {
+  cd acpi_call-${pkgver}
+
+  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+
+  make KVERSION="${_kernver}"
+}
+
+package() {
+  cd acpi_call-${pkgver}
+
+  install -dm 755 "${pkgdir}"/usr/lib/{modules/${_extramodules},modules-load.d}
+  install -m 644 acpi_call.ko "${pkgdir}"/usr/lib/modules/${_extramodules}
+  gzip 

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

2017-05-02 Thread Antonio Rojas
Date: Tuesday, May 2, 2017 @ 14:16:12
  Author: arojas
Revision: 226567

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-05-02 14:15:46 UTC (rev 226566)
+++ community-i686/PKGBUILD 2017-05-02 14:16:12 UTC (rev 226567)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-
-pkgname=rsibreak
-pkgver=0.12.6
-pkgrel=1
-pkgdesc="Takes care of your health and regularly breaks your work to avoid 
repetitive strain injury (RSI)"
-url="https://userbase.kde.org/RSIBreak;
-arch=(i686 x86_64)
-license=(GPL)
-depends=(knotifyconfig kidletime hicolor-icon-theme)
-makedepends=(extra-cmake-modules kdoctools python)
-source=("http://download.kde.org/stable/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz;)
-md5sums=('ed9a86719ffbaa2a21f585b62c6c8b54')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build 
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF 
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=$pkgdir install
-}
-

Copied: rsibreak/repos/community-i686/PKGBUILD (from rev 226566, 
rsibreak/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-05-02 14:16:12 UTC (rev 226567)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=rsibreak
+pkgver=0.12.7
+pkgrel=1
+pkgdesc="Takes care of your health and regularly breaks your work to avoid 
repetitive strain injury (RSI)"
+url="https://userbase.kde.org/RSIBreak;
+arch=(i686 x86_64)
+license=(GPL)
+depends=(knotifyconfig kidletime hicolor-icon-theme)
+makedepends=(extra-cmake-modules kdoctools python)
+source=("http://download.kde.org/stable/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz;)
+sha256sums=('c9f33f56214ff572c76049cc7b2acc8c58585444017762596190d89826103942')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build 
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DKDE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF 
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}
+

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-05-02 14:15:46 UTC (rev 226566)
+++ community-x86_64/PKGBUILD   2017-05-02 14:16:12 UTC (rev 226567)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-
-pkgname=rsibreak
-pkgver=0.12.6
-pkgrel=1
-pkgdesc="Takes care of your health and regularly breaks your work to avoid 
repetitive strain injury (RSI)"
-url="https://userbase.kde.org/RSIBreak;
-arch=(i686 x86_64)
-license=(GPL)
-depends=(knotifyconfig kidletime hicolor-icon-theme)
-makedepends=(extra-cmake-modules kdoctools python)
-source=("http://download.kde.org/stable/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz;)
-md5sums=('ed9a86719ffbaa2a21f585b62c6c8b54')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build 
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DKDE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF 
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=$pkgdir install
-}
-

Copied: rsibreak/repos/community-x86_64/PKGBUILD (from rev 226566, 
rsibreak/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-05-02 14:16:12 UTC (rev 226567)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=rsibreak
+pkgver=0.12.7
+pkgrel=1
+pkgdesc="Takes care of your health and regularly breaks your work to avoid 
repetitive strain injury (RSI)"
+url="https://userbase.kde.org/RSIBreak;
+arch=(i686 x86_64)
+license=(GPL)
+depends=(knotifyconfig kidletime hicolor-icon-theme)
+makedepends=(extra-cmake-modules kdoctools python)
+source=("http://download.kde.org/stable/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz;)
+sha256sums=('c9f33f56214ff572c76049cc7b2acc8c58585444017762596190d89826103942')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build 
+  cmake ../$pkgname-$pkgver 

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

2017-05-02 Thread Antonio Rojas
Date: Tuesday, May 2, 2017 @ 14:15:46
  Author: arojas
Revision: 226566

Update to 0.12.7

Modified:
  rsibreak/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-02 11:36:51 UTC (rev 226565)
+++ PKGBUILD2017-05-02 14:15:46 UTC (rev 226566)
@@ -2,7 +2,7 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=rsibreak
-pkgver=0.12.6
+pkgver=0.12.7
 pkgrel=1
 pkgdesc="Takes care of your health and regularly breaks your work to avoid 
repetitive strain injury (RSI)"
 url="https://userbase.kde.org/RSIBreak;
@@ -11,7 +11,7 @@
 depends=(knotifyconfig kidletime hicolor-icon-theme)
 makedepends=(extra-cmake-modules kdoctools python)
 
source=("http://download.kde.org/stable/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz;)
-md5sums=('ed9a86719ffbaa2a21f585b62c6c8b54')
+sha256sums=('c9f33f56214ff572c76049cc7b2acc8c58585444017762596190d89826103942')
 
 prepare() {
   mkdir -p build


[arch-commits] Commit in (transmission-remote-cli)

2017-05-02 Thread Antonio Rojas
Date: Tuesday, May 2, 2017 @ 11:36:51
  Author: arojas
Revision: 226565

Unmaintained upstream and downstream

Deleted:
  transmission-remote-cli/


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

2017-05-02 Thread Sven-Hendrik Haase
Date: Tuesday, May 2, 2017 @ 10:48:38
  Author: svenstaro
Revision: 226562

upgpkg: gitlab 9.1.2-1

Modified:
  gitlab/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-02 09:53:42 UTC (rev 226561)
+++ PKGBUILD2017-05-02 10:48:38 UTC (rev 226562)
@@ -7,8 +7,8 @@
 # Contributor: Caleb Maclennan 
 
 pkgname=gitlab
-pkgver=9.1.1
-pkgrel=2
+pkgver=9.1.2
+pkgrel=1
 pkgdesc="Project management and code hosting application"
 arch=('i686' 'x86_64')
 url="https://gitlab.com/gitlab-org/gitlab-ce/tree/master#README;
@@ -42,7 +42,7 @@
 lighttpd.conf.example
 10589.patch)
 install='gitlab.install'
-sha512sums=('aa625408fb2b9d0d691ac595551feab15adebbf9973c44b81ce74f963d3ef0f1891045c80d646e28795df8414fc8632dd5aaef0631e86e56c9071514be39abae'
+sha512sums=('a3d972357d1d8d65d3c922e0987ab4d9408942cbd7bcd481de19b8465903838870fcc8df2f33785bd07ac2b1eeca57ca6ef69b05d6bcd5fadc50c48b60080a34'
 
'56cce150645ef74fa42a6100c8bc7689c4012579e1f3ba237c06c367b121246b39e968044615fa21c4757bc8e9d06f37f8ac8d39aa8b808c758e716857553f66'
 
'8678b2f0632a830e42a8a62b59ffe66b629b7d96034ff167e2a93fdbb3c7617db0c7529990b73c7a12a78a900ec833e48c691ebbac6cd8257e53de060da16a37'
 
'79cfb8ee740ab30f970c3113659b8349128abeae5e32cc81bb905f89a6db9941b7778040a094b884262daf020f66a1aee49a12d34fbb94efce6ade946bb4625b'


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

2017-05-02 Thread Sergej Pupykin
Date: Tuesday, May 2, 2017 @ 09:53:42
  Author: spupykin
Revision: 226561

archrelease: copy trunk to community-any

Added:
  python2-application/repos/community-any/PKGBUILD
(from rev 226560, python2-application/trunk/PKGBUILD)
Deleted:
  python2-application/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-05-02 09:53:30 UTC (rev 226560)
+++ PKGBUILD2017-05-02 09:53:42 UTC (rev 226561)
@@ -1,19 +0,0 @@
-# $Id: PKGBUILD 76944 2012-10-02 14:30:53Z spupykin $
-# Maintainer: Sergej Pupykin 
-
-pkgname=python2-application
-pkgver=2.0.2
-pkgrel=1
-pkgdesc="a collection of modules that are useful when building python 
applications"
-arch=(any)
-#url="http://ag-projects.com;
-url="http://pypi.python.org/pypi/python-application/;
-license=('GPL')
-depends=('python2')
-source=(http://pypi.python.org/packages/source/p/python-application/python-application-$pkgver.tar.gz)
-md5sums=('66efd86576dbed0eb6e2acc23ab4b302')
-
-package() {
-  cd $srcdir/python-application-$pkgver
-  python2 setup.py install --root=$pkgdir
-}

Copied: python2-application/repos/community-any/PKGBUILD (from rev 226560, 
python2-application/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-05-02 09:53:42 UTC (rev 226561)
@@ -0,0 +1,19 @@
+# $Id: PKGBUILD 76944 2012-10-02 14:30:53Z spupykin $
+# Maintainer: Sergej Pupykin 
+
+pkgname=python2-application
+pkgver=2.1.0
+pkgrel=1
+pkgdesc="a collection of modules that are useful when building python 
applications"
+arch=(any)
+#url="http://ag-projects.com;
+url="http://pypi.python.org/pypi/python-application/;
+license=('GPL')
+depends=('python2')
+source=(https://pypi.python.org/packages/b9/7a/fc9cbb10c5e435f38795b713f674bbd8eb6e0f381c35b32bcd2df8b03ba9/python-application-$pkgver.tar.gz)
+sha256sums=('8846575b30524687982767e8ee2be3b1609a4d7ab2d36ff87b27efd5918dab03')
+
+package() {
+  cd "$srcdir"/python-application-$pkgver
+  python2 setup.py install --root="$pkgdir"
+}


[arch-commits] Commit in perl-array-compare/repos/community-any (PKGBUILD PKGBUILD)

2017-05-02 Thread Sergej Pupykin
Date: Tuesday, May 2, 2017 @ 09:53:21
  Author: spupykin
Revision: 226559

archrelease: copy trunk to community-any

Added:
  perl-array-compare/repos/community-any/PKGBUILD
(from rev 226558, perl-array-compare/trunk/PKGBUILD)
Deleted:
  perl-array-compare/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-05-02 09:53:09 UTC (rev 226558)
+++ PKGBUILD2017-05-02 09:53:21 UTC (rev 226559)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Sergej Pupykin 
-
-pkgname=perl-array-compare
-pkgver=2.12
-pkgrel=1
-pkgdesc="Class to compare two arrays"
-arch=(any)
-url="http://search.cpan.org/dist/Array-Compare;
-license=('GPL' 'PerlArtistic')
-depends=('perl>=5.10.0')
-options=('!emptydirs')
-source=(http://www.cpan.org/authors/id/D/DA/DAVECROSS/Array-Compare-$pkgver.tar.gz)
-md5sums=('49521f2809e1925a645e2fdc5b72f5fb')
-
-build() {
-  cd  $srcdir/Array-Compare-$pkgver
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd  $srcdir/Array-Compare-$pkgver
-  make install DESTDIR=$pkgdir
-  find $pkgdir -name '.packlist' -delete
-  find $pkgdir -name '*.pod' -delete
-}

Copied: perl-array-compare/repos/community-any/PKGBUILD (from rev 226558, 
perl-array-compare/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-05-02 09:53:21 UTC (rev 226559)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Sergej Pupykin 
+
+pkgname=perl-array-compare
+pkgver=3.0.0
+pkgrel=1
+pkgdesc="Class to compare two arrays"
+arch=(any)
+url="http://search.cpan.org/dist/Array-Compare;
+license=('GPL' 'PerlArtistic')
+depends=('perl>=5.10.0')
+options=('!emptydirs')
+source=(http://search.cpan.org/CPAN/authors/id/D/DA/DAVECROSS/Array-Compare-v$pkgver.tar.gz)
+sha256sums=('32cd4d6482e934b74a34686f5f22b7a61386b7db9b7e8bb9d11b1dc8dfcd34c8')
+
+build() {
+  cd  "$srcdir"/Array-Compare-v$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd  "$srcdir"/Array-Compare-v$pkgver
+  make install DESTDIR="$pkgdir"
+  find "$pkgdir" -name '.packlist' -delete
+  find "$pkgdir" -name '*.pod' -delete
+}


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

2017-05-02 Thread Antonio Rojas
Date: Tuesday, May 2, 2017 @ 09:52:53
  Author: arojas
Revision: 295178

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-05-02 09:52:16 UTC (rev 295177)
+++ extra-i686/PKGBUILD 2017-05-02 09:52:53 UTC (rev 295178)
@@ -1,36 +0,0 @@
-# $Id: PKGBUILD 276984 2016-09-26 18:41:01Z arojas $
-# Maintainer: Antonio Rojas 
-
-pkgname=kirigami2
-pkgver=2.1.0
-pkgrel=1
-pkgdesc='A QtQuick based components set'
-arch=(i686 x86_64)
-url='https://community.kde.org/Frameworks'
-license=(LGPL)
-depends=(qt5-quickcontrols2)
-makedepends=(extra-cmake-modules qt5-tools plasma-framework)
-source=("http://download.kde.org/stable/kirigami/$pkgname-$pkgver.tar.xz"{,.asc})
-sha256sums=('e744ff974ef100d23feda68f3fdb465aa56bf8da6992ab7e3f3fed2f4180e934'
-'SKIP')
-validpgpkeys=('1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

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

Copied: kirigami2/repos/extra-i686/PKGBUILD (from rev 295177, 
kirigami2/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-05-02 09:52:53 UTC (rev 295178)
@@ -0,0 +1,36 @@
+# $Id: PKGBUILD 276984 2016-09-26 18:41:01Z arojas $
+# Maintainer: Antonio Rojas 
+
+pkgname=kirigami2
+pkgver=2.1.1
+pkgrel=1
+pkgdesc='A QtQuick based components set'
+arch=(i686 x86_64)
+url='https://community.kde.org/Frameworks'
+license=(LGPL)
+depends=(qt5-quickcontrols2)
+makedepends=(extra-cmake-modules qt5-tools plasma-framework)
+source=("http://download.kde.org/stable/kirigami/$pkgname-$pkgver.tar.xz"{,.asc})
+sha256sums=('ea3796058f302dabf21b7c58a05e543da5d7407414a9001d26d4318962a872ad'
+'SKIP')
+validpgpkeys=('1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

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

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-05-02 09:52:16 UTC (rev 295177)
+++ extra-x86_64/PKGBUILD   2017-05-02 09:52:53 UTC (rev 295178)
@@ -1,36 +0,0 @@
-# $Id: PKGBUILD 276984 2016-09-26 18:41:01Z arojas $
-# Maintainer: Antonio Rojas 
-
-pkgname=kirigami2
-pkgver=2.1.0
-pkgrel=1
-pkgdesc='A QtQuick based components set'
-arch=(i686 x86_64)
-url='https://community.kde.org/Frameworks'
-license=(LGPL)
-depends=(qt5-quickcontrols2)
-makedepends=(extra-cmake-modules qt5-tools plasma-framework)
-source=("http://download.kde.org/stable/kirigami/$pkgname-$pkgver.tar.xz"{,.asc})
-sha256sums=('e744ff974ef100d23feda68f3fdb465aa56bf8da6992ab7e3f3fed2f4180e934'
-'SKIP')
-validpgpkeys=('1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

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

Copied: kirigami2/repos/extra-x86_64/PKGBUILD (from rev 295177, 
kirigami2/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2017-05-02 09:52:53 UTC (rev 295178)
@@ -0,0 +1,36 @@
+# $Id: PKGBUILD 276984 2016-09-26 18:41:01Z arojas $
+# Maintainer: Antonio Rojas 
+
+pkgname=kirigami2
+pkgver=2.1.1
+pkgrel=1
+pkgdesc='A QtQuick based components set'
+arch=(i686 x86_64)
+url='https://community.kde.org/Frameworks'
+license=(LGPL)
+depends=(qt5-quickcontrols2)
+makedepends=(extra-cmake-modules qt5-tools plasma-framework)

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

2017-05-02 Thread Sergej Pupykin
Date: Tuesday, May 2, 2017 @ 09:53:30
  Author: spupykin
Revision: 226560

upgpkg: python2-application 2.1.0-1

Modified:
  python2-application/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-02 09:53:21 UTC (rev 226559)
+++ PKGBUILD2017-05-02 09:53:30 UTC (rev 226560)
@@ -2,7 +2,7 @@
 # Maintainer: Sergej Pupykin 
 
 pkgname=python2-application
-pkgver=2.0.2
+pkgver=2.1.0
 pkgrel=1
 pkgdesc="a collection of modules that are useful when building python 
applications"
 arch=(any)
@@ -10,8 +10,8 @@
 url="http://pypi.python.org/pypi/python-application/;
 license=('GPL')
 depends=('python2')
-source=(https://pypi.python.org/packages/source/p/python-application/python-application-$pkgver.tar.gz)
-sha256sums=('1298b77282bfdb18327a7930f8dcf9f09cbfc98e3c53a01469066ab282267a30')
+source=(https://pypi.python.org/packages/b9/7a/fc9cbb10c5e435f38795b713f674bbd8eb6e0f381c35b32bcd2df8b03ba9/python-application-$pkgver.tar.gz)
+sha256sums=('8846575b30524687982767e8ee2be3b1609a4d7ab2d36ff87b27efd5918dab03')
 
 package() {
   cd "$srcdir"/python-application-$pkgver


[arch-commits] Commit in perl-array-compare/trunk (PKGBUILD)

2017-05-02 Thread Sergej Pupykin
Date: Tuesday, May 2, 2017 @ 09:53:09
  Author: spupykin
Revision: 226558

upgpkg: perl-array-compare 3.0.0-1

Modified:
  perl-array-compare/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-02 09:47:11 UTC (rev 226557)
+++ PKGBUILD2017-05-02 09:53:09 UTC (rev 226558)
@@ -3,7 +3,7 @@
 # Contributor: Sergej Pupykin 
 
 pkgname=perl-array-compare
-pkgver=2.12
+pkgver=3.0.0
 pkgrel=1
 pkgdesc="Class to compare two arrays"
 arch=(any)
@@ -11,17 +11,17 @@
 license=('GPL' 'PerlArtistic')
 depends=('perl>=5.10.0')
 options=('!emptydirs')
-source=(http://www.cpan.org/authors/id/D/DA/DAVECROSS/Array-Compare-$pkgver.tar.gz)
-md5sums=('49521f2809e1925a645e2fdc5b72f5fb')
+source=(http://search.cpan.org/CPAN/authors/id/D/DA/DAVECROSS/Array-Compare-v$pkgver.tar.gz)
+sha256sums=('32cd4d6482e934b74a34686f5f22b7a61386b7db9b7e8bb9d11b1dc8dfcd34c8')
 
 build() {
-  cd  "$srcdir"/Array-Compare-$pkgver
+  cd  "$srcdir"/Array-Compare-v$pkgver
   PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
   make
 }
 
 package() {
-  cd  "$srcdir"/Array-Compare-$pkgver
+  cd  "$srcdir"/Array-Compare-v$pkgver
   make install DESTDIR="$pkgdir"
   find "$pkgdir" -name '.packlist' -delete
   find "$pkgdir" -name '*.pod' -delete


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

2017-05-02 Thread Antonio Rojas
Date: Tuesday, May 2, 2017 @ 09:52:16
  Author: arojas
Revision: 295177

Update to 2.1.1

Modified:
  kirigami2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-02 09:13:30 UTC (rev 295176)
+++ PKGBUILD2017-05-02 09:52:16 UTC (rev 295177)
@@ -2,7 +2,7 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=kirigami2
-pkgver=2.1.0
+pkgver=2.1.1
 pkgrel=1
 pkgdesc='A QtQuick based components set'
 arch=(i686 x86_64)
@@ -11,7 +11,7 @@
 depends=(qt5-quickcontrols2)
 makedepends=(extra-cmake-modules qt5-tools plasma-framework)
 
source=("http://download.kde.org/stable/kirigami/$pkgname-$pkgver.tar.xz"{,.asc})
-sha256sums=('e744ff974ef100d23feda68f3fdb465aa56bf8da6992ab7e3f3fed2f4180e934'
+sha256sums=('ea3796058f302dabf21b7c58a05e543da5d7407414a9001d26d4318962a872ad'
 'SKIP')
 validpgpkeys=('1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin 

 


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

2017-05-02 Thread Sergej Pupykin
Date: Tuesday, May 2, 2017 @ 09:46:43
  Author: spupykin
Revision: 226555

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-05-02 09:46:26 UTC (rev 226554)
+++ community-i686/PKGBUILD 2017-05-02 09:46:43 UTC (rev 226555)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Mario Vazquez 
-
-pkgname=tcltls
-pkgver=1.7.11
-pkgrel=2
-pkgdesc="OpenSSL extension to Tcl"
-arch=('i686' 'x86_64')
-url="https://core.tcl.tk/tcltls/index;
-license=('GPL')
-provides=('tls')
-replaces=('tls')
-depends=('tcl' 'openssl' 'awk')
-source=("https://core.tcl.tk/tcltls/uv/tcltls-$pkgver.tar.gz;)
-sha256sums=('6c9ec017751a0bd6546780273f2992cee6786c2199e6798ec2e25367ff577f60')
-
-build() {
-  cd "$srcdir"/tcltls-$pkgver
-  ./configure --prefix=/usr --with-ssl-dir=/usr
-  make
-}
-
-check() {
-  cd "$srcdir"/tcltls-$pkgver
-#  make test | awk '{print}/FAILED/{F=1}END{if(F)exit 1}'
-}
-
-package() {
-  cd "$srcdir"/tcltls-$pkgver
-  make DESTDIR="$pkgdir" install
-#  ln -s tls$pkgver/libtls$pkgver.so "$pkgdir"/usr/lib/libtls$pkgver.so
-}

Copied: tcltls/repos/community-i686/PKGBUILD (from rev 226554, 
tcltls/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-05-02 09:46:43 UTC (rev 226555)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Mario Vazquez 
+
+pkgname=tcltls
+pkgver=1.7.12
+pkgrel=1
+pkgdesc="OpenSSL extension to Tcl"
+arch=('i686' 'x86_64')
+url="https://core.tcl.tk/tcltls/index;
+license=('GPL')
+provides=('tls')
+replaces=('tls')
+depends=('tcl' 'openssl' 'awk')
+source=("https://core.tcl.tk/tcltls/uv/tcltls-$pkgver.tar.gz;)
+sha256sums=('0e09e8e1cb3dcb3d419079fe40c521b7283d5e822dc914ffd1e4ff600b895caa')
+
+build() {
+  cd "$srcdir"/tcltls-$pkgver
+  ./configure --prefix=/usr --with-ssl-dir=/usr
+  make
+}
+
+check() {
+  cd "$srcdir"/tcltls-$pkgver
+#  make test | awk '{print}/FAILED/{F=1}END{if(F)exit 1}'
+}
+
+package() {
+  cd "$srcdir"/tcltls-$pkgver
+  make DESTDIR="$pkgdir" install
+#  ln -s tls$pkgver/libtls$pkgver.so "$pkgdir"/usr/lib/libtls$pkgver.so
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-05-02 09:46:26 UTC (rev 226554)
+++ community-x86_64/PKGBUILD   2017-05-02 09:46:43 UTC (rev 226555)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Mario Vazquez 
-
-pkgname=tcltls
-pkgver=1.7.11
-pkgrel=2
-pkgdesc="OpenSSL extension to Tcl"
-arch=('i686' 'x86_64')
-url="https://core.tcl.tk/tcltls/index;
-license=('GPL')
-provides=('tls')
-replaces=('tls')
-depends=('tcl' 'openssl' 'awk')
-source=("https://core.tcl.tk/tcltls/uv/tcltls-$pkgver.tar.gz;)
-sha256sums=('6c9ec017751a0bd6546780273f2992cee6786c2199e6798ec2e25367ff577f60')
-
-build() {
-  cd "$srcdir"/tcltls-$pkgver
-  ./configure --prefix=/usr --with-ssl-dir=/usr
-  make
-}
-
-check() {
-  cd "$srcdir"/tcltls-$pkgver
-#  make test | awk '{print}/FAILED/{F=1}END{if(F)exit 1}'
-}
-
-package() {
-  cd "$srcdir"/tcltls-$pkgver
-  make DESTDIR="$pkgdir" install
-#  ln -s tls$pkgver/libtls$pkgver.so "$pkgdir"/usr/lib/libtls$pkgver.so
-}

Copied: tcltls/repos/community-x86_64/PKGBUILD (from rev 226554, 
tcltls/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-05-02 09:46:43 UTC (rev 226555)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Mario Vazquez 
+
+pkgname=tcltls
+pkgver=1.7.12
+pkgrel=1
+pkgdesc="OpenSSL extension to Tcl"
+arch=('i686' 'x86_64')
+url="https://core.tcl.tk/tcltls/index;
+license=('GPL')
+provides=('tls')
+replaces=('tls')
+depends=('tcl' 'openssl' 'awk')
+source=("https://core.tcl.tk/tcltls/uv/tcltls-$pkgver.tar.gz;)
+sha256sums=('0e09e8e1cb3dcb3d419079fe40c521b7283d5e822dc914ffd1e4ff600b895caa')
+
+build() {
+  cd "$srcdir"/tcltls-$pkgver
+  ./configure --prefix=/usr --with-ssl-dir=/usr
+  make
+}
+
+check() {
+  cd 

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

2017-05-02 Thread Sergej Pupykin
Date: Tuesday, May 2, 2017 @ 09:46:50
  Author: spupykin
Revision: 226556

upgpkg: xxkb 1.11.1-1

Modified:
  xxkb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-02 09:46:43 UTC (rev 226555)
+++ PKGBUILD2017-05-02 09:46:50 UTC (rev 226556)
@@ -2,8 +2,8 @@
 # Maintainer: Sergej Pupykin 
 
 pkgname=xxkb
-pkgver=1.11
-pkgrel=5
+pkgver=1.11.1
+pkgrel=1
 pkgdesc="keyboard layout switcher/indicator"
 arch=('i686' 'x86_64')
 url="http://sourceforge.net/projects/xxkb/;
@@ -14,19 +14,19 @@
XXkb
en22.xpm
ru22.xpm)
-md5sums=('c2e5c7f3285033f0e26b358ef95a7c89'
- 'f181b7a017d3d2524ecf10638317d341'
- '649c6d378fe12853d457b768bd273dc5'
- 'f1692f0be5fc697b3b792d0098bdb42f')
+sha256sums=('ceaa33bed81d8ae5bf77e89787d0736f7564c3de047c35a57bcbf6f4d1888142'
+'fa997405160d8dd1383cc8705679553d1bcf8b20e343995da31250230d7ed39b'
+'c271205439821c5be32eeb15834703e7c57143bab8be83f148787677f1642924'
+'f6c4c87e1964d889d8144b2d2c9d12cfa5907a82efc24808903fca2202ae7be8')
 
 build() {
-  cd "${srcdir}"/${pkgname}
+  cd "${srcdir}"/${pkgname}-${pkgver}
   xmkmf
   make PROJECTROOT=/usr PIXMAPDIR=/usr/share/$pkgname LOCAL_LIBRARIES='-lXext 
-lXt -lXpm -lX11'
 }
 
 package() {
-  cd "${srcdir}"/${pkgname}
+  cd "${srcdir}"/${pkgname}-${pkgver}
   install -d "$pkgdir"/usr/bin
   install -d "$pkgdir"/usr/share/$pkgname
   install -d "$pkgdir"/usr/man/man1


[arch-commits] Commit in xxkb/repos (16 files)

2017-05-02 Thread Sergej Pupykin
Date: Tuesday, May 2, 2017 @ 09:47:11
  Author: spupykin
Revision: 226557

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

Added:
  xxkb/repos/community-i686/PKGBUILD
(from rev 226556, xxkb/trunk/PKGBUILD)
  xxkb/repos/community-i686/XXkb
(from rev 226556, xxkb/trunk/XXkb)
  xxkb/repos/community-i686/en22.xpm
(from rev 226556, xxkb/trunk/en22.xpm)
  xxkb/repos/community-i686/ru22.xpm
(from rev 226556, xxkb/trunk/ru22.xpm)
  xxkb/repos/community-x86_64/PKGBUILD
(from rev 226556, xxkb/trunk/PKGBUILD)
  xxkb/repos/community-x86_64/XXkb
(from rev 226556, xxkb/trunk/XXkb)
  xxkb/repos/community-x86_64/en22.xpm
(from rev 226556, xxkb/trunk/en22.xpm)
  xxkb/repos/community-x86_64/ru22.xpm
(from rev 226556, xxkb/trunk/ru22.xpm)
Deleted:
  xxkb/repos/community-i686/PKGBUILD
  xxkb/repos/community-i686/XXkb
  xxkb/repos/community-i686/en22.xpm
  xxkb/repos/community-i686/ru22.xpm
  xxkb/repos/community-x86_64/PKGBUILD
  xxkb/repos/community-x86_64/XXkb
  xxkb/repos/community-x86_64/en22.xpm
  xxkb/repos/community-x86_64/ru22.xpm

---+
 /PKGBUILD |   84 +
 /XXkb |   32 ++
 /en22.xpm |  210 
 /ru22.xpm |   62 
 community-i686/PKGBUILD   |   42 
 community-i686/XXkb   |   16 ---
 community-i686/en22.xpm   |  105 --
 community-i686/ru22.xpm   |   31 --
 community-x86_64/PKGBUILD |   42 
 community-x86_64/XXkb |   16 ---
 community-x86_64/en22.xpm |  105 --
 community-x86_64/ru22.xpm |   31 --
 12 files changed, 388 insertions(+), 388 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-05-02 09:46:50 UTC (rev 226556)
+++ community-i686/PKGBUILD 2017-05-02 09:47:11 UTC (rev 226557)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-
-pkgname=xxkb
-pkgver=1.11
-pkgrel=5
-pkgdesc="keyboard layout switcher/indicator"
-arch=('i686' 'x86_64')
-url="http://sourceforge.net/projects/xxkb/;
-license=('PerlArtistic')
-depends=('libxpm')
-makedepends=('imake')
-source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-$pkgver-src.tar.gz;
-   XXkb
-   en22.xpm
-   ru22.xpm)
-md5sums=('c2e5c7f3285033f0e26b358ef95a7c89'
- 'f181b7a017d3d2524ecf10638317d341'
- '649c6d378fe12853d457b768bd273dc5'
- 'f1692f0be5fc697b3b792d0098bdb42f')
-
-build() {
-  cd "${srcdir}"/${pkgname}
-  xmkmf
-  make PROJECTROOT=/usr PIXMAPDIR=/usr/share/$pkgname LOCAL_LIBRARIES='-lXext 
-lXt -lXpm -lX11'
-}
-
-package() {
-  cd "${srcdir}"/${pkgname}
-  install -d $pkgdir/usr/bin
-  install -d $pkgdir/usr/share/$pkgname
-  install -d $pkgdir/usr/man/man1
-  install -d $pkgdir/usr/share/X11/app-defaults
-
-  install -m 0755 xxkb $pkgdir/usr/bin
-  install -m 0644 ../XXkb $pkgdir/usr/share/X11/app-defaults/XXkb
-  install -m 0644 pixmaps/*.xpm $pkgdir/usr/share/$pkgname
-  install -m 0644 $pkgname.man $pkgdir/usr/man/man1/$pkgname.1
-  install -m 0644 ../*.xpm $pkgdir/usr/share/$pkgname/
-
-  mv $pkgdir/usr/man $pkgdir/usr/share/
-}

Copied: xxkb/repos/community-i686/PKGBUILD (from rev 226556, 
xxkb/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-05-02 09:47:11 UTC (rev 226557)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+
+pkgname=xxkb
+pkgver=1.11.1
+pkgrel=1
+pkgdesc="keyboard layout switcher/indicator"
+arch=('i686' 'x86_64')
+url="http://sourceforge.net/projects/xxkb/;
+license=('PerlArtistic')
+depends=('libxpm')
+makedepends=('imake')
+source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-$pkgver-src.tar.gz;
+   XXkb
+   en22.xpm
+   ru22.xpm)
+sha256sums=('ceaa33bed81d8ae5bf77e89787d0736f7564c3de047c35a57bcbf6f4d1888142'
+'fa997405160d8dd1383cc8705679553d1bcf8b20e343995da31250230d7ed39b'
+'c271205439821c5be32eeb15834703e7c57143bab8be83f148787677f1642924'
+'f6c4c87e1964d889d8144b2d2c9d12cfa5907a82efc24808903fca2202ae7be8')
+
+build() {
+  cd "${srcdir}"/${pkgname}-${pkgver}
+  xmkmf
+  make PROJECTROOT=/usr PIXMAPDIR=/usr/share/$pkgname LOCAL_LIBRARIES='-lXext 
-lXt -lXpm -lX11'
+}
+
+package() {
+  cd "${srcdir}"/${pkgname}-${pkgver}
+  install -d "$pkgdir"/usr/bin
+  install -d "$pkgdir"/usr/share/$pkgname
+  install -d "$pkgdir"/usr/man/man1
+  install -d "$pkgdir"/usr/share/X11/app-defaults
+
+  install -m 0755 xxkb "$pkgdir"/usr/bin
+  install -m 0644 ../XXkb "$pkgdir"/usr/share/X11/app-defaults/XXkb
+  install -m 0644 pixmaps/*.xpm "$pkgdir"/usr/share/$pkgname
+  install -m 0644 $pkgname.man "$pkgdir"/usr/man/man1/$pkgname.1
+  install -m 0644 ../*.xpm 

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

2017-05-02 Thread Sergej Pupykin
Date: Tuesday, May 2, 2017 @ 09:46:17
  Author: spupykin
Revision: 226553

archrelease: copy trunk to community-any

Added:
  roundcubemail/repos/community-any/PKGBUILD
(from rev 226552, roundcubemail/trunk/PKGBUILD)
  roundcubemail/repos/community-any/apache.conf
(from rev 226552, roundcubemail/trunk/apache.conf)
  roundcubemail/repos/community-any/roundcubemail.install
(from rev 226552, roundcubemail/trunk/roundcubemail.install)
Deleted:
  roundcubemail/repos/community-any/PKGBUILD
  roundcubemail/repos/community-any/apache.conf
  roundcubemail/repos/community-any/roundcubemail.install

---+
 PKGBUILD  |  126 
 apache.conf   |   14 ++---
 roundcubemail.install |   14 ++---
 3 files changed, 77 insertions(+), 77 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-05-02 09:46:05 UTC (rev 226552)
+++ PKGBUILD2017-05-02 09:46:17 UTC (rev 226553)
@@ -1,63 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-
-pkgname=roundcubemail
-pkgver=1.2.4
-pkgrel=1
-pkgdesc="A PHP web-based mail client"
-arch=('any')
-url="http://www.roundcube.net;
-license=('GPL')
-depends=('php')
-makedepends=('php-composer' 'git')
-optdepends=('python2')
-backup=('etc/webapps/roundcubemail/.htaccess'
-   'etc/webapps/roundcubemail/apache.conf')
-install=roundcubemail.install
-options=('!strip' 'emptydirs')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/roundcube/roundcubemail/archive/${pkgver/rc/-rc}.tar.gz;
-   "https://getcomposer.org/download/1.4.1/composer.phar;
-   apache.conf)
-sha256sums=('91d6c8c8a4ecd5c3c78926c080720733f413640950578efe440b5c769fba59a3'
-'abd277cc3453be980bb48cbffe9d1f7422ca1ef4bc0b7d035fda87cea4d55cbc'
-'c90981405527ebaf153a407af6b8178b41d078bd4472d63b837b3b4cd5ae36b0')
-
-prepare() {
-  cd "$srcdir"/roundcubemail-${pkgver/rc/-rc}
-  sed -i \
--e "s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';|" \
--e "s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';|" \
-config/defaults.inc.php \
-program/lib/Roundcube/rcube_config.php
-  mv composer.json-dist composer.json
-  php ../composer.phar install --no-dev
-}
-
-package() {
-  mkdir -p "$pkgdir"/etc/webapps/roundcubemail
-  mkdir -p "$pkgdir"/usr/share/webapps
-  mkdir -p "$pkgdir"/var/log
-  cd "$pkgdir"/usr/share/webapps
-  cp -ra "$srcdir"/roundcubemail-${pkgver/rc/-rc} roundcubemail
-  cd roundcubemail
-
-  mv .htaccess "$pkgdir"/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
-
-  mv config "$pkgdir"/etc/webapps/roundcubemail/
-  ln -s /etc/webapps/roundcubemail/config config
-
-  install -dm0750 "$pkgdir"/var/{log,cache}/roundcubemail
-  install -Dm0644 "$srcdir"/apache.conf 
"$pkgdir"/etc/webapps/roundcubemail/apache.conf
-
-  rm -rf temp logs
-  find "$pkgdir" -name .git -exec rm -rf {} \; || true
-
-  sed -i 
"s|"$srcdir"/roundcubemail-${pkgver/rc/-rc}/vendor/pear-pear.php.net/Console_CommandLine/data|/usr/share/webapps/roundcubemail/vendor/pear-pear.php.net|g"
 \
-
vendor/pear-pear.php.net/Console_CommandLine/Console/CommandLine/XmlParser.php
-
-  sed -i 
"s|"$srcdir"/roundcubemail-${pkgver/rc/-rc}|/usr/share/webapps/roundcubemail|g" 
\
-vendor/pear-pear.php.net/Crypt_GPG/bin/crypt-gpg-pinentry \
-vendor/pear-pear.php.net/Crypt_GPG/Crypt/GPG/Engine.php \
-vendor/pear-pear.php.net/Crypt_GPG/Crypt/GPG/PinEntry.php
-}

Copied: roundcubemail/repos/community-any/PKGBUILD (from rev 226552, 
roundcubemail/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-05-02 09:46:17 UTC (rev 226553)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+
+pkgname=roundcubemail
+pkgver=1.2.5
+pkgrel=1
+pkgdesc="A PHP web-based mail client"
+arch=('any')
+url="http://www.roundcube.net;
+license=('GPL')
+depends=('php')
+makedepends=('php-composer' 'git')
+optdepends=('python2')
+backup=('etc/webapps/roundcubemail/.htaccess'
+   'etc/webapps/roundcubemail/apache.conf')
+install=roundcubemail.install
+options=('!strip' 'emptydirs')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/roundcube/roundcubemail/archive/${pkgver/rc/-rc}.tar.gz;
+   "https://getcomposer.org/download/1.4.1/composer.phar;
+   apache.conf)
+sha256sums=('cf20b48f95827c44abcebc40ef64a025fbcd947518849f25de6bb6c8883c5672'
+'abd277cc3453be980bb48cbffe9d1f7422ca1ef4bc0b7d035fda87cea4d55cbc'
+'c90981405527ebaf153a407af6b8178b41d078bd4472d63b837b3b4cd5ae36b0')
+
+prepare() {
+  cd "$srcdir"/roundcubemail-${pkgver/rc/-rc}
+  sed -i \
+-e "s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';|" \
+-e "s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';|" \
+config/defaults.inc.php \
+

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

2017-05-02 Thread Sergej Pupykin
Date: Tuesday, May 2, 2017 @ 09:46:05
  Author: spupykin
Revision: 226552

upgpkg: roundcubemail 1.2.5-1

Modified:
  roundcubemail/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-02 09:45:58 UTC (rev 226551)
+++ PKGBUILD2017-05-02 09:46:05 UTC (rev 226552)
@@ -2,7 +2,7 @@
 # Maintainer: Sergej Pupykin 
 
 pkgname=roundcubemail
-pkgver=1.2.4
+pkgver=1.2.5
 pkgrel=1
 pkgdesc="A PHP web-based mail client"
 arch=('any')
@@ -18,7 +18,7 @@
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/roundcube/roundcubemail/archive/${pkgver/rc/-rc}.tar.gz;
"https://getcomposer.org/download/1.4.1/composer.phar;
apache.conf)
-sha256sums=('91d6c8c8a4ecd5c3c78926c080720733f413640950578efe440b5c769fba59a3'
+sha256sums=('cf20b48f95827c44abcebc40ef64a025fbcd947518849f25de6bb6c8883c5672'
 'abd277cc3453be980bb48cbffe9d1f7422ca1ef4bc0b7d035fda87cea4d55cbc'
 'c90981405527ebaf153a407af6b8178b41d078bd4472d63b837b3b4cd5ae36b0')
 


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

2017-05-02 Thread Sergej Pupykin
Date: Tuesday, May 2, 2017 @ 09:45:58
  Author: spupykin
Revision: 226551

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

Added:
  rocksndiamonds/repos/community-i686/PKGBUILD
(from rev 226550, rocksndiamonds/trunk/PKGBUILD)
  rocksndiamonds/repos/community-i686/rocksndiamonds.desktop
(from rev 226550, rocksndiamonds/trunk/rocksndiamonds.desktop)
  rocksndiamonds/repos/community-x86_64/PKGBUILD
(from rev 226550, rocksndiamonds/trunk/PKGBUILD)
  rocksndiamonds/repos/community-x86_64/rocksndiamonds.desktop
(from rev 226550, rocksndiamonds/trunk/rocksndiamonds.desktop)
Deleted:
  rocksndiamonds/repos/community-i686/PKGBUILD
  rocksndiamonds/repos/community-i686/rocksndiamonds.desktop
  rocksndiamonds/repos/community-x86_64/PKGBUILD
  rocksndiamonds/repos/community-x86_64/rocksndiamonds.desktop

-+
 /PKGBUILD   |   90 ++
 /rocksndiamonds.desktop |   20 ++
 community-i686/PKGBUILD |   45 ---
 community-i686/rocksndiamonds.desktop   |   10 ---
 community-x86_64/PKGBUILD   |   45 ---
 community-x86_64/rocksndiamonds.desktop |   10 ---
 6 files changed, 110 insertions(+), 110 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-05-02 09:45:42 UTC (rev 226550)
+++ community-i686/PKGBUILD 2017-05-02 09:45:58 UTC (rev 226551)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Jacek Poplawski 
-
-pkgname=rocksndiamonds
-pkgver=4.0.0.1
-pkgrel=1
-pkgdesc="game similiar to Boulderdash with lots of levels"
-arch=(i686 x86_64)
-url="http://www.artsoft.org/rocksndiamonds/;
-license=('GPL')
-depends=('sdl' 'sdl_image' 'sdl_mixer' 'sdl_net' 'smpeg')
-makedepends=('unzip' 'p7zip')
-source=(http://www.artsoft.org/RELEASES/unix/rocksndiamonds/rocksndiamonds-$pkgver.tar.gz
-   rocksndiamonds.desktop)
-sha256sums=('8649a450419d9cee2ffd9463cae65e7ebcbbf48c2cc945a85d91bbcdd9be3249'
-'90008d356dd30034287ca763a05feb482d7e0c4508572abb08b5215fcb4fe922')
-
-prepare() {
-  cd "$srcdir"/rocksndiamonds-$pkgver
-  sed -i 's|inline void InitElementSmallImagesScaledUp|void 
InitElementSmallImagesScaledUp|g' src/init.c
-}
-
-build() {
-  cd "$srcdir"/rocksndiamonds-$pkgver
-  make clean
-  make RO_GAME_DIR=/usr/share/rocksndiamonds 
RW_GAME_DIR=/usr/share/rocksndiamonds
-}
-
-package() {
-  depends=('sdl' 'sdl_image' 'sdl_mixer' 'sdl_net' 'smpeg' 
'rocksndiamonds-data')
-
-  cd "$srcdir"/rocksndiamonds-$pkgver
-
-  install -d "$pkgdir"/usr/bin
-  cp "$srcdir"/rocksndiamonds-$pkgver/rocksndiamonds 
"$pkgdir"/usr/bin/rocksndiamonds
-
-#  install -d "$pkgdir"/usr/share/man/man1
-#  cp "$srcdir"/rocksndiamonds-$pkgver/rocksndiamonds.1 
"$pkgdir"/usr/share/man/man1
-
-  install -d "$pkgdir"/usr/share/doc/$pkgname/
-  cp -a docs/elements "$pkgdir"/usr/share/doc/$pkgname/
-
-  install -Dm0644 "$srcdir"/rocksndiamonds.desktop 
"$pkgdir"/usr/share/applications/rocksndiamonds.desktop
-}

Copied: rocksndiamonds/repos/community-i686/PKGBUILD (from rev 226550, 
rocksndiamonds/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-05-02 09:45:58 UTC (rev 226551)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Jacek Poplawski 
+
+pkgname=rocksndiamonds
+pkgver=4.0.0.2
+pkgrel=1
+pkgdesc="game similiar to Boulderdash with lots of levels"
+arch=(i686 x86_64)
+url="http://www.artsoft.org/rocksndiamonds/;
+license=('GPL')
+depends=('sdl' 'sdl_image' 'sdl_mixer' 'sdl_net' 'smpeg')
+makedepends=('unzip' 'p7zip')
+source=(http://www.artsoft.org/RELEASES/unix/rocksndiamonds/rocksndiamonds-$pkgver.tar.gz
+   rocksndiamonds.desktop)
+sha256sums=('64dd10e8e543a2ff111475243c8360f4009bcf186af34f4c95d36eafe836f637'
+'90008d356dd30034287ca763a05feb482d7e0c4508572abb08b5215fcb4fe922')
+
+prepare() {
+  cd "$srcdir"/rocksndiamonds-$pkgver
+  sed -i 's|inline void InitElementSmallImagesScaledUp|void 
InitElementSmallImagesScaledUp|g' src/init.c
+}
+
+build() {
+  cd "$srcdir"/rocksndiamonds-$pkgver
+  make clean
+  make RO_GAME_DIR=/usr/share/rocksndiamonds 
RW_GAME_DIR=/usr/share/rocksndiamonds
+}
+
+package() {
+  depends=('sdl' 'sdl_image' 'sdl_mixer' 'sdl_net' 'smpeg' 
'rocksndiamonds-data')
+
+  cd "$srcdir"/rocksndiamonds-$pkgver
+
+  install -d "$pkgdir"/usr/bin
+  cp "$srcdir"/rocksndiamonds-$pkgver/rocksndiamonds 
"$pkgdir"/usr/bin/rocksndiamonds
+
+#  install -d "$pkgdir"/usr/share/man/man1
+#  cp "$srcdir"/rocksndiamonds-$pkgver/rocksndiamonds.1 
"$pkgdir"/usr/share/man/man1
+
+  install -d "$pkgdir"/usr/share/doc/$pkgname/
+  cp -a docs/elements 

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

2017-05-02 Thread Sergej Pupykin
Date: Tuesday, May 2, 2017 @ 09:46:26
  Author: spupykin
Revision: 226554

upgpkg: tcltls 1.7.12-1

Modified:
  tcltls/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-02 09:46:17 UTC (rev 226553)
+++ PKGBUILD2017-05-02 09:46:26 UTC (rev 226554)
@@ -3,8 +3,8 @@
 # Contributor: Mario Vazquez 
 
 pkgname=tcltls
-pkgver=1.7.11
-pkgrel=2
+pkgver=1.7.12
+pkgrel=1
 pkgdesc="OpenSSL extension to Tcl"
 arch=('i686' 'x86_64')
 url="https://core.tcl.tk/tcltls/index;
@@ -13,7 +13,7 @@
 replaces=('tls')
 depends=('tcl' 'openssl' 'awk')
 source=("https://core.tcl.tk/tcltls/uv/tcltls-$pkgver.tar.gz;)
-sha256sums=('6c9ec017751a0bd6546780273f2992cee6786c2199e6798ec2e25367ff577f60')
+sha256sums=('0e09e8e1cb3dcb3d419079fe40c521b7283d5e822dc914ffd1e4ff600b895caa')
 
 build() {
   cd "$srcdir"/tcltls-$pkgver


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

2017-05-02 Thread Sergej Pupykin
Date: Tuesday, May 2, 2017 @ 09:45:12
  Author: spupykin
Revision: 226547

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

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

---+
 /PKGBUILD |   94 
 community-i686/PKGBUILD   |   46 -
 community-x86_64/PKGBUILD |   46 -
 3 files changed, 94 insertions(+), 92 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-05-02 09:44:55 UTC (rev 226546)
+++ community-i686/PKGBUILD 2017-05-02 09:45:12 UTC (rev 226547)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-
-pkgname=gnurl
-pkgver=7.53.1
-pkgrel=1
-pkgdesc="fork of libcurl, which is mostly for GNUnet"
-arch=(i686 x86_64)
-url="https://gnunet.org/gnurl;
-license=('MIT')
-depends=('gnutls')
-source=(https://gnunet.org/sites/default/files/gnurl-${pkgver}.tar.bz2)
-sha256sums=('cdac891a3253022b7fd75f6c71b279b5f35cc109f0b61d8068c79bca081802aa')
-
-build() {
-  cd "$srcdir/$pkgname-${pkgver}"
-  ./configure \
---prefix=/usr \
---mandir=/usr/share/man \
---disable-ldap \
---disable-ldaps \
---enable-ipv6 \
---enable-manual \
---enable-versioned-symbols \
---enable-threaded-resolver \
---with-gssapi \
---with-gnutls \
---without-ssl \
---without-libidn \
---with-random=/dev/urandom \
---with-ca-bundle=/etc/ssl/certs/ca-certificates.crt
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-${pkgver}"
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-
-  rm -rf "$pkgdir"/usr/share/man \
-"$pkgdir"/usr/bin/curl \
-"$pkgdir"/usr/share/aclocal
-  mkdir -p "$pkgdir"/usr/include/gnurl
-  mv "$pkgdir"/usr/include/curl "$pkgdir"/usr/include/gnurl/curl
-  sed -i 's|includedir=.*|includedir=/usr/include/gnurl|g' 
"$pkgdir"/usr/lib/pkgconfig/libgnurl.pc
-}

Copied: gnurl/repos/community-i686/PKGBUILD (from rev 226546, 
gnurl/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-05-02 09:45:12 UTC (rev 226547)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+
+pkgname=gnurl
+pkgver=7.54.0
+pkgrel=1
+pkgdesc="fork of libcurl, which is mostly for GNUnet"
+arch=(i686 x86_64)
+url="https://gnunet.org/gnurl;
+license=('MIT')
+depends=('gnutls')
+source=(https://gnunet.org/sites/default/files/gnurl-${pkgver}.tar.bz2)
+sha256sums=('407d2844a72f386cdf404cb4ab79792cd68546e544a11270349676dd982183f3')
+
+build() {
+  cd "$srcdir/$pkgname-${pkgver}"
+  ./buildconf
+  ./configure \
+--prefix=/usr \
+--mandir=/usr/share/man \
+--disable-ldap \
+--disable-ldaps \
+--enable-ipv6 \
+--enable-manual \
+--enable-versioned-symbols \
+--enable-threaded-resolver \
+--with-gssapi \
+--with-gnutls \
+--without-ssl \
+--without-libidn \
+--with-random=/dev/urandom \
+--with-ca-bundle=/etc/ssl/certs/ca-certificates.crt
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-${pkgver}"
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+
+  rm -rf "$pkgdir"/usr/share/man \
+"$pkgdir"/usr/bin/curl \
+"$pkgdir"/usr/share/aclocal
+  mkdir -p "$pkgdir"/usr/include/gnurl
+  mv "$pkgdir"/usr/include/curl "$pkgdir"/usr/include/gnurl/curl
+  sed -i 's|includedir=.*|includedir=/usr/include/gnurl|g' 
"$pkgdir"/usr/lib/pkgconfig/libgnurl.pc
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-05-02 09:44:55 UTC (rev 226546)
+++ community-x86_64/PKGBUILD   2017-05-02 09:45:12 UTC (rev 226547)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-
-pkgname=gnurl
-pkgver=7.53.1
-pkgrel=1
-pkgdesc="fork of libcurl, which is mostly for GNUnet"
-arch=(i686 x86_64)
-url="https://gnunet.org/gnurl;
-license=('MIT')
-depends=('gnutls')
-source=(https://gnunet.org/sites/default/files/gnurl-${pkgver}.tar.bz2)
-sha256sums=('cdac891a3253022b7fd75f6c71b279b5f35cc109f0b61d8068c79bca081802aa')
-
-build() {
-  cd "$srcdir/$pkgname-${pkgver}"
-  ./configure \
---prefix=/usr \
---mandir=/usr/share/man \
---disable-ldap \
---disable-ldaps \
---enable-ipv6 \
---enable-manual \
---enable-versioned-symbols \
---enable-threaded-resolver 

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

2017-05-02 Thread Sergej Pupykin
Date: Tuesday, May 2, 2017 @ 09:45:42
  Author: spupykin
Revision: 226550

upgpkg: rocksndiamonds 4.0.0.2-1

Modified:
  rocksndiamonds/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-02 09:45:33 UTC (rev 226549)
+++ PKGBUILD2017-05-02 09:45:42 UTC (rev 226550)
@@ -3,7 +3,7 @@
 # Contributor: Jacek Poplawski 
 
 pkgname=rocksndiamonds
-pkgver=4.0.0.1
+pkgver=4.0.0.2
 pkgrel=1
 pkgdesc="game similiar to Boulderdash with lots of levels"
 arch=(i686 x86_64)
@@ -13,7 +13,7 @@
 makedepends=('unzip' 'p7zip')
 
source=(http://www.artsoft.org/RELEASES/unix/rocksndiamonds/rocksndiamonds-$pkgver.tar.gz
rocksndiamonds.desktop)
-sha256sums=('8649a450419d9cee2ffd9463cae65e7ebcbbf48c2cc945a85d91bbcdd9be3249'
+sha256sums=('64dd10e8e543a2ff111475243c8360f4009bcf186af34f4c95d36eafe836f637'
 '90008d356dd30034287ca763a05feb482d7e0c4508572abb08b5215fcb4fe922')
 
 prepare() {


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

2017-05-02 Thread Sergej Pupykin
Date: Tuesday, May 2, 2017 @ 09:45:20
  Author: spupykin
Revision: 226548

upgpkg: mediawiki 1.28.2-1

Modified:
  mediawiki/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-02 09:45:12 UTC (rev 226547)
+++ PKGBUILD2017-05-02 09:45:20 UTC (rev 226548)
@@ -4,7 +4,7 @@
 
 pkgbase=mediawiki
 pkgname=('mediawiki' 'mediawiki-math')
-pkgver=1.28.1
+pkgver=1.28.2
 _basever=${pkgver%.*}
 _hash=1097ee7
 pkgrel=1
@@ -35,7 +35,7 @@
 
source=("https://releases.wikimedia.org/mediawiki/${_basever}/mediawiki-$pkgver.tar.gz"{,.sig}

"mediawiki-math-${_basever}.tar.gz::https://codeload.github.com/wikimedia/mediawiki-extensions-Math/legacy.tar.gz/REL${_basever/./_};
apache.example.conf)
-sha256sums=('69d15d2403304837f5afb32dc5a14d369f9ebcdb6206a91b7ec272ceab2c76e5'
+sha256sums=('295026bfa63316fcffdeeaf84703d41bedaf31eef2fbaa9381c5356392537664'
 'SKIP'
 '554d61a1d4ea383687dbdebd5c8b715cd846e9ca3f3e32e124a5559f7e0a5b76'
 'cfeff68331e930b6a93f166c12666ac59a84aa24334f94520eff3f988f37ce2b')


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

2017-05-02 Thread Sergej Pupykin
Date: Tuesday, May 2, 2017 @ 09:45:33
  Author: spupykin
Revision: 226549

archrelease: copy trunk to community-any

Added:
  mediawiki/repos/community-any/PKGBUILD
(from rev 226548, mediawiki/trunk/PKGBUILD)
  mediawiki/repos/community-any/apache.example.conf
(from rev 226548, mediawiki/trunk/apache.example.conf)
  mediawiki/repos/community-any/mediawiki.install
(from rev 226548, mediawiki/trunk/mediawiki.install)
Deleted:
  mediawiki/repos/community-any/PKGBUILD
  mediawiki/repos/community-any/apache.example.conf
  mediawiki/repos/community-any/mediawiki.install

-+
 PKGBUILD|  158 +-
 apache.example.conf |   14 ++--
 mediawiki.install   |   10 +--
 3 files changed, 91 insertions(+), 91 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-05-02 09:45:20 UTC (rev 226548)
+++ PKGBUILD2017-05-02 09:45:33 UTC (rev 226549)
@@ -1,79 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Sergej Pupykin 
-
-pkgbase=mediawiki
-pkgname=('mediawiki' 'mediawiki-math')
-pkgver=1.28.1
-_basever=${pkgver%.*}
-_hash=1097ee7
-pkgrel=1
-pkgdesc="MediaWiki engine"
-arch=('any')
-url="http://www.mediawiki.org/wiki/MediaWiki;
-# + http://www.mediawiki.org/wiki/Extension:Math
-license=("GPL")
-depends=('php')
-makedepends=('git')
-optdepends=('texvc: for math rendering'
-   'python2'
-   'pcre: for regular expressions support'
-   'php-intl: to handle Unicode normalization'
-#  'php-mysql: for MySQL database support'
-   'php-pgsql: for PostgreSQL database support'
-   'php-sqlite: for sqlite database support'
-   'php-apc: for cache support'
-   'php-xcache: for cache support'
-   'memcached: for cache support'
-   'php-gd: for thumbnails rendering'
-   'imagemagick: for thumbnails rendering'
-   'smtp-forwarder: for mail sending')
-install=mediawiki.install
-options=(!strip)
-validpgpkeys=('41B2ABE817ADD3E52BDA946F72BC1C5D23107F8A')
-#  
mediawiki-math-${_basever}::git+https://git.wikimedia.org/git/mediawiki/extensions/Math.git#branch=REL${_basever/./_}
-source=("https://releases.wikimedia.org/mediawiki/${_basever}/mediawiki-$pkgver.tar.gz"{,.sig}
-   
"mediawiki-math-${_basever}.tar.gz::https://codeload.github.com/wikimedia/mediawiki-extensions-Math/legacy.tar.gz/REL${_basever/./_};
-   apache.example.conf)
-sha256sums=('69d15d2403304837f5afb32dc5a14d369f9ebcdb6206a91b7ec272ceab2c76e5'
-'SKIP'
-'554d61a1d4ea383687dbdebd5c8b715cd846e9ca3f3e32e124a5559f7e0a5b76'
-'cfeff68331e930b6a93f166c12666ac59a84aa24334f94520eff3f988f37ce2b')
-
-package_mediawiki() {
-  cd "$srcdir"
-  install -vdm0755 "$pkgdir"/usr/share/webapps
-  install -vdm0755 "$pkgdir"/etc/webapps/mediawiki
-  cp -a $pkgname-$pkgver "$pkgdir"/usr/share/webapps/mediawiki
-
-  install -vDm0644 "$srcdir"/apache.example.conf 
"$pkgdir"/etc/webapps/mediawiki/apache.example.conf
-
-  # move cache and images to /var
-  install -vdm0755 -o http -g http "$pkgdir"/var/cache/mediawiki
-  install -vdm0755 -o http -g http "$pkgdir"/var/lib/mediawiki
-
-  cd "$pkgdir"/usr/share/webapps/mediawiki
-
-  mv cache/.htaccess "$pkgdir"/var/cache/mediawiki/
-  rmdir cache
-  ln -sf /var/cache/mediawiki cache
-
-  mv images/* "$pkgdir"/var/lib/mediawiki/
-  mv images/.htaccess "$pkgdir"/var/lib/mediawiki/
-  rmdir images
-  ln -sf /var/lib/mediawiki images
-}
-
-package_mediawiki-math() {
-  depends=('mediawiki' 'texvc')
-  optdepends=()
-  backup=()
-  pkgdesc="MediaWiki math extension"
-  unset install
-
-  cd "$srcdir"
-  install -vdm0755 "$pkgdir"/usr/share/webapps/mediawiki/extensions
-#  cp -a mediawiki-math-${_basever} 
"$pkgdir"/usr/share/webapps/mediawiki/extensions/Math
-  cp -a wikimedia-mediawiki-extensions-Math-${_hash} 
"$pkgdir"/usr/share/webapps/mediawiki/extensions/Math
-  ln -s /usr/bin/texvc 
"$pkgdir"/usr/share/webapps/mediawiki/extensions/Math/math/texvc
-}

Copied: mediawiki/repos/community-any/PKGBUILD (from rev 226548, 
mediawiki/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-05-02 09:45:33 UTC (rev 226549)
@@ -0,0 +1,79 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Sergej Pupykin 
+
+pkgbase=mediawiki
+pkgname=('mediawiki' 'mediawiki-math')
+pkgver=1.28.2
+_basever=${pkgver%.*}
+_hash=1097ee7
+pkgrel=1
+pkgdesc="MediaWiki engine"
+arch=('any')
+url="http://www.mediawiki.org/wiki/MediaWiki;
+# + http://www.mediawiki.org/wiki/Extension:Math
+license=("GPL")
+depends=('php')
+makedepends=('git')
+optdepends=('texvc: for math rendering'
+   'python2'
+   'pcre: for regular expressions support'
+   'php-intl: 

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

2017-05-02 Thread Sergej Pupykin
Date: Tuesday, May 2, 2017 @ 09:44:55
  Author: spupykin
Revision: 226546

upgpkg: gnurl 7.54.0-1

Modified:
  gnurl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-02 09:44:47 UTC (rev 226545)
+++ PKGBUILD2017-05-02 09:44:55 UTC (rev 226546)
@@ -2,7 +2,7 @@
 # Maintainer: Sergej Pupykin 
 
 pkgname=gnurl
-pkgver=7.53.1
+pkgver=7.54.0
 pkgrel=1
 pkgdesc="fork of libcurl, which is mostly for GNUnet"
 arch=(i686 x86_64)
@@ -10,10 +10,11 @@
 license=('MIT')
 depends=('gnutls')
 source=(https://gnunet.org/sites/default/files/gnurl-${pkgver}.tar.bz2)
-sha256sums=('cdac891a3253022b7fd75f6c71b279b5f35cc109f0b61d8068c79bca081802aa')
+sha256sums=('407d2844a72f386cdf404cb4ab79792cd68546e544a11270349676dd982183f3')
 
 build() {
   cd "$srcdir/$pkgname-${pkgver}"
+  ./buildconf
   ./configure \
 --prefix=/usr \
 --mandir=/usr/share/man \


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

2017-05-02 Thread Sergej Pupykin
Date: Tuesday, May 2, 2017 @ 09:44:47
  Author: spupykin
Revision: 226545

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |   68 +
 emms.install |   30 -
 2 files changed, 50 insertions(+), 48 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-05-02 09:44:37 UTC (rev 226544)
+++ PKGBUILD2017-05-02 09:44:47 UTC (rev 226545)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor:  Gour 
-
-pkgname=emms
-epoch=1
-pkgver=4.2
-pkgrel=1
-pkgdesc="The Emacs Multimedia System"
-url="http://www.gnu.org/software/emms/;
-arch=('any')
-license=('GPL3')
-depends=('emacs')
-makedepends=('git')
-install=${pkgname}.install
-source=(http://ftp.gnu.org/gnu/emms/emms-$pkgver.tar.gz)
-#source=(git://git.sv.gnu.org/emms.git)
-md5sums=('ba47fd376fdc416587d04f75f31efbd2')
-
-build() {
-  cd "$srcdir"/$pkgname-$pkgver
-  sed -i \
--e "s|/usr/local|/usr|g" \
--e "s|/info|/share/info|g" \
-Makefile
-  make
-}
-
-package() {
-  cd "$srcdir"/$pkgname-$pkgver
-  mkdir -p "$pkgdir"/usr/share/{man/man1,info}
-  make DESTDIR="$pkgdir" install INSTALLINFO=/usr/bin/true
-}

Copied: emms/repos/community-any/PKGBUILD (from rev 226544, emms/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-05-02 09:44:47 UTC (rev 226545)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor:  Gour 
+
+pkgname=emms
+epoch=1
+pkgver=4.3
+pkgrel=1
+pkgdesc="The Emacs Multimedia System"
+url="http://www.gnu.org/software/emms/;
+arch=('any')
+license=('GPL3')
+depends=('emacs')
+makedepends=('git')
+install=${pkgname}.install
+validpgpkeys=('691BF9D0EEC472730726EB7869725A21D60EEC42')
+source=(https://ftp.gnu.org/gnu/emms/emms-$pkgver.tar.gz{,.sig})
+#source=(git://git.sv.gnu.org/emms.git)
+sha256sums=('00112d631eee0cfee80a85c048bfbf7c2d25886067ee02152376208ae87c2c36'
+'SKIP')
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  sed -i \
+-e "s|/usr/local|/usr|g" \
+-e "s|/info|/share/info|g" \
+Makefile
+  make
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+  mkdir -p "$pkgdir"/usr/share/{man/man1,info}
+  make DESTDIR="$pkgdir" install INSTALLINFO=/usr/bin/true
+}

Deleted: emms.install
===
--- emms.install2017-05-02 09:44:37 UTC (rev 226544)
+++ emms.install2017-05-02 09:44:47 UTC (rev 226545)
@@ -1,15 +0,0 @@
-post_install() {
-  cat << EOF
-==> In order to use EMMS,  add the following lines to your ~/.emacs file:
-
-(require 'emms-setup)
-(emms-standard)
-(emms-default-players)
-
-For further configuration see the manual.
-EOF
-}
-
-post_upgrade() {
-  post_install $1
-}

Copied: emms/repos/community-any/emms.install (from rev 226544, 
emms/trunk/emms.install)
===
--- emms.install(rev 0)
+++ emms.install2017-05-02 09:44:47 UTC (rev 226545)
@@ -0,0 +1,15 @@
+post_install() {
+  cat << EOF
+==> In order to use EMMS,  add the following lines to your ~/.emacs file:
+
+(require 'emms-setup)
+(emms-standard)
+(emms-default-players)
+
+For further configuration see the manual.
+EOF
+}
+
+post_upgrade() {
+  post_install $1
+}


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

2017-05-02 Thread Sergej Pupykin
Date: Tuesday, May 2, 2017 @ 09:44:12
  Author: spupykin
Revision: 226542

upgpkg: dwdiff 2.1.1-1

Modified:
  dwdiff/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-02 09:44:03 UTC (rev 226541)
+++ PKGBUILD2017-05-02 09:44:12 UTC (rev 226542)
@@ -2,8 +2,8 @@
 # Maintainer: Sergej Pupykin 
 
 pkgname=dwdiff
-pkgver=2.1.0
-pkgrel=2
+pkgver=2.1.1
+pkgrel=1
 pkgdesc="A front-end for the diff program that operates at the word level 
instead of the line level"
 arch=('i686' 'x86_64')
 url="http://os.ghalkes.nl/dwdiff.html;
@@ -10,7 +10,7 @@
 depends=('diffutils' 'icu')
 license=('GPL')
 source=("http://os.ghalkes.nl/dist/$pkgname-$pkgver.tar.bz2;)
-sha256sums=('45308f2f07c08c75c6ebd1eae3e3dcf7f836e5af1467cefc1b4829777c07743a')
+sha256sums=('9745860faad6cb58744c7c45d16c0c7e222896c80d0cd7208dd36126d1a98c8b')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"


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

2017-05-02 Thread Sergej Pupykin
Date: Tuesday, May 2, 2017 @ 09:44:30
  Author: spupykin
Revision: 226543

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-05-02 09:44:12 UTC (rev 226542)
+++ community-i686/PKGBUILD 2017-05-02 09:44:30 UTC (rev 226543)
@@ -1,24 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-
-pkgname=dwdiff
-pkgver=2.1.0
-pkgrel=2
-pkgdesc="A front-end for the diff program that operates at the word level 
instead of the line level"
-arch=('i686' 'x86_64')
-url="http://os.ghalkes.nl/dwdiff.html;
-depends=('diffutils' 'icu')
-license=('GPL')
-source=("http://os.ghalkes.nl/dist/$pkgname-$pkgver.tar.bz2;)
-sha256sums=('45308f2f07c08c75c6ebd1eae3e3dcf7f836e5af1467cefc1b4829777c07743a')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ./configure --prefix=/usr --without-dwfilter
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make prefix="$pkgdir"/usr install
-}

Copied: dwdiff/repos/community-i686/PKGBUILD (from rev 226542, 
dwdiff/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-05-02 09:44:30 UTC (rev 226543)
@@ -0,0 +1,24 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+
+pkgname=dwdiff
+pkgver=2.1.1
+pkgrel=1
+pkgdesc="A front-end for the diff program that operates at the word level 
instead of the line level"
+arch=('i686' 'x86_64')
+url="http://os.ghalkes.nl/dwdiff.html;
+depends=('diffutils' 'icu')
+license=('GPL')
+source=("http://os.ghalkes.nl/dist/$pkgname-$pkgver.tar.bz2;)
+sha256sums=('9745860faad6cb58744c7c45d16c0c7e222896c80d0cd7208dd36126d1a98c8b')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  ./configure --prefix=/usr --without-dwfilter
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make prefix="$pkgdir"/usr install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-05-02 09:44:12 UTC (rev 226542)
+++ community-x86_64/PKGBUILD   2017-05-02 09:44:30 UTC (rev 226543)
@@ -1,24 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-
-pkgname=dwdiff
-pkgver=2.1.0
-pkgrel=2
-pkgdesc="A front-end for the diff program that operates at the word level 
instead of the line level"
-arch=('i686' 'x86_64')
-url="http://os.ghalkes.nl/dwdiff.html;
-depends=('diffutils' 'icu')
-license=('GPL')
-source=("http://os.ghalkes.nl/dist/$pkgname-$pkgver.tar.bz2;)
-sha256sums=('45308f2f07c08c75c6ebd1eae3e3dcf7f836e5af1467cefc1b4829777c07743a')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ./configure --prefix=/usr --without-dwfilter
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make prefix="$pkgdir"/usr install
-}

Copied: dwdiff/repos/community-x86_64/PKGBUILD (from rev 226542, 
dwdiff/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-05-02 09:44:30 UTC (rev 226543)
@@ -0,0 +1,24 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+
+pkgname=dwdiff
+pkgver=2.1.1
+pkgrel=1
+pkgdesc="A front-end for the diff program that operates at the word level 
instead of the line level"
+arch=('i686' 'x86_64')
+url="http://os.ghalkes.nl/dwdiff.html;
+depends=('diffutils' 'icu')
+license=('GPL')
+source=("http://os.ghalkes.nl/dist/$pkgname-$pkgver.tar.bz2;)
+sha256sums=('9745860faad6cb58744c7c45d16c0c7e222896c80d0cd7208dd36126d1a98c8b')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  ./configure --prefix=/usr --without-dwfilter
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make prefix="$pkgdir"/usr install
+}


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

2017-05-02 Thread Sergej Pupykin
Date: Tuesday, May 2, 2017 @ 09:44:03
  Author: spupykin
Revision: 226541

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-05-02 09:43:43 UTC (rev 226540)
+++ community-i686/PKGBUILD 2017-05-02 09:44:03 UTC (rev 226541)
@@ -1,28 +0,0 @@
-# $Id$
-# Contributor: Thomas S Hatch 
-# Contributor: Jon Nordby 
-
-pkgname=augeas
-pkgver=1.7.0
-pkgrel=1
-pkgdesc="A configuration editing tool that parses config files and transforms 
them into a tree"
-arch=('i686' 'x86_64')
-url="http://augeas.net;
-license=('LGPL')
-depends=('libxml2' 'gcc-libs')
-validpgpkeys=('AED6E2A185EEB379F17476D2E012D07AD0E3CC30')
-source=(http://download.augeas.net/augeas-$pkgver.tar.gz{,.sig})
-sha256sums=('b9315575d07f7ba28ca2f9f60b4987dfe77b5970c98b59dc6ca7873fc4979763'
-'SKIP')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  sed -i 's|Requires:.*|Requires: libxml-2.0|' augeas.pc.in
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}

Copied: augeas/repos/community-i686/PKGBUILD (from rev 226540, 
augeas/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-05-02 09:44:03 UTC (rev 226541)
@@ -0,0 +1,28 @@
+# $Id$
+# Contributor: Thomas S Hatch 
+# Contributor: Jon Nordby 
+
+pkgname=augeas
+pkgver=1.8.0
+pkgrel=1
+pkgdesc="A configuration editing tool that parses config files and transforms 
them into a tree"
+arch=('i686' 'x86_64')
+url="http://augeas.net;
+license=('LGPL')
+depends=('libxml2' 'gcc-libs')
+validpgpkeys=('AED6E2A185EEB379F17476D2E012D07AD0E3CC30')
+source=(http://download.augeas.net/augeas-$pkgver.tar.gz{,.sig})
+sha256sums=('515ce904138d99ff51d45ba7ed0d809bdee6c42d3bc538c8c820e010392d4cc5'
+'SKIP')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  sed -i 's|Requires:.*|Requires: libxml-2.0|' augeas.pc.in
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-05-02 09:43:43 UTC (rev 226540)
+++ community-x86_64/PKGBUILD   2017-05-02 09:44:03 UTC (rev 226541)
@@ -1,28 +0,0 @@
-# $Id$
-# Contributor: Thomas S Hatch 
-# Contributor: Jon Nordby 
-
-pkgname=augeas
-pkgver=1.7.0
-pkgrel=1
-pkgdesc="A configuration editing tool that parses config files and transforms 
them into a tree"
-arch=('i686' 'x86_64')
-url="http://augeas.net;
-license=('LGPL')
-depends=('libxml2' 'gcc-libs')
-validpgpkeys=('AED6E2A185EEB379F17476D2E012D07AD0E3CC30')
-source=(http://download.augeas.net/augeas-$pkgver.tar.gz{,.sig})
-sha256sums=('b9315575d07f7ba28ca2f9f60b4987dfe77b5970c98b59dc6ca7873fc4979763'
-'SKIP')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  sed -i 's|Requires:.*|Requires: libxml-2.0|' augeas.pc.in
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}

Copied: augeas/repos/community-x86_64/PKGBUILD (from rev 226540, 
augeas/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-05-02 09:44:03 UTC (rev 226541)
@@ -0,0 +1,28 @@
+# $Id$
+# Contributor: Thomas S Hatch 
+# Contributor: Jon Nordby 
+
+pkgname=augeas
+pkgver=1.8.0
+pkgrel=1
+pkgdesc="A configuration editing tool that parses config files and transforms 
them into a tree"
+arch=('i686' 'x86_64')
+url="http://augeas.net;
+license=('LGPL')
+depends=('libxml2' 'gcc-libs')
+validpgpkeys=('AED6E2A185EEB379F17476D2E012D07AD0E3CC30')
+source=(http://download.augeas.net/augeas-$pkgver.tar.gz{,.sig})
+sha256sums=('515ce904138d99ff51d45ba7ed0d809bdee6c42d3bc538c8c820e010392d4cc5'
+'SKIP')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  sed -i 's|Requires:.*|Requires: libxml-2.0|' augeas.pc.in
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make 

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

2017-05-02 Thread Sergej Pupykin
Date: Tuesday, May 2, 2017 @ 09:44:37
  Author: spupykin
Revision: 226544

upgpkg: emms 1:4.3-1

Modified:
  emms/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-02 09:44:30 UTC (rev 226543)
+++ PKGBUILD2017-05-02 09:44:37 UTC (rev 226544)
@@ -4,7 +4,7 @@
 
 pkgname=emms
 epoch=1
-pkgver=4.2
+pkgver=4.3
 pkgrel=1
 pkgdesc="The Emacs Multimedia System"
 url="http://www.gnu.org/software/emms/;
@@ -16,7 +16,7 @@
 validpgpkeys=('691BF9D0EEC472730726EB7869725A21D60EEC42')
 source=(https://ftp.gnu.org/gnu/emms/emms-$pkgver.tar.gz{,.sig})
 #source=(git://git.sv.gnu.org/emms.git)
-sha256sums=('4258ede323dc68679f8fb7216932b1184a47ef7059b030bb750ffdf288f149f5'
+sha256sums=('00112d631eee0cfee80a85c048bfbf7c2d25886067ee02152376208ae87c2c36'
 'SKIP')
 
 build() {


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

2017-05-02 Thread Sergej Pupykin
Date: Tuesday, May 2, 2017 @ 09:43:43
  Author: spupykin
Revision: 226540

upgpkg: augeas 1.8.0-1

Modified:
  augeas/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-02 09:29:07 UTC (rev 226539)
+++ PKGBUILD2017-05-02 09:43:43 UTC (rev 226540)
@@ -3,7 +3,7 @@
 # Contributor: Jon Nordby 
 
 pkgname=augeas
-pkgver=1.7.0
+pkgver=1.8.0
 pkgrel=1
 pkgdesc="A configuration editing tool that parses config files and transforms 
them into a tree"
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 depends=('libxml2' 'gcc-libs')
 validpgpkeys=('AED6E2A185EEB379F17476D2E012D07AD0E3CC30')
 source=(http://download.augeas.net/augeas-$pkgver.tar.gz{,.sig})
-sha256sums=('b9315575d07f7ba28ca2f9f60b4987dfe77b5970c98b59dc6ca7873fc4979763'
+sha256sums=('515ce904138d99ff51d45ba7ed0d809bdee6c42d3bc538c8c820e010392d4cc5'
 'SKIP')
 
 build() {


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

2017-05-02 Thread Sven-Hendrik Haase
Date: Tuesday, May 2, 2017 @ 09:28:39
  Author: svenstaro
Revision: 226537

upgpkg: neovim 0.2.0-1

Modified:
  neovim/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-02 09:28:35 UTC (rev 226536)
+++ PKGBUILD2017-05-02 09:28:39 UTC (rev 226537)
@@ -3,8 +3,8 @@
 # Contributor: Florian Hahn 
 
 pkgname=neovim
-pkgver=0.1.7
-pkgrel=3
+pkgver=0.2.0
+pkgrel=1
 pkgdesc='Fork of Vim aiming to improve user experience, plugins, and GUIs'
 arch=('i686' 'x86_64')
 url='https://neovim.io'
@@ -16,7 +16,7 @@
 'xclip: for clipboard support (or xsel) (see :help nvim-clipboard)'
 'xsel: for clipboard support (or xclip) (see :help 
nvim-clipboard)')
 source=("https://github.com/neovim/neovim/archive/v${pkgver}.tar.gz;)
-sha256sums=('d8f885d019b1ad608f36ae23b8f1b15b7e33585e16f7514666ab6c9809bb4b7e')
+sha256sums=('72e263f9d23fe60403d53a52d4c95026b0be428c1b9c02b80ab55166ea3f62b5')
 install=neovim.install
 
 build() {


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

2017-05-02 Thread Felix Yan
Date: Tuesday, May 2, 2017 @ 09:28:35
  Author: felixonmars
Revision: 226536

upgpkg: git-annex 6.20170321-35

rebuild with mwc-random,0.13.6.0

Modified:
  git-annex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-02 09:12:24 UTC (rev 226535)
+++ PKGBUILD2017-05-02 09:28:35 UTC (rev 226536)
@@ -4,7 +4,7 @@
 
 pkgname=git-annex
 pkgver=6.20170321
-pkgrel=34
+pkgrel=35
 pkgdesc="Manage files with git, without checking their contents into git"
 url="http://git-annex.branchable.com/;
 license=("AGPL3")


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

2017-05-02 Thread Felix Yan
Date: Tuesday, May 2, 2017 @ 09:29:07
  Author: felixonmars
Revision: 226539

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

Added:
  git-annex/repos/community-staging-i686/
  git-annex/repos/community-staging-i686/PKGBUILD
(from rev 226537, git-annex/trunk/PKGBUILD)
  git-annex/repos/community-staging-x86_64/
  git-annex/repos/community-staging-x86_64/PKGBUILD
(from rev 226538, git-annex/trunk/PKGBUILD)

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

Copied: git-annex/repos/community-staging-i686/PKGBUILD (from rev 226537, 
git-annex/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-02 09:29:07 UTC (rev 226539)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=git-annex
+pkgver=6.20170321
+pkgrel=35
+pkgdesc="Manage files with git, without checking their contents into git"
+url="http://git-annex.branchable.com/;
+license=("AGPL3")
+arch=('i686' 'x86_64')
+depends=('git' 'rsync' 'libxml2' 'gsasl' 'file')
+makedepends=("ghc=8.0.1" "git" "haskell-aeson" "haskell-async" "haskell-aws" 
"haskell-blaze-builder"
+ "haskell-bloomfilter" "haskell-byteable" 
"haskell-case-insensitive"
+ "haskell-clientsession" "haskell-concurrent-output" 
"haskell-conduit"
+ "haskell-crypto-api" "haskell-cryptonite" "haskell-data-default" 
"haskell-dav"
+ "haskell-dbus" "haskell-disk-free-space" "haskell-dlist" 
"haskell-dns"
+ "haskell-edit-distance" "haskell-esqueleto" "haskell-exceptions" 
"haskell-fdo-notify"
+ "haskell-feed" "haskell-hinotify" "haskell-hslogger" 
"haskell-http-client"
+ "haskell-http-conduit" "haskell-http-types" "haskell-ifelse" 
"haskell-magic"
+ "haskell-missingh" "haskell-monad-control" "haskell-monad-logger" 
"haskell-mountpoints"
+ "haskell-mtl" "haskell-network" "haskell-network-info" 
"haskell-network-multicast"
+ "haskell-network-uri" "haskell-old-locale" 
"haskell-optparse-applicative"
+ "haskell-path-pieces" "haskell-persistent" 
"haskell-persistent-sqlite"
+ "haskell-persistent-template" "haskell-quickcheck" 
"haskell-random"
+ "haskell-regex-tdfa" "haskell-resourcet" "haskell-safesemaphore" 
"haskell-sandi"
+ "haskell-securemem" "haskell-shakespeare" "haskell-socks" 
"haskell-stm"
+ "haskell-stm-chans" "haskell-tasty" "haskell-tasty-hunit" 
"haskell-tasty-quickcheck"
+ "haskell-tasty-rerun" "haskell-text" "haskell-torrent" 
"haskell-unix-compat"
+ "haskell-unordered-containers" "haskell-utf8-string" 
"haskell-uuid" "haskell-wai"
+ "haskell-wai-extra" "haskell-warp" "haskell-warp-tls" 
"haskell-yesod"
+ "haskell-yesod-core" "haskell-yesod-default" "haskell-yesod-form"
+ "haskell-yesod-static")
+source=("git+https://git.joeyh.name/git/git-annex.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build() {
+  cd git-annex
+  
+  runhaskell Setup configure -O --prefix=/usr 
--docdir="/usr/share/doc/$pkgname" \
+-fnetwork-uri -fconcurrentoutput -ftorrentparser \
+-ftestsuite -f-androidsplice -f-android -fproduction -fpairing -fwebapp \
+-fassistant -fwebdav -fs3 -f-benchmark -fdbus -fmagicmime
+  runhaskell Setup build
+}
+
+package() {
+  cd git-annex
+  runhaskell Setup copy --destdir="$pkgdir"
+  make DESTDIR="$pkgdir" install-misc
+
+  rm "$pkgdir"/usr/share/doc/git-annex/COPYRIGHT
+  rmdir "$pkgdir"/usr/share/doc/git-annex "$pkgdir"/usr/share/doc
+}

Copied: git-annex/repos/community-staging-x86_64/PKGBUILD (from rev 226538, 
git-annex/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-02 09:29:07 UTC (rev 226539)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=git-annex
+pkgver=6.20170321
+pkgrel=35
+pkgdesc="Manage files with git, without checking their contents into git"
+url="http://git-annex.branchable.com/;
+license=("AGPL3")
+arch=('i686' 'x86_64')
+depends=('git' 'rsync' 'libxml2' 'gsasl' 'file')
+makedepends=("ghc=8.0.1" "git" "haskell-aeson" "haskell-async" "haskell-aws" 
"haskell-blaze-builder"
+ "haskell-bloomfilter" "haskell-byteable" 
"haskell-case-insensitive"
+ "haskell-clientsession" "haskell-concurrent-output" 
"haskell-conduit"
+ "haskell-crypto-api" "haskell-cryptonite" 

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

2017-05-02 Thread Sven-Hendrik Haase
Date: Tuesday, May 2, 2017 @ 09:28:49
  Author: svenstaro
Revision: 226538

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

Added:
  neovim/repos/community-i686/PKGBUILD
(from rev 226537, neovim/trunk/PKGBUILD)
  neovim/repos/community-i686/neovim.install
(from rev 226537, neovim/trunk/neovim.install)
  neovim/repos/community-x86_64/PKGBUILD
(from rev 226537, neovim/trunk/PKGBUILD)
  neovim/repos/community-x86_64/neovim.install
(from rev 226537, neovim/trunk/neovim.install)
Deleted:
  neovim/repos/community-i686/PKGBUILD
  neovim/repos/community-i686/neovim.install
  neovim/repos/community-x86_64/PKGBUILD
  neovim/repos/community-x86_64/neovim.install

-+
 /PKGBUILD   |   90 ++
 /neovim.install |   20 
 community-i686/PKGBUILD |   45 ---
 community-i686/neovim.install   |   10 
 community-x86_64/PKGBUILD   |   45 ---
 community-x86_64/neovim.install |   10 
 6 files changed, 110 insertions(+), 110 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-05-02 09:28:39 UTC (rev 226537)
+++ community-i686/PKGBUILD 2017-05-02 09:28:49 UTC (rev 226538)
@@ -1,45 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Florian Walch 
-# Contributor: Florian Hahn 
-
-pkgname=neovim
-pkgver=0.1.7
-pkgrel=3
-pkgdesc='Fork of Vim aiming to improve user experience, plugins, and GUIs'
-arch=('i686' 'x86_64')
-url='https://neovim.io'
-license=('custom:neovim')
-depends=('jemalloc' 'libtermkey' 'libuv' 'msgpack-c' 'unibilium' 'libvterm')
-makedepends=('cmake' 'luajit' 'lua51-mpack' 'lua51-lpeg' 'gperf')
-optdepends=('python2-neovim: for Python 2 plugin support (see :help 
nvim-python)'
-'python-neovim: for Python 3 plugin support (see :help 
nvim-python)'
-'xclip: for clipboard support (or xsel) (see :help nvim-clipboard)'
-'xsel: for clipboard support (or xclip) (see :help 
nvim-clipboard)')
-source=("https://github.com/neovim/neovim/archive/v${pkgver}.tar.gz;)
-sha256sums=('d8f885d019b1ad608f36ae23b8f1b15b7e33585e16f7514666ab6c9809bb4b7e')
-install=neovim.install
-
-build() {
-  mkdir -p "${srcdir}/build"
-  cd "${srcdir}/build"
-
-  cmake "../neovim-${pkgver}" \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DENABLE_JEMALLOC=ON
-  make
-}
-
-check() {
-  cd "${srcdir}/build"
-  ./bin/nvim --version
-  ./bin/nvim --headless -u NONE -i NONE -c ':quit'
-}
-
-package() {
-  cd "${srcdir}/build"
-  make DESTDIR="${pkgdir}" install
-  install -Dm644 "${srcdir}/neovim-${pkgver}"/LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-# vim:set sw=2 sts=2 et:

Copied: neovim/repos/community-i686/PKGBUILD (from rev 226537, 
neovim/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-05-02 09:28:49 UTC (rev 226538)
@@ -0,0 +1,45 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Florian Walch 
+# Contributor: Florian Hahn 
+
+pkgname=neovim
+pkgver=0.2.0
+pkgrel=1
+pkgdesc='Fork of Vim aiming to improve user experience, plugins, and GUIs'
+arch=('i686' 'x86_64')
+url='https://neovim.io'
+license=('custom:neovim')
+depends=('jemalloc' 'libtermkey' 'libuv' 'msgpack-c' 'unibilium' 'libvterm')
+makedepends=('cmake' 'luajit' 'lua51-mpack' 'lua51-lpeg' 'gperf')
+optdepends=('python2-neovim: for Python 2 plugin support (see :help 
nvim-python)'
+'python-neovim: for Python 3 plugin support (see :help 
nvim-python)'
+'xclip: for clipboard support (or xsel) (see :help nvim-clipboard)'
+'xsel: for clipboard support (or xclip) (see :help 
nvim-clipboard)')
+source=("https://github.com/neovim/neovim/archive/v${pkgver}.tar.gz;)
+sha256sums=('72e263f9d23fe60403d53a52d4c95026b0be428c1b9c02b80ab55166ea3f62b5')
+install=neovim.install
+
+build() {
+  mkdir -p "${srcdir}/build"
+  cd "${srcdir}/build"
+
+  cmake "../neovim-${pkgver}" \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DENABLE_JEMALLOC=ON
+  make
+}
+
+check() {
+  cd "${srcdir}/build"
+  ./bin/nvim --version
+  ./bin/nvim --headless -u NONE -i NONE -c ':quit'
+}
+
+package() {
+  cd "${srcdir}/build"
+  make DESTDIR="${pkgdir}" install
+  install -Dm644 "${srcdir}/neovim-${pkgver}"/LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+# vim:set sw=2 sts=2 et:

Deleted: community-i686/neovim.install
===
--- community-i686/neovim.install   2017-05-02 09:28:39 UTC (rev 226537)
+++ 

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

2017-05-02 Thread Antonio Rojas
Date: Tuesday, May 2, 2017 @ 09:13:30
  Author: arojas
Revision: 295176

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

Added:
  libkgapi/repos/testing-i686/
  libkgapi/repos/testing-i686/PKGBUILD
(from rev 295175, libkgapi/trunk/PKGBUILD)
  libkgapi/repos/testing-x86_64/
  libkgapi/repos/testing-x86_64/PKGBUILD
(from rev 295175, libkgapi/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   42 ++
 testing-x86_64/PKGBUILD |   42 ++
 2 files changed, 84 insertions(+)

Copied: libkgapi/repos/testing-i686/PKGBUILD (from rev 295175, 
libkgapi/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-05-02 09:13:30 UTC (rev 295176)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=libkgapi
+pkgver=17.04.0
+pkgrel=3
+pkgdesc="A KDE-based library for accessing various Google services via their 
public API"
+url='https://www.kde.org/'
+arch=(i686 x86_64)
+license=(GPL LGPL FDL)
+depends=(kcalcore kcontacts qt5-webengine)
+makedepends=(extra-cmake-modules kdoctools qt5-tools kdesignerplugin python)
+source=("https://download.kde.org/unstable/applications/${pkgver}/src/${pkgname}-${pkgver}.tar.xz"{,.sig}
+
libkgapi-fix-auth.patch::"https://cgit.kde.org/libkgapi.git/patch/?id=68b89bce;)
+sha256sums=('8cc057ad5f88dee2a218b3a3aaf09720312a3fbb9a4a06b2aeb6706818557c54'
+'SKIP'
+'5903158fefff99bc11284de3653c23b32239b99e93d34b75d9fe6c61cb6a138e')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7) # Albert Astals Cid 

+
+prepare() {
+  mkdir -p build
+
+# Fix authentication
+  cd $pkgname-$pkgver
+  patch -p1 -i ../libkgapi-fix-auth.patch
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Copied: libkgapi/repos/testing-x86_64/PKGBUILD (from rev 295175, 
libkgapi/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-05-02 09:13:30 UTC (rev 295176)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=libkgapi
+pkgver=17.04.0
+pkgrel=3
+pkgdesc="A KDE-based library for accessing various Google services via their 
public API"
+url='https://www.kde.org/'
+arch=(i686 x86_64)
+license=(GPL LGPL FDL)
+depends=(kcalcore kcontacts qt5-webengine)
+makedepends=(extra-cmake-modules kdoctools qt5-tools kdesignerplugin python)
+source=("https://download.kde.org/unstable/applications/${pkgver}/src/${pkgname}-${pkgver}.tar.xz"{,.sig}
+
libkgapi-fix-auth.patch::"https://cgit.kde.org/libkgapi.git/patch/?id=68b89bce;)
+sha256sums=('8cc057ad5f88dee2a218b3a3aaf09720312a3fbb9a4a06b2aeb6706818557c54'
+'SKIP'
+'5903158fefff99bc11284de3653c23b32239b99e93d34b75d9fe6c61cb6a138e')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7) # Albert Astals Cid 

+
+prepare() {
+  mkdir -p build
+
+# Fix authentication
+  cd $pkgname-$pkgver
+  patch -p1 -i ../libkgapi-fix-auth.patch
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2017-05-02 Thread Antonio Rojas
Date: Tuesday, May 2, 2017 @ 09:12:41
  Author: arojas
Revision: 295175

Port to new Google authentication page

Modified:
  libkgapi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-02 06:39:08 UTC (rev 295174)
+++ PKGBUILD2017-05-02 09:12:41 UTC (rev 295175)
@@ -4,7 +4,7 @@
 
 pkgname=libkgapi
 pkgver=17.04.0
-pkgrel=2
+pkgrel=3
 pkgdesc="A KDE-based library for accessing various Google services via their 
public API"
 url='https://www.kde.org/'
 arch=(i686 x86_64)
@@ -11,13 +11,19 @@
 license=(GPL LGPL FDL)
 depends=(kcalcore kcontacts qt5-webengine)
 makedepends=(extra-cmake-modules kdoctools qt5-tools kdesignerplugin python)
-source=("https://download.kde.org/unstable/applications/${pkgver}/src/${pkgname}-${pkgver}.tar.xz"{,.sig})
+source=("https://download.kde.org/unstable/applications/${pkgver}/src/${pkgname}-${pkgver}.tar.xz"{,.sig}
+
libkgapi-fix-auth.patch::"https://cgit.kde.org/libkgapi.git/patch/?id=68b89bce;)
 sha256sums=('8cc057ad5f88dee2a218b3a3aaf09720312a3fbb9a4a06b2aeb6706818557c54'
-'SKIP')
+'SKIP'
+'5903158fefff99bc11284de3653c23b32239b99e93d34b75d9fe6c61cb6a138e')
 validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7) # Albert Astals Cid 

 
 prepare() {
   mkdir -p build
+
+# Fix authentication
+  cd $pkgname-$pkgver
+  patch -p1 -i ../libkgapi-fix-auth.patch
 }
 
 build() {


[arch-commits] Commit in haskell-yesod-static/repos (4 files)

2017-05-02 Thread Felix Yan
Date: Tuesday, May 2, 2017 @ 09:12:24
  Author: felixonmars
Revision: 226535

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

Added:
  haskell-yesod-static/repos/community-staging-i686/
  haskell-yesod-static/repos/community-staging-i686/PKGBUILD
(from rev 226534, haskell-yesod-static/trunk/PKGBUILD)
  haskell-yesod-static/repos/community-staging-x86_64/
  haskell-yesod-static/repos/community-staging-x86_64/PKGBUILD
(from rev 226534, haskell-yesod-static/trunk/PKGBUILD)

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

Copied: haskell-yesod-static/repos/community-staging-i686/PKGBUILD (from rev 
226534, haskell-yesod-static/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-02 09:12:24 UTC (rev 226535)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-static
+pkgname=haskell-yesod-static
+pkgver=1.5.2
+pkgrel=30
+pkgdesc="Static file serving subsite for Yesod Web Framework."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-async" "haskell-attoparsec" 
"haskell-base64-bytestring"
+ "haskell-blaze-builder" "haskell-byteable" "haskell-conduit" 
"haskell-conduit-extra"
+ "haskell-cryptohash" "haskell-cryptohash-conduit" "haskell-css-text" 
"haskell-data-default"
+ "haskell-exceptions" "haskell-file-embed" "haskell-hashable" 
"haskell-hjsmin"
+ "haskell-http-types" "haskell-mime-types" "haskell-old-time" 
"haskell-resourcet"
+ "haskell-text" "haskell-unix-compat" "haskell-unordered-containers" 
"haskell-wai"
+ "haskell-wai-app-static" "haskell-yesod-core")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('b949c5f6087d9e32c7ff2f41ed647b1df605bbe1ce2cbcfe59cc46dc4a72099e')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-yesod-static/repos/community-staging-x86_64/PKGBUILD (from rev 
226534, haskell-yesod-static/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-02 09:12:24 UTC (rev 226535)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-static
+pkgname=haskell-yesod-static
+pkgver=1.5.2
+pkgrel=30
+pkgdesc="Static file serving subsite for Yesod Web Framework."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-async" "haskell-attoparsec" 
"haskell-base64-bytestring"
+ "haskell-blaze-builder" "haskell-byteable" "haskell-conduit" 
"haskell-conduit-extra"
+ "haskell-cryptohash" "haskell-cryptohash-conduit" "haskell-css-text" 
"haskell-data-default"
+ "haskell-exceptions" "haskell-file-embed" "haskell-hashable" 
"haskell-hjsmin"
+ "haskell-http-types" "haskell-mime-types" "haskell-old-time" 
"haskell-resourcet"
+ "haskell-text" "haskell-unix-compat" "haskell-unordered-containers" 
"haskell-wai"
+ "haskell-wai-app-static" "haskell-yesod-core")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('b949c5f6087d9e32c7ff2f41ed647b1df605bbe1ce2cbcfe59cc46dc4a72099e')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+

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

2017-05-02 Thread Felix Yan
Date: Tuesday, May 2, 2017 @ 09:11:56
  Author: felixonmars
Revision: 226534

upgpkg: haskell-yesod-static 1.5.2-30

rebuild with mwc-random,0.13.6.0

Modified:
  haskell-yesod-static/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-02 09:08:19 UTC (rev 226533)
+++ PKGBUILD2017-05-02 09:11:56 UTC (rev 226534)
@@ -5,7 +5,7 @@
 _hkgname=yesod-static
 pkgname=haskell-yesod-static
 pkgver=1.5.2
-pkgrel=29
+pkgrel=30
 pkgdesc="Static file serving subsite for Yesod Web Framework."
 url="http://www.yesodweb.com/;
 license=("MIT")


[arch-commits] Commit in haskell-yesod-auth/repos (4 files)

2017-05-02 Thread Felix Yan
Date: Tuesday, May 2, 2017 @ 09:08:19
  Author: felixonmars
Revision: 226533

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

Added:
  haskell-yesod-auth/repos/community-staging-i686/
  haskell-yesod-auth/repos/community-staging-i686/PKGBUILD
(from rev 226532, haskell-yesod-auth/trunk/PKGBUILD)
  haskell-yesod-auth/repos/community-staging-x86_64/
  haskell-yesod-auth/repos/community-staging-x86_64/PKGBUILD
(from rev 226532, haskell-yesod-auth/trunk/PKGBUILD)

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

Copied: haskell-yesod-auth/repos/community-staging-i686/PKGBUILD (from rev 
226532, haskell-yesod-auth/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-02 09:08:19 UTC (rev 226533)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-auth
+pkgname=haskell-yesod-auth
+pkgver=1.4.17
+pkgrel=39
+pkgdesc="Authentication for Yesod."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-authenticate" 
"haskell-base16-bytestring"
+ "haskell-base64-bytestring" "haskell-blaze-builder" 
"haskell-blaze-html"
+ "haskell-blaze-markup" "haskell-byteable" "haskell-conduit" 
"haskell-conduit-extra"
+ "haskell-cryptohash" "haskell-data-default" "haskell-email-validate"
+ "haskell-file-embed" "haskell-http-client" "haskell-http-conduit"
+ "haskell-http-types" "haskell-lifted-base" "haskell-mime-mail" 
"haskell-network-uri"
+ "haskell-nonce" "haskell-persistent" "haskell-persistent-template" 
"haskell-random"
+ "haskell-resourcet" "haskell-safe" "haskell-shakespeare" 
"haskell-text"
+ "haskell-unordered-containers" "haskell-wai" "haskell-yesod-core" 
"haskell-yesod-form"
+ "haskell-yesod-persistent")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('444a9b4b913e5f7addb1b9c5aa778f32d2b9e040d9b1c4d8a232fae908392891')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-fnetwork-uri
+runhaskell Setup build
+LC_CTYPE=en_US.UTF-8 runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-yesod-auth/repos/community-staging-x86_64/PKGBUILD (from rev 
226532, haskell-yesod-auth/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-02 09:08:19 UTC (rev 226533)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-auth
+pkgname=haskell-yesod-auth
+pkgver=1.4.17
+pkgrel=39
+pkgdesc="Authentication for Yesod."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-authenticate" 
"haskell-base16-bytestring"
+ "haskell-base64-bytestring" "haskell-blaze-builder" 
"haskell-blaze-html"
+ "haskell-blaze-markup" "haskell-byteable" "haskell-conduit" 
"haskell-conduit-extra"
+ "haskell-cryptohash" "haskell-data-default" "haskell-email-validate"
+ "haskell-file-embed" "haskell-http-client" "haskell-http-conduit"
+ "haskell-http-types" "haskell-lifted-base" "haskell-mime-mail" 
"haskell-network-uri"
+ "haskell-nonce" "haskell-persistent" "haskell-persistent-template" 
"haskell-random"
+ "haskell-resourcet" "haskell-safe" "haskell-shakespeare" 

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

2017-05-02 Thread Felix Yan
Date: Tuesday, May 2, 2017 @ 09:07:52
  Author: felixonmars
Revision: 226532

upgpkg: haskell-yesod-auth 1.4.17-39

rebuild with mwc-random,0.13.6.0

Modified:
  haskell-yesod-auth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-02 09:01:43 UTC (rev 226531)
+++ PKGBUILD2017-05-02 09:07:52 UTC (rev 226532)
@@ -5,7 +5,7 @@
 _hkgname=yesod-auth
 pkgname=haskell-yesod-auth
 pkgver=1.4.17
-pkgrel=38
+pkgrel=39
 pkgdesc="Authentication for Yesod."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2017-05-02 Thread Felix Yan
Date: Tuesday, May 2, 2017 @ 09:01:43
  Author: felixonmars
Revision: 226531

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

Added:
  haskell-yesod/repos/community-staging-i686/
  haskell-yesod/repos/community-staging-i686/PKGBUILD
(from rev 226530, haskell-yesod/trunk/PKGBUILD)
  haskell-yesod/repos/community-staging-x86_64/
  haskell-yesod/repos/community-staging-x86_64/PKGBUILD
(from rev 226530, haskell-yesod/trunk/PKGBUILD)

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

Copied: haskell-yesod/repos/community-staging-i686/PKGBUILD (from rev 226530, 
haskell-yesod/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-02 09:01:43 UTC (rev 226531)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod
+pkgname=haskell-yesod
+pkgver=1.4.5
+pkgrel=33
+pkgdesc="Creation of type-safe, RESTful web applications."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-blaze-html" 
"haskell-blaze-markup"
+ "haskell-conduit-extra" "haskell-data-default-class" 
"haskell-fast-logger"
+ "haskell-monad-control" "haskell-monad-logger" "haskell-resourcet" 
"haskell-semigroups"
+ "haskell-shakespeare" "haskell-streaming-commons" "haskell-text"
+ "haskell-unordered-containers" "haskell-wai" "haskell-wai-extra" 
"haskell-wai-logger"
+ "haskell-warp" "haskell-yaml" "haskell-yesod-core" 
"haskell-yesod-form"
+ "haskell-yesod-persistent")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('267c8780b27cc0ae8199f80b3063683fb2cd62eeb9696c4b155a298fb035e6e9')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-yesod/repos/community-staging-x86_64/PKGBUILD (from rev 226530, 
haskell-yesod/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-02 09:01:43 UTC (rev 226531)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod
+pkgname=haskell-yesod
+pkgver=1.4.5
+pkgrel=33
+pkgdesc="Creation of type-safe, RESTful web applications."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-blaze-html" 
"haskell-blaze-markup"
+ "haskell-conduit-extra" "haskell-data-default-class" 
"haskell-fast-logger"
+ "haskell-monad-control" "haskell-monad-logger" "haskell-resourcet" 
"haskell-semigroups"
+ "haskell-shakespeare" "haskell-streaming-commons" "haskell-text"
+ "haskell-unordered-containers" "haskell-wai" "haskell-wai-extra" 
"haskell-wai-logger"
+ "haskell-warp" "haskell-yaml" "haskell-yesod-core" 
"haskell-yesod-form"
+ "haskell-yesod-persistent")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('267c8780b27cc0ae8199f80b3063683fb2cd62eeb9696c4b155a298fb035e6e9')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+

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

2017-05-02 Thread Felix Yan
Date: Tuesday, May 2, 2017 @ 09:01:12
  Author: felixonmars
Revision: 226530

upgpkg: haskell-yesod 1.4.5-33

rebuild with mwc-random,0.13.6.0

Modified:
  haskell-yesod/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-02 08:57:57 UTC (rev 226529)
+++ PKGBUILD2017-05-02 09:01:12 UTC (rev 226530)
@@ -5,7 +5,7 @@
 _hkgname=yesod
 pkgname=haskell-yesod
 pkgver=1.4.5
-pkgrel=32
+pkgrel=33
 pkgdesc="Creation of type-safe, RESTful web applications."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2017-05-02 Thread Felix Yan
Date: Tuesday, May 2, 2017 @ 08:57:30
  Author: felixonmars
Revision: 226528

upgpkg: haskell-yesod-form 1.4.11-35

rebuild with mwc-random,0.13.6.0

Modified:
  haskell-yesod-form/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-02 08:53:03 UTC (rev 226527)
+++ PKGBUILD2017-05-02 08:57:30 UTC (rev 226528)
@@ -5,7 +5,7 @@
 _hkgname=yesod-form
 pkgname=haskell-yesod-form
 pkgver=1.4.11
-pkgrel=34
+pkgrel=35
 pkgdesc="Form handling support for Yesod Web Framework"
 url="http://www.yesodweb.com/;
 license=("MIT")


[arch-commits] Commit in haskell-yesod-form/repos (4 files)

2017-05-02 Thread Felix Yan
Date: Tuesday, May 2, 2017 @ 08:57:57
  Author: felixonmars
Revision: 226529

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

Added:
  haskell-yesod-form/repos/community-staging-i686/
  haskell-yesod-form/repos/community-staging-i686/PKGBUILD
(from rev 226528, haskell-yesod-form/trunk/PKGBUILD)
  haskell-yesod-form/repos/community-staging-x86_64/
  haskell-yesod-form/repos/community-staging-x86_64/PKGBUILD
(from rev 226528, haskell-yesod-form/trunk/PKGBUILD)

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

Copied: haskell-yesod-form/repos/community-staging-i686/PKGBUILD (from rev 
226528, haskell-yesod-form/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-02 08:57:57 UTC (rev 226529)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-form
+pkgname=haskell-yesod-form
+pkgver=1.4.11
+pkgrel=35
+pkgdesc="Form handling support for Yesod Web Framework"
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-attoparsec" 
"haskell-blaze-builder"
+ "haskell-blaze-html" "haskell-blaze-markup" "haskell-byteable"
+ "haskell-data-default" "haskell-email-validate" "haskell-network-uri"
+ "haskell-persistent" "haskell-resourcet" "haskell-semigroups"
+ "haskell-shakespeare" "haskell-text" "haskell-wai" 
"haskell-xss-sanitize"
+ "haskell-yesod-core" "haskell-yesod-persistent")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('45edd3ea97a09968426ab20ea4595389b61f5fc2c9e328cecbdeed4a78dcd8d6')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-fnetwork-uri
+runhaskell Setup build
+LC_CTYPE=en_US.UTF-8 runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh   
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+install -d -m755 "$pkgdir"/usr/share/doc/ghc/html/libraries
+ln -s /usr/share/doc/$pkgname/html 
"$pkgdir"/usr/share/doc/ghc/html/libraries/${_hkgname}
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "LICENSE" "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}

Copied: haskell-yesod-form/repos/community-staging-x86_64/PKGBUILD (from rev 
226528, haskell-yesod-form/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-02 08:57:57 UTC (rev 226529)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-form
+pkgname=haskell-yesod-form
+pkgver=1.4.11
+pkgrel=35
+pkgdesc="Form handling support for Yesod Web Framework"
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-attoparsec" 
"haskell-blaze-builder"
+ "haskell-blaze-html" "haskell-blaze-markup" "haskell-byteable"
+ "haskell-data-default" "haskell-email-validate" "haskell-network-uri"
+ "haskell-persistent" "haskell-resourcet" "haskell-semigroups"
+ "haskell-shakespeare" "haskell-text" "haskell-wai" 
"haskell-xss-sanitize"
+ "haskell-yesod-core" "haskell-yesod-persistent")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('45edd3ea97a09968426ab20ea4595389b61f5fc2c9e328cecbdeed4a78dcd8d6')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-fnetwork-uri
+runhaskell Setup build
+LC_CTYPE=en_US.UTF-8 runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+

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

2017-05-02 Thread Felix Yan
Date: Tuesday, May 2, 2017 @ 08:52:36
  Author: felixonmars
Revision: 226526

upgpkg: haskell-yesod-persistent 1.4.2-30

rebuild with mwc-random,0.13.6.0

Modified:
  haskell-yesod-persistent/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-02 08:50:11 UTC (rev 226525)
+++ PKGBUILD2017-05-02 08:52:36 UTC (rev 226526)
@@ -5,7 +5,7 @@
 _hkgname=yesod-persistent
 pkgname=haskell-yesod-persistent
 pkgver=1.4.2
-pkgrel=29
+pkgrel=30
 pkgdesc="Some helpers for using Persistent from Yesod."
 url="http://www.yesodweb.com/;
 license=("MIT")


[arch-commits] Commit in haskell-yesod-persistent/repos (4 files)

2017-05-02 Thread Felix Yan
Date: Tuesday, May 2, 2017 @ 08:53:03
  Author: felixonmars
Revision: 226527

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

Added:
  haskell-yesod-persistent/repos/community-staging-i686/
  haskell-yesod-persistent/repos/community-staging-i686/PKGBUILD
(from rev 226526, haskell-yesod-persistent/trunk/PKGBUILD)
  haskell-yesod-persistent/repos/community-staging-x86_64/
  haskell-yesod-persistent/repos/community-staging-x86_64/PKGBUILD
(from rev 226526, haskell-yesod-persistent/trunk/PKGBUILD)

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

Copied: haskell-yesod-persistent/repos/community-staging-i686/PKGBUILD (from 
rev 226526, haskell-yesod-persistent/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-02 08:53:03 UTC (rev 226527)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-persistent
+pkgname=haskell-yesod-persistent
+pkgver=1.4.2
+pkgrel=30
+pkgdesc="Some helpers for using Persistent from Yesod."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-blaze-builder" "haskell-conduit" 
"haskell-persistent"
+ "haskell-persistent-template" "haskell-resource-pool" 
"haskell-resourcet"
+ "haskell-yesod-core")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('d938894209e27a7f2a6e41906a9db02cf5c66df2236a864361571ba4e63b1056')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-yesod-persistent/repos/community-staging-x86_64/PKGBUILD (from 
rev 226526, haskell-yesod-persistent/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-02 08:53:03 UTC (rev 226527)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-persistent
+pkgname=haskell-yesod-persistent
+pkgver=1.4.2
+pkgrel=30
+pkgdesc="Some helpers for using Persistent from Yesod."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-blaze-builder" "haskell-conduit" 
"haskell-persistent"
+ "haskell-persistent-template" "haskell-resource-pool" 
"haskell-resourcet"
+ "haskell-yesod-core")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('d938894209e27a7f2a6e41906a9db02cf5c66df2236a864361571ba4e63b1056')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 

[arch-commits] Commit in haskell-yesod-default/repos (4 files)

2017-05-02 Thread Felix Yan
Date: Tuesday, May 2, 2017 @ 08:50:11
  Author: felixonmars
Revision: 226525

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

Added:
  haskell-yesod-default/repos/community-staging-i686/
  haskell-yesod-default/repos/community-staging-i686/PKGBUILD
(from rev 226524, haskell-yesod-default/trunk/PKGBUILD)
  haskell-yesod-default/repos/community-staging-x86_64/
  haskell-yesod-default/repos/community-staging-x86_64/PKGBUILD
(from rev 226524, haskell-yesod-default/trunk/PKGBUILD)

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

Copied: haskell-yesod-default/repos/community-staging-i686/PKGBUILD (from rev 
226524, haskell-yesod-default/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-02 08:50:11 UTC (rev 226525)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-default
+pkgname=haskell-yesod-default
+pkgver=1.2.0
+pkgrel=139
+pkgdesc="Default config and main functions for your yesod application 
(deprecated)"
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-yesod-core")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('f39ae1953a95c1919a9dd214d93bf81078b1dcbbac737dc9bb7339dbad9dda96')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-yesod-default/repos/community-staging-x86_64/PKGBUILD (from rev 
226524, haskell-yesod-default/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-02 08:50:11 UTC (rev 226525)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-default
+pkgname=haskell-yesod-default
+pkgver=1.2.0
+pkgrel=139
+pkgdesc="Default config and main functions for your yesod application 
(deprecated)"
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-yesod-core")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('f39ae1953a95c1919a9dd214d93bf81078b1dcbbac737dc9bb7339dbad9dda96')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f 

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

2017-05-02 Thread Felix Yan
Date: Tuesday, May 2, 2017 @ 08:49:44
  Author: felixonmars
Revision: 226524

upgpkg: haskell-yesod-default 1.2.0-139

rebuild with mwc-random,0.13.6.0

Modified:
  haskell-yesod-default/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-02 08:47:06 UTC (rev 226523)
+++ PKGBUILD2017-05-02 08:49:44 UTC (rev 226524)
@@ -5,7 +5,7 @@
 _hkgname=yesod-default
 pkgname=haskell-yesod-default
 pkgver=1.2.0
-pkgrel=138
+pkgrel=139
 pkgdesc="Default config and main functions for your yesod application 
(deprecated)"
 url="http://www.yesodweb.com/;
 license=("MIT")


[arch-commits] Commit in haskell-yesod-core/repos (4 files)

2017-05-02 Thread Felix Yan
Date: Tuesday, May 2, 2017 @ 08:47:06
  Author: felixonmars
Revision: 226523

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

Added:
  haskell-yesod-core/repos/community-staging-i686/
  haskell-yesod-core/repos/community-staging-i686/PKGBUILD
(from rev 226522, haskell-yesod-core/trunk/PKGBUILD)
  haskell-yesod-core/repos/community-staging-x86_64/
  haskell-yesod-core/repos/community-staging-x86_64/PKGBUILD
(from rev 226522, haskell-yesod-core/trunk/PKGBUILD)

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

Copied: haskell-yesod-core/repos/community-staging-i686/PKGBUILD (from rev 
226522, haskell-yesod-core/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-02 08:47:06 UTC (rev 226523)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-core
+pkgname=haskell-yesod-core
+pkgver=1.4.33
+pkgrel=15
+pkgdesc="Creation of type-safe, RESTful web applications."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-auto-update" 
"haskell-blaze-builder"
+ "haskell-blaze-html" "haskell-blaze-markup" "haskell-byteable" 
"haskell-case-insensitive"
+ "haskell-cereal" "haskell-clientsession" "haskell-conduit" 
"haskell-conduit-extra"
+ "haskell-cookie" "haskell-data-default" "haskell-deepseq-generics" 
"haskell-exceptions"
+ "haskell-fast-logger" "haskell-http-types" "haskell-lifted-base" 
"haskell-monad-control"
+ "haskell-monad-logger" "haskell-mtl" "haskell-mwc-random" 
"haskell-old-locale"
+ "haskell-parsec" "haskell-path-pieces" "haskell-primitive" 
"haskell-random"
+ "haskell-resourcet" "haskell-safe" "haskell-semigroups" 
"haskell-shakespeare"
+ "haskell-text" "haskell-transformers-base" "haskell-unix-compat"
+ "haskell-unordered-containers" "haskell-vector" "haskell-wai" 
"haskell-wai-extra"
+ "haskell-wai-logger" "haskell-warp" "haskell-word8")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('ad810facfffc3e14bd9891129344d062e00d3e152c50fda79e4e7587fb0b0d8372d36e4d9a3526a7794a24b29d78887e5df016b041eadbe1b8882f37889a5740')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-yesod-core/repos/community-staging-x86_64/PKGBUILD (from rev 
226522, haskell-yesod-core/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-02 08:47:06 UTC (rev 226523)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-core
+pkgname=haskell-yesod-core
+pkgver=1.4.33
+pkgrel=15
+pkgdesc="Creation of type-safe, RESTful web applications."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-auto-update" 
"haskell-blaze-builder"
+ "haskell-blaze-html" "haskell-blaze-markup" "haskell-byteable" 
"haskell-case-insensitive"
+ "haskell-cereal" "haskell-clientsession" "haskell-conduit" 
"haskell-conduit-extra"
+ "haskell-cookie" "haskell-data-default" "haskell-deepseq-generics" 
"haskell-exceptions"
+ "haskell-fast-logger" "haskell-http-types" "haskell-lifted-base" 
"haskell-monad-control"
+ 

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

2017-05-02 Thread Felix Yan
Date: Tuesday, May 2, 2017 @ 08:46:39
  Author: felixonmars
Revision: 226522

upgpkg: haskell-yesod-core 1.4.33-15

rebuild with mwc-random,0.13.6.0

Modified:
  haskell-yesod-core/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-02 08:40:44 UTC (rev 226521)
+++ PKGBUILD2017-05-02 08:46:39 UTC (rev 226522)
@@ -5,7 +5,7 @@
 _hkgname=yesod-core
 pkgname=haskell-yesod-core
 pkgver=1.4.33
-pkgrel=14
+pkgrel=15
 pkgdesc="Creation of type-safe, RESTful web applications."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2017-05-02 Thread Felix Yan
Date: Tuesday, May 2, 2017 @ 08:40:17
  Author: felixonmars
Revision: 226520

upgpkg: haskell-criterion 1.1.4.0-32

rebuild with mwc-random,0.13.6.0

Modified:
  haskell-criterion/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-02 08:34:49 UTC (rev 226519)
+++ PKGBUILD2017-05-02 08:40:17 UTC (rev 226520)
@@ -5,7 +5,7 @@
 _hkgname=criterion
 pkgname=haskell-criterion
 pkgver=1.1.4.0
-pkgrel=31
+pkgrel=32
 pkgdesc="Robust, reliable performance measurement and analysis"
 url="http://www.serpentine.com/criterion;
 license=("custom:BSD3")


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

2017-05-02 Thread Felix Yan
Date: Tuesday, May 2, 2017 @ 08:40:44
  Author: felixonmars
Revision: 226521

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

Added:
  haskell-criterion/repos/community-staging-i686/
  haskell-criterion/repos/community-staging-i686/PKGBUILD
(from rev 226520, haskell-criterion/trunk/PKGBUILD)
  haskell-criterion/repos/community-staging-x86_64/
  haskell-criterion/repos/community-staging-x86_64/PKGBUILD
(from rev 226520, haskell-criterion/trunk/PKGBUILD)

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

Copied: haskell-criterion/repos/community-staging-i686/PKGBUILD (from rev 
226520, haskell-criterion/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-02 08:40:44 UTC (rev 226521)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=criterion
+pkgname=haskell-criterion
+pkgver=1.1.4.0
+pkgrel=32
+pkgdesc="Robust, reliable performance measurement and analysis"
+url="http://www.serpentine.com/criterion;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-ansi-wl-pprint" 
"haskell-cassava" "haskell-code-page"
+ "haskell-glob" "haskell-hastache" "haskell-js-flot" 
"haskell-js-jquery" "haskell-mtl"
+ "haskell-mwc-random" "haskell-optparse-applicative" "haskell-parsec" 
"haskell-statistics"
+ "haskell-text" "haskell-transformers-compat" "haskell-vector" 
"haskell-vector-algorithms")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('53a243fc759ed3100e71f96a5f6649658d076d91d52ce2853a6f8587aa3cfa76')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-fast
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-criterion/repos/community-staging-x86_64/PKGBUILD (from rev 
226520, haskell-criterion/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-02 08:40:44 UTC (rev 226521)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=criterion
+pkgname=haskell-criterion
+pkgver=1.1.4.0
+pkgrel=32
+pkgdesc="Robust, reliable performance measurement and analysis"
+url="http://www.serpentine.com/criterion;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-ansi-wl-pprint" 
"haskell-cassava" "haskell-code-page"
+ "haskell-glob" "haskell-hastache" "haskell-js-flot" 
"haskell-js-jquery" "haskell-mtl"
+ "haskell-mwc-random" "haskell-optparse-applicative" "haskell-parsec" 
"haskell-statistics"
+ "haskell-text" "haskell-transformers-compat" "haskell-vector" 
"haskell-vector-algorithms")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('53a243fc759ed3100e71f96a5f6649658d076d91d52ce2853a6f8587aa3cfa76')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-fast
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e 

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

2017-05-02 Thread Felix Yan
Date: Tuesday, May 2, 2017 @ 08:34:22
  Author: felixonmars
Revision: 226518

upgpkg: haskell-statistics 0.13.3.0-32

rebuild with mwc-random,0.13.6.0

Modified:
  haskell-statistics/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-02 08:24:31 UTC (rev 226517)
+++ PKGBUILD2017-05-02 08:34:22 UTC (rev 226518)
@@ -5,7 +5,7 @@
 _hkgname=statistics
 pkgname=haskell-statistics
 pkgver=0.13.3.0
-pkgrel=31
+pkgrel=32
 pkgdesc="A library of statistical types, data, and functions"
 url="https://github.com/bos/statistics;
 license=("custom:BSD3")


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

2017-05-02 Thread Felix Yan
Date: Tuesday, May 2, 2017 @ 08:34:49
  Author: felixonmars
Revision: 226519

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

Added:
  haskell-statistics/repos/community-staging-i686/
  haskell-statistics/repos/community-staging-i686/PKGBUILD
(from rev 226518, haskell-statistics/trunk/PKGBUILD)
  haskell-statistics/repos/community-staging-x86_64/
  haskell-statistics/repos/community-staging-x86_64/PKGBUILD
(from rev 226518, haskell-statistics/trunk/PKGBUILD)

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

Copied: haskell-statistics/repos/community-staging-i686/PKGBUILD (from rev 
226518, haskell-statistics/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-02 08:34:49 UTC (rev 226519)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=statistics
+pkgname=haskell-statistics
+pkgver=0.13.3.0
+pkgrel=32
+pkgdesc="A library of statistical types, data, and functions"
+url="https://github.com/bos/statistics;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-erf" "haskell-math-functions"
+ "haskell-monad-par" "haskell-mwc-random" "haskell-primitive" 
"haskell-vector"
+ "haskell-vector-algorithms" "haskell-vector-binary-instances")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('6e7fe0f10086725c696fdd855caf4b6fb58ca5100bd0c9995f575f5b071381ed')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html || warning "Failed to run haddock"
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-statistics/repos/community-staging-x86_64/PKGBUILD (from rev 
226518, haskell-statistics/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-02 08:34:49 UTC (rev 226519)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=statistics
+pkgname=haskell-statistics
+pkgver=0.13.3.0
+pkgrel=32
+pkgdesc="A library of statistical types, data, and functions"
+url="https://github.com/bos/statistics;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-erf" "haskell-math-functions"
+ "haskell-monad-par" "haskell-mwc-random" "haskell-primitive" 
"haskell-vector"
+ "haskell-vector-algorithms" "haskell-vector-binary-instances")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('6e7fe0f10086725c696fdd855caf4b6fb58ca5100bd0c9995f575f5b071381ed')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html || warning "Failed to run haddock"
+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 

[arch-commits] Commit in haskell-monad-par/repos (4 files)

2017-05-02 Thread Felix Yan
Date: Tuesday, May 2, 2017 @ 08:24:31
  Author: felixonmars
Revision: 226517

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

Added:
  haskell-monad-par/repos/community-staging-i686/
  haskell-monad-par/repos/community-staging-i686/PKGBUILD
(from rev 226516, haskell-monad-par/trunk/PKGBUILD)
  haskell-monad-par/repos/community-staging-x86_64/
  haskell-monad-par/repos/community-staging-x86_64/PKGBUILD
(from rev 226516, haskell-monad-par/trunk/PKGBUILD)

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

Copied: haskell-monad-par/repos/community-staging-i686/PKGBUILD (from rev 
226516, haskell-monad-par/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-02 08:24:31 UTC (rev 226517)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=monad-par
+pkgname=haskell-monad-par
+pkgver=0.3.4.8
+pkgrel=7
+pkgdesc="A library for parallel programming based on a monad"
+url="https://github.com/simonmar/monad-par;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-abstract-deque" "haskell-abstract-par"
+ "haskell-monad-par-extras" "haskell-mtl" "haskell-mwc-random"
+ "haskell-parallel")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('f84cdf51908a1c41c3f672be9520a8fdc028ea39d90a25ecfe5a3b223cfeb951')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-newgeneric -f-chaselev
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-monad-par/repos/community-staging-x86_64/PKGBUILD (from rev 
226516, haskell-monad-par/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-02 08:24:31 UTC (rev 226517)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=monad-par
+pkgname=haskell-monad-par
+pkgver=0.3.4.8
+pkgrel=7
+pkgdesc="A library for parallel programming based on a monad"
+url="https://github.com/simonmar/monad-par;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-abstract-deque" "haskell-abstract-par"
+ "haskell-monad-par-extras" "haskell-mtl" "haskell-mwc-random"
+ "haskell-parallel")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('f84cdf51908a1c41c3f672be9520a8fdc028ea39d90a25ecfe5a3b223cfeb951')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-newgeneric -f-chaselev
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+

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

2017-05-02 Thread Felix Yan
Date: Tuesday, May 2, 2017 @ 08:24:03
  Author: felixonmars
Revision: 226516

upgpkg: haskell-monad-par 0.3.4.8-7

rebuild with mwc-random,0.13.6.0

Modified:
  haskell-monad-par/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-02 08:21:53 UTC (rev 226515)
+++ PKGBUILD2017-05-02 08:24:03 UTC (rev 226516)
@@ -5,7 +5,7 @@
 _hkgname=monad-par
 pkgname=haskell-monad-par
 pkgver=0.3.4.8
-pkgrel=6
+pkgrel=7
 pkgdesc="A library for parallel programming based on a monad"
 url="https://github.com/simonmar/monad-par;
 license=("custom:BSD3")


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

2017-05-02 Thread Felix Yan
Date: Tuesday, May 2, 2017 @ 08:21:53
  Author: felixonmars
Revision: 226515

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

Added:
  haskell-turtle/repos/community-staging-i686/
  haskell-turtle/repos/community-staging-i686/PKGBUILD
(from rev 226514, haskell-turtle/trunk/PKGBUILD)
  haskell-turtle/repos/community-staging-x86_64/
  haskell-turtle/repos/community-staging-x86_64/PKGBUILD
(from rev 226514, haskell-turtle/trunk/PKGBUILD)

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

Copied: haskell-turtle/repos/community-staging-i686/PKGBUILD (from rev 226514, 
haskell-turtle/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-02 08:21:53 UTC (rev 226515)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic 
+
+_hkgname=turtle
+pkgname=haskell-turtle
+pkgver=1.3.3
+pkgrel=2
+pkgdesc="Shell programming, Haskell-style"
+url="https://github.com/Gabriel439/Haskell-Turtle-Library;
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'haskell-ansi-wl-pprint' 'haskell-async' 'haskell-clock' 
'haskell-foldl'
+ 'haskell-hostname' 'haskell-managed' 'haskell-optparse-applicative' 
'haskell-optional-args'
+ 'haskell-semigroups' 'haskell-stm' 'haskell-system-fileio' 
'haskell-system-filepath'
+ 'haskell-temporary' 'haskell-text' 'haskell-unix-compat')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('23d4e1fbd44614096bf326ee09bc123a075b9f31582a9117e84d3121f82de499e8bd1538f8d7f2fcf1c6b89ca8527da27163df50212ecbfbb4cd99c55f5762b2')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-turtle/repos/community-staging-x86_64/PKGBUILD (from rev 
226514, haskell-turtle/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-02 08:21:53 UTC (rev 226515)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic 
+
+_hkgname=turtle
+pkgname=haskell-turtle
+pkgver=1.3.3
+pkgrel=2
+pkgdesc="Shell programming, Haskell-style"
+url="https://github.com/Gabriel439/Haskell-Turtle-Library;
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'haskell-ansi-wl-pprint' 'haskell-async' 'haskell-clock' 
'haskell-foldl'
+ 'haskell-hostname' 'haskell-managed' 'haskell-optparse-applicative' 
'haskell-optional-args'
+ 'haskell-semigroups' 'haskell-stm' 'haskell-system-fileio' 
'haskell-system-filepath'
+ 'haskell-temporary' 'haskell-text' 'haskell-unix-compat')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('23d4e1fbd44614096bf326ee09bc123a075b9f31582a9117e84d3121f82de499e8bd1538f8d7f2fcf1c6b89ca8527da27163df50212ecbfbb4cd99c55f5762b2')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e 

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

2017-05-02 Thread Felix Yan
Date: Tuesday, May 2, 2017 @ 08:21:22
  Author: felixonmars
Revision: 226514

upgpkg: haskell-turtle 1.3.3-2

rebuild with mwc-random,0.13.6.0

Modified:
  haskell-turtle/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-02 08:18:38 UTC (rev 226513)
+++ PKGBUILD2017-05-02 08:21:22 UTC (rev 226514)
@@ -5,7 +5,7 @@
 _hkgname=turtle
 pkgname=haskell-turtle
 pkgver=1.3.3
-pkgrel=1
+pkgrel=2
 pkgdesc="Shell programming, Haskell-style"
 url="https://github.com/Gabriel439/Haskell-Turtle-Library;
 license=('custom:BSD3')


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

2017-05-02 Thread Felix Yan
Date: Tuesday, May 2, 2017 @ 08:18:38
  Author: felixonmars
Revision: 226513

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

Added:
  haskell-foldl/repos/community-staging-i686/
  haskell-foldl/repos/community-staging-i686/PKGBUILD
(from rev 226512, haskell-foldl/trunk/PKGBUILD)
  haskell-foldl/repos/community-staging-x86_64/
  haskell-foldl/repos/community-staging-x86_64/PKGBUILD
(from rev 226512, haskell-foldl/trunk/PKGBUILD)

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

Copied: haskell-foldl/repos/community-staging-i686/PKGBUILD (from rev 226512, 
haskell-foldl/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-02 08:18:38 UTC (rev 226513)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=foldl
+pkgname=haskell-foldl
+pkgver=1.2.4
+pkgrel=7
+pkgdesc="Composable, streaming, and efficient left folds"
+url="https://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-mwc-random" "haskell-primitive" "haskell-text" 
"haskell-vector"
+ "haskell-contravariant" "haskell-profunctors" "haskell-comonad")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('54f3b50e837904502825fe80a243b52c98892954e397cb8cc47233bd52b5a99cb750735d099fa094c56b276cea6f498451bacaac1a8315f4d3402e978989ad53')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-foldl/repos/community-staging-x86_64/PKGBUILD (from rev 226512, 
haskell-foldl/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-02 08:18:38 UTC (rev 226513)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=foldl
+pkgname=haskell-foldl
+pkgver=1.2.4
+pkgrel=7
+pkgdesc="Composable, streaming, and efficient left folds"
+url="https://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-mwc-random" "haskell-primitive" "haskell-text" 
"haskell-vector"
+ "haskell-contravariant" "haskell-profunctors" "haskell-comonad")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('54f3b50e837904502825fe80a243b52c98892954e397cb8cc47233bd52b5a99cb750735d099fa094c56b276cea6f498451bacaac1a8315f4d3402e978989ad53')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln 

  1   2   >