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

2015-09-03 Thread Tobias Powalowski
Date: Thursday, September 3, 2015 @ 17:04:20
  Author: tpowa
Revision: 245238

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

Added:
  btrfs-progs/repos/testing-i686/
  btrfs-progs/repos/testing-i686/PKGBUILD
(from rev 245237, btrfs-progs/trunk/PKGBUILD)
  btrfs-progs/repos/testing-i686/btrfs-progs.install
(from rev 245237, btrfs-progs/trunk/btrfs-progs.install)
  btrfs-progs/repos/testing-i686/initcpio-hook-btrfs
(from rev 245237, btrfs-progs/trunk/initcpio-hook-btrfs)
  btrfs-progs/repos/testing-i686/initcpio-install-btrfs
(from rev 245237, btrfs-progs/trunk/initcpio-install-btrfs)
  btrfs-progs/repos/testing-x86_64/
  btrfs-progs/repos/testing-x86_64/PKGBUILD
(from rev 245237, btrfs-progs/trunk/PKGBUILD)
  btrfs-progs/repos/testing-x86_64/btrfs-progs.install
(from rev 245237, btrfs-progs/trunk/btrfs-progs.install)
  btrfs-progs/repos/testing-x86_64/initcpio-hook-btrfs
(from rev 245237, btrfs-progs/trunk/initcpio-hook-btrfs)
  btrfs-progs/repos/testing-x86_64/initcpio-install-btrfs
(from rev 245237, btrfs-progs/trunk/initcpio-install-btrfs)

---+
 testing-i686/PKGBUILD |   52 
 testing-i686/btrfs-progs.install  |9 +
 testing-i686/initcpio-hook-btrfs  |7 
 testing-i686/initcpio-install-btrfs   |   17 ++
 testing-x86_64/PKGBUILD   |   52 
 testing-x86_64/btrfs-progs.install|9 +
 testing-x86_64/initcpio-hook-btrfs|7 
 testing-x86_64/initcpio-install-btrfs |   17 ++
 8 files changed, 170 insertions(+)

Copied: btrfs-progs/repos/testing-i686/PKGBUILD (from rev 245237, 
btrfs-progs/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-09-03 15:04:20 UTC (rev 245238)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Sébastien "Seblu" Luttringer 
+# Contributor: Tom Gundersen 
+# Contributor: Tobias Powalowski 
+
+pkgname=btrfs-progs
+pkgver=4.2
+pkgrel=1
+pkgdesc='Btrfs filesystem utilities'
+arch=('i686' 'x86_64')
+depends=('glibc' 'libutil-linux' 'e2fsprogs' 'lzo' 'zlib')
+makedepends=('git' 'asciidoc' 'xmlto')
+url='http://btrfs.wiki.kernel.org/'
+replaces=('btrfs-progs-unstable')
+conflicts=('btrfs-progs-unstable')
+provides=('btrfs-progs-unstable')
+license=('GPL2')
+source=("git://git.kernel.org/pub/scm/linux/kernel/git/kdave/$pkgname.git#tag=v$pkgver"
+'initcpio-install-btrfs'
+'initcpio-hook-btrfs')
+install=btrfs-progs.install
+options=(!staticlibs)
+md5sums=('SKIP'
+ '7241ba3a4286d08da0d50b7176941112'
+ 'b09688a915a0ec8f40e2f5aacbabc9ad')
+
+build() {
+  cd $pkgname
+  ./autogen.sh
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd $pkgname
+ ./btrfs filesystem show
+}
+
+package() {
+  cd $pkgname
+  make prefix="$pkgdir"/usr install
+
+  # install bash completion (FS#44618)
+  install -Dm644 btrfs-completion 
"$pkgdir/usr/share/bash-completion/completions/btrfs"
+
+  # install mkinitcpio hooks
+  cd "$srcdir"
+  install -Dm644 initcpio-install-btrfs 
"$pkgdir/usr/lib/initcpio/install/btrfs"
+  install -Dm644 initcpio-hook-btrfs "$pkgdir/usr/lib/initcpio/hooks/btrfs"
+}
+
+# vim:set ts=2 sw=2 ft=sh et:

Copied: btrfs-progs/repos/testing-i686/btrfs-progs.install (from rev 245237, 
btrfs-progs/trunk/btrfs-progs.install)
===
--- testing-i686/btrfs-progs.install(rev 0)
+++ testing-i686/btrfs-progs.install2015-09-03 15:04:20 UTC (rev 245238)
@@ -0,0 +1,9 @@
+#!/bin/sh
+
+post_upgrade() {
+  if [ "$(vercmp 0.19.20121005 "$2")" -eq 1 ]; then
+echo "btrfs multi-device support now relies on linux 3.6 or later"
+  fi
+}
+
+# vim:set ts=2 sw=2 et:

Copied: btrfs-progs/repos/testing-i686/initcpio-hook-btrfs (from rev 245237, 
btrfs-progs/trunk/initcpio-hook-btrfs)
===
--- testing-i686/initcpio-hook-btrfs(rev 0)
+++ testing-i686/initcpio-hook-btrfs2015-09-03 15:04:20 UTC (rev 245238)
@@ -0,0 +1,7 @@
+#!/usr/bin/ash
+
+run_hook() {
+btrfs device scan
+}
+
+# vim: set ft=sh ts=4 sw=4 et:

Copied: btrfs-progs/repos/testing-i686/initcpio-install-btrfs (from rev 245237, 
btrfs-progs/trunk/initcpio-install-btrfs)
===
--- testing-i686/initcpio-install-btrfs (rev 0)
+++ testing-i686/initcpio-install-btrfs 2015-09-03 15:04:20 UTC (rev 245238)
@@ -0,0 +1,17 @@
+#!/bin/bash
+
+build() {
+add_module btrfs
+add_binary btrfs
+add_binary btrfsck
+add_runscript
+}
+
+help() {
+cat <
+# Contributor: Tom Gundersen 
+# Contributor: Tobias Powalowski 

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

2015-09-03 Thread Tobias Powalowski
Date: Thursday, September 3, 2015 @ 17:04:07
  Author: tpowa
Revision: 245237

upgpkg: btrfs-progs 4.2-1

bump to latest version

Modified:
  btrfs-progs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-03 14:34:54 UTC (rev 245236)
+++ PKGBUILD2015-09-03 15:04:07 UTC (rev 245237)
@@ -4,7 +4,7 @@
 # Contributor: Tobias Powalowski 
 
 pkgname=btrfs-progs
-pkgver=4.1.2
+pkgver=4.2
 pkgrel=1
 pkgdesc='Btrfs filesystem utilities'
 arch=('i686' 'x86_64')


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

2015-09-03 Thread Tobias Powalowski
Date: Thursday, September 3, 2015 @ 16:13:41
  Author: tpowa
Revision: 245234

add CAN subsystem #43209

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

---+
 config|   52 +++-
 config.x86_64 |   49 -
 2 files changed, 99 insertions(+), 2 deletions(-)

Modified: config
===
--- config  2015-09-03 14:00:24 UTC (rev 245233)
+++ config  2015-09-03 14:13:41 UTC (rev 245234)
@@ -1406,7 +1406,57 @@
 CONFIG_BAYCOM_PAR=m
 CONFIG_BAYCOM_EPP=m
 CONFIG_YAM=m
-# CONFIG_CAN is not set
+CONFIG_CAN=m
+CONFIG_CAN_RAW=m
+CONFIG_CAN_BCM=m
+CONFIG_CAN_GW=m
+
+#
+# CAN Device Drivers
+#
+CONFIG_CAN_VCAN=m
+CONFIG_CAN_SLCAN=m
+CONFIG_CAN_DEV=m
+CONFIG_CAN_CALC_BITTIMING=y
+CONFIG_CAN_LEDS=y
+CONFIG_PCH_CAN=m
+# CONFIG_CAN_GRCAN is not set
+CONFIG_CAN_SJA1000=m
+# CONFIG_CAN_SJA1000_ISA is not set
+CONFIG_CAN_SJA1000_PLATFORM=m
+# CONFIG_CAN_EMS_PCMCIA is not set
+CONFIG_CAN_EMS_PCI=m
+CONFIG_CAN_PEAK_PCMCIA=m
+CONFIG_CAN_PEAK_PCI=m
+CONFIG_CAN_PEAK_PCIEC=y
+CONFIG_CAN_KVASER_PCI=m
+CONFIG_CAN_PLX_PCI=m 
+# CONFIG_CAN_TSCAN1 is not set
+CONFIG_CAN_C_CAN=m
+CONFIG_CAN_C_CAN_PLATFORM=m
+CONFIG_CAN_C_CAN_PCI=m
+CONFIG_CAN_M_CAN=m
+CONFIG_CAN_CC770=m
+# CONFIG_CAN_CC770_ISA is not set
+CONFIG_CAN_CC770_PLATFORM=m
+
+#
+# CAN SPI interfaces
+#
+# CONFIG_CAN_MCP251X is not set
+
+#
+# CAN USB interfaces
+#
+CONFIG_CAN_EMS_USB=m
+CONFIG_CAN_ESD_USB2=m
+CONFIG_CAN_GS_USB=m
+CONFIG_CAN_KVASER_USB=m
+CONFIG_CAN_PEAK_USB=m
+CONFIG_CAN_8DEV_USB=m
+CONFIG_CAN_SOFTING=m
+# CONFIG_CAN_SOFTING_CS is not set
+# CONFIG_CAN_DEBUG_DEVICES is not set
 CONFIG_IRDA=m
 
 #

Modified: config.x86_64
===
--- config.x86_64   2015-09-03 14:00:24 UTC (rev 245233)
+++ config.x86_64   2015-09-03 14:13:41 UTC (rev 245234)
@@ -1398,7 +1398,54 @@
 CONFIG_BAYCOM_SER_HDX=m
 CONFIG_BAYCOM_PAR=m
 CONFIG_YAM=m
-# CONFIG_CAN is not set
+CONFIG_CAN=m
+CONFIG_CAN_RAW=m
+CONFIG_CAN_BCM=m
+CONFIG_CAN_GW=m
+
+#
+# CAN Device Drivers
+#
+CONFIG_CAN_VCAN=m
+CONFIG_CAN_SLCAN=m
+CONFIG_CAN_DEV=m
+CONFIG_CAN_CALC_BITTIMING=y
+CONFIG_CAN_LEDS=y
+CONFIG_CAN_SJA1000=m
+# CONFIG_CAN_SJA1000_ISA is not set
+CONFIG_CAN_SJA1000_PLATFORM=m
+# CONFIG_CAN_EMS_PCMCIA is not set
+CONFIG_CAN_EMS_PCI=m
+# CONFIG_CAN_PEAK_PCMCIA is not set
+CONFIG_CAN_PEAK_PCI=m
+CONFIG_CAN_PEAK_PCIEC=y
+CONFIG_CAN_KVASER_PCI=m
+CONFIG_CAN_PLX_PCI=m
+CONFIG_CAN_C_CAN=m
+CONFIG_CAN_C_CAN_PLATFORM=m
+CONFIG_CAN_C_CAN_PCI=m
+CONFIG_CAN_M_CAN=m
+CONFIG_CAN_CC770=m
+# CONFIG_CAN_CC770_ISA is not set
+CONFIG_CAN_CC770_PLATFORM=m
+
+#
+# CAN SPI interfaces
+#
+# CONFIG_CAN_MCP251X is not set
+
+#
+# CAN USB interfaces
+#
+CONFIG_CAN_EMS_USB=m
+CONFIG_CAN_ESD_USB2=m
+CONFIG_CAN_GS_USB=m
+CONFIG_CAN_KVASER_USB=m
+CONFIG_CAN_PEAK_USB=m
+CONFIG_CAN_8DEV_USB=m
+CONFIG_CAN_SOFTING=m
+# CONFIG_CAN_SOFTING_CS is not set
+# CONFIG_CAN_DEBUG_DEVICES is not set
 CONFIG_IRDA=m
 
 #


[arch-commits] Commit in docky/trunk (6 files)

2015-09-03 Thread Balló György
Date: Thursday, September 3, 2015 @ 16:54:22
  Author: bgyorgy
Revision: 139135

upgpkg: docky 2.2.1.1-1

Update to version 2.2.1.14

Modified:
  docky/trunk/PKGBUILD
Deleted:
  docky/trunk/drop-gnome-desktop-sharp.patch
  docky/trunk/drop-rsvg2-sharp.patch
  docky/trunk/fix-build.patch
  docky/trunk/systemd-support.patch
  docky/trunk/use_dbussharp_2.patch

+
 PKGBUILD   |   49 +---
 drop-gnome-desktop-sharp.patch |  155 ---
 drop-rsvg2-sharp.patch |  222 ---
 fix-build.patch|   16 --
 systemd-support.patch  |   66 ---
 use_dbussharp_2.patch  |   15 --
 6 files changed, 7 insertions(+), 516 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-09-03 14:28:56 UTC (rev 139134)
+++ PKGBUILD2015-09-03 14:54:22 UTC (rev 139135)
@@ -5,51 +5,20 @@
 # Contributor: Alessio 'Bl@ster' Biancalana 
 
 pkgname=docky
-pkgver=2.2.0
-pkgrel=4
+pkgver=2.2.1.1
+pkgrel=1
 pkgdesc="Full fledged dock application that makes opening common applications 
and managing windows easier and quicker"
 url="http://wiki.go-docky.com/;
 arch=('any')
 license=('GPL')
-depends=('gconf-sharp' 'gkeyfile-sharp' 'gnome-keyring-sharp' 'librsvg' 
'mono-addins' 'notify-sharp' 'wnck-sharp')
+depends=('gconf-sharp' 'gkeyfile-sharp' 'gnome-keyring-sharp' 'librsvg' 
'libwnck' 'mono-addins' 'notify-sharp')
 makedepends=('intltool' 'gio-sharp')
 install=$pkgname.install
-source=("http://launchpad.net/$pkgname/2.2/$pkgver/+download/$pkgname-$pkgver.tar.xz;
- use_dbussharp_2.patch
- fix-build.patch
- systemd-support.patch
- drop-gnome-desktop-sharp.patch
- drop-rsvg2-sharp.patch)
-md5sums=('519fa5920a590a680afd8a87d0db9db5'
- '42553efbadb9dcf8c108ee9d8d568b2e'
- 'a78989892dfb660600c5f63a6df90f37'
- 'a9670aef62793386b058a26d78d25005'
- 'c19568dde9351e258e1d2e3ef2e7dddc'
- '468fd1e7f7cffad8bc4f60c3bc711975')
+source=("http://launchpad.net/$pkgname/2.2/$pkgver/+download/$pkgname-$pkgver.tar.xz;)
+md5sums=('adc261e5fe64d0be6edaf635cd9ce09e')
 
-prepare() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  # Fix build
-  patch -Np1 -i ../fix-build.patch
-
-  # Add systemd support for suspend and hibernate
-  patch -Np0 -i ../systemd-support.patch
-
-  # Remove gnome-desktop-sharp dependency
-  patch -Np0 -i ../drop-gnome-desktop-sharp.patch
-
-  # Remove rsvg2-sharp dependency
-  patch -Np0 -i ../drop-rsvg2-sharp.patch
-
-  # dbus-sharp 2.0
-  patch -Np1 -i ../use_dbussharp_2.patch
-}
-
 build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  autoreconf -fi
+  cd $pkgname-$pkgver
   ./configure --prefix=/usr --sysconfdir=/etc \
   --disable-schemas-install \
   --with-gconf-schema-file-dir=/usr/share/gconf/schemas
@@ -57,10 +26,6 @@
 }
 
 package() {
-  cd "$srcdir/$pkgname-$pkgver"
-
+  cd $pkgname-$pkgver
   make DESTDIR="$pkgdir" install
-
-  # Remove NetworkManager plugin, because it doesn't work
-  rm "$pkgdir/usr/lib/docky/plugins/NetworkManager.dll"
 }

Deleted: drop-gnome-desktop-sharp.patch
===
--- drop-gnome-desktop-sharp.patch  2015-09-03 14:28:56 UTC (rev 139134)
+++ drop-gnome-desktop-sharp.patch  2015-09-03 14:54:22 UTC (rev 139135)
@@ -1,155 +0,0 @@
-=== modified file 'Docky/Docky/ConfigurationWindow.cs'
 Docky/Docky/ConfigurationWindow.cs 2011-03-14 17:56:02 +
-+++ Docky/Docky/ConfigurationWindow.cs 2013-05-12 20:15:37 +
-@@ -2,6 +2,7 @@
- //  Copyright (C) 2009 Jason Smith, Robert Dyer
- //  Copyright (C) 2010 Chris Szikszoy
- //  Copyright (C) 2011 Robert Dyer
-+//  Copyright (C) 2013 Rico Tzschichholz
- // 
- //  This program is free software: you can redistribute it and/or modify
- //  it under the terms of the GNU General Public License as published by
-@@ -27,8 +28,8 @@
- using Cairo;
- using Gdk;
- using GLib;
--using Gnome;
- using Gtk;
-+using KeyFile;
- using Mono.Unix;
- 
- using Docky.Interface;
-@@ -508,34 +509,34 @@
-   }
- 
-   const string AutoStartKey = "Hidden";
--  DesktopItem autostart_item;
-+  const string DesktopGroup = "Desktop Entry";
-+  GKeyFile autostart_keyfile;
-   bool AutoStart 
-   {
-   get {
--  if (autostart_item == null) {
-+  if (autostart_keyfile == null) {
-   
-   GLib.File autostart_file = 
DockServices.Paths.AutoStartFile;
-   
-   try {
--  autostart_item = 
DesktopItem.NewFromFile (autostart_file.Path, 

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

2015-09-03 Thread Tobias Powalowski
Date: Thursday, September 3, 2015 @ 16:00:24
  Author: tpowa
Revision: 245233

add CONFIG_CRASH_DUMP=y #41608, add CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y 
#45299

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

---+
 config|5 +++--
 config.x86_64 |5 +++--
 2 files changed, 6 insertions(+), 4 deletions(-)

Modified: config
===
--- config  2015-09-03 13:42:21 UTC (rev 245232)
+++ config  2015-09-03 14:00:24 UTC (rev 245233)
@@ -528,7 +528,7 @@
 CONFIG_HZ=300
 CONFIG_SCHED_HRTICK=y
 CONFIG_KEXEC=y
-# CONFIG_CRASH_DUMP is not set
+CONFIG_CRASH_DUMP=y
 CONFIG_KEXEC_JUMP=y
 CONFIG_PHYSICAL_START=0x100
 CONFIG_RELOCATABLE=y
@@ -776,7 +776,7 @@
 # Executable file formats / Emulations
 #
 CONFIG_BINFMT_ELF=y
-# CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set
+CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y
 CONFIG_BINFMT_SCRIPT=y
 CONFIG_HAVE_AOUT=y
 # CONFIG_BINFMT_AOUT is not set
@@ -6923,6 +6923,7 @@
 #
 CONFIG_PROC_FS=y
 CONFIG_PROC_KCORE=y
+CONFIG_PROC_VMCORE=y
 CONFIG_PROC_SYSCTL=y
 CONFIG_PROC_PAGE_MONITOR=y
 CONFIG_PROC_CHILDREN=y

Modified: config.x86_64
===
--- config.x86_64   2015-09-03 13:42:21 UTC (rev 245232)
+++ config.x86_64   2015-09-03 14:00:24 UTC (rev 245233)
@@ -542,7 +542,7 @@
 CONFIG_HZ=300
 CONFIG_SCHED_HRTICK=y
 CONFIG_KEXEC=y
-# CONFIG_CRASH_DUMP is not set
+CONFIG_CRASH_DUMP=y
 CONFIG_KEXEC_JUMP=y
 CONFIG_PHYSICAL_START=0x100
 CONFIG_RELOCATABLE=y
@@ -764,7 +764,7 @@
 #
 CONFIG_BINFMT_ELF=y
 CONFIG_COMPAT_BINFMT_ELF=y
-# CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set
+CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y
 CONFIG_BINFMT_SCRIPT=y
 # CONFIG_HAVE_AOUT is not set
 CONFIG_BINFMT_MISC=y
@@ -6660,6 +6660,7 @@
 #
 CONFIG_PROC_FS=y
 CONFIG_PROC_KCORE=y
+CONFIG_PROC_VMCORE=y
 CONFIG_PROC_SYSCTL=y
 CONFIG_PROC_PAGE_MONITOR=y
 CONFIG_PROC_CHILDREN=y


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

2015-09-03 Thread Tobias Powalowski
Date: Thursday, September 3, 2015 @ 15:42:21
  Author: tpowa
Revision: 245232

add CONFIG_ACPI_I2C_OPREGION=y #44582

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

---+
 config|   51 ---
 config.x86_64 |   46 --
 2 files changed, 92 insertions(+), 5 deletions(-)

Modified: config
===
--- config  2015-09-03 13:06:25 UTC (rev 245231)
+++ config  2015-09-03 13:42:21 UTC (rev 245232)
@@ -152,7 +152,7 @@
 CONFIG_CGROUP_SCHED=y
 CONFIG_FAIR_GROUP_SCHED=y
 CONFIG_CFS_BANDWIDTH=y
-CONFIG_RT_GROUP_SCHED=y
+# CONFIG_RT_GROUP_SCHED is not set
 CONFIG_BLK_CGROUP=y
 # CONFIG_DEBUG_BLK_CGROUP is not set
 CONFIG_CGROUP_WRITEBACK=y
@@ -1616,7 +1616,7 @@
 # CONFIG_GENERIC_CPU_DEVICES is not set
 CONFIG_GENERIC_CPU_AUTOPROBE=y
 CONFIG_REGMAP=y
-CONFIG_REGMAP_I2C=m
+CONFIG_REGMAP_I2C=y
 CONFIG_REGMAP_SPI=m
 CONFIG_REGMAP_SPMI=m
 CONFIG_REGMAP_MMIO=y
@@ -3472,7 +3472,8 @@
 #
 # I2C support
 #
-CONFIG_I2C=m
+CONFIG_I2C=y
+CONFIG_ACPI_I2C_OPREGION=y
 CONFIG_I2C_BOARDINFO=y
 CONFIG_I2C_COMPAT=y
 CONFIG_I2C_CHARDEV=m
@@ -3673,11 +3674,13 @@
 # CONFIG_GPIO_MAX732X is not set
 # CONFIG_GPIO_PCA953X is not set
 # CONFIG_GPIO_PCF857X is not set
+# CONFIG_GPIO_SX150X is not set
 
 #
 # MFD GPIO expanders
 #
 # CONFIG_GPIO_ARIZONA is not set
+CONFIG_GPIO_CRYSTAL_COVE=y
 CONFIG_GPIO_CS5535=y
 # CONFIG_GPIO_LP3943 is not set
 # CONFIG_GPIO_UCB1400 is not set
@@ -3730,6 +3733,7 @@
 # CONFIG_CHARGER_BQ25890 is not set
 # CONFIG_CHARGER_SMB347 is not set
 # CONFIG_BATTERY_GAUGE_LTC2941 is not set
+# CONFIG_BATTERY_RT5033 is not set
 # CONFIG_CHARGER_RT9455 is not set
 CONFIG_POWER_RESET=y
 CONFIG_POWER_RESET_GPIO=y
@@ -4033,12 +4037,22 @@
 #
 CONFIG_MFD_CORE=y
 CONFIG_MFD_CS5535=m
+# CONFIG_MFD_AS3711 is not set
+# CONFIG_MFD_AS3722 is not set
+# CONFIG_PMIC_ADP5520 is not set
+# CONFIG_MFD_AAT2870_CORE is not set
 # CONFIG_MFD_ATMEL_HLCDC is not set
 CONFIG_MFD_BCM590XX=m
+# CONFIG_MFD_AXP20X is not set
 CONFIG_MFD_CROS_EC=m
 CONFIG_MFD_CROS_EC_I2C=m
 CONFIG_MFD_CROS_EC_SPI=m
+# CONFIG_PMIC_DA903X is not set
 # CONFIG_MFD_DA9052_SPI is not set
+# CONFIG_MFD_DA9052_I2C is not set
+# CONFIG_MFD_DA9055 is not set
+# CONFIG_MFD_DA9063 is not set
+# CONFIG_MFD_DA9150 is not set
 # CONFIG_MFD_DLN2 is not set
 CONFIG_MFD_MC13XXX=m
 # CONFIG_MFD_MC13XXX_SPI is not set
@@ -4045,11 +4059,24 @@
 CONFIG_MFD_MC13XXX_I2C=m
 # CONFIG_MFD_HI6421_PMIC is not set
 CONFIG_HTC_PASIC3=m
+# CONFIG_HTC_I2CPLD is not set
 # CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set
 CONFIG_LPC_ICH=m
 CONFIG_LPC_SCH=m
+CONFIG_INTEL_SOC_PMIC=y
 # CONFIG_MFD_JANZ_CMODIO is not set
 # CONFIG_MFD_KEMPLD is not set
+# CONFIG_MFD_88PM800 is not set
+# CONFIG_MFD_88PM805 is not set
+# CONFIG_MFD_88PM860X is not set
+# CONFIG_MFD_MAX14577 is not set
+# CONFIG_MFD_MAX77686 is not set
+# CONFIG_MFD_MAX77693 is not set
+# CONFIG_MFD_MAX77843 is not set
+# CONFIG_MFD_MAX8907 is not set
+# CONFIG_MFD_MAX8925 is not set
+# CONFIG_MFD_MAX8997 is not set
+# CONFIG_MFD_MAX8998 is not set
 # CONFIG_MFD_MT6397 is not set
 # CONFIG_MFD_MENF21BMC is not set
 # CONFIG_EZX_PCAP is not set
@@ -4061,28 +4088,43 @@
 CONFIG_UCB1400_CORE=m
 CONFIG_MFD_RDC321X=m
 CONFIG_MFD_RTSX_PCI=m
+CONFIG_MFD_RT5033=m
 CONFIG_MFD_RTSX_USB=m
+# CONFIG_MFD_RC5T583 is not set
 CONFIG_MFD_RK808=m
 CONFIG_MFD_RN5T618=m
+# CONFIG_MFD_SEC_CORE is not set
 CONFIG_MFD_SI476X_CORE=m
 CONFIG_MFD_SM501=m
 CONFIG_MFD_SM501_GPIO=y
 # CONFIG_MFD_SKY81452 is not set
+# CONFIG_MFD_SMSC is not set
 CONFIG_ABX500_CORE=y
+# CONFIG_AB3100_CORE is not set
 # CONFIG_MFD_STMPE is not set
 CONFIG_MFD_SYSCON=y
 CONFIG_MFD_TI_AM335X_TSCADC=m
 CONFIG_MFD_LP3943=m
+# CONFIG_MFD_LP8788 is not set
+# CONFIG_MFD_PALMAS is not set
 # CONFIG_TPS6105X is not set
 CONFIG_TPS65010=m
 CONFIG_TPS6507X=m
+# CONFIG_MFD_TPS65090 is not set
 CONFIG_MFD_TPS65217=m
 CONFIG_MFD_TPS65218=m
+# CONFIG_MFD_TPS6586X is not set
+# CONFIG_MFD_TPS65910 is not set
 # CONFIG_MFD_TPS65912 is not set
+# CONFIG_MFD_TPS65912_I2C is not set
 # CONFIG_MFD_TPS65912_SPI is not set
+# CONFIG_MFD_TPS80031 is not set
+# CONFIG_TWL4030_CORE is not set
+# CONFIG_TWL6040_CORE is not set
 CONFIG_MFD_WL1273_CORE=m
 CONFIG_MFD_LM3533=m
 # CONFIG_MFD_TIMBERDALE is not set
+# CONFIG_MFD_TC3589X is not set
 # CONFIG_MFD_TMIO is not set
 CONFIG_MFD_VX855=m
 CONFIG_MFD_ARIZONA=y
@@ -4091,7 +4133,10 @@
 CONFIG_MFD_WM5102=y
 CONFIG_MFD_WM5110=y
 # CONFIG_MFD_WM8997 is not set
+# CONFIG_MFD_WM8400 is not set
+# CONFIG_MFD_WM831X_I2C is not set
 # CONFIG_MFD_WM831X_SPI is not set
+# CONFIG_MFD_WM8350_I2C is not set
 # CONFIG_MFD_WM8994 is not set
 # CONFIG_REGULATOR is not set
 CONFIG_MEDIA_SUPPORT=m

Modified: config.x86_64
===
--- config.x86_64   2015-09-03 13:06:25 UTC (rev 245231)
+++ config.x86_64   2015-09-03 13:42:21 UTC 

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

2015-09-03 Thread Balló György
Date: Thursday, September 3, 2015 @ 16:28:33
  Author: bgyorgy
Revision: 139133

upgpkg: cherrytree 0.35.10-1

Update to version 0.35.10

Modified:
  cherrytree/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-03 11:42:28 UTC (rev 139132)
+++ PKGBUILD2015-09-03 14:28:33 UTC (rev 139133)
@@ -6,7 +6,7 @@
 # Contributor: Tomas A. Schertel 
 
 pkgname=cherrytree
-pkgver=0.35.9
+pkgver=0.35.10
 pkgrel=1
 pkgdesc='Hierarchical note taking application featuring rich text and syntax 
highlighting'
 arch=('any')
@@ -17,7 +17,7 @@
 'p7zip: for password protection support')
 install=cherrytree.install
 source=(http://www.giuspen.com/software/$pkgname-$pkgver.tar.xz)
-sha256sums=('4c597e70736aad6135c53e2f10ff9246e6d1133e35dfcdefece38fe0c185ca93')
+sha256sums=('34ed912074387a3a1e7b6b07d3b231b6a9c11165bbe52cbebf13b3b0ee46de12')
 
 build() {
   cd $pkgname-$pkgver
@@ -27,7 +27,4 @@
 package() {
   cd $pkgname-$pkgver
   python2 setup.py install --root="$pkgdir/" --optimize=1
-
-  # Fix file permissions
-  find "$pkgdir/usr/share" -type f | xargs chmod 644
 }


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

2015-09-03 Thread Balló György
Date: Thursday, September 3, 2015 @ 16:28:56
  Author: bgyorgy
Revision: 139134

archrelease: copy trunk to community-any

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

+
 PKGBUILD   |   63 ---
 cherrytree.install |   28 +++---
 2 files changed, 44 insertions(+), 47 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-09-03 14:28:33 UTC (rev 139133)
+++ PKGBUILD2015-09-03 14:28:56 UTC (rev 139134)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Bartłomiej Piotrowski
-# Contributor: Brad Fanella 
-# Contributor: Allan McRae 
-# Contributor: Tomas A. Schertel 
-
-pkgname=cherrytree
-pkgver=0.35.9
-pkgrel=1
-pkgdesc='Hierarchical note taking application featuring rich text and syntax 
highlighting'
-arch=('any')
-url='http://www.giuspen.com/cherrytree/'
-license=('GPL3')
-depends=('pygtksourceview2' 'python2-dbus' 'desktop-file-utils')
-optdepends=('python2-pyenchant: for spell checking support'
-'p7zip: for password protection support')
-install=cherrytree.install
-source=(http://www.giuspen.com/software/$pkgname-$pkgver.tar.xz)
-sha256sums=('4c597e70736aad6135c53e2f10ff9246e6d1133e35dfcdefece38fe0c185ca93')
-
-build() {
-  cd $pkgname-$pkgver
-  python2 setup.py build
-}
-
-package() {
-  cd $pkgname-$pkgver
-  python2 setup.py install --root="$pkgdir/" --optimize=1
-
-  # Fix file permissions
-  find "$pkgdir/usr/share" -type f | xargs chmod 644
-}

Copied: cherrytree/repos/community-any/PKGBUILD (from rev 139133, 
cherrytree/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-09-03 14:28:56 UTC (rev 139134)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributor: Bartłomiej Piotrowski
+# Contributor: Brad Fanella 
+# Contributor: Allan McRae 
+# Contributor: Tomas A. Schertel 
+
+pkgname=cherrytree
+pkgver=0.35.10
+pkgrel=1
+pkgdesc='Hierarchical note taking application featuring rich text and syntax 
highlighting'
+arch=('any')
+url='http://www.giuspen.com/cherrytree/'
+license=('GPL3')
+depends=('pygtksourceview2' 'python2-dbus' 'desktop-file-utils')
+optdepends=('python2-pyenchant: for spell checking support'
+'p7zip: for password protection support')
+install=cherrytree.install
+source=(http://www.giuspen.com/software/$pkgname-$pkgver.tar.xz)
+sha256sums=('34ed912074387a3a1e7b6b07d3b231b6a9c11165bbe52cbebf13b3b0ee46de12')
+
+build() {
+  cd $pkgname-$pkgver
+  python2 setup.py build
+}
+
+package() {
+  cd $pkgname-$pkgver
+  python2 setup.py install --root="$pkgdir/" --optimize=1
+}

Deleted: cherrytree.install
===
--- cherrytree.install  2015-09-03 14:28:33 UTC (rev 139133)
+++ cherrytree.install  2015-09-03 14:28:56 UTC (rev 139134)
@@ -1,14 +0,0 @@
-post_install()
-{
-   update-desktop-database -q
-   gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-   update-mime-database usr/share/mime &> /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: cherrytree/repos/community-any/cherrytree.install (from rev 139133, 
cherrytree/trunk/cherrytree.install)
===
--- cherrytree.install  (rev 0)
+++ cherrytree.install  2015-09-03 14:28:56 UTC (rev 139134)
@@ -0,0 +1,14 @@
+post_install()
+{
+   update-desktop-database -q
+   gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+   update-mime-database usr/share/mime &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}


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

2015-09-03 Thread Balló György
Date: Thursday, September 3, 2015 @ 17:08:06
  Author: bgyorgy
Revision: 139139

upgpkg: guake 0.8.0-1

Update to version 0.8.0

Modified:
  guake/trunk/PKGBUILD
Deleted:
  guake/trunk/default-value.patch
  guake/trunk/keybinder.patch
  guake/trunk/unbind.patch

-+
 PKGBUILD|   25 
 default-value.patch |   22 
 keybinder.patch | 1948 --
 unbind.patch|  147 ---
 4 files changed, 6 insertions(+), 2136 deletions(-)

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


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

2015-09-03 Thread Balló György
Date: Thursday, September 3, 2015 @ 17:23:31
  Author: bgyorgy
Revision: 139144

archrelease: copy trunk to community-any

Added:
  simutrans-pak128/repos/community-any/PKGBUILD
(from rev 139143, simutrans-pak128/trunk/PKGBUILD)
Deleted:
  simutrans-pak128/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-09-03 15:23:26 UTC (rev 139143)
+++ PKGBUILD2015-09-03 15:23:31 UTC (rev 139144)
@@ -1,24 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: JD Steffen 
-
-pkgname=simutrans-pak128
-pkgver=2.5.2
-_pkgver=RC_120
-pkgrel=1
-pkgdesc="High resolution graphics set for Simutrans"
-arch=('any')
-url="http://128.simutrans.com/;
-license=('Artistic2.0')
-provides=('simutrans-pak64')
-options=('!strip')
-source=(http://downloads.sourceforge.net/simutrans/pak128-$pkgver--$_pkgver.zip)
-md5sums=('5ef83e7bab077b9aa68f1466fd71d141')
-
-package() {
-  cd "$srcdir"
-
-  #data
-  mkdir -p "$pkgdir/usr/share/games/simutrans"
-  cp -r pak128 "$pkgdir/usr/share/games/simutrans"
-}

Copied: simutrans-pak128/repos/community-any/PKGBUILD (from rev 139143, 
simutrans-pak128/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-09-03 15:23:31 UTC (rev 139144)
@@ -0,0 +1,24 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributor: JD Steffen 
+
+pkgname=simutrans-pak128
+pkgver=2.5.3
+_pkgver=ST120
+pkgrel=1
+pkgdesc="High resolution graphics set for Simutrans"
+arch=('any')
+url="http://128.simutrans.com/;
+license=('Artistic2.0')
+provides=('simutrans-pak64')
+options=('!strip')
+source=(http://downloads.sourceforge.net/simutrans/pak128-$pkgver--$_pkgver.zip)
+md5sums=('cd5dbf7b1c53700d66c55f9533f09d68')
+
+package() {
+  cd "$srcdir"
+
+  #data
+  mkdir -p "$pkgdir/usr/share/games/simutrans"
+  cp -r pak128 "$pkgdir/usr/share/games/simutrans"
+}


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

2015-09-03 Thread Balló György
Date: Thursday, September 3, 2015 @ 17:23:26
  Author: bgyorgy
Revision: 139143

upgpkg: simutrans-pak128 2.5.3-1

Update to version 2.5.3

Modified:
  simutrans-pak128/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-03 15:13:04 UTC (rev 139142)
+++ PKGBUILD2015-09-03 15:23:26 UTC (rev 139143)
@@ -3,8 +3,8 @@
 # Contributor: JD Steffen 
 
 pkgname=simutrans-pak128
-pkgver=2.5.2
-_pkgver=RC_120
+pkgver=2.5.3
+_pkgver=ST120
 pkgrel=1
 pkgdesc="High resolution graphics set for Simutrans"
 arch=('any')
@@ -13,7 +13,7 @@
 provides=('simutrans-pak64')
 options=('!strip')
 
source=(http://downloads.sourceforge.net/simutrans/pak128-$pkgver--$_pkgver.zip)
-md5sums=('5ef83e7bab077b9aa68f1466fd71d141')
+md5sums=('cd5dbf7b1c53700d66c55f9533f09d68')
 
 package() {
   cd "$srcdir"


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

2015-09-03 Thread Balló György
Date: Thursday, September 3, 2015 @ 17:30:28
  Author: bgyorgy
Revision: 139146

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

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

---+
 /PKGBUILD |   56 
 /uget.install |   22 +++
 community-i686/PKGBUILD   |   28 
 community-i686/uget.install   |   11 ---
 community-x86_64/PKGBUILD |   28 
 community-x86_64/uget.install |   11 ---
 6 files changed, 78 insertions(+), 78 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-09-03 15:30:21 UTC (rev 139145)
+++ community-i686/PKGBUILD 2015-09-03 15:30:28 UTC (rev 139146)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-
-pkgname=uget
-pkgver=2.0
-pkgrel=1
-pkgdesc="GTK+ download manager featuring download classification and HTML 
import"
-arch=('i686' 'x86_64')
-url="http://ugetdm.com/;
-license=('LGPL')
-depends=('libnotify' 'gtk3' 'gstreamer' 'curl')
-makedepends=('intltool')
-optdepends=('aria2: alternative backend')
-install=$pkgname.install
-source=(http://downloads.sourceforge.net/urlget/$pkgname-$pkgver.tar.gz)
-md5sums=('f9db710bd6f73461edf736e1a6040dcd')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --disable-appindicator
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir/" install
-}

Copied: uget/repos/community-i686/PKGBUILD (from rev 139145, 
uget/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-09-03 15:30:28 UTC (rev 139146)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Balló György 
+
+pkgname=uget
+pkgver=2.0.1
+pkgrel=1
+pkgdesc="GTK+ download manager featuring download classification and HTML 
import"
+arch=('i686' 'x86_64')
+url="http://ugetdm.com/;
+license=('LGPL')
+depends=('libnotify' 'gtk3' 'gstreamer' 'curl')
+makedepends=('intltool')
+optdepends=('aria2: alternative backend')
+install=$pkgname.install
+source=(http://downloads.sourceforge.net/urlget/$pkgname-$pkgver.tar.gz)
+md5sums=('b4249ae706dc57a3c08c78a5f3125b26')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --disable-appindicator
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-i686/uget.install
===
--- community-i686/uget.install 2015-09-03 15:30:21 UTC (rev 139145)
+++ community-i686/uget.install 2015-09-03 15:30:28 UTC (rev 139146)
@@ -1,11 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}

Copied: uget/repos/community-i686/uget.install (from rev 139145, 
uget/trunk/uget.install)
===
--- community-i686/uget.install (rev 0)
+++ community-i686/uget.install 2015-09-03 15:30:28 UTC (rev 139146)
@@ -0,0 +1,11 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-09-03 15:30:21 UTC (rev 139145)
+++ community-x86_64/PKGBUILD   2015-09-03 15:30:28 UTC (rev 139146)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-
-pkgname=uget
-pkgver=2.0
-pkgrel=1
-pkgdesc="GTK+ download manager featuring download classification and HTML 
import"
-arch=('i686' 'x86_64')
-url="http://ugetdm.com/;
-license=('LGPL')
-depends=('libnotify' 'gtk3' 'gstreamer' 'curl')
-makedepends=('intltool')
-optdepends=('aria2: alternative backend')
-install=$pkgname.install
-source=(http://downloads.sourceforge.net/urlget/$pkgname-$pkgver.tar.gz)
-md5sums=('f9db710bd6f73461edf736e1a6040dcd')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  

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

2015-09-03 Thread Balló György
Date: Thursday, September 3, 2015 @ 17:30:21
  Author: bgyorgy
Revision: 139145

upgpkg: uget 2.0.1-1

Update to version 2.0.1

Modified:
  uget/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-03 15:23:31 UTC (rev 139144)
+++ PKGBUILD2015-09-03 15:30:21 UTC (rev 139145)
@@ -2,7 +2,7 @@
 # Maintainer: Balló György 
 
 pkgname=uget
-pkgver=2.0
+pkgver=2.0.1
 pkgrel=1
 pkgdesc="GTK+ download manager featuring download classification and HTML 
import"
 arch=('i686' 'x86_64')
@@ -13,10 +13,10 @@
 optdepends=('aria2: alternative backend')
 install=$pkgname.install
 source=(http://downloads.sourceforge.net/urlget/$pkgname-$pkgver.tar.gz)
-md5sums=('f9db710bd6f73461edf736e1a6040dcd')
+md5sums=('b4249ae706dc57a3c08c78a5f3125b26')
 
 build() {
-  cd "$srcdir/$pkgname-$pkgver"
+  cd $pkgname-$pkgver
   ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
   --disable-appindicator
   make
@@ -23,6 +23,6 @@
 }
 
 package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir/" install
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
 }


[arch-commits] Commit in linux-firmware/repos (testing-any testing-any/PKGBUILD)

2015-09-03 Thread Tobias Powalowski
Date: Thursday, September 3, 2015 @ 16:34:54
  Author: tpowa
Revision: 245236

archrelease: copy trunk to testing-any

Added:
  linux-firmware/repos/testing-any/
  linux-firmware/repos/testing-any/PKGBUILD
(from rev 245235, linux-firmware/trunk/PKGBUILD)

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

Copied: linux-firmware/repos/testing-any/PKGBUILD (from rev 245235, 
linux-firmware/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2015-09-03 14:34:54 UTC (rev 245236)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Thomas Bächler 
+
+pkgname=linux-firmware
+# Commit date + git rev-parse --short origin/master
+_rev=dc00519
+pkgver=20150812.${_rev}
+pkgrel=1
+pkgdesc="Firmware files for Linux"
+makedepends=('git')
+arch=('any')
+url="http://git.kernel.org/?p=linux/kernel/git/firmware/linux-firmware.git;a=summary;
+license=('GPL2' 'GPL3' 'custom')
+conflicts=('linux-firmware-git'
+   'kernel26-firmware'
+   'ar9170-fw'
+   'iwlwifi-1000-ucode'
+   'iwlwifi-3945-ucode'
+   'iwlwifi-4965-ucode'
+   'iwlwifi-5000-ucode'
+   'iwlwifi-5150-ucode'
+   'iwlwifi-6000-ucode'
+   'rt2870usb-fw'
+   'rt2x00-rt61-fw'
+   'rt2x00-rt71w-fw'
+   'amd-ucode')
+replaces=('kernel26-firmware'
+  'ar9170-fw'
+  'iwlwifi-1000-ucode'
+  'iwlwifi-3945-ucode'
+  'iwlwifi-4965-ucode'
+  'iwlwifi-5000-ucode'
+  'iwlwifi-5150-ucode'
+  'iwlwifi-6000-ucode'
+  'rt2870usb-fw'
+  'rt2x00-rt61-fw'
+  'rt2x00-rt71w-fw'
+  'amd-ucode')
+options=(!strip)
+source=("git+https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git#commit=${_rev};)
+md5sums=('SKIP')
+
+package() {
+  cd "${srcdir}/${pkgname}"
+
+  make DESTDIR="${pkgdir}" FIRMWAREDIR=/usr/lib/firmware install
+  rm "${pkgdir}/usr/lib/firmware/"{Makefile,README,configure,GPL-3}
+
+  install -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -Dm644 LICEN* WHENCE "${pkgdir}/usr/share/licenses/linux-firmware/"
+
+  # Trigger a microcode reload for configurations not using early updates
+  install -d "${pkgdir}/usr/lib/tmpfiles.d"
+  echo 'w /sys/devices/system/cpu/microcode/reload - - - - 1' \
+>"${pkgdir}/usr/lib/tmpfiles.d/${pkgname}.conf"
+}
+# vim:set ts=2 sw=2 et:


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

2015-09-03 Thread Tobias Powalowski
Date: Thursday, September 3, 2015 @ 16:34:46
  Author: tpowa
Revision: 245235

upgpkg: linux-firmware 20150812.dc00519-1

bump to latest version

Modified:
  linux-firmware/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-03 14:13:41 UTC (rev 245234)
+++ PKGBUILD2015-09-03 14:34:46 UTC (rev 245235)
@@ -3,8 +3,8 @@
 
 pkgname=linux-firmware
 # Commit date + git rev-parse --short origin/master
-_rev=e10097a
-pkgver=20150722.${_rev}
+_rev=dc00519
+pkgver=20150812.${_rev}
 pkgrel=1
 pkgdesc="Firmware files for Linux"
 makedepends=('git')


[arch-commits] Commit in docky/repos/community-any (9 files)

2015-09-03 Thread Balló György
Date: Thursday, September 3, 2015 @ 16:54:27
  Author: bgyorgy
Revision: 139136

archrelease: copy trunk to community-any

Added:
  docky/repos/community-any/PKGBUILD
(from rev 139135, docky/trunk/PKGBUILD)
  docky/repos/community-any/docky.install
(from rev 139135, docky/trunk/docky.install)
Deleted:
  docky/repos/community-any/PKGBUILD
  docky/repos/community-any/docky.install
  docky/repos/community-any/drop-gnome-desktop-sharp.patch
  docky/repos/community-any/drop-rsvg2-sharp.patch
  docky/repos/community-any/fix-build.patch
  docky/repos/community-any/systemd-support.patch
  docky/repos/community-any/use_dbussharp_2.patch

+
 PKGBUILD   |   97 +
 docky.install  |   46 
 drop-gnome-desktop-sharp.patch |  155 ---
 drop-rsvg2-sharp.patch |  222 ---
 fix-build.patch|   16 --
 systemd-support.patch  |   66 ---
 use_dbussharp_2.patch  |   15 --
 7 files changed, 54 insertions(+), 563 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-09-03 14:54:22 UTC (rev 139135)
+++ PKGBUILD2015-09-03 14:54:27 UTC (rev 139136)
@@ -1,66 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Jan "heftig" Steffens 
-# Contributor: dieghen89 
-# Contributor: Alessio 'Bl@ster' Biancalana 
-
-pkgname=docky
-pkgver=2.2.0
-pkgrel=4
-pkgdesc="Full fledged dock application that makes opening common applications 
and managing windows easier and quicker"
-url="http://wiki.go-docky.com/;
-arch=('any')
-license=('GPL')
-depends=('gconf-sharp' 'gkeyfile-sharp' 'gnome-keyring-sharp' 'librsvg' 
'mono-addins' 'notify-sharp' 'wnck-sharp')
-makedepends=('intltool' 'gio-sharp')
-install=$pkgname.install
-source=("http://launchpad.net/$pkgname/2.2/$pkgver/+download/$pkgname-$pkgver.tar.xz;
- use_dbussharp_2.patch
- fix-build.patch
- systemd-support.patch
- drop-gnome-desktop-sharp.patch
- drop-rsvg2-sharp.patch)
-md5sums=('519fa5920a590a680afd8a87d0db9db5'
- '42553efbadb9dcf8c108ee9d8d568b2e'
- 'a78989892dfb660600c5f63a6df90f37'
- 'a9670aef62793386b058a26d78d25005'
- 'c19568dde9351e258e1d2e3ef2e7dddc'
- '468fd1e7f7cffad8bc4f60c3bc711975')
-
-prepare() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  # Fix build
-  patch -Np1 -i ../fix-build.patch
-
-  # Add systemd support for suspend and hibernate
-  patch -Np0 -i ../systemd-support.patch
-
-  # Remove gnome-desktop-sharp dependency
-  patch -Np0 -i ../drop-gnome-desktop-sharp.patch
-
-  # Remove rsvg2-sharp dependency
-  patch -Np0 -i ../drop-rsvg2-sharp.patch
-
-  # dbus-sharp 2.0
-  patch -Np1 -i ../use_dbussharp_2.patch
-}
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  autoreconf -fi
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --disable-schemas-install \
-  --with-gconf-schema-file-dir=/usr/share/gconf/schemas
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-
-  # Remove NetworkManager plugin, because it doesn't work
-  rm "$pkgdir/usr/lib/docky/plugins/NetworkManager.dll"
-}

Copied: docky/repos/community-any/PKGBUILD (from rev 139135, 
docky/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-09-03 14:54:27 UTC (rev 139136)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributor: Jan "heftig" Steffens 
+# Contributor: dieghen89 
+# Contributor: Alessio 'Bl@ster' Biancalana 
+
+pkgname=docky
+pkgver=2.2.1.1
+pkgrel=1
+pkgdesc="Full fledged dock application that makes opening common applications 
and managing windows easier and quicker"
+url="http://wiki.go-docky.com/;
+arch=('any')
+license=('GPL')
+depends=('gconf-sharp' 'gkeyfile-sharp' 'gnome-keyring-sharp' 'librsvg' 
'libwnck' 'mono-addins' 'notify-sharp')
+makedepends=('intltool' 'gio-sharp')
+install=$pkgname.install
+source=("http://launchpad.net/$pkgname/2.2/$pkgver/+download/$pkgname-$pkgver.tar.xz;)
+md5sums=('adc261e5fe64d0be6edaf635cd9ce09e')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --disable-schemas-install \
+  --with-gconf-schema-file-dir=/usr/share/gconf/schemas
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: docky.install
===
--- docky.install   2015-09-03 14:54:22 UTC (rev 139135)
+++ docky.install   2015-09-03 14:54:27 UTC (rev 139136)
@@ -1,23 +0,0 @@
-pkgname=docky
-

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

2015-09-03 Thread Balló György
Date: Thursday, September 3, 2015 @ 17:01:14
  Author: bgyorgy
Revision: 139138

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

Added:
  gnome-pie/repos/community-i686/PKGBUILD
(from rev 139137, gnome-pie/trunk/PKGBUILD)
  gnome-pie/repos/community-i686/gnome-pie.install
(from rev 139137, gnome-pie/trunk/gnome-pie.install)
  gnome-pie/repos/community-x86_64/PKGBUILD
(from rev 139137, gnome-pie/trunk/PKGBUILD)
  gnome-pie/repos/community-x86_64/gnome-pie.install
(from rev 139137, gnome-pie/trunk/gnome-pie.install)
Deleted:
  gnome-pie/repos/community-i686/PKGBUILD
  gnome-pie/repos/community-i686/gnome-pie.install
  gnome-pie/repos/community-x86_64/PKGBUILD
  gnome-pie/repos/community-x86_64/gnome-pie.install

+
 /PKGBUILD  |   58 +++
 /gnome-pie.install |   22 +
 community-i686/PKGBUILD|   29 -
 community-i686/gnome-pie.install   |   11 --
 community-x86_64/PKGBUILD  |   29 -
 community-x86_64/gnome-pie.install |   11 --
 6 files changed, 80 insertions(+), 80 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-09-03 15:01:07 UTC (rev 139137)
+++ community-i686/PKGBUILD 2015-09-03 15:01:14 UTC (rev 139138)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-
-pkgname=gnome-pie
-_pkgname=Gnome-Pie
-pkgver=0.6.2
-pkgrel=1
-pkgdesc="Circular application launcher for GNOME"
-arch=('i686' 'x86_64')
-url="http://gnome-pie.simonschneegans.de/;
-license=('GPL')
-depends=('bamf' 'libgee' 'gnome-menus')
-makedepends=('cmake' 'vala')
-install=$pkgname.install
-source=($_pkgname-$pkgver.tar.gz::https://github.com/Simmesimme/$_pkgname/archive/v$pkgver.tar.gz)
-md5sums=('e733bdf0670726221ac9eab1256a7e5d')
-
-build() {
-  cd $_pkgname-$pkgver
-  [[ -d build ]] || mkdir build
-  cd build
-  cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd $_pkgname-$pkgver/build
-  make DESTDIR="$pkgdir" install
-}

Copied: gnome-pie/repos/community-i686/PKGBUILD (from rev 139137, 
gnome-pie/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-09-03 15:01:14 UTC (rev 139138)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Balló György 
+
+pkgname=gnome-pie
+_pkgname=Gnome-Pie
+pkgver=0.6.5
+pkgrel=1
+pkgdesc="Circular application launcher for GNOME"
+arch=('i686' 'x86_64')
+url="http://gnome-pie.simonschneegans.de/;
+license=('GPL')
+depends=('bamf' 'libgee' 'gnome-menus')
+makedepends=('cmake' 'vala')
+install=$pkgname.install
+source=($_pkgname-$pkgver.tar.gz::https://github.com/Simmesimme/$_pkgname/archive/v$pkgver.tar.gz)
+md5sums=('5799443c816640d8608e512eb523e3a2')
+
+build() {
+  cd $_pkgname-$pkgver
+  [[ -d build ]] || mkdir build
+  cd build
+  cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd $_pkgname-$pkgver/build
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-i686/gnome-pie.install
===
--- community-i686/gnome-pie.install2015-09-03 15:01:07 UTC (rev 139137)
+++ community-i686/gnome-pie.install2015-09-03 15:01:14 UTC (rev 139138)
@@ -1,11 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}

Copied: gnome-pie/repos/community-i686/gnome-pie.install (from rev 139137, 
gnome-pie/trunk/gnome-pie.install)
===
--- community-i686/gnome-pie.install(rev 0)
+++ community-i686/gnome-pie.install2015-09-03 15:01:14 UTC (rev 139138)
@@ -0,0 +1,11 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-09-03 15:01:07 UTC (rev 139137)
+++ community-x86_64/PKGBUILD   2015-09-03 15:01:14 UTC (rev 139138)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-
-pkgname=gnome-pie
-_pkgname=Gnome-Pie
-pkgver=0.6.2
-pkgrel=1
-pkgdesc="Circular application launcher for GNOME"
-arch=('i686' 'x86_64')
-url="http://gnome-pie.simonschneegans.de/;
-license=('GPL')
-depends=('bamf' 'libgee' 'gnome-menus')
-makedepends=('cmake' 'vala')
-install=$pkgname.install
-source=($_pkgname-$pkgver.tar.gz::https://github.com/Simmesimme/$_pkgname/archive/v$pkgver.tar.gz)

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

2015-09-03 Thread Balló György
Date: Thursday, September 3, 2015 @ 17:01:07
  Author: bgyorgy
Revision: 139137

upgpkg: gnome-pie 0.6.5-1

Update to version 0.6.5

Modified:
  gnome-pie/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-03 14:54:27 UTC (rev 139136)
+++ PKGBUILD2015-09-03 15:01:07 UTC (rev 139137)
@@ -3,7 +3,7 @@
 
 pkgname=gnome-pie
 _pkgname=Gnome-Pie
-pkgver=0.6.2
+pkgver=0.6.5
 pkgrel=1
 pkgdesc="Circular application launcher for GNOME"
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 makedepends=('cmake' 'vala')
 install=$pkgname.install
 
source=($_pkgname-$pkgver.tar.gz::https://github.com/Simmesimme/$_pkgname/archive/v$pkgver.tar.gz)
-md5sums=('e733bdf0670726221ac9eab1256a7e5d')
+md5sums=('5799443c816640d8608e512eb523e3a2')
 
 build() {
   cd $_pkgname-$pkgver


[arch-commits] Commit in guake/repos/community-any (7 files)

2015-09-03 Thread Balló György
Date: Thursday, September 3, 2015 @ 17:08:11
  Author: bgyorgy
Revision: 139140

archrelease: copy trunk to community-any

Added:
  guake/repos/community-any/PKGBUILD
(from rev 139139, guake/trunk/PKGBUILD)
  guake/repos/community-any/guake.install
(from rev 139139, guake/trunk/guake.install)
Deleted:
  guake/repos/community-any/PKGBUILD
  guake/repos/community-any/default-value.patch
  guake/repos/community-any/guake.install
  guake/repos/community-any/keybinder.patch
  guake/repos/community-any/unbind.patch

-+
 PKGBUILD|   91 +-
 default-value.patch |   22 
 guake.install   |   44 -
 keybinder.patch | 1948 --
 unbind.patch|  147 ---
 5 files changed, 61 insertions(+), 2191 deletions(-)

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


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

2015-09-03 Thread Balló György
Date: Thursday, September 3, 2015 @ 17:12:57
  Author: bgyorgy
Revision: 139141

upgpkg: onboard 1.1.2-1

Update to version 1.1.2

Modified:
  onboard/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-03 15:08:11 UTC (rev 139140)
+++ PKGBUILD2015-09-03 15:12:57 UTC (rev 139141)
@@ -2,8 +2,8 @@
 # Maintainer: Balló György 
 
 pkgname=onboard
-pkgver=1.1.1
-pkgrel=2
+pkgver=1.1.2
+pkgrel=1
 pkgdesc="On-screen keyboard useful on tablet PCs or for mobility impaired 
users"
 arch=('i686' 'x86_64')
 url="https://launchpad.net/onboard;
@@ -13,7 +13,7 @@
 optdepends=('mousetweaks: hover click with mouse')
 install=$pkgname.install
 
source=(http://launchpad.net/$pkgname/${pkgver%.*}/$pkgver/+download/$pkgname-$pkgver.tar.gz)
-md5sums=('4b4cd0075ff71ee4087d46e7b2e98473')
+md5sums=('cff7f91daa2a9dace9af18fecf989966')
 
 build() {
   cd $pkgname-$pkgver


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

2015-09-03 Thread Balló György
Date: Thursday, September 3, 2015 @ 17:13:04
  Author: bgyorgy
Revision: 139142

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

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

--+
 /PKGBUILD|   52 +
 /onboard.install |   26 ++
 community-i686/PKGBUILD  |   26 --
 community-i686/onboard.install   |   13 -
 community-x86_64/PKGBUILD|   26 --
 community-x86_64/onboard.install |   13 -
 6 files changed, 78 insertions(+), 78 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-09-03 15:12:57 UTC (rev 139141)
+++ community-i686/PKGBUILD 2015-09-03 15:13:04 UTC (rev 139142)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-
-pkgname=onboard
-pkgver=1.1.1
-pkgrel=2
-pkgdesc="On-screen keyboard useful on tablet PCs or for mobility impaired 
users"
-arch=('i686' 'x86_64')
-url="https://launchpad.net/onboard;
-license=('GPL')
-depends=('libxkbfile' 'libcanberra' 'hunspell' 'python-cairo' 'python-dbus' 
'python-gobject' 'gtk3' 'iso-codes' 'librsvg' 'gsettings-desktop-schemas' 
'desktop-file-utils' 'dconf')
-makedepends=('python-distutils-extra')
-optdepends=('mousetweaks: hover click with mouse')
-install=$pkgname.install
-source=(http://launchpad.net/$pkgname/${pkgver%.*}/$pkgver/+download/$pkgname-$pkgver.tar.gz)
-md5sums=('4b4cd0075ff71ee4087d46e7b2e98473')
-
-build() {
-  cd $pkgname-$pkgver
-  python3 setup.py build
-}
-
-package() {
-  cd $pkgname-$pkgver
-  python3 setup.py install --root=$pkgdir --optimize=1
-}

Copied: onboard/repos/community-i686/PKGBUILD (from rev 139141, 
onboard/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-09-03 15:13:04 UTC (rev 139142)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Balló György 
+
+pkgname=onboard
+pkgver=1.1.2
+pkgrel=1
+pkgdesc="On-screen keyboard useful on tablet PCs or for mobility impaired 
users"
+arch=('i686' 'x86_64')
+url="https://launchpad.net/onboard;
+license=('GPL')
+depends=('libxkbfile' 'libcanberra' 'hunspell' 'python-cairo' 'python-dbus' 
'python-gobject' 'gtk3' 'iso-codes' 'librsvg' 'gsettings-desktop-schemas' 
'desktop-file-utils' 'dconf')
+makedepends=('python-distutils-extra')
+optdepends=('mousetweaks: hover click with mouse')
+install=$pkgname.install
+source=(http://launchpad.net/$pkgname/${pkgver%.*}/$pkgver/+download/$pkgname-$pkgver.tar.gz)
+md5sums=('cff7f91daa2a9dace9af18fecf989966')
+
+build() {
+  cd $pkgname-$pkgver
+  python3 setup.py build
+}
+
+package() {
+  cd $pkgname-$pkgver
+  python3 setup.py install --root=$pkgdir --optimize=1
+}

Deleted: community-i686/onboard.install
===
--- community-i686/onboard.install  2015-09-03 15:12:57 UTC (rev 139141)
+++ community-i686/onboard.install  2015-09-03 15:13:04 UTC (rev 139142)
@@ -1,13 +0,0 @@
-post_install() {
-  glib-compile-schemas usr/share/glib-2.0/schemas
-  update-desktop-database -q
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}

Copied: onboard/repos/community-i686/onboard.install (from rev 139141, 
onboard/trunk/onboard.install)
===
--- community-i686/onboard.install  (rev 0)
+++ community-i686/onboard.install  2015-09-03 15:13:04 UTC (rev 139142)
@@ -0,0 +1,13 @@
+post_install() {
+  glib-compile-schemas usr/share/glib-2.0/schemas
+  update-desktop-database -q
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-09-03 15:12:57 UTC (rev 139141)
+++ community-x86_64/PKGBUILD   2015-09-03 15:13:04 UTC (rev 139142)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-
-pkgname=onboard
-pkgver=1.1.1
-pkgrel=2
-pkgdesc="On-screen keyboard useful 

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

2015-09-03 Thread Tobias Powalowski
Date: Thursday, September 3, 2015 @ 18:50:08
  Author: tpowa
Revision: 245240

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

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

--+
 testing-i686/PKGBUILD|  287 
 testing-i686/change-default-console-loglevel.patch   |   11 
 testing-i686/config  | 7722 +
 testing-i686/config.x86_64   | 7474 
 testing-i686/linux.install   |   37 
 testing-i686/linux.preset|   14 
 testing-x86_64/PKGBUILD  |  287 
 testing-x86_64/change-default-console-loglevel.patch |   11 
 testing-x86_64/config| 7722 +
 testing-x86_64/config.x86_64 | 7474 
 testing-x86_64/linux.install |   37 
 testing-x86_64/linux.preset  |   14 
 12 files changed, 31090 insertions(+)

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


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

2015-09-03 Thread Sven-Hendrik Haase
Date: Thursday, September 3, 2015 @ 20:13:48
  Author: svenstaro
Revision: 139148

upgpkg: irrlicht 1.8.2-2

Try using clang++ instead of g++ to fix segfault

Modified:
  irrlicht/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-03 17:29:59 UTC (rev 139147)
+++ PKGBUILD2015-09-03 18:13:48 UTC (rev 139148)
@@ -8,13 +8,13 @@
 pkgbase=irrlicht
 pkgname=('irrlicht' 'irrlicht-docs')
 pkgver=1.8.2
-pkgrel=1
+pkgrel=2
 pkgdesc="An open source high performance realtime 3D graphics engine."
 arch=('i686' 'x86_64')
 url="http://irrlicht.sourceforge.net/;
 license=('ZLIB')
 depends=('libgl' 'libjpeg' 'bzip2' 'libpng')
-makedepends=('mesa' 'unzip' 'libxcursor' 'wget')
+makedepends=('mesa' 'unzip' 'libxcursor' 'clang')
 optdepends=('libxcursor: run examples')
 source=("http://downloads.sourceforge.net/irrlicht/$pkgname-$pkgver.zip;)
 noextract=($pkgname-$pkgver.zip)
@@ -24,17 +24,12 @@
   unzip $pkgbase-$pkgver.zip
 
   cd $srcdir/$pkgbase-$pkgver/source/Irrlicht
-
-  # I'm so sorry for this but Irrlicht people don't care about Linux much
-  #for file in COpenGLExtensionHandler.h glext.h glxext.h wglext.h; do
-  #wget 
http://sourceforge.net/p/irrlicht/code/4600/tree/trunk/source/Irrlicht/${file}?format=raw
 --output-document ${file}
-  #done
 }
 
 build() {
   cd $srcdir/$pkgbase-$pkgver/source/Irrlicht
 
-  make NDEBUG=1 sharedlib
+  make CXX=clang++ NDEBUG=1 sharedlib
 }
 
 package_irrlicht() {


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

2015-09-03 Thread Sven-Hendrik Haase
Date: Thursday, September 3, 2015 @ 20:13:57
  Author: svenstaro
Revision: 139149

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-09-03 18:13:48 UTC (rev 139148)
+++ community-i686/PKGBUILD 2015-09-03 18:13:57 UTC (rev 139149)
@@ -1,68 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Hilton Medeiros 
-# Contributor: Ali H. Caliskan 
-# Contributor: Paolo Fagni 
-# Contributor: Lukas Kropatschek 
-
-pkgbase=irrlicht
-pkgname=('irrlicht' 'irrlicht-docs')
-pkgver=1.8.2
-pkgrel=1
-pkgdesc="An open source high performance realtime 3D graphics engine."
-arch=('i686' 'x86_64')
-url="http://irrlicht.sourceforge.net/;
-license=('ZLIB')
-depends=('libgl' 'libjpeg' 'bzip2' 'libpng')
-makedepends=('mesa' 'unzip' 'libxcursor' 'wget')
-optdepends=('libxcursor: run examples')
-source=("http://downloads.sourceforge.net/irrlicht/$pkgname-$pkgver.zip;)
-noextract=($pkgname-$pkgver.zip)
-md5sums=('fc842c84c8081406d358cb94f6fe5500')
-
-prepare() {
-  unzip $pkgbase-$pkgver.zip
-
-  cd $srcdir/$pkgbase-$pkgver/source/Irrlicht
-
-  # I'm so sorry for this but Irrlicht people don't care about Linux much
-  #for file in COpenGLExtensionHandler.h glext.h glxext.h wglext.h; do
-  #wget 
http://sourceforge.net/p/irrlicht/code/4600/tree/trunk/source/Irrlicht/${file}?format=raw
 --output-document ${file}
-  #done
-}
-
-build() {
-  cd $srcdir/$pkgbase-$pkgver/source/Irrlicht
-
-  make NDEBUG=1 sharedlib
-}
-
-package_irrlicht() {
-  cd $srcdir/$pkgbase-$pkgver/source/Irrlicht
-
-  sed -i "/^INSTALL_DIR/s:=.*:=$pkgdir/usr/lib:" Makefile
-
-  make install
-
-  cd $srcdir/$pkgbase-$pkgver/
-  install -Dm644 readme.txt $pkgdir/usr/share/licenses/$pkgbase/LICENSE
-
-  # fix headers permissions
-  chmod 644 $pkgdir/usr/include/$pkgbase/*
-
-  cd $pkgdir/usr/lib
-  ln -s libIrrlicht.so.$pkgver libIrrlicht.so.1
-}
-
-package_irrlicht-docs() {
-  cd $srcdir/$pkgbase-$pkgver/
-
-  install -d $pkgdir/usr/share/$pkgbase $pkgdir/usr/share/doc/$pkgbase
-
-  # install media files for examples
-  cp -r media $pkgdir/usr/share/$pkgbase
-
-  # install documentation
-  cp -r doc/* $pkgdir/usr/share/doc/$pkgbase
-  rm -f $pkgdir/usr/share/doc/$pkgbase/*.txt
-}

Copied: irrlicht/repos/community-i686/PKGBUILD (from rev 139148, 
irrlicht/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-09-03 18:13:57 UTC (rev 139149)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Hilton Medeiros 
+# Contributor: Ali H. Caliskan 
+# Contributor: Paolo Fagni 
+# Contributor: Lukas Kropatschek 
+
+pkgbase=irrlicht
+pkgname=('irrlicht' 'irrlicht-docs')
+pkgver=1.8.2
+pkgrel=2
+pkgdesc="An open source high performance realtime 3D graphics engine."
+arch=('i686' 'x86_64')
+url="http://irrlicht.sourceforge.net/;
+license=('ZLIB')
+depends=('libgl' 'libjpeg' 'bzip2' 'libpng')
+makedepends=('mesa' 'unzip' 'libxcursor' 'clang')
+optdepends=('libxcursor: run examples')
+source=("http://downloads.sourceforge.net/irrlicht/$pkgname-$pkgver.zip;)
+noextract=($pkgname-$pkgver.zip)
+md5sums=('fc842c84c8081406d358cb94f6fe5500')
+
+prepare() {
+  unzip $pkgbase-$pkgver.zip
+
+  cd $srcdir/$pkgbase-$pkgver/source/Irrlicht
+}
+
+build() {
+  cd $srcdir/$pkgbase-$pkgver/source/Irrlicht
+
+  make CXX=clang++ NDEBUG=1 sharedlib
+}
+
+package_irrlicht() {
+  cd $srcdir/$pkgbase-$pkgver/source/Irrlicht
+
+  sed -i "/^INSTALL_DIR/s:=.*:=$pkgdir/usr/lib:" Makefile
+
+  make install
+
+  cd $srcdir/$pkgbase-$pkgver/
+  install -Dm644 readme.txt $pkgdir/usr/share/licenses/$pkgbase/LICENSE
+
+  # fix headers permissions
+  chmod 644 $pkgdir/usr/include/$pkgbase/*
+
+  cd $pkgdir/usr/lib
+  ln -s libIrrlicht.so.$pkgver libIrrlicht.so.1
+}
+
+package_irrlicht-docs() {
+  cd $srcdir/$pkgbase-$pkgver/
+
+  install -d $pkgdir/usr/share/$pkgbase $pkgdir/usr/share/doc/$pkgbase
+
+  # install media files for examples
+  cp -r media $pkgdir/usr/share/$pkgbase
+
+  # install documentation
+  cp -r doc/* $pkgdir/usr/share/doc/$pkgbase
+  rm -f $pkgdir/usr/share/doc/$pkgbase/*.txt
+}

Deleted: community-x86_64/PKGBUILD
===

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

2015-09-03 Thread Tobias Powalowski
Date: Thursday, September 3, 2015 @ 21:21:41
  Author: tpowa
Revision: 245249

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

Added:
  nvidia-340xx/repos/testing-i686/
  nvidia-340xx/repos/testing-i686/PKGBUILD
(from rev 245248, nvidia-340xx/trunk/PKGBUILD)
  nvidia-340xx/repos/testing-i686/nv-drm.patch
(from rev 245248, nvidia-340xx/trunk/nv-drm.patch)
  nvidia-340xx/repos/testing-i686/nvidia-340xx.install
(from rev 245248, nvidia-340xx/trunk/nvidia-340xx.install)
  nvidia-340xx/repos/testing-i686/nvidia-4.0.patch
(from rev 245248, nvidia-340xx/trunk/nvidia-4.0.patch)
  nvidia-340xx/repos/testing-x86_64/
  nvidia-340xx/repos/testing-x86_64/PKGBUILD
(from rev 245248, nvidia-340xx/trunk/PKGBUILD)
  nvidia-340xx/repos/testing-x86_64/nv-drm.patch
(from rev 245248, nvidia-340xx/trunk/nv-drm.patch)
  nvidia-340xx/repos/testing-x86_64/nvidia-340xx.install
(from rev 245248, nvidia-340xx/trunk/nvidia-340xx.install)
  nvidia-340xx/repos/testing-x86_64/nvidia-4.0.patch
(from rev 245248, nvidia-340xx/trunk/nvidia-4.0.patch)

-+
 testing-i686/PKGBUILD   |   54 ++
 testing-i686/nv-drm.patch   |   27 +
 testing-i686/nvidia-340xx.install   |   13 
 testing-i686/nvidia-4.0.patch   |   28 +
 testing-x86_64/PKGBUILD |   54 ++
 testing-x86_64/nv-drm.patch |   27 +
 testing-x86_64/nvidia-340xx.install |   13 
 testing-x86_64/nvidia-4.0.patch |   28 +
 8 files changed, 244 insertions(+)

Copied: nvidia-340xx/repos/testing-i686/PKGBUILD (from rev 245248, 
nvidia-340xx/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-09-03 19:21:41 UTC (rev 245249)
@@ -0,0 +1,54 @@
+# $Id: PKGBUILD 221857 2014-09-17 20:29:16Z tpowa $
+# Maintainer : Thomas Baechler 
+
+pkgname=nvidia-340xx
+pkgver=340.76
+_extramodules=extramodules-4.2-ARCH
+pkgrel=15
+pkgdesc="NVIDIA drivers for linux, 340xx legacy branch"
+arch=('i686' 'x86_64')
+url="http://www.nvidia.com/;
+depends=('linux>=4.2' 'linux<4.3' 'nvidia-340xx-libgl' 
"nvidia-340xx-utils=${pkgver}")
+makedepends=('linux-headers>=4.2' 'linux-headers<4.3')
+conflicts=('nvidia')
+license=('custom')
+install=${pkgname}.install
+options=(!strip)
+source=("ftp://download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run;
+
"ftp://download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;
+nv-drm.patch
+nvidia-4.0.patch)
+md5sums=('8064c0a0998c3e7ee3c98ac1832b8194'
+ '440df290e213280d6e20d4d4be6f8b4c'
+ '79671a27131da619a33eb02ed0c2c031'
+ 'f42bdf589f52d4e6c38baa5bef15eef8')
+
+[[ "$CARCH" = "i686" ]] && _pkg="NVIDIA-Linux-x86-${pkgver}"
+[[ "$CARCH" = "x86_64" ]] && _pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
+
+prepare() {
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}"
+# patches here
+patch -p0 -i ../nv-drm.patch
+patch -p0 -i ../nvidia-4.0.patch
+}
+
+build() {
+_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+cd "${_pkg}"/kernel
+make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
+
+cd uvm
+make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
+}
+
+package() {
+install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia.ko" \
+"${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko"
+install -D -m644 "${srcdir}/${_pkg}/kernel/uvm/nvidia-uvm.ko" \
+"${pkgdir}/usr/lib/modules/${_extramodules}/nvidia-uvm.ko"
+gzip "${pkgdir}/usr/lib/modules/${_extramodules}/"*.ko
+install -d -m755 "${pkgdir}/usr/lib/modprobe.d"
+echo "blacklist nouveau" >> "${pkgdir}/usr/lib/modprobe.d/nvidia.conf"
+}

Copied: nvidia-340xx/repos/testing-i686/nv-drm.patch (from rev 245248, 
nvidia-340xx/trunk/nv-drm.patch)
===
--- testing-i686/nv-drm.patch   (rev 0)
+++ testing-i686/nv-drm.patch   2015-09-03 19:21:41 UTC (rev 245249)
@@ -0,0 +1,27 @@
+--- kernel/nv-drm.c~ 2014-09-12 00:33:06.0 +0200
 kernel/nv-drm.c 2014-10-14 11:35:52.854400737 +0200
+@@ -18,6 +18,11 @@
+
+ #include 
+
++/* 3.18-rc0+ */
++#ifndef drm_gem_object
++#include 
++#endif
++
+ extern nv_linux_state_t *nv_linux_devices;
+
+ struct nv_gem_object {
+diff --git a/kernel/nv-drm.c~ b/kernel/nv-drm.c
+index ecc982a..60d7aae 100644
+--- kernel/nv-drm.c~
 kernel/nv-drm.c
+@@ -129,6 +129,8 @@ static struct drm_driver nv_drm_driver = {
+ .gem_prime_vmap = nv_gem_prime_vmap,
+ .gem_prime_vunmap = nv_gem_prime_vunmap,
+
++.set_busid = drm_pci_set_busid,
++
+ .name = "nvidia-drm",
+ .desc = "NVIDIA DRM driver",
+ .date = 

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

2015-09-03 Thread Tobias Powalowski
Date: Thursday, September 3, 2015 @ 21:21:22
  Author: tpowa
Revision: 245248

upgpkg: nvidia-340xx 340.76-15

rebuild against 4.2 series

Modified:
  nvidia-340xx/trunk/PKGBUILD
  nvidia-340xx/trunk/nvidia-340xx.install

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-03 18:56:43 UTC (rev 245247)
+++ PKGBUILD2015-09-03 19:21:22 UTC (rev 245248)
@@ -3,13 +3,13 @@
 
 pkgname=nvidia-340xx
 pkgver=340.76
-_extramodules=extramodules-4.1-ARCH
-pkgrel=14
+_extramodules=extramodules-4.2-ARCH
+pkgrel=15
 pkgdesc="NVIDIA drivers for linux, 340xx legacy branch"
 arch=('i686' 'x86_64')
 url="http://www.nvidia.com/;
-depends=('linux>=4.1' 'linux<4.2' 'libgl' "nvidia-340xx-utils=${pkgver}")
-makedepends=('linux-headers>=4.1' 'linux-headers<4.2')
+depends=('linux>=4.2' 'linux<4.3' 'nvidia-340xx-libgl' 
"nvidia-340xx-utils=${pkgver}")
+makedepends=('linux-headers>=4.2' 'linux-headers<4.3')
 conflicts=('nvidia')
 license=('custom')
 install=${pkgname}.install

Modified: nvidia-340xx.install
===
--- nvidia-340xx.install2015-09-03 18:56:43 UTC (rev 245247)
+++ nvidia-340xx.install2015-09-03 19:21:22 UTC (rev 245248)
@@ -1,5 +1,5 @@
 post_install() {
-EXTRAMODULES='extramodules-4.1-ARCH'
+EXTRAMODULES='extramodules-4.2-ARCH'
 depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
 echo 'In order to use nvidia module, reboot the system.'
 }


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

2015-09-03 Thread Sven-Hendrik Haase
Date: Thursday, September 3, 2015 @ 20:19:20
  Author: svenstaro
Revision: 139150

Add python2-passlib as optdep

Modified:
  ansible/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-03 18:13:57 UTC (rev 139149)
+++ PKGBUILD2015-09-03 18:19:20 UTC (rev 139150)
@@ -14,6 +14,7 @@
 url='http://www.ansible.com'
 license=('GPL3')
 depends=('python2' 'python2-yaml' 'python2-paramiko' 'python2-jinja')
+optdepends=('python2-passlib: crypt values for vars_prompt')
 makedepends=('asciidoc' 'fakeroot')
 backup=('etc/ansible/ansible.cfg')
 source=(http://releases.ansible.com/ansible/$pkgname-$pkgver.tar.gz


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

2015-09-03 Thread Tobias Powalowski
Date: Thursday, September 3, 2015 @ 21:24:01
  Author: tpowa
Revision: 245250

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

Added:
  nvidia/repos/testing-i686/
  nvidia/repos/testing-i686/PKGBUILD
(from rev 245249, nvidia/trunk/PKGBUILD)
  nvidia/repos/testing-i686/nv-drm-343.36.patch
(from rev 245249, nvidia/trunk/nv-drm-343.36.patch)
  nvidia/repos/testing-i686/nvidia.install
(from rev 245249, nvidia/trunk/nvidia.install)
  nvidia/repos/testing-x86_64/
  nvidia/repos/testing-x86_64/PKGBUILD
(from rev 245249, nvidia/trunk/PKGBUILD)
  nvidia/repos/testing-x86_64/nv-drm-343.36.patch
(from rev 245249, nvidia/trunk/nv-drm-343.36.patch)
  nvidia/repos/testing-x86_64/nvidia.install
(from rev 245249, nvidia/trunk/nvidia.install)

+
 testing-i686/PKGBUILD  |   55 +++
 testing-i686/nv-drm-343.36.patch   |   14 
 testing-i686/nvidia.install|   13 
 testing-x86_64/PKGBUILD|   55 +++
 testing-x86_64/nv-drm-343.36.patch |   14 
 testing-x86_64/nvidia.install  |   13 
 6 files changed, 164 insertions(+)

Copied: nvidia/repos/testing-i686/PKGBUILD (from rev 245249, 
nvidia/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-09-03 19:24:01 UTC (rev 245250)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Thomas Baechler 
+
+pkgname=nvidia
+pkgver=352.41
+_extramodules=extramodules-4.2-ARCH
+pkgrel=2
+pkgdesc="NVIDIA drivers for linux"
+arch=('i686' 'x86_64')
+url="http://www.nvidia.com/;
+depends=('linux>=4.2' 'linux<4.3' "nvidia-utils=${pkgver}" 'libgl')
+makedepends=('linux-headers>=4.2' 'linux-headers<4.3' 'nvidia-libgl')
+license=('custom')
+install=nvidia.install
+options=(!strip)
+source=("ftp://download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run;
+
"ftp://download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;)
+md5sums=('3f9c9fed035fa845e3f6a1ea5f5732f7'
+ 'd41d1a358edbade36cfd97cdcc9a80b9')
+
+[[ "$CARCH" = "i686" ]] && _pkg="NVIDIA-Linux-x86-${pkgver}"
+[[ "$CARCH" = "x86_64" ]] && _pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
+
+prepare() {
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}"
+# patches here
+}
+
+build() {
+_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+cd "${_pkg}"/kernel
+make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
+
+if [[ "$CARCH" = "x86_64" ]]; then
+cd uvm
+make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
+fi
+}
+
+package() {
+install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia.ko" \
+"${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko"
+
+if [[ "$CARCH" = "x86_64" ]]; then
+install -D -m644 "${srcdir}/${_pkg}/kernel/uvm/nvidia-uvm.ko" \
+"${pkgdir}/usr/lib/modules/${_extramodules}/nvidia-uvm.ko"
+fi
+
+gzip "${pkgdir}/usr/lib/modules/${_extramodules}/"*.ko
+install -d -m755 "${pkgdir}/usr/lib/modprobe.d"
+
+echo "blacklist nouveau" >> "${pkgdir}/usr/lib/modprobe.d/nvidia.conf"
+}

Copied: nvidia/repos/testing-i686/nv-drm-343.36.patch (from rev 245249, 
nvidia/trunk/nv-drm-343.36.patch)
===
--- testing-i686/nv-drm-343.36.patch(rev 0)
+++ testing-i686/nv-drm-343.36.patch2015-09-03 19:24:01 UTC (rev 245250)
@@ -0,0 +1,14 @@
+diff --git a/kernel/nv-drm.c b/kernel/nv-drm.c
+index c0b41a0..700c193 100644
+--- a/kernel/nv-drm.c
 b/kernel/nv-drm.c
+@@ -128,6 +128,8 @@ static struct drm_driver nv_drm_driver = {
+ .gem_prime_vmap = nv_gem_prime_vmap,
+ .gem_prime_vunmap = nv_gem_prime_vunmap,
+ 
++.set_busid = drm_pci_set_busid,
++
+ .name = "nvidia-drm",
+ .desc = "NVIDIA DRM driver",
+ .date = "20130102",
+

Copied: nvidia/repos/testing-i686/nvidia.install (from rev 245249, 
nvidia/trunk/nvidia.install)
===
--- testing-i686/nvidia.install (rev 0)
+++ testing-i686/nvidia.install 2015-09-03 19:24:01 UTC (rev 245250)
@@ -0,0 +1,13 @@
+post_install() {
+EXTRAMODULES='extramodules-4.2-ARCH'
+depmod $(cat /usr/lib/modules/${EXTRAMODULES}/version)
+echo 'In order to use nvidia module, reboot the system.'
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Copied: nvidia/repos/testing-x86_64/PKGBUILD (from rev 245249, 
nvidia/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-09-03 19:24:01 UTC (rev 

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

2015-09-03 Thread Tobias Powalowski
Date: Thursday, September 3, 2015 @ 21:24:30
  Author: tpowa
Revision: 245251

upgpkg: nvidia-304xx 304.128-2

rebuild against 4.2 series

Modified:
  nvidia-304xx/trunk/PKGBUILD
  nvidia-304xx/trunk/nvidia-304xx.install

--+
 PKGBUILD |6 +++---
 nvidia-304xx.install |2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-09-03 19:24:01 UTC (rev 245250)
+++ PKGBUILD2015-09-03 19:24:30 UTC (rev 245251)
@@ -5,11 +5,11 @@
 pkgbase=nvidia-304xx
 pkgname=(nvidia-304xx nvidia-304xx-dkms)
 pkgver=304.128
-_extramodules=extramodules-4.1-ARCH
-pkgrel=1
+_extramodules=extramodules-4.2-ARCH
+pkgrel=2
 arch=('i686' 'x86_64')
 url="http://www.nvidia.com/;
-makedepends=('libgl' "nvidia-304xx-utils=${pkgver}" 'linux' 
'linux-headers>=4.1' 'linux-headers<4.2')
+makedepends=('nvidia-304xx-libgl' "nvidia-304xx-utils=${pkgver}" 'linux' 
'linux-headers>=4.2' 'linux-headers<4.3')
 conflicts=('nvidia')
 license=('custom')
 options=(!strip)

Modified: nvidia-304xx.install
===
--- nvidia-304xx.install2015-09-03 19:24:01 UTC (rev 245250)
+++ nvidia-304xx.install2015-09-03 19:24:30 UTC (rev 245251)
@@ -1,5 +1,5 @@
 post_install() {
-EXTRAMODULES='extramodules-4.1-ARCH'
+EXTRAMODULES='extramodules-4.2-ARCH'
 depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
 echo 'In order to use nvidia module, reboot the system.'
 }


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

2015-09-03 Thread Tobias Powalowski
Date: Thursday, September 3, 2015 @ 21:26:59
  Author: tpowa
Revision: 139155

upgpkg: acpi_call 1.1.0-35

rebuild against 4.2 series

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
===
--- PKGBUILD2015-09-03 19:01:34 UTC (rev 139154)
+++ PKGBUILD2015-09-03 19:26:59 UTC (rev 139155)
@@ -5,14 +5,14 @@
 
 pkgname=acpi_call
 pkgver=1.1.0
-pkgrel=34
-_extramodules=extramodules-4.1-ARCH
+pkgrel=35
+_extramodules=extramodules-4.2-ARCH
 pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
 arch=('i686' 'x86_64')
 url='http://github.com/mkottman/acpi_call'
 license=('GPL')
-depends=('linux>=4.1' 'linux<4.2')
-makedepends=('linux-headers>=4.1' 'linux-headers<4.2')
+depends=('linux>=4.2' 'linux<4.3')
+makedepends=('linux-headers>=4.2' 'linux-headers<4.3')
 install='acpi_call.install'
 
source=("$pkgname-$pkgver.tar.gz::http://github.com/mkottman/acpi_call/archive/v${pkgver}.tar.gz;)
 sha256sums=('d0d14b42944282724fca76f57d598eed794ef97448f387d1c489d85ad813f2f0')

Modified: acpi_call.install
===
--- acpi_call.install   2015-09-03 19:01:34 UTC (rev 139154)
+++ acpi_call.install   2015-09-03 19:26:59 UTC (rev 139155)
@@ -1,5 +1,5 @@
 post_install() {
-  _extramodules=extramodules-4.1-ARCH
+  _extramodules=extramodules-4.2-ARCH
   depmod $(cat /usr/lib/modules/${_extramodules}/version)
 }
 


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

2015-09-03 Thread Tobias Powalowski
Date: Thursday, September 3, 2015 @ 21:27:20
  Author: tpowa
Revision: 139156

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 139155, acpi_call/trunk/PKGBUILD)
  acpi_call/repos/community-testing-i686/acpi_call.install
(from rev 139155, acpi_call/trunk/acpi_call.install)
  acpi_call/repos/community-testing-x86_64/
  acpi_call/repos/community-testing-x86_64/PKGBUILD
(from rev 139155, acpi_call/trunk/PKGBUILD)
  acpi_call/repos/community-testing-x86_64/acpi_call.install
(from rev 139155, 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 139155, 
acpi_call/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2015-09-03 19:27:20 UTC (rev 139156)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: mortzu 
+# Contributor: fnord0 
+
+pkgname=acpi_call
+pkgver=1.1.0
+pkgrel=35
+_extramodules=extramodules-4.2-ARCH
+pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
+arch=('i686' 'x86_64')
+url='http://github.com/mkottman/acpi_call'
+license=('GPL')
+depends=('linux>=4.2' 'linux<4.3')
+makedepends=('linux-headers>=4.2' 'linux-headers<4.3')
+install='acpi_call.install'
+source=("$pkgname-$pkgver.tar.gz::http://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 
139155, acpi_call/trunk/acpi_call.install)
===
--- community-testing-i686/acpi_call.install(rev 0)
+++ community-testing-i686/acpi_call.install2015-09-03 19:27:20 UTC (rev 
139156)
@@ -0,0 +1,14 @@
+post_install() {
+  _extramodules=extramodules-4.2-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 139155, 
acpi_call/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2015-09-03 19:27:20 UTC (rev 139156)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: mortzu 
+# Contributor: fnord0 
+
+pkgname=acpi_call
+pkgver=1.1.0
+pkgrel=35
+_extramodules=extramodules-4.2-ARCH
+pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
+arch=('i686' 'x86_64')
+url='http://github.com/mkottman/acpi_call'
+license=('GPL')
+depends=('linux>=4.2' 'linux<4.3')
+makedepends=('linux-headers>=4.2' 'linux-headers<4.3')
+install='acpi_call.install'
+source=("$pkgname-$pkgver.tar.gz::http://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 virtualbox-modules/repos (16 files)

2015-09-03 Thread Tobias Powalowski
Date: Thursday, September 3, 2015 @ 21:32:02
  Author: tpowa
Revision: 139168

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

Added:
  virtualbox-modules/repos/community-testing-i686/PKGBUILD
(from rev 139167, virtualbox-modules/trunk/PKGBUILD)
  virtualbox-modules/repos/community-testing-i686/build.sh
(from rev 139167, virtualbox-modules/trunk/build.sh)
  
virtualbox-modules/repos/community-testing-i686/virtualbox-guest-modules.install
(from rev 139167, virtualbox-modules/trunk/virtualbox-guest-modules.install)
  
virtualbox-modules/repos/community-testing-i686/virtualbox-host-modules.install
(from rev 139167, virtualbox-modules/trunk/virtualbox-host-modules.install)
  virtualbox-modules/repos/community-testing-x86_64/PKGBUILD
(from rev 139167, virtualbox-modules/trunk/PKGBUILD)
  virtualbox-modules/repos/community-testing-x86_64/build.sh
(from rev 139167, virtualbox-modules/trunk/build.sh)
  
virtualbox-modules/repos/community-testing-x86_64/virtualbox-guest-modules.install
(from rev 139167, virtualbox-modules/trunk/virtualbox-guest-modules.install)
  
virtualbox-modules/repos/community-testing-x86_64/virtualbox-host-modules.install
(from rev 139167, virtualbox-modules/trunk/virtualbox-host-modules.install)
Deleted:
  virtualbox-modules/repos/community-testing-i686/PKGBUILD
  virtualbox-modules/repos/community-testing-i686/build.sh
  
virtualbox-modules/repos/community-testing-i686/virtualbox-guest-modules.install
  
virtualbox-modules/repos/community-testing-i686/virtualbox-host-modules.install
  virtualbox-modules/repos/community-testing-x86_64/PKGBUILD
  virtualbox-modules/repos/community-testing-x86_64/build.sh
  
virtualbox-modules/repos/community-testing-x86_64/virtualbox-guest-modules.install
  
virtualbox-modules/repos/community-testing-x86_64/virtualbox-host-modules.install

---+
 /PKGBUILD |  126 
 /build.sh |  122 +++
 /virtualbox-guest-modules.install |   42 
 /virtualbox-host-modules.install  |   46 
 community-testing-i686/PKGBUILD   |   63 --
 community-testing-i686/build.sh   |   61 -
 community-testing-i686/virtualbox-guest-modules.install   |   21 --
 community-testing-i686/virtualbox-host-modules.install|   23 --
 community-testing-x86_64/PKGBUILD |   63 --
 community-testing-x86_64/build.sh |   61 -
 community-testing-x86_64/virtualbox-guest-modules.install |   21 --
 community-testing-x86_64/virtualbox-host-modules.install  |   23 --
 12 files changed, 336 insertions(+), 336 deletions(-)

Deleted: community-testing-i686/PKGBUILD
===
--- community-testing-i686/PKGBUILD 2015-09-03 19:31:46 UTC (rev 139167)
+++ community-testing-i686/PKGBUILD 2015-09-03 19:32:02 UTC (rev 139168)
@@ -1,63 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-# Maintainer: Sébastien Luttringer
-
-pkgbase=virtualbox-modules
-pkgname=('virtualbox-host-modules' 'virtualbox-guest-modules')
-pkgver=5.0.2
-pkgrel=2
-arch=('i686' 'x86_64')
-url='http://virtualbox.org'
-license=('GPL')
-makedepends=('linux>=4.1' 'linux<4.2'
- 'linux-headers>=4.1' 'linux-headers<4.2'
- "virtualbox-host-dkms>=$pkgver"
- "virtualbox-guest-dkms>=$pkgver")
-
-# remember to also adjust the .install files and the package deps below
-_extramodules=extramodules-4.1-ARCH
-
-build() {
-  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
-  # dkms need modification to be run as user
-  cp -r /var/lib/dkms .
-  echo "dkms_tree='$srcdir/dkms'" > dkms.conf
-  # build host modules
-  msg2 'Host modules'
-  dkms --dkmsframework dkms.conf build "vboxhost/$pkgver" -k "$_kernver"
-  # build guest modules
-  msg2 'Guest modules'
-  dkms --dkmsframework dkms.conf build "vboxguest/$pkgver" -k "$_kernver"
-}
-
-package_virtualbox-host-modules(){
-  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
-  pkgdesc='Host kernel modules for VirtualBox'
-  depends=('linux>=4.1' 'linux<4.2')
-  replaces=('virtualbox-modules')
-  conflicts=('virtualbox-modules')
-  install=virtualbox-host-modules.install
-
-  cd "dkms/vboxhost/$pkgver/$_kernver/$CARCH/module"
-  install -dm755 "$pkgdir/usr/lib/modules/$_extramodules/"
-  install -m644 * "$pkgdir/usr/lib/modules/$_extramodules/"
-  find "$pkgdir" -name '*.ko' -exec gzip -9 {} +
-}
-
-package_virtualbox-guest-modules(){
-  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
-  pkgdesc='Guest kernel modules for VirtualBox'
-  license=('GPL')
-  depends=('linux>=4.1' 'linux<4.2')
-  replaces=('virtualbox-archlinux-modules')
-  conflicts=('virtualbox-archlinux-modules')
-  

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

2015-09-03 Thread Tobias Powalowski
Date: Thursday, September 3, 2015 @ 21:31:46
  Author: tpowa
Revision: 139167

upgpkg: virtualbox-modules 5.0.2-3

rebuild against 4.2 series

Modified:
  virtualbox-modules/trunk/PKGBUILD
  virtualbox-modules/trunk/virtualbox-guest-modules.install
  virtualbox-modules/trunk/virtualbox-host-modules.install

--+
 PKGBUILD |   12 ++--
 virtualbox-guest-modules.install |2 +-
 virtualbox-host-modules.install  |2 +-
 3 files changed, 8 insertions(+), 8 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-09-03 19:30:54 UTC (rev 139166)
+++ PKGBUILD2015-09-03 19:31:46 UTC (rev 139167)
@@ -5,17 +5,17 @@
 pkgbase=virtualbox-modules
 pkgname=('virtualbox-host-modules' 'virtualbox-guest-modules')
 pkgver=5.0.2
-pkgrel=2
+pkgrel=3
 arch=('i686' 'x86_64')
 url='http://virtualbox.org'
 license=('GPL')
-makedepends=('linux>=4.1' 'linux<4.2'
- 'linux-headers>=4.1' 'linux-headers<4.2'
+makedepends=('linux>=4.2' 'linux<4.3'
+ 'linux-headers>=4.2' 'linux-headers<4.3'
  "virtualbox-host-dkms>=$pkgver"
  "virtualbox-guest-dkms>=$pkgver")
 
 # remember to also adjust the .install files and the package deps below
-_extramodules=extramodules-4.1-ARCH
+_extramodules=extramodules-4.2-ARCH
 
 build() {
   _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
@@ -33,7 +33,7 @@
 package_virtualbox-host-modules(){
   _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
   pkgdesc='Host kernel modules for VirtualBox'
-  depends=('linux>=4.1' 'linux<4.2')
+  depends=('linux>=4.2' 'linux<4.3')
   replaces=('virtualbox-modules')
   conflicts=('virtualbox-modules')
   install=virtualbox-host-modules.install
@@ -48,7 +48,7 @@
   _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
   pkgdesc='Guest kernel modules for VirtualBox'
   license=('GPL')
-  depends=('linux>=4.1' 'linux<4.2')
+  depends=('linux>=4.2' 'linux<4.3')
   replaces=('virtualbox-archlinux-modules')
   conflicts=('virtualbox-archlinux-modules')
   install=virtualbox-guest-modules.install

Modified: virtualbox-guest-modules.install
===
--- virtualbox-guest-modules.install2015-09-03 19:30:54 UTC (rev 139166)
+++ virtualbox-guest-modules.install2015-09-03 19:31:46 UTC (rev 139167)
@@ -1,5 +1,5 @@
 _depmod() {
-  EXTRAMODULES=extramodules-4.1-ARCH
+  EXTRAMODULES=extramodules-4.2-ARCH
   depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
 }
 

Modified: virtualbox-host-modules.install
===
--- virtualbox-host-modules.install 2015-09-03 19:30:54 UTC (rev 139166)
+++ virtualbox-host-modules.install 2015-09-03 19:31:46 UTC (rev 139167)
@@ -1,5 +1,5 @@
 _depmod() {
-  EXTRAMODULES=extramodules-4.1-ARCH
+  EXTRAMODULES=extramodules-4.2-ARCH
   depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
 }
 


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

2015-09-03 Thread Tobias Powalowski
Date: Thursday, September 3, 2015 @ 20:56:43
  Author: tpowa
Revision: 245247

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

Added:
  linux/repos/testing-i686/0001-make_flush_workqueue_non_gpl.patch
(from rev 245246, linux/trunk/0001-make_flush_workqueue_non_gpl.patch)
  linux/repos/testing-i686/PKGBUILD
(from rev 245246, linux/trunk/PKGBUILD)
  linux/repos/testing-i686/change-default-console-loglevel.patch
(from rev 245246, linux/trunk/change-default-console-loglevel.patch)
  linux/repos/testing-i686/config
(from rev 245246, linux/trunk/config)
  linux/repos/testing-i686/config.x86_64
(from rev 245246, linux/trunk/config.x86_64)
  linux/repos/testing-i686/linux.install
(from rev 245246, linux/trunk/linux.install)
  linux/repos/testing-i686/linux.preset
(from rev 245246, linux/trunk/linux.preset)
  linux/repos/testing-x86_64/0001-make_flush_workqueue_non_gpl.patch
(from rev 245246, linux/trunk/0001-make_flush_workqueue_non_gpl.patch)
  linux/repos/testing-x86_64/PKGBUILD
(from rev 245246, linux/trunk/PKGBUILD)
  linux/repos/testing-x86_64/change-default-console-loglevel.patch
(from rev 245246, linux/trunk/change-default-console-loglevel.patch)
  linux/repos/testing-x86_64/config
(from rev 245246, linux/trunk/config)
  linux/repos/testing-x86_64/config.x86_64
(from rev 245246, linux/trunk/config.x86_64)
  linux/repos/testing-x86_64/linux.install
(from rev 245246, linux/trunk/linux.install)
  linux/repos/testing-x86_64/linux.preset
(from rev 245246, linux/trunk/linux.preset)
Deleted:
  linux/repos/testing-i686/PKGBUILD
  linux/repos/testing-i686/change-default-console-loglevel.patch
  linux/repos/testing-i686/config
  linux/repos/testing-i686/config.x86_64
  linux/repos/testing-i686/linux.install
  linux/repos/testing-i686/linux.preset
  linux/repos/testing-x86_64/PKGBUILD
  linux/repos/testing-x86_64/change-default-console-loglevel.patch
  linux/repos/testing-x86_64/config
  linux/repos/testing-x86_64/config.x86_64
  linux/repos/testing-x86_64/linux.install
  linux/repos/testing-x86_64/linux.preset

+
 /PKGBUILD  |  586 
 /change-default-console-loglevel.patch |   22 
 /config|15444 +++
 /config.x86_64 |14948 ++
 /linux.install |   74 
 /linux.preset  |   28 
 testing-i686/0001-make_flush_workqueue_non_gpl.patch   |   34 
 testing-i686/PKGBUILD  |  287 
 testing-i686/change-default-console-loglevel.patch |   11 
 testing-i686/config| 7722 ---
 testing-i686/config.x86_64 | 7474 ---
 testing-i686/linux.install |   37 
 testing-i686/linux.preset  |   14 
 testing-x86_64/0001-make_flush_workqueue_non_gpl.patch |   34 
 testing-x86_64/PKGBUILD|  287 
 testing-x86_64/change-default-console-loglevel.patch   |   11 
 testing-x86_64/config  | 7722 ---
 testing-x86_64/config.x86_64   | 7474 ---
 testing-x86_64/linux.install   |   37 
 testing-x86_64/linux.preset|   14 
 20 files changed, 31170 insertions(+), 31090 deletions(-)

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


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

2015-09-03 Thread Tobias Powalowski
Date: Thursday, September 3, 2015 @ 20:55:59
  Author: tpowa
Revision: 245246

upgpkg: linux 4.2-1

fixed initial 4.2 with non gpl patch for nvidia

Added:
  linux/trunk/0001-make_flush_workqueue_non_gpl.patch
Modified:
  linux/trunk/PKGBUILD

-+
 0001-make_flush_workqueue_non_gpl.patch |   34 ++
 PKGBUILD|   10 +++-
 2 files changed, 42 insertions(+), 2 deletions(-)

Added: 0001-make_flush_workqueue_non_gpl.patch
===
--- 0001-make_flush_workqueue_non_gpl.patch (rev 0)
+++ 0001-make_flush_workqueue_non_gpl.patch 2015-09-03 18:55:59 UTC (rev 
245246)
@@ -0,0 +1,34 @@
+From 1dadafa86a779884f14a6e7a3ddde1a57b0a0a65 Mon Sep 17 00:00:00 2001
+From: Tim Gardner 
+Date: Tue, 4 Aug 2015 11:26:04 -0600
+Subject: workqueue: Make flush_workqueue() available again to non GPL modules
+
+Commit 37b1ef31a568fc02e53587620226e5f3c66454c8 ("workqueue: move
+flush_scheduled_work() to workqueue.h") moved the exported non GPL
+flush_scheduled_work() from a function to an inline wrapper.
+Unfortunately, it directly calls flush_workqueue() which is a GPL function.
+This has the effect of changing the licensing requirement for this function
+and makes it unavailable to non GPL modules.
+
+See commit ad7b1f841f8a54c6d61ff181451f55b68175e15a ("workqueue: Make
+schedule_work() available again to non GPL modules") for precedent.
+
+Signed-off-by: Tim Gardner 
+Signed-off-by: Tejun Heo 
+
+diff --git a/kernel/workqueue.c b/kernel/workqueue.c
+index 4c4f061..a413acb 100644
+--- a/kernel/workqueue.c
 b/kernel/workqueue.c
+@@ -2614,7 +2614,7 @@ void flush_workqueue(struct workqueue_struct *wq)
+ out_unlock:
+   mutex_unlock(>mutex);
+ }
+-EXPORT_SYMBOL_GPL(flush_workqueue);
++EXPORT_SYMBOL(flush_workqueue);
+ 
+ /**
+  * drain_workqueue - drain a workqueue
+-- 
+cgit v0.10.2
+

Modified: PKGBUILD
===
--- PKGBUILD2015-09-03 17:48:20 UTC (rev 245245)
+++ PKGBUILD2015-09-03 18:55:59 UTC (rev 245246)
@@ -20,13 +20,15 @@
 'config' 'config.x86_64'
 # standard config files for mkinitcpio ramdisk
 'linux.preset'
-'change-default-console-loglevel.patch')
+'change-default-console-loglevel.patch'
+'0001-make_flush_workqueue_non_gpl.patch')
 sha256sums=('cf20e044f17588d2a42c8f2a450b0fd84dfdbd579b489d93e9ab7d0e8b45dbeb'
 'SKIP'
 'dbac1b59a0a1861fe2ae64348512f0994594ccbe959f50aa94b91d8464e44c97'
 '90fa14aca07b560334ddb14ffe4f04c3ed149851e45952a5e4a2d0732ce29fb4'
 'f0d90e756f14533ee67afda280500511a62465b4f76adcc5effa95a40045179c'
-'1256b241cd477b265a3c2d64bdc19ffe3c9bbcee82ea3994c590c2c76e767d99')
+'1256b241cd477b265a3c2d64bdc19ffe3c9bbcee82ea3994c590c2c76e767d99'
+'4e776734e2c2185910a6fbb6f333d967b04f4a72b3196310af286c6a779bd97d')
 validpgpkeys=(
   'ABAF11C65A2970B130ABE3C479BE3E4300411886' # Linus Torvalds
   '647F28654894E3BD457199BE38DBBDC86092693E' # Greg Kroah-Hartman
@@ -43,6 +45,10 @@
   # add latest fixes from stable queue, if needed
   # http://git.kernel.org/?p=linux/kernel/git/stable/stable-queue.git
 
+  # fix work_queue symbol to non GPL for nvidia module building
+  # already applied to 4.3 series
+  patch -p1 -i "${srcdir}/0001-make_flush_workqueue_non_gpl.patch"
+
   # set DEFAULT_CONSOLE_LOGLEVEL to 4 (same value as the 'quiet' kernel param)
   # remove this when a Kconfig knob is made available by upstream
   # (relevant patch sent upstream: https://lkml.org/lkml/2011/7/26/227)


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

2015-09-03 Thread Tobias Powalowski
Date: Thursday, September 3, 2015 @ 21:27:53
  Author: tpowa
Revision: 139157

upgpkg: bbswitch 0.8-37

rebuild against 4.2 series

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

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-03 19:27:20 UTC (rev 139156)
+++ PKGBUILD2015-09-03 19:27:53 UTC (rev 139157)
@@ -5,14 +5,14 @@
 
 pkgname=bbswitch
 pkgver=0.8
-_extramodules=extramodules-4.1-ARCH # Don't forget to update bbswitch.install
-pkgrel=36
+_extramodules=extramodules-4.2-ARCH # Don't forget to update bbswitch.install
+pkgrel=37
 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')
-depends=('linux>=4.1' 'linux<4.2')
-makedepends=('linux-headers>=4.1' 'linux-headers<4.2')
+depends=('linux>=4.2' 'linux<4.3')
+makedepends=('linux-headers>=4.2' 'linux-headers<4.3')
 install=bbswitch.install
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz;)
 md5sums=('5b116b31ace3604ddf9d1fc1f4bc5807')

Modified: bbswitch.install
===
--- bbswitch.install2015-09-03 19:27:20 UTC (rev 139156)
+++ bbswitch.install2015-09-03 19:27:53 UTC (rev 139157)
@@ -1,5 +1,5 @@
 post_install() {
-EXTRAMODULES='extramodules-4.1-ARCH'
+EXTRAMODULES='extramodules-4.2-ARCH'
 depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
 }
 


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

2015-09-03 Thread Tobias Powalowski
Date: Thursday, September 3, 2015 @ 21:28:07
  Author: tpowa
Revision: 139158

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 139157, bbswitch/trunk/PKGBUILD)
  bbswitch/repos/community-testing-i686/bbswitch.install
(from rev 139157, bbswitch/trunk/bbswitch.install)
  bbswitch/repos/community-testing-x86_64/
  bbswitch/repos/community-testing-x86_64/PKGBUILD
(from rev 139157, bbswitch/trunk/PKGBUILD)
  bbswitch/repos/community-testing-x86_64/bbswitch.install
(from rev 139157, bbswitch/trunk/bbswitch.install)

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

Copied: bbswitch/repos/community-testing-i686/PKGBUILD (from rev 139157, 
bbswitch/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2015-09-03 19:28:07 UTC (rev 139158)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: M0Rf30
+# Contributor: Samsagax 
+
+pkgname=bbswitch
+pkgver=0.8
+_extramodules=extramodules-4.2-ARCH # Don't forget to update bbswitch.install
+pkgrel=37
+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')
+depends=('linux>=4.2' 'linux<4.3')
+makedepends=('linux-headers>=4.2' 'linux-headers<4.3')
+install=bbswitch.install
+source=("$pkgname-$pkgver.tar.gz::https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz;)
+md5sums=('5b116b31ace3604ddf9d1fc1f4bc5807')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+
+  make KDIR=/lib/modules/${_kernver}/build
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+   
+  install -Dm644 bbswitch.ko 
"${pkgdir}"/usr/lib/modules/${_extramodules}/bbswitch.ko
+  gzip "${pkgdir}/usr/lib/modules/${_extramodules}/bbswitch.ko"
  
+}

Copied: bbswitch/repos/community-testing-i686/bbswitch.install (from rev 
139157, bbswitch/trunk/bbswitch.install)
===
--- community-testing-i686/bbswitch.install (rev 0)
+++ community-testing-i686/bbswitch.install 2015-09-03 19:28:07 UTC (rev 
139158)
@@ -0,0 +1,12 @@
+post_install() {
+EXTRAMODULES='extramodules-4.2-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 139157, 
bbswitch/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2015-09-03 19:28:07 UTC (rev 139158)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: M0Rf30
+# Contributor: Samsagax 
+
+pkgname=bbswitch
+pkgver=0.8
+_extramodules=extramodules-4.2-ARCH # Don't forget to update bbswitch.install
+pkgrel=37
+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')
+depends=('linux>=4.2' 'linux<4.3')
+makedepends=('linux-headers>=4.2' 'linux-headers<4.3')
+install=bbswitch.install
+source=("$pkgname-$pkgver.tar.gz::https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz;)
+md5sums=('5b116b31ace3604ddf9d1fc1f4bc5807')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+
+  make KDIR=/lib/modules/${_kernver}/build
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+   
+  install -Dm644 bbswitch.ko 
"${pkgdir}"/usr/lib/modules/${_extramodules}/bbswitch.ko
+  gzip "${pkgdir}/usr/lib/modules/${_extramodules}/bbswitch.ko"
  
+}

Copied: bbswitch/repos/community-testing-x86_64/bbswitch.install (from rev 
139157, bbswitch/trunk/bbswitch.install)
===
--- community-testing-x86_64/bbswitch.install   (rev 0)
+++ community-testing-x86_64/bbswitch.install   2015-09-03 19:28:07 UTC (rev 
139158)
@@ -0,0 +1,12 @@
+post_install() {
+EXTRAMODULES='extramodules-4.2-ARCH'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+}
+
+post_upgrade() 

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

2015-09-03 Thread Tobias Powalowski
Date: Thursday, September 3, 2015 @ 21:30:54
  Author: tpowa
Revision: 139166

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

Added:
  vhba-module/repos/community-testing-i686/
  vhba-module/repos/community-testing-i686/60-vhba.rules
(from rev 139165, vhba-module/trunk/60-vhba.rules)
  vhba-module/repos/community-testing-i686/PKGBUILD
(from rev 139165, vhba-module/trunk/PKGBUILD)
  vhba-module/repos/community-testing-i686/vhba-module.install
(from rev 139165, vhba-module/trunk/vhba-module.install)
  vhba-module/repos/community-testing-x86_64/
  vhba-module/repos/community-testing-x86_64/60-vhba.rules
(from rev 139165, vhba-module/trunk/60-vhba.rules)
  vhba-module/repos/community-testing-x86_64/PKGBUILD
(from rev 139165, vhba-module/trunk/PKGBUILD)
  vhba-module/repos/community-testing-x86_64/vhba-module.install
(from rev 139165, vhba-module/trunk/vhba-module.install)

--+
 community-testing-i686/60-vhba.rules |1 
 community-testing-i686/PKGBUILD  |   44 +
 community-testing-i686/vhba-module.install   |   21 +++
 community-testing-x86_64/60-vhba.rules   |1 
 community-testing-x86_64/PKGBUILD|   44 +
 community-testing-x86_64/vhba-module.install |   21 +++
 6 files changed, 132 insertions(+)

Copied: vhba-module/repos/community-testing-i686/60-vhba.rules (from rev 
139165, vhba-module/trunk/60-vhba.rules)
===
--- community-testing-i686/60-vhba.rules(rev 0)
+++ community-testing-i686/60-vhba.rules2015-09-03 19:30:54 UTC (rev 
139166)
@@ -0,0 +1 @@
+ACTION=="add", KERNEL=="vhba_ctl", NAME="vhba_ctl", MODE="0660", OWNER="root", 
GROUP="cdemu", TAG+="uaccess"

Copied: vhba-module/repos/community-testing-i686/PKGBUILD (from rev 139165, 
vhba-module/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2015-09-03 19:30:54 UTC (rev 139166)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Ray Rashif 
+# Contributor: Mateusz Herych 
+# Contributor: Charles Lindsay 
+
+pkgname=vhba-module
+pkgver=20140928
+_extramodules=extramodules-4.2-ARCH
+pkgrel=18
+pkgdesc="Kernel module that emulates SCSI devices"
+arch=('i686' 'x86_64')
+url="http://cdemu.sourceforge.net/;
+license=('GPL')
+depends=('linux>=4.2' 'linux<4.3')
+makedepends=('linux-headers>=4.2' 'linux-headers<4.3')
+options=(!makeflags)
+install=$pkgname.install
+source=("http://downloads.sourceforge.net/cdemu/$pkgname-$pkgver.tar.bz2;
+'60-vhba.rules')
+md5sums=('967007230bb028424216d9b35da422c0'
+ '4dc37dc348b5a2c83585829bde790dcc')
+
+prepare() {
+  cd $pkgname-$pkgver
+}
+
+build() {
+  cd $pkgname-$pkgver
+  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
+  make KDIR=/usr/lib/modules/$_kernver/build
+}
+
+package() {
+  cd $pkgname-$pkgver
+  install -Dm644 vhba.ko "$pkgdir/usr/lib/modules/$_extramodules/vhba.ko"
+  install -Dm644 ../60-vhba.rules "$pkgdir/usr/lib/udev/rules.d/60-vhba.rules"
+
+  cd $startdir
+  cp -f $install ${install}.pkg
+  true && install=${install}.pkg
+  sed -i "s/EXTRAMODULES=.*/EXTRAMODULES=$_extramodules/" $install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: vhba-module/repos/community-testing-i686/vhba-module.install (from rev 
139165, vhba-module/trunk/vhba-module.install)
===
--- community-testing-i686/vhba-module.install  (rev 0)
+++ community-testing-i686/vhba-module.install  2015-09-03 19:30:54 UTC (rev 
139166)
@@ -0,0 +1,21 @@
+EXTRAMODULES=extramodules-4.2-ARCH
+
+_updatemod() {
+  echo "  > Updating module dependencies..."
+  depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+}
+
+post_install() {
+  getent group cdemu &>/dev/null || groupadd -r cdemu
+  _updatemod
+}
+
+post_upgrade() {
+  _updatemod
+}
+
+post_remove() {
+  _updatemod
+}
+
+# vim:set ts=2 sw=2 et:

Copied: vhba-module/repos/community-testing-x86_64/60-vhba.rules (from rev 
139165, vhba-module/trunk/60-vhba.rules)
===
--- community-testing-x86_64/60-vhba.rules  (rev 0)
+++ community-testing-x86_64/60-vhba.rules  2015-09-03 19:30:54 UTC (rev 
139166)
@@ -0,0 +1 @@
+ACTION=="add", KERNEL=="vhba_ctl", NAME="vhba_ctl", MODE="0660", OWNER="root", 
GROUP="cdemu", TAG+="uaccess"

Copied: vhba-module/repos/community-testing-x86_64/PKGBUILD (from rev 139165, 
vhba-module/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ 

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

2015-09-03 Thread Tobias Powalowski
Date: Thursday, September 3, 2015 @ 21:30:16
  Author: tpowa
Revision: 139164

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 139163, tp_smapi/trunk/PKGBUILD)
  tp_smapi/repos/community-testing-i686/tp_smapi.install
(from rev 139163, tp_smapi/trunk/tp_smapi.install)
  tp_smapi/repos/community-testing-x86_64/
  tp_smapi/repos/community-testing-x86_64/PKGBUILD
(from rev 139163, tp_smapi/trunk/PKGBUILD)
  tp_smapi/repos/community-testing-x86_64/tp_smapi.install
(from rev 139163, tp_smapi/trunk/tp_smapi.install)

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

Copied: tp_smapi/repos/community-testing-i686/PKGBUILD (from rev 139163, 
tp_smapi/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2015-09-03 19:30:16 UTC (rev 139164)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Lukas Fleischer 
+# Contributor: xduugu
+# Contributor: nh2
+# Contributor: Steven Davidovitz 
+# Contributor: Nick B 
+# Contributor: Christof Musik 
+# Contributor: Stefan Rupp 
+# Contributor: Ignas Anikevicius 
+
+pkgname=tp_smapi
+pkgver=0.41
+_extramodules=extramodules-4.2-ARCH
+pkgrel=74
+pkgdesc="Modules for ThinkPad's SMAPI functionality"
+arch=('i686' 'x86_64')
+url='https://github.com/evgeni/tp_smapi'
+license=('GPL')
+depends=('linux>=4.2' 'linux<4.3')
+makedepends=('linux-headers>=4.2' 'linux-headers<4.3')
+install="${pkgname}.install"
+source=("https://github.com/downloads/evgeni/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('63c683415c764568f6bf17c7eabe4752')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+
+  sed -ri -e "s/^(KVER\s*:=).*$/\1 ${_kernver}/" \
+-e "s|^(KBASE\s*:=).*\$|\1 /usr/lib/modules/${_kernver}|" Makefile
+
+  make HDAPS=1
+}
+
+package() {
+  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+
+  make -C "/usr/lib/modules/${_kernver}/build" \
+INSTALL_MOD_PATH="${pkgdir}/usr" \
+M="${srcdir}/${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 
139163, tp_smapi/trunk/tp_smapi.install)
===
--- community-testing-i686/tp_smapi.install (rev 0)
+++ community-testing-i686/tp_smapi.install 2015-09-03 19:30:16 UTC (rev 
139164)
@@ -0,0 +1,13 @@
+extramodules=/usr/lib/modules/extramodules-4.2-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 139163, 
tp_smapi/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2015-09-03 19:30:16 UTC (rev 139164)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Lukas Fleischer 
+# Contributor: xduugu
+# Contributor: nh2
+# Contributor: Steven Davidovitz 
+# Contributor: Nick B 
+# Contributor: Christof Musik 
+# Contributor: Stefan Rupp 
+# Contributor: Ignas Anikevicius 
+
+pkgname=tp_smapi
+pkgver=0.41
+_extramodules=extramodules-4.2-ARCH
+pkgrel=74
+pkgdesc="Modules for ThinkPad's SMAPI functionality"
+arch=('i686' 'x86_64')
+url='https://github.com/evgeni/tp_smapi'
+license=('GPL')
+depends=('linux>=4.2' 'linux<4.3')
+makedepends=('linux-headers>=4.2' 'linux-headers<4.3')
+install="${pkgname}.install"
+source=("https://github.com/downloads/evgeni/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('63c683415c764568f6bf17c7eabe4752')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+
+  sed -ri -e "s/^(KVER\s*:=).*$/\1 ${_kernver}/" \
+-e "s|^(KBASE\s*:=).*\$|\1 /usr/lib/modules/${_kernver}|" Makefile
+
+  make HDAPS=1
+}
+
+package() {
+  

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

2015-09-03 Thread Sven-Hendrik Haase
Date: Thursday, September 3, 2015 @ 20:23:04
  Author: svenstaro
Revision: 139152

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

Added:
  openmw/repos/community-i686/PKGBUILD
(from rev 139151, openmw/trunk/PKGBUILD)
  openmw/repos/community-x86_64/PKGBUILD
(from rev 139151, openmw/trunk/PKGBUILD)
Deleted:
  openmw/repos/community-i686/PKGBUILD
  openmw/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 2015-09-03 18:22:57 UTC (rev 139151)
+++ community-i686/PKGBUILD 2015-09-03 18:23:04 UTC (rev 139152)
@@ -1,28 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Sandy Carter 
-
-pkgname=openmw
-pkgver=0.36.1
-pkgrel=1
-pkgdesc="An open-source engine reimplementation for the role-playing game 
Morrowind"
-arch=('i686' 'x86_64')
-url="http://www.openmw.org;
-license=('GPL3' 'MIT' 'custom')
-depends=('openal' 'ogre' 'mygui' 'bullet' 'qt4' 'ffmpeg' 'sdl2' 'unshield')
-makedepends=('cmake' 'boost')
-source=("https://github.com/OpenMW/openmw/archive/openmw-${pkgver}.tar.gz;)
-sha1sums=('4009a03b4664e92a502540ca23302285234548ad')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgname}-${pkgver}"
-  cmake -DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgname}-${pkgver}"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: openmw/repos/community-i686/PKGBUILD (from rev 139151, 
openmw/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-09-03 18:23:04 UTC (rev 139152)
@@ -0,0 +1,28 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Sandy Carter 
+
+pkgname=openmw
+pkgver=0.36.1
+pkgrel=2
+pkgdesc="An open-source engine reimplementation for the role-playing game 
Morrowind"
+arch=('i686' 'x86_64')
+url="http://www.openmw.org;
+license=('GPL3' 'MIT' 'custom')
+depends=('openal' 'ogre' 'mygui' 'bullet' 'qt4' 'ffmpeg' 'sdl2' 'unshield')
+makedepends=('cmake' 'boost')
+source=("https://github.com/OpenMW/openmw/archive/openmw-${pkgver}.tar.gz;)
+sha1sums=('4009a03b4664e92a502540ca23302285234548ad')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgname}-${pkgver}"
+  cmake -DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgname}-${pkgver}"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-09-03 18:22:57 UTC (rev 139151)
+++ community-x86_64/PKGBUILD   2015-09-03 18:23:04 UTC (rev 139152)
@@ -1,28 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Sandy Carter 
-
-pkgname=openmw
-pkgver=0.36.1
-pkgrel=1
-pkgdesc="An open-source engine reimplementation for the role-playing game 
Morrowind"
-arch=('i686' 'x86_64')
-url="http://www.openmw.org;
-license=('GPL3' 'MIT' 'custom')
-depends=('openal' 'ogre' 'mygui' 'bullet' 'qt4' 'ffmpeg' 'sdl2' 'unshield')
-makedepends=('cmake' 'boost')
-source=("https://github.com/OpenMW/openmw/archive/openmw-${pkgver}.tar.gz;)
-sha1sums=('4009a03b4664e92a502540ca23302285234548ad')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgname}-${pkgver}"
-  cmake -DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgname}-${pkgver}"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: openmw/repos/community-x86_64/PKGBUILD (from rev 139151, 
openmw/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-09-03 18:23:04 UTC (rev 139152)
@@ -0,0 +1,28 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Sandy Carter 
+
+pkgname=openmw
+pkgver=0.36.1
+pkgrel=2
+pkgdesc="An open-source engine reimplementation for the role-playing game 
Morrowind"
+arch=('i686' 'x86_64')
+url="http://www.openmw.org;
+license=('GPL3' 'MIT' 'custom')
+depends=('openal' 'ogre' 'mygui' 'bullet' 'qt4' 'ffmpeg' 'sdl2' 'unshield')
+makedepends=('cmake' 'boost')
+source=("https://github.com/OpenMW/openmw/archive/openmw-${pkgver}.tar.gz;)
+sha1sums=('4009a03b4664e92a502540ca23302285234548ad')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgname}-${pkgver}"
+  cmake 

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

2015-09-03 Thread Sven-Hendrik Haase
Date: Thursday, September 3, 2015 @ 20:22:57
  Author: svenstaro
Revision: 139151

upgpkg: openmw 0.36.1-2

Try fixing bullet symbols

Modified:
  openmw/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-03 18:19:20 UTC (rev 139150)
+++ PKGBUILD2015-09-03 18:22:57 UTC (rev 139151)
@@ -3,7 +3,7 @@
 
 pkgname=openmw
 pkgver=0.36.1
-pkgrel=1
+pkgrel=2
 pkgdesc="An open-source engine reimplementation for the role-playing game 
Morrowind"
 arch=('i686' 'x86_64')
 url="http://www.openmw.org;


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

2015-09-03 Thread Tobias Powalowski
Date: Thursday, September 3, 2015 @ 21:29:26
  Author: tpowa
Revision: 139161

upgpkg: rt3562sta 2.4.1.1_r2-13

rebuild against 4.2 series

Modified:
  rt3562sta/trunk/PKGBUILD
  rt3562sta/trunk/rt3562sta.install

---+
 PKGBUILD  |2 +-
 rt3562sta.install |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-09-03 19:28:53 UTC (rev 139160)
+++ PKGBUILD2015-09-03 19:29:26 UTC (rev 139161)
@@ -5,7 +5,7 @@
 pkgname=rt3562sta
 pkgver=2.4.1.1_r2
 _patchrel=${pkgver/*_r/}
-pkgrel=12
+pkgrel=13
 pkgdesc="Ralink RT3562 PCI WLAN adaptors kernel module"
 arch=(i686 x86_64)
 
url="http://www.mediatek.com/en/products/connectivity/wifi/consumer-electronics/pcie/rt3562/;

Modified: rt3562sta.install
===
--- rt3562sta.install   2015-09-03 19:28:53 UTC (rev 139160)
+++ rt3562sta.install   2015-09-03 19:29:26 UTC (rev 139161)
@@ -1,5 +1,5 @@
 rebuild_module_dependencies() {
-   EXTRAMODULES='extramodules-4.1-ARCH'
+   EXTRAMODULES='extramodules-4.2-ARCH'
depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
 }
 


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

2015-09-03 Thread Tobias Powalowski
Date: Thursday, September 3, 2015 @ 21:29:36
  Author: tpowa
Revision: 139162

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

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

+
 community-testing-i686/PKGBUILD|   46 +++
 community-testing-i686/rt3562sta.install   |   16 +
 community-testing-x86_64/PKGBUILD  |   46 +++
 community-testing-x86_64/rt3562sta.install |   16 +
 4 files changed, 124 insertions(+)

Copied: rt3562sta/repos/community-testing-i686/PKGBUILD (from rev 139161, 
rt3562sta/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2015-09-03 19:29:36 UTC (rev 139162)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+# Based on SUSE spec 
https://build.opensuse.org/package/files?package=rt3562sta=driver%3Awireless
+
+pkgname=rt3562sta
+pkgver=2.4.1.1_r2
+_patchrel=${pkgver/*_r/}
+pkgrel=13
+pkgdesc="Ralink RT3562 PCI WLAN adaptors kernel module"
+arch=(i686 x86_64)
+url="http://www.mediatek.com/en/products/connectivity/wifi/consumer-electronics/pcie/rt3562/;
+license=('GPL')
+depends=('linux')
+makedepends=('linux-headers')
+install=$pkgname.install
+source=($pkgname-$pkgver.tar.gz::https://github.com/mtorromeo/rt3562sta-linux/archive/r${_patchrel}.tar.gz)
+
+build() {
+   _kernver=$(pacman -Q linux | sed -r 's#.* ([0-9]+\.[0-9]+).*#\1#')
+   KERNEL_RELEASE=$(cat 
/usr/lib/modules/extramodules-$_kernver-ARCH/version)
+
+   cd "$srcdir"/rt3562sta-linux-r$_patchrel
+
+   EXTRA_CFLAGS="-DVERSION=$pkgver" \
+   LINUX_SRC="/usr/lib/modules/$KERNEL_RELEASE/build" \
+   make
+}
+
+package() {
+   _kernver=$(pacman -Q linux | sed -r 's#.* ([0-9]+\.[0-9]+).*#\1#')
+   depends=("linux>=$_kernver" "linux<${_kernver/.*}.$(expr ${_kernver/*.} 
+ 1)")
+   KERNEL_VERSION=$(cat 
/usr/lib/modules/extramodules-$_kernver-ARCH/version)
+   msg "Kernel = $KERNEL_VERSION"
+
+   cd "$srcdir"/rt3562sta-linux-r$_patchrel
+
+   install -Dm 0640 RT3562STA.dat 
"$pkgdir/etc/Wireless/RT3562STA/RT3562STA.dat"
+   install -Dm 0644 os/linux/$pkgname.ko 
"$pkgdir/usr/lib/modules/extramodules-$_kernver-ARCH/$pkgname.ko"
+   install -dm 0755 "$pkgdir/usr/share/doc/$pkgname"
+   install -m 0644 iwpriv_usage.txt README* RT3562STA* 
sta_ate_iwpriv_usage.txt "$pkgdir/usr/share/doc/$pkgname"
+
+   find "$pkgdir" -name '*.ko' -exec gzip -9 {} \;
+   sed -i "s|extramodules-.*-ARCH|extramodules-$_kernver-ARCH|" 
"$startdir/$pkgname.install"
+}
+
+sha256sums=('fbb31034fac14d63f9ed16039b79743746d91e0587e3bdd036697f7fd39cef9a')

Copied: rt3562sta/repos/community-testing-i686/rt3562sta.install (from rev 
139161, rt3562sta/trunk/rt3562sta.install)
===
--- community-testing-i686/rt3562sta.install(rev 0)
+++ community-testing-i686/rt3562sta.install2015-09-03 19:29:36 UTC (rev 
139162)
@@ -0,0 +1,16 @@
+rebuild_module_dependencies() {
+   EXTRAMODULES='extramodules-4.2-ARCH'
+   depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+}
+
+post_install() {
+   rebuild_module_dependencies
+}
+
+post_upgrade() {
+   rebuild_module_dependencies
+}
+
+post_remove() {
+   rebuild_module_dependencies
+}

Copied: rt3562sta/repos/community-testing-x86_64/PKGBUILD (from rev 139161, 
rt3562sta/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2015-09-03 19:29:36 UTC (rev 139162)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+# Based on SUSE spec 
https://build.opensuse.org/package/files?package=rt3562sta=driver%3Awireless
+
+pkgname=rt3562sta
+pkgver=2.4.1.1_r2
+_patchrel=${pkgver/*_r/}
+pkgrel=13
+pkgdesc="Ralink RT3562 PCI WLAN adaptors kernel module"
+arch=(i686 x86_64)
+url="http://www.mediatek.com/en/products/connectivity/wifi/consumer-electronics/pcie/rt3562/;
+license=('GPL')
+depends=('linux')
+makedepends=('linux-headers')
+install=$pkgname.install
+source=($pkgname-$pkgver.tar.gz::https://github.com/mtorromeo/rt3562sta-linux/archive/r${_patchrel}.tar.gz)

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

2015-09-03 Thread Tobias Powalowski
Date: Thursday, September 3, 2015 @ 21:28:53
  Author: tpowa
Revision: 139160

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

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

+
 community-testing-i686/PKGBUILD|   44 +++
 community-testing-i686/r8168.install   |   17 +++
 community-testing-x86_64/PKGBUILD  |   44 +++
 community-testing-x86_64/r8168.install |   17 +++
 4 files changed, 122 insertions(+)

Copied: r8168/repos/community-testing-i686/PKGBUILD (from rev 139159, 
r8168/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2015-09-03 19:28:53 UTC (rev 139160)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+# Contributor: Bob Fanger < bfanger(at)gmail >
+# Contributor: Filip , Det < nimetonmaili(at)gmail >
+
+pkgname=r8168
+pkgver=8.040.00
+pkgrel=7
+pkgdesc="A kernel module for Realtek 8168 network cards"
+url="http://www.realtek.com.tw;
+license=("GPL")
+arch=('i686' 'x86_64')
+depends=('glibc' 'linux')
+makedepends=('linux-headers')
+install=$pkgname.install
+source=(https://github.com/mtorromeo/r8168/archive/$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('1f7aad3a066c152837e03e558ba720742e792d281c96c5412cff32d68875415b')
+
+build() {
+   _kernver=$(pacman -Q linux | sed -r 's#.* ([0-9]+\.[0-9]+).*#\1#')
+   KERNEL_VERSION=$(cat 
/usr/lib/modules/extramodules-$_kernver-ARCH/version)
+
+   cd "$pkgname-$pkgver"
+
+   # avoid using the Makefile directly -- it doesn't understand
+   # any kernel but the current.
+   make -C /usr/lib/modules/$KERNEL_VERSION/build \
+   SUBDIRS="$srcdir/$pkgname-$pkgver/src" \
+   EXTRA_CFLAGS="-DCONFIG_R8168_NAPI -DCONFIG_R8168_VLAN" \
+   modules
+}
+
+package() {
+   _kernver=$(pacman -Q linux | sed -r 's#.* ([0-9]+\.[0-9]+).*#\1#')
+   depends=("linux>=$_kernver" "linux<${_kernver/.*}.$(expr ${_kernver/*.} 
+ 1)")
+   KERNEL_VERSION=$(cat 
/usr/lib/modules/extramodules-$_kernver-ARCH/version)
+   msg "Kernel = $KERNEL_VERSION"
+
+   cd "$pkgname-$pkgver"
+   install -Dm644 src/$pkgname.ko 
"$pkgdir/usr/lib/modules/extramodules-$_kernver-ARCH/$pkgname.ko"
+   find "$pkgdir" -name '*.ko' -exec gzip -9 {} +
+
+   sed -i "s|extramodules-.*-ARCH|extramodules-$_kernver-ARCH|" 
"$startdir/$pkgname.install"
+}

Copied: r8168/repos/community-testing-i686/r8168.install (from rev 139159, 
r8168/trunk/r8168.install)
===
--- community-testing-i686/r8168.install(rev 0)
+++ community-testing-i686/r8168.install2015-09-03 19:28:53 UTC (rev 
139160)
@@ -0,0 +1,17 @@
+rebuild_module_dependencies() {
+   EXTRAMODULES='extramodules-4.2-ARCH'
+   depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+}
+
+post_install() {
+  rebuild_module_dependencies
+   echo '>>> The module r8168 conflicts with r8169. You can blacklist it 
with:'
+   echo '>>>  `echo "blacklist r8169" > 
/etc/modprobe.d/r8169_blacklist.conf`'
+}
+post_upgrade() {
+   rebuild_module_dependencies
+}
+
+post_remove() {
+   rebuild_module_dependencies
+}

Copied: r8168/repos/community-testing-x86_64/PKGBUILD (from rev 139159, 
r8168/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2015-09-03 19:28:53 UTC (rev 139160)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+# Contributor: Bob Fanger < bfanger(at)gmail >
+# Contributor: Filip , Det < nimetonmaili(at)gmail >
+
+pkgname=r8168
+pkgver=8.040.00
+pkgrel=7
+pkgdesc="A kernel module for Realtek 8168 network cards"
+url="http://www.realtek.com.tw;
+license=("GPL")
+arch=('i686' 'x86_64')
+depends=('glibc' 'linux')
+makedepends=('linux-headers')
+install=$pkgname.install
+source=(https://github.com/mtorromeo/r8168/archive/$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('1f7aad3a066c152837e03e558ba720742e792d281c96c5412cff32d68875415b')
+
+build() {
+   _kernver=$(pacman -Q linux | sed -r 's#.* ([0-9]+\.[0-9]+).*#\1#')
+   KERNEL_VERSION=$(cat 

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

2015-09-03 Thread Tobias Powalowski
Date: Thursday, September 3, 2015 @ 21:28:43
  Author: tpowa
Revision: 139159

upgpkg: r8168 8.040.00-7

rebuild against 4.2 series

Modified:
  r8168/trunk/PKGBUILD
  r8168/trunk/r8168.install

---+
 PKGBUILD  |2 +-
 r8168.install |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-09-03 19:28:07 UTC (rev 139158)
+++ PKGBUILD2015-09-03 19:28:43 UTC (rev 139159)
@@ -5,7 +5,7 @@
 
 pkgname=r8168
 pkgver=8.040.00
-pkgrel=6
+pkgrel=7
 pkgdesc="A kernel module for Realtek 8168 network cards"
 url="http://www.realtek.com.tw;
 license=("GPL")

Modified: r8168.install
===
--- r8168.install   2015-09-03 19:28:07 UTC (rev 139158)
+++ r8168.install   2015-09-03 19:28:43 UTC (rev 139159)
@@ -1,5 +1,5 @@
 rebuild_module_dependencies() {
-   EXTRAMODULES='extramodules-4.1-ARCH'
+   EXTRAMODULES='extramodules-4.2-ARCH'
depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
 }
 


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

2015-09-03 Thread Anatol Pomozov
Date: Thursday, September 3, 2015 @ 20:26:19
  Author: anatolik
Revision: 139153

upgpkg: crash 7.1.3-1

Modified:
  crash/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-03 18:23:04 UTC (rev 139152)
+++ PKGBUILD2015-09-03 18:26:19 UTC (rev 139153)
@@ -5,7 +5,7 @@
 # Contributor: Mathieu Pasquet 
 
 pkgname=crash
-pkgver=7.1.2
+pkgver=7.1.3
 pkgrel=1
 pkgdesc='Linux kernel crashdump analysis tool'
 url='http://people.redhat.com/~anderson'
@@ -13,7 +13,7 @@
 license=(GPL)
 depends=(xz ncurses zlib)
 source=(http://people.redhat.com/~anderson/crash-$pkgver.tar.gz)
-sha256sums=('037f3bdde8ad0602150f7a09a7a2870966b863d689e73e91d0d8d2a4cf28845e')
+sha256sums=('58add564699f33f4bba7f0deed43f5dfef945e165e7cd9de495a34d8e8642dc9')
 
 prepare() {
   cd crash-$pkgver


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

2015-09-03 Thread Anatol Pomozov
Date: Thursday, September 3, 2015 @ 21:01:34
  Author: anatolik
Revision: 139154

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-09-03 18:26:19 UTC (rev 139153)
+++ community-i686/PKGBUILD 2015-09-03 19:01:34 UTC (rev 139154)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Anatol Pomozov 
-# Contributor: Bernhard Walle 
-# Contributor: Michael Eckert 
-# Contributor: Mathieu Pasquet 
-
-pkgname=crash
-pkgver=7.1.2
-pkgrel=1
-pkgdesc='Linux kernel crashdump analysis tool'
-url='http://people.redhat.com/~anderson'
-arch=(i686 x86_64)
-license=(GPL)
-depends=(xz ncurses zlib)
-source=(http://people.redhat.com/~anderson/crash-$pkgver.tar.gz)
-sha256sums=('037f3bdde8ad0602150f7a09a7a2870966b863d689e73e91d0d8d2a4cf28845e')
-
-prepare() {
-  cd crash-$pkgver
-
-  make gdb_unzip
-  sed -i '/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/' gdb-7.6/libiberty/configure
-}
-
-build() {
-  cd crash-$pkgver
-  make
-}
-
-package() {
-  cd crash-$pkgver
-
-  mkdir -p "$pkgdir"/usr/bin "$pkgdir"/usr/share/man/man8
-  install crash "$pkgdir"/usr/bin/
-  install crash.8 "$pkgdir"/usr/share/man/man8/
-}

Copied: crash/repos/community-i686/PKGBUILD (from rev 139153, 
crash/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-09-03 19:01:34 UTC (rev 139154)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Anatol Pomozov 
+# Contributor: Bernhard Walle 
+# Contributor: Michael Eckert 
+# Contributor: Mathieu Pasquet 
+
+pkgname=crash
+pkgver=7.1.3
+pkgrel=1
+pkgdesc='Linux kernel crashdump analysis tool'
+url='http://people.redhat.com/~anderson'
+arch=(i686 x86_64)
+license=(GPL)
+depends=(xz ncurses zlib)
+source=(http://people.redhat.com/~anderson/crash-$pkgver.tar.gz)
+sha256sums=('58add564699f33f4bba7f0deed43f5dfef945e165e7cd9de495a34d8e8642dc9')
+
+prepare() {
+  cd crash-$pkgver
+
+  make gdb_unzip
+  sed -i '/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/' gdb-7.6/libiberty/configure
+}
+
+build() {
+  cd crash-$pkgver
+  make
+}
+
+package() {
+  cd crash-$pkgver
+
+  mkdir -p "$pkgdir"/usr/bin "$pkgdir"/usr/share/man/man8
+  install crash "$pkgdir"/usr/bin/
+  install crash.8 "$pkgdir"/usr/share/man/man8/
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-09-03 18:26:19 UTC (rev 139153)
+++ community-x86_64/PKGBUILD   2015-09-03 19:01:34 UTC (rev 139154)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Anatol Pomozov 
-# Contributor: Bernhard Walle 
-# Contributor: Michael Eckert 
-# Contributor: Mathieu Pasquet 
-
-pkgname=crash
-pkgver=7.1.2
-pkgrel=1
-pkgdesc='Linux kernel crashdump analysis tool'
-url='http://people.redhat.com/~anderson'
-arch=(i686 x86_64)
-license=(GPL)
-depends=(xz ncurses zlib)
-source=(http://people.redhat.com/~anderson/crash-$pkgver.tar.gz)
-sha256sums=('037f3bdde8ad0602150f7a09a7a2870966b863d689e73e91d0d8d2a4cf28845e')
-
-prepare() {
-  cd crash-$pkgver
-
-  make gdb_unzip
-  sed -i '/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/' gdb-7.6/libiberty/configure
-}
-
-build() {
-  cd crash-$pkgver
-  make
-}
-
-package() {
-  cd crash-$pkgver
-
-  mkdir -p "$pkgdir"/usr/bin "$pkgdir"/usr/share/man/man8
-  install crash "$pkgdir"/usr/bin/
-  install crash.8 "$pkgdir"/usr/share/man/man8/
-}

Copied: crash/repos/community-x86_64/PKGBUILD (from rev 139153, 
crash/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-09-03 19:01:34 UTC (rev 139154)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Anatol Pomozov 
+# Contributor: Bernhard Walle 
+# Contributor: Michael Eckert 
+# Contributor: Mathieu Pasquet 
+
+pkgname=crash
+pkgver=7.1.3
+pkgrel=1
+pkgdesc='Linux kernel crashdump analysis tool'

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

2015-09-03 Thread Tobias Powalowski
Date: Thursday, September 3, 2015 @ 21:25:06
  Author: tpowa
Revision: 245252

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

Added:
  nvidia-304xx/repos/testing-i686/PKGBUILD
(from rev 245251, nvidia-304xx/trunk/PKGBUILD)
  nvidia-304xx/repos/testing-i686/nv-drm.patch
(from rev 245251, nvidia-304xx/trunk/nv-drm.patch)
  nvidia-304xx/repos/testing-i686/nvidia-304xx-dkms.install
(from rev 245251, nvidia-304xx/trunk/nvidia-304xx-dkms.install)
  nvidia-304xx/repos/testing-i686/nvidia-304xx.install
(from rev 245251, nvidia-304xx/trunk/nvidia-304xx.install)
  nvidia-304xx/repos/testing-x86_64/PKGBUILD
(from rev 245251, nvidia-304xx/trunk/PKGBUILD)
  nvidia-304xx/repos/testing-x86_64/nv-drm.patch
(from rev 245251, nvidia-304xx/trunk/nv-drm.patch)
  nvidia-304xx/repos/testing-x86_64/nvidia-304xx-dkms.install
(from rev 245251, nvidia-304xx/trunk/nvidia-304xx-dkms.install)
  nvidia-304xx/repos/testing-x86_64/nvidia-304xx.install
(from rev 245251, nvidia-304xx/trunk/nvidia-304xx.install)
Deleted:
  nvidia-304xx/repos/testing-i686/PKGBUILD
  nvidia-304xx/repos/testing-i686/nv-drm.patch
  nvidia-304xx/repos/testing-i686/nvidia-304xx-dkms.install
  nvidia-304xx/repos/testing-i686/nvidia-304xx.install
  nvidia-304xx/repos/testing-x86_64/PKGBUILD
  nvidia-304xx/repos/testing-x86_64/nv-drm.patch
  nvidia-304xx/repos/testing-x86_64/nvidia-304xx-dkms.install
  nvidia-304xx/repos/testing-x86_64/nvidia-304xx.install

--+
 /PKGBUILD|  138 +
 /nv-drm.patch|   54 +++
 /nvidia-304xx-dkms.install   |   60 
 /nvidia-304xx.install|   26 +
 testing-i686/PKGBUILD|   69 --
 testing-i686/nv-drm.patch|   27 -
 testing-i686/nvidia-304xx-dkms.install   |   30 --
 testing-i686/nvidia-304xx.install|   13 --
 testing-x86_64/PKGBUILD  |   69 --
 testing-x86_64/nv-drm.patch  |   27 -
 testing-x86_64/nvidia-304xx-dkms.install |   30 --
 testing-x86_64/nvidia-304xx.install  |   13 --
 12 files changed, 278 insertions(+), 278 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2015-09-03 19:24:30 UTC (rev 245251)
+++ testing-i686/PKGBUILD   2015-09-03 19:25:06 UTC (rev 245252)
@@ -1,69 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Thomas Baechler 
-
-pkgbase=nvidia-304xx
-pkgname=(nvidia-304xx nvidia-304xx-dkms)
-pkgver=304.128
-_extramodules=extramodules-4.1-ARCH
-pkgrel=1
-arch=('i686' 'x86_64')
-url="http://www.nvidia.com/;
-makedepends=('libgl' "nvidia-304xx-utils=${pkgver}" 'linux' 
'linux-headers>=4.1' 'linux-headers<4.2')
-conflicts=('nvidia')
-license=('custom')
-options=(!strip)
-source=("http://us.download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run;
-
"http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;
-'nv-drm.patch')
-sha512sums=('9822b61872ae28751cd5c41714048612f7ddf0fd9f02e6340598150afbea43dddeba88482a8c88bcf893b015d14b2a2cf5157ed60583da57fdfe183ecb620c90'
-
'fa7a81edaba92561314b4874635e639607cf2f9bcde10609764528a35bb2d4a6916c7ea2be2cdcb9e2abf5ac7455f54287ff7218f3e57acc67bdeae18a208db2'
-
'aaa36ef7179acdc86850381de145a3aebab22273cd3c702a9d1343dc3415192c74a35da692312555f36193c5d46a1771ce07ea9508113cb9d0698873064aa19f')
-
-[[ "$CARCH" = "i686" ]] && _pkg="NVIDIA-Linux-x86-${pkgver}"
-[[ "$CARCH" = "x86_64" ]] && _pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
-
-prepare() {
-cd "${srcdir}"
-sh "${_pkg}.run" --extract-only
-cd "${_pkg}"
-# patches here
-patch -p0 -i "$srcdir/nv-drm.patch"
-}
-
-build() {
-_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
-cd "${_pkg}/kernel"
-make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
-}
-
-package_nvidia-304xx() {
-pkgdesc="NVIDIA drivers for linux, 304xx legacy branch"
-depends=('linux>=4.1' 'linux<4.2' 'libgl' "nvidia-304xx-utils=${pkgver}")
-   conflicts+=('nvidia-304xx-dkms')
-install=nvidia-304xx.install
-
-install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia.ko" \
-"${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko"
-install -d -m755 "${pkgdir}/usr/lib/modprobe.d"
-echo "blacklist nouveau" >> "${pkgdir}/usr/lib/modprobe.d/nvidia.conf"
-sed -i -e "s/EXTRAMODULES='.*'/EXTRAMODULES='${_extramodules}'/" 
"${startdir}/${pkgname}.install"
-gzip "${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko"
-
-# the license file is part of nvidia-304xx-utils - the module depends on 
it, so we don't ship it another time.
-}
-
-package_nvidia-304xx-dkms() {
-pkgdesc="NVIDIA driver sources 

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

2015-09-03 Thread Tobias Powalowski
Date: Thursday, September 3, 2015 @ 21:30:07
  Author: tpowa
Revision: 139163

upgpkg: tp_smapi 0.41-74

rebuild against 4.2 series

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
===
--- PKGBUILD2015-09-03 19:29:36 UTC (rev 139162)
+++ PKGBUILD2015-09-03 19:30:07 UTC (rev 139163)
@@ -10,14 +10,14 @@
 
 pkgname=tp_smapi
 pkgver=0.41
-_extramodules=extramodules-4.1-ARCH
-pkgrel=73
+_extramodules=extramodules-4.2-ARCH
+pkgrel=74
 pkgdesc="Modules for ThinkPad's SMAPI functionality"
 arch=('i686' 'x86_64')
 url='https://github.com/evgeni/tp_smapi'
 license=('GPL')
-depends=('linux>=4.1' 'linux<4.2')
-makedepends=('linux-headers>=4.1' 'linux-headers<4.2')
+depends=('linux>=4.2' 'linux<4.3')
+makedepends=('linux-headers>=4.2' 'linux-headers<4.3')
 install="${pkgname}.install"
 
source=("https://github.com/downloads/evgeni/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
 md5sums=('63c683415c764568f6bf17c7eabe4752')

Modified: tp_smapi.install
===
--- tp_smapi.install2015-09-03 19:29:36 UTC (rev 139162)
+++ tp_smapi.install2015-09-03 19:30:07 UTC (rev 139163)
@@ -1,4 +1,4 @@
-extramodules=/usr/lib/modules/extramodules-4.1-ARCH
+extramodules=/usr/lib/modules/extramodules-4.2-ARCH
 
 post_install() {
   depmod -v $(< "$extramodules/version") &>/dev/null


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

2015-09-03 Thread Tobias Powalowski
Date: Thursday, September 3, 2015 @ 21:30:41
  Author: tpowa
Revision: 139165

upgpkg: vhba-module 20140928-18

rebuild against 4.2 series

Modified:
  vhba-module/trunk/PKGBUILD
  vhba-module/trunk/vhba-module.install

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-03 19:30:16 UTC (rev 139164)
+++ PKGBUILD2015-09-03 19:30:41 UTC (rev 139165)
@@ -5,14 +5,14 @@
 
 pkgname=vhba-module
 pkgver=20140928
-_extramodules=extramodules-4.1-ARCH
-pkgrel=17
+_extramodules=extramodules-4.2-ARCH
+pkgrel=18
 pkgdesc="Kernel module that emulates SCSI devices"
 arch=('i686' 'x86_64')
 url="http://cdemu.sourceforge.net/;
 license=('GPL')
-depends=('linux>=4.1' 'linux<4.2')
-makedepends=('linux-headers>=4.1' 'linux-headers<4.2')
+depends=('linux>=4.2' 'linux<4.3')
+makedepends=('linux-headers>=4.2' 'linux-headers<4.3')
 options=(!makeflags)
 install=$pkgname.install
 source=("http://downloads.sourceforge.net/cdemu/$pkgname-$pkgver.tar.bz2;

Modified: vhba-module.install
===
--- vhba-module.install 2015-09-03 19:30:16 UTC (rev 139164)
+++ vhba-module.install 2015-09-03 19:30:41 UTC (rev 139165)
@@ -1,4 +1,4 @@
-EXTRAMODULES=extramodules-4.1-ARCH
+EXTRAMODULES=extramodules-4.2-ARCH
 
 _updatemod() {
   echo "  > Updating module dependencies..."


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

2015-09-03 Thread Tobias Powalowski
Date: Thursday, September 3, 2015 @ 19:48:20
  Author: tpowa
Revision: 245245

upgpkg: nvidia 352.41-2

rebuild against 4.2

Modified:
  nvidia/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-03 17:46:46 UTC (rev 245244)
+++ PKGBUILD2015-09-03 17:48:20 UTC (rev 245245)
@@ -10,7 +10,7 @@
 arch=('i686' 'x86_64')
 url="http://www.nvidia.com/;
 depends=('linux>=4.2' 'linux<4.3' "nvidia-utils=${pkgver}" 'libgl')
-makedepends=('linux-headers>=4.2' 'linux-headers<4.3')
+makedepends=('linux-headers>=4.2' 'linux-headers<4.3' 'nvidia-libgl')
 license=('custom')
 install=nvidia.install
 options=(!strip)


[arch-commits] Commit in php/repos (32 files)

2015-09-03 Thread Pierre Schmitz
Date: Thursday, September 3, 2015 @ 19:00:20
  Author: pierre
Revision: 245242

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

Added:
  php/repos/extra-i686/PKGBUILD
(from rev 245241, php/trunk/PKGBUILD)
  php/repos/extra-i686/apache.conf
(from rev 245241, php/trunk/apache.conf)
  php/repos/extra-i686/logrotate.d.php-fpm
(from rev 245241, php/trunk/logrotate.d.php-fpm)
  php/repos/extra-i686/php-fpm.conf.in.patch
(from rev 245241, php/trunk/php-fpm.conf.in.patch)
  php/repos/extra-i686/php-fpm.install
(from rev 245241, php/trunk/php-fpm.install)
  php/repos/extra-i686/php-fpm.service
(from rev 245241, php/trunk/php-fpm.service)
  php/repos/extra-i686/php-fpm.tmpfiles
(from rev 245241, php/trunk/php-fpm.tmpfiles)
  php/repos/extra-i686/php.ini.patch
(from rev 245241, php/trunk/php.ini.patch)
  php/repos/extra-x86_64/PKGBUILD
(from rev 245241, php/trunk/PKGBUILD)
  php/repos/extra-x86_64/apache.conf
(from rev 245241, php/trunk/apache.conf)
  php/repos/extra-x86_64/logrotate.d.php-fpm
(from rev 245241, php/trunk/logrotate.d.php-fpm)
  php/repos/extra-x86_64/php-fpm.conf.in.patch
(from rev 245241, php/trunk/php-fpm.conf.in.patch)
  php/repos/extra-x86_64/php-fpm.install
(from rev 245241, php/trunk/php-fpm.install)
  php/repos/extra-x86_64/php-fpm.service
(from rev 245241, php/trunk/php-fpm.service)
  php/repos/extra-x86_64/php-fpm.tmpfiles
(from rev 245241, php/trunk/php-fpm.tmpfiles)
  php/repos/extra-x86_64/php.ini.patch
(from rev 245241, php/trunk/php.ini.patch)
Deleted:
  php/repos/extra-i686/PKGBUILD
  php/repos/extra-i686/apache.conf
  php/repos/extra-i686/logrotate.d.php-fpm
  php/repos/extra-i686/php-fpm.conf.in.patch
  php/repos/extra-i686/php-fpm.install
  php/repos/extra-i686/php-fpm.service
  php/repos/extra-i686/php-fpm.tmpfiles
  php/repos/extra-i686/php.ini.patch
  php/repos/extra-x86_64/PKGBUILD
  php/repos/extra-x86_64/apache.conf
  php/repos/extra-x86_64/logrotate.d.php-fpm
  php/repos/extra-x86_64/php-fpm.conf.in.patch
  php/repos/extra-x86_64/php-fpm.install
  php/repos/extra-x86_64/php-fpm.service
  php/repos/extra-x86_64/php-fpm.tmpfiles
  php/repos/extra-x86_64/php.ini.patch

+
 /PKGBUILD  |  828 +++
 /apache.conf   |   26 +
 /logrotate.d.php-fpm   |   16 
 /php-fpm.conf.in.patch |  104 
 /php-fpm.install   |   18 
 /php-fpm.service   |   26 +
 /php-fpm.tmpfiles  |2 
 /php.ini.patch |  240 ++
 extra-i686/PKGBUILD|  414 -
 extra-i686/apache.conf |   13 
 extra-i686/logrotate.d.php-fpm |8 
 extra-i686/php-fpm.conf.in.patch   |   52 --
 extra-i686/php-fpm.install |9 
 extra-i686/php-fpm.service |   13 
 extra-i686/php-fpm.tmpfiles|1 
 extra-i686/php.ini.patch   |  120 -
 extra-x86_64/PKGBUILD  |  414 -
 extra-x86_64/apache.conf   |   13 
 extra-x86_64/logrotate.d.php-fpm   |8 
 extra-x86_64/php-fpm.conf.in.patch |   52 --
 extra-x86_64/php-fpm.install   |9 
 extra-x86_64/php-fpm.service   |   13 
 extra-x86_64/php-fpm.tmpfiles  |1 
 extra-x86_64/php.ini.patch |  120 -
 24 files changed, 1260 insertions(+), 1260 deletions(-)

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


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

2015-09-03 Thread Pierre Schmitz
Date: Thursday, September 3, 2015 @ 18:59:39
  Author: pierre
Revision: 245241

upgpkg: php 5.6.13-1

Modified:
  php/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-03 16:50:08 UTC (rev 245240)
+++ PKGBUILD2015-09-03 16:59:39 UTC (rev 245241)
@@ -23,7 +23,7 @@
  'php-sqlite'
  'php-tidy'
  'php-xsl')
-pkgver=5.6.12
+pkgver=5.6.13
 pkgrel=1
 arch=('i686' 'x86_64')
 license=('PHP')
@@ -37,7 +37,7 @@
 "http://www.php.net/distributions/${pkgbase}-${pkgver}.tar.xz.asc;
 'php.ini.patch' 'apache.conf' 'php-fpm.conf.in.patch'
 'logrotate.d.php-fpm' 'php-fpm.service' 'php-fpm.tmpfiles')
-md5sums=('f2cc602602eb2b121779f2c4b8bacaba'
+md5sums=('de4a8ff544986d9e0da90522fa66f195'
  'SKIP'
  '39eff6cc99dae4ec3b52125e6229de7e'
  'dec2cbaad64e3abf4f0ec70e1de4e8e9'


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

2015-09-03 Thread Tobias Powalowski
Date: Thursday, September 3, 2015 @ 18:49:44
  Author: tpowa
Revision: 245239

upgpkg: linux 4.2-1

bump to latest version

Modified:
  linux/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-03 15:04:20 UTC (rev 245238)
+++ PKGBUILD2015-09-03 16:49:44 UTC (rev 245239)
@@ -23,8 +23,8 @@
 'change-default-console-loglevel.patch')
 sha256sums=('cf20e044f17588d2a42c8f2a450b0fd84dfdbd579b489d93e9ab7d0e8b45dbeb'
 'SKIP'
-'b5d6829dcb75d99fea401d9579e859a6ebb9bc09b2d6992dde171e8f05d5cbcf'
-'ee55d469a4c00b6fb4144549f2a9c5b84d9fe7948c7cbd2637dce72227392b4f'
+'dbac1b59a0a1861fe2ae64348512f0994594ccbe959f50aa94b91d8464e44c97'
+'90fa14aca07b560334ddb14ffe4f04c3ed149851e45952a5e4a2d0732ce29fb4'
 'f0d90e756f14533ee67afda280500511a62465b4f76adcc5effa95a40045179c'
 '1256b241cd477b265a3c2d64bdc19ffe3c9bbcee82ea3994c590c2c76e767d99')
 validpgpkeys=(


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

2015-09-03 Thread Tobias Powalowski
Date: Thursday, September 3, 2015 @ 19:46:46
  Author: tpowa
Revision: 245244

upgpkg: nvidia 352.41-2

rebuild against 4.2

Modified:
  nvidia/trunk/PKGBUILD
  nvidia/trunk/nvidia.install

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-03 17:30:25 UTC (rev 245243)
+++ PKGBUILD2015-09-03 17:46:46 UTC (rev 245244)
@@ -4,13 +4,13 @@
 
 pkgname=nvidia
 pkgver=352.41
-_extramodules=extramodules-4.1-ARCH
-pkgrel=1
+_extramodules=extramodules-4.2-ARCH
+pkgrel=2
 pkgdesc="NVIDIA drivers for linux"
 arch=('i686' 'x86_64')
 url="http://www.nvidia.com/;
-depends=('linux>=4.1' 'linux<4.2' "nvidia-utils=${pkgver}" 'libgl')
-makedepends=('linux-headers>=4.1' 'linux-headers<4.2')
+depends=('linux>=4.2' 'linux<4.3' "nvidia-utils=${pkgver}" 'libgl')
+makedepends=('linux-headers>=4.2' 'linux-headers<4.3')
 license=('custom')
 install=nvidia.install
 options=(!strip)

Modified: nvidia.install
===
--- nvidia.install  2015-09-03 17:30:25 UTC (rev 245243)
+++ nvidia.install  2015-09-03 17:46:46 UTC (rev 245244)
@@ -1,5 +1,5 @@
 post_install() {
-EXTRAMODULES='extramodules-4.1-ARCH'
+EXTRAMODULES='extramodules-4.2-ARCH'
 depmod $(cat /usr/lib/modules/${EXTRAMODULES}/version)
 echo 'In order to use nvidia module, reboot the system.'
 }


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

2015-09-03 Thread Levente Polyak
Date: Thursday, September 3, 2015 @ 22:08:16
  Author: anthraxx
Revision: 139169

upgpkg: afl 1.92b-1

upgpkg: afl 1.92b-1

Modified:
  afl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-03 19:32:02 UTC (rev 139168)
+++ PKGBUILD2015-09-03 20:08:16 UTC (rev 139169)
@@ -2,7 +2,7 @@
 # Contributor: spider-mario 
 
 pkgname=afl
-pkgver=1.90b
+pkgver=1.92b
 pkgrel=1
 pkgdesc='Security-oriented fuzzer using compile-time instrumentation and 
genetic algorithms'
 arch=('i686' 'x86_64')
@@ -17,7 +17,7 @@
 replaces=('american-fuzzy-lop')
 options=('!emptydirs' '!strip')
 
source=(${pkgname}-${pkgver}.tgz::http://lcamtuf.coredump.cx/${pkgname}/releases/${pkgname}-${pkgver}.tgz)
-sha512sums=('eb78f1ab61af887179b1c49a7a2e67ab6a67c61eefe574492db488aaab5ee0dd0468761d08f7c37bccab3f09fd62cbc74283ab429e1fe3d11bcb60663a093b93')
+sha512sums=('abb2c6cc9d28d522b59d28821e2eb7b82e4cc37212f1a02c848e9ef05fed008a0f3f57c8defb3384880700f9da23412a9ac77bd6afd7fbb30f0e4ad501e04148')
 
 build() {
   cd ${pkgname}-${pkgver}
@@ -29,4 +29,4 @@
   make PREFIX=/usr DESTDIR="${pkgdir}" install
 }
 
-# vim:set ts=2 sw=2 et:
+# vim: ts=2 sw=2 et:


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

2015-09-03 Thread Levente Polyak
Date: Thursday, September 3, 2015 @ 22:08:26
  Author: anthraxx
Revision: 139170

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-09-03 20:08:16 UTC (rev 139169)
+++ community-i686/PKGBUILD 2015-09-03 20:08:26 UTC (rev 139170)
@@ -1,32 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: spider-mario 
-
-pkgname=afl
-pkgver=1.90b
-pkgrel=1
-pkgdesc='Security-oriented fuzzer using compile-time instrumentation and 
genetic algorithms'
-arch=('i686' 'x86_64')
-url="http://lcamtuf.coredump.cx/afl/;
-license=('Apache')
-depends=('glibc' 'bash')
-optdepends=(
-  'gcc: gcc instrumentation support'
-  'clang: clang instrumentation support'
-)
-provides=('american-fuzzy-lop')
-replaces=('american-fuzzy-lop')
-options=('!emptydirs' '!strip')
-source=(${pkgname}-${pkgver}.tgz::http://lcamtuf.coredump.cx/${pkgname}/releases/${pkgname}-${pkgver}.tgz)
-sha512sums=('eb78f1ab61af887179b1c49a7a2e67ab6a67c61eefe574492db488aaab5ee0dd0468761d08f7c37bccab3f09fd62cbc74283ab429e1fe3d11bcb60663a093b93')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  make PREFIX=/usr
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make PREFIX=/usr DESTDIR="${pkgdir}" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: afl/repos/community-i686/PKGBUILD (from rev 139169, afl/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-09-03 20:08:26 UTC (rev 139170)
@@ -0,0 +1,32 @@
+# Maintainer: Levente Polyak 
+# Contributor: spider-mario 
+
+pkgname=afl
+pkgver=1.92b
+pkgrel=1
+pkgdesc='Security-oriented fuzzer using compile-time instrumentation and 
genetic algorithms'
+arch=('i686' 'x86_64')
+url="http://lcamtuf.coredump.cx/afl/;
+license=('Apache')
+depends=('glibc' 'bash')
+optdepends=(
+  'gcc: gcc instrumentation support'
+  'clang: clang instrumentation support'
+)
+provides=('american-fuzzy-lop')
+replaces=('american-fuzzy-lop')
+options=('!emptydirs' '!strip')
+source=(${pkgname}-${pkgver}.tgz::http://lcamtuf.coredump.cx/${pkgname}/releases/${pkgname}-${pkgver}.tgz)
+sha512sums=('abb2c6cc9d28d522b59d28821e2eb7b82e4cc37212f1a02c848e9ef05fed008a0f3f57c8defb3384880700f9da23412a9ac77bd6afd7fbb30f0e4ad501e04148')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  make PREFIX=/usr
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make PREFIX=/usr DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-09-03 20:08:16 UTC (rev 139169)
+++ community-x86_64/PKGBUILD   2015-09-03 20:08:26 UTC (rev 139170)
@@ -1,32 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: spider-mario 
-
-pkgname=afl
-pkgver=1.90b
-pkgrel=1
-pkgdesc='Security-oriented fuzzer using compile-time instrumentation and 
genetic algorithms'
-arch=('i686' 'x86_64')
-url="http://lcamtuf.coredump.cx/afl/;
-license=('Apache')
-depends=('glibc' 'bash')
-optdepends=(
-  'gcc: gcc instrumentation support'
-  'clang: clang instrumentation support'
-)
-provides=('american-fuzzy-lop')
-replaces=('american-fuzzy-lop')
-options=('!emptydirs' '!strip')
-source=(${pkgname}-${pkgver}.tgz::http://lcamtuf.coredump.cx/${pkgname}/releases/${pkgname}-${pkgver}.tgz)
-sha512sums=('eb78f1ab61af887179b1c49a7a2e67ab6a67c61eefe574492db488aaab5ee0dd0468761d08f7c37bccab3f09fd62cbc74283ab429e1fe3d11bcb60663a093b93')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  make PREFIX=/usr
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make PREFIX=/usr DESTDIR="${pkgdir}" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: afl/repos/community-x86_64/PKGBUILD (from rev 139169, 
afl/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-09-03 20:08:26 UTC (rev 139170)
@@ -0,0 +1,32 @@
+# Maintainer: Levente Polyak 
+# Contributor: spider-mario 
+
+pkgname=afl
+pkgver=1.92b
+pkgrel=1
+pkgdesc='Security-oriented fuzzer using compile-time instrumentation and 
genetic algorithms'

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

2015-09-03 Thread Levente Polyak
Date: Thursday, September 3, 2015 @ 22:08:57
  Author: anthraxx
Revision: 139172

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

Added:
  zmap/repos/community-i686/PKGBUILD
(from rev 139171, zmap/trunk/PKGBUILD)
  zmap/repos/community-x86_64/PKGBUILD
(from rev 139171, zmap/trunk/PKGBUILD)
Deleted:
  zmap/repos/community-i686/PKGBUILD
  zmap/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 2015-09-03 20:08:47 UTC (rev 139171)
+++ community-i686/PKGBUILD 2015-09-03 20:08:57 UTC (rev 139172)
@@ -1,34 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Jens Adam 
-
-pkgname=zmap
-pkgver=1.2.1
-pkgrel=3
-pkgdesc='Fast network scanner designed for Internet-wide network surveys'
-url='https://zmap.io/'
-arch=('i686' 'x86_64')
-license=('Apache')
-depends=('gmp' 'hiredis' 'json-c' 'libpcap')
-makedepends=('byacc' 'cmake' 'gengetopt')
-backup=('etc/zmap/blacklist.conf' 'etc/zmap/zmap.conf')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/zmap/zmap/archive/v${pkgver}.tar.gz)
-sha512sums=('1b3d7fa41bb75c859463f3ec8bcde31778f5d91a6f561aa9638ba93be97dacdba89493574581ce52aebcf093a86b042dcce41cffe6cb0849bb76a6005b714be2')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  cmake -DWITH_JSON=ON -DWITH_REDIS=ON
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  install -Dm 755 src/zmap "${pkgdir}/usr/bin/zmap"
-  install -Dm 644 src/zmap.1 "${pkgdir}/usr/share/man/man1/zmap.1"
-  install -Dm 644 conf/* -t "${pkgdir}/etc/zmap"
-  for F in AUTHORS CHANGELOG INSTALL README; do
-install -Dm 644 "${F}" "${pkgdir}/usr/share/doc/zmap/${F}"
-  done
-  cp -a examples "${pkgdir}/usr/share/doc/zmap"
-}
-
-# vim: ts=2 sw=2 et:

Copied: zmap/repos/community-i686/PKGBUILD (from rev 139171, 
zmap/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-09-03 20:08:57 UTC (rev 139172)
@@ -0,0 +1,34 @@
+# Maintainer: Levente Polyak 
+# Contributor: Jens Adam 
+
+pkgname=zmap
+pkgver=2.1.0
+pkgrel=1
+pkgdesc='Fast network scanner designed for Internet-wide network surveys'
+url='https://zmap.io/'
+arch=('i686' 'x86_64')
+license=('Apache')
+depends=('gmp' 'hiredis' 'json-c' 'libpcap')
+makedepends=('byacc' 'cmake' 'gengetopt')
+backup=('etc/zmap/blacklist.conf' 'etc/zmap/zmap.conf')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/zmap/zmap/archive/v${pkgver}.tar.gz)
+sha512sums=('b6e446fd71dc8580e0d23bf76ec2e3b555489abbad9a823405637a64349613ee657a925049b63365d1c048f74ba3c4bebaadde28d0c2802492de7db735c86320')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  cmake -DWITH_JSON=ON -DWITH_REDIS=ON
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  install -Dm 755 src/zmap "${pkgdir}/usr/bin/zmap"
+  install -Dm 644 src/zmap.1 "${pkgdir}/usr/share/man/man1/zmap.1"
+  install -Dm 644 conf/* -t "${pkgdir}/etc/zmap"
+  for F in AUTHORS CHANGELOG INSTALL README.md; do
+install -Dm 644 "${F}" "${pkgdir}/usr/share/doc/zmap/${F}"
+  done
+  cp -a examples "${pkgdir}/usr/share/doc/zmap"
+}
+
+# vim: ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-09-03 20:08:47 UTC (rev 139171)
+++ community-x86_64/PKGBUILD   2015-09-03 20:08:57 UTC (rev 139172)
@@ -1,34 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Jens Adam 
-
-pkgname=zmap
-pkgver=1.2.1
-pkgrel=3
-pkgdesc='Fast network scanner designed for Internet-wide network surveys'
-url='https://zmap.io/'
-arch=('i686' 'x86_64')
-license=('Apache')
-depends=('gmp' 'hiredis' 'json-c' 'libpcap')
-makedepends=('byacc' 'cmake' 'gengetopt')
-backup=('etc/zmap/blacklist.conf' 'etc/zmap/zmap.conf')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/zmap/zmap/archive/v${pkgver}.tar.gz)
-sha512sums=('1b3d7fa41bb75c859463f3ec8bcde31778f5d91a6f561aa9638ba93be97dacdba89493574581ce52aebcf093a86b042dcce41cffe6cb0849bb76a6005b714be2')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  cmake -DWITH_JSON=ON -DWITH_REDIS=ON
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  install -Dm 755 src/zmap "${pkgdir}/usr/bin/zmap"
-  install -Dm 644 src/zmap.1 "${pkgdir}/usr/share/man/man1/zmap.1"
-  install -Dm 644 conf/* -t "${pkgdir}/etc/zmap"
-  for F in AUTHORS CHANGELOG INSTALL README; do
-install -Dm 644 "${F}" "${pkgdir}/usr/share/doc/zmap/${F}"
-  done
-  cp -a examples "${pkgdir}/usr/share/doc/zmap"
-}
-
-# vim: 

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

2015-09-03 Thread Levente Polyak
Date: Thursday, September 3, 2015 @ 22:08:47
  Author: anthraxx
Revision: 139171

upgpkg: zmap 2.1.0-1

upgpkg: zmap 2.1.0-1

Modified:
  zmap/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-03 20:08:26 UTC (rev 139170)
+++ PKGBUILD2015-09-03 20:08:47 UTC (rev 139171)
@@ -2,8 +2,8 @@
 # Contributor: Jens Adam 
 
 pkgname=zmap
-pkgver=1.2.1
-pkgrel=3
+pkgver=2.1.0
+pkgrel=1
 pkgdesc='Fast network scanner designed for Internet-wide network surveys'
 url='https://zmap.io/'
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 makedepends=('byacc' 'cmake' 'gengetopt')
 backup=('etc/zmap/blacklist.conf' 'etc/zmap/zmap.conf')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/zmap/zmap/archive/v${pkgver}.tar.gz)
-sha512sums=('1b3d7fa41bb75c859463f3ec8bcde31778f5d91a6f561aa9638ba93be97dacdba89493574581ce52aebcf093a86b042dcce41cffe6cb0849bb76a6005b714be2')
+sha512sums=('b6e446fd71dc8580e0d23bf76ec2e3b555489abbad9a823405637a64349613ee657a925049b63365d1c048f74ba3c4bebaadde28d0c2802492de7db735c86320')
 
 build() {
   cd ${pkgname}-${pkgver}
@@ -25,7 +25,7 @@
   install -Dm 755 src/zmap "${pkgdir}/usr/bin/zmap"
   install -Dm 644 src/zmap.1 "${pkgdir}/usr/share/man/man1/zmap.1"
   install -Dm 644 conf/* -t "${pkgdir}/etc/zmap"
-  for F in AUTHORS CHANGELOG INSTALL README; do
+  for F in AUTHORS CHANGELOG INSTALL README.md; do
 install -Dm 644 "${F}" "${pkgdir}/usr/share/doc/zmap/${F}"
   done
   cp -a examples "${pkgdir}/usr/share/doc/zmap"


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

2015-09-03 Thread Tobias Powalowski
Date: Thursday, September 3, 2015 @ 22:56:03
  Author: tpowa
Revision: 139173

upgpkg: gpac 1:0.5.2-2

bump to latest version, fixes conversion hangs

Modified:
  gpac/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-03 20:08:57 UTC (rev 139172)
+++ PKGBUILD2015-09-03 20:56:03 UTC (rev 139173)
@@ -3,7 +3,7 @@
 
 pkgname=gpac
 pkgver=0.5.2
-pkgrel=1
+pkgrel=2
 epoch=1
 pkgdesc="A multimedia framework based on the MPEG-4 Systems standard"
 arch=('i686' 'x86_64')


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

2015-09-03 Thread Tobias Powalowski
Date: Thursday, September 3, 2015 @ 22:56:20
  Author: tpowa
Revision: 139174

archrelease: copy trunk to community-x86_64

Added:
  gpac/repos/community-x86_64/PKGBUILD
(from rev 139173, gpac/trunk/PKGBUILD)
Deleted:
  gpac/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-09-03 20:56:03 UTC (rev 139173)
+++ PKGBUILD2015-09-03 20:56:20 UTC (rev 139174)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=gpac
-pkgver=0.5.2
-pkgrel=1
-epoch=1
-pkgdesc="A multimedia framework based on the MPEG-4 Systems standard"
-arch=('i686' 'x86_64')
-url="http://gpac.sourceforge.net;
-license=('LGPL')
-depends=('ffmpeg' 'glu' 'libxv')
-makedepends=('git' 'jack' 'a52dec' 'freetype2' 'faad2' 'libmad' 'mesa' 'sdl2')
-optdepends=('jack: for jack support'
-   'a52dec: for A52 support'
-'faad2: for AAC support'
-   'libmad: for mp3 support'
-   'sdl2: for sdl support')
-options=('staticlibs' '!makeflags')
-source=(git://github.com/gpac/gpac.git)
-sha1sums=('SKIP')
-
-build() {
-  cd ${pkgname}
-  ./configure --prefix=/usr --mandir=/usr/share/man --X11-path=/usr --use-js=no
-  make
-}
-
-package() {
-  cd ${pkgname}
-  make DESTDIR="${pkgdir}" install install-lib
-}

Copied: gpac/repos/community-x86_64/PKGBUILD (from rev 139173, 
gpac/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-09-03 20:56:20 UTC (rev 139174)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=gpac
+pkgver=0.5.2
+pkgrel=2
+epoch=1
+pkgdesc="A multimedia framework based on the MPEG-4 Systems standard"
+arch=('i686' 'x86_64')
+url="http://gpac.sourceforge.net;
+license=('LGPL')
+depends=('ffmpeg' 'glu' 'libxv')
+makedepends=('git' 'jack' 'a52dec' 'freetype2' 'faad2' 'libmad' 'mesa' 'sdl2')
+optdepends=('jack: for jack support'
+   'a52dec: for A52 support'
+'faad2: for AAC support'
+   'libmad: for mp3 support'
+   'sdl2: for sdl support')
+options=('staticlibs' '!makeflags')
+source=(git://github.com/gpac/gpac.git)
+sha1sums=('SKIP')
+
+build() {
+  cd ${pkgname}
+  ./configure --prefix=/usr --mandir=/usr/share/man --X11-path=/usr --use-js=no
+  make
+}
+
+package() {
+  cd ${pkgname}
+  make DESTDIR="${pkgdir}" install install-lib
+}


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

2015-09-03 Thread Maxime Gauduin
Date: Thursday, September 3, 2015 @ 10:48:07
  Author: alucryd
Revision: 139129

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |   75 ++---
 lollypop.install |   30 ++---
 2 files changed, 53 insertions(+), 52 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-09-03 08:47:34 UTC (rev 139128)
+++ PKGBUILD2015-09-03 08:48:07 UTC (rev 139129)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: kirek 
-# Contributor: Cédric Bellegarde 
-
-pkgname=lollypop
-pkgver=0.9.42
-pkgrel=1
-pkgdesc='Music player for GNOME'
-arch=('any')
-url='https://github.com/gnumdk/lollypop'
-license=('GPL')
-depends=('desktop-file-utils' 'gtk3' 'python-cairo'
- 'python-dbus' 'python-gobject' 'totem-plparser')
-makedepends=('gobject-introspection' 'intltool' 'itstool' 'python')
-optdepends=('python-pylast: Last.FM support'
-'python-wikipedia: Wikipedia support')
-install='lollypop.install'
-source=("https://github.com/gnumdk/lollypop/releases/download/${pkgver}/lollypop-${pkgver}.tar.xz;)
-sha256sums=('65d44d073a249d9c9562ed1bbda65bb28173ab86df5dd045034b34e346110d20')
-
-build() {
-  cd lollypop-${pkgver}
-
-  ./configure \
---prefix='/usr' \
---disable-schemas-compile
-  make
-}
-
-package() {
-  cd lollypop-${pkgver}
-
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: lollypop/repos/community-any/PKGBUILD (from rev 139128, 
lollypop/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-09-03 08:48:07 UTC (rev 139129)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: kirek 
+# Contributor: Cédric Bellegarde 
+
+pkgname=lollypop
+pkgver=0.9.42
+pkgrel=2
+pkgdesc='Music player for GNOME'
+arch=('any')
+url='https://github.com/gnumdk/lollypop'
+license=('GPL')
+depends=('desktop-file-utils' 'gtk3' 'python-cairo'
+ 'python-dbus' 'python-gobject' 'totem-plparser')
+makedepends=('gobject-introspection' 'intltool' 'itstool' 'python')
+optdepends=('libsecret: Last.FM support'
+'python-pylast: Last.FM support'
+'python-wikipedia: Wikipedia support')
+install='lollypop.install'
+source=("https://github.com/gnumdk/lollypop/releases/download/${pkgver}/lollypop-${pkgver}.tar.xz;)
+sha256sums=('65d44d073a249d9c9562ed1bbda65bb28173ab86df5dd045034b34e346110d20')
+
+build() {
+  cd lollypop-${pkgver}
+
+  ./configure \
+--prefix='/usr' \
+--disable-schemas-compile
+  make
+}
+
+package() {
+  cd lollypop-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: lollypop.install
===
--- lollypop.install2015-09-03 08:47:34 UTC (rev 139128)
+++ lollypop.install2015-09-03 08:48:07 UTC (rev 139129)
@@ -1,15 +0,0 @@
-post_install() {
-  glib-compile-schemas /usr/share/glib-2.0/schemas
-  gtk-update-icon-cache -ftq /usr/share/icons/hicolor
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}
-
-# vim: ts=2 sw=2 et:

Copied: lollypop/repos/community-any/lollypop.install (from rev 139128, 
lollypop/trunk/lollypop.install)
===
--- lollypop.install(rev 0)
+++ lollypop.install2015-09-03 08:48:07 UTC (rev 139129)
@@ -0,0 +1,15 @@
+post_install() {
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -ftq /usr/share/icons/hicolor
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}
+
+# vim: ts=2 sw=2 et:


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

2015-09-03 Thread Maxime Gauduin
Date: Thursday, September 3, 2015 @ 10:47:34
  Author: alucryd
Revision: 139128

FS#46178: lollypop 0.9.42-2

Add libsecret to optdeps

Modified:
  lollypop/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-03 07:37:06 UTC (rev 139127)
+++ PKGBUILD2015-09-03 08:47:34 UTC (rev 139128)
@@ -5,7 +5,7 @@
 
 pkgname=lollypop
 pkgver=0.9.42
-pkgrel=1
+pkgrel=2
 pkgdesc='Music player for GNOME'
 arch=('any')
 url='https://github.com/gnumdk/lollypop'
@@ -13,7 +13,8 @@
 depends=('desktop-file-utils' 'gtk3' 'python-cairo'
  'python-dbus' 'python-gobject' 'totem-plparser')
 makedepends=('gobject-introspection' 'intltool' 'itstool' 'python')
-optdepends=('python-pylast: Last.FM support'
+optdepends=('libsecret: Last.FM support'
+'python-pylast: Last.FM support'
 'python-wikipedia: Wikipedia support')
 install='lollypop.install'
 
source=("https://github.com/gnumdk/lollypop/releases/download/${pkgver}/lollypop-${pkgver}.tar.xz;)


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

2015-09-03 Thread Tobias Powalowski
Date: Thursday, September 3, 2015 @ 09:11:04
  Author: tpowa
Revision: 245223

remove kernel26 lines #44826, bump version to 4.2

Modified:
  linux/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-03 05:38:36 UTC (rev 245222)
+++ PKGBUILD2015-09-03 07:11:04 UTC (rev 245223)
@@ -4,8 +4,8 @@
 
 pkgbase=linux   # Build stock -ARCH kernel
 #pkgbase=linux-custom   # Build kernel with a different name
-_srcname=linux-4.1
-pkgver=4.1.6
+_srcname=linux-4.2
+pkgver=4.2
 pkgrel=1
 arch=('i686' 'x86_64')
 url="http://www.kernel.org/;
@@ -14,17 +14,15 @@
 options=('!strip')
 source=("https://www.kernel.org/pub/linux/kernel/v4.x/${_srcname}.tar.xz;
 "https://www.kernel.org/pub/linux/kernel/v4.x/${_srcname}.tar.sign;
-"https://www.kernel.org/pub/linux/kernel/v4.x/patch-${pkgver}.xz;
-"https://www.kernel.org/pub/linux/kernel/v4.x/patch-${pkgver}.sign;
+#"https://www.kernel.org/pub/linux/kernel/v4.x/patch-${pkgver}.xz;
+#"https://www.kernel.org/pub/linux/kernel/v4.x/patch-${pkgver}.sign;
 # the main kernel config files
 'config' 'config.x86_64'
 # standard config files for mkinitcpio ramdisk
 'linux.preset'
 'change-default-console-loglevel.patch')
-sha256sums=('caf51f085aac1e1cea4d00dbbf3093ead07b551fc07b31b2a989c05f8ea72d9f'
+sha256sums=('cf20e044f17588d2a42c8f2a450b0fd84dfdbd579b489d93e9ab7d0e8b45dbeb'
 'SKIP'
-'64e4deb16a279e233b0c91463b131bd0f3de6aabdb49efded8314bcf5dbfe070'
-'SKIP'
 'b5d6829dcb75d99fea401d9579e859a6ebb9bc09b2d6992dde171e8f05d5cbcf'
 'ee55d469a4c00b6fb4144549f2a9c5b84d9fe7948c7cbd2637dce72227392b4f'
 'f0d90e756f14533ee67afda280500511a62465b4f76adcc5effa95a40045179c'
@@ -40,7 +38,7 @@
   cd "${srcdir}/${_srcname}"
 
   # add upstream patch
-  patch -p1 -i "${srcdir}/patch-${pkgver}"
+  #patch -p1 -i "${srcdir}/patch-${pkgver}"
 
   # add latest fixes from stable queue, if needed
   # http://git.kernel.org/?p=linux/kernel/git/stable/stable-queue.git
@@ -93,9 +91,6 @@
   [ "${pkgbase}" = "linux" ] && groups=('base')
   depends=('coreutils' 'linux-firmware' 'kmod' 'mkinitcpio>=0.7')
   optdepends=('crda: to set the correct wireless channels of your country')
-  provides=("kernel26${_kernelname}=${pkgver}")
-  conflicts=("kernel26${_kernelname}")
-  replaces=("kernel26${_kernelname}")
   backup=("etc/mkinitcpio.d/${pkgbase}.preset")
   install=linux.install
 
@@ -152,9 +147,6 @@
 
 _package-headers() {
   pkgdesc="Header files and scripts for building modules for 
${pkgbase/linux/Linux} kernel"
-  provides=("kernel26${_kernelname}-headers=${pkgver}")
-  conflicts=("kernel26${_kernelname}-headers")
-  replaces=("kernel26${_kernelname}-headers")
 
   install -dm755 "${pkgdir}/usr/lib/modules/${_kernver}"
 
@@ -272,9 +264,6 @@
 
 _package-docs() {
   pkgdesc="Kernel hackers manual - HTML documentation that comes with the 
${pkgbase/linux/Linux} kernel"
-  provides=("kernel26${_kernelname}-docs=${pkgver}")
-  conflicts=("kernel26${_kernelname}-docs")
-  replaces=("kernel26${_kernelname}-docs")
 
   cd "${srcdir}/${_srcname}"
 


[arch-commits] Commit in libvirt/repos (20 files)

2015-09-03 Thread Ionuț Mircea Bîru
Date: Thursday, September 3, 2015 @ 09:37:06
  Author: ioni
Revision: 139127

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

Added:
  libvirt/repos/community-i686/PKGBUILD
(from rev 139126, libvirt/trunk/PKGBUILD)
  libvirt/repos/community-i686/libvirt.install
(from rev 139126, libvirt/trunk/libvirt.install)
  libvirt/repos/community-i686/libvirt.tmpfiles.d
(from rev 139126, libvirt/trunk/libvirt.tmpfiles.d)
  libvirt/repos/community-i686/libvirtd-guests.conf.d
(from rev 139126, libvirt/trunk/libvirtd-guests.conf.d)
  libvirt/repos/community-i686/libvirtd.conf.d
(from rev 139126, libvirt/trunk/libvirtd.conf.d)
  libvirt/repos/community-x86_64/PKGBUILD
(from rev 139126, libvirt/trunk/PKGBUILD)
  libvirt/repos/community-x86_64/libvirt.install
(from rev 139126, libvirt/trunk/libvirt.install)
  libvirt/repos/community-x86_64/libvirt.tmpfiles.d
(from rev 139126, libvirt/trunk/libvirt.tmpfiles.d)
  libvirt/repos/community-x86_64/libvirtd-guests.conf.d
(from rev 139126, libvirt/trunk/libvirtd-guests.conf.d)
  libvirt/repos/community-x86_64/libvirtd.conf.d
(from rev 139126, libvirt/trunk/libvirtd.conf.d)
Deleted:
  libvirt/repos/community-i686/PKGBUILD
  libvirt/repos/community-i686/libvirt.install
  libvirt/repos/community-i686/libvirt.tmpfiles.d
  libvirt/repos/community-i686/libvirtd-guests.conf.d
  libvirt/repos/community-i686/libvirtd.conf.d
  libvirt/repos/community-x86_64/PKGBUILD
  libvirt/repos/community-x86_64/libvirt.install
  libvirt/repos/community-x86_64/libvirt.tmpfiles.d
  libvirt/repos/community-x86_64/libvirtd-guests.conf.d
  libvirt/repos/community-x86_64/libvirtd.conf.d

-+
 /PKGBUILD   |  252 ++
 /libvirt.install|   30 +++
 /libvirt.tmpfiles.d |8 
 /libvirtd-guests.conf.d |   18 ++
 /libvirtd.conf.d|2 
 community-i686/PKGBUILD |  126 ---
 community-i686/libvirt.install  |   15 -
 community-i686/libvirt.tmpfiles.d   |4 
 community-i686/libvirtd-guests.conf.d   |9 -
 community-i686/libvirtd.conf.d  |1 
 community-x86_64/PKGBUILD   |  126 ---
 community-x86_64/libvirt.install|   15 -
 community-x86_64/libvirt.tmpfiles.d |4 
 community-x86_64/libvirtd-guests.conf.d |9 -
 community-x86_64/libvirtd.conf.d|1 
 15 files changed, 310 insertions(+), 310 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-09-03 07:35:44 UTC (rev 139126)
+++ community-i686/PKGBUILD 2015-09-03 07:37:06 UTC (rev 139127)
@@ -1,126 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Jonathan Wiersma 
-
-pkgname=libvirt
-pkgver=1.2.19
-pkgrel=1
-pkgdesc="API for controlling virtualization engines 
(openvz,kvm,qemu,virtualbox,xen,etc)"
-arch=('i686' 'x86_64')
-url="http://libvirt.org/;
-license=('LGPL')
-depends=('e2fsprogs' 'gnutls' 'iptables' 'libxml2' 'parted' 'polkit' 'python2'
-'avahi' 'yajl' 'libpciaccess' 'udev' 'dbus' 'libxau' 'libxdmcp' 
'libpcap'
-'curl' 'libsasl' 'libgcrypt' 'libgpg-error' 'openssl' 'libxcb' 
'gcc-libs'
-'iproute2' 'libnl' 'libx11' 'numactl' 'gettext' 'ceph' 'libssh2' 
'netcf')
-makedepends=('pkgconfig' 'lvm2' 'linux-api-headers' 'dnsmasq' 'lxc'
-'libiscsi' 'open-iscsi'
-'perl-xml-xpath' 'libxslt')
-optdepends=('ebtables: required for default NAT networking'
-   'dnsmasq: required for default NAT/DHCP for guests'
-   'bridge-utils: for bridged networking'
-   'openbsd-netcat: for remote management over ssh'
-   'qemu'
-   'radvd'
-   'dmidecode'
-   'pm-utils: host power management')
-options=('emptydirs')
-backup=('etc/conf.d/libvirt-guests'
-   'etc/conf.d/libvirtd'
-   'etc/libvirt/libvirt.conf'
-   'etc/libvirt/libvirtd.conf'
-   'etc/libvirt/lxc.conf'
-   'etc/libvirt/nwfilter/allow-arp.xml'
-   'etc/libvirt/nwfilter/allow-dhcp-server.xml'
-   'etc/libvirt/nwfilter/allow-dhcp.xml'
-   'etc/libvirt/nwfilter/allow-incoming-ipv4.xml'
-   'etc/libvirt/nwfilter/allow-ipv4.xml'
-   'etc/libvirt/nwfilter/clean-traffic.xml'
-   'etc/libvirt/nwfilter/no-arp-ip-spoofing.xml'
-   'etc/libvirt/nwfilter/no-arp-mac-spoofing.xml'
-   'etc/libvirt/nwfilter/no-arp-spoofing.xml'
-   'etc/libvirt/nwfilter/no-ip-multicast.xml'
-   'etc/libvirt/nwfilter/no-ip-spoofing.xml'
-   'etc/libvirt/nwfilter/no-mac-broadcast.xml'
-   'etc/libvirt/nwfilter/no-mac-spoofing.xml'
-   'etc/libvirt/nwfilter/no-other-l2-traffic.xml'
-   'etc/libvirt/nwfilter/no-other-rarp-traffic.xml'
-   'etc/libvirt/nwfilter/qemu-announce-self-rarp.xml'
-   

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

2015-09-03 Thread Ionuț Mircea Bîru
Date: Thursday, September 3, 2015 @ 09:35:44
  Author: ioni
Revision: 139126

add qemu as makedepends for detecting location of qemu-bridge-helper
http://libvirt.org/git/?p=libvirt.git;a=blobdiff;f=configure.ac;h=965858be833f6a810d671cd29ed889f854f5df1e;hp=46c80ce43e7a030612658b12e3495b9e86bf95ff;hb=0e4972fe48aeaade393daf089013092a2ecde4b3;hpb=151ba022939dad1e562c4156cb62e7a3ade6a7f5

Modified:
  libvirt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-03 05:39:07 UTC (rev 139125)
+++ PKGBUILD2015-09-03 07:35:44 UTC (rev 139126)
@@ -4,7 +4,7 @@
 
 pkgname=libvirt
 pkgver=1.2.19
-pkgrel=1
+pkgrel=2
 pkgdesc="API for controlling virtualization engines 
(openvz,kvm,qemu,virtualbox,xen,etc)"
 arch=('i686' 'x86_64')
 url="http://libvirt.org/;
@@ -15,7 +15,7 @@
 'iproute2' 'libnl' 'libx11' 'numactl' 'gettext' 'ceph' 'libssh2' 
'netcf')
 makedepends=('pkgconfig' 'lvm2' 'linux-api-headers' 'dnsmasq' 'lxc'
 'libiscsi' 'open-iscsi'
-'perl-xml-xpath' 'libxslt')
+'perl-xml-xpath' 'libxslt' 'qemu')
 optdepends=('ebtables: required for default NAT networking'
'dnsmasq: required for default NAT/DHCP for guests'
'bridge-utils: for bridged networking'


[arch-commits] Commit in calligra/repos (64 files)

2015-09-03 Thread Antonio Rojas
Date: Thursday, September 3, 2015 @ 12:08:53
  Author: arojas
Revision: 245226

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

Added:
  calligra/repos/extra-i686/PKGBUILD
(from rev 245225, calligra/trunk/PKGBUILD)
  calligra/repos/extra-i686/calligra-braindump.install
(from rev 245225, calligra/trunk/calligra-braindump.install)
  calligra/repos/extra-i686/calligra-extras.install
(from rev 245225, calligra/trunk/calligra-extras.install)
  calligra/repos/extra-i686/calligra-filters.install
(from rev 245225, calligra/trunk/calligra-filters.install)
  calligra/repos/extra-i686/calligra-flow.install
(from rev 245225, calligra/trunk/calligra-flow.install)
  calligra/repos/extra-i686/calligra-gemini.install
(from rev 245225, calligra/trunk/calligra-gemini.install)
  calligra/repos/extra-i686/calligra-karbon.install
(from rev 245225, calligra/trunk/calligra-karbon.install)
  calligra/repos/extra-i686/calligra-kexi.install
(from rev 245225, calligra/trunk/calligra-kexi.install)
  calligra/repos/extra-i686/calligra-krita.install
(from rev 245225, calligra/trunk/calligra-krita.install)
  calligra/repos/extra-i686/calligra-plan.install
(from rev 245225, calligra/trunk/calligra-plan.install)
  calligra/repos/extra-i686/calligra-plugins.install
(from rev 245225, calligra/trunk/calligra-plugins.install)
  calligra/repos/extra-i686/calligra-sheets.install
(from rev 245225, calligra/trunk/calligra-sheets.install)
  calligra/repos/extra-i686/calligra-stage.install
(from rev 245225, calligra/trunk/calligra-stage.install)
  calligra/repos/extra-i686/calligra-words.install
(from rev 245225, calligra/trunk/calligra-words.install)
  calligra/repos/extra-i686/calligra.install
(from rev 245225, calligra/trunk/calligra.install)
  calligra/repos/extra-i686/libwps-0.4.patch
(from rev 245225, calligra/trunk/libwps-0.4.patch)
  calligra/repos/extra-x86_64/PKGBUILD
(from rev 245225, calligra/trunk/PKGBUILD)
  calligra/repos/extra-x86_64/calligra-braindump.install
(from rev 245225, calligra/trunk/calligra-braindump.install)
  calligra/repos/extra-x86_64/calligra-extras.install
(from rev 245225, calligra/trunk/calligra-extras.install)
  calligra/repos/extra-x86_64/calligra-filters.install
(from rev 245225, calligra/trunk/calligra-filters.install)
  calligra/repos/extra-x86_64/calligra-flow.install
(from rev 245225, calligra/trunk/calligra-flow.install)
  calligra/repos/extra-x86_64/calligra-gemini.install
(from rev 245225, calligra/trunk/calligra-gemini.install)
  calligra/repos/extra-x86_64/calligra-karbon.install
(from rev 245225, calligra/trunk/calligra-karbon.install)
  calligra/repos/extra-x86_64/calligra-kexi.install
(from rev 245225, calligra/trunk/calligra-kexi.install)
  calligra/repos/extra-x86_64/calligra-krita.install
(from rev 245225, calligra/trunk/calligra-krita.install)
  calligra/repos/extra-x86_64/calligra-plan.install
(from rev 245225, calligra/trunk/calligra-plan.install)
  calligra/repos/extra-x86_64/calligra-plugins.install
(from rev 245225, calligra/trunk/calligra-plugins.install)
  calligra/repos/extra-x86_64/calligra-sheets.install
(from rev 245225, calligra/trunk/calligra-sheets.install)
  calligra/repos/extra-x86_64/calligra-stage.install
(from rev 245225, calligra/trunk/calligra-stage.install)
  calligra/repos/extra-x86_64/calligra-words.install
(from rev 245225, calligra/trunk/calligra-words.install)
  calligra/repos/extra-x86_64/calligra.install
(from rev 245225, calligra/trunk/calligra.install)
  calligra/repos/extra-x86_64/libwps-0.4.patch
(from rev 245225, calligra/trunk/libwps-0.4.patch)
Deleted:
  calligra/repos/extra-i686/PKGBUILD
  calligra/repos/extra-i686/calligra-braindump.install
  calligra/repos/extra-i686/calligra-extras.install
  calligra/repos/extra-i686/calligra-filters.install
  calligra/repos/extra-i686/calligra-flow.install
  calligra/repos/extra-i686/calligra-gemini.install
  calligra/repos/extra-i686/calligra-karbon.install
  calligra/repos/extra-i686/calligra-kexi.install
  calligra/repos/extra-i686/calligra-krita.install
  calligra/repos/extra-i686/calligra-plan.install
  calligra/repos/extra-i686/calligra-plugins.install
  calligra/repos/extra-i686/calligra-sheets.install
  calligra/repos/extra-i686/calligra-stage.install
  calligra/repos/extra-i686/calligra-words.install
  calligra/repos/extra-i686/calligra.install
  calligra/repos/extra-i686/libwps-0.4.patch
  calligra/repos/extra-x86_64/PKGBUILD
  calligra/repos/extra-x86_64/calligra-braindump.install
  calligra/repos/extra-x86_64/calligra-extras.install
  calligra/repos/extra-x86_64/calligra-filters.install
  calligra/repos/extra-x86_64/calligra-flow.install
  calligra/repos/extra-x86_64/calligra-gemini.install
  calligra/repos/extra-x86_64/calligra-karbon.install
  calligra/repos/extra-x86_64/calligra-kexi.install
  calligra/repos/extra-x86_64/calligra-krita.install
  

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

2015-09-03 Thread Antonio Rojas
Date: Thursday, September 3, 2015 @ 12:07:27
  Author: arojas
Revision: 245225

Update to 2.9.7

Modified:
  calligra-l10n/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-03 10:07:15 UTC (rev 245224)
+++ PKGBUILD2015-09-03 10:07:27 UTC (rev 245225)
@@ -3,7 +3,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgbase=calligra-l10n
-pkgver=2.9.6
+pkgver=2.9.7
 pkgrel=1
 pkgdesc="Localization for Calligra"
 arch=('any')
@@ -57,34 +57,34 @@
   }"
 done
 
-md5sums=('15d8651b6175d198f7a9f3e1c90ae8fd'
- '0befb2ddfc294427e8e35ffee290a956'
- 'fc15c2255d182eb869fc28a1603efa04'
- '58a1b0b2d524b270457096803f2bded5'
- '2a0583e77368e5feee5c6bed3c2de89f'
- '715a52f56c41b776acf870bcf0df3591'
- 'faf4f6e78684e57865106822148b8c3b'
- '28eec40b0065f056de5d44bc06c229c1'
- '7d8f994234911e475d81f667cca9dd4a'
- 'f39485124287adc007dab3642b57eb9a'
- '0eeab69fef10dae98c921c5ad127812c'
- '6491144954bcdb75c3438ebf47797220'
- '9e0c1531241f0774c70c9dcd0836abb8'
- 'cd48ca919ffb1ee0152325eec19f4706'
- '215fc821eac11759802c68c2b385f9b6'
- 'b8f729b6ebba19cb6a796513a21d6ba0'
- '6b40753e50a400200182250f056bee56'
- 'ef9c45f9dfb25307b5f2cbbd46975ab6'
- '41d4a7b398cd4fe1dd63cf898c997501'
- 'fbc4dbdce3a80d6ae5582c42272fcad6'
- 'a874dd9c4edb591a4f84fe00c120bab0'
- '446a54dfbb7b45712fc2b8981e127926'
- '14d76da4021541686dd5d793f70d9029'
- '1a915d0f6df72c8a1fde8e34d658b6e4'
- '51dbdd45beda57deae4b30f2b0d49fe4'
- '8c81a876eb06a89c93094b5d392f52c0'
- 'a4aa2f21f565eea3e31f84e9c2d9b8f9'
- '324cb2be2ba0b9e1e1aa69e3315da683')
+md5sums=('e887ee1798750fc1ddad3bd940b19e31'
+ '97364b3650deee41d6771f9899149857'
+ '90a38be9cf4867908972175906c26959'
+ 'fc6811095a9c1e3c66cec25f60140052'
+ 'a49edf952c0e299b7f5bba633ce5aea2'
+ '1684a36e5e1c7fe0bb023ce17f2af1df'
+ '411a6f14595f421d2072c4a072540a4a'
+ 'f5302c87dc436f071a10e7682f42e5bc'
+ '8ce0647b45163abf4c8f032046107a26'
+ '888514998136f94edb469db44a4f4470'
+ '271818bf3a90d4db2b11774274ce8341'
+ '2c1587ad975ea8a1453ae1b4179a54dd'
+ 'ab94fe4f015323fdcf1e7d0bc497dc97'
+ '8de5dd1d7694b02fc764f0f4dc4bf0e3'
+ '85de3b6c6fae7c9aadee0d8d4467bbbd'
+ 'f166f87fea53e6cb8c0add26eaa08147'
+ '51364e2566389b2358946a28f5a79c3b'
+ '364a016be8de54b9f9d9109b06e2c1cc'
+ '11c63431c6c2fc26d623bc0a85658111'
+ '4ea0db3d79a36f8b5f7583373ae8b291'
+ '0b1450b7e92687254f2115a3a043bfa6'
+ 'a83760c7bb4c08d270dcb9cc037a5b33'
+ '450f01a510723ea3e0458a1f64a6f6dd'
+ '4756a82583c9cb094afe870a8ca18ea9'
+ 'eb46b8bc81c124c1363469afa903d09f'
+ 'd994ed816979cd9d4dc719a173119d21'
+ 'e2c5bf88ca392b5aefbd35abd0fa8e6c'
+ 'fdf231a46ec9815bdb0c353d022d6c15')
 
 build() {
   for _lang in "${_languages[@]}"; do


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

2015-09-03 Thread Antonio Rojas
Date: Thursday, September 3, 2015 @ 12:07:15
  Author: arojas
Revision: 245224

Update to 2.9.7

Modified:
  calligra/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-03 07:11:04 UTC (rev 245223)
+++ PKGBUILD2015-09-03 10:07:15 UTC (rev 245224)
@@ -20,8 +20,8 @@
  'calligra-sheets'
  'calligra-stage'
  'calligra-words')
-pkgver=2.9.6
-pkgrel=3
+pkgver=2.9.7
+pkgrel=1
 arch=('i686' 'x86_64')
 url='http://www.calligra-suite.org/'
 license=('FDL1.2' 'GPL2' 'LGPL')
@@ -32,7 +32,7 @@
  'libetonyek' 'libpqxx' 'libspnav' 'postgresql') # 'libqgit2'
 groups=('calligra')
 
source=("http://download.kde.org/stable/${pkgbase}-${pkgver}/${pkgbase}-${pkgver}.tar.xz;
 'libwps-0.4.patch')
-md5sums=('a576450e8c0ea63b7dff50681a236d61'
+md5sums=('d99288b1492cf9ae6a6f602b513b93e7'
  '6ea15f8b3938838d89ea0aa08921afd1')
 
 prepare() {


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

2015-09-03 Thread Antonio Rojas
Date: Thursday, September 3, 2015 @ 12:11:05
  Author: arojas
Revision: 245227

archrelease: copy trunk to extra-any

Added:
  calligra-l10n/repos/extra-any/PKGBUILD
(from rev 245226, calligra-l10n/trunk/PKGBUILD)
Deleted:
  calligra-l10n/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-09-03 10:08:53 UTC (rev 245226)
+++ PKGBUILD2015-09-03 10:11:05 UTC (rev 245227)
@@ -1,107 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgbase=calligra-l10n
-pkgver=2.9.6
-pkgrel=1
-pkgdesc="Localization for Calligra"
-arch=('any')
-url='http://www.calligra-suite.org/'
-license=('LGPL')
-makedepends=('cmake' 'automoc4' 'kdelibs')
-options=('docs')
-
-_languages=(
-  'bs "Bosnian"'
-  'ca "Catalan"'
-  'ca@valencia "Catalan (Valencian)"'
-  'cs "Czech"'
-  'da "Danish"'
-  'de "German"'
-  'el "Greek"'
-  'en_GB  "British English"'
-  'es "Spanish"'
-  'et "Estonian"'
-  'fi "Finnish"'
-  'fr "French"'
-  'gl "Galician"'
-  'hu "Hungarian"'
-  'it "Italian"'
-  'ja "Japanese"'
-  'kk "Kazakh"'
-  'nb "Norwegian Bokmal"'
-  'nl "Dutch"'
-  'pl "Polish"'
-  'pt "Portuguese"'
-  'pt_BR  "Brazilian Portuguese"'
-  'ru "Russian"'
-  'sk "Slovak"'
-  'sv "Swedish"'
-  'uk "Ukrainian"'
-  'zh_CN  "Chinese Simplified"'
-  'zh_TW  "Chinese Traditional"'
-)
-
-pkgname=()
-source=()
-
-for _lang in "${_languages[@]}"; do
-  _locale=${_lang%% *}
-  _pkgname=calligra-l10n-${_locale,,}
-  
-  pkgname+=($_pkgname)
-  
source+=("http://download.kde.org/stable/calligra-${pkgver}/${pkgbase}/${pkgbase}-$_locale-${pkgver}.tar.xz;)
-  eval "package_$_pkgname() {
-_package $_lang
-  }"
-done
-
-md5sums=('15d8651b6175d198f7a9f3e1c90ae8fd'
- '0befb2ddfc294427e8e35ffee290a956'
- 'fc15c2255d182eb869fc28a1603efa04'
- '58a1b0b2d524b270457096803f2bded5'
- '2a0583e77368e5feee5c6bed3c2de89f'
- '715a52f56c41b776acf870bcf0df3591'
- 'faf4f6e78684e57865106822148b8c3b'
- '28eec40b0065f056de5d44bc06c229c1'
- '7d8f994234911e475d81f667cca9dd4a'
- 'f39485124287adc007dab3642b57eb9a'
- '0eeab69fef10dae98c921c5ad127812c'
- '6491144954bcdb75c3438ebf47797220'
- '9e0c1531241f0774c70c9dcd0836abb8'
- 'cd48ca919ffb1ee0152325eec19f4706'
- '215fc821eac11759802c68c2b385f9b6'
- 'b8f729b6ebba19cb6a796513a21d6ba0'
- '6b40753e50a400200182250f056bee56'
- 'ef9c45f9dfb25307b5f2cbbd46975ab6'
- '41d4a7b398cd4fe1dd63cf898c997501'
- 'fbc4dbdce3a80d6ae5582c42272fcad6'
- 'a874dd9c4edb591a4f84fe00c120bab0'
- '446a54dfbb7b45712fc2b8981e127926'
- '14d76da4021541686dd5d793f70d9029'
- '1a915d0f6df72c8a1fde8e34d658b6e4'
- '51dbdd45beda57deae4b30f2b0d49fe4'
- '8c81a876eb06a89c93094b5d392f52c0'
- 'a4aa2f21f565eea3e31f84e9c2d9b8f9'
- '324cb2be2ba0b9e1e1aa69e3315da683')
-
-build() {
-  for _lang in "${_languages[@]}"; do
-_locale=${_lang%% *}
-
-mkdir -p build/$_locale
-cd build/$_locale
-cmake $srcdir/$pkgbase-$_locale-$pkgver \
-  -DCMAKE_BUILD_TYPE=Release \
-  -DCMAKE_INSTALL_PREFIX=/usr
-make
-cd ../..
-  done
-}
-
-_package() {
-  pkgdesc="$2 localization for Calligra"
-  cd build/$1
-  make DESTDIR="$pkgdir" install
-}

Copied: calligra-l10n/repos/extra-any/PKGBUILD (from rev 245226, 
calligra-l10n/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-09-03 10:11:05 UTC (rev 245227)
@@ -0,0 +1,107 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgbase=calligra-l10n
+pkgver=2.9.7
+pkgrel=1
+pkgdesc="Localization for Calligra"
+arch=('any')
+url='http://www.calligra-suite.org/'
+license=('LGPL')
+makedepends=('cmake' 'automoc4' 'kdelibs')
+options=('docs')
+
+_languages=(
+  'bs "Bosnian"'
+  'ca "Catalan"'
+  'ca@valencia "Catalan (Valencian)"'
+  'cs "Czech"'
+  'da "Danish"'
+  'de "German"'
+  'el "Greek"'
+  'en_GB  "British English"'
+  'es "Spanish"'
+  'et "Estonian"'
+  'fi "Finnish"'
+  'fr "French"'
+  'gl "Galician"'
+  'hu "Hungarian"'
+  'it "Italian"'
+  'ja "Japanese"'
+  'kk "Kazakh"'
+  'nb "Norwegian Bokmal"'
+  'nl "Dutch"'
+  'pl "Polish"'
+  'pt "Portuguese"'
+  'pt_BR  "Brazilian Portuguese"'
+  'ru "Russian"'
+  'sk "Slovak"'
+  'sv "Swedish"'
+  'uk "Ukrainian"'
+  'zh_CN  "Chinese Simplified"'
+  'zh_TW  "Chinese Traditional"'
+)
+

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

2015-09-03 Thread Antonio Rojas
Date: Thursday, September 3, 2015 @ 12:20:11
  Author: arojas
Revision: 139130

Add xdg-utils dependency (FS#46185)

Modified:
  owncloud-client/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-03 08:48:07 UTC (rev 139129)
+++ PKGBUILD2015-09-03 10:20:11 UTC (rev 139130)
@@ -10,7 +10,7 @@
 arch=(i686 x86_64)
 url='http://owncloud.org/'
 license=(GPL2)
-depends=(qtkeychain-qt5 qt5-webkit hicolor-icon-theme)
+depends=(qtkeychain-qt5 qt5-webkit hicolor-icon-theme xdg-utils)
 makedepends=(cmake python-sphinx qt5-tools doxygen)
 optdepends=('python2-nautilus: integration with Nautilus')
 install=$pkgname.install


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

2015-09-03 Thread Levente Polyak
Date: Thursday, September 3, 2015 @ 13:42:28
  Author: anthraxx
Revision: 139132

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-09-03 11:42:20 UTC (rev 139131)
+++ community-i686/PKGBUILD 2015-09-03 11:42:28 UTC (rev 139132)
@@ -1,32 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: spider-mario 
-
-pkgname=afl
-pkgver=1.89b
-pkgrel=1
-pkgdesc='Security-oriented fuzzer using compile-time instrumentation and 
genetic algorithms'
-arch=('i686' 'x86_64')
-url="http://lcamtuf.coredump.cx/afl/;
-license=('Apache')
-depends=('glibc' 'bash')
-optdepends=(
-  'gcc: gcc instrumentation support'
-  'clang: clang instrumentation support'
-)
-provides=('american-fuzzy-lop')
-replaces=('american-fuzzy-lop')
-options=('!emptydirs' '!strip')
-source=(${pkgname}-${pkgver}.tgz::http://lcamtuf.coredump.cx/${pkgname}/releases/${pkgname}-${pkgver}.tgz)
-sha512sums=('33ced2c68dd6a6bd9adc78e5b0ccd2615035c181ea6e77561717e024b6ea0022d1840932d866fd114c04baae174e827d5b07996fa903c108f30de5c87a379b75')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  make PREFIX=/usr
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make PREFIX=/usr DESTDIR="${pkgdir}" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: afl/repos/community-i686/PKGBUILD (from rev 139131, afl/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-09-03 11:42:28 UTC (rev 139132)
@@ -0,0 +1,32 @@
+# Maintainer: Levente Polyak 
+# Contributor: spider-mario 
+
+pkgname=afl
+pkgver=1.90b
+pkgrel=1
+pkgdesc='Security-oriented fuzzer using compile-time instrumentation and 
genetic algorithms'
+arch=('i686' 'x86_64')
+url="http://lcamtuf.coredump.cx/afl/;
+license=('Apache')
+depends=('glibc' 'bash')
+optdepends=(
+  'gcc: gcc instrumentation support'
+  'clang: clang instrumentation support'
+)
+provides=('american-fuzzy-lop')
+replaces=('american-fuzzy-lop')
+options=('!emptydirs' '!strip')
+source=(${pkgname}-${pkgver}.tgz::http://lcamtuf.coredump.cx/${pkgname}/releases/${pkgname}-${pkgver}.tgz)
+sha512sums=('eb78f1ab61af887179b1c49a7a2e67ab6a67c61eefe574492db488aaab5ee0dd0468761d08f7c37bccab3f09fd62cbc74283ab429e1fe3d11bcb60663a093b93')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  make PREFIX=/usr
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make PREFIX=/usr DESTDIR="${pkgdir}" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-09-03 11:42:20 UTC (rev 139131)
+++ community-x86_64/PKGBUILD   2015-09-03 11:42:28 UTC (rev 139132)
@@ -1,32 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: spider-mario 
-
-pkgname=afl
-pkgver=1.89b
-pkgrel=1
-pkgdesc='Security-oriented fuzzer using compile-time instrumentation and 
genetic algorithms'
-arch=('i686' 'x86_64')
-url="http://lcamtuf.coredump.cx/afl/;
-license=('Apache')
-depends=('glibc' 'bash')
-optdepends=(
-  'gcc: gcc instrumentation support'
-  'clang: clang instrumentation support'
-)
-provides=('american-fuzzy-lop')
-replaces=('american-fuzzy-lop')
-options=('!emptydirs' '!strip')
-source=(${pkgname}-${pkgver}.tgz::http://lcamtuf.coredump.cx/${pkgname}/releases/${pkgname}-${pkgver}.tgz)
-sha512sums=('33ced2c68dd6a6bd9adc78e5b0ccd2615035c181ea6e77561717e024b6ea0022d1840932d866fd114c04baae174e827d5b07996fa903c108f30de5c87a379b75')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  make PREFIX=/usr
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make PREFIX=/usr DESTDIR="${pkgdir}" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: afl/repos/community-x86_64/PKGBUILD (from rev 139131, 
afl/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-09-03 11:42:28 UTC (rev 139132)
@@ -0,0 +1,32 @@
+# Maintainer: Levente Polyak 
+# Contributor: spider-mario 
+
+pkgname=afl
+pkgver=1.90b
+pkgrel=1
+pkgdesc='Security-oriented fuzzer using compile-time instrumentation and 
genetic algorithms'

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

2015-09-03 Thread Levente Polyak
Date: Thursday, September 3, 2015 @ 13:42:20
  Author: anthraxx
Revision: 139131

upgpkg: afl 1.90b-1

upgpkg: afl 1.90b-1

Modified:
  afl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-03 10:20:11 UTC (rev 139130)
+++ PKGBUILD2015-09-03 11:42:20 UTC (rev 139131)
@@ -2,7 +2,7 @@
 # Contributor: spider-mario 
 
 pkgname=afl
-pkgver=1.89b
+pkgver=1.90b
 pkgrel=1
 pkgdesc='Security-oriented fuzzer using compile-time instrumentation and 
genetic algorithms'
 arch=('i686' 'x86_64')
@@ -17,7 +17,7 @@
 replaces=('american-fuzzy-lop')
 options=('!emptydirs' '!strip')
 
source=(${pkgname}-${pkgver}.tgz::http://lcamtuf.coredump.cx/${pkgname}/releases/${pkgname}-${pkgver}.tgz)
-sha512sums=('33ced2c68dd6a6bd9adc78e5b0ccd2615035c181ea6e77561717e024b6ea0022d1840932d866fd114c04baae174e827d5b07996fa903c108f30de5c87a379b75')
+sha512sums=('eb78f1ab61af887179b1c49a7a2e67ab6a67c61eefe574492db488aaab5ee0dd0468761d08f7c37bccab3f09fd62cbc74283ab429e1fe3d11bcb60663a093b93')
 
 build() {
   cd ${pkgname}-${pkgver}


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

2015-09-03 Thread Antonio Rojas
Date: Thursday, September 3, 2015 @ 14:04:21
  Author: arojas
Revision: 245228

Update dependencies, drop old koffice conflicts/replaces

Modified:
  calligra/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-03 10:11:05 UTC (rev 245227)
+++ PKGBUILD2015-09-03 12:04:21 UTC (rev 245228)
@@ -25,9 +25,9 @@
 arch=('i686' 'x86_64')
 url='http://www.calligra-suite.org/'
 license=('FDL1.2' 'GPL2' 'LGPL')
-makedepends=('cmake' 'automoc4' 'boost' 'kdepimlibs' 'eigen' 'libmarble4'
+makedepends=('cmake' 'automoc4' 'boost' 'kdepimlibs4' 'eigen' 'libmarble4'
  'lcms2' 'libmariadbclient' 'freetds' 'xbase' 'libwpg' 
'opencolorio'
- 'libwps' 'gsl' 'glew' 'fftw' 'poppler-qt' 'libkdcraw' 'libodfgen'
+ 'libwps' 'gsl' 'glew' 'fftw' 'poppler-qt4' 'libkdcraw' 'libodfgen'
  'openjpeg' 'kdegraphics-okular' 'pstoedit' 'vc' 'libvisio'
  'libetonyek' 'libpqxx' 'libspnav' 'postgresql') # 'libqgit2'
 groups=('calligra')
@@ -69,8 +69,6 @@
   'libwps: Microsoft Works file word processor format import'
   'libvisio: Microsoft Visio import filter'
   'libetonyek: Apple Keynote import filter')
-  conflicts=('koffice-filters')
-  replaces=('koffice-filters')
   install=calligra-filters.install
 
   cd build/filters
@@ -79,13 +77,9 @@
 
 package_calligra-libs() {
   pkgdesc="Libraries for the Calligra office suite"
-  depends=('kdepimlibs' 'kactivities' 'libkactivities4')
-  conflicts=('koffice-interfaces' 'koffice-libs' 'koffice-pics'
- 'koffice-servicetypes' 'calligra-interfaces'
- 'calligra-pics' 'calligra-servicetypes')
-  replaces=('koffice-interfaces' 'koffice-libs' 'koffice-pics'
- 'koffice-servicetypes' 'calligra-interfaces'
- 'calligra-pics' 'calligra-servicetypes')
+  depends=('kdepimlibs4' 'libkactivities4')
+  conflicts=('calligra-interfaces' 'calligra-pics' 'calligra-servicetypes')
+  replaces=('calligra-interfaces' 'calligra-pics' 'calligra-servicetypes')
 
   for d in interfaces libs pics servicetypes; do
 cd "${srcdir}"/build/${d}
@@ -97,8 +91,6 @@
   pkgdesc="Plugins for the Calligra office suite"
   depends=('calligra-libs' 'calligra-filters' 'libspnav')
   optdepends=('libmarble4: map shape for Calligra')
-  conflicts=('koffice-plugins' 'koffice-kchart')
-  replaces=('koffice-plugins' 'koffice-kchart' 'koffice-kformula')
   install=calligra-plugins.install
 
   cd build/plugins
@@ -113,8 +105,6 @@
   depends=('calligra-libs' 'kdebase-runtime' 'pstoedit')
   optdepends=('calligra-filters: import/export filters'
   'calligra-extras: extra calligra tools')
-  conflicts=('koffice-karbon' 'koffice-karbon-doc' 'calligra-karbon-doc')
-  replaces=('koffice-karbon' 'koffice-karbon-doc' 'calligra-karbon-doc')
   install=calligra-karbon.install
 
   cd build/karbon
@@ -131,8 +121,6 @@
   'calligra-sheets: Spreadsheet-to-Kexi-table import plugin'
   'libmarble4: map form widget'
   'calligra-plugins: extra calligra plugins')
-  conflicts=('koffice-kexi' 'koffice-kexi-doc' 'calligra-kexi-doc')
-  replaces=('koffice-kexi' 'koffice-kexi-doc' 'calligra-kexi-doc')
   install=calligra-kexi.install
 
   cd build/kexi
@@ -144,8 +132,6 @@
 package_calligra-plan() {
   pkgdesc="Calligra Project Management Component"
   depends=('calligra-words')
-  conflicts=('koffice-kplato' 'calligra-kplato')
-  replaces=('koffice-kplato' 'calligra-kplato')
   install=calligra-plan.install
 
   cd build/plan
@@ -158,8 +144,6 @@
 package_calligra-stage() {
   pkgdesc="Write presentation documents"
   depends=('calligra-plugins' 'kdebase-runtime')
-  conflicts=('koffice-kpresenter' 'koffice-kpresenter-doc' 
'calligra-stage-doc')
-  replaces=('koffice-kpresenter' 'koffice-kpresenter-doc' 'calligra-stage-doc')
   install=calligra-stage.install
 
   cd build/stage
@@ -172,8 +156,6 @@
   pkgdesc="Edit and paint images"
   depends=('calligra-plugins' 'kdebase-runtime' 'opencolorio' 'libkdcraw'
'fftw' 'glew' 'curl' 'gsl')
-  conflicts=('koffice-krita' 'calligra-krita-doc')
-  replaces=('koffice-krita' 'calligra-krita-doc')
   install=calligra-krita.install
 
   cd build/krita
@@ -186,8 +168,6 @@
   optdepends=('calligra-filters: import/export filters'
   'calligra-plugins: extra calligra plugins'
   'calligra-extras: extra calligra tools')
-  conflicts=('koffice-kspread' 'koffice-kspread-doc' 'calligra-tables-doc' 
'calligra-tables')
-  replaces=('koffice-kspread' 'koffice-kspread-doc' 'calligra-tables-doc' 
'calligra-tables')
   install=calligra-sheets.install
 
   cd build/sheets
@@ -200,8 +180,6 @@
   pkgdesc="Word Processor"
   depends=('kdebase-runtime' 'calligra-plugins')
   optdepends=('calligra-extras: extra calligra tools')
- 

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

2015-09-03 Thread Anatol Pomozov
Date: Friday, September 4, 2015 @ 01:32:18
  Author: anatolik
Revision: 139175

pamixer: move from AUR

Added:
  pamixer/
  pamixer/repos/
  pamixer/trunk/
  pamixer/trunk/PKGBUILD

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

Added: pamixer/trunk/PKGBUILD
===
--- pamixer/trunk/PKGBUILD  (rev 0)
+++ pamixer/trunk/PKGBUILD  2015-09-03 23:32:18 UTC (rev 139175)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Anatol Pomozov
+# Contributor: Clément Démoulins 
+
+pkgname=pamixer
+pkgver=1.3
+pkgrel=3
+pkgdesc='Pulseaudio command-line mixer like amixer'
+arch=(i686 x86_64)
+url='https://github.com/cdemoulins/pamixer'
+license=(GPL3)
+depends=(libpulse boost-libs)
+makedepends=(boost)
+source=(pamixer-$pkgver.tar.gz::https://github.com/cdemoulins/$pkgname/archive/$pkgver.tar.gz)
+sha1sums=('ceb4e609a9cf3521040d52313c194757f30526c1')
+
+build() {
+  cd pamixer-$pkgver
+  make
+}
+
+package() {
+  cd pamixer-$pkgver
+  install -D -m755 pamixer "$pkgdir"/usr/bin/pamixer
+}


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


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

2015-09-03 Thread Anatol Pomozov
Date: Friday, September 4, 2015 @ 01:37:15
  Author: anatolik
Revision: 139176

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

Added:
  pamixer/repos/community-i686/
  pamixer/repos/community-i686/PKGBUILD
(from rev 139175, pamixer/trunk/PKGBUILD)
  pamixer/repos/community-x86_64/
  pamixer/repos/community-x86_64/PKGBUILD
(from rev 139175, pamixer/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   25 +
 community-x86_64/PKGBUILD |   25 +
 2 files changed, 50 insertions(+)

Copied: pamixer/repos/community-i686/PKGBUILD (from rev 139175, 
pamixer/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-09-03 23:37:15 UTC (rev 139176)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Anatol Pomozov
+# Contributor: Clément Démoulins 
+
+pkgname=pamixer
+pkgver=1.3
+pkgrel=3
+pkgdesc='Pulseaudio command-line mixer like amixer'
+arch=(i686 x86_64)
+url='https://github.com/cdemoulins/pamixer'
+license=(GPL3)
+depends=(libpulse boost-libs)
+makedepends=(boost)
+source=(pamixer-$pkgver.tar.gz::https://github.com/cdemoulins/$pkgname/archive/$pkgver.tar.gz)
+sha1sums=('ceb4e609a9cf3521040d52313c194757f30526c1')
+
+build() {
+  cd pamixer-$pkgver
+  make
+}
+
+package() {
+  cd pamixer-$pkgver
+  install -D -m755 pamixer "$pkgdir"/usr/bin/pamixer
+}

Copied: pamixer/repos/community-x86_64/PKGBUILD (from rev 139175, 
pamixer/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-09-03 23:37:15 UTC (rev 139176)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Anatol Pomozov
+# Contributor: Clément Démoulins 
+
+pkgname=pamixer
+pkgver=1.3
+pkgrel=3
+pkgdesc='Pulseaudio command-line mixer like amixer'
+arch=(i686 x86_64)
+url='https://github.com/cdemoulins/pamixer'
+license=(GPL3)
+depends=(libpulse boost-libs)
+makedepends=(boost)
+source=(pamixer-$pkgver.tar.gz::https://github.com/cdemoulins/$pkgname/archive/$pkgver.tar.gz)
+sha1sums=('ceb4e609a9cf3521040d52313c194757f30526c1')
+
+build() {
+  cd pamixer-$pkgver
+  make
+}
+
+package() {
+  cd pamixer-$pkgver
+  install -D -m755 pamixer "$pkgdir"/usr/bin/pamixer
+}


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

2015-09-03 Thread Felix Yan
Date: Friday, September 4, 2015 @ 05:44:15
  Author: fyan
Revision: 139180

upgpkg: npm 2.14.2-1

Modified:
  npm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-04 03:19:39 UTC (rev 139179)
+++ PKGBUILD2015-09-04 03:44:15 UTC (rev 139180)
@@ -2,7 +2,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=npm
-pkgver=2.14.1
+pkgver=2.14.2
 pkgrel=1
 pkgdesc='A package manager for javascript'
 arch=('any')


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

2015-09-03 Thread Felix Yan
Date: Friday, September 4, 2015 @ 05:44:30
  Author: fyan
Revision: 139181

archrelease: copy trunk to community-any

Added:
  npm/repos/community-any/PKGBUILD
(from rev 139180, npm/trunk/PKGBUILD)
Deleted:
  npm/repos/community-any/PKGBUILD

--+
 PKGBUILD |   94 ++---
 1 file changed, 47 insertions(+), 47 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-09-04 03:44:15 UTC (rev 139180)
+++ PKGBUILD2015-09-04 03:44:30 UTC (rev 139181)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=npm
-pkgver=2.14.1
-pkgrel=1
-pkgdesc='A package manager for javascript'
-arch=('any')
-url='https://www.npmjs.com/'
-license=('custom:Artistic')
-depends=('nodejs')
-provides=('nodejs-node-gyp')
-makedepends=('git' 'procps-ng')
-optdepends=('python2: for node-gyp')
-options=('!emptydirs')
-source=("git+https://github.com/npm/npm.git#tag=v$pkgver;)
-md5sums=('SKIP')
-
-build() {
-  cd npm
-  make
-}
-
-package() {
-  cd npm
-  make NPMOPTS="--prefix=\"$pkgdir/usr\"" install
-
-  # Why 777? :/
-  chmod -R u=rwX,go=rX "$pkgdir"
-  
-  # Fix files owned by nobody:
-  chown -R root "$pkgdir/usr/lib/node_modules" 
-
-  # Fix wrong symlinks
-  for _dir in man1 man3 man5 man7; do
-rm -f "$pkgdir"/usr/share/man/$_dir/*
-cd "$pkgdir"/usr/lib/node_modules/npm/man/$_dir
-for _file in *; do
-  ln -s /usr/lib/node_modules/npm/man/$_dir/$_file 
"$pkgdir"/usr/share/man/$_dir/
-done
-  done
-  
-  # Make symlink for node-gyp
-  ln -s /usr/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js 
"$pkgdir"/usr/bin/node-gyp
-  
-  install -Dm644 "$srcdir/npm/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: npm/repos/community-any/PKGBUILD (from rev 139180, npm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-09-04 03:44:30 UTC (rev 139181)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=npm
+pkgver=2.14.2
+pkgrel=1
+pkgdesc='A package manager for javascript'
+arch=('any')
+url='https://www.npmjs.com/'
+license=('custom:Artistic')
+depends=('nodejs')
+provides=('nodejs-node-gyp')
+makedepends=('git' 'procps-ng')
+optdepends=('python2: for node-gyp')
+options=('!emptydirs')
+source=("git+https://github.com/npm/npm.git#tag=v$pkgver;)
+md5sums=('SKIP')
+
+build() {
+  cd npm
+  make
+}
+
+package() {
+  cd npm
+  make NPMOPTS="--prefix=\"$pkgdir/usr\"" install
+
+  # Why 777? :/
+  chmod -R u=rwX,go=rX "$pkgdir"
+  
+  # Fix files owned by nobody:
+  chown -R root "$pkgdir/usr/lib/node_modules" 
+
+  # Fix wrong symlinks
+  for _dir in man1 man3 man5 man7; do
+rm -f "$pkgdir"/usr/share/man/$_dir/*
+cd "$pkgdir"/usr/lib/node_modules/npm/man/$_dir
+for _file in *; do
+  ln -s /usr/lib/node_modules/npm/man/$_dir/$_file 
"$pkgdir"/usr/share/man/$_dir/
+done
+  done
+  
+  # Make symlink for node-gyp
+  ln -s /usr/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js 
"$pkgdir"/usr/bin/node-gyp
+  
+  install -Dm644 "$srcdir/npm/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


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

2015-09-03 Thread Felix Yan
Date: Friday, September 4, 2015 @ 05:45:15
  Author: fyan
Revision: 245253

upgpkg: nvidia-340xx-utils 340.93-1

upstream new version

Modified:
  nvidia-340xx-utils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-03 19:25:06 UTC (rev 245252)
+++ PKGBUILD2015-09-04 03:45:15 UTC (rev 245253)
@@ -2,10 +2,11 @@
 # Maintainer: Sven-Hendrik Haase 
 # Maintainer: Thomas Baechler 
 # Contributor: James Rayner 
+
 pkgbase=nvidia-340xx-utils
 pkgname=('nvidia-340xx-utils' 'nvidia-340xx-libgl' 'opencl-nvidia-340xx')
-pkgver=340.76
-pkgrel=2
+pkgver=340.93
+pkgrel=1
 arch=('i686' 'x86_64')
 url="http://www.nvidia.com/;
 license=('custom')
@@ -12,8 +13,8 @@
 options=('!strip')
 
source=("ftp://download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run;
 
"ftp://download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;)
-sha1sums=('1335af174324f5c752388110e65c3c51beea729b'
-  '2df59750d9fdeed613e84379108fb2bec67afd14')
+sha1sums=('650564caa2937c8306cfdcfb6c97b1e206fdffb3'
+  '05ef4b8b01aa532d89cef309f268ae1c7beffdc0')
 
 [[ "$CARCH" = "i686" ]] && _pkg="NVIDIA-Linux-x86-${pkgver}"
 [[ "$CARCH" = "x86_64" ]] && _pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"


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

2015-09-03 Thread Felix Yan
Date: Friday, September 4, 2015 @ 05:45:53
  Author: fyan
Revision: 245254

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

Added:
  nvidia-340xx-utils/repos/staging-i686/
  nvidia-340xx-utils/repos/staging-i686/PKGBUILD
(from rev 245253, nvidia-340xx-utils/trunk/PKGBUILD)
  nvidia-340xx-utils/repos/staging-i686/nvidia-340xx-utils.install
(from rev 245253, nvidia-340xx-utils/trunk/nvidia-340xx-utils.install)
  nvidia-340xx-utils/repos/staging-x86_64/
  nvidia-340xx-utils/repos/staging-x86_64/PKGBUILD
(from rev 245253, nvidia-340xx-utils/trunk/PKGBUILD)
  nvidia-340xx-utils/repos/staging-x86_64/nvidia-340xx-utils.install
(from rev 245253, nvidia-340xx-utils/trunk/nvidia-340xx-utils.install)

---+
 staging-i686/PKGBUILD |  184 
 staging-i686/nvidia-340xx-utils.install   |   10 +
 staging-x86_64/PKGBUILD   |  184 
 staging-x86_64/nvidia-340xx-utils.install |   10 +
 4 files changed, 388 insertions(+)

Copied: nvidia-340xx-utils/repos/staging-i686/PKGBUILD (from rev 245253, 
nvidia-340xx-utils/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-09-04 03:45:53 UTC (rev 245254)
@@ -0,0 +1,184 @@
+# $Id: PKGBUILD 219666 2014-08-13 13:28:24Z svenstaro $
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Thomas Baechler 
+# Contributor: James Rayner 
+
+pkgbase=nvidia-340xx-utils
+pkgname=('nvidia-340xx-utils' 'nvidia-340xx-libgl' 'opencl-nvidia-340xx')
+pkgver=340.93
+pkgrel=1
+arch=('i686' 'x86_64')
+url="http://www.nvidia.com/;
+license=('custom')
+options=('!strip')
+source=("ftp://download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run;
+
"ftp://download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;)
+sha1sums=('650564caa2937c8306cfdcfb6c97b1e206fdffb3'
+  '05ef4b8b01aa532d89cef309f268ae1c7beffdc0')
+
+[[ "$CARCH" = "i686" ]] && _pkg="NVIDIA-Linux-x86-${pkgver}"
+[[ "$CARCH" = "x86_64" ]] && _pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
+
+create_links() {
+# create soname links
+for _lib in $(find "${pkgdir}" -name '*.so*' | grep -v 'xorg/'); do
+_soname=$(dirname "${_lib}")/$(readelf -d "${_lib}" | grep -Po 
'SONAME.*: \[\K[^]]*' || true)
+_base=$(echo ${_soname} | sed -r 's/(.*).so.*/\1.so/')
+[[ -e "${_soname}" ]] || ln -s $(basename "${_lib}") "${_soname}"
+[[ -e "${_base}" ]] || ln -s $(basename "${_soname}") "${_base}"
+done
+}
+
+prepare() {
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}"
+bsdtar -xf nvidia-persistenced-init.tar.bz2
+}
+
+package_opencl-nvidia-340xx() {
+pkgdesc="OpenCL implemention for NVIDIA"
+depends=('libcl' 'zlib')
+optdepends=('opencl-headers: headers necessary for OpenCL development')
+conflicts=('opencl-nvidia')
+provides=('opencl-nvidia')
+cd "${_pkg}"
+
+# OpenCL
+install -D -m644 nvidia.icd "${pkgdir}/etc/OpenCL/vendors/nvidia.icd"
+install -D -m755 "libnvidia-compiler.so.${pkgver}" 
"${pkgdir}/usr/lib/libnvidia-compiler.so.${pkgver}"
+install -D -m755 "libnvidia-opencl.so.${pkgver}" 
"${pkgdir}/usr/lib/libnvidia-opencl.so.${pkgver}" 
+
+create_links
+
+mkdir -p "${pkgdir}/usr/share/licenses"
+ln -s nvidia "${pkgdir}/usr/share/licenses/opencl-nvidia"
+}
+
+package_nvidia-340xx-libgl() {
+pkgdesc="NVIDIA drivers libraries symlinks"
+depends=('nvidia-340xx-utils')
+conflicts=('libgl' 'nvidia-libgl')
+provides=('libgl' 'nvidia-libgl')
+cd "${_pkg}"
+
+mkdir -p "${pkgdir}/usr/lib/xorg/modules/extensions"
+ln -s "/usr/lib/nvidia/xorg/modules/extensions/libglx.so.${pkgver}" 
"${pkgdir}/usr/lib/xorg/modules/extensions/libglx.so.${pkgver}"
+ln -s "libglx.so.${pkgver}" 
"${pkgdir}/usr/lib/xorg/modules/extensions/libglx.so.1"
+ln -s "libglx.so.${pkgver}" 
"${pkgdir}/usr/lib/xorg/modules/extensions/libglx.so"
+
+ln -s "/usr/lib/nvidia/libGL.so.${pkgver}" 
"${pkgdir}/usr/lib/libGL.so.${pkgver}"
+ln -s "libGL.so.${pkgver}" "${pkgdir}/usr/lib/libGL.so.1"
+ln -s "libGL.so.${pkgver}" "${pkgdir}/usr/lib/libGL.so"
+
+ln -s "/usr/lib/nvidia/libEGL.so.${pkgver}" 
"${pkgdir}/usr/lib/libEGL.so.${pkgver}"
+ln -s "libEGL.so.${pkgver}" "${pkgdir}/usr/lib/libEGL.so.1"
+ln -s "libEGL.so.${pkgver}" "${pkgdir}/usr/lib/libEGL.so"
+
+ln -s "/usr/lib/nvidia/libGLESv1_CM.so.${pkgver}" 
"${pkgdir}/usr/lib/libGLESv1_CM.so.${pkgver}"
+ln -s "libGLESv1_CM.so.${pkgver}" "${pkgdir}/usr/lib/libGLESv1_CM.so.1"
+ln -s "libGLESv1_CM.so.${pkgver}" "${pkgdir}/usr/lib/libGLESv1_CM.so"
+
+ln -s "/usr/lib/nvidia/libGLESv2.so.${pkgver}" 
"${pkgdir}/usr/lib/libGLESv2.so.${pkgver}"
+ln -s 

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

2015-09-03 Thread Anatol Pomozov
Date: Friday, September 4, 2015 @ 06:11:12
  Author: anatolik
Revision: 139182

upgpkg: tt-rss 1:r7810-1

Use standard Arch config semantic for config.php

Modified:
  tt-rss/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-04 03:44:30 UTC (rev 139181)
+++ PKGBUILD2015-09-04 04:11:12 UTC (rev 139182)
@@ -5,8 +5,8 @@
 # Contributor: Erik Mank 
 
 pkgname=tt-rss
-pkgver=r7807
-pkgrel=2
+pkgver=r7810
+pkgrel=1
 epoch=1
 pkgdesc='Web-based news feed (RSS/Atom) aggregator'
 arch=(any)
@@ -18,7 +18,7 @@
 'postgresql'
 'php-gd: for coloured feed badges')
 makedepends=('git')
-_commit=2606a4e3aec72d8d0d8e5170c9ee2dfea25b9111
+_commit=b717c65e4e1b636370cf1a9df613a46e272d6f6d
 # periodic releases are over https://tt-rss.org/forum/viewtopic.php?f=10=3262
 source=(git+https://tt-rss.org/git/tt-rss.git#commit=$_commit
 service)


[arch-commits] Commit in tt-rss/repos/community-any (5 files)

2015-09-03 Thread Anatol Pomozov
Date: Friday, September 4, 2015 @ 06:12:37
  Author: anatolik
Revision: 139183

archrelease: copy trunk to community-any

Added:
  tt-rss/repos/community-any/PKGBUILD
(from rev 139182, tt-rss/trunk/PKGBUILD)
  tt-rss/repos/community-any/service
(from rev 139182, tt-rss/trunk/service)
Deleted:
  tt-rss/repos/community-any/PKGBUILD
  tt-rss/repos/community-any/service
  tt-rss/repos/community-any/tt-rss.install

+
 PKGBUILD   |  105 +++
 service|   24 ++--
 tt-rss.install |3 -
 3 files changed, 64 insertions(+), 68 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-09-04 04:11:12 UTC (rev 139182)
+++ PKGBUILD2015-09-04 04:12:37 UTC (rev 139183)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski 
-# Contributor: Clément Démoulins 
-# Contributor: David Rosenstrauch 
-# Contributor: Erik Mank 
-
-pkgname=tt-rss
-pkgver=1.15.3.r257
-pkgrel=1
-pkgdesc='Web-based news feed (RSS/Atom) aggregator'
-arch=('any')
-url='http://tt-rss.org/redmine/'
-license=('GPL')
-depends=('php')
-optdepends=('mysql'
-'postgresql'
-'php-gd: for coloured feed badges')
-makedepends=('git')
-install=tt-rss.install
-_commit=2caeb0f875d78aee4aa55
-# periodic releases are over https://tt-rss.org/forum/viewtopic.php?f=10=3262
-source=(git://github.com/gothfox/Tiny-Tiny-RSS#commit=$_commit
-service)
-md5sums=('SKIP'
- 'cb9900413dd53d44a5ed1116c962dbcb')
-
-pkgver() {
-  cd Tiny-Tiny-RSS
-  git describe --tags | sed 's/\([^-]*\)-g.*/r\1/;s/-/./g'
-}
-
-package() {
-  cd Tiny-Tiny-RSS
-  _instdir="$pkgdir"/usr/share/webapps/$pkgname
-
-  install -d "$_instdir"
-  cp -ra * "$_instdir/"
-  rm -rf "$_instdir"/debian
-
-  install -d "$pkgdir"/etc/webapps/tt-rss
-  install -gm640 -g http config.php-dist 
"$pkgdir"/etc/webapps/tt-rss/config.php-dist
-  ln -s /etc/webapps/tt-rss/config.php "$_instdir"/config.php
-
-  install -d "$pkgdir"/var/lib/tt-rss
-  mv "$_instdir"/{lock,feed-icons,cache} "$pkgdir"/var/lib/tt-rss
-  ln -s /var/lib/tt-rss/lock "$_instdir"/lock
-  ln -s /var/lib/tt-rss/feed-icons "$_instdir"/feed-icons
-  ln -s /var/lib/tt-rss/cache "$_instdir"/cache
-  chown -R 33:33 "$pkgdir"/var/lib/tt-rss
-  chmod -R 777 "$pkgdir"/var/lib/tt-rss/*
-
-  install -Dm644 "$srcdir"/service 
"$pkgdir"/usr/lib/systemd/system/tt-rss.service
-}

Copied: tt-rss/repos/community-any/PKGBUILD (from rev 139182, 
tt-rss/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-09-04 04:12:37 UTC (rev 139183)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Clément Démoulins 
+# Contributor: David Rosenstrauch 
+# Contributor: Erik Mank 
+
+pkgname=tt-rss
+pkgver=r7810
+pkgrel=1
+epoch=1
+pkgdesc='Web-based news feed (RSS/Atom) aggregator'
+arch=(any)
+url='http://tt-rss.org'
+license=(GPL)
+backup=(etc/webapps/tt-rss/config.php)
+depends=(php)
+optdepends=('mysql'
+'postgresql'
+'php-gd: for coloured feed badges')
+makedepends=('git')
+_commit=b717c65e4e1b636370cf1a9df613a46e272d6f6d
+# periodic releases are over https://tt-rss.org/forum/viewtopic.php?f=10=3262
+source=(git+https://tt-rss.org/git/tt-rss.git#commit=$_commit
+service)
+sha1sums=('SKIP'
+  'e3277cd1d717e7803cdc41a0275dcc7c188ef8db')
+
+pkgver() {
+  cd tt-rss
+  echo r$(git rev-list --count HEAD)
+}
+
+package() {
+  cd tt-rss
+  _instdir="$pkgdir"/usr/share/webapps/$pkgname
+
+  install -d "$_instdir"
+  cp -ra * "$_instdir/"
+
+  install -Dm640 -g http config.php-dist 
"$pkgdir"/etc/webapps/tt-rss/config.php
+  ln -s /etc/webapps/tt-rss/config.php "$_instdir"/config.php
+
+  install -d "$pkgdir"/var/lib/tt-rss
+  mv "$_instdir"/{lock,feed-icons,cache} "$pkgdir"/var/lib/tt-rss
+  ln -s /var/lib/tt-rss/lock "$_instdir"/lock
+  ln -s /var/lib/tt-rss/feed-icons "$_instdir"/feed-icons
+  ln -s /var/lib/tt-rss/cache "$_instdir"/cache
+  chown -R 33:33 "$pkgdir"/var/lib/tt-rss
+  chmod -R 777 "$pkgdir"/var/lib/tt-rss/*
+
+  install -Dm644 "$srcdir"/service 
"$pkgdir"/usr/lib/systemd/system/tt-rss.service
+}

Deleted: service
===
--- service 2015-09-04 04:11:12 UTC (rev 139182)
+++ service 2015-09-04 04:12:37 UTC (rev 139183)
@@ -1,12 +0,0 @@
-[Unit]
-Description=Tiny Tiny RSS feeds update daemon
-After=network.target mysqld.service postgresql.service
-
-[Service]
-ExecStart=/usr/bin/php /usr/share/webapps/tt-rss/update.php --daemon
-User=http
-StandardOutput=null
-StandardError=syslog
-
-[Install]
-WantedBy=multi-user.target

Copied: 

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

2015-09-03 Thread Tobias Powalowski
Date: Friday, September 4, 2015 @ 07:00:48
  Author: tpowa
Revision: 139185

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-09-04 04:25:43 UTC (rev 139184)
+++ community-i686/PKGBUILD 2015-09-04 05:00:48 UTC (rev 139185)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=gpac
-pkgver=0.5.2
-pkgrel=1
-epoch=1
-pkgdesc="A multimedia framework based on the MPEG-4 Systems standard"
-arch=('i686' 'x86_64')
-url="http://gpac.sourceforge.net;
-license=('LGPL')
-depends=('ffmpeg' 'glu' 'libxv')
-makedepends=('git' 'jack' 'a52dec' 'freetype2' 'faad2' 'libmad' 'mesa' 'sdl2')
-optdepends=('jack: for jack support'
-   'a52dec: for A52 support'
-'faad2: for AAC support'
-   'libmad: for mp3 support'
-   'sdl2: for sdl support')
-options=('staticlibs' '!makeflags')
-source=(git://github.com/gpac/gpac.git)
-sha1sums=('SKIP')
-
-build() {
-  cd ${pkgname}
-  ./configure --prefix=/usr --mandir=/usr/share/man --X11-path=/usr --use-js=no
-  make
-}
-
-package() {
-  cd ${pkgname}
-  make DESTDIR="${pkgdir}" install install-lib
-}

Copied: gpac/repos/community-i686/PKGBUILD (from rev 139184, 
gpac/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-09-04 05:00:48 UTC (rev 139185)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=gpac
+pkgver=0.5.2
+pkgrel=2
+epoch=1
+pkgdesc="A multimedia framework based on the MPEG-4 Systems standard"
+arch=('i686' 'x86_64')
+url="http://gpac.sourceforge.net;
+license=('LGPL')
+depends=('ffmpeg' 'glu' 'libxv')
+makedepends=('git' 'jack' 'a52dec' 'freetype2' 'faad2' 'libmad' 'mesa' 'sdl2')
+optdepends=('jack: for jack support'
+   'a52dec: for A52 support'
+'faad2: for AAC support'
+   'libmad: for mp3 support'
+   'sdl2: for sdl support')
+options=('staticlibs' '!makeflags')
+source=(git://github.com/gpac/gpac.git)
+sha1sums=('SKIP')
+
+build() {
+  cd ${pkgname}
+  ./configure --prefix=/usr --mandir=/usr/share/man --X11-path=/usr --use-js=no
+  make
+}
+
+package() {
+  cd ${pkgname}
+  make DESTDIR="${pkgdir}" install install-lib
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-09-04 04:25:43 UTC (rev 139184)
+++ community-x86_64/PKGBUILD   2015-09-04 05:00:48 UTC (rev 139185)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=gpac
-pkgver=0.5.2
-pkgrel=2
-epoch=1
-pkgdesc="A multimedia framework based on the MPEG-4 Systems standard"
-arch=('i686' 'x86_64')
-url="http://gpac.sourceforge.net;
-license=('LGPL')
-depends=('ffmpeg' 'glu' 'libxv')
-makedepends=('git' 'jack' 'a52dec' 'freetype2' 'faad2' 'libmad' 'mesa' 'sdl2')
-optdepends=('jack: for jack support'
-   'a52dec: for A52 support'
-'faad2: for AAC support'
-   'libmad: for mp3 support'
-   'sdl2: for sdl support')
-options=('staticlibs' '!makeflags')
-source=(git://github.com/gpac/gpac.git)
-sha1sums=('SKIP')
-
-build() {
-  cd ${pkgname}
-  ./configure --prefix=/usr --mandir=/usr/share/man --X11-path=/usr --use-js=no
-  make
-}
-
-package() {
-  cd ${pkgname}
-  make DESTDIR="${pkgdir}" install install-lib
-}

Copied: gpac/repos/community-x86_64/PKGBUILD (from rev 139184, 
gpac/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-09-04 05:00:48 UTC (rev 139185)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=gpac
+pkgver=0.5.2
+pkgrel=2
+epoch=1
+pkgdesc="A multimedia framework based on the MPEG-4 Systems standard"
+arch=('i686' 'x86_64')
+url="http://gpac.sourceforge.net;
+license=('LGPL')
+depends=('ffmpeg' 'glu' 'libxv')
+makedepends=('git' 'jack' 'a52dec' 'freetype2' 'faad2' 'libmad' 'mesa' 'sdl2')
+optdepends=('jack: for jack support'
+   'a52dec: for A52 support'
+'faad2: for AAC support'
+   'libmad: for mp3 support'
+   'sdl2: for sdl support')
+options=('staticlibs' '!makeflags')

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

2015-09-03 Thread Felix Yan
Date: Friday, September 4, 2015 @ 05:17:52
  Author: fyan
Revision: 139178

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

Added:
  kcm-fcitx/repos/community-i686/PKGBUILD
(from rev 139177, kcm-fcitx/trunk/PKGBUILD)
  kcm-fcitx/repos/community-x86_64/PKGBUILD
(from rev 139177, kcm-fcitx/trunk/PKGBUILD)
Deleted:
  kcm-fcitx/repos/community-i686/PKGBUILD
  kcm-fcitx/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-09-04 03:17:25 UTC (rev 139177)
+++ community-i686/PKGBUILD 2015-09-04 03:17:52 UTC (rev 139178)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: poplarch 
-
-pkgname=kcm-fcitx
-pkgver=0.5.0
-pkgrel=1
-pkgdesc="KDE Config Module for Fcitx"
-arch=('i686' 'x86_64')
-url="https://github.com/fcitx/kcm-fcitx;
-license=('GPL')
-depends=('fcitx-qt5' 'knewstuff' 'kcmutils')
-makedepends=('extra-cmake-modules')
-source=("http://download.fcitx-im.org/$pkgname/$pkgname-${pkgver}.tar.xz;)
-sha512sums=('219b962c4b6f1763b389dc20d22a671d960a884f5c3f0faddbd4919b61dd6d93e600cbf440b15bc42f63cb383ed5ca65e657fa835c520196c8bd9d64a160baa3')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kcm-fcitx/repos/community-i686/PKGBUILD (from rev 139177, 
kcm-fcitx/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-09-04 03:17:52 UTC (rev 139178)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: poplarch 
+
+pkgname=kcm-fcitx
+pkgver=0.5.1
+pkgrel=1
+pkgdesc="KDE Config Module for Fcitx"
+arch=('i686' 'x86_64')
+url="https://github.com/fcitx/kcm-fcitx;
+license=('GPL')
+depends=('fcitx-qt5' 'knewstuff' 'kcmutils')
+makedepends=('extra-cmake-modules')
+source=("http://download.fcitx-im.org/$pkgname/$pkgname-${pkgver}.tar.xz;)
+sha512sums=('66145f4d77209803e09fb28182f62a40d3c92f38ad3b8acda93c5799aeed11327e4ff061a42be0e77cc45ba684e87fed652725ded2481702dfa3a1bbe214dfc6')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-09-04 03:17:25 UTC (rev 139177)
+++ community-x86_64/PKGBUILD   2015-09-04 03:17:52 UTC (rev 139178)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: poplarch 
-
-pkgname=kcm-fcitx
-pkgver=0.5.0
-pkgrel=1
-pkgdesc="KDE Config Module for Fcitx"
-arch=('i686' 'x86_64')
-url="https://github.com/fcitx/kcm-fcitx;
-license=('GPL')
-depends=('fcitx-qt5' 'knewstuff' 'kcmutils')
-makedepends=('extra-cmake-modules')
-source=("http://download.fcitx-im.org/$pkgname/$pkgname-${pkgver}.tar.xz;)
-sha512sums=('219b962c4b6f1763b389dc20d22a671d960a884f5c3f0faddbd4919b61dd6d93e600cbf440b15bc42f63cb383ed5ca65e657fa835c520196c8bd9d64a160baa3')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_LIBDIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kcm-fcitx/repos/community-x86_64/PKGBUILD (from rev 139177, 
kcm-fcitx/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-09-04 03:17:52 UTC (rev 139178)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: poplarch 
+
+pkgname=kcm-fcitx
+pkgver=0.5.1
+pkgrel=1
+pkgdesc="KDE Config Module for Fcitx"
+arch=('i686' 'x86_64')
+url="https://github.com/fcitx/kcm-fcitx;
+license=('GPL')
+depends=('fcitx-qt5' 'knewstuff' 'kcmutils')
+makedepends=('extra-cmake-modules')
+source=("http://download.fcitx-im.org/$pkgname/$pkgname-${pkgver}.tar.xz;)

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

2015-09-03 Thread Tobias Powalowski
Date: Friday, September 4, 2015 @ 07:07:54
  Author: tpowa
Revision: 139186

upgpkg: gpac 1:0.5.2-3

bump to latest version, fixes conversion hangs

Modified:
  gpac/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-04 05:00:48 UTC (rev 139185)
+++ PKGBUILD2015-09-04 05:07:54 UTC (rev 139186)
@@ -3,7 +3,7 @@
 
 pkgname=gpac
 pkgver=0.5.2
-pkgrel=2
+pkgrel=3
 epoch=1
 pkgdesc="A multimedia framework based on the MPEG-4 Systems standard"
 arch=('i686' 'x86_64')


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

2015-09-03 Thread Tobias Powalowski
Date: Friday, September 4, 2015 @ 07:08:02
  Author: tpowa
Revision: 139187

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-09-04 05:07:54 UTC (rev 139186)
+++ community-i686/PKGBUILD 2015-09-04 05:08:02 UTC (rev 139187)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=gpac
-pkgver=0.5.2
-pkgrel=2
-epoch=1
-pkgdesc="A multimedia framework based on the MPEG-4 Systems standard"
-arch=('i686' 'x86_64')
-url="http://gpac.sourceforge.net;
-license=('LGPL')
-depends=('ffmpeg' 'glu' 'libxv')
-makedepends=('git' 'jack' 'a52dec' 'freetype2' 'faad2' 'libmad' 'mesa' 'sdl2')
-optdepends=('jack: for jack support'
-   'a52dec: for A52 support'
-'faad2: for AAC support'
-   'libmad: for mp3 support'
-   'sdl2: for sdl support')
-options=('staticlibs' '!makeflags')
-source=(git://github.com/gpac/gpac.git)
-sha1sums=('SKIP')
-
-build() {
-  cd ${pkgname}
-  ./configure --prefix=/usr --mandir=/usr/share/man --X11-path=/usr --use-js=no
-  make
-}
-
-package() {
-  cd ${pkgname}
-  make DESTDIR="${pkgdir}" install install-lib
-}

Copied: gpac/repos/community-i686/PKGBUILD (from rev 139186, 
gpac/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-09-04 05:08:02 UTC (rev 139187)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=gpac
+pkgver=0.5.2
+pkgrel=3
+epoch=1
+pkgdesc="A multimedia framework based on the MPEG-4 Systems standard"
+arch=('i686' 'x86_64')
+url="http://gpac.sourceforge.net;
+license=('LGPL')
+depends=('ffmpeg' 'glu' 'libxv')
+makedepends=('git' 'jack' 'a52dec' 'freetype2' 'faad2' 'libmad' 'mesa' 'sdl2')
+optdepends=('jack: for jack support'
+   'a52dec: for A52 support'
+'faad2: for AAC support'
+   'libmad: for mp3 support'
+   'sdl2: for sdl support')
+options=('staticlibs' '!makeflags')
+source=(git://github.com/gpac/gpac.git)
+sha1sums=('SKIP')
+
+build() {
+  cd ${pkgname}
+  ./configure --prefix=/usr --mandir=/usr/share/man --X11-path=/usr --use-js=no
+  make
+}
+
+package() {
+  cd ${pkgname}
+  make DESTDIR="${pkgdir}" install install-lib
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-09-04 05:07:54 UTC (rev 139186)
+++ community-x86_64/PKGBUILD   2015-09-04 05:08:02 UTC (rev 139187)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=gpac
-pkgver=0.5.2
-pkgrel=2
-epoch=1
-pkgdesc="A multimedia framework based on the MPEG-4 Systems standard"
-arch=('i686' 'x86_64')
-url="http://gpac.sourceforge.net;
-license=('LGPL')
-depends=('ffmpeg' 'glu' 'libxv')
-makedepends=('git' 'jack' 'a52dec' 'freetype2' 'faad2' 'libmad' 'mesa' 'sdl2')
-optdepends=('jack: for jack support'
-   'a52dec: for A52 support'
-'faad2: for AAC support'
-   'libmad: for mp3 support'
-   'sdl2: for sdl support')
-options=('staticlibs' '!makeflags')
-source=(git://github.com/gpac/gpac.git)
-sha1sums=('SKIP')
-
-build() {
-  cd ${pkgname}
-  ./configure --prefix=/usr --mandir=/usr/share/man --X11-path=/usr --use-js=no
-  make
-}
-
-package() {
-  cd ${pkgname}
-  make DESTDIR="${pkgdir}" install install-lib
-}

Copied: gpac/repos/community-x86_64/PKGBUILD (from rev 139186, 
gpac/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-09-04 05:08:02 UTC (rev 139187)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=gpac
+pkgver=0.5.2
+pkgrel=3
+epoch=1
+pkgdesc="A multimedia framework based on the MPEG-4 Systems standard"
+arch=('i686' 'x86_64')
+url="http://gpac.sourceforge.net;
+license=('LGPL')
+depends=('ffmpeg' 'glu' 'libxv')
+makedepends=('git' 'jack' 'a52dec' 'freetype2' 'faad2' 'libmad' 'mesa' 'sdl2')
+optdepends=('jack: for jack support'
+   'a52dec: for A52 support'
+'faad2: for AAC support'
+   'libmad: for mp3 support'
+   'sdl2: for sdl support')
+options=('staticlibs' '!makeflags')

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

2015-09-03 Thread Tobias Powalowski
Date: Thursday, September 3, 2015 @ 15:01:14
  Author: tpowa
Revision: 245229

initial 4.2 config bump

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

---+
 config|  198 ++
 config.x86_64 |  202 
 2 files changed, 312 insertions(+), 88 deletions(-)

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


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

2015-09-03 Thread Tobias Powalowski
Date: Thursday, September 3, 2015 @ 15:03:46
  Author: tpowa
Revision: 245230

initial 4.2 config bump

Modified:
  linux/trunk/config.x86_64

---+
 config.x86_64 |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: config.x86_64
===
--- config.x86_64   2015-09-03 13:01:14 UTC (rev 245229)
+++ config.x86_64   2015-09-03 13:03:46 UTC (rev 245230)
@@ -6254,8 +6254,8 @@
 CONFIG_KXCJK1013=m
 # CONFIG_MMA9551 is not set
 # CONFIG_MMA9553 is not set
-CONFIG_STK8312=m
-CONFIG_STK8BA50=m
+# CONFIG_STK8312 is not set
+# CONFIG_STK8BA50 is not set
 
 #
 # Analog to digital converters


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

2015-09-03 Thread Tobias Powalowski
Date: Thursday, September 3, 2015 @ 15:06:25
  Author: tpowa
Revision: 245231

disable RT_GROUP_SCHED #46000,#43184

Modified:
  linux/trunk/config.x86_64

---+
 config.x86_64 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: config.x86_64
===
--- config.x86_64   2015-09-03 13:03:46 UTC (rev 245230)
+++ config.x86_64   2015-09-03 13:06:25 UTC (rev 245231)
@@ -161,7 +161,7 @@
 CONFIG_CGROUP_SCHED=y
 CONFIG_FAIR_GROUP_SCHED=y
 CONFIG_CFS_BANDWIDTH=y
-CONFIG_RT_GROUP_SCHED=y
+# CONFIG_RT_GROUP_SCHED is not set
 CONFIG_BLK_CGROUP=y
 # CONFIG_DEBUG_BLK_CGROUP is not set
 CONFIG_CGROUP_WRITEBACK=y


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

2015-09-03 Thread Felix Yan
Date: Friday, September 4, 2015 @ 07:37:59
  Author: fyan
Revision: 139189

archrelease: copy trunk to community-any

Added:
  python-sympy/repos/community-any/PKGBUILD
(from rev 139188, python-sympy/trunk/PKGBUILD)
  python-sympy/repos/community-any/sympy-0.7.6-strip-internal-mpmath.patch
(from rev 139188, 
python-sympy/trunk/sympy-0.7.6-strip-internal-mpmath.patch)
Deleted:
  python-sympy/repos/community-any/PKGBUILD
  python-sympy/repos/community-any/sympy-0.7.6-strip-internal-mpmath.patch

-+
 PKGBUILD|  166 +--
 sympy-0.7.6-strip-internal-mpmath.patch | 1552 +++---
 2 files changed, 859 insertions(+), 859 deletions(-)

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


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

2015-09-03 Thread Felix Yan
Date: Friday, September 4, 2015 @ 07:37:44
  Author: fyan
Revision: 139188

upgpkg: python-sympy 0.7.6.1-1

Modified:
  python-sympy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-04 05:08:02 UTC (rev 139187)
+++ PKGBUILD2015-09-04 05:37:44 UTC (rev 139188)
@@ -7,8 +7,8 @@
 
 pkgbase=python-sympy
 pkgname=('python2-sympy' 'python-sympy')
-pkgver=0.7.6
-pkgrel=2
+pkgver=0.7.6.1
+pkgrel=1
 arch=('any')
 pkgdesc='Symbolic manipulation package (Computer Algebra System), written in 
pure Python'
 url='http://sympy.org/en/index.html'


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

2015-09-03 Thread Felix Yan
Date: Friday, September 4, 2015 @ 07:45:54
  Author: fyan
Revision: 245255

upgpkg: nvidia-340xx 340.93-1

- upstream new version
- add a DKMS version

Added:
  nvidia-340xx/trunk/nvidia-340xx-dkms.install
Modified:
  nvidia-340xx/trunk/PKGBUILD   (contents, properties)
Deleted:
  nvidia-340xx/trunk/nvidia-4.0.patch

---+
 PKGBUILD  |   47 +---
 nvidia-340xx-dkms.install |   30 
 nvidia-4.0.patch  |   28 --
 3 files changed, 61 insertions(+), 44 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-09-04 03:45:53 UTC (rev 245254)
+++ PKGBUILD2015-09-04 05:45:54 UTC (rev 245255)
@@ -1,27 +1,23 @@
-# $Id: PKGBUILD 221857 2014-09-17 20:29:16Z tpowa $
+# $Id$
 # Maintainer : Thomas Baechler 
 
-pkgname=nvidia-340xx
-pkgver=340.76
+pkgbase=nvidia-340xx
+pkgname=(nvidia-340xx nvidia-340xx-dkms)
+pkgver=340.93
 _extramodules=extramodules-4.2-ARCH
-pkgrel=15
-pkgdesc="NVIDIA drivers for linux, 340xx legacy branch"
+pkgrel=1
 arch=('i686' 'x86_64')
 url="http://www.nvidia.com/;
-depends=('linux>=4.2' 'linux<4.3' 'nvidia-340xx-libgl' 
"nvidia-340xx-utils=${pkgver}")
-makedepends=('linux-headers>=4.2' 'linux-headers<4.3')
+makedepends=("nvidia-340xx-utils=${pkgver}" 'linux' 'linux-headers>=4.2' 
'linux-headers<4.3')
 conflicts=('nvidia')
 license=('custom')
-install=${pkgname}.install
 options=(!strip)
 
source=("ftp://download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run;
 
"ftp://download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;
-nv-drm.patch
-nvidia-4.0.patch)
-md5sums=('8064c0a0998c3e7ee3c98ac1832b8194'
- '440df290e213280d6e20d4d4be6f8b4c'
- '79671a27131da619a33eb02ed0c2c031'
- 'f42bdf589f52d4e6c38baa5bef15eef8')
+nv-drm.patch)
+md5sums=('4a7edf6838a80c77a57fb6f6ec7f0437'
+ 'cb80e3f1cb6f2fb6e6eab35fad0884e4'
+ '79671a27131da619a33eb02ed0c2c031')
 
 [[ "$CARCH" = "i686" ]] && _pkg="NVIDIA-Linux-x86-${pkgver}"
 [[ "$CARCH" = "x86_64" ]] && _pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
@@ -31,7 +27,6 @@
 cd "${_pkg}"
 # patches here
 patch -p0 -i ../nv-drm.patch
-patch -p0 -i ../nvidia-4.0.patch
 }
 
 build() {
@@ -43,7 +38,12 @@
 make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
 }
 
-package() {
+package_nvidia-340xx() {
+pkgdesc="NVIDIA drivers for linux, 340xx legacy branch"
+depends=('linux>=4.2' 'linux<4.3' 'libgl' "nvidia-340xx-utils=${pkgver}")
+conflict+=('nvidia-340xx-dkms')
+install=nvidia-340xx.install
+
 install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia.ko" \
 "${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko"
 install -D -m644 "${srcdir}/${_pkg}/kernel/uvm/nvidia-uvm.ko" \
@@ -52,3 +52,18 @@
 install -d -m755 "${pkgdir}/usr/lib/modprobe.d"
 echo "blacklist nouveau" >> "${pkgdir}/usr/lib/modprobe.d/nvidia.conf"
 }
+
+package_nvidia-340xx-dkms() {
+pkgdesc="NVIDIA driver sources for linux, 340xx legacy branch"
+depends=('dkms' "nvidia-340xx-utils=$pkgver")
+optdepends=('linux-headers: Build the module for Arch kernel'
+'linux-lts-headers: Build the module for LTS Arch kernel')
+conflict+=('nvidia-340xx')
+install=nvidia-340xx-dkms.install
+
+cd ${_pkg}
+make -C kernel clean
+install -dm 755 "${pkgdir}"/usr/{lib/modprobe.d,src}
+cp -dr --no-preserve='ownership' kernel 
"${pkgdir}"/usr/src/nvidia-${pkgver}
+echo 'blacklist nouveau' > "${pkgdir}"/usr/lib/modprobe.d/nvidia.conf
+}


Property changes on: nvidia-340xx/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: nvidia-340xx-dkms.install
===
--- nvidia-340xx-dkms.install   (rev 0)
+++ nvidia-340xx-dkms.install   2015-09-04 05:45:54 UTC (rev 245255)
@@ -0,0 +1,30 @@
+#/bin/sh
+
+# arg 1:  the new package version
+post_install() {
+  dkms add nvidia/${1%-*}
+  cat << EOF
+==> To build and install your modules run: dkms install nvidia/${1%-*}
+==> To do this automatically at startup run: systemctl enable dkms.service
+EOF
+}
+
+# arg 1:  the new package version
+# arg 2:  the old package version
+pre_upgrade() {
+  pre_remove "$2"
+}
+
+# arg 1:  the new package version
+# arg 2:  the old package version
+post_upgrade() {
+  post_install "$1"
+}
+
+# arg 1:  the old package version
+pre_remove() {
+  # Remove modules using dkms
+  [ -n "${1%-*}" ] && dkms remove nvidia/${1%-*} --all &>/dev/null || true
+}
+
+# vim:set ts=2 sw=2 ft=sh et:

Deleted: nvidia-4.0.patch
===
--- nvidia-4.0.patch

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

2015-09-03 Thread Felix Yan
Date: Friday, September 4, 2015 @ 07:46:27
  Author: fyan
Revision: 245256

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

Added:
  nvidia-340xx/repos/staging-i686/
  nvidia-340xx/repos/staging-i686/PKGBUILD
(from rev 245255, nvidia-340xx/trunk/PKGBUILD)
  nvidia-340xx/repos/staging-i686/nv-drm.patch
(from rev 245255, nvidia-340xx/trunk/nv-drm.patch)
  nvidia-340xx/repos/staging-i686/nvidia-340xx-dkms.install
(from rev 245255, nvidia-340xx/trunk/nvidia-340xx-dkms.install)
  nvidia-340xx/repos/staging-i686/nvidia-340xx.install
(from rev 245255, nvidia-340xx/trunk/nvidia-340xx.install)
  nvidia-340xx/repos/staging-x86_64/
  nvidia-340xx/repos/staging-x86_64/PKGBUILD
(from rev 245255, nvidia-340xx/trunk/PKGBUILD)
  nvidia-340xx/repos/staging-x86_64/nv-drm.patch
(from rev 245255, nvidia-340xx/trunk/nv-drm.patch)
  nvidia-340xx/repos/staging-x86_64/nvidia-340xx-dkms.install
(from rev 245255, nvidia-340xx/trunk/nvidia-340xx-dkms.install)
  nvidia-340xx/repos/staging-x86_64/nvidia-340xx.install
(from rev 245255, nvidia-340xx/trunk/nvidia-340xx.install)

--+
 staging-i686/PKGBUILD|   69 +
 staging-i686/nv-drm.patch|   27 +++
 staging-i686/nvidia-340xx-dkms.install   |   30 
 staging-i686/nvidia-340xx.install|   13 +
 staging-x86_64/PKGBUILD  |   69 +
 staging-x86_64/nv-drm.patch  |   27 +++
 staging-x86_64/nvidia-340xx-dkms.install |   30 
 staging-x86_64/nvidia-340xx.install  |   13 +
 8 files changed, 278 insertions(+)

Copied: nvidia-340xx/repos/staging-i686/PKGBUILD (from rev 245255, 
nvidia-340xx/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-09-04 05:46:27 UTC (rev 245256)
@@ -0,0 +1,69 @@
+# $Id$
+# Maintainer : Thomas Baechler 
+
+pkgbase=nvidia-340xx
+pkgname=(nvidia-340xx nvidia-340xx-dkms)
+pkgver=340.93
+_extramodules=extramodules-4.2-ARCH
+pkgrel=1
+arch=('i686' 'x86_64')
+url="http://www.nvidia.com/;
+makedepends=("nvidia-340xx-utils=${pkgver}" 'linux' 'linux-headers>=4.2' 
'linux-headers<4.3')
+conflicts=('nvidia')
+license=('custom')
+options=(!strip)
+source=("ftp://download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run;
+
"ftp://download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;
+nv-drm.patch)
+md5sums=('4a7edf6838a80c77a57fb6f6ec7f0437'
+ 'cb80e3f1cb6f2fb6e6eab35fad0884e4'
+ '79671a27131da619a33eb02ed0c2c031')
+
+[[ "$CARCH" = "i686" ]] && _pkg="NVIDIA-Linux-x86-${pkgver}"
+[[ "$CARCH" = "x86_64" ]] && _pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
+
+prepare() {
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}"
+# patches here
+patch -p0 -i ../nv-drm.patch
+}
+
+build() {
+_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+cd "${_pkg}"/kernel
+make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
+
+cd uvm
+make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
+}
+
+package_nvidia-340xx() {
+pkgdesc="NVIDIA drivers for linux, 340xx legacy branch"
+depends=('linux>=4.2' 'linux<4.3' 'libgl' "nvidia-340xx-utils=${pkgver}")
+conflict+=('nvidia-340xx-dkms')
+install=nvidia-340xx.install
+
+install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia.ko" \
+"${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko"
+install -D -m644 "${srcdir}/${_pkg}/kernel/uvm/nvidia-uvm.ko" \
+"${pkgdir}/usr/lib/modules/${_extramodules}/nvidia-uvm.ko"
+gzip "${pkgdir}/usr/lib/modules/${_extramodules}/"*.ko
+install -d -m755 "${pkgdir}/usr/lib/modprobe.d"
+echo "blacklist nouveau" >> "${pkgdir}/usr/lib/modprobe.d/nvidia.conf"
+}
+
+package_nvidia-340xx-dkms() {
+pkgdesc="NVIDIA driver sources for linux, 340xx legacy branch"
+depends=('dkms' "nvidia-340xx-utils=$pkgver")
+optdepends=('linux-headers: Build the module for Arch kernel'
+'linux-lts-headers: Build the module for LTS Arch kernel')
+conflict+=('nvidia-340xx')
+install=nvidia-340xx-dkms.install
+
+cd ${_pkg}
+make -C kernel clean
+install -dm 755 "${pkgdir}"/usr/{lib/modprobe.d,src}
+cp -dr --no-preserve='ownership' kernel 
"${pkgdir}"/usr/src/nvidia-${pkgver}
+echo 'blacklist nouveau' > "${pkgdir}"/usr/lib/modprobe.d/nvidia.conf
+}

Copied: nvidia-340xx/repos/staging-i686/nv-drm.patch (from rev 245255, 
nvidia-340xx/trunk/nv-drm.patch)
===
--- staging-i686/nv-drm.patch   (rev 0)
+++ staging-i686/nv-drm.patch   2015-09-04 05:46:27 UTC (rev 245256)
@@ -0,0 +1,27 @@
+--- kernel/nv-drm.c~ 2014-09-12 

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

2015-09-03 Thread Felix Yan
Date: Friday, September 4, 2015 @ 05:17:25
  Author: fyan
Revision: 139177

upgpkg: kcm-fcitx 0.5.1-1

Modified:
  kcm-fcitx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-09-03 23:37:15 UTC (rev 139176)
+++ PKGBUILD2015-09-04 03:17:25 UTC (rev 139177)
@@ -3,7 +3,7 @@
 # Contributor: poplarch 
 
 pkgname=kcm-fcitx
-pkgver=0.5.0
+pkgver=0.5.1
 pkgrel=1
 pkgdesc="KDE Config Module for Fcitx"
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 depends=('fcitx-qt5' 'knewstuff' 'kcmutils')
 makedepends=('extra-cmake-modules')
 source=("http://download.fcitx-im.org/$pkgname/$pkgname-${pkgver}.tar.xz;)
-sha512sums=('219b962c4b6f1763b389dc20d22a671d960a884f5c3f0faddbd4919b61dd6d93e600cbf440b15bc42f63cb383ed5ca65e657fa835c520196c8bd9d64a160baa3')
+sha512sums=('66145f4d77209803e09fb28182f62a40d3c92f38ad3b8acda93c5799aeed11327e4ff061a42be0e77cc45ba684e87fed652725ded2481702dfa3a1bbe214dfc6')
 
 prepare() {
   mkdir build