[arch-commits] Commit in xf86-video-neomagic/trunk (3 files)

2015-02-06 Thread Laurent Carlier
Date: Friday, February 6, 2015 @ 09:02:51
  Author: lcarlier
Revision: 230897

upgpkg: xf86-video-neomagic 1.2.8-4

xorg-server 1.17 rebuild

Modified:
  xf86-video-neomagic/trunk/PKGBUILD
  xf86-video-neomagic/trunk/git-fixes.patch
Deleted:
  xf86-video-neomagic/trunk/shadowfb.patch

-+
 PKGBUILD|   17 ++-
 git-fixes.patch |  246 +++---
 shadowfb.patch  |   18 ---
 3 files changed, 101 insertions(+), 180 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-02-06 05:01:51 UTC (rev 230896)
+++ PKGBUILD2015-02-06 08:02:51 UTC (rev 230897)
@@ -3,18 +3,25 @@
 
 pkgname=xf86-video-neomagic
 pkgver=1.2.8
-pkgrel=3
+pkgrel=4
 pkgdesc=X.org neomagic video driver
 arch=(i686 x86_64)
 url=http://xorg.freedesktop.org/;
 license=('custom')
 depends=('glibc')
-makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=18')
-conflicts=('xorg-server1.16' 'X-ABI-VIDEODRV_VERSION18' 
'X-ABI-VIDEODRV_VERSION=19')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=19')
+conflicts=('xorg-server1.16' 'X-ABI-VIDEODRV_VERSION19' 
'X-ABI-VIDEODRV_VERSION=20')
 groups=('xorg-drivers' 'xorg')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('50abf6ac02547900edeaa5073c5f6d2f153f12dd47067cc7e4758e1b74d78874')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2 
git-fixes.patch)
+sha256sums=('50abf6ac02547900edeaa5073c5f6d2f153f12dd47067cc7e4758e1b74d78874'
+'f63912b98a8a4bad30125fd95900651141f9367f7897c88548a83abe70633511')
 
+prepare() {
+  cd ${pkgname}-${pkgver}
+
+  patch -Np1 -i ../git-fixes.patch
+}
+
 build() {
   cd ${pkgname}-${pkgver}
 

Modified: git-fixes.patch
===
--- git-fixes.patch 2015-02-06 05:01:51 UTC (rev 230896)
+++ git-fixes.patch 2015-02-06 08:02:51 UTC (rev 230897)
@@ -1,167 +1,99 @@
-diff --git a/configure.ac b/configure.ac
-index 29cf772..a6eafa3 100644
 a/configure.ac
-+++ b/configure.ac
-@@ -24,7 +24,7 @@
- AC_PREREQ([2.60])
- AC_INIT([xf86-video-neomagic],
- [1.2.7],
--[https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],
-+
[https://bugs.freedesktop.org/enter_bug.cgi?product=xorgcomponent=Driver/Neomagic],
- [xf86-video-neomagic])
- AC_CONFIG_SRCDIR([Makefile.am])
- AC_CONFIG_HEADERS([config.h])
-@@ -53,14 +53,6 @@ AC_ARG_WITH(xorg-module-dir,
- [moduledir=$withval],
- [moduledir=$libdir/xorg/modules])
+From 74a9a343f6e156d24539b81f1224b7410acf0e38 Mon Sep 17 00:00:00 2001
+From: Adam Jackson a...@redhat.com
+Date: Wed, 21 May 2014 14:07:53 -0400
+Subject: Use own thunk functions instead of vgaHW*Weak
+
+I plan to remove the Weak functions from a future server
+
+Signed-off-by: Adam Jackson a...@redhat.com
+
+diff --git a/src/neo_driver.c b/src/neo_driver.c
+index 7e60f3e..1b0da34 100644
+--- a/src/neo_driver.c
 b/src/neo_driver.c
+@@ -1439,6 +1439,12 @@ NEOShadowInit(ScreenPtr pScreen)
+   return TRUE;
+ }
  
--
--# Store the list of server defined optional extensions in REQUIRED_MODULES
--XORG_DRIVER_CHECK_EXT(RANDR, randrproto)
--XORG_DRIVER_CHECK_EXT(RENDER, renderproto)
--XORG_DRIVER_CHECK_EXT(XV, videoproto)
--XORG_DRIVER_CHECK_EXT(DPMSExtension, xextproto)
--XORG_DRIVER_CHECK_EXT(XFreeXDGA, xf86dgaproto)
--
- # Obtain compiler/linker options for the driver dependencies
- PKG_CHECK_MODULES(XORG, [xorg-server = 1.0.99.901 xproto fontsproto 
$REQUIRED_MODULES])
- 
-diff --git a/src/neo.h b/src/neo.h
-index 6aecc33..6812e7a 100644
 a/src/neo.h
-+++ b/src/neo.h
-@@ -320,3 +320,14 @@ typedef struct {
- #define PROBED_NM2097 0x83
- #define PROBED_NM2160 0x44
- #define PROBED_NM2200 0x45
++static Bool
++NEOSaveScreen(ScreenPtr pScreen, int mode)
++{
++return vgaHWSaveScreen(pScreen, mode);
++}
 +
-+#define PCI_VENDOR_NEOMAGIC   0x10C8
-+#define PCI_CHIP_NM2070   0x0001
-+#define PCI_CHIP_NM2090   0x0002
-+#define PCI_CHIP_NM2093   0x0003
-+#define PCI_CHIP_NM2097   0x0083
-+#define PCI_CHIP_NM2160   0x0004
-+#define PCI_CHIP_NM2200   0x0005
-+#define PCI_CHIP_NM2230   0x0025
-+#define PCI_CHIP_NM2360   0x0006
-+#define PCI_CHIP_NM2380   0x0016
-diff --git a/src/neo_2090.c b/src/neo_2090.c
-index 5049ab4..2f1efc8 100644
 a/src/neo_2090.c
-+++ b/src/neo_2090.c
-@@ -42,7 +42,6 @@ CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
- #include xf86.h
- #include xf86_OSproc.h
- #include compiler.h
--#include xf86PciInfo.h
+ /* Mandatory */
+ static Bool
+ NEOScreenInit(SCREEN_INIT_ARGS_DECL)
+@@ -1712,7 +1718,7 @@ NEOScreenInit(SCREEN_INIT_ARGS_DECL)
  
- /* Drivers that use XAA need this */
- #include xf86fbman.h
-diff --git a/src/neo_dga.c 

[arch-commits] Commit in xf86-video-neomagic/repos (6 files)

2015-02-06 Thread Laurent Carlier
Date: Friday, February 6, 2015 @ 09:02:58
  Author: lcarlier
Revision: 230898

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

Added:
  xf86-video-neomagic/repos/staging-i686/
  xf86-video-neomagic/repos/staging-i686/PKGBUILD
(from rev 230897, xf86-video-neomagic/trunk/PKGBUILD)
  xf86-video-neomagic/repos/staging-i686/git-fixes.patch
(from rev 230897, xf86-video-neomagic/trunk/git-fixes.patch)
  xf86-video-neomagic/repos/staging-x86_64/
  xf86-video-neomagic/repos/staging-x86_64/PKGBUILD
(from rev 230897, xf86-video-neomagic/trunk/PKGBUILD)
  xf86-video-neomagic/repos/staging-x86_64/git-fixes.patch
(from rev 230897, xf86-video-neomagic/trunk/git-fixes.patch)

+
 staging-i686/PKGBUILD  |   38 ++
 staging-i686/git-fixes.patch   |   99 +++
 staging-x86_64/PKGBUILD|   38 ++
 staging-x86_64/git-fixes.patch |   99 +++
 4 files changed, 274 insertions(+)

Copied: xf86-video-neomagic/repos/staging-i686/PKGBUILD (from rev 230897, 
xf86-video-neomagic/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-02-06 08:02:58 UTC (rev 230898)
@@ -0,0 +1,38 @@
+# $Id$
+#Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=xf86-video-neomagic
+pkgver=1.2.8
+pkgrel=4
+pkgdesc=X.org neomagic video driver
+arch=(i686 x86_64)
+url=http://xorg.freedesktop.org/;
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=19')
+conflicts=('xorg-server1.16' 'X-ABI-VIDEODRV_VERSION19' 
'X-ABI-VIDEODRV_VERSION=20')
+groups=('xorg-drivers' 'xorg')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2 
git-fixes.patch)
+sha256sums=('50abf6ac02547900edeaa5073c5f6d2f153f12dd47067cc7e4758e1b74d78874'
+'f63912b98a8a4bad30125fd95900651141f9367f7897c88548a83abe70633511')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+
+  patch -Np1 -i ../git-fixes.patch
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+  install -d -m755 ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
+}

Copied: xf86-video-neomagic/repos/staging-i686/git-fixes.patch (from rev 
230897, xf86-video-neomagic/trunk/git-fixes.patch)
===
--- staging-i686/git-fixes.patch(rev 0)
+++ staging-i686/git-fixes.patch2015-02-06 08:02:58 UTC (rev 230898)
@@ -0,0 +1,99 @@
+From 74a9a343f6e156d24539b81f1224b7410acf0e38 Mon Sep 17 00:00:00 2001
+From: Adam Jackson a...@redhat.com
+Date: Wed, 21 May 2014 14:07:53 -0400
+Subject: Use own thunk functions instead of vgaHW*Weak
+
+I plan to remove the Weak functions from a future server
+
+Signed-off-by: Adam Jackson a...@redhat.com
+
+diff --git a/src/neo_driver.c b/src/neo_driver.c
+index 7e60f3e..1b0da34 100644
+--- a/src/neo_driver.c
 b/src/neo_driver.c
+@@ -1439,6 +1439,12 @@ NEOShadowInit(ScreenPtr pScreen)
+   return TRUE;
+ }
+ 
++static Bool
++NEOSaveScreen(ScreenPtr pScreen, int mode)
++{
++return vgaHWSaveScreen(pScreen, mode);
++}
++
+ /* Mandatory */
+ static Bool
+ NEOScreenInit(SCREEN_INIT_ARGS_DECL)
+@@ -1712,7 +1718,7 @@ NEOScreenInit(SCREEN_INIT_ARGS_DECL)
+ 
+ NEOInitVideo(pScreen);
+ 
+-pScreen-SaveScreen = vgaHWSaveScreenWeak();
++pScreen-SaveScreen = NEOSaveScreen;
+ 
+ /* Setup DPMS mode */
+ if (nPtr-NeoChipset != NM2070)
+@@ -3049,6 +3055,12 @@ neo_ddc1Read(ScrnInfoPtr pScrn)
+ return (tmp);
+ }
+ 
++static void
++neo_ddc1SetSpeed(ScrnInfoPtr pScrn, xf86ddcSpeed speed)
++{
++vgaHWddc1SetSpeed(pScrn, speed);
++}
++
+ static xf86MonPtr
+ neo_ddc1(ScrnInfoPtr pScrn)
+ {
+@@ -3063,7 +3075,7 @@ neo_ddc1(ScrnInfoPtr pScrn)
+ VGAwCR(0x21,0x00);
+ VGAwCR(0x1D,0x01);  /* some Voodoo */ 
+ VGAwGR(0xA1,0x2F);
+-ret =  
xf86DoEDID_DDC1(XF86_SCRN_ARG(pScrn),vgaHWddc1SetSpeedWeak(),neo_ddc1Read);
++ret =  
xf86DoEDID_DDC1(XF86_SCRN_ARG(pScrn),neo_ddc1SetSpeed,neo_ddc1Read);
+ /* undo initialization */
+ VGAwCR(0x21,reg1);
+ VGAwCR(0x1D,reg2);
+-- 
+cgit v0.10.2
+From 6661bdd4551e4e63e983685464a277845aed3012 Mon Sep 17 00:00:00 2001
+From: Dave Airlie airl...@gmail.com
+Date: Sun, 21 Sep 2014 09:51:37 +1000
+Subject: neomagic: fix build against master X server.
+
+Signed-off-by: Dave Airlie airl...@redhat.com
+
+diff --git a/src/neo_driver.c b/src/neo_driver.c
+index 1b0da34..da01962 100644
+--- a/src/neo_driver.c
 b/src/neo_driver.c
+@@ -1994,10 +1994,12 @@ neoMapMem(ScrnInfoPtr pScrn)
+ }
+ #endif
+ } else
++#ifdef VIDMEM_MMIO
+ nPtr-NeoMMIOBase =
+ xf86MapVidMem(pScrn-scrnIndex,
+ 

[arch-commits] Commit in (4 files)

2015-02-06 Thread Antonio Rojas
Date: Friday, February 6, 2015 @ 09:33:57
  Author: arojas
Revision: 127178

Add Plasma 5 version of kcm-touchpad (10 votes)

Added:
  kcm-touchpad-frameworks/
  kcm-touchpad-frameworks/trunk/
  kcm-touchpad-frameworks/trunk/PKGBUILD
  kcm-touchpad-frameworks/trunk/fix-plasmoid.patch

+
 PKGBUILD   |   36 ++
 fix-plasmoid.patch |  128 +++
 2 files changed, 164 insertions(+)

Added: kcm-touchpad-frameworks/trunk/PKGBUILD
===
--- kcm-touchpad-frameworks/trunk/PKGBUILD  (rev 0)
+++ kcm-touchpad-frameworks/trunk/PKGBUILD  2015-02-06 08:33:57 UTC (rev 
127178)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Antonio Rojas aro...@archlinux.org
+# Contributor: Alexander Mezin mezin.alexan...@gmail.com
+
+pkgname=kcm-touchpad-frameworks
+pkgver=5.1.95
+pkgrel=2
+pkgdesc='KCM, daemon and applet for touchpad'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/workspace/kcm-touchpad'
+license=('GPL')
+depends=('xf86-input-synaptics' 'xcb-util-cursor' 'plasma-framework' 
'knotifyconfig' 'kded')
+makedepends=('extra-cmake-modules' 'xorg-server-devel')
+groups=('plasma-next')
+conflicts=('kcm-touchpad')
+source=(http://download.kde.org/unstable/plasma/$pkgver/kcm-touchpad-$pkgver.tar.xz;)
+install=$pkgname.install
+md5sums=('25f22612196f820dafe395cdf2fdf0a8')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../kcm-touchpad-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}


Property changes on: kcm-touchpad-frameworks/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: kcm-touchpad-frameworks/trunk/fix-plasmoid.patch
===
--- kcm-touchpad-frameworks/trunk/fix-plasmoid.patch
(rev 0)
+++ kcm-touchpad-frameworks/trunk/fix-plasmoid.patch2015-02-06 08:33:57 UTC 
(rev 127178)
@@ -0,0 +1,128 @@
+From: Lukáš Tinkl lu...@kde.org
+Date: Thu, 22 Jan 2015 16:20:38 +
+Subject: load the translation catalog correctly
+X-Git-Url: 
http://quickgit.kde.org/?p=kcm-touchpad.gita=commitdiffh=7494875a95ccfacc407eb0278f8c1deb71b2b949
+---
+load the translation catalog correctly
+
+also unbreak the dataengine loading and the applet
+---
+
+
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -1,6 +1,7 @@
+ project(kcm-touchpad)
+ set(PROJECT_VERSION 5.1.95)
+ cmake_minimum_required(VERSION 2.8.12)
++add_definitions(-DTRANSLATION_DOMAIN=\kcm_touchpad\)
+ 
+ set(CMAKE_MODULE_PATH
+ ${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules
+
+--- a/src/applet/CMakeLists.txt
 b/src/applet/CMakeLists.txt
+@@ -1,3 +1,6 @@
++remove_definitions(-DTRANSLATION_DOMAIN=kcm_touchpad)
++add_definitions(-DTRANSLATION_DOMAIN=plasma_applet_touchpad)
++
+ add_subdirectory(qml)
+ 
+ configure_file(${CMAKE_CURRENT_SOURCE_DIR}/dataengine.desktop
+@@ -23,14 +26,16 @@
+ Qt5::DBus
+ )
+ 
++kcoreaddons_desktop_to_json(plasma_engine_touchpad 
${CMAKE_CURRENT_BINARY_DIR}/plasma-dataengine-touchpad.desktop)
++
+ install(TARGETS plasma_engine_touchpad
+-DESTINATION ${PLUGIN_INSTALL_DIR}
++DESTINATION ${PLUGIN_INSTALL_DIR}/plasma/dataengine
+ )
+ install(FILES ${CMAKE_CURRENT_BINARY_DIR}/plasma-dataengine-touchpad.desktop
+ DESTINATION ${SERVICES_INSTALL_DIR}
+ )
+ install(FILES touchpad.operations
+-DESTINATION ${DATA_INSTALL_DIR}/plasma/services
++DESTINATION ${PLASMA_DATA_INSTALL_DIR}/services
+ )
+ install(FILES touchpad.svg
+ DESTINATION ${DATA_INSTALL_DIR}/plasma/desktoptheme/default/icons
+
+--- a/src/applet/dataengine.desktop
 b/src/applet/dataengine.desktop
+@@ -44,5 +44,3 @@
+ X-KDE-PluginInfo-License=GPL
+ X-KDE-PluginInfo-EnabledByDefault=true
+ 
+-X-Plasma-EngineName=touchpad
+-
+
+--- a/src/applet/qml/contents/ui/touchpad.qml
 b/src/applet/qml/contents/ui/touchpad.qml
+@@ -21,7 +21,6 @@
+ import QtQuick 2.0
+ import org.kde.plasma.core 2.0 as PlasmaCore
+ import org.kde.plasma.components 2.0 as PlasmaComponents
+-import org.kde.qtextracomponents 2.0
+ 
+ Item {
+ id: root
+@@ -84,28 +83,28 @@
+ }
+ }
+ 
+-QIconItem {
++PlasmaCore.IconItem {
+ anchors.fill: parent
+ visible: !hasTouchpad
+-icon: dialog-warning
+-}
++source: dialog-warning
+ 
+-PlasmaCore.ToolTip {
+-target: root
+-mainText: {
+-if (!hasTouchpad) {
+-return i18n(No touchpad was found);
++
++PlasmaCore.ToolTipArea {
++mainText: {
++if (!hasTouchpad) {
++return i18n(No touchpad was found);
++}
++
++

[arch-commits] Commit in xf86-video-mga/trunk (PKGBUILD git-fixes.patch)

2015-02-06 Thread Laurent Carlier
Date: Friday, February 6, 2015 @ 09:08:27
  Author: lcarlier
Revision: 230899

upgpkg: xf86-video-mga 1.6.3-4

xorg-server 1.17 rebuild

Added:
  xf86-video-mga/trunk/git-fixes.patch
Modified:
  xf86-video-mga/trunk/PKGBUILD

-+
 PKGBUILD|   16 +
 git-fixes.patch |  447 ++
 2 files changed, 458 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-02-06 08:02:58 UTC (rev 230898)
+++ PKGBUILD2015-02-06 08:08:27 UTC (rev 230899)
@@ -3,19 +3,25 @@
 
 pkgname=xf86-video-mga
 pkgver=1.6.3
-pkgrel=3
+pkgrel=4
 pkgdesc=X.org mga video driver
 arch=(i686 x86_64)
 url=http://xorg.freedesktop.org/;
 license=('custom')
 depends=('glibc')
-makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=18')
-conflicts=('xorg-server1.16' 'X-ABI-VIDEODRV_VERSION18' 
'X-ABI-VIDEODRV_VERSION=19')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=19')
+conflicts=('xorg-server1.16' 'X-ABI-VIDEODRV_VERSION19' 
'X-ABI-VIDEODRV_VERSION=20')
 optdepends=('mga-dri: DRI1 support from community repo')
 groups=('xorg-drivers' 'xorg')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('7704b1ea35098769787a9c93e903b827be97a99facfb1696aa5236a58ff1c7d7')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2 
git-fixes.patch)
+sha256sums=('7704b1ea35098769787a9c93e903b827be97a99facfb1696aa5236a58ff1c7d7'
+'3a7b12629fd79b06eda845728d0abdef664703f3e599bba2f34d8994ac7d7a75')
 
+prepare() {
+  cd ${pkgname}-${pkgver}
+  patch -Np1 -i ../git-fixes.patch
+}
+
 build() {
   cd ${pkgname}-${pkgver}
   ./configure --prefix=/usr

Added: git-fixes.patch
===
--- git-fixes.patch (rev 0)
+++ git-fixes.patch 2015-02-06 08:08:27 UTC (rev 230899)
@@ -0,0 +1,447 @@
+From 62ba63f687d7b99aff7c88ffd2774f15a2471ce0 Mon Sep 17 00:00:00 2001
+From: Mikulas Patocka mpato...@redhat.com
+Date: Fri, 17 Jan 2014 16:04:26 -0500
+Subject: xf86-video-mga: set the pan_ctl register
+
+On my Matrox G550 most videomodes in Xorg didn't work. I found out that it
+works if Xorg pixel clock is similar to the pixel clock set on framebuffer
+console.
+
+Further analysis showed that the Linux framebuffer driver sets the pan_ctl
+register (the register 0xa2) according to the pixel clock, the Xorg driver
+doesn't set it.
+
+I copied the code to set the pan_ctl register from the Linux kernel to the
+Xorg driver, and most videomodes in Xorg work.
+
+The pan_ctl register is required for both analog and digital output.
+
+The pan_ctl register is saved and restored, this is required so that we
+restore text-mode screen or Linux framebuffer correctly.
+
+Signed-off-by: Dave Airlie airl...@redhat.com
+
+diff --git a/src/mga.h b/src/mga.h
+index 988ba93..5f75d37 100644
+--- a/src/mga.h
 b/src/mga.h
+@@ -218,6 +218,7 @@ typedef struct {
+ CARD32Option2;
+ CARD32Option3;
+ longClock;
++unsigned char Pan_Ctl;
+ BoolPIXPLLCSaved;
+ unsigned char   PllM;
+ unsigned char   PllN;
+diff --git a/src/mga_dacG.c b/src/mga_dacG.c
+index 9a80193..f307488 100644
+--- a/src/mga_dacG.c
 b/src/mga_dacG.c
+@@ -849,6 +849,43 @@ MGAGSetPCLK( ScrnInfoPtr pScrn, long f_out )
+ 
+   if(MGAISGx50(pMga)) {
+   pReg-Clock = f_out;
++  if (pMga-Chipset == PCI_CHIP_MGAG550) {
++  if (f_out  45000) {
++  pReg-Pan_Ctl = 0x00;
++  } else if (f_out  55000) {
++  pReg-Pan_Ctl = 0x08;
++  } else if (f_out  7) {
++  pReg-Pan_Ctl = 0x10;
++  } else if (f_out  85000) {
++  pReg-Pan_Ctl = 0x18;
++  } else if (f_out  10) {
++  pReg-Pan_Ctl = 0x20;
++  } else if (f_out  115000) {
++  pReg-Pan_Ctl = 0x28;
++  } else if (f_out  125000) {
++  pReg-Pan_Ctl = 0x30;
++  } else {
++  pReg-Pan_Ctl = 0x38;
++  }
++  } else {
++  if (f_out  45000) {
++  pReg-Pan_Ctl = 0x00;
++  } else if (f_out  65000) {
++  pReg-Pan_Ctl = 0x08;
++  } else if (f_out  85000) {
++  pReg-Pan_Ctl = 0x10;
++  } else if (f_out  105000) {
++  pReg-Pan_Ctl = 0x18;
++  } else if (f_out  135000) {
++  pReg-Pan_Ctl = 0x20;
++  } else if (f_out  16) {
++  pReg-Pan_Ctl = 0x28;
++  } else if (f_out  175000) {
++  pReg-Pan_Ctl = 0x30;
++  } else {
++  pReg-Pan_Ctl = 0x38;
++  }
++  }
+   return;
+   }
+ 
+@@ -1395,6 

[arch-commits] Commit in xf86-video-mga/repos (6 files)

2015-02-06 Thread Laurent Carlier
Date: Friday, February 6, 2015 @ 09:08:35
  Author: lcarlier
Revision: 230900

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

Added:
  xf86-video-mga/repos/staging-i686/
  xf86-video-mga/repos/staging-i686/PKGBUILD
(from rev 230899, xf86-video-mga/trunk/PKGBUILD)
  xf86-video-mga/repos/staging-i686/git-fixes.patch
(from rev 230899, xf86-video-mga/trunk/git-fixes.patch)
  xf86-video-mga/repos/staging-x86_64/
  xf86-video-mga/repos/staging-x86_64/PKGBUILD
(from rev 230899, xf86-video-mga/trunk/PKGBUILD)
  xf86-video-mga/repos/staging-x86_64/git-fixes.patch
(from rev 230899, xf86-video-mga/trunk/git-fixes.patch)

+
 staging-i686/PKGBUILD  |   37 +++
 staging-i686/git-fixes.patch   |  447 +++
 staging-x86_64/PKGBUILD|   37 +++
 staging-x86_64/git-fixes.patch |  447 +++
 4 files changed, 968 insertions(+)

Copied: xf86-video-mga/repos/staging-i686/PKGBUILD (from rev 230899, 
xf86-video-mga/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-02-06 08:08:35 UTC (rev 230900)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=xf86-video-mga
+pkgver=1.6.3
+pkgrel=4
+pkgdesc=X.org mga video driver
+arch=(i686 x86_64)
+url=http://xorg.freedesktop.org/;
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=19')
+conflicts=('xorg-server1.16' 'X-ABI-VIDEODRV_VERSION19' 
'X-ABI-VIDEODRV_VERSION=20')
+optdepends=('mga-dri: DRI1 support from community repo')
+groups=('xorg-drivers' 'xorg')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2 
git-fixes.patch)
+sha256sums=('7704b1ea35098769787a9c93e903b827be97a99facfb1696aa5236a58ff1c7d7'
+'3a7b12629fd79b06eda845728d0abdef664703f3e599bba2f34d8994ac7d7a75')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  patch -Np1 -i ../git-fixes.patch
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
+}

Copied: xf86-video-mga/repos/staging-i686/git-fixes.patch (from rev 230899, 
xf86-video-mga/trunk/git-fixes.patch)
===
--- staging-i686/git-fixes.patch(rev 0)
+++ staging-i686/git-fixes.patch2015-02-06 08:08:35 UTC (rev 230900)
@@ -0,0 +1,447 @@
+From 62ba63f687d7b99aff7c88ffd2774f15a2471ce0 Mon Sep 17 00:00:00 2001
+From: Mikulas Patocka mpato...@redhat.com
+Date: Fri, 17 Jan 2014 16:04:26 -0500
+Subject: xf86-video-mga: set the pan_ctl register
+
+On my Matrox G550 most videomodes in Xorg didn't work. I found out that it
+works if Xorg pixel clock is similar to the pixel clock set on framebuffer
+console.
+
+Further analysis showed that the Linux framebuffer driver sets the pan_ctl
+register (the register 0xa2) according to the pixel clock, the Xorg driver
+doesn't set it.
+
+I copied the code to set the pan_ctl register from the Linux kernel to the
+Xorg driver, and most videomodes in Xorg work.
+
+The pan_ctl register is required for both analog and digital output.
+
+The pan_ctl register is saved and restored, this is required so that we
+restore text-mode screen or Linux framebuffer correctly.
+
+Signed-off-by: Dave Airlie airl...@redhat.com
+
+diff --git a/src/mga.h b/src/mga.h
+index 988ba93..5f75d37 100644
+--- a/src/mga.h
 b/src/mga.h
+@@ -218,6 +218,7 @@ typedef struct {
+ CARD32Option2;
+ CARD32Option3;
+ longClock;
++unsigned char Pan_Ctl;
+ BoolPIXPLLCSaved;
+ unsigned char   PllM;
+ unsigned char   PllN;
+diff --git a/src/mga_dacG.c b/src/mga_dacG.c
+index 9a80193..f307488 100644
+--- a/src/mga_dacG.c
 b/src/mga_dacG.c
+@@ -849,6 +849,43 @@ MGAGSetPCLK( ScrnInfoPtr pScrn, long f_out )
+ 
+   if(MGAISGx50(pMga)) {
+   pReg-Clock = f_out;
++  if (pMga-Chipset == PCI_CHIP_MGAG550) {
++  if (f_out  45000) {
++  pReg-Pan_Ctl = 0x00;
++  } else if (f_out  55000) {
++  pReg-Pan_Ctl = 0x08;
++  } else if (f_out  7) {
++  pReg-Pan_Ctl = 0x10;
++  } else if (f_out  85000) {
++  pReg-Pan_Ctl = 0x18;
++  } else if (f_out  10) {
++  pReg-Pan_Ctl = 0x20;
++  } else if (f_out  115000) {
++  pReg-Pan_Ctl = 0x28;
++  } else if (f_out  125000) {
++  pReg-Pan_Ctl = 0x30;
++  } else {
++  pReg-Pan_Ctl = 0x38;
++  }
++

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

2015-02-06 Thread Sven-Hendrik Haase
Date: Friday, February 6, 2015 @ 19:50:04
  Author: svenstaro
Revision: 127203

archrelease: copy trunk to multilib-x86_64

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

--+
 PKGBUILD |  102 ++---
 1 file changed, 51 insertions(+), 51 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-02-06 18:49:58 UTC (rev 127202)
+++ PKGBUILD2015-02-06 18:50:04 UTC (rev 127203)
@@ -1,51 +0,0 @@
-# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
-# Contributor: FigoDaPaura ffigoDaPaura
-
-pkgname=lib32-virtualgl
-pkgver=2.3.3
-pkgrel=2
-pkgdesc=32-bit serverside components for 64-bit VirtualGL servers
-arch=('x86_64')
-url=http://virtualgl.org;
-license=('LGPL')
-makedepends=('lib32-libxv' 'lib32-glu' 'virtualgl' 'lib32-libjpeg-turbo' 
'cmake' 'gcc-multilib' 'lib32-mesa' 'lib32-mesa-libgl')
-depends=('virtualgl' 'lib32-libxv' 'lib32-glu' 'lib32-turbojpeg')
-md5sums=('c0bc355a17d88b4b7109525188cfb0e6')
-source=(http://downloads.sourceforge.net/project/virtualgl/VirtualGL/$pkgver/VirtualGL-$pkgver.tar.gz;)
- 
-build() {
-  cd $srcdir/VirtualGL-$pkgver
- 
-  export CC=gcc -m32
-  export CXX=g++ -m32
-  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
- 
-  mkdir -p build  cd build
- 
-  cmake .. \
-  -DCMAKE_INSTALL_PREFIX=/usr/share \
-  -DTJPEG_INCLUDE_DIR=/usr/include \
-  -DTJPEG_LIBRARY=/usr/lib32/libturbojpeg.so \
-  -DVGL_LIBDIR=/usr/lib32 \
-  -DVGL_BINDIR=/usr/bin \
-  -DX11_X11_LIB=/usr/lib32/libX11.so \
-  -DX11_Xext_LIB=/usr/lib32/libXext.so \
-  -DOPENGL_gl_LIBRARY=/usr/lib32/libGL.so \
-  -DVGL_FAKELIBDIR=/usr/share/fakelib32
-  make
-}
- 
-package() {
-  cd $srcdir/VirtualGL-$pkgver/build
-  make install DESTDIR=$pkgdir
-
-  cd $pkgdir/usr
-  mv bin/glxspheres glxspheres32
-  rm -rf bin
-  mkdir -p bin
-  mv glxspheres32 bin/
- 
-  cd $pkgdir/usr/share
-  rm -rf doc
-  rm -rf include
-}

Copied: lib32-virtualgl/repos/multilib-x86_64/PKGBUILD (from rev 127202, 
lib32-virtualgl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-02-06 18:50:04 UTC (rev 127203)
@@ -0,0 +1,51 @@
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: FigoDaPaura ffigoDaPaura
+
+pkgname=lib32-virtualgl
+pkgver=2.4
+pkgrel=1
+pkgdesc=32-bit serverside components for 64-bit VirtualGL servers
+arch=('x86_64')
+url=http://virtualgl.org;
+license=('LGPL')
+makedepends=('lib32-libxv' 'lib32-glu' 'virtualgl' 'lib32-libjpeg-turbo' 
'cmake' 'gcc-multilib' 'lib32-mesa' 'lib32-mesa-libgl')
+depends=('virtualgl' 'lib32-libxv' 'lib32-glu' 'lib32-turbojpeg')
+source=(http://downloads.sourceforge.net/project/virtualgl/${pkgver}/VirtualGL-${pkgver}.tar.gz;)
+sha1sums=('5635a46855351bcc98813bbddfb30694b3be308b')
+ 
+build() {
+  cd $srcdir/VirtualGL-$pkgver
+ 
+  export CC=gcc -m32
+  export CXX=g++ -m32
+  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
+ 
+  mkdir -p build  cd build
+ 
+  cmake .. \
+  -DCMAKE_INSTALL_PREFIX=/usr/share \
+  -DTJPEG_INCLUDE_DIR=/usr/include \
+  -DTJPEG_LIBRARY=/usr/lib32/libturbojpeg.so \
+  -DVGL_LIBDIR=/usr/lib32 \
+  -DVGL_BINDIR=/usr/bin \
+  -DX11_X11_LIB=/usr/lib32/libX11.so \
+  -DX11_Xext_LIB=/usr/lib32/libXext.so \
+  -DOPENGL_gl_LIBRARY=/usr/lib32/libGL.so \
+  -DVGL_FAKELIBDIR=/usr/share/fakelib32
+  make
+}
+ 
+package() {
+  cd $srcdir/VirtualGL-$pkgver/build
+  make install DESTDIR=$pkgdir
+
+  cd $pkgdir/usr
+  mv bin/glxspheres glxspheres32
+  rm -rf bin
+  mkdir -p bin
+  mv glxspheres32 bin/
+ 
+  cd $pkgdir/usr/share
+  rm -rf doc
+  rm -rf include
+}


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

2015-02-06 Thread Andreas Radke
Date: Friday, February 6, 2015 @ 21:22:58
  Author: andyrtr
Revision: 230908

upgpkg: linux-lts 3.14.32-1

upstream update 3.14.32

Modified:
  linux-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-06 20:10:41 UTC (rev 230907)
+++ PKGBUILD2015-02-06 20:22:58 UTC (rev 230908)
@@ -4,7 +4,7 @@
 
 pkgbase=linux-lts
 _srcname=linux-3.14
-pkgver=3.14.31
+pkgver=3.14.32
 pkgrel=1
 arch=('i686' 'x86_64')
 url=http://www.kernel.org/;
@@ -26,7 +26,7 @@
 # https://www.kernel.org/pub/linux/kernel/v3.x/sha256sums.asc
 sha256sums=('61558aa490855f42b6340d1a1596be47454909629327c49a5e4e10268065dffa'
 'SKIP'
-'4eb7743905bad80c8502d88913cfb5424c1772dbe44af30da97ed4198b12e4a1'
+'601ea355f71435b19421d7eabd7b92b2bb25bf5598f419ac548f46e416e162e9'
 'SKIP'
 '999486d20e07e489bb42356b529b739c65ad65de9191282f0ddbbc0eb9b1718e'
 '140098de1ba714c5916ea76578b8bf549ce801c4aa0c786b7c90289b85ecdb77'


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

2015-02-06 Thread Sven-Hendrik Haase
Date: Friday, February 6, 2015 @ 19:49:58
  Author: svenstaro
Revision: 127202

upgpkg: lib32-virtualgl 2.4-1

upstream release 2.4

Modified:
  lib32-virtualgl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-06 18:45:09 UTC (rev 127201)
+++ PKGBUILD2015-02-06 18:49:58 UTC (rev 127202)
@@ -2,8 +2,8 @@
 # Contributor: FigoDaPaura ffigoDaPaura
 
 pkgname=lib32-virtualgl
-pkgver=2.3.3
-pkgrel=2
+pkgver=2.4
+pkgrel=1
 pkgdesc=32-bit serverside components for 64-bit VirtualGL servers
 arch=('x86_64')
 url=http://virtualgl.org;
@@ -10,8 +10,8 @@
 license=('LGPL')
 makedepends=('lib32-libxv' 'lib32-glu' 'virtualgl' 'lib32-libjpeg-turbo' 
'cmake' 'gcc-multilib' 'lib32-mesa' 'lib32-mesa-libgl')
 depends=('virtualgl' 'lib32-libxv' 'lib32-glu' 'lib32-turbojpeg')
-md5sums=('c0bc355a17d88b4b7109525188cfb0e6')
-source=(http://downloads.sourceforge.net/project/virtualgl/VirtualGL/$pkgver/VirtualGL-$pkgver.tar.gz;)
+source=(http://downloads.sourceforge.net/project/virtualgl/${pkgver}/VirtualGL-${pkgver}.tar.gz;)
+sha1sums=('5635a46855351bcc98813bbddfb30694b3be308b')
  
 build() {
   cd $srcdir/VirtualGL-$pkgver


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

2015-02-06 Thread Anatol Pomozov
Date: Friday, February 6, 2015 @ 21:53:14
  Author: anatolik
Revision: 127204

upgpkg: crash 7.1.0-1

Modified:
  crash/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-06 18:50:04 UTC (rev 127203)
+++ PKGBUILD2015-02-06 20:53:14 UTC (rev 127204)
@@ -5,7 +5,7 @@
 # Contributor: Mathieu Pasquet mathi...@mathieui.net
 
 pkgname=crash
-pkgver=7.0.9
+pkgver=7.1.0
 pkgrel=1
 pkgdesc='Linux kernel crashdump analysis tool'
 url='http://people.redhat.com/~anderson'
@@ -13,7 +13,7 @@
 license=(GPL)
 depends=(xz ncurses zlib)
 source=(http://people.redhat.com/~anderson/crash-$pkgver.tar.gz)
-sha256sums=('fb44255a50fe488e36a53654b030d641d5e77319f0b6dbf1bb07b6647ca80532')
+sha256sums=('12e17267985ad1339b5da931143d4997fa4dafb82027d5664d4b7826175a21ec')
 
 prepare() {
   cd crash-$pkgver


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

2015-02-06 Thread Andreas Radke
Date: Friday, February 6, 2015 @ 22:07:04
  Author: andyrtr
Revision: 230911

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

Added:
  libinput/repos/staging-i686/PKGBUILD
(from rev 230910, libinput/trunk/PKGBUILD)
  libinput/repos/staging-x86_64/PKGBUILD
(from rev 230910, libinput/trunk/PKGBUILD)
Deleted:
  libinput/repos/staging-i686/PKGBUILD
  libinput/repos/staging-x86_64/PKGBUILD

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

Deleted: staging-i686/PKGBUILD
===
--- staging-i686/PKGBUILD   2015-02-06 21:06:42 UTC (rev 230910)
+++ staging-i686/PKGBUILD   2015-02-06 21:07:04 UTC (rev 230911)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke andy...@archlinux.org
-# Maintainer: Jan de Groot
-
-pkgname=libinput
-pkgver=0.9.0
-pkgrel=1
-pkgdesc=library that handles input devices for display servers and other 
applications that need to directly deal with input devices.
-arch=(i686 x86_64)
-url=http://www.freedesktop.org/wiki/Software/libinput/;
-license=(custom:X11)
-depends=('mtdev' 'libsystemd' 'libevdev')
-makedepends=('systemd')
-options=('!libtool')
-source=(http://freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
-sha256sums=('309043976f41f5451c2a4b1c25bc2993b18aecb22524d797f21eb6b6c968ff0d'
-'SKIP')
-validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer 
(Who-T) off...@who-t.net
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --disable-static
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-  install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
-}

Copied: libinput/repos/staging-i686/PKGBUILD (from rev 230910, 
libinput/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-02-06 21:07:04 UTC (rev 230911)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+# Maintainer: Jan de Groot
+
+pkgname=libinput
+pkgver=0.10.0
+pkgrel=1
+pkgdesc=library that handles input devices for display servers and other 
applications that need to directly deal with input devices.
+arch=(i686 x86_64)
+url=http://www.freedesktop.org/wiki/Software/libinput/;
+license=(custom:X11)
+depends=('mtdev' 'libsystemd' 'libevdev')
+makedepends=('systemd')
+options=('!libtool')
+source=(http://freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
+sha256sums=('4ce001f80ff1a6bf547784d02125648bf8abe60db7d3d5e0020294d5215c1441'
+'SKIP')
+validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer 
(Who-T) off...@who-t.net
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
+}

Deleted: staging-x86_64/PKGBUILD
===
--- staging-x86_64/PKGBUILD 2015-02-06 21:06:42 UTC (rev 230910)
+++ staging-x86_64/PKGBUILD 2015-02-06 21:07:04 UTC (rev 230911)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke andy...@archlinux.org
-# Maintainer: Jan de Groot
-
-pkgname=libinput
-pkgver=0.9.0
-pkgrel=1
-pkgdesc=library that handles input devices for display servers and other 
applications that need to directly deal with input devices.
-arch=(i686 x86_64)
-url=http://www.freedesktop.org/wiki/Software/libinput/;
-license=(custom:X11)
-depends=('mtdev' 'libsystemd' 'libevdev')
-makedepends=('systemd')
-options=('!libtool')
-source=(http://freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
-sha256sums=('309043976f41f5451c2a4b1c25bc2993b18aecb22524d797f21eb6b6c968ff0d'
-'SKIP')
-validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer 
(Who-T) off...@who-t.net
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --disable-static
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-  install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
-}

Copied: libinput/repos/staging-x86_64/PKGBUILD (from rev 230910, 
libinput/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2015-02-06 21:07:04 UTC (rev 230911)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+# Maintainer: Jan de Groot
+

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

2015-02-06 Thread Andreas Radke
Date: Friday, February 6, 2015 @ 22:06:42
  Author: andyrtr
Revision: 230910

upgpkg: libinput 0.10.0-1

upstream update 0.10.0

Modified:
  libinput/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-06 20:23:36 UTC (rev 230909)
+++ PKGBUILD2015-02-06 21:06:42 UTC (rev 230910)
@@ -3,7 +3,7 @@
 # Maintainer: Jan de Groot
 
 pkgname=libinput
-pkgver=0.9.0
+pkgver=0.10.0
 pkgrel=1
 pkgdesc=library that handles input devices for display servers and other 
applications that need to directly deal with input devices.
 arch=(i686 x86_64)
@@ -13,7 +13,7 @@
 makedepends=('systemd')
 options=('!libtool')
 
source=(http://freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
-sha256sums=('309043976f41f5451c2a4b1c25bc2993b18aecb22524d797f21eb6b6c968ff0d'
+sha256sums=('4ce001f80ff1a6bf547784d02125648bf8abe60db7d3d5e0020294d5215c1441'
 'SKIP')
 validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer 
(Who-T) off...@who-t.net
 


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

2015-02-06 Thread Eric Bélanger
Date: Friday, February 6, 2015 @ 21:06:09
  Author: eric
Revision: 230906

upgpkg: lvm2 2.02.116-1

Upstream update

Modified:
  lvm2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-06 18:52:59 UTC (rev 230905)
+++ PKGBUILD2015-02-06 20:06:09 UTC (rev 230906)
@@ -4,7 +4,7 @@
 
 pkgbase=lvm2
 pkgname=('lvm2' 'device-mapper')
-pkgver=2.02.114
+pkgver=2.02.116
 pkgrel=1
 arch=('i686' 'x86_64')
 url=http://sourceware.org/lvm2/;
@@ -17,7 +17,7 @@
 sd-lvm2_install
 11-dm-initramfs.rules
 lvm2-make-sockets-static.patch)
-sha1sums=('ddd7cc93d6f879f5b8ad160c2755e94f58e5c003'
+sha1sums=('5bd2f4c33cdf93e580ea5b8a64bc32cd77be078e'
   'SKIP'
   '40ef991650555b904e73bcc3f344d736722e27ca'
   'ff0fdf0a3005a41acd4b36865056109effc3474b'


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

2015-02-06 Thread Eric Bélanger
Date: Friday, February 6, 2015 @ 21:10:41
  Author: eric
Revision: 230907

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

Added:
  lvm2/repos/testing-i686/
  lvm2/repos/testing-i686/11-dm-initramfs.rules
(from rev 230906, lvm2/trunk/11-dm-initramfs.rules)
  lvm2/repos/testing-i686/PKGBUILD
(from rev 230906, lvm2/trunk/PKGBUILD)
  lvm2/repos/testing-i686/lvm2-make-sockets-static.patch
(from rev 230906, lvm2/trunk/lvm2-make-sockets-static.patch)
  lvm2/repos/testing-i686/lvm2.install
(from rev 230906, lvm2/trunk/lvm2.install)
  lvm2/repos/testing-i686/lvm2_hook
(from rev 230906, lvm2/trunk/lvm2_hook)
  lvm2/repos/testing-i686/lvm2_install
(from rev 230906, lvm2/trunk/lvm2_install)
  lvm2/repos/testing-i686/sd-lvm2_install
(from rev 230906, lvm2/trunk/sd-lvm2_install)
  lvm2/repos/testing-x86_64/
  lvm2/repos/testing-x86_64/11-dm-initramfs.rules
(from rev 230906, lvm2/trunk/11-dm-initramfs.rules)
  lvm2/repos/testing-x86_64/PKGBUILD
(from rev 230906, lvm2/trunk/PKGBUILD)
  lvm2/repos/testing-x86_64/lvm2-make-sockets-static.patch
(from rev 230906, lvm2/trunk/lvm2-make-sockets-static.patch)
  lvm2/repos/testing-x86_64/lvm2.install
(from rev 230906, lvm2/trunk/lvm2.install)
  lvm2/repos/testing-x86_64/lvm2_hook
(from rev 230906, lvm2/trunk/lvm2_hook)
  lvm2/repos/testing-x86_64/lvm2_install
(from rev 230906, lvm2/trunk/lvm2_install)
  lvm2/repos/testing-x86_64/sd-lvm2_install
(from rev 230906, lvm2/trunk/sd-lvm2_install)

---+
 testing-i686/11-dm-initramfs.rules|3 
 testing-i686/PKGBUILD |  101 
 testing-i686/lvm2-make-sockets-static.patch   |   20 
 testing-i686/lvm2.install |   25 +
 testing-i686/lvm2_hook|   12 ++
 testing-i686/lvm2_install |   34 
 testing-i686/sd-lvm2_install  |   32 +++
 testing-x86_64/11-dm-initramfs.rules  |3 
 testing-x86_64/PKGBUILD   |  101 
 testing-x86_64/lvm2-make-sockets-static.patch |   20 
 testing-x86_64/lvm2.install   |   25 +
 testing-x86_64/lvm2_hook  |   12 ++
 testing-x86_64/lvm2_install   |   34 
 testing-x86_64/sd-lvm2_install|   32 +++
 14 files changed, 454 insertions(+)

Copied: lvm2/repos/testing-i686/11-dm-initramfs.rules (from rev 230906, 
lvm2/trunk/11-dm-initramfs.rules)
===
--- testing-i686/11-dm-initramfs.rules  (rev 0)
+++ testing-i686/11-dm-initramfs.rules  2015-02-06 20:10:41 UTC (rev 230907)
@@ -0,0 +1,3 @@
+# needed with new udev/mkinitcpio and as implemented in dracut:
+# 
http://git.kernel.org/?p=boot/dracut/dracut.git;a=commitdiff;h=12b9736228f2b34c15a9cb63be79cf7b6e865b54
+SUBSYSTEM==block, KERNEL==dm-[0-9]*, ACTION==add|change, 
OPTIONS=db_persist

Copied: lvm2/repos/testing-i686/PKGBUILD (from rev 230906, lvm2/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-02-06 20:10:41 UTC (rev 230907)
@@ -0,0 +1,101 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+# Maintainer: Thomas Bächler tho...@archlinux.org
+
+pkgbase=lvm2
+pkgname=('lvm2' 'device-mapper')
+pkgver=2.02.116
+pkgrel=1
+arch=('i686' 'x86_64')
+url=http://sourceware.org/lvm2/;
+license=('GPL2' 'LGPL2.1')
+makedepends=('systemd' 'thin-provisioning-tools')
+groups=('base')
+source=(ftp://sources.redhat.com/pub/lvm2/LVM2.${pkgver}.tgz{,.asc}
+lvm2_install
+lvm2_hook
+sd-lvm2_install
+11-dm-initramfs.rules
+lvm2-make-sockets-static.patch)
+sha1sums=('5bd2f4c33cdf93e580ea5b8a64bc32cd77be078e'
+  'SKIP'
+  '40ef991650555b904e73bcc3f344d736722e27ca'
+  'ff0fdf0a3005a41acd4b36865056109effc3474b'
+  '86c18852409dc03f38bdd734ac3e7b54bed9c4ce'
+  'f6a554eea9557c3c236df2943bb6e7e723945c41'
+  'b084512af42f2e16cdccd8b7ee4de27b574d1f94')
+validpgpkeys=('88437EF5C077BD113D3B7224228191C1567E2C17')
+
+prepare() {
+  cd LVM2.${pkgver}
+  # enable lvmetad
+  sed -i 's|use_lvmetad = 0|use_lvmetad = 1|' conf/example.conf.in
+  # make systemd sockets static
+  patch -p1 -i ${srcdir}/lvm2-make-sockets-static.patch
+}
+
+build() {
+  CONFIGUREOPTS=--prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--sbindir=/usr/bin \
+  --with-udev-prefix=/usr 
--with-systemdsystemunitdir=/usr/lib/systemd/system \
+  --with-default-pid-dir=/run --with-default-dm-run-dir=/run 
--with-default-run-dir=/run/lvm \
+  --enable-pkgconfig --enable-readline --enable-dmeventd --enable-cmdlib 
--enable-applib \
+  --enable-udev_sync --enable-udev_rules 
--with-default-locking-dir=/run/lock/lvm 

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

2015-02-06 Thread Andreas Radke
Date: Friday, February 6, 2015 @ 21:23:36
  Author: andyrtr
Revision: 230909

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

Added:
  linux-lts/repos/testing-i686/
  
linux-lts/repos/testing-i686/0001-Bluetooth-allocate-static-minor-for-vhci.patch
(from rev 230908, 
linux-lts/trunk/0001-Bluetooth-allocate-static-minor-for-vhci.patch)
  
linux-lts/repos/testing-i686/0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch
(from rev 230908, 
linux-lts/trunk/0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch)
  linux-lts/repos/testing-i686/0003-module-remove-MODULE_GENERIC_TABLE.patch
(from rev 230908, 
linux-lts/trunk/0003-module-remove-MODULE_GENERIC_TABLE.patch)
  linux-lts/repos/testing-i686/0006-genksyms-fix-typeof-handling.patch
(from rev 230908, linux-lts/trunk/0006-genksyms-fix-typeof-handling.patch)
  linux-lts/repos/testing-i686/PKGBUILD
(from rev 230908, linux-lts/trunk/PKGBUILD)
  linux-lts/repos/testing-i686/change-default-console-loglevel.patch
(from rev 230908, linux-lts/trunk/change-default-console-loglevel.patch)
  linux-lts/repos/testing-i686/config
(from rev 230908, linux-lts/trunk/config)
  linux-lts/repos/testing-i686/config.x86_64
(from rev 230908, linux-lts/trunk/config.x86_64)
  linux-lts/repos/testing-i686/linux-lts.install
(from rev 230908, linux-lts/trunk/linux-lts.install)
  linux-lts/repos/testing-i686/linux-lts.preset
(from rev 230908, linux-lts/trunk/linux-lts.preset)
  linux-lts/repos/testing-x86_64/
  
linux-lts/repos/testing-x86_64/0001-Bluetooth-allocate-static-minor-for-vhci.patch
(from rev 230908, 
linux-lts/trunk/0001-Bluetooth-allocate-static-minor-for-vhci.patch)
  
linux-lts/repos/testing-x86_64/0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch
(from rev 230908, 
linux-lts/trunk/0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch)
  linux-lts/repos/testing-x86_64/0003-module-remove-MODULE_GENERIC_TABLE.patch
(from rev 230908, 
linux-lts/trunk/0003-module-remove-MODULE_GENERIC_TABLE.patch)
  linux-lts/repos/testing-x86_64/0006-genksyms-fix-typeof-handling.patch
(from rev 230908, linux-lts/trunk/0006-genksyms-fix-typeof-handling.patch)
  linux-lts/repos/testing-x86_64/PKGBUILD
(from rev 230908, linux-lts/trunk/PKGBUILD)
  linux-lts/repos/testing-x86_64/change-default-console-loglevel.patch
(from rev 230908, linux-lts/trunk/change-default-console-loglevel.patch)
  linux-lts/repos/testing-x86_64/config
(from rev 230908, linux-lts/trunk/config)
  linux-lts/repos/testing-x86_64/config.x86_64
(from rev 230908, linux-lts/trunk/config.x86_64)
  linux-lts/repos/testing-x86_64/linux-lts.install
(from rev 230908, linux-lts/trunk/linux-lts.install)
  linux-lts/repos/testing-x86_64/linux-lts.preset
(from rev 230908, linux-lts/trunk/linux-lts.preset)

+
 testing-i686/0001-Bluetooth-allocate-static-minor-for-vhci.patch   
|   74 
 testing-i686/0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch   
|   93 
 testing-i686/0003-module-remove-MODULE_GENERIC_TABLE.patch 
|   75 
 testing-i686/0006-genksyms-fix-typeof-handling.patch   
| 1360 ++
 testing-i686/PKGBUILD  
|  327 
 testing-i686/change-default-console-loglevel.patch 
|   12 
 testing-i686/config
| 6696 ++
 testing-i686/config.x86_64 
| 6487 +
 testing-i686/linux-lts.install 
|   37 
 testing-i686/linux-lts.preset  
|   14 
 testing-x86_64/0001-Bluetooth-allocate-static-minor-for-vhci.patch 
|   74 
 testing-x86_64/0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch 
|   93 
 testing-x86_64/0003-module-remove-MODULE_GENERIC_TABLE.patch   
|   75 
 testing-x86_64/0006-genksyms-fix-typeof-handling.patch 
| 1360 ++
 testing-x86_64/PKGBUILD
|  327 
 testing-x86_64/change-default-console-loglevel.patch   
|   12 
 testing-x86_64/config  
| 6696 ++
 testing-x86_64/config.x86_64   
| 6487 +
 testing-x86_64/linux-lts.install   
|   37 
 testing-x86_64/linux-lts.preset
|   14 
 20 files changed, 30350 insertions(+)

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


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

2015-02-06 Thread Sébastien Luttringer
Date: Friday, February 6, 2015 @ 19:52:59
  Author: seblu
Revision: 230905

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

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

+
 /PKGBUILD  |  100 +++
 /btrfs-progs.install   |   18 ++
 /initcpio-hook-btrfs   |   14 
 /initcpio-install-btrfs|   34 +++
 core-i686/PKGBUILD |   50 -
 core-i686/btrfs-progs.install  |9 ---
 core-i686/initcpio-hook-btrfs  |7 --
 core-i686/initcpio-install-btrfs   |   17 -
 core-x86_64/PKGBUILD   |   50 -
 core-x86_64/btrfs-progs.install|9 ---
 core-x86_64/initcpio-hook-btrfs|7 --
 core-x86_64/initcpio-install-btrfs |   17 -
 12 files changed, 166 insertions(+), 166 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2015-02-06 17:23:15 UTC (rev 230904)
+++ core-i686/PKGBUILD  2015-02-06 18:52:59 UTC (rev 230905)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Seblu Luttringer se...@archlinux.org
-# Contributor: Tom Gundersen t...@jklm.no
-# Contributor: Tobias Powalowski tp...@archlinux.org
-
-pkgname=btrfs-progs
-pkgver=3.18.1
-pkgrel=1
-pkgdesc='Btrfs filesystem utilities'
-arch=('i686' 'x86_64')
-depends=('glibc' 'libutil-linux' 'e2fsprogs' 'lzo' 'zlib')
-makedepends=('git' 'asciidoc' 'xmlto')
-url='http://btrfs.wiki.kernel.org/'
-replaces=('btrfs-progs-unstable')
-conflicts=('btrfs-progs-unstable')
-provides=('btrfs-progs-unstable')
-license=('GPL2')
-source=(git://git.kernel.org/pub/scm/linux/kernel/git/kdave/$pkgname.git#tag=v$pkgver
-'initcpio-install-btrfs'
-'initcpio-hook-btrfs')
-install=btrfs-progs.install
-options=(!staticlibs)
-md5sums=('SKIP'
- '7241ba3a4286d08da0d50b7176941112'
- 'b09688a915a0ec8f40e2f5aacbabc9ad')
-
-build() {
-  cd $pkgname
-  make CFLAGS=$CFLAGS
-  make CFLAGS=$CFLAGS btrfs-select-super
-}
-
-check() {
-  cd $pkgname
- ./btrfs filesystem show
-}
-
-package() {
-  cd $pkgname
-
-  make prefix=$pkgdir/usr install
-  install -Dm755 btrfs-select-super $pkgdir/usr/bin
-
-  # install mkinitcpio hooks
-  cd $srcdir
-  install -Dm644 initcpio-install-btrfs 
$pkgdir/usr/lib/initcpio/install/btrfs
-  install -Dm644 initcpio-hook-btrfs $pkgdir/usr/lib/initcpio/hooks/btrfs
-}
-
-# vim:set ts=2 sw=2 ft=sh et:

Copied: btrfs-progs/repos/core-i686/PKGBUILD (from rev 230904, 
btrfs-progs/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2015-02-06 18:52:59 UTC (rev 230905)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Sébastien Seblu Luttringer se...@archlinux.org
+# Contributor: Tom Gundersen t...@jklm.no
+# Contributor: Tobias Powalowski tp...@archlinux.org
+
+pkgname=btrfs-progs
+pkgver=3.18.2
+pkgrel=1
+pkgdesc='Btrfs filesystem utilities'
+arch=('i686' 'x86_64')
+depends=('glibc' 'libutil-linux' 'e2fsprogs' 'lzo' 'zlib')
+makedepends=('git' 'asciidoc' 'xmlto')
+url='http://btrfs.wiki.kernel.org/'
+replaces=('btrfs-progs-unstable')
+conflicts=('btrfs-progs-unstable')
+provides=('btrfs-progs-unstable')
+license=('GPL2')
+source=(git://git.kernel.org/pub/scm/linux/kernel/git/kdave/$pkgname.git#tag=v$pkgver
+'initcpio-install-btrfs'
+'initcpio-hook-btrfs')
+install=btrfs-progs.install
+options=(!staticlibs)

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

2015-02-06 Thread Anatol Pomozov
Date: Friday, February 6, 2015 @ 21:54:00
  Author: anatolik
Revision: 127205

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-02-06 20:53:14 UTC (rev 127204)
+++ community-i686/PKGBUILD 2015-02-06 20:54:00 UTC (rev 127205)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Anatol Pomozov anatol.pomo...@gmail.com
-# Contributor: Bernhard Walle bernhard.wa...@gmx.de
-# Contributor: Michael Eckert michael.eck...@linuxmail.org
-# Contributor: Mathieu Pasquet mathi...@mathieui.net
-
-pkgname=crash
-pkgver=7.0.9
-pkgrel=1
-pkgdesc='Linux kernel crashdump analysis tool'
-url='http://people.redhat.com/~anderson'
-arch=(i686 x86_64)
-license=(GPL)
-depends=(xz ncurses zlib)
-source=(http://people.redhat.com/~anderson/crash-$pkgver.tar.gz)
-sha256sums=('fb44255a50fe488e36a53654b030d641d5e77319f0b6dbf1bb07b6647ca80532')
-
-prepare() {
-  cd crash-$pkgver
-  make gdb_unzip
-  sed -i '/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/' gdb-7.6/libiberty/configure
-}
-
-build() {
-  cd crash-$pkgver
-  make
-}
-
-package() {
-  cd crash-$pkgver
-
-  mkdir -p $pkgdir/usr/bin $pkgdir/usr/share/man/man8
-  install crash $pkgdir/usr/bin/
-  install crash.8 $pkgdir/usr/share/man/man8/
-}

Copied: crash/repos/community-i686/PKGBUILD (from rev 127204, 
crash/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-02-06 20:54:00 UTC (rev 127205)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Anatol Pomozov anatol.pomo...@gmail.com
+# Contributor: Bernhard Walle bernhard.wa...@gmx.de
+# Contributor: Michael Eckert michael.eck...@linuxmail.org
+# Contributor: Mathieu Pasquet mathi...@mathieui.net
+
+pkgname=crash
+pkgver=7.1.0
+pkgrel=1
+pkgdesc='Linux kernel crashdump analysis tool'
+url='http://people.redhat.com/~anderson'
+arch=(i686 x86_64)
+license=(GPL)
+depends=(xz ncurses zlib)
+source=(http://people.redhat.com/~anderson/crash-$pkgver.tar.gz)
+sha256sums=('12e17267985ad1339b5da931143d4997fa4dafb82027d5664d4b7826175a21ec')
+
+prepare() {
+  cd crash-$pkgver
+  make gdb_unzip
+  sed -i '/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/' gdb-7.6/libiberty/configure
+}
+
+build() {
+  cd crash-$pkgver
+  make
+}
+
+package() {
+  cd crash-$pkgver
+
+  mkdir -p $pkgdir/usr/bin $pkgdir/usr/share/man/man8
+  install crash $pkgdir/usr/bin/
+  install crash.8 $pkgdir/usr/share/man/man8/
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-02-06 20:53:14 UTC (rev 127204)
+++ community-x86_64/PKGBUILD   2015-02-06 20:54:00 UTC (rev 127205)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Anatol Pomozov anatol.pomo...@gmail.com
-# Contributor: Bernhard Walle bernhard.wa...@gmx.de
-# Contributor: Michael Eckert michael.eck...@linuxmail.org
-# Contributor: Mathieu Pasquet mathi...@mathieui.net
-
-pkgname=crash
-pkgver=7.0.9
-pkgrel=1
-pkgdesc='Linux kernel crashdump analysis tool'
-url='http://people.redhat.com/~anderson'
-arch=(i686 x86_64)
-license=(GPL)
-depends=(xz ncurses zlib)
-source=(http://people.redhat.com/~anderson/crash-$pkgver.tar.gz)
-sha256sums=('fb44255a50fe488e36a53654b030d641d5e77319f0b6dbf1bb07b6647ca80532')
-
-prepare() {
-  cd crash-$pkgver
-  make gdb_unzip
-  sed -i '/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/' gdb-7.6/libiberty/configure
-}
-
-build() {
-  cd crash-$pkgver
-  make
-}
-
-package() {
-  cd crash-$pkgver
-
-  mkdir -p $pkgdir/usr/bin $pkgdir/usr/share/man/man8
-  install crash $pkgdir/usr/bin/
-  install crash.8 $pkgdir/usr/share/man/man8/
-}

Copied: crash/repos/community-x86_64/PKGBUILD (from rev 127204, 
crash/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-02-06 20:54:00 UTC (rev 127205)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Anatol Pomozov anatol.pomo...@gmail.com
+# Contributor: Bernhard Walle bernhard.wa...@gmx.de
+# Contributor: Michael Eckert michael.eck...@linuxmail.org
+# Contributor: Mathieu Pasquet mathi...@mathieui.net
+
+pkgname=crash
+pkgver=7.1.0
+pkgrel=1
+pkgdesc='Linux kernel crashdump analysis tool'
+url='http://people.redhat.com/~anderson'
+arch=(i686 x86_64)
+license=(GPL)
+depends=(xz ncurses 

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

2015-02-06 Thread Eric Bélanger
Date: Friday, February 6, 2015 @ 22:12:33
  Author: eric
Revision: 127206

upgpkg: youtube-dl 2015.02.06-1

Upstream update

Modified:
  youtube-dl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-06 20:54:00 UTC (rev 127205)
+++ PKGBUILD2015-02-06 21:12:33 UTC (rev 127206)
@@ -2,7 +2,7 @@
 # Maintainer: Eric Bélanger e...@archlinux.org
 
 pkgname=youtube-dl
-pkgver=2015.02.03
+pkgver=2015.02.06
 pkgrel=1
 pkgdesc=A small command-line program to download videos from YouTube.com and 
a few more sites
 arch=('any')
@@ -13,7 +13,7 @@
 'rtmpdump: for rtmp streams support')
 source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz
 
http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz.sig)
-sha1sums=('5fdb661fa6d930bc7abc5925b51691f6aef44a24'
+sha1sums=('1ac515d4544ebd245a4525502fac2868cc911ff0'
   'SKIP')
 validpgpkeys=('7D33D762FD6C35130481347FDB4B54CBA4826A18')
 


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

2015-02-06 Thread Andreas Radke
Date: Friday, February 6, 2015 @ 22:13:36
  Author: andyrtr
Revision: 230912

upgpkg: pycups 1.9.71-1

upstream update 1.9.71

Modified:
  pycups/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-06 21:07:04 UTC (rev 230911)
+++ PKGBUILD2015-02-06 21:13:36 UTC (rev 230912)
@@ -4,7 +4,7 @@
 
 pkgbase=pycups
 pkgname=('python2-pycups' 'python-pycups')
-pkgver=1.9.70
+pkgver=1.9.71
 pkgrel=1
 arch=('i686' 'x86_64')
 url=http://cyberelk.net/tim/software/pycups/;
@@ -11,7 +11,7 @@
 license=('GPL')
 makedepends=('libcups' 'python2' 'python')
 
source=(http://cyberelk.net/tim/data/${pkgbase}/${pkgbase}-${pkgver}.tar.bz2{,.asc})
-md5sums=('4c448743260b6cac6f56ae18f6b0adb7'
+md5sums=('9373857a5f55d3f949ef39840db6e880'
  'SKIP')
 validpgpkeys=('02EA6349CE58E1BCAA8514F57955128DA3A1ABD3')  # Tim Waugh
 


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

2015-02-06 Thread Andreas Radke
Date: Friday, February 6, 2015 @ 22:13:49
  Author: andyrtr
Revision: 230913

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-02-06 21:13:36 UTC (rev 230912)
+++ extra-i686/PKGBUILD 2015-02-06 21:13:49 UTC (rev 230913)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: nesl247 nesl...@gmail.com
-
-pkgbase=pycups
-pkgname=('python2-pycups' 'python-pycups')
-pkgver=1.9.70
-pkgrel=1
-arch=('i686' 'x86_64')
-url=http://cyberelk.net/tim/software/pycups/;
-license=('GPL')
-makedepends=('libcups' 'python2' 'python')
-source=(http://cyberelk.net/tim/data/${pkgbase}/${pkgbase}-${pkgver}.tar.bz2{,.asc})
-md5sums=('4c448743260b6cac6f56ae18f6b0adb7'
- 'SKIP')
-validpgpkeys=('02EA6349CE58E1BCAA8514F57955128DA3A1ABD3')  # Tim Waugh
-
-prepare() {
-  cp -a ${pkgbase}-${pkgver} ${pkgbase}-${pkgver}-python2
-}
-
-build() {
-  cd ${pkgbase}-${pkgver}
-  python setup.py build
-  cd ${srcdir}/${pkgbase}-${pkgver}-python2
-  python2 setup.py build
-}
-
-package_python2-pycups() {
-  pkgdesc=Python 2 CUPS Bindings
-  depends=('libcups' 'python2')
-
-  cd ${pkgbase}-${pkgver}-python2
-  python2 setup.py install --root=${pkgdir} --optimize=1
-}
-
-package_python-pycups() {
-  pkgdesc=Python 3 CUPS Bindings
-  depends=('libcups' 'python')
-
-  cd ${pkgbase}-${pkgver}
-  python setup.py install --root=${pkgdir} --optimize=1
-}

Copied: pycups/repos/extra-i686/PKGBUILD (from rev 230912, 
pycups/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-02-06 21:13:49 UTC (rev 230913)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: nesl247 nesl...@gmail.com
+
+pkgbase=pycups
+pkgname=('python2-pycups' 'python-pycups')
+pkgver=1.9.71
+pkgrel=1
+arch=('i686' 'x86_64')
+url=http://cyberelk.net/tim/software/pycups/;
+license=('GPL')
+makedepends=('libcups' 'python2' 'python')
+source=(http://cyberelk.net/tim/data/${pkgbase}/${pkgbase}-${pkgver}.tar.bz2{,.asc})
+md5sums=('9373857a5f55d3f949ef39840db6e880'
+ 'SKIP')
+validpgpkeys=('02EA6349CE58E1BCAA8514F57955128DA3A1ABD3')  # Tim Waugh
+
+prepare() {
+  cp -a ${pkgbase}-${pkgver} ${pkgbase}-${pkgver}-python2
+}
+
+build() {
+  cd ${pkgbase}-${pkgver}
+  python setup.py build
+  cd ${srcdir}/${pkgbase}-${pkgver}-python2
+  python2 setup.py build
+}
+
+package_python2-pycups() {
+  pkgdesc=Python 2 CUPS Bindings
+  depends=('libcups' 'python2')
+
+  cd ${pkgbase}-${pkgver}-python2
+  python2 setup.py install --root=${pkgdir} --optimize=1
+}
+
+package_python-pycups() {
+  pkgdesc=Python 3 CUPS Bindings
+  depends=('libcups' 'python')
+
+  cd ${pkgbase}-${pkgver}
+  python setup.py install --root=${pkgdir} --optimize=1
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-02-06 21:13:36 UTC (rev 230912)
+++ extra-x86_64/PKGBUILD   2015-02-06 21:13:49 UTC (rev 230913)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: nesl247 nesl...@gmail.com
-
-pkgbase=pycups
-pkgname=('python2-pycups' 'python-pycups')
-pkgver=1.9.70
-pkgrel=1
-arch=('i686' 'x86_64')
-url=http://cyberelk.net/tim/software/pycups/;
-license=('GPL')
-makedepends=('libcups' 'python2' 'python')
-source=(http://cyberelk.net/tim/data/${pkgbase}/${pkgbase}-${pkgver}.tar.bz2{,.asc})
-md5sums=('4c448743260b6cac6f56ae18f6b0adb7'
- 'SKIP')
-validpgpkeys=('02EA6349CE58E1BCAA8514F57955128DA3A1ABD3')  # Tim Waugh
-
-prepare() {
-  cp -a ${pkgbase}-${pkgver} ${pkgbase}-${pkgver}-python2
-}
-
-build() {
-  cd ${pkgbase}-${pkgver}
-  python setup.py build
-  cd ${srcdir}/${pkgbase}-${pkgver}-python2
-  python2 setup.py build
-}
-
-package_python2-pycups() {
-  pkgdesc=Python 2 CUPS Bindings
-  depends=('libcups' 'python2')
-
-  cd ${pkgbase}-${pkgver}-python2
-  python2 setup.py install --root=${pkgdir} --optimize=1
-}
-
-package_python-pycups() {
-  pkgdesc=Python 3 CUPS Bindings
-  depends=('libcups' 'python')
-
-  cd ${pkgbase}-${pkgver}
-  python setup.py install --root=${pkgdir} --optimize=1
-}

Copied: pycups/repos/extra-x86_64/PKGBUILD (from rev 230912, 
pycups/trunk/PKGBUILD)
===
--- 

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

2015-02-06 Thread Eric Bélanger
Date: Friday, February 6, 2015 @ 22:14:01
  Author: eric
Revision: 127207

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-02-06 21:12:33 UTC (rev 127206)
+++ PKGBUILD2015-02-06 21:14:01 UTC (rev 127207)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger e...@archlinux.org
-
-pkgname=youtube-dl
-pkgver=2015.02.03
-pkgrel=1
-pkgdesc=A small command-line program to download videos from YouTube.com and 
a few more sites
-arch=('any')
-url=http://rg3.github.io/youtube-dl/;
-license=('custom')
-depends=('python' 'python-setuptools')
-optdepends=('ffmpeg: for video post-processing'
-'rtmpdump: for rtmp streams support')
-source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz
-
http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz.sig)
-sha1sums=('5fdb661fa6d930bc7abc5925b51691f6aef44a24'
-  'SKIP')
-validpgpkeys=('7D33D762FD6C35130481347FDB4B54CBA4826A18')
-
-prepare() {
-  cd ${pkgname}
-  sed -i 's|etc/bash_completion.d|share/bash-completion/completions|' setup.py
-  sed -i 's|etc/fish/completions|share/fish/completions|' setup.py
-}
-
-package() {
-  cd ${pkgname}
-  python setup.py install --root=${pkgdir}/ --optimize=1
-  mv 
${pkgdir}/usr/share/bash-completion/completions/youtube-dl.bash-completion \
-${pkgdir}/usr/share/bash-completion/completions/youtube-dl
-  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: youtube-dl/repos/community-any/PKGBUILD (from rev 127206, 
youtube-dl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-02-06 21:14:01 UTC (rev 127207)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=youtube-dl
+pkgver=2015.02.06
+pkgrel=1
+pkgdesc=A small command-line program to download videos from YouTube.com and 
a few more sites
+arch=('any')
+url=http://rg3.github.io/youtube-dl/;
+license=('custom')
+depends=('python' 'python-setuptools')
+optdepends=('ffmpeg: for video post-processing'
+'rtmpdump: for rtmp streams support')
+source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz
+
http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz.sig)
+sha1sums=('1ac515d4544ebd245a4525502fac2868cc911ff0'
+  'SKIP')
+validpgpkeys=('7D33D762FD6C35130481347FDB4B54CBA4826A18')
+
+prepare() {
+  cd ${pkgname}
+  sed -i 's|etc/bash_completion.d|share/bash-completion/completions|' setup.py
+  sed -i 's|etc/fish/completions|share/fish/completions|' setup.py
+}
+
+package() {
+  cd ${pkgname}
+  python setup.py install --root=${pkgdir}/ --optimize=1
+  mv 
${pkgdir}/usr/share/bash-completion/completions/youtube-dl.bash-completion \
+${pkgdir}/usr/share/bash-completion/completions/youtube-dl
+  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}


[arch-commits] Commit in system-config-printer/repos (4 files)

2015-02-06 Thread Andreas Radke
Date: Friday, February 6, 2015 @ 22:31:23
  Author: andyrtr
Revision: 230917

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

Added:
  system-config-printer/repos/extra-i686/PKGBUILD
(from rev 230916, system-config-printer/trunk/PKGBUILD)
  system-config-printer/repos/extra-x86_64/PKGBUILD
(from rev 230916, system-config-printer/trunk/PKGBUILD)
Deleted:
  system-config-printer/repos/extra-i686/PKGBUILD
  system-config-printer/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-02-06 21:31:08 UTC (rev 230916)
+++ extra-i686/PKGBUILD 2015-02-06 21:31:23 UTC (rev 230917)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR andy...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-
-pkgname=system-config-printer
-pkgver=1.5.4
-pkgrel=2
-pkgdesc=A CUPS printer configuration tool and status applet
-url=http://cyberelk.net/tim/software/system-config-printer/;
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('python-pycups' 'python-dbus' 'python-pycurl' 'python-gobject2' 
'libnotify'
- 'gnome-icon-theme'  'python-gobject' 'gtk3' 'python-cairo')
-makedepends=('intltool' 'xmlto' 'docbook-xsl' 'desktop-file-utils')
-optdepends=('libgnome-keyring: password management'
-'python-pysmbc: SMB browser support'
-'python-packagekit: to install drivers with PackageKit'
-'cups-pk-helper: PolicyKit helper to configure cups with 
fine-grained privileges')
-source=(http://cyberelk.net/tim/data/${pkgname}/${pkgver%*.*}/${pkgname}-${pkgver}.tar.xz{,.sig})
-validpgpkeys=('02EA6349CE58E1BCAA8514F57955128DA3A1ABD3') #Tim Waugh 
twa...@redhat.com t...@cyberelk.net
-md5sums=('dd5b4c6b8c47e2bd780960b38a8e9a77'
- 'SKIP')
-
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr \
---sbindir=/usr/bin \
---sysconfdir=/etc \
---with-udevdir=/usr/lib/udev --with-udev-rules 
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-
-  # Compile *.pyc
-  find ${pkgdir} -name '*.py' -exec python -mpy_compile {} +
-  # Compile *.pyo
-  find ${pkgdir} -name '*.py' -exec python -O -mpy_compile {} +
-  
-  # new cups 2.0.0 service naming
-  sed -i s|cups.socket|org.cups.cupsd.socket|g 
${pkgdir}/usr/lib/systemd/system/configure-printer@.service
-}

Copied: system-config-printer/repos/extra-i686/PKGBUILD (from rev 230916, 
system-config-printer/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-02-06 21:31:23 UTC (rev 230917)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: AndyRTR andy...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+
+pkgname=system-config-printer
+pkgver=1.5.5
+pkgrel=1
+pkgdesc=A CUPS printer configuration tool and status applet
+url=http://cyberelk.net/tim/software/system-config-printer/;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('python-pycups' 'python-dbus' 'python-pycurl' 'python-gobject2' 
'libnotify'
+ 'python-requests' 'python-gobject' 'gtk3' 'python-cairo')
+makedepends=('intltool' 'xmlto' 'docbook-xsl' 'desktop-file-utils')
+optdepends=('libgnome-keyring: password management'
+'python-pysmbc: SMB browser support'
+'python-packagekit: to install drivers with PackageKit'
+'cups-pk-helper: PolicyKit helper to configure cups with 
fine-grained privileges')
+source=(http://cyberelk.net/tim/data/${pkgname}/${pkgver%*.*}/${pkgname}-${pkgver}.tar.xz{,.sig})
+md5sums=('1aaee6a90449ee0c6b90da2eb5df03a9'
+ 'SKIP')
+validpgpkeys=('02EA6349CE58E1BCAA8514F57955128DA3A1ABD3') #Tim Waugh 
twa...@redhat.com t...@cyberelk.net
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/etc \
+--with-udevdir=/usr/lib/udev --with-udev-rules 
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  # Compile *.pyc
+  find ${pkgdir} -name '*.py' -exec python -mpy_compile {} +
+  # Compile *.pyo
+  find ${pkgdir} -name '*.py' -exec python -O -mpy_compile {} +
+  
+  # new cups 2.0.0 service naming
+  sed -i s|cups.socket|org.cups.cupsd.socket|g 
${pkgdir}/usr/lib/systemd/system/configure-printer@.service
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-02-06 21:31:08 UTC (rev 230916)
+++ extra-x86_64/PKGBUILD   2015-02-06 21:31:23 UTC (rev 230917)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR andy...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org

[arch-commits] Commit in system-config-printer/trunk (PKGBUILD)

2015-02-06 Thread Andreas Radke
Date: Friday, February 6, 2015 @ 22:31:08
  Author: andyrtr
Revision: 230916

upgpkg: system-config-printer 1.5.5-1

upstream update 1.5.5

Modified:
  system-config-printer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-06 21:28:14 UTC (rev 230915)
+++ PKGBUILD2015-02-06 21:31:08 UTC (rev 230916)
@@ -3,14 +3,14 @@
 # Contributor: Andrea Scarpino and...@archlinux.org
 
 pkgname=system-config-printer
-pkgver=1.5.4
-pkgrel=2
+pkgver=1.5.5
+pkgrel=1
 pkgdesc=A CUPS printer configuration tool and status applet
 url=http://cyberelk.net/tim/software/system-config-printer/;
 arch=('i686' 'x86_64')
 license=('GPL')
 depends=('python-pycups' 'python-dbus' 'python-pycurl' 'python-gobject2' 
'libnotify'
- 'gnome-icon-theme'  'python-gobject' 'gtk3' 'python-cairo')
+ 'python-requests' 'python-gobject' 'gtk3' 'python-cairo')
 makedepends=('intltool' 'xmlto' 'docbook-xsl' 'desktop-file-utils')
 optdepends=('libgnome-keyring: password management'
 'python-pysmbc: SMB browser support'
@@ -17,11 +17,10 @@
 'python-packagekit: to install drivers with PackageKit'
 'cups-pk-helper: PolicyKit helper to configure cups with 
fine-grained privileges')
 
source=(http://cyberelk.net/tim/data/${pkgname}/${pkgver%*.*}/${pkgname}-${pkgver}.tar.xz{,.sig})
+md5sums=('1aaee6a90449ee0c6b90da2eb5df03a9'
+ 'SKIP')
 validpgpkeys=('02EA6349CE58E1BCAA8514F57955128DA3A1ABD3') #Tim Waugh 
twa...@redhat.com t...@cyberelk.net
-md5sums=('dd5b4c6b8c47e2bd780960b38a8e9a77'
- 'SKIP')
 
-
 build() {
   cd ${pkgname}-${pkgver}
   ./configure --prefix=/usr \


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

2015-02-06 Thread Andreas Radke
Date: Friday, February 6, 2015 @ 22:28:14
  Author: andyrtr
Revision: 230915

archrelease: copy trunk to extra-any

Added:
  python-requests/repos/extra-any/
  python-requests/repos/extra-any/PKGBUILD
(from rev 230914, python-requests/trunk/PKGBUILD)
  python-requests/repos/extra-any/certs.patch
(from rev 230914, python-requests/trunk/certs.patch)

-+
 PKGBUILD|   59 ++
 certs.patch |   13 
 2 files changed, 72 insertions(+)

Copied: python-requests/repos/extra-any/PKGBUILD (from rev 230914, 
python-requests/trunk/PKGBUILD)
===
--- extra-any/PKGBUILD  (rev 0)
+++ extra-any/PKGBUILD  2015-02-06 21:28:14 UTC (rev 230915)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
+
+pkgbase=python-requests
+pkgname=(python-requests python2-requests)
+pkgver=2.5.1
+pkgrel=1
+_libname=requests
+pkgdesc=Python HTTP for Humans.
+url=http://python-requests.org;
+makedepends=('python-setuptools' 'python2-setuptools')
+license=('Apache')
+arch=('any')
+source=(http://pypi.python.org/packages/source/${_libname:0:1}/$_libname/$_libname-$pkgver.tar.gz
+certs.patch)
+sha256sums=('7b7735efd3b1e2323dc9fcef060b380d05f5f18bd0f247f5e9e74a628279de66'
+'e35e779d8640f35ea2ea51112f967d927b44d59483af4cd2c0945c84e79bb7c7')
+
+prepare() {
+cd $srcdir/$_libname-$pkgver
+patch -p1 -i $srcdir/certs.patch
+sed -r 's#(\W|^)requests/cacert\.pem(\W|$)##' -i MANIFEST.in
+rm -f requests/cacert.pem
+}
+
+build() {
+cd $srcdir/$_libname-$pkgver
+
+rm -rf ../buildpy3; mkdir ../buildpy3
+python setup.py build -b ../buildpy3
+
+rm -rf ../buildpy2; mkdir ../buildpy2
+python2 setup.py build -b ../buildpy2
+find ../buildpy2 -name \*.py -exec sed -r 's|^#!(.*)python$|#!\1python2|' 
-i {} +
+}
+
+check() {
+cd $srcdir/$_libname-$pkgver
+test -f $(python -m requests.certs)
+}
+
+package_python-requests() {
+depends=(python)
+
+cd $srcdir/$_libname-$pkgver
+rm -rf build; ln -s ../buildpy3 build
+python setup.py install --skip-build -O1 --root=$pkgdir
+install -m0644 -D LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-requests() {
+depends=(python2)
+optdepends=('python2-ndg-httpsclient: HTTPS requests with SNI support'
+'python2-grequests: asynchronous requests with gevent')
+
+cd $srcdir/$_libname-$pkgver
+rm -rf build; ln -s ../buildpy2 build
+python2 setup.py install --skip-build -O1 --root=$pkgdir
+}

Copied: python-requests/repos/extra-any/certs.patch (from rev 230914, 
python-requests/trunk/certs.patch)
===
--- extra-any/certs.patch   (rev 0)
+++ extra-any/certs.patch   2015-02-06 21:28:14 UTC (rev 230915)
@@ -0,0 +1,13 @@
+diff --git a/requests/certs.py b/requests/certs.py
+index 07e6475..33db011 100644
+--- a/requests/certs.py
 b/requests/certs.py
+@@ -19,7 +19,7 @@ except ImportError:
+ def where():
+ Return the preferred certificate bundle.
+ # vendored bundle inside Requests
+-return os.path.join(os.path.dirname(__file__), 'cacert.pem')
++return /etc/ssl/certs/ca-certificates.crt
+ 
+ if __name__ == '__main__':
+ print(where())


[arch-commits] Commit in (python-requests)

2015-02-06 Thread Andreas Radke
Date: Friday, February 6, 2015 @ 22:28:36
  Author: andyrtr
Revision: 127209

community2extra: Moving python-requests from community to extra

Deleted:
  python-requests/


[arch-commits] Commit in (5 files)

2015-02-06 Thread Andreas Radke
Date: Friday, February 6, 2015 @ 22:28:09
  Author: andyrtr
Revision: 230914

community2extra: Moving python-requests from community to extra

Added:
  python-requests/
  python-requests/repos/
  python-requests/trunk/
  python-requests/trunk/PKGBUILD
  python-requests/trunk/certs.patch

-+
 PKGBUILD|   59 ++
 certs.patch |   13 
 2 files changed, 72 insertions(+)

Added: python-requests/trunk/PKGBUILD
===
--- python-requests/trunk/PKGBUILD  (rev 0)
+++ python-requests/trunk/PKGBUILD  2015-02-06 21:28:09 UTC (rev 230914)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
+
+pkgbase=python-requests
+pkgname=(python-requests python2-requests)
+pkgver=2.5.1
+pkgrel=1
+_libname=requests
+pkgdesc=Python HTTP for Humans.
+url=http://python-requests.org;
+makedepends=('python-setuptools' 'python2-setuptools')
+license=('Apache')
+arch=('any')
+source=(http://pypi.python.org/packages/source/${_libname:0:1}/$_libname/$_libname-$pkgver.tar.gz
+certs.patch)
+sha256sums=('7b7735efd3b1e2323dc9fcef060b380d05f5f18bd0f247f5e9e74a628279de66'
+'e35e779d8640f35ea2ea51112f967d927b44d59483af4cd2c0945c84e79bb7c7')
+
+prepare() {
+cd $srcdir/$_libname-$pkgver
+patch -p1 -i $srcdir/certs.patch
+sed -r 's#(\W|^)requests/cacert\.pem(\W|$)##' -i MANIFEST.in
+rm -f requests/cacert.pem
+}
+
+build() {
+cd $srcdir/$_libname-$pkgver
+
+rm -rf ../buildpy3; mkdir ../buildpy3
+python setup.py build -b ../buildpy3
+
+rm -rf ../buildpy2; mkdir ../buildpy2
+python2 setup.py build -b ../buildpy2
+find ../buildpy2 -name \*.py -exec sed -r 's|^#!(.*)python$|#!\1python2|' 
-i {} +
+}
+
+check() {
+cd $srcdir/$_libname-$pkgver
+test -f $(python -m requests.certs)
+}
+
+package_python-requests() {
+depends=(python)
+
+cd $srcdir/$_libname-$pkgver
+rm -rf build; ln -s ../buildpy3 build
+python setup.py install --skip-build -O1 --root=$pkgdir
+install -m0644 -D LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-requests() {
+depends=(python2)
+optdepends=('python2-ndg-httpsclient: HTTPS requests with SNI support'
+'python2-grequests: asynchronous requests with gevent')
+
+cd $srcdir/$_libname-$pkgver
+rm -rf build; ln -s ../buildpy2 build
+python2 setup.py install --skip-build -O1 --root=$pkgdir
+}


Property changes on: python-requests/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: python-requests/trunk/certs.patch
===
--- python-requests/trunk/certs.patch   (rev 0)
+++ python-requests/trunk/certs.patch   2015-02-06 21:28:09 UTC (rev 230914)
@@ -0,0 +1,13 @@
+diff --git a/requests/certs.py b/requests/certs.py
+index 07e6475..33db011 100644
+--- a/requests/certs.py
 b/requests/certs.py
+@@ -19,7 +19,7 @@ except ImportError:
+ def where():
+ Return the preferred certificate bundle.
+ # vendored bundle inside Requests
+-return os.path.join(os.path.dirname(__file__), 'cacert.pem')
++return /etc/ssl/certs/ca-certificates.crt
+ 
+ if __name__ == '__main__':
+ print(where())


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

2015-02-06 Thread Kyle Keen
Date: Saturday, February 7, 2015 @ 05:31:51
  Author: kkeen
Revision: 127211

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

Added:
  seamonkey/repos/community-i686/PKGBUILD
(from rev 127210, seamonkey/trunk/PKGBUILD)
  seamonkey/repos/community-i686/mozconfig
(from rev 127210, seamonkey/trunk/mozconfig)
  seamonkey/repos/community-i686/rhbz-966424.patch
(from rev 127210, seamonkey/trunk/rhbz-966424.patch)
  seamonkey/repos/community-i686/seamonkey-2.0-lang.patch
(from rev 127210, seamonkey/trunk/seamonkey-2.0-lang.patch)
  seamonkey/repos/community-i686/seamonkey.install
(from rev 127210, seamonkey/trunk/seamonkey.install)
  seamonkey/repos/community-x86_64/PKGBUILD
(from rev 127210, seamonkey/trunk/PKGBUILD)
  seamonkey/repos/community-x86_64/mozconfig
(from rev 127210, seamonkey/trunk/mozconfig)
  seamonkey/repos/community-x86_64/rhbz-966424.patch
(from rev 127210, seamonkey/trunk/rhbz-966424.patch)
  seamonkey/repos/community-x86_64/seamonkey-2.0-lang.patch
(from rev 127210, seamonkey/trunk/seamonkey-2.0-lang.patch)
  seamonkey/repos/community-x86_64/seamonkey.install
(from rev 127210, seamonkey/trunk/seamonkey.install)
Deleted:
  seamonkey/repos/community-i686/PKGBUILD
  seamonkey/repos/community-i686/mozconfig
  seamonkey/repos/community-i686/rhbz-966424.patch
  seamonkey/repos/community-i686/seamonkey-2.0-lang.patch
  seamonkey/repos/community-i686/seamonkey.install
  seamonkey/repos/community-x86_64/PKGBUILD
  seamonkey/repos/community-x86_64/mozconfig
  seamonkey/repos/community-x86_64/rhbz-966424.patch
  seamonkey/repos/community-x86_64/seamonkey-2.0-lang.patch
  seamonkey/repos/community-x86_64/seamonkey.install

---+
 /PKGBUILD |  156 
 /mozconfig|   72 
 /rhbz-966424.patch|   46 
 /seamonkey-2.0-lang.patch |   22 +++
 /seamonkey.install|   24 
 community-i686/PKGBUILD   |   78 --
 community-i686/mozconfig  |   36 --
 community-i686/rhbz-966424.patch  |   23 
 community-i686/seamonkey-2.0-lang.patch   |   11 -
 community-i686/seamonkey.install  |   12 --
 community-x86_64/PKGBUILD |   78 --
 community-x86_64/mozconfig|   36 --
 community-x86_64/rhbz-966424.patch|   23 
 community-x86_64/seamonkey-2.0-lang.patch |   11 -
 community-x86_64/seamonkey.install|   12 --
 15 files changed, 320 insertions(+), 320 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-02-07 04:27:45 UTC (rev 127210)
+++ community-i686/PKGBUILD 2015-02-07 04:31:51 UTC (rev 127211)
@@ -1,78 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen keen...@gmail.com
-
-pkgname=seamonkey
-pkgver=2.32
-pkgrel=1
-pkgdesc=SeaMonkey internet suite
-arch=('i686' 'x86_64')
-license=('MPL')
-depends=('alsa-lib'  'dbus-glib'  'desktop-file-utils'  'gtk2' 'hunspell'  
'libevent'  'libnotify'  'libvpx'  'libxt' 'mime-types'  'mozilla-common'  
'nss'  'sqlite'  'startup-notification' 'libpulse' 'icu')
-makedepends=('unzip' 'zip' 'pkg-config'  'python2' 'yasm' 'wireless_tools' 
'mesa' 'autoconf2.13' 'imake' 'python3' 'gstreamer0.10-base')
-optdepends=('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')
-install=$pkgname.install
-url=http://www.seamonkey-project.org/;
-source=(ftp://ftp.mozilla.org/pub/mozilla.org/$pkgname/releases/$pkgver/source/$pkgname-$pkgver.source.tar.bz2
-mozconfig
-seamonkey-2.0-lang.patch
-rhbz-966424.patch)
-md5sums=('52302e4ce4599c8ab5eb8d4f9a78e7bd'
- '9b6d65e9b77acf9fd7c6e3578a5d2acd'
- '25b6fe16ac24cd5c852213e5c1adb272'
- '8c1578232b7a60fa1caa9a0b322d1e2b')
-
-prepare() {
-  cd comm-release
-  cp ../mozconfig .mozconfig
-  #patch -Np1 -i ../seamonkey-2.0-lang.patch
-
-  # https://bugs.archlinux.org/task/41689
-  patch -Np1 -d mozilla -i ../../rhbz-966424.patch
-
-  # Don't exit with error when some libs are missing which we have in
-  # system.
-  sed -i '/^MOZ_PKG_FATAL_WARNINGS/s@= 1@= 0@' suite/installer/Makefile.in
-
-  # configure script misdetects the preprocessor without an optimization level
-  sed -i '/ac_cpp=/s/$CPPFLAGS/ -O2/' configure
-
-  # 2.26 build fix from wgnie (blfs ch 37)
-  sed -i 's/$(MOZ_ZLIB_CFLAGS)/ $(MOZ_PIXMAN_CFLAGS)/' config/config.mk
-}
-
-build() {
-  cd comm-release
-
-  export LDFLAGS=$LDFLAGS -Wl,-rpath,/usr/lib/seamonkey-$pkgver
-  export MOZ_MAKE_FLAGS=$MAKEFLAGS
-  unset MAKEFLAGS
-  unset CPPFLAGS
-
-  make -j1 -f client.mk build
-}
-

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

2015-02-06 Thread Evangelos Foutras
Date: Saturday, February 7, 2015 @ 08:07:53
  Author: foutrelis
Revision: 127213

archrelease: copy trunk to community-any

Added:
  shorewall/repos/community-any/PKGBUILD
(from rev 127212, shorewall/trunk/PKGBUILD)
Deleted:
  shorewall/repos/community-any/PKGBUILD

--+
 PKGBUILD |  146 ++---
 1 file changed, 73 insertions(+), 73 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-02-07 07:07:42 UTC (rev 127212)
+++ PKGBUILD2015-02-07 07:07:53 UTC (rev 127213)
@@ -1,73 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras evange...@foutrelis.com
-# Contributor: Malte Rabenseifner ma...@zearan.de
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: FUBAR mrfu...@gmail.com
-
-pkgname=('shorewall' 'shorewall6' 'shorewall-core')
-pkgver=4.6.6.1
-pkgrel=1
-arch=('any')
-url=http://www.shorewall.net/;
-license=('GPL')
-source=(http://www.shorewall.net/pub/$pkgname/4.6/$pkgname-4.6.6/$pkgname-$pkgver.tar.bz2
-
http://www.shorewall.net/pub/$pkgname/4.6/$pkgname-4.6.6/shorewall6-$pkgver.tar.bz2
-
http://www.shorewall.net/pub/$pkgname/4.6/$pkgname-4.6.6/shorewall-core-$pkgver.tar.bz2)
-sha256sums=('ad199bba7397e19380eb44d46bc597c5d904af624ae2c5127d160f2f1ad7ffa8'
-'4313a1f33ea63d8c60c3707a75ea7b569338546699f8abcf8115922b86f47a02'
-'20ca8ee26d2d307e658a3a89b16d6eeb7d51a1ab6a4d30b2e4e880e7d96ed247')
-
-build() {
-  for product in shorewall{,6,-core}; do
-pushd $srcdir/$product-$pkgver
-./configure HOST=archlinux
-popd
-  done
-}
-
-package_shorewall() {
-  pkgdesc=An iptables-based firewall for Linux systems
-  depends=('shorewall-core' 'perl')
-  
backup=(etc/shorewall/{accounting,actions,blrules,clear,conntrack,ecn,findgw,hosts,init,initdone,interfaces,lib.private,maclist,mangle,masq,nat,netmap,params,policy,providers,proxyarp,refresh,refreshed,restored,routes,stoppedrules,rtrules,rules,scfilter,secmarks,shorewall.conf,start,started,stop,stopped,tcclasses,tcclear,tcdevices,tcfilters,tcinterfaces,tcpri,tos,tunnels,zones})
-
-  cd $srcdir/$pkgname-$pkgver
-
-  do_install
-}
-
-package_shorewall6() {
-  pkgdesc=An iptables-based firewall for Linux systems (with IPv6 support)
-  depends=('shorewall')
-  
backup=(etc/shorewall6/{accounting,actions,blrules,clear,conntrack,hosts,init,interfaces,maclist,mangle,masq,netmap,params,policy,providers,proxyndp,refresh,refreshed,restored,routes,stoppedrules,rtrules,rules,scfilter,secmarks,shorewall6.conf,start,started,stop,stopped,tcclasses,tcclear,tcdevices,tcfilters,tcinterfaces,tcpri,tos,tunnels,zones})
-
-  cd $srcdir/$pkgname-$pkgver
-
-  do_install 6
-}
-
-package_shorewall-core() {
-  pkgdesc=Core Shorewall libraries
-  depends=('iptables' 'iproute2')
-
-  cd $srcdir/$pkgname-$pkgver
-
-  DESTDIR=$pkgdir ./install.sh
-}
-
-do_install() {
-  local _name_suffix=$1
-
-  sed -i -e 's|^MODULE_SUFFIX=ko$|.gz|' \
- -e 's|/subsys||' \
-  configfiles/shorewall$_name_suffix.conf
-
-  DESTDIR=$pkgdir ./install.sh
-
-  install -d $pkgdir/usr/share/doc/shorewall$_name_suffix/
-  cp -r Samples$_name_suffix $pkgdir/usr/share/doc/shorewall$_name_suffix/
-
-  chmod -R 644 $pkgdir/etc/shorewall$_name_suffix/
-  chmod 755 $pkgdir/etc/shorewall$_name_suffix/
-}
-
-# vim:set ts=2 sw=2 et:

Copied: shorewall/repos/community-any/PKGBUILD (from rev 127212, 
shorewall/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-02-07 07:07:53 UTC (rev 127213)
@@ -0,0 +1,73 @@
+# $Id$
+# Maintainer: Evangelos Foutras evange...@foutrelis.com
+# Contributor: Malte Rabenseifner ma...@zearan.de
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: FUBAR mrfu...@gmail.com
+
+pkgname=('shorewall' 'shorewall6' 'shorewall-core')
+pkgver=4.6.6.2
+pkgrel=1
+arch=('any')
+url=http://www.shorewall.net/;
+license=('GPL')
+source=(http://www.shorewall.net/pub/$pkgname/4.6/$pkgname-4.6.6/$pkgname-$pkgver.tar.bz2
+
http://www.shorewall.net/pub/$pkgname/4.6/$pkgname-4.6.6/shorewall6-$pkgver.tar.bz2
+
http://www.shorewall.net/pub/$pkgname/4.6/$pkgname-4.6.6/shorewall-core-$pkgver.tar.bz2)
+sha256sums=('db41744e6303e031e29be531dbedd4191624c4a70f9e23fa0b450e26953708f4'
+'b475473eaf9d4a8b4067214f8fa14f1c1d97cdb77c180abd9e22dfdea6b9f637'
+'764c8c22f619cdfd61eebd77e9f271a168515d44c4578b85af44921cc1f3b675')
+
+build() {
+  for product in shorewall{,6,-core}; do
+pushd $srcdir/$product-$pkgver
+./configure HOST=archlinux
+popd
+  done
+}
+
+package_shorewall() {
+  pkgdesc=An iptables-based firewall for Linux systems
+  depends=('shorewall-core' 'perl')
+  

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

2015-02-06 Thread Evangelos Foutras
Date: Saturday, February 7, 2015 @ 08:07:42
  Author: foutrelis
Revision: 127212

upgpkg: shorewall 4.6.6.2-1

New upstream release.

Modified:
  shorewall/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-07 04:31:51 UTC (rev 127211)
+++ PKGBUILD2015-02-07 07:07:42 UTC (rev 127212)
@@ -5,7 +5,7 @@
 # Contributor: FUBAR mrfu...@gmail.com
 
 pkgname=('shorewall' 'shorewall6' 'shorewall-core')
-pkgver=4.6.6.1
+pkgver=4.6.6.2
 pkgrel=1
 arch=('any')
 url=http://www.shorewall.net/;
@@ -13,9 +13,9 @@
 
source=(http://www.shorewall.net/pub/$pkgname/4.6/$pkgname-4.6.6/$pkgname-$pkgver.tar.bz2
 
http://www.shorewall.net/pub/$pkgname/4.6/$pkgname-4.6.6/shorewall6-$pkgver.tar.bz2
 
http://www.shorewall.net/pub/$pkgname/4.6/$pkgname-4.6.6/shorewall-core-$pkgver.tar.bz2)
-sha256sums=('ad199bba7397e19380eb44d46bc597c5d904af624ae2c5127d160f2f1ad7ffa8'
-'4313a1f33ea63d8c60c3707a75ea7b569338546699f8abcf8115922b86f47a02'
-'20ca8ee26d2d307e658a3a89b16d6eeb7d51a1ab6a4d30b2e4e880e7d96ed247')
+sha256sums=('db41744e6303e031e29be531dbedd4191624c4a70f9e23fa0b450e26953708f4'
+'b475473eaf9d4a8b4067214f8fa14f1c1d97cdb77c180abd9e22dfdea6b9f637'
+'764c8c22f619cdfd61eebd77e9f271a168515d44c4578b85af44921cc1f3b675')
 
 build() {
   for product in shorewall{,6,-core}; do


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

2015-02-06 Thread Kyle Keen
Date: Saturday, February 7, 2015 @ 05:27:45
  Author: kkeen
Revision: 127210

upgpkg: seamonkey 2.32.1-1

Modified:
  seamonkey/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-06 21:28:36 UTC (rev 127209)
+++ PKGBUILD2015-02-07 04:27:45 UTC (rev 127210)
@@ -2,7 +2,7 @@
 # Maintainer: Kyle Keen keen...@gmail.com
 
 pkgname=seamonkey
-pkgver=2.32
+pkgver=2.32.1
 pkgrel=1
 pkgdesc=SeaMonkey internet suite
 arch=('i686' 'x86_64')
@@ -19,7 +19,7 @@
 mozconfig
 seamonkey-2.0-lang.patch
 rhbz-966424.patch)
-md5sums=('52302e4ce4599c8ab5eb8d4f9a78e7bd'
+md5sums=('88a90d29af5f05e12a9c91e4c4d57c6e'
  '9b6d65e9b77acf9fd7c6e3578a5d2acd'
  '25b6fe16ac24cd5c852213e5c1adb272'
  '8c1578232b7a60fa1caa9a0b322d1e2b')


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

2015-02-06 Thread Gaetan Bisson
Date: Saturday, February 7, 2015 @ 06:06:36
  Author: bisson
Revision: 230921

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

Added:
  mpd/repos/extra-i686/PKGBUILD
(from rev 230920, mpd/trunk/PKGBUILD)
  mpd/repos/extra-i686/conf
(from rev 230920, mpd/trunk/conf)
  mpd/repos/extra-i686/install
(from rev 230920, mpd/trunk/install)
  mpd/repos/extra-i686/tmpfiles.d
(from rev 230920, mpd/trunk/tmpfiles.d)
  mpd/repos/extra-x86_64/PKGBUILD
(from rev 230920, mpd/trunk/PKGBUILD)
  mpd/repos/extra-x86_64/conf
(from rev 230920, mpd/trunk/conf)
  mpd/repos/extra-x86_64/install
(from rev 230920, mpd/trunk/install)
  mpd/repos/extra-x86_64/tmpfiles.d
(from rev 230920, mpd/trunk/tmpfiles.d)
Deleted:
  mpd/repos/extra-i686/PKGBUILD
  mpd/repos/extra-i686/conf
  mpd/repos/extra-i686/install
  mpd/repos/extra-i686/tmpfiles.d
  mpd/repos/extra-x86_64/PKGBUILD
  mpd/repos/extra-x86_64/conf
  mpd/repos/extra-x86_64/install
  mpd/repos/extra-x86_64/tmpfiles.d

-+
 /PKGBUILD   |  110 ++
 /conf   |   12 +
 /install|   22 +
 /tmpfiles.d |2 
 extra-i686/PKGBUILD |   55 ---
 extra-i686/conf |6 --
 extra-i686/install  |   11 
 extra-i686/tmpfiles.d   |1 
 extra-x86_64/PKGBUILD   |   55 ---
 extra-x86_64/conf   |6 --
 extra-x86_64/install|   11 
 extra-x86_64/tmpfiles.d |1 
 12 files changed, 146 insertions(+), 146 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-02-07 05:05:48 UTC (rev 230920)
+++ extra-i686/PKGBUILD 2015-02-07 05:06:36 UTC (rev 230921)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson bis...@archlinux.org
-# Contributor: Angel Velasquez an...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Damir Perisa damir.per...@bluewin.ch
-# Contributor: Ben b...@benmazer.net
-
-pkgname=mpd
-pkgver=0.19.8
-pkgrel=1
-pkgdesc='Flexible, powerful, server-side application for playing music'
-url='http://www.musicpd.org/'
-license=('GPL')
-arch=('i686' 'x86_64')
-depends=('libao' 'ffmpeg' 'libmodplug' 'audiofile' 'libshout' 'libmad' 'curl' 
'faad2'
- 'sqlite' 'jack' 'libmms' 'wavpack' 'avahi' 'libid3tag' 'yajl' 
'libmpdclient'
- 'icu' 'libupnp' 'libnfs')
-makedepends=('boost' 'doxygen')
-validpgpkeys=('0392335A78083894A4301C43236E8A58C6DB4512')
-source=(http://www.musicpd.org/download/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz{,.sig}
-'tmpfiles.d'
-'conf')
-sha1sums=('e5e325b666474bddec6c07502fa2dcf3710a42e3' 'SKIP'
-  'f4d5922abb69abb739542d8e93f4dfd748acdad7'
-  '291fd5cda9f0845834a553017327c4586bd853f6')
-
-backup=('etc/mpd.conf')
-install=install
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   ./configure \
-   --prefix=/usr \
-   --sysconfdir=/etc \
-   --enable-libmpdclient \
-   --enable-jack \
-   --enable-soundcloud \
-   --enable-pipe-output \
-   --enable-pulse \
-   --disable-sidplay \
-   --with-systemdsystemunitdir=/usr/lib/systemd/system
-   make
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   make DESTDIR=${pkgdir} install
-   install -Dm644 ../conf ${pkgdir}/etc/mpd.conf
-   install -Dm644 ../tmpfiles.d ${pkgdir}/usr/lib/tmpfiles.d/mpd.conf
-   install -d -g 45 -o 45 ${pkgdir}/var/lib/mpd/playlists
-
-   install -Dm644 ${pkgdir}/usr/lib/systemd/{system,user}/mpd.service
-   sed '/\[Service\]/a User=mpd' -i 
${pkgdir}/usr/lib/systemd/system/mpd.service
-   sed '/WantedBy=/c WantedBy=default.target' -i 
${pkgdir}/usr/lib/systemd/{system,user}/mpd.service
-}

Copied: mpd/repos/extra-i686/PKGBUILD (from rev 230920, mpd/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-02-07 05:06:36 UTC (rev 230921)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Angel Velasquez an...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Damir Perisa damir.per...@bluewin.ch
+# Contributor: Ben b...@benmazer.net
+
+pkgname=mpd
+pkgver=0.19.9
+pkgrel=1
+pkgdesc='Flexible, powerful, server-side application for playing music'
+url='http://www.musicpd.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('libao' 'ffmpeg' 'libmodplug' 'audiofile' 'libshout' 'libmad' 'curl' 
'faad2'
+ 'sqlite' 'jack' 'libmms' 'wavpack' 'avahi' 'libid3tag' 'yajl' 
'libmpdclient'
+ 'icu' 'libupnp' 'libnfs')
+makedepends=('boost' 'doxygen')
+validpgpkeys=('0392335A78083894A4301C43236E8A58C6DB4512')

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

2015-02-06 Thread Gaetan Bisson
Date: Saturday, February 7, 2015 @ 06:05:48
  Author: bisson
Revision: 230920

upstream update

Modified:
  mpd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-07 02:58:46 UTC (rev 230919)
+++ PKGBUILD2015-02-07 05:05:48 UTC (rev 230920)
@@ -6,7 +6,7 @@
 # Contributor: Ben b...@benmazer.net
 
 pkgname=mpd
-pkgver=0.19.8
+pkgver=0.19.9
 pkgrel=1
 pkgdesc='Flexible, powerful, server-side application for playing music'
 url='http://www.musicpd.org/'
@@ -20,7 +20,7 @@
 
source=(http://www.musicpd.org/download/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz{,.sig}
 'tmpfiles.d'
 'conf')
-sha1sums=('e5e325b666474bddec6c07502fa2dcf3710a42e3' 'SKIP'
+sha1sums=('6683bee5f132eda318c5a61ec14b2df8d9164d60' 'SKIP'
   'f4d5922abb69abb739542d8e93f4dfd748acdad7'
   '291fd5cda9f0845834a553017327c4586bd853f6')
 


[arch-commits] Commit in net-snmp/trunk (PKGBUILD libnl32.patch)

2015-02-06 Thread Felix Yan
Date: Saturday, February 7, 2015 @ 03:58:02
  Author: fyan
Revision: 230918

upgpkg: net-snmp 5.7.3-1

Modified:
  net-snmp/trunk/PKGBUILD
Deleted:
  net-snmp/trunk/libnl32.patch

---+
 PKGBUILD  |   19 -
 libnl32.patch |   80 
 2 files changed, 7 insertions(+), 92 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-02-06 21:31:23 UTC (rev 230917)
+++ PKGBUILD2015-02-07 02:58:02 UTC (rev 230918)
@@ -3,8 +3,8 @@
 # Contributor: Dale Blount d...@archlinux.org
 
 pkgname=net-snmp
-pkgver=5.7.2.1
-pkgrel=3
+pkgver=5.7.3
+pkgrel=1
 pkgdesc=A suite of applications used to implement SNMP v1, SNMP v2c and SNMP 
v3 using both IPv4 and IPv6
 arch=('i686' 'x86_64')
 url=http://www.net-snmp.org/;
@@ -16,22 +16,17 @@
 'python2: for the python modules')
 options=('!emptydirs' '!makeflags')
 
source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.asc}
-snmpd.service snmptrapd.service libnl32.patch)
-sha1sums=('815d4e5520a1ed96a27def33e7534b4190599f0f'
+snmpd.service snmptrapd.service)
+sha1sums=('97dc25077257680815de44e34128d365c76bd839'
   'SKIP'
   '84e32c54d32e6b608747054e04a3ddfe6d6638cc'
-  '0244e91c7baa0abebfb5c0560e8ce04c966c5992'
-  '74a9848b95f63378eb1753fc309d2b74de5afb0f')
-validpgpkeys=('8AAA779B597B405BBC329B6376CF47B8A77C5329')  # Net-SNMP 
Administrators
+  '0244e91c7baa0abebfb5c0560e8ce04c966c5992')
+validpgpkeys=('8AAA779B597B405BBC329B6376CF47B8A77C5329'
+  '27CAA4A32E371383A33ED0587D5F9576E0F81533')  # Net-SNMP 
Administrators
 
 prepare() {
   cd ${pkgname}-${pkgver}
   #make PERL_ARCHLIB=/usr/lib/perl5/core_perl 
PERL_INC=/usr/lib/perl5/core_perl/CORE distclean
-
-  # 
http://sourceforge.net/tracker/index.php?func=detailaid=3250304group_id=12694atid=112694
-  patch -Np1 -i $srcdir/libnl32.patch
-
-  autoreconf -f -i
 }
 
 build() {

Deleted: libnl32.patch
===
--- libnl32.patch   2015-02-06 21:31:23 UTC (rev 230917)
+++ libnl32.patch   2015-02-07 02:58:02 UTC (rev 230918)
@@ -1,80 +0,0 @@
-diff -u -r net-snmp-5.7.1/agent/mibgroup/mibII/tcpTable.c 
net-snmp-5.7.1-libnl32/agent/mibgroup/mibII/tcpTable.c
 net-snmp-5.7.1/agent/mibgroup/mibII/tcpTable.c 2011-09-28 
06:53:47.0 +0200
-+++ net-snmp-5.7.1-libnl32/agent/mibgroup/mibII/tcpTable.c 2012-02-09 
20:02:49.136022132 +0100
-@@ -566,8 +566,9 @@
- static int
- tcpTable_load_netlink(void)
- {
-+  int err;
-   /*  TODO: perhaps use permanent nl handle? */
--  struct nl_handle *nl = nl_handle_alloc();
-+  struct nl_sock *nl = nl_socket_alloc();
- 
-   if (nl == NULL) {
-   DEBUGMSGTL((mibII/tcpTable, Failed to allocate netlink 
handle\n));
-@@ -575,10 +576,10 @@
-   return -1;
-   }
- 
--  if (nl_connect(nl, NETLINK_INET_DIAG)  0) {
--  DEBUGMSGTL((mibII/tcpTable, Failed to connect to netlink: 
%s\n, nl_geterror()));
--  snmp_log(LOG_ERR, snmpd: Couldn't connect to netlink: %s\n, 
nl_geterror());
--  nl_handle_destroy(nl);
-+  if ((err = nl_connect(nl, NETLINK_INET_DIAG))  0) {
-+  DEBUGMSGTL((mibII/tcpTable, Failed to connect to netlink: 
%s\n, nl_geterror(err)));
-+  snmp_log(LOG_ERR, snmpd: Couldn't connect to netlink: %s\n, 
nl_geterror(err));
-+  nl_socket_free(nl);
-   return -1;
-   }
- 
-@@ -590,10 +591,10 @@
-   struct nl_msg *nm = nlmsg_alloc_simple(TCPDIAG_GETSOCK, 
NLM_F_ROOT|NLM_F_MATCH|NLM_F_REQUEST);
-   nlmsg_append(nm, req, sizeof(struct inet_diag_req), 0);
- 
--  if (nl_send_auto_complete(nl, nm)  0) {
--  DEBUGMSGTL((mibII/tcpTable, nl_send_autocomplete(): %s\n, 
nl_geterror()));
--  snmp_log(LOG_ERR, snmpd: nl_send_autocomplete(): %s\n, 
nl_geterror());
--  nl_handle_destroy(nl);
-+  if ((err = nl_send_auto_complete(nl, nm))  0) {
-+  DEBUGMSGTL((mibII/tcpTable, nl_send_autocomplete(): %s\n, 
nl_geterror(err)));
-+  snmp_log(LOG_ERR, snmpd: nl_send_autocomplete(): %s\n, 
nl_geterror(err));
-+  nl_socket_free(nl);
-   return -1;
-   }
-   nlmsg_free(nm);
-@@ -604,9 +605,9 @@
- 
-   while (running) {
-   if ((len = nl_recv(nl, peer, buf, NULL)) = 0) {
--  DEBUGMSGTL((mibII/tcpTable, nl_recv(): %s\n, 
nl_geterror()));
--  snmp_log(LOG_ERR, snmpd: nl_recv(): %s\n, 
nl_geterror());
--  nl_handle_destroy(nl);
-+  DEBUGMSGTL((mibII/tcpTable, nl_recv(): %s\n, 
nl_geterror(len)));
-+  snmp_log(LOG_ERR, snmpd: nl_recv(): %s\n, 
nl_geterror(len));
-+  nl_socket_free(nl);
-   return -1;
-   

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

2015-02-06 Thread Felix Yan
Date: Saturday, February 7, 2015 @ 03:58:46
  Author: fyan
Revision: 230919

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

Added:
  net-snmp/repos/testing-i686/
  net-snmp/repos/testing-i686/PKGBUILD
(from rev 230918, net-snmp/trunk/PKGBUILD)
  net-snmp/repos/testing-i686/snmpd.service
(from rev 230918, net-snmp/trunk/snmpd.service)
  net-snmp/repos/testing-i686/snmptrapd.service
(from rev 230918, net-snmp/trunk/snmptrapd.service)
  net-snmp/repos/testing-x86_64/
  net-snmp/repos/testing-x86_64/PKGBUILD
(from rev 230918, net-snmp/trunk/PKGBUILD)
  net-snmp/repos/testing-x86_64/snmpd.service
(from rev 230918, net-snmp/trunk/snmpd.service)
  net-snmp/repos/testing-x86_64/snmptrapd.service
(from rev 230918, net-snmp/trunk/snmptrapd.service)

--+
 testing-i686/PKGBUILD|   56 +
 testing-i686/snmpd.service   |   12 +++
 testing-i686/snmptrapd.service   |   12 +++
 testing-x86_64/PKGBUILD  |   56 +
 testing-x86_64/snmpd.service |   12 +++
 testing-x86_64/snmptrapd.service |   12 +++
 6 files changed, 160 insertions(+)

Copied: net-snmp/repos/testing-i686/PKGBUILD (from rev 230918, 
net-snmp/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-02-07 02:58:46 UTC (rev 230919)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Dale Blount d...@archlinux.org
+
+pkgname=net-snmp
+pkgver=5.7.3
+pkgrel=1
+pkgdesc=A suite of applications used to implement SNMP v1, SNMP v2c and SNMP 
v3 using both IPv4 and IPv6
+arch=('i686' 'x86_64')
+url=http://www.net-snmp.org/;
+license=('BSD')
+depends=('openssl' 'libnl' 'pciutils')
+makedepends=('python2-setuptools')
+optdepends=('perl-term-readkey: for snmpcheck application'
+'perl-tk: for snmpcheck and tkmib applications'
+'python2: for the python modules')
+options=('!emptydirs' '!makeflags')
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.asc}
+snmpd.service snmptrapd.service)
+sha1sums=('97dc25077257680815de44e34128d365c76bd839'
+  'SKIP'
+  '84e32c54d32e6b608747054e04a3ddfe6d6638cc'
+  '0244e91c7baa0abebfb5c0560e8ce04c966c5992')
+validpgpkeys=('8AAA779B597B405BBC329B6376CF47B8A77C5329'
+  '27CAA4A32E371383A33ED0587D5F9576E0F81533')  # Net-SNMP 
Administrators
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  #make PERL_ARCHLIB=/usr/lib/perl5/core_perl 
PERL_INC=/usr/lib/perl5/core_perl/CORE distclean
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  PYTHONPROG=/usr/bin/python2 ./configure --prefix=/usr \
+--sysconfdir=/etc --sbindir=/usr/bin \
+--mandir=/usr/share/man \
+--enable-ucd-snmp-compatibility \
+--enable-ipv6 \
+--with-python-modules \
+--with-default-snmp-version=3 \
+--with-sys-contact=root@localhost \
+--with-sys-location=Unknown \
+--with-logfile=/var/log/snmpd.log \
+--with-mib-modules=host misc/ipfwacc ucd-snmp/diskio tunnel 
ucd-snmp/dlmod \
+--with-persistent-directory=/var/net-snmp
+  make NETSNMP_DONT_CHECK_VERSION=1
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  sed -i -e s:install --basedir=\$\$dir:install --basedir=\$\$dir 
--root=${pkgdir}: Makefile
+  make DESTDIR=${pkgdir} INSTALL_PREFIX=${pkgdir} INSTALLDIRS=vendor 
install
+  install -D -m644 ${srcdir}/snmpd.service 
${pkgdir}/usr/lib/systemd/system/snmpd.service
+  install -D -m644 ${srcdir}/snmptrapd.service 
${pkgdir}/usr/lib/systemd/system/snmptrapd.service
+  install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Copied: net-snmp/repos/testing-i686/snmpd.service (from rev 230918, 
net-snmp/trunk/snmpd.service)
===
--- testing-i686/snmpd.service  (rev 0)
+++ testing-i686/snmpd.service  2015-02-07 02:58:46 UTC (rev 230919)
@@ -0,0 +1,12 @@
+[Unit]
+Description=Simple Network Management Protocol (SNMP) Daemon
+After=syslog.target network.target
+
+[Service]
+Type=forking
+PIDFile=/run/snmpd.pid
+ExecStart=/usr/bin/snmpd -p /run/snmpd.pid
+ExecReload=/bin/kill -HUP $MAINPID
+
+[Install]
+WantedBy=multi-user.target

Copied: net-snmp/repos/testing-i686/snmptrapd.service (from rev 230918, 
net-snmp/trunk/snmptrapd.service)
===
--- testing-i686/snmptrapd.service  (rev 0)
+++ testing-i686/snmptrapd.service  2015-02-07 02:58:46 UTC (rev 230919)
@@ -0,0 +1,12 @@
+[Unit]
+Description=Simple Network Management Protocol (SNMP) TRAP Daemon
+After=syslog.target network.target
+
+[Service]
+Type=forking
+PIDFile=/run/snmptrapd.pid
+ExecStart=/usr/bin/snmptrapd -p /run/snmptrapd.pid
+ExecReload=/bin/kill -HUP $MAINPID
+

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

2015-02-06 Thread Sergej Pupykin
Date: Friday, February 6, 2015 @ 11:19:55
  Author: spupykin
Revision: 127187

upgpkg: buildbot 0.8.10-3

upd

Modified:
  buildbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-06 10:07:48 UTC (rev 127186)
+++ PKGBUILD2015-02-06 10:19:55 UTC (rev 127187)
@@ -4,12 +4,13 @@
 
 pkgname=buildbot
 pkgver=0.8.10
-pkgrel=2
+pkgrel=3
 pkgdesc=A system to automate the compile/test cycle required by most software 
projects
 arch=('any')
 url=http://buildbot.net;
 license=(GPL)
-depends=('python2-twisted' 'python2-jinja' 'python2-migrate' 
'python2-dateutil')
+depends=('python2-twisted' 'python2-jinja' 'python2-migrate'
+'python2-dateutil' 'python2-sqlparse')
 
source=(https://pypi.python.org/packages/source/b/buildbot/buildbot-$pkgver.tar.gz
version-parse.patch)
 md5sums=('3201aaecf32df7810f4e23c14d20a544'


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

2015-02-06 Thread Sergej Pupykin
Date: Friday, February 6, 2015 @ 11:20:07
  Author: spupykin
Revision: 127188

archrelease: copy trunk to community-any

Added:
  buildbot/repos/community-any/PKGBUILD
(from rev 127187, buildbot/trunk/PKGBUILD)
  buildbot/repos/community-any/version-parse.patch
(from rev 127187, buildbot/trunk/version-parse.patch)
Deleted:
  buildbot/repos/community-any/PKGBUILD
  buildbot/repos/community-any/version-parse.patch

-+
 PKGBUILD|   53 +-
 version-parse.patch |   48 ++---
 2 files changed, 51 insertions(+), 50 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-02-06 10:19:55 UTC (rev 127187)
+++ PKGBUILD2015-02-06 10:20:07 UTC (rev 127188)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: William Rea sillywi...@gmail.com
-
-pkgname=buildbot
-pkgver=0.8.10
-pkgrel=2
-pkgdesc=A system to automate the compile/test cycle required by most software 
projects
-arch=('any')
-url=http://buildbot.net;
-license=(GPL)
-depends=('python2-twisted' 'python2-jinja' 'python2-migrate' 
'python2-dateutil')
-source=(https://pypi.python.org/packages/source/b/buildbot/buildbot-$pkgver.tar.gz
-   version-parse.patch)
-md5sums=('3201aaecf32df7810f4e23c14d20a544'
- '61986f8b1d88ab74c8b290c49580152b')
-
-prepare() {
-  cd $srcdir/buildbot-${pkgver/_/}
-  patch -p1 $srcdir/version-parse.patch
-}
-
-package() {
-  cd $srcdir/buildbot-${pkgver/_/}
-  python2 setup.py install --root=$pkgdir
-}

Copied: buildbot/repos/community-any/PKGBUILD (from rev 127187, 
buildbot/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-02-06 10:20:07 UTC (rev 127188)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: William Rea sillywi...@gmail.com
+
+pkgname=buildbot
+pkgver=0.8.10
+pkgrel=3
+pkgdesc=A system to automate the compile/test cycle required by most software 
projects
+arch=('any')
+url=http://buildbot.net;
+license=(GPL)
+depends=('python2-twisted' 'python2-jinja' 'python2-migrate'
+'python2-dateutil' 'python2-sqlparse')
+source=(https://pypi.python.org/packages/source/b/buildbot/buildbot-$pkgver.tar.gz
+   version-parse.patch)
+md5sums=('3201aaecf32df7810f4e23c14d20a544'
+ '61986f8b1d88ab74c8b290c49580152b')
+
+prepare() {
+  cd $srcdir/buildbot-${pkgver/_/}
+  patch -p1 $srcdir/version-parse.patch
+}
+
+package() {
+  cd $srcdir/buildbot-${pkgver/_/}
+  python2 setup.py install --root=$pkgdir
+}

Deleted: version-parse.patch
===
--- version-parse.patch 2015-02-06 10:19:55 UTC (rev 127187)
+++ version-parse.patch 2015-02-06 10:20:07 UTC (rev 127188)
@@ -1,24 +0,0 @@
-diff -wbBur buildbot-0.8.10.org/buildbot/db/enginestrategy.py 
buildbot-0.8.10/buildbot/db/enginestrategy.py
 buildbot-0.8.10.org/buildbot/db/enginestrategy.py  2014-12-02 
19:53:49.0 +0300
-+++ buildbot-0.8.10/buildbot/db/enginestrategy.py  2015-01-06 
00:25:47.462298489 +0300
-@@ -56,7 +56,7 @@
- version = 0.6
- except:
- version = 0.0
--return tuple(map(int, version.split('.')))
-+return tuple(map(int, version.split('.')[0:3]))
- 
- 
- class BuildbotEngineStrategy(strategies.ThreadLocalEngineStrategy):
-diff -wbBur buildbot-0.8.10.org/buildbot/db/model.py 
buildbot-0.8.10/buildbot/db/model.py
 buildbot-0.8.10.org/buildbot/db/model.py   2014-12-02 19:53:49.0 
+0300
-+++ buildbot-0.8.10/buildbot/db/model.py   2015-01-06 00:25:59.228965020 
+0300
-@@ -499,7 +499,7 @@
- version = 0.6
- except:
- version = 0.0
--version_tup = tuple(map(int, version.split('.')))
-+version_tup = tuple(map(int, version.split('.')[0:3]))
- log.msg(using SQLAlchemy-Migrate version %s % (version,))
- if version_tup  (0, 6, 1):
- raise RuntimeError(You are using SQLAlchemy-Migrate %s. 

Copied: buildbot/repos/community-any/version-parse.patch (from rev 127187, 
buildbot/trunk/version-parse.patch)
===
--- version-parse.patch (rev 0)
+++ version-parse.patch 2015-02-06 10:20:07 UTC (rev 127188)
@@ -0,0 +1,24 @@
+diff -wbBur buildbot-0.8.10.org/buildbot/db/enginestrategy.py 
buildbot-0.8.10/buildbot/db/enginestrategy.py
+--- buildbot-0.8.10.org/buildbot/db/enginestrategy.py  2014-12-02 
19:53:49.0 +0300
 buildbot-0.8.10/buildbot/db/enginestrategy.py  2015-01-06 
00:25:47.462298489 +0300
+@@ -56,7 +56,7 @@
+ version = 0.6
+ except:
+ version = 0.0
+-return tuple(map(int, 

[arch-commits] Commit in kcm-touchpad-frameworks (9 files)

2015-02-06 Thread Antonio Rojas
Date: Friday, February 6, 2015 @ 09:37:01
  Author: arojas
Revision: 127180

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

Added:
  kcm-touchpad-frameworks/repos/
  kcm-touchpad-frameworks/repos/community-i686/
  kcm-touchpad-frameworks/repos/community-i686/PKGBUILD
(from rev 127179, kcm-touchpad-frameworks/trunk/PKGBUILD)
  kcm-touchpad-frameworks/repos/community-i686/fix-plasmoid.patch
(from rev 127179, kcm-touchpad-frameworks/trunk/fix-plasmoid.patch)
  kcm-touchpad-frameworks/repos/community-i686/kcm-touchpad-frameworks.install
(from rev 127179, 
kcm-touchpad-frameworks/trunk/kcm-touchpad-frameworks.install)
  kcm-touchpad-frameworks/repos/community-x86_64/
  kcm-touchpad-frameworks/repos/community-x86_64/PKGBUILD
(from rev 127179, kcm-touchpad-frameworks/trunk/PKGBUILD)
  kcm-touchpad-frameworks/repos/community-x86_64/fix-plasmoid.patch
(from rev 127179, kcm-touchpad-frameworks/trunk/fix-plasmoid.patch)
  kcm-touchpad-frameworks/repos/community-x86_64/kcm-touchpad-frameworks.install
(from rev 127179, 
kcm-touchpad-frameworks/trunk/kcm-touchpad-frameworks.install)

--+
 community-i686/PKGBUILD  |   36 +
 community-i686/fix-plasmoid.patch|  128 +
 community-i686/kcm-touchpad-frameworks.install   |   11 +
 community-x86_64/PKGBUILD|   36 +
 community-x86_64/fix-plasmoid.patch  |  128 +
 community-x86_64/kcm-touchpad-frameworks.install |   11 +
 6 files changed, 350 insertions(+)

Copied: kcm-touchpad-frameworks/repos/community-i686/PKGBUILD (from rev 127179, 
kcm-touchpad-frameworks/trunk/PKGBUILD)
===
--- repos/community-i686/PKGBUILD   (rev 0)
+++ repos/community-i686/PKGBUILD   2015-02-06 08:37:01 UTC (rev 127180)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Antonio Rojas aro...@archlinux.org
+# Contributor: Alexander Mezin mezin.alexan...@gmail.com
+
+pkgname=kcm-touchpad-frameworks
+pkgver=5.1.95
+pkgrel=2
+pkgdesc='KCM, daemon and applet for touchpad'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/workspace/kcm-touchpad'
+license=('GPL')
+depends=('xf86-input-synaptics' 'xcb-util-cursor' 'plasma-framework' 
'knotifyconfig' 'kded')
+makedepends=('extra-cmake-modules' 'xorg-server-devel')
+groups=('plasma-next')
+conflicts=('kcm-touchpad')
+source=(http://download.kde.org/unstable/plasma/$pkgver/kcm-touchpad-$pkgver.tar.xz;)
+install=$pkgname.install
+md5sums=('25f22612196f820dafe395cdf2fdf0a8')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../kcm-touchpad-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Copied: kcm-touchpad-frameworks/repos/community-i686/fix-plasmoid.patch (from 
rev 127179, kcm-touchpad-frameworks/trunk/fix-plasmoid.patch)
===
--- repos/community-i686/fix-plasmoid.patch (rev 0)
+++ repos/community-i686/fix-plasmoid.patch 2015-02-06 08:37:01 UTC (rev 
127180)
@@ -0,0 +1,128 @@
+From: Lukáš Tinkl lu...@kde.org
+Date: Thu, 22 Jan 2015 16:20:38 +
+Subject: load the translation catalog correctly
+X-Git-Url: 
http://quickgit.kde.org/?p=kcm-touchpad.gita=commitdiffh=7494875a95ccfacc407eb0278f8c1deb71b2b949
+---
+load the translation catalog correctly
+
+also unbreak the dataengine loading and the applet
+---
+
+
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -1,6 +1,7 @@
+ project(kcm-touchpad)
+ set(PROJECT_VERSION 5.1.95)
+ cmake_minimum_required(VERSION 2.8.12)
++add_definitions(-DTRANSLATION_DOMAIN=\kcm_touchpad\)
+ 
+ set(CMAKE_MODULE_PATH
+ ${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules
+
+--- a/src/applet/CMakeLists.txt
 b/src/applet/CMakeLists.txt
+@@ -1,3 +1,6 @@
++remove_definitions(-DTRANSLATION_DOMAIN=kcm_touchpad)
++add_definitions(-DTRANSLATION_DOMAIN=plasma_applet_touchpad)
++
+ add_subdirectory(qml)
+ 
+ configure_file(${CMAKE_CURRENT_SOURCE_DIR}/dataengine.desktop
+@@ -23,14 +26,16 @@
+ Qt5::DBus
+ )
+ 
++kcoreaddons_desktop_to_json(plasma_engine_touchpad 
${CMAKE_CURRENT_BINARY_DIR}/plasma-dataengine-touchpad.desktop)
++
+ install(TARGETS plasma_engine_touchpad
+-DESTINATION ${PLUGIN_INSTALL_DIR}
++DESTINATION ${PLUGIN_INSTALL_DIR}/plasma/dataengine
+ )
+ install(FILES ${CMAKE_CURRENT_BINARY_DIR}/plasma-dataengine-touchpad.desktop
+ DESTINATION ${SERVICES_INSTALL_DIR}
+ )
+ install(FILES touchpad.operations
+-DESTINATION ${DATA_INSTALL_DIR}/plasma/services
++DESTINATION ${PLASMA_DATA_INSTALL_DIR}/services
+ )
+ install(FILES touchpad.svg
+ DESTINATION ${DATA_INSTALL_DIR}/plasma/desktoptheme/default/icons
+
+--- 

[arch-commits] Commit in kcm-touchpad-frameworks/trunk (1 file)

2015-02-06 Thread Antonio Rojas
Date: Friday, February 6, 2015 @ 09:35:43
  Author: arojas
Revision: 127179

Add install file

Added:
  kcm-touchpad-frameworks/trunk/kcm-touchpad-frameworks.install

-+
 kcm-touchpad-frameworks.install |   11 +++
 1 file changed, 11 insertions(+)

Added: kcm-touchpad-frameworks.install
===
--- kcm-touchpad-frameworks.install (rev 0)
+++ kcm-touchpad-frameworks.install 2015-02-06 08:35:43 UTC (rev 127179)
@@ -0,0 +1,11 @@
+post_install() {
+xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}


[arch-commits] Commit in kcm-touchpad-frameworks/repos (12 files)

2015-02-06 Thread Antonio Rojas
Date: Friday, February 6, 2015 @ 10:04:04
  Author: arojas
Revision: 127182

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

Added:
  kcm-touchpad-frameworks/repos/community-i686/PKGBUILD
(from rev 127181, kcm-touchpad-frameworks/trunk/PKGBUILD)
  kcm-touchpad-frameworks/repos/community-i686/fix-plasmoid.patch
(from rev 127181, kcm-touchpad-frameworks/trunk/fix-plasmoid.patch)
  kcm-touchpad-frameworks/repos/community-i686/kcm-touchpad-frameworks.install
(from rev 127181, 
kcm-touchpad-frameworks/trunk/kcm-touchpad-frameworks.install)
  kcm-touchpad-frameworks/repos/community-x86_64/PKGBUILD
(from rev 127181, kcm-touchpad-frameworks/trunk/PKGBUILD)
  kcm-touchpad-frameworks/repos/community-x86_64/fix-plasmoid.patch
(from rev 127181, kcm-touchpad-frameworks/trunk/fix-plasmoid.patch)
  kcm-touchpad-frameworks/repos/community-x86_64/kcm-touchpad-frameworks.install
(from rev 127181, 
kcm-touchpad-frameworks/trunk/kcm-touchpad-frameworks.install)
Deleted:
  kcm-touchpad-frameworks/repos/community-i686/PKGBUILD
  kcm-touchpad-frameworks/repos/community-i686/fix-plasmoid.patch
  kcm-touchpad-frameworks/repos/community-i686/kcm-touchpad-frameworks.install
  kcm-touchpad-frameworks/repos/community-x86_64/PKGBUILD
  kcm-touchpad-frameworks/repos/community-x86_64/fix-plasmoid.patch
  kcm-touchpad-frameworks/repos/community-x86_64/kcm-touchpad-frameworks.install

--+
 /PKGBUILD|   82 +
 /fix-plasmoid.patch  |  114 ++
 /kcm-touchpad-frameworks.install |   22 +++
 community-i686/PKGBUILD  |   36 -
 community-i686/fix-plasmoid.patch|  128 -
 community-i686/kcm-touchpad-frameworks.install   |   11 -
 community-x86_64/PKGBUILD|   36 -
 community-x86_64/fix-plasmoid.patch  |  128 -
 community-x86_64/kcm-touchpad-frameworks.install |   11 -
 9 files changed, 218 insertions(+), 350 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-02-06 09:01:34 UTC (rev 127181)
+++ community-i686/PKGBUILD 2015-02-06 09:04:04 UTC (rev 127182)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas aro...@archlinux.org
-# Contributor: Alexander Mezin mezin.alexan...@gmail.com
-
-pkgname=kcm-touchpad-frameworks
-pkgver=5.1.95
-pkgrel=2
-pkgdesc='KCM, daemon and applet for touchpad'
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/workspace/kcm-touchpad'
-license=('GPL')
-depends=('xf86-input-synaptics' 'xcb-util-cursor' 'plasma-framework' 
'knotifyconfig' 'kded')
-makedepends=('extra-cmake-modules' 'xorg-server-devel')
-groups=('plasma-next')
-conflicts=('kcm-touchpad')
-source=(http://download.kde.org/unstable/plasma/$pkgver/kcm-touchpad-$pkgver.tar.xz;)
-install=$pkgname.install
-md5sums=('25f22612196f820dafe395cdf2fdf0a8')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../kcm-touchpad-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=$pkgdir install
-}

Copied: kcm-touchpad-frameworks/repos/community-i686/PKGBUILD (from rev 127181, 
kcm-touchpad-frameworks/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-02-06 09:04:04 UTC (rev 127182)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Antonio Rojas aro...@archlinux.org
+# Contributor: Alexander Mezin mezin.alexan...@gmail.com
+
+pkgname=kcm-touchpad-frameworks
+pkgver=5.1.95
+pkgrel=3
+pkgdesc='KCM, daemon and applet for touchpad'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/workspace/kcm-touchpad'
+license=('GPL')
+depends=('xf86-input-synaptics' 'xcb-util-cursor' 'plasma-framework' 
'knotifyconfig' 'kded')
+makedepends=('extra-cmake-modules' 'xorg-server-devel')
+groups=('plasma-next')
+conflicts=('kcm-touchpad')
+source=(http://download.kde.org/unstable/plasma/$pkgver/kcm-touchpad-$pkgver.tar.xz;
 'fix-plasmoid.patch')
+install=$pkgname.install
+md5sums=('25f22612196f820dafe395cdf2fdf0a8'
+ '1e47e7680850b14432f880fa27c8237b')
+
+prepare() {
+  mkdir -p build
+
+  cd kcm-touchpad-$pkgver
+# fix plasmoid loading
+  patch -p1 -i $srcdir/fix-plasmoid.patch
+}
+
+build() {
+  cd build
+  cmake ../kcm-touchpad-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Deleted: community-i686/fix-plasmoid.patch
===
--- community-i686/fix-plasmoid.patch   2015-02-06 

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

2015-02-06 Thread Jelle van der Waa
Date: Friday, February 6, 2015 @ 11:07:35
  Author: jelle
Revision: 127185

upgpkg: calibre 2.19.0-1

Modified:
  calibre/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-06 09:41:09 UTC (rev 127184)
+++ PKGBUILD2015-02-06 10:07:35 UTC (rev 127185)
@@ -7,7 +7,7 @@
 # Contributor: Larry Hajali larryh...@gmail.com
 
 pkgname=calibre
-pkgver=2.18.0
+pkgver=2.19.0
 pkgrel=1
 pkgdesc=Ebook management application
 arch=('i686' 'x86_64')
@@ -26,7 +26,7 @@
 )
 install=calibre.install
 source=(http://download.calibre-ebook.com/${pkgver}/calibre-${pkgver}.tar.xz;)
-md5sums=('8ba11e69e241c744111a72fd172ac335')
+md5sums=('897321097a8f3d6e23edf8d4a02310e1')
 
 prepare(){
   cd ${srcdir}/${pkgname}-${pkgver}


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

2015-02-06 Thread Jelle van der Waa
Date: Friday, February 6, 2015 @ 11:07:48
  Author: jelle
Revision: 127186

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

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

--+
 /PKGBUILD|  182 +
 /calibre.install |   24 
 community-i686/PKGBUILD  |   91 --
 community-i686/calibre.install   |   12 --
 community-x86_64/PKGBUILD|   91 --
 community-x86_64/calibre.install |   12 --
 6 files changed, 206 insertions(+), 206 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-02-06 10:07:35 UTC (rev 127185)
+++ community-i686/PKGBUILD 2015-02-06 10:07:48 UTC (rev 127186)
@@ -1,91 +0,0 @@
-# $Id$
-# Maintainer: Jelle van der Waa je...@vdwaa.nl
-# Maintainer: Daniel Wallace danielwallace at gtmanfred dot com
-# Contributor: Giovanni Scafora giova...@archlinux.org
-# Contributor: Petrov Roman nwhis...@gmail.com
-# Contributor: Andrea Fagiani andfagiani _at_ gmail dot com
-# Contributor: Larry Hajali larryh...@gmail.com
-
-pkgname=calibre
-pkgver=2.18.0
-pkgrel=1
-pkgdesc=Ebook management application
-arch=('i686' 'x86_64')
-url=http://calibre-ebook.com/;
-license=('GPL3')
-depends=('python2-six' 'python2-dateutil' 'python2-cssutils' 'python2-cherrypy'
- 'python2-mechanize' 'podofo' 'libwmf'
- 'imagemagick' 'chmlib' 'python2-lxml' 'libusbx'
- 'python2-pillow' 'shared-mime-info' 'python2-dnspython'
- 'python2-pyqt5' 'python2-psutil' 'icu' 'libmtp' 'python2-dbus'
- 'python2-netifaces' 'python2-cssselect' 'python2-apsw' 'qt5-webkit'
- 'qt5-svg' 'python2-chardet' 'python2-html5lib' 'python2-pygments' 
'mtdev')
-makedepends=('python2-pycountry' 'qt5-x11extras' )
-optdepends=('ipython2: to use calibre-debug'
-'udisks: required for mounting certain devices'
-)
-install=calibre.install
-source=(http://download.calibre-ebook.com/${pkgver}/calibre-${pkgver}.tar.xz;)
-md5sums=('8ba11e69e241c744111a72fd172ac335')
-
-prepare(){
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  # Remove unneeded files and libs
-  rm -rf resources/${pkgname}-portable.* \
- src/six.py \
- src/cherrypy \
- src/html5lib \
- src/chardet
-
-  sed -i s/shlex.split(ldflags)/ + ['-fPIC']/ setup/extensions.py
-  #sed -i -e s/ldflags = shlex.split(ldflags)/ldflags = shlex.split(ldflags) 
+ ['-fPIC']/ setup/extensions.py
-
-  # Use python2
-  sed -i 's:\(env[ ]\+python$\|/usr/bin/python$\):\12:g' $(find . -regex 
.*\.py\|.*\.recipe)
-  sed -i /pyqt_sip_dir/ s:=.*:= '/usr/share/sip/Py2-PyQt5': 
setup/build_environment.py
-
-  # Desktop integration (e.g. enforce arch defaults)
-  sed -e /self.create_uninstaller()/,/os.rmdir(config_dir)/d \
-  -e /\(cc('xdg-icon-resource\|self.icon_resources.append\|'128'))\)/d \
-  -e /render_img/ s/\('calibre-.*\.png'\)/os.path.join(dir, \1)/g \
-  -e /dir, 'calibre-lrf.png'/i \
-\dir = os.path.join(self.opts.staging_sharedir,'../pixmaps')\n\
-\os.mkdir(dir) \
-  -e /f = open/ s/\('calibre-.*\.desktop'\)/os.path.join(dir, \1)/g \
-  -e /dir, 'calibre-lrfviewer.desktop'/i \
-\dir = 
os.path.join(self.opts.staging_sharedir,'../applications')\n\
-\os.mkdir(dir) \
-  -e s/'ctc-posml'/'text' not in mt and 'pdf' not in mt and 'xhtml'/ \
-  -e s/^Name=calibre/Name=Calibre/g \
-  -i  src/calibre/linux.py
-}
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  LANG='en_US.UTF-8' python2 setup.py build
-  # LANG='en_US.UTF-8' python2 setup.py resources
-
-  # Don't build translations since building them is broken badly
-  #LANG='en_US.UTF-8' python2 setup.py translations
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  
-  # Fix the environment module location
-  sed -i -e s|(prefix=.*)|(prefix='$pkgdir/usr')|g setup/install.py
-
-  install -d ${pkgdir}/usr/lib/python2.7/site-packages \
- ${pkgdir}/usr/share/zsh/site-functions
-
-  LANG='en_US.UTF-8' python2 setup.py install --root=${pkgdir} --prefix=/usr 
\
---staging-bindir=${pkgdir}/usr/bin \
---staging-libdir=${pkgdir}/usr/lib \
---staging-sharedir=${pkgdir}/usr/share
-
-  # Compiling bytecode FS#33392
-  python2 -m compileall ${pkgdir}/usr/lib/calibre/
-  python2 -O -m compileall 

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

2015-02-06 Thread Sergej Pupykin
Date: Friday, February 6, 2015 @ 10:40:58
  Author: spupykin
Revision: 127183

upgpkg: autoconf-archive 1:2015.02.04-1

upd

Modified:
  autoconf-archive/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-06 09:04:04 UTC (rev 127182)
+++ PKGBUILD2015-02-06 09:40:58 UTC (rev 127183)
@@ -1,18 +1,19 @@
 # Maintainer: Daniel Müllner muell...@math.stanford.edu
 
 pkgname=autoconf-archive
-pkgver=2014.10.15
+pkgver=2015.02.04
 pkgrel=1
 epoch=1
 pkgdesc=A collection of freely re-usable Autoconf macros
 arch=('any')
 url=http://www.gnu.org/software/autoconf-archive/;
+_watch=http://mirrors.axint.net/repos/gnu.org/autoconf-archive/;
 license=('GPL')
 depends=('autoconf')
 optdepends=('automake: macros for use with it')
 validpgpkeys=('1A4F63A13A4649B632F65EE141BC28FE99089D72')
 source=(http://ftpmirror.gnu.org/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
-md5sums=('36dc498606a986b2754fb8f779be2b18'
+md5sums=('c572eef518493b283cdc776f91804e76'
  'SKIP')
 
 build() {


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

2015-02-06 Thread Sergej Pupykin
Date: Friday, February 6, 2015 @ 10:41:09
  Author: spupykin
Revision: 127184

archrelease: copy trunk to community-any

Added:
  autoconf-archive/repos/community-any/PKGBUILD
(from rev 127183, autoconf-archive/trunk/PKGBUILD)
Deleted:
  autoconf-archive/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-02-06 09:40:58 UTC (rev 127183)
+++ PKGBUILD2015-02-06 09:41:09 UTC (rev 127184)
@@ -1,35 +0,0 @@
-# Maintainer: Daniel Müllner muell...@math.stanford.edu
-
-pkgname=autoconf-archive
-pkgver=2014.10.15
-pkgrel=1
-epoch=1
-pkgdesc=A collection of freely re-usable Autoconf macros
-arch=('any')
-url=http://www.gnu.org/software/autoconf-archive/;
-license=('GPL')
-depends=('autoconf')
-optdepends=('automake: macros for use with it')
-source=(http://ftpmirror.gnu.org/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
-md5sums=('36dc498606a986b2754fb8f779be2b18'
- 'SKIP')
-
-prepare() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr
-}
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  make
-}
-
-check() {
-  cd $srcdir/$pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir/ install
-}

Copied: autoconf-archive/repos/community-any/PKGBUILD (from rev 127183, 
autoconf-archive/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-02-06 09:41:09 UTC (rev 127184)
@@ -0,0 +1,33 @@
+# Maintainer: Daniel Müllner muell...@math.stanford.edu
+
+pkgname=autoconf-archive
+pkgver=2015.02.04
+pkgrel=1
+epoch=1
+pkgdesc=A collection of freely re-usable Autoconf macros
+arch=('any')
+url=http://www.gnu.org/software/autoconf-archive/;
+_watch=http://mirrors.axint.net/repos/gnu.org/autoconf-archive/;
+license=('GPL')
+depends=('autoconf')
+optdepends=('automake: macros for use with it')
+validpgpkeys=('1A4F63A13A4649B632F65EE141BC28FE99089D72')
+source=(http://ftpmirror.gnu.org/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
+md5sums=('c572eef518493b283cdc776f91804e76'
+ 'SKIP')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd $srcdir/$pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir/ install
+}


[arch-commits] Commit in kcm-touchpad-frameworks/trunk (PKGBUILD fix-plasmoid.patch)

2015-02-06 Thread Antonio Rojas
Date: Friday, February 6, 2015 @ 10:01:34
  Author: arojas
Revision: 127181

Apply patch

Modified:
  kcm-touchpad-frameworks/trunk/PKGBUILD
  kcm-touchpad-frameworks/trunk/fix-plasmoid.patch

+
 PKGBUILD   |   11 -
 fix-plasmoid.patch |   97 ++-
 2 files changed, 21 insertions(+), 87 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-02-06 08:37:01 UTC (rev 127180)
+++ PKGBUILD2015-02-06 09:01:34 UTC (rev 127181)
@@ -4,7 +4,7 @@
 
 pkgname=kcm-touchpad-frameworks
 pkgver=5.1.95
-pkgrel=2
+pkgrel=3
 pkgdesc='KCM, daemon and applet for touchpad'
 arch=('i686' 'x86_64')
 url='https://projects.kde.org/projects/kde/workspace/kcm-touchpad'
@@ -13,12 +13,17 @@
 makedepends=('extra-cmake-modules' 'xorg-server-devel')
 groups=('plasma-next')
 conflicts=('kcm-touchpad')
-source=(http://download.kde.org/unstable/plasma/$pkgver/kcm-touchpad-$pkgver.tar.xz;)
+source=(http://download.kde.org/unstable/plasma/$pkgver/kcm-touchpad-$pkgver.tar.xz;
 'fix-plasmoid.patch')
 install=$pkgname.install
-md5sums=('25f22612196f820dafe395cdf2fdf0a8')
+md5sums=('25f22612196f820dafe395cdf2fdf0a8'
+ '1e47e7680850b14432f880fa27c8237b')
 
 prepare() {
   mkdir -p build
+
+  cd kcm-touchpad-$pkgver
+# fix plasmoid loading
+  patch -p1 -i $srcdir/fix-plasmoid.patch
 }
 
 build() {

Modified: fix-plasmoid.patch
===
--- fix-plasmoid.patch  2015-02-06 08:37:01 UTC (rev 127180)
+++ fix-plasmoid.patch  2015-02-06 09:01:34 UTC (rev 127181)
@@ -1,63 +1,5 @@
-From: Lukáš Tinkl lu...@kde.org
-Date: Thu, 22 Jan 2015 16:20:38 +
-Subject: load the translation catalog correctly
-X-Git-Url: 
http://quickgit.kde.org/?p=kcm-touchpad.gita=commitdiffh=7494875a95ccfacc407eb0278f8c1deb71b2b949

-load the translation catalog correctly
-
-also unbreak the dataengine loading and the applet

-
-
 a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -1,6 +1,7 @@
- project(kcm-touchpad)
- set(PROJECT_VERSION 5.1.95)
- cmake_minimum_required(VERSION 2.8.12)
-+add_definitions(-DTRANSLATION_DOMAIN=\kcm_touchpad\)
- 
- set(CMAKE_MODULE_PATH
- ${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules
-
 a/src/applet/CMakeLists.txt
-+++ b/src/applet/CMakeLists.txt
-@@ -1,3 +1,6 @@
-+remove_definitions(-DTRANSLATION_DOMAIN=kcm_touchpad)
-+add_definitions(-DTRANSLATION_DOMAIN=plasma_applet_touchpad)
-+
- add_subdirectory(qml)
- 
- configure_file(${CMAKE_CURRENT_SOURCE_DIR}/dataengine.desktop
-@@ -23,14 +26,16 @@
- Qt5::DBus
- )
- 
-+kcoreaddons_desktop_to_json(plasma_engine_touchpad 
${CMAKE_CURRENT_BINARY_DIR}/plasma-dataengine-touchpad.desktop)
-+
- install(TARGETS plasma_engine_touchpad
--DESTINATION ${PLUGIN_INSTALL_DIR}
-+DESTINATION ${PLUGIN_INSTALL_DIR}/plasma/dataengine
- )
- install(FILES ${CMAKE_CURRENT_BINARY_DIR}/plasma-dataengine-touchpad.desktop
- DESTINATION ${SERVICES_INSTALL_DIR}
- )
- install(FILES touchpad.operations
--DESTINATION ${DATA_INSTALL_DIR}/plasma/services
-+DESTINATION ${PLASMA_DATA_INSTALL_DIR}/services
- )
- install(FILES touchpad.svg
- DESTINATION ${DATA_INSTALL_DIR}/plasma/desktoptheme/default/icons
-
 a/src/applet/dataengine.desktop
-+++ b/src/applet/dataengine.desktop
-@@ -44,5 +44,3 @@
- X-KDE-PluginInfo-License=GPL
- X-KDE-PluginInfo-EnabledByDefault=true
- 
--X-Plasma-EngineName=touchpad
--
-
+diff --git a/src/applet/qml/contents/ui/touchpad.qml 
b/src/applet/qml/contents/ui/touchpad.qml
+index 2dcb808..00f0f5d 100644
 --- a/src/applet/qml/contents/ui/touchpad.qml
 +++ b/src/applet/qml/contents/ui/touchpad.qml
 @@ -21,7 +21,6 @@
@@ -68,7 +10,7 @@
  
  Item {
  id: root
-@@ -84,28 +83,28 @@
+@@ -84,28 +83,28 @@ Item {
  }
  }
  
@@ -85,7 +27,14 @@
 -mainText: {
 -if (!hasTouchpad) {
 -return i18n(No touchpad was found);
-+
+-}
+ 
+-return enabled ? i18n(Touchpad is enabled)
+-   : i18n(Touchpad is disabled)
+-}
+-image: {
+-if (!hasTouchpad) {
+-return dialog-error
 +PlasmaCore.ToolTipArea {
 +mainText: {
 +if (!hasTouchpad) {
@@ -100,29 +49,9 @@
 +return dialog-error
 +}
  
--return enabled ? i18n(Touchpad is enabled)
--   : i18n(Touchpad is disabled)
--}
--image: {
--if (!hasTouchpad) {
--return dialog-error
+-return enabled ? input-touchpad : process-stop
 +return enabled ? input-touchpad : process-stop
- }
--
--return enabled ? input-touchpad : process-stop
++}
  }
  }
  
-
 a/src/applet/touchpadengine.cpp
-+++ b/src/applet/touchpadengine.cpp
-@@ -80,5 +80,7 @@
- {
- 

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

2015-02-06 Thread Felix Yan
Date: Friday, February 6, 2015 @ 16:46:35
  Author: fyan
Revision: 127193

upgpkg: nodejs 0.10.36-3

bump npm to 2.5.0

Modified:
  nodejs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-06 15:34:44 UTC (rev 127192)
+++ PKGBUILD2015-02-06 15:46:35 UTC (rev 127193)
@@ -10,8 +10,8 @@
 
 pkgname=nodejs
 pkgver=0.10.36
-_npmver=2.4.1
-pkgrel=2
+_npmver=2.5.0
+pkgrel=3
 pkgdesc='Evented I/O for V8 javascript'
 arch=('i686' 'x86_64')
 url='http://nodejs.org/'


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

2015-02-06 Thread Felix Yan
Date: Friday, February 6, 2015 @ 16:46:59
  Author: fyan
Revision: 127194

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-02-06 15:46:35 UTC (rev 127193)
+++ community-i686/PKGBUILD 2015-02-06 15:46:59 UTC (rev 127194)
@@ -1,92 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor  Bartłomiej Piotrowski bpiotrow...@archlinux.org
-# Contributor: Thomas Dziedzic  gostrc at gmail 
-# Contributor: James Campos james.r.cam...@gmail.com
-# Contributor: BlackEagle  ike DOT devolder AT gmail DOT com 
-# Contributor: Dongsheng Cai dongsheng at moodle dot com
-# Contributor: Masutu Subric masutu.arch at googlemail dot com
-# Contributor: TIanyi Cui tianyi...@gmail.com
-
-pkgname=nodejs
-pkgver=0.10.36
-_npmver=2.4.1
-pkgrel=2
-pkgdesc='Evented I/O for V8 javascript'
-arch=('i686' 'x86_64')
-url='http://nodejs.org/'
-license=('MIT')
-depends=('openssl')
-provides=('nodejs-node-gyp')
-makedepends=('python2' 'git' 'procps-ng')
-optdepends=('python2: for node-gyp')
-checkdepends=('curl')
-options=('!emptydirs')
-source=(http://nodejs.org/dist/v$pkgver/node-v$pkgver.tar.gz;
-git+https://github.com/npm/npm.git#tag=v$_npmver)
-sha256sums=('b9d7d1d0294bce46686b13a05da6fc5b1e7743b597544aa888e8e64a9f178c81'
-'SKIP')
-
-prepare() {
-  cd node-v$pkgver
-
-  # We need newer version of npm to fix bugs
-  rm -r deps/npm
-  ln -s $srcdir/npm deps
-  rm -r $srcdir/npm/.git
-
-  msg 'Fixing for python2 name'
-  find -type f -exec sed \
--e 's_^#!/usr/bin/env python$_2_' \
--e 's_^\(#!/usr/bin/python2\).[45]$_\1_' \
--e 's_^#!/usr/bin/python$_2_' \
--e s_'python'_'python2'_ -i {} \;
-  find test/ -type f -exec sed 's_python _python2 _' -i {} \;
-}
-
-build() {
-  cd node-v$pkgver
-
-  export PYTHON=python2
-  ./configure \
---prefix=/usr \
---shared-openssl
-
-  make
-
-  cd ../npm
-  ../node-v$pkgver/node cli.js install ronn marked
-  PATH=$srcdir/node-v$pkgver:$PATH make
-  ../node-v$pkgver/node cli.js uninstall ronn marked marked-man
-}
-
-check() {
-  cd node-v$pkgver
-  make test || warning Tests failed
-}
-
-package() {
-  cd node-v$pkgver
-
-  make DESTDIR=$pkgdir install
-
-  # install docs as per user request
-  install -d $pkgdir/usr/share/doc/nodejs
-  cp -r doc/api/{*.html,assets} \
-$pkgdir/usr/share/doc/nodejs
-
-  install -D -m644 LICENSE \
-$pkgdir/usr/share/licenses/nodejs/LICENSE
-
-  install -d $pkgdir/usr/share/man/{man1,man3,man5,man7}
-  for _dir in man1 man3 man5 man7; do
-cd $pkgdir/usr/lib/node_modules/npm/man/$_dir
-for _file in *; do
-  ln -s /usr/lib/node_modules/npm/man/$_dir/$_file 
$pkgdir/usr/share/man/$_dir/
-done
-  done
-
-  ln -s /usr/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js 
$pkgdir/usr/bin/node-gyp
-}
-
-# vim:set ts=2 sw=2 et:

Copied: nodejs/repos/community-i686/PKGBUILD (from rev 127193, 
nodejs/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-02-06 15:46:59 UTC (rev 127194)
@@ -0,0 +1,92 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor  Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: Thomas Dziedzic  gostrc at gmail 
+# Contributor: James Campos james.r.cam...@gmail.com
+# Contributor: BlackEagle  ike DOT devolder AT gmail DOT com 
+# Contributor: Dongsheng Cai dongsheng at moodle dot com
+# Contributor: Masutu Subric masutu.arch at googlemail dot com
+# Contributor: TIanyi Cui tianyi...@gmail.com
+
+pkgname=nodejs
+pkgver=0.10.36
+_npmver=2.5.0
+pkgrel=3
+pkgdesc='Evented I/O for V8 javascript'
+arch=('i686' 'x86_64')
+url='http://nodejs.org/'
+license=('MIT')
+depends=('openssl')
+provides=('nodejs-node-gyp')
+makedepends=('python2' 'git' 'procps-ng')
+optdepends=('python2: for node-gyp')
+checkdepends=('curl')
+options=('!emptydirs')
+source=(http://nodejs.org/dist/v$pkgver/node-v$pkgver.tar.gz;
+git+https://github.com/npm/npm.git#tag=v$_npmver)
+sha256sums=('b9d7d1d0294bce46686b13a05da6fc5b1e7743b597544aa888e8e64a9f178c81'
+'SKIP')
+
+prepare() {
+  cd node-v$pkgver
+
+  # We need newer version of npm to fix bugs
+  rm -r deps/npm
+  ln -s $srcdir/npm deps
+  rm -r $srcdir/npm/.git
+
+  msg 

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

2015-02-06 Thread Felix Yan
Date: Friday, February 6, 2015 @ 17:02:19
  Author: fyan
Revision: 230901

upgpkg: python-beaker 1.6.5-1

Modified:
  python-beaker/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-06 08:08:35 UTC (rev 230900)
+++ PKGBUILD2015-02-06 16:02:19 UTC (rev 230901)
@@ -1,42 +1,61 @@
 # $Id$
-# Maintainer : Ionut Biru ib...@archlinux.org
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Ionut Biru ib...@archlinux.org
 # Contributor: Massimiliano Torromeo  massimiliano DOT torromeo AT gmail DOT 
com 
 
 pkgname=('python-beaker' 'python2-beaker')
-pkgver=1.6.4
-pkgrel=2
+pkgver=1.6.5
+pkgrel=1
 arch=('any')
 license=('custom')
 pkgdesc=Caching and sessions WSGI middleware for use with web applications 
and stand-alone Python scripts and applications
 url=http://beaker.groovie.org/;
-makedepends=('python-setuptools' 'python2-setuptools')
-source=(http://cheeseshop.python.org/packages/source/B/Beaker/Beaker-${pkgver}.tar.gz;)
-md5sums=('c2e102870ed4c53104dec48ceadf8e9d')
+makedepends=('python-setuptools' 'python2-setuptools' 'git')
+checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock')
+source=(git+https://github.com/bbangert/beaker.git#tag=v$pkgver;)
+md5sums=('SKIP')
 
+prepare() {
+cp -a beaker{,-py2}
+
+sed -i s#/usr/bin/python#/usr/bin/python3# beaker/beaker/crypto/pbkdf2.py
+sed -i s#/usr/bin/python#/usr/bin/python2# 
beaker-py2/beaker/crypto/pbkdf2.py
+}
+
 build() {
-cp -r Beaker-${pkgver} python2-Beaker-${pkgver}
-
-cd ${srcdir}/Beaker-${pkgver}
-sed -i s#/usr/bin/python#/usr/bin/python3# beaker/crypto/pbkdf2.py
+cd ${srcdir}/beaker
 python3 setup.py build
 
-cd ${srcdir}/python2-Beaker-${pkgver}
-sed -i s#/usr/bin/python#/usr/bin/python2# beaker/crypto/pbkdf2.py
+cd ${srcdir}/beaker-py2
 python2 setup.py build
 }
 
+check() {
+cd ${srcdir}/beaker
+mkdir tests_py3
+2to3 -w -n -o tests_py3 tests/*.py
+PYTHONPATH=$PWD/build/lib:$PYTHONPATH nosetests3 --py3where=tests_py3
+
+cd ${srcdir}/beaker-py2
+PYTHONPATH=$PWD/build/lib:$PYTHONPATH nosetests2
+}
+
 package_python-beaker() {
 depends=('python')
 
-cd ${srcdir}/Beaker-${pkgver}
+cd ${srcdir}/beaker
 python3 setup.py install --root=${pkgdir} --optimize=1
 install -D -m644 LICENSE 
${pkgdir}/usr/share/licenses/python-beaker/LICENSE
+
+mv $pkgdir/usr/lib/python3.4/site-packages/{tests,beaker/}
 }
 
 package_python2-beaker() {
 depends=('python2')
 
-cd ${srcdir}/python2-Beaker-${pkgver}
+cd ${srcdir}/beaker-py2
 python2 setup.py install --root=${pkgdir} --optimize=1
 install -D -m644 LICENSE 
${pkgdir}/usr/share/licenses/python2-beaker/LICENSE
+
+mv $pkgdir/usr/lib/python2.7/site-packages/{tests,beaker/}
 }


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

2015-02-06 Thread Felix Yan
Date: Friday, February 6, 2015 @ 17:02:32
  Author: fyan
Revision: 230902

archrelease: copy trunk to extra-any

Added:
  python-beaker/repos/extra-any/PKGBUILD
(from rev 230901, python-beaker/trunk/PKGBUILD)
Deleted:
  python-beaker/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-02-06 16:02:19 UTC (rev 230901)
+++ PKGBUILD2015-02-06 16:02:32 UTC (rev 230902)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer : Ionut Biru ib...@archlinux.org
-# Contributor: Massimiliano Torromeo  massimiliano DOT torromeo AT gmail DOT 
com 
-
-pkgname=('python-beaker' 'python2-beaker')
-pkgver=1.6.4
-pkgrel=2
-arch=('any')
-license=('custom')
-pkgdesc=Caching and sessions WSGI middleware for use with web applications 
and stand-alone Python scripts and applications
-url=http://beaker.groovie.org/;
-makedepends=('python-setuptools' 'python2-setuptools')
-source=(http://cheeseshop.python.org/packages/source/B/Beaker/Beaker-${pkgver}.tar.gz;)
-md5sums=('c2e102870ed4c53104dec48ceadf8e9d')
-
-build() {
-cp -r Beaker-${pkgver} python2-Beaker-${pkgver}
-
-cd ${srcdir}/Beaker-${pkgver}
-sed -i s#/usr/bin/python#/usr/bin/python3# beaker/crypto/pbkdf2.py
-python3 setup.py build
-
-cd ${srcdir}/python2-Beaker-${pkgver}
-sed -i s#/usr/bin/python#/usr/bin/python2# beaker/crypto/pbkdf2.py
-python2 setup.py build
-}
-
-package_python-beaker() {
-depends=('python')
-
-cd ${srcdir}/Beaker-${pkgver}
-python3 setup.py install --root=${pkgdir} --optimize=1
-install -D -m644 LICENSE 
${pkgdir}/usr/share/licenses/python-beaker/LICENSE
-}
-
-package_python2-beaker() {
-depends=('python2')
-
-cd ${srcdir}/python2-Beaker-${pkgver}
-python2 setup.py install --root=${pkgdir} --optimize=1
-install -D -m644 LICENSE 
${pkgdir}/usr/share/licenses/python2-beaker/LICENSE
-}

Copied: python-beaker/repos/extra-any/PKGBUILD (from rev 230901, 
python-beaker/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-02-06 16:02:32 UTC (rev 230902)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Ionut Biru ib...@archlinux.org
+# Contributor: Massimiliano Torromeo  massimiliano DOT torromeo AT gmail DOT 
com 
+
+pkgname=('python-beaker' 'python2-beaker')
+pkgver=1.6.5
+pkgrel=1
+arch=('any')
+license=('custom')
+pkgdesc=Caching and sessions WSGI middleware for use with web applications 
and stand-alone Python scripts and applications
+url=http://beaker.groovie.org/;
+makedepends=('python-setuptools' 'python2-setuptools' 'git')
+checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock')
+source=(git+https://github.com/bbangert/beaker.git#tag=v$pkgver;)
+md5sums=('SKIP')
+
+prepare() {
+cp -a beaker{,-py2}
+
+sed -i s#/usr/bin/python#/usr/bin/python3# beaker/beaker/crypto/pbkdf2.py
+sed -i s#/usr/bin/python#/usr/bin/python2# 
beaker-py2/beaker/crypto/pbkdf2.py
+}
+
+build() {
+cd ${srcdir}/beaker
+python3 setup.py build
+
+cd ${srcdir}/beaker-py2
+python2 setup.py build
+}
+
+check() {
+cd ${srcdir}/beaker
+mkdir tests_py3
+2to3 -w -n -o tests_py3 tests/*.py
+PYTHONPATH=$PWD/build/lib:$PYTHONPATH nosetests3 --py3where=tests_py3
+
+cd ${srcdir}/beaker-py2
+PYTHONPATH=$PWD/build/lib:$PYTHONPATH nosetests2
+}
+
+package_python-beaker() {
+depends=('python')
+
+cd ${srcdir}/beaker
+python3 setup.py install --root=${pkgdir} --optimize=1
+install -D -m644 LICENSE 
${pkgdir}/usr/share/licenses/python-beaker/LICENSE
+
+mv $pkgdir/usr/lib/python3.4/site-packages/{tests,beaker/}
+}
+
+package_python2-beaker() {
+depends=('python2')
+
+cd ${srcdir}/beaker-py2
+python2 setup.py install --root=${pkgdir} --optimize=1
+install -D -m644 LICENSE 
${pkgdir}/usr/share/licenses/python2-beaker/LICENSE
+
+mv $pkgdir/usr/lib/python2.7/site-packages/{tests,beaker/}
+}


[arch-commits] Commit in fossil/trunk (5 files)

2015-02-06 Thread Anatol Pomozov
Date: Friday, February 6, 2015 @ 18:19:19
  Author: anatolik
Revision: 127195

Use zsh/bash completion files from AUR fossil-tip project

Added:
  fossil/trunk/fossil-autocomplete.bash
  fossil/trunk/fossil-autocomplete.zsh
Modified:
  fossil/trunk/PKGBUILD
Deleted:
  fossil/trunk/bash.completion
  fossil/trunk/zsh.completion

--+
 PKGBUILD |   16 ++--
 bash.completion  |   33 -
 fossil-autocomplete.bash |   33 +
 fossil-autocomplete.zsh  |   30 ++
 zsh.completion   |   20 
 5 files changed, 73 insertions(+), 59 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-02-06 15:46:59 UTC (rev 127194)
+++ PKGBUILD2015-02-06 17:19:19 UTC (rev 127195)
@@ -18,17 +18,21 @@
   fossil.socket
   fossil.service
   fossil-xinetd
-  bash.completion
-  zsh.completion
+  fossil-autocomplete.bash
+  fossil-autocomplete.zsh
   http://www.fossil-scm.org/download/fossil-src-$_date_pkgver.tar.gz
 )
 sha256sums=('f885e17998dc1eece1688a75e516663462fe72a7f4f132def4132055777c7ff8'
 'c4973079facf209d3757db81df08f8d0843ede242f2a0c12281720da65e3b166'
 '2f9a141fadfb7cb5225f0d65a308949bbc592bff9d567b5c472edb413c81f5aa'
-'e22e19dba1a4be6a62af0b77ff0267c2a0f19edf2f6a9133ee64246fae5d87da'
-'2099785dd126c59e4abf2d13cc40aee8dcc562f7737c9897f07845888b1d40ae'
+'3e80a8a8f71ff450919df16864d987e669acf31670e484721b977a3bb2960a89'
+'aeca50e6382da7c50d696cf971947a09cb14d572ee9f191b4113fd84286b5edd'
 '37969e5a09c1611199921e3518a4ed736fd637a02f2d5810cd45897a4ceb92dc')
 
+prepare() {
+  cp fossil-autocomplete.{bash,zsh} fossil-src-$_date_pkgver/tools
+}
+
 build() {
   cd fossil-src-$_date_pkgver
   ./configure --prefix=/usr
@@ -41,10 +45,10 @@
   install -Dm644 fossil-xinetd $pkgdir/etc/xinetd.d/fossil
   install -Dm644 fossil.socket $pkgdir/usr/lib/systemd/system/fossil.socket
   install -Dm644 fossil.service 
$pkgdir/usr/lib/systemd/system/fossil@.service
-  install -Dm644 bash.completion 
$pkgdir/usr/share/bash-completion/completions/fossil
-  install -Dm644 zsh.completion $pkgdir/usr/share/zsh/site-functions/_fossil
 
   cd fossil-src-$_date_pkgver
   install -Dm755 fossil $pkgdir/usr/bin/fossil
   install -Dm644 COPYRIGHT-BSD2.txt 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
+  install -Dm644 tools/fossil-autocomplete.bash 
$pkgdir/usr/share/bash-completion/completions/fossil
+  install -Dm644 tools/fossil-autocomplete.zsh 
$pkgdir/usr/share/zsh/site-functions/_fossil
 }

Deleted: bash.completion
===
--- bash.completion 2015-02-06 15:46:59 UTC (rev 127194)
+++ bash.completion 2015-02-06 17:19:19 UTC (rev 127195)
@@ -1,33 +0,0 @@
-_fossil()
-{
-local cur prev opts
-
-#Var used by BASH
-COMPREPLY=()
-#word we are trying to complete
-cur=${COMP_WORDS[COMP_CWORD]}
-#word before the one we're trying to complete
-prev=${COMP_WORDS[COMP_CWORD-1]}
-#list of word that fossil know
-opts=add addremove all annotate bisect branch cat changes checkout 
-opts=$opts ci clean clone close co commit delete diff export extras 
-opts=$opts finfo gdiff help import info init ls merge mv new open 
-opts=$opts pull push rebuild remote-url revert rm settings sqlite3 
-opts=$opts stash status sync tag timeline ui undo unset update version
-
-case ${prev} in
-add) opts=--dotfiles --ignore ;;
-addremove) opts=--dotfiles --ignore --test ;;
-all) opts=list ls pull push rebuild sync ;;
-annotate) opts=--limit --log --filevers ;;
-bisect) opts=bad good next options reset vlist ;;
-branch) opts=list ls -R --repository ;;
-merge) opts=--nochange -n --force -f --detail
-esac
-
-compopt -o filenames
-COMPREPLY=($(compgen -fW ${opts} -- ${cur}) \
-$(compgen -d -- $cur))
-}
-
-complete -F _fossil fossil

Added: fossil-autocomplete.bash
===
--- fossil-autocomplete.bash(rev 0)
+++ fossil-autocomplete.bash2015-02-06 17:19:19 UTC (rev 127195)
@@ -0,0 +1,33 @@
+# Command name bash completion for Fossil.
+# Original: Mailing-list contribution by Stuart Rackham.
+# Maintainer: Daniel YC Lin dlin.tw at gmail.com
+# I'm not bash expert, please feed back to me, if you could improve this.
+# TODO: fossil branch list --options
+
+function _fossil() {
+local cur commands
+cur=${COMP_WORDS[COMP_CWORD]}
+prev=${COMP_WORDS[COMP_CWORD-1]}
+commands=$(fossil help --all)
+if [ $COMP_CWORD -eq 1 ] || [ ${COMP_WORDS[1]} = help ]; then
+# Command name completion for 1st argument or 2nd if help command.
+COMPREPLY=( $(compgen -W $commands $cur) )
+else
+case ${prev} in
+add) opts=--case-sensitive --dotfiles --force --ignore --clean ;;
+  

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

2015-02-06 Thread Gaetan Bisson
Date: Friday, February 6, 2015 @ 18:21:04
  Author: bisson
Revision: 230903

upstream update

Modified:
  ntp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-06 16:02:32 UTC (rev 230902)
+++ PKGBUILD2015-02-06 17:21:04 UTC (rev 230903)
@@ -4,7 +4,7 @@
 
 pkgname=ntp
 _pkgname=ntp #-dev
-_pkgver=4.2.8
+_pkgver=4.2.8p1
 pkgver=${_pkgver/p/.p}
 pkgrel=1
 pkgdesc='Network Time Protocol reference implementation'
@@ -18,7 +18,7 @@
 'ntp.conf'
 'ntpd.service'
 'ntpdate.service')
-sha1sums=('6d1c017a8a0e97d5cf8bf4e5e38333973ffd22d5'
+sha1sums=('1e6d8894bbd3456bd71aa890b02f802f2e611e86'
   'ad1d6ee2e9aca64a84a7224c88bf6008ac6c69e1'
   '0a872385e0142888ab48d273fec0669b30a8'
   '059b382d1af0c55202e2d17f2ae065a2cbfec9ee')


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

2015-02-06 Thread Sergej Pupykin
Date: Friday, February 6, 2015 @ 18:23:23
  Author: spupykin
Revision: 127197

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-02-06 17:23:06 UTC (rev 127196)
+++ community-i686/PKGBUILD 2015-02-06 17:23:23 UTC (rev 127197)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Peter Kosyh p.kosyhgmail.com
-
-pkgname=instead
-pkgver=2.2.1
-pkgrel=1
-pkgdesc=a quest interpreter
-arch=('i686' 'x86_64')
-url=http://sourceforge.net/projects/instead/;
-license=('GPL')
-depends=('sdl_image' 'sdl_mixer' 'sdl_ttf' 'lua')
-optdepends=('instead-launcher: install and update INSTEAD games from net')
-source=(http://downloads.sourceforge.net/project/instead/instead/${pkgver}/instead_${pkgver}.tar.gz)
-md5sums=('04833cb03aae5354b684a572e012c0bb')
-
-build() {
-  cd ${srcdir}/instead-${pkgver}
-  echo 2 | ./configure.sh
-  make PREFIX=/usr
-}
-
-package() {
-  cd ${srcdir}/instead-${pkgver}
-  make DESTDIR=${pkgdir} PREFIX=/usr install
-
-  cp -a doc/*.{html,pdf} doc/instead.txt doc/examples 
$pkgdir/usr/share/doc/instead/
-}

Copied: instead/repos/community-i686/PKGBUILD (from rev 127196, 
instead/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-02-06 17:23:23 UTC (rev 127197)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Peter Kosyh p.kosyhgmail.com
+
+pkgname=instead
+pkgver=2.2.2
+pkgrel=1
+pkgdesc=a quest interpreter
+arch=('i686' 'x86_64')
+url=http://sourceforge.net/projects/instead/;
+license=('GPL')
+depends=('sdl_image' 'sdl_mixer' 'sdl_ttf' 'lua')
+optdepends=('instead-launcher: install and update INSTEAD games from net')
+source=(http://downloads.sourceforge.net/project/instead/instead/${pkgver}/instead_${pkgver}.tar.gz)
+md5sums=('224a79e0c3a9c72c86ca90fd98f0d44f')
+
+build() {
+  cd ${srcdir}/instead-${pkgver}
+  echo 2 | ./configure.sh
+  make PREFIX=/usr
+}
+
+package() {
+  cd ${srcdir}/instead-${pkgver}
+  make DESTDIR=${pkgdir} PREFIX=/usr install
+
+  cp -a doc/*.{html,pdf} doc/instead.txt doc/examples 
$pkgdir/usr/share/doc/instead/
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-02-06 17:23:06 UTC (rev 127196)
+++ community-x86_64/PKGBUILD   2015-02-06 17:23:23 UTC (rev 127197)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Peter Kosyh p.kosyhgmail.com
-
-pkgname=instead
-pkgver=2.2.1
-pkgrel=1
-pkgdesc=a quest interpreter
-arch=('i686' 'x86_64')
-url=http://sourceforge.net/projects/instead/;
-license=('GPL')
-depends=('sdl_image' 'sdl_mixer' 'sdl_ttf' 'lua')
-optdepends=('instead-launcher: install and update INSTEAD games from net')
-source=(http://downloads.sourceforge.net/project/instead/instead/${pkgver}/instead_${pkgver}.tar.gz)
-md5sums=('04833cb03aae5354b684a572e012c0bb')
-
-build() {
-  cd ${srcdir}/instead-${pkgver}
-  echo 2 | ./configure.sh
-  make PREFIX=/usr
-}
-
-package() {
-  cd ${srcdir}/instead-${pkgver}
-  make DESTDIR=${pkgdir} PREFIX=/usr install
-
-  cp -a doc/*.{html,pdf} doc/instead.txt doc/examples 
$pkgdir/usr/share/doc/instead/
-}

Copied: instead/repos/community-x86_64/PKGBUILD (from rev 127196, 
instead/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-02-06 17:23:23 UTC (rev 127197)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Peter Kosyh p.kosyhgmail.com
+
+pkgname=instead
+pkgver=2.2.2
+pkgrel=1
+pkgdesc=a quest interpreter
+arch=('i686' 'x86_64')
+url=http://sourceforge.net/projects/instead/;
+license=('GPL')
+depends=('sdl_image' 'sdl_mixer' 'sdl_ttf' 'lua')
+optdepends=('instead-launcher: install and update INSTEAD games from net')
+source=(http://downloads.sourceforge.net/project/instead/instead/${pkgver}/instead_${pkgver}.tar.gz)
+md5sums=('224a79e0c3a9c72c86ca90fd98f0d44f')
+
+build() {
+  cd ${srcdir}/instead-${pkgver}
+  echo 2 | ./configure.sh
+  make PREFIX=/usr
+}
+
+package() {
+  cd ${srcdir}/instead-${pkgver}
+  

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

2015-02-06 Thread Gaetan Bisson
Date: Friday, February 6, 2015 @ 18:23:15
  Author: bisson
Revision: 230904

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

Added:
  ntp/repos/extra-i686/PKGBUILD
(from rev 230903, ntp/trunk/PKGBUILD)
  ntp/repos/extra-i686/install
(from rev 230903, ntp/trunk/install)
  ntp/repos/extra-i686/ntp.conf
(from rev 230903, ntp/trunk/ntp.conf)
  ntp/repos/extra-i686/ntpd.service
(from rev 230903, ntp/trunk/ntpd.service)
  ntp/repos/extra-i686/ntpdate.service
(from rev 230903, ntp/trunk/ntpdate.service)
  ntp/repos/extra-x86_64/PKGBUILD
(from rev 230903, ntp/trunk/PKGBUILD)
  ntp/repos/extra-x86_64/install
(from rev 230903, ntp/trunk/install)
  ntp/repos/extra-x86_64/ntp.conf
(from rev 230903, ntp/trunk/ntp.conf)
  ntp/repos/extra-x86_64/ntpd.service
(from rev 230903, ntp/trunk/ntpd.service)
  ntp/repos/extra-x86_64/ntpdate.service
(from rev 230903, ntp/trunk/ntpdate.service)
Deleted:
  ntp/repos/extra-i686/PKGBUILD
  ntp/repos/extra-i686/install
  ntp/repos/extra-i686/ntp.conf
  ntp/repos/extra-i686/ntpd.service
  ntp/repos/extra-i686/ntpdate.service
  ntp/repos/extra-x86_64/PKGBUILD
  ntp/repos/extra-x86_64/install
  ntp/repos/extra-x86_64/ntp.conf
  ntp/repos/extra-x86_64/ntpd.service
  ntp/repos/extra-x86_64/ntpdate.service

--+
 /PKGBUILD|  106 +
 /install |   22 
 /ntp.conf|   48 ++
 /ntpd.service|   26 ++
 /ntpdate.service |   24 +
 extra-i686/PKGBUILD  |   53 
 extra-i686/install   |   11 
 extra-i686/ntp.conf  |   24 -
 extra-i686/ntpd.service  |   13 -
 extra-i686/ntpdate.service   |   12 
 extra-x86_64/PKGBUILD|   53 
 extra-x86_64/install |   11 
 extra-x86_64/ntp.conf|   24 -
 extra-x86_64/ntpd.service|   13 -
 extra-x86_64/ntpdate.service |   12 
 15 files changed, 226 insertions(+), 226 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-02-06 17:21:04 UTC (rev 230903)
+++ extra-i686/PKGBUILD 2015-02-06 17:23:15 UTC (rev 230904)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson bis...@archlinux.org
-# Contributor: kevin ke...@archlinux.org
-
-pkgname=ntp
-_pkgname=ntp #-dev
-_pkgver=4.2.8
-pkgver=${_pkgver/p/.p}
-pkgrel=1
-pkgdesc='Network Time Protocol reference implementation'
-url='http://www.ntp.org/'
-license=('custom')
-arch=('i686' 'x86_64')
-depends=('openssl' 'libcap' 'libedit')
-backup=('etc/ntp.conf')
-#source=(http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/${_pkgname}/${_pkgname}-${_pkgver}.tar.gz;
-source=(http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/${_pkgname}-${_pkgver}.tar.gz;
-'ntp.conf'
-'ntpd.service'
-'ntpdate.service')
-sha1sums=('6d1c017a8a0e97d5cf8bf4e5e38333973ffd22d5'
-  'ad1d6ee2e9aca64a84a7224c88bf6008ac6c69e1'
-  '0a872385e0142888ab48d273fec0669b30a8'
-  '059b382d1af0c55202e2d17f2ae065a2cbfec9ee')
-
-options=('!emptydirs')
-install=install
-
-build() {
-   cd ${srcdir}/${_pkgname}-${_pkgver}
-
-   ./configure \
-   --prefix=/usr \
-   --libexecdir=/usr/lib \
-   --enable-linuxcaps \
-   --enable-ntp-signd \
-
-   make
-}
-
-package() {
-   cd ${srcdir}/${_pkgname}-${_pkgver}
-
-   make DESTDIR=${pkgdir} install
-
-   install -Dm644 ../ntp.conf ${pkgdir}/etc/ntp.conf
-   install -Dm644 ../ntpd.service 
${pkgdir}/usr/lib/systemd/system/ntpd.service
-   install -Dm644 ../ntpdate.service 
${pkgdir}/usr/lib/systemd/system/ntpdate.service
-   install -Dm644 COPYRIGHT 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-
-   install -d -o 87 ${pkgdir}/var/lib/ntp
-   echo  ${pkgdir}/var/lib/ntp/.placeholder
-}

Copied: ntp/repos/extra-i686/PKGBUILD (from rev 230903, ntp/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-02-06 17:23:15 UTC (rev 230904)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: kevin ke...@archlinux.org
+
+pkgname=ntp
+_pkgname=ntp #-dev
+_pkgver=4.2.8p1
+pkgver=${_pkgver/p/.p}
+pkgrel=1
+pkgdesc='Network Time Protocol reference implementation'
+url='http://www.ntp.org/'
+license=('custom')
+arch=('i686' 'x86_64')
+depends=('openssl' 'libcap' 'libedit')
+backup=('etc/ntp.conf')
+#source=(http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/${_pkgname}/${_pkgname}-${_pkgver}.tar.gz;
+source=(http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/${_pkgname}-${_pkgver}.tar.gz;
+'ntp.conf'
+'ntpd.service'
+'ntpdate.service')
+sha1sums=('1e6d8894bbd3456bd71aa890b02f802f2e611e86'
+  

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

2015-02-06 Thread Sergej Pupykin
Date: Friday, February 6, 2015 @ 18:23:06
  Author: spupykin
Revision: 127196

upgpkg: instead 2.2.2-1

upd

Modified:
  instead/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-06 17:19:19 UTC (rev 127195)
+++ PKGBUILD2015-02-06 17:23:06 UTC (rev 127196)
@@ -3,7 +3,7 @@
 # Contributor: Peter Kosyh p.kosyhgmail.com
 
 pkgname=instead
-pkgver=2.2.1
+pkgver=2.2.2
 pkgrel=1
 pkgdesc=a quest interpreter
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 depends=('sdl_image' 'sdl_mixer' 'sdl_ttf' 'lua')
 optdepends=('instead-launcher: install and update INSTEAD games from net')
 
source=(http://downloads.sourceforge.net/project/instead/instead/${pkgver}/instead_${pkgver}.tar.gz)
-md5sums=('04833cb03aae5354b684a572e012c0bb')
+md5sums=('224a79e0c3a9c72c86ca90fd98f0d44f')
 
 build() {
   cd ${srcdir}/instead-${pkgver}


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

2015-02-06 Thread Anatol Pomozov
Date: Friday, February 6, 2015 @ 18:27:20
  Author: anatolik
Revision: 127198

upgpkg: fossil 1.30-2

Fix zsh completion files

Modified:
  fossil/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-06 17:23:23 UTC (rev 127197)
+++ PKGBUILD2015-02-06 17:27:20 UTC (rev 127198)
@@ -7,7 +7,7 @@
 pkgver=1.30
 _date_pkgver=20150119112900
 # NOTE: update _date_pkgver from http://www.fossil-scm.org/download.html
-pkgrel=1
+pkgrel=2
 pkgdesc='Simple, high-reliability, distributed software configuration 
management'
 arch=(i686 x86_64)
 license=(BSD)


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

2015-02-06 Thread Anatol Pomozov
Date: Friday, February 6, 2015 @ 18:28:29
  Author: anatolik
Revision: 127199

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

Added:
  fossil/repos/community-i686/PKGBUILD
(from rev 127198, fossil/trunk/PKGBUILD)
  fossil/repos/community-i686/fossil-autocomplete.bash
(from rev 127198, fossil/trunk/fossil-autocomplete.bash)
  fossil/repos/community-i686/fossil-autocomplete.zsh
(from rev 127198, fossil/trunk/fossil-autocomplete.zsh)
  fossil/repos/community-i686/fossil-xinetd
(from rev 127198, fossil/trunk/fossil-xinetd)
  fossil/repos/community-i686/fossil.service
(from rev 127198, fossil/trunk/fossil.service)
  fossil/repos/community-i686/fossil.socket
(from rev 127198, fossil/trunk/fossil.socket)
  fossil/repos/community-x86_64/PKGBUILD
(from rev 127198, fossil/trunk/PKGBUILD)
  fossil/repos/community-x86_64/fossil-autocomplete.bash
(from rev 127198, fossil/trunk/fossil-autocomplete.bash)
  fossil/repos/community-x86_64/fossil-autocomplete.zsh
(from rev 127198, fossil/trunk/fossil-autocomplete.zsh)
  fossil/repos/community-x86_64/fossil-xinetd
(from rev 127198, fossil/trunk/fossil-xinetd)
  fossil/repos/community-x86_64/fossil.service
(from rev 127198, fossil/trunk/fossil.service)
  fossil/repos/community-x86_64/fossil.socket
(from rev 127198, fossil/trunk/fossil.socket)
Deleted:
  fossil/repos/community-i686/PKGBUILD
  fossil/repos/community-i686/bash.completion
  fossil/repos/community-i686/fossil-xinetd
  fossil/repos/community-i686/fossil.service
  fossil/repos/community-i686/fossil.socket
  fossil/repos/community-i686/zsh.completion
  fossil/repos/community-x86_64/PKGBUILD
  fossil/repos/community-x86_64/bash.completion
  fossil/repos/community-x86_64/fossil-xinetd
  fossil/repos/community-x86_64/fossil.service
  fossil/repos/community-x86_64/fossil.socket
  fossil/repos/community-x86_64/zsh.completion

---+
 /PKGBUILD |  108 
 /fossil-xinetd|   46 +++
 /fossil.service   |   22 +
 /fossil.socket|   20 +
 community-i686/PKGBUILD   |   50 
 community-i686/bash.completion|   33 
 community-i686/fossil-autocomplete.bash   |   33 
 community-i686/fossil-autocomplete.zsh|   30 +++
 community-i686/fossil-xinetd  |   23 -
 community-i686/fossil.service |   11 --
 community-i686/fossil.socket  |   10 --
 community-i686/zsh.completion |   20 -
 community-x86_64/PKGBUILD |   50 
 community-x86_64/bash.completion  |   33 
 community-x86_64/fossil-autocomplete.bash |   33 
 community-x86_64/fossil-autocomplete.zsh  |   30 +++
 community-x86_64/fossil-xinetd|   23 -
 community-x86_64/fossil.service   |   11 --
 community-x86_64/fossil.socket|   10 --
 community-x86_64/zsh.completion   |   20 -
 20 files changed, 322 insertions(+), 294 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-02-06 17:27:20 UTC (rev 127198)
+++ community-i686/PKGBUILD 2015-02-06 17:28:29 UTC (rev 127199)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Anatol Pomozov anatol pomozov at gmail 
-# Contributor: Daniel YC Lin dlin.tw at gmail
-# Contributor: Konstantin Plotnikov kostyapl at gmail dot com
-
-pkgname=fossil
-pkgver=1.30
-_date_pkgver=20150119112900
-# NOTE: update _date_pkgver from http://www.fossil-scm.org/download.html
-pkgrel=1
-pkgdesc='Simple, high-reliability, distributed software configuration 
management'
-arch=(i686 x86_64)
-license=(BSD)
-url='http://www.fossil-scm.org'
-depends=(openssl zlib)
-backup=(etc/xinetd.d/fossil)
-source=(
-  fossil.socket
-  fossil.service
-  fossil-xinetd
-  bash.completion
-  zsh.completion
-  http://www.fossil-scm.org/download/fossil-src-$_date_pkgver.tar.gz
-)
-sha256sums=('f885e17998dc1eece1688a75e516663462fe72a7f4f132def4132055777c7ff8'
-'c4973079facf209d3757db81df08f8d0843ede242f2a0c12281720da65e3b166'
-'2f9a141fadfb7cb5225f0d65a308949bbc592bff9d567b5c472edb413c81f5aa'
-'e22e19dba1a4be6a62af0b77ff0267c2a0f19edf2f6a9133ee64246fae5d87da'
-'2099785dd126c59e4abf2d13cc40aee8dcc562f7737c9897f07845888b1d40ae'
-'37969e5a09c1611199921e3518a4ed736fd637a02f2d5810cd45897a4ceb92dc')
-
-build() {
-  cd fossil-src-$_date_pkgver
-  ./configure --prefix=/usr
-  # headers and translate targets are problematic with parallel jobs
-  make -j1 bld bld/headers
-  make
-}
-
-package() {
-  install -Dm644 fossil-xinetd $pkgdir/etc/xinetd.d/fossil
-  install -Dm644 fossil.socket $pkgdir/usr/lib/systemd/system/fossil.socket
-  install -Dm644 fossil.service 

[arch-commits] Commit in gearmand/trunk (PKGBUILD gearmand.install user.conf)

2015-02-06 Thread Massimiliano Torromeo
Date: Friday, February 6, 2015 @ 16:00:53
  Author: mtorromeo
Revision: 127189

upgpkg: gearmand 1.1.12-7

No user removal at uninstall time

Added:
  gearmand/trunk/user.conf
Modified:
  gearmand/trunk/PKGBUILD
  gearmand/trunk/gearmand.install

--+
 PKGBUILD |   19 +++
 gearmand.install |   11 +--
 user.conf|1 +
 3 files changed, 13 insertions(+), 18 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-02-06 10:20:07 UTC (rev 127188)
+++ PKGBUILD2015-02-06 15:00:53 UTC (rev 127189)
@@ -6,7 +6,7 @@
 
 pkgname=gearmand
 pkgver=1.1.12
-pkgrel=6
+pkgrel=7
 pkgdesc=Distributed job queue server.
 arch=('i686' 'x86_64')
 depends=('libevent' 'boost-libs' 'libmariadbclient' 'postgresql-libs' 'sqlite' 
'hiredis')
@@ -20,10 +20,11 @@
 backup=('etc/gearmand.conf')
 
source=(https://launchpad.net/$pkgname/1.2/$pkgver/+download/$pkgname-$pkgver.tar.gz
 gearmand.service
-gearmand.conf)
+gearmand.conf
+user.conf)
 
 build() {
-  cd $srcdir/$pkgname-$pkgver
+  cd $srcdir/$pkgname-$pkgver
   export LDFLAGS=$LDFLAGS -lboost_system
   ./configure \
 --prefix=/usr \
@@ -36,15 +37,17 @@
 }
 
 package() {
-  cd $srcdir/$pkgname-$pkgver
+  cd $srcdir/$pkgname-$pkgver
   make DESTDIR=$pkgdir install
-  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
 
   cd $srcdir
-  install -Dm644 gearmand.service 
$pkgdir/usr/lib/systemd/system/gearmand.service
-  install -Dm644 gearmand.conf $pkgdir/etc/gearmand.conf
+  install -Dm644 gearmand.service 
$pkgdir/usr/lib/systemd/system/gearmand.service
+  install -Dm644 gearmand.conf $pkgdir/etc/gearmand.conf
+   install -Dm644 user.conf $pkgdir/usr/lib/sysusers.d/gearmand.conf
 }
 
 sha256sums=('973d7a3523141a84c7b757c6f243febbc89a3631e919b532c056c814d8738acb'
 'dee38ad4e614969047253b8c4996b8cdf33c981b0df215b6627356fd4cbafa33'
-'6c14fdcd94105338e13bdd59dbed4f9b77430a517b2c125ac2e6d3bc43bdf506')
+'6c14fdcd94105338e13bdd59dbed4f9b77430a517b2c125ac2e6d3bc43bdf506'
+'02f11878d7c32039385586e527006f5cbb08444007f6c72a012e8acd8a855aef')

Modified: gearmand.install
===
--- gearmand.install2015-02-06 10:20:07 UTC (rev 127188)
+++ gearmand.install2015-02-06 15:00:53 UTC (rev 127189)
@@ -1,12 +1,3 @@
 post_install() {
-  getent group gearmand /dev/null 21 || groupadd -g 113 gearmand /dev/null
-  getent passwd gearmand /dev/null 21 || useradd -u 113 -g gearmand -d 
/dev/null -s /bin/false gearmand /dev/null
+  systemd-sysusers gearmand.conf
 }
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  userdel gearmand
-}

Added: user.conf
===
--- user.conf   (rev 0)
+++ user.conf   2015-02-06 15:00:53 UTC (rev 127189)
@@ -0,0 +1 @@
+u gearmand 116 gearmand user


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

2015-02-06 Thread Massimiliano Torromeo
Date: Friday, February 6, 2015 @ 16:33:58
  Author: mtorromeo
Revision: 127191

upgpkg: elasticsearch 1.4.2-2

No user removal at uninstall time

Modified:
  elasticsearch/trunk/PKGBUILD
  elasticsearch/trunk/elasticsearch.install

---+
 PKGBUILD  |4 +++-
 elasticsearch.install |   11 ---
 2 files changed, 3 insertions(+), 12 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-02-06 15:01:37 UTC (rev 127190)
+++ PKGBUILD2015-02-06 15:33:58 UTC (rev 127191)
@@ -5,7 +5,7 @@
 
 pkgname=elasticsearch
 pkgver=1.4.2
-pkgrel=1
+pkgrel=2
 pkgdesc=Distributed RESTful search engine built on top of Lucene
 arch=('i686' 'x86_64')
 url=http://www.elasticsearch.org/;
@@ -79,4 +79,6 @@
   install -Dm644 $srcdir/elasticsearch.default 
$pkgdir/etc/default/elasticsearch
 
   ln -s ../../../var/lib/elasticsearch $pkgdir/usr/share/elasticsearch/data
+
+  chown -R 114:144 $pkgdir/usr/share/elasticsearch
 }

Modified: elasticsearch.install
===
--- elasticsearch.install   2015-02-06 15:01:37 UTC (rev 127190)
+++ elasticsearch.install   2015-02-06 15:33:58 UTC (rev 127191)
@@ -1,19 +1,8 @@
 post_install() {
 systemd-sysusers elasticsearch.conf
 systemd-tmpfiles --create elasticsearch.conf
-chown -R elasticsearch:elasticsearch /usr/share/elasticsearch
 }
 
 post_upgrade(){
-systemd-sysusers elasticsearch.conf
 systemd-tmpfiles --create elasticsearch.conf
 }
-
-post_remove() {
-if getent passwd elasticsearch /dev/null 21; then
-userdel elasticsearch
-fi
-if getent group elasticsearch /dev/null 21; then
-groupdel elasticsearch
-fi
-}


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

2015-02-06 Thread Massimiliano Torromeo
Date: Friday, February 6, 2015 @ 16:01:37
  Author: mtorromeo
Revision: 127190

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

Added:
  gearmand/repos/community-i686/PKGBUILD
(from rev 127189, gearmand/trunk/PKGBUILD)
  gearmand/repos/community-i686/gearmand.conf
(from rev 127189, gearmand/trunk/gearmand.conf)
  gearmand/repos/community-i686/gearmand.install
(from rev 127189, gearmand/trunk/gearmand.install)
  gearmand/repos/community-i686/gearmand.service
(from rev 127189, gearmand/trunk/gearmand.service)
  gearmand/repos/community-i686/user.conf
(from rev 127189, gearmand/trunk/user.conf)
  gearmand/repos/community-x86_64/PKGBUILD
(from rev 127189, gearmand/trunk/PKGBUILD)
  gearmand/repos/community-x86_64/gearmand.conf
(from rev 127189, gearmand/trunk/gearmand.conf)
  gearmand/repos/community-x86_64/gearmand.install
(from rev 127189, gearmand/trunk/gearmand.install)
  gearmand/repos/community-x86_64/gearmand.service
(from rev 127189, gearmand/trunk/gearmand.service)
  gearmand/repos/community-x86_64/user.conf
(from rev 127189, gearmand/trunk/user.conf)
Deleted:
  gearmand/repos/community-i686/PKGBUILD
  gearmand/repos/community-i686/gearmand.conf
  gearmand/repos/community-i686/gearmand.install
  gearmand/repos/community-i686/gearmand.service
  gearmand/repos/community-x86_64/PKGBUILD
  gearmand/repos/community-x86_64/gearmand.conf
  gearmand/repos/community-x86_64/gearmand.install
  gearmand/repos/community-x86_64/gearmand.service

---+
 /PKGBUILD |  106 
 /gearmand.conf|2 
 /gearmand.install |6 ++
 /gearmand.service |   24 
 community-i686/PKGBUILD   |   50 
 community-i686/gearmand.conf  |1 
 community-i686/gearmand.install   |   12 
 community-i686/gearmand.service   |   12 
 community-i686/user.conf  |1 
 community-x86_64/PKGBUILD |   50 
 community-x86_64/gearmand.conf|1 
 community-x86_64/gearmand.install |   12 
 community-x86_64/gearmand.service |   12 
 community-x86_64/user.conf|1 
 14 files changed, 140 insertions(+), 150 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-02-06 15:00:53 UTC (rev 127189)
+++ community-i686/PKGBUILD 2015-02-06 15:01:37 UTC (rev 127190)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
-# Contributor: Lev Lybin lev.ly...@gmail.com
-# Contributor: Vadym Abramchuk abr...@gmail.com
-# Contributor: John Gerritse reaphsh...@gmail.com
-
-pkgname=gearmand
-pkgver=1.1.12
-pkgrel=6
-pkgdesc=Distributed job queue server.
-arch=('i686' 'x86_64')
-depends=('libevent' 'boost-libs' 'libmariadbclient' 'postgresql-libs' 'sqlite' 
'hiredis')
-makedepends=('boost' 'gperf' 'python-sphinx')
-conflicts=('gearman')
-replaces=('gearman')
-provides=(gearman=$pkgver)
-url=http://gearman.org/;
-license=('CUSTOM')
-install=$pkgname.install
-backup=('etc/gearmand.conf')
-source=(https://launchpad.net/$pkgname/1.2/$pkgver/+download/$pkgname-$pkgver.tar.gz
-gearmand.service
-gearmand.conf)
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  export LDFLAGS=$LDFLAGS -lboost_system
-  ./configure \
---prefix=/usr \
---sbindir=/usr/bin \
---sysconfdir=/etc \
---localstatedir=/run \
---disable-static \
---enable-ssl
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
-
-  cd $srcdir
-  install -Dm644 gearmand.service 
$pkgdir/usr/lib/systemd/system/gearmand.service
-  install -Dm644 gearmand.conf $pkgdir/etc/gearmand.conf
-}
-
-sha256sums=('973d7a3523141a84c7b757c6f243febbc89a3631e919b532c056c814d8738acb'
-'dee38ad4e614969047253b8c4996b8cdf33c981b0df215b6627356fd4cbafa33'
-'6c14fdcd94105338e13bdd59dbed4f9b77430a517b2c125ac2e6d3bc43bdf506')

Copied: gearmand/repos/community-i686/PKGBUILD (from rev 127189, 
gearmand/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-02-06 15:01:37 UTC (rev 127190)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
+# Contributor: Lev Lybin lev.ly...@gmail.com
+# Contributor: Vadym Abramchuk abr...@gmail.com
+# Contributor: John Gerritse reaphsh...@gmail.com
+
+pkgname=gearmand
+pkgver=1.1.12
+pkgrel=7
+pkgdesc=Distributed job queue server.
+arch=('i686' 'x86_64')
+depends=('libevent' 'boost-libs' 'libmariadbclient' 'postgresql-libs' 'sqlite' 
'hiredis')
+makedepends=('boost' 'gperf' 'python-sphinx')
+conflicts=('gearman')
+replaces=('gearman')

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

2015-02-06 Thread Massimiliano Torromeo
Date: Friday, February 6, 2015 @ 16:34:44
  Author: mtorromeo
Revision: 127192

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

Added:
  elasticsearch/repos/community-i686/PKGBUILD
(from rev 127191, elasticsearch/trunk/PKGBUILD)
  elasticsearch/repos/community-i686/elasticsearch-sysctl.conf
(from rev 127191, elasticsearch/trunk/elasticsearch-sysctl.conf)
  elasticsearch/repos/community-i686/elasticsearch-tmpfile.conf
(from rev 127191, elasticsearch/trunk/elasticsearch-tmpfile.conf)
  elasticsearch/repos/community-i686/elasticsearch-user.conf
(from rev 127191, elasticsearch/trunk/elasticsearch-user.conf)
  elasticsearch/repos/community-i686/elasticsearch.default
(from rev 127191, elasticsearch/trunk/elasticsearch.default)
  elasticsearch/repos/community-i686/elasticsearch.install
(from rev 127191, elasticsearch/trunk/elasticsearch.install)
  elasticsearch/repos/community-i686/elasticsearch.service
(from rev 127191, elasticsearch/trunk/elasticsearch.service)
  elasticsearch/repos/community-i686/elasticsearch@.service
(from rev 127191, elasticsearch/trunk/elasticsearch@.service)
  elasticsearch/repos/community-x86_64/PKGBUILD
(from rev 127191, elasticsearch/trunk/PKGBUILD)
  elasticsearch/repos/community-x86_64/elasticsearch-sysctl.conf
(from rev 127191, elasticsearch/trunk/elasticsearch-sysctl.conf)
  elasticsearch/repos/community-x86_64/elasticsearch-tmpfile.conf
(from rev 127191, elasticsearch/trunk/elasticsearch-tmpfile.conf)
  elasticsearch/repos/community-x86_64/elasticsearch-user.conf
(from rev 127191, elasticsearch/trunk/elasticsearch-user.conf)
  elasticsearch/repos/community-x86_64/elasticsearch.default
(from rev 127191, elasticsearch/trunk/elasticsearch.default)
  elasticsearch/repos/community-x86_64/elasticsearch.install
(from rev 127191, elasticsearch/trunk/elasticsearch.install)
  elasticsearch/repos/community-x86_64/elasticsearch.service
(from rev 127191, elasticsearch/trunk/elasticsearch.service)
  elasticsearch/repos/community-x86_64/elasticsearch@.service
(from rev 127191, elasticsearch/trunk/elasticsearch@.service)
Deleted:
  elasticsearch/repos/community-i686/PKGBUILD
  elasticsearch/repos/community-i686/elasticsearch-sysctl.conf
  elasticsearch/repos/community-i686/elasticsearch-tmpfile.conf
  elasticsearch/repos/community-i686/elasticsearch-user.conf
  elasticsearch/repos/community-i686/elasticsearch.default
  elasticsearch/repos/community-i686/elasticsearch.install
  elasticsearch/repos/community-i686/elasticsearch.service
  elasticsearch/repos/community-i686/elasticsearch@.service
  elasticsearch/repos/community-x86_64/PKGBUILD
  elasticsearch/repos/community-x86_64/elasticsearch-sysctl.conf
  elasticsearch/repos/community-x86_64/elasticsearch-tmpfile.conf
  elasticsearch/repos/community-x86_64/elasticsearch-user.conf
  elasticsearch/repos/community-x86_64/elasticsearch.default
  elasticsearch/repos/community-x86_64/elasticsearch.install
  elasticsearch/repos/community-x86_64/elasticsearch.service
  elasticsearch/repos/community-x86_64/elasticsearch@.service

-+
 /PKGBUILD   |  168 ++
 /elasticsearch-sysctl.conf  |2 
 /elasticsearch-tmpfile.conf |4 
 /elasticsearch-user.conf|2 
 /elasticsearch.default  |   26 
 /elasticsearch.install  |   16 ++
 /elasticsearch.service  |   42 ++
 /elasticsearch@.service |   42 ++
 community-i686/PKGBUILD |   82 
 community-i686/elasticsearch-sysctl.conf|1 
 community-i686/elasticsearch-tmpfile.conf   |2 
 community-i686/elasticsearch-user.conf  |1 
 community-i686/elasticsearch.default|   13 --
 community-i686/elasticsearch.install|   19 --
 community-i686/elasticsearch.service|   21 ---
 community-i686/elasticsearch@.service   |   21 ---
 community-x86_64/PKGBUILD   |   82 
 community-x86_64/elasticsearch-sysctl.conf  |1 
 community-x86_64/elasticsearch-tmpfile.conf |2 
 community-x86_64/elasticsearch-user.conf|1 
 community-x86_64/elasticsearch.default  |   13 --
 community-x86_64/elasticsearch.install  |   19 --
 community-x86_64/elasticsearch.service  |   21 ---
 community-x86_64/elasticsearch@.service |   21 ---
 24 files changed, 302 insertions(+), 320 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-02-06 15:33:58 UTC (rev 127191)
+++ community-i686/PKGBUILD 2015-02-06 15:34:44 UTC (rev 127192)
@@ -1,82 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
-# Contributor: Marcello mererghost Rocha https://github.com/mereghost
-# Refactored 

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

2015-02-06 Thread Sven-Hendrik Haase
Date: Friday, February 6, 2015 @ 19:45:00
  Author: svenstaro
Revision: 127200

upgpkg: virtualgl 2.4-1

upstream release 2.4

Modified:
  virtualgl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-02-06 17:28:29 UTC (rev 127199)
+++ PKGBUILD2015-02-06 18:45:00 UTC (rev 127200)
@@ -3,7 +3,7 @@
 # Contributor: Andres Jimenez
 
 pkgname=virtualgl
-pkgver=2.3.3
+pkgver=2.4
 pkgrel=1
 pkgdesc=Redirects 3D commands from an OpenGL application onto a server-side 
3D graphics card
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 depends=('libxv' 'glu' 'libjpeg-turbo')
 makedepends=('cmake' 'mesa')
 
source=(http://downloads.sourceforge.net/project/virtualgl/${pkgver}/VirtualGL-${pkgver}.tar.gz;)
-sha1sums=('7128fc546f0bc65a74296e19d474e52d41acbf47')
+sha1sums=('5635a46855351bcc98813bbddfb30694b3be308b')
  
 build() {
   cd $srcdir/VirtualGL-$pkgver


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

2015-02-06 Thread Sven-Hendrik Haase
Date: Friday, February 6, 2015 @ 19:45:09
  Author: svenstaro
Revision: 127201

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-02-06 18:45:00 UTC (rev 127200)
+++ community-i686/PKGBUILD 2015-02-06 18:45:09 UTC (rev 127201)
@@ -1,37 +0,0 @@
-# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
-# Contributor: FigoDaPaura ffigoDaPaura
-# Contributor: Andres Jimenez
-
-pkgname=virtualgl
-pkgver=2.3.3
-pkgrel=1
-pkgdesc=Redirects 3D commands from an OpenGL application onto a server-side 
3D graphics card
-arch=('i686' 'x86_64')
-url=http://virtualgl.org;
-license=('LGPL')
-depends=('libxv' 'glu' 'libjpeg-turbo')
-makedepends=('cmake' 'mesa')
-source=(http://downloads.sourceforge.net/project/virtualgl/VirtualGL/$pkgver/VirtualGL-$pkgver.tar.gz;)
-sha1sums=('7128fc546f0bc65a74296e19d474e52d41acbf47')
- 
-build() {
-  cd $srcdir/VirtualGL-$pkgver
- 
-  mkdir -p build  cd build
- 
-  cmake .. \
-  -DCMAKE_INSTALL_PREFIX=/usr/share \
-  -DTJPEG_INCLUDE_DIR=/usr/include \
-  -DTJPEG_LIBRARY=/usr/lib/libturbojpeg.so \
-  -DVGL_LIBDIR=/usr/lib \
-  -DVGL_BINDIR=/usr/bin \
-  -DVGL_DOCDIR=/usr/share/doc/${pkgname}
-  make
-}
- 
-package() {
-  cd $srcdir/VirtualGL-$pkgver/build
-  make install DESTDIR=$pkgdir
- 
-  mv $pkgdir/usr/bin/glxinfo $pkgdir/usr/bin/vglxinfo
-}

Copied: virtualgl/repos/community-i686/PKGBUILD (from rev 127200, 
virtualgl/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-02-06 18:45:09 UTC (rev 127201)
@@ -0,0 +1,37 @@
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: FigoDaPaura ffigoDaPaura
+# Contributor: Andres Jimenez
+
+pkgname=virtualgl
+pkgver=2.4
+pkgrel=1
+pkgdesc=Redirects 3D commands from an OpenGL application onto a server-side 
3D graphics card
+arch=('i686' 'x86_64')
+url=http://virtualgl.org;
+license=('LGPL')
+depends=('libxv' 'glu' 'libjpeg-turbo')
+makedepends=('cmake' 'mesa')
+source=(http://downloads.sourceforge.net/project/virtualgl/${pkgver}/VirtualGL-${pkgver}.tar.gz;)
+sha1sums=('5635a46855351bcc98813bbddfb30694b3be308b')
+ 
+build() {
+  cd $srcdir/VirtualGL-$pkgver
+ 
+  mkdir -p build  cd build
+ 
+  cmake .. \
+  -DCMAKE_INSTALL_PREFIX=/usr/share \
+  -DTJPEG_INCLUDE_DIR=/usr/include \
+  -DTJPEG_LIBRARY=/usr/lib/libturbojpeg.so \
+  -DVGL_LIBDIR=/usr/lib \
+  -DVGL_BINDIR=/usr/bin \
+  -DVGL_DOCDIR=/usr/share/doc/${pkgname}
+  make
+}
+ 
+package() {
+  cd $srcdir/VirtualGL-$pkgver/build
+  make install DESTDIR=$pkgdir
+ 
+  mv $pkgdir/usr/bin/glxinfo $pkgdir/usr/bin/vglxinfo
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-02-06 18:45:00 UTC (rev 127200)
+++ community-x86_64/PKGBUILD   2015-02-06 18:45:09 UTC (rev 127201)
@@ -1,37 +0,0 @@
-# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
-# Contributor: FigoDaPaura ffigoDaPaura
-# Contributor: Andres Jimenez
-
-pkgname=virtualgl
-pkgver=2.3.3
-pkgrel=1
-pkgdesc=Redirects 3D commands from an OpenGL application onto a server-side 
3D graphics card
-arch=('i686' 'x86_64')
-url=http://virtualgl.org;
-license=('LGPL')
-depends=('libxv' 'glu' 'libjpeg-turbo')
-makedepends=('cmake' 'mesa')
-source=(http://downloads.sourceforge.net/project/virtualgl/VirtualGL/$pkgver/VirtualGL-$pkgver.tar.gz;)
-sha1sums=('7128fc546f0bc65a74296e19d474e52d41acbf47')
- 
-build() {
-  cd $srcdir/VirtualGL-$pkgver
- 
-  mkdir -p build  cd build
- 
-  cmake .. \
-  -DCMAKE_INSTALL_PREFIX=/usr/share \
-  -DTJPEG_INCLUDE_DIR=/usr/include \
-  -DTJPEG_LIBRARY=/usr/lib/libturbojpeg.so \
-  -DVGL_LIBDIR=/usr/lib \
-  -DVGL_BINDIR=/usr/bin \
-  -DVGL_DOCDIR=/usr/share/doc/${pkgname}
-  make
-}
- 
-package() {
-  cd $srcdir/VirtualGL-$pkgver/build
-  make install DESTDIR=$pkgdir
- 
-  mv $pkgdir/usr/bin/glxinfo $pkgdir/usr/bin/vglxinfo
-}

Copied: virtualgl/repos/community-x86_64/PKGBUILD (from rev 127200, 
virtualgl/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-02-06 18:45:09 UTC (rev