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

2015-04-19 Thread Giovanni Scafora
Date: Sunday, April 19, 2015 @ 11:05:52
  Author: giovanni
Revision: 131670

upgpkg: ocrad 0.25-1

upstream release

Modified:
  ocrad/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-19 04:50:20 UTC (rev 131669)
+++ PKGBUILD2015-04-19 09:05:52 UTC (rev 131670)
@@ -2,7 +2,7 @@
 # Maintainer: Giovanni Scafora 
 
 pkgname=ocrad
-pkgver=0.24
+pkgver=0.25
 pkgrel=1
 pkgdesc="An Optical Character Recognition program"
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 install=ocrad.install
 options=('staticlibs')
 source=("http://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.lz";)
-md5sums=('d999bc7c89960986d736a764e16342fa')
+md5sums=('da428daa81b481e13d21eeb2d4b985a8')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"


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

2015-04-19 Thread Giovanni Scafora
Date: Sunday, April 19, 2015 @ 11:06:00
  Author: giovanni
Revision: 131671

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

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

+
 /PKGBUILD  |   64 +++
 /ocrad.install |   40 
 community-i686/PKGBUILD|   32 ---
 community-i686/ocrad.install   |   20 
 community-x86_64/PKGBUILD  |   32 ---
 community-x86_64/ocrad.install |   20 
 6 files changed, 104 insertions(+), 104 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-04-19 09:05:52 UTC (rev 131670)
+++ community-i686/PKGBUILD 2015-04-19 09:06:00 UTC (rev 131671)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-
-pkgname=ocrad
-pkgver=0.24
-pkgrel=1
-pkgdesc="An Optical Character Recognition program"
-arch=('i686' 'x86_64')
-url="http://www.gnu.org/software/ocrad/ocrad.html";
-license=('GPL3')
-depends=('gcc-libs' 'texinfo')
-install=ocrad.install
-options=('staticlibs')
-source=("http://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.lz";)
-md5sums=('d999bc7c89960986d736a764e16342fa')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  ./configure --prefix=/usr \
-  CXXFLAGS="${CXXFLAGS}" \
-  LDFLAGS="${LDFLAGS}"
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  make DESTDIR="${pkgdir}" install install-man
-  rm $pkgdir/usr/share/info/dir
-  gzip $pkgdir/usr/share/info/*
-}

Copied: ocrad/repos/community-i686/PKGBUILD (from rev 131670, 
ocrad/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-04-19 09:06:00 UTC (rev 131671)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+
+pkgname=ocrad
+pkgver=0.25
+pkgrel=1
+pkgdesc="An Optical Character Recognition program"
+arch=('i686' 'x86_64')
+url="http://www.gnu.org/software/ocrad/ocrad.html";
+license=('GPL3')
+depends=('gcc-libs' 'texinfo')
+install=ocrad.install
+options=('staticlibs')
+source=("http://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.lz";)
+md5sums=('da428daa81b481e13d21eeb2d4b985a8')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure --prefix=/usr \
+  CXXFLAGS="${CXXFLAGS}" \
+  LDFLAGS="${LDFLAGS}"
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install install-man
+  rm $pkgdir/usr/share/info/dir
+  gzip $pkgdir/usr/share/info/*
+}

Deleted: community-i686/ocrad.install
===
--- community-i686/ocrad.install2015-04-19 09:05:52 UTC (rev 131670)
+++ community-i686/ocrad.install2015-04-19 09:06:00 UTC (rev 131671)
@@ -1,20 +0,0 @@
-infodir=/usr/share/info
-filelist=(ocrad.info.gz)
-
-post_install() {
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-install-info $infodir/$file $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 $infodir/dir 2> /dev/null
-  done
-}

Copied: ocrad/repos/community-i686/ocrad.install (from rev 131670, 
ocrad/trunk/ocrad.install)
===
--- community-i686/ocrad.install(rev 0)
+++ community-i686/ocrad.install2015-04-19 09:06:00 UTC (rev 131671)
@@ -0,0 +1,20 @@
+infodir=/usr/share/info
+filelist=(ocrad.info.gz)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info $infodir/$file $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 $infodir/dir 2> /dev/null
+  done
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-04-19 09:05:52 UTC (rev 131670)
+++ community-x86_64/PKGBUILD   2015-04-19 09:06:00 UTC (rev 131671)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Giov

[arch-commits] Commit in lib32-p11-kit/trunk (PKGBUILD libnssckbi-compat.patch)

2015-04-19 Thread Florian Pritz
Date: Sunday, April 19, 2015 @ 11:12:14
  Author: bluewind
Revision: 131672

upgpkg: lib32-p11-kit 0.23.1-2

fix FS#44633, missing libnssckbi-compat.patch

Added:
  lib32-p11-kit/trunk/libnssckbi-compat.patch
Modified:
  lib32-p11-kit/trunk/PKGBUILD

-+
 PKGBUILD|   20 +---
 libnssckbi-compat.patch |   57 ++
 2 files changed, 74 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-04-19 09:06:00 UTC (rev 131671)
+++ PKGBUILD2015-04-19 09:12:14 UTC (rev 131672)
@@ -5,7 +5,7 @@
 _pkgbasename=p11-kit
 pkgname=lib32-$_pkgbasename
 pkgver=0.23.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Library to work with PKCS#11 modules (32-bit)"
 arch=(x86_64)
 url="http://p11-glue.freedesktop.org";
@@ -12,11 +12,25 @@
 license=('BSD')
 depends=(lib32-glibc lib32-libtasn1 lib32-libffi $_pkgbasename)
 options=(!libtool)
-source=($url/releases/$_pkgbasename-$pkgver.tar.gz{,.sig})
+source=($url/releases/$_pkgbasename-$pkgver.tar.gz{,.sig}
+libnssckbi-compat.patch)
 validpgpkeys=(C0F67099B808FB063E2C81117BFB1108D92765AF)
 md5sums=('96f073270c489c9a594e1c9413f42db8'
- 'SKIP')
+ 'SKIP'
+ '8c3f119005908cf4a3e0ef0a0a310f14')
 
+prepare() {
+  cd "$srcdir/$_pkgbasename-$pkgver"
+
+  # Build and install an additional library (libnssckbi-p11-kit.so) which
+  # is a copy of p11-kit-trust.so but uses the same label for root certs as
+  # libnssckbi.so ("Builtin Object Token" instead of "Default Trust")
+  # https://bugs.freedesktop.org/show_bug.cgi?id=66161
+  patch -Np1 -i ../libnssckbi-compat.patch
+
+  autoreconf -vi
+}
+
 build() {
   export CC="gcc -m32"
   export CXX="g++ -m32"

Added: libnssckbi-compat.patch
===
--- libnssckbi-compat.patch (rev 0)
+++ libnssckbi-compat.patch 2015-04-19 09:12:14 UTC (rev 131672)
@@ -0,0 +1,57 @@
+diff -upr p11-kit-0.23.1.orig/trust/Makefile.am 
p11-kit-0.23.1/trust/Makefile.am
+--- p11-kit-0.23.1.orig/trust/Makefile.am  2014-11-12 12:58:50.0 
+0200
 p11-kit-0.23.1/trust/Makefile.am   2015-03-30 16:43:35.275993032 +0300
+@@ -61,6 +61,20 @@ p11_kit_trust_la_LDFLAGS = \
+ 
+ p11_kit_trust_la_SOURCES = $(TRUST_SRCS)
+ 
++libnssckbi_compatdir = $(libdir)
++libnssckbi_compat_LTLIBRARIES = \
++  libnssckbi-p11-kit.la
++
++libnssckbi_p11_kit_la_CFLAGS = \
++  -DLIBNSSCKBI_COMPAT \
++  $(p11_kit_trust_la_CFLAGS)
++
++libnssckbi_p11_kit_la_LIBADD = $(p11_kit_trust_la_LIBADD)
++
++libnssckbi_p11_kit_la_LDFLAGS = $(p11_kit_trust_la_LDFLAGS)
++
++libnssckbi_p11_kit_la_SOURCES = $(p11_kit_trust_la_SOURCES)
++
+ libtrust_testable_la_LDFLAGS = \
+   -no-undefined
+ 
+diff -upr p11-kit-0.23.1.orig/trust/module.c p11-kit-0.23.1/trust/module.c
+--- p11-kit-0.23.1.orig/trust/module.c 2014-12-16 12:24:01.0 +0200
 p11-kit-0.23.1/trust/module.c  2015-03-30 16:48:41.370360130 +0300
+@@ -196,7 +196,11 @@ create_tokens_inlock (p11_array *tokens,
+   const char *label;
+   } labels[] = {
+   { "~/", "User Trust" },
++#ifdef LIBNSSCKBI_COMPAT
++  { DATA_DIR, "Builtin Object Token" },
++#else
+   { DATA_DIR, "Default Trust" },
++#endif
+   { SYSCONFDIR, "System Trust" },
+   { NULL },
+   };
+@@ -521,9 +525,15 @@ sys_C_GetSlotInfo (CK_SLOT_ID id,
+   info->flags = CKF_TOKEN_PRESENT;
+   strncpy ((char*)info->manufacturerID, MANUFACTURER_ID, 32);
+ 
+-  /* If too long, copy the first 64 characters into buffer */
+-  path = p11_token_get_path (token);
++#ifdef LIBNSSCKBI_COMPAT
++  /* Change description to match libnssckbi so HPKP works in 
Chromium */
++  if (strcmp (p11_token_get_label (token), "Builtin Object Token" 
) == 0)
++  path = "NSS Builtin Objects";
++  else
++#endif
++  path = p11_token_get_path (token);
+   length = strlen (path);
++  /* If too long, copy the first 64 characters into buffer */
+   if (length > sizeof (info->slotDescription))
+   length = sizeof (info->slotDescription);
+   memset (info->slotDescription, ' ', sizeof 
(info->slotDescription));


[arch-commits] Commit in lib32-p11-kit/repos/multilib-x86_64 (3 files)

2015-04-19 Thread Florian Pritz
Date: Sunday, April 19, 2015 @ 11:12:17
  Author: bluewind
Revision: 131673

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-p11-kit/repos/multilib-x86_64/PKGBUILD
(from rev 131672, lib32-p11-kit/trunk/PKGBUILD)
  lib32-p11-kit/repos/multilib-x86_64/libnssckbi-compat.patch
(from rev 131672, lib32-p11-kit/trunk/libnssckbi-compat.patch)
Deleted:
  lib32-p11-kit/repos/multilib-x86_64/PKGBUILD

-+
 PKGBUILD|  108 +-
 libnssckbi-compat.patch |   57 
 2 files changed, 118 insertions(+), 47 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-04-19 09:12:14 UTC (rev 131672)
+++ PKGBUILD2015-04-19 09:12:17 UTC (rev 131673)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Florian Pritz 
-# Contributor: Christoph Vigano 
-
-_pkgbasename=p11-kit
-pkgname=lib32-$_pkgbasename
-pkgver=0.23.1
-pkgrel=1
-pkgdesc="Library to work with PKCS#11 modules (32-bit)"
-arch=(x86_64)
-url="http://p11-glue.freedesktop.org";
-license=('BSD')
-depends=(lib32-glibc lib32-libtasn1 lib32-libffi $_pkgbasename)
-options=(!libtool)
-source=($url/releases/$_pkgbasename-$pkgver.tar.gz{,.sig})
-validpgpkeys=(C0F67099B808FB063E2C81117BFB1108D92765AF)
-md5sums=('96f073270c489c9a594e1c9413f42db8'
- 'SKIP')
-
-build() {
-  export CC="gcc -m32"
-  export CXX="g++ -m32"
-  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
-  cd "$srcdir/$_pkgbasename-$pkgver"
-
-  ./configure --prefix=/usr --libdir=/usr/lib32 --sysconfdir=/etc \
---with-module-path=/usr/lib32/pkcs11 \
-
--with-trust-paths=/etc/ca-certificates/trust-source:/usr/share/ca-certificates/trust-source
-  make
-}
-
-check() {
-  cd "$srcdir/$_pkgbasename-$pkgver"
-  make check
-}
-
-package() {
-  cd "$srcdir/$_pkgbasename-$pkgver"
-  make DESTDIR="$pkgdir" install
-  rm -rf "${pkgdir}"/etc
-  rm -rf "${pkgdir}"/usr/{bin,include,share}
-  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
-
-  ln -srf "$pkgdir/usr/bin/update-ca-trust" 
"$pkgdir/usr/lib32/p11-kit/trust-extract-compat"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: lib32-p11-kit/repos/multilib-x86_64/PKGBUILD (from rev 131672, 
lib32-p11-kit/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-04-19 09:12:17 UTC (rev 131673)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Florian Pritz 
+# Contributor: Christoph Vigano 
+
+_pkgbasename=p11-kit
+pkgname=lib32-$_pkgbasename
+pkgver=0.23.1
+pkgrel=2
+pkgdesc="Library to work with PKCS#11 modules (32-bit)"
+arch=(x86_64)
+url="http://p11-glue.freedesktop.org";
+license=('BSD')
+depends=(lib32-glibc lib32-libtasn1 lib32-libffi $_pkgbasename)
+options=(!libtool)
+source=($url/releases/$_pkgbasename-$pkgver.tar.gz{,.sig}
+libnssckbi-compat.patch)
+validpgpkeys=(C0F67099B808FB063E2C81117BFB1108D92765AF)
+md5sums=('96f073270c489c9a594e1c9413f42db8'
+ 'SKIP'
+ '8c3f119005908cf4a3e0ef0a0a310f14')
+
+prepare() {
+  cd "$srcdir/$_pkgbasename-$pkgver"
+
+  # Build and install an additional library (libnssckbi-p11-kit.so) which
+  # is a copy of p11-kit-trust.so but uses the same label for root certs as
+  # libnssckbi.so ("Builtin Object Token" instead of "Default Trust")
+  # https://bugs.freedesktop.org/show_bug.cgi?id=66161
+  patch -Np1 -i ../libnssckbi-compat.patch
+
+  autoreconf -vi
+}
+
+build() {
+  export CC="gcc -m32"
+  export CXX="g++ -m32"
+  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+  cd "$srcdir/$_pkgbasename-$pkgver"
+
+  ./configure --prefix=/usr --libdir=/usr/lib32 --sysconfdir=/etc \
+--with-module-path=/usr/lib32/pkcs11 \
+
--with-trust-paths=/etc/ca-certificates/trust-source:/usr/share/ca-certificates/trust-source
+  make
+}
+
+check() {
+  cd "$srcdir/$_pkgbasename-$pkgver"
+  make check
+}
+
+package() {
+  cd "$srcdir/$_pkgbasename-$pkgver"
+  make DESTDIR="$pkgdir" install
+  rm -rf "${pkgdir}"/etc
+  rm -rf "${pkgdir}"/usr/{bin,include,share}
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+
+  ln -srf "$pkgdir/usr/bin/update-ca-trust" 
"$pkgdir/usr/lib32/p11-kit/trust-extract-compat"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: lib32-p11-kit/repos/multilib-x86_64/libnssckbi-compat.patch (from rev 
131672, lib32-p11-kit/trunk/libnssckbi-compat.patch)
===
--- libnssckbi-compat.patch (rev 0)
+++ libnssckbi-compat.patch 2015-04-19 09:12:17 UTC (rev 131673)
@@ -0,0 +1,57 @@
+diff -upr p11-kit-0.23.1.orig/trust/Makefile.am 
p11-kit-0.23.1/trust/Makefile.am
+--- p11-kit-0.23.1.orig/trust/Makefile.am  2014-11-12 12:58:50.0 
+0200
 p11-kit-0.23.1/trust/Makefile.am   2015-03-30 16:43:35.275993032 +0300
+@@ -61,6 +61,20 @@ p11_kit_trust_la_LDFLAGS = \
+ 
+ p11_kit_trust_la_SOURCES = $(TRUST_SRCS)
+ 
++libnssckb

[arch-commits] Commit in tcpdump/trunk (CVE-2015-3138.patch PKGBUILD)

2015-04-19 Thread Giovanni Scafora
Date: Sunday, April 19, 2015 @ 12:12:46
  Author: giovanni
Revision: 237416

upgpkg: tcpdump 4.7.3-2

Fixed CVE-2015-3138

Added:
  tcpdump/trunk/CVE-2015-3138.patch
Modified:
  tcpdump/trunk/PKGBUILD

-+
 CVE-2015-3138.patch |   29 +
 PKGBUILD|   10 +++---
 2 files changed, 36 insertions(+), 3 deletions(-)

Added: CVE-2015-3138.patch
===
--- CVE-2015-3138.patch (rev 0)
+++ CVE-2015-3138.patch 2015-04-19 10:12:46 UTC (rev 237416)
@@ -0,0 +1,29 @@
+--- a/print-wb.c   2014-11-13 12:02:47.0 +0100
 b/print-wb.c   2015-04-19 11:57:04.127876067 +0200
+@@ -202,7 +202,7 @@
+   len -= sizeof(*io) * nid;
+   io = (struct id_off *)(id + 1);
+   cp = (char *)(io + nid);
+-  if (!ND_TTEST2(cp, len)) {
++  if (ND_TTEST2(cp, len)) {
+   ND_PRINT((ndo, "\""));
+   fn_print(ndo, (u_char *)cp, (u_char *)cp + len);
+   ND_PRINT((ndo, "\""));
+@@ -267,7 +267,7 @@
+   }
+   n = EXTRACT_32BITS(&prep->pp_n);
+   ps = (const struct pgstate *)(prep + 1);
+-  while (--n >= 0 && !ND_TTEST(*ps)) {
++  while (--n >= 0 && ND_TTEST(*ps)) {
+   const struct id_off *io, *ie;
+   char c = '<';
+ 
+@@ -276,7 +276,7 @@
+   ipaddr_string(ndo, &ps->page.p_sid),
+   EXTRACT_32BITS(&ps->page.p_uid)));
+   io = (struct id_off *)(ps + 1);
+-  for (ie = io + ps->nid; io < ie && !ND_TTEST(*io); ++io) {
++  for (ie = io + ps->nid; io < ie && ND_TTEST(*io); ++io) {
+   ND_PRINT((ndo, "%c%s:%u", c, ipaddr_string(ndo, 
&io->id),
+   EXTRACT_32BITS(&io->off)));
+   c = ',';

Modified: PKGBUILD
===
--- PKGBUILD2015-04-19 04:12:34 UTC (rev 237415)
+++ PKGBUILD2015-04-19 10:12:46 UTC (rev 237416)
@@ -4,7 +4,7 @@
 
 pkgname=tcpdump
 pkgver=4.7.3
-pkgrel=1
+pkgrel=2
 pkgdesc="A tool for network monitoring and data acquisition"
 arch=('i686' 'x86_64')
 url="http://www.tcpdump.org";
@@ -11,9 +11,11 @@
 license=('BSD')
 depends=('libpcap' 'openssl')
 source=("http://www.tcpdump.org/release/${pkgname}-${pkgver}.tar.gz";
-'tcpdump_duplicate_executable.patch')
+'tcpdump_duplicate_executable.patch'
+'CVE-2015-3138.patch')
 md5sums=('334a4761594b29f80793c1303f0f4acc'
- '01379e4a12a208ce951c6c2abe80300f')
+ '01379e4a12a208ce951c6c2abe80300f'
+ '4154b0811d56fb05c3839695923bf46c')
 
 prepare() {
   cd "${srcdir}/${pkgname}-${pkgver}"
@@ -20,6 +22,8 @@
 
   # do not install tcpdump-4.1.1 executable (FS#23346)
   patch -Np1 -i "${srcdir}/tcpdump_duplicate_executable.patch"
+  # CVE-2015-3138
+  patch -Np1 -i "${srcdir}/CVE-2015-3138.patch"
 }
 
 build() {


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

2015-04-19 Thread Giovanni Scafora
Date: Sunday, April 19, 2015 @ 12:12:57
  Author: giovanni
Revision: 237417

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

Added:
  tcpdump/repos/extra-i686/CVE-2015-3138.patch
(from rev 237416, tcpdump/trunk/CVE-2015-3138.patch)
  tcpdump/repos/extra-i686/PKGBUILD
(from rev 237416, tcpdump/trunk/PKGBUILD)
  tcpdump/repos/extra-i686/tcpdump_duplicate_executable.patch
(from rev 237416, tcpdump/trunk/tcpdump_duplicate_executable.patch)
  tcpdump/repos/extra-x86_64/CVE-2015-3138.patch
(from rev 237416, tcpdump/trunk/CVE-2015-3138.patch)
  tcpdump/repos/extra-x86_64/PKGBUILD
(from rev 237416, tcpdump/trunk/PKGBUILD)
  tcpdump/repos/extra-x86_64/tcpdump_duplicate_executable.patch
(from rev 237416, tcpdump/trunk/tcpdump_duplicate_executable.patch)
Deleted:
  tcpdump/repos/extra-i686/PKGBUILD
  tcpdump/repos/extra-i686/tcpdump_duplicate_executable.patch
  tcpdump/repos/extra-x86_64/PKGBUILD
  tcpdump/repos/extra-x86_64/tcpdump_duplicate_executable.patch

-+
 /PKGBUILD   |   90 ++
 /tcpdump_duplicate_executable.patch |   20 
 extra-i686/CVE-2015-3138.patch  |   29 +++
 extra-i686/PKGBUILD |   41 --
 extra-i686/tcpdump_duplicate_executable.patch   |   10 --
 extra-x86_64/CVE-2015-3138.patch|   29 +++
 extra-x86_64/PKGBUILD   |   41 --
 extra-x86_64/tcpdump_duplicate_executable.patch |   10 --
 8 files changed, 168 insertions(+), 102 deletions(-)

Copied: tcpdump/repos/extra-i686/CVE-2015-3138.patch (from rev 237416, 
tcpdump/trunk/CVE-2015-3138.patch)
===
--- extra-i686/CVE-2015-3138.patch  (rev 0)
+++ extra-i686/CVE-2015-3138.patch  2015-04-19 10:12:57 UTC (rev 237417)
@@ -0,0 +1,29 @@
+--- a/print-wb.c   2014-11-13 12:02:47.0 +0100
 b/print-wb.c   2015-04-19 11:57:04.127876067 +0200
+@@ -202,7 +202,7 @@
+   len -= sizeof(*io) * nid;
+   io = (struct id_off *)(id + 1);
+   cp = (char *)(io + nid);
+-  if (!ND_TTEST2(cp, len)) {
++  if (ND_TTEST2(cp, len)) {
+   ND_PRINT((ndo, "\""));
+   fn_print(ndo, (u_char *)cp, (u_char *)cp + len);
+   ND_PRINT((ndo, "\""));
+@@ -267,7 +267,7 @@
+   }
+   n = EXTRACT_32BITS(&prep->pp_n);
+   ps = (const struct pgstate *)(prep + 1);
+-  while (--n >= 0 && !ND_TTEST(*ps)) {
++  while (--n >= 0 && ND_TTEST(*ps)) {
+   const struct id_off *io, *ie;
+   char c = '<';
+ 
+@@ -276,7 +276,7 @@
+   ipaddr_string(ndo, &ps->page.p_sid),
+   EXTRACT_32BITS(&ps->page.p_uid)));
+   io = (struct id_off *)(ps + 1);
+-  for (ie = io + ps->nid; io < ie && !ND_TTEST(*io); ++io) {
++  for (ie = io + ps->nid; io < ie && ND_TTEST(*io); ++io) {
+   ND_PRINT((ndo, "%c%s:%u", c, ipaddr_string(ndo, 
&io->id),
+   EXTRACT_32BITS(&io->off)));
+   c = ',';

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-04-19 10:12:46 UTC (rev 237416)
+++ extra-i686/PKGBUILD 2015-04-19 10:12:57 UTC (rev 237417)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Contributor: dorphell 
-
-pkgname=tcpdump
-pkgver=4.7.3
-pkgrel=1
-pkgdesc="A tool for network monitoring and data acquisition"
-arch=('i686' 'x86_64')
-url="http://www.tcpdump.org";
-license=('BSD')
-depends=('libpcap' 'openssl')
-source=("http://www.tcpdump.org/release/${pkgname}-${pkgver}.tar.gz";
-'tcpdump_duplicate_executable.patch')
-md5sums=('334a4761594b29f80793c1303f0f4acc'
- '01379e4a12a208ce951c6c2abe80300f')
-
-prepare() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  # do not install tcpdump-4.1.1 executable (FS#23346)
-  patch -Np1 -i "${srcdir}/tcpdump_duplicate_executable.patch"
-}
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  ./configure --prefix=/usr \
-  --sbindir=/usr/bin \
-  --enable-ipv6
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  make DESTDIR="${pkgdir}" install
-
-  #install the license
-  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: tcpdump/repos/extra-i686/PKGBUILD (from rev 237416, 
tcpdump/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-04-19 10:12:57 UTC (rev 237417)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: dorphell 
+
+pkgname=tcpdump
+pkgver=4.7.3
+pkgrel=2
+pkgdesc="A tool for network monitoring and data acquisition"
+arch=('i686' 'x86_64')
+url="http://www.tcpdump.org";
+license=

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

2015-04-19 Thread Andreas Radke
Date: Sunday, April 19, 2015 @ 13:33:49
  Author: andyrtr
Revision: 237454

upgpkg: linux-lts 3.14.39-1

upstream update 3.14.39

Modified:
  linux-lts/trunk/PKGBUILD
Deleted:
  linux-lts/trunk/0001-fix-btrfs-mount-deadlock.patch

-+
 0001-fix-btrfs-mount-deadlock.patch |   43 --
 PKGBUILD|   12 ++---
 2 files changed, 3 insertions(+), 52 deletions(-)

Deleted: 0001-fix-btrfs-mount-deadlock.patch
===
--- 0001-fix-btrfs-mount-deadlock.patch 2015-04-19 11:26:33 UTC (rev 237453)
+++ 0001-fix-btrfs-mount-deadlock.patch 2015-04-19 11:33:49 UTC (rev 237454)
@@ -1,43 +0,0 @@
-From 9c4f61f01d269815bb7c37be3ede59c5587747c6 Mon Sep 17 00:00:00 2001
-From: David Sterba 
-Date: Fri, 2 Jan 2015 19:12:57 +0100
-Subject: btrfs: simplify insert_orphan_item
-
-We can search and add the orphan item in one go,
-btrfs_insert_orphan_item will find out if the item already exists.
-
-Signed-off-by: David Sterba 
-
-diff --git a/fs/btrfs/tree-log.c b/fs/btrfs/tree-log.c
-index 5be45c1..25a1c36 100644
 a/fs/btrfs/tree-log.c
-+++ b/fs/btrfs/tree-log.c
-@@ -1254,21 +1254,13 @@ out:
- }
- 
- static int insert_orphan_item(struct btrfs_trans_handle *trans,
--struct btrfs_root *root, u64 offset)
-+struct btrfs_root *root, u64 ino)
- {
-   int ret;
--  struct btrfs_path *path;
--
--  path = btrfs_alloc_path();
--  if (!path)
--  return -ENOMEM;
- 
--  ret = btrfs_find_item(root, path, BTRFS_ORPHAN_OBJECTID,
--  offset, BTRFS_ORPHAN_ITEM_KEY, NULL);
--  if (ret > 0)
--  ret = btrfs_insert_orphan_item(trans, root, offset);
--
--  btrfs_free_path(path);
-+  ret = btrfs_insert_orphan_item(trans, root, ino);
-+  if (ret == -EEXIST)
-+  ret = 0;
- 
-   return ret;
- }
--- 
-cgit v0.10.2
-

Modified: PKGBUILD
===
--- PKGBUILD2015-04-19 11:26:33 UTC (rev 237453)
+++ PKGBUILD2015-04-19 11:33:49 UTC (rev 237454)
@@ -4,7 +4,7 @@
 
 pkgbase=linux-lts
 _srcname=linux-3.14
-pkgver=3.14.38
+pkgver=3.14.39
 pkgrel=1
 arch=('i686' 'x86_64')
 url="http://www.kernel.org/";
@@ -22,12 +22,11 @@
 '0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch'
 '0003-module-remove-MODULE_GENERIC_TABLE.patch'
 '0006-genksyms-fix-typeof-handling.patch'
-'0001-fix-btrfs-mount-deadlock.patch'
 )
 # https://www.kernel.org/pub/linux/kernel/v3.x/sha256sums.asc
 sha256sums=('61558aa490855f42b6340d1a1596be47454909629327c49a5e4e10268065dffa'
 'SKIP'
-'f03ac0a2656bb4c7d8532af67b74057f1a0cce1f7d43f5019b18c6edf3a7933a'
+'9c50ad5aacfbb8c6f8c3666e305a23d50c922ea0a13dbf44a8e15a9637f1d880'
 'SKIP'
 '999486d20e07e489bb42356b529b739c65ad65de9191282f0ddbbc0eb9b1718e'
 '140098de1ba714c5916ea76578b8bf549ce801c4aa0c786b7c90289b85ecdb77'
@@ -36,8 +35,7 @@
 '6d72e14552df59e6310f16c176806c408355951724cd5b48a47bf01591b8be02'
 '52dec83a8805a8642d74d764494acda863e0aa23e3d249e80d4b457e20a3fd29'
 '65d58f63215ee3c5f9c4fc6bce36fc5311a6c7dbdbe1ad29de40647b47ff9c0d'
-'cf2e7a2d00787f754028e7459688c2755a406e632ce48b60952fa4ff7ed6f4b7'
-'5967cf53cb9db9f070e8f346c3d7045748e4823a7fe2ee330acd18c9d02bbb77')
+'cf2e7a2d00787f754028e7459688c2755a406e632ce48b60952fa4ff7ed6f4b7')
 validpgpkeys=('ABAF11C65A2970B130ABE3C479BE3E4300411886' # Linus Torvalds 

   '647F28654894E3BD457199BE38DBBDC86092693E' # Greg Kroah-Hartman 
(Linux kernel stable release signing key) 
  )
@@ -68,10 +66,6 @@
   # 
http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=dc53324060f324e8af6867f57bf4891c13c6ef18
   patch -p1 -i "${srcdir}/0006-genksyms-fix-typeof-handling.patch"
 
-  # fix #44495 and #44385 deadlock on btrfs mount
-  # https://btrfs.wiki.kernel.org/index.php/Gotchas
-  patch -Np1 -i "${srcdir}/0001-fix-btrfs-mount-deadlock.patch"
-
   if [ "${CARCH}" = "x86_64" ]; then
 cat "${srcdir}/config.x86_64" > ./.config
   else


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

2015-04-19 Thread Andreas Radke
Date: Sunday, April 19, 2015 @ 13:34:23
  Author: andyrtr
Revision: 237455

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

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

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

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


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

2015-04-19 Thread Andreas Radke
Date: Sunday, April 19, 2015 @ 13:40:17
  Author: andyrtr
Revision: 237458

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

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

+
 /0001-Bluetooth-allocate-static-minor-for-vhci.patch   
|  148 
 /0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch   
|  186 
 /0003-module-remove-MODULE_GENERIC_TABLE.patch 
|  150 
 /0006-genksyms-fix-typeof-handling.patch   
| 2720 ++
 /PKGBUILD  
|  654 
 /change-default-console-loglevel.patch 
|   24 
 /config
|13392 ++
 /config.x86_64 
|12974 +
 /linux-lts.install 
|   74 
 /linux-lts.preset   

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

2015-04-19 Thread Antonio Rojas
Date: Sunday, April 19, 2015 @ 14:35:52
  Author: arojas
Revision: 237459

Bump release to pull khelpcenter (not provided by kdebase-runtime anymore)

Modified:
  plasma-meta/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-19 11:40:17 UTC (rev 237458)
+++ PKGBUILD2015-04-19 12:35:52 UTC (rev 237459)
@@ -3,7 +3,7 @@
 
 pkgname=plasma-meta
 pkgver=5.2.0
-pkgrel=4
+pkgrel=5
 pkgdesc='Meta package to install KDE Plasma'
 arch=('any')
 url='https://www.archlinux.org/'


[arch-commits] Commit in plasma-meta/repos (testing-any testing-any/PKGBUILD)

2015-04-19 Thread Antonio Rojas
Date: Sunday, April 19, 2015 @ 14:36:56
  Author: arojas
Revision: 237460

archrelease: copy trunk to testing-any

Added:
  plasma-meta/repos/testing-any/
  plasma-meta/repos/testing-any/PKGBUILD
(from rev 237459, plasma-meta/trunk/PKGBUILD)

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

Copied: plasma-meta/repos/testing-any/PKGBUILD (from rev 237459, 
plasma-meta/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2015-04-19 12:36:56 UTC (rev 237460)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Andrea Scarpino 
+
+pkgname=plasma-meta
+pkgver=5.2.0
+pkgrel=5
+pkgdesc='Meta package to install KDE Plasma'
+arch=('any')
+url='https://www.archlinux.org/'
+license=('GPL')
+depends=('bluedevil-frameworks'
+'drkonqi'
+'kde-gtk-config-frameworks'
+'kdeplasma-addons-frameworks'
+'khelpcenter'
+'kinfocenter'
+'kio-extras'
+'ksysguard'
+'kscreen-frameworks'
+'ksshaskpass'
+'kwrited'
+'milou'
+'oxygen'
+'oxygen-cursors'
+'plasma-desktop'
+'plasma-nm'
+'plasma-workspace-wallpapers'
+)


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

2015-04-19 Thread Jan Steffens
Date: Sunday, April 19, 2015 @ 14:47:46
  Author: heftig
Revision: 237461

3.2.1

Modified:
  rhythmbox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-19 12:36:56 UTC (rev 237460)
+++ PKGBUILD2015-04-19 12:47:46 UTC (rev 237461)
@@ -3,7 +3,7 @@
 # Contributor: Giovanni Scafora 
 
 pkgname=rhythmbox
-pkgver=3.2
+pkgver=3.2.1
 pkgrel=1
 pkgdesc="An iTunes-like music playback and management application"
 arch=(i686 x86_64)
@@ -24,7 +24,7 @@
 options=('!emptydirs')
 install=rhythmbox.install
 
source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver::3}/$pkgname-$pkgver.tar.xz)
-sha256sums=('9c8adf79e4b2bb76cee391c73ba7a1e699e7684e5f45507e7d6849957ac54f81')
+sha256sums=('bf43ca4f5b7531751241f5e67eaba7da6d9748dd827a600eedf9444961537938')
 
 prepare() {
   cd $pkgname-$pkgver


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

2015-04-19 Thread Jan Steffens
Date: Sunday, April 19, 2015 @ 14:50:56
  Author: heftig
Revision: 237462

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

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

+
 /PKGBUILD  |   92 +++
 /rhythmbox.install |   26 +++
 extra-i686/PKGBUILD|   46 ---
 extra-i686/rhythmbox.install   |   13 -
 extra-x86_64/PKGBUILD  |   46 ---
 extra-x86_64/rhythmbox.install |   13 -
 6 files changed, 118 insertions(+), 118 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-04-19 12:47:46 UTC (rev 237461)
+++ extra-i686/PKGBUILD 2015-04-19 12:50:56 UTC (rev 237462)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Giovanni Scafora 
-
-pkgname=rhythmbox
-pkgver=3.2
-pkgrel=1
-pkgdesc="An iTunes-like music playback and management application"
-arch=(i686 x86_64)
-license=(GPL)
-url="http://www.rhythmbox.org";
-depends=(dconf desktop-file-utils gst-plugins-base gst-plugins-good libsoup 
json-glib libnotify libpeas media-player-info totem-plparser tdb webkitgtk3 
python-gobject gnome-icon-theme)
-makedepends=(itstool intltool brasero gobject-introspection vala grilo 
libdmapsharing lirc libgpod libmtp)
-optdepends=('gst-plugins-ugly: Extra media codecs'
-'gst-plugins-bad: Extra media codecs'
-'gst-libav: Extra media codecs'
-'brasero: Audio CD Recorder plugin'
-'libdmapsharing: DAAP Music Sharing plugin'
-'grilo-plugins: Grilo media browser plugin'
-'lirc: LIRC plugin'
-'libgpod: Portable Players - iPod plugin'
-'libmtp: Portable Players - MTP plugin'
-'zeitgeist: Zeitgeist plugin')
-options=('!emptydirs')
-install=rhythmbox.install
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver::3}/$pkgname-$pkgver.tar.xz)
-sha256sums=('9c8adf79e4b2bb76cee391c73ba7a1e699e7684e5f45507e7d6849957ac54f81')
-
-prepare() {
-  cd $pkgname-$pkgver
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --libexecdir=/usr/lib/rhythmbox \
-  --localstatedir=/var --disable-static \
-  --enable-daap --enable-python --enable-vala
-  make
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-  rm -r "$pkgdir/usr/lib/rhythmbox/sample-plugins"
-}

Copied: rhythmbox/repos/extra-i686/PKGBUILD (from rev 237461, 
rhythmbox/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-04-19 12:50:56 UTC (rev 237462)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Giovanni Scafora 
+
+pkgname=rhythmbox
+pkgver=3.2.1
+pkgrel=1
+pkgdesc="An iTunes-like music playback and management application"
+arch=(i686 x86_64)
+license=(GPL)
+url="http://www.rhythmbox.org";
+depends=(dconf desktop-file-utils gst-plugins-base gst-plugins-good libsoup 
json-glib libnotify libpeas media-player-info totem-plparser tdb webkitgtk3 
python-gobject gnome-icon-theme)
+makedepends=(itstool intltool brasero gobject-introspection vala grilo 
libdmapsharing lirc libgpod libmtp)
+optdepends=('gst-plugins-ugly: Extra media codecs'
+'gst-plugins-bad: Extra media codecs'
+'gst-libav: Extra media codecs'
+'brasero: Audio CD Recorder plugin'
+'libdmapsharing: DAAP Music Sharing plugin'
+'grilo-plugins: Grilo media browser plugin'
+'lirc: LIRC plugin'
+'libgpod: Portable Players - iPod plugin'
+'libmtp: Portable Players - MTP plugin'
+'zeitgeist: Zeitgeist plugin')
+options=('!emptydirs')
+install=rhythmbox.install
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver::3}/$pkgname-$pkgver.tar.xz)
+sha256sums=('bf43ca4f5b7531751241f5e67eaba7da6d9748dd827a600eedf9444961537938')
+
+prepare() {
+  cd $pkgname-$pkgver
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --libexecdir=/usr/lib/rhythmbox \
+  --localstatedir=/var --disable-static \
+  --enable-daap --enable-python --enable-vala
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+  rm -r "$pkgdir/usr/lib/rhythmbox/

[arch-commits] Commit in (5 files)

2015-04-19 Thread Felix Yan
Date: Sunday, April 19, 2015 @ 17:22:28
  Author: fyan
Revision: 131708

addpkg: python-qiniu 7.0.3-2

Added:
  python-qiniu/
  python-qiniu/repos/
  python-qiniu/trunk/
  python-qiniu/trunk/LICENSE
  python-qiniu/trunk/PKGBUILD

--+
 LICENSE  |   22 ++
 PKGBUILD |   42 ++
 2 files changed, 64 insertions(+)

Added: python-qiniu/trunk/LICENSE
===
--- python-qiniu/trunk/LICENSE  (rev 0)
+++ python-qiniu/trunk/LICENSE  2015-04-19 15:22:28 UTC (rev 131708)
@@ -0,0 +1,22 @@
+The MIT License (MIT)
+
+Copyright (c) 2014 Qiniu, Ltd.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+

Added: python-qiniu/trunk/PKGBUILD
===
--- python-qiniu/trunk/PKGBUILD (rev 0)
+++ python-qiniu/trunk/PKGBUILD 2015-04-19 15:22:28 UTC (rev 131708)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-qiniu
+pkgname=(python-qiniu python2-qiniu)
+_pkgname=qiniu
+pkgver=7.0.3
+pkgrel=2
+pkgdesc="Qiniu Resource Storage SDK for Python"
+arch=('any')
+url='https://github.com/qiniu/python-sdk'
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools')
+source=("https://pypi.python.org/packages/source/q/qiniu/qiniu-$pkgver.tar.gz";
+LICENSE)
+sha512sums=('9a0f8bc71617579880cb8946d999a3188094470746dcc42791f8cbd5d1e1436d5bd32fbadab649d42d6757fac85695e5ddc8e34fa4d5e10ea69bc06c537ccfc6'
+
'4fbb1090b3ee0d230d40b45db7bcd164873872d1860bd83b51197ed5d03e9d4be7785a400f1d314d6e3c0a6fcba7e1afdf3fdab04ae9970df59f96b18862c529')
+
+prepare() {
+  cp -a ${_pkgname}-$pkgver{,-py2}
+}
+
+package_python-qiniu() {
+  depends=('python-requests' 'python-setuptools')
+
+  cd ${_pkgname}-$pkgver
+  python setup.py install -O1 --root "${pkgdir}"
+
+  install -Dm644 ../LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_python2-qiniu() {
+  depends=('python2-requests' 'python2-setuptools')
+
+  cd ${_pkgname}-$pkgver-py2
+  python2 setup.py install -O1 --root "${pkgdir}"
+
+  install -Dm644 ../LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  # Don't conflict with python 3.x version
+  mv "$pkgdir"/usr/bin/qiniupy{,2}
+}


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


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

2015-04-19 Thread Felix Yan
Date: Sunday, April 19, 2015 @ 17:22:48
  Author: fyan
Revision: 131709

archrelease: copy trunk to community-any

Added:
  python-qiniu/repos/community-any/
  python-qiniu/repos/community-any/LICENSE
(from rev 131708, python-qiniu/trunk/LICENSE)
  python-qiniu/repos/community-any/PKGBUILD
(from rev 131708, python-qiniu/trunk/PKGBUILD)

--+
 LICENSE  |   22 ++
 PKGBUILD |   42 ++
 2 files changed, 64 insertions(+)

Copied: python-qiniu/repos/community-any/LICENSE (from rev 131708, 
python-qiniu/trunk/LICENSE)
===
--- community-any/LICENSE   (rev 0)
+++ community-any/LICENSE   2015-04-19 15:22:48 UTC (rev 131709)
@@ -0,0 +1,22 @@
+The MIT License (MIT)
+
+Copyright (c) 2014 Qiniu, Ltd.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+

Copied: python-qiniu/repos/community-any/PKGBUILD (from rev 131708, 
python-qiniu/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2015-04-19 15:22:48 UTC (rev 131709)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-qiniu
+pkgname=(python-qiniu python2-qiniu)
+_pkgname=qiniu
+pkgver=7.0.3
+pkgrel=2
+pkgdesc="Qiniu Resource Storage SDK for Python"
+arch=('any')
+url='https://github.com/qiniu/python-sdk'
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools')
+source=("https://pypi.python.org/packages/source/q/qiniu/qiniu-$pkgver.tar.gz";
+LICENSE)
+sha512sums=('9a0f8bc71617579880cb8946d999a3188094470746dcc42791f8cbd5d1e1436d5bd32fbadab649d42d6757fac85695e5ddc8e34fa4d5e10ea69bc06c537ccfc6'
+
'4fbb1090b3ee0d230d40b45db7bcd164873872d1860bd83b51197ed5d03e9d4be7785a400f1d314d6e3c0a6fcba7e1afdf3fdab04ae9970df59f96b18862c529')
+
+prepare() {
+  cp -a ${_pkgname}-$pkgver{,-py2}
+}
+
+package_python-qiniu() {
+  depends=('python-requests' 'python-setuptools')
+
+  cd ${_pkgname}-$pkgver
+  python setup.py install -O1 --root "${pkgdir}"
+
+  install -Dm644 ../LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_python2-qiniu() {
+  depends=('python2-requests' 'python2-setuptools')
+
+  cd ${_pkgname}-$pkgver-py2
+  python2 setup.py install -O1 --root "${pkgdir}"
+
+  install -Dm644 ../LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  # Don't conflict with python 3.x version
+  mv "$pkgdir"/usr/bin/qiniupy{,2}
+}


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

2015-04-19 Thread Jan Steffens
Date: Sunday, April 19, 2015 @ 17:26:25
  Author: heftig
Revision: 237463

Add python-cairo dep FS#43004 FS#44637

Modified:
  gedit-plugins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-19 12:50:56 UTC (rev 237462)
+++ PKGBUILD2015-04-19 15:26:25 UTC (rev 237463)
@@ -7,18 +7,17 @@
 
 pkgname=gedit-plugins
 pkgver=3.16.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Plugins for gedit"
 arch=(x86_64 i686)
 license=(GPL)
 url="http://live.gnome.org/GeditPlugins";
-depends=(gedit python-dbus)
+depends=(gedit python-dbus python-cairo)
 makedepends=(intltool vte3 libgit2-glib itstool zeitgeist gucharmap 
gobject-introspection)
 optdepends=('gucharmap: for charmap plugin'
 'vte3: for embedded terminal'
 'libgit2-glib: for git plugin'
-'zeitgeist: for dashboard plugin'
-'gucharmap: embedded character map')
+'zeitgeist: for dashboard plugin')
 options=('!emptydirs')
 install=gedit-plugins.install
 
source=("http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz";)


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

2015-04-19 Thread Jan Steffens
Date: Sunday, April 19, 2015 @ 17:27:54
  Author: heftig
Revision: 237464

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

Added:
  gedit-plugins/repos/extra-i686/PKGBUILD
(from rev 237463, gedit-plugins/trunk/PKGBUILD)
  gedit-plugins/repos/extra-i686/gedit-plugins.install
(from rev 237463, gedit-plugins/trunk/gedit-plugins.install)
  gedit-plugins/repos/extra-x86_64/PKGBUILD
(from rev 237463, gedit-plugins/trunk/PKGBUILD)
  gedit-plugins/repos/extra-x86_64/gedit-plugins.install
(from rev 237463, gedit-plugins/trunk/gedit-plugins.install)
Deleted:
  gedit-plugins/repos/extra-i686/PKGBUILD
  gedit-plugins/repos/extra-i686/gedit-plugins.install
  gedit-plugins/repos/extra-x86_64/PKGBUILD
  gedit-plugins/repos/extra-x86_64/gedit-plugins.install

+
 /PKGBUILD  |   74 +++
 /gedit-plugins.install |   46 +
 extra-i686/PKGBUILD|   38 -
 extra-i686/gedit-plugins.install   |   23 --
 extra-x86_64/PKGBUILD  |   38 -
 extra-x86_64/gedit-plugins.install |   23 --
 6 files changed, 120 insertions(+), 122 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-04-19 15:26:25 UTC (rev 237463)
+++ extra-i686/PKGBUILD 2015-04-19 15:27:54 UTC (rev 237464)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer:  Ionut Biru 
-# Contributor: Alexander Rødseth 
-# Contributor: Hugo Doria 
-# Contributor: Sergej Chodarev 
-# Contributor: zhuqin 
-
-pkgname=gedit-plugins
-pkgver=3.16.0
-pkgrel=1
-pkgdesc="Plugins for gedit"
-arch=(x86_64 i686)
-license=(GPL)
-url="http://live.gnome.org/GeditPlugins";
-depends=(gedit python-dbus)
-makedepends=(intltool gnome-doc-utils vte3 libgit2-glib itstool zeitgeist 
gucharmap gobject-introspection)
-optdepends=('gucharmap: for charmap plugin'
-'vte3: for embedded terminal'
-'libgit2-glib: for git plugin'
-'zeitgeist: for dashboard plugin'
-'gucharmap: embedded character map')
-options=('!emptydirs')
-install=gedit-plugins.install
-source=("http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz";)
-sha256sums=('b685b84ada8ca04f6aa201e402a0208591be4a37b874595a0a85d0a14b52f191')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --disable-schemas-compile
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gedit-plugins/repos/extra-i686/PKGBUILD (from rev 237463, 
gedit-plugins/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-04-19 15:27:54 UTC (rev 237464)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer:  Ionut Biru 
+# Contributor: Alexander Rødseth 
+# Contributor: Hugo Doria 
+# Contributor: Sergej Chodarev 
+# Contributor: zhuqin 
+
+pkgname=gedit-plugins
+pkgver=3.16.0
+pkgrel=2
+pkgdesc="Plugins for gedit"
+arch=(x86_64 i686)
+license=(GPL)
+url="http://live.gnome.org/GeditPlugins";
+depends=(gedit python-dbus python-cairo)
+makedepends=(intltool vte3 libgit2-glib itstool zeitgeist gucharmap 
gobject-introspection)
+optdepends=('gucharmap: for charmap plugin'
+'vte3: for embedded terminal'
+'libgit2-glib: for git plugin'
+'zeitgeist: for dashboard plugin')
+options=('!emptydirs')
+install=gedit-plugins.install
+source=("http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz";)
+sha256sums=('b685b84ada8ca04f6aa201e402a0208591be4a37b874595a0a85d0a14b52f191')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --disable-schemas-compile
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: extra-i686/gedit-plugins.install
===
--- extra-i686/gedit-plugins.install2015-04-19 15:26:25 UTC (rev 237463)
+++ extra-i686/gedit-plugins.install2015-04-19 15:27:54 UTC (rev 237464)
@@ -1,23 +0,0 @@
-pkgname=gedit-plugins
-
-post_install() {
-  usr/bin/glib-compile-schemas usr/share/glib-2.0/schemas
-}
-
-pre_upgrade() {
-  if [ -f usr/share/gconf/schemas/${pkgname}.schemas ]; then
-usr/sbin/gconfpkg --uninstall ${pkgname}
-  fi
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-
-post_remove() {
-  post_install $1
-}
-
-
-# vim:set ts=2 sw=2 et:

Copied: gedit-plugins/repos/extra-i686/gedit-plugins.install (from rev 237463, 
gedit-plugins/trunk/gedit-plugins.install)
===
--- extra-i686/gedit-plugins.install(rev 0)
+++ extra-i686/gedit-plugins.install2015-04-19 15:27:54 UTC (rev 237464)
@@ -0,0 +1,23 @@
+pkg

[arch-commits] Commit in subtitleeditor (3 files)

2015-04-19 Thread Jaroslav Lichtblau
Date: Sunday, April 19, 2015 @ 17:43:02
  Author: jlichtblau
Revision: 131710

FS#44640 package description fix

Modified:
  subtitleeditor/repos/community-i686/PKGBUILD
  subtitleeditor/repos/community-x86_64/PKGBUILD
  subtitleeditor/trunk/PKGBUILD

-+
 repos/community-i686/PKGBUILD   |2 +-
 repos/community-x86_64/PKGBUILD |2 +-
 trunk/PKGBUILD  |2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

Modified: repos/community-i686/PKGBUILD
===
--- repos/community-i686/PKGBUILD   2015-04-19 15:22:48 UTC (rev 131709)
+++ repos/community-i686/PKGBUILD   2015-04-19 15:43:02 UTC (rev 131710)
@@ -4,7 +4,7 @@
 pkgname=subtitleeditor
 pkgver=0.51.0
 pkgrel=1
-pkgdesc="A GTK+2 tool to edit subtitles for GNU/Linux/*BSD"
+pkgdesc="A GTK+3 tool to edit subtitles for GNU/Linux/*BSD"
 arch=('i686' 'x86_64')
 url="http://home.gna.org/subtitleeditor/";
 license=('GPL3')

Modified: repos/community-x86_64/PKGBUILD
===
--- repos/community-x86_64/PKGBUILD 2015-04-19 15:22:48 UTC (rev 131709)
+++ repos/community-x86_64/PKGBUILD 2015-04-19 15:43:02 UTC (rev 131710)
@@ -4,7 +4,7 @@
 pkgname=subtitleeditor
 pkgver=0.51.0
 pkgrel=1
-pkgdesc="A GTK+2 tool to edit subtitles for GNU/Linux/*BSD"
+pkgdesc="A GTK+3 tool to edit subtitles for GNU/Linux/*BSD"
 arch=('i686' 'x86_64')
 url="http://home.gna.org/subtitleeditor/";
 license=('GPL3')

Modified: trunk/PKGBUILD
===
--- trunk/PKGBUILD  2015-04-19 15:22:48 UTC (rev 131709)
+++ trunk/PKGBUILD  2015-04-19 15:43:02 UTC (rev 131710)
@@ -4,7 +4,7 @@
 pkgname=subtitleeditor
 pkgver=0.51.0
 pkgrel=1
-pkgdesc="A GTK+2 tool to edit subtitles for GNU/Linux/*BSD"
+pkgdesc="A GTK+3 tool to edit subtitles for GNU/Linux/*BSD"
 arch=('i686' 'x86_64')
 url="http://home.gna.org/subtitleeditor/";
 license=('GPL3')


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

2015-04-19 Thread Daniel Micay
Date: Sunday, April 19, 2015 @ 17:55:10
  Author: thestinger
Revision: 131711

upgpkg: linux-grsec 3.19.5.201504190814-1

Modified:
  linux-grsec/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-19 15:43:02 UTC (rev 131710)
+++ PKGBUILD2015-04-19 15:55:10 UTC (rev 131711)
@@ -7,9 +7,9 @@
 
 pkgbase=linux-grsec
 _srcname=linux-3.19
-_pkgver=3.19.4
+_pkgver=3.19.5
 _grsecver=3.1
-_timestamp=201504142300
+_timestamp=201504190814
 _grsec_patch="grsecurity-$_grsecver-$_pkgver-$_timestamp.patch"
 pkgver=$_pkgver.$_timestamp
 pkgrel=1
@@ -32,9 +32,9 @@
 )
 sha256sums=('be42511fe5321012bb4a2009167ce56a9e5fe362b4af43e8c371b3666859806c'
 'SKIP'
-'2b086341154af3e8fd0cb5ded954c239a66ffefb9a8c2bd639249b3786dc52d2'
+'2c39c7129208c8ea46b24bce71ab7bd29286630d74a65983f60d3f71657e04eb'
 'SKIP'
-'7f9263c9c3f27d7cec6def60be5922f6625ceda0ee15800d62e6e955e8004fa5'
+'e05f098b2f7dc7bc58481b306617523eb00a75ac2304084358816858635f4972'
 'SKIP'
 '565eb62808216b0ea6fbf16647ffd907810b1d34e445b82d093134bb26c46b7b'
 '3861d6d5ac87d64209971d2f5e389246a1f10833bcd4519c05007a01ab881631'


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

2015-04-19 Thread Daniel Micay
Date: Sunday, April 19, 2015 @ 17:56:08
  Author: thestinger
Revision: 131712

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

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

+
 /PKGBUILD  |  650 
 /change-default-console-loglevel.patch |   22 
 /config|14886 +++
 /config.x86_64 |14306 ++
 /linux-grsec.install   |   74 
 /linux.preset  |   28 
 community-i686/PKGBUILD|  325 
 community-i686/change-default-console-loglevel.patch   |   11 
 community-i686/config  | 7443 ---
 community-i686/config.x86_64   | 7153 ---
 community-i686/linux-grsec.install |   37 
 community-i686/linux.preset|   14 
 community-x86_64/PKGBUILD  |  325 
 community-x86_64/change-default-console-loglevel.patch |   11 
 community-x86_64/config| 7443 ---
 community-x86_64/config.x86_64 | 7153 ---
 community-x86_64/linux-grsec.install   |   37 
 community-x86_64/linux.preset  |   14 
 18 files changed, 29966 insertions(+), 29966 deletions(-)

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


[arch-commits] Commit in (42 files)

2015-04-19 Thread Antonio Rojas
Date: Sunday, April 19, 2015 @ 18:21:21
  Author: arojas
Revision: 237741

Cleanup old KDE packages

Deleted:
  kdeadmin-kcron/
  kdeedu-blinken/
  kdeedu-cantor/
  kdeedu-kbruch/
  kdeedu-kgeography/
  kdeedu-kiten/
  kdeedu-klettres/
  kdeedu-kmplot/
  kdeedu-kstars/
  kdeedu-kturtle/
  kdeedu-kwordquiz/
  kdeedu-rocs/
  kdeedu-step/
  kdegames-bomber/
  kdegames-bovo/
  kdegames-granatier/
  kdegames-kapman/
  kdegames-katomic/
  kdegames-kblackbox/
  kdegames-kblocks/
  kdegames-kbounce/
  kdegames-kbreakout/
  kdegames-kdiamond/
  kdegames-kfourinline/
  kdegames-killbots/
  kdegames-kjumpingcube/
  kdegames-klines/
  kdegames-kmines/
  kdegames-knetwalk/
  kdegames-kollision/
  kdegames-kpatience/
  kdegames-kshisen/
  kdegames-ksquares/
  kdegraphics-kruler/
  kdesdk-kompare/
  kdesdk-lokalize/
  kdetoys-kteatime/
  kdeutils-filelight/
  kdeutils-kcalc/
  kdeutils-kcharselect/
  kdeutils-ktimer/
  kdeutils-print-manager/


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

2015-04-19 Thread Andreas Radke
Date: Sunday, April 19, 2015 @ 18:23:26
  Author: andyrtr
Revision: 237743

archrelease: copy trunk to testing-any

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

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

Copied: man-pages/repos/testing-any/PKGBUILD (from rev 237742, 
man-pages/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2015-04-19 16:23:26 UTC (rev 237743)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Andreas Radke 
+
+pkgname=man-pages
+pkgver=3.83
+_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=('72fce6a1f282146504556ed54b93f06acef77f30114c1c00755b21bb5def7af2'
+'SKIP'
+'19633a5c75ff7deab35b1d2c3d5b7748e7bd4ef4ab598b647bb7e7f60b90a808')
+validpgpkeys=('E522595B52EDA4E6BFCCCB5E856199113A35CE5E') #Michael Kerrisk 
(Linux man-pages maintainer) 
+
+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-04-19 Thread Andreas Radke
Date: Sunday, April 19, 2015 @ 18:23:17
  Author: andyrtr
Revision: 237742

upgpkg: man-pages 3.83-1

upstream update 3.83

Modified:
  man-pages/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-19 16:21:21 UTC (rev 237741)
+++ PKGBUILD2015-04-19 16:23:17 UTC (rev 237742)
@@ -2,7 +2,7 @@
 # Maintainer: Andreas Radke 
 
 pkgname=man-pages
-pkgver=3.82
+pkgver=3.83
 _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=('547273dd0a1c26e5bb2169baa50a7e0e0c93b6e41997729d4d8638a8513018b1'
+sha256sums=('72fce6a1f282146504556ed54b93f06acef77f30114c1c00755b21bb5def7af2'
 'SKIP'
 '19633a5c75ff7deab35b1d2c3d5b7748e7bd4ef4ab598b647bb7e7f60b90a808')
 validpgpkeys=('E522595B52EDA4E6BFCCCB5E856199113A35CE5E') #Michael Kerrisk 
(Linux man-pages maintainer) 


[arch-commits] Commit in (libkdeedu libkpeople)

2015-04-19 Thread Antonio Rojas
Date: Sunday, April 19, 2015 @ 18:26:06
  Author: arojas
Revision: 237748

Cleanup old KDE packages

Deleted:
  libkdeedu/
  libkpeople/


[arch-commits] Commit in (kde-telepathy-meta)

2015-04-19 Thread Antonio Rojas
Date: Sunday, April 19, 2015 @ 18:27:26
  Author: arojas
Revision: 237750

Replaced by telepathy-kde-meta

Deleted:
  kde-telepathy-meta/


[arch-commits] Commit in (kmix)

2015-04-19 Thread Antonio Rojas
Date: Sunday, April 19, 2015 @ 18:28:24
  Author: arojas
Revision: 237751

Merged in kdemultimedia-kmix

Deleted:
  kmix/


[arch-commits] Commit in (telepathy-kde-call-ui)

2015-04-19 Thread Antonio Rojas
Date: Sunday, April 19, 2015 @ 18:34:46
  Author: arojas
Revision: 237754

Not ported to KF5

Deleted:
  telepathy-kde-call-ui/


[arch-commits] Commit in (10 files)

2015-04-19 Thread Antonio Rojas
Date: Sunday, April 19, 2015 @ 18:54:39
  Author: arojas
Revision: 237755

Drop unmaintained kdebindings

Deleted:
  kdebindings-kimono/
  kdebindings-korundum/
  kdebindings-kross/
  kdebindings-perlkde/
  kdebindings-perlqt/
  kdebindings-qtruby/
  kdebindings-qyoto/
  kdebindings-smokegen/
  kdebindings-smokekde/
  kdebindings-smokeqt/


[arch-commits] Commit in (kde-meta)

2015-04-19 Thread Antonio Rojas
Date: Sunday, April 19, 2015 @ 19:16:07
  Author: arojas
Revision: 237756

Replaced by kde-applications-meta

Deleted:
  kde-meta/


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

2015-04-19 Thread Jelle van der Waa
Date: Sunday, April 19, 2015 @ 21:15:04
  Author: jelle
Revision: 131727

upgpkg: python-decorator 3.4.2-1

Modified:
  python-decorator/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-19 16:07:18 UTC (rev 131726)
+++ PKGBUILD2015-04-19 19:15:04 UTC (rev 131727)
@@ -3,8 +3,8 @@
 # Contributor: Pierre Chapuis 
 
 pkgname=('python-decorator' 'python2-decorator')
-pkgver=3.4.0
-pkgrel=2
+pkgver=3.4.2
+pkgrel=1
 pkgdesc='Python Decorator module'
 arch=('any')
 url='http://pypi.python.org/pypi/decorator'
@@ -12,7 +12,7 @@
 makedepends=('python2' 'python' 'python-setuptools')
 
source=("http://pypi.python.org/packages/source/d/decorator/decorator-${pkgver}.tar.gz";
 'LICENSE.txt')
-md5sums=('1e8756f719d746e2fc0dd28b41251356'
+md5sums=('9e0536870d2b83ae27d58dbf22582f4d'
  '0ca76d2c707f09dbb04acc425ea1a08b')
 
 build() {


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

2015-04-19 Thread Jelle van der Waa
Date: Sunday, April 19, 2015 @ 21:15:11
  Author: jelle
Revision: 131728

archrelease: copy trunk to community-any

Added:
  python-decorator/repos/community-any/LICENSE.txt
(from rev 131727, python-decorator/trunk/LICENSE.txt)
  python-decorator/repos/community-any/PKGBUILD
(from rev 131727, python-decorator/trunk/PKGBUILD)
Deleted:
  python-decorator/repos/community-any/LICENSE.txt
  python-decorator/repos/community-any/PKGBUILD

-+
 LICENSE.txt |   52 +++---
 PKGBUILD|   98 +-
 2 files changed, 75 insertions(+), 75 deletions(-)

Deleted: LICENSE.txt
===
--- LICENSE.txt 2015-04-19 19:15:04 UTC (rev 131727)
+++ LICENSE.txt 2015-04-19 19:15:11 UTC (rev 131728)
@@ -1,26 +0,0 @@
-Copyright (c) 2007, Michele Simionato
-All rights reserved.
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are
-met:
-
-  Redistributions of source code must retain the above copyright 
-  notice, this list of conditions and the following disclaimer.
-  Redistributions in bytecode form must reproduce the above copyright
-  notice, this list of conditions and the following disclaimer in
-  the documentation and/or other materials provided with the
-  distribution. 
-
-  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-  HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
-  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
-  BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
-  OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
-  TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
-  USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
-  DAMAGE.

Copied: python-decorator/repos/community-any/LICENSE.txt (from rev 131727, 
python-decorator/trunk/LICENSE.txt)
===
--- LICENSE.txt (rev 0)
+++ LICENSE.txt 2015-04-19 19:15:11 UTC (rev 131728)
@@ -0,0 +1,26 @@
+Copyright (c) 2007, Michele Simionato
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are
+met:
+
+  Redistributions of source code must retain the above copyright 
+  notice, this list of conditions and the following disclaimer.
+  Redistributions in bytecode form must reproduce the above copyright
+  notice, this list of conditions and the following disclaimer in
+  the documentation and/or other materials provided with the
+  distribution. 
+
+  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+  HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
+  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
+  BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
+  OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
+  TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
+  USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
+  DAMAGE.

Deleted: PKGBUILD
===
--- PKGBUILD2015-04-19 19:15:04 UTC (rev 131727)
+++ PKGBUILD2015-04-19 19:15:11 UTC (rev 131728)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Pierre Chapuis 
-
-pkgname=('python-decorator' 'python2-decorator')
-pkgver=3.4.0
-pkgrel=2
-pkgdesc='Python Decorator module'
-arch=('any')
-url='http://pypi.python.org/pypi/decorator'
-license=('BSD')
-makedepends=('python2' 'python' 'python-setuptools')
-source=("http://pypi.python.org/packages/source/d/decorator/decorator-${pkgver}.tar.gz";
-'LICENSE.txt')
-md5sums=('1e8756f719d746e2fc0dd28b41251356'
- '0ca76d2c707f09dbb04acc425ea1a08b')
-
-build() {
-  # Make python and python2 builds possible
-  cp -r decorator-$pkgver decorator2-$pkgver
-
-  cd "$srcdir/decorator-$pkgver"
-
-  python3 setup.py build
-
-  cd "$srcdir/decorator2-$pkgver"
-
-  python2 setup.py build
-}
-
-package_python2-decorator() {
-depends=('python2')
-replaces=('python-decorator<=3.3.2-1')
-  cd "${srcdir}/decorator2-${pkgver}"
-
-  python2 s

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

2015-04-19 Thread Jonathan Steel
Date: Sunday, April 19, 2015 @ 21:52:17
  Author: jsteel
Revision: 131729

upgpkg: puppet 4.0.0-1

Modified:
  puppet/trunk/PKGBUILD
  puppet/trunk/puppet.install

+
 PKGBUILD   |   29 +
 puppet.install |   11 +--
 2 files changed, 18 insertions(+), 22 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-04-19 19:15:11 UTC (rev 131728)
+++ PKGBUILD2015-04-19 19:52:17 UTC (rev 131729)
@@ -9,7 +9,7 @@
 # Contributor: Niels Abspoel 
 
 pkgname=puppet
-pkgver=3.7.5
+pkgver=4.0.0
 pkgrel=1
 pkgdesc="Server automation framework and application"
 arch=('any')
@@ -18,39 +18,28 @@
 depends=('facter' 'hiera')
 optdepends=('ruby-shadow: user password management'
 'logrotate')
-backup=('etc/puppet/auth.conf' 'etc/puppet/fileserver.conf'
-'etc/puppet/puppet.conf' 'etc/puppet/tagmail.conf')
+backup=('etc/puppetlabs/puppet/auth.conf'
+'etc/puppetlabs/puppet/fileserver.conf'
+'etc/puppetlabs/puppet/puppet.conf'
+'etc/logrotate.d/puppet')
 install=$pkgname.install
 
source=($pkgname-$pkgver.tar.gz::http://github.com/puppetlabs/$pkgname/archive/$pkgver.tar.gz)
-md5sums=('c32ef680c48b9b884eb067ccff5e6ee9')
+md5sums=('fe40c3d9a9845155df083c411f39d943')
 
-prepare() {
-  cd $pkgname-$pkgver
-
-  # Ruby 2.2 fixes
-  sed -i 's/: "syck"$/: (defined?(Psych) \&\& YAML == Psych ? "psych" : 
"syck")/' \
-lib/puppet/vendor/safe_yaml/lib/safe_yaml.rb
-  sed -i 485,488d lib/puppet/defaults.rb
-}
-
 package() {
   cd $pkgname-$pkgver
 
   ruby install.rb --destdir="$pkgdir" --sitelibdir="$( ruby -e \
-'puts RbConfig::CONFIG["vendorlibdir"]' )"
+'puts RbConfig::CONFIG["vendorlibdir"]' )" --rundir=/run
 
-  install -Dm644 "$srcdir"/$pkgname-$pkgver/ext/redhat/$pkgname.conf \
-"$pkgdir"/etc/$pkgname/$pkgname.conf
   install -Dm644 "$srcdir"/$pkgname-$pkgver/ext/redhat/logrotate \
 "$pkgdir"/etc/logrotate.d/$pkgname
   install -Dm644 "$srcdir"/$pkgname-$pkgver/conf/fileserver.conf \
-"$pkgdir"/etc/$pkgname/fileserver.conf
-  install -Dm644 "$srcdir"/$pkgname-$pkgver/conf/tagmail.conf \
-"$pkgdir"/etc/$pkgname/tagmail.conf
+"$pkgdir"/etc/puppetlabs/$pkgname/fileserver.conf
 
   install -d "$pkgdir"/{var/lib/$pkgname,usr/lib/tmpfiles.d}
 
-  echo "d /var/run/$pkgname 0755 $pkgname $pkgname -" > \
+  echo "d /run/puppetlabs 0755 $pkgname $pkgname -" > \
 "$pkgdir"/usr/lib/tmpfiles.d/$pkgname.conf
 
   # systemd

Modified: puppet.install
===
--- puppet.install  2015-04-19 19:15:11 UTC (rev 131728)
+++ puppet.install  2015-04-19 19:52:17 UTC (rev 131729)
@@ -6,14 +6,21 @@
 
 pre_upgrade() {
   pre_install
+
+  if  [ "$(vercmp 4 "$2")" -eq 1 ]; then
+echo '==> Version 4 beaks compatibility with version 3; you will need
+==> to follow upgrade instructions for your servers and clients:
+==> https://docs.puppetlabs.com/puppet/4.0/reference/upgrade_server.html
+==> https://docs.puppetlabs.com/puppet/4.0/reference/upgrade_agent.html'
+  fi
 }
 
 pre_remove() {
-  if [[ -f /var/run/puppet/master.pid ]]; then
+  if [[ -f /run/puppetlabs/master.pid ]]; then
 systemctl stop puppetmaster
   fi
 
-  if [[ -f /var/run/puppet/agent.pid ]]; then
+  if [[ -f /run/puppetlabs/agent.pid ]]; then
 systemctl stop puppet
   fi
 }


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

2015-04-19 Thread Jonathan Steel
Date: Sunday, April 19, 2015 @ 21:52:27
  Author: jsteel
Revision: 131730

archrelease: copy trunk to community-testing-any

Added:
  puppet/repos/community-testing-any/
  puppet/repos/community-testing-any/PKGBUILD
(from rev 131729, puppet/trunk/PKGBUILD)
  puppet/repos/community-testing-any/puppet.install
(from rev 131729, puppet/trunk/puppet.install)

+
 PKGBUILD   |   62 +++
 puppet.install |   26 +++
 2 files changed, 88 insertions(+)

Copied: puppet/repos/community-testing-any/PKGBUILD (from rev 131729, 
puppet/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2015-04-19 19:52:27 UTC (rev 131730)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Jonathan Steel 
+# Contributor: Greg Sutcliffe 
+# Contributor: Hyacinthe Cartiaux 
+# Contributor: Thomas S Hatch 
+# Contributor: Xavion 
+# Contributor: Miah Johnson 
+# Contributor: Dave Simons 
+# Contributor: Niels Abspoel 
+
+pkgname=puppet
+pkgver=4.0.0
+pkgrel=1
+pkgdesc="Server automation framework and application"
+arch=('any')
+url="http://puppetlabs.com/puppet/puppet-open-source";
+license=('APACHE')
+depends=('facter' 'hiera')
+optdepends=('ruby-shadow: user password management'
+'logrotate')
+backup=('etc/puppetlabs/puppet/auth.conf'
+'etc/puppetlabs/puppet/fileserver.conf'
+'etc/puppetlabs/puppet/puppet.conf'
+'etc/logrotate.d/puppet')
+install=$pkgname.install
+source=($pkgname-$pkgver.tar.gz::http://github.com/puppetlabs/$pkgname/archive/$pkgver.tar.gz)
+md5sums=('fe40c3d9a9845155df083c411f39d943')
+
+package() {
+  cd $pkgname-$pkgver
+
+  ruby install.rb --destdir="$pkgdir" --sitelibdir="$( ruby -e \
+'puts RbConfig::CONFIG["vendorlibdir"]' )" --rundir=/run
+
+  install -Dm644 "$srcdir"/$pkgname-$pkgver/ext/redhat/logrotate \
+"$pkgdir"/etc/logrotate.d/$pkgname
+  install -Dm644 "$srcdir"/$pkgname-$pkgver/conf/fileserver.conf \
+"$pkgdir"/etc/puppetlabs/$pkgname/fileserver.conf
+
+  install -d "$pkgdir"/{var/lib/$pkgname,usr/lib/tmpfiles.d}
+
+  echo "d /run/puppetlabs 0755 $pkgname $pkgname -" > \
+"$pkgdir"/usr/lib/tmpfiles.d/$pkgname.conf
+
+  # systemd
+  install -Dm644 "$srcdir"/$pkgname-$pkgver/ext/systemd/$pkgname.service \
+"$pkgdir"/usr/lib/systemd/system/$pkgname.service
+  install -Dm644 
"$srcdir"/$pkgname-$pkgver/ext/systemd/${pkgname}master.service \
+"$pkgdir"/usr/lib/systemd/system/${pkgname}master.service
+
+  # vim and emacs
+  install -Dm644 "$srcdir"/$pkgname-$pkgver/ext/vim/ftdetect/$pkgname.vim \
+"$pkgdir"/usr/share/vim/vimfiles/ftdetect/$pkgname.vim
+  install -Dm644 "$srcdir"/$pkgname-$pkgver/ext/vim/syntax/$pkgname.vim \
+"$pkgdir"/usr/share/vim/vimfiles/syntax/$pkgname.vim
+  install -Dm644 "$srcdir"/$pkgname-$pkgver/ext/emacs/$pkgname-mode.el \
+"$pkgdir"/usr/share/emacs/site-lisp/$pkgname-mode.el
+  install -Dm644 "$srcdir"/$pkgname-$pkgver/ext/emacs/$pkgname-mode-init.el \
+"$pkgdir"/usr/share/emacs/site-lisp/site-start.d/$pkgname-mode-init.el
+
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Copied: puppet/repos/community-testing-any/puppet.install (from rev 131729, 
puppet/trunk/puppet.install)
===
--- community-testing-any/puppet.install(rev 0)
+++ community-testing-any/puppet.install2015-04-19 19:52:27 UTC (rev 
131730)
@@ -0,0 +1,26 @@
+pre_install() {
+  getent group puppet &>/dev/null || groupadd -r puppet -g 52
+  getent passwd puppet &>/dev/null || useradd -r -u 52 -g puppet \
+-d /var/lib/puppet -s /usr/bin/nologin -c "Puppet" puppet
+}
+
+pre_upgrade() {
+  pre_install
+
+  if  [ "$(vercmp 4 "$2")" -eq 1 ]; then
+echo '==> Version 4 beaks compatibility with version 3; you will need
+==> to follow upgrade instructions for your servers and clients:
+==> https://docs.puppetlabs.com/puppet/4.0/reference/upgrade_server.html
+==> https://docs.puppetlabs.com/puppet/4.0/reference/upgrade_agent.html'
+  fi
+}
+
+pre_remove() {
+  if [[ -f /run/puppetlabs/master.pid ]]; then
+systemctl stop puppetmaster
+  fi
+
+  if [[ -f /run/puppetlabs/agent.pid ]]; then
+systemctl stop puppet
+  fi
+}


[arch-commits] Commit in gd/trunk (PKGBUILD gd-2.1.1-libvpx-1.4.0.patch)

2015-04-19 Thread Bartłomiej Piotrowski
Date: Sunday, April 19, 2015 @ 21:56:02
  Author: bpiotrowski
Revision: 237757

upgpkg: gd 2.1.1-2

rebuild against libvpx 1.4.0

Added:
  gd/trunk/gd-2.1.1-libvpx-1.4.0.patch
Modified:
  gd/trunk/PKGBUILD

-+
 PKGBUILD|   15 +++
 gd-2.1.1-libvpx-1.4.0.patch |   37 +
 2 files changed, 48 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-04-19 17:16:07 UTC (rev 237756)
+++ PKGBUILD2015-04-19 19:56:02 UTC (rev 237757)
@@ -2,7 +2,7 @@
 
 pkgname=gd
 pkgver=2.1.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Library for the dynamic creation of images by programmers"
 arch=('i686' 'x86_64')
 url="http://www.libgd.org/";
@@ -10,12 +10,19 @@
 depends=('fontconfig' 'libvpx' 'libxpm' 'libtiff')
 makedepends=('git')
 optdepends=('perl: bdftogd script')
-source=("${pkgname}::git+https://github.com/libgd/libgd.git#tag=${pkgname}-${pkgver}";)
-md5sums=('SKIP')
+source=("${pkgname}::git+https://github.com/libgd/libgd.git#tag=${pkgname}-${pkgver}";
+gd-2.1.1-libvpx-1.4.0.patch)
+md5sums=('SKIP'
+ '9114dd8259aaa88b0a09188fe7b19afc')
 
+prepare() {
+  cd ${pkgname}
+  ./bootstrap.sh
+  patch -p1 -i "${srcdir}/gd-2.1.1-libvpx-1.4.0.patch"
+}
+
 build() {
   cd ${pkgname}
-  ./bootstrap.sh
   ./configure \
 --prefix=/usr \
 --disable-rpath \

Added: gd-2.1.1-libvpx-1.4.0.patch
===
--- gd-2.1.1-libvpx-1.4.0.patch (rev 0)
+++ gd-2.1.1-libvpx-1.4.0.patch 2015-04-19 19:56:02 UTC (rev 237757)
@@ -0,0 +1,37 @@
+From d41eb72cd4545c394578332e5c102dee69e02ee8 Mon Sep 17 00:00:00 2001
+From: Remi Collet 
+Date: Tue, 7 Apr 2015 13:11:03 +0200
+Subject: [PATCH] Fix build with latest libvpx 1.4.0
+
+These new constants exist at least since 1.0.0
+Compatibility ones have been droped in 1.4.0
+---
+ src/webpimg.c | 14 +++---
+ 1 file changed, 7 insertions(+), 7 deletions(-)
+
+diff --git a/src/webpimg.c b/src/webpimg.c
+index cf73d64..e49fcc6 100644
+--- a/src/webpimg.c
 b/src/webpimg.c
+@@ -711,14 +711,14 @@ static WebPResult VPXEncode(const uint8* Y,
+ codec_ctl(&enc, VP8E_SET_STATIC_THRESHOLD, 0);
+ codec_ctl(&enc, VP8E_SET_TOKEN_PARTITIONS, 2);
+ 
+-vpx_img_wrap(&img, IMG_FMT_I420,
++vpx_img_wrap(&img, VPX_IMG_FMT_I420,
+  y_width, y_height, 16, (uint8*)(Y));
+-img.planes[PLANE_Y] = (uint8*)(Y);
+-img.planes[PLANE_U] = (uint8*)(U);
+-img.planes[PLANE_V] = (uint8*)(V);
+-img.stride[PLANE_Y] = y_stride;
+-img.stride[PLANE_U] = uv_stride;
+-img.stride[PLANE_V] = uv_stride;
++img.planes[VPX_PLANE_Y] = (uint8*)(Y);
++img.planes[VPX_PLANE_U] = (uint8*)(U);
++img.planes[VPX_PLANE_V] = (uint8*)(V);
++img.stride[VPX_PLANE_Y] = y_stride;
++img.stride[VPX_PLANE_U] = uv_stride;
++img.stride[VPX_PLANE_V] = uv_stride;
+ 
+ res = vpx_codec_encode(&enc, &img, 0, 1, 0, VPX_DL_BEST_QUALITY);
+ 


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

2015-04-19 Thread Bartłomiej Piotrowski
Date: Sunday, April 19, 2015 @ 21:56:11
  Author: bpiotrowski
Revision: 237758

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

Added:
  gd/repos/staging-i686/
  gd/repos/staging-i686/PKGBUILD
(from rev 237757, gd/trunk/PKGBUILD)
  gd/repos/staging-i686/gd-2.1.1-libvpx-1.4.0.patch
(from rev 237757, gd/trunk/gd-2.1.1-libvpx-1.4.0.patch)
  gd/repos/staging-x86_64/
  gd/repos/staging-x86_64/PKGBUILD
(from rev 237757, gd/trunk/PKGBUILD)
  gd/repos/staging-x86_64/gd-2.1.1-libvpx-1.4.0.patch
(from rev 237757, gd/trunk/gd-2.1.1-libvpx-1.4.0.patch)

+
 staging-i686/PKGBUILD  |   43 +++
 staging-i686/gd-2.1.1-libvpx-1.4.0.patch   |   37 +++
 staging-x86_64/PKGBUILD|   43 +++
 staging-x86_64/gd-2.1.1-libvpx-1.4.0.patch |   37 +++
 4 files changed, 160 insertions(+)

Copied: gd/repos/staging-i686/PKGBUILD (from rev 237757, gd/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-04-19 19:56:11 UTC (rev 237758)
@@ -0,0 +1,43 @@
+# $Id$
+
+pkgname=gd
+pkgver=2.1.1
+pkgrel=2
+pkgdesc="Library for the dynamic creation of images by programmers"
+arch=('i686' 'x86_64')
+url="http://www.libgd.org/";
+license=('custom')
+depends=('fontconfig' 'libvpx' 'libxpm' 'libtiff')
+makedepends=('git')
+optdepends=('perl: bdftogd script')
+source=("${pkgname}::git+https://github.com/libgd/libgd.git#tag=${pkgname}-${pkgver}";
+gd-2.1.1-libvpx-1.4.0.patch)
+md5sums=('SKIP'
+ '9114dd8259aaa88b0a09188fe7b19afc')
+
+prepare() {
+  cd ${pkgname}
+  ./bootstrap.sh
+  patch -p1 -i "${srcdir}/gd-2.1.1-libvpx-1.4.0.patch"
+}
+
+build() {
+  cd ${pkgname}
+  ./configure \
+--prefix=/usr \
+--disable-rpath \
+--with-vpx=/usr \
+--with-tiff=/usr
+  make
+}
+
+check() {
+  cd ${pkgname}
+  make check
+}
+
+package() {
+  cd ${pkgname}
+  make DESTDIR="${pkgdir}" install
+  install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Copied: gd/repos/staging-i686/gd-2.1.1-libvpx-1.4.0.patch (from rev 237757, 
gd/trunk/gd-2.1.1-libvpx-1.4.0.patch)
===
--- staging-i686/gd-2.1.1-libvpx-1.4.0.patch(rev 0)
+++ staging-i686/gd-2.1.1-libvpx-1.4.0.patch2015-04-19 19:56:11 UTC (rev 
237758)
@@ -0,0 +1,37 @@
+From d41eb72cd4545c394578332e5c102dee69e02ee8 Mon Sep 17 00:00:00 2001
+From: Remi Collet 
+Date: Tue, 7 Apr 2015 13:11:03 +0200
+Subject: [PATCH] Fix build with latest libvpx 1.4.0
+
+These new constants exist at least since 1.0.0
+Compatibility ones have been droped in 1.4.0
+---
+ src/webpimg.c | 14 +++---
+ 1 file changed, 7 insertions(+), 7 deletions(-)
+
+diff --git a/src/webpimg.c b/src/webpimg.c
+index cf73d64..e49fcc6 100644
+--- a/src/webpimg.c
 b/src/webpimg.c
+@@ -711,14 +711,14 @@ static WebPResult VPXEncode(const uint8* Y,
+ codec_ctl(&enc, VP8E_SET_STATIC_THRESHOLD, 0);
+ codec_ctl(&enc, VP8E_SET_TOKEN_PARTITIONS, 2);
+ 
+-vpx_img_wrap(&img, IMG_FMT_I420,
++vpx_img_wrap(&img, VPX_IMG_FMT_I420,
+  y_width, y_height, 16, (uint8*)(Y));
+-img.planes[PLANE_Y] = (uint8*)(Y);
+-img.planes[PLANE_U] = (uint8*)(U);
+-img.planes[PLANE_V] = (uint8*)(V);
+-img.stride[PLANE_Y] = y_stride;
+-img.stride[PLANE_U] = uv_stride;
+-img.stride[PLANE_V] = uv_stride;
++img.planes[VPX_PLANE_Y] = (uint8*)(Y);
++img.planes[VPX_PLANE_U] = (uint8*)(U);
++img.planes[VPX_PLANE_V] = (uint8*)(V);
++img.stride[VPX_PLANE_Y] = y_stride;
++img.stride[VPX_PLANE_U] = uv_stride;
++img.stride[VPX_PLANE_V] = uv_stride;
+ 
+ res = vpx_codec_encode(&enc, &img, 0, 1, 0, VPX_DL_BEST_QUALITY);
+ 

Copied: gd/repos/staging-x86_64/PKGBUILD (from rev 237757, gd/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2015-04-19 19:56:11 UTC (rev 237758)
@@ -0,0 +1,43 @@
+# $Id$
+
+pkgname=gd
+pkgver=2.1.1
+pkgrel=2
+pkgdesc="Library for the dynamic creation of images by programmers"
+arch=('i686' 'x86_64')
+url="http://www.libgd.org/";
+license=('custom')
+depends=('fontconfig' 'libvpx' 'libxpm' 'libtiff')
+makedepends=('git')
+optdepends=('perl: bdftogd script')
+source=("${pkgname}::git+https://github.com/libgd/libgd.git#tag=${pkgname}-${pkgver}";
+gd-2.1.1-libvpx-1.4.0.patch)
+md5sums=('SKIP'
+ '9114dd8259aaa88b0a09188fe7b19afc')
+
+prepare() {
+  cd ${pkgname}
+  ./bootstrap.sh
+  patch -p1 -i "${srcdir}/gd-2.1.1-libvpx-1.4.0.patch"
+}
+
+build() {
+  cd ${pkgname}
+  ./configure \
+--prefix=/usr \
+--disable-rpath \
+--with-vpx=/usr \
+--with-tiff=/usr
+  make
+}
+
+che

[arch-commits] Commit in (11 files)

2015-04-19 Thread Antonio Rojas
Date: Sunday, April 19, 2015 @ 23:25:25
  Author: arojas
Revision: 237759

Add telepathy-kde group

Modified:
  telepathy-kde-accounts-kcm/trunk/PKGBUILD
  telepathy-kde-approver/trunk/PKGBUILD
  telepathy-kde-auth-handler/trunk/PKGBUILD
  telepathy-kde-common-internals/trunk/PKGBUILD
  telepathy-kde-contact-list/trunk/PKGBUILD
  telepathy-kde-contact-runner/trunk/PKGBUILD
  telepathy-kde-desktop-applets/trunk/PKGBUILD
  telepathy-kde-filetransfer-handler/trunk/PKGBUILD
  telepathy-kde-integration-module/trunk/PKGBUILD
  telepathy-kde-send-file/trunk/PKGBUILD
  telepathy-kde-text-ui/trunk/PKGBUILD

---+
 telepathy-kde-accounts-kcm/trunk/PKGBUILD |2 +-
 telepathy-kde-approver/trunk/PKGBUILD |2 +-
 telepathy-kde-auth-handler/trunk/PKGBUILD |2 +-
 telepathy-kde-common-internals/trunk/PKGBUILD |2 +-
 telepathy-kde-contact-list/trunk/PKGBUILD |2 +-
 telepathy-kde-contact-runner/trunk/PKGBUILD   |2 +-
 telepathy-kde-desktop-applets/trunk/PKGBUILD  |2 +-
 telepathy-kde-filetransfer-handler/trunk/PKGBUILD |2 +-
 telepathy-kde-integration-module/trunk/PKGBUILD   |2 +-
 telepathy-kde-send-file/trunk/PKGBUILD|2 +-
 telepathy-kde-text-ui/trunk/PKGBUILD  |2 +-
 11 files changed, 11 insertions(+), 11 deletions(-)

Modified: telepathy-kde-accounts-kcm/trunk/PKGBUILD
===
--- telepathy-kde-accounts-kcm/trunk/PKGBUILD   2015-04-19 19:56:11 UTC (rev 
237758)
+++ telepathy-kde-accounts-kcm/trunk/PKGBUILD   2015-04-19 21:25:25 UTC (rev 
237759)
@@ -11,7 +11,7 @@
 arch=('i686' 'x86_64')
 url='http://community.kde.org/Real-Time_Communication_and_Collaboration'
 license=('GPL')
-groups=('kde-applications' 'kdenetwork')
+groups=('kde-applications' 'kdenetwork' 'telepathy-kde')
 depends=('telepathy-qt5' 'kaccounts-integration')
 makedepends=('extra-cmake-modules' 'intltool')
 
source=("http://download.kde.org/stable/applications/${pkgver}/src/$_pkgname-${pkgver}.tar.xz";)

Modified: telepathy-kde-approver/trunk/PKGBUILD
===
--- telepathy-kde-approver/trunk/PKGBUILD   2015-04-19 19:56:11 UTC (rev 
237758)
+++ telepathy-kde-approver/trunk/PKGBUILD   2015-04-19 21:25:25 UTC (rev 
237759)
@@ -11,7 +11,7 @@
 arch=('i686' 'x86_64')
 url='http://community.kde.org/Real-Time_Communication_and_Collaboration'
 license=('GPL')
-groups=('kde-applications' 'kdenetwork')
+groups=('kde-applications' 'kdenetwork' 'telepathy-kde')
 depends=('telepathy-qt5' 'knotifications')
 makedepends=('extra-cmake-modules' 'kdoctools' 'python')
 
source=("http://download.kde.org/stable/applications/${pkgver}/src/$_pkgname-${pkgver}.tar.xz";)

Modified: telepathy-kde-auth-handler/trunk/PKGBUILD
===
--- telepathy-kde-auth-handler/trunk/PKGBUILD   2015-04-19 19:56:11 UTC (rev 
237758)
+++ telepathy-kde-auth-handler/trunk/PKGBUILD   2015-04-19 21:25:25 UTC (rev 
237759)
@@ -11,7 +11,7 @@
 arch=('i686' 'x86_64')
 url='http://community.kde.org/Real-Time_Communication_and_Collaboration'
 license=('GPL')
-groups=('kde-applications' 'kdenetwork')
+groups=('kde-applications' 'kdenetwork' 'telepathy-kde')
 depends=('qca-qt5' 'telepathy-kde-common-internals' 'kdewebkit')
 makedepends=('extra-cmake-modules')
 
source=("http://download.kde.org/stable/applications/${pkgver}/src/$_pkgname-${pkgver}.tar.xz";)

Modified: telepathy-kde-common-internals/trunk/PKGBUILD
===
--- telepathy-kde-common-internals/trunk/PKGBUILD   2015-04-19 19:56:11 UTC 
(rev 237758)
+++ telepathy-kde-common-internals/trunk/PKGBUILD   2015-04-19 21:25:25 UTC 
(rev 237759)
@@ -11,7 +11,7 @@
 arch=(i686 x86_64)
 url='http://community.kde.org/Real-Time_Communication_and_Collaboration'
 license=(GPL)
-groups=('kde-applications' 'kdenetwork')
+groups=('kde-applications' 'kdenetwork' 'telepathy-kde')
 depends=(knotifyconfig ktexteditor kpeople telepathy-logger-qt 
kaccounts-integration libotr hicolor-icon-theme telepathy-mission-control)
 makedepends=(extra-cmake-modules kdoctools doxygen python)
 
source=("http://download.kde.org/stable/applications/${pkgver}/src/$_pkgname-${pkgver}.tar.xz";)

Modified: telepathy-kde-contact-list/trunk/PKGBUILD
===
--- telepathy-kde-contact-list/trunk/PKGBUILD   2015-04-19 19:56:11 UTC (rev 
237758)
+++ telepathy-kde-contact-list/trunk/PKGBUILD   2015-04-19 21:25:25 UTC (rev 
237759)
@@ -11,7 +11,7 @@
 arch=('i686' 'x86_64')
 url='http://community.kde.org/Real-Time_Communication_and_Collaboration'
 license=('GPL')
-groups=('kde-applications' 'kdenetwork')
+groups=('kde-applications' 'kdenetwork' 'telepathy-kde')
 depends=('telepathy-kde-common-internals')
 makedepends=('extra-cmake-m

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

2015-04-19 Thread Sébastien Luttringer
Date: Monday, April 20, 2015 @ 00:30:26
  Author: seblu
Revision: 131731

upgpkg: docker 1:1.6.0-1

Modified:
  docker/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-19 19:52:27 UTC (rev 131730)
+++ PKGBUILD2015-04-19 22:30:26 UTC (rev 131731)
@@ -2,7 +2,7 @@
 # Maintainer: Sébastien "Seblu" Luttringer
 
 pkgname=docker
-pkgver=1.5.0
+pkgver=1.6.0
 pkgrel=1
 epoch=1
 pkgdesc='Pack, ship and run any application as a lightweight container'


[arch-commits] Commit in docker/repos/community-x86_64 (4 files)

2015-04-19 Thread Sébastien Luttringer
Date: Monday, April 20, 2015 @ 00:31:44
  Author: seblu
Revision: 131732

archrelease: copy trunk to community-x86_64

Added:
  docker/repos/community-x86_64/PKGBUILD
(from rev 131731, docker/trunk/PKGBUILD)
  docker/repos/community-x86_64/docker.install
(from rev 131731, docker/trunk/docker.install)
Deleted:
  docker/repos/community-x86_64/PKGBUILD
  docker/repos/community-x86_64/docker.install

+
 PKGBUILD   |  108 +++
 docker.install |   36 +-
 2 files changed, 72 insertions(+), 72 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-04-19 22:30:26 UTC (rev 131731)
+++ PKGBUILD2015-04-19 22:31:44 UTC (rev 131732)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Sébastien "Seblu" Luttringer
-
-pkgname=docker
-pkgver=1.5.0
-pkgrel=1
-epoch=1
-pkgdesc='Pack, ship and run any application as a lightweight container'
-arch=('x86_64')
-url='http://www.docker.io/'
-license=('Apache')
-depends=('bridge-utils' 'iproute2' 'device-mapper' 'sqlite' 'systemd')
-makedepends=('git' 'go' 'btrfs-progs')
-optdepends=('btrfs-progs: btrfs backend support'
-'lxc: lxc backend support')
-# don't strip binaries! A sha1 is used to check binary consistency.
-options=('!strip')
-install=$pkgname.install
-source=("git+https://github.com/docker/docker.git#tag=v$pkgver";)
-md5sums=('SKIP')
-
-build() {
-  cd docker
-  export AUTO_GOPATH=1
-  ./hack/make.sh dynbinary
-}
-
-#check() {
-#  cd "$_magic/docker"
-#  # Will be added upstream soon
-#  ./hack/make.sh dyntest
-#}
-
-package() {
-  cd docker
-  install -Dm755 "bundles/$pkgver/dynbinary/docker-$pkgver" 
"$pkgdir/usr/bin/docker"
-  install -Dm755 "bundles/$pkgver/dynbinary/dockerinit-$pkgver" 
"$pkgdir/usr/lib/docker/dockerinit"
-  # completion
-  install -Dm644 'contrib/completion/bash/docker' 
"$pkgdir/usr/share/bash-completion/completions/docker"
-  install -Dm644 'contrib/completion/zsh/_docker' 
"$pkgdir/usr/share/zsh/site-functions/_docker"
-  install -Dm644 'contrib/completion/fish/docker.fish' 
"$pkgdir/usr/share/fish/completions/docker.fish"
-  # systemd
-  install -Dm644 'contrib/init/systemd/docker.service' \
-"$pkgdir/usr/lib/systemd/system/docker.service"
-  install -Dm644 'contrib/init/systemd/docker.socket' \
-"$pkgdir/usr/lib/systemd/system/docker.socket"
-  # vim syntax
-  install -Dm644 'contrib/syntax/vim/syntax/dockerfile.vim' \
-"$pkgdir/usr/share/vim/vimfiles/syntax/dockerfile.vim"
-  install -Dm644 'contrib/syntax/vim/ftdetect/dockerfile.vim' \
-"$pkgdir/usr/share/vim/vimfiles/ftdetect/dockerfile.vim"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: docker/repos/community-x86_64/PKGBUILD (from rev 131731, 
docker/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-04-19 22:31:44 UTC (rev 131732)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Sébastien "Seblu" Luttringer
+
+pkgname=docker
+pkgver=1.6.0
+pkgrel=1
+epoch=1
+pkgdesc='Pack, ship and run any application as a lightweight container'
+arch=('x86_64')
+url='http://www.docker.io/'
+license=('Apache')
+depends=('bridge-utils' 'iproute2' 'device-mapper' 'sqlite' 'systemd')
+makedepends=('git' 'go' 'btrfs-progs')
+optdepends=('btrfs-progs: btrfs backend support'
+'lxc: lxc backend support')
+# don't strip binaries! A sha1 is used to check binary consistency.
+options=('!strip')
+install=$pkgname.install
+source=("git+https://github.com/docker/docker.git#tag=v$pkgver";)
+md5sums=('SKIP')
+
+build() {
+  cd docker
+  export AUTO_GOPATH=1
+  ./hack/make.sh dynbinary
+}
+
+#check() {
+#  cd "$_magic/docker"
+#  # Will be added upstream soon
+#  ./hack/make.sh dyntest
+#}
+
+package() {
+  cd docker
+  install -Dm755 "bundles/$pkgver/dynbinary/docker-$pkgver" 
"$pkgdir/usr/bin/docker"
+  install -Dm755 "bundles/$pkgver/dynbinary/dockerinit-$pkgver" 
"$pkgdir/usr/lib/docker/dockerinit"
+  # completion
+  install -Dm644 'contrib/completion/bash/docker' 
"$pkgdir/usr/share/bash-completion/completions/docker"
+  install -Dm644 'contrib/completion/zsh/_docker' 
"$pkgdir/usr/share/zsh/site-functions/_docker"
+  install -Dm644 'contrib/completion/fish/docker.fish' 
"$pkgdir/usr/share/fish/completions/docker.fish"
+  # systemd
+  install -Dm644 'contrib/init/systemd/docker.service' \
+"$pkgdir/usr/lib/systemd/system/docker.service"
+  install -Dm644 'contrib/init/systemd/docker.socket' \
+"$pkgdir/usr/lib/systemd/system/docker.socket"
+  # vim syntax
+  install -Dm644 'contrib/syntax/vim/syntax/dockerfile.vim' \
+"$pkgdir/usr/share/vim/vimfiles/syntax/dockerfile.vim"
+  install -Dm644 'contrib/syntax/vim/ftdetect/dockerfile.vim' \
+"$pkgdir/usr/share/vim/vimfiles/ftdetect/dockerfile.vim"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: docker.install
===
--- docker.

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

2015-04-19 Thread Sébastien Luttringer
Date: Monday, April 20, 2015 @ 00:36:38
  Author: seblu
Revision: 237760

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

Added:
  btrfs-progs/repos/core-i686/PKGBUILD
(from rev 237759, btrfs-progs/repos/testing-i686/PKGBUILD)
  btrfs-progs/repos/core-i686/btrfs-progs.install
(from rev 237759, btrfs-progs/repos/testing-i686/btrfs-progs.install)
  btrfs-progs/repos/core-i686/initcpio-hook-btrfs
(from rev 237759, btrfs-progs/repos/testing-i686/initcpio-hook-btrfs)
  btrfs-progs/repos/core-i686/initcpio-install-btrfs
(from rev 237759, btrfs-progs/repos/testing-i686/initcpio-install-btrfs)
  btrfs-progs/repos/core-x86_64/PKGBUILD
(from rev 237759, btrfs-progs/repos/testing-x86_64/PKGBUILD)
  btrfs-progs/repos/core-x86_64/btrfs-progs.install
(from rev 237759, btrfs-progs/repos/testing-x86_64/btrfs-progs.install)
  btrfs-progs/repos/core-x86_64/initcpio-hook-btrfs
(from rev 237759, btrfs-progs/repos/testing-x86_64/initcpio-hook-btrfs)
  btrfs-progs/repos/core-x86_64/initcpio-install-btrfs
(from rev 237759, 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  |   98 +++
 /btrfs-progs.install   |   18 ++
 /initcpio-hook-btrfs   |   14 +
 /initcpio-install-btrfs|   34 
 core-i686/PKGBUILD |   49 -
 core-i686/btrfs-progs.install  |9 ---
 core-i686/initcpio-hook-btrfs  |7 --
 core-i686/initcpio-install-btrfs   |   17 --
 core-x86_64/PKGBUILD   |   49 -
 core-x86_64/btrfs-progs.install|9 ---
 core-x86_64/initcpio-hook-btrfs|7 --
 core-x86_64/initcpio-install-btrfs |   17 --
 12 files changed, 164 insertions(+), 164 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2015-04-19 21:25:25 UTC (rev 237759)
+++ core-i686/PKGBUILD  2015-04-19 22:36:38 UTC (rev 237760)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Sébastien "Seblu" Luttringer 
-# Contributor: Tom Gundersen 
-# Contributor: Tobias Powalowski 
-
-pkgname=btrfs-progs
-pkgver=3.19
-pkgrel=1
-pkgdesc='Btrfs filesystem utilities'
-arch=('i686' 'x86_64')
-depends=('glibc' 'libutil-linux' 'e2fsprogs' 'lzo' 'zlib')
-makedepends=('git' 'asciidoc' 'xmlto')
-url='http://btrfs.wiki.kernel.org/'
-replaces=('btrfs-progs-unstable')
-conflicts=('btrfs-progs-unstable')
-provides=('btrfs-progs-unstable')
-license=('GPL2')
-source=("git://git.kernel.org/pub/scm/linux/kernel/git/kdave/$pkgname.git#tag=v$pkgver"
-'initcpio-install-btrfs'
-'initcpio-hook-btrfs')
-install=btrfs-progs.install
-options=(!staticlibs)
-md5sums=('SKIP'
- '7241ba3a4286d08da0d50b7176941112'
- 'b09688a915a0ec8f40e2f5aacbabc9ad')
-
-build() {
-  cd $pkgname
-  ./autogen.sh
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd $pkgname
- ./btrfs filesystem show
-}
-
-package() {
-  cd $pkgname
-  make prefix="$pkgdir"/usr install
-
-  # install 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 237759, 
btrfs-progs/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2015-04-19 22:36:38 UTC (rev 237760)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Sébastien "Seblu" Luttringer 
+# Contributor: Tom Gundersen 
+# Contributor: Tobias Powalowski 
+
+pkgname=btrfs-progs
+pkgver=3.19.1
+pkgrel=1
+pkgdesc='Btrfs filesystem utilities'
+arch=('i686' 'x86_64')
+depends=('glibc' 'libutil-linux' 'e2fsprogs' 'lzo' 'zlib')
+makedepends=('git' 'asciidoc' 'xmlto')
+url='http://btrfs.wiki.kernel.org/'
+replaces=('btrfs-progs-unstable')
+conflicts=('btrfs-progs-unstable')
+provides=('btrfs-progs-unstable')
+license=('GPL2')
+source=("git://git.kernel.org/pub/scm/linux/kernel/git/kdave/$pkgname.git#tag=v$pkgver"
+'initcpio-install-btrfs'
+'initcpio-hook-btrfs')
+install=btrfs-progs.install
+options=(!staticlibs)
+md5sums=('SKIP'
+ '7241ba3a4286d08da0d50b7176941112'
+ 'b09688a915a0ec8f40e2f5aacbabc9ad')
+
+build() {
+  cd $pkgname
+  ./autogen.sh
+  ./configure 

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

2015-04-19 Thread Sébastien Luttringer
Date: Monday, April 20, 2015 @ 00:43:57
  Author: seblu
Revision: 237761

upgpkg: radvd 2.11-1

Modified:
  radvd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-19 22:36:38 UTC (rev 237760)
+++ PKGBUILD2015-04-19 22:43:57 UTC (rev 237761)
@@ -4,7 +4,7 @@
 # Contributor: Mark Smith 
 
 pkgname=radvd
-pkgver=2.10
+pkgver=2.11
 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=('a6b41df6ccc3ecc704809f6072baa5dc1c92dc54'
+sha1sums=('6935f3bb92a9c1aaf7f57225fbeb6cb07191104e'
   'SKIP'
   '2fdba3b0ed28c67dc1c04bfd1439fa4dece88bbc')
 
@@ -31,6 +31,7 @@
 --sbindir=/usr/bin \
 --sysconfdir=/etc \
 --with-pidfile=/run/radvd.pid \
+--with-check \
 --mandir=/usr/share/man
   make
 }


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

2015-04-19 Thread Sébastien Luttringer
Date: Monday, April 20, 2015 @ 00:44:18
  Author: seblu
Revision: 237762

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

Added:
  radvd/repos/extra-i686/PKGBUILD
(from rev 237761, radvd/trunk/PKGBUILD)
  radvd/repos/extra-i686/radvd.service
(from rev 237761, radvd/trunk/radvd.service)
  radvd/repos/extra-x86_64/PKGBUILD
(from rev 237761, radvd/trunk/PKGBUILD)
  radvd/repos/extra-x86_64/radvd.service
(from rev 237761, 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  |  112 +++
 /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, 130 insertions(+), 128 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-04-19 22:43:57 UTC (rev 237761)
+++ extra-i686/PKGBUILD 2015-04-19 22:44:18 UTC (rev 237762)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-# Contributor: Kaiting Chen 
-# Contributor: Mark Smith 
-
-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/extra-i686/PKGBUILD (from rev 237761, radvd/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-04-19 22:44:18 UTC (rev 237762)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+# Contributor: Kaiting Chen 
+# Contributor: Mark Smith 
+
+pkgname=radvd
+pkgver=2.11
+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=('6935f3bb92a9c1aaf7f57225fbeb6cb07191104e'
+  '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 \
+--with-check \
+--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-04-19 22:43:57 UTC (rev 237761)
+++ extra-i686/radvd.service2015-04-19 22:44:18 UTC (rev 237762)
@@ -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 237761, 
radvd/trunk/radvd.service)
===
--- extra-i686/radvd.service(rev 0)
+++

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

2015-04-19 Thread Evangelos Foutras
Date: Monday, April 20, 2015 @ 02:53:16
  Author: foutrelis
Revision: 237764

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

Added:
  xfce4-notes-plugin/repos/extra-i686/PKGBUILD
(from rev 237763, xfce4-notes-plugin/trunk/PKGBUILD)
  xfce4-notes-plugin/repos/extra-i686/xfce4-notes-plugin.install
(from rev 237763, xfce4-notes-plugin/trunk/xfce4-notes-plugin.install)
  xfce4-notes-plugin/repos/extra-x86_64/PKGBUILD
(from rev 237763, xfce4-notes-plugin/trunk/PKGBUILD)
  xfce4-notes-plugin/repos/extra-x86_64/xfce4-notes-plugin.install
(from rev 237763, xfce4-notes-plugin/trunk/xfce4-notes-plugin.install)
Deleted:
  xfce4-notes-plugin/repos/extra-i686/PKGBUILD
  xfce4-notes-plugin/repos/extra-i686/xfce4-notes-plugin.install
  xfce4-notes-plugin/repos/extra-x86_64/PKGBUILD
  xfce4-notes-plugin/repos/extra-x86_64/xfce4-notes-plugin.install

-+
 /PKGBUILD   |   76 ++
 /xfce4-notes-plugin.install |   26 ++
 extra-i686/PKGBUILD |   38 ---
 extra-i686/xfce4-notes-plugin.install   |   13 -
 extra-x86_64/PKGBUILD   |   38 ---
 extra-x86_64/xfce4-notes-plugin.install |   13 -
 6 files changed, 102 insertions(+), 102 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-04-20 00:52:58 UTC (rev 237763)
+++ extra-i686/PKGBUILD 2015-04-20 00:53:16 UTC (rev 237764)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras 
-# Contributor: Andreas Radke 
-# Contributor: Ben Mazer 
-
-pkgname=xfce4-notes-plugin
-pkgver=1.7.7
-pkgrel=7
-pkgdesc="A notes plugin for the Xfce4 panel"
-arch=('i686' 'x86_64')
-license=('GPL2')
-url="http://goodies.xfce.org/projects/panel-plugins/xfce4-notes-plugin";
-groups=('xfce4-goodies')
-depends=('xfce4-panel' 'libxfcegui4' 'libunique' 'hicolor-icon-theme')
-makedepends=('intltool')
-install=$pkgname.install
-source=(http://archive.xfce.org/src/panel-plugins/$pkgname/1.7/$pkgname-$pkgver.tar.bz2)
-sha256sums=('a7baa105b37ad05dea4d6b55d98fd3214c77ad5c7a0e91471d4906c81e5f5217')
-
-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-notes-plugin/repos/extra-i686/PKGBUILD (from rev 237763, 
xfce4-notes-plugin/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-04-20 00:53:16 UTC (rev 237764)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+# Contributor: Andreas Radke 
+# Contributor: Ben Mazer 
+
+pkgname=xfce4-notes-plugin
+pkgver=1.8.0
+pkgrel=1
+pkgdesc="A notes plugin for the Xfce4 panel"
+arch=('i686' 'x86_64')
+license=('GPL2')
+url="http://goodies.xfce.org/projects/panel-plugins/xfce4-notes-plugin";
+groups=('xfce4-goodies')
+depends=('xfce4-panel' 'libunique' 'hicolor-icon-theme')
+makedepends=('intltool')
+install=$pkgname.install
+source=(http://archive.xfce.org/src/panel-plugins/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
+sha256sums=('3627b7da0533ca3fb10310f287dc0d569470960ffdaea7678fd878a20d409678')
+
+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-notes-plugin.install
===
--- extra-i686/xfce4-notes-plugin.install   2015-04-20 00:52:58 UTC (rev 
237763)
+++ extra-i686/xfce4-notes-plugin.install   2015-04-20 00:53:16 UTC (rev 
237764)
@@ -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-notes-plugin/repos/extra-i686/xfce4-notes-plugin.install (from 
rev 237763, xfce4-notes-plugin/trunk/xfce4-notes-plugin.install)
===
--- extra-i686/xfce4-notes-plugin.install   (rev 0)
+++ extra-i686/xfce4-notes-plugin.install   2015-04-20 00:53:16 UTC (rev 
237764)
@@ -0,0 +1,13 @@
+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:

Deleted: extra-x86_64/PKGBUILD
===
--

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

2015-04-19 Thread Evangelos Foutras
Date: Monday, April 20, 2015 @ 02:52:58
  Author: foutrelis
Revision: 237763

upgpkg: xfce4-notes-plugin 1.8.0-1

New upstream release.

Modified:
  xfce4-notes-plugin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-19 22:44:18 UTC (rev 237762)
+++ PKGBUILD2015-04-20 00:52:58 UTC (rev 237763)
@@ -4,18 +4,18 @@
 # Contributor: Ben Mazer 
 
 pkgname=xfce4-notes-plugin
-pkgver=1.7.7
-pkgrel=7
+pkgver=1.8.0
+pkgrel=1
 pkgdesc="A notes plugin for the Xfce4 panel"
 arch=('i686' 'x86_64')
 license=('GPL2')
 url="http://goodies.xfce.org/projects/panel-plugins/xfce4-notes-plugin";
 groups=('xfce4-goodies')
-depends=('xfce4-panel' 'libxfcegui4' 'libunique' 'hicolor-icon-theme')
+depends=('xfce4-panel' 'libunique' 'hicolor-icon-theme')
 makedepends=('intltool')
 install=$pkgname.install
-source=(http://archive.xfce.org/src/panel-plugins/$pkgname/1.7/$pkgname-$pkgver.tar.bz2)
-sha256sums=('a7baa105b37ad05dea4d6b55d98fd3214c77ad5c7a0e91471d4906c81e5f5217')
+source=(http://archive.xfce.org/src/panel-plugins/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
+sha256sums=('3627b7da0533ca3fb10310f287dc0d569470960ffdaea7678fd878a20d409678')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"


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

2015-04-19 Thread Felix Yan
Date: Monday, April 20, 2015 @ 04:23:58
  Author: fyan
Revision: 131733

addpkg: piep 0.8.0-2

Added:
  piep/
  piep/repos/
  piep/trunk/
  piep/trunk/PKGBUILD

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

Added: piep/trunk/PKGBUILD
===
--- piep/trunk/PKGBUILD (rev 0)
+++ piep/trunk/PKGBUILD 2015-04-20 02:23:58 UTC (rev 131733)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=piep
+pkgdesc='Bringing the power of python to stream editing'
+pkgver=0.8.0
+_tag=version-$pkgver
+pkgrel=2
+arch=("any")
+url="https://github.com/gfxmonk/piep";
+license=("GPL")
+depends=('python2-pygments' 'python2-setuptools')
+source=("https://github.com/gfxmonk/$pkgname/archive/$_tag.tar.gz";)
+md5sums=('32dc3f9c4fb40eaf9a7ad3f9e92b82ce')
+
+prepare() {
+  cd "$srcdir/$pkgname-$_tag"
+  sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' piep/main.py
+}
+
+package() {
+  cd "$srcdir/$pkgname-$_tag"
+  python2 setup.py install --root="${pkgdir}" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:


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


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

2015-04-19 Thread Felix Yan
Date: Monday, April 20, 2015 @ 04:24:26
  Author: fyan
Revision: 131734

archrelease: copy trunk to community-any

Added:
  piep/repos/community-any/
  piep/repos/community-any/PKGBUILD
(from rev 131733, piep/trunk/PKGBUILD)

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

Copied: piep/repos/community-any/PKGBUILD (from rev 131733, piep/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2015-04-20 02:24:26 UTC (rev 131734)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=piep
+pkgdesc='Bringing the power of python to stream editing'
+pkgver=0.8.0
+_tag=version-$pkgver
+pkgrel=2
+arch=("any")
+url="https://github.com/gfxmonk/piep";
+license=("GPL")
+depends=('python2-pygments' 'python2-setuptools')
+source=("https://github.com/gfxmonk/$pkgname/archive/$_tag.tar.gz";)
+md5sums=('32dc3f9c4fb40eaf9a7ad3f9e92b82ce')
+
+prepare() {
+  cd "$srcdir/$pkgname-$_tag"
+  sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' piep/main.py
+}
+
+package() {
+  cd "$srcdir/$pkgname-$_tag"
+  python2 setup.py install --root="${pkgdir}" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:


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

2015-04-19 Thread Felix Yan
Date: Monday, April 20, 2015 @ 05:25:28
  Author: fyan
Revision: 131736

upgpkg: jenkins 1.610-1

Modified:
  jenkins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-20 02:34:21 UTC (rev 131735)
+++ PKGBUILD2015-04-20 03:25:28 UTC (rev 131736)
@@ -5,7 +5,7 @@
 # Contributor: Illarion Kovalchuk 
 
 pkgname=jenkins
-pkgver=1.609
+pkgver=1.610
 pkgrel=1
 pkgdesc='Extendable continuous integration server (latest)'
 arch=('any')
@@ -24,7 +24,7 @@
 'jenkins.service'
 'jenkins.tmpfiles.d'
 'LICENSE')
-sha512sums=('cdf19e140307ea89fd42a9388e39c7fc442e97228d2c3de556a10cd218eb4dbce7dc592fbac36d4875c860abdf415304ec40cbb7a952a9335f9dbd768eef1ae5'
+sha512sums=('72b5e1b802a0a9ee52f195ab89d952d99c4fd33d4e28bc17be6d214016c6ee9d741681d6a0cbf74fc3860fc5ca2cae92edc62e31daa42dfec56fb498722d2fd1'
 
'3a8421cef3953d899c150609f959cf5d5dd6d08d079a5e0f48bfece4f3c80491722b9e90ef841fddb87401c226b8338297c5c4e83e55a33ef8d6e387de3048d0'
 
'a336b006d3711abb75b49a2e12c09ee61cf3275a2cdbbd3676480e2f6ca8ba0fb4b9c08f3f9da193252c4fca827e9a1d5eaad847d0a889445693427ae1571fe7'
 
'fc82b56741c4683cde4913e41bf3dbfb0e7b16897b22b27d92a9c6fa7a300ffba97d85fbbf2287a7c5c546cb5697bbe8daa108bfc51572cf69c256d1e01e80ba'


[arch-commits] Commit in jenkins/repos/community-any (12 files)

2015-04-19 Thread Felix Yan
Date: Monday, April 20, 2015 @ 05:26:14
  Author: fyan
Revision: 131737

archrelease: copy trunk to community-any

Added:
  jenkins/repos/community-any/LICENSE
(from rev 131736, jenkins/trunk/LICENSE)
  jenkins/repos/community-any/PKGBUILD
(from rev 131736, jenkins/trunk/PKGBUILD)
  jenkins/repos/community-any/jenkins.conf
(from rev 131736, jenkins/trunk/jenkins.conf)
  jenkins/repos/community-any/jenkins.install
(from rev 131736, jenkins/trunk/jenkins.install)
  jenkins/repos/community-any/jenkins.service
(from rev 131736, jenkins/trunk/jenkins.service)
  jenkins/repos/community-any/jenkins.tmpfiles.d
(from rev 131736, jenkins/trunk/jenkins.tmpfiles.d)
Deleted:
  jenkins/repos/community-any/LICENSE
  jenkins/repos/community-any/PKGBUILD
  jenkins/repos/community-any/jenkins.conf
  jenkins/repos/community-any/jenkins.install
  jenkins/repos/community-any/jenkins.service
  jenkins/repos/community-any/jenkins.tmpfiles.d

+
 LICENSE|   46 ++--
 PKGBUILD   |   84 ++---
 jenkins.conf   |   26 +--
 jenkins.install|  114 +--
 jenkins.service|   48 ++---
 jenkins.tmpfiles.d |4 -
 6 files changed, 161 insertions(+), 161 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2015-04-20 03:25:28 UTC (rev 131736)
+++ LICENSE 2015-04-20 03:26:14 UTC (rev 131737)
@@ -1,23 +0,0 @@
-The MIT License
-
-Copyright (c) 2004-, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number 
of other of contributors
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.
-
-

Copied: jenkins/repos/community-any/LICENSE (from rev 131736, 
jenkins/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2015-04-20 03:26:14 UTC (rev 131737)
@@ -0,0 +1,23 @@
+The MIT License
+
+Copyright (c) 2004-, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number 
of other of contributors
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+
+

Deleted: PKGBUILD
===
--- PKGBUILD2015-04-20 03:25:28 UTC (rev 131736)
+++ PKGBUILD2015-04-20 03:26:14 UTC (rev 131737)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Alexander Rødseth 
-# Contributor: Marcel Huber 
-# Contributor: Illarion Kovalchuk 
-
-pkgname=jenkins
-pkgver=1.609
-pkgrel=1
-pkgdesc='Extendable continuous integration server (latest)'
-arch=('any')
-url='http://jenkins-ci.org/'
-license=('MIT')
-depends=('java-runtime' 'ttf-dejavu' 'libcups')
-provides=('jenkins-ci')
-conflicts=('jenkins-ci')
-replaces=('jenkins-ci')
-backup=('etc/conf.d/jenkins')
-install='jenkins.install'
-noextract=('jenkins.war')
-source=("jenkins-${pkgver}.war::http://mirrors.jenkins-ci.org/war/${pkgver}/jenkins.war";
-# Rename to f

[arch-commits] Commit in jenkins/repos/community-any (12 files)

2015-04-19 Thread Felix Yan
Date: Monday, April 20, 2015 @ 05:37:28
  Author: fyan
Revision: 131738

archrelease: copy trunk to community-any

Added:
  jenkins/repos/community-any/LICENSE
(from rev 131737, jenkins/trunk/LICENSE)
  jenkins/repos/community-any/PKGBUILD
(from rev 131737, jenkins/trunk/PKGBUILD)
  jenkins/repos/community-any/jenkins.conf
(from rev 131737, jenkins/trunk/jenkins.conf)
  jenkins/repos/community-any/jenkins.install
(from rev 131737, jenkins/trunk/jenkins.install)
  jenkins/repos/community-any/jenkins.service
(from rev 131737, jenkins/trunk/jenkins.service)
  jenkins/repos/community-any/jenkins.tmpfiles.d
(from rev 131737, jenkins/trunk/jenkins.tmpfiles.d)
Deleted:
  jenkins/repos/community-any/LICENSE
  jenkins/repos/community-any/PKGBUILD
  jenkins/repos/community-any/jenkins.conf
  jenkins/repos/community-any/jenkins.install
  jenkins/repos/community-any/jenkins.service
  jenkins/repos/community-any/jenkins.tmpfiles.d

+
 LICENSE|   46 ++--
 PKGBUILD   |   84 ++---
 jenkins.conf   |   26 +--
 jenkins.install|  114 +--
 jenkins.service|   48 ++---
 jenkins.tmpfiles.d |4 -
 6 files changed, 161 insertions(+), 161 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2015-04-20 03:26:14 UTC (rev 131737)
+++ LICENSE 2015-04-20 03:37:28 UTC (rev 131738)
@@ -1,23 +0,0 @@
-The MIT License
-
-Copyright (c) 2004-, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number 
of other of contributors
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.
-
-

Copied: jenkins/repos/community-any/LICENSE (from rev 131737, 
jenkins/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2015-04-20 03:37:28 UTC (rev 131738)
@@ -0,0 +1,23 @@
+The MIT License
+
+Copyright (c) 2004-, Kohsuke Kawaguchi, Sun Microsystems, Inc., and a number 
of other of contributors
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+
+

Deleted: PKGBUILD
===
--- PKGBUILD2015-04-20 03:26:14 UTC (rev 131737)
+++ PKGBUILD2015-04-20 03:37:28 UTC (rev 131738)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Alexander Rødseth 
-# Contributor: Marcel Huber 
-# Contributor: Illarion Kovalchuk 
-
-pkgname=jenkins
-pkgver=1.610
-pkgrel=1
-pkgdesc='Extendable continuous integration server (latest)'
-arch=('any')
-url='http://jenkins-ci.org/'
-license=('MIT')
-depends=('java-runtime' 'ttf-dejavu' 'libcups')
-provides=('jenkins-ci')
-conflicts=('jenkins-ci')
-replaces=('jenkins-ci')
-backup=('etc/conf.d/jenkins')
-install='jenkins.install'
-noextract=('jenkins.war')
-source=("jenkins-${pkgver}.war::http://mirrors.jenkins-ci.org/war/${pkgver}/jenkins.war";
-# Rename to f

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

2015-04-19 Thread Antonio Rojas
Date: Monday, April 20, 2015 @ 08:51:52
  Author: arojas
Revision: 237765

Fix freeze when opening file dialogs (FS#44649)

Modified:
  frameworkintegration/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-04-20 00:53:16 UTC (rev 237764)
+++ PKGBUILD2015-04-20 06:51:52 UTC (rev 237765)
@@ -4,7 +4,7 @@
 
 pkgname=frameworkintegration
 pkgver=5.9.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Framework providing components to allow applications to integrate 
with a KDE Workspace'
 arch=('i686' 'x86_64')
 url='https://projects.kde.org/projects/frameworks/frameworkintegration'
@@ -12,11 +12,16 @@
 depends=('kio' 'ttf-oxygen' 'libxcursor')
 makedepends=('extra-cmake-modules')
 groups=('kf5')
-source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz";)
-md5sums=('5a40c112b997e3a30848374bf2a1ae6f')
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz";
 'fix_file_dialogs.patch')
 
+md5sums=('5a40c112b997e3a30848374bf2a1ae6f'
+ 'b37ac613e304bbfb984e659bc160bccb')
+
 prepare() {
   mkdir -p build
+
+  cd $pkgname-$pkgver
+  patch -p1 -i "$srcdir"/fix_file_dialogs.patch
 }
 
 build() {


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

2015-04-19 Thread Antonio Rojas
Date: Monday, April 20, 2015 @ 08:52:56
  Author: arojas
Revision: 237766

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2015-04-20 06:51:52 UTC (rev 237765)
+++ extra-i686/PKGBUILD 2015-04-20 06:52:56 UTC (rev 237766)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=frameworkintegration
-pkgver=5.9.0
-pkgrel=1
-pkgdesc='Framework providing components to allow applications to integrate 
with a KDE Workspace'
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/frameworks/frameworkintegration'
-license=('LGPL')
-depends=('kio' 'ttf-oxygen' 'libxcursor')
-makedepends=('extra-cmake-modules')
-groups=('kf5')
-source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz";)
-md5sums=('5a40c112b997e3a30848374bf2a1ae6f')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: frameworkintegration/repos/extra-i686/PKGBUILD (from rev 237765, 
frameworkintegration/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2015-04-20 06:52:56 UTC (rev 237766)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=frameworkintegration
+pkgver=5.9.0
+pkgrel=2
+pkgdesc='Framework providing components to allow applications to integrate 
with a KDE Workspace'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/frameworkintegration'
+license=('LGPL')
+depends=('kio' 'ttf-oxygen' 'libxcursor')
+makedepends=('extra-cmake-modules')
+groups=('kf5')
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz";
 'fix_file_dialogs.patch')
+
+md5sums=('5a40c112b997e3a30848374bf2a1ae6f'
+ 'b37ac613e304bbfb984e659bc160bccb')
+
+prepare() {
+  mkdir -p build
+
+  cd $pkgname-$pkgver
+  patch -p1 -i "$srcdir"/fix_file_dialogs.patch
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2015-04-20 06:51:52 UTC (rev 237765)
+++ extra-x86_64/PKGBUILD   2015-04-20 06:52:56 UTC (rev 237766)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=frameworkintegration
-pkgver=5.9.0
-pkgrel=1
-pkgdesc='Framework providing components to allow applications to integrate 
with a KDE Workspace'
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/frameworks/frameworkintegration'
-license=('LGPL')
-depends=('kio' 'ttf-oxygen' 'libxcursor')
-makedepends=('extra-cmake-modules')
-groups=('kf5')
-source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz";)
-md5sums=('5a40c112b997e3a30848374bf2a1ae6f')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: frameworkintegration/repos/extra-x86_64/PKGBUILD (from rev 237765, 
frameworkintegration/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2015-04-20 06:52:56 UTC (rev 237766)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=frameworkintegration
+pkgver=5.9.0
+pkgrel=2
+pkgdesc='Framework providing components to allow applications to integrate 
with a KDE Workspace'
+arch=('i686' 'x86_64')
+url=

[arch-commits] Commit in frameworkintegration/trunk (fix_file_dialogs.patch)

2015-04-19 Thread Antonio Rojas
Date: Monday, April 20, 2015 @ 08:54:41
  Author: arojas
Revision: 237767

Add patch

Added:
  frameworkintegration/trunk/fix_file_dialogs.patch

+
 fix_file_dialogs.patch |1 +
 1 file changed, 1 insertion(+)

Added: fix_file_dialogs.patch
===
(Binary files differ)

Index: frameworkintegration/trunk/fix_file_dialogs.patch
===
--- fix_file_dialogs.patch  2015-04-20 06:52:56 UTC (rev 237766)
+++ fix_file_dialogs.patch  2015-04-20 06:54:41 UTC (rev 237767)

Property changes on: frameworkintegration/trunk/fix_file_dialogs.patch
___
Added: svn:mime-type
## -0,0 +1 ##
+message/rfc822
\ No newline at end of property