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

2013-09-17 Thread Jan Steffens
Date: Tuesday, September 17, 2013 @ 08:12:45
  Author: heftig
Revision: 194511

24.0

Modified:
  firefox/trunk/PKGBUILD
  firefox/trunk/mozconfig

---+
 PKGBUILD  |   24 +++-
 mozconfig |2 +-
 2 files changed, 20 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-09-17 03:04:46 UTC (rev 194510)
+++ PKGBUILD2013-09-17 06:12:45 UTC (rev 194511)
@@ -3,7 +3,7 @@
 # Contributor: Jakub Schmidtke sja...@gmail.com
 
 pkgname=firefox
-pkgver=23.0.1
+pkgver=24.0
 pkgrel=1
 pkgdesc=Standalone web browser from mozilla.org
 arch=('i686' 'x86_64')
@@ -13,8 +13,12 @@
  'dbus-glib' 'alsa-lib' 'libvpx' 'libevent' 'nss' 'hunspell' 'sqlite'
   'libnotify' 'desktop-file-utils' 'hicolor-icon-theme')
 makedepends=('unzip' 'zip' 'diffutils' 'python2' 'yasm' 'mesa' 'imake'
- 'xorg-server-xvfb' 'libpulse')
+ 'xorg-server-xvfb' 'libpulse' 'gstreamer0.10-base')
 optdepends=('networkmanager: Location detection via available WiFi networks'
+'gstreamer0.10-base-plugins: vorbis decoding, ogg demuxing'
+'gstreamer0.10-bad-plugins: aac, vp8 and opus decoding'
+'gstreamer0.10-good-plugins: webm and mp4 demuxing'
+'gstreamer0.10-ugly-plugins: h.264 decoding'
 'libpulse: PulseAudio audio driver')
 install=firefox.install
 options=('!emptydirs' '!makeflags')
@@ -21,8 +25,8 @@
 
source=(https://ftp.mozilla.org/pub/mozilla.org/firefox/releases/$pkgver/source/firefox-$pkgver.source.tar.bz2
 mozconfig firefox.desktop firefox-install-dir.patch vendor.js 
shared-libs.patch
 firefox-20.0.1-fixed-loading-icon.png)
-sha256sums=('bb2c2e99a03859ebd8c02b8bc4c57b39ccc97c55872c2737c433212c0ebe01cf'
-'1d750088958ae2a2faf43f9bb3909c3e396f01c6504ba39f09b8ed7fc1b29492'
+sha256sums=('86a6efa501e1b106b597a8506757f3a2db9d3a5cfcc61ea29a9ad0c834bea83b'
+'b94ec94cb5e4bbeb45637425bb4efa3051a16ed12cea2ee3b0a5b9cb48ef4115'
 'd2a7610393ba259c35e3227b92e02ec91095a95189f56ac93ccdf6732772719c'
 'ded67e8204bd5e1c0c5771c0d2c84ff80c998e1543711e7cd804cfe29e8dd1b0'
 '4b50e9aec03432e21b44d18c4c97b2630bace606b033f7d556c9d3e3eb0f4fa4'
@@ -29,6 +33,12 @@
 'e2b4a00d14f4ba69c62b3f9ef9908263fbab179ba8004197cbc67edbd916fdf1'
 '68e3a5b47c6d175cc95b98b069a15205f027cab83af9e075818d38610feb6213')
 
+# Google API keys (see http://www.chromium.org/developers/how-tos/api-keys)
+# Note: These are for Arch Linux use ONLY. For your own distribution, please
+# get your own set of keys. Feel free to contact foutre...@archlinux.org for
+# more information.
+_google_api_key=AIzaSyDwr302FpOSkGRpLlUpPThNTDPbXcIn_FM
+
 prepare() {
   cd mozilla-release
 
@@ -40,6 +50,8 @@
   sed -i '/^PRE_RELEASE_SUFFIX := /s/ //' \
 browser/base/Makefile.in
 
+  echo -n $_google_api_key google-api-key
+
   mkdir $srcdir/path
 
   # WebRTC build tries to execute python and expects Python 2
@@ -93,7 +105,9 @@
   install -Dm644 browser/branding/official/mozicon128.png \
 $pkgdir/usr/share/icons/hicolor/128x128/apps/firefox.png
   install -Dm644 browser/branding/official/content/about-logo.png \
-$pkgdir/usr/share/icons/hicolor/210x210/apps/firefox.png
+$pkgdir/usr/share/icons/hicolor/192x192/apps/firefox.png
+  install -Dm644 browser/branding/official/content/about-l...@2x.png \
+$pkgdir/usr/share/icons/hicolor/384x384/apps/firefox.png
 
   install -Dm644 ../firefox.desktop \
 $pkgdir/usr/share/applications/firefox.desktop

Modified: mozconfig
===
--- mozconfig   2013-09-17 03:04:46 UTC (rev 194510)
+++ mozconfig   2013-09-17 06:12:45 UTC (rev 194511)
@@ -4,6 +4,7 @@
 ac_add_options --libdir=/usr/lib
 
 ac_add_options --enable-official-branding
+ac_add_options --with-google-api-keyfile=google-api-key
 
 # System libraries
 ac_add_options --with-system-nspr
@@ -22,7 +23,6 @@
 
 # Features
 ac_add_options --enable-startup-notification
-#ac_add_options --enable-gstreamer
 ac_add_options --enable-pulseaudio
 
 ac_add_options --disable-crashreporter



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

2013-09-17 Thread Jan Steffens
Date: Tuesday, September 17, 2013 @ 08:28:12
  Author: heftig
Revision: 194512

try to fix api key

Modified:
  firefox/trunk/PKGBUILD
  firefox/trunk/mozconfig

---+
 PKGBUILD  |1 +
 mozconfig |2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-09-17 06:12:45 UTC (rev 194511)
+++ PKGBUILD2013-09-17 06:28:12 UTC (rev 194512)
@@ -73,6 +73,7 @@
   export PATH=$srcdir/path:$PATH
   export LDFLAGS=$LDFLAGS -Wl,-rpath,/usr/lib/firefox
   export PYTHON=/usr/bin/python2
+  export GOOGLE_API_KEYFILE=$PWD/google-api-key
 
   # Work around memory address space exhaustion during linking on i686
   if [[ $CARCH == i686 ]]; then

Modified: mozconfig
===
--- mozconfig   2013-09-17 06:12:45 UTC (rev 194511)
+++ mozconfig   2013-09-17 06:28:12 UTC (rev 194512)
@@ -4,7 +4,7 @@
 ac_add_options --libdir=/usr/lib
 
 ac_add_options --enable-official-branding
-ac_add_options --with-google-api-keyfile=google-api-key
+ac_add_options --with-google-api-keyfile=$GOOGLE_API_KEYFILE
 
 # System libraries
 ac_add_options --with-system-nspr



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

2013-09-17 Thread Tobias Powalowski
Date: Tuesday, September 17, 2013 @ 08:52:04
  Author: tpowa
Revision: 194513

db-move: moved linux from [testing] to [core] (i686, x86_64)

Added:
  linux/repos/core-i686/PKGBUILD
(from rev 194512, linux/repos/testing-i686/PKGBUILD)
  linux/repos/core-i686/change-default-console-loglevel.patch
(from rev 194512, 
linux/repos/testing-i686/change-default-console-loglevel.patch)
  linux/repos/core-i686/config
(from rev 194512, linux/repos/testing-i686/config)
  linux/repos/core-i686/config.x86_64
(from rev 194512, linux/repos/testing-i686/config.x86_64)
  linux/repos/core-i686/criu-no-expert.patch
(from rev 194512, linux/repos/testing-i686/criu-no-expert.patch)
  linux/repos/core-i686/linux.install
(from rev 194512, linux/repos/testing-i686/linux.install)
  linux/repos/core-i686/linux.preset
(from rev 194512, linux/repos/testing-i686/linux.preset)
  linux/repos/core-x86_64/PKGBUILD
(from rev 194512, linux/repos/testing-x86_64/PKGBUILD)
  linux/repos/core-x86_64/change-default-console-loglevel.patch
(from rev 194512, 
linux/repos/testing-x86_64/change-default-console-loglevel.patch)
  linux/repos/core-x86_64/config
(from rev 194512, linux/repos/testing-x86_64/config)
  linux/repos/core-x86_64/config.x86_64
(from rev 194512, linux/repos/testing-x86_64/config.x86_64)
  linux/repos/core-x86_64/criu-no-expert.patch
(from rev 194512, linux/repos/testing-x86_64/criu-no-expert.patch)
  linux/repos/core-x86_64/linux.install
(from rev 194512, linux/repos/testing-x86_64/linux.install)
  linux/repos/core-x86_64/linux.preset
(from rev 194512, linux/repos/testing-x86_64/linux.preset)
Deleted:
  linux/repos/core-i686/3.10.6-logitech-dj.patch
  linux/repos/core-i686/3.10.6-reset-superseed-xhci-hcd.patch
  linux/repos/core-i686/PKGBUILD
  linux/repos/core-i686/change-default-console-loglevel.patch
  linux/repos/core-i686/config
  linux/repos/core-i686/config.3.11
  linux/repos/core-i686/config.x86_64
  linux/repos/core-i686/config.x86_64.3.11
  linux/repos/core-i686/criu-no-expert.patch
  linux/repos/core-i686/linux.install
  linux/repos/core-i686/linux.preset
  linux/repos/core-x86_64/3.10.6-logitech-dj.patch
  linux/repos/core-x86_64/3.10.6-reset-superseed-xhci-hcd.patch
  linux/repos/core-x86_64/PKGBUILD
  linux/repos/core-x86_64/change-default-console-loglevel.patch
  linux/repos/core-x86_64/config
  linux/repos/core-x86_64/config.3.11
  linux/repos/core-x86_64/config.x86_64
  linux/repos/core-x86_64/config.x86_64.3.11
  linux/repos/core-x86_64/criu-no-expert.patch
  linux/repos/core-x86_64/linux.install
  linux/repos/core-x86_64/linux.preset
  linux/repos/testing-i686/
  linux/repos/testing-x86_64/

---+
 /PKGBUILD |  672 +
 /change-default-console-loglevel.patch|   24 
 /config   |12904 
 /config.x86_64|12508 +++
 /criu-no-expert.patch |   44 
 /linux.install|   62 
 /linux.preset |   28 
 core-i686/3.10.6-logitech-dj.patch|  172 
 core-i686/3.10.6-reset-superseed-xhci-hcd.patch   |   24 
 core-i686/PKGBUILD|  341 
 core-i686/change-default-console-loglevel.patch   |   12 
 core-i686/config  | 6340 -
 core-i686/config.3.11 | 6452 --
 core-i686/config.x86_64   | 6140 -
 core-i686/config.x86_64.3.11  | 6254 -
 core-i686/criu-no-expert.patch|   22 
 core-i686/linux.install   |   31 
 core-i686/linux.preset|   14 
 core-x86_64/3.10.6-logitech-dj.patch  |  172 
 core-x86_64/3.10.6-reset-superseed-xhci-hcd.patch |   24 
 core-x86_64/PKGBUILD  |  341 
 core-x86_64/change-default-console-loglevel.patch |   12 
 core-x86_64/config| 6340 -
 core-x86_64/config.3.11   | 6452 --
 core-x86_64/config.x86_64 | 6140 -
 core-x86_64/config.x86_64.3.11| 6254 -
 core-x86_64/criu-no-expert.patch  |   22 
 core-x86_64/linux.install |   31 
 core-x86_64/linux.preset  |   14 
 29 files changed, 26242 insertions(+), 51604 deletions(-)

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


[arch-commits] Commit in lirc/repos (54 files)

2013-09-17 Thread Tobias Powalowski
Date: Tuesday, September 17, 2013 @ 08:52:22
  Author: tpowa
Revision: 194516

db-move: moved lirc from [testing] to [extra] (i686, x86_64)

Added:
  lirc/repos/extra-i686/PKGBUILD
(from rev 194513, lirc/repos/testing-i686/PKGBUILD)
  lirc/repos/extra-i686/irexec.service
(from rev 194513, lirc/repos/testing-i686/irexec.service)
  lirc/repos/extra-i686/kernel-2.6.39.patch
(from rev 194513, lirc/repos/testing-i686/kernel-2.6.39.patch)
  lirc/repos/extra-i686/linux-3.8.patch
(from rev 194513, lirc/repos/testing-i686/linux-3.8.patch)
  lirc/repos/extra-i686/lirc-utils.install
(from rev 194513, lirc/repos/testing-i686/lirc-utils.install)
  lirc/repos/extra-i686/lirc.install
(from rev 194513, lirc/repos/testing-i686/lirc.install)
  lirc/repos/extra-i686/lirc.logrotate
(from rev 194513, lirc/repos/testing-i686/lirc.logrotate)
  lirc/repos/extra-i686/lirc.service
(from rev 194513, lirc/repos/testing-i686/lirc.service)
  lirc/repos/extra-i686/lirc.tmpfiles
(from rev 194513, lirc/repos/testing-i686/lirc.tmpfiles)
  lirc/repos/extra-i686/lirc_atiusb-kfifo.patch
(from rev 194513, lirc/repos/testing-i686/lirc_atiusb-kfifo.patch)
  lirc/repos/extra-i686/lirc_wpc8769l.patch
(from rev 194513, lirc/repos/testing-i686/lirc_wpc8769l.patch)
  lirc/repos/extra-i686/lircd-handle-large-config.patch
(from rev 194513, lirc/repos/testing-i686/lircd-handle-large-config.patch)
  lirc/repos/extra-i686/lircm.service
(from rev 194513, lirc/repos/testing-i686/lircm.service)
  lirc/repos/extra-x86_64/PKGBUILD
(from rev 194513, lirc/repos/testing-x86_64/PKGBUILD)
  lirc/repos/extra-x86_64/irexec.service
(from rev 194513, lirc/repos/testing-x86_64/irexec.service)
  lirc/repos/extra-x86_64/kernel-2.6.39.patch
(from rev 194513, lirc/repos/testing-x86_64/kernel-2.6.39.patch)
  lirc/repos/extra-x86_64/linux-3.8.patch
(from rev 194513, lirc/repos/testing-x86_64/linux-3.8.patch)
  lirc/repos/extra-x86_64/lirc-utils.install
(from rev 194513, lirc/repos/testing-x86_64/lirc-utils.install)
  lirc/repos/extra-x86_64/lirc.install
(from rev 194513, lirc/repos/testing-x86_64/lirc.install)
  lirc/repos/extra-x86_64/lirc.logrotate
(from rev 194513, lirc/repos/testing-x86_64/lirc.logrotate)
  lirc/repos/extra-x86_64/lirc.service
(from rev 194513, lirc/repos/testing-x86_64/lirc.service)
  lirc/repos/extra-x86_64/lirc.tmpfiles
(from rev 194513, lirc/repos/testing-x86_64/lirc.tmpfiles)
  lirc/repos/extra-x86_64/lirc_atiusb-kfifo.patch
(from rev 194513, lirc/repos/testing-x86_64/lirc_atiusb-kfifo.patch)
  lirc/repos/extra-x86_64/lirc_wpc8769l.patch
(from rev 194513, lirc/repos/testing-x86_64/lirc_wpc8769l.patch)
  lirc/repos/extra-x86_64/lircd-handle-large-config.patch
(from rev 194513, lirc/repos/testing-x86_64/lircd-handle-large-config.patch)
  lirc/repos/extra-x86_64/lircm.service
(from rev 194513, lirc/repos/testing-x86_64/lircm.service)
Deleted:
  lirc/repos/extra-i686/PKGBUILD
  lirc/repos/extra-i686/irexec.service
  lirc/repos/extra-i686/kernel-2.6.39.patch
  lirc/repos/extra-i686/linux-3.8.patch
  lirc/repos/extra-i686/lirc-utils.install
  lirc/repos/extra-i686/lirc.install
  lirc/repos/extra-i686/lirc.logrotate
  lirc/repos/extra-i686/lirc.service
  lirc/repos/extra-i686/lirc.tmpfiles
  lirc/repos/extra-i686/lirc_atiusb-kfifo.patch
  lirc/repos/extra-i686/lirc_wpc8769l.patch
  lirc/repos/extra-i686/lircd-handle-large-config.patch
  lirc/repos/extra-i686/lircm.service
  lirc/repos/extra-x86_64/PKGBUILD
  lirc/repos/extra-x86_64/irexec.service
  lirc/repos/extra-x86_64/kernel-2.6.39.patch
  lirc/repos/extra-x86_64/linux-3.8.patch
  lirc/repos/extra-x86_64/lirc-utils.install
  lirc/repos/extra-x86_64/lirc.install
  lirc/repos/extra-x86_64/lirc.logrotate
  lirc/repos/extra-x86_64/lirc.service
  lirc/repos/extra-x86_64/lirc.tmpfiles
  lirc/repos/extra-x86_64/lirc_atiusb-kfifo.patch
  lirc/repos/extra-x86_64/lirc_wpc8769l.patch
  lirc/repos/extra-x86_64/lircd-handle-large-config.patch
  lirc/repos/extra-x86_64/lircm.service
  lirc/repos/testing-i686/
  lirc/repos/testing-x86_64/

--+
 /PKGBUILD|  214 +
 /irexec.service  |   22 ++
 /kernel-2.6.39.patch |  108 
 /linux-3.8.patch |  160 ++
 /lirc-utils.install  |   14 +
 /lirc.install|   32 +++
 /lirc.logrotate  |   10 +
 /lirc.service|   22 ++
 /lirc.tmpfiles   |2 
 /lirc_atiusb-kfifo.patch |   62 +++
 /lirc_wpc8769l.patch |  176 
 /lircd-handle-large-config.patch |   78 +
 /lircm.service   |   22 ++
 extra-i686/PKGBUILD 

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

2013-09-17 Thread Tobias Powalowski
Date: Tuesday, September 17, 2013 @ 08:52:19
  Author: tpowa
Revision: 194514

db-move: moved nvidia from [testing] to [extra] (i686, x86_64)

Added:
  nvidia/repos/extra-i686/PKGBUILD
(from rev 194513, nvidia/repos/testing-i686/PKGBUILD)
  nvidia/repos/extra-i686/nvidia-linux-3.11.patch
(from rev 194513, nvidia/repos/testing-i686/nvidia-linux-3.11.patch)
  nvidia/repos/extra-i686/nvidia.install
(from rev 194513, nvidia/repos/testing-i686/nvidia.install)
  nvidia/repos/extra-x86_64/PKGBUILD
(from rev 194513, nvidia/repos/testing-x86_64/PKGBUILD)
  nvidia/repos/extra-x86_64/nvidia-linux-3.11.patch
(from rev 194513, nvidia/repos/testing-x86_64/nvidia-linux-3.11.patch)
  nvidia/repos/extra-x86_64/nvidia.install
(from rev 194513, nvidia/repos/testing-x86_64/nvidia.install)
Deleted:
  nvidia/repos/extra-i686/PKGBUILD
  nvidia/repos/extra-i686/nvidia.install
  nvidia/repos/extra-x86_64/PKGBUILD
  nvidia/repos/extra-x86_64/nvidia.install
  nvidia/repos/testing-i686/
  nvidia/repos/testing-x86_64/

--+
 /PKGBUILD|   96 +
 /nvidia.install  |   36 
 extra-i686/PKGBUILD  |   45 ---
 extra-i686/nvidia-linux-3.11.patch   |   25 
 extra-i686/nvidia.install|   18 --
 extra-x86_64/PKGBUILD|   45 ---
 extra-x86_64/nvidia-linux-3.11.patch |   25 
 extra-x86_64/nvidia.install  |   18 --
 8 files changed, 182 insertions(+), 126 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-09-17 06:52:04 UTC (rev 194513)
+++ extra-i686/PKGBUILD 2013-09-17 06:52:19 UTC (rev 194514)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer : Thomas Baechler tho...@archlinux.org
-
-pkgname=nvidia
-pkgver=325.15
-_extramodules=extramodules-3.10-ARCH
-pkgrel=5
-pkgdesc=NVIDIA drivers for linux
-arch=('i686' 'x86_64')
-url=http://www.nvidia.com/;
-depends=('linux=3.10' 'linux3.11' nvidia-libgl nvidia-utils=${pkgver})
-makedepends=('linux-headers=3.10' 'linux-headers3.11')
-conflicts=('nvidia-96xx' 'nvidia-173xx')
-license=('custom')
-install=nvidia.install
-options=(!strip)
-
-if [ $CARCH = i686 ]; then
-_arch='x86'
-_pkg=NVIDIA-Linux-${_arch}-${pkgver}
-
source+=(ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run;)
-md5sums+=('528fc538584de6446384b9cec3099d6c')
-elif [ $CARCH = x86_64 ]; then
-_arch='x86_64'
-   _pkg=NVIDIA-Linux-${_arch}-${pkgver}-no-compat32
-
source+=(ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run;)
-md5sums+=('63b2caa0cb128efa1a7808d7bddb2074')
-fi
-
-build() {
-_kernver=$(cat /usr/lib/modules/${_extramodules}/version)
-cd ${srcdir}
-sh ${_pkg}.run --extract-only
-cd ${_pkg}/kernel
-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 -m755 ${pkgdir}/usr/lib/modprobe.d
-echo blacklist nouveau  ${pkgdir}/usr/lib/modprobe.d/nvidia.conf
-sed -i -e s/EXTRAMODULES='.*'/EXTRAMODULES='${_extramodules}'/ 
${startdir}/nvidia.install
-gzip ${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko
-}

Copied: nvidia/repos/extra-i686/PKGBUILD (from rev 194513, 
nvidia/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-09-17 06:52:19 UTC (rev 194514)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer : Thomas Baechler tho...@archlinux.org
+
+pkgname=nvidia
+pkgver=325.15
+_extramodules=extramodules-3.11-ARCH
+pkgrel=7
+pkgdesc=NVIDIA drivers for linux
+arch=('i686' 'x86_64')
+url=http://www.nvidia.com/;
+depends=('linux=3.11' 'linux3.12' nvidia-libgl nvidia-utils=${pkgver})
+makedepends=('linux-headers=3.11' 'linux-headers3.12')
+conflicts=('nvidia-96xx' 'nvidia-173xx')
+license=('custom')
+install=nvidia.install
+options=(!strip)
+source=('nvidia-linux-3.11.patch')
+md5sums=('5c962760de069ed4ad34e64d5988686a')
+
+if [ $CARCH = i686 ]; then
+_arch='x86'
+_pkg=NVIDIA-Linux-${_arch}-${pkgver}
+
source+=(ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run;)
+md5sums+=('528fc538584de6446384b9cec3099d6c')
+elif [ $CARCH = x86_64 ]; then
+_arch='x86_64'
+   _pkg=NVIDIA-Linux-${_arch}-${pkgver}-no-compat32
+
source+=(ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run;)
+md5sums+=('63b2caa0cb128efa1a7808d7bddb2074')
+fi
+
+build() {
+_kernver=$(cat /usr/lib/modules/${_extramodules}/version)
+cd ${srcdir}
+sh ${_pkg}.run --extract-only
+cd ${_pkg}/kernel
+patch -Np2 -i ${srcdir}/nvidia-linux-3.11.patch
+make SYSSRC=/usr/lib/modules/${_kernver}/build module
+}
+

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

2013-09-17 Thread Tobias Powalowski
Date: Tuesday, September 17, 2013 @ 08:52:20
  Author: tpowa
Revision: 194515

db-move: moved nvidia-304xx from [testing] to [extra] (i686, x86_64)

Added:
  nvidia-304xx/repos/extra-i686/PKGBUILD
(from rev 194513, nvidia-304xx/repos/testing-i686/PKGBUILD)
  nvidia-304xx/repos/extra-i686/nvidia-linux-3.11.patch
(from rev 194513, nvidia-304xx/repos/testing-i686/nvidia-linux-3.11.patch)
  nvidia-304xx/repos/extra-i686/nvidia.install
(from rev 194513, nvidia-304xx/repos/testing-i686/nvidia.install)
  nvidia-304xx/repos/extra-x86_64/PKGBUILD
(from rev 194513, nvidia-304xx/repos/testing-x86_64/PKGBUILD)
  nvidia-304xx/repos/extra-x86_64/nvidia-linux-3.11.patch
(from rev 194513, nvidia-304xx/repos/testing-x86_64/nvidia-linux-3.11.patch)
  nvidia-304xx/repos/extra-x86_64/nvidia.install
(from rev 194513, nvidia-304xx/repos/testing-x86_64/nvidia.install)
Deleted:
  nvidia-304xx/repos/extra-i686/PKGBUILD
  nvidia-304xx/repos/extra-i686/nvidia-linux-3.10.patch
  nvidia-304xx/repos/extra-i686/nvidia.install
  nvidia-304xx/repos/extra-x86_64/PKGBUILD
  nvidia-304xx/repos/extra-x86_64/nvidia-linux-3.10.patch
  nvidia-304xx/repos/extra-x86_64/nvidia.install
  nvidia-304xx/repos/testing-i686/
  nvidia-304xx/repos/testing-x86_64/

--+
 /PKGBUILD|  100 +
 /nvidia.install  |   30 +
 extra-i686/PKGBUILD  |   52 --
 extra-i686/nvidia-linux-3.10.patch   |  633 -
 extra-i686/nvidia-linux-3.11.patch   |   25 +
 extra-i686/nvidia.install|   15 
 extra-x86_64/PKGBUILD|   52 --
 extra-x86_64/nvidia-linux-3.10.patch |  633 -
 extra-x86_64/nvidia-linux-3.11.patch |   25 +
 extra-x86_64/nvidia.install  |   15 
 10 files changed, 180 insertions(+), 1400 deletions(-)

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


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

2013-09-17 Thread Tobias Powalowski
Date: Tuesday, September 17, 2013 @ 08:53:22
  Author: tpowa
Revision: 97301

db-move: moved bbswitch from [community-testing] to [community] (i686, x86_64)

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

---+
 /PKGBUILD |   64 
 /bbswitch.install |   24 +
 community-i686/PKGBUILD   |   32 --
 community-i686/bbswitch.install   |   12 --
 community-x86_64/PKGBUILD |   32 --
 community-x86_64/bbswitch.install |   12 --
 6 files changed, 88 insertions(+), 88 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-09-17 05:47:11 UTC (rev 97300)
+++ community-i686/PKGBUILD 2013-09-17 06:53:22 UTC (rev 97301)
@@ -1,32 +0,0 @@
-# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
-# Contributor: M0Rf30
-# Contributor: Samsagax samsa...@gmail.com
-
-pkgname=bbswitch
-pkgver=0.7
-_extramodules=extramodules-3.10-ARCH # Don't forget to update bbswitch.install
-pkgrel=12
-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=3.10' 'linux3.11')
-makedepends=('linux-headers=3.10' 'linux-headers3.11')
-install=bbswitch.install
-source=(https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz;)
-md5sums=('b9df5ea40109ef9766448a0577c798e6')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  _kernver=$(cat /usr/lib/modules/${_extramodules}/version)
-
-  make KDIR=/usr/src/linux-${_kernver}
-}
-
-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-i686/PKGBUILD (from rev 97300, 
bbswitch/repos/community-testing-i686/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-09-17 06:53:22 UTC (rev 97301)
@@ -0,0 +1,32 @@
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: M0Rf30
+# Contributor: Samsagax samsa...@gmail.com
+
+pkgname=bbswitch
+pkgver=0.7
+_extramodules=extramodules-3.11-ARCH # Don't forget to update bbswitch.install
+pkgrel=14
+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=3.11' 'linux3.12')
+makedepends=('linux-headers=3.11' 'linux-headers3.12')
+install=bbswitch.install
+source=(https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz;)
+md5sums=('b9df5ea40109ef9766448a0577c798e6')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  _kernver=$(cat /usr/lib/modules/${_extramodules}/version)
+
+  make KDIR=/usr/src/linux-${_kernver}
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+   
+  install -Dm644 bbswitch.ko 
${pkgdir}/usr/lib/modules/${_extramodules}/bbswitch.ko
+  gzip ${pkgdir}/usr/lib/modules/${_extramodules}/bbswitch.ko
  
+}

Deleted: community-i686/bbswitch.install
===
--- community-i686/bbswitch.install 2013-09-17 05:47:11 UTC (rev 97300)
+++ community-i686/bbswitch.install 2013-09-17 06:53:22 UTC (rev 97301)
@@ -1,12 +0,0 @@
-post_install() {
-EXTRAMODULES='extramodules-3.10-ARCH'
-depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: bbswitch/repos/community-i686/bbswitch.install (from rev 97300, 
bbswitch/repos/community-testing-i686/bbswitch.install)
===
--- community-i686/bbswitch.install (rev 0)
+++ community-i686/bbswitch.install 2013-09-17 06:53:22 UTC (rev 97301)
@@ -0,0 +1,12 @@
+post_install() {
+EXTRAMODULES='extramodules-3.11-ARCH'
+depmod 

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

2013-09-17 Thread Tobias Powalowski
Date: Tuesday, September 17, 2013 @ 08:53:27
  Author: tpowa
Revision: 97305

db-move: moved vhba-module from [community-testing] to [community] (i686, 
x86_64)

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

--+
 /60-vhba.rules   |2 
 /PKGBUILD|   80 +
 /vhba-module.install |   44 ++
 community-i686/60-vhba.rules |1 
 community-i686/PKGBUILD  |   40 
 community-i686/vhba-module.install   |   22 -
 community-x86_64/60-vhba.rules   |1 
 community-x86_64/PKGBUILD|   40 
 community-x86_64/vhba-module.install |   22 -
 9 files changed, 126 insertions(+), 126 deletions(-)

Deleted: community-i686/60-vhba.rules
===
--- community-i686/60-vhba.rules2013-09-17 06:53:26 UTC (rev 97304)
+++ community-i686/60-vhba.rules2013-09-17 06:53:27 UTC (rev 97305)
@@ -1 +0,0 @@
-ACTION==add, KERNEL==vhba_ctl, NAME=vhba_ctl, MODE=0660, OWNER=root, 
GROUP=cdemu, TAG+=uaccess

Copied: vhba-module/repos/community-i686/60-vhba.rules (from rev 97300, 
vhba-module/repos/community-testing-i686/60-vhba.rules)
===
--- community-i686/60-vhba.rules(rev 0)
+++ community-i686/60-vhba.rules2013-09-17 06:53:27 UTC (rev 97305)
@@ -0,0 +1 @@
+ACTION==add, KERNEL==vhba_ctl, NAME=vhba_ctl, MODE=0660, OWNER=root, 
GROUP=cdemu, TAG+=uaccess

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-09-17 06:53:26 UTC (rev 97304)
+++ community-i686/PKGBUILD 2013-09-17 06:53:27 UTC (rev 97305)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Ray Rashif sc...@archlinux.org
-# Contributor: Mateusz Herych heni...@gmail.com
-# Contributor: Charles Lindsay char...@chaoslizard.org
-
-pkgname=vhba-module
-pkgver=20130607
-_extramodules=extramodules-3.10-ARCH
-pkgrel=12
-pkgdesc=Kernel module that emulates SCSI devices
-arch=('i686' 'x86_64')
-url=http://cdemu.sourceforge.net/;
-license=('GPL')
-depends=('linux=3.10' 'linux3.11')
-makedepends=('linux-headers')
-options=(!makeflags)
-install=$pkgname.install
-source=(http://downloads.sourceforge.net/cdemu/$pkgname-$pkgver.tar.bz2;
-'60-vhba.rules')
-md5sums=('92a681e4665aa85a8335d00395a61697'
- '4dc37dc348b5a2c83585829bde790dcc')
-
-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-i686/PKGBUILD (from rev 97300, 
vhba-module/repos/community-testing-i686/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-09-17 06:53:27 UTC (rev 97305)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Ray Rashif sc...@archlinux.org
+# Contributor: Mateusz Herych heni...@gmail.com
+# Contributor: Charles Lindsay char...@chaoslizard.org
+
+pkgname=vhba-module
+pkgver=20130607
+_extramodules=extramodules-3.11-ARCH
+pkgrel=14
+pkgdesc=Kernel module that emulates SCSI devices
+arch=('i686' 'x86_64')
+url=http://cdemu.sourceforge.net/;
+license=('GPL')
+depends=('linux=3.11' 'linux3.12')

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

2013-09-17 Thread Tobias Powalowski
Date: Tuesday, September 17, 2013 @ 08:53:23
  Author: tpowa
Revision: 97302

db-move: moved r8168 from [community-testing] to [community] (i686, x86_64)

Added:
  r8168/repos/community-i686/PKGBUILD
(from rev 97300, r8168/repos/community-testing-i686/PKGBUILD)
  r8168/repos/community-i686/linux-3.10.patch
(from rev 97300, r8168/repos/community-testing-i686/linux-3.10.patch)
  r8168/repos/community-i686/r8168.install
(from rev 97300, r8168/repos/community-testing-i686/r8168.install)
  r8168/repos/community-x86_64/PKGBUILD
(from rev 97300, r8168/repos/community-testing-x86_64/PKGBUILD)
  r8168/repos/community-x86_64/linux-3.10.patch
(from rev 97300, r8168/repos/community-testing-x86_64/linux-3.10.patch)
  r8168/repos/community-x86_64/r8168.install
(from rev 97300, r8168/repos/community-testing-x86_64/r8168.install)
Deleted:
  r8168/repos/community-i686/PKGBUILD
  r8168/repos/community-i686/linux-3.10.patch
  r8168/repos/community-i686/r8168.install
  r8168/repos/community-testing-i686/
  r8168/repos/community-testing-x86_64/
  r8168/repos/community-x86_64/PKGBUILD
  r8168/repos/community-x86_64/linux-3.10.patch
  r8168/repos/community-x86_64/r8168.install

---+
 /PKGBUILD |  102 +++
 /linux-3.10.patch |  118 
 /r8168.install|   34 ++
 community-i686/PKGBUILD   |   51 ---
 community-i686/linux-3.10.patch   |   59 --
 community-i686/r8168.install  |   17 -
 community-x86_64/PKGBUILD |   51 ---
 community-x86_64/linux-3.10.patch |   59 --
 community-x86_64/r8168.install|   17 -
 9 files changed, 254 insertions(+), 254 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-09-17 06:53:22 UTC (rev 97301)
+++ community-i686/PKGBUILD 2013-09-17 06:53:23 UTC (rev 97302)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
-# Contributor: Bob Fanger  bfanger(at)gmail 
-# Contributor: Filip fila pruda com, Det  nimetonmaili(at)gmail 
-
-pkgname=r8168
-pkgver=8.036.00
-pkgrel=9
-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')
-source=(http://r8168.googlecode.com/files/$pkgname-$pkgver.tar.bz2 
linux-3.10.patch)
-install=$pkgname.install
-
-prepare() {
-   cd $pkgname-$pkgver
-   patch -p0 -i $srcdir/linux-3.10.patch
-}
-
-build() {
-   _kernver=$(pacman -Q linux | cut -d . -f 2 | cut -f 1 -d -)
-   KERNEL_RELEASE=$(cat 
/usr/lib/modules/extramodules-3.$_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_RELEASE/build \
-   SUBDIRS=$srcdir/$pkgname-$pkgver/src \
-   EXTRA_CFLAGS=-DCONFIG_R8168_NAPI -DCONFIG_R8168_VLAN \
-   modules
-}
-
-package() {
-   _kernver=$(pacman -Q linux | cut -d . -f 2 | cut -f 1 -d -)
-   depends=(linux=3.${_kernver} linux3.$(expr ${_kernver} + 1))
-   KERNEL_VERSION=$(cat 
/usr/lib/modules/extramodules-3.$_kernver-ARCH/version)
-   msg Kernel = $KERNEL_VERSION
-
-   cd $pkgname-$pkgver
-   install -Dm644 src/$pkgname.ko 
$pkgdir/usr/lib/modules/extramodules-3.$_kernver-ARCH/$pkgname.ko
-   find $pkgdir -name '*.ko' -exec gzip -9 {} +
-
-   sed -i s|extramodules-.*-ARCH|extramodules-3.$_kernver-ARCH| 
$startdir/$pkgname.install
-}
-
-sha256sums=('937fd5d7d4cbfc95cf2859d8c3beb15a8536dc4e41752f7a53f2a25f07cdcd33'
-'1fb115b4d1b6b058d23322b89fad52d29748ce75b2774815e72c679a235d0e87')

Copied: r8168/repos/community-i686/PKGBUILD (from rev 97300, 
r8168/repos/community-testing-i686/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-09-17 06:53:23 UTC (rev 97302)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
+# Contributor: Bob Fanger  bfanger(at)gmail 
+# Contributor: Filip fila pruda com, Det  nimetonmaili(at)gmail 
+
+pkgname=r8168
+pkgver=8.036.00
+pkgrel=11
+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')
+source=(http://r8168.googlecode.com/files/$pkgname-$pkgver.tar.bz2 
linux-3.10.patch)
+install=$pkgname.install
+
+prepare() {
+   cd $pkgname-$pkgver
+   patch -p0 -i $srcdir/linux-3.10.patch
+}
+
+build() {
+   _kernver=$(pacman -Q linux | cut -d . -f 2 | cut 

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

2013-09-17 Thread Tobias Powalowski
Date: Tuesday, September 17, 2013 @ 08:53:26
  Author: tpowa
Revision: 97304

db-move: moved tp_smapi from [community-testing] to [community] (i686, x86_64)

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

---+
 /PKGBUILD |  118 
 /tp_smapi.install |   26 +++
 community-i686/PKGBUILD   |   59 --
 community-i686/tp_smapi.install   |   13 ---
 community-x86_64/PKGBUILD |   59 --
 community-x86_64/tp_smapi.install |   13 ---
 6 files changed, 144 insertions(+), 144 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-09-17 06:53:24 UTC (rev 97303)
+++ community-i686/PKGBUILD 2013-09-17 06:53:26 UTC (rev 97304)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Lukas Fleischer archlinux at cryptocrack dot de
-# Contributor: xduugu
-# Contributor: nh2
-# Contributor: Steven Davidovitz steviedizzle ð gmail đ com
-# Contributor: Nick B Shirakawasuna ð gmail đ com
-# Contributor: Christof Musik christof ð senfdax đ de
-# Contributor: Stefan Rupp archlinux ð stefanrupp đ de
-# Contributor: Ignas Anikevicius anikevicius ð gmail đ com
-
-pkgname=tp_smapi
-pkgver=0.41
-pkgrel=33
-pkgdesc=Modules for ThinkPad's SMAPI functionality
-arch=('i686' 'x86_64')
-url='https://github.com/evgeni/tp_smapi'
-license=('GPL')
-depends=('linux=3.10' 'linux3.11')
-makedepends=('linux-headers=3.10' 'linux-headers3.11')
-install=${pkgname}.install
-source=(https://github.com/downloads/evgeni/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('63c683415c764568f6bf17c7eabe4752')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  _kernver=${_kernver:-$(uname -r)}
-  _extramodules=$(readlink -f /usr/lib/modules/${_kernver}/extramodules || 
true)
-  _kernver=$( ${_extramodules}/version)
-
-  sed -ri -e s/^(KVER\s*:=).*$/\1 ${_kernver}/ \
- -e s#^(KBASE\s*:=).*\$#\1 ${_extramodules%/*}/${_kernver}# Makefile
-
-  make HDAPS=1
-}
-
-package() {
-  _kernver=${_kernver:-$(uname -r)}
-  _extramodules=$(readlink -f /usr/lib/modules/${_kernver}/extramodules || 
true)
-  _kernver=$( ${_extramodules}/version)
-
-  make -C ${_extramodules%/*}/${_kernver}/build \
-INSTALL_MOD_PATH=${pkgdir}/${_extramodules%%/lib/*} \
-M=${srcdir}/${pkgname}-${pkgver} modules_install
-
-  cd ${pkgdir}/${_extramodules%/*}
-  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${_extramodules}# 
${startdir}/${pkgname}.install
-}

Copied: tp_smapi/repos/community-i686/PKGBUILD (from rev 97300, 
tp_smapi/repos/community-testing-i686/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-09-17 06:53:26 UTC (rev 97304)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Lukas Fleischer archlinux at cryptocrack dot de
+# Contributor: xduugu
+# Contributor: nh2
+# Contributor: Steven Davidovitz steviedizzle ð gmail đ com
+# Contributor: Nick B Shirakawasuna ð gmail đ com
+# Contributor: Christof Musik christof ð senfdax đ de
+# Contributor: Stefan Rupp archlinux ð stefanrupp đ de
+# Contributor: Ignas Anikevicius anikevicius ð gmail đ com
+
+pkgname=tp_smapi
+pkgver=0.41
+pkgrel=35
+pkgdesc=Modules for ThinkPad's SMAPI functionality
+arch=('i686' 'x86_64')
+url='https://github.com/evgeni/tp_smapi'
+license=('GPL')
+depends=('linux=3.11' 'linux3.12')
+makedepends=('linux-headers=3.11' 'linux-headers3.12')
+install=${pkgname}.install
+source=(https://github.com/downloads/evgeni/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('63c683415c764568f6bf17c7eabe4752')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  _kernver=${_kernver:-$(uname -r)}
+  _extramodules=$(readlink -f /usr/lib/modules/${_kernver}/extramodules || 
true)
+  _kernver=$( 

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

2013-09-17 Thread Tobias Powalowski
Date: Tuesday, September 17, 2013 @ 08:53:24
  Author: tpowa
Revision: 97303

db-move: moved rt3562sta from [community-testing] to [community] (i686, x86_64)

Added:
  rt3562sta/repos/community-i686/PKGBUILD
(from rev 97300, rt3562sta/repos/community-testing-i686/PKGBUILD)
  rt3562sta/repos/community-i686/linux-3.8.patch
(from rev 97300, rt3562sta/repos/community-testing-i686/linux-3.8.patch)
  rt3562sta/repos/community-i686/rt3562sta-2.4.1.1-WPA-mixed.patch
(from rev 97300, 
rt3562sta/repos/community-testing-i686/rt3562sta-2.4.1.1-WPA-mixed.patch)
  rt3562sta/repos/community-i686/rt3562sta-2.4.1.1-config.patch
(from rev 97300, 
rt3562sta/repos/community-testing-i686/rt3562sta-2.4.1.1-config.patch)
  
rt3562sta/repos/community-i686/rt3562sta-2.4.1.1-convert-devicename-to-wlanX.patch
(from rev 97300, 
rt3562sta/repos/community-testing-i686/rt3562sta-2.4.1.1-convert-devicename-to-wlanX.patch)
  rt3562sta/repos/community-i686/rt3562sta-2.4.1.1-gcc-warnings-x86_64.patch
(from rev 97300, 
rt3562sta/repos/community-testing-i686/rt3562sta-2.4.1.1-gcc-warnings-x86_64.patch)
  rt3562sta/repos/community-i686/rt3562sta-2.4.1.1-reduce_debug_output.patch
(from rev 97300, 
rt3562sta/repos/community-testing-i686/rt3562sta-2.4.1.1-reduce_debug_output.patch)
  
rt3562sta/repos/community-i686/rt3562sta-2.4.1.1-remove-potential-conflicts-with-rt2860sta.patch
(from rev 97300, 
rt3562sta/repos/community-testing-i686/rt3562sta-2.4.1.1-remove-potential-conflicts-with-rt2860sta.patch)
  rt3562sta/repos/community-i686/rt3562sta-2.4.1.1-remove_date_time.patch
(from rev 97300, 
rt3562sta/repos/community-testing-i686/rt3562sta-2.4.1.1-remove_date_time.patch)
  rt3562sta/repos/community-i686/rt3562sta-2.4.1.1-return_nonvoid.patch
(from rev 97300, 
rt3562sta/repos/community-testing-i686/rt3562sta-2.4.1.1-return_nonvoid.patch)
  rt3562sta/repos/community-i686/rt3562sta.install
(from rev 97300, rt3562sta/repos/community-testing-i686/rt3562sta.install)
  rt3562sta/repos/community-x86_64/PKGBUILD
(from rev 97300, rt3562sta/repos/community-testing-x86_64/PKGBUILD)
  rt3562sta/repos/community-x86_64/linux-3.8.patch
(from rev 97300, rt3562sta/repos/community-testing-x86_64/linux-3.8.patch)
  rt3562sta/repos/community-x86_64/rt3562sta-2.4.1.1-WPA-mixed.patch
(from rev 97300, 
rt3562sta/repos/community-testing-x86_64/rt3562sta-2.4.1.1-WPA-mixed.patch)
  rt3562sta/repos/community-x86_64/rt3562sta-2.4.1.1-config.patch
(from rev 97300, 
rt3562sta/repos/community-testing-x86_64/rt3562sta-2.4.1.1-config.patch)
  
rt3562sta/repos/community-x86_64/rt3562sta-2.4.1.1-convert-devicename-to-wlanX.patch
(from rev 97300, 
rt3562sta/repos/community-testing-x86_64/rt3562sta-2.4.1.1-convert-devicename-to-wlanX.patch)
  rt3562sta/repos/community-x86_64/rt3562sta-2.4.1.1-gcc-warnings-x86_64.patch
(from rev 97300, 
rt3562sta/repos/community-testing-x86_64/rt3562sta-2.4.1.1-gcc-warnings-x86_64.patch)
  rt3562sta/repos/community-x86_64/rt3562sta-2.4.1.1-reduce_debug_output.patch
(from rev 97300, 
rt3562sta/repos/community-testing-x86_64/rt3562sta-2.4.1.1-reduce_debug_output.patch)
  
rt3562sta/repos/community-x86_64/rt3562sta-2.4.1.1-remove-potential-conflicts-with-rt2860sta.patch
(from rev 97300, 
rt3562sta/repos/community-testing-x86_64/rt3562sta-2.4.1.1-remove-potential-conflicts-with-rt2860sta.patch)
  rt3562sta/repos/community-x86_64/rt3562sta-2.4.1.1-remove_date_time.patch
(from rev 97300, 
rt3562sta/repos/community-testing-x86_64/rt3562sta-2.4.1.1-remove_date_time.patch)
  rt3562sta/repos/community-x86_64/rt3562sta-2.4.1.1-return_nonvoid.patch
(from rev 97300, 
rt3562sta/repos/community-testing-x86_64/rt3562sta-2.4.1.1-return_nonvoid.patch)
  rt3562sta/repos/community-x86_64/rt3562sta.install
(from rev 97300, rt3562sta/repos/community-testing-x86_64/rt3562sta.install)
Deleted:
  rt3562sta/repos/community-i686/PKGBUILD
  rt3562sta/repos/community-i686/linux-3.8.patch
  rt3562sta/repos/community-i686/rt3562sta-2.4.1.1-WPA-mixed.patch
  rt3562sta/repos/community-i686/rt3562sta-2.4.1.1-config.patch
  
rt3562sta/repos/community-i686/rt3562sta-2.4.1.1-convert-devicename-to-wlanX.patch
  rt3562sta/repos/community-i686/rt3562sta-2.4.1.1-gcc-warnings-x86_64.patch
  rt3562sta/repos/community-i686/rt3562sta-2.4.1.1-reduce_debug_output.patch
  
rt3562sta/repos/community-i686/rt3562sta-2.4.1.1-remove-potential-conflicts-with-rt2860sta.patch
  rt3562sta/repos/community-i686/rt3562sta-2.4.1.1-remove_date_time.patch
  rt3562sta/repos/community-i686/rt3562sta-2.4.1.1-return_nonvoid.patch
  rt3562sta/repos/community-i686/rt3562sta.install
  rt3562sta/repos/community-testing-i686/
  rt3562sta/repos/community-testing-x86_64/
  rt3562sta/repos/community-x86_64/PKGBUILD
  rt3562sta/repos/community-x86_64/linux-3.8.patch
  rt3562sta/repos/community-x86_64/rt3562sta-2.4.1.1-WPA-mixed.patch
  rt3562sta/repos/community-x86_64/rt3562sta-2.4.1.1-config.patch
  

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

2013-09-17 Thread Tobias Powalowski
Date: Tuesday, September 17, 2013 @ 08:53:28
  Author: tpowa
Revision: 97306

db-move: moved virtualbox-modules from [community-testing] to [community] 
(i686, x86_64)

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

---+
 /PKGBUILD |  124 
 /build.sh |  120 +++
 /virtualbox-guest-modules.install |   42 ++
 /virtualbox-host-modules.install  |   46 +++
 community-i686/PKGBUILD   |   62 --
 community-i686/build.sh   |   60 -
 community-i686/virtualbox-guest-modules.install   |   21 ---
 community-i686/virtualbox-host-modules.install|   23 ---
 community-x86_64/PKGBUILD |   62 --
 community-x86_64/build.sh |   60 -
 community-x86_64/virtualbox-guest-modules.install |   21 ---
 community-x86_64/virtualbox-host-modules.install  |   23 ---
 12 files changed, 332 insertions(+), 332 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-09-17 06:53:27 UTC (rev 97305)
+++ community-i686/PKGBUILD 2013-09-17 06:53:28 UTC (rev 97306)
@@ -1,62 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru ib...@archlinux.org
-# Maintainer: Sébastien Luttringer
-
-pkgbase=virtualbox-modules
-pkgname=('virtualbox-host-modules' 'virtualbox-guest-modules')
-pkgver=4.2.18
-pkgrel=1
-arch=('i686' 'x86_64')
-url='http://virtualbox.org'
-license=('GPL')
-makedepends=('linux=3.10' 'linux3.11'
- 'linux-headers=3.10' 'linux-headers3.11'
- virtualbox-host-dkms=$pkgver
- virtualbox-guest-dkms=$pkgver)
-
-# remember to also adjust the .install files and the package deps below
-_extramodules=extramodules-3.10-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=3.10' 'linux3.11')
-  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=3.10' 'linux3.11')
-  replaces=('virtualbox-archlinux-modules')
-  

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

2013-09-17 Thread Tobias Powalowski
Date: Tuesday, September 17, 2013 @ 08:57:47
  Author: tpowa
Revision: 194517

db-move: moved linux-firmware from [testing] to [core] (any)

Added:
  linux-firmware/repos/core-any/PKGBUILD
(from rev 194516, linux-firmware/repos/testing-any/PKGBUILD)
Deleted:
  linux-firmware/repos/core-any/PKGBUILD
  linux-firmware/repos/testing-any/

---+
 /PKGBUILD |   55 
 core-any/PKGBUILD |   54 ---
 2 files changed, 55 insertions(+), 54 deletions(-)

Deleted: core-any/PKGBUILD
===
--- core-any/PKGBUILD   2013-09-17 06:52:22 UTC (rev 194516)
+++ core-any/PKGBUILD   2013-09-17 06:57:47 UTC (rev 194517)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Thomas Bächler tho...@archlinux.org
-
-pkgname=linux-firmware
-pkgver=20130725
-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://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git#branch=master')
-md5sums=('SKIP')
-pkgver() {
-  date +%Y%m%d
-}
-
-package() {
-  cd ${srcdir}/${pkgname}
-  # remove not needed Makefile #35236
-  rm Makefile
-  install -d -m755 ${pkgdir}/usr/lib/firmware
-  cp -a * ${pkgdir}/usr/lib/firmware/
-  install -d -m755 ${pkgdir}/usr/share/licenses/linux-firmware/
-  rm -f ${pkgdir}/usr/lib/firmware/{README*,configure,GPL*}
-  mv ${pkgdir}/usr/lib/firmware/{LICEN*,WHENCE} 
${pkgdir}/usr/share/licenses/linux-firmware/
-}
-# vim:set ts=2 sw=2 et:

Copied: linux-firmware/repos/core-any/PKGBUILD (from rev 194516, 
linux-firmware/repos/testing-any/PKGBUILD)
===
--- core-any/PKGBUILD   (rev 0)
+++ core-any/PKGBUILD   2013-09-17 06:57:47 UTC (rev 194517)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Thomas Bächler tho...@archlinux.org
+
+pkgname=linux-firmware
+pkgver=20130903
+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://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git#branch=master')
+md5sums=('SKIP')
+
+pkgver() {
+  date +%Y%m%d
+}
+
+package() {
+  cd ${srcdir}/${pkgname}
+  # remove not needed Makefile #35236
+  rm Makefile
+  install -d -m755 ${pkgdir}/usr/lib/firmware
+  cp -a * ${pkgdir}/usr/lib/firmware/
+  install -d -m755 ${pkgdir}/usr/share/licenses/linux-firmware/
+  rm -f ${pkgdir}/usr/lib/firmware/{README*,configure,GPL*}
+  mv ${pkgdir}/usr/lib/firmware/{LICEN*,WHENCE} 
${pkgdir}/usr/share/licenses/linux-firmware/
+}
+# vim:set ts=2 sw=2 et:



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

2013-09-17 Thread Jan Steffens
Date: Tuesday, September 17, 2013 @ 09:16:02
  Author: heftig
Revision: 194518

and fix the sum

Modified:
  firefox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-17 06:57:47 UTC (rev 194517)
+++ PKGBUILD2013-09-17 07:16:02 UTC (rev 194518)
@@ -26,7 +26,7 @@
 mozconfig firefox.desktop firefox-install-dir.patch vendor.js 
shared-libs.patch
 firefox-20.0.1-fixed-loading-icon.png)
 sha256sums=('86a6efa501e1b106b597a8506757f3a2db9d3a5cfcc61ea29a9ad0c834bea83b'
-'b94ec94cb5e4bbeb45637425bb4efa3051a16ed12cea2ee3b0a5b9cb48ef4115'
+'2d7d1b909ebb22e6108532d3aded0d0010f785cf23044d4a98c276bb3be047ff'
 'd2a7610393ba259c35e3227b92e02ec91095a95189f56ac93ccdf6732772719c'
 'ded67e8204bd5e1c0c5771c0d2c84ff80c998e1543711e7cd804cfe29e8dd1b0'
 '4b50e9aec03432e21b44d18c4c97b2630bace606b033f7d556c9d3e3eb0f4fa4'



[arch-commits] Commit in cinnamon/repos (staging-i686 staging-x86_64)

2013-09-17 Thread Florian Pritz
Date: Tuesday, September 17, 2013 @ 09:44:51
  Author: bluewind
Revision: 97307

fix repos dir

Deleted:
  cinnamon/repos/staging-i686/
  cinnamon/repos/staging-x86_64/



[arch-commits] Commit in (3 files)

2013-09-17 Thread Florian Pritz
Date: Tuesday, September 17, 2013 @ 09:51:58
  Author: bluewind
Revision: 97308

and even more repo fixes -.-

Deleted:
  ipython/repos/testing-any/
  isodate/repos/testing-any/
  python-irc/repos/testing-any/



[arch-commits] Commit in r8168-lts/trunk (PKGBUILD linux-3.10.patch r8168-lts.install)

2013-09-17 Thread Bartłomiej Piotrowski
Date: Tuesday, September 17, 2013 @ 10:31:49
  Author: bpiotrowski
Revision: 97309

upgpkg: r8168-lts 8.036.00-1

- rebuild against linux-lts 3.0.12

Added:
  r8168-lts/trunk/linux-3.10.patch
Modified:
  r8168-lts/trunk/PKGBUILD
  r8168-lts/trunk/r8168-lts.install

---+
 PKGBUILD  |   21 --
 linux-3.10.patch  |   59 
 r8168-lts.install |2 -
 3 files changed, 74 insertions(+), 8 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-09-17 07:51:58 UTC (rev 97308)
+++ PKGBUILD2013-09-17 08:31:49 UTC (rev 97309)
@@ -3,19 +3,25 @@
 
 pkgname=r8168-lts
 _pkgname=r8168
-pkgver=8.035.00
-pkgrel=4
+pkgver=8.036.00
+pkgrel=1
 pkgdesc=A kernel module for Realtek 8168 network cards for linux-lts
 url=http://www.realtek.com.tw;
 license=(GPL)
 arch=('i686' 'x86_64')
-depends=('glibc' linux-lts=3.0 linux-lts3.1)
-makedepends=(linux-lts-headers=3.0 linux-lts-headers3.1)
-source=(http://r8168.googlecode.com/files/$_pkgname-$pkgver.tar.bz2)
+depends=('glibc' linux-lts=3.10 linux-lts3.11)
+makedepends=(linux-lts-headers=3.10 linux-lts-headers3.11)
+source=(http://r8168.googlecode.com/files/$_pkgname-$pkgver.tar.bz2
+linux-3.10.patch)
 install=$pkgname.install
 
-_extramodules=extramodules-3.0-lts
+_extramodules=extramodules-3.10-lts
 
+prepare() {
+   cd $_pkgname-$pkgver
+patch -p0 -i ../linux-3.10.patch
+}
+
 build() {
cd $_pkgname-$pkgver
local _kernver=$(cat /usr/lib/modules/$_extramodules/version)
@@ -31,4 +37,5 @@
find $pkgdir -name '*.ko' -exec gzip -9 {} +
 }
 
-sha256sums=('b904d31fc9bd6c97cc34479a0eba0e3a9bba5351a43b56dd5fff6b7dc1a5df73')
+sha256sums=('937fd5d7d4cbfc95cf2859d8c3beb15a8536dc4e41752f7a53f2a25f07cdcd33'
+'1fb115b4d1b6b058d23322b89fad52d29748ce75b2774815e72c679a235d0e87')

Added: linux-3.10.patch
===
--- linux-3.10.patch(rev 0)
+++ linux-3.10.patch2013-09-17 08:31:49 UTC (rev 97309)
@@ -0,0 +1,59 @@
+--- src/r8168_n.c.orig 2013-07-02 14:20:27.355887286 +0200
 src/r8168_n.c  2013-07-02 14:24:25.302573010 +0200
+@@ -52,6 +52,10 @@
+ #include linux/init.h
+ #include linux/rtnetlink.h
+ 
++#if LINUX_VERSION_CODE = KERNEL_VERSION(3,10,0)
++#include linux/if_ether.h
++#endif
++
+ #if LINUX_VERSION_CODE = KERNEL_VERSION(2,6,26)
+ #include linux/pci-aspm.h
+ #endif
+@@ -2232,6 +2236,9 @@
+swab16(opts2  0x));
+ ret = 0;
+ }
++#elif LINUX_VERSION_CODE = KERNEL_VERSION(3,10,0)
++  if (opts2  RxVlanTag)
++  __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), swab16(opts2  
0x));
+ #else
+ if (opts2  RxVlanTag)
+ __vlan_hwaccel_put_tag(skb, swab16(opts2  0x));
+@@ -2295,7 +2302,11 @@
+ else
+ tp-cp_cmd = ~RxChkSum;
+ 
++#if LINUX_VERSION_CODE = KERNEL_VERSION(3,10,0)
++  if (dev-features  NETIF_F_HW_VLAN_CTAG_RX)
++#else
+ if (dev-features  NETIF_F_HW_VLAN_RX)
++#endif
+ tp-cp_cmd |= RxVlan;
+ else
+ tp-cp_cmd = ~RxVlan;
+@@ -16195,7 +16206,11 @@
+ 
+ #ifdef CONFIG_R8168_VLAN
+ if (tp-mcfg != CFG_METHOD_DEFAULT) {
++#if LINUX_VERSION_CODE = KERNEL_VERSION(3,10,0)
++  dev-features |= NETIF_F_HW_VLAN_CTAG_TX | 
NETIF_F_HW_VLAN_CTAG_RX;
++#else
+ dev-features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
++#endif
+ #if LINUX_VERSION_CODE  KERNEL_VERSION(2,6,22)
+ dev-vlan_rx_kill_vid = rtl8168_vlan_rx_kill_vid;
+ #endif //LINUX_VERSION_CODE  KERNEL_VERSION(2,6,22)
+@@ -16210,7 +16225,11 @@
+ #else
+ dev-features |= NETIF_F_RXCSUM;
+ dev-hw_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO |
++#if LINUX_VERSION_CODE = KERNEL_VERSION(3,10,0)
++   NETIF_F_RXCSUM | NETIF_F_HW_VLAN_CTAG_TX | 
NETIF_F_HW_VLAN_CTAG_RX;
++#else
+NETIF_F_RXCSUM | NETIF_F_HW_VLAN_TX | 
NETIF_F_HW_VLAN_RX;
++#endif
+ dev-vlan_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO |
+  NETIF_F_HIGHDMA;
+ #endif

Modified: r8168-lts.install
===
--- r8168-lts.install   2013-09-17 07:51:58 UTC (rev 97308)
+++ r8168-lts.install   2013-09-17 08:31:49 UTC (rev 97309)
@@ -1,5 +1,5 @@
 rebuild_module_dependencies() {
-   EXTRAMODULES='extramodules-3.0-lts'
+   EXTRAMODULES='extramodules-3.10-lts'
depmod $(cat /lib/modules/$EXTRAMODULES/version)
 }
 



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

2013-09-17 Thread Bartłomiej Piotrowski
Date: Tuesday, September 17, 2013 @ 10:31:59
  Author: bpiotrowski
Revision: 97310

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

Added:
  r8168-lts/repos/community-testing-i686/
  r8168-lts/repos/community-testing-i686/PKGBUILD
(from rev 97309, r8168-lts/trunk/PKGBUILD)
  r8168-lts/repos/community-testing-i686/linux-3.10.patch
(from rev 97309, r8168-lts/trunk/linux-3.10.patch)
  r8168-lts/repos/community-testing-i686/r8168-lts.install
(from rev 97309, r8168-lts/trunk/r8168-lts.install)
  r8168-lts/repos/community-testing-x86_64/
  r8168-lts/repos/community-testing-x86_64/PKGBUILD
(from rev 97309, r8168-lts/trunk/PKGBUILD)
  r8168-lts/repos/community-testing-x86_64/linux-3.10.patch
(from rev 97309, r8168-lts/trunk/linux-3.10.patch)
  r8168-lts/repos/community-testing-x86_64/r8168-lts.install
(from rev 97309, r8168-lts/trunk/r8168-lts.install)

+
 community-testing-i686/PKGBUILD|   41 ++
 community-testing-i686/linux-3.10.patch|   59 +++
 community-testing-i686/r8168-lts.install   |   17 +++
 community-testing-x86_64/PKGBUILD  |   41 ++
 community-testing-x86_64/linux-3.10.patch  |   59 +++
 community-testing-x86_64/r8168-lts.install |   17 +++
 6 files changed, 234 insertions(+)

Copied: r8168-lts/repos/community-testing-i686/PKGBUILD (from rev 97309, 
r8168-lts/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2013-09-17 08:31:59 UTC (rev 97310)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
+
+pkgname=r8168-lts
+_pkgname=r8168
+pkgver=8.036.00
+pkgrel=1
+pkgdesc=A kernel module for Realtek 8168 network cards for linux-lts
+url=http://www.realtek.com.tw;
+license=(GPL)
+arch=('i686' 'x86_64')
+depends=('glibc' linux-lts=3.10 linux-lts3.11)
+makedepends=(linux-lts-headers=3.10 linux-lts-headers3.11)
+source=(http://r8168.googlecode.com/files/$_pkgname-$pkgver.tar.bz2
+linux-3.10.patch)
+install=$pkgname.install
+
+_extramodules=extramodules-3.10-lts
+
+prepare() {
+   cd $_pkgname-$pkgver
+patch -p0 -i ../linux-3.10.patch
+}
+
+build() {
+   cd $_pkgname-$pkgver
+   local _kernver=$(cat /usr/lib/modules/$_extramodules/version)
+   make -C /usr/lib/modules/$_kernver/build \
+   SUBDIRS=$srcdir/$_pkgname-$pkgver/src \
+   EXTRA_CFLAGS=-DCONFIG_R8168_NAPI -DCONFIG_R8168_VLAN \
+   modules
+}
+
+package() {
+   cd $_pkgname-$pkgver
+   install -Dm644 src/$_pkgname.ko 
$pkgdir/usr/lib/modules/$_extramodules/$_pkgname.ko
+   find $pkgdir -name '*.ko' -exec gzip -9 {} +
+}
+
+sha256sums=('937fd5d7d4cbfc95cf2859d8c3beb15a8536dc4e41752f7a53f2a25f07cdcd33'
+'1fb115b4d1b6b058d23322b89fad52d29748ce75b2774815e72c679a235d0e87')

Copied: r8168-lts/repos/community-testing-i686/linux-3.10.patch (from rev 
97309, r8168-lts/trunk/linux-3.10.patch)
===
--- community-testing-i686/linux-3.10.patch (rev 0)
+++ community-testing-i686/linux-3.10.patch 2013-09-17 08:31:59 UTC (rev 
97310)
@@ -0,0 +1,59 @@
+--- src/r8168_n.c.orig 2013-07-02 14:20:27.355887286 +0200
 src/r8168_n.c  2013-07-02 14:24:25.302573010 +0200
+@@ -52,6 +52,10 @@
+ #include linux/init.h
+ #include linux/rtnetlink.h
+ 
++#if LINUX_VERSION_CODE = KERNEL_VERSION(3,10,0)
++#include linux/if_ether.h
++#endif
++
+ #if LINUX_VERSION_CODE = KERNEL_VERSION(2,6,26)
+ #include linux/pci-aspm.h
+ #endif
+@@ -2232,6 +2236,9 @@
+swab16(opts2  0x));
+ ret = 0;
+ }
++#elif LINUX_VERSION_CODE = KERNEL_VERSION(3,10,0)
++  if (opts2  RxVlanTag)
++  __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), swab16(opts2  
0x));
+ #else
+ if (opts2  RxVlanTag)
+ __vlan_hwaccel_put_tag(skb, swab16(opts2  0x));
+@@ -2295,7 +2302,11 @@
+ else
+ tp-cp_cmd = ~RxChkSum;
+ 
++#if LINUX_VERSION_CODE = KERNEL_VERSION(3,10,0)
++  if (dev-features  NETIF_F_HW_VLAN_CTAG_RX)
++#else
+ if (dev-features  NETIF_F_HW_VLAN_RX)
++#endif
+ tp-cp_cmd |= RxVlan;
+ else
+ tp-cp_cmd = ~RxVlan;
+@@ -16195,7 +16206,11 @@
+ 
+ #ifdef CONFIG_R8168_VLAN
+ if (tp-mcfg != CFG_METHOD_DEFAULT) {
++#if LINUX_VERSION_CODE = KERNEL_VERSION(3,10,0)
++  dev-features |= NETIF_F_HW_VLAN_CTAG_TX | 
NETIF_F_HW_VLAN_CTAG_RX;
++#else
+ dev-features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
++#endif
+ #if LINUX_VERSION_CODE  KERNEL_VERSION(2,6,22)
+ dev-vlan_rx_kill_vid = rtl8168_vlan_rx_kill_vid;
+ #endif //LINUX_VERSION_CODE  KERNEL_VERSION(2,6,22)
+@@ -16210,7 

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

2013-09-17 Thread Bartłomiej Piotrowski
Date: Tuesday, September 17, 2013 @ 10:41:20
  Author: bpiotrowski
Revision: 97311

upgpkg: virtualbox-modules-lts 4.2.18-2

- rebuild against linux-lts 3.10.12

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

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-17 08:31:59 UTC (rev 97310)
+++ PKGBUILD2013-09-17 08:41:20 UTC (rev 97311)
@@ -6,17 +6,17 @@
 pkgbase=virtualbox-modules-lts
 pkgname=('virtualbox-host-modules-lts' 'virtualbox-guest-modules-lts')
 pkgver=4.2.18
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url='http://virtualbox.org'
 license=('GPL')
-makedepends=('linux-lts=3.0' 'linux-lts3.1'
- 'linux-lts-headers=3.0' 'linux-lts-headers3.1'
+makedepends=('linux-lts=3.10' 'linux-lts3.11'
+ 'linux-lts-headers=3.10' 'linux-lts-headers3.11'
  virtualbox-host-dkms=$pkgver
  virtualbox-guest-dkms=$pkgver)
 
 # remember to also adjust the .install files and the package deps below
-_extramodules=extramodules-3.0-lts
+_extramodules=extramodules-3.10-lts
 
 build() {
   _kernver=$(cat /usr/lib/modules/$_extramodules/version)
@@ -34,7 +34,7 @@
 package_virtualbox-host-modules-lts(){
   _kernver=$(cat /usr/lib/modules/$_extramodules/version)
   pkgdesc='Host kernel modules for VirtualBox'
-  depends=('linux-lts=3.0' 'linux-lts3.1')
+  depends=('linux-lts=3.10' 'linux-lts3.11')
   replaces=('virtualbox-modules-lts')
   conflicts=('virtualbox-modules-lts')
   provides=(virtualbox-host-modules=$pkgver)
@@ -50,7 +50,7 @@
   _kernver=$(cat /usr/lib/modules/$_extramodules/version)
   pkgdesc='Guest kernel modules for VirtualBox'
   license=('GPL')
-  depends=('linux-lts=3.0' 'linux-lts3.1')
+  depends=('linux-lts=3.10' 'linux-lts3.11')
   replaces=('virtualbox-archlinux-modules-lts')
   conflicts=('virtualbox-archlinux-modules-lts')
   provides=(virtualbox-host-modules=$pkgver)

Modified: virtualbox-guest-modules-lts.install
===
--- virtualbox-guest-modules-lts.install2013-09-17 08:31:59 UTC (rev 
97310)
+++ virtualbox-guest-modules-lts.install2013-09-17 08:41:20 UTC (rev 
97311)
@@ -1,5 +1,5 @@
 _depmod() {
-  EXTRAMODULES=extramodules-3.0-lts
+  EXTRAMODULES=extramodules-3.10-lts
   depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
 }
 

Modified: virtualbox-host-modules-lts.install
===
--- virtualbox-host-modules-lts.install 2013-09-17 08:31:59 UTC (rev 97310)
+++ virtualbox-host-modules-lts.install 2013-09-17 08:41:20 UTC (rev 97311)
@@ -1,5 +1,5 @@
 _depmod() {
-  EXTRAMODULES=extramodules-3.0-lts
+  EXTRAMODULES=extramodules-3.10-lts
   depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
 }
 



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

2013-09-17 Thread Bartłomiej Piotrowski
Date: Tuesday, September 17, 2013 @ 10:41:32
  Author: bpiotrowski
Revision: 97312

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

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

---+
 community-testing-i686/PKGBUILD   |   65 ++
 community-testing-i686/build.sh   |   60 +
 community-testing-i686/virtualbox-guest-modules-lts.install   |   21 +++
 community-testing-i686/virtualbox-host-modules-lts.install|   23 +++
 community-testing-x86_64/PKGBUILD |   65 ++
 community-testing-x86_64/build.sh |   60 +
 community-testing-x86_64/virtualbox-guest-modules-lts.install |   21 +++
 community-testing-x86_64/virtualbox-host-modules-lts.install  |   23 +++
 8 files changed, 338 insertions(+)

Copied: virtualbox-modules-lts/repos/community-testing-i686/PKGBUILD (from rev 
97311, virtualbox-modules-lts/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2013-09-17 08:41:32 UTC (rev 97312)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Bartłomiej Piotrowski nos...@bpiotrowski.pl
+# Contributor: Ionut Biru ib...@archlinux.org
+# Contributor: Sébastien Luttringer
+
+pkgbase=virtualbox-modules-lts
+pkgname=('virtualbox-host-modules-lts' 'virtualbox-guest-modules-lts')
+pkgver=4.2.18
+pkgrel=2
+arch=('i686' 'x86_64')
+url='http://virtualbox.org'
+license=('GPL')
+makedepends=('linux-lts=3.10' 'linux-lts3.11'
+ 'linux-lts-headers=3.10' 'linux-lts-headers3.11'
+ virtualbox-host-dkms=$pkgver
+ virtualbox-guest-dkms=$pkgver)
+
+# remember to also adjust the .install files and the package deps below
+_extramodules=extramodules-3.10-lts
+
+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-lts(){
+  _kernver=$(cat /usr/lib/modules/$_extramodules/version)
+  pkgdesc='Host kernel modules for VirtualBox'
+  depends=('linux-lts=3.10' 'linux-lts3.11')
+  replaces=('virtualbox-modules-lts')
+  conflicts=('virtualbox-modules-lts')
+  provides=(virtualbox-host-modules=$pkgver)
+  install=virtualbox-host-modules-lts.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-lts(){
+  _kernver=$(cat /usr/lib/modules/$_extramodules/version)
+  pkgdesc='Guest kernel modules for VirtualBox'
+  license=('GPL')
+  depends=('linux-lts=3.10' 'linux-lts3.11')
+  replaces=('virtualbox-archlinux-modules-lts')
+  conflicts=('virtualbox-archlinux-modules-lts')
+  provides=(virtualbox-host-modules=$pkgver)
+  install=virtualbox-guest-modules-lts.install
+
+  cd dkms/vboxguest/$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 {} +
+}
+
+# vim:set ts=2 sw=2 et:

Copied: virtualbox-modules-lts/repos/community-testing-i686/build.sh (from 

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

2013-09-17 Thread Bartłomiej Piotrowski
Date: Tuesday, September 17, 2013 @ 10:45:43
  Author: bpiotrowski
Revision: 97313

upgpkg: tp_smapi-lts 0.41-13

- rebuild against linux-lts 3.10.12

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

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-17 08:41:32 UTC (rev 97312)
+++ PKGBUILD2013-09-17 08:45:43 UTC (rev 97313)
@@ -9,15 +9,15 @@
 
 pkgname=tp_smapi-lts
 _pkgname=tp_smapi
-_extramodules=/usr/lib/modules/extramodules-3.0-lts
+_extramodules=/usr/lib/modules/extramodules-3.10-lts
 pkgver=0.41
-pkgrel=12
+pkgrel=13
 pkgdesc=linux-lts modules for ThinkPad's SMAPI functionality
 arch=('i686' 'x86_64')
 url='https://github.com/evgeni/tp_smapi'
 license=('GPL')
-depends=('linux-lts=3.0' 'linux-lts3.1')
-makedepends=('linux-lts-headers=3.0' 'linux-lts-headers3.1')
+depends=('linux-lts=3.10' 'linux-lts3.11')
+makedepends=('linux-lts-headers=3.10' 'linux-lts-headers3.11')
 install=${pkgname}.install
 
source=(https://github.com/downloads/evgeni/${_pkgname}/${_pkgname}-${pkgver}.tar.gz;)
 md5sums=('63c683415c764568f6bf17c7eabe4752')

Modified: tp_smapi-lts.install
===
--- tp_smapi-lts.install2013-09-17 08:41:32 UTC (rev 97312)
+++ tp_smapi-lts.install2013-09-17 08:45:43 UTC (rev 97313)
@@ -1,4 +1,4 @@
-extramodules=/usr/lib/modules/extramodules-3.0-lts
+extramodules=/usr/lib/modules/extramodules-3.10-lts
 
 post_install() {
   depmod -v $( $extramodules/version) /dev/null



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

2013-09-17 Thread Bartłomiej Piotrowski
Date: Tuesday, September 17, 2013 @ 10:45:51
  Author: bpiotrowski
Revision: 97314

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

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

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

Copied: tp_smapi-lts/repos/community-testing-i686/PKGBUILD (from rev 97313, 
tp_smapi-lts/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2013-09-17 08:45:51 UTC (rev 97314)
@@ -0,0 +1,56 @@
+# Maintainer: Lukas Fleischer archlinux at cryptocrack dot de
+# Contributor: xduugu
+# Contributor: nh2
+# Contributor: Steven Davidovitz steviedizzle ð gmail đ com
+# Contributor: Nick B Shirakawasuna ð gmail đ com
+# Contributor: Christof Musik christof ð senfdax đ de
+# Contributor: Stefan Rupp archlinux ð stefanrupp đ de
+# Contributor: Ignas Anikevicius anikevicius ð gmail đ com
+
+pkgname=tp_smapi-lts
+_pkgname=tp_smapi
+_extramodules=/usr/lib/modules/extramodules-3.10-lts
+pkgver=0.41
+pkgrel=13
+pkgdesc=linux-lts modules for ThinkPad's SMAPI functionality
+arch=('i686' 'x86_64')
+url='https://github.com/evgeni/tp_smapi'
+license=('GPL')
+depends=('linux-lts=3.10' 'linux-lts3.11')
+makedepends=('linux-lts-headers=3.10' 'linux-lts-headers3.11')
+install=${pkgname}.install
+source=(https://github.com/downloads/evgeni/${_pkgname}/${_pkgname}-${pkgver}.tar.gz;)
+md5sums=('63c683415c764568f6bf17c7eabe4752')
+
+build() {
+  cd ${srcdir}/${_pkgname}-${pkgver}
+
+  _kernver=$( ${_extramodules}/version)
+
+  sed -ri -e s/^(KVER\s*:=).*$/\1 ${_kernver}/ \
+ -e s#^(KBASE\s*:=).*\$#\1 ${_extramodules%/*}/${_kernver}# Makefile
+
+  make HDAPS=1
+}
+
+package() {
+  _kernver=$( ${_extramodules}/version)
+
+  make -C ${_extramodules%/*}/${_kernver}/build \
+INSTALL_MOD_PATH=${pkgdir}/${_extramodules%%/lib/*} \
+M=${srcdir}/${_pkgname}-${pkgver} modules_install
+
+  cd ${pkgdir}/${_extramodules%/*}
+  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${_extramodules}# 
${startdir}/${pkgname}.install
+}

Copied: tp_smapi-lts/repos/community-testing-i686/tp_smapi-lts.install (from 
rev 97313, tp_smapi-lts/trunk/tp_smapi-lts.install)
===
--- community-testing-i686/tp_smapi-lts.install (rev 0)
+++ community-testing-i686/tp_smapi-lts.install 2013-09-17 08:45:51 UTC (rev 
97314)
@@ -0,0 +1,13 @@
+extramodules=/usr/lib/modules/extramodules-3.10-lts
+
+post_install() {
+  depmod -v $( $extramodules/version) /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: tp_smapi-lts/repos/community-testing-x86_64/PKGBUILD (from rev 97313, 
tp_smapi-lts/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2013-09-17 08:45:51 UTC (rev 97314)
@@ -0,0 +1,56 @@
+# Maintainer: Lukas Fleischer archlinux at cryptocrack dot de
+# Contributor: xduugu
+# Contributor: nh2
+# Contributor: Steven Davidovitz steviedizzle ð gmail đ com
+# Contributor: Nick B Shirakawasuna ð gmail đ com
+# Contributor: Christof Musik christof ð senfdax đ de
+# Contributor: Stefan Rupp archlinux ð stefanrupp đ de
+# Contributor: Ignas Anikevicius anikevicius ð gmail đ com
+
+pkgname=tp_smapi-lts
+_pkgname=tp_smapi
+_extramodules=/usr/lib/modules/extramodules-3.10-lts
+pkgver=0.41
+pkgrel=13
+pkgdesc=linux-lts modules for ThinkPad's SMAPI functionality
+arch=('i686' 'x86_64')
+url='https://github.com/evgeni/tp_smapi'
+license=('GPL')
+depends=('linux-lts=3.10' 'linux-lts3.11')
+makedepends=('linux-lts-headers=3.10' 

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

2013-09-17 Thread Bartłomiej Piotrowski
Date: Tuesday, September 17, 2013 @ 10:54:51
  Author: bpiotrowski
Revision: 194520

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

Added:
  nvidia-lts/repos/testing-i686/
  nvidia-lts/repos/testing-i686/PKGBUILD
(from rev 194519, nvidia-lts/trunk/PKGBUILD)
  nvidia-lts/repos/testing-i686/nvidia-lts.install
(from rev 194519, nvidia-lts/trunk/nvidia-lts.install)
  nvidia-lts/repos/testing-x86_64/
  nvidia-lts/repos/testing-x86_64/PKGBUILD
(from rev 194519, nvidia-lts/trunk/PKGBUILD)
  nvidia-lts/repos/testing-x86_64/nvidia-lts.install
(from rev 194519, nvidia-lts/trunk/nvidia-lts.install)

---+
 testing-i686/PKGBUILD |   46 
 testing-i686/nvidia-lts.install   |   15 +++
 testing-x86_64/PKGBUILD   |   46 
 testing-x86_64/nvidia-lts.install |   15 +++
 4 files changed, 122 insertions(+)

Copied: nvidia-lts/repos/testing-i686/PKGBUILD (from rev 194519, 
nvidia-lts/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-09-17 08:54:51 UTC (rev 194520)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=nvidia-lts
+pkgver=325.15
+_extramodules=extramodules-3.10-lts
+pkgrel=3
+pkgdesc=NVIDIA drivers for linux-lts
+arch=('i686' 'x86_64')
+url=http://www.nvidia.com/;
+depends=('linux-lts=3.10.0' nvidia-utils=$pkgver)
+makedepends=('linux-lts-headers=3.10.0')
+provides=('nvidia')
+license=('custom')
+install=nvidia-lts.install
+options=(!strip)
+
+if [ $CARCH = i686 ]; then
+_arch='x86'
+_pkg=NVIDIA-Linux-${_arch}-${pkgver}
+
source=(ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run;)
+md5sums=('528fc538584de6446384b9cec3099d6c')
+elif [ $CARCH = x86_64 ]; then
+_arch='x86_64'
+   _pkg=NVIDIA-Linux-${_arch}-${pkgver}-no-compat32
+
source=(ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run;)
+md5sums=('63b2caa0cb128efa1a7808d7bddb2074')
+fi
+
+
+build() {
+  _kernver=$(cat /usr/lib/modules/${_extramodules}/version)
+  sh ${_pkg}.run --extract-only
+  cd ${_pkg}/kernel
+  make SYSSRC=/usr/lib/modules/${_kernver}/build module
+}
+
+package() {
+  install -D -m644 ${srcdir}/${_pkg}/kernel/nvidia.ko \
+${pkgdir}/usr/lib/modules/${_extramodules}/kernel/drivers/video/nvidia.ko
+  gzip 
${pkgdir}/usr/lib/modules/${_extramodules}/kernel/drivers/video/nvidia.ko
+  install -d -m755 ${pkgdir}/usr/lib/modprobe.d
+  echo blacklist nouveau  ${pkgdir}/usr/lib/modprobe.d/nvidia-lts.conf
+  echo blacklist nvidiafb  ${pkgdir}/usr/lib/modprobe.d/nvidia-lts.conf
+  install -D -m644 ${srcdir}/${_pkg}/LICENSE 
${pkgdir}/usr/share/licenses/nvidia-lts/LICENSE
+}

Copied: nvidia-lts/repos/testing-i686/nvidia-lts.install (from rev 194519, 
nvidia-lts/trunk/nvidia-lts.install)
===
--- testing-i686/nvidia-lts.install (rev 0)
+++ testing-i686/nvidia-lts.install 2013-09-17 08:54:51 UTC (rev 194520)
@@ -0,0 +1,15 @@
+post_install() {
+EXTRAMODULES='extramodules-3.10-lts'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+echo 'In order to use nvidia module, reboot the system.'
+}
+
+post_upgrade() {
+EXTRAMODULES='extramodules-3.10-lts'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+}
+
+post_remove() {
+EXTRAMODULES='extramodules-3.10-lts'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+}

Copied: nvidia-lts/repos/testing-x86_64/PKGBUILD (from rev 194519, 
nvidia-lts/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-09-17 08:54:51 UTC (rev 194520)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=nvidia-lts
+pkgver=325.15
+_extramodules=extramodules-3.10-lts
+pkgrel=3
+pkgdesc=NVIDIA drivers for linux-lts
+arch=('i686' 'x86_64')
+url=http://www.nvidia.com/;
+depends=('linux-lts=3.10.0' nvidia-utils=$pkgver)
+makedepends=('linux-lts-headers=3.10.0')
+provides=('nvidia')
+license=('custom')
+install=nvidia-lts.install
+options=(!strip)
+
+if [ $CARCH = i686 ]; then
+_arch='x86'
+_pkg=NVIDIA-Linux-${_arch}-${pkgver}
+
source=(ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run;)
+md5sums=('528fc538584de6446384b9cec3099d6c')
+elif [ $CARCH = x86_64 ]; then
+_arch='x86_64'
+   _pkg=NVIDIA-Linux-${_arch}-${pkgver}-no-compat32
+
source=(ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run;)
+md5sums=('63b2caa0cb128efa1a7808d7bddb2074')
+fi
+
+
+build() {
+  _kernver=$(cat /usr/lib/modules/${_extramodules}/version)
+  sh ${_pkg}.run --extract-only
+  cd ${_pkg}/kernel
+  make 

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

2013-09-17 Thread Bartłomiej Piotrowski
Date: Tuesday, September 17, 2013 @ 10:54:43
  Author: bpiotrowski
Revision: 194519

upgpkg: nvidia-lts 325.15-3

- rebuild against linux-lts 3.10.12

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

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-17 07:16:02 UTC (rev 194518)
+++ PKGBUILD2013-09-17 08:54:43 UTC (rev 194519)
@@ -3,13 +3,13 @@
 
 pkgname=nvidia-lts
 pkgver=325.15
-_extramodules=extramodules-3.0-lts
-pkgrel=2
+_extramodules=extramodules-3.10-lts
+pkgrel=3
 pkgdesc=NVIDIA drivers for linux-lts
 arch=('i686' 'x86_64')
 url=http://www.nvidia.com/;
-depends=('linux-lts=3.0.0' nvidia-utils=$pkgver)
-makedepends=('linux-lts-headers=3.0.0')
+depends=('linux-lts=3.10.0' nvidia-utils=$pkgver)
+makedepends=('linux-lts-headers=3.10.0')
 provides=('nvidia')
 license=('custom')
 install=nvidia-lts.install

Modified: nvidia-lts.install
===
--- nvidia-lts.install  2013-09-17 07:16:02 UTC (rev 194518)
+++ nvidia-lts.install  2013-09-17 08:54:43 UTC (rev 194519)
@@ -1,15 +1,15 @@
 post_install() {
-EXTRAMODULES='extramodules-3.0-lts'
+EXTRAMODULES='extramodules-3.10-lts'
 depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
 echo 'In order to use nvidia module, reboot the system.'
 }
 
 post_upgrade() {
-EXTRAMODULES='extramodules-3.0-lts'
+EXTRAMODULES='extramodules-3.10-lts'
 depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
 }
 
 post_remove() {
-EXTRAMODULES='extramodules-3.0-lts'
+EXTRAMODULES='extramodules-3.10-lts'
 depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
 }



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

2013-09-17 Thread Bartłomiej Piotrowski
Date: Tuesday, September 17, 2013 @ 11:08:40
  Author: bpiotrowski
Revision: 194522

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

Added:
  nvidia-304xx-lts/repos/testing-i686/
  nvidia-304xx-lts/repos/testing-i686/PKGBUILD
(from rev 194521, nvidia-304xx-lts/trunk/PKGBUILD)
  nvidia-304xx-lts/repos/testing-i686/nvidia-304xx-lts.install
(from rev 194521, nvidia-304xx-lts/trunk/nvidia-304xx-lts.install)
  nvidia-304xx-lts/repos/testing-i686/nvidia-linux-3.11.patch
(from rev 194521, nvidia-304xx-lts/trunk/nvidia-linux-3.11.patch)
  nvidia-304xx-lts/repos/testing-x86_64/
  nvidia-304xx-lts/repos/testing-x86_64/PKGBUILD
(from rev 194521, nvidia-304xx-lts/trunk/PKGBUILD)
  nvidia-304xx-lts/repos/testing-x86_64/nvidia-304xx-lts.install
(from rev 194521, nvidia-304xx-lts/trunk/nvidia-304xx-lts.install)
  nvidia-304xx-lts/repos/testing-x86_64/nvidia-linux-3.11.patch
(from rev 194521, nvidia-304xx-lts/trunk/nvidia-linux-3.11.patch)

-+
 testing-i686/PKGBUILD   |   50 ++
 testing-i686/nvidia-304xx-lts.install   |   15 +
 testing-i686/nvidia-linux-3.11.patch|   25 +++
 testing-x86_64/PKGBUILD |   50 ++
 testing-x86_64/nvidia-304xx-lts.install |   15 +
 testing-x86_64/nvidia-linux-3.11.patch  |   25 +++
 6 files changed, 180 insertions(+)

Copied: nvidia-304xx-lts/repos/testing-i686/PKGBUILD (from rev 194521, 
nvidia-304xx-lts/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-09-17 09:08:40 UTC (rev 194522)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+
+pkgname=nvidia-304xx-lts
+pkgver=304.108
+_extramodules=extramodules-3.10-lts
+pkgrel=2
+pkgdesc=NVIDIA drivers for linux-lts, 304xx legacy branch
+arch=('i686' 'x86_64')
+url=http://www.nvidia.com/;
+depends=('linux-lts=3.10.0' nvidia-304xx-utils=${pkgver})
+makedepends=('linux-lts-headers=3.10.0')
+conflicts=('nvidia-lts' 'nvidia-96xx-lts' 'nvidia-173xx-lts')
+provides=('nvidia-304xx')
+license=('custom')
+install=nvidia-304xx-lts.install
+options=(!strip)
+source=('nvidia-linux-3.11.patch')
+md5sums=('5c962760de069ed4ad34e64d5988686a')
+
+if [ $CARCH = i686 ]; then
+_arch='x86'
+_pkg=NVIDIA-Linux-${_arch}-${pkgver}
+
source+=(ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run;)
+md5sums+=('ef453e32515c2176c67ebd95c770dc0e')
+elif [ $CARCH = x86_64 ]; then
+_arch='x86_64'
+   _pkg=NVIDIA-Linux-${_arch}-${pkgver}-no-compat32
+
source+=(ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run;)
+md5sums+=('4e0e54de6735023f44c858a3006b3e18')
+fi
+
+build() {
+_kernver=$(cat /usr/lib/modules/${_extramodules}/version)
+cd ${srcdir}
+sh ${_pkg}.run --extract-only
+cd ${_pkg}/kernel
+patch -Np2 -i ${srcdir}/nvidia-linux-3.11.patch
+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 -m755 ${pkgdir}/usr/lib/modprobe.d
+echo blacklist nouveau  
${pkgdir}/usr/lib/modprobe.d/nvidia-304xx-lts.conf
+echo blacklist nvidiafb  
${pkgdir}/usr/lib/modprobe.d/nvidia-304xx-lts.conf
+gzip ${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko
+install -D -m644 ${srcdir}/${_pkg}/LICENSE 
${pkgdir}/usr/share/licenses/nvidia-304xx-lts/LICENSE
+}

Copied: nvidia-304xx-lts/repos/testing-i686/nvidia-304xx-lts.install (from rev 
194521, nvidia-304xx-lts/trunk/nvidia-304xx-lts.install)
===
--- testing-i686/nvidia-304xx-lts.install   (rev 0)
+++ testing-i686/nvidia-304xx-lts.install   2013-09-17 09:08:40 UTC (rev 
194522)
@@ -0,0 +1,15 @@
+post_install() {
+EXTRAMODULES='extramodules-3.10-lts'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+echo 'In order to use nvidia module, reboot the system.'
+}
+
+post_upgrade() {
+EXTRAMODULES='extramodules-3.10-lts'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+}
+
+post_remove() {
+EXTRAMODULES='extramodules-3.10-lts'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+}

Copied: nvidia-304xx-lts/repos/testing-i686/nvidia-linux-3.11.patch (from rev 
194521, nvidia-304xx-lts/trunk/nvidia-linux-3.11.patch)
===
--- testing-i686/nvidia-linux-3.11.patch(rev 0)
+++ testing-i686/nvidia-linux-3.11.patch2013-09-17 09:08:40 UTC (rev 
194522)
@@ -0,0 +1,25 @@
+From 8a8647ad942c8ac5161e1335f7f3e9dbb34dbf9e Mon Sep 17 00:00:00 2001
+From: Lukas Elsner o...@mindrunner.de
+Date: Wed, 17 Jul 2013 01:16:04 

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

2013-09-17 Thread Bartłomiej Piotrowski
Date: Tuesday, September 17, 2013 @ 11:08:26
  Author: bpiotrowski
Revision: 194521

upgpkg: nvidia-304xx-lts 304.108-2

- rebuild against linux-lts 3.10.12

Added:
  nvidia-304xx-lts/trunk/nvidia-linux-3.11.patch
Modified:
  nvidia-304xx-lts/trunk/PKGBUILD
  nvidia-304xx-lts/trunk/nvidia-304xx-lts.install

--+
 PKGBUILD |   20 
 nvidia-304xx-lts.install |6 +++---
 nvidia-linux-3.11.patch  |   25 +
 3 files changed, 40 insertions(+), 11 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-09-17 08:54:51 UTC (rev 194520)
+++ PKGBUILD2013-09-17 09:08:26 UTC (rev 194521)
@@ -3,28 +3,31 @@
 
 pkgname=nvidia-304xx-lts
 pkgver=304.108
-_extramodules=extramodules-3.0-lts
-pkgrel=1
+_extramodules=extramodules-3.10-lts
+pkgrel=2
 pkgdesc=NVIDIA drivers for linux-lts, 304xx legacy branch
 arch=('i686' 'x86_64')
 url=http://www.nvidia.com/;
-depends=('linux-lts=3.0.0' nvidia-304xx-utils=${pkgver})
-makedepends=('linux-lts-headers=3.0.0')
+depends=('linux-lts=3.10.0' nvidia-304xx-utils=${pkgver})
+makedepends=('linux-lts-headers=3.10.0')
 conflicts=('nvidia-lts' 'nvidia-96xx-lts' 'nvidia-173xx-lts')
 provides=('nvidia-304xx')
 license=('custom')
 install=nvidia-304xx-lts.install
 options=(!strip)
+source=('nvidia-linux-3.11.patch')
+md5sums=('5c962760de069ed4ad34e64d5988686a')
+
 if [ $CARCH = i686 ]; then
 _arch='x86'
 _pkg=NVIDIA-Linux-${_arch}-${pkgver}
-
source=(ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run;)
-md5sums=('ef453e32515c2176c67ebd95c770dc0e')
+
source+=(ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run;)
+md5sums+=('ef453e32515c2176c67ebd95c770dc0e')
 elif [ $CARCH = x86_64 ]; then
 _arch='x86_64'
_pkg=NVIDIA-Linux-${_arch}-${pkgver}-no-compat32
-
source=(ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run;)
-md5sums=('4e0e54de6735023f44c858a3006b3e18')
+
source+=(ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run;)
+md5sums+=('4e0e54de6735023f44c858a3006b3e18')
 fi
 
 build() {
@@ -32,6 +35,7 @@
 cd ${srcdir}
 sh ${_pkg}.run --extract-only
 cd ${_pkg}/kernel
+patch -Np2 -i ${srcdir}/nvidia-linux-3.11.patch
 make SYSSRC=/usr/lib/modules/${_kernver}/build module
 }
 

Modified: nvidia-304xx-lts.install
===
--- nvidia-304xx-lts.install2013-09-17 08:54:51 UTC (rev 194520)
+++ nvidia-304xx-lts.install2013-09-17 09:08:26 UTC (rev 194521)
@@ -1,15 +1,15 @@
 post_install() {
-EXTRAMODULES='extramodules-3.0-lts'
+EXTRAMODULES='extramodules-3.10-lts'
 depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
 echo 'In order to use nvidia module, reboot the system.'
 }
 
 post_upgrade() {
-EXTRAMODULES='extramodules-3.0-lts'
+EXTRAMODULES='extramodules-3.10-lts'
 depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
 }
 
 post_remove() {
-EXTRAMODULES='extramodules-3.0-lts'
+EXTRAMODULES='extramodules-3.10-lts'
 depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
 }

Added: nvidia-linux-3.11.patch
===
--- nvidia-linux-3.11.patch (rev 0)
+++ nvidia-linux-3.11.patch 2013-09-17 09:08:26 UTC (rev 194521)
@@ -0,0 +1,25 @@
+From 8a8647ad942c8ac5161e1335f7f3e9dbb34dbf9e Mon Sep 17 00:00:00 2001
+From: Lukas Elsner o...@mindrunner.de
+Date: Wed, 17 Jul 2013 01:16:04 +0200
+Subject: [PATCH] replace num_physpages with totalram_pages
+
+---
+ kernel/nv-linux.h | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/kernel/nv-linux.h b/kernel/nv-linux.h
+index 4e5ed89..46c51ec 100644
+--- a/kernel/nv-linux.h
 b/kernel/nv-linux.h
+@@ -957,7 +957,7 @@ static inline int nv_execute_on_all_cpus(void (*func)(void 
*info), void *info)
+ #endif
+ 
+ #if !defined(NV_VMWARE)
+-#define NV_NUM_PHYSPAGESnum_physpages
++#define NV_NUM_PHYSPAGEStotalram_pages
+ #define NV_GET_CURRENT_PROCESS()current-tgid
+ #define NV_IN_ATOMIC()  in_atomic()
+ #define NV_LOCAL_BH_DISABLE()   local_bh_disable()
+-- 
+1.8.3.2
+



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

2013-09-17 Thread Bartłomiej Piotrowski
Date: Tuesday, September 17, 2013 @ 11:33:55
  Author: bpiotrowski
Revision: 97316

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

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

--+
 /PKGBUILD|   72 +
 /cantata.install |   24 
 community-i686/PKGBUILD  |   41 -
 community-i686/cantata.install   |   12 --
 community-x86_64/PKGBUILD|   41 -
 community-x86_64/cantata.install |   12 --
 6 files changed, 96 insertions(+), 106 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-09-17 09:33:44 UTC (rev 97315)
+++ community-i686/PKGBUILD 2013-09-17 09:33:55 UTC (rev 97316)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer:  Federico Cinelli cine...@aur.archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Mcder3 mcder3[at]gmail[dot]com
-# Contributor: MisterFred mister.fred[at]free[dot]fr
-
-pkgname=cantata
-pkgver=1.0.3
-pkgdesc=A KDE client for the music player daemon (MPD)
-pkgrel=2
-arch=('i686' 'x86_64')
-url=http://kde-apps.org/content/show.php/Cantata?content=147733;
-license=('GPL')
-depends=('kdebase-runtime' 'taglib-extras' 'mpg123' 'libmtp' 'libcddb' 
'libmusicbrainz5')
-makedepends=('cmake' 'automoc4')
-install=$pkgname.install
-source=(http://cantata.googlecode.com/files/$pkgname-$pkgver.tar.bz2;)
-md5sums=('fd942d25127a7936efaf1fe887d66189')
-
-prepare() {
-  cd $srcdir/$pkgname-$pkgver
-  sed -i 's/AVCODEC_MAX_AUDIO_FRAME_SIZE/192000/' replaygain/ffmpeginput.cpp
-}
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  mkdir build
-
-  cmake . \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DENABLE_PHONON=ON
-
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  
-  make DESTDIR=$pkgdir PREFIX=/usr install
-}

Copied: cantata/repos/community-i686/PKGBUILD (from rev 97315, 
cantata/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-09-17 09:33:55 UTC (rev 97316)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer:  Federico Cinelli cine...@aur.archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Mcder3 mcder3[at]gmail[dot]com
+# Contributor: MisterFred mister.fred[at]free[dot]fr
+
+pkgname=cantata
+pkgver=1.1.2
+pkgdesc=A KDE client for the music player daemon (MPD)
+pkgrel=1
+arch=('i686' 'x86_64')
+url=http://kde-apps.org/content/show.php/Cantata?content=147733;
+license=('GPL')
+depends=('kdebase-runtime' 'taglib-extras' 'mpg123' 'libmtp' 'libcddb' 
'libmusicbrainz5')
+makedepends=('cmake' 'automoc4')
+install=$pkgname.install
+source=(http://cantata.googlecode.com/files/$pkgname-$pkgver.tar.bz2;)
+md5sums=('628991865a505284a7ce56e117cd36cc')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  mkdir build
+
+  cmake . \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DENABLE_PHONON=ON
+
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  
+  make DESTDIR=$pkgdir PREFIX=/usr install
+}

Deleted: community-i686/cantata.install
===
--- community-i686/cantata.install  2013-09-17 09:33:44 UTC (rev 97315)
+++ community-i686/cantata.install  2013-09-17 09:33:55 UTC (rev 97316)
@@ -1,12 +0,0 @@
-post_install() {
-xdg-icon-resource forceupdate --theme hicolor  /dev/null
-update-desktop-database -q
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: cantata/repos/community-i686/cantata.install (from rev 97315, 
cantata/trunk/cantata.install)
===
--- community-i686/cantata.install  (rev 0)
+++ community-i686/cantata.install  2013-09-17 09:33:55 UTC (rev 97316)
@@ -0,0 +1,12 @@
+post_install() {
+xdg-icon-resource forceupdate --theme hicolor  /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-09-17 09:33:44 UTC (rev 97315)
+++ 

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

2013-09-17 Thread Bartłomiej Piotrowski
Date: Tuesday, September 17, 2013 @ 11:33:44
  Author: bpiotrowski
Revision: 97315

upgpkg: cantata 1.1.2-1

- new upstream release

Modified:
  cantata/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-17 08:45:51 UTC (rev 97314)
+++ PKGBUILD2013-09-17 09:33:44 UTC (rev 97315)
@@ -5,9 +5,9 @@
 # Contributor: MisterFred mister.fred[at]free[dot]fr
 
 pkgname=cantata
-pkgver=1.0.3
+pkgver=1.1.2
 pkgdesc=A KDE client for the music player daemon (MPD)
-pkgrel=2
+pkgrel=1
 arch=('i686' 'x86_64')
 url=http://kde-apps.org/content/show.php/Cantata?content=147733;
 license=('GPL')
@@ -15,13 +15,8 @@
 makedepends=('cmake' 'automoc4')
 install=$pkgname.install
 source=(http://cantata.googlecode.com/files/$pkgname-$pkgver.tar.bz2;)
-md5sums=('fd942d25127a7936efaf1fe887d66189')
+md5sums=('628991865a505284a7ce56e117cd36cc')
 
-prepare() {
-  cd $srcdir/$pkgname-$pkgver
-  sed -i 's/AVCODEC_MAX_AUDIO_FRAME_SIZE/192000/' replaygain/ffmpeginput.cpp
-}
-
 build() {
   cd $srcdir/$pkgname-$pkgver
   mkdir build



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

2013-09-17 Thread Evangelos Foutras
Date: Tuesday, September 17, 2013 @ 12:01:14
  Author: foutrelis
Revision: 194524

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

Added:
  thunderbird/repos/testing-i686/
  thunderbird/repos/testing-i686/PKGBUILD
(from rev 194523, thunderbird/trunk/PKGBUILD)
  thunderbird/repos/testing-i686/mozconfig
(from rev 194523, thunderbird/trunk/mozconfig)
  thunderbird/repos/testing-i686/thunderbird-install-dir.patch
(from rev 194523, thunderbird/trunk/thunderbird-install-dir.patch)
  thunderbird/repos/testing-i686/thunderbird.desktop
(from rev 194523, thunderbird/trunk/thunderbird.desktop)
  thunderbird/repos/testing-i686/thunderbird.install
(from rev 194523, thunderbird/trunk/thunderbird.install)
  thunderbird/repos/testing-i686/vendor.js
(from rev 194523, thunderbird/trunk/vendor.js)
  thunderbird/repos/testing-x86_64/
  thunderbird/repos/testing-x86_64/PKGBUILD
(from rev 194523, thunderbird/trunk/PKGBUILD)
  thunderbird/repos/testing-x86_64/mozconfig
(from rev 194523, thunderbird/trunk/mozconfig)
  thunderbird/repos/testing-x86_64/thunderbird-install-dir.patch
(from rev 194523, thunderbird/trunk/thunderbird-install-dir.patch)
  thunderbird/repos/testing-x86_64/thunderbird.desktop
(from rev 194523, thunderbird/trunk/thunderbird.desktop)
  thunderbird/repos/testing-x86_64/thunderbird.install
(from rev 194523, thunderbird/trunk/thunderbird.install)
  thunderbird/repos/testing-x86_64/vendor.js
(from rev 194523, thunderbird/trunk/vendor.js)

--+
 testing-i686/PKGBUILD|   70 +
 testing-i686/mozconfig   |   41 ++
 testing-i686/thunderbird-install-dir.patch   |   47 
 testing-i686/thunderbird.desktop |   13 
 testing-i686/thunderbird.install |   12 
 testing-i686/vendor.js   |9 +++
 testing-x86_64/PKGBUILD  |   70 +
 testing-x86_64/mozconfig |   41 ++
 testing-x86_64/thunderbird-install-dir.patch |   47 
 testing-x86_64/thunderbird.desktop   |   13 
 testing-x86_64/thunderbird.install   |   12 
 testing-x86_64/vendor.js |9 +++
 12 files changed, 384 insertions(+)

Copied: thunderbird/repos/testing-i686/PKGBUILD (from rev 194523, 
thunderbird/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-09-17 10:01:14 UTC (rev 194524)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer : Ionut Biru ib...@archlinux.org
+# Contributor: Alexander Baldeck alexan...@archlinux.org
+# Contributor: Dale Blount d...@archlinux.org
+# Contributor: Anders Bostrom anders.bost...@home.se
+
+pkgname=thunderbird
+pkgver=24.0
+pkgrel=1
+pkgdesc=Standalone Mail/News reader
+arch=('i686' 'x86_64')
+license=('MPL' 'GPL')
+url=http://www.mozilla.org/thunderbird/;
+depends=('alsa-lib' 'dbus-glib' 'desktop-file-utils' 'gtk2' 
'hicolor-icon-theme' 'hunspell' 'libevent' 'libnotify' 'libvpx' 'libxt' 
'mime-types' 'mozilla-common' 'nss' 'sqlite' 'startup-notification')
+makedepends=('unzip' 'zip' 'pkg-config' 'python2' 'wireless_tools' 'yasm' 
'mesa' 'autoconf2.13')
+optdepends=('libcanberra: for sound support')
+install=thunderbird.install
+source=(ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/$pkgver/source/thunderbird-$pkgver.source.tar.bz2
+mozconfig
+thunderbird.desktop
+thunderbird-install-dir.patch
+vendor.js)
+options=(!emptydirs)
+sha256sums=('60a1abde987a61c8096e431f13df2ba2cf188a22fdbf1712aaec795b302a5ff5'
+'d8844a988b660d40732d4694104d38dd5e8924a987d79247f9651e52fe9e4516'
+'d506b771e765e09e2e039b975e25befade8eec97e8950813a32463604955ab4e'
+'929a7ceca0e90d0635a2099b7df24033e865fb5b5b8c5824468c4561c21c377d'
+'e4ea8e6788163d9f8db8f1f40023db3ea0a1358f9a4510169f2d4c4fe6a887ed')
+
+prepare() {
+  cd comm-esr24
+  patch -Np1 -i $srcdir/thunderbird-install-dir.patch
+
+  cp $srcdir/mozconfig .mozconfig
+
+  # configure script misdetects the preprocessor without an optimization level
+  # https://bugs.archlinux.org/task/34644
+  sed -i '/ac_cpp=/s/$CPPFLAGS/ -O2/' mozilla/configure
+}
+
+build() {
+  cd comm-esr24
+
+  export LDFLAGS=$LDFLAGS -Wl,-rpath,/usr/lib/thunderbird
+  export PYTHON=/usr/bin/python2
+
+  make -j1 -f client.mk build MOZ_MAKE_FLAGS=$MAKEFLAGS
+}
+
+package() {
+  cd comm-esr24
+  make -j1 -f client.mk DESTDIR=$pkgdir install
+
+  install -Dm644 $srcdir/vendor.js 
$pkgdir/usr/lib/thunderbird/defaults/preferences/vendor.js
+
+  for i in 16x16 22x22 24x24 32x32 48x48 256x256; do
+  install -Dm644 other-licenses/branding/thunderbird/mailicon${i/x*/}.png \
+  $pkgdir/usr/share/icons/hicolor/$i/apps/thunderbird.png
+  done
+

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

2013-09-17 Thread Evangelos Foutras
Date: Tuesday, September 17, 2013 @ 12:00:56
  Author: foutrelis
Revision: 194523

upgpkg: thunderbird 24.0-1

New upstream release.

Modified:
  thunderbird/trunk/PKGBUILD
  thunderbird/trunk/mozconfig

---+
 PKGBUILD  |   14 +++---
 mozconfig |1 +
 2 files changed, 8 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-09-17 09:08:40 UTC (rev 194522)
+++ PKGBUILD2013-09-17 10:00:56 UTC (rev 194523)
@@ -5,7 +5,7 @@
 # Contributor: Anders Bostrom anders.bost...@home.se
 
 pkgname=thunderbird
-pkgver=17.0.8
+pkgver=24.0
 pkgrel=1
 pkgdesc=Standalone Mail/News reader
 arch=('i686' 'x86_64')
@@ -21,14 +21,14 @@
 thunderbird-install-dir.patch
 vendor.js)
 options=(!emptydirs)
-sha256sums=('f5d338c7a79111370a719bc3979dc11fab11ada0534c69530fe6fb42c1a358d7'
-'5b8da0121d73707f9ae7b331f822a368a782c5108671d57a14c6e8b778adaac1'
+sha256sums=('60a1abde987a61c8096e431f13df2ba2cf188a22fdbf1712aaec795b302a5ff5'
+'d8844a988b660d40732d4694104d38dd5e8924a987d79247f9651e52fe9e4516'
 'd506b771e765e09e2e039b975e25befade8eec97e8950813a32463604955ab4e'
 '929a7ceca0e90d0635a2099b7df24033e865fb5b5b8c5824468c4561c21c377d'
 'e4ea8e6788163d9f8db8f1f40023db3ea0a1358f9a4510169f2d4c4fe6a887ed')
 
 prepare() {
-  cd comm-esr17
+  cd comm-esr24
   patch -Np1 -i $srcdir/thunderbird-install-dir.patch
 
   cp $srcdir/mozconfig .mozconfig
@@ -35,11 +35,11 @@
 
   # configure script misdetects the preprocessor without an optimization level
   # https://bugs.archlinux.org/task/34644
-  sed -i '/ac_cpp=/s/$CPPFLAGS/ -O2/' configure
+  sed -i '/ac_cpp=/s/$CPPFLAGS/ -O2/' mozilla/configure
 }
 
 build() {
-  cd comm-esr17
+  cd comm-esr24
 
   export LDFLAGS=$LDFLAGS -Wl,-rpath,/usr/lib/thunderbird
   export PYTHON=/usr/bin/python2
@@ -48,7 +48,7 @@
 }
 
 package() {
-  cd comm-esr17
+  cd comm-esr24
   make -j1 -f client.mk DESTDIR=$pkgdir install
 
   install -Dm644 $srcdir/vendor.js 
$pkgdir/usr/lib/thunderbird/defaults/preferences/vendor.js

Modified: mozconfig
===
--- mozconfig   2013-09-17 09:08:40 UTC (rev 194522)
+++ mozconfig   2013-09-17 10:00:56 UTC (rev 194523)
@@ -26,6 +26,7 @@
 ac_add_options --enable-startup-notification
 ac_add_options --enable-gio
 
+ac_add_options --disable-gstreamer
 ac_add_options --disable-gnomevfs
 ac_add_options --disable-crashreporter
 ac_add_options --disable-updater



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

2013-09-17 Thread Evangelos Foutras
Date: Tuesday, September 17, 2013 @ 12:04:39
  Author: foutrelis
Revision: 194525

upgpkg: thunderbird-i18n 24.0-1

New upstream release.

Modified:
  thunderbird-i18n/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-17 10:01:14 UTC (rev 194524)
+++ PKGBUILD2013-09-17 10:04:39 UTC (rev 194525)
@@ -4,7 +4,7 @@
 # Contributor: Thomas Baechler tho...@archlinux.org
 
 pkgbase=thunderbird-i18n
-pkgver=17.0.8
+pkgver=24.0
 pkgrel=1
 pkgdesc=Language pack for Thunderbird
 arch=('any')
@@ -94,58 +94,58 @@
 
$pkgdir/usr/lib/thunderbird/extensions/langpack-$1...@thunderbird.mozilla.org.xpi
 }
 
-md5sums=('ad61f2a7632c8ce1251d5952181398df'
- '3fd84e4b803bca0fedb737440a040e45'
- '4586a2dabddfcc16855edf6b8d69962a'
- 'c584f31ae8b2c24da15666fc4fa3563b'
- '702f3257cf019843d74fbaadb99e2886'
- '6551ad7767aa87ee42e6d31ff9590648'
- 'd1b275d962f96166e2a459f58b1709d6'
- 'ca7a944cd07ee0c0d04a454a2516d49d'
- '76d452fada4e133f6dc3b3584c6fac08'
- '3b4b2cee9016abd15da1bcd6286dbc6c'
- '028c90f0c31ab3a7b071a718d08258bb'
- '12355d30501f1ac7a10831763bc1f354'
- '23b28003c65f5df1be2e8008c97edc15'
- 'afc8052118c343e867718ef8561e831e'
- '65db2679e3a8c1868739da2e27783484'
- '1334e12708bf352a2be09d5795c95213'
- 'f73ac3d0baedb8f525676118f51426f9'
- '4c31cb388ccaff76c95d5b46f49c4ecc'
- '2bd1d5f69bee27da325f8298f0d1e134'
- '6bdd8f7a3beee272d7cdfc24882d254b'
- 'e6d1dc109c9a934277aaab7e696d389b'
- '70408d96a8bbd4aceccf1c56d05f15ce'
- 'd8fbf504de160554a9bc1e4fe13492ce'
- '094d2815ab1668f1ebf8fcb3a764a4ec'
- 'e6b14831bdc3ce639b390175ac04113b'
- 'cf7743c55272ba14d6804a1121f9ab6b'
- '44be8dbc2d025afa4730bfa025fa7a42'
- 'c4e95ec094792b880a1ddb8b9aff48aa'
- 'b91510b33bc07ae10f97c223f652517f'
- '2f6364f530d8f57d104cb4f4e7b28409'
- '5375575fd2e6721505a9fc06b0247c49'
- '18ee8f5eaa26ec1f60e81541d5ebc6ca'
- 'ba23f860392aefa18ff50bcdc450af52'
- '36573ca497ecd8ab8df6b1155546e698'
- '239622a8ed51b43791d34f4c09b3f6ec'
- '850cc70db0785d88afe03a4d9964ccd3'
- 'ed3293f4b84e4984d67f44977fd5'
- '9604a4e8c42e605c04e77d204bad5664'
- '9d5a4a6f6a6b905bb509502972682a04'
- 'ad9c38941f4a8ce055406c1bb5e7ef35'
- '25e04c4c5a1c0c0eff21e94f75a51f5b'
- 'a369031e02f05a10b68d8ef032cb4105'
- '4657f4f697459aa51a09915dbc3270bb'
- '09817688b547c5a20bc8422ce1f7eab1'
- 'd194d43d1dbf60c94028a5a718ba7e36'
- '0ebbfcf410b53596fc8fb99df51ed030'
- 'cfa588e76644846f31fbc5360cfa89a1'
- '06141e939e5c53251c7af6d23935024d'
- 'd07936ae70c5baa32ac5f4ecdb691c8e'
- 'e5c0f2ebac114fdc2a0db275ea385858'
- 'dac675a37e160aafb0e052ae561fe189'
- '5e112c628766e03cdae62f64d42020ca'
- '85d89ffd10bba250f4ce8acd39b3d6f8'
- 'f068603a927801bc0c5386e61bcc8b4e'
- '2e6f3b969a175bbe2f88b266482f4c2e')
+md5sums=('00e5745138bd36a6dda6996ca82bb458'
+ '2681d2dd9cba526734ac85a07bd72dff'
+ 'cd10d510639d2b4c524cd3a8fed30845'
+ 'b5d4c6176cb3d9181bc4958a59955371'
+ 'ec714abc51563df68c0e767499eb131b'
+ 'b3958d9eb8ff1074524c913eea9d4531'
+ '6cd59396e969a9fe0c9c4494b05e0d70'
+ 'a9cb42920b2dc0a07df802f9720e2976'
+ 'ca88f9d29b53c5249e04007b27e6b6f1'
+ '7800c97656d7c969d7d99efaf5449547'
+ '52c26e8e74d054a9b0e8b785d05a1219'
+ 'da4d4b0a905905a6befdacfc93ce11ec'
+ '7a1b3a80c2451cf388b1f394843d4d6e'
+ 'c9e1bb783a81d0a2cebe1ddec3a29c2b'
+ 'f586ca445a5e9cdb0cd8e5da5e301f75'
+ 'cda87ee3de3712dd7d98a31205cd0d78'
+ '97dfd7b9bdd3ffc451874a7c918747a8'
+ '3cf977ccd8b1f4b5215c7bec4e795063'
+ 'ce4b74e192d97b37b29bf725884bab77'
+ '0e131941c0cb0e7c2ecac70092c931a5'
+ '2140ad226acf709cbdf0a8323c704d97'
+ 'e539e40b18fb35398e88eadda0751256'
+ 'f7e0ff5bc085fa947d56677732ad40df'
+ 'e031bcb2d0df57a79d39aa8555e918ba'
+ '87f1310bff7b978a8015362dc95dfeba'
+ '2d3e0e115d0b9b1cd061beeb7cfb1039'
+ 'da16f65cb7095bf7ab50334d5310b46b'
+ 'b0ef1e6b1289376c25dfad11fd3b5825'
+ 'b33c0fc1a1b6d6f1b61e33e16a68c3aa'
+ '91d710244168d0c1c769435a60b64f3c'
+ '8debe2067c3ffdd910cfa0ad99ed62dd'
+ '7b639bf8009edb028538722812d29c1f'
+ '6ab044113bb056df256112716c4d7bc6'
+ '1f1cfc93ae9c04d6062d824fdf89ef0a'
+ 'c13d3d3653cbb530aafd82ea3a455b31'
+ '4f0acf27aa26483e161ad74c0bde0a0d'
+ '0b19f435b174941580e423586330af30'
+ 

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

2013-09-17 Thread Evangelos Foutras
Date: Tuesday, September 17, 2013 @ 12:04:48
  Author: foutrelis
Revision: 194526

archrelease: copy trunk to testing-any

Added:
  thunderbird-i18n/repos/testing-any/
  thunderbird-i18n/repos/testing-any/PKGBUILD
(from rev 194525, thunderbird-i18n/trunk/PKGBUILD)

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

Copied: thunderbird-i18n/repos/testing-any/PKGBUILD (from rev 194525, 
thunderbird-i18n/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2013-09-17 10:04:48 UTC (rev 194526)
@@ -0,0 +1,151 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Thomas Baechler tho...@archlinux.org
+
+pkgbase=thunderbird-i18n
+pkgver=24.0
+pkgrel=1
+pkgdesc=Language pack for Thunderbird
+arch=('any')
+url=http://www.mozilla.com/;
+license=('MPL' 'GPL')
+depends=(thunderbird=$pkgver)
+
+_languages=(
+  'ar Arabic'
+  'astAsturian'
+  'be Belarusian'
+  'bg Bulgarian'
+  'bn-BD  Bengali (Bangladesh)'
+  'br Breton'
+  'ca Catalan'
+  'cs Czech'
+  'da Danish'
+  'de German'
+  'el Greek'
+  'en-GB  English (United Kingdom)'
+  'en-US  English (United States)'
+  'es-AR  Spanish (Argentina)'
+  'es-ES  Spanish (Spain)'
+  'et Estonian'
+  'eu Basque'
+  'fi Finnish'
+  'fr French'
+  'fy-NL  Frisian (Netherlands)'
+  'ga-IE  Irish'
+  'gd Gaelic'
+  'gl Galician'
+  'he Hebrew'
+  'hr Croatian'
+  'hu Hungarian'
+  'hy-AM  Armenian'
+  'id Indonesian'
+  'is Icelandic'
+  'it Italian'
+  'ja Japanese'
+  'ko Korean'
+  'lt Lithuanian'
+  'nb-NO  Norwegian (Bokmal)'
+  'nl Dutch'
+  'nn-NO  Norwegian (Nynorsk)'
+  'pa-IN  Punjabi'
+  'pl Polish'
+  'pt-BR  Brazilian Portuguese'
+  'pt-PT  Portuguese'
+  'rm Romansh'
+  'ro Romanian'
+  'ru Russian'
+  'si Sinhalese'
+  'sk Slovak'
+  'sl Slovenian'
+  'sq Albanian'
+  'sr Serbian'
+  'sv-SE  Swedish'
+  'ta-LK  Tamil (Sri Lanka)'
+  'tr Turkish'
+  'uk Ukrainian'
+  'vi Vietnamese'
+  'zh-CN  Chinese (simplified)'
+  'zh-TW  Chinese (traditional)'
+)
+
+pkgname=()
+source=()
+_url=https://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/$pkgver/linux-i686/xpi
+
+for _lang in ${_languages[@]}; do
+  _locale=${_lang%% *}
+  _pkgname=thunderbird-i18n-${_locale,,}
+
+  pkgname+=($_pkgname)
+  source+=(thunderbird-i18n-$pkgver-$_locale.xpi::$_url/$_locale.xpi)
+  eval package_$_pkgname() {
+_package $_lang
+  }
+done
+
+# Don't extract anything
+noextract=(${source[@]%%::*})
+
+_package() {
+  pkgdesc=$2 language pack for Thunderbird
+  install -Dm644 thunderbird-i18n-$pkgver-$1.xpi \
+
$pkgdir/usr/lib/thunderbird/extensions/langpack-$1...@thunderbird.mozilla.org.xpi
+}
+
+md5sums=('00e5745138bd36a6dda6996ca82bb458'
+ '2681d2dd9cba526734ac85a07bd72dff'
+ 'cd10d510639d2b4c524cd3a8fed30845'
+ 'b5d4c6176cb3d9181bc4958a59955371'
+ 'ec714abc51563df68c0e767499eb131b'
+ 'b3958d9eb8ff1074524c913eea9d4531'
+ '6cd59396e969a9fe0c9c4494b05e0d70'
+ 'a9cb42920b2dc0a07df802f9720e2976'
+ 'ca88f9d29b53c5249e04007b27e6b6f1'
+ '7800c97656d7c969d7d99efaf5449547'
+ '52c26e8e74d054a9b0e8b785d05a1219'
+ 'da4d4b0a905905a6befdacfc93ce11ec'
+ '7a1b3a80c2451cf388b1f394843d4d6e'
+ 'c9e1bb783a81d0a2cebe1ddec3a29c2b'
+ 'f586ca445a5e9cdb0cd8e5da5e301f75'
+ 'cda87ee3de3712dd7d98a31205cd0d78'
+ '97dfd7b9bdd3ffc451874a7c918747a8'
+ '3cf977ccd8b1f4b5215c7bec4e795063'
+ 'ce4b74e192d97b37b29bf725884bab77'
+ '0e131941c0cb0e7c2ecac70092c931a5'
+ '2140ad226acf709cbdf0a8323c704d97'
+ 'e539e40b18fb35398e88eadda0751256'
+ 'f7e0ff5bc085fa947d56677732ad40df'
+ 'e031bcb2d0df57a79d39aa8555e918ba'
+ '87f1310bff7b978a8015362dc95dfeba'
+ '2d3e0e115d0b9b1cd061beeb7cfb1039'
+ 'da16f65cb7095bf7ab50334d5310b46b'
+ 'b0ef1e6b1289376c25dfad11fd3b5825'
+ 'b33c0fc1a1b6d6f1b61e33e16a68c3aa'
+ '91d710244168d0c1c769435a60b64f3c'
+ '8debe2067c3ffdd910cfa0ad99ed62dd'
+ '7b639bf8009edb028538722812d29c1f'
+ '6ab044113bb056df256112716c4d7bc6'
+ '1f1cfc93ae9c04d6062d824fdf89ef0a'
+ 'c13d3d3653cbb530aafd82ea3a455b31'
+ '4f0acf27aa26483e161ad74c0bde0a0d'
+ '0b19f435b174941580e423586330af30'
+ '2c377b2b3dcbe5869c2db0dda2de06ed'
+ 'a7a04da21888fd15b755529b5bf2e36f'
+ '9309c021fc49d3a0aee8df25d41f525a'
+ '297f79f74a807063de05ed34159d7524'
+ '35d94ffaa43bd3dc451723b392b2bd2a'
+ '6028467f08ef13bd6b6a1de7348e06d3'
+ 'b2903194003960ed7189ce6834abfb07'
+ 

[arch-commits] Commit in gerbv/trunk (ChangeLog PKGBUILD reautopointissues.diff)

2013-09-17 Thread Kyle Keen
Date: Tuesday, September 17, 2013 @ 12:56:52
  Author: kkeen
Revision: 97317

upgpkg: gerbv 2.6.1-1

Added:
  gerbv/trunk/reautopointissues.diff
Modified:
  gerbv/trunk/ChangeLog
  gerbv/trunk/PKGBUILD

+
 ChangeLog  |4 
 PKGBUILD   |   17 
 reautopointissues.diff | 4118 +++
 3 files changed, 4135 insertions(+), 4 deletions(-)

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


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

2013-09-17 Thread Kyle Keen
Date: Tuesday, September 17, 2013 @ 12:57:59
  Author: kkeen
Revision: 97318

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

Added:
  gerbv/repos/community-i686/ChangeLog
(from rev 97317, gerbv/trunk/ChangeLog)
  gerbv/repos/community-i686/PKGBUILD
(from rev 97317, gerbv/trunk/PKGBUILD)
  gerbv/repos/community-i686/gerbv.install
(from rev 97317, gerbv/trunk/gerbv.install)
  gerbv/repos/community-i686/reautopointissues.diff
(from rev 97317, gerbv/trunk/reautopointissues.diff)
  gerbv/repos/community-x86_64/ChangeLog
(from rev 97317, gerbv/trunk/ChangeLog)
  gerbv/repos/community-x86_64/PKGBUILD
(from rev 97317, gerbv/trunk/PKGBUILD)
  gerbv/repos/community-x86_64/gerbv.install
(from rev 97317, gerbv/trunk/gerbv.install)
  gerbv/repos/community-x86_64/reautopointissues.diff
(from rev 97317, gerbv/trunk/reautopointissues.diff)
Deleted:
  gerbv/repos/community-i686/ChangeLog
  gerbv/repos/community-i686/PKGBUILD
  gerbv/repos/community-i686/gerbv.install
  gerbv/repos/community-x86_64/ChangeLog
  gerbv/repos/community-x86_64/PKGBUILD
  gerbv/repos/community-x86_64/gerbv.install

-+
 /ChangeLog  |   70 
 /PKGBUILD   |   82 
 /gerbv.install  |   42 
 community-i686/ChangeLog|   31 
 community-i686/PKGBUILD |   32 
 community-i686/gerbv.install|   21 
 community-i686/reautopointissues.diff   | 4118 ++
 community-x86_64/ChangeLog  |   31 
 community-x86_64/PKGBUILD   |   32 
 community-x86_64/gerbv.install  |   21 
 community-x86_64/reautopointissues.diff | 4118 ++
 11 files changed, 8430 insertions(+), 168 deletions(-)

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


[arch-commits] Commit in geda-gaf/trunk (ChangeLog PKGBUILD)

2013-09-17 Thread Kyle Keen
Date: Tuesday, September 17, 2013 @ 13:14:39
  Author: kkeen
Revision: 97319

upgpkg: geda-gaf 1.8.1-3

Modified:
  geda-gaf/trunk/ChangeLog
  geda-gaf/trunk/PKGBUILD

---+
 ChangeLog |8 
 PKGBUILD  |5 +++--
 2 files changed, 11 insertions(+), 2 deletions(-)

Modified: ChangeLog
===
--- ChangeLog   2013-09-17 10:57:59 UTC (rev 97318)
+++ ChangeLog   2013-09-17 11:14:39 UTC (rev 97319)
@@ -1,3 +1,11 @@
+2013-09-17 Kyle Keen keen...@gmail.com
+   * 1.8.1-3
+   - Update url
+
+2013-06-04 Bartłomiej Piotrowski barthal...@gmail.com
+   * 1.8.1-2
+   - ???
+
 2012-01-19 Kyle Keen keen...@gmail.com
* 1.8.1-1
- Version bump

Modified: PKGBUILD
===
--- PKGBUILD2013-09-17 10:57:59 UTC (rev 97318)
+++ PKGBUILD2013-09-17 11:14:39 UTC (rev 97319)
@@ -1,3 +1,4 @@
+# $Id$
 # Maintainer: Kyle Keen keen...@gmail.com
 # Contributor: Jared Casper jaredcas...@gmail.com
 # Contributor: Stefan Husmann stefan-husm...@t-online.de
@@ -4,10 +5,10 @@
 
 pkgname=geda-gaf
 pkgver=1.8.1
-pkgrel=2
+pkgrel=3
 pkgdesc=gEDA/gaf suite - Contains gschem, gnetlist, gsymcheck, gattrib, 
utilities and documentation from the gEDA project
 arch=('i686' 'x86_64')
-url=http://www.gpleda.org;
+url=http://geda-project.org/;
 license=('GPL')
 depends=('gtk2' 'guile' 'libstroke' 'shared-mime-info' 'hicolor-icon-theme')
 makedepends=('pkgconfig' 'perlxml' 'flex' 'gawk')



[arch-commits] Commit in geda-gaf/repos (12 files)

2013-09-17 Thread Kyle Keen
Date: Tuesday, September 17, 2013 @ 13:15:31
  Author: kkeen
Revision: 97320

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

Added:
  geda-gaf/repos/community-i686/ChangeLog
(from rev 97319, geda-gaf/trunk/ChangeLog)
  geda-gaf/repos/community-i686/PKGBUILD
(from rev 97319, geda-gaf/trunk/PKGBUILD)
  geda-gaf/repos/community-i686/geda-gaf.install
(from rev 97319, geda-gaf/trunk/geda-gaf.install)
  geda-gaf/repos/community-x86_64/ChangeLog
(from rev 97319, geda-gaf/trunk/ChangeLog)
  geda-gaf/repos/community-x86_64/PKGBUILD
(from rev 97319, geda-gaf/trunk/PKGBUILD)
  geda-gaf/repos/community-x86_64/geda-gaf.install
(from rev 97319, geda-gaf/trunk/geda-gaf.install)
Deleted:
  geda-gaf/repos/community-i686/ChangeLog
  geda-gaf/repos/community-i686/PKGBUILD
  geda-gaf/repos/community-i686/geda-gaf.install
  geda-gaf/repos/community-x86_64/ChangeLog
  geda-gaf/repos/community-x86_64/PKGBUILD
  geda-gaf/repos/community-x86_64/geda-gaf.install

---+
 /ChangeLog|  130 
 /PKGBUILD |   78 +
 /geda-gaf.install |   38 ++
 community-i686/ChangeLog  |   57 ---
 community-i686/PKGBUILD   |   38 --
 community-i686/geda-gaf.install   |   19 -
 community-x86_64/ChangeLog|   57 ---
 community-x86_64/PKGBUILD |   38 --
 community-x86_64/geda-gaf.install |   19 -
 9 files changed, 246 insertions(+), 228 deletions(-)

Deleted: community-i686/ChangeLog
===
--- community-i686/ChangeLog2013-09-17 11:14:39 UTC (rev 97319)
+++ community-i686/ChangeLog2013-09-17 11:15:31 UTC (rev 97320)
@@ -1,57 +0,0 @@
-2012-01-19 Kyle Keen keen...@gmail.com
-   * 1.8.1-1
-   - Version bump
-
-2012-01-19 Kyle Keen keen...@gmail.com
-   * 1.6.2-2
-   - libpng15 rebuild
-
-2010-12-26 Stefan Husmann stefan-husm...@t-online.de
-   * 1.6.1-2
-   - adopted, moved to [community]
-   - added some optional dependencies
-   - added some sed-commands for python2 compatibility
-
-2010-02-14 Jared Casper jaredcas...@gmail.com
-   * 1.6.1-1
-   - Version bump
-
-2009-10-10 Jared Casper jaredcas...@gmail.com
-   * 1.6.0-2
-   - Fixed a bug causing icon problems
-
-2009-10-05 Jared Casper jaredcas...@gmail.com
-   * 1.6.0-1
-   - Merged with geda-libs and renamed to geda-gaf to match up with
-   the release tarball name
-
-2009-05-03 Jared Casper jaredcas...@gmail.com
-   * 1.4.3-2
-   - Added gettext dep (noted by sergej)
-   - Added '|| return 1's to configure and make commands
-   - A bit of other random cleanup of deps
-
-2009-01-03 Jared Casper jaredcas...@gmail.com
-   * 1.4.3-1
-   - Version bump
-   - Fix dependencies (s/=/=/)
-
-2008-12-20 Jared Casper jaredcas...@gmail.com
-   * 1.4.2-1
-   - Version bump
-   - Update from comments
-
-2008-09-28 Jared Casper jaredcas...@gmail.com
-   * 1.4.1-1
-   - Version bump
-   - Added icon cache update
-   - Added icon cache and desktop update to post_update
-
-2008-05-07 Jared Casper jaredcas...@gmail.com
-
-   * 1.4.0-1
-   - adopted by Jared Casper
-   - Update PKGBUILD to current standards and latest version (1.4.0)
-   - add configure options and install script to handle desktop issues
-   - added ChangeLog
-

Copied: geda-gaf/repos/community-i686/ChangeLog (from rev 97319, 
geda-gaf/trunk/ChangeLog)
===
--- community-i686/ChangeLog(rev 0)
+++ community-i686/ChangeLog2013-09-17 11:15:31 UTC (rev 97320)
@@ -0,0 +1,65 @@
+2013-09-17 Kyle Keen keen...@gmail.com
+   * 1.8.1-3
+   - Update url
+
+2013-06-04 Bartłomiej Piotrowski barthal...@gmail.com
+   * 1.8.1-2
+   - ???
+
+2012-01-19 Kyle Keen keen...@gmail.com
+   * 1.8.1-1
+   - Version bump
+
+2012-01-19 Kyle Keen keen...@gmail.com
+   * 1.6.2-2
+   - libpng15 rebuild
+
+2010-12-26 Stefan Husmann stefan-husm...@t-online.de
+   * 1.6.1-2
+   - adopted, moved to [community]
+   - added some optional dependencies
+   - added some sed-commands for python2 compatibility
+
+2010-02-14 Jared Casper jaredcas...@gmail.com
+   * 1.6.1-1
+   - Version bump
+
+2009-10-10 Jared Casper jaredcas...@gmail.com
+   * 1.6.0-2
+   - Fixed a bug causing icon problems
+
+2009-10-05 Jared Casper jaredcas...@gmail.com
+   * 1.6.0-1
+   - Merged with geda-libs and renamed to geda-gaf to match up with
+   the release tarball name
+
+2009-05-03 Jared Casper jaredcas...@gmail.com
+   * 1.4.3-2
+   - Added gettext dep (noted by sergej)
+   - Added '|| return 1's to configure and make commands
+   - A bit of other random 

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

2013-09-17 Thread Giovanni Scafora
Date: Tuesday, September 17, 2013 @ 15:02:40
  Author: giovanni
Revision: 194527

upgpkg: mkvtoolnix 6.4.1-1

upstream release

Modified:
  mkvtoolnix/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-17 10:04:48 UTC (rev 194526)
+++ PKGBUILD2013-09-17 13:02:40 UTC (rev 194527)
@@ -4,8 +4,8 @@
 
 pkgbase=mkvtoolnix
 pkgname=('mkvtoolnix-cli' 'mkvtoolnix-gtk')
-pkgver=6.3.0
-pkgrel=2
+pkgver=6.4.1
+pkgrel=1
 arch=('i686' 'x86_64')
 license=('GPL')
 url=http://www.bunkus.org/videotools/mkvtoolnix/index.html;
@@ -12,7 +12,7 @@
 makedepends=('libmatroska' 'flac' 'libvorbis' 'file' 'wxgtk'
  'boost-libs' 'lzo2' 'xdg-utils' 'boost' 'ruby')
 
source=(http://www.bunkus.org/videotools/${pkgbase}/sources/${pkgbase}-${pkgver}.tar.xz;)
-md5sums=('3d64652b1aa3ce3faaa468b11dcbd82c')
+md5sums=('1e878646b34eb2c32772d05b91f84f4c')
 
 build() {
   cd ${srcdir}/${pkgbase}-${pkgver}



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

2013-09-17 Thread Giovanni Scafora
Date: Tuesday, September 17, 2013 @ 15:02:47
  Author: giovanni
Revision: 194528

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

Added:
  mkvtoolnix/repos/extra-i686/PKGBUILD
(from rev 194527, mkvtoolnix/trunk/PKGBUILD)
  mkvtoolnix/repos/extra-i686/mkvtoolnix.install
(from rev 194527, mkvtoolnix/trunk/mkvtoolnix.install)
  mkvtoolnix/repos/extra-x86_64/PKGBUILD
(from rev 194527, mkvtoolnix/trunk/PKGBUILD)
  mkvtoolnix/repos/extra-x86_64/mkvtoolnix.install
(from rev 194527, mkvtoolnix/trunk/mkvtoolnix.install)
Deleted:
  mkvtoolnix/repos/extra-i686/PKGBUILD
  mkvtoolnix/repos/extra-i686/mkvtoolnix.install
  mkvtoolnix/repos/extra-x86_64/PKGBUILD
  mkvtoolnix/repos/extra-x86_64/mkvtoolnix.install

-+
 /PKGBUILD   |  168 ++
 /mkvtoolnix.install |   28 ++
 extra-i686/PKGBUILD |   84 ---
 extra-i686/mkvtoolnix.install   |   14 ---
 extra-x86_64/PKGBUILD   |   84 ---
 extra-x86_64/mkvtoolnix.install |   14 ---
 6 files changed, 196 insertions(+), 196 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-09-17 13:02:40 UTC (rev 194527)
+++ extra-i686/PKGBUILD 2013-09-17 13:02:47 UTC (rev 194528)
@@ -1,84 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: xduugu xdu...@gmx.com
-
-pkgbase=mkvtoolnix
-pkgname=('mkvtoolnix-cli' 'mkvtoolnix-gtk')
-pkgver=6.3.0
-pkgrel=2
-arch=('i686' 'x86_64')
-license=('GPL')
-url=http://www.bunkus.org/videotools/mkvtoolnix/index.html;
-makedepends=('libmatroska' 'flac' 'libvorbis' 'file' 'wxgtk'
- 'boost-libs' 'lzo2' 'xdg-utils' 'boost' 'ruby')
-source=(http://www.bunkus.org/videotools/${pkgbase}/sources/${pkgbase}-${pkgver}.tar.xz;)
-md5sums=('3d64652b1aa3ce3faaa468b11dcbd82c')
-
-build() {
-  cd ${srcdir}/${pkgbase}-${pkgver}
-
-  # Disable automagic curl dep used for online update checking
-  sed -i -e '/curl/d' configure.in
-  export CURL_CFLAGS= CURL_LIBS=
-
-  export CFLAGS=${CFLAGS} -DBOOST_FILESYSTEM_VERSION=3
-  export CXXFLAGS=${CXXFLAGS} -DBOOST_FILESYSTEM_VERSION=3
-
-  autoreconf
-
-  ./configure --prefix=/usr \
-  --with-boost-libdir=/usr/lib \
-  --disable-gui
-  rake
-
-  mv src/mkvinfo{,-cli}
-
-  ./configure --prefix=/usr \
-  --with-boost-libdir=/usr/lib
-  rake
-}
-
-package_mkvtoolnix-cli() {
-  pkgdesc=Set of tools to create, edit and inspect Matroska files - CLI 
version
-  depends=('libmatroska' 'expat' 'flac' 'libvorbis' 'file' 'boost-libs' 'lzo2')
-  provides=('mkvtoolnix')
-  conflicts=('mkvtoolnix')
-  replaces=('mkvtoolnix')
-
-  cd ${srcdir}/${pkgbase}-${pkgver}
-
-  rake DESTDIR=${pkgdir} install
-  rm -rf ${pkgdir}/usr/bin/mkvinfo
-  install -Dm755 src/mkvinfo-cli ${pkgdir}/usr/bin/mkvinfo
-
-  rm -rf ${pkgdir}/usr/bin/mmg
-  rm -rf ${pkgdir}/usr/share/man/ja/man1/mmg.1
-  rm -rf ${pkgdir}/usr/share/man/man1/mmg.1
-  rm -rf ${pkgdir}/usr/share/man/nl/man1/mmg.1
-  rm -rf ${pkgdir}/usr/share/man/zh_CN/man1/mmg.1
-  rm -rf ${pkgdir}/usr/share/man/uk/man1/mmg.1
-  rm -rf ${pkgdir}/usr/share/applications
-  rm -rf ${pkgdir}/usr/share/icons
-  rm -rf ${pkgdir}/usr/share/mime
-}
-
-package_mkvtoolnix-gtk() {
-  pkgdesc=Set of tools to create, edit and inspect Matroska files - wxGTK GUI
-  depends=(mkvtoolnix-cli=${pkgver} 'wxgtk' 'xdg-utils')
-  install=mkvtoolnix.install
-
-  cd ${srcdir}/${pkgbase}-${pkgver}
-
-  rake DESTDIR=${pkgdir} install
-  rm -rf ${pkgdir}/usr/bin/mkv*
-  install -Dm755 src/mkvinfo ${pkgdir}/usr/bin/mkvinfo-gtk
-  sed -ri 's/^(Exec=mkvinfo)/\1-gtk/' 
${pkgdir}/usr/share/applications/mkvinfo.desktop
-
-  rm -rf ${pkgdir}/usr/share/doc
-  rm -rf ${pkgdir}/usr/share/locale
-  rm -rf ${pkgdir}/usr/share/man/ja/man1/mkv*
-  rm -rf ${pkgdir}/usr/share/man/man1/mkv*
-  rm -rf ${pkgdir}/usr/share/man/nl/man1/mkv*
-  rm -rf ${pkgdir}/usr/share/man/zh_CN/man1/mkv*
-  rm -rf ${pkgdir}/usr/share/man/uk/man1/mkv*
-}

Copied: mkvtoolnix/repos/extra-i686/PKGBUILD (from rev 194527, 
mkvtoolnix/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-09-17 13:02:47 UTC (rev 194528)
@@ -0,0 +1,84 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: xduugu xdu...@gmx.com
+
+pkgbase=mkvtoolnix
+pkgname=('mkvtoolnix-cli' 'mkvtoolnix-gtk')
+pkgver=6.4.1
+pkgrel=1
+arch=('i686' 'x86_64')
+license=('GPL')
+url=http://www.bunkus.org/videotools/mkvtoolnix/index.html;
+makedepends=('libmatroska' 'flac' 'libvorbis' 'file' 'wxgtk'
+ 'boost-libs' 'lzo2' 'xdg-utils' 'boost' 'ruby')
+source=(http://www.bunkus.org/videotools/${pkgbase}/sources/${pkgbase}-${pkgver}.tar.xz;)
+md5sums=('1e878646b34eb2c32772d05b91f84f4c')
+
+build() {
+  cd ${srcdir}/${pkgbase}-${pkgver}

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

2013-09-17 Thread Florian Pritz
Date: Tuesday, September 17, 2013 @ 15:42:05
  Author: bluewind
Revision: 97321

upgpkg: lib32-libpng 1.6.5-1

upstream update

Modified:
  lib32-libpng/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-17 11:15:31 UTC (rev 97320)
+++ PKGBUILD2013-09-17 13:42:05 UTC (rev 97321)
@@ -6,7 +6,7 @@
 
 _pkgbasename=libpng
 pkgname=lib32-$_pkgbasename
-pkgver=1.6.3
+pkgver=1.6.5
 _apngver=1.6.3
 _libversion=16
 pkgrel=1
@@ -17,9 +17,10 @@
 depends=('lib32-zlib' $_pkgbasename)
 makedepends=(gcc-multilib)
 options=('!libtool')
-source=(http://downloads.sourceforge.net/sourceforge/${_pkgbasename}/${_pkgbasename}-${pkgver}.tar.xz;
+source=(http://downloads.sourceforge.net/sourceforge/${_pkgbasename}/${_pkgbasename}-${pkgver}.tar.xz{,.asc}
 
http://downloads.sourceforge.net/sourceforge/libpng-apng/libpng-${_apngver}-apng.patch.gz;)
-md5sums=('9307f8ab04f4be3c1889ffb504f0fe5c'
+md5sums=('dec292dd99b094cea03bdd7232f5a80c'
+ 'SKIP'
  '57007fc121baa2cdc48abcfb26300e78')
 
 build() {



[arch-commits] Commit in lib32-libpng/repos/multilib-x86_64 (PKGBUILD PKGBUILD)

2013-09-17 Thread Florian Pritz
Date: Tuesday, September 17, 2013 @ 15:42:12
  Author: bluewind
Revision: 97322

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-libpng/repos/multilib-x86_64/PKGBUILD
(from rev 97321, lib32-libpng/trunk/PKGBUILD)
Deleted:
  lib32-libpng/repos/multilib-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2013-09-17 13:42:05 UTC (rev 97321)
+++ PKGBUILD2013-09-17 13:42:12 UTC (rev 97322)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-# Contributor: dorphell dorph...@archlinux.org
-# Contributor: Travis Willard tra...@archlinux.org
-# Contributor: Douglas Soares de Andrade doug...@archlinux.org
-
-_pkgbasename=libpng
-pkgname=lib32-$_pkgbasename
-pkgver=1.6.3
-_apngver=1.6.3
-_libversion=16
-pkgrel=1
-pkgdesc=A collection of routines used to create PNG format graphics files 
(32-bit)
-arch=('x86_64')
-url=http://www.libpng.org/pub/png/libpng.html;
-license=('custom')
-depends=('lib32-zlib' $_pkgbasename)
-makedepends=(gcc-multilib)
-options=('!libtool')
-source=(http://downloads.sourceforge.net/sourceforge/${_pkgbasename}/${_pkgbasename}-${pkgver}.tar.xz;
-
http://downloads.sourceforge.net/sourceforge/libpng-apng/libpng-${_apngver}-apng.patch.gz;)
-md5sums=('9307f8ab04f4be3c1889ffb504f0fe5c'
- '57007fc121baa2cdc48abcfb26300e78')
-
-build() {
-  export CC=gcc -m32
-  export CXX=g++ -m32
-  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
-
-  cd ${srcdir}/${_pkgbasename}-${pkgver}
-
-  # Add animated PNG (apng) support
-  # see http://sourceforge.net/projects/libpng-apng/
-  patch -p1 -i ${srcdir}/libpng-${_apngver}-apng.patch
-
-  ./configure --prefix=/usr --libdir=/usr/lib32 --program-suffix=-32
-  make
-}
-
-package() {
-  cd ${srcdir}/${_pkgbasename}-${pkgver}
-
-  make DESTDIR=${pkgdir} install
-
-  cd contrib/pngminus
-  make PNGLIB=-L${pkgdir}/usr/lib32 -lpng -f makefile.std png2pnm pnm2png
-
-  rm -rf ${pkgdir}/usr/{include,share}
-
-  rm $pkgdir/usr/bin/libpng-config
-  ln -s libpng${_libversion}-config-32 $pkgdir/usr/bin/libpng-config-32
-
-  mkdir -p $pkgdir/usr/share/licenses
-  ln -s $_pkgbasename $pkgdir/usr/share/licenses/$pkgname
-}

Copied: lib32-libpng/repos/multilib-x86_64/PKGBUILD (from rev 97321, 
lib32-libpng/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-09-17 13:42:12 UTC (rev 97322)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: dorphell dorph...@archlinux.org
+# Contributor: Travis Willard tra...@archlinux.org
+# Contributor: Douglas Soares de Andrade doug...@archlinux.org
+
+_pkgbasename=libpng
+pkgname=lib32-$_pkgbasename
+pkgver=1.6.5
+_apngver=1.6.3
+_libversion=16
+pkgrel=1
+pkgdesc=A collection of routines used to create PNG format graphics files 
(32-bit)
+arch=('x86_64')
+url=http://www.libpng.org/pub/png/libpng.html;
+license=('custom')
+depends=('lib32-zlib' $_pkgbasename)
+makedepends=(gcc-multilib)
+options=('!libtool')
+source=(http://downloads.sourceforge.net/sourceforge/${_pkgbasename}/${_pkgbasename}-${pkgver}.tar.xz{,.asc}
+
http://downloads.sourceforge.net/sourceforge/libpng-apng/libpng-${_apngver}-apng.patch.gz;)
+md5sums=('dec292dd99b094cea03bdd7232f5a80c'
+ 'SKIP'
+ '57007fc121baa2cdc48abcfb26300e78')
+
+build() {
+  export CC=gcc -m32
+  export CXX=g++ -m32
+  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
+
+  cd ${srcdir}/${_pkgbasename}-${pkgver}
+
+  # Add animated PNG (apng) support
+  # see http://sourceforge.net/projects/libpng-apng/
+  patch -p1 -i ${srcdir}/libpng-${_apngver}-apng.patch
+
+  ./configure --prefix=/usr --libdir=/usr/lib32 --program-suffix=-32
+  make
+}
+
+package() {
+  cd ${srcdir}/${_pkgbasename}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+
+  cd contrib/pngminus
+  make PNGLIB=-L${pkgdir}/usr/lib32 -lpng -f makefile.std png2pnm pnm2png
+
+  rm -rf ${pkgdir}/usr/{include,share}
+
+  rm $pkgdir/usr/bin/libpng-config
+  ln -s libpng${_libversion}-config-32 $pkgdir/usr/bin/libpng-config-32
+
+  mkdir -p $pkgdir/usr/share/licenses
+  ln -s $_pkgbasename $pkgdir/usr/share/licenses/$pkgname
+}



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

2013-09-17 Thread Dave Reisner
Date: Tuesday, September 17, 2013 @ 17:26:38
  Author: dreisner
Revision: 194529

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

Added:
  systemd/repos/testing-i686/0001-swap-fix-reverse-dependencies.patch
(from rev 194528, systemd/trunk/0001-swap-fix-reverse-dependencies.patch)
  
systemd/repos/testing-i686/0002-swap-create-.wants-symlink-to-auto-swap-devices.patch
(from rev 194528, 
systemd/trunk/0002-swap-create-.wants-symlink-to-auto-swap-devices.patch)
  systemd/repos/testing-i686/PKGBUILD
(from rev 194528, systemd/trunk/PKGBUILD)
  systemd/repos/testing-i686/initcpio-hook-udev
(from rev 194528, systemd/trunk/initcpio-hook-udev)
  systemd/repos/testing-i686/initcpio-install-systemd
(from rev 194528, systemd/trunk/initcpio-install-systemd)
  systemd/repos/testing-i686/initcpio-install-udev
(from rev 194528, systemd/trunk/initcpio-install-udev)
  systemd/repos/testing-i686/systemd.install
(from rev 194528, systemd/trunk/systemd.install)
  systemd/repos/testing-x86_64/0001-swap-fix-reverse-dependencies.patch
(from rev 194528, systemd/trunk/0001-swap-fix-reverse-dependencies.patch)
  
systemd/repos/testing-x86_64/0002-swap-create-.wants-symlink-to-auto-swap-devices.patch
(from rev 194528, 
systemd/trunk/0002-swap-create-.wants-symlink-to-auto-swap-devices.patch)
  systemd/repos/testing-x86_64/PKGBUILD
(from rev 194528, systemd/trunk/PKGBUILD)
  systemd/repos/testing-x86_64/initcpio-hook-udev
(from rev 194528, systemd/trunk/initcpio-hook-udev)
  systemd/repos/testing-x86_64/initcpio-install-systemd
(from rev 194528, systemd/trunk/initcpio-install-systemd)
  systemd/repos/testing-x86_64/initcpio-install-udev
(from rev 194528, systemd/trunk/initcpio-install-udev)
  systemd/repos/testing-x86_64/systemd.install
(from rev 194528, systemd/trunk/systemd.install)
Deleted:
  systemd/repos/testing-i686/PKGBUILD
  systemd/repos/testing-i686/initcpio-hook-udev
  systemd/repos/testing-i686/initcpio-install-systemd
  systemd/repos/testing-i686/initcpio-install-udev
  systemd/repos/testing-i686/systemd.install
  systemd/repos/testing-x86_64/PKGBUILD
  systemd/repos/testing-x86_64/initcpio-hook-udev
  systemd/repos/testing-x86_64/initcpio-install-systemd
  systemd/repos/testing-x86_64/initcpio-install-udev
  systemd/repos/testing-x86_64/systemd.install

---+
 /PKGBUILD |  
286 +
 /initcpio-hook-udev   |   
40 +
 /initcpio-install-systemd |  
312 ++
 /initcpio-install-udev|   
56 +
 /systemd.install  |  
206 ++
 testing-i686/0001-swap-fix-reverse-dependencies.patch |   
30 
 testing-i686/0002-swap-create-.wants-symlink-to-auto-swap-devices.patch   |   
90 ++
 testing-i686/PKGBUILD |  
132 
 testing-i686/initcpio-hook-udev   |   
20 
 testing-i686/initcpio-install-systemd |  
156 -
 testing-i686/initcpio-install-udev|   
28 
 testing-i686/systemd.install  |  
103 ---
 testing-x86_64/0001-swap-fix-reverse-dependencies.patch   |   
30 
 testing-x86_64/0002-swap-create-.wants-symlink-to-auto-swap-devices.patch |   
90 ++
 testing-x86_64/PKGBUILD   |  
132 
 testing-x86_64/initcpio-hook-udev |   
20 
 testing-x86_64/initcpio-install-systemd   |  
156 -
 testing-x86_64/initcpio-install-udev  |   
28 
 testing-x86_64/systemd.install|  
103 ---
 19 files changed, 1140 insertions(+), 878 deletions(-)

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


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

2013-09-17 Thread Jan Steffens
Date: Tuesday, September 17, 2013 @ 18:31:46
  Author: heftig
Revision: 194531

fix i686 build

Modified:
  firefox/trunk/PKGBUILD
  firefox/trunk/mozconfig

---+
 PKGBUILD  |   24 +---
 mozconfig |1 -
 2 files changed, 13 insertions(+), 12 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-09-17 15:27:34 UTC (rev 194530)
+++ PKGBUILD2013-09-17 16:31:46 UTC (rev 194531)
@@ -26,7 +26,7 @@
 mozconfig firefox.desktop firefox-install-dir.patch vendor.js 
shared-libs.patch
 firefox-20.0.1-fixed-loading-icon.png)
 sha256sums=('86a6efa501e1b106b597a8506757f3a2db9d3a5cfcc61ea29a9ad0c834bea83b'
-'2d7d1b909ebb22e6108532d3aded0d0010f785cf23044d4a98c276bb3be047ff'
+'ad0e3c2916076774a8f3b66b8d515a4b1403a2bc789215b5180892537283e4ac'
 'd2a7610393ba259c35e3227b92e02ec91095a95189f56ac93ccdf6732772719c'
 'ded67e8204bd5e1c0c5771c0d2c84ff80c998e1543711e7cd804cfe29e8dd1b0'
 '4b50e9aec03432e21b44d18c4c97b2630bace606b033f7d556c9d3e3eb0f4fa4'
@@ -51,6 +51,7 @@
 browser/base/Makefile.in
 
   echo -n $_google_api_key google-api-key
+  echo ac_add_options --with-google-api-keyfile=\$PWD/google-api-key\ 
.mozconfig
 
   mkdir $srcdir/path
 
@@ -73,22 +74,23 @@
   export PATH=$srcdir/path:$PATH
   export LDFLAGS=$LDFLAGS -Wl,-rpath,/usr/lib/firefox
   export PYTHON=/usr/bin/python2
-  export GOOGLE_API_KEYFILE=$PWD/google-api-key
 
-  # Work around memory address space exhaustion during linking on i686
   if [[ $CARCH == i686 ]]; then
+# Work around memory address space exhaustion during linking on i686
 LDFLAGS+=' -Wl,--no-keep-memory'
-  fi
+make -f client.mk build
+  else
+# Set up PGO
+export DISPLAY=:99
+Xvfb -nolisten tcp -extension GLX -screen 0 1280x1024x24 $DISPLAY 
 
-  export DISPLAY=:99
-  Xvfb -nolisten tcp -extension GLX -screen 0 1280x1024x24 $DISPLAY 
+if ! make -f client.mk build MOZ_PGO=1; then
+  kill $!
+  return 1
+fi
 
-  if ! make -f client.mk build MOZ_PGO=1; then
-kill $!
-return 1
+kill $! || true
   fi
-
-  kill $! || true
 }
 
 package() {

Modified: mozconfig
===
--- mozconfig   2013-09-17 15:27:34 UTC (rev 194530)
+++ mozconfig   2013-09-17 16:31:46 UTC (rev 194531)
@@ -4,7 +4,6 @@
 ac_add_options --libdir=/usr/lib
 
 ac_add_options --enable-official-branding
-ac_add_options --with-google-api-keyfile=$GOOGLE_API_KEYFILE
 
 # System libraries
 ac_add_options --with-system-nspr



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

2013-09-17 Thread Gaetan Bisson
Date: Tuesday, September 17, 2013 @ 19:04:18
  Author: bisson
Revision: 194533

db-move: moved graphviz from [testing] to [extra] (i686, x86_64)

Added:
  graphviz/repos/extra-i686/PKGBUILD
(from rev 194532, graphviz/repos/testing-i686/PKGBUILD)
  graphviz/repos/extra-i686/install
(from rev 194532, graphviz/repos/testing-i686/install)
  graphviz/repos/extra-x86_64/PKGBUILD
(from rev 194532, graphviz/repos/testing-x86_64/PKGBUILD)
  graphviz/repos/extra-x86_64/install
(from rev 194532, graphviz/repos/testing-x86_64/install)
Deleted:
  graphviz/repos/extra-i686/PKGBUILD
  graphviz/repos/extra-i686/install
  graphviz/repos/extra-x86_64/PKGBUILD
  graphviz/repos/extra-x86_64/install
  graphviz/repos/testing-i686/
  graphviz/repos/testing-x86_64/

---+
 /PKGBUILD |  122 
 /install  |   24 +
 extra-i686/PKGBUILD   |   67 --
 extra-i686/install|   12 
 extra-x86_64/PKGBUILD |   67 --
 extra-x86_64/install  |   12 
 6 files changed, 146 insertions(+), 158 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-09-17 16:41:50 UTC (rev 194532)
+++ extra-i686/PKGBUILD 2013-09-17 17:04:18 UTC (rev 194533)
@@ -1,67 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson bis...@archlinux.org
-# Contributor: kevin ke...@archlinux.org
-# Contributor: John Proctor jproc...@prium.net
-
-pkgname=graphviz
-pkgver=2.32.0
-pkgrel=1
-pkgdesc='Graph visualization software'
-url='http://www.graphviz.org/'
-license=('CPL')
-arch=('i686' 'x86_64')
-depends=('libltdl' 'gd' 'librsvg' 'libxaw' 'ghostscript' 'pango' 'gts')
-makedepends=('swig' 'mono' 'guile' 'lua51' 'ocaml' 'perl' 'php' 'python2' 'r' 
'ruby' 'tk' 'qt4')
-optdepends=('mono: sharp bindings'
-'guile: guile bindings'
-'lua51: lua bindings'
-'ocaml: ocaml bindings'
-'perl: perl bindings'
-'php: php bindings'
-'python2: python bindings'
-'r: r bindings'
-'ruby: ruby bindings'
-'tcl: tcl bindings'
-'qt4: gvedit')
-source=(${url}/pub/${pkgname}/stable/SOURCES/${pkgname}-${pkgver}.tar.gz)
-sha1sums=('a64f4a409012d13d18338ecb8bd7253083ebc35e')
-
-options=('!libtool')
-install=install
-
-prepare() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   sed \
-   -e 's: qw(\([^)]*\)): (qw(\1)):g' \
-   -i config/config_perl.pl
-   sed \
-   -e '/archdir/s:$:+ '$(echo 
-I/usr/include/ruby-2.0.0/{$CARCH-linux,ruby/backward,})':' \
-   -e '/CONFIG/s:site:vendor:' \
-   -i config/config_ruby.rb
-   sed \
-   -e 's:guile-1.8:guile-2.0:g' \
-   -e 's:ruby-1.9:ruby-2.0:g' \
-   -e '/LIBPOSTFIX=64/d' \
-   -i configure
-}
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   export PYTHON=python2
-   export LUA=lua5.1
-
-   # install the graph and cgraph api alongside
-   sed 's/@WITH_CGRAPH_FALSE@//g' -i lib/graph/Makefile.in
-
-   ./configure --prefix=/usr
-   make || sed '/caml_array_length/d' -i tclpkg/gv/gv_ocaml.cpp # swig 
goes wonky
-   make
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   make DESTDIR=${pkgdir} install
-
-   # everything has been built against cgraph, but use graph as default api
-   sed '/#define WITH_CGRAPH 1/d' -i 
${pkgdir}/usr/include/graphviz/types.h
-}

Copied: graphviz/repos/extra-i686/PKGBUILD (from rev 194532, 
graphviz/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-09-17 17:04:18 UTC (rev 194533)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: kevin ke...@archlinux.org
+# Contributor: John Proctor jproc...@prium.net
+
+pkgname=graphviz
+pkgver=2.32.0
+pkgrel=2
+pkgdesc='Graph visualization software'
+url='http://www.graphviz.org/'
+license=('CPL')
+arch=('i686' 'x86_64')
+depends=('libltdl' 'gd' 'librsvg' 'libxaw' 'ghostscript' 'pango' 'gts')
+makedepends=('swig' 'mono' 'guile' 'lua51' 'ocaml' 'perl' 'php' 'python2' 'r' 
'ruby' 'tk' 'qt4')
+optdepends=('mono: sharp bindings'
+'guile: guile bindings'
+'lua51: lua bindings'
+'ocaml: ocaml bindings'
+'perl: perl bindings'
+'php: php bindings'
+'python2: python bindings'
+'r: r bindings'
+'ruby: ruby bindings'
+'tcl: tcl bindings'
+'qt4: gvedit')
+source=(${url}/pub/${pkgname}/stable/SOURCES/${pkgname}-${pkgver}.tar.gz)
+sha1sums=('a64f4a409012d13d18338ecb8bd7253083ebc35e')
+
+options=('!libtool')
+install=install
+
+prepare() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   

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

2013-09-17 Thread Jan Steffens
Date: Tuesday, September 17, 2013 @ 19:16:45
  Author: heftig
Revision: 194534

24.0

Modified:
  firefox-i18n/trunk/PKGBUILD

--+
 PKGBUILD |  181 ++---
 1 file changed, 91 insertions(+), 90 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-09-17 17:04:18 UTC (rev 194533)
+++ PKGBUILD2013-09-17 17:16:45 UTC (rev 194534)
@@ -5,7 +5,7 @@
 # Contributor: Andrea Scarpino and...@archlinux.org
 
 pkgbase=firefox-i18n
-pkgver=23.0.1
+pkgver=24.0
 pkgrel=1
 pkgdesc=Language pack for Firefox
 arch=('any')
@@ -128,92 +128,93 @@
   install -Dm644 firefox-i18n-$pkgver-$1.xpi \
 
$pkgdir/usr/lib/firefox/browser/extensions/langpack-$1...@firefox.mozilla.org.xpi
 }
-md5sums=('ce13065a7e9e9d4446888ee7ef5ddf8f'
- 'dcac67abc13b8c021b8323771e5f1ea1'
- 'a78b91cc71c47673a826625422e384f6'
- '5c0f3e8cf6f6507de088bdfa34ee9a77'
- 'e9bbce41ea75d72e2345c59d38b044be'
- 'ec8e63a0e22d788c9e00619bb3fc758d'
- '04124f2e8215b8733ceadbd73c47d355'
- 'ccc0e453067ec6845f2ba9058e4705c4'
- '7c8f73f8b6bc5ad98cad534fa8e18ec8'
- '91c0a04c2ea34a4c076adfaa2c9aa2e7'
- 'b7b0efd757a862c1de0136444ed380a1'
- 'c4f2f9c05ad51d6030b5a74ea0fab327'
- '61e92c2fdb17f965fdb7d6d9a2681791'
- 'bd7cc65df902d0351146bea773c9062d'
- '0acfdf2b71df4066388acdd79c47b043'
- '011822d5c45a553ec1932d17e5b98a13'
- '87d7f8ba6c79515c2d1254928e4bdd1c'
- '898bfa8ac55e2b079b4ff9fdc1463547'
- 'd8c4b686cebabc619248fd46d9c146e9'
- '8e84c3305c4ed2f3f8169711cbe46542'
- '814a4cad0a36ed64c4719249b866bf7b'
- '0c465e939582bd14204ae31a98c73e40'
- 'cda45c3204fcd2ef1ea661d0ca6db050'
- 'e22b5e2adae39119cab1b1e30de13d22'
- '00c1922fcea714bb4f02a8a53b60b35d'
- 'd0baf1e6bb1428807ed2d0a127c6d818'
- '7a3113eea76e5b081ea3598c986aebc7'
- 'd61cff3456d6d800864a199d6ebc8d95'
- '8e7924805f1577f0051b9c548ac67302'
- '0e9bb561e55a8f8e3b45c1b810b810fe'
- '5acf0b435d9aea6925f6ae40aedfc0f3'
- '99fd57cacfce5bd55ecfa3dee11f071e'
- 'a826caedba18ca77fd29bdcda6b4addc'
- 'fd0f12c826abc4de0849a851a9a0fc06'
- 'ea682722cdc901f5b642c10f6fa2a74c'
- '5a756b1d8af284c0306e261f03317a8b'
- 'b4c3174c34827312db783ec439e7affd'
- '54966169b17c065bba64df4e3008f56f'
- 'b83e1ebb51360717985a9ec558a08747'
- 'cf97fb769d5160d4273831deab304c16'
- '1e73cce4cbfd71b62e63a693d77fe5c8'
- 'a4273b60047317f403cb481bbfdabbdb'
- '64540c992392c00703b94397fb447037'
- 'c5ab004fb39b278d8b84688153744012'
- '426fd93daf6c86e8cae15cedc06672a0'
- '75bbcd02af8cbb536f0911c0ed73a452'
- 'c4a6ba719e682affdd3a2ed1c5d8a764'
- 'd4f071dc1db52f214db866a2b59033c7'
- '50b97be30d6ca07a211a3d36e45182e2'
- 'c70a25a87ebae6d0ed0a5c6656330ebb'
- '76d2c91cdc5ac06c004a6412073a79eb'
- '58f5b7522f73aa3f6e2fbc11e660af35'
- '7fb56cc65d73ed2fbb4d64ca60e026b2'
- '61d385dc556ea7816925363646649d34'
- '3a0de25b8d22907084d1ab962cda64ce'
- 'e6c61a2bcb5a493b18e3d0172bfc47c6'
- '4ff91d7241cac953768de9edca66b9cb'
- 'f05095bc29fc9cf90dfeaba5ea18b2b7'
- '441d5423b39947065e25e530e5a26456'
- '1e9293b50eb5a965d24d984671b1711b'
- 'e9d85681ec1ade3dd2ee6980f7112d7f'
- '483438479406e8e3627954710f3137f9'
- '8e45a4b81de058c845e021e52cfddcda'
- 'ccf0c138f30b52b35525972cf3859cb3'
- '1f50dc9ebe9b712e9d6c329181f09c9c'
- 'c31f0a1b126fa4b8aa9d951ddcb6c13d'
- '9a1275bded5d05cdb96ed9509604f843'
- 'c8fb3ec81f6d7c75b3eec5e90040f204'
- '530563b333619a10d02fd9aa04b861d0'
- '9cf91a3ff557663e1020897e253e93f1'
- 'f9e38e26f05a1df9fee7a55da23d8b33'
- '00244eee906c5227c632051c58814f0b'
- '84190d7cb82b4803a64b69f530dd70a6'
- 'e50935ba3e1aad6ef6558036d3ff85ce'
- '52e34ca4050c487332b3042ea2820dba'
- 'afc80ceb7a5502389189375d490fceff'
- '0aec93d7cea57652e46d89009e34001d'
- '38b5a753e3abf6b24662122eef645ee5'
- '8fda2efb64db0040685734835f403050'
- '0b0bcdfeed58d87b8a5edb06d4d56089'
- '80a3418a4700f143045b0d6f1e3f1f5f'
- '7487dbb9fa40f12fba54b1ebcc3225b4'
- '2de8daa56fd16de06c988b19c6ad77f6'
- '0ccf9695fbff6495318e27c16ff7d4a8'
- '93097d91dc8247ba61d211f0d708bcf1'
- '9f475138083874ff6ec984ed2052a5eb'
- 'c72916961d93588d1a314e81c2c85422'
- '52dc0bb01a6f4c481f80a39d93ae8279'
- 'c279af205a0669588ee91fce877cabe3')
+
+md5sums=('95d6737cb7f527a3cffbd16ecdb3ef9f'
+ '14c3c8b55dc75bcee5f42ad08a5abe2c'
+ 'ca0e2f66affee6d1f3c845d645261ba6'
+ '1fd4fc701ddfd76f955c1869ba831f19'
+  

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

2013-09-17 Thread Jan Steffens
Date: Tuesday, September 17, 2013 @ 19:22:24
  Author: heftig
Revision: 194535

archrelease: copy trunk to testing-any

Added:
  firefox-i18n/repos/testing-any/
  firefox-i18n/repos/testing-any/PKGBUILD
(from rev 194534, firefox-i18n/trunk/PKGBUILD)

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

Copied: firefox-i18n/repos/testing-any/PKGBUILD (from rev 194534, 
firefox-i18n/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2013-09-17 17:22:24 UTC (rev 194535)
@@ -0,0 +1,220 @@
+# $Id$
+# Maintainer: Thomas Baechler tho...@archlinux.org
+# Contributor: Jaroslaw Swierczynski swier...@juvepoland.com
+# Contributor: Michal Hybner dta...@gmail.com
+# Contributor: Andrea Scarpino and...@archlinux.org
+
+pkgbase=firefox-i18n
+pkgver=24.0
+pkgrel=1
+pkgdesc=Language pack for Firefox
+arch=('any')
+url=http://www.mozilla.com/;
+license=('MPL' 'GPL')
+depends=(firefox=$pkgver)
+
+_languages=(
+  'achAcoli'
+  'af Afrikaans'
+  'ak Akan'
+  'ar Arabic'
+  'as Assamese'
+  'astAsturian'
+  'be Belarusian'
+  'bg Bulgarian'
+  'bn-BD  Bengali (Bangladesh)'
+  'bn-IN  Bengali (India)'
+  'br Breton'
+  'bs Bosnian'
+  'ca Catalan'
+  'cs Czech'
+  'csbKashubian'
+  'cy Welsh'
+  'da Danish'
+  'de German'
+  'el Greek'
+  'en-GB  English (United Kingdom)'
+  'en-US  English (United States)'
+  'en-ZA  English (South Africa)'
+  'eo Esperanto'
+  'es-AR  Spanish (Argentina)'
+  'es-CL  Spanish (Chile)'
+  'es-ES  Spanish (Spain)'
+  'es-MX  Spanish (Mexico)'
+  'et Estonian'
+  'eu Basque'
+  'fa Persian'
+  'ff Fula'
+  'fi Finnish'
+  'fr French'
+  'fy-NL  Frisian (Netherlands)'
+  'ga-IE  Irish'
+  'gd Gaelic'
+  'gl Galician'
+  'gu-IN  Gujarati (India)'
+  'he Hebrew'
+  'hi-IN  Hindi (India)'
+  'hr Croatian'
+  'hu Hungarian'
+  'hy-AM  Armenian'
+  'id Indonesian'
+  'is Icelandic'
+  'it Italian'
+  'ja Japanese'
+  'kk Kazakh'
+  'km Khmer'
+  'kn Kannada'
+  'ko Korean'
+  'ku Kurdish'
+  'lg Ganda'
+  'lijLigurian'
+  'lt Lithuanian'
+  'lv Latvian'
+  'maiMaithili'
+  'mk Macedonian'
+  'ml Malayalam'
+  'mr Marathi'
+  'nb-NO  Norwegian (Bokmal)'
+  'nl Dutch'
+  'nn-NO  Norwegian (Nynorsk)'
+  'nsoNorthern Sotho (Sesotho sa lebowa)'
+  'or Oriya'
+  'pa-IN  Punjabi'
+  'pl Polish'
+  'pt-BR  Brazilian Portuguese'
+  'pt-PT  Portuguese'
+  'rm Romansh'
+  'ro Romanian'
+  'ru Russian'
+  'si Sinhalese'
+  'sk Slovak'
+  'sl Slovenian'
+  'sonSonghai'
+  'sq Albanian'
+  'sr Serbian'
+  'sv-SE  Swedish'
+  'ta-LK  Tamil (Sri Lanka)'
+  'ta Tamil'
+  'te Telugu'
+  'th Thai'
+  'tr Turkish'
+  'uk Ukrainian'
+  'vi Vietnamese'
+  'zh-CN  Chinese (simplified)'
+  'zh-TW  Chinese (traditional)'
+  'zu Zulu'
+)
+
+pkgname=()
+source=()
+_url=http://download.cdn.mozilla.net/pub/mozilla.org/firefox/releases/$pkgver/linux-i686/xpi
+
+for _lang in ${_languages[@]}; do
+  _locale=${_lang%% *}
+  _pkgname=firefox-i18n-${_locale,,}
+
+  pkgname+=($_pkgname)
+  source+=(firefox-i18n-$pkgver-$_locale.xpi::$_url/$_locale.xpi)
+  eval package_$_pkgname() {
+_package $_lang
+  }
+done
+
+# Don't extract anything
+noextract=(${source[@]%%::*})
+
+_package() {
+  pkgdesc=$2 language pack for Firefox
+  install -Dm644 firefox-i18n-$pkgver-$1.xpi \
+
$pkgdir/usr/lib/firefox/browser/extensions/langpack-$1...@firefox.mozilla.org.xpi
+}
+
+md5sums=('95d6737cb7f527a3cffbd16ecdb3ef9f'
+ '14c3c8b55dc75bcee5f42ad08a5abe2c'
+ 'ca0e2f66affee6d1f3c845d645261ba6'
+ '1fd4fc701ddfd76f955c1869ba831f19'
+ '1dc2781ce7789fa8ef03e7cfaaca497b'
+ '0267a48cc8ec9a509d6cfa285cb9765d'
+ 'bd4f721bce5094dfff029ad607d206d2'
+ '3622b2a0029ad7a2b6f84e809487ad4e'
+ '69fef4ddf71f35bc880bcce76910e6db'
+ 'c471521a00ab97ad02038d1e467eb446'
+ 'c540cce2689e300e6c0cd219da52a130'
+ '86436d8966c9cefb59483a06b058c238'
+ 'cb44c313c7642ebcb6a502e588c6d1c8'
+ '9e868e19c12412cc363e621c562a4d4f'
+ '261f7fcc87ae8eca4e1df136bec0e216'
+ 'dbd6aa1d34b76997df95a7d238b95ce8'
+ '9664d0056329d3d60395e558dd3e35a1'
+ '7925de3b7c817c39a7b8f7f82109f671'
+ '6a70ae11e6fc1acca6dd339c80bfdded'
+ 'aae3b5293a5fc94721c3825d649482cf'
+ 'f08df989792992e58b7c0de75dd0cbfa'
+ '33eb44d09d9124334f70a038a3b588a2'
+ '63936db410bc797d7db9b0c4d1cc1c91'
+ '3a12cf3abc1de62cdd9ca5854f1bd5f8'
+ '3aa64a005cedc964eb4b3746799416e6'
+ '0006f15b300ede782f8c75312a52eb97'
+ 'c5ba36fdbf77fa13ac2ad1b83957991b'
+ 

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

2013-09-17 Thread Jan Steffens
Date: Tuesday, September 17, 2013 @ 18:41:50
  Author: heftig
Revision: 194532

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

Added:
  firefox/repos/testing-i686/
  firefox/repos/testing-i686/PKGBUILD
(from rev 194531, firefox/trunk/PKGBUILD)
  firefox/repos/testing-i686/firefox-20.0.1-fixed-loading-icon.png
(from rev 194531, firefox/trunk/firefox-20.0.1-fixed-loading-icon.png)
  firefox/repos/testing-i686/firefox-install-dir.patch
(from rev 194531, firefox/trunk/firefox-install-dir.patch)
  firefox/repos/testing-i686/firefox.desktop
(from rev 194531, firefox/trunk/firefox.desktop)
  firefox/repos/testing-i686/firefox.install
(from rev 194531, firefox/trunk/firefox.install)
  firefox/repos/testing-i686/mozconfig
(from rev 194531, firefox/trunk/mozconfig)
  firefox/repos/testing-i686/shared-libs.patch
(from rev 194531, firefox/trunk/shared-libs.patch)
  firefox/repos/testing-i686/vendor.js
(from rev 194531, firefox/trunk/vendor.js)
  firefox/repos/testing-x86_64/
  firefox/repos/testing-x86_64/PKGBUILD
(from rev 194531, firefox/trunk/PKGBUILD)
  firefox/repos/testing-x86_64/firefox-20.0.1-fixed-loading-icon.png
(from rev 194531, firefox/trunk/firefox-20.0.1-fixed-loading-icon.png)
  firefox/repos/testing-x86_64/firefox-install-dir.patch
(from rev 194531, firefox/trunk/firefox-install-dir.patch)
  firefox/repos/testing-x86_64/firefox.desktop
(from rev 194531, firefox/trunk/firefox.desktop)
  firefox/repos/testing-x86_64/firefox.install
(from rev 194531, firefox/trunk/firefox.install)
  firefox/repos/testing-x86_64/mozconfig
(from rev 194531, firefox/trunk/mozconfig)
  firefox/repos/testing-x86_64/shared-libs.patch
(from rev 194531, firefox/trunk/shared-libs.patch)
  firefox/repos/testing-x86_64/vendor.js
(from rev 194531, firefox/trunk/vendor.js)

--+
 testing-i686/PKGBUILD|  129 +
 testing-i686/firefox-install-dir.patch   |   30 ++
 testing-i686/firefox.desktop |  121 +++
 testing-i686/firefox.install |   13 ++
 testing-i686/mozconfig   |   34 +++
 testing-i686/shared-libs.patch   |   12 ++
 testing-i686/vendor.js   |9 ++
 testing-x86_64/PKGBUILD  |  129 +
 testing-x86_64/firefox-install-dir.patch |   30 ++
 testing-x86_64/firefox.desktop   |  121 +++
 testing-x86_64/firefox.install   |   13 ++
 testing-x86_64/mozconfig |   34 +++
 testing-x86_64/shared-libs.patch |   12 ++
 testing-x86_64/vendor.js |9 ++
 14 files changed, 696 insertions(+)

Copied: firefox/repos/testing-i686/PKGBUILD (from rev 194531, 
firefox/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-09-17 16:41:50 UTC (rev 194532)
@@ -0,0 +1,129 @@
+# $Id$
+# Maintainer : Ionut Biru ib...@archlinux.org
+# Contributor: Jakub Schmidtke sja...@gmail.com
+
+pkgname=firefox
+pkgver=24.0
+pkgrel=1
+pkgdesc=Standalone web browser from mozilla.org
+arch=('i686' 'x86_64')
+license=('MPL' 'GPL' 'LGPL')
+url=https://www.mozilla.org/firefox/;
+depends=('gtk2' 'mozilla-common' 'libxt' 'startup-notification' 'mime-types'
+ 'dbus-glib' 'alsa-lib' 'libvpx' 'libevent' 'nss' 'hunspell' 'sqlite'
+  'libnotify' 'desktop-file-utils' 'hicolor-icon-theme')
+makedepends=('unzip' 'zip' 'diffutils' 'python2' 'yasm' 'mesa' 'imake'
+ 'xorg-server-xvfb' 'libpulse' 'gstreamer0.10-base')
+optdepends=('networkmanager: Location detection via available WiFi networks'
+'gstreamer0.10-base-plugins: vorbis decoding, ogg demuxing'
+'gstreamer0.10-bad-plugins: aac, vp8 and opus decoding'
+'gstreamer0.10-good-plugins: webm and mp4 demuxing'
+'gstreamer0.10-ugly-plugins: h.264 decoding'
+'libpulse: PulseAudio audio driver')
+install=firefox.install
+options=('!emptydirs' '!makeflags')
+source=(https://ftp.mozilla.org/pub/mozilla.org/firefox/releases/$pkgver/source/firefox-$pkgver.source.tar.bz2
+mozconfig firefox.desktop firefox-install-dir.patch vendor.js 
shared-libs.patch
+firefox-20.0.1-fixed-loading-icon.png)
+sha256sums=('86a6efa501e1b106b597a8506757f3a2db9d3a5cfcc61ea29a9ad0c834bea83b'
+'ad0e3c2916076774a8f3b66b8d515a4b1403a2bc789215b5180892537283e4ac'
+'d2a7610393ba259c35e3227b92e02ec91095a95189f56ac93ccdf6732772719c'
+'ded67e8204bd5e1c0c5771c0d2c84ff80c998e1543711e7cd804cfe29e8dd1b0'
+'4b50e9aec03432e21b44d18c4c97b2630bace606b033f7d556c9d3e3eb0f4fa4'
+'e2b4a00d14f4ba69c62b3f9ef9908263fbab179ba8004197cbc67edbd916fdf1'
+

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

2013-09-17 Thread Andrea Scarpino
Date: Wednesday, September 18, 2013 @ 00:21:46
  Author: andrea
Revision: 97323

Fix website

Modified:
  herqq/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-17 13:42:12 UTC (rev 97322)
+++ PKGBUILD2013-09-17 22:21:46 UTC (rev 97323)
@@ -7,7 +7,7 @@
 pkgrel=2
 pkgdesc='Software library for building UPnP devices (HUPnP)'
 arch=('x86_64' 'i686')
-url='http://www.herqq.org/'
+url='http://hupnp.linada.fi/index.html'
 license=('GPL')
 depends=('qt4')
 source=(http://downloads.sourceforge.net/hupnp/$pkgname-$pkgver.zip;)
@@ -14,13 +14,13 @@
 sha256sums=('cbcfc76f72d561d822a7ff5374b97e80d1731b610a5c257edbf5c013bfe6748e')
 
 build() {
-  cd $srcdir/$pkgname-$pkgver
-  qmake PREFIX=/usr
+  cd $pkgname-$pkgver
+  qmake-qt4 PREFIX=/usr
   make
 }
 
 package() {
-  cd $srcdir/$pkgname-$pkgver
+  cd $pkgname-$pkgver
   make INSTALL_ROOT=$pkgdir install
 }
 



[arch-commits] Commit in (gtkglarea netcfg)

2013-09-17 Thread Connor Behan
Date: Wednesday, September 18, 2013 @ 05:32:15
  Author: cbehan
Revision: 97324

Initial import of gtkglarea

Added:
  gtkglarea/
Deleted:
  netcfg/



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

2013-09-17 Thread Jan Steffens
Date: Wednesday, September 18, 2013 @ 05:46:03
  Author: heftig
Revision: 194536

Reorder deps; add inetutils (hostname is called during build, and recorded); 
add gold linker, but keep commented for now

Modified:
  firefox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-17 17:22:24 UTC (rev 194535)
+++ PKGBUILD2013-09-18 03:46:03 UTC (rev 194536)
@@ -10,10 +10,11 @@
 license=('MPL' 'GPL' 'LGPL')
 url=https://www.mozilla.org/firefox/;
 depends=('gtk2' 'mozilla-common' 'libxt' 'startup-notification' 'mime-types'
- 'dbus-glib' 'alsa-lib' 'libvpx' 'libevent' 'nss' 'hunspell' 'sqlite'
-  'libnotify' 'desktop-file-utils' 'hicolor-icon-theme')
+ 'dbus-glib' 'alsa-lib' 'desktop-file-utils' 'hicolor-icon-theme'
+ 'libvpx' 'libevent' 'nss' 'hunspell' 'sqlite')
 makedepends=('unzip' 'zip' 'diffutils' 'python2' 'yasm' 'mesa' 'imake'
- 'xorg-server-xvfb' 'libpulse' 'gstreamer0.10-base')
+ 'xorg-server-xvfb' 'libpulse' 'gstreamer0.10-base'
+ 'inetutils')
 optdepends=('networkmanager: Location detection via available WiFi networks'
 'gstreamer0.10-base-plugins: vorbis decoding, ogg demuxing'
 'gstreamer0.10-bad-plugins: aac, vp8 and opus decoding'
@@ -58,6 +59,9 @@
   # WebRTC build tries to execute python and expects Python 2
   ln -s /usr/bin/python2 $srcdir/path/python
 
+  # Use gold, as Mozilla can use some of its features, such as safe ICF
+  #ln -s /usr/bin/ld.gold $srcdir/path/ld
+
   # configure script misdetects the preprocessor without an optimization level
   # https://bugs.archlinux.org/task/34644
   sed -i '/ac_cpp=/s/$CPPFLAGS/ -O2/' configure



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

2013-09-17 Thread Jan Steffens
Date: Wednesday, September 18, 2013 @ 05:51:50
  Author: heftig
Revision: 194537

Remove loading icon patch; should not be needed since libpng 1.6.3

Modified:
  firefox/trunk/PKGBUILD
Deleted:
  firefox/trunk/firefox-20.0.1-fixed-loading-icon.png

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-18 03:46:03 UTC (rev 194536)
+++ PKGBUILD2013-09-18 03:51:50 UTC (rev 194537)
@@ -24,15 +24,13 @@
 install=firefox.install
 options=('!emptydirs' '!makeflags')
 
source=(https://ftp.mozilla.org/pub/mozilla.org/firefox/releases/$pkgver/source/firefox-$pkgver.source.tar.bz2
-mozconfig firefox.desktop firefox-install-dir.patch vendor.js 
shared-libs.patch
-firefox-20.0.1-fixed-loading-icon.png)
+mozconfig firefox.desktop firefox-install-dir.patch vendor.js 
shared-libs.patch)
 sha256sums=('86a6efa501e1b106b597a8506757f3a2db9d3a5cfcc61ea29a9ad0c834bea83b'
 'ad0e3c2916076774a8f3b66b8d515a4b1403a2bc789215b5180892537283e4ac'
 'd2a7610393ba259c35e3227b92e02ec91095a95189f56ac93ccdf6732772719c'
 'ded67e8204bd5e1c0c5771c0d2c84ff80c998e1543711e7cd804cfe29e8dd1b0'
 '4b50e9aec03432e21b44d18c4c97b2630bace606b033f7d556c9d3e3eb0f4fa4'
-'e2b4a00d14f4ba69c62b3f9ef9908263fbab179ba8004197cbc67edbd916fdf1'
-'68e3a5b47c6d175cc95b98b069a15205f027cab83af9e075818d38610feb6213')
+'e2b4a00d14f4ba69c62b3f9ef9908263fbab179ba8004197cbc67edbd916fdf1')
 
 # Google API keys (see http://www.chromium.org/developers/how-tos/api-keys)
 # Note: These are for Arch Linux use ONLY. For your own distribution, please
@@ -65,11 +63,6 @@
   # configure script misdetects the preprocessor without an optimization level
   # https://bugs.archlinux.org/task/34644
   sed -i '/ac_cpp=/s/$CPPFLAGS/ -O2/' configure
-
-  # Fix tab loading icon (flickers with libpng 1.6)
-  # https://bugzilla.mozilla.org/show_bug.cgi?id=841734
-  cp $srcdir/firefox-20.0.1-fixed-loading-icon.png \
-browser/themes/linux/tabbrowser/loading.png
 }
 
 build() {

Deleted: firefox-20.0.1-fixed-loading-icon.png
===
(Binary files differ)



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

2013-09-17 Thread Jan Steffens
Date: Wednesday, September 18, 2013 @ 05:52:49
  Author: heftig
Revision: 194539

and correct sums

Modified:
  firefox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-18 03:52:32 UTC (rev 194538)
+++ PKGBUILD2013-09-18 03:52:49 UTC (rev 194539)
@@ -29,8 +29,7 @@
 'ad0e3c2916076774a8f3b66b8d515a4b1403a2bc789215b5180892537283e4ac'
 'd2a7610393ba259c35e3227b92e02ec91095a95189f56ac93ccdf6732772719c'
 'ded67e8204bd5e1c0c5771c0d2c84ff80c998e1543711e7cd804cfe29e8dd1b0'
-'4b50e9aec03432e21b44d18c4c97b2630bace606b033f7d556c9d3e3eb0f4fa4'
-'e2b4a00d14f4ba69c62b3f9ef9908263fbab179ba8004197cbc67edbd916fdf1')
+'4b50e9aec03432e21b44d18c4c97b2630bace606b033f7d556c9d3e3eb0f4fa4')
 
 # Google API keys (see http://www.chromium.org/developers/how-tos/api-keys)
 # Note: These are for Arch Linux use ONLY. For your own distribution, please



[arch-commits] Commit in firefox/trunk (PKGBUILD shared-libs.patch)

2013-09-17 Thread Jan Steffens
Date: Wednesday, September 18, 2013 @ 05:52:32
  Author: heftig
Revision: 194538

Try to build without shared-libs.patch; hopefully not needed anymore

Modified:
  firefox/trunk/PKGBUILD
Deleted:
  firefox/trunk/shared-libs.patch

---+
 PKGBUILD  |3 +--
 shared-libs.patch |   12 
 2 files changed, 1 insertion(+), 14 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-09-18 03:51:50 UTC (rev 194537)
+++ PKGBUILD2013-09-18 03:52:32 UTC (rev 194538)
@@ -24,7 +24,7 @@
 install=firefox.install
 options=('!emptydirs' '!makeflags')
 
source=(https://ftp.mozilla.org/pub/mozilla.org/firefox/releases/$pkgver/source/firefox-$pkgver.source.tar.bz2
-mozconfig firefox.desktop firefox-install-dir.patch vendor.js 
shared-libs.patch)
+mozconfig firefox.desktop firefox-install-dir.patch vendor.js)
 sha256sums=('86a6efa501e1b106b597a8506757f3a2db9d3a5cfcc61ea29a9ad0c834bea83b'
 'ad0e3c2916076774a8f3b66b8d515a4b1403a2bc789215b5180892537283e4ac'
 'd2a7610393ba259c35e3227b92e02ec91095a95189f56ac93ccdf6732772719c'
@@ -43,7 +43,6 @@
 
   cp ../mozconfig .mozconfig
   patch -Np1 -i ../firefox-install-dir.patch
-  patch -Np1 -i ../shared-libs.patch
 
   # Fix PRE_RELEASE_SUFFIX
   sed -i '/^PRE_RELEASE_SUFFIX := /s/ //' \

Deleted: shared-libs.patch
===
--- shared-libs.patch   2013-09-18 03:51:50 UTC (rev 194537)
+++ shared-libs.patch   2013-09-18 03:52:32 UTC (rev 194538)
@@ -1,12 +0,0 @@
-diff -Nur mozilla-release.orig/browser/installer/Makefile.in 
mozilla-release/browser/installer/Makefile.in
 mozilla-release.orig/browser/installer/Makefile.in 2012-07-17 
16:19:29.480356991 +
-+++ mozilla-release/browser/installer/Makefile.in  2012-07-17 
17:32:41.250937293 +
-@@ -50,7 +50,7 @@
- MOZ_PKG_MANIFEST_P = $(srcdir)/package-manifest.in
- # Some files have been already bundled with xulrunner
- ifndef SYSTEM_LIBXUL
--MOZ_PKG_FATAL_WARNINGS = 1
-+MOZ_PKG_FATAL_WARNINGS = 0
- endif
- 
- MOZ_NONLOCALIZED_PKG_LIST = \



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

2013-09-17 Thread Felix Yan
Date: Wednesday, September 18, 2013 @ 06:03:17
  Author: fyan
Revision: 97325

upgpkg: xnoise 0.2.19-1

Modified:
  xnoise/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-18 03:32:15 UTC (rev 97324)
+++ PKGBUILD2013-09-18 04:03:17 UTC (rev 97325)
@@ -3,13 +3,13 @@
 # Contributor: archtux antonio dot arias9 at gmail dot com
 
 pkgname=xnoise
-pkgver=0.2.18
+pkgver=0.2.19
 pkgrel=1
 pkgdesc=Media player with a slick GUI, great speed and lots of features.
 arch=('i686' 'x86_64')
 url=http://www.xnoise-media-player.com/;
 license=('GPL2')
-depends=('desktop-file-utils' 'gnome-icon-theme' 'gst-plugins-base-libs' 
'gst-plugins-good' 'gtk3' 'libsoup' 'sqlite' 'libtaginfo' 'librsvg')
+depends=('desktop-file-utils' 'gnome-icon-theme' 'gst-plugins-base-libs' 
'gst-plugins-good' 'gtk3' 'libsoup' 'sqlite' 'libtaginfo' 'librsvg' 'vala')
 optdepends=('gst-plugins-base: Basic media codecs'
 'gst-plugins-bad: Extra media codecs'
 'gst-plugins-ugly: Extra media codecs'
@@ -34,4 +34,5 @@
   # Remove obsolete files
   rm -rf $pkgdir/usr/include $pkgdir/usr/share/vala
 }
-sha512sums=('afe6d380f84c96d3612ed6a01a31b279b06d101252304a83be081eb25d4342e3487aa0f1955c3aa6b70297f8858d3c01be5f708a37c3741a1c2b6afd76127e9b')
+
+sha512sums=('3c3a735d005704342d2c27c36738b91f850e2630b431edfc1def5d26f836dc0df1ef752ca8d1eec3e90702eb27f78e46970a147a64c2156fbe53c8471eb978cb')



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

2013-09-17 Thread Felix Yan
Date: Wednesday, September 18, 2013 @ 06:04:28
  Author: fyan
Revision: 97326

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

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

-+
 /PKGBUILD   |   76 ++
 /xnoise.install |   26 +
 community-i686/PKGBUILD |   37 --
 community-i686/xnoise.install   |   13 --
 community-x86_64/PKGBUILD   |   37 --
 community-x86_64/xnoise.install |   13 --
 6 files changed, 102 insertions(+), 100 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-09-18 04:03:17 UTC (rev 97325)
+++ community-i686/PKGBUILD 2013-09-18 04:04:28 UTC (rev 97326)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
-# Contributor: archtux antonio dot arias9 at gmail dot com
-
-pkgname=xnoise
-pkgver=0.2.18
-pkgrel=1
-pkgdesc=Media player with a slick GUI, great speed and lots of features.
-arch=('i686' 'x86_64')
-url=http://www.xnoise-media-player.com/;
-license=('GPL2')
-depends=('desktop-file-utils' 'gnome-icon-theme' 'gst-plugins-base-libs' 
'gst-plugins-good' 'gtk3' 'libsoup' 'sqlite' 'libtaginfo' 'librsvg')
-optdepends=('gst-plugins-base: Basic media codecs'
-'gst-plugins-bad: Extra media codecs'
-'gst-plugins-ugly: Extra media codecs'
-   'gst-libav: Extra media codecs'
-   'gvfs: Needed for fetching album art')
-makedepends=('gettext' 'intltool')
-options=('!libtool')
-install=$pkgname.install
-source=(https://bitbucket.org/shuerhaaken/xnoise/downloads/$pkgname-$pkgver.tar.gz;)
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-  
-  # Remove obsolete files
-  rm -rf $pkgdir/usr/include $pkgdir/usr/share/vala
-}
-sha512sums=('afe6d380f84c96d3612ed6a01a31b279b06d101252304a83be081eb25d4342e3487aa0f1955c3aa6b70297f8858d3c01be5f708a37c3741a1c2b6afd76127e9b')

Copied: xnoise/repos/community-i686/PKGBUILD (from rev 97325, 
xnoise/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-09-18 04:04:28 UTC (rev 97326)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: archtux antonio dot arias9 at gmail dot com
+
+pkgname=xnoise
+pkgver=0.2.19
+pkgrel=1
+pkgdesc=Media player with a slick GUI, great speed and lots of features.
+arch=('i686' 'x86_64')
+url=http://www.xnoise-media-player.com/;
+license=('GPL2')
+depends=('desktop-file-utils' 'gnome-icon-theme' 'gst-plugins-base-libs' 
'gst-plugins-good' 'gtk3' 'libsoup' 'sqlite' 'libtaginfo' 'librsvg' 'vala')
+optdepends=('gst-plugins-base: Basic media codecs'
+'gst-plugins-bad: Extra media codecs'
+'gst-plugins-ugly: Extra media codecs'
+   'gst-libav: Extra media codecs'
+   'gvfs: Needed for fetching album art')
+makedepends=('gettext' 'intltool')
+options=('!libtool')
+install=$pkgname.install
+source=(https://bitbucket.org/shuerhaaken/xnoise/downloads/$pkgname-$pkgver.tar.gz;)
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  
+  # Remove obsolete files
+  rm -rf $pkgdir/usr/include $pkgdir/usr/share/vala
+}
+
+sha512sums=('3c3a735d005704342d2c27c36738b91f850e2630b431edfc1def5d26f836dc0df1ef752ca8d1eec3e90702eb27f78e46970a147a64c2156fbe53c8471eb978cb')

Deleted: community-i686/xnoise.install
===
--- community-i686/xnoise.install   2013-09-18 04:03:17 UTC (rev 97325)
+++ community-i686/xnoise.install   2013-09-18 04:04:28 UTC (rev 97326)
@@ -1,13 +0,0 @@
- 
-post_install() {
-  gtk-update-icon-cache -t -f /usr/share/icons/hicolor
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: xnoise/repos/community-i686/xnoise.install (from rev 97325, 
xnoise/trunk/xnoise.install)
===
--- community-i686/xnoise.install   (rev 0)
+++ community-i686/xnoise.install   

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

2013-09-17 Thread Connor Behan
Date: Wednesday, September 18, 2013 @ 06:15:20
  Author: cbehan
Revision: 97327

upgpkg: gtkglarea 2.0.1-3

Update to 2.0.1-3

Added:
  gtkglarea/trunk/
  gtkglarea/trunk/PKGBUILD

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

Added: trunk/PKGBUILD
===
--- trunk/PKGBUILD  (rev 0)
+++ trunk/PKGBUILD  2013-09-18 04:15:20 UTC (rev 97327)
@@ -0,0 +1,32 @@
+# Maintainer: Connor Behan connor.be...@gmail.com
+# Contributor: Andreas B. Wagner andreasbwag...@pointfree.net
+# Contributor: arjan ar...@archlinux.org
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+# Contributor: SpepS dreamspepser at yahoo dot it
+
+pkgname=gtkglarea
+pkgver=2.0.1
+pkgrel=3
+pkgdesc=GTK/GL Area libraries
+arch=('i686' 'x86_64')
+url=http://mono-project.com/GtkGLArea;
+license=('GPL')
+depends=('gtk2' 'glu')
+options=('!libtool')
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/2.0/$pkgname-$pkgver.tar.gz;)
+md5sums=('2a81a86cfa80a920a5454dd00fad2e1d')
+
+build() {
+   cd $srcdir/$pkgname-$pkgver
+
+   # DSO link fix
+   LDFLAGS+= -lm \
+   ./configure --prefix=/usr \
+   --enable-static=no
+   make
+}
+
+package() {
+   cd $srcdir/$pkgname-$pkgver
+   make DESTDIR=$pkgdir/ install
+}


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


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

2013-09-17 Thread Jan Steffens
Date: Wednesday, September 18, 2013 @ 06:16:13
  Author: heftig
Revision: 194540

Update to 1.6.6; No change for us (only ARM), so not rebuilding

Modified:
  libpng/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-09-18 03:52:49 UTC (rev 194539)
+++ PKGBUILD2013-09-18 04:16:13 UTC (rev 194540)
@@ -5,8 +5,8 @@
 # Contributor: Douglas Soares de Andrade doug...@archlinux.org
 
 pkgname=libpng
-pkgver=1.6.5
-_apngver=1.6.3
+pkgver=1.6.6
+_apngver=1.6.6
 pkgrel=1
 pkgdesc=A collection of routines used to create PNG format graphics files
 arch=('i686' 'x86_64')
@@ -16,14 +16,14 @@
 options=('!libtool')
 
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.xz{,.asc}
 
http://downloads.sourceforge.net/sourceforge/libpng-apng/libpng-$_apngver-apng.patch.gz)
-md5sums=('dec292dd99b094cea03bdd7232f5a80c'
+md5sums=('3a41dcd58bcac7cc191c2ec80c7fb2ac'
  'SKIP'
- '57007fc121baa2cdc48abcfb26300e78')
+ '8af242769611daf62a8a17349b6059f7')
 
 prepare() {
   cd $pkgname-$pkgver
 
-  # Add animated PNG (apng) support
+  # Add animated PNG (apng) support. Required by Firefox
   # see http://sourceforge.net/projects/libpng-apng/
   patch -Np1 -i ../libpng-$_apngver-apng.patch
 }



[arch-commits] Commit in gtkglarea (5 files)

2013-09-17 Thread Connor Behan
Date: Wednesday, September 18, 2013 @ 06:16:36
  Author: cbehan
Revision: 97328

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

Added:
  gtkglarea/repos/
  gtkglarea/repos/community-i686/
  gtkglarea/repos/community-i686/PKGBUILD
(from rev 97327, gtkglarea/trunk/PKGBUILD)
  gtkglarea/repos/community-x86_64/
  gtkglarea/repos/community-x86_64/PKGBUILD
(from rev 97327, gtkglarea/trunk/PKGBUILD)

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

Copied: gtkglarea/repos/community-i686/PKGBUILD (from rev 97327, 
gtkglarea/trunk/PKGBUILD)
===
--- repos/community-i686/PKGBUILD   (rev 0)
+++ repos/community-i686/PKGBUILD   2013-09-18 04:16:36 UTC (rev 97328)
@@ -0,0 +1,32 @@
+# Maintainer: Connor Behan connor.be...@gmail.com
+# Contributor: Andreas B. Wagner andreasbwag...@pointfree.net
+# Contributor: arjan ar...@archlinux.org
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+# Contributor: SpepS dreamspepser at yahoo dot it
+
+pkgname=gtkglarea
+pkgver=2.0.1
+pkgrel=3
+pkgdesc=GTK/GL Area libraries
+arch=('i686' 'x86_64')
+url=http://mono-project.com/GtkGLArea;
+license=('GPL')
+depends=('gtk2' 'glu')
+options=('!libtool')
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/2.0/$pkgname-$pkgver.tar.gz;)
+md5sums=('2a81a86cfa80a920a5454dd00fad2e1d')
+
+build() {
+   cd $srcdir/$pkgname-$pkgver
+
+   # DSO link fix
+   LDFLAGS+= -lm \
+   ./configure --prefix=/usr \
+   --enable-static=no
+   make
+}
+
+package() {
+   cd $srcdir/$pkgname-$pkgver
+   make DESTDIR=$pkgdir/ install
+}

Copied: gtkglarea/repos/community-x86_64/PKGBUILD (from rev 97327, 
gtkglarea/trunk/PKGBUILD)
===
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2013-09-18 04:16:36 UTC (rev 97328)
@@ -0,0 +1,32 @@
+# Maintainer: Connor Behan connor.be...@gmail.com
+# Contributor: Andreas B. Wagner andreasbwag...@pointfree.net
+# Contributor: arjan ar...@archlinux.org
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+# Contributor: SpepS dreamspepser at yahoo dot it
+
+pkgname=gtkglarea
+pkgver=2.0.1
+pkgrel=3
+pkgdesc=GTK/GL Area libraries
+arch=('i686' 'x86_64')
+url=http://mono-project.com/GtkGLArea;
+license=('GPL')
+depends=('gtk2' 'glu')
+options=('!libtool')
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/2.0/$pkgname-$pkgver.tar.gz;)
+md5sums=('2a81a86cfa80a920a5454dd00fad2e1d')
+
+build() {
+   cd $srcdir/$pkgname-$pkgver
+
+   # DSO link fix
+   LDFLAGS+= -lm \
+   ./configure --prefix=/usr \
+   --enable-static=no
+   make
+}
+
+package() {
+   cd $srcdir/$pkgname-$pkgver
+   make DESTDIR=$pkgdir/ install
+}