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

2015-01-25 Thread Evangelos Foutras
Date: Sunday, January 25, 2015 @ 10:56:20
  Author: foutrelis
Revision: 229977

upgpkg: chromium 40.0.2214.91-1

New upstream release.

Added:
  chromium/trunk/chromium-webkit-buffer-overflow.patch
Modified:
  chromium/trunk/PKGBUILD

---+
 PKGBUILD  |   14 ++
 chromium-webkit-buffer-overflow.patch |   23 +++
 2 files changed, 33 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-01-25 09:48:56 UTC (rev 229976)
+++ PKGBUILD2015-01-25 09:56:20 UTC (rev 229977)
@@ -5,7 +5,7 @@
 # Contributor: Daniel J Griffiths ghost1...@archlinux.us
 
 pkgname=chromium
-pkgver=39.0.2171.99
+pkgver=40.0.2214.91
 pkgrel=1
 pkgdesc=The open-source project behind Google Chrome, an attempt at creating 
a safer, faster, and more stable browser
 arch=('i686' 'x86_64')
@@ -28,11 +28,13 @@
 
source=(https://commondatastorage.googleapis.com/chromium-browser-official/$pkgname-$pkgver.tar.xz
 chromium.desktop
 chromium.default
-chromium.sh)
-sha256sums=('6d527003a7dc3256a266d33fa42185c75934efd6de14f51cde345701ba2ae449'
+chromium.sh
+chromium-webkit-buffer-overflow.patch)
+sha256sums=('f72fda9ff1ea256ab911610ee532eadf8303137d431f2481d01d3d60e5e64149'
 '09bfac44104f4ccda4c228053f689c947b3e97da9a4ab6fa34ce061ee83d0322'
 '478340d5760a9bd6c549e19b1b5d1c5b4933ebf5f8cfb2b3e2d70d07443fe232'
-'4999fded897af692f4974f0a3e3bbb215193519918a1fa9b31ed51e74a2dccb9')
+'4999fded897af692f4974f0a3e3bbb215193519918a1fa9b31ed51e74a2dccb9'
+'870ca4516a0a5407b1e2da822a1ca4f201349c8699877f6bd248cd8e08e7f2f1')
 
 # Google API keys (see http://www.chromium.org/developers/how-tos/api-keys)
 # Note: These are for Arch Linux use ONLY. For your own distribution, please
@@ -59,6 +61,10 @@
   # 
https://groups.google.com/a/chromium.org/d/topic/chromium-packagers/BNGvJc08B6Q
   find third_party/icu -type f \! -regex '.*\.\(gyp\|gypi\|isolate\)' -delete
 
+  # Fix a buffer overflow in blink::HarfBuzzShaper::resolveCandidateRuns()
+  # https://code.google.com/p/chromium/issues/detail?id=445075#c10
+  patch -d third_party/WebKit -Np1 ../chromium-webkit-buffer-overflow.patch
+
   # Use Python 2
   find . -name '*.py' -exec sed -i -r 's|/usr/bin/python$|2|g' {} +
   # There are still a lot of relative calls which need a workaround

Added: chromium-webkit-buffer-overflow.patch
===
--- chromium-webkit-buffer-overflow.patch   (rev 0)
+++ chromium-webkit-buffer-overflow.patch   2015-01-25 09:56:20 UTC (rev 
229977)
@@ -0,0 +1,23 @@
+diff --git a/Source/platform/fonts/shaping/HarfBuzzShaper.cpp 
b/Source/platform/fonts/shaping/HarfBuzzShaper.cpp
+index 87441d9..a90b925 100644
+--- a/Source/platform/fonts/shaping/HarfBuzzShaper.cpp
 b/Source/platform/fonts/shaping/HarfBuzzShaper.cpp
+@@ -702,7 +702,7 @@ static inline void 
resolveRunBasedOnScriptValue(VectorCandidateRun runs,
+ 
+ static inline bool resolveCandidateRuns(VectorCandidateRun runs)
+ {
+-UScriptCode scriptExtensions[8];
++UScriptCode scriptExtensions[USCRIPT_CODE_LIMIT];
+ UErrorCode errorCode = U_ZERO_ERROR;
+ size_t length = runs.size();
+ size_t nextResolvedRun = 0;
+@@ -714,7 +714,8 @@ static inline bool 
resolveCandidateRuns(VectorCandidateRun runs)
+ run.script = i  0 ? runs[i - 1].script : USCRIPT_COMMON;
+ 
+ int extensionsLength = uscript_getScriptExtensions(run.character,
+-scriptExtensions, sizeof(scriptExtensions), errorCode);
++scriptExtensions, sizeof(scriptExtensions) / 
sizeof(scriptExtensions[0]),
++errorCode);
+ if (U_FAILURE(errorCode))
+ return false;
+ 


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

2015-01-25 Thread Evangelos Foutras
Date: Sunday, January 25, 2015 @ 10:56:38
  Author: foutrelis
Revision: 229978

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

Added:
  chromium/repos/extra-i686/PKGBUILD
(from rev 229977, chromium/trunk/PKGBUILD)
  chromium/repos/extra-i686/chromium-webkit-buffer-overflow.patch
(from rev 229977, chromium/trunk/chromium-webkit-buffer-overflow.patch)
  chromium/repos/extra-i686/chromium.default
(from rev 229977, chromium/trunk/chromium.default)
  chromium/repos/extra-i686/chromium.desktop
(from rev 229977, chromium/trunk/chromium.desktop)
  chromium/repos/extra-i686/chromium.install
(from rev 229977, chromium/trunk/chromium.install)
  chromium/repos/extra-i686/chromium.sh
(from rev 229977, chromium/trunk/chromium.sh)
  chromium/repos/extra-x86_64/PKGBUILD
(from rev 229977, chromium/trunk/PKGBUILD)
  chromium/repos/extra-x86_64/chromium-webkit-buffer-overflow.patch
(from rev 229977, chromium/trunk/chromium-webkit-buffer-overflow.patch)
  chromium/repos/extra-x86_64/chromium.default
(from rev 229977, chromium/trunk/chromium.default)
  chromium/repos/extra-x86_64/chromium.desktop
(from rev 229977, chromium/trunk/chromium.desktop)
  chromium/repos/extra-x86_64/chromium.install
(from rev 229977, chromium/trunk/chromium.install)
  chromium/repos/extra-x86_64/chromium.sh
(from rev 229977, chromium/trunk/chromium.sh)
Deleted:
  chromium/repos/extra-i686/PKGBUILD
  chromium/repos/extra-i686/chromium.default
  chromium/repos/extra-i686/chromium.desktop
  chromium/repos/extra-i686/chromium.install
  chromium/repos/extra-i686/chromium.sh
  chromium/repos/extra-x86_64/PKGBUILD
  chromium/repos/extra-x86_64/chromium.default
  chromium/repos/extra-x86_64/chromium.desktop
  chromium/repos/extra-x86_64/chromium.install
  chromium/repos/extra-x86_64/chromium.sh

+
 /PKGBUILD  |  392 +++
 /chromium.default  |8 
 /chromium.desktop  |  226 ++
 /chromium.install  |   24 +
 /chromium.sh   |   32 +
 extra-i686/PKGBUILD|  190 -
 extra-i686/chromium-webkit-buffer-overflow.patch   |   23 +
 extra-i686/chromium.default|4 
 extra-i686/chromium.desktop|  113 -
 extra-i686/chromium.install|   12 
 extra-i686/chromium.sh |   16 
 extra-x86_64/PKGBUILD  |  190 -
 extra-x86_64/chromium-webkit-buffer-overflow.patch |   23 +
 extra-x86_64/chromium.default  |4 
 extra-x86_64/chromium.desktop  |  113 -
 extra-x86_64/chromium.install  |   12 
 extra-x86_64/chromium.sh   |   16 
 17 files changed, 728 insertions(+), 670 deletions(-)

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


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

2015-01-25 Thread Kyle Keen
Date: Sunday, January 25, 2015 @ 12:26:49
  Author: kkeen
Revision: 126562

upgpkg: tamsyn-font 1.11-1

Modified:
  tamsyn-font/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-25 11:21:46 UTC (rev 126561)
+++ PKGBUILD2015-01-25 11:26:49 UTC (rev 126562)
@@ -2,8 +2,8 @@
 # Contributor: Scott Fial scott at fial dot com
 
 pkgname=tamsyn-font
-pkgver=1.10
-pkgrel=2
+pkgver=1.11
+pkgrel=1
 pkgdesc=A monospaced bitmap font for the console and X11
 arch=('any')
 url=http://www.fial.com/~scott/tamsyn-font;
@@ -11,7 +11,7 @@
 depends=('fontconfig' 'xorg-fonts-encodings' 'xorg-font-utils')
 install=$pkgname.install
 source=(http://www.fial.com/~scott/$pkgname/download/$pkgname-$pkgver.tar.gz)
-md5sums=('92afa4633a1afd8c54e426681ffd465e')
+md5sums=('6ec13672d2f0d6a829f2403cdeebd980')
 
 package () {
   cd $srcdir/$pkgname-$pkgver


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

2015-01-25 Thread Kyle Keen
Date: Sunday, January 25, 2015 @ 12:27:04
  Author: kkeen
Revision: 126563

archrelease: copy trunk to community-any

Added:
  tamsyn-font/repos/community-any/PKGBUILD
(from rev 126562, tamsyn-font/trunk/PKGBUILD)
  tamsyn-font/repos/community-any/tamsyn-font.install
(from rev 126562, tamsyn-font/trunk/tamsyn-font.install)
Deleted:
  tamsyn-font/repos/community-any/PKGBUILD
  tamsyn-font/repos/community-any/tamsyn-font.install

-+
 PKGBUILD|   54 +-
 tamsyn-font.install |   42 +++---
 2 files changed, 48 insertions(+), 48 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-01-25 11:26:49 UTC (rev 126562)
+++ PKGBUILD2015-01-25 11:27:04 UTC (rev 126563)
@@ -1,27 +0,0 @@
-# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
-# Contributor: Scott Fial scott at fial dot com
-
-pkgname=tamsyn-font
-pkgver=1.10
-pkgrel=2
-pkgdesc=A monospaced bitmap font for the console and X11
-arch=('any')
-url=http://www.fial.com/~scott/tamsyn-font;
-license=('custom')
-depends=('fontconfig' 'xorg-fonts-encodings' 'xorg-font-utils')
-install=$pkgname.install
-source=(http://www.fial.com/~scott/$pkgname/download/$pkgname-$pkgver.tar.gz)
-md5sums=('92afa4633a1afd8c54e426681ffd465e')
-
-package () {
-  cd $srcdir/$pkgname-$pkgver
-
-  install -d $pkgdir/usr/share/fonts/local
-  install -d $pkgdir/usr/share/kbd/consolefonts
-  install -d $pkgdir/usr/share/doc/$pkgname
-
-  install -m644 *.pcf $pkgdir/usr/share/fonts/local/
-  install -m644 *.psf.gz $pkgdir/usr/share/kbd/consolefonts/
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-  install -Dm644 README $pkgdir/usr/share/doc/$pkgname/
-}

Copied: tamsyn-font/repos/community-any/PKGBUILD (from rev 126562, 
tamsyn-font/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-01-25 11:27:04 UTC (rev 126563)
@@ -0,0 +1,27 @@
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Scott Fial scott at fial dot com
+
+pkgname=tamsyn-font
+pkgver=1.11
+pkgrel=1
+pkgdesc=A monospaced bitmap font for the console and X11
+arch=('any')
+url=http://www.fial.com/~scott/tamsyn-font;
+license=('custom')
+depends=('fontconfig' 'xorg-fonts-encodings' 'xorg-font-utils')
+install=$pkgname.install
+source=(http://www.fial.com/~scott/$pkgname/download/$pkgname-$pkgver.tar.gz)
+md5sums=('6ec13672d2f0d6a829f2403cdeebd980')
+
+package () {
+  cd $srcdir/$pkgname-$pkgver
+
+  install -d $pkgdir/usr/share/fonts/local
+  install -d $pkgdir/usr/share/kbd/consolefonts
+  install -d $pkgdir/usr/share/doc/$pkgname
+
+  install -m644 *.pcf $pkgdir/usr/share/fonts/local/
+  install -m644 *.psf.gz $pkgdir/usr/share/kbd/consolefonts/
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+  install -Dm644 README $pkgdir/usr/share/doc/$pkgname/
+}

Deleted: tamsyn-font.install
===
--- tamsyn-font.install 2015-01-25 11:26:49 UTC (rev 126562)
+++ tamsyn-font.install 2015-01-25 11:27:04 UTC (rev 126563)
@@ -1,21 +0,0 @@
-# arg 1: the new package version
-post_install() {
-  echo Updating font cache...  
-  fc-cache -s /dev/null 21
-  mkfontscale /usr/share/fonts/local
-  mkfontdir /usr/share/fonts/local
-  echo See the README in /usr/share/doc/tamsyn-font for more info.
-}
-
-# arg 1: the new package version
-# arg 2: the old package version
-post_upgrade() {
-  post_install $1
-}
-
-# arg 1: the old package version
-post_remove() {
-  fc-cache -s /dev/null 21
-  mkfontscale /usr/share/fonts/local
-  mkfontdir /usr/share/fonts/local
-}

Copied: tamsyn-font/repos/community-any/tamsyn-font.install (from rev 126562, 
tamsyn-font/trunk/tamsyn-font.install)
===
--- tamsyn-font.install (rev 0)
+++ tamsyn-font.install 2015-01-25 11:27:04 UTC (rev 126563)
@@ -0,0 +1,21 @@
+# arg 1: the new package version
+post_install() {
+  echo Updating font cache...  
+  fc-cache -s /dev/null 21
+  mkfontscale /usr/share/fonts/local
+  mkfontdir /usr/share/fonts/local
+  echo See the README in /usr/share/doc/tamsyn-font for more info.
+}
+
+# arg 1: the new package version
+# arg 2: the old package version
+post_upgrade() {
+  post_install $1
+}
+
+# arg 1: the old package version
+post_remove() {
+  fc-cache -s /dev/null 21
+  mkfontscale /usr/share/fonts/local
+  mkfontdir /usr/share/fonts/local
+}


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

2015-01-25 Thread Kyle Keen
Date: Sunday, January 25, 2015 @ 12:38:43
  Author: kkeen
Revision: 126566

upgpkg: hiawatha 9.11-1

Modified:
  hiawatha/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-25 11:33:01 UTC (rev 126565)
+++ PKGBUILD2015-01-25 11:38:43 UTC (rev 126566)
@@ -4,7 +4,7 @@
 # Contributor: Pascal Ernster aur at hardfalcon dot net
 
 pkgname=hiawatha
-pkgver=9.10
+pkgver=9.11
 pkgrel=1
 pkgdesc=Secure and advanced webserver
 url=https://www.hiawatha-webserver.org/;
@@ -24,7 +24,7 @@
 'hiawatha.conf.sample'
 'hiawatha.service'
 )
-sha256sums=('c9f8650b43b3cdf7ad9550cfb0ef7516b7faf1b1ff20bc9eacab95c43f6c14a2'
+sha256sums=('bf7f09dff86fe689e872e7adade91e13fd81106a97e5af02ab8afb3c77fccd9c'
 '4671d2586cbe3cd6497b16ff422c6143cdab40641ef3c9c4988c478351a8f5e7'
 'fb789b12bb6246237b15a9244f58317abdd53e5ca4eb55880e40a498b2237155')
 


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

2015-01-25 Thread Jelle van der Waa
Date: Sunday, January 25, 2015 @ 10:28:39
  Author: jelle
Revision: 126554

upgpkg: s3cmd 1.5.0-1

Modified:
  s3cmd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-25 09:24:57 UTC (rev 126553)
+++ PKGBUILD2015-01-25 09:28:39 UTC (rev 126554)
@@ -4,9 +4,8 @@
 # Contributor: Daniel Grana dan...@gmail.com
 
 pkgname=s3cmd
-pkgver=1.5.0rc1
-_pkgver=1.5.0-rc1
-pkgrel=2
+pkgver=1.5.0
+pkgrel=1
 pkgdesc=A command line client for Amazon S3
 arch=('any')
 url='http://s3tools.org/s3cmd'
@@ -13,10 +12,10 @@
 license=('GPL')
 depends=('python2' 'python2-dateutil')
 optdepends=('gnupg: encrypted file storage')
-source=(http://downloads.sourceforge.net/sourceforge/s3tools/$pkgname-$_pkgver.tar.gz;)
-md5sums=('eb5b461154b72890791c186ccdde13f0')
+source=(http://downloads.sourceforge.net/sourceforge/s3tools/$pkgname-$pkgver.tar.gz;)
+md5sums=('9c0d61f960ae51fa55e9d7583b6325e0')
 
 package() {
-  cd ${srcdir}/${pkgname}-${_pkgver}
+  cd ${srcdir}/${pkgname}-${pkgver}
   python2 setup.py install --root=$pkgdir
 }


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

2015-01-25 Thread Evangelos Foutras
Date: Sunday, January 25, 2015 @ 10:48:44
  Author: foutrelis
Revision: 229975

upgpkg: xfce4-screenshooter 1.8.2-1

New upstream release.

Modified:
  xfce4-screenshooter/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-25 09:30:56 UTC (rev 229974)
+++ PKGBUILD2015-01-25 09:48:44 UTC (rev 229975)
@@ -3,8 +3,8 @@
 # Contributor: Tobias Kieslich tobias (at) archlinux.org
 
 pkgname=xfce4-screenshooter
-pkgver=1.8.1
-pkgrel=2
+pkgver=1.8.2
+pkgrel=1
 pkgdesc=Plugin that makes screenshots for the Xfce panel
 arch=('i686' 'x86_64')
 url=http://goodies.xfce.org/projects/applications/xfce4-screenshooter;
@@ -16,7 +16,7 @@
 source=(http://archive.xfce.org/src/apps/$pkgname/1.8/$pkgname-$pkgver.tar.bz2)
 conflicts=('xfce4-screenshooter-plugin')
 replaces=('xfce4-screenshooter-plugin')
-sha256sums=('40419892bd28989315eed053c159bba0f4264ed8c6c6738806024e481eab9492')
+sha256sums=('9dce2ddfaa87f703e870e29bae13f3fc82a1b3f06b44f8386640e45a135f5f69')
 
 build() {
   cd $srcdir/$pkgname-$pkgver


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

2015-01-25 Thread Evangelos Foutras
Date: Sunday, January 25, 2015 @ 10:48:56
  Author: foutrelis
Revision: 229976

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

Added:
  xfce4-screenshooter/repos/extra-i686/PKGBUILD
(from rev 229975, xfce4-screenshooter/trunk/PKGBUILD)
  xfce4-screenshooter/repos/extra-i686/xfce4-screenshooter.install
(from rev 229975, xfce4-screenshooter/trunk/xfce4-screenshooter.install)
  xfce4-screenshooter/repos/extra-x86_64/PKGBUILD
(from rev 229975, xfce4-screenshooter/trunk/PKGBUILD)
  xfce4-screenshooter/repos/extra-x86_64/xfce4-screenshooter.install
(from rev 229975, xfce4-screenshooter/trunk/xfce4-screenshooter.install)
Deleted:
  xfce4-screenshooter/repos/extra-i686/PKGBUILD
  xfce4-screenshooter/repos/extra-i686/xfce4-screenshooter.install
  xfce4-screenshooter/repos/extra-x86_64/PKGBUILD
  xfce4-screenshooter/repos/extra-x86_64/xfce4-screenshooter.install

--+
 /PKGBUILD|   78 +
 /xfce4-screenshooter.install |   26 +
 extra-i686/PKGBUILD  |   39 --
 extra-i686/xfce4-screenshooter.install   |   13 
 extra-x86_64/PKGBUILD|   39 --
 extra-x86_64/xfce4-screenshooter.install |   13 
 6 files changed, 104 insertions(+), 104 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-01-25 09:48:44 UTC (rev 229975)
+++ extra-i686/PKGBUILD 2015-01-25 09:48:56 UTC (rev 229976)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras evange...@foutrelis.com
-# Contributor: Tobias Kieslich tobias (at) archlinux.org
-
-pkgname=xfce4-screenshooter
-pkgver=1.8.1
-pkgrel=2
-pkgdesc=Plugin that makes screenshots for the Xfce panel
-arch=('i686' 'x86_64')
-url=http://goodies.xfce.org/projects/applications/xfce4-screenshooter;
-license=('GPL2')
-groups=('xfce4-goodies')
-depends=('xfce4-panel' 'libsoup' 'hicolor-icon-theme')
-makedepends=('intltool')
-install=$pkgname.install
-source=(http://archive.xfce.org/src/apps/$pkgname/1.8/$pkgname-$pkgver.tar.bz2)
-conflicts=('xfce4-screenshooter-plugin')
-replaces=('xfce4-screenshooter-plugin')
-sha256sums=('40419892bd28989315eed053c159bba0f4264ed8c6c6738806024e481eab9492')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib \
---localstatedir=/var \
---disable-static \
---disable-debug
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: xfce4-screenshooter/repos/extra-i686/PKGBUILD (from rev 229975, 
xfce4-screenshooter/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-01-25 09:48:56 UTC (rev 229976)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Evangelos Foutras evange...@foutrelis.com
+# Contributor: Tobias Kieslich tobias (at) archlinux.org
+
+pkgname=xfce4-screenshooter
+pkgver=1.8.2
+pkgrel=1
+pkgdesc=Plugin that makes screenshots for the Xfce panel
+arch=('i686' 'x86_64')
+url=http://goodies.xfce.org/projects/applications/xfce4-screenshooter;
+license=('GPL2')
+groups=('xfce4-goodies')
+depends=('xfce4-panel' 'libsoup' 'hicolor-icon-theme')
+makedepends=('intltool')
+install=$pkgname.install
+source=(http://archive.xfce.org/src/apps/$pkgname/1.8/$pkgname-$pkgver.tar.bz2)
+conflicts=('xfce4-screenshooter-plugin')
+replaces=('xfce4-screenshooter-plugin')
+sha256sums=('9dce2ddfaa87f703e870e29bae13f3fc82a1b3f06b44f8386640e45a135f5f69')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib \
+--localstatedir=/var \
+--disable-static \
+--disable-debug
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: extra-i686/xfce4-screenshooter.install
===
--- extra-i686/xfce4-screenshooter.install  2015-01-25 09:48:44 UTC (rev 
229975)
+++ extra-i686/xfce4-screenshooter.install  2015-01-25 09:48:56 UTC (rev 
229976)
@@ -1,13 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: xfce4-screenshooter/repos/extra-i686/xfce4-screenshooter.install (from 
rev 229975, xfce4-screenshooter/trunk/xfce4-screenshooter.install)
===
--- extra-i686/xfce4-screenshooter.install  (rev 0)
+++ extra-i686/xfce4-screenshooter.install  2015-01-25 09:48:56 UTC (rev 
229976)
@@ -0,0 +1,13 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}

[arch-commits] Commit in mgba/trunk (PKGBUILD component.patch)

2015-01-25 Thread Bartłomiej Piotrowski
Date: Sunday, January 25, 2015 @ 11:48:39
  Author: bpiotrowski
Revision: 126558

upgpkg: mgba 0.1.1-1

new upstream release

Modified:
  mgba/trunk/PKGBUILD
Deleted:
  mgba/trunk/component.patch

-+
 PKGBUILD|   23 +
 component.patch |   58 --
 2 files changed, 10 insertions(+), 71 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-01-25 10:17:44 UTC (rev 126557)
+++ PKGBUILD2015-01-25 10:48:39 UTC (rev 126558)
@@ -4,28 +4,22 @@
 
 pkgbase=mgba
 pkgname=('libmgba' 'mgba-sdl' 'mgba-qt')
-pkgver=0.1.0
-pkgrel=5
-pkgdesc='A Nintendo Gameboy Advance Emulator focusing on both speed and 
accuracy'
+pkgver=0.1.1
+pkgrel=1
 arch=('i686' 'x86_64')
-url=https://endrift.com/mgba/;
+url='https://endrift.com/mgba/'
 license=('custom:MPL2')
 makedepends=('cmake' 'qt5-base' 'sdl2' 'zlib' 'libpng' 'libzip' 'libedit'
  'ffmpeg' 'imagemagick' 'desktop-file-utils')
 source=(https://github.com/mgba-emu/mgba/archive/$pkgver.tar.gz
-mgba.desktop
-component.patch)
-sha1sums=('a3cefcc31453904a01c5d537b49ed6a62cf6a474'
-  '0f6f43ed45b702f6571c254d4717fbc1fe15e845'
-  'a58b27e29f2ffe023859ebfbd0d007c822f79073')
+mgba.desktop)
+sha1sums=('8ea1c347bb609690e5c0dc1d21aaf3b97241d903'
+  '0f6f43ed45b702f6571c254d4717fbc1fe15e845')
 
 prepare() {
   [[ ! -d build ]]  mkdir build || rm -rf build
 
-  cd mgba-$pkgver
-  patch -p1 -i ../component.patch
-
-  cd res
+  cd mgba-$pkgver/res
   convert mgba-1024.png -resize 256x256 mgba-256.png
 }
 
@@ -36,6 +30,7 @@
 }
 
 package_libmgba() {
+  pkgdesc='Shared library of mGBA'
   depends=('zlib' 'libpng' 'libzip' 'libedit' 'ffmpeg' 'imagemagick')
 
   cmake -DCOMPONENT=libmgba mgba-$pkgver -DCMAKE_INSTALL_PREFIX=$pkgdir/usr \
@@ -44,6 +39,7 @@
 }
 
 package_mgba-sdl() {
+  pkgdesc='A Nintendo Gameboy Advance Emulator focusing on both speed and 
accuracy'
   depends=('libmgba' 'sdl2')
 
   cmake -DCOMPONENT=mgba-sdl mgba-$pkgver -DCMAKE_INSTALL_PREFIX=$pkgdir/usr 
\
@@ -54,6 +50,7 @@
 }
 
 package_mgba-qt() {
+  pkgdesc='A Nintendo Gameboy Advance Emulator focusing on both speed and 
accuracy. Qt5 UI.'
   depends=('libmgba' 'qt5-base' 'sdl2')
 
   cmake -DCOMPONENT=mgba-qt mgba-$pkgver -DCMAKE_INSTALL_PREFIX=$pkgdir/usr \

Deleted: component.patch
===
--- component.patch 2015-01-25 10:17:44 UTC (rev 126557)
+++ component.patch 2015-01-25 10:48:39 UTC (rev 126558)
@@ -1,58 +0,0 @@
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index 141d0b3..f082190 100644
 a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -207,7 +207,7 @@ add_library(${BINARY_NAME} SHARED
-   ${OS_SRC}
-   ${THIRD_PARTY_SRC})
- target_link_libraries(${BINARY_NAME} m ${DEBUGGER_LIB} ${OS_LIB} 
${DEPENDENCY_LIB})
--install(TARGETS ${BINARY_NAME} DESTINATION lib)
-+install(TARGETS ${BINARY_NAME} DESTINATION lib COMPONENT lib${BINARY_NAME})
- set_target_properties(${BINARY_NAME} PROPERTIES VERSION ${LIB_VERSION_STRING} 
SOVERSION ${LIB_VERSION_ABI})
- 
- if(BUILD_SDL)
-@@ -227,8 +227,8 @@ if(BUILD_PERF)
- 
-   add_executable(${BINARY_NAME}-perf ${PERF_SRC})
-   target_link_libraries(${BINARY_NAME}-perf ${BINARY_NAME} ${PERF_LIB})
--  install(TARGETS ${BINARY_NAME}-perf DESTINATION bin)
--  install(FILES ${CMAKE_SOURCE_DIR}/tools/perf.py DESTINATION 
${CMAKE_INSTALL_LIBDIR}/${BINARY_NAME})
-+  install(TARGETS ${BINARY_NAME}-perf DESTINATION bin COMPONENT 
${BINARY_NAME}-perf)
-+  install(FILES ${CMAKE_SOURCE_DIR}/tools/perf.py DESTINATION 
${CMAKE_INSTALL_LIBDIR}/${BINARY_NAME} COMPONENT ${BINARY_NAME}-perf)
- endif()
- 
- # Packaging
-diff --git a/src/platform/qt/CMakeLists.txt b/src/platform/qt/CMakeLists.txt
-index 7fc53a2..295c405 100644
 a/src/platform/qt/CMakeLists.txt
-+++ b/src/platform/qt/CMakeLists.txt
-@@ -89,7 +89,9 @@ set_target_properties(${BINARY_NAME}-qt PROPERTIES 
MACOSX_BUNDLE_INFO_PLIST ${CM
- list(APPEND QT_LIBRARIES Qt5::Widgets Qt5::OpenGL)
- target_link_libraries(${BINARY_NAME}-qt ${PLATFORM_LIBRARY} ${OPENGL_LIBRARY} 
${BINARY_NAME} ${QT_LIBRARIES})
- 
--install(TARGETS ${BINARY_NAME}-qt RUNTIME DESTINATION bin BUNDLE DESTINATION 
/Applications)
-+install(TARGETS ${BINARY_NAME}-qt
-+  RUNTIME DESTINATION bin COMPONENT ${BINARY_NAME}-qt
-+  BUNDLE DESTINATION ${CMAKE_INSTALL_PREFIX}/Applications COMPONENT 
${BINARY_NAME}-qt)
- if(APPLE OR WIN32)
-   set_target_properties(${BINARY_NAME}-qt PROPERTIES OUTPUT_NAME 
${PROJECT_NAME})
- endif()
-diff --git a/src/platform/sdl/CMakeLists.txt b/src/platform/sdl/CMakeLists.txt
-index d12d718..517057d 100644
 a/src/platform/sdl/CMakeLists.txt
-+++ b/src/platform/sdl/CMakeLists.txt
-@@ -39,7 +39,7 @@ if(BUILD_RASPI)
-   set(CMAKE_C_FLAGS ${CMAKE_C_FLAGS} -fgnu89-inline)
-   add_executable(${BINARY_NAME}-rpi 

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

2015-01-25 Thread Kyle Keen
Date: Sunday, January 25, 2015 @ 12:21:46
  Author: kkeen
Revision: 126561

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

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

--+
 /PKGBUILD|   74 +
 /gtkwave.install |   20 ++
 community-i686/PKGBUILD  |   37 --
 community-i686/gtkwave.install   |   10 -
 community-x86_64/PKGBUILD|   37 --
 community-x86_64/gtkwave.install |   10 -
 6 files changed, 94 insertions(+), 94 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-01-25 11:21:25 UTC (rev 126560)
+++ community-i686/PKGBUILD 2015-01-25 11:21:46 UTC (rev 126561)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen keen...@gmail.com
-# Contributor: Thomas Dziedzic  gostrc at gmail 
-# Contributor: Jared Casper jaredcas...@gmail.com
-
-pkgname=gtkwave
-pkgver=3.3.62
-pkgrel=1
-pkgdesc='A wave viewer which reads LXT, LXT2, VZT, GHW and VCD/EVCD files'
-arch=('i686' 'x86_64')
-url='http://gtkwave.sourceforge.net'
-license=('GPL' 'MIT')
-depends=('bzip2' 'xz' 'gtk2')
-makedepends=('gperf')
-install='gtkwave.install'
-source=(http://gtkwave.sourceforge.net/gtkwave-${pkgver}.tar.gz;)
-md5sums=('8764969c3363cce5ed6b5da56771cd71')
-
-build() {
-  cd $srcdir/gtkwave-$pkgver
-
-  ./configure \
---prefix=/usr \
---disable-tcl
-
-  make CFLAGS=-D_LARGEFILE64_SOURCE
-}
-
-package() {
-  cd $srcdir/gtkwave-$pkgver
-
-  make DESTDIR=${pkgdir} install
-
-  install -D -m644 $srcdir/gtkwave-$pkgver/LICENSE.TXT \
-$pkgdir/usr/share/licenses/gtkwave/LICENSE.TXT
-}
-

Copied: gtkwave/repos/community-i686/PKGBUILD (from rev 126560, 
gtkwave/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-01-25 11:21:46 UTC (rev 126561)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Kyle Keen keen...@gmail.com
+# Contributor: Thomas Dziedzic  gostrc at gmail 
+# Contributor: Jared Casper jaredcas...@gmail.com
+
+pkgname=gtkwave
+pkgver=3.3.64
+pkgrel=1
+pkgdesc='A wave viewer which reads LXT, LXT2, VZT, GHW and VCD/EVCD files'
+arch=('i686' 'x86_64')
+url='http://gtkwave.sourceforge.net'
+license=('GPL' 'MIT')
+depends=('bzip2' 'xz' 'gtk2')
+makedepends=('gperf')
+install='gtkwave.install'
+source=(http://gtkwave.sourceforge.net/gtkwave-${pkgver}.tar.gz;)
+md5sums=('a66b7a0f91345423846862f3c956d9e5')
+
+build() {
+  cd $srcdir/gtkwave-$pkgver
+
+  ./configure \
+--prefix=/usr \
+--disable-tcl
+
+  make CFLAGS=-D_LARGEFILE64_SOURCE
+}
+
+package() {
+  cd $srcdir/gtkwave-$pkgver
+
+  make DESTDIR=${pkgdir} install
+
+  install -D -m644 $srcdir/gtkwave-$pkgver/LICENSE.TXT \
+$pkgdir/usr/share/licenses/gtkwave/LICENSE.TXT
+}
+

Deleted: community-i686/gtkwave.install
===
--- community-i686/gtkwave.install  2015-01-25 11:21:25 UTC (rev 126560)
+++ community-i686/gtkwave.install  2015-01-25 11:21:46 UTC (rev 126561)
@@ -1,10 +0,0 @@
-post_install() {
-  echo 'Make sure you copy the /usr/share/gtkwave/examples/gtkwaverc file to'
-  echo 'your home directory (as .gtkwaverc) or to your VCD project directory.'
-  echo 'It contains the prefs for a good configuration that most people find'
-  echo 'ergonomic.  It is not strictly necessary however.'
-  _desktop $1
-}
-
-# desktop-file-utils breaks the build, so no update-desktop-database here
-

Copied: gtkwave/repos/community-i686/gtkwave.install (from rev 126560, 
gtkwave/trunk/gtkwave.install)
===
--- community-i686/gtkwave.install  (rev 0)
+++ community-i686/gtkwave.install  2015-01-25 11:21:46 UTC (rev 126561)
@@ -0,0 +1,10 @@
+post_install() {
+  echo 'Make sure you copy the /usr/share/gtkwave/examples/gtkwaverc file to'
+  echo 'your home directory (as .gtkwaverc) or to your VCD project directory.'
+  echo 'It contains the prefs for a good configuration that most people find'
+  echo 'ergonomic.  It is not strictly necessary however.'
+  _desktop $1
+}
+
+# desktop-file-utils breaks the build, so no update-desktop-database here
+

Deleted: community-x86_64/PKGBUILD

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

2015-01-25 Thread Kyle Keen
Date: Sunday, January 25, 2015 @ 12:21:25
  Author: kkeen
Revision: 126560

upgpkg: gtkwave 3.3.64-1

Modified:
  gtkwave/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-25 10:48:51 UTC (rev 126559)
+++ PKGBUILD2015-01-25 11:21:25 UTC (rev 126560)
@@ -4,7 +4,7 @@
 # Contributor: Jared Casper jaredcas...@gmail.com
 
 pkgname=gtkwave
-pkgver=3.3.62
+pkgver=3.3.64
 pkgrel=1
 pkgdesc='A wave viewer which reads LXT, LXT2, VZT, GHW and VCD/EVCD files'
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 makedepends=('gperf')
 install='gtkwave.install'
 source=(http://gtkwave.sourceforge.net/gtkwave-${pkgver}.tar.gz;)
-md5sums=('8764969c3363cce5ed6b5da56771cd71')
+md5sums=('a66b7a0f91345423846862f3c956d9e5')
 
 build() {
   cd $srcdir/gtkwave-$pkgver


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

2015-01-25 Thread Kyle Keen
Date: Sunday, January 25, 2015 @ 12:39:07
  Author: kkeen
Revision: 126567

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

Added:
  hiawatha/repos/community-i686/PKGBUILD
(from rev 126566, hiawatha/trunk/PKGBUILD)
  hiawatha/repos/community-i686/hiawatha.conf.sample
(from rev 126566, hiawatha/trunk/hiawatha.conf.sample)
  hiawatha/repos/community-i686/hiawatha.service
(from rev 126566, hiawatha/trunk/hiawatha.service)
  hiawatha/repos/community-x86_64/PKGBUILD
(from rev 126566, hiawatha/trunk/PKGBUILD)
  hiawatha/repos/community-x86_64/hiawatha.conf.sample
(from rev 126566, hiawatha/trunk/hiawatha.conf.sample)
  hiawatha/repos/community-x86_64/hiawatha.service
(from rev 126566, hiawatha/trunk/hiawatha.service)
Deleted:
  hiawatha/repos/community-i686/PKGBUILD
  hiawatha/repos/community-i686/hiawatha.conf.sample
  hiawatha/repos/community-i686/hiawatha.service
  hiawatha/repos/community-x86_64/PKGBUILD
  hiawatha/repos/community-x86_64/hiawatha.conf.sample
  hiawatha/repos/community-x86_64/hiawatha.service

---+
 /PKGBUILD |  178 
 /hiawatha.conf.sample |  228 
 /hiawatha.service |   32 
 community-i686/PKGBUILD   |   89 
 community-i686/hiawatha.conf.sample   |  114 
 community-i686/hiawatha.service   |   16 --
 community-x86_64/PKGBUILD |   89 
 community-x86_64/hiawatha.conf.sample |  114 
 community-x86_64/hiawatha.service |   16 --
 9 files changed, 438 insertions(+), 438 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-01-25 11:38:43 UTC (rev 126566)
+++ community-i686/PKGBUILD 2015-01-25 11:39:07 UTC (rev 126567)
@@ -1,89 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen keen...@gmail.com
-# Contributor: Kurt Marasco celilo _at_ lavabit _dot_ com
-# Contributor: Pascal Ernster aur at hardfalcon dot net
-
-pkgname=hiawatha
-pkgver=9.10
-pkgrel=1
-pkgdesc=Secure and advanced webserver
-url=https://www.hiawatha-webserver.org/;
-arch=('i686' 'x86_64')
-license=('GPL2')
-depends=('libxslt' 'polarssl')
-optdepends=('php-fpm: PHP fastcgi')
-makedepends=('cmake')
-backup=(
-'etc/hiawatha/hiawatha.conf'
-'etc/hiawatha/cgi-wrapper.conf'
-'etc/hiawatha/mimetype.conf'
-)
-
-source=(
-https://hiawatha-webserver.org/files/$pkgname-$pkgver.tar.gz; 
-'hiawatha.conf.sample'
-'hiawatha.service'
-)
-sha256sums=('c9f8650b43b3cdf7ad9550cfb0ef7516b7faf1b1ff20bc9eacab95c43f6c14a2'
-'4671d2586cbe3cd6497b16ff422c6143cdab40641ef3c9c4988c478351a8f5e7'
-'fb789b12bb6246237b15a9244f58317abdd53e5ca4eb55880e40a498b2237155')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  sed -i 's/www-data/http/g' extra/logrotate.in
-
-  mkdir -p build
-  cd build
-
-  cmake ../ -DCMAKE_INSTALL_PREFIX=/ \
--DCMAKE_INSTALL_BINDIR=/usr/bin \
--DCMAKE_INSTALL_SBINDIR=/usr/bin \
--DCMAKE_INSTALL_SYSCONFDIR=/etc/hiawatha \
--DCMAKE_INSTALL_LIBDIR=/usr/lib \
--DCMAKE_INSTALL_MANDIR=/usr/share/man \
--DCONFIG_DIR=/etc/hiawatha \
--DLOG_DIR=/var/log/hiawatha \
--DPID_DIR=/run \
--DENABLE_SSL=ON \
--DUSE_SYSTEM_POLARSSL=ON \
--DWEBROOT_DIR=/srv/http/hiawatha \
--DWORK_DIR=/var/lib/hiawatha
-  make
-
-  # Features enabled by default
-  # -DENABLE_CACHE
-  # -DENABLE_IPV6
-  # -DENABLE_RPROXY
-  # -DENABLE_TOOLKIT
-  # -DENABLE_XSLT
-
-  # Features disabled by default
-  # -DENABLE_DEBUG
-  # -DENABLE_MONITOR
-  # -DENABLE_TOMAHAWK  
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver/build
-  make DESTDIR=$pkgdir/ install
- 
-  rmdir $pkgdir/run
-  rm $pkgdir/srv/http/hiawatha/index.html
-  rmdir -p --ignore-fail-on-non-empty $pkgdir/srv/http/hiawatha
- 
-  # Update stock hiawatha.conf
-  sed -e 's|#ServerId = www-data|ServerId = http|' \
-  -e 's|/var/www/|/srv/http/|g' \
-  -e 's|//|/|g' \
-  -e 's|#CGIextension = cgi|\n#TriggerOnCGIstatus = no|g' \
-  -e 's|ConnectTo = 127.0.0.1:2005|ConnectTo = 127.0.0.1:9000|g' \
-  -e 's|#  Extension = php|\n#   SessionTimeout = 30|g' \
-  -e 's|#ErrorHandler = 404:/error.cgi|\n#UseGZfile = yes|g' \
-  -i $pkgdir/etc/hiawatha/hiawatha.conf
-  
-  install -Dm644 logrotate.d/hiawatha $pkgdir/etc/logrotate.d/hiawatha
-  install -Dm755 $srcdir/hiawatha.service 
$pkgdir/usr/lib/systemd/system/hiawatha.service
-  install -Dm644 $srcdir/hiawatha.conf.sample $pkgdir/etc/hiawatha/
-}
-

Copied: hiawatha/repos/community-i686/PKGBUILD (from rev 126566, 
hiawatha/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)

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

2015-01-25 Thread Lukas Fleischer
Date: Sunday, January 25, 2015 @ 09:34:03
  Author: lfleischer
Revision: 126548

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

Added:
  stunnel/repos/community-i686/Makefile.patch
(from rev 126547, stunnel/trunk/Makefile.patch)
  stunnel/repos/community-i686/PKGBUILD
(from rev 126547, stunnel/trunk/PKGBUILD)
  stunnel/repos/community-i686/stunnel.install
(from rev 126547, stunnel/trunk/stunnel.install)
  stunnel/repos/community-i686/stunnel.tmpfiles.conf
(from rev 126547, stunnel/trunk/stunnel.tmpfiles.conf)
  stunnel/repos/community-x86_64/Makefile.patch
(from rev 126547, stunnel/trunk/Makefile.patch)
  stunnel/repos/community-x86_64/PKGBUILD
(from rev 126547, stunnel/trunk/PKGBUILD)
  stunnel/repos/community-x86_64/stunnel.install
(from rev 126547, stunnel/trunk/stunnel.install)
  stunnel/repos/community-x86_64/stunnel.tmpfiles.conf
(from rev 126547, stunnel/trunk/stunnel.tmpfiles.conf)
Deleted:
  stunnel/repos/community-i686/Makefile.patch
  stunnel/repos/community-i686/PKGBUILD
  stunnel/repos/community-i686/stunnel.install
  stunnel/repos/community-i686/stunnel.tmpfiles.conf
  stunnel/repos/community-x86_64/Makefile.patch
  stunnel/repos/community-x86_64/PKGBUILD
  stunnel/repos/community-x86_64/stunnel.install
  stunnel/repos/community-x86_64/stunnel.tmpfiles.conf

+
 /Makefile.patch|   24 +++
 /PKGBUILD  |  106 +++
 /stunnel.install   |   62 ++
 /stunnel.tmpfiles.conf |2 
 community-i686/Makefile.patch  |   12 ---
 community-i686/PKGBUILD|   53 ---
 community-i686/stunnel.install |   31 -
 community-i686/stunnel.tmpfiles.conf   |1 
 community-x86_64/Makefile.patch|   12 ---
 community-x86_64/PKGBUILD  |   53 ---
 community-x86_64/stunnel.install   |   31 -
 community-x86_64/stunnel.tmpfiles.conf |1 
 12 files changed, 194 insertions(+), 194 deletions(-)

Deleted: community-i686/Makefile.patch
===
--- community-i686/Makefile.patch   2015-01-25 08:33:47 UTC (rev 126547)
+++ community-i686/Makefile.patch   2015-01-25 08:34:03 UTC (rev 126548)
@@ -1,12 +0,0 @@
 tools/Makefile.in  2010-03-31 04:45:09.0 -0500
-+++ tools/Makefile.in  2010-04-11 17:17:41.0 -0500
-@@ -334,8 +334,7 @@
- 
- info-am:
- 
--install-data-am: install-confDATA install-data-local \
--  install-examplesDATA
-+install-data-am: install-confDATA install-examplesDATA
- 
- install-dvi: install-dvi-am
- 

Copied: stunnel/repos/community-i686/Makefile.patch (from rev 126547, 
stunnel/trunk/Makefile.patch)
===
--- community-i686/Makefile.patch   (rev 0)
+++ community-i686/Makefile.patch   2015-01-25 08:34:03 UTC (rev 126548)
@@ -0,0 +1,12 @@
+--- tools/Makefile.in  2010-03-31 04:45:09.0 -0500
 tools/Makefile.in  2010-04-11 17:17:41.0 -0500
+@@ -334,8 +334,7 @@
+ 
+ info-am:
+ 
+-install-data-am: install-confDATA install-data-local \
+-  install-examplesDATA
++install-data-am: install-confDATA install-examplesDATA
+ 
+ install-dvi: install-dvi-am
+ 

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-01-25 08:33:47 UTC (rev 126547)
+++ community-i686/PKGBUILD 2015-01-25 08:34:03 UTC (rev 126548)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Lukas Fleischer archlinux at cryptocrack dot de
-# Contributor: Kaiting Chen kaitocr...@gmail.com
-# Contributor: Daniel J Griffiths ghost1...@archlinux.us
-# Contributor: Kevin Piche ke...@archlinux.org
-
-pkgname=stunnel
-pkgver=5.09
-pkgrel=1
-pkgdesc=A program that allows you to encrypt arbitrary TCP connections inside 
SSL
-arch=('i686' 'x86_64')
-url=http://www.stunnel.org;
-license=('GPL')
-depends=('openssl')
-install=$pkgname.install
-source=(https://www.stunnel.org/downloads/$pkgname-$pkgver.tar.gz{,.asc}
-'Makefile.patch'
-'stunnel.tmpfiles.conf')
-md5sums=('deab04ec8b78ec3102b36113b28b4cce'
- 'SKIP'
- '579f198ecb90a42fcbfd8a4e48006264'
- '2e065a39998e57727ee79887bbd1751e')
-validpgpkeys=('F6B1BFC55F32243FB2C8919AFCD53E9D74C732D1')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  # don't create a certificate...
-  patch -p0 $srcdir/Makefile.patch
-
-  ./configure --prefix=/usr \
---sysconfdir=/etc \
---localstatedir=/var \
---enable-ipv6 \
---disable-libwrap
-
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-
-  make DESTDIR=$pkgdir install
-
-  install -Dm644 tools/stunnel.cnf 
$pkgdir/etc/stunnel/stunnel-openssl.cnf-sample
-  install -Dm644 tools/stunnel.service 

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

2015-01-25 Thread Allan McRae
Date: Sunday, January 25, 2015 @ 09:35:24
  Author: allan
Revision: 229972

archrelease: copy trunk to testing-any

Added:
  automake/repos/testing-any/
  automake/repos/testing-any/PKGBUILD
(from rev 229971, automake/trunk/PKGBUILD)
  automake/repos/testing-any/automake.install
(from rev 229971, automake/trunk/automake.install)

--+
 PKGBUILD |   43 +++
 automake.install |   22 ++
 2 files changed, 65 insertions(+)

Copied: automake/repos/testing-any/PKGBUILD (from rev 229971, 
automake/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2015-01-25 08:35:24 UTC (rev 229972)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+# Contributor: judd jvi...@zeroflux.org
+
+pkgname=automake
+pkgver=1.15
+pkgrel=1
+pkgdesc=A GNU tool for automatically creating Makefiles
+arch=('any')
+license=('GPL')
+url=http://www.gnu.org/software/automake;
+groups=('base-devel')
+depends=('perl' 'bash')
+makedepends=('autoconf')
+checkdepends=('dejagnu' 'python' 'gcc-fortran' 'java-environment' 'vala' 
'emacs' 'cscope')
+install=automake.install
+source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz{,.sig})
+md5sums=('9a1ddb0e053474d9d1105cfe39b0c48d'
+ 'SKIP')
+validpgpkeys=('E1622F96D2BB4E58018EEF9860F906016E407573')   # Stefano Lattarini
+
+prepare() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  # skip failing test...
+  sed -i /instmany-python.sh/d Makefile.in
+}
+
+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
+}

Copied: automake/repos/testing-any/automake.install (from rev 229971, 
automake/trunk/automake.install)
===
--- testing-any/automake.install(rev 0)
+++ testing-any/automake.install2015-01-25 08:35:24 UTC (rev 229972)
@@ -0,0 +1,22 @@
+infodir=/usr/share/info
+filelist=(automake.info automake.info-1 automake.info-2)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info $infodir/$file.gz $infodir/dir 2 /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info --delete $infodir/$file.gz $infodir/dir 2 /dev/null
+  done
+}
+
+# vim:set ts=2 sw=2 et:


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

2015-01-25 Thread Allan McRae
Date: Sunday, January 25, 2015 @ 09:34:35
  Author: allan
Revision: 229971

upgpkg: automake 1.15-1

upstream update

Modified:
  automake/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-24 18:39:32 UTC (rev 229970)
+++ PKGBUILD2015-01-25 08:34:35 UTC (rev 229971)
@@ -3,7 +3,7 @@
 # Contributor: judd jvi...@zeroflux.org
 
 pkgname=automake
-pkgver=1.14.1
+pkgver=1.15
 pkgrel=1
 pkgdesc=A GNU tool for automatically creating Makefiles
 arch=('any')
@@ -15,9 +15,9 @@
 checkdepends=('dejagnu' 'python' 'gcc-fortran' 'java-environment' 'vala' 
'emacs' 'cscope')
 install=automake.install
 source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz{,.sig})
-md5sums=('7fc29854c520f56b07aa232a0f880292'
+md5sums=('9a1ddb0e053474d9d1105cfe39b0c48d'
  'SKIP')
-validpgpkeys=('A0460631BECA5C1CCD1C8362FC818E17429F96EA')   # Stefano Lattarini
+validpgpkeys=('E1622F96D2BB4E58018EEF9860F906016E407573')   # Stefano Lattarini
 
 prepare() {
   cd ${srcdir}/${pkgname}-${pkgver}


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

2015-01-25 Thread Lukas Fleischer
Date: Sunday, January 25, 2015 @ 09:33:47
  Author: lfleischer
Revision: 126547

upgpkg: stunnel 5.10-1

Upstream update.

Modified:
  stunnel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-25 07:56:57 UTC (rev 126546)
+++ PKGBUILD2015-01-25 08:33:47 UTC (rev 126547)
@@ -5,7 +5,7 @@
 # Contributor: Kevin Piche ke...@archlinux.org
 
 pkgname=stunnel
-pkgver=5.09
+pkgver=5.10
 pkgrel=1
 pkgdesc=A program that allows you to encrypt arbitrary TCP connections inside 
SSL
 arch=('i686' 'x86_64')
@@ -16,7 +16,7 @@
 source=(https://www.stunnel.org/downloads/$pkgname-$pkgver.tar.gz{,.asc}
 'Makefile.patch'
 'stunnel.tmpfiles.conf')
-md5sums=('deab04ec8b78ec3102b36113b28b4cce'
+md5sums=('a0edda805eb7d6ea600a230fb0979ea1'
  'SKIP'
  '579f198ecb90a42fcbfd8a4e48006264'
  '2e065a39998e57727ee79887bbd1751e')


[arch-commits] Commit in sage-data-graphs/repos/community-any (PKGBUILD PKGBUILD)

2015-01-25 Thread Antonio Rojas
Date: Sunday, January 25, 2015 @ 10:03:58
  Author: arojas
Revision: 126550

archrelease: copy trunk to community-any

Added:
  sage-data-graphs/repos/community-any/PKGBUILD
(from rev 126549, sage-data-graphs/trunk/PKGBUILD)
Deleted:
  sage-data-graphs/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-01-25 09:03:30 UTC (rev 126549)
+++ PKGBUILD2015-01-25 09:03:58 UTC (rev 126550)
@@ -1,20 +0,0 @@
-# Maintainer: Antonio Rojas aro...@archlinux.org
-
-_dbname=graphs
-pkgname=sage-data-$_dbname
-pkgver=20120404
-pkgrel=1
-pkgdesc=A database of graphs for Sage
-arch=('any')
-url=http://www.sagemath.org;
-license=('GPL')
-depends=()
-makedepends=()
-source=(http://www.sagemath.org/packages/upstream/graphs/$_dbname-$pkgver.tar.bz2;)
-md5sums=('e738851391f5351bbd5d1a0e5e952fe3')
-
-package() {
-  cd $_dbname-$pkgver
-  mkdir -p $pkgdir/usr/share/sage/$_dbname
-  install -m644 * $pkgdir/usr/share/sage/$_dbname
-}

Copied: sage-data-graphs/repos/community-any/PKGBUILD (from rev 126549, 
sage-data-graphs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-01-25 09:03:58 UTC (rev 126550)
@@ -0,0 +1,21 @@
+# $Id$
+# Maintainer: Antonio Rojas aro...@archlinux.org
+
+_dbname=graphs
+pkgname=sage-data-$_dbname
+pkgver=20130920
+pkgrel=1
+pkgdesc=A database of graphs for Sage
+arch=('any')
+url=http://www.sagemath.org;
+license=('GPL')
+depends=()
+makedepends=()
+source=(http://www.sagemath.org/packages/upstream/graphs/$_dbname-$pkgver.tar.bz2;)
+md5sums=('2621b6cfd61797ab0be179653d7bcf3e')
+
+package() {
+  cd $_dbname-$pkgver
+  mkdir -p $pkgdir/usr/share/sage/$_dbname
+  install -m644 * $pkgdir/usr/share/sage/$_dbname
+}


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

2015-01-25 Thread Antonio Rojas
Date: Sunday, January 25, 2015 @ 10:05:02
  Author: arojas
Revision: 126551

Add missing makedepends

Modified:
  sage-mathematics/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-25 09:03:58 UTC (rev 126550)
+++ PKGBUILD2015-01-25 09:05:02 UTC (rev 126551)
@@ -25,7 +25,8 @@
   'buckygen: for generating fullerene graphs' 'plantri: for generating some 
classes of graphs' 'benzene: for generating fusenes and benzenoids'
   'libfes: exhaustive search of solutions for boolean polynomial systems' 
'lrs: computing volume of polytopes'
   'coxeter3: Coxeter groups implementation' 'cryptominisat: SAT solver' 
'lrcalc: fast computation of LR coefficients')
-makedepends=('cython2' 'boost' 'scons' 'ratpoints' 'symmetrica' 'fflas-ffpack' 
'python2-jinja' 'coin-or-cbc' 'mcqd')
+makedepends=('cython2' 'boost' 'scons' 'ratpoints' 'symmetrica' 'fflas-ffpack' 
'python2-jinja' 'coin-or-cbc' 'mcqd' 'libfes' 'coxeter3'
+  'cryptominisat' 'lrcalc')
 source=(https://github.com/sagemath/sage/archive/$pkgver.tar.gz; 
http://www.sagemath.org/packages/upstream/pexpect/pexpect-2.0.tar.bz2; 
 'package.patch' 'c_lib.patch' 'env.patch' 'paths.patch' 'blas.patch' 
'clean.patch' 'skip-check.patch' 
 'pexpect-env.patch' 'pexpect-del.patch' 'fes02.patch')


[arch-commits] Commit in sage-data-graphs/trunk (PKGBUILD)

2015-01-25 Thread Antonio Rojas
Date: Sunday, January 25, 2015 @ 10:03:30
  Author: arojas
Revision: 126549

Update to 20130920

Modified:
  sage-data-graphs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-25 08:34:03 UTC (rev 126548)
+++ PKGBUILD2015-01-25 09:03:30 UTC (rev 126549)
@@ -3,7 +3,7 @@
 
 _dbname=graphs
 pkgname=sage-data-$_dbname
-pkgver=20120404
+pkgver=20130920
 pkgrel=1
 pkgdesc=A database of graphs for Sage
 arch=('any')
@@ -12,7 +12,7 @@
 depends=()
 makedepends=()
 
source=(http://www.sagemath.org/packages/upstream/graphs/$_dbname-$pkgver.tar.bz2;)
-md5sums=('e738851391f5351bbd5d1a0e5e952fe3')
+md5sums=('2621b6cfd61797ab0be179653d7bcf3e')
 
 package() {
   cd $_dbname-$pkgver


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

2015-01-25 Thread Jelle van der Waa
Date: Sunday, January 25, 2015 @ 10:24:47
  Author: jelle
Revision: 126552

upgpkg: python-pyinotify 0.9.5-1

Modified:
  python-pyinotify/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-25 09:05:02 UTC (rev 126551)
+++ PKGBUILD2015-01-25 09:24:47 UTC (rev 126552)
@@ -4,8 +4,8 @@
 # Contributor: Evangelos Foutras foutre...@gmail.com
 
 pkgname=('python-pyinotify' 'python2-pyinotify')
-pkgver=0.9.4
-pkgrel=2
+pkgver=0.9.5
+pkgrel=1
 pkgdesc='Python module used for monitoring filesystems events on Linux 
platforms with inotify.'
 arch=('any')
 url=http://github.com/seb-m/pyinotify;
@@ -12,7 +12,7 @@
 license=('custom:MIT')
 makedepends=('python' 'python2')
 
source=(http://seb.dbzteam.org/pub/pyinotify/releases/pyinotify-${pkgver}.tar.gz;)
-md5sums=('701c91854d241514ede7ffe72086566d')
+md5sums=('e4f742b2d12cc404e751d11afb8f01d5')
 
 
 build() {
@@ -25,8 +25,6 @@
   cd $srcdir/pyinotify-$pkgver
 
   python3 setup.py build
-
-
 }
 
 package_python-pyinotify() {


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

2015-01-25 Thread Jelle van der Waa
Date: Sunday, January 25, 2015 @ 10:24:57
  Author: jelle
Revision: 126553

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-01-25 09:24:47 UTC (rev 126552)
+++ PKGBUILD2015-01-25 09:24:57 UTC (rev 126553)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Thomas Dziedzic  gostrc at gmail 
-# Contributor: Daniel J Griffiths ghost1...@archlinux.us
-# Contributor: Evangelos Foutras foutre...@gmail.com
-
-pkgname=('python-pyinotify' 'python2-pyinotify')
-pkgver=0.9.4
-pkgrel=2
-pkgdesc='Python module used for monitoring filesystems events on Linux 
platforms with inotify.'
-arch=('any')
-url=http://github.com/seb-m/pyinotify;
-license=('custom:MIT')
-makedepends=('python' 'python2')
-source=(http://seb.dbzteam.org/pub/pyinotify/releases/pyinotify-${pkgver}.tar.gz;)
-md5sums=('701c91854d241514ede7ffe72086566d')
-
-
-build() {
-  cp -r $srcdir/pyinotify-$pkgver  $srcdir/pyinotify2-$pkgver
-
-  cd $srcdir/pyinotify2-$pkgver
-
-  python2 setup.py build
-
-  cd $srcdir/pyinotify-$pkgver
-
-  python3 setup.py build
-
-
-}
-
-package_python-pyinotify() {
-  depends=('python')
-
-  cd $srcdir/pyinotify-$pkgver
-
-  python3 setup.py install --root=${pkgdir} -O1
-
-  install -d ${pkgdir}/usr/share/licenses/python-pyinotify
-  install -m644 COPYING \
-${pkgdir}/usr/share/licenses/python-pyinotify
-}
-
-package_python2-pyinotify() {
-  depends=('python2')
-  replaces=('pyinotify')
-
-  cd $srcdir/pyinotify2-$pkgver
-
-  sed \
--e 's_#!/usr/bin/env python_2_' \
-  -i python2/pyinotify.py
-
-  python2 setup.py install --root=${pkgdir} -O1
-
-  install -d ${pkgdir}/usr/share/licenses/python2-pyinotify
-  install -m644 COPYING \
-${pkgdir}/usr/share/licenses/python2-pyinotify
-}

Copied: python-pyinotify/repos/community-any/PKGBUILD (from rev 126552, 
python-pyinotify/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-01-25 09:24:57 UTC (rev 126553)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Thomas Dziedzic  gostrc at gmail 
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+# Contributor: Evangelos Foutras foutre...@gmail.com
+
+pkgname=('python-pyinotify' 'python2-pyinotify')
+pkgver=0.9.5
+pkgrel=1
+pkgdesc='Python module used for monitoring filesystems events on Linux 
platforms with inotify.'
+arch=('any')
+url=http://github.com/seb-m/pyinotify;
+license=('custom:MIT')
+makedepends=('python' 'python2')
+source=(http://seb.dbzteam.org/pub/pyinotify/releases/pyinotify-${pkgver}.tar.gz;)
+md5sums=('e4f742b2d12cc404e751d11afb8f01d5')
+
+
+build() {
+  cp -r $srcdir/pyinotify-$pkgver  $srcdir/pyinotify2-$pkgver
+
+  cd $srcdir/pyinotify2-$pkgver
+
+  python2 setup.py build
+
+  cd $srcdir/pyinotify-$pkgver
+
+  python3 setup.py build
+}
+
+package_python-pyinotify() {
+  depends=('python')
+
+  cd $srcdir/pyinotify-$pkgver
+
+  python3 setup.py install --root=${pkgdir} -O1
+
+  install -d ${pkgdir}/usr/share/licenses/python-pyinotify
+  install -m644 COPYING \
+${pkgdir}/usr/share/licenses/python-pyinotify
+}
+
+package_python2-pyinotify() {
+  depends=('python2')
+  replaces=('pyinotify')
+
+  cd $srcdir/pyinotify2-$pkgver
+
+  sed \
+-e 's_#!/usr/bin/env python_2_' \
+  -i python2/pyinotify.py
+
+  python2 setup.py install --root=${pkgdir} -O1
+
+  install -d ${pkgdir}/usr/share/licenses/python2-pyinotify
+  install -m644 COPYING \
+${pkgdir}/usr/share/licenses/python2-pyinotify
+}


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

2015-01-25 Thread Kyle Keen
Date: Sunday, January 25, 2015 @ 12:32:42
  Author: kkeen
Revision: 126564

upgpkg: gtkwave 3.3.64-2 FS#43496

Modified:
  gtkwave/trunk/PKGBUILD
  gtkwave/trunk/gtkwave.install

-+
 PKGBUILD|2 +-
 gtkwave.install |1 -
 2 files changed, 1 insertion(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-01-25 11:27:04 UTC (rev 126563)
+++ PKGBUILD2015-01-25 11:32:42 UTC (rev 126564)
@@ -5,7 +5,7 @@
 
 pkgname=gtkwave
 pkgver=3.3.64
-pkgrel=1
+pkgrel=2
 pkgdesc='A wave viewer which reads LXT, LXT2, VZT, GHW and VCD/EVCD files'
 arch=('i686' 'x86_64')
 url='http://gtkwave.sourceforge.net'

Modified: gtkwave.install
===
--- gtkwave.install 2015-01-25 11:27:04 UTC (rev 126563)
+++ gtkwave.install 2015-01-25 11:32:42 UTC (rev 126564)
@@ -3,7 +3,6 @@
   echo 'your home directory (as .gtkwaverc) or to your VCD project directory.'
   echo 'It contains the prefs for a good configuration that most people find'
   echo 'ergonomic.  It is not strictly necessary however.'
-  _desktop $1
 }
 
 # desktop-file-utils breaks the build, so no update-desktop-database here


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

2015-01-25 Thread Kyle Keen
Date: Sunday, January 25, 2015 @ 12:33:01
  Author: kkeen
Revision: 126565

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

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

--+
 /PKGBUILD|   74 +
 /gtkwave.install |   18 +
 community-i686/PKGBUILD  |   37 --
 community-i686/gtkwave.install   |   10 -
 community-x86_64/PKGBUILD|   37 --
 community-x86_64/gtkwave.install |   10 -
 6 files changed, 92 insertions(+), 94 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-01-25 11:32:42 UTC (rev 126564)
+++ community-i686/PKGBUILD 2015-01-25 11:33:01 UTC (rev 126565)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen keen...@gmail.com
-# Contributor: Thomas Dziedzic  gostrc at gmail 
-# Contributor: Jared Casper jaredcas...@gmail.com
-
-pkgname=gtkwave
-pkgver=3.3.64
-pkgrel=1
-pkgdesc='A wave viewer which reads LXT, LXT2, VZT, GHW and VCD/EVCD files'
-arch=('i686' 'x86_64')
-url='http://gtkwave.sourceforge.net'
-license=('GPL' 'MIT')
-depends=('bzip2' 'xz' 'gtk2')
-makedepends=('gperf')
-install='gtkwave.install'
-source=(http://gtkwave.sourceforge.net/gtkwave-${pkgver}.tar.gz;)
-md5sums=('a66b7a0f91345423846862f3c956d9e5')
-
-build() {
-  cd $srcdir/gtkwave-$pkgver
-
-  ./configure \
---prefix=/usr \
---disable-tcl
-
-  make CFLAGS=-D_LARGEFILE64_SOURCE
-}
-
-package() {
-  cd $srcdir/gtkwave-$pkgver
-
-  make DESTDIR=${pkgdir} install
-
-  install -D -m644 $srcdir/gtkwave-$pkgver/LICENSE.TXT \
-$pkgdir/usr/share/licenses/gtkwave/LICENSE.TXT
-}
-

Copied: gtkwave/repos/community-i686/PKGBUILD (from rev 126564, 
gtkwave/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-01-25 11:33:01 UTC (rev 126565)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Kyle Keen keen...@gmail.com
+# Contributor: Thomas Dziedzic  gostrc at gmail 
+# Contributor: Jared Casper jaredcas...@gmail.com
+
+pkgname=gtkwave
+pkgver=3.3.64
+pkgrel=2
+pkgdesc='A wave viewer which reads LXT, LXT2, VZT, GHW and VCD/EVCD files'
+arch=('i686' 'x86_64')
+url='http://gtkwave.sourceforge.net'
+license=('GPL' 'MIT')
+depends=('bzip2' 'xz' 'gtk2')
+makedepends=('gperf')
+install='gtkwave.install'
+source=(http://gtkwave.sourceforge.net/gtkwave-${pkgver}.tar.gz;)
+md5sums=('a66b7a0f91345423846862f3c956d9e5')
+
+build() {
+  cd $srcdir/gtkwave-$pkgver
+
+  ./configure \
+--prefix=/usr \
+--disable-tcl
+
+  make CFLAGS=-D_LARGEFILE64_SOURCE
+}
+
+package() {
+  cd $srcdir/gtkwave-$pkgver
+
+  make DESTDIR=${pkgdir} install
+
+  install -D -m644 $srcdir/gtkwave-$pkgver/LICENSE.TXT \
+$pkgdir/usr/share/licenses/gtkwave/LICENSE.TXT
+}
+

Deleted: community-i686/gtkwave.install
===
--- community-i686/gtkwave.install  2015-01-25 11:32:42 UTC (rev 126564)
+++ community-i686/gtkwave.install  2015-01-25 11:33:01 UTC (rev 126565)
@@ -1,10 +0,0 @@
-post_install() {
-  echo 'Make sure you copy the /usr/share/gtkwave/examples/gtkwaverc file to'
-  echo 'your home directory (as .gtkwaverc) or to your VCD project directory.'
-  echo 'It contains the prefs for a good configuration that most people find'
-  echo 'ergonomic.  It is not strictly necessary however.'
-  _desktop $1
-}
-
-# desktop-file-utils breaks the build, so no update-desktop-database here
-

Copied: gtkwave/repos/community-i686/gtkwave.install (from rev 126564, 
gtkwave/trunk/gtkwave.install)
===
--- community-i686/gtkwave.install  (rev 0)
+++ community-i686/gtkwave.install  2015-01-25 11:33:01 UTC (rev 126565)
@@ -0,0 +1,9 @@
+post_install() {
+  echo 'Make sure you copy the /usr/share/gtkwave/examples/gtkwaverc file to'
+  echo 'your home directory (as .gtkwaverc) or to your VCD project directory.'
+  echo 'It contains the prefs for a good configuration that most people find'
+  echo 'ergonomic.  It is not strictly necessary however.'
+}
+
+# desktop-file-utils breaks the build, so no update-desktop-database here
+

Deleted: community-x86_64/PKGBUILD

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

2015-01-25 Thread Jelle van der Waa
Date: Sunday, January 25, 2015 @ 10:28:45
  Author: jelle
Revision: 126555

archrelease: copy trunk to community-any

Added:
  s3cmd/repos/community-any/PKGBUILD
(from rev 126554, s3cmd/trunk/PKGBUILD)
Deleted:
  s3cmd/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-01-25 09:28:39 UTC (rev 126554)
+++ PKGBUILD2015-01-25 09:28:45 UTC (rev 126555)
@@ -1,22 +0,0 @@
-# $Id$
-# Maintainer: Kaiting Chen kaitocr...@gmail.com
-# Contributor: Simon Lipp a...@simon.lipp.name
-# Contributor: Daniel Grana dan...@gmail.com
-
-pkgname=s3cmd
-pkgver=1.5.0rc1
-_pkgver=1.5.0-rc1
-pkgrel=2
-pkgdesc=A command line client for Amazon S3
-arch=('any')
-url='http://s3tools.org/s3cmd'
-license=('GPL')
-depends=('python2' 'python2-dateutil')
-optdepends=('gnupg: encrypted file storage')
-source=(http://downloads.sourceforge.net/sourceforge/s3tools/$pkgname-$_pkgver.tar.gz;)
-md5sums=('eb5b461154b72890791c186ccdde13f0')
-
-package() {
-  cd ${srcdir}/${pkgname}-${_pkgver}
-  python2 setup.py install --root=$pkgdir
-}

Copied: s3cmd/repos/community-any/PKGBUILD (from rev 126554, 
s3cmd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-01-25 09:28:45 UTC (rev 126555)
@@ -0,0 +1,21 @@
+# $Id$
+# Maintainer: Kaiting Chen kaitocr...@gmail.com
+# Contributor: Simon Lipp a...@simon.lipp.name
+# Contributor: Daniel Grana dan...@gmail.com
+
+pkgname=s3cmd
+pkgver=1.5.0
+pkgrel=1
+pkgdesc=A command line client for Amazon S3
+arch=('any')
+url='http://s3tools.org/s3cmd'
+license=('GPL')
+depends=('python2' 'python2-dateutil')
+optdepends=('gnupg: encrypted file storage')
+source=(http://downloads.sourceforge.net/sourceforge/s3tools/$pkgname-$pkgver.tar.gz;)
+md5sums=('9c0d61f960ae51fa55e9d7583b6325e0')
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  python2 setup.py install --root=$pkgdir
+}


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

2015-01-25 Thread Lukas Fleischer
Date: Sunday, January 25, 2015 @ 11:17:44
  Author: lfleischer
Revision: 126557

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

Added:
  lmms/repos/community-i686/0001-Fix-calcSlope1-was-not-declared-errors.patch
(from rev 126556, 
lmms/trunk/0001-Fix-calcSlope1-was-not-declared-errors.patch)
  lmms/repos/community-i686/PKGBUILD
(from rev 126556, lmms/trunk/PKGBUILD)
  lmms/repos/community-i686/lmms-1.0.3-build-fix.patch
(from rev 126556, lmms/trunk/lmms-1.0.3-build-fix.patch)
  lmms/repos/community-i686/lmms.install
(from rev 126556, lmms/trunk/lmms.install)
  lmms/repos/community-i686/zynaddsubfx_unlink.patch
(from rev 126556, lmms/trunk/zynaddsubfx_unlink.patch)
  lmms/repos/community-x86_64/0001-Fix-calcSlope1-was-not-declared-errors.patch
(from rev 126556, 
lmms/trunk/0001-Fix-calcSlope1-was-not-declared-errors.patch)
  lmms/repos/community-x86_64/PKGBUILD
(from rev 126556, lmms/trunk/PKGBUILD)
  lmms/repos/community-x86_64/lmms-1.0.3-build-fix.patch
(from rev 126556, lmms/trunk/lmms-1.0.3-build-fix.patch)
  lmms/repos/community-x86_64/lmms.install
(from rev 126556, lmms/trunk/lmms.install)
  lmms/repos/community-x86_64/zynaddsubfx_unlink.patch
(from rev 126556, lmms/trunk/zynaddsubfx_unlink.patch)
Deleted:
  lmms/repos/community-i686/PKGBUILD
  lmms/repos/community-i686/lmms-1.0.3-build-fix.patch
  lmms/repos/community-i686/lmms.install
  lmms/repos/community-i686/zynaddsubfx_unlink.patch
  lmms/repos/community-x86_64/PKGBUILD
  lmms/repos/community-x86_64/lmms-1.0.3-build-fix.patch
  lmms/repos/community-x86_64/lmms.install
  lmms/repos/community-x86_64/zynaddsubfx_unlink.patch

+
 /PKGBUILD  |   96 

 /lmms-1.0.3-build-fix.patch|  118 
++
 /lmms.install  |   22 +
 /zynaddsubfx_unlink.patch  |   20 +
 community-i686/0001-Fix-calcSlope1-was-not-declared-errors.patch   |   43 +++
 community-i686/PKGBUILD|   48 
 community-i686/lmms-1.0.3-build-fix.patch  |   59 -
 community-i686/lmms.install|   11 
 community-i686/zynaddsubfx_unlink.patch|   10 
 community-x86_64/0001-Fix-calcSlope1-was-not-declared-errors.patch |   43 +++
 community-x86_64/PKGBUILD  |   48 
 community-x86_64/lmms-1.0.3-build-fix.patch|   59 -
 community-x86_64/lmms.install  |   11 
 community-x86_64/zynaddsubfx_unlink.patch  |   10 
 14 files changed, 342 insertions(+), 256 deletions(-)

Copied: 
lmms/repos/community-i686/0001-Fix-calcSlope1-was-not-declared-errors.patch 
(from rev 126556, lmms/trunk/0001-Fix-calcSlope1-was-not-declared-errors.patch)
===
--- community-i686/0001-Fix-calcSlope1-was-not-declared-errors.patch
(rev 0)
+++ community-i686/0001-Fix-calcSlope1-was-not-declared-errors.patch
2015-01-25 10:17:44 UTC (rev 126557)
@@ -0,0 +1,43 @@
+From d8e552de80f4a7d2834843b808369315cb5b4b40 Mon Sep 17 00:00:00 2001
+From: Daniel Winzen d...@winzen4.de
+Date: Thu, 15 Jan 2015 22:15:04 +0100
+Subject: [PATCH] Fix calcSlope1 was not declared errors
+
+---
+ plugins/monstro/Monstro.cpp | 6 +++---
+ 1 file changed, 3 insertions(+), 3 deletions(-)
+
+diff --git a/plugins/monstro/Monstro.cpp b/plugins/monstro/Monstro.cpp
+index dc51619..d93af44 100644
+--- a/plugins/monstro/Monstro.cpp
 b/plugins/monstro/Monstro.cpp
+@@ -784,7 +784,7 @@ inline void MonstroSynth::updateModulators( float * env1, 
float * env2, float *
+   }
+   else if( m_env_phase[i]  2.0f ) // attack phase
+   {
+-  env[i][f] = calcSlope1( fraction( 
m_env_phase[i] ) );
++  env[i][f] = calcSlope( i, fraction( 
m_env_phase[i] ) );
+   m_env_phase[i] = qMin( 2.0f, m_env_phase[i] + 
m_env_att[i] );
+   }
+   else if( m_env_phase[i]  3.0f ) // hold phase
+@@ -794,7 +794,7 @@ inline void MonstroSynth::updateModulators( float * env1, 
float * env2, float *
+   }
+   else if( m_env_phase[i]  4.0f ) // decay phase
+   {
+-  const sample_t s = calcSlope1( 1.0f - fraction( 
m_env_phase[i] ) );
++  const sample_t s = calcSlope( i, 1.0f - 
fraction( m_env_phase[i] ) );
+   if( s = m_env_sus[i] )
+   {
+

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

2015-01-25 Thread Lukas Fleischer
Date: Sunday, January 25, 2015 @ 11:17:27
  Author: lfleischer
Revision: 126556

upgpkg: lmms 1.1.1-1

* Upstream update.
* Fix FS#41302.

Added:
  lmms/trunk/0001-Fix-calcSlope1-was-not-declared-errors.patch
Modified:
  lmms/trunk/PKGBUILD

---+
 0001-Fix-calcSlope1-was-not-declared-errors.patch |   43 
 PKGBUILD  |   14 +++---
 2 files changed, 50 insertions(+), 7 deletions(-)

Added: 0001-Fix-calcSlope1-was-not-declared-errors.patch
===
--- 0001-Fix-calcSlope1-was-not-declared-errors.patch   
(rev 0)
+++ 0001-Fix-calcSlope1-was-not-declared-errors.patch   2015-01-25 10:17:27 UTC 
(rev 126556)
@@ -0,0 +1,43 @@
+From d8e552de80f4a7d2834843b808369315cb5b4b40 Mon Sep 17 00:00:00 2001
+From: Daniel Winzen d...@winzen4.de
+Date: Thu, 15 Jan 2015 22:15:04 +0100
+Subject: [PATCH] Fix calcSlope1 was not declared errors
+
+---
+ plugins/monstro/Monstro.cpp | 6 +++---
+ 1 file changed, 3 insertions(+), 3 deletions(-)
+
+diff --git a/plugins/monstro/Monstro.cpp b/plugins/monstro/Monstro.cpp
+index dc51619..d93af44 100644
+--- a/plugins/monstro/Monstro.cpp
 b/plugins/monstro/Monstro.cpp
+@@ -784,7 +784,7 @@ inline void MonstroSynth::updateModulators( float * env1, 
float * env2, float *
+   }
+   else if( m_env_phase[i]  2.0f ) // attack phase
+   {
+-  env[i][f] = calcSlope1( fraction( 
m_env_phase[i] ) );
++  env[i][f] = calcSlope( i, fraction( 
m_env_phase[i] ) );
+   m_env_phase[i] = qMin( 2.0f, m_env_phase[i] + 
m_env_att[i] );
+   }
+   else if( m_env_phase[i]  3.0f ) // hold phase
+@@ -794,7 +794,7 @@ inline void MonstroSynth::updateModulators( float * env1, 
float * env2, float *
+   }
+   else if( m_env_phase[i]  4.0f ) // decay phase
+   {
+-  const sample_t s = calcSlope1( 1.0f - fraction( 
m_env_phase[i] ) );
++  const sample_t s = calcSlope( i, 1.0f - 
fraction( m_env_phase[i] ) );
+   if( s = m_env_sus[i] )
+   {
+   env[i][f] = m_env_sus[i];
+@@ -808,7 +808,7 @@ inline void MonstroSynth::updateModulators( float * env1, 
float * env2, float *
+   }
+   else if( m_env_phase[i]  5.0f ) // release phase
+   {
+-  env[i][f] = calcSlope1( 1.0f - fraction( 
m_env_phase[i] ) );
++  env[i][f] = calcSlope( i, 1.0f - fraction( 
m_env_phase[i] ) );
+   m_env_phase[i] += m_env_rel[i];
+   }
+   else env[i][f] = 0.0f;
+-- 
+2.2.2
+

Modified: PKGBUILD
===
--- PKGBUILD2015-01-25 09:28:45 UTC (rev 126555)
+++ PKGBUILD2015-01-25 10:17:27 UTC (rev 126556)
@@ -5,7 +5,7 @@
 # Contributor: Storyteller spiralsor...@hotmail.com
 
 pkgname=lmms
-pkgver=1.1.0
+pkgver=1.1.1
 pkgrel=1
 pkgdesc='The Linux MultiMedia Studio.'
 arch=('i686' 'x86_64')
@@ -17,20 +17,20 @@
 'fftw: SpectrumAnalyzer plugin'
 'stk: STK instruments plugins'
 'pulseaudio: PulseAudio output')
-makedepends=('cmake' 'ladspa' 'libxft' 'freetype2' 'fftw' 'stk')
-[[ $CARCH = i686 ]]  makedepends+=('wine')
+makedepends=('cmake' 'ladspa' 'libxft' 'freetype2' 'fftw' 'stk' 'wine')
+makedepends_x86_64=('gcc-multilib')
 provides=('lmms-extras')
 conflicts=('lmms-extras')
 options=('!makeflags')
 install=lmms.install
 source=(https://github.com/LMMS/${pkgname}/archive/v${pkgver}.tar.gz;
-zynaddsubfx_unlink.patch)
-md5sums=('170ce0615063e9a171f1980972cca262'
- 'd2ea78ac0cf2979505f140c6845617cf')
+0001-Fix-calcSlope1-was-not-declared-errors.patch)
+md5sums=('e56c3e58cdb97ca42e6fb89970c37254'
+ 'b31417f5a2fed0f498343a552e957c5f')
 
 prepare() {
   cd ${srcdir}/${pkgname}-${pkgver}
-  patch -Np1 -i ../zynaddsubfx_unlink.patch
+  patch -p1 -i ../0001-Fix-calcSlope1-was-not-declared-errors.patch
 }
 
 build() {


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

2015-01-25 Thread Bartłomiej Piotrowski
Date: Sunday, January 25, 2015 @ 11:48:51
  Author: bpiotrowski
Revision: 126559

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

Added:
  mgba/repos/community-i686/PKGBUILD
(from rev 126558, mgba/trunk/PKGBUILD)
  mgba/repos/community-i686/mgba.desktop
(from rev 126558, mgba/trunk/mgba.desktop)
  mgba/repos/community-x86_64/PKGBUILD
(from rev 126558, mgba/trunk/PKGBUILD)
  mgba/repos/community-x86_64/mgba.desktop
(from rev 126558, mgba/trunk/mgba.desktop)
Deleted:
  mgba/repos/community-i686/PKGBUILD
  mgba/repos/community-i686/component.patch
  mgba/repos/community-i686/mgba.desktop
  mgba/repos/community-x86_64/PKGBUILD
  mgba/repos/community-x86_64/component.patch
  mgba/repos/community-x86_64/mgba.desktop

--+
 /PKGBUILD|  128 +
 /mgba.desktop|   20 +
 community-i686/PKGBUILD  |   67 ---
 community-i686/component.patch   |   58 
 community-i686/mgba.desktop  |   10 --
 community-x86_64/PKGBUILD|   67 ---
 community-x86_64/component.patch |   58 
 community-x86_64/mgba.desktop|   10 --
 8 files changed, 148 insertions(+), 270 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-01-25 10:48:39 UTC (rev 126558)
+++ community-i686/PKGBUILD 2015-01-25 10:48:51 UTC (rev 126559)
@@ -1,67 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
-# Contributor: Duck Hunt vapor...@tfwno.gf
-
-pkgbase=mgba
-pkgname=('libmgba' 'mgba-sdl' 'mgba-qt')
-pkgver=0.1.0
-pkgrel=5
-pkgdesc='A Nintendo Gameboy Advance Emulator focusing on both speed and 
accuracy'
-arch=('i686' 'x86_64')
-url=https://endrift.com/mgba/;
-license=('custom:MPL2')
-makedepends=('cmake' 'qt5-base' 'sdl2' 'zlib' 'libpng' 'libzip' 'libedit'
- 'ffmpeg' 'imagemagick' 'desktop-file-utils')
-source=(https://github.com/mgba-emu/mgba/archive/$pkgver.tar.gz
-mgba.desktop
-component.patch)
-sha1sums=('a3cefcc31453904a01c5d537b49ed6a62cf6a474'
-  '0f6f43ed45b702f6571c254d4717fbc1fe15e845'
-  'a58b27e29f2ffe023859ebfbd0d007c822f79073')
-
-prepare() {
-  [[ ! -d build ]]  mkdir build || rm -rf build
-
-  cd mgba-$pkgver
-  patch -p1 -i ../component.patch
-
-  cd res
-  convert mgba-1024.png -resize 256x256 mgba-256.png
-}
-
-build() {
-  cd build
-  cmake $srcdir/mgba-$pkgver -DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package_libmgba() {
-  depends=('zlib' 'libpng' 'libzip' 'libedit' 'ffmpeg' 'imagemagick')
-
-  cmake -DCOMPONENT=libmgba mgba-$pkgver -DCMAKE_INSTALL_PREFIX=$pkgdir/usr \
--P build/cmake_install.cmake
-  install -Dm644 mgba-$pkgver/LICENSE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_mgba-sdl() {
-  depends=('libmgba' 'sdl2')
-
-  cmake -DCOMPONENT=mgba-sdl mgba-$pkgver -DCMAKE_INSTALL_PREFIX=$pkgdir/usr 
\
--P build/cmake_install.cmake
-
-  install -d $pkgdir/usr/share/licenses/$pkgname
-  ln -s /usr/share/licenses/libmgba/LICENSE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_mgba-qt() {
-  depends=('libmgba' 'qt5-base' 'sdl2')
-
-  cmake -DCOMPONENT=mgba-qt mgba-$pkgver -DCMAKE_INSTALL_PREFIX=$pkgdir/usr \
--P build/cmake_install.cmake
-
-  desktop-file-install mgba.desktop --dir $pkgdir/usr/share/applications/
-  install -Dm644 mgba-$pkgver/res/mgba-256.png 
$pkgdir/usr/share/pixmaps/mgba.png
-
-  install -d $pkgdir/usr/share/licenses/$pkgname
-  ln -s /usr/share/licenses/libmgba/LICENSE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: mgba/repos/community-i686/PKGBUILD (from rev 126558, 
mgba/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-01-25 10:48:51 UTC (rev 126559)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: Duck Hunt vapor...@tfwno.gf
+
+pkgbase=mgba
+pkgname=('libmgba' 'mgba-sdl' 'mgba-qt')
+pkgver=0.1.1
+pkgrel=1
+arch=('i686' 'x86_64')
+url='https://endrift.com/mgba/'
+license=('custom:MPL2')
+makedepends=('cmake' 'qt5-base' 'sdl2' 'zlib' 'libpng' 'libzip' 'libedit'
+ 'ffmpeg' 'imagemagick' 'desktop-file-utils')
+source=(https://github.com/mgba-emu/mgba/archive/$pkgver.tar.gz
+mgba.desktop)
+sha1sums=('8ea1c347bb609690e5c0dc1d21aaf3b97241d903'
+  '0f6f43ed45b702f6571c254d4717fbc1fe15e845')
+
+prepare() {
+  [[ ! -d build ]]  mkdir build || rm -rf build
+
+  cd mgba-$pkgver/res
+  convert mgba-1024.png -resize 256x256 mgba-256.png
+}
+
+build() {
+  cd build
+  cmake $srcdir/mgba-$pkgver -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package_libmgba() {
+  pkgdesc='Shared library of mGBA'
+  depends=('zlib' 'libpng' 'libzip' 'libedit' 'ffmpeg' 'imagemagick')
+
+  

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

2015-01-25 Thread Ionuț Mircea Bîru
Date: Sunday, January 25, 2015 @ 16:42:29
  Author: ioni
Revision: 229990

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

Added:
  flashplugin/repos/extra-i686/PKGBUILD
(from rev 229989, flashplugin/trunk/PKGBUILD)
  flashplugin/repos/extra-i686/flashplugin.install
(from rev 229989, flashplugin/trunk/flashplugin.install)
  flashplugin/repos/extra-i686/mms.cfg
(from rev 229989, flashplugin/trunk/mms.cfg)
  flashplugin/repos/extra-x86_64/PKGBUILD
(from rev 229989, flashplugin/trunk/PKGBUILD)
  flashplugin/repos/extra-x86_64/flashplugin.install
(from rev 229989, flashplugin/trunk/flashplugin.install)
  flashplugin/repos/extra-x86_64/mms.cfg
(from rev 229989, flashplugin/trunk/mms.cfg)
Deleted:
  flashplugin/repos/extra-i686/PKGBUILD
  flashplugin/repos/extra-i686/flashplugin.install
  flashplugin/repos/extra-i686/mms.cfg
  flashplugin/repos/extra-x86_64/PKGBUILD
  flashplugin/repos/extra-x86_64/flashplugin.install
  flashplugin/repos/extra-x86_64/mms.cfg

--+
 /PKGBUILD|  104 +
 /flashplugin.install |   28 +
 /mms.cfg |4 +
 extra-i686/PKGBUILD  |   52 --
 extra-i686/flashplugin.install   |   14 
 extra-i686/mms.cfg   |2 
 extra-x86_64/PKGBUILD|   52 --
 extra-x86_64/flashplugin.install |   14 
 extra-x86_64/mms.cfg |2 
 9 files changed, 136 insertions(+), 136 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-01-25 15:41:49 UTC (rev 229989)
+++ extra-i686/PKGBUILD 2015-01-25 15:42:29 UTC (rev 229990)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer : Ionut Biru ib...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-
-pkgname=flashplugin
-_licensefile='PlatformClients_PC_WWEULA_Combined_20100108_1657.pdf'
-pkgver=11.2.202.429
-pkgrel=1
-pkgdesc='Adobe Flash Player'
-url='http://get.adobe.com/flashplayer'
-arch=('i686' 'x86_64')
-depends=('mozilla-common' 'libxt' 'libxpm' 'gtk2' 'nss' 'curl' 
'hicolor-icon-theme')
-optdepends=('libvdpau: GPU acceleration on Nvidia card')
-provides=('flashplayer')
-license=('custom')
-options=(!strip)
-install=flashplugin.install
-backup=(etc/adobe/mms.cfg)
-
-if [ $CARCH = i686 ]; then
-
source=(http://fpdownload.macromedia.com/get/flashplayer/pdc/$pkgver/install_flash_player_11_linux.i386.tar.gz;
-http://www.adobe.com/products/eulas/pdfs/${_licensefile};
-mms.cfg)
-md5sums=('3db563d8d2d73109f936e7e92f7b1782'
- '94ca2aecb409abfe36494d1a7ec7591d'
- 'f34aae6279b40e0bd2abfb0d9963d7b8')
-elif [ $CARCH = x86_64 ]; then
-
source=(http://fpdownload.macromedia.com/get/flashplayer/pdc/$pkgver/install_flash_player_11_linux.x86_64.tar.gz;
-http://www.adobe.com/products/eulas/pdfs/${_licensefile};
-mms.cfg)
-md5sums=('7e05effd150ab4430693e467e4c9c404'
- '94ca2aecb409abfe36494d1a7ec7591d'
- 'f34aae6279b40e0bd2abfb0d9963d7b8')
-fi
-
-package () {
-install -Dm755 libflashplayer.so 
$pkgdir/usr/lib/mozilla/plugins/libflashplayer.so
-if [ $CARCH = x86_64 ]; then
-install -Dm755 usr/lib64/kde4/kcm_adobe_flash_player.so 
$pkgdir/usr/lib/kde4/kcm_adobe_flash_player.so
-else
-install -Dm755 usr/lib/kde4/kcm_adobe_flash_player.so 
$pkgdir/usr/lib/kde4/kcm_adobe_flash_player.so
-fi
-install -Dm755 usr/bin/flash-player-properties 
$pkgdir/usr/bin/flash-player-properties
-for i in 16x16 22x22 24x24 32x32 48x48; do
-install -Dm644 
usr/share/icons/hicolor/$i/apps/flash-player-properties.png \
-
$pkgdir/usr/share/icons/hicolor/$i/apps/flash-player-properties.png
-done
-install -Dm644 usr/share/applications/flash-player-properties.desktop 
$pkgdir/usr/share/applications/flash-player-properties.desktop
-install -Dm644 usr/share/kde4/services/kcm_adobe_flash_player.desktop 
$pkgdir/usr/share/kde4/services/kcm_adobe_flash_player.desktop
-install -Dm644 ${_licensefile} 
$pkgdir/usr/share/licenses/$pkgname/LICENSE.pdf
-install -Dm644 mms.cfg $pkgdir/etc/adobe/mms.cfg
-}

Copied: flashplugin/repos/extra-i686/PKGBUILD (from rev 229989, 
flashplugin/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-01-25 15:42:29 UTC (rev 229990)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer : Ionut Biru ib...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+
+pkgname=flashplugin
+_licensefile='PlatformClients_PC_WWEULA_Combined_20100108_1657.pdf'
+pkgver=11.2.202.438
+pkgrel=1
+pkgdesc='Adobe Flash Player'
+url='http://get.adobe.com/flashplayer'
+arch=('i686' 'x86_64')
+depends=('mozilla-common' 'libxt' 'libxpm' 'gtk2' 'nss' 'curl' 

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

2015-01-25 Thread Ionuț Mircea Bîru
Date: Sunday, January 25, 2015 @ 16:41:49
  Author: ioni
Revision: 229989

update

Modified:
  flashplugin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-25 12:30:16 UTC (rev 229988)
+++ PKGBUILD2015-01-25 15:41:49 UTC (rev 229989)
@@ -4,7 +4,7 @@
 
 pkgname=flashplugin
 _licensefile='PlatformClients_PC_WWEULA_Combined_20100108_1657.pdf'
-pkgver=11.2.202.429
+pkgver=11.2.202.438
 pkgrel=1
 pkgdesc='Adobe Flash Player'
 url='http://get.adobe.com/flashplayer'
@@ -21,7 +21,7 @@
 
source=(http://fpdownload.macromedia.com/get/flashplayer/pdc/$pkgver/install_flash_player_11_linux.i386.tar.gz;
 http://www.adobe.com/products/eulas/pdfs/${_licensefile};
 mms.cfg)
-md5sums=('3db563d8d2d73109f936e7e92f7b1782'
+md5sums=('f6df4fbd753fab8c5872a71b915fd644'
  '94ca2aecb409abfe36494d1a7ec7591d'
  'f34aae6279b40e0bd2abfb0d9963d7b8')
 elif [ $CARCH = x86_64 ]; then
@@ -28,7 +28,7 @@
 
source=(http://fpdownload.macromedia.com/get/flashplayer/pdc/$pkgver/install_flash_player_11_linux.x86_64.tar.gz;
 http://www.adobe.com/products/eulas/pdfs/${_licensefile};
 mms.cfg)
-md5sums=('7e05effd150ab4430693e467e4c9c404'
+md5sums=('c6f1941b8b9c48e95d0741a5640b13e6'
  '94ca2aecb409abfe36494d1a7ec7591d'
  'f34aae6279b40e0bd2abfb0d9963d7b8')
 fi


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

2015-01-25 Thread Andrea Scarpino
Date: Sunday, January 25, 2015 @ 13:24:09
  Author: andrea
Revision: 229986

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

Added:
  kate/repos/extra-i686/PKGBUILD
(from rev 229985, kate/trunk/PKGBUILD)
  kate/repos/extra-i686/kate.install
(from rev 229985, kate/trunk/kate.install)
  kate/repos/extra-i686/kwrite.install
(from rev 229985, kate/trunk/kwrite.install)
  kate/repos/extra-i686/pkgbuild-syntax-highlight.patch
(from rev 229985, kate/trunk/pkgbuild-syntax-highlight.patch)
  kate/repos/extra-x86_64/PKGBUILD
(from rev 229985, kate/trunk/PKGBUILD)
  kate/repos/extra-x86_64/kate.install
(from rev 229985, kate/trunk/kate.install)
  kate/repos/extra-x86_64/kwrite.install
(from rev 229985, kate/trunk/kwrite.install)
  kate/repos/extra-x86_64/pkgbuild-syntax-highlight.patch
(from rev 229985, kate/trunk/pkgbuild-syntax-highlight.patch)
Deleted:
  kate/repos/extra-i686/PKGBUILD
  kate/repos/extra-i686/kate.install
  kate/repos/extra-i686/kdesdk-kate.install
  kate/repos/extra-i686/kwrite.install
  kate/repos/extra-i686/pkgbuild-syntax-highlight.patch
  kate/repos/extra-x86_64/PKGBUILD
  kate/repos/extra-x86_64/kate.install
  kate/repos/extra-x86_64/kdesdk-kate.install
  kate/repos/extra-x86_64/kwrite.install
  kate/repos/extra-x86_64/pkgbuild-syntax-highlight.patch

--+
 /PKGBUILD|  136 +
 /kate.install|   26 
 /kwrite.install  |   24 
 /pkgbuild-syntax-highlight.patch |   22 
 extra-i686/PKGBUILD  |   69 
 extra-i686/kate.install  |   13 --
 extra-i686/kdesdk-kate.install   |   13 --
 extra-i686/kwrite.install|   12 --
 extra-i686/pkgbuild-syntax-highlight.patch   |   11 --
 extra-x86_64/PKGBUILD|   69 
 extra-x86_64/kate.install|   13 --
 extra-x86_64/kdesdk-kate.install |   13 --
 extra-x86_64/kwrite.install  |   12 --
 extra-x86_64/pkgbuild-syntax-highlight.patch |   11 --
 14 files changed, 208 insertions(+), 236 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-01-25 12:23:57 UTC (rev 229985)
+++ extra-i686/PKGBUILD 2015-01-25 12:24:09 UTC (rev 229986)
@@ -1,69 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-
-pkgbase=kate
-pkgname=('kwrite'
- 'kate')
-pkgver=14.12.1
-pkgrel=2
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-depends=('knewstuff' 'ktexteditor' 'plasma-framework' 'threadweaver' 'kded' 
'kitemmodels')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python')
-source=(http://download.kde.org/stable/applications/${pkgver}/src/kate-${pkgver}.tar.xz;)
-sha1sums=('e7097f07f9876c44e482a88d7fdae0db92aa2359')
-
-prepare() {
-  mkdir build
-
-  cd kate-${pkgver}
-}
-
-build() {
-  cd build
-  cmake ../kate-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DSYSCONF_INSTALL_DIR=/etc \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON
-  make
-}
-
-package_kwrite() {
-  pkgdesc=Text Editor
-  groups=('kde' 'kdebase')
-  url=http://www.kde.org/applications/utilities/kwrite/;
-  install='kwrite.install'
-  replaces=('kdebase-kwrite')
-  conflicts=('kdebase-kwrite')
-  provides=('kdebase-kwrite')
-
-  cd build/kwrite
-  make DESTDIR=${pkgdir} install
-
-  cd ../../build/doc/kwrite
-  make DESTDIR=${pkgdir} install
-}
-
-package_kate() {
-  pkgdesc=Advanced Text Editor
-  groups=('kde' 'kdesdk')
-  url=http://www.kde.org/applications/utilities/kate/;
-  install='kate.install'
-  replaces=('kdesdk-kate')
-  conflicts=('kdesdk-kate')
-  provides=('kdesdk-kate')
-  optdepends=('konsole: open a terminal in Kate')
-
-  cd build/kate
-  make DESTDIR=${pkgdir} install
-
-  cd ../../build/doc/kate
-  make DESTDIR=${pkgdir} install
-
-  cd ../../../build/addons
-  make DESTDIR=${pkgdir} install
-}

Copied: kate/repos/extra-i686/PKGBUILD (from rev 229985, kate/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-01-25 12:24:09 UTC (rev 229986)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+
+pkgbase=kate
+pkgname=('kwrite'
+ 'kate')
+pkgver=14.12.1
+pkgrel=3
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('knewstuff' 'ktexteditor' 'plasma-framework' 'threadweaver' 'kded' 
'kitemmodels')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+optdepends=('kio-extras: extra protocols support (sftp, fish and more)')

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

2015-01-25 Thread Andrea Scarpino
Date: Sunday, January 25, 2015 @ 13:23:57
  Author: andrea
Revision: 229985

upgpkg: kate 14.12.1-3

Add kio-extras as optional dep

Modified:
  kate/trunk/PKGBUILD
Deleted:
  kate/trunk/kdesdk-kate.install

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-25 12:22:18 UTC (rev 229984)
+++ PKGBUILD2015-01-25 12:23:57 UTC (rev 229985)
@@ -6,18 +6,17 @@
 pkgname=('kwrite'
  'kate')
 pkgver=14.12.1
-pkgrel=2
+pkgrel=3
 arch=('i686' 'x86_64')
 license=('GPL' 'LGPL' 'FDL')
 depends=('knewstuff' 'ktexteditor' 'plasma-framework' 'threadweaver' 'kded' 
'kitemmodels')
 makedepends=('extra-cmake-modules' 'kdoctools' 'python')
+optdepends=('kio-extras: extra protocols support (sftp, fish and more)')
 
source=(http://download.kde.org/stable/applications/${pkgver}/src/kate-${pkgver}.tar.xz;)
 sha1sums=('e7097f07f9876c44e482a88d7fdae0db92aa2359')
 
 prepare() {
   mkdir build
-
-  cd kate-${pkgver}
 }
 
 build() {

Deleted: kdesdk-kate.install
===
--- kdesdk-kate.install 2015-01-25 12:22:18 UTC (rev 229984)
+++ kdesdk-kate.install 2015-01-25 12:23:57 UTC (rev 229985)
@@ -1,13 +0,0 @@
-post_install() {
-xdg-icon-resource forceupdate --theme hicolor  /dev/null
-update-desktop-database -q
-update-mime-database usr/share/mime  /dev/null
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}


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

2015-01-25 Thread Sébastien Luttringer
Date: Sunday, January 25, 2015 @ 23:41:26
  Author: seblu
Revision: 126579

upgpkg: backuppc 3.3.1-1

Modified:
  backuppc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-25 22:03:40 UTC (rev 126578)
+++ PKGBUILD2015-01-25 22:41:26 UTC (rev 126579)
@@ -2,8 +2,8 @@
 # Maintainer: Sébastien Luttringer
 
 pkgname=backuppc
-pkgver=3.3.0
-pkgrel=3
+pkgver=3.3.1
+pkgrel=1
 pkgdesc='Enterprise-grade system for backing up Linux, Windows and MacOS PCs'
 url='http://backuppc.sourceforge.net/'
 license=('GPL2')
@@ -39,7 +39,7 @@
 etc/$pkgname/hosts
 etc/httpd/conf/extra/$pkgname.conf
 etc/$pkgname/$pkgname.users)
-md5sums=('2942a31daeec7c7bb227d843b7846f38'
+md5sums=('5efdcdd48e9e0d4ef7a706902d1f8b3d'
  'ffb8827bbefcf5f0cd959d08fdf64fc1'
  '88344dbc5f8777e04fc8e0d250a2db82'
  '67a939aa63740c52d12bbdca72d37891'


[arch-commits] Commit in backuppc/repos/community-any (24 files)

2015-01-25 Thread Sébastien Luttringer
Date: Sunday, January 25, 2015 @ 23:41:58
  Author: seblu
Revision: 126580

archrelease: copy trunk to community-any

Added:
  backuppc/repos/community-any/01-move-socket-into-run.patch
(from rev 126579, backuppc/trunk/01-move-socket-into-run.patch)
  backuppc/repos/community-any/02-move-socket-into-run.patch
(from rev 126579, backuppc/trunk/02-move-socket-into-run.patch)
  backuppc/repos/community-any/03-fix-FS#32642.patch
(from rev 126579, backuppc/trunk/03-fix-FS#32642.patch)
  backuppc/repos/community-any/04-fix-cve-2011-4923.patch
(from rev 126579, backuppc/trunk/04-fix-cve-2011-4923.patch)
  backuppc/repos/community-any/05-fix-edit-menu-ordering.patch
(from rev 126579, backuppc/trunk/05-fix-edit-menu-ordering.patch)
  backuppc/repos/community-any/PKGBUILD
(from rev 126579, backuppc/trunk/PKGBUILD)
  backuppc/repos/community-any/backuppc.httpd
(from rev 126579, backuppc/trunk/backuppc.httpd)
  backuppc/repos/community-any/backuppc.install
(from rev 126579, backuppc/trunk/backuppc.install)
  backuppc/repos/community-any/backuppc.profile.csh
(from rev 126579, backuppc/trunk/backuppc.profile.csh)
  backuppc/repos/community-any/backuppc.profile.sh
(from rev 126579, backuppc/trunk/backuppc.profile.sh)
  backuppc/repos/community-any/backuppc.service
(from rev 126579, backuppc/trunk/backuppc.service)
  backuppc/repos/community-any/backuppc.socket
(from rev 126579, backuppc/trunk/backuppc.socket)
Deleted:
  backuppc/repos/community-any/01-move-socket-into-run.patch
  backuppc/repos/community-any/02-move-socket-into-run.patch
  backuppc/repos/community-any/03-fix-FS#32642.patch
  backuppc/repos/community-any/04-fix-cve-2011-4923.patch
  backuppc/repos/community-any/05-fix-edit-menu-ordering.patch
  backuppc/repos/community-any/PKGBUILD
  backuppc/repos/community-any/backuppc.httpd
  backuppc/repos/community-any/backuppc.install
  backuppc/repos/community-any/backuppc.profile.csh
  backuppc/repos/community-any/backuppc.profile.sh
  backuppc/repos/community-any/backuppc.service
  backuppc/repos/community-any/backuppc.socket

-+
 01-move-socket-into-run.patch   |  110 ++--
 02-move-socket-into-run.patch   |   86 
 03-fix-FS#32642.patch   |   24 ++--
 04-fix-cve-2011-4923.patch  |   28 ++---
 05-fix-edit-menu-ordering.patch |   58 +-
 PKGBUILD|  204 +++---
 backuppc.httpd  |   42 +++
 backuppc.install|   74 ++---
 backuppc.profile.csh|2 
 backuppc.profile.sh |6 -
 backuppc.service|   22 ++--
 backuppc.socket |   16 +-
 12 files changed, 336 insertions(+), 336 deletions(-)

Deleted: 01-move-socket-into-run.patch
===
--- 01-move-socket-into-run.patch   2015-01-25 22:41:26 UTC (rev 126579)
+++ 01-move-socket-into-run.patch   2015-01-25 22:41:58 UTC (rev 126580)
@@ -1,55 +0,0 @@
-From 1cba5f001533ec6d0a728847bdc4fc57e5fed0a3 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?S=C3=A9bastien=20Luttringer?= se...@seblu.net
-Date: Tue, 16 Apr 2013 22:39:15 +0200
-Subject: [PATCH] Move pid file into /run
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-This is not a clean patch but it doesn't targeted to upstream inclusion
-
-Signed-off-by: Sébastien Luttringer se...@seblu.net

- bin/BackupPC | 10 +-
- 1 file changed, 5 insertions(+), 5 deletions(-)
-
-diff --git a/bin/BackupPC b/bin/BackupPC
-index c6fc7d2..d9f3dbc 100755
 a/bin/BackupPC
-+++ b/bin/BackupPC
-@@ -363,11 +363,11 @@ sub Main_Initialize
- # Write out our initial status and save our PID
- #
- StatusWrite();
--unlink($LogDir/BackupPC.pid);
--if ( open(PID, , $LogDir/BackupPC.pid) ) {
-+unlink(/run/backuppc/backuppc.pid);
-+if ( open(PID, , /run/backuppc/backuppc.pid) ) {
- print(PID $$);
- close(PID);
--chmod(0444, $LogDir/BackupPC.pid);
-+chmod(0444, /run/backuppc/backuppc.pid);
- }
- 
- #
-@@ -1846,7 +1846,7 @@ sub catch_signal
- close(LOG);
- LogFileOpen();
- print(LOG Fatal error: unhandled signal $SigName\n);
--unlink($LogDir/BackupPC.pid);
-+unlink(/run/backuppc/backuppc.pid);
- confess(Got new signal $SigName... quitting\n);
- } else {
-   $SigName = shift;
-@@ -1968,7 +1968,7 @@ sub ServerShutdown
- }
- delete($Info{pid});
- StatusWrite();
--unlink($LogDir/BackupPC.pid);
-+unlink(/run/backuppc/backuppc.pid);
- exit(1);
- }
- 
--- 
-1.8.2.1
-

Copied: backuppc/repos/community-any/01-move-socket-into-run.patch (from rev 
126579, backuppc/trunk/01-move-socket-into-run.patch)
===
--- 01-move-socket-into-run.patch   

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

2015-01-25 Thread Sébastien Luttringer
Date: Sunday, January 25, 2015 @ 23:44:42
  Author: seblu
Revision: 229996

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

Added:
  radvd/repos/extra-i686/PKGBUILD
(from rev 229995, radvd/trunk/PKGBUILD)
  radvd/repos/extra-i686/radvd.service
(from rev 229995, radvd/trunk/radvd.service)
  radvd/repos/extra-x86_64/PKGBUILD
(from rev 229995, radvd/trunk/PKGBUILD)
  radvd/repos/extra-x86_64/radvd.service
(from rev 229995, radvd/trunk/radvd.service)
Deleted:
  radvd/repos/extra-i686/PKGBUILD
  radvd/repos/extra-i686/radvd.service
  radvd/repos/extra-x86_64/PKGBUILD
  radvd/repos/extra-x86_64/radvd.service

+
 /PKGBUILD  |  110 +++
 /radvd.service |   18 +++
 extra-i686/PKGBUILD|   55 -
 extra-i686/radvd.service   |9 ---
 extra-x86_64/PKGBUILD  |   55 -
 extra-x86_64/radvd.service |9 ---
 6 files changed, 128 insertions(+), 128 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-01-25 22:44:17 UTC (rev 229995)
+++ extra-i686/PKGBUILD 2015-01-25 22:44:42 UTC (rev 229996)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-# Contributor: Kaiting Chen kaitocr...@gmail.com
-# Contributor: Mark Smith markzzzsm...@yahoo.com.au
-
-pkgname=radvd
-pkgver=2.9
-pkgrel=1
-pkgdesc='IPv6 Router Advertisement Daemon'
-url='http://www.litech.org/radvd/'
-license=('custom')
-depends=('glibc')
-makedepends=('check')
-arch=('i686' 'x86_64')
-backup=('etc/radvd.conf')
-validpgpkeys=('B11F2EED32FB6728F700337C411FA8C112D91A31') # Reuben Hawkins
-source=(http://www.litech.org/radvd/dist/$pkgname-$pkgver.tar.xz{,.asc}
-$pkgname.service)
-sha1sums=('1ddcffd6e0f6ddeb1c002a8a0213eefcabb760d8'
-  'SKIP'
-  '2fdba3b0ed28c67dc1c04bfd1439fa4dece88bbc')
-
-#prepare() {
-#  patch -p1 -d $pkgname-$pkgver  '01-fix-rdnssinfo-length-fix.patch'
-#}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure \
---prefix=/usr \
---sbindir=/usr/bin \
---sysconfdir=/etc \
---with-pidfile=/run/radvd.pid \
---mandir=/usr/share/man
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-  # default config
-  install -D -m 644 radvd.conf.example $pkgdir/etc/radvd.conf
-  # license
-  install -D -m 644 COPYRIGHT $pkgdir/usr/share/licenses/$pkgname/COPYRIGHT
-  # systemd
-  install -D -m 644 ../$pkgname.service \
-$pkgdir/usr/lib/systemd/system/$pkgname.service
-}
-
-# vim:set ts=2 sw=2 et:

Copied: radvd/repos/extra-i686/PKGBUILD (from rev 229995, radvd/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-01-25 22:44:42 UTC (rev 229996)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+# Contributor: Kaiting Chen kaitocr...@gmail.com
+# Contributor: Mark Smith markzzzsm...@yahoo.com.au
+
+pkgname=radvd
+pkgver=2.10
+pkgrel=1
+pkgdesc='IPv6 Router Advertisement Daemon'
+url='http://www.litech.org/radvd/'
+license=('custom')
+depends=('glibc')
+makedepends=('check')
+arch=('i686' 'x86_64')
+backup=('etc/radvd.conf')
+validpgpkeys=('B11F2EED32FB6728F700337C411FA8C112D91A31') # Reuben Hawkins
+source=(http://www.litech.org/radvd/dist/$pkgname-$pkgver.tar.xz{,.asc}
+$pkgname.service)
+sha1sums=('a6b41df6ccc3ecc704809f6072baa5dc1c92dc54'
+  'SKIP'
+  '2fdba3b0ed28c67dc1c04bfd1439fa4dece88bbc')
+
+#prepare() {
+#  patch -p1 -d $pkgname-$pkgver  '01-fix-rdnssinfo-length-fix.patch'
+#}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/etc \
+--with-pidfile=/run/radvd.pid \
+--mandir=/usr/share/man
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  # default config
+  install -D -m 644 radvd.conf.example $pkgdir/etc/radvd.conf
+  # license
+  install -D -m 644 COPYRIGHT $pkgdir/usr/share/licenses/$pkgname/COPYRIGHT
+  # systemd
+  install -D -m 644 ../$pkgname.service \
+$pkgdir/usr/lib/systemd/system/$pkgname.service
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: extra-i686/radvd.service
===
--- extra-i686/radvd.service2015-01-25 22:44:17 UTC (rev 229995)
+++ extra-i686/radvd.service2015-01-25 22:44:42 UTC (rev 229996)
@@ -1,9 +0,0 @@
-[Unit]
-Description=IPv6 Router Advertisement Daemon
-After=network.target
-
-[Service]
-ExecStart=/usr/bin/radvd --nodaemon --logmethod=stderr
-
-[Install]
-WantedBy=multi-user.target

Copied: radvd/repos/extra-i686/radvd.service (from rev 229995, 
radvd/trunk/radvd.service)
===
--- 

[arch-commits] Commit in radvd/repos (community-i686 community-x86_64)

2015-01-25 Thread Sébastien Luttringer
Date: Sunday, January 25, 2015 @ 23:44:17
  Author: seblu
Revision: 229995

Fix bad repo commit

Deleted:
  radvd/repos/community-i686/
  radvd/repos/community-x86_64/


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

2015-01-25 Thread Sébastien Luttringer
Date: Sunday, January 25, 2015 @ 23:47:24
  Author: seblu
Revision: 229997

upgpkg: patch 2.7.3-1

Modified:
  patch/trunk/PKGBUILD
Deleted:
  patch/trunk/patch-2.7.1-initialize-data-structures-early-enough.patch

---+
 PKGBUILD  |   26 +--
 patch-2.7.1-initialize-data-structures-early-enough.patch |   81 
 2 files changed, 12 insertions(+), 95 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-01-25 22:44:42 UTC (rev 229996)
+++ PKGBUILD2015-01-25 22:47:24 UTC (rev 229997)
@@ -4,8 +4,8 @@
 # Contributor: judd jvi...@zeroflux.org
 
 pkgname=patch
-pkgver=2.7.1
-pkgrel=3
+pkgver=2.7.3
+pkgrel=1
 pkgdesc='A utility to apply patch files to original sources'
 arch=('i686' 'x86_64')
 url='http://www.gnu.org/software/patch/patch.html'
@@ -14,19 +14,17 @@
 depends=('glibc' 'attr')
 makedepends=('ed')
 optdepends=('ed: for patch -e functionality')
-validpgpkeys=('6CEF9231D6BF2594FABA779EF7E872FEB97154D3') # Andreas Gruenbacher
-source=(ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.xz{,.sig}
-'patch-2.7.1-initialize-data-structures-early-enough.patch')
-md5sums=('e9ae5393426d3ad783a300a338c09b72'
- 'SKIP'
- 'dc6367a7cd49933d4006c246789e98da')
+validpgpkeys=('7768CE4B75E5236F1A374CEEC4C927CD5D1B36D7') # Andreas Gruenbacher
+source=(ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
+md5sums=('29b87be845e4662ab0ca0d48a805ecc6'
+ 'SKIP')
 
-prepare() {
-  # Fix segfault on non-numeric strip-count
-  # (also segfaults on nonexistent directory passed to -d)
-  # http://savannah.gnu.org/bugs/?37500
-  patch -Np1 -d $pkgname-$pkgver  
patch-2.7.1-initialize-data-structures-early-enough.patch
-}
+#prepare() {
+#  # Fix segfault on non-numeric strip-count
+#  # (also segfaults on nonexistent directory passed to -d)
+#  # http://savannah.gnu.org/bugs/?37500
+#  patch -Np1 -d $pkgname-$pkgver  
patch-2.7.1-initialize-data-structures-early-enough.patch
+#}
 
 build() {
   cd $pkgname-$pkgver

Deleted: patch-2.7.1-initialize-data-structures-early-enough.patch
===
--- patch-2.7.1-initialize-data-structures-early-enough.patch   2015-01-25 
22:44:42 UTC (rev 229996)
+++ patch-2.7.1-initialize-data-structures-early-enough.patch   2015-01-25 
22:47:24 UTC (rev 229997)
@@ -1,81 +0,0 @@
-From 291ec175812b7ba291d124e4cf2fbf9efec590c8 Mon Sep 17 00:00:00 2001
-From: Andreas Gruenbacher agr...@linbit.com
-Date: Thu, 4 Oct 2012 12:33:09 +0200
-Subject: [PATCH] Initialize data structures early enough
-
-* src/patch.c (main): Initialize data structures early enough, before error
-paths can access them.
-* tests/bad-usage: Test bad command line usage.
-* tests/Makefile.am (TESTS): Add bad-usage here.

- src/patch.c   |  8 
- tests/Makefile.am |  1 +
- tests/bad-usage   | 18 ++
- 3 files changed, 23 insertions(+), 4 deletions(-)
- create mode 100644 tests/bad-usage
-
-diff --git a/src/patch.c b/src/patch.c
-index 828943b..0255fbb 100644
 a/src/patch.c
-+++ b/src/patch.c
-@@ -150,6 +150,10 @@ main (int argc, char **argv)
- else if ((version_control = getenv (VERSION_CONTROL)))
-   version_control_context = $VERSION_CONTROL;
- 
-+init_backup_hash_table ();
-+init_files_to_delete ();
-+init_files_to_output ();
-+
- /* parse switches */
- Argc = argc;
- Argv = argv;
-@@ -162,10 +166,6 @@ main (int argc, char **argv)
- if (make_backups | backup_if_mismatch)
-   backup_type = get_version (version_control_context, version_control);
- 
--init_backup_hash_table ();
--init_files_to_delete ();
--init_files_to_output ();
--
- init_output (outstate);
- if (outfile)
-   outstate.ofp = open_outfile (outfile);
-diff --git a/tests/Makefile.am b/tests/Makefile.am
-index 02fc6de..5cea52d 100644
 a/tests/Makefile.am
-+++ b/tests/Makefile.am
-@@ -20,6 +20,7 @@ TESTS = \
-   asymmetric-hunks \
-   backup-prefix-suffix \
-   bad-filenames \
-+  bad-usage \
-   concat-git-diff \
-   copy-rename \
-   corrupt-reject-files \
-diff --git a/tests/bad-usage b/tests/bad-usage
-new file mode 100644
-index 000..022eeda
 /dev/null
-+++ b/tests/bad-usage
-@@ -0,0 +1,18 @@
-+# Copyright (C) 2009, 2011-2012 Free Software Foundation, Inc.
-+#
-+# Copying and distribution of this file, with or without modification,
-+# in any medium, are permitted without royalty provided the copyright
-+# notice and this notice are preserved.
-+
-+. $srcdir/test-lib.sh
-+
-+require_cat
-+use_local_patch
-+use_tmpdir
-+
-+# ==
-+
-+check 'patch -px || echo status: $?' EOF
-+$PATCH:  strip count x is not a number
-+status: 2
-+EOF
--- 
-1.8.0.3
-


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

2015-01-25 Thread Sébastien Luttringer
Date: Sunday, January 25, 2015 @ 23:47:39
  Author: seblu
Revision: 229998

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

Added:
  patch/repos/testing-i686/
  patch/repos/testing-i686/PKGBUILD
(from rev 229997, patch/trunk/PKGBUILD)
  patch/repos/testing-x86_64/
  patch/repos/testing-x86_64/PKGBUILD
(from rev 229997, patch/trunk/PKGBUILD)

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

Copied: patch/repos/testing-i686/PKGBUILD (from rev 229997, 
patch/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-01-25 22:47:39 UTC (rev 229998)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Sébastien Luttringer se...@archlinux.org
+# Contributor: Allan McRae al...@archlinux.org
+# Contributor: judd jvi...@zeroflux.org
+
+pkgname=patch
+pkgver=2.7.3
+pkgrel=1
+pkgdesc='A utility to apply patch files to original sources'
+arch=('i686' 'x86_64')
+url='http://www.gnu.org/software/patch/patch.html'
+license=('GPL')
+groups=('base-devel')
+depends=('glibc' 'attr')
+makedepends=('ed')
+optdepends=('ed: for patch -e functionality')
+validpgpkeys=('7768CE4B75E5236F1A374CEEC4C927CD5D1B36D7') # Andreas Gruenbacher
+source=(ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
+md5sums=('29b87be845e4662ab0ca0d48a805ecc6'
+ 'SKIP')
+
+#prepare() {
+#  # Fix segfault on non-numeric strip-count
+#  # (also segfaults on nonexistent directory passed to -d)
+#  # http://savannah.gnu.org/bugs/?37500
+#  patch -Np1 -d $pkgname-$pkgver  
patch-2.7.1-initialize-data-structures-early-enough.patch
+#}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: patch/repos/testing-x86_64/PKGBUILD (from rev 229997, 
patch/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-01-25 22:47:39 UTC (rev 229998)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Sébastien Luttringer se...@archlinux.org
+# Contributor: Allan McRae al...@archlinux.org
+# Contributor: judd jvi...@zeroflux.org
+
+pkgname=patch
+pkgver=2.7.3
+pkgrel=1
+pkgdesc='A utility to apply patch files to original sources'
+arch=('i686' 'x86_64')
+url='http://www.gnu.org/software/patch/patch.html'
+license=('GPL')
+groups=('base-devel')
+depends=('glibc' 'attr')
+makedepends=('ed')
+optdepends=('ed: for patch -e functionality')
+validpgpkeys=('7768CE4B75E5236F1A374CEEC4C927CD5D1B36D7') # Andreas Gruenbacher
+source=(ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
+md5sums=('29b87be845e4662ab0ca0d48a805ecc6'
+ 'SKIP')
+
+#prepare() {
+#  # Fix segfault on non-numeric strip-count
+#  # (also segfaults on nonexistent directory passed to -d)
+#  # http://savannah.gnu.org/bugs/?37500
+#  patch -Np1 -d $pkgname-$pkgver  
patch-2.7.1-initialize-data-structures-early-enough.patch
+#}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et:


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

2015-01-25 Thread Sébastien Luttringer
Date: Sunday, January 25, 2015 @ 23:48:55
  Author: seblu
Revision: 22

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

Added:
  btrfs-progs/repos/core-i686/PKGBUILD
(from rev 229998, btrfs-progs/repos/testing-i686/PKGBUILD)
  btrfs-progs/repos/core-i686/btrfs-progs.install
(from rev 229998, btrfs-progs/repos/testing-i686/btrfs-progs.install)
  btrfs-progs/repos/core-i686/initcpio-hook-btrfs
(from rev 229998, btrfs-progs/repos/testing-i686/initcpio-hook-btrfs)
  btrfs-progs/repos/core-i686/initcpio-install-btrfs
(from rev 229998, btrfs-progs/repos/testing-i686/initcpio-install-btrfs)
  btrfs-progs/repos/core-x86_64/PKGBUILD
(from rev 229998, btrfs-progs/repos/testing-x86_64/PKGBUILD)
  btrfs-progs/repos/core-x86_64/btrfs-progs.install
(from rev 229998, btrfs-progs/repos/testing-x86_64/btrfs-progs.install)
  btrfs-progs/repos/core-x86_64/initcpio-hook-btrfs
(from rev 229998, btrfs-progs/repos/testing-x86_64/initcpio-hook-btrfs)
  btrfs-progs/repos/core-x86_64/initcpio-install-btrfs
(from rev 229998, 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 |   45 ---
 core-i686/btrfs-progs.install  |9 ---
 core-i686/initcpio-hook-btrfs  |7 --
 core-i686/initcpio-install-btrfs   |   17 -
 core-x86_64/PKGBUILD   |   45 ---
 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(+), 156 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2015-01-25 22:47:39 UTC (rev 229998)
+++ core-i686/PKGBUILD  2015-01-25 22:48:55 UTC (rev 22)
@@ -1,45 +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.17.3
-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
-}
-
-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 229998, 
btrfs-progs/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2015-01-25 22:48:55 UTC (rev 22)
@@ -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.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'
+

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

2015-01-25 Thread Sébastien Luttringer
Date: Sunday, January 25, 2015 @ 23:48:09
  Author: seblu
Revision: 126581

upgpkg: weston 1.6.1-1

Modified:
  weston/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-25 22:41:58 UTC (rev 126580)
+++ PKGBUILD2015-01-25 22:48:09 UTC (rev 126581)
@@ -3,7 +3,7 @@
 # Contributor: Joel Teichroeb j...@teichroeb.net
 
 pkgname=weston
-pkgver=1.6.0
+pkgver=1.6.1
 pkgrel=1
 pkgdesc='Reference implementation of a Wayland compositor'
 arch=('i686' 'x86_64')
@@ -11,7 +11,7 @@
 license=('MIT')
 depends=('libxkbcommon' 'libinput' 'libunwind' 'poppler-glib' 'mtdev' 
'libxcursor' 'glu' 'pango' 'colord')
 source=(http://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz;)
-sha1sums=('f3c801f0610b605cda45a017b475c10f2d3b7dbb')
+sha1sums=('ef3a7b744f64b761b2f2c2fee1e9a8512adf78a1')
 
 build() {
cd $pkgname-$pkgver


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

2015-01-25 Thread Sébastien Luttringer
Date: Sunday, January 25, 2015 @ 23:48:27
  Author: seblu
Revision: 126582

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-01-25 22:48:09 UTC (rev 126581)
+++ community-i686/PKGBUILD 2015-01-25 22:48:27 UTC (rev 126582)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-# Contributor: Joel Teichroeb j...@teichroeb.net
-
-pkgname=weston
-pkgver=1.6.0
-pkgrel=1
-pkgdesc='Reference implementation of a Wayland compositor'
-arch=('i686' 'x86_64')
-url='http://wayland.freedesktop.org'
-license=('MIT')
-depends=('libxkbcommon' 'libinput' 'libunwind' 'poppler-glib' 'mtdev' 
'libxcursor' 'glu' 'pango' 'colord')
-source=(http://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz;)
-sha1sums=('f3c801f0610b605cda45a017b475c10f2d3b7dbb')
-
-build() {
-   cd $pkgname-$pkgver
-   ./configure \
-   --prefix=/usr \
-   --libexecdir=/usr/lib/weston \
-   --enable-libinput-backend \
-   --enable-demo-clients-install
-   make
-}
-
-package() {
-   cd $pkgname-$pkgver
-   make DESTDIR=$pkgdir install
-   # license
-   install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
-}

Copied: weston/repos/community-i686/PKGBUILD (from rev 126581, 
weston/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-01-25 22:48:27 UTC (rev 126582)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+# Contributor: Joel Teichroeb j...@teichroeb.net
+
+pkgname=weston
+pkgver=1.6.1
+pkgrel=1
+pkgdesc='Reference implementation of a Wayland compositor'
+arch=('i686' 'x86_64')
+url='http://wayland.freedesktop.org'
+license=('MIT')
+depends=('libxkbcommon' 'libinput' 'libunwind' 'poppler-glib' 'mtdev' 
'libxcursor' 'glu' 'pango' 'colord')
+source=(http://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz;)
+sha1sums=('ef3a7b744f64b761b2f2c2fee1e9a8512adf78a1')
+
+build() {
+   cd $pkgname-$pkgver
+   ./configure \
+   --prefix=/usr \
+   --libexecdir=/usr/lib/weston \
+   --enable-libinput-backend \
+   --enable-demo-clients-install
+   make
+}
+
+package() {
+   cd $pkgname-$pkgver
+   make DESTDIR=$pkgdir install
+   # license
+   install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-01-25 22:48:09 UTC (rev 126581)
+++ community-x86_64/PKGBUILD   2015-01-25 22:48:27 UTC (rev 126582)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-# Contributor: Joel Teichroeb j...@teichroeb.net
-
-pkgname=weston
-pkgver=1.6.0
-pkgrel=1
-pkgdesc='Reference implementation of a Wayland compositor'
-arch=('i686' 'x86_64')
-url='http://wayland.freedesktop.org'
-license=('MIT')
-depends=('libxkbcommon' 'libinput' 'libunwind' 'poppler-glib' 'mtdev' 
'libxcursor' 'glu' 'pango' 'colord')
-source=(http://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz;)
-sha1sums=('f3c801f0610b605cda45a017b475c10f2d3b7dbb')
-
-build() {
-   cd $pkgname-$pkgver
-   ./configure \
-   --prefix=/usr \
-   --libexecdir=/usr/lib/weston \
-   --enable-libinput-backend \
-   --enable-demo-clients-install
-   make
-}
-
-package() {
-   cd $pkgname-$pkgver
-   make DESTDIR=$pkgdir install
-   # license
-   install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
-}

Copied: weston/repos/community-x86_64/PKGBUILD (from rev 126581, 
weston/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-01-25 22:48:27 UTC (rev 126582)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+# Contributor: Joel Teichroeb j...@teichroeb.net
+
+pkgname=weston
+pkgver=1.6.1
+pkgrel=1
+pkgdesc='Reference implementation of a Wayland compositor'
+arch=('i686' 'x86_64')
+url='http://wayland.freedesktop.org'
+license=('MIT')
+depends=('libxkbcommon' 'libinput' 'libunwind' 'poppler-glib' 'mtdev' 
'libxcursor' 'glu' 

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

2015-01-25 Thread Felix Yan
Date: Monday, January 26, 2015 @ 04:26:25
  Author: fyan
Revision: 126586

archrelease: copy trunk to community-any

Added:
  skk-jisyo/repos/community-any/PKGBUILD
(from rev 126585, skk-jisyo/trunk/PKGBUILD)
  skk-jisyo/repos/community-any/skk-jisyo.install
(from rev 126585, skk-jisyo/trunk/skk-jisyo.install)
Deleted:
  skk-jisyo/repos/community-any/PKGBUILD
  skk-jisyo/repos/community-any/skk-jisyo.install

---+
 PKGBUILD  |   62 ++--
 skk-jisyo.install |   20 
 2 files changed, 41 insertions(+), 41 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-01-26 03:26:00 UTC (rev 126585)
+++ PKGBUILD2015-01-26 03:26:25 UTC (rev 126586)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: jeneshicc jenesh...@gmail.com
-
-pkgname=skk-jisyo
-pkgver=20150118
-pkgrel=1
-pkgdesc=Dictionaries for the SKK Japanese input method
-arch=('any')
-url=http://openlab.ring.gr.jp/skk/;
-optdepends=('skktools: Dictionary maintenabce tools')
-license=('GPL')
-install=${pkgname}.install
-source=(http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.L.gz
-http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.jinmei.gz
-http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.geo.gz
-http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.propernoun.gz
-http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.station.gz)
-md5sums=('631e5384c9bb617ab3a1153999a41a8d'
- 'bb8930b2b1b05d25fdde7ce4f3283c3c'
- 'a0469d915fb73bb08804add46c941994'
- 'a46ab045e69ccc25c9c647362f8d3fa1'
- '4758567e8a60e57df95dfd7e4faf1e55')
-
-package() {
-  cd $srcdir
-
-  for t in L jinmei geo propernoun station; do
-install -D -m 644 $srcdir/SKK-JISYO.$t 
$pkgdir/usr/share/skk/SKK-JISYO.$t
-  done
-}

Copied: skk-jisyo/repos/community-any/PKGBUILD (from rev 126585, 
skk-jisyo/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-01-26 03:26:25 UTC (rev 126586)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: jeneshicc jenesh...@gmail.com
+
+pkgname=skk-jisyo
+pkgver=20150125
+pkgrel=1
+pkgdesc=Dictionaries for the SKK Japanese input method
+arch=('any')
+url=http://openlab.ring.gr.jp/skk/;
+optdepends=('skktools: Dictionary maintenabce tools')
+license=('GPL')
+install=${pkgname}.install
+source=(SKK-JISYO.L.$pkgver.gz::http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.L.gz
+
SKK-JISYO.jinmei.$pkgver.gz::http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.jinmei.gz
+
SKK-JISYO.geo.$pkgver.gz::http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.geo.gz
+
SKK-JISYO.propernoun.$pkgver.gz::http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.propernoun.gz
+
SKK-JISYO.station.$pkgver.gz::http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.station.gz)
+md5sums=('c7a2417da1c64e6864ab4920975f08d5'
+ 'e24063430ffc2b7bc85ea297ee134f5d'
+ '8f8b9ddbdb2f3bcfb68876cbfa921cf4'
+ '53407c1d74036759a7db1fa07dd8e5d4'
+ '37436a1e0ce2ce975a490b61dcd1e03c')
+
+package() {
+  cd $srcdir
+
+  for t in L jinmei geo propernoun station; do
+install -D -m 644 $srcdir/SKK-JISYO.$t.$pkgver 
$pkgdir/usr/share/skk/SKK-JISYO.$t
+  done
+}

Deleted: skk-jisyo.install
===
--- skk-jisyo.install   2015-01-26 03:26:00 UTC (rev 126585)
+++ skk-jisyo.install   2015-01-26 03:26:25 UTC (rev 126586)
@@ -1,10 +0,0 @@
-post_install() {
-  echo  If you want to merge dictionaries, use skktools
-  echo  For example, merging SKK-JISYO.L and SKK-JISYO.geo into 
SKK-JISYO.XL:
-  echo  % skkdic-expr2 SKK-JISYO.L + SKK-JISYO.geo  SKK-JISYO.XL
-}
-
-post_upgrade() {
-  post_install $1
-}
-# vim:set ts=2 sw=2 et:

Copied: skk-jisyo/repos/community-any/skk-jisyo.install (from rev 126585, 
skk-jisyo/trunk/skk-jisyo.install)
===
--- skk-jisyo.install   (rev 0)
+++ skk-jisyo.install   2015-01-26 03:26:25 UTC (rev 126586)
@@ -0,0 +1,10 @@
+post_install() {
+  echo  If you want to merge dictionaries, use skktools
+  echo  For example, merging SKK-JISYO.L and SKK-JISYO.geo into 
SKK-JISYO.XL:
+  echo  % skkdic-expr2 SKK-JISYO.L + SKK-JISYO.geo  SKK-JISYO.XL
+}
+
+post_upgrade() {
+  post_install $1
+}
+# vim:set ts=2 sw=2 et:


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

2015-01-25 Thread Felix Yan
Date: Monday, January 26, 2015 @ 04:26:00
  Author: fyan
Revision: 126585

upgpkg: skk-jisyo 20150125-1

Modified:
  skk-jisyo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-26 01:51:43 UTC (rev 126584)
+++ PKGBUILD2015-01-26 03:26:00 UTC (rev 126585)
@@ -3,7 +3,7 @@
 # Contributor: jeneshicc jenesh...@gmail.com
 
 pkgname=skk-jisyo
-pkgver=20150118
+pkgver=20150125
 pkgrel=1
 pkgdesc=Dictionaries for the SKK Japanese input method
 arch=('any')
@@ -11,21 +11,21 @@
 optdepends=('skktools: Dictionary maintenabce tools')
 license=('GPL')
 install=${pkgname}.install
-source=(http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.L.gz
-http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.jinmei.gz
-http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.geo.gz
-http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.propernoun.gz
-http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.station.gz)
-md5sums=('631e5384c9bb617ab3a1153999a41a8d'
- 'bb8930b2b1b05d25fdde7ce4f3283c3c'
- 'a0469d915fb73bb08804add46c941994'
- 'a46ab045e69ccc25c9c647362f8d3fa1'
- '4758567e8a60e57df95dfd7e4faf1e55')
+source=(SKK-JISYO.L.$pkgver.gz::http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.L.gz
+
SKK-JISYO.jinmei.$pkgver.gz::http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.jinmei.gz
+
SKK-JISYO.geo.$pkgver.gz::http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.geo.gz
+
SKK-JISYO.propernoun.$pkgver.gz::http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.propernoun.gz
+
SKK-JISYO.station.$pkgver.gz::http://openlab.ring.gr.jp/skk/dic/SKK-JISYO.station.gz)
+md5sums=('c7a2417da1c64e6864ab4920975f08d5'
+ 'e24063430ffc2b7bc85ea297ee134f5d'
+ '8f8b9ddbdb2f3bcfb68876cbfa921cf4'
+ '53407c1d74036759a7db1fa07dd8e5d4'
+ '37436a1e0ce2ce975a490b61dcd1e03c')
 
 package() {
   cd $srcdir
 
   for t in L jinmei geo propernoun station; do
-install -D -m 644 $srcdir/SKK-JISYO.$t 
$pkgdir/usr/share/skk/SKK-JISYO.$t
+install -D -m 644 $srcdir/SKK-JISYO.$t.$pkgver 
$pkgdir/usr/share/skk/SKK-JISYO.$t
   done
 }


[arch-commits] Commit in gnome-commander/repos/community-i686 (6 files)

2015-01-25 Thread Jaroslav Lichtblau
Date: Sunday, January 25, 2015 @ 15:13:38
  Author: jlichtblau
Revision: 126575

archrelease: copy trunk to community-i686

Added:
  gnome-commander/repos/community-i686/PKGBUILD
(from rev 126574, gnome-commander/trunk/PKGBUILD)
  gnome-commander/repos/community-i686/gnome-commander.changelog
(from rev 126574, gnome-commander/trunk/gnome-commander.changelog)
  gnome-commander/repos/community-i686/gnome-commander.install
(from rev 126574, gnome-commander/trunk/gnome-commander.install)
Deleted:
  gnome-commander/repos/community-i686/PKGBUILD
  gnome-commander/repos/community-i686/gnome-commander.changelog
  gnome-commander/repos/community-i686/gnome-commander.install

---+
 PKGBUILD  |   86 ++--
 gnome-commander.changelog |   37 ++
 gnome-commander.install   |   48 
 3 files changed, 87 insertions(+), 84 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-01-25 14:11:50 UTC (rev 126574)
+++ PKGBUILD2015-01-25 14:13:38 UTC (rev 126575)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau dragonl...@aur.archlinux.org
-# Contributor: Alexander Rødseth rods...@gmail.com
-# Contributor: Ionut Biru ib...@archlinux.org
-# Contributor: Roman Kyrylych ro...@archlinux.org
-# Contributor: Johannes Sjolund j.sjol...@gmail.com
-
-pkgname=gnome-commander
-pkgver=1.4.4
-pkgrel=1
-pkgdesc='Graphical two-pane filemanager for Gnome'
-arch=('i686' 'x86_64')
-url='http://gcmd.github.io/'
-license=('GPL')
-depends=('libgnomeui' 'gnome-vfs' 'gconf' 'python2' 'libsm' 'libunique')
-makedepends=('perl-xml-parser' 'gnome-doc-utils' 'intltool')
-install=$pkgname.install
-changelog=$pkgname.changelog
-source=(ftp://ftp.gnome.org/pub/GNOME/sources/gnome-commander/1.4/$pkgname-$pkgver.tar.xz)
-sha256sums=('0f0bad08d668014b558787bda21b90d7232708ab8b4bb4699409a0af03ab4d31')
-
-build() {
-  cd $pkgname-$pkgver
-
-  # Python 2 fix
-  for f in doc/*/gnome-commander.xml; do
-  sed -i 's:env python:env python2:' $f
-  done
-
-  ./configure --prefix=/usr --libdir=/usr/lib --sysconfdir=/etc \
-  --localstatedir=/var --disable-scrollkeeper --enable-python
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR=$pkgdir install
-  install -d $pkgdir/usr/share/gconf/schemas
-  gconf-merge-schema $pkgdir/usr/share/gconf/schemas/$pkgname.schemas \
---domain $pkgname $pkgdir/etc/gconf/schemas/*.schemas
-  rm -rf $pkgdir/etc/gconf/schemas/
-}

Copied: gnome-commander/repos/community-i686/PKGBUILD (from rev 126574, 
gnome-commander/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-01-25 14:13:38 UTC (rev 126575)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
+# Contributor: Alexander Rødseth rods...@gmail.com
+# Contributor: Ionut Biru ib...@archlinux.org
+# Contributor: Roman Kyrylych ro...@archlinux.org
+# Contributor: Johannes Sjolund j.sjol...@gmail.com
+
+pkgname=gnome-commander
+pkgver=1.4.5
+pkgrel=1
+pkgdesc='Graphical two-pane filemanager for Gnome'
+arch=('i686' 'x86_64')
+url='http://gcmd.github.io/'
+license=('GPL')
+depends=('libgnomeui' 'gnome-vfs' 'gconf' 'python2' 'libsm' 'libunique')
+makedepends=('perl-xml-parser' 'gnome-doc-utils' 'intltool')
+install=$pkgname.install
+changelog=$pkgname.changelog
+source=(ftp://ftp.gnome.org/pub/GNOME/sources/gnome-commander/1.4/$pkgname-$pkgver.tar.xz)
+sha256sums=('01da8a02f3387b47d86a4cbff93c6f74c6e4fbeb94bc54a8a6e60084d6c0b17f')
+
+build() {
+  cd $pkgname-$pkgver
+
+  # Python 2 fix
+  for f in doc/*/gnome-commander.xml; do
+  sed -i 's:env python:env python2:' $f
+  done
+
+  ./configure --prefix=/usr --libdir=/usr/lib --sysconfdir=/etc \
+  --localstatedir=/var --disable-scrollkeeper --enable-python
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR=$pkgdir install
+  install -d $pkgdir/usr/share/gconf/schemas
+  gconf-merge-schema $pkgdir/usr/share/gconf/schemas/$pkgname.schemas \
+--domain $pkgname $pkgdir/etc/gconf/schemas/*.schemas
+  rm -rf $pkgdir/etc/gconf/schemas/
+}

Deleted: gnome-commander.changelog
===
--- gnome-commander.changelog   2015-01-25 14:11:50 UTC (rev 126574)
+++ gnome-commander.changelog   2015-01-25 14:13:38 UTC (rev 126575)
@@ -1,17 +0,0 @@
-2014-11-12 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-   * gnome-commander 1.4.4-1
-
-2014-06-28 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-   * gnome-commander 1.4.3-1
-
-2014-05-25 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-   * gnome-commander 1.4.2-1
-
-2014-04-07 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-   * gnome-commander 

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

2015-01-25 Thread Kyle Keen
Date: Sunday, January 25, 2015 @ 12:55:29
  Author: kkeen
Revision: 126569

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

Deleted:
  cmatrix/repos/community-i686/PKGBUILD
  cmatrix/repos/community-i686/cmatrix.install
  cmatrix/repos/community-x86_64/PKGBUILD
  cmatrix/repos/community-x86_64/cmatrix.install

--+
 community-i686/PKGBUILD  |   44 -
 community-i686/cmatrix.install   |6 -
 community-x86_64/PKGBUILD|   44 -
 community-x86_64/cmatrix.install |6 -
 4 files changed, 100 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-01-25 11:55:11 UTC (rev 126568)
+++ community-i686/PKGBUILD 2015-01-25 11:55:29 UTC (rev 126569)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Jonathan Steel jsteel at archlinux.org
-
-pkgname=cmatrix
-pkgver=1.2a
-pkgrel=9
-pkgdesc=A curses-based scrolling 'Matrix'-like screen
-arch=('i686' 'x86_64')
-url=http://www.asty.org/cmatrix/;
-license=('GPL2')
-depends=('ncurses')
-makedepends=('fontconfig')
-optdepends=('fontconfig: custom font'
-'kdb: cmatrix-tty custom font'
-'xterm: cmatrix-tty custom font')
-install=$pkgname.install
-source=(http://www.asty.org/$pkgname/dist/$pkgname-$pkgver.tar.gz;
-cmatrix-tty)
-md5sums=('ebfb5733104a258173a9ccf2669968a1'
- 'db4371d5cb649973bfea31c2b932d260')
-
-build() {
-  cd $pkgname-$pkgver
-
-  CPPFLAGS=-D_FORTIFY_SOURCE=0 ./configure \
---prefix=/usr --mandir=/usr/share/man
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make DESTDIR=$pkgdir install
-  
-  install -Dm644 mtx.pcf $pkgdir/usr/share/fonts/misc/mtx.pcf
-  install -Dm644 matrix.fnt $pkgdir/usr/share/kbd/consolefonts/matrix.fnt
-  install -Dm644 matrix.psf.gz 
$pkgdir/usr/share/kbd/consolefonts/matrix.psf.gz
-  install -Dm755 $srcdir/cmatrix-tty $pkgdir/usr/bin/cmatrix-tty
-
-  for i in AUTHORS NEWS COPYING README ChangeLog TODO INSTALL; do
-install -Dm644 $i $pkgdir/usr/share/doc/$pkgname/$i
-  done
-}

Deleted: community-i686/cmatrix.install
===
--- community-i686/cmatrix.install  2015-01-25 11:55:11 UTC (rev 126568)
+++ community-i686/cmatrix.install  2015-01-25 11:55:29 UTC (rev 126569)
@@ -1,6 +0,0 @@
-post_install() {
-  if [[ -x /usr/bin/fc-cache ]]; then
-fc-cache
-  fi
-}
-

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-01-25 11:55:11 UTC (rev 126568)
+++ community-x86_64/PKGBUILD   2015-01-25 11:55:29 UTC (rev 126569)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Jonathan Steel jsteel at archlinux.org
-
-pkgname=cmatrix
-pkgver=1.2a
-pkgrel=9
-pkgdesc=A curses-based scrolling 'Matrix'-like screen
-arch=('i686' 'x86_64')
-url=http://www.asty.org/cmatrix/;
-license=('GPL2')
-depends=('ncurses')
-makedepends=('fontconfig')
-optdepends=('fontconfig: custom font'
-'kdb: cmatrix-tty custom font'
-'xterm: cmatrix-tty custom font')
-install=$pkgname.install
-source=(http://www.asty.org/$pkgname/dist/$pkgname-$pkgver.tar.gz;
-cmatrix-tty)
-md5sums=('ebfb5733104a258173a9ccf2669968a1'
- 'db4371d5cb649973bfea31c2b932d260')
-
-build() {
-  cd $pkgname-$pkgver
-
-  CPPFLAGS=-D_FORTIFY_SOURCE=0 ./configure \
---prefix=/usr --mandir=/usr/share/man
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make DESTDIR=$pkgdir install
-  
-  install -Dm644 mtx.pcf $pkgdir/usr/share/fonts/misc/mtx.pcf
-  install -Dm644 matrix.fnt $pkgdir/usr/share/kbd/consolefonts/matrix.fnt
-  install -Dm644 matrix.psf.gz 
$pkgdir/usr/share/kbd/consolefonts/matrix.psf.gz
-  install -Dm755 $srcdir/cmatrix-tty $pkgdir/usr/bin/cmatrix-tty
-
-  for i in AUTHORS NEWS COPYING README ChangeLog TODO INSTALL; do
-install -Dm644 $i $pkgdir/usr/share/doc/$pkgname/$i
-  done
-}

Deleted: community-x86_64/cmatrix.install
===
--- community-x86_64/cmatrix.install2015-01-25 11:55:11 UTC (rev 126568)
+++ community-x86_64/cmatrix.install2015-01-25 11:55:29 UTC (rev 126569)
@@ -1,6 +0,0 @@
-post_install() {
-  if [[ -x /usr/bin/fc-cache ]]; then
-fc-cache
-  fi
-}
-


[arch-commits] Commit in xf86-input-wacom/repos (4 files)

2015-01-25 Thread Andreas Radke
Date: Sunday, January 25, 2015 @ 13:20:33
  Author: andyrtr
Revision: 229980

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

Added:
  xf86-input-wacom/repos/testing-i686/
  xf86-input-wacom/repos/testing-i686/PKGBUILD
(from rev 229979, xf86-input-wacom/trunk/PKGBUILD)
  xf86-input-wacom/repos/testing-x86_64/
  xf86-input-wacom/repos/testing-x86_64/PKGBUILD
(from rev 229979, xf86-input-wacom/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   29 +
 testing-x86_64/PKGBUILD |   29 +
 2 files changed, 58 insertions(+)

Copied: xf86-input-wacom/repos/testing-i686/PKGBUILD (from rev 229979, 
xf86-input-wacom/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-01-25 12:20:33 UTC (rev 229980)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Contributor: Jan de Groot j...@archlinux.org
+# Contributor: M Rawash mraw...@gmail.com
+
+pkgname=xf86-input-wacom
+pkgver=0.28.0
+pkgrel=1
+pkgdesc=X.Org Wacom tablet driver
+arch=(i686 x86_64)
+url=http://linuxwacom.sourceforge.net/;
+license=(GPL)
+depends=(libxi libxinerama libxrandr systemd)
+makedepends=('xorg-server-devel' 'X-ABI-XINPUT_VERSION=21' 'resourceproto' 
'scrnsaverproto')
+conflicts=('xorg-server1.16' 'X-ABI-XINPUT_VERSION21' 
'X-ABI-XINPUT_VERSION=22')
+source=(http://downloads.sourceforge.net/project/linuxwacom/$pkgname/$pkgname-$pkgver.tar.bz2)
+sha1sums=('4247b041ad29d38c628ccadbe8f8f55d1180bb0d')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: xf86-input-wacom/repos/testing-x86_64/PKGBUILD (from rev 229979, 
xf86-input-wacom/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-01-25 12:20:33 UTC (rev 229980)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Contributor: Jan de Groot j...@archlinux.org
+# Contributor: M Rawash mraw...@gmail.com
+
+pkgname=xf86-input-wacom
+pkgver=0.28.0
+pkgrel=1
+pkgdesc=X.Org Wacom tablet driver
+arch=(i686 x86_64)
+url=http://linuxwacom.sourceforge.net/;
+license=(GPL)
+depends=(libxi libxinerama libxrandr systemd)
+makedepends=('xorg-server-devel' 'X-ABI-XINPUT_VERSION=21' 'resourceproto' 
'scrnsaverproto')
+conflicts=('xorg-server1.16' 'X-ABI-XINPUT_VERSION21' 
'X-ABI-XINPUT_VERSION=22')
+source=(http://downloads.sourceforge.net/project/linuxwacom/$pkgname/$pkgname-$pkgver.tar.bz2)
+sha1sums=('4247b041ad29d38c628ccadbe8f8f55d1180bb0d')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}


[arch-commits] Commit in xf86-input-wacom/trunk (PKGBUILD)

2015-01-25 Thread Andreas Radke
Date: Sunday, January 25, 2015 @ 13:20:16
  Author: andyrtr
Revision: 229979

upgpkg: xf86-input-wacom 0.28.0-1

upstream update 0.28.0

Modified:
  xf86-input-wacom/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-25 09:56:38 UTC (rev 229978)
+++ PKGBUILD2015-01-25 12:20:16 UTC (rev 229979)
@@ -1,10 +1,11 @@
 # $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
 # Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
 # Contributor: Jan de Groot j...@archlinux.org
 # Contributor: M Rawash mraw...@gmail.com
 
 pkgname=xf86-input-wacom
-pkgver=0.27.0
+pkgver=0.28.0
 pkgrel=1
 pkgdesc=X.Org Wacom tablet driver
 arch=(i686 x86_64)
@@ -14,7 +15,7 @@
 makedepends=('xorg-server-devel' 'X-ABI-XINPUT_VERSION=21' 'resourceproto' 
'scrnsaverproto')
 conflicts=('xorg-server1.16' 'X-ABI-XINPUT_VERSION21' 
'X-ABI-XINPUT_VERSION=22')
 
source=(http://downloads.sourceforge.net/project/linuxwacom/$pkgname/$pkgname-$pkgver.tar.bz2)
-md5sums=('f75b374c47969fb9b21d9c2134396400')
+sha1sums=('4247b041ad29d38c628ccadbe8f8f55d1180bb0d')
 
 build() {
   cd $pkgname-$pkgver


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

2015-01-25 Thread Andrea Scarpino
Date: Sunday, January 25, 2015 @ 13:21:10
  Author: andrea
Revision: 229982

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

Added:
  plasma-workspace/repos/extra-i686/PKGBUILD
(from rev 229981, plasma-workspace/trunk/PKGBUILD)
  plasma-workspace/repos/extra-i686/dbus.patch
(from rev 229981, plasma-workspace/trunk/dbus.patch)
  plasma-workspace/repos/extra-i686/kde.pam
(from rev 229981, plasma-workspace/trunk/kde.pam)
  plasma-workspace/repos/extra-i686/screenlocker-network.patch
(from rev 229981, plasma-workspace/trunk/screenlocker-network.patch)
  plasma-workspace/repos/extra-x86_64/PKGBUILD
(from rev 229981, plasma-workspace/trunk/PKGBUILD)
  plasma-workspace/repos/extra-x86_64/dbus.patch
(from rev 229981, plasma-workspace/trunk/dbus.patch)
  plasma-workspace/repos/extra-x86_64/kde.pam
(from rev 229981, plasma-workspace/trunk/kde.pam)
  plasma-workspace/repos/extra-x86_64/screenlocker-network.patch
(from rev 229981, plasma-workspace/trunk/screenlocker-network.patch)
Deleted:
  plasma-workspace/repos/extra-i686/PKGBUILD
  plasma-workspace/repos/extra-i686/dbus.patch
  plasma-workspace/repos/extra-i686/kde.pam
  plasma-workspace/repos/extra-i686/screenlocker-input.patch
  plasma-workspace/repos/extra-i686/screenlocker-network.patch
  plasma-workspace/repos/extra-x86_64/PKGBUILD
  plasma-workspace/repos/extra-x86_64/dbus.patch
  plasma-workspace/repos/extra-x86_64/kde.pam
  plasma-workspace/repos/extra-x86_64/screenlocker-input.patch
  plasma-workspace/repos/extra-x86_64/screenlocker-network.patch

-+
 /PKGBUILD   |  120 +
 /dbus.patch |   76 +++
 /kde.pam|   12 
 /screenlocker-network.patch |  342 ++
 extra-i686/PKGBUILD |   62 --
 extra-i686/dbus.patch   |   38 -
 extra-i686/kde.pam  |6 
 extra-i686/screenlocker-input.patch |  705 --
 extra-i686/screenlocker-network.patch   |  171 ---
 extra-x86_64/PKGBUILD   |   62 --
 extra-x86_64/dbus.patch |   38 -
 extra-x86_64/kde.pam|6 
 extra-x86_64/screenlocker-input.patch   |  705 --
 extra-x86_64/screenlocker-network.patch |  171 ---
 14 files changed, 550 insertions(+), 1964 deletions(-)

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


[arch-commits] Commit in plasma-workspace/trunk (PKGBUILD screenlocker-input.patch)

2015-01-25 Thread Andrea Scarpino
Date: Sunday, January 25, 2015 @ 13:20:57
  Author: andrea
Revision: 229981

upgpkg: plasma-workspace 5.1.2-5

Add missing deps

Modified:
  plasma-workspace/trunk/PKGBUILD
Deleted:
  plasma-workspace/trunk/screenlocker-input.patch

--+
 PKGBUILD |8 
 screenlocker-input.patch |  705 -
 2 files changed, 3 insertions(+), 710 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-01-25 12:20:33 UTC (rev 229980)
+++ PKGBUILD2015-01-25 12:20:57 UTC (rev 229981)
@@ -5,7 +5,7 @@
 
 pkgname=plasma-workspace
 pkgver=5.1.2
-pkgrel=4
+pkgrel=5
 pkgdesc='KDE Plasma Workspace'
 arch=('i686' 'x86_64')
 url='https://projects.kde.org/projects/kde/workspace/plasma-workspace'
@@ -13,7 +13,7 @@
 depends=('knewstuff' 'baloo-frameworks' 'kjsembed' 'knotifyconfig' 'libxcursor'
  'libksysguard' 'libkscreen-frameworks' 'ktexteditor' 'libqalculate'
  'qt5-tools' 'kded' 'kde-cli-tools' 'kio-extras' 'milou' 'breeze'
- 'xorg-xrdb' 'xorg-xsetroot' 'xorg-xmessage')
+ 'xorg-xrdb' 'xorg-xsetroot' 'xorg-xmessage' 'xorg-xprop')
 makedepends=('extra-cmake-modules' 'kdoctools' 'kwin' 'gpsd')
 optdepends=('plasma-workspace-wallpapers: additional wallpapers'
 'gpsd: GPS support for geolocation')
@@ -22,10 +22,9 @@
 options=('!buildflags')
 
source=(http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz;
 'kde.pam'
-'screenlocker-input.patch' 'screenlocker-network.patch' 'dbus.patch')
+'screenlocker-network.patch' 'dbus.patch')
 md5sums=('8a01835179b25e3a7ff644fd7e52ec96'
  '929b182dec8a096206ad493477c09d2c'
- '7e426d07806d8887879d932791bba869'
  'd67e504422a7e80a91b7adf3f41563f5'
  '45f12d6fec8a5e08ce1080f5efb8fb21')
 
@@ -33,7 +32,6 @@
   mkdir -p build
 
   cd ${pkgname}-${pkgver}
-  #patch -p1 -i ../screenlocker-input.patch
   patch -p1 -i ../screenlocker-network.patch
   patch -p1 -i ../dbus.patch
 }

Deleted: screenlocker-input.patch
===
--- screenlocker-input.patch2015-01-25 12:20:33 UTC (rev 229980)
+++ screenlocker-input.patch2015-01-25 12:20:57 UTC (rev 229981)
@@ -1,705 +0,0 @@
-commit 0ac34dca5d6a6ea8fc5c06e1dae96fb1ad4ce7c9
-Author: Martin Gräßlin mgraess...@kde.org
-Date:   Wed Dec 10 13:22:49 2014 +0100
-
-Use out-of-band communication between ksld and greeter
-
-The screenlocker_greet needs to tell the parent ksld process which
-windows it created. Ksld sends input events to these windows. So
-far this was based on an X property on the window. Unfortunately
-ksld didn't validate whether the windows tagged with this property
-belong to the screenlocker_greet process it started.
-
-With this change the communication for announcing windows is moved
-away from the X11 protocol and instead a custom Wayland protocol is
-used.
-
-Ksld starts a KWaylandServer when the greet process gets started. It
-creates anonymous unix sockets for the connection and passes one
-filedescriptor to the started greeter process.
-
-The check for the X property is removed in ksld and instead only
-windows ids passed through the Wayland socket connection are
-accepted.
-
-REVIEW: 121429
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index c6d89c1..227eace 100644
 a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -74,6 +74,16 @@ if(X11_FOUND AND XCB_XCB_FOUND)
-   set(HAVE_X11 1)
- endif()
- 
-+find_package(KF5Wayland CONFIG)
-+set_package_properties(KF5Wayland PROPERTIES
-+   TYPE REQUIRED
-+   PURPOSE Required for building screenlocker)
-+find_package(WaylandScanner)
-+find_package(Wayland 1.3 COMPONENTS Client Server)
-+set_package_properties(Wayland PROPERTIES
-+   TYPE REQUIRED
-+   PURPOSE Required for building screenlocker)
-+
- include(ConfigureChecks.cmake)
- 
- include_directories(${CMAKE_CURRENT_BINARY_DIR})
-diff --git a/ksmserver/screenlocker/CMakeLists.txt 
b/ksmserver/screenlocker/CMakeLists.txt
-index 5378a10..83a5b39 100644
 a/ksmserver/screenlocker/CMakeLists.txt
-+++ b/ksmserver/screenlocker/CMakeLists.txt
-@@ -1,6 +1,9 @@
- remove_definitions(-DTRANSLATION_DOMAIN=\ksmserver\)
- add_definitions(-DTRANSLATION_DOMAIN=\kscreenlocker\)
- 
-+# adjusting CMAKE_C_FLAGS to get wayland protocols to compile
-+set(CMAKE_C_FLAGS ${CMAKE_C_FLAGS} -std=gnu90)
-+
- add_definitions(-DKDE_DEFAULT_DEBUG_AREA=1223)
- add_subdirectory(kcheckpass)
- add_subdirectory(greeter)
-@@ -17,6 +20,7 @@ set(ksld_SRCS
-interface.cpp
-lockwindow.cpp
-logind.cpp
-+   waylandserver.cpp
- )
- qt5_add_dbus_adaptor(ksld_SRCS ${screensaver_dbusXML} interface.h 
ScreenLocker::Interface)
- qt5_add_dbus_adaptor(ksld_SRCS ${kscreensaver_dbusXML} interface.h 

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

2015-01-25 Thread Andrea Scarpino
Date: Sunday, January 25, 2015 @ 13:22:18
  Author: andrea
Revision: 229984

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-01-25 12:22:08 UTC (rev 229983)
+++ extra-i686/PKGBUILD 2015-01-25 12:22:18 UTC (rev 229984)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-
-pkgname=konsolepart4
-pkgver=4.14.3
-pkgrel=4
-arch=('i686' 'x86_64')
-url='http://kde.org/applications/system/konsole/'
-pkgdesc=KDE terminal part
-license=('GPL' 'LGPL' 'FDL')
-depends=('kdebase-runtime' 'kdebase-lib')
-makedepends=('cmake' 'automoc4')
-provides=('kdebase-konsole')
-conflicts=(kdebase-konsole$pkgver-$pkgrel)
-source=(http://download.kde.org/stable/${pkgver}/src/konsole-${pkgver}.tar.xz;)
-sha1sums=('5ae78061f38f06f80ee10f4475ff33d1c0843b4d')
-
-build() {
-  mkdir build
-  cd build
-  cmake ../konsole-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-
-# provided by konsole
-  rm -fr $pkgdir/usr/{bin,share/applications}
-}

Copied: konsolepart4/repos/extra-i686/PKGBUILD (from rev 229983, 
konsolepart4/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-01-25 12:22:18 UTC (rev 229984)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+
+pkgname=konsolepart4
+pkgver=4.14.3
+pkgrel=5
+arch=('i686' 'x86_64')
+url='http://kde.org/applications/system/konsole/'
+pkgdesc=KDE terminal part
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdebase-runtime' 'kdebase-lib')
+makedepends=('cmake' 'automoc4')
+provides=('kdebase-konsole')
+conflicts=(kdebase-konsole$pkgver-$pkgrel)
+source=(http://download.kde.org/stable/${pkgver}/src/konsole-${pkgver}.tar.xz;)
+sha1sums=('5ae78061f38f06f80ee10f4475ff33d1c0843b4d')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../konsole-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+
+  # provided by konsole
+  rm -r $pkgdir/usr/{bin,share/applications}
+  rm ${pkgdir}/usr/lib/libkdeinit4_konsole.so
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-01-25 12:22:08 UTC (rev 229983)
+++ extra-x86_64/PKGBUILD   2015-01-25 12:22:18 UTC (rev 229984)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-
-pkgname=konsolepart4
-pkgver=4.14.3
-pkgrel=4
-arch=('i686' 'x86_64')
-url='http://kde.org/applications/system/konsole/'
-pkgdesc=KDE terminal part
-license=('GPL' 'LGPL' 'FDL')
-depends=('kdebase-runtime' 'kdebase-lib')
-makedepends=('cmake' 'automoc4')
-provides=('kdebase-konsole')
-conflicts=(kdebase-konsole$pkgver-$pkgrel)
-source=(http://download.kde.org/stable/${pkgver}/src/konsole-${pkgver}.tar.xz;)
-sha1sums=('5ae78061f38f06f80ee10f4475ff33d1c0843b4d')
-
-build() {
-  mkdir build
-  cd build
-  cmake ../konsole-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-
-# provided by konsole
-  rm -fr $pkgdir/usr/{bin,share/applications}
-}

Copied: konsolepart4/repos/extra-x86_64/PKGBUILD (from rev 229983, 
konsolepart4/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2015-01-25 12:22:18 UTC (rev 229984)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+
+pkgname=konsolepart4
+pkgver=4.14.3
+pkgrel=5
+arch=('i686' 'x86_64')
+url='http://kde.org/applications/system/konsole/'
+pkgdesc=KDE terminal part
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdebase-runtime' 'kdebase-lib')
+makedepends=('cmake' 'automoc4')
+provides=('kdebase-konsole')
+conflicts=(kdebase-konsole$pkgver-$pkgrel)

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

2015-01-25 Thread Andrea Scarpino
Date: Sunday, January 25, 2015 @ 13:22:08
  Author: andrea
Revision: 229983

upgpkg: konsolepart4 4.14.3-5

Avoid apps to load the old konsole (FS#43558)

Modified:
  konsolepart4/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-25 12:21:10 UTC (rev 229982)
+++ PKGBUILD2015-01-25 12:22:08 UTC (rev 229983)
@@ -4,7 +4,7 @@
 
 pkgname=konsolepart4
 pkgver=4.14.3
-pkgrel=4
+pkgrel=5
 arch=('i686' 'x86_64')
 url='http://kde.org/applications/system/konsole/'
 pkgdesc=KDE terminal part
@@ -16,8 +16,11 @@
 
source=(http://download.kde.org/stable/${pkgver}/src/konsole-${pkgver}.tar.xz;)
 sha1sums=('5ae78061f38f06f80ee10f4475ff33d1c0843b4d')
 
+prepare() {
+  mkdir build
+}
+
 build() {
-  mkdir build
   cd build
   cmake ../konsole-${pkgver} \
 -DCMAKE_BUILD_TYPE=Release \
@@ -30,6 +33,7 @@
   cd build
   make DESTDIR=${pkgdir} install
 
-# provided by konsole
-  rm -fr $pkgdir/usr/{bin,share/applications}
+  # provided by konsole
+  rm -r $pkgdir/usr/{bin,share/applications}
+  rm ${pkgdir}/usr/lib/libkdeinit4_konsole.so
 }


[arch-commits] Commit in man-pages/repos (testing-any testing-any/PKGBUILD)

2015-01-25 Thread Andreas Radke
Date: Sunday, January 25, 2015 @ 13:30:16
  Author: andyrtr
Revision: 229988

archrelease: copy trunk to testing-any

Added:
  man-pages/repos/testing-any/
  man-pages/repos/testing-any/PKGBUILD
(from rev 229987, man-pages/trunk/PKGBUILD)

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

Copied: man-pages/repos/testing-any/PKGBUILD (from rev 229987, 
man-pages/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2015-01-25 12:30:16 UTC (rev 229988)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+
+pkgname=man-pages
+pkgver=3.78
+_posixver=2013-a
+pkgrel=1
+pkgdesc=Linux man pages
+arch=('any')
+license=('GPL' 'custom')
+url=http://man7.org/linux/man-pages/index.html;
+groups=('base')
+depends=()
+source=(http://www.kernel.org/pub/linux/docs/man-pages/$pkgname-$pkgver.tar.{xz,sign}
+
http://www.kernel.org/pub/linux/docs/man-pages/man-pages-posix/$pkgname-posix-${_posixver}.tar.xz)
+# https://www.kernel.org/pub/linux/docs/man-pages/sha256sums.asc
+sha256sums=('c52897a17fbc6304d3fe273e7eb12d6feff82d460a62290121cfbaf501d3a37e'
+'SKIP'
+'19633a5c75ff7deab35b1d2c3d5b7748e7bd4ef4ab598b647bb7e7f60b90a808')
+validpgpkeys=('E522595B52EDA4E6BFCCCB5E856199113A35CE5E') #Michael Kerrisk 
(Linux man-pages maintainer) mtk.manpa...@gmail.com
+
+build() {
+  cd ${srcdir}/$pkgname-$pkgver
+  
+  # move the posix pages
+  mkdir -p ${srcdir}/$pkgname-$pkgver/man0
+  for sect in 0 1 3; do
+sed -i /^\.so /s/man${sect}p/man$sect/ 
${srcdir}/$pkgname-posix-${_posixver}/man${sect}p/*
+mv -iv ${srcdir}/$pkgname-posix-${_posixver}/man${sect}p/* 
${srcdir}/$pkgname-$pkgver/man$sect/
+  done
+}
+
+package() {
+  cd ${srcdir}/$pkgname-$pkgver
+
+  make prefix=${pkgdir}/usr install
+  
+  # posix pages have a custom license
+  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 ${srcdir}/$pkgname-posix-${_posixver}/POSIX-COPYRIGHT 
${pkgdir}/usr/share/licenses/${pkgname}/POSIX-COPYRIGHT
+  
+  cd ${pkgdir}/usr/share/man
+  # these are included in coreutils
+  rm -f man1/{chgrp,chmod,chown,cp,dir,dd}.1
+  rm -f man1/{df,dircolors,du,install,ln,ls}.1
+  rm -f man1/{mkdir,mkfifo,mknod,mv,rm,rmdir}.1
+  rm -f man1/{touch,vdir}.1
+  # this is included in shadow
+  rm -f man5/passwd.5
+  rm -f man3/getspnam.3
+  # this is included in diffutils
+  rm -f man1/diff.1
+  # this is included in xf86-input-mouse
+  rm -f man4/mouse.4
+  
+  
+}


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

2015-01-25 Thread Andreas Radke
Date: Sunday, January 25, 2015 @ 13:30:07
  Author: andyrtr
Revision: 229987

upgpkg: man-pages 3.78-1

upstream update 3.78

Modified:
  man-pages/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-25 12:24:09 UTC (rev 229986)
+++ PKGBUILD2015-01-25 12:30:07 UTC (rev 229987)
@@ -2,7 +2,7 @@
 # Maintainer: Andreas Radke andy...@archlinux.org
 
 pkgname=man-pages
-pkgver=3.77
+pkgver=3.78
 _posixver=2013-a
 pkgrel=1
 pkgdesc=Linux man pages
@@ -14,7 +14,7 @@
 
source=(http://www.kernel.org/pub/linux/docs/man-pages/$pkgname-$pkgver.tar.{xz,sign}
 
http://www.kernel.org/pub/linux/docs/man-pages/man-pages-posix/$pkgname-posix-${_posixver}.tar.xz)
 # https://www.kernel.org/pub/linux/docs/man-pages/sha256sums.asc
-sha256sums=('fc630f063b4671cece6cffee47d0ad25b871219ffba8bf2784f084512af5954f'
+sha256sums=('c52897a17fbc6304d3fe273e7eb12d6feff82d460a62290121cfbaf501d3a37e'
 'SKIP'
 '19633a5c75ff7deab35b1d2c3d5b7748e7bd4ef4ab598b647bb7e7f60b90a808')
 validpgpkeys=('E522595B52EDA4E6BFCCCB5E856199113A35CE5E') #Michael Kerrisk 
(Linux man-pages maintainer) mtk.manpa...@gmail.com


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

2015-01-25 Thread Jaroslav Lichtblau
Date: Sunday, January 25, 2015 @ 15:03:42
  Author: jlichtblau
Revision: 126571

archrelease: copy trunk to community-x86_64

Added:
  gnome-commander/repos/community-x86_64/PKGBUILD
(from rev 126570, gnome-commander/trunk/PKGBUILD)
  gnome-commander/repos/community-x86_64/gnome-commander.changelog
(from rev 126570, gnome-commander/trunk/gnome-commander.changelog)
  gnome-commander/repos/community-x86_64/gnome-commander.install
(from rev 126570, gnome-commander/trunk/gnome-commander.install)
Deleted:
  gnome-commander/repos/community-x86_64/PKGBUILD
  gnome-commander/repos/community-x86_64/gnome-commander.changelog
  gnome-commander/repos/community-x86_64/gnome-commander.install

---+
 PKGBUILD  |   86 ++--
 gnome-commander.changelog |   37 ++
 gnome-commander.install   |   48 
 3 files changed, 87 insertions(+), 84 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-01-25 14:03:32 UTC (rev 126570)
+++ PKGBUILD2015-01-25 14:03:42 UTC (rev 126571)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau dragonl...@aur.archlinux.org
-# Contributor: Alexander Rødseth rods...@gmail.com
-# Contributor: Ionut Biru ib...@archlinux.org
-# Contributor: Roman Kyrylych ro...@archlinux.org
-# Contributor: Johannes Sjolund j.sjol...@gmail.com
-
-pkgname=gnome-commander
-pkgver=1.4.4
-pkgrel=1
-pkgdesc='Graphical two-pane filemanager for Gnome'
-arch=('i686' 'x86_64')
-url='http://gcmd.github.io/'
-license=('GPL')
-depends=('libgnomeui' 'gnome-vfs' 'gconf' 'python2' 'libsm' 'libunique')
-makedepends=('perl-xml-parser' 'gnome-doc-utils' 'intltool')
-install=$pkgname.install
-changelog=$pkgname.changelog
-source=(ftp://ftp.gnome.org/pub/GNOME/sources/gnome-commander/1.4/$pkgname-$pkgver.tar.xz)
-sha256sums=('0f0bad08d668014b558787bda21b90d7232708ab8b4bb4699409a0af03ab4d31')
-
-build() {
-  cd $pkgname-$pkgver
-
-  # Python 2 fix
-  for f in doc/*/gnome-commander.xml; do
-  sed -i 's:env python:env python2:' $f
-  done
-
-  ./configure --prefix=/usr --libdir=/usr/lib --sysconfdir=/etc \
-  --localstatedir=/var --disable-scrollkeeper --enable-python
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR=$pkgdir install
-  install -d $pkgdir/usr/share/gconf/schemas
-  gconf-merge-schema $pkgdir/usr/share/gconf/schemas/$pkgname.schemas \
---domain $pkgname $pkgdir/etc/gconf/schemas/*.schemas
-  rm -rf $pkgdir/etc/gconf/schemas/
-}

Copied: gnome-commander/repos/community-x86_64/PKGBUILD (from rev 126570, 
gnome-commander/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-01-25 14:03:42 UTC (rev 126571)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
+# Contributor: Alexander Rødseth rods...@gmail.com
+# Contributor: Ionut Biru ib...@archlinux.org
+# Contributor: Roman Kyrylych ro...@archlinux.org
+# Contributor: Johannes Sjolund j.sjol...@gmail.com
+
+pkgname=gnome-commander
+pkgver=1.4.5
+pkgrel=1
+pkgdesc='Graphical two-pane filemanager for Gnome'
+arch=('i686' 'x86_64')
+url='http://gcmd.github.io/'
+license=('GPL')
+depends=('libgnomeui' 'gnome-vfs' 'gconf' 'python2' 'libsm' 'libunique')
+makedepends=('perl-xml-parser' 'gnome-doc-utils' 'intltool')
+install=$pkgname.install
+changelog=$pkgname.changelog
+source=(ftp://ftp.gnome.org/pub/GNOME/sources/gnome-commander/1.4/$pkgname-$pkgver.tar.xz)
+sha256sums=('01da8a02f3387b47d86a4cbff93c6f74c6e4fbeb94bc54a8a6e60084d6c0b17f')
+
+build() {
+  cd $pkgname-$pkgver
+
+  # Python 2 fix
+  for f in doc/*/gnome-commander.xml; do
+  sed -i 's:env python:env python2:' $f
+  done
+
+  ./configure --prefix=/usr --libdir=/usr/lib --sysconfdir=/etc \
+  --localstatedir=/var --disable-scrollkeeper --enable-python
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR=$pkgdir install
+  install -d $pkgdir/usr/share/gconf/schemas
+  gconf-merge-schema $pkgdir/usr/share/gconf/schemas/$pkgname.schemas \
+--domain $pkgname $pkgdir/etc/gconf/schemas/*.schemas
+  rm -rf $pkgdir/etc/gconf/schemas/
+}

Deleted: gnome-commander.changelog
===
--- gnome-commander.changelog   2015-01-25 14:03:32 UTC (rev 126570)
+++ gnome-commander.changelog   2015-01-25 14:03:42 UTC (rev 126571)
@@ -1,17 +0,0 @@
-2014-11-12 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-   * gnome-commander 1.4.4-1
-
-2014-06-28 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-   * gnome-commander 1.4.3-1
-
-2014-05-25 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-   * gnome-commander 1.4.2-1
-
-2014-04-07 Jaroslav Lichtblau dragonl...@aur.archlinux.org
-   * 

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

2015-01-25 Thread Christian Hesse
Date: Sunday, January 25, 2015 @ 15:04:12
  Author: eworm
Revision: 126572

upgpkg: packagekit 1.0.4-2

Install /usr/share/polkit-1/rules.d/ with polkit's owner and permission.

Modified:
  packagekit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-25 14:03:42 UTC (rev 126571)
+++ PKGBUILD2015-01-25 14:04:12 UTC (rev 126572)
@@ -4,7 +4,7 @@
 
 pkgname='packagekit'
 pkgver=1.0.4
-pkgrel=1
+pkgrel=2
 pkgdesc='A system designed to make installation and updates of packages easier'
 arch=('i686' 'x86_64')
 url='http://www.packagekit.org/'
@@ -56,6 +56,9 @@
 package() {
cd ${srcdir}/PackageKit-${pkgver}
 
+   # install directory with polkit's owner and permission
+   install -d -m0700 -o 102 ${pkgdir}/usr/share/polkit-1/rules.d
+
make DESTDIR=${pkgdir} install
 }
 


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

2015-01-25 Thread Antonio Rojas
Date: Sunday, January 25, 2015 @ 15:19:20
  Author: arojas
Revision: 126576

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

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

-+
 /PKGBUILD   |  128 ++
 /packagekit.install |   22 +
 community-i686/PKGBUILD |   58 ---
 community-i686/packagekit.install   |   11 --
 community-x86_64/PKGBUILD   |   58 ---
 community-x86_64/packagekit.install |   11 --
 6 files changed, 150 insertions(+), 138 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-01-25 14:13:38 UTC (rev 126575)
+++ community-i686/PKGBUILD 2015-01-25 14:19:20 UTC (rev 126576)
@@ -1,58 +0,0 @@
-# Maintainer: Christian Hesse m...@eworm.de
-# Contributor: Jonathan Conder jonno.con...@gmail.com
-
-pkgname='packagekit'
-pkgver=1.0.4
-pkgrel=1
-pkgdesc='A system designed to make installation and updates of packages easier'
-arch=('i686' 'x86_64')
-url='http://www.packagekit.org/'
-license=('GPL')
-depends=('dbus-glib' 'pacman' 'polkit' 'shared-mime-info' 'sqlite')
-makedepends=('dbus-glib' 'gobject-introspection' 'gtk-doc' 'intltool'
-   'networkmanager' 'pacman=4.2.0'  'pm-utils' 'polkit'
-   'shared-mime-info' 'sqlite' 'bash-completion')
-optdepends=('networkmanager: detect connection status'
-   'bash-completion: command completion in bash')
-install='packagekit.install'
-backup=('var/lib/PackageKit/transactions.db'
-   'etc/PackageKit/alpm.d/pacman.conf'
-   'etc/PackageKit/alpm.d/repos.list')
-source=(http://www.freedesktop.org/software/PackageKit/releases/PackageKit-${pkgver}.tar.xz;)
-sha256sums=('1b949a7dc92e20f7d7deb634e5b399148dbb749e813cea955f1546a99e169a71')
-
-prepare() {
-   cd ${srcdir}/PackageKit-${pkgver}
-
-   # packagekit does not know about updates made by pacman while daemon is 
running
-   # https://github.com/hughsie/PackageKit/issues/15
-   # For now we just exit the daemon... It will launch with a clean status 
if required.
-   sed -i '/ExecStart=/s/$/ --timed-exit/' data/packagekit.service.in
-}
-
-build() {
-   cd ${srcdir}/PackageKit-${pkgver}
-
-   ./autogen.sh --prefix=/usr \
-   --sysconfdir=/etc \
-   --localstatedir=/var \
-   --libexecdir=/usr/lib/PackageKit \
-   --disable-static \
-   --disable-gtk-doc \
-   --disable-local \
-   --disable-browser-plugin \
-   --disable-gstreamer-plugin \
-   --disable-gtk-module \
-   --disable-command-not-found \
-   --disable-cron \
-   --disable-dummy \
-   --enable-alpm
-   make
-}
-
-package() {
-   cd ${srcdir}/PackageKit-${pkgver}
-
-   make DESTDIR=${pkgdir} install
-}
-

Copied: packagekit/repos/community-i686/PKGBUILD (from rev 126575, 
packagekit/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-01-25 14:19:20 UTC (rev 126576)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer: Christian Hesse m...@eworm.de
+# Contributor: Jonathan Conder jonno.con...@gmail.com
+
+pkgname='packagekit'
+pkgver=1.0.4
+pkgrel=2
+pkgdesc='A system designed to make installation and updates of packages easier'
+arch=('i686' 'x86_64')
+url='http://www.packagekit.org/'
+license=('GPL')
+depends=('dbus-glib' 'pacman' 'polkit' 'shared-mime-info' 'sqlite')
+makedepends=('dbus-glib' 'gobject-introspection' 'gtk-doc' 'intltool'
+   'networkmanager' 'pacman=4.2.0'  'pm-utils' 'polkit'
+   'shared-mime-info' 'sqlite' 'bash-completion')
+optdepends=('networkmanager: detect connection status'
+   'bash-completion: command completion in bash')
+install='packagekit.install'
+backup=('var/lib/PackageKit/transactions.db'
+   'etc/PackageKit/alpm.d/pacman.conf'
+   'etc/PackageKit/alpm.d/repos.list')
+validpgpkeys=('163EB50119225DB3DF8F49EA17ACBA8DFA970E17') # Richard Hughes
+source=(http://www.freedesktop.org/software/PackageKit/releases/PackageKit-${pkgver}.tar.xz{,.asc})
+sha256sums=('1b949a7dc92e20f7d7deb634e5b399148dbb749e813cea955f1546a99e169a71'
+   'SKIP')
+

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

2015-01-25 Thread Kyle Keen
Date: Sunday, January 25, 2015 @ 12:55:11
  Author: kkeen
Revision: 126568

upgpkg: cmatrix 1.2a-10 FS#43402

Modified:
  cmatrix/trunk/PKGBUILD
  cmatrix/trunk/cmatrix-tty

-+
 PKGBUILD|6 +++---
 cmatrix-tty |   10 --
 2 files changed, 11 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-01-25 11:39:07 UTC (rev 126567)
+++ PKGBUILD2015-01-25 11:55:11 UTC (rev 126568)
@@ -3,7 +3,7 @@
 
 pkgname=cmatrix
 pkgver=1.2a
-pkgrel=9
+pkgrel=10
 pkgdesc=A curses-based scrolling 'Matrix'-like screen
 arch=('i686' 'x86_64')
 url=http://www.asty.org/cmatrix/;
@@ -11,13 +11,13 @@
 depends=('ncurses')
 makedepends=('fontconfig')
 optdepends=('fontconfig: custom font'
-'kdb: cmatrix-tty custom font'
+'kbd: cmatrix-tty custom font'
 'xterm: cmatrix-tty custom font')
 install=$pkgname.install
 source=(http://www.asty.org/$pkgname/dist/$pkgname-$pkgver.tar.gz;
 cmatrix-tty)
 md5sums=('ebfb5733104a258173a9ccf2669968a1'
- 'db4371d5cb649973bfea31c2b932d260')
+ '6bb2431c23350cb2082e14b6ba761760')
 
 build() {
   cd $pkgname-$pkgver

Modified: cmatrix-tty
===
--- cmatrix-tty 2015-01-25 11:39:07 UTC (rev 126567)
+++ cmatrix-tty 2015-01-25 11:55:11 UTC (rev 126568)
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
 
 # a basic script for maximum pretty
 
@@ -25,9 +25,15 @@
 # and put the font back, if possible
 default_font=
 if [[ -f /etc/vconsole.conf ]]; then
-default_font=$(grep '^[ \t]*FONT' /etc/vconsole.conf | cut -d '=' -f 2)
+while IFS='=' read -r k v; do
+if [ ${k# *} = FONT ]; then
+ default_font=$v
+fi
+done  /etc/vconsole.conf
 fi
 if [[ -n $default_font ]]; then
 setfont $default_font
+else
+echo No font in vconsole.conf, could not restore.
 fi
 


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

2015-01-25 Thread Jaroslav Lichtblau
Date: Sunday, January 25, 2015 @ 15:03:32
  Author: jlichtblau
Revision: 126570

upgpkg: gnome-commander 1.4.5-1

Modified:
  gnome-commander/trunk/PKGBUILD
  gnome-commander/trunk/gnome-commander.changelog

---+
 PKGBUILD  |6 +++---
 gnome-commander.changelog |   15 +--
 2 files changed, 12 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-01-25 11:55:29 UTC (rev 126569)
+++ PKGBUILD2015-01-25 14:03:32 UTC (rev 126570)
@@ -1,5 +1,5 @@
 # $Id$
-# Maintainer: Jaroslav Lichtblau dragonl...@aur.archlinux.org
+# Maintainer: Jaroslav Lichtblau svetlemo...@archlinux.org
 # Contributor: Alexander Rødseth rods...@gmail.com
 # Contributor: Ionut Biru ib...@archlinux.org
 # Contributor: Roman Kyrylych ro...@archlinux.org
@@ -6,7 +6,7 @@
 # Contributor: Johannes Sjolund j.sjol...@gmail.com
 
 pkgname=gnome-commander
-pkgver=1.4.4
+pkgver=1.4.5
 pkgrel=1
 pkgdesc='Graphical two-pane filemanager for Gnome'
 arch=('i686' 'x86_64')
@@ -17,7 +17,7 @@
 install=$pkgname.install
 changelog=$pkgname.changelog
 
source=(ftp://ftp.gnome.org/pub/GNOME/sources/gnome-commander/1.4/$pkgname-$pkgver.tar.xz)
-sha256sums=('0f0bad08d668014b558787bda21b90d7232708ab8b4bb4699409a0af03ab4d31')
+sha256sums=('01da8a02f3387b47d86a4cbff93c6f74c6e4fbeb94bc54a8a6e60084d6c0b17f')
 
 build() {
   cd $pkgname-$pkgver

Modified: gnome-commander.changelog
===
--- gnome-commander.changelog   2015-01-25 11:55:29 UTC (rev 126569)
+++ gnome-commander.changelog   2015-01-25 14:03:32 UTC (rev 126570)
@@ -1,17 +1,20 @@
-2014-11-12 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+2015-01-25 Jaroslav Lichtblau svetlemo...@archlinux.org
+   * gnome-commander 1.4.5-1
+
+2014-11-12 Jaroslav Lichtblau svetlemo...@archlinux.org
* gnome-commander 1.4.4-1
 
-2014-06-28 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+2014-06-28 Jaroslav Lichtblau svetlemo...@archlinux.org
* gnome-commander 1.4.3-1
 
-2014-05-25 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+2014-05-25 Jaroslav Lichtblau svetlemo...@archlinux.org
* gnome-commander 1.4.2-1
 
-2014-04-07 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+2014-04-07 Jaroslav Lichtblau svetlemo...@archlinux.org
* gnome-commander 1.4.1-1
 
-2014-03-19 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+2014-03-19 Jaroslav Lichtblau svetlemo...@archlinux.org
* gnome-commander 1.4.0-1
 
-2014-01-14 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+2014-01-14 Jaroslav Lichtblau svetlemo...@archlinux.org
* gnome-commander 1.2.8.17-1


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

2015-01-25 Thread Pierre Schmitz
Date: Sunday, January 25, 2015 @ 15:11:50
  Author: pierre
Revision: 126574

archrelease: copy trunk to multilib-testing-x86_64

Added:
  lib32-openssl/repos/multilib-testing-x86_64/
  lib32-openssl/repos/multilib-testing-x86_64/PKGBUILD
(from rev 126573, lib32-openssl/trunk/PKGBUILD)
  lib32-openssl/repos/multilib-testing-x86_64/ca-dir.patch
(from rev 126573, lib32-openssl/trunk/ca-dir.patch)
  lib32-openssl/repos/multilib-testing-x86_64/no-rpath.patch
(from rev 126573, lib32-openssl/trunk/no-rpath.patch)

+
 PKGBUILD   |   71 +++
 ca-dir.patch   |   33 +
 no-rpath.patch |   11 
 3 files changed, 115 insertions(+)

Copied: lib32-openssl/repos/multilib-testing-x86_64/PKGBUILD (from rev 126573, 
lib32-openssl/trunk/PKGBUILD)
===
--- multilib-testing-x86_64/PKGBUILD(rev 0)
+++ multilib-testing-x86_64/PKGBUILD2015-01-25 14:11:50 UTC (rev 126574)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Pierre Schmitz pie...@archlinux.de
+
+_pkgbasename=openssl
+pkgname=lib32-$_pkgbasename
+_ver=1.0.2
+# use a pacman compatible version scheme
+pkgver=${_ver/[a-z]/.${_ver//[0-9.]/}}
+#pkgver=$_ver
+pkgrel=1
+pkgdesc='The Open Source toolkit for Secure Sockets Layer and Transport Layer 
Security (32-bit)'
+arch=('x86_64')
+url='https://www.openssl.org'
+license=('custom:BSD')
+depends=('lib32-zlib' ${_pkgbasename})
+optdepends=('ca-certificates')
+makedepends=('gcc-multilib')
+options=('!makeflags')
+source=(https://www.openssl.org/source/${_pkgbasename}-${_ver}.tar.gz;
+https://www.openssl.org/source/${_pkgbasename}-${_ver}.tar.gz.asc;
+'no-rpath.patch'
+'ca-dir.patch')
+validpgpkeys=(8657ABB260F056B1E5190839D9C4D26D0E604491)
+md5sums=('38373013fc85c790aabf8837969c5eba'
+ 'SKIP'
+ 'dc78d3d06baffc16217519242ce92478'
+ '3bf51be3a1bbd262be46dc619f92aa90')
+
+prepare() {
+   cd $srcdir/$_pkgbasename-$_ver
+
+   # remove rpath: http://bugs.archlinux.org/task/14367
+   patch -p0 -i $srcdir/no-rpath.patch
+   # set ca dir to /etc/ssl by default
+   patch -p0 -i $srcdir/ca-dir.patch
+}
+
+build() {
+   export CC=gcc -m32
+   export CXX=g++ -m32
+   export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
+
+   cd $srcdir/$_pkgbasename-$_ver
+
+   # mark stack as non-executable: http://bugs.archlinux.org/task/12434
+   ./Configure --prefix=/usr --openssldir=/etc/ssl --libdir=lib32 \
+   shared zlib \
+   linux-elf \
+   -Wa,--noexecstack ${CPPFLAGS} ${CFLAGS} ${LDFLAGS}
+
+   make MAKEDEPPROG=${CC} depend
+   make
+}
+
+check() {
+   cd $srcdir/$_pkgbasename-$_ver
+   # the test fails due to missing write permissions in /etc/ssl
+   # revert this patch for make test
+   patch -p0 -R -i $srcdir/ca-dir.patch
+   make test
+   patch -p0 -i $srcdir/ca-dir.patch
+}
+
+package() {
+   cd $srcdir/$_pkgbasename-$_ver
+   make INSTALL_PREFIX=$pkgdir install_sw
+
+   rm -rf ${pkgdir}/{usr/{include,bin},etc}
+   mkdir -p $pkgdir/usr/share/licenses
+   ln -s $_pkgbasename $pkgdir/usr/share/licenses/$pkgname
+}

Copied: lib32-openssl/repos/multilib-testing-x86_64/ca-dir.patch (from rev 
126573, lib32-openssl/trunk/ca-dir.patch)
===
--- multilib-testing-x86_64/ca-dir.patch(rev 0)
+++ multilib-testing-x86_64/ca-dir.patch2015-01-25 14:11:50 UTC (rev 
126574)
@@ -0,0 +1,33 @@
+--- apps/CA.pl.in  2006-04-28 02:30:49.0 +0200
 apps/CA.pl.in  2010-04-01 00:35:02.600553509 +0200
+@@ -53,7 +53,7 @@
+ $X509=$openssl x509;
+ $PKCS12=$openssl pkcs12;
+ 
+-$CATOP=./demoCA;
++$CATOP=/etc/ssl;
+ $CAKEY=cakey.pem;
+ $CAREQ=careq.pem;
+ $CACERT=cacert.pem;
+--- apps/CA.sh 2009-10-15 19:27:47.0 +0200
 apps/CA.sh 2010-04-01 00:35:02.600553509 +0200
+@@ -68,7 +68,7 @@
+ X509=$OPENSSL x509
+ PKCS12=openssl pkcs12
+ 
+-if [ -z $CATOP ] ; then CATOP=./demoCA ; fi
++if [ -z $CATOP ] ; then CATOP=/etc/ssl ; fi
+ CAKEY=./cakey.pem
+ CAREQ=./careq.pem
+ CACERT=./cacert.pem
+--- apps/openssl.cnf   2009-04-04 20:09:43.0 +0200
 apps/openssl.cnf   2010-04-01 00:35:02.607220681 +0200
+@@ -39,7 +39,7 @@
+ 
+ [ CA_default ]
+ 
+-dir   = ./demoCA  # Where everything is kept
++dir   = /etc/ssl  # Where everything is kept
+ certs = $dir/certs# Where the issued certs are kept
+ crl_dir   = $dir/crl  # Where the issued crl are kept
+ database  = $dir/index.txt# database index file.

Copied: lib32-openssl/repos/multilib-testing-x86_64/no-rpath.patch (from rev 
126573, lib32-openssl/trunk/no-rpath.patch)

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

2015-01-25 Thread Pierre Schmitz
Date: Sunday, January 25, 2015 @ 15:11:25
  Author: pierre
Revision: 126573

upgpkg: lib32-openssl 1.0.2-1

Modified:
  lib32-openssl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-25 14:04:12 UTC (rev 126572)
+++ PKGBUILD2015-01-25 14:11:25 UTC (rev 126573)
@@ -3,7 +3,7 @@
 
 _pkgbasename=openssl
 pkgname=lib32-$_pkgbasename
-_ver=1.0.1l
+_ver=1.0.2
 # use a pacman compatible version scheme
 pkgver=${_ver/[a-z]/.${_ver//[0-9.]/}}
 #pkgver=$_ver
@@ -21,7 +21,7 @@
 'no-rpath.patch'
 'ca-dir.patch')
 validpgpkeys=(8657ABB260F056B1E5190839D9C4D26D0E604491)
-md5sums=('cdb22925fc9bc97ccbf1e007661f2aa6'
+md5sums=('38373013fc85c790aabf8837969c5eba'
  'SKIP'
  'dc78d3d06baffc16217519242ce92478'
  '3bf51be3a1bbd262be46dc619f92aa90')


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

2015-01-25 Thread Eric Bélanger
Date: Sunday, January 25, 2015 @ 23:02:15
  Author: eric
Revision: 126577

upgpkg: youtube-dl 2015.01.25-1

Upstream update

Modified:
  youtube-dl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-25 14:19:20 UTC (rev 126576)
+++ PKGBUILD2015-01-25 22:02:15 UTC (rev 126577)
@@ -2,7 +2,7 @@
 # Maintainer: Eric Bélanger e...@archlinux.org
 
 pkgname=youtube-dl
-pkgver=2015.01.23.4
+pkgver=2015.01.25
 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=('e949f4d72b2e67d2308a971c3dbf353f089218e4'
+sha1sums=('b6c39c9c6babb2c9dcf15e19f7a4d13e30504017'
   'SKIP')
 validpgpkeys=('7D33D762FD6C35130481347FDB4B54CBA4826A18')
 


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

2015-01-25 Thread Eric Bélanger
Date: Sunday, January 25, 2015 @ 23:03:40
  Author: eric
Revision: 126578

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2015-01-25 22:02:15 UTC (rev 126577)
+++ PKGBUILD2015-01-25 22:03:40 UTC (rev 126578)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger e...@archlinux.org
-
-pkgname=youtube-dl
-pkgver=2015.01.23.4
-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=('e949f4d72b2e67d2308a971c3dbf353f089218e4'
-  '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 126577, 
youtube-dl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-01-25 22:03:40 UTC (rev 126578)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=youtube-dl
+pkgver=2015.01.25
+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=('b6c39c9c6babb2c9dcf15e19f7a4d13e30504017'
+  '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 linux/trunk (PKGBUILD)

2015-01-25 Thread Thomas Bächler
Date: Monday, January 26, 2015 @ 00:51:31
  Author: thomas
Revision: 23

typo

Modified:
  linux/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-25 22:48:55 UTC (rev 22)
+++ PKGBUILD2015-01-25 23:51:31 UTC (rev 23)
@@ -33,7 +33,7 @@
 '1256b241cd477b265a3c2d64bdc19ffe3c9bbcee82ea3994c590c2c76e767d99'
 '0bda45a3ef0f2780bbe588f2e53ab2b79814d29e9c6fc7bfff3b0dbdaa9e710d')
 validpgpkeys=(
-  'ABAF11C65A2970B130ABE3C479BE3E4300411886' # Linux Torvalds
+  'ABAF11C65A2970B130ABE3C479BE3E4300411886' # Linus Torvalds
   '647F28654894E3BD457199BE38DBBDC86092693E' # Greg Kroah-Hartman
  )
 


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

2015-01-25 Thread Daniel Micay
Date: Monday, January 26, 2015 @ 02:51:43
  Author: thestinger
Revision: 126584

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

Added:
  gradm/repos/community-i686/PKGBUILD
(from rev 126583, gradm/trunk/PKGBUILD)
  gradm/repos/community-i686/learn_config
(from rev 126583, gradm/trunk/learn_config)
  gradm/repos/community-i686/policy
(from rev 126583, gradm/trunk/policy)
  gradm/repos/community-x86_64/PKGBUILD
(from rev 126583, gradm/trunk/PKGBUILD)
  gradm/repos/community-x86_64/learn_config
(from rev 126583, gradm/trunk/learn_config)
  gradm/repos/community-x86_64/policy
(from rev 126583, gradm/trunk/policy)
Deleted:
  gradm/repos/community-i686/PKGBUILD
  gradm/repos/community-i686/learn_config
  gradm/repos/community-i686/policy
  gradm/repos/community-x86_64/PKGBUILD
  gradm/repos/community-x86_64/learn_config
  gradm/repos/community-x86_64/policy

---+
 /PKGBUILD |   92 +++
 /learn_config |  336 +
 /policy   |  982 
 community-i686/PKGBUILD   |   43 -
 community-i686/learn_config   |  168 --
 community-i686/policy |  491 
 community-x86_64/PKGBUILD |   43 -
 community-x86_64/learn_config |  168 --
 community-x86_64/policy   |  491 
 9 files changed, 1410 insertions(+), 1404 deletions(-)

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


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

2015-01-25 Thread Daniel Micay
Date: Monday, January 26, 2015 @ 02:50:56
  Author: thestinger
Revision: 126583

gradm: update /dev/.udev to /run/dev in learn_config

Modified:
  gradm/trunk/PKGBUILD
  gradm/trunk/learn_config

--+
 PKGBUILD |4 ++--
 learn_config |2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-01-25 22:48:27 UTC (rev 126582)
+++ PKGBUILD2015-01-26 01:50:56 UTC (rev 126583)
@@ -10,7 +10,7 @@
 _version=3.0
 _timestamp=201408301734
 pkgver=3.0.$_timestamp
-pkgrel=1
+pkgrel=2
 pkgdesc=Administration utility for grsecurity's Role Based Access Control 
(RBAC)
 arch=(i686 x86_64)
 url=https://grsecurity.net/
@@ -22,7 +22,7 @@
 policy)
 sha256sums=('b190e5afecdf3ac5020a4e5e4b698645f1c01b20d036129dd8b609c4bd0c319c'
 'SKIP'
-'23862daef9b00cdc91367d3a8039fc41627312a6c3d1f34054519f599514379c'
+'61c3042879ec2303b713f57f751fb66a95e2cc4737fbbd6d95879829c7b7d3c0'
 '73cf31add3da55b539777d736764a40c6b30041cc259e1d0372c867b87070440')
 validpgpkeys=(
   'DE9452CE46F42094907F108B44D1C0F82525FE49' # Bradley Spengler

Modified: learn_config
===
--- learn_config2015-01-25 22:48:27 UTC (rev 126582)
+++ learn_config2015-01-26 01:50:56 UTC (rev 126583)
@@ -79,7 +79,7 @@
 always-reduce-path /tmp
 always-reduce-path /var/tmp
 
-high-reduce-path /dev/.udev
+high-reduce-path /run/udev
 high-reduce-path /dev/mapper
 high-reduce-path /dev/snd
 high-reduce-path /proc


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

2015-01-25 Thread Sébastien Luttringer
Date: Sunday, January 25, 2015 @ 20:52:49
  Author: seblu
Revision: 229994

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

Added:
  radvd/repos/community-i686/
  radvd/repos/community-i686/PKGBUILD
(from rev 229993, radvd/trunk/PKGBUILD)
  radvd/repos/community-i686/radvd.service
(from rev 229993, radvd/trunk/radvd.service)
  radvd/repos/community-x86_64/
  radvd/repos/community-x86_64/PKGBUILD
(from rev 229993, radvd/trunk/PKGBUILD)
  radvd/repos/community-x86_64/radvd.service
(from rev 229993, radvd/trunk/radvd.service)

+
 community-i686/PKGBUILD|   55 +++
 community-i686/radvd.service   |9 ++
 community-x86_64/PKGBUILD  |   55 +++
 community-x86_64/radvd.service |9 ++
 4 files changed, 128 insertions(+)

Copied: radvd/repos/community-i686/PKGBUILD (from rev 229993, 
radvd/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-01-25 19:52:49 UTC (rev 229994)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+# Contributor: Kaiting Chen kaitocr...@gmail.com
+# Contributor: Mark Smith markzzzsm...@yahoo.com.au
+
+pkgname=radvd
+pkgver=2.10
+pkgrel=1
+pkgdesc='IPv6 Router Advertisement Daemon'
+url='http://www.litech.org/radvd/'
+license=('custom')
+depends=('glibc')
+makedepends=('check')
+arch=('i686' 'x86_64')
+backup=('etc/radvd.conf')
+validpgpkeys=('B11F2EED32FB6728F700337C411FA8C112D91A31') # Reuben Hawkins
+source=(http://www.litech.org/radvd/dist/$pkgname-$pkgver.tar.xz{,.asc}
+$pkgname.service)
+sha1sums=('a6b41df6ccc3ecc704809f6072baa5dc1c92dc54'
+  'SKIP'
+  '2fdba3b0ed28c67dc1c04bfd1439fa4dece88bbc')
+
+#prepare() {
+#  patch -p1 -d $pkgname-$pkgver  '01-fix-rdnssinfo-length-fix.patch'
+#}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/etc \
+--with-pidfile=/run/radvd.pid \
+--mandir=/usr/share/man
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  # default config
+  install -D -m 644 radvd.conf.example $pkgdir/etc/radvd.conf
+  # license
+  install -D -m 644 COPYRIGHT $pkgdir/usr/share/licenses/$pkgname/COPYRIGHT
+  # systemd
+  install -D -m 644 ../$pkgname.service \
+$pkgdir/usr/lib/systemd/system/$pkgname.service
+}
+
+# vim:set ts=2 sw=2 et:

Copied: radvd/repos/community-i686/radvd.service (from rev 229993, 
radvd/trunk/radvd.service)
===
--- community-i686/radvd.service(rev 0)
+++ community-i686/radvd.service2015-01-25 19:52:49 UTC (rev 229994)
@@ -0,0 +1,9 @@
+[Unit]
+Description=IPv6 Router Advertisement Daemon
+After=network.target
+
+[Service]
+ExecStart=/usr/bin/radvd --nodaemon --logmethod=stderr
+
+[Install]
+WantedBy=multi-user.target

Copied: radvd/repos/community-x86_64/PKGBUILD (from rev 229993, 
radvd/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-01-25 19:52:49 UTC (rev 229994)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+# Contributor: Kaiting Chen kaitocr...@gmail.com
+# Contributor: Mark Smith markzzzsm...@yahoo.com.au
+
+pkgname=radvd
+pkgver=2.10
+pkgrel=1
+pkgdesc='IPv6 Router Advertisement Daemon'
+url='http://www.litech.org/radvd/'
+license=('custom')
+depends=('glibc')
+makedepends=('check')
+arch=('i686' 'x86_64')
+backup=('etc/radvd.conf')
+validpgpkeys=('B11F2EED32FB6728F700337C411FA8C112D91A31') # Reuben Hawkins
+source=(http://www.litech.org/radvd/dist/$pkgname-$pkgver.tar.xz{,.asc}
+$pkgname.service)
+sha1sums=('a6b41df6ccc3ecc704809f6072baa5dc1c92dc54'
+  'SKIP'
+  '2fdba3b0ed28c67dc1c04bfd1439fa4dece88bbc')
+
+#prepare() {
+#  patch -p1 -d $pkgname-$pkgver  '01-fix-rdnssinfo-length-fix.patch'
+#}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/etc \
+--with-pidfile=/run/radvd.pid \
+--mandir=/usr/share/man
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  # default config
+  install -D -m 644 radvd.conf.example $pkgdir/etc/radvd.conf
+  # license
+  install -D -m 644 COPYRIGHT $pkgdir/usr/share/licenses/$pkgname/COPYRIGHT
+  # systemd
+  install -D -m 644 ../$pkgname.service \
+$pkgdir/usr/lib/systemd/system/$pkgname.service
+}
+
+# vim:set ts=2 sw=2 et:

Copied: radvd/repos/community-x86_64/radvd.service (from rev 229993, 
radvd/trunk/radvd.service)
===

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

2015-01-25 Thread Sébastien Luttringer
Date: Sunday, January 25, 2015 @ 20:52:33
  Author: seblu
Revision: 229993

upgpkg: radvd 2.10-1

Modified:
  radvd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-25 19:46:45 UTC (rev 229992)
+++ PKGBUILD2015-01-25 19:52:33 UTC (rev 229993)
@@ -4,7 +4,7 @@
 # Contributor: Mark Smith markzzzsm...@yahoo.com.au
 
 pkgname=radvd
-pkgver=2.9
+pkgver=2.10
 pkgrel=1
 pkgdesc='IPv6 Router Advertisement Daemon'
 url='http://www.litech.org/radvd/'
@@ -16,7 +16,7 @@
 validpgpkeys=('B11F2EED32FB6728F700337C411FA8C112D91A31') # Reuben Hawkins
 source=(http://www.litech.org/radvd/dist/$pkgname-$pkgver.tar.xz{,.asc}
 $pkgname.service)
-sha1sums=('1ddcffd6e0f6ddeb1c002a8a0213eefcabb760d8'
+sha1sums=('a6b41df6ccc3ecc704809f6072baa5dc1c92dc54'
   'SKIP'
   '2fdba3b0ed28c67dc1c04bfd1439fa4dece88bbc')
 


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

2015-01-25 Thread Sébastien Luttringer
Date: Sunday, January 25, 2015 @ 20:46:45
  Author: seblu
Revision: 229992

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

Added:
  wayland/repos/testing-i686/
  wayland/repos/testing-i686/PKGBUILD
(from rev 229991, wayland/trunk/PKGBUILD)
  wayland/repos/testing-x86_64/
  wayland/repos/testing-x86_64/PKGBUILD
(from rev 229991, wayland/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   31 +++
 testing-x86_64/PKGBUILD |   31 +++
 2 files changed, 62 insertions(+)

Copied: wayland/repos/testing-i686/PKGBUILD (from rev 229991, 
wayland/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-01-25 19:46:45 UTC (rev 229992)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Tom Gundersen t...@jklm.no
+# Maintainer: Sébastien Luttringer se...@archlinux.org
+# Contributor: Joel Teichroeb j...@teichroeb.net
+
+pkgname=wayland
+pkgver=1.6.1
+pkgrel=1
+pkgdesc='A computer display server protocol'
+arch=('i686' 'x86_64')
+url='http://wayland.freedesktop.org'
+license=('MIT')
+depends=('libffi' 'expat')
+makedepends=('doxygen')
+source=(http://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz;)
+sha1sums=('cda1d24762cd5d14ae5bcadd9e5b0cdfce3d8b11')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr \
+--disable-static
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR=$pkgdir install
+  install -Dm 644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}

Copied: wayland/repos/testing-x86_64/PKGBUILD (from rev 229991, 
wayland/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-01-25 19:46:45 UTC (rev 229992)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Tom Gundersen t...@jklm.no
+# Maintainer: Sébastien Luttringer se...@archlinux.org
+# Contributor: Joel Teichroeb j...@teichroeb.net
+
+pkgname=wayland
+pkgver=1.6.1
+pkgrel=1
+pkgdesc='A computer display server protocol'
+arch=('i686' 'x86_64')
+url='http://wayland.freedesktop.org'
+license=('MIT')
+depends=('libffi' 'expat')
+makedepends=('doxygen')
+source=(http://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz;)
+sha1sums=('cda1d24762cd5d14ae5bcadd9e5b0cdfce3d8b11')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr \
+--disable-static
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR=$pkgdir install
+  install -Dm 644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}


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

2015-01-25 Thread Sébastien Luttringer
Date: Sunday, January 25, 2015 @ 20:46:28
  Author: seblu
Revision: 229991

upgpkg: wayland 1.6.1-1

Modified:
  wayland/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-25 15:42:29 UTC (rev 229990)
+++ PKGBUILD2015-01-25 19:46:28 UTC (rev 229991)
@@ -4,7 +4,7 @@
 # Contributor: Joel Teichroeb j...@teichroeb.net
 
 pkgname=wayland
-pkgver=1.6.0
+pkgver=1.6.1
 pkgrel=1
 pkgdesc='A computer display server protocol'
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 depends=('libffi' 'expat')
 makedepends=('doxygen')
 source=(http://wayland.freedesktop.org/releases/$pkgname-$pkgver.tar.xz;)
-sha1sums=('6183108a3bffb204c05b7f37b763b6278760572d')
+sha1sums=('cda1d24762cd5d14ae5bcadd9e5b0cdfce3d8b11')
 
 build() {
   cd $pkgname-$pkgver