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

2016-02-16 Thread Felix Yan
Date: Wednesday, February 17, 2016 @ 08:52:54
  Author: fyan
Revision: 161945

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

Added:
  haskell-void/repos/community-staging-i686/
  haskell-void/repos/community-staging-i686/PKGBUILD
(from rev 161944, haskell-void/trunk/PKGBUILD)
  haskell-void/repos/community-staging-i686/haskell-void.install
(from rev 161944, haskell-void/trunk/haskell-void.install)
  haskell-void/repos/community-staging-x86_64/
  haskell-void/repos/community-staging-x86_64/PKGBUILD
(from rev 161944, haskell-void/trunk/PKGBUILD)
  haskell-void/repos/community-staging-x86_64/haskell-void.install
(from rev 161944, haskell-void/trunk/haskell-void.install)

---+
 community-staging-i686/PKGBUILD   |   43 
 community-staging-i686/haskell-void.install   |   18 ++
 community-staging-x86_64/PKGBUILD |   43 
 community-staging-x86_64/haskell-void.install |   18 ++
 4 files changed, 122 insertions(+)

Copied: haskell-void/repos/community-staging-i686/PKGBUILD (from rev 161944, 
haskell-void/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-02-17 07:52:54 UTC (rev 161945)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=void
+pkgname=haskell-void
+pkgver=0.7.1
+pkgrel=5
+pkgdesc="A Haskell 98 logically uninhabited data type"
+url="http://github.com/ekmett/void";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-hashable" "haskell-semigroups")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('c9f0fd93680c029abb9654b5464be260652829961b18b7046f96a0df95e825f4')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-safe
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: haskell-void/repos/community-staging-i686/haskell-void.install (from 
rev 161944, haskell-void/trunk/haskell-void.install)
===
--- community-staging-i686/haskell-void.install (rev 0)
+++ community-staging-i686/haskell-void.install 2016-02-17 07:52:54 UTC (rev 
161945)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-void
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-void/repos/community-staging-x86_64/PKGBUILD (from rev 161944, 
haskell-void/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-02-17 07:52:54 UTC (rev 161945)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=void
+pkgname=haskell-void
+pkgver=0.7.1
+pkgrel=5
+pkgdesc="A Haskell 98 logically uninhabited data type"
+url="http://github.com/ekmett/void";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-hashable" "haskell-semigroups")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('c9f0fd93680c029abb9654b5464be260652829961b18b7046f96a0df95e825f4')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-lib

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

2016-02-16 Thread Felix Yan
Date: Wednesday, February 17, 2016 @ 08:52:21
  Author: fyan
Revision: 161944

upgpkg: haskell-void 0.7.1-5

rebuild with unordered-containers-0.2.7.0, cmdargs-0.10.14, 
conduit-extra-1.1.10, vector-th-unbox-0.2.1.4

Modified:
  haskell-void/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-17 06:10:03 UTC (rev 161943)
+++ PKGBUILD2016-02-17 07:52:21 UTC (rev 161944)
@@ -5,7 +5,7 @@
 _hkgname=void
 pkgname=haskell-void
 pkgver=0.7.1
-pkgrel=4
+pkgrel=5
 pkgdesc="A Haskell 98 logically uninhabited data type"
 url="http://github.com/ekmett/void";
 license=("custom:BSD3")


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

2016-02-16 Thread Antonio Rojas
Date: Wednesday, February 17, 2016 @ 08:46:46
  Author: arojas
Revision: 259886

ffmpeg 3.0 rebuild

Modified:
  gegl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-17 07:03:51 UTC (rev 259885)
+++ PKGBUILD2016-02-17 07:46:46 UTC (rev 259886)
@@ -3,7 +3,7 @@
 
 pkgname=gegl
 pkgver=0.3.4
-pkgrel=4
+pkgrel=5
 pkgdesc="Graph based image processing framework"
 arch=('i686' 'x86_64')
 url="http://www.gegl.org/";


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

2016-02-16 Thread Antonio Rojas
Date: Wednesday, February 17, 2016 @ 08:47:13
  Author: arojas
Revision: 259887

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

Added:
  gegl/repos/staging-i686/
  gegl/repos/staging-i686/PKGBUILD
(from rev 259886, gegl/trunk/PKGBUILD)
  gegl/repos/staging-x86_64/
  gegl/repos/staging-x86_64/PKGBUILD
(from rev 259886, gegl/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   58 ++
 staging-x86_64/PKGBUILD |   58 ++
 2 files changed, 116 insertions(+)

Copied: gegl/repos/staging-i686/PKGBUILD (from rev 259886, gegl/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-02-17 07:47:13 UTC (rev 259887)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Daniel Isenmann 
+
+pkgname=gegl
+pkgver=0.3.4
+pkgrel=5
+pkgdesc="Graph based image processing framework"
+arch=('i686' 'x86_64')
+url="http://www.gegl.org/";
+license=('GPL3' 'LGPL3')
+depends=('babl' 'libspiro' 'json-glib')
+makedepends=('intltool' 'ruby' 'lua' 'libraw' 'openexr' 'mesa' 'glu' 'ffmpeg' 
'librsvg'
+ 'jasper' 'libtiff' 'exiv2' 'vala' 'python2' 'suitesparse' 
'lensfun'
+ 'gobject-introspection' 'git')
+optdepends=('libraw: raw plugin'
+'openexr: openexr plugin'
+'ffmpeg: ffmpeg plugin'
+'suitesparse: matting-levin plugin'
+'librsvg: svg plugin'
+'jasper: jasper plugin'
+'libtiff: tiff plugin'
+'lua: lua plugin'
+'lensfun: lens-correct plugin')
+source=("git://git.gnome.org/gegl#tag=GEGL_${pkgver//./_}")
+sha256sums=('SKIP')
+
+prepare() {
+  mkdir path
+  ln -s /usr/bin/python2 path/python
+
+  cd ${pkgname}
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  export PATH="$srcdir/path:$PATH" PYTHON=/usr/bin/python2
+  cd ${pkgname}
+  ./configure  --prefix=/usr  --with-sdl --with-librsvg \
+--with-libavformat --with-jasper --disable-docs \
+--enable-workshop
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+check() {
+  export PATH="$srcdir/path:$PATH" PYTHON=/usr/bin/python2
+  cd ${pkgname}
+  make -k check || :
+}
+
+package() {
+  export PATH="$srcdir/path:$PATH" PYTHON=/usr/bin/python2
+  cd ${pkgname}
+  make DESTDIR="${pkgdir}" install
+}

Copied: gegl/repos/staging-x86_64/PKGBUILD (from rev 259886, 
gegl/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-02-17 07:47:13 UTC (rev 259887)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Daniel Isenmann 
+
+pkgname=gegl
+pkgver=0.3.4
+pkgrel=5
+pkgdesc="Graph based image processing framework"
+arch=('i686' 'x86_64')
+url="http://www.gegl.org/";
+license=('GPL3' 'LGPL3')
+depends=('babl' 'libspiro' 'json-glib')
+makedepends=('intltool' 'ruby' 'lua' 'libraw' 'openexr' 'mesa' 'glu' 'ffmpeg' 
'librsvg'
+ 'jasper' 'libtiff' 'exiv2' 'vala' 'python2' 'suitesparse' 
'lensfun'
+ 'gobject-introspection' 'git')
+optdepends=('libraw: raw plugin'
+'openexr: openexr plugin'
+'ffmpeg: ffmpeg plugin'
+'suitesparse: matting-levin plugin'
+'librsvg: svg plugin'
+'jasper: jasper plugin'
+'libtiff: tiff plugin'
+'lua: lua plugin'
+'lensfun: lens-correct plugin')
+source=("git://git.gnome.org/gegl#tag=GEGL_${pkgver//./_}")
+sha256sums=('SKIP')
+
+prepare() {
+  mkdir path
+  ln -s /usr/bin/python2 path/python
+
+  cd ${pkgname}
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  export PATH="$srcdir/path:$PATH" PYTHON=/usr/bin/python2
+  cd ${pkgname}
+  ./configure  --prefix=/usr  --with-sdl --with-librsvg \
+--with-libavformat --with-jasper --disable-docs \
+--enable-workshop
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+check() {
+  export PATH="$srcdir/path:$PATH" PYTHON=/usr/bin/python2
+  cd ${pkgname}
+  make -k check || :
+}
+
+package() {
+  export PATH="$srcdir/path:$PATH" PYTHON=/usr/bin/python2
+  cd ${pkgname}
+  make DESTDIR="${pkgdir}" install
+}


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

2016-02-16 Thread Anatol Pomozov
Date: Wednesday, February 17, 2016 @ 08:03:51
  Author: anatolik
Revision: 259885

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

Added:
  syslinux/repos/testing-i686/
  syslinux/repos/testing-i686/PKGBUILD
(from rev 259884, syslinux/trunk/PKGBUILD)
  syslinux/repos/testing-i686/syslinux-install_update
(from rev 259884, syslinux/trunk/syslinux-install_update)
  syslinux/repos/testing-i686/syslinux.cfg
(from rev 259884, syslinux/trunk/syslinux.cfg)
  syslinux/repos/testing-i686/syslinux.install
(from rev 259884, syslinux/trunk/syslinux.install)
  syslinux/repos/testing-x86_64/
  syslinux/repos/testing-x86_64/PKGBUILD
(from rev 259884, syslinux/trunk/PKGBUILD)
  syslinux/repos/testing-x86_64/syslinux-install_update
(from rev 259884, syslinux/trunk/syslinux-install_update)
  syslinux/repos/testing-x86_64/syslinux.cfg
(from rev 259884, syslinux/trunk/syslinux.cfg)
  syslinux/repos/testing-x86_64/syslinux.install
(from rev 259884, syslinux/trunk/syslinux.install)

+
 testing-i686/PKGBUILD  |   84 +
 testing-i686/syslinux-install_update   |  464 +++
 testing-i686/syslinux.cfg  |   78 +
 testing-i686/syslinux.install  |   32 ++
 testing-x86_64/PKGBUILD|   84 +
 testing-x86_64/syslinux-install_update |  464 +++
 testing-x86_64/syslinux.cfg|   78 +
 testing-x86_64/syslinux.install|   32 ++
 8 files changed, 1316 insertions(+)

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


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

2016-02-16 Thread Anatol Pomozov
Date: Wednesday, February 17, 2016 @ 08:02:48
  Author: anatolik
Revision: 259884

Fix btrfs boot issue FS#48214

Modified:
  syslinux/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-17 07:00:31 UTC (rev 259883)
+++ PKGBUILD2016-02-17 07:02:48 UTC (rev 259884)
@@ -6,7 +6,7 @@
 pkgname=syslinux
 pkgver=6.03
 _tag=syslinux-$pkgver
-pkgrel=3
+pkgrel=4
 pkgdesc='Collection of boot loaders that boot from FAT, ext2/3/4 and btrfs 
filesystems, from CDs and via PXE'
 url='http://www.syslinux.org/'
 arch=(i686 x86_64)
@@ -33,10 +33,12 @@
 # Script not yet updated for syslinux-efi
 source=(git://git.kernel.org/pub/scm/boot/syslinux/syslinux.git#tag=$_tag
 syslinux.cfg
-syslinux-install_update)
+syslinux-install_update
+
btrfs-fix.patch::http://repo.or.cz/syslinux.git/patch/548386049cd41e887079cdb904d3954365eb28f3?hp=721a0af2f0ba111c31685c5f6c5481eb25346971)
 sha1sums=('SKIP'
   '1145f454bd297d373ad123425f93620c3e92f585'
-  'f702c2ea9f613c8d597ad6759b9470f2103ddc2d')
+  '29d7c28639e57cdaefc8ef2447e8412a7b59709d'
+  'e1b6768e64f1f9448131b30f2b1f3389f36253f1')
 
 _targets='bios efi32'
 case "$CARCH" in
@@ -46,6 +48,8 @@
 prepare() {
   cd syslinux
 
+  patch -p1 < ../btrfs-fix.patch # FS#48214
+
   # do not swallow efi compilation output to make debugging easier
   sed 's|> /dev/null 2>&1||' -i efi/check-gnu-efi.sh
 


[arch-commits] Commit in pacman/trunk (1 file)

2016-02-16 Thread Evangelos Foutras
Date: Wednesday, February 17, 2016 @ 08:00:31
  Author: foutrelis
Revision: 259883

Remove old patch

Deleted:
  pacman/trunk/ensure-matching-database-and-package-version.patch

+
 ensure-matching-database-and-package-version.patch |   60 ---
 1 file changed, 60 deletions(-)

Deleted: ensure-matching-database-and-package-version.patch
===
--- ensure-matching-database-and-package-version.patch  2016-02-17 05:29:13 UTC 
(rev 259882)
+++ ensure-matching-database-and-package-version.patch  2016-02-17 07:00:31 UTC 
(rev 259883)
@@ -1,60 +0,0 @@
-From deac9731884a83ad91eab9f27b288f406f56c87b Mon Sep 17 00:00:00 2001
-From: Levente Polyak 
-Date: Sat, 18 Jul 2015 17:58:23 +0200
-Subject: [PATCH] ensure matching database and package version
-
-While loading each package ensure that the internal version matches the
-expected database version to avoid the possibility to circumvent the
-version check.
-This issue can be used by an attacker to trick the software into
-installing an older version. The behavior can be  exploited by a
-man-in-the-middle attack through specially crafted  database tarball
-containing a higher version, yet actually delivering an  older and
-vulnerable version, which was previously shipped.
-
-Signed-off-by: Levente Polyak 
-Signed-off-by: Remi Gacogne 
-Signed-off-by: Allan McRae 

- lib/libalpm/sync.c | 18 ++
- 1 file changed, 18 insertions(+)
-
-diff --git a/lib/libalpm/sync.c b/lib/libalpm/sync.c
-index 888ae15..e843b07 100644
 a/lib/libalpm/sync.c
-+++ b/lib/libalpm/sync.c
-@@ -1212,6 +1212,7 @@ static int load_packages(alpm_handle_t *handle, 
alpm_list_t **data,
-   EVENT(handle, &event);
- 
-   for(i = handle->trans->add; i; i = i->next, current++) {
-+  int error = 0;
-   alpm_pkg_t *spkg = i->data;
-   char *filepath;
-   int percent = (int)(((double)current_bytes / total_bytes) * 
100);
-@@ -1232,6 +1233,23 @@ static int load_packages(alpm_handle_t *handle, 
alpm_list_t **data,
-   spkg->name);
-   alpm_pkg_t *pkgfile =_alpm_pkg_load_internal(handle, filepath, 
1);
-   if(!pkgfile) {
-+  _alpm_log(handle, ALPM_LOG_DEBUG, "failed to load 
pkgfile internal\n");
-+  error = 1;
-+  } else {
-+  if(strcmp(spkg->name, pkgfile->name) != 0) {
-+  _alpm_log(handle, ALPM_LOG_DEBUG,
-+  "internal package name 
mismatch, expected: '%s', actual: '%s'\n",
-+  spkg->name, pkgfile->name);
-+  error = 1;
-+  }
-+  if(strcmp(spkg->version, pkgfile->version) != 0) {
-+  _alpm_log(handle, ALPM_LOG_DEBUG,
-+  "internal package version 
mismatch, expected: '%s', actual: '%s'\n",
-+  spkg->version, 
pkgfile->version);
-+  error = 1;
-+  }
-+  }
-+  if(error != 0) {
-   errors++;
-   *data = alpm_list_add(*data, strdup(spkg->filename));
-   free(filepath);
--- 
-2.4.6
-


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

2016-02-16 Thread Felix Yan
Date: Wednesday, February 17, 2016 @ 07:09:37
  Author: fyan
Revision: 161942

upgpkg: haskell-semigroups 0.18.1-2

rebuild with unordered-containers-0.2.7.0, cmdargs-0.10.14, 
conduit-extra-1.1.10, vector-th-unbox-0.2.1.4

Modified:
  haskell-semigroups/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-17 06:06:13 UTC (rev 161941)
+++ PKGBUILD2016-02-17 06:09:37 UTC (rev 161942)
@@ -5,7 +5,7 @@
 _hkgname=semigroups
 pkgname=haskell-semigroups
 pkgver=0.18.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Anything that associates"
 url="http://github.com/ekmett/semigroups/";
 license=("custom:BSD3")


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

2016-02-16 Thread Felix Yan
Date: Wednesday, February 17, 2016 @ 07:10:03
  Author: fyan
Revision: 161943

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

Added:
  haskell-semigroups/repos/community-staging-i686/
  haskell-semigroups/repos/community-staging-i686/PKGBUILD
(from rev 161942, haskell-semigroups/trunk/PKGBUILD)
  haskell-semigroups/repos/community-staging-i686/haskell-semigroups.install
(from rev 161942, haskell-semigroups/trunk/haskell-semigroups.install)
  haskell-semigroups/repos/community-staging-x86_64/
  haskell-semigroups/repos/community-staging-x86_64/PKGBUILD
(from rev 161942, haskell-semigroups/trunk/PKGBUILD)
  haskell-semigroups/repos/community-staging-x86_64/haskell-semigroups.install
(from rev 161942, haskell-semigroups/trunk/haskell-semigroups.install)

-+
 community-staging-i686/PKGBUILD |   44 ++
 community-staging-i686/haskell-semigroups.install   |   18 +++
 community-staging-x86_64/PKGBUILD   |   44 ++
 community-staging-x86_64/haskell-semigroups.install |   18 +++
 4 files changed, 124 insertions(+)

Copied: haskell-semigroups/repos/community-staging-i686/PKGBUILD (from rev 
161942, haskell-semigroups/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-02-17 06:10:03 UTC (rev 161943)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=semigroups
+pkgname=haskell-semigroups
+pkgver=0.18.1
+pkgrel=2
+pkgdesc="Anything that associates"
+url="http://github.com/ekmett/semigroups/";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-hashable" "haskell-tagged" "haskell-text"
+ "haskell-unordered-containers")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('ae7607fb2b497a53192c378dc84c00b45610fdc5de0ac8c1ac3234ec7acee807')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-funordered-containers -ftext -ftagged -fdeepseq -fcontainers 
-fbytestring -fhashable -fbinary -ftransformers
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-semigroups/repos/community-staging-i686/haskell-semigroups.install 
(from rev 161942, haskell-semigroups/trunk/haskell-semigroups.install)
===
--- community-staging-i686/haskell-semigroups.install   
(rev 0)
+++ community-staging-i686/haskell-semigroups.install   2016-02-17 06:10:03 UTC 
(rev 161943)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-semigroups
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-semigroups/repos/community-staging-x86_64/PKGBUILD (from rev 
161942, haskell-semigroups/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-02-17 06:10:03 UTC (rev 161943)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=semigroups
+pkgname=haskell-semigroups
+pkgver=0.18.1
+pkgrel=2
+pkgdesc="Anything that associates"
+url="http://github.com/ekmett/semigroups/";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-hashable" "haskell-tagged" "haskell-text"
+ "haskell

[arch-commits] Commit in haskell-unordered-containers/repos (6 files)

2016-02-16 Thread Felix Yan
Date: Wednesday, February 17, 2016 @ 07:06:13
  Author: fyan
Revision: 161941

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

Added:
  haskell-unordered-containers/repos/community-staging-i686/
  haskell-unordered-containers/repos/community-staging-i686/PKGBUILD
(from rev 161940, haskell-unordered-containers/trunk/PKGBUILD)
  
haskell-unordered-containers/repos/community-staging-i686/haskell-unordered-containers.install
(from rev 161940, 
haskell-unordered-containers/trunk/haskell-unordered-containers.install)
  haskell-unordered-containers/repos/community-staging-x86_64/
  haskell-unordered-containers/repos/community-staging-x86_64/PKGBUILD
(from rev 161940, haskell-unordered-containers/trunk/PKGBUILD)
  
haskell-unordered-containers/repos/community-staging-x86_64/haskell-unordered-containers.install
(from rev 161940, 
haskell-unordered-containers/trunk/haskell-unordered-containers.install)

---+
 community-staging-i686/PKGBUILD   |   46 ++
 community-staging-i686/haskell-unordered-containers.install   |   18 +++
 community-staging-x86_64/PKGBUILD |   46 ++
 community-staging-x86_64/haskell-unordered-containers.install |   18 +++
 4 files changed, 128 insertions(+)

Copied: haskell-unordered-containers/repos/community-staging-i686/PKGBUILD 
(from rev 161940, haskell-unordered-containers/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-02-17 06:06:13 UTC (rev 161941)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Nagy 
+# Contributor: Daniel Micay 
+# Contributor: Martin Harvan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=unordered-containers
+pkgname=haskell-unordered-containers
+pkgver=0.2.7.0
+pkgrel=1
+pkgdesc="Efficient hashing-based container types"
+url="https://github.com/tibbe/unordered-containers";
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-hashable")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+install="${pkgname}.install"
+sha256sums=('6503226d24069698bbb454c15c53a7f9f245aba228e142c6b6ab2d31cecc5ef6')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-debug
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-unordered-containers/repos/community-staging-i686/haskell-unordered-containers.install
 (from rev 161940, 
haskell-unordered-containers/trunk/haskell-unordered-containers.install)
===
--- community-staging-i686/haskell-unordered-containers.install 
(rev 0)
+++ community-staging-i686/haskell-unordered-containers.install 2016-02-17 
06:06:13 UTC (rev 161941)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-unordered-containers
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-unordered-containers/repos/community-staging-x86_64/PKGBUILD 
(from rev 161940, haskell-unordered-containers/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-02-17 06:06:13 UTC (rev 161941)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Daniel Nagy 
+# Contributor: Daniel Micay 
+# Contributor: Martin Harvan 
+# Con

[arch-commits] Commit in haskell-unordered-containers/trunk (PKGBUILD)

2016-02-16 Thread Felix Yan
Date: Wednesday, February 17, 2016 @ 07:05:46
  Author: fyan
Revision: 161940

upgpkg: haskell-unordered-containers 0.2.7.0-1

Modified:
  haskell-unordered-containers/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-17 06:01:05 UTC (rev 161939)
+++ PKGBUILD2016-02-17 06:05:46 UTC (rev 161940)
@@ -7,8 +7,8 @@
 
 _hkgname=unordered-containers
 pkgname=haskell-unordered-containers
-pkgver=0.2.6.0
-pkgrel=2
+pkgver=0.2.7.0
+pkgrel=1
 pkgdesc="Efficient hashing-based container types"
 url="https://github.com/tibbe/unordered-containers";
 license=("custom:BSD3")
@@ -17,7 +17,7 @@
 options=('staticlibs')
 
source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
 install="${pkgname}.install"
-sha256sums=('5f9fbba5f616344bd3b1b633d45f820cf9c840ad101e1110e698abc77d9de3f3')
+sha256sums=('6503226d24069698bbb454c15c53a7f9f245aba228e142c6b6ab2d31cecc5ef6')
 
 build() {
 cd "${srcdir}/${_hkgname}-${pkgver}"


[arch-commits] Commit in vapoursynth-plugin-lsmashsource/repos (4 files)

2016-02-16 Thread Evangelos Foutras
Date: Wednesday, February 17, 2016 @ 07:01:05
  Author: foutrelis
Revision: 161939

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

Added:
  vapoursynth-plugin-lsmashsource/repos/community-staging-i686/PKGBUILD
(from rev 161938, vapoursynth-plugin-lsmashsource/trunk/PKGBUILD)
  vapoursynth-plugin-lsmashsource/repos/community-staging-x86_64/PKGBUILD
(from rev 161938, vapoursynth-plugin-lsmashsource/trunk/PKGBUILD)
Deleted:
  vapoursynth-plugin-lsmashsource/repos/community-staging-i686/PKGBUILD
  vapoursynth-plugin-lsmashsource/repos/community-staging-x86_64/PKGBUILD

---+
 /PKGBUILD |   86 
 community-staging-i686/PKGBUILD   |   40 
 community-staging-x86_64/PKGBUILD |   40 
 3 files changed, 86 insertions(+), 80 deletions(-)

Deleted: community-staging-i686/PKGBUILD
===
--- community-staging-i686/PKGBUILD 2016-02-17 06:00:57 UTC (rev 161938)
+++ community-staging-i686/PKGBUILD 2016-02-17 06:01:05 UTC (rev 161939)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: Gustavo Alvarez 
-
-pkgname=vapoursynth-plugin-lsmashsource
-pkgver=875
-pkgrel=2
-pkgdesc='L-SMASH source plugin for Vapoursynth'
-arch=('i686' 'x86_64')
-url='https://github.com/VFR-maniac/L-SMASH-Works'
-license=('custom')
-depends=('glibc' 'vapoursynth'
- 'libavcodec.so' 'libavformat.so' 'libavutil.so' 'liblsmash.so'
- 'libswscale.so')
-makedepends=('git')
-_commit='14b040efb8bc6630d49230b2a7700de546e3c53a'
-source=("vapoursynth-plugin-lsmashsource::git+https://github.com/VFR-maniac/L-SMASH-Works.git#commit=${_commit}";)
-sha256sums=('SKIP')
-
-build() {
-  cd vapoursynth-plugin-lsmashsource/VapourSynth
-
-  ./configure \
---prefix='/usr'
-  make
-}
-
-package(){
-  cd vapoursynth-plugin-lsmashsource/VapourSynth
-
-  make DESTDIR="${pkgdir}" install
-
-  install -dm 755 "${pkgdir}"/usr/share/doc/vapoursynth/plugins/lsmashsource
-  install -m 644 README 
"${pkgdir}"/usr/share/doc/vapoursynth/plugins/lsmashsource/
-
-  install -dm 755 
"${pkgdir}"/usr/share/licenses/vapoursynth-plugin-lsmashsource
-  install -m 644 LICENSE 
"${pkgdir}"/usr/share/licenses/vapoursynth-plugin-lsmashsource/
-}
-
-# vim: ts=2 sw=2 et:

Copied: vapoursynth-plugin-lsmashsource/repos/community-staging-i686/PKGBUILD 
(from rev 161938, vapoursynth-plugin-lsmashsource/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-02-17 06:01:05 UTC (rev 161939)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Gustavo Alvarez 
+
+pkgname=vapoursynth-plugin-lsmashsource
+pkgver=875
+pkgrel=4
+pkgdesc='L-SMASH source plugin for Vapoursynth'
+arch=('i686' 'x86_64')
+url='https://github.com/VFR-maniac/L-SMASH-Works'
+license=('custom')
+depends=('glibc' 'vapoursynth'
+ 'libavcodec.so' 'libavformat.so' 'libavutil.so' 'liblsmash.so'
+ 'libswscale.so')
+makedepends=('git')
+_commit='14b040efb8bc6630d49230b2a7700de546e3c53a'
+source=("vapoursynth-plugin-lsmashsource::git+https://github.com/VFR-maniac/L-SMASH-Works.git#commit=${_commit}";)
+sha256sums=('SKIP')
+
+build() {
+  cd vapoursynth-plugin-lsmashsource/VapourSynth
+
+  ./configure \
+--prefix='/usr'
+  make
+}
+
+package(){
+  cd vapoursynth-plugin-lsmashsource/VapourSynth
+
+  make DESTDIR="${pkgdir}" install
+
+  # Mark library as executable so sodeps get detected and versioned
+  chmod +x "${pkgdir}"/usr/lib/libvslsmashsource.so.*
+
+  install -dm 755 "${pkgdir}"/usr/share/doc/vapoursynth/plugins/lsmashsource
+  install -m 644 README 
"${pkgdir}"/usr/share/doc/vapoursynth/plugins/lsmashsource/
+
+  install -dm 755 
"${pkgdir}"/usr/share/licenses/vapoursynth-plugin-lsmashsource
+  install -m 644 LICENSE 
"${pkgdir}"/usr/share/licenses/vapoursynth-plugin-lsmashsource/
+}
+
+# vim: ts=2 sw=2 et:

Deleted: community-staging-x86_64/PKGBUILD
===
--- community-staging-x86_64/PKGBUILD   2016-02-17 06:00:57 UTC (rev 161938)
+++ community-staging-x86_64/PKGBUILD   2016-02-17 06:01:05 UTC (rev 161939)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: Gustavo Alvarez 
-
-pkgname=vapoursynth-plugin-lsmashsource
-pkgver=875
-pkgrel=2
-pkgdesc='L-SMASH source plugin for Vapoursynth'
-arch=('i686' 'x86_64')
-url='https://github.com/VFR-maniac/L-SMASH-Works'
-license=('custom')
-depends=('glibc' 'vapoursynth'
- 'libavcodec.so' 'libavformat.so' 'libavutil.so' 'liblsmash.so'
- 'libswscale.so')
-makedepends=('git')
-_commit='14b040efb8bc6630d49230b2a7700de546e3c53a'
-source=("vapoursynth-plugin-lsmashsource::git+https://github.com/VFR-maniac/L-SMASH-Works.git#commit=${_commit}";)
-sha256sums

[arch-commits] Commit in vapoursynth-plugin-lsmashsource/trunk (PKGBUILD)

2016-02-16 Thread Evangelos Foutras
Date: Wednesday, February 17, 2016 @ 07:00:57
  Author: foutrelis
Revision: 161938

ffmpeg 3.0 rebuild: vapoursynth-plugin-lsmashsource 875-4

Modified:
  vapoursynth-plugin-lsmashsource/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-17 05:59:24 UTC (rev 161937)
+++ PKGBUILD2016-02-17 06:00:57 UTC (rev 161938)
@@ -4,7 +4,7 @@
 
 pkgname=vapoursynth-plugin-lsmashsource
 pkgver=875
-pkgrel=3
+pkgrel=4
 pkgdesc='L-SMASH source plugin for Vapoursynth'
 arch=('i686' 'x86_64')
 url='https://github.com/VFR-maniac/L-SMASH-Works'


[arch-commits] Commit in vapoursynth-plugin-lsmashsource/repos (4 files)

2016-02-16 Thread Evangelos Foutras
Date: Wednesday, February 17, 2016 @ 06:59:24
  Author: foutrelis
Revision: 161937

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

Added:
  vapoursynth-plugin-lsmashsource/repos/community-i686/PKGBUILD
(from rev 161936, vapoursynth-plugin-lsmashsource/trunk/PKGBUILD)
  vapoursynth-plugin-lsmashsource/repos/community-x86_64/PKGBUILD
(from rev 161936, vapoursynth-plugin-lsmashsource/trunk/PKGBUILD)
Deleted:
  vapoursynth-plugin-lsmashsource/repos/community-i686/PKGBUILD
  vapoursynth-plugin-lsmashsource/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   86 
 community-i686/PKGBUILD   |   40 
 community-x86_64/PKGBUILD |   40 
 3 files changed, 86 insertions(+), 80 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-17 05:59:13 UTC (rev 161936)
+++ community-i686/PKGBUILD 2016-02-17 05:59:24 UTC (rev 161937)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: Gustavo Alvarez 
-
-pkgname=vapoursynth-plugin-lsmashsource
-pkgver=875
-pkgrel=1
-pkgdesc='L-SMASH source plugin for Vapoursynth'
-arch=('i686' 'x86_64')
-url='https://github.com/VFR-maniac/L-SMASH-Works'
-license=('custom')
-depends=('glibc' 'vapoursynth'
- 'libavcodec.so' 'libavformat.so' 'libavutil.so' 'liblsmash.so'
- 'libswscale.so')
-makedepends=('git')
-_commit='14b040efb8bc6630d49230b2a7700de546e3c53a'
-source=("vapoursynth-plugin-lsmashsource::git+https://github.com/VFR-maniac/L-SMASH-Works.git#commit=${_commit}";)
-sha256sums=('SKIP')
-
-build() {
-  cd vapoursynth-plugin-lsmashsource/VapourSynth
-
-  ./configure \
---prefix='/usr'
-  make
-}
-
-package(){
-  cd vapoursynth-plugin-lsmashsource/VapourSynth
-
-  make DESTDIR="${pkgdir}" install
-
-  install -dm 755 "${pkgdir}"/usr/share/doc/vapoursynth/plugins/lsmashsource
-  install -m 644 README 
"${pkgdir}"/usr/share/doc/vapoursynth/plugins/lsmashsource/
-
-  install -dm 755 
"${pkgdir}"/usr/share/licenses/vapoursynth-plugin-lsmashsource
-  install -m 644 LICENSE 
"${pkgdir}"/usr/share/licenses/vapoursynth-plugin-lsmashsource/
-}
-
-# vim: ts=2 sw=2 et:

Copied: vapoursynth-plugin-lsmashsource/repos/community-i686/PKGBUILD (from rev 
161936, vapoursynth-plugin-lsmashsource/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-17 05:59:24 UTC (rev 161937)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Gustavo Alvarez 
+
+pkgname=vapoursynth-plugin-lsmashsource
+pkgver=875
+pkgrel=3
+pkgdesc='L-SMASH source plugin for Vapoursynth'
+arch=('i686' 'x86_64')
+url='https://github.com/VFR-maniac/L-SMASH-Works'
+license=('custom')
+depends=('glibc' 'vapoursynth'
+ 'libavcodec.so' 'libavformat.so' 'libavutil.so' 'liblsmash.so'
+ 'libswscale.so')
+makedepends=('git')
+_commit='14b040efb8bc6630d49230b2a7700de546e3c53a'
+source=("vapoursynth-plugin-lsmashsource::git+https://github.com/VFR-maniac/L-SMASH-Works.git#commit=${_commit}";)
+sha256sums=('SKIP')
+
+build() {
+  cd vapoursynth-plugin-lsmashsource/VapourSynth
+
+  ./configure \
+--prefix='/usr'
+  make
+}
+
+package(){
+  cd vapoursynth-plugin-lsmashsource/VapourSynth
+
+  make DESTDIR="${pkgdir}" install
+
+  # Mark library as executable so sodeps get detected and versioned
+  chmod +x "${pkgdir}"/usr/lib/libvslsmashsource.so.*
+
+  install -dm 755 "${pkgdir}"/usr/share/doc/vapoursynth/plugins/lsmashsource
+  install -m 644 README 
"${pkgdir}"/usr/share/doc/vapoursynth/plugins/lsmashsource/
+
+  install -dm 755 
"${pkgdir}"/usr/share/licenses/vapoursynth-plugin-lsmashsource
+  install -m 644 LICENSE 
"${pkgdir}"/usr/share/licenses/vapoursynth-plugin-lsmashsource/
+}
+
+# vim: ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-02-17 05:59:13 UTC (rev 161936)
+++ community-x86_64/PKGBUILD   2016-02-17 05:59:24 UTC (rev 161937)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: Gustavo Alvarez 
-
-pkgname=vapoursynth-plugin-lsmashsource
-pkgver=875
-pkgrel=1
-pkgdesc='L-SMASH source plugin for Vapoursynth'
-arch=('i686' 'x86_64')
-url='https://github.com/VFR-maniac/L-SMASH-Works'
-license=('custom')
-depends=('glibc' 'vapoursynth'
- 'libavcodec.so' 'libavformat.so' 'libavutil.so' 'liblsmash.so'
- 'libswscale.so')
-makedepends=('git')
-_commit='14b040efb8bc6630d49230b2a7700de546e3c53a'
-source=("vapoursynth-plugin-lsmashsource::git+https://github.com/VFR-maniac/L-SMASH-Works.git#commit=${_commit}";)
-sha256sums=('SKIP')
-
-build() {
-  cd vapoursynth-plugin-lsmashsource/VapourSynth
-
-  ./configure \
---prefix='/usr'
-  make
-}
-
-package()

[arch-commits] Commit in vapoursynth-plugin-lsmashsource/trunk (PKGBUILD)

2016-02-16 Thread Evangelos Foutras
Date: Wednesday, February 17, 2016 @ 06:59:13
  Author: foutrelis
Revision: 161936

upgpkg: vapoursynth-plugin-lsmashsource 875-3

Mark library as executable so sodeps get detected and versioned.

Modified:
  vapoursynth-plugin-lsmashsource/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-17 02:49:34 UTC (rev 161935)
+++ PKGBUILD2016-02-17 05:59:13 UTC (rev 161936)
@@ -4,7 +4,7 @@
 
 pkgname=vapoursynth-plugin-lsmashsource
 pkgver=875
-pkgrel=2
+pkgrel=3
 pkgdesc='L-SMASH source plugin for Vapoursynth'
 arch=('i686' 'x86_64')
 url='https://github.com/VFR-maniac/L-SMASH-Works'
@@ -30,6 +30,9 @@
 
   make DESTDIR="${pkgdir}" install
 
+  # Mark library as executable so sodeps get detected and versioned
+  chmod +x "${pkgdir}"/usr/lib/libvslsmashsource.so.*
+
   install -dm 755 "${pkgdir}"/usr/share/doc/vapoursynth/plugins/lsmashsource
   install -m 644 README 
"${pkgdir}"/usr/share/doc/vapoursynth/plugins/lsmashsource/
 


[arch-commits] Commit in cantarell-fonts/repos/extra-any (4 files)

2016-02-16 Thread Jan Steffens
Date: Wednesday, February 17, 2016 @ 06:17:02
  Author: heftig
Revision: 259881

archrelease: copy trunk to extra-any

Added:
  cantarell-fonts/repos/extra-any/PKGBUILD
(from rev 259880, cantarell-fonts/trunk/PKGBUILD)
  cantarell-fonts/repos/extra-any/cantarell-fonts.install
(from rev 259880, cantarell-fonts/trunk/cantarell-fonts.install)
Deleted:
  cantarell-fonts/repos/extra-any/PKGBUILD
  cantarell-fonts/repos/extra-any/cantarell-fonts.install

-+
 PKGBUILD|   55 +++---
 cantarell-fonts.install |   22 +-
 2 files changed, 39 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-02-17 05:14:59 UTC (rev 259880)
+++ PKGBUILD2016-02-17 05:17:02 UTC (rev 259881)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=cantarell-fonts
-pkgver=0.00022
-pkgrel=1
-pkgdesc="Cantarell font family"
-arch=('any')
-url="https://git.gnome.org/browse/cantarell-fonts";
-license=('GPL2')
-depends=('fontconfig')
-install=cantarell-fonts.install
-source=(https://download.gnome.org/sources/$pkgname/${pkgver}/$pkgname-${pkgver}.tar.xz)
-sha256sums=('83ecaecb137e13164d815a5b978bb2512abcdffb1749670fce5a87087c50c854')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --with-configdir=/etc/fonts/conf.avail
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: cantarell-fonts/repos/extra-any/PKGBUILD (from rev 259880, 
cantarell-fonts/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-02-17 05:17:02 UTC (rev 259881)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=cantarell-fonts
+pkgver=0.0.22
+pkgrel=1
+epoch=1
+pkgdesc="Cantarell font family"
+arch=('any')
+url="https://git.gnome.org/browse/cantarell-fonts";
+license=('GPL2')
+depends=('fontconfig')
+install=cantarell-fonts.install
+source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:3}/$pkgname-${pkgver}.tar.xz)
+sha256sums=('6dacb87e5a4e20837741aca07a202c0872065c4df8735a6f016b516a09b41e82')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --with-configdir=/etc/fonts/conf.avail
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: cantarell-fonts.install
===
--- cantarell-fonts.install 2016-02-17 05:14:59 UTC (rev 259880)
+++ cantarell-fonts.install 2016-02-17 05:17:02 UTC (rev 259881)
@@ -1,11 +0,0 @@
-post_install() {
-  fc-cache -s
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}

Copied: cantarell-fonts/repos/extra-any/cantarell-fonts.install (from rev 
259880, cantarell-fonts/trunk/cantarell-fonts.install)
===
--- cantarell-fonts.install (rev 0)
+++ cantarell-fonts.install 2016-02-17 05:17:02 UTC (rev 259881)
@@ -0,0 +1,11 @@
+post_install() {
+  fc-cache -s
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}


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

2016-02-16 Thread Jan Steffens
Date: Wednesday, February 17, 2016 @ 06:14:59
  Author: heftig
Revision: 259880

0.0.22

Modified:
  cantarell-fonts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-17 05:14:15 UTC (rev 259879)
+++ PKGBUILD2016-02-17 05:14:59 UTC (rev 259880)
@@ -2,8 +2,9 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=cantarell-fonts
-pkgver=0.00022
+pkgver=0.0.22
 pkgrel=1
+epoch=1
 pkgdesc="Cantarell font family"
 arch=('any')
 url="https://git.gnome.org/browse/cantarell-fonts";
@@ -10,8 +11,8 @@
 license=('GPL2')
 depends=('fontconfig')
 install=cantarell-fonts.install
-source=(https://download.gnome.org/sources/$pkgname/${pkgver}/$pkgname-${pkgver}.tar.xz)
-sha256sums=('83ecaecb137e13164d815a5b978bb2512abcdffb1749670fce5a87087c50c854')
+source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:3}/$pkgname-${pkgver}.tar.xz)
+sha256sums=('6dacb87e5a4e20837741aca07a202c0872065c4df8735a6f016b516a09b41e82')
 
 build() {
   cd $pkgname-$pkgver


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

2016-02-16 Thread Evangelos Foutras
Date: Wednesday, February 17, 2016 @ 06:13:58
  Author: foutrelis
Revision: 259878

upgpkg: thunderbird 38.6.0-1

New upstream release.

Modified:
  thunderbird/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-17 04:53:24 UTC (rev 259877)
+++ PKGBUILD2016-02-17 05:13:58 UTC (rev 259878)
@@ -5,7 +5,7 @@
 # Contributor: Anders Bostrom 
 
 pkgname=thunderbird
-pkgver=38.5.1
+pkgver=38.6.0
 pkgrel=1
 pkgdesc="Standalone Mail/News reader"
 arch=('i686' 'x86_64')
@@ -23,7 +23,7 @@
 thunderbird-install-dir.patch
 vendor.js)
 options=('!emptydirs' '!makeflags')
-sha256sums=('509c26816960c1f33cc893a960c816b6dcd834f0b4d256b0cf83010053c141e8'
+sha256sums=('0417711325a4ba6fa61882bfcd9a7ce325fa0b903474e087f16e13a70be15a6b'
 '6d60c77705baae25dc9324765c420e8623173390e8d2abea66f3d0d30ce388e4'
 '3fba13d88aeb003ab0811ef739463858172ce0662a1c7d62835df3d83ddbb8fb'
 '24599eab8862476744fe1619a9a53a5b8cdcab30b3fc5767512f31d3529bd05d'


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

2016-02-16 Thread Evangelos Foutras
Date: Wednesday, February 17, 2016 @ 06:14:15
  Author: foutrelis
Revision: 259879

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

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

+
 /PKGBUILD  |  152 +++
 /mozconfig |   86 ++
 /thunderbird-install-dir.patch |   24 +
 /thunderbird.desktop   |  346 +++
 /thunderbird.install   |   24 +
 /vendor.js |   18 +
 extra-i686/PKGBUILD|   76 -
 extra-i686/mozconfig   |   43 ---
 extra-i686/thunderbird-install-dir.patch   |   12 
 extra-i686/thunderbird.desktop |  173 -
 extra-i686/thunderbird.install |   12 
 extra-i686/vendor.js   |9 
 extra-x86_64/PKGBUILD  |   76 -
 extra-x86_64/mozconfig |   43 ---
 extra-x86_64/thunderbird-install-dir.patch |   12 
 extra-x86_64/thunderbird.desktop   |  173 -
 extra-x86_64/thunderbird.install   |   12 
 extra-x86_64/vendor.js |9 
 18 files changed, 650 insertions(+), 650 deletions(-)

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


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

2016-02-16 Thread Evangelos Foutras
Date: Wednesday, February 17, 2016 @ 05:53:17
  Author: foutrelis
Revision: 259876

archrelease: copy trunk to extra-any

Added:
  thunderbird-i18n/repos/extra-any/PKGBUILD
(from rev 259875, thunderbird-i18n/trunk/PKGBUILD)
Deleted:
  thunderbird-i18n/repos/extra-any/PKGBUILD

--+
 PKGBUILD |  314 ++---
 1 file changed, 157 insertions(+), 157 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-02-17 04:53:02 UTC (rev 259875)
+++ PKGBUILD2016-02-17 04:53:17 UTC (rev 259876)
@@ -1,157 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Andrea Scarpino 
-# Contributor: Thomas Baechler 
-
-pkgbase=thunderbird-i18n
-pkgver=38.5.0
-pkgrel=1
-pkgdesc="Language pack for Thunderbird"
-arch=('any')
-url="http://www.mozilla.com/";
-license=('MPL' 'GPL')
-depends=("thunderbird>=$pkgver")
-
-_languages=(
-  'ar "Arabic"'
-  'ast"Asturian"'
-  'be "Belarusian"'
-  'bg "Bulgarian"'
-  'bn-BD  "Bengali (Bangladesh)"'
-  'br "Breton"'
-  'ca "Catalan"'
-  'cs "Czech"'
-  'cy "Welsh"'
-  'da "Danish"'
-  'de "German"'
-  'dsb"Lower Sorbian"'
-  'el "Greek"'
-  'en-GB  "English (British)"'
-  'en-US  "English (US)"'
-  'es-AR  "Spanish (Argentina)"'
-  'es-ES  "Spanish (Spain)"'
-  'et "Estonian"'
-  'eu "Basque"'
-  'fi "Finnish"'
-  'fr "French"'
-  'fy-NL  "Frisian"'
-  'ga-IE  "Irish"'
-  'gd "Gaelic (Scotland)"'
-  'gl "Galician"'
-  'he "Hebrew"'
-  'hr "Croatian"'
-  'hsb"Upper Sorbian"'
-  'hu "Hungarian"'
-  'hy-AM  "Armenian"'
-  'id "Indonesian"'
-  'is "Icelandic"'
-  'it "Italian"'
-  'ja "Japanese"'
-  'ko "Korean"'
-  'lt "Lithuanian"'
-  'nb-NO  "Norwegian (Bokmål)"'
-  'nl "Dutch"'
-  'nn-NO  "Norwegian (Nynorsk)"'
-  'pa-IN  "Punjabi (India)"'
-  'pl "Polish"'
-  'pt-BR  "Portuguese (Brazilian)"'
-  'pt-PT  "Portuguese (Portugal)"'
-  'rm "Romansh"'
-  'ro "Romanian"'
-  'ru "Russian"'
-  'si "Sinhala"'
-  'sk "Slovak"'
-  'sl "Slovenian"'
-  'sq "Albanian"'
-  'sr "Serbian"'
-  'sv-SE  "Swedish"'
-  'ta-LK  "Tamil (Sri Lanka)"'
-  'tr "Turkish"'
-  'uk "Ukrainian"'
-  'vi "Vietnamese"'
-  'zh-CN  "Chinese (Simplified)"'
-  'zh-TW  "Chinese (Traditional)"'
-)
-
-pkgname=()
-source=()
-_url=http://download.cdn.mozilla.net/pub/thunderbird/releases/$pkgver/linux-i686/xpi
-
-for _lang in "${_languages[@]}"; do
-  _locale=${_lang%% *}
-  _pkgname=thunderbird-i18n-${_locale,,}
-
-  pkgname+=($_pkgname)
-  source+=("thunderbird-i18n-$pkgver-$_locale.xpi::$_url/$_locale.xpi")
-  eval "package_$_pkgname() {
-_package $_lang
-  }"
-done
-
-# Don't extract anything
-noextract=(${source[@]%%::*})
-
-_package() {
-  pkgdesc="$2 language pack for Thunderbird"
-  install -Dm644 thunderbird-i18n-$pkgver-$1.xpi \
-
"$pkgdir/usr/lib/thunderbird/extensions/langpack-$1...@thunderbird.mozilla.org.xpi"
-}
-
-md5sums=('70fb915f31e9d96557b51e661893a20d'
- '997192514f361f4e787a15de01783ab9'
- '62ec7e1fdd03d174e455ba9714914013'
- 'e5dd6b6217947999a5ad1dc4fd760462'
- 'd79b2b1d4458517e0742900dd2a6058c'
- '32e9eced68e021f3416eabb8916986e5'
- '21bf014d5c4d689af9e4cb7dc17dcc52'
- '631a85b5d454f8c4c553ac259f895951'
- '8758668f540a78ba500f977f6e932568'
- 'cc6c8cb2d6d6a897411922e01d423a13'
- 'e36b2673996247c1570c21592b1d2de9'
- '1d0e6f47c5accb3c07328041395c4b44'
- 'cf6d030a87538194f70039f0145c862f'
- '79517034cef77103bf48970e18c9b7da'
- 'c4bdaabdcfdbea73de8dbd1e526f7606'
- '974a824746a63ab5679ed4725ca5b6d2'
- 'bb649b9ed1af1f104ab342aee562110a'
- 'f895b1c8ceb7a788219e6e6df7cbe398'
- 'c6baecbdf7f416932c5c108b5bbabfac'
- '580f110e7ec107ce67ef5d7ccdb9698e'
- '3bb8c389bbd7f1dbc8697d1c591bd9a9'
- 'ff0437703db0408dba14005e4951b65e'
- '3e3b49e40cd2209a64bb56ebf7a6cde0'
- 'c503c8e1d140d007d32a052c04ed657a'
- '8c5d18adc5fb4c24bcd8e88fe9611be2'
- '14b5ea99dab49962f9611a9ddec374a6'
- 'be7ce76e74987c914262115893b68aa8'
- '9f0fd50444610152369fd6cd50942f6c'
- '9028ee2f377e153b5ae26b4ff07f41b7'
- 'c98546e992365e3727102f49bc032831'
- 'f0e22e274ee9c1f82f367d70440b9a3b'
- 'c329ac2f367f80ee71ef7c12ff05db3f'
- 'd3a43f8f5aa5858f9cac69d802884087'
- '6e56c014239218019eb97aae29504cbb'
- 'a3745e118882d0e13f0baa566ebaf0c6'
- '7a896f79a235a1ee01221e3bce8e3400'
- '33449f66dbf48f3ed9072430e91b2480'
- 'd5ed4ff13ceb564ff36954b670275f4a'
- 'd7e113922a500367fad7e5d801a8b256'
- 'a1d8c30ca1c80a543f3f40d7c72cf2d6'
- '6ee9e518918cafb2293e2cee06e196eb'
- 'e7d427a6e2bb70fc39623090984e2f8e'
- '4d7b475afeb7a3a1603d44082ac2538b'
-   

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

2016-02-16 Thread Allan McRae
Date: Wednesday, February 17, 2016 @ 05:53:24
  Author: allan
Revision: 259877

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

Added:
  glibc/repos/testing-i686/
  glibc/repos/testing-i686/PKGBUILD
(from rev 259874, glibc/trunk/PKGBUILD)
  glibc/repos/testing-i686/glibc-2.22-CVE-2015-7547.patch
(from rev 259874, glibc/trunk/glibc-2.22-CVE-2015-7547.patch)
  glibc/repos/testing-i686/glibc-2.22-roundup.patch
(from rev 259874, glibc/trunk/glibc-2.22-roundup.patch)
  glibc/repos/testing-i686/glibc.install
(from rev 259874, glibc/trunk/glibc.install)
  glibc/repos/testing-i686/locale-gen
(from rev 259874, glibc/trunk/locale-gen)
  glibc/repos/testing-i686/locale.gen.txt
(from rev 259874, glibc/trunk/locale.gen.txt)
  glibc/repos/testing-x86_64/
  glibc/repos/testing-x86_64/PKGBUILD
(from rev 259874, glibc/trunk/PKGBUILD)
  glibc/repos/testing-x86_64/glibc-2.22-CVE-2015-7547.patch
(from rev 259874, glibc/trunk/glibc-2.22-CVE-2015-7547.patch)
  glibc/repos/testing-x86_64/glibc-2.22-roundup.patch
(from rev 259874, glibc/trunk/glibc-2.22-roundup.patch)
  glibc/repos/testing-x86_64/glibc.install
(from rev 259874, glibc/trunk/glibc.install)
  glibc/repos/testing-x86_64/locale-gen
(from rev 259874, glibc/trunk/locale-gen)
  glibc/repos/testing-x86_64/locale.gen.txt
(from rev 259874, glibc/trunk/locale.gen.txt)

---+
 testing-i686/PKGBUILD |  162 +
 testing-i686/glibc-2.22-CVE-2015-7547.patch   |  572 
 testing-i686/glibc-2.22-roundup.patch | 2747 
 testing-i686/glibc.install|   22 
 testing-i686/locale-gen   |   42 
 testing-i686/locale.gen.txt   |   23 
 testing-x86_64/PKGBUILD   |  162 +
 testing-x86_64/glibc-2.22-CVE-2015-7547.patch |  572 
 testing-x86_64/glibc-2.22-roundup.patch   | 2747 
 testing-x86_64/glibc.install  |   22 
 testing-x86_64/locale-gen |   42 
 testing-x86_64/locale.gen.txt |   23 
 12 files changed, 7136 insertions(+)

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


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

2016-02-16 Thread Evangelos Foutras
Date: Wednesday, February 17, 2016 @ 05:53:02
  Author: foutrelis
Revision: 259875

upgpkg: thunderbird-i18n 38.6.0-1

New upstream release.

Modified:
  thunderbird-i18n/trunk/PKGBUILD

--+
 PKGBUILD |  120 ++---
 1 file changed, 60 insertions(+), 60 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-02-17 04:51:29 UTC (rev 259874)
+++ PKGBUILD2016-02-17 04:53:02 UTC (rev 259875)
@@ -4,7 +4,7 @@
 # Contributor: Thomas Baechler 
 
 pkgbase=thunderbird-i18n
-pkgver=38.5.0
+pkgver=38.6.0
 pkgrel=1
 pkgdesc="Language pack for Thunderbird"
 arch=('any')
@@ -75,7 +75,7 @@
 
 pkgname=()
 source=()
-_url=http://download.cdn.mozilla.net/pub/thunderbird/releases/$pkgver/linux-i686/xpi
+_url=https://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/$pkgver/linux-i686/xpi
 
 for _lang in "${_languages[@]}"; do
   _locale=${_lang%% *}
@@ -97,61 +97,61 @@
 
"$pkgdir/usr/lib/thunderbird/extensions/langpack-$1...@thunderbird.mozilla.org.xpi"
 }
 
-md5sums=('70fb915f31e9d96557b51e661893a20d'
- '997192514f361f4e787a15de01783ab9'
- '62ec7e1fdd03d174e455ba9714914013'
- 'e5dd6b6217947999a5ad1dc4fd760462'
- 'd79b2b1d4458517e0742900dd2a6058c'
- '32e9eced68e021f3416eabb8916986e5'
- '21bf014d5c4d689af9e4cb7dc17dcc52'
- '631a85b5d454f8c4c553ac259f895951'
- '8758668f540a78ba500f977f6e932568'
- 'cc6c8cb2d6d6a897411922e01d423a13'
- 'e36b2673996247c1570c21592b1d2de9'
- '1d0e6f47c5accb3c07328041395c4b44'
- 'cf6d030a87538194f70039f0145c862f'
- '79517034cef77103bf48970e18c9b7da'
- 'c4bdaabdcfdbea73de8dbd1e526f7606'
- '974a824746a63ab5679ed4725ca5b6d2'
- 'bb649b9ed1af1f104ab342aee562110a'
- 'f895b1c8ceb7a788219e6e6df7cbe398'
- 'c6baecbdf7f416932c5c108b5bbabfac'
- '580f110e7ec107ce67ef5d7ccdb9698e'
- '3bb8c389bbd7f1dbc8697d1c591bd9a9'
- 'ff0437703db0408dba14005e4951b65e'
- '3e3b49e40cd2209a64bb56ebf7a6cde0'
- 'c503c8e1d140d007d32a052c04ed657a'
- '8c5d18adc5fb4c24bcd8e88fe9611be2'
- '14b5ea99dab49962f9611a9ddec374a6'
- 'be7ce76e74987c914262115893b68aa8'
- '9f0fd50444610152369fd6cd50942f6c'
- '9028ee2f377e153b5ae26b4ff07f41b7'
- 'c98546e992365e3727102f49bc032831'
- 'f0e22e274ee9c1f82f367d70440b9a3b'
- 'c329ac2f367f80ee71ef7c12ff05db3f'
- 'd3a43f8f5aa5858f9cac69d802884087'
- '6e56c014239218019eb97aae29504cbb'
- 'a3745e118882d0e13f0baa566ebaf0c6'
- '7a896f79a235a1ee01221e3bce8e3400'
- '33449f66dbf48f3ed9072430e91b2480'
- 'd5ed4ff13ceb564ff36954b670275f4a'
- 'd7e113922a500367fad7e5d801a8b256'
- 'a1d8c30ca1c80a543f3f40d7c72cf2d6'
- '6ee9e518918cafb2293e2cee06e196eb'
- 'e7d427a6e2bb70fc39623090984e2f8e'
- '4d7b475afeb7a3a1603d44082ac2538b'
- '4dbfb3c01f16234a551a8b0092d192fa'
- '8344678b5ab8cb0e90ff859b76f5df7d'
- 'd38f6ac503e56426d6d716c81fb26692'
- '849ddb353c4f5d4eac5475188802eb60'
- '4b04df9753b0e0dcc0e2ed1aa94b0735'
- '28e0957085b52bee3aa11e46b0f93f0e'
- 'fd86cc063e6eda802968181048a131cf'
- 'adcd548d1adae69b42c4a26bf6f80baa'
- 'd5d30fb05007b4936d0a2b01396bdd59'
- '67804f11cf515ba3943c1019daf0e776'
- '8d47982cf7e1130055bc1f8139879482'
- 'e7713e79a7c28d7a03bf418d09341ae4'
- 'be86e551496c12250f85ed5d0ed051df'
- '5f26cb4679bc4ec162e7be84630347b8'
- '65b1c36008e6606d519c1e26eacefb55')
+md5sums=('0f2d8a6d362dd3d79aaf959f54a70f34'
+ 'e9f0aa8cd9412683ccc7b5923ce16313'
+ 'f085786b99bcccfde8fc127ea0b1ab14'
+ '93548b6b897cdb160d8c58a8bce6f784'
+ 'd14cf5cdbd4c1b93e40f85f5c6f266c5'
+ 'fe68a1ff41ad04d18af4d54c0fc41e68'
+ '536d89746d1f97347391a6cac18d3c0f'
+ '61c8738376dcd50926a44d757cc46059'
+ '4559428c3a875d065a123b1735c52864'
+ '15cd3e05daf04041c418ec03f28f1d02'
+ 'd520246903627dd7de79f2e54d72ea36'
+ 'ea45c9a13737a8bc20be41dd5099cfd9'
+ '084a86e305b2bcc3bb458956acb31c34'
+ '1220599b40ca082ce711271c73afe09c'
+ 'c5f501d07637135f4cd65365d73cb9b4'
+ 'a7cc85e75717deacab7607a17c6f942e'
+ '251eb6c6be4719c5a52fdffbdce1cd71'
+ '3bced65c293f0cdcb492aaf688f3d1b8'
+ 'd2ceb31e28845c76a1a9280bfebf5cc3'
+ '9cfbf064d6d2a5ddf1c93194ecaa0e77'
+ '4ccb16bbd08ffc3a150211c445f076de'
+ '9b4eaf9f9456d6b216f119714c9db526'
+ '6f7e290c6bf0258b712a9008bfa55b82'
+ 'fbe2fe553edf8c3dceae0aba1c457bd8'
+ 'd2a2be07494c05daf525518eb1cc40bd'
+ '7acebea84761fa9887446db8a51edc83'
+ 'aaa36a7e3a36b1e600ce8cef5d056ca0'
+ 'dead556e81962b36aa69d6e079956cb3'
+ '45d8659ad12b9437a509d

[arch-commits] Commit in glibc/trunk (PKGBUILD glibc-2.22-roundup.patch)

2016-02-16 Thread Allan McRae
Date: Wednesday, February 17, 2016 @ 05:51:29
  Author: allan
Revision: 259874

upgpkg: glibc 2.22-4

fix CVE-2015-7547 CVE-2015-8776 CVE-2015-8777 CVE-2015-8778 CVE-2015-8779

Modified:
  glibc/trunk/PKGBUILD
  glibc/trunk/glibc-2.22-roundup.patch

--+
 PKGBUILD |4 -
 glibc-2.22-roundup.patch |  158 +
 2 files changed, 7 insertions(+), 155 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-02-17 00:57:50 UTC (rev 259873)
+++ PKGBUILD2016-02-17 04:51:29 UTC (rev 259874)
@@ -28,7 +28,7 @@
 locale-gen)
 md5sums=('e51e02bf552a0a1fbbdc948fb2f5e83c'
  'SKIP'
- '176ca8230b2c1d2e9a904c3527ebed24'
+ 'd4b9754a2d5e8f113d47c67386f75e7b'
  'db053da46e40f25a0fc988936725080b'
  '07ac979b6ab5eeb778d55f041529d623'
  '476e9113489f93b348b21e144b6a8fcf')
@@ -38,6 +38,8 @@
   cd ${srcdir}/glibc-${pkgver}
 
   # glibc-2.22..287de30e
+  # 060f8dbd (and 13ff0739) is reverted as it breaks the testsuite on x86_64
+  # TODO: figure out why...
   patch -p1 -i $srcdir/glibc-2.22-roundup.patch
 
   # CVE-2015-7547 - patch from upstream

Modified: glibc-2.22-roundup.patch
===
--- glibc-2.22-roundup.patch2016-02-17 00:57:50 UTC (rev 259873)
+++ glibc-2.22-roundup.patch2016-02-17 04:51:29 UTC (rev 259874)
@@ -1,8 +1,8 @@
 diff --git a/ChangeLog b/ChangeLog
-index cb9124e..58df7c8 100644
+index cb9124e..376355f 100644
 --- a/ChangeLog
 +++ b/ChangeLog
-@@ -1,3 +1,317 @@
+@@ -1,3 +1,300 @@
 +2016-02-12  Florian Weimer  
 +
 +  * misc/bug18240.c (do_test): Set RLIMIT_AS.
@@ -80,23 +80,6 @@
 +  (__lll_lock_elision): Likewise, and respect a value of
 +  try_tbegin <= 0.
 +
-+2015-12-03  Andrew Senkevich  
-+
-+  * math/Makefile ($(inst_libdir)/libm.so): Corrected path to
-+  libmvec_nonshared.a
-+
-+2015-11-27  Andrew Senkevich  
-+
-+  [BZ #19058]
-+  * math/Makefile ($(inst_libdir)/libm.so): Added libmvec_nonshared.a to
-+  AS_NEEDED.
-+  * sysdeps/x86/fpu/bits/math-vector.h: Removed code with asm aliases
-+  workaround.
-+  * sysdeps/x86_64/fpu/Makefile (libmvec-support,
-+  libmvec-static-only-routines): Added new file.
-+  * sysdeps/x86_64/fpu/svml_finite_alias.S: New file.
-+  * NEWS: Mention this fix.
-+
 +2015-11-20  Roland McGrath  
 +
 +  * sysdeps/nacl/dl-map-segments.h (_dl_map_segments): Use
@@ -321,7 +304,7 @@
  
* version.h (RELEASE): Set to "stable".
 diff --git a/NEWS b/NEWS
-index 4c31de7..d1daf9b 100644
+index 4c31de7..7c4fbc6 100644
 --- a/NEWS
 +++ b/NEWS
 @@ -5,6 +5,16 @@ See the end for copying conditions.
@@ -333,7 +316,7 @@
 +* The following bugs are resolved with this release:
 +
 +  17905, 18420, 18421, 18480, 18589, 18743, 18778, 18781, 18787, 18796,
-+  18870, 18887, 18921, 18928, 18969, 18985, 19018, 19058, 19174, 19178.
++  18870, 18887, 18921, 18928, 18969, 18985, 19018, 19174, 19178.
 +
 +* The LD_POINTER_GUARD environment variable can no longer be used to
 +  disable the pointer guard feature.  It is always enabled.
@@ -1266,19 +1249,6 @@
write_locale_data (output_path, LC_COLLATE, "LC_COLLATE", &file);
  
obstack_free (&weightpool, NULL);
-diff --git a/math/Makefile b/math/Makefile
-index 6388bae..2c9d72d 100644
 a/math/Makefile
-+++ b/math/Makefile
-@@ -98,7 +98,7 @@ $(inst_libdir)/libm.so: $(common-objpfx)format.lds \
-   (echo '/* GNU ld script'; echo '*/';\
-cat $<; \
-echo 'GROUP ( $(slibdir)/libm.so$(libm.so-version) ' \
--'AS_NEEDED ( $(slibdir)/libmvec.so$(libmvec.so-version) ) )' \
-+'AS_NEEDED ( $(libdir)/libmvec_nonshared.a 
$(slibdir)/libmvec.so$(libmvec.so-version) ) )' \
-   ) > $@
- endif
- 
 diff --git a/misc/Makefile b/misc/Makefile
 index aecb0da..12055ce 100644
 --- a/misc/Makefile
@@ -2645,126 +2615,6 @@
  use_lock:
return LLL_LOCK ((*lock), pshared);
  }
-diff --git a/sysdeps/x86/fpu/bits/math-vector.h 
b/sysdeps/x86/fpu/bits/math-vector.h
-index f9e798b..f3bfb86 100644
 a/sysdeps/x86/fpu/bits/math-vector.h
-+++ b/sysdeps/x86/fpu/bits/math-vector.h
-@@ -53,34 +53,5 @@
- #  undef __DECL_SIMD_powf
- #  define __DECL_SIMD_powf __DECL_SIMD_x86_64
- 
--/* Workaround to exclude unnecessary symbol aliases in libmvec
--   while GCC creates the vector names based on scalar asm name.
--   Corresponding discussion started at
--   .  */
--__asm__ ("_ZGVbN2v___log_finite = _ZGVbN2v_log");
--__asm__ ("_ZGVcN4v___log_finite = _ZGVcN4v_log");
--__asm__ ("_ZGVdN4v___log_finite = _ZGVdN4v_log");
--__asm__ ("_ZGVeN8v___log_finite = _ZGVeN8v_log");
--__asm__ ("_ZGVbN4v___logf_finite = _ZGVbN4v_logf");
--__asm__ ("_ZGVcN8v___logf_finite = _ZGVcN8v_logf");
--__asm__ ("_ZGVdN8v___logf_finite = _ZGVdN8v_logf");
--__asm__ ("_ZGVeN16v___logf

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

2016-02-16 Thread Balló György
Date: Wednesday, February 17, 2016 @ 03:49:34
  Author: bgyorgy
Revision: 161935

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

Added:
  lxmusic/repos/community-i686/PKGBUILD
(from rev 161934, lxmusic/trunk/PKGBUILD)
  lxmusic/repos/community-i686/gtk3.patch
(from rev 161934, lxmusic/trunk/gtk3.patch)
  lxmusic/repos/community-x86_64/PKGBUILD
(from rev 161934, lxmusic/trunk/PKGBUILD)
  lxmusic/repos/community-x86_64/gtk3.patch
(from rev 161934, lxmusic/trunk/gtk3.patch)
Deleted:
  lxmusic/repos/community-i686/PKGBUILD
  lxmusic/repos/community-x86_64/PKGBUILD

-+
 /PKGBUILD   |  116 +
 community-i686/PKGBUILD |   28 --
 community-i686/gtk3.patch   |  493 ++
 community-x86_64/PKGBUILD   |   28 --
 community-x86_64/gtk3.patch |  493 ++
 5 files changed, 1102 insertions(+), 56 deletions(-)

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


[arch-commits] Commit in lxmusic/trunk (PKGBUILD gtk3.patch)

2016-02-16 Thread Balló György
Date: Wednesday, February 17, 2016 @ 03:49:26
  Author: bgyorgy
Revision: 161934

upgpkg: lxmusic 0.4.6-3

Add GTK+ 3 version

Added:
  lxmusic/trunk/gtk3.patch
Modified:
  lxmusic/trunk/PKGBUILD

+
 PKGBUILD   |   48 -
 gtk3.patch |  493 +++
 2 files changed, 532 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-02-17 02:38:11 UTC (rev 161933)
+++ PKGBUILD2016-02-17 02:49:26 UTC (rev 161934)
@@ -3,26 +3,56 @@
 # Contributor: Bartłomiej Piotrowski 
 # Contributor: Marcus Schulderinsky 
 
-pkgname=lxmusic
+pkgbase=lxmusic
+pkgname=(lxmusic lxmusic-gtk3)
 pkgver=0.4.6
-pkgrel=2
+pkgrel=3
 pkgdesc='Lightweight XMMS2 client'
 arch=('i686' 'x86_64')
 url="http://lxde.org/";
 license=('GPL')
-groups=('lxde')
-depends=('gtk2' 'libnotify' 'xmms2')
+depends=('gtk2' 'gtk3' 'libnotify' 'xmms2')
 makedepends=('intltool')
-source=(http://downloads.sourceforge.net/lxde/$pkgname-$pkgver.tar.xz)
-md5sums=('38fc31793b11c43b6a8fda70faedfd54')
+source=(http://downloads.sourceforge.net/lxde/$pkgbase-$pkgver.tar.xz
+gtk3.patch)
+md5sums=('38fc31793b11c43b6a8fda70faedfd54'
+ '3140b6f2f88fe1835fad8c094c9faf61')
 
+prepare() {
+  cd $pkgbase-$pkgver
+  patch -Np1 -i ../gtk3.patch
+  autoreconf -fi
+}
+
 build() {
-  cd $pkgname-$pkgver
+  # GTK+ 2 version
+  [ -d gtk2 ] || cp -r $pkgbase-$pkgver gtk2
+  cd gtk2
   ./configure --prefix=/usr
   make
+
+  cd "$srcdir"
+  # GTK+ 3 version
+  [ -d gtk3 ] || cp -r $pkgbase-$pkgver gtk3
+  cd gtk3
+  ./configure --prefix=/usr --enable-gtk3
+  make
 }
 
-package() {
-  cd $pkgname-$pkgver
+package_lxmusic() {
+  groups=('lxde')
+  depends=('gtk2' 'libnotify' 'xmms2')
+
+  cd gtk2
   make DESTDIR="$pkgdir" install
 }
+
+package_lxmusic-gtk3() {
+  groups=('lxde-gtk3')
+  pkgdesc+=' (GTK+ 3 version)'
+  depends=('gtk3' 'libnotify' 'xmms2')
+  conflicts=('lxmusic')
+
+  cd gtk3
+  make DESTDIR="$pkgdir" install
+}

Added: gtk3.patch
===
--- gtk3.patch  (rev 0)
+++ gtk3.patch  2016-02-17 02:49:26 UTC (rev 161934)
@@ -0,0 +1,493 @@
+From ffc46b7eef2df21e024b04f3b29971093460a8d9 Mon Sep 17 00:00:00 2001
+From: =?utf8?q?Ball=C3=B3=20Gy=C3=B6rgy?= 
+Date: Thu, 18 Dec 2014 02:24:43 +0100
+Subject: [PATCH] Fix some deprecations and add an option to compile with gtk3
+
+---
+ configure.ac | 19 +--
+ data/lxmusic.ui.glade|  1 -
+ data/track-info.ui.glade |  1 -
+ src/lxmusic.c| 63 
+ 4 files changed, 54 insertions(+), 30 deletions(-)
+
+diff --git a/configure.ac b/configure.ac
+index 6bf5316..836560b 100644
+--- a/configure.ac
 b/configure.ac
+@@ -6,7 +6,7 @@ AM_CONFIG_HEADER(config.h)
+ AM_MAINTAINER_MODE([enable])
+ 
+ # Required Packages
+-m4_define([gtk_minimum_version], [2.14.0])
++m4_define([gtk_minimum_version], [2.20.0])
+ m4_define([gmodule_export_minimum_version], [2.0])
+ m4_define([xmms2_minimum_version], [0.7])
+ m4_define([xmms2_client_glib_minimum_version], [0.7])
+@@ -22,8 +22,23 @@ AC_HEADER_STDC
+ AC_PROG_INTLTOOL(, [no-xml])
+ 
+ dnl check for mandatory modules
++AC_ARG_ENABLE(gtk3,
++AC_HELP_STRING([--enable-gtk3],[enable to use gtk-3.0 instead of gtk-2.0]),
++[case "${enableval}" in
++  yes)  enable_gtk3=yes ;;
++  no)   enable_gtk3=no ;;
++  *) AC_MSG_ERROR([bad value "${enableval}" for --enable-gtk3, use "yes" 
(default) or "no".]) ;;
++esac],[])
++
++# Checks for libraries.
++if test "x$enable_gtk3" = "xyes" ; then
++  CFLAGS="$CFLAGS -DENABLE_GTK3"
++  gtk_modules="gtk+-3.0 >= 3.0.0"
++else
++  gtk_modules="gtk+-2.0 >= gtk_minimum_version"
++fi
+ PKG_CHECK_MODULES(LXMUSIC,
+-[gtk+-2.0 >= gtk_minimum_version
++[$gtk_modules
+   gmodule-export-2.0 >= gmodule_export_minimum_version
+   xmms2-client >= xmms2_minimum_version
+   xmms2-client-glib >= xmms2_client_glib_minimum_version])
+diff --git a/data/lxmusic.ui.glade b/data/lxmusic.ui.glade
+index b5572fa..1856b30 100644
+--- a/data/lxmusic.ui.glade
 b/data/lxmusic.ui.glade
+@@ -370,7 +370,6 @@
+ 80
+ True
+ True
+-GTK_UPDATE_DELAYED
+ adjustment1
+ False
+ 
+diff --git a/data/track-info.ui.glade b/data/track-info.ui.glade
+index 05895b0..50a6e23 100644
+--- a/data/track-info.ui.glade
 b/data/track-info.ui.glade
+@@ -7,7 +7,6 @@
+ GTK_WIN_POS_CENTER_ON_PARENT
+ 480
+ GDK_WINDOW_TYPE_HINT_DIALOG
+-False
+ 
+ 
+   
+diff --git a/src/lxmusic.c b/src/lxmusic.c
+index 001619d..14aa17a 100644
+--- a/src/lxmusic.c
 b/src/lxmusic.c
+@@ -252,13 +252,6 @@ void on_main_win_destroy(GtkWidget* win)
+ }
+ }
+ 
+-static void open_url(GtkAboutDialog* dlg, const char* url, gpointer user_data)
+-{
+-co

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

2016-02-16 Thread Balló György
Date: Wednesday, February 17, 2016 @ 03:38:11
  Author: bgyorgy
Revision: 161933

Cleanup

Modified:
  lxtask/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-17 02:26:51 UTC (rev 161932)
+++ PKGBUILD2016-02-17 02:38:11 UTC (rev 161933)
@@ -12,7 +12,6 @@
 arch=('i686' 'x86_64')
 license=('GPL2')
 url='http://lxde.org/'
-groups=('lxde')
 depends=('gtk2' 'gtk3')
 makedepends=('intltool')
 source=(http://downloads.sourceforge.net/lxde/$pkgbase-$pkgver.tar.xz


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

2016-02-16 Thread Balló György
Date: Wednesday, February 17, 2016 @ 03:26:51
  Author: bgyorgy
Revision: 161932

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

Added:
  lxtask/repos/community-i686/PKGBUILD
(from rev 161931, lxtask/trunk/PKGBUILD)
  lxtask/repos/community-i686/gtk3.patch
(from rev 161931, lxtask/trunk/gtk3.patch)
  lxtask/repos/community-x86_64/PKGBUILD
(from rev 161931, lxtask/trunk/PKGBUILD)
  lxtask/repos/community-x86_64/gtk3.patch
(from rev 161931, lxtask/trunk/gtk3.patch)
Deleted:
  lxtask/repos/community-i686/PKGBUILD
  lxtask/repos/community-x86_64/PKGBUILD

-+
 /PKGBUILD   |  118 ++
 community-i686/PKGBUILD |   29 --
 community-i686/gtk3.patch   |   24 
 community-x86_64/PKGBUILD   |   29 --
 community-x86_64/gtk3.patch |   24 
 5 files changed, 166 insertions(+), 58 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-17 02:26:43 UTC (rev 161931)
+++ community-i686/PKGBUILD 2016-02-17 02:26:51 UTC (rev 161932)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Angel Velasquez 
-# Contributor: Geoffroy Carrier 
-
-pkgname=lxtask
-pkgver=0.1.6
-pkgrel=1
-pkgdesc='Task manager of the LXDE Desktop'
-arch=('i686' 'x86_64')
-license=('GPL2')
-url='http://lxde.org/'
-groups=('lxde')
-depends=('gtk2')
-makedepends=('intltool')
-source=(http://downloads.sourceforge.net/lxde/$pkgname-$pkgver.tar.xz)
-md5sums=('14b5341822aaa049f2d4d5a56c1b28f2')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --sysconfdir=/etc --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: lxtask/repos/community-i686/PKGBUILD (from rev 161931, 
lxtask/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-17 02:26:51 UTC (rev 161932)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Angel Velasquez 
+# Contributor: Geoffroy Carrier 
+
+pkgbase=lxtask
+pkgname=(lxtask lxtask-gtk3)
+pkgver=0.1.6
+pkgrel=2
+pkgdesc='Task manager of the LXDE Desktop'
+arch=('i686' 'x86_64')
+license=('GPL2')
+url='http://lxde.org/'
+groups=('lxde')
+depends=('gtk2' 'gtk3')
+makedepends=('intltool')
+source=(http://downloads.sourceforge.net/lxde/$pkgbase-$pkgver.tar.xz
+gtk3.patch)
+md5sums=('14b5341822aaa049f2d4d5a56c1b28f2'
+ '86d38c288611bbe3565218abb12bf5ac')
+
+prepare() {
+  cd $pkgbase-$pkgver
+  patch -Np1 -i ../gtk3.patch
+}
+
+build() {
+  # GTK+ 2 version
+  [ -d gtk2 ] || cp -r $pkgbase-$pkgver gtk2
+  cd gtk2
+  ./configure --sysconfdir=/etc --prefix=/usr
+  make
+
+  cd "$srcdir"
+  # GTK+ 3 version
+  [ -d gtk3 ] || cp -r $pkgbase-$pkgver gtk3
+  cd gtk3
+  ./configure --sysconfdir=/etc --prefix=/usr --enable-gtk3
+  make
+}
+
+package_lxtask() {
+  groups=('lxde')
+  depends=('gtk2')
+
+  cd gtk2
+  make DESTDIR="$pkgdir" install
+}
+
+package_lxtask-gtk3() {
+  groups=('lxde-gtk3')
+  pkgdesc+=' (GTK+ 3 version)'
+  depends=('gtk3')
+  conflicts=('lxtask')
+
+  cd gtk3
+  make DESTDIR="$pkgdir" install
+}

Copied: lxtask/repos/community-i686/gtk3.patch (from rev 161931, 
lxtask/trunk/gtk3.patch)
===
--- community-i686/gtk3.patch   (rev 0)
+++ community-i686/gtk3.patch   2016-02-17 02:26:51 UTC (rev 161932)
@@ -0,0 +1,24 @@
+From 91656b073774e9ba3b9c27c99c3fd2553be60bab Mon Sep 17 00:00:00 2001
+From: =?utf8?q?Ball=C3=B3=20Gy=C3=B6rgy?= 
+Date: Mon, 15 Dec 2014 15:41:26 +0100
+Subject: [PATCH] Add icon to the about dialog
+
+---
+ src/interface.c | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/src/interface.c b/src/interface.c
+index cb0eeef..4771f0c 100644
+--- a/src/interface.c
 b/src/interface.c
+@@ -403,6 +403,7 @@ void show_about_dialog(void)
+   gtk_about_dialog_set_program_name ( (GtkAboutDialog*)about_dlg, _( 
"LXTask" ) );
+ #endif
+ /* gtk_about_dialog_set_logo( (GtkAboutDialog*)about_dlg, 
gdk_pixbuf_new_from_file(  PACKAGE_DATA_DIR"/pixmaps/lxtask.png", NULL ) ); */
++gtk_about_dialog_set_logo_icon_name( (GtkAboutDialog*)about_dlg, 
"utilities-system-monitor" );
+ gtk_about_dialog_set_copyright ( (GtkAboutDialog*)about_dlg, _( 
"Copyright (C) 2008 LXDE team" ) );
+ gtk_about_dialog_set_comments ( (GtkAboutDialog*)about_dlg, _( 
"Lightweight task manager for LXDE project" ) );
+ gtk_about_dialog_set_license ( (GtkAboutDialog*)about_dlg, 
"LXTask\n\nCopyright (C) 2008 LXDE team\n\nThis program is free software; you 
can redistribute it and/or\nmodify it under the terms of the GNU General Public 
License\nas published by the Free Software Foundation; e

[arch-commits] Commit in lxtask/trunk (PKGBUILD gtk3.patch)

2016-02-16 Thread Balló György
Date: Wednesday, February 17, 2016 @ 03:26:43
  Author: bgyorgy
Revision: 161931

upgpkg: lxtask 0.1.6-2

Add GTK+ 3 version

Added:
  lxtask/trunk/gtk3.patch
Modified:
  lxtask/trunk/PKGBUILD

+
 PKGBUILD   |   46 ++
 gtk3.patch |   24 
 2 files changed, 62 insertions(+), 8 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-02-17 02:12:22 UTC (rev 161930)
+++ PKGBUILD2016-02-17 02:26:43 UTC (rev 161931)
@@ -4,26 +4,56 @@
 # Contributor: Angel Velasquez 
 # Contributor: Geoffroy Carrier 
 
-pkgname=lxtask
+pkgbase=lxtask
+pkgname=(lxtask lxtask-gtk3)
 pkgver=0.1.6
-pkgrel=1
+pkgrel=2
 pkgdesc='Task manager of the LXDE Desktop'
 arch=('i686' 'x86_64')
 license=('GPL2')
 url='http://lxde.org/'
 groups=('lxde')
-depends=('gtk2')
+depends=('gtk2' 'gtk3')
 makedepends=('intltool')
-source=(http://downloads.sourceforge.net/lxde/$pkgname-$pkgver.tar.xz)
-md5sums=('14b5341822aaa049f2d4d5a56c1b28f2')
+source=(http://downloads.sourceforge.net/lxde/$pkgbase-$pkgver.tar.xz
+gtk3.patch)
+md5sums=('14b5341822aaa049f2d4d5a56c1b28f2'
+ '86d38c288611bbe3565218abb12bf5ac')
 
+prepare() {
+  cd $pkgbase-$pkgver
+  patch -Np1 -i ../gtk3.patch
+}
+
 build() {
-  cd $pkgname-$pkgver
+  # GTK+ 2 version
+  [ -d gtk2 ] || cp -r $pkgbase-$pkgver gtk2
+  cd gtk2
   ./configure --sysconfdir=/etc --prefix=/usr
   make
+
+  cd "$srcdir"
+  # GTK+ 3 version
+  [ -d gtk3 ] || cp -r $pkgbase-$pkgver gtk3
+  cd gtk3
+  ./configure --sysconfdir=/etc --prefix=/usr --enable-gtk3
+  make
 }
 
-package() {
-  cd $pkgname-$pkgver
+package_lxtask() {
+  groups=('lxde')
+  depends=('gtk2')
+
+  cd gtk2
   make DESTDIR="$pkgdir" install
 }
+
+package_lxtask-gtk3() {
+  groups=('lxde-gtk3')
+  pkgdesc+=' (GTK+ 3 version)'
+  depends=('gtk3')
+  conflicts=('lxtask')
+
+  cd gtk3
+  make DESTDIR="$pkgdir" install
+}

Added: gtk3.patch
===
--- gtk3.patch  (rev 0)
+++ gtk3.patch  2016-02-17 02:26:43 UTC (rev 161931)
@@ -0,0 +1,24 @@
+From 91656b073774e9ba3b9c27c99c3fd2553be60bab Mon Sep 17 00:00:00 2001
+From: =?utf8?q?Ball=C3=B3=20Gy=C3=B6rgy?= 
+Date: Mon, 15 Dec 2014 15:41:26 +0100
+Subject: [PATCH] Add icon to the about dialog
+
+---
+ src/interface.c | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/src/interface.c b/src/interface.c
+index cb0eeef..4771f0c 100644
+--- a/src/interface.c
 b/src/interface.c
+@@ -403,6 +403,7 @@ void show_about_dialog(void)
+   gtk_about_dialog_set_program_name ( (GtkAboutDialog*)about_dlg, _( 
"LXTask" ) );
+ #endif
+ /* gtk_about_dialog_set_logo( (GtkAboutDialog*)about_dlg, 
gdk_pixbuf_new_from_file(  PACKAGE_DATA_DIR"/pixmaps/lxtask.png", NULL ) ); */
++gtk_about_dialog_set_logo_icon_name( (GtkAboutDialog*)about_dlg, 
"utilities-system-monitor" );
+ gtk_about_dialog_set_copyright ( (GtkAboutDialog*)about_dlg, _( 
"Copyright (C) 2008 LXDE team" ) );
+ gtk_about_dialog_set_comments ( (GtkAboutDialog*)about_dlg, _( 
"Lightweight task manager for LXDE project" ) );
+ gtk_about_dialog_set_license ( (GtkAboutDialog*)about_dlg, 
"LXTask\n\nCopyright (C) 2008 LXDE team\n\nThis program is free software; you 
can redistribute it and/or\nmodify it under the terms of the GNU General Public 
License\nas published by the Free Software Foundation; either version 2\nof the 
License, or (at your option) any later version.\n\nThis program is distributed 
in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the 
implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See 
the\nGNU General Public License for more details.\n\nYou should have received a 
copy of the GNU General Public License\nalong with this program; if not, write 
to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, 
Boston, MA  02110-1301, USA." );
+-- 
+2.1.4
+


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

2016-02-16 Thread Balló György
Date: Wednesday, February 17, 2016 @ 03:12:22
  Author: bgyorgy
Revision: 161930

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

Added:
  lxterminal/repos/community-i686/PKGBUILD
(from rev 161929, lxterminal/trunk/PKGBUILD)
  lxterminal/repos/community-i686/gtk3.patch
(from rev 161929, lxterminal/trunk/gtk3.patch)
  lxterminal/repos/community-i686/lxterminal.install
(from rev 161929, lxterminal/trunk/lxterminal.install)
  lxterminal/repos/community-x86_64/PKGBUILD
(from rev 161929, lxterminal/trunk/PKGBUILD)
  lxterminal/repos/community-x86_64/gtk3.patch
(from rev 161929, lxterminal/trunk/gtk3.patch)
  lxterminal/repos/community-x86_64/lxterminal.install
(from rev 161929, lxterminal/trunk/lxterminal.install)
Deleted:
  lxterminal/repos/community-i686/PKGBUILD
  lxterminal/repos/community-i686/lxterminal.install
  lxterminal/repos/community-x86_64/PKGBUILD
  lxterminal/repos/community-x86_64/lxterminal.install

-+
 /PKGBUILD   |  120 
 /lxterminal.install |   22 +
 community-i686/PKGBUILD |   30 --
 community-i686/gtk3.patch   |  461 ++
 community-i686/lxterminal.install   |   11 
 community-x86_64/PKGBUILD   |   30 --
 community-x86_64/gtk3.patch |  461 ++
 community-x86_64/lxterminal.install |   11 
 8 files changed, 1064 insertions(+), 82 deletions(-)

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


[arch-commits] Commit in lxterminal/trunk (PKGBUILD gtk3.patch)

2016-02-16 Thread Balló György
Date: Wednesday, February 17, 2016 @ 03:12:13
  Author: bgyorgy
Revision: 161929

upgpkg: lxterminal 0.2.0-2

Add GTK+ 3 version

Added:
  lxterminal/trunk/gtk3.patch
Modified:
  lxterminal/trunk/PKGBUILD

+
 PKGBUILD   |   50 +-
 gtk3.patch |  461 +++
 2 files changed, 501 insertions(+), 10 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-02-17 01:34:40 UTC (rev 161928)
+++ PKGBUILD2016-02-17 02:12:13 UTC (rev 161929)
@@ -4,27 +4,57 @@
 # Contributor: Angel Velasquez  
 # Contributor: Geoffroy Carrier 
 
-pkgname=lxterminal
+pkgbase=lxterminal
+pkgname=(lxterminal lxterminal-gtk3)
 pkgver=0.2.0
-pkgrel=1
+pkgrel=2
 pkgdesc="VTE-based terminal emulator (part of LXDE)"
 arch=('i686' 'x86_64')
 license=('GPL2')
 url="http://lxde.org/";
-groups=('lxde')
-depends=('vte')
+depends=('vte' 'vte3')
 makedepends=('intltool')
-install=$pkgname.install
-source=(http://downloads.sourceforge.net/lxde/${pkgname}-${pkgver}.tar.gz)
-md5sums=('e80ad1b6e26212f3d43908c2ad87ba4d')
+install=$pkgbase.install
+source=(http://downloads.sourceforge.net/lxde/${pkgbase}-${pkgver}.tar.gz
+gtk3.patch)
+md5sums=('e80ad1b6e26212f3d43908c2ad87ba4d'
+ '98abfec91bd55e96001f87b0e3fdbc22')
 
+prepare() {
+  cd $pkgbase-$pkgver
+  patch -Np1 -i ../gtk3.patch
+  autoreconf -fi
+}
+
 build() {
-  cd "$srcdir"/$pkgname-$pkgver
+  # GTK+ 2 version
+  [ -d gtk2 ] || cp -r $pkgbase-$pkgver gtk2
+  cd gtk2
   ./configure --sysconfdir=/etc --prefix=/usr
   make
+
+  cd "$srcdir"
+  # GTK+ 3 version
+  [ -d gtk3 ] || cp -r $pkgbase-$pkgver gtk3
+  cd gtk3
+  ./configure --sysconfdir=/etc --prefix=/usr --enable-gtk3
+  make
 }
 
-package() {
-  cd "$srcdir"/$pkgname-$pkgver
+package_lxterminal() {
+  groups=('lxde')
+  depends=('vte')
+
+  cd gtk2
   make DESTDIR="$pkgdir" install
 }
+
+package_lxterminal-gtk3() {
+  groups=('lxde-gtk3')
+  pkgdesc+=' (GTK+ 3 version)'
+  depends=('vte3')
+  conflicts=('lxterminal')
+
+  cd gtk3
+  make DESTDIR="$pkgdir" install
+}

Added: gtk3.patch
===
--- gtk3.patch  (rev 0)
+++ gtk3.patch  2016-02-17 02:12:13 UTC (rev 161929)
@@ -0,0 +1,461 @@
+From 164a4cf56af423d3445c15a6e7aceae46e048dd5 Mon Sep 17 00:00:00 2001
+From: FinboySlick 
+Date: Thu, 23 Jul 2015 16:05:19 -0400
+Subject: [PATCH] Support for vte>=0.38.0 -- Thanks Gyorgy Ballo
+
+---
+ configure.ac  |  4 +++-
+ src/lxterminal.c  | 69 ++-
+ src/preferences.c | 17 ++
+ src/setting.c | 30 
+ src/setting.h |  6 +
+ 5 files changed, 124 insertions(+), 2 deletions(-)
+
+diff --git a/configure.ac b/configure.ac
+index fb03567..e502c78 100644
+--- a/configure.ac
 b/configure.ac
+@@ -56,7 +56,9 @@ PKG_CHECK_MODULES(glib, [glib-2.0 >= 2.6.0])
+ PKG_CHECK_MODULES(x11, [x11 >= 1.0])
+ 
+ if test "x$enable_gtk3" = "xyes" ; then
+-PKG_CHECK_MODULES(vte, [vte-2.90 >= 0.20.0])
++PKG_CHECK_MODULES(vte, [vte-2.91 >= 0.20.0],, [
++  PKG_CHECK_MODULES(vte, [vte-2.90 >= 0.20.0])
++])
+ else
+ PKG_CHECK_MODULES(vte, [vte >= 0.20.0])
+ fi
+diff --git a/src/lxterminal.c b/src/lxterminal.c
+index d85203c..7980a42 100644
+--- a/src/lxterminal.c
 b/src/lxterminal.c
+@@ -39,6 +39,27 @@
+ #include "unixsocket.h"
+ 
+ /* Linux color for palette. */
++#if VTE_CHECK_VERSION (0, 38, 0)
++static const GdkRGBA linux_color[16] =
++{
++{ 0, 0, 0, 1 },
++{ 0.67, 0, 0, 1 },
++{ 0, 0.67, 0, 1 },
++{ 0.67, 0.33, 0, 1 },
++{ 0, 0, 0.67, 1 },
++{ 0.67, 0, 0.67, 1 },
++{ 0, 0.67, 0.67, 1 },
++{ 0.67, 0.67, 0.67, 1 },
++{ 0.33, 0.33, 0.33, 1 },
++{ 1, 0.33, 0.33, 1 },
++{ 0.33, 1, 0.33, 1 },
++{ 1, 1, 0.33, 1 },
++{ 0.33, 0.33, 1, 1 },
++{ 1, 0.33, 1, 1 },
++{ 0.33, 1, 1, 1 },
++{ 1, 1, 1, 1 }
++};
++#else
+ static const GdkColor linux_color[16] =
+ {
+ { 0, 0x, 0x, 0x },
+@@ -58,6 +79,7 @@ static const GdkColor linux_color[16] =
+ { 0, 0x, 0x, 0x },
+ { 0, 0x, 0x, 0x }
+ };
++#endif
+ 
+ /* X accessor. */
+ static void gdk_window_get_geometry_hints(GdkWindow * window, GdkGeometry * 
geometry, GdkWindowHints * geometry_mask);
+@@ -229,7 +251,18 @@ static void gdk_window_get_geometry_hints(GdkWindow * 
window, GdkGeometry * geom
+ /* Accessor for border values from VteTerminal. */
+ static GtkBorder * terminal_get_border(Term * term)
+ {
+-#if VTE_CHECK_VERSION(0, 24, 0)
++#if VTE_CHECK_VERSION (0, 38, 0)
++GtkBorder padding;
++gtk_style_context_get_padding(gtk_widget_get_style_context(term->vte),
++  gtk_widget_get_state_flags(term->vte),
++  &padding);
++GtkBorder * border = gtk_border_new();
++border->left = padding.left;
++border->right = padd

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

2016-02-16 Thread Balló György
Date: Wednesday, February 17, 2016 @ 02:34:40
  Author: bgyorgy
Revision: 161928

Some cleanup

Modified:
  lxdm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-17 01:15:46 UTC (rev 161927)
+++ PKGBUILD2016-02-17 01:34:40 UTC (rev 161928)
@@ -30,7 +30,7 @@
  '6ff73570368501a06ee7badc8e415d0a')
 
 prepare(){
-  cd "$srcdir/$pkgbase-$pkgver"
+  cd $pkgbase-$pkgver
 
   # Adjust Arch-specific settings
   patch -Np1 -i ../default-config.patch
@@ -50,7 +50,6 @@
 
   cd "$srcdir"
   # GTK+ 3 version
-  cd "$srcdir"
   [ -d gtk3 ] || cp -r $pkgbase-$pkgver gtk3
   cd gtk3
   ./configure --prefix=/usr --sbindir=/usr/bin --libexecdir=/usr/lib/lxdm \


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

2016-02-16 Thread Balló György
Date: Wednesday, February 17, 2016 @ 02:15:46
  Author: bgyorgy
Revision: 161927

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

Added:
  lxdm/repos/community-i686/PKGBUILD
(from rev 161926, lxdm/trunk/PKGBUILD)
  lxdm/repos/community-i686/Xsession
(from rev 161926, lxdm/trunk/Xsession)
  lxdm/repos/community-i686/default-config.patch
(from rev 161926, lxdm/trunk/default-config.patch)
  lxdm/repos/community-i686/lxdm.install
(from rev 161926, lxdm/trunk/lxdm.install)
  lxdm/repos/community-i686/lxdm.pam
(from rev 161926, lxdm/trunk/lxdm.pam)
  lxdm/repos/community-x86_64/PKGBUILD
(from rev 161926, lxdm/trunk/PKGBUILD)
  lxdm/repos/community-x86_64/Xsession
(from rev 161926, lxdm/trunk/Xsession)
  lxdm/repos/community-x86_64/default-config.patch
(from rev 161926, lxdm/trunk/default-config.patch)
  lxdm/repos/community-x86_64/lxdm.install
(from rev 161926, lxdm/trunk/lxdm.install)
  lxdm/repos/community-x86_64/lxdm.pam
(from rev 161926, lxdm/trunk/lxdm.pam)
Deleted:
  lxdm/repos/community-i686/PKGBUILD
  lxdm/repos/community-i686/Xsession
  lxdm/repos/community-i686/default-config.patch
  lxdm/repos/community-i686/lxdm.install
  lxdm/repos/community-i686/lxdm.pam
  lxdm/repos/community-i686/xauth.patch
  lxdm/repos/community-x86_64/PKGBUILD
  lxdm/repos/community-x86_64/Xsession
  lxdm/repos/community-x86_64/default-config.patch
  lxdm/repos/community-x86_64/lxdm.install
  lxdm/repos/community-x86_64/lxdm.pam
  lxdm/repos/community-x86_64/xauth.patch

---+
 /PKGBUILD |  180 
 /Xsession |  142 +
 /default-config.patch |   50 
 /lxdm.install |   26 
 /lxdm.pam |   14 ++
 community-i686/PKGBUILD   |   65 ---
 community-i686/Xsession   |   71 
 community-i686/default-config.patch   |   21 ---
 community-i686/lxdm.install   |   13 --
 community-i686/lxdm.pam   |7 -
 community-i686/xauth.patch|   82 --
 community-x86_64/PKGBUILD |   65 ---
 community-x86_64/Xsession |   71 
 community-x86_64/default-config.patch |   21 ---
 community-x86_64/lxdm.install |   13 --
 community-x86_64/lxdm.pam |7 -
 community-x86_64/xauth.patch  |   82 --
 17 files changed, 412 insertions(+), 518 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-17 01:15:34 UTC (rev 161926)
+++ community-i686/PKGBUILD 2016-02-17 01:15:46 UTC (rev 161927)
@@ -1,65 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: AndyRTR 
-# Contributor: kiefer 
-
-pkgname=lxdm
-pkgver=0.5.2
-pkgrel=2
-pkgdesc='Lightweight X11 Display Manager'
-arch=('i686' 'x86_64')
-url="https://sourceforge.net/projects/lxdm/";
-license=('GPL')
-groups=('lxde')
-depends=('gtk2' 'xorg-server')
-makedepends=('intltool' 'iso-codes')
-optdepends=('gtk-engines: default GTK+ theme'
-'iso-codes: show language names in language chooser'
-'librsvg: display the default background')
-install=$pkgname.install
-backup=('etc/lxdm/lxdm.conf' 'etc/pam.d/lxdm' 'etc/lxdm/Xsession'
-'etc/lxdm/PreLogin' 'etc/lxdm/LoginReady' 'etc/lxdm/PostLogin'
-'etc/lxdm/PostLogout' 'etc/lxdm/PreReboot' 'etc/lxdm/PreShutdown')
-source=(http://downloads.sourceforge.net/lxdm/$pkgname-$pkgver.tar.xz
-xauth.patch
-default-config.patch
-lxdm.pam
-Xsession)
-md5sums=('7806aeb11d4565c88dca2b05c9f7c44b'
- 'e5e9957f34f40ed5b7f7a47c778e38cd'
- 'f0ae6c072f151104c53a030fd7757821'
- 'c941ef896248bc7c03901b513490425c'
- '6ff73570368501a06ee7badc8e415d0a')
-
-prepare(){
-  cd "$srcdir/$pkgname-$pkgver"
-
-  # Revert broken commit
-  patch -RNp1 -i ../xauth.patch
-
-  # Adjust Arch-specific settings
-  patch -Np1 -i ../default-config.patch
-
-  # Use our custom pam and Xsession files
-  cp ../lxdm.pam pam/lxdm
-  cp ../Xsession data/Xsession
-}
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ./configure --prefix=/usr --sbindir=/usr/bin --libexecdir=/usr/lib/lxdm \
-  --sysconfdir=/etc --localstatedir=/var
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-  chmod 644 "$pkgdir/etc/lxdm/lxdm.conf"
-
-  # Home directory
-  install -dm 755 "$pkgdir/var/lib/lxdm"
-  echo 'GDK_CORE_DEVICE_EVENTS=true' > "$pkgdir"/var/lib/lxdm/.pam_environment
-  chown -R 121:121 "$pkgdir/var/lib/lxdm"
-}

Copied: lxdm/repos/community-i686/PKGBUILD (from rev 161926, 
lxdm/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD  

[arch-commits] Commit in lxdm/trunk (PKGBUILD default-config.patch xauth.patch)

2016-02-16 Thread Balló György
Date: Wednesday, February 17, 2016 @ 02:15:34
  Author: bgyorgy
Revision: 161926

upgpkg: lxdm 0.5.3-1

Update to new version, add GTK+ 3 version

Modified:
  lxdm/trunk/PKGBUILD
  lxdm/trunk/default-config.patch
Deleted:
  lxdm/trunk/xauth.patch

--+
 PKGBUILD |   67 +++-
 default-config.patch |8 +++-
 xauth.patch  |   82 -
 3 files changed, 52 insertions(+), 105 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-02-17 00:10:51 UTC (rev 161925)
+++ PKGBUILD2016-02-17 01:15:34 UTC (rev 161926)
@@ -4,40 +4,34 @@
 # Contributor: AndyRTR 
 # Contributor: kiefer 
 
-pkgname=lxdm
-pkgver=0.5.2
-pkgrel=2
+pkgbase=lxdm
+pkgname=(lxdm lxdm-gtk3)
+pkgver=0.5.3
+pkgrel=1
 pkgdesc='Lightweight X11 Display Manager'
 arch=('i686' 'x86_64')
-url="https://sourceforge.net/projects/lxdm/";
+url="http://lxde.org/";
 license=('GPL')
-groups=('lxde')
-depends=('gtk2' 'xorg-server')
+depends=('gtk2' 'gtk3' 'xorg-server')
 makedepends=('intltool' 'iso-codes')
-optdepends=('gtk-engines: default GTK+ theme'
-'iso-codes: show language names in language chooser'
+optdepends=('iso-codes: show language names in language chooser'
 'librsvg: display the default background')
-install=$pkgname.install
+install=$pkgbase.install
 backup=('etc/lxdm/lxdm.conf' 'etc/pam.d/lxdm' 'etc/lxdm/Xsession'
 'etc/lxdm/PreLogin' 'etc/lxdm/LoginReady' 'etc/lxdm/PostLogin'
 'etc/lxdm/PostLogout' 'etc/lxdm/PreReboot' 'etc/lxdm/PreShutdown')
-source=(http://downloads.sourceforge.net/lxdm/$pkgname-$pkgver.tar.xz
-xauth.patch
+source=(http://downloads.sourceforge.net/lxde/$pkgbase-$pkgver.tar.xz
 default-config.patch
 lxdm.pam
 Xsession)
-md5sums=('7806aeb11d4565c88dca2b05c9f7c44b'
- 'e5e9957f34f40ed5b7f7a47c778e38cd'
- 'f0ae6c072f151104c53a030fd7757821'
+md5sums=('061caae432634e6db38bbdc84bc6ffa0'
+ 'fb2fb99acb11b6dfdb8d5fd72605b8da'
  'c941ef896248bc7c03901b513490425c'
  '6ff73570368501a06ee7badc8e415d0a')
 
 prepare(){
-  cd "$srcdir/$pkgname-$pkgver"
+  cd "$srcdir/$pkgbase-$pkgver"
 
-  # Revert broken commit
-  patch -RNp1 -i ../xauth.patch
-
   # Adjust Arch-specific settings
   patch -Np1 -i ../default-config.patch
 
@@ -47,14 +41,29 @@
 }
 
 build() {
-  cd "$srcdir/$pkgname-$pkgver"
+  # GTK+ 2 version
+  [ -d gtk2 ] || cp -r $pkgbase-$pkgver gtk2
+  cd gtk2
   ./configure --prefix=/usr --sbindir=/usr/bin --libexecdir=/usr/lib/lxdm \
   --sysconfdir=/etc --localstatedir=/var
   make
+
+  cd "$srcdir"
+  # GTK+ 3 version
+  cd "$srcdir"
+  [ -d gtk3 ] || cp -r $pkgbase-$pkgver gtk3
+  cd gtk3
+  ./configure --prefix=/usr --sbindir=/usr/bin --libexecdir=/usr/lib/lxdm \
+  --sysconfdir=/etc --localstatedir=/var --enable-gtk3
+  make
 }
 
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
+package_lxdm() {
+  groups=('lxde')
+  depends=('gtk2' 'xorg-server')
+  optdepends+=('gnome-themes-standard: default GTK+ theme')
+
+  cd gtk2
   make DESTDIR="$pkgdir" install
   chmod 644 "$pkgdir/etc/lxdm/lxdm.conf"
 
@@ -63,3 +72,19 @@
   echo 'GDK_CORE_DEVICE_EVENTS=true' > "$pkgdir"/var/lib/lxdm/.pam_environment
   chown -R 121:121 "$pkgdir/var/lib/lxdm"
 }
+
+package_lxdm-gtk3() {
+  groups=('lxde-gtk3')
+  pkgdesc+=' (GTK+ 3 version)'
+  depends=('gtk3' 'xorg-server')
+  conflicts=('lxdm')
+
+  cd gtk3
+  make DESTDIR="$pkgdir" install
+  chmod 644 "$pkgdir/etc/lxdm/lxdm.conf"
+
+  # Home directory
+  install -dm 755 "$pkgdir/var/lib/lxdm"
+  echo 'GDK_CORE_DEVICE_EVENTS=true' > "$pkgdir"/var/lib/lxdm/.pam_environment
+  chown -R 121:121 "$pkgdir/var/lib/lxdm"
+}

Modified: default-config.patch
===
--- default-config.patch2016-02-17 00:10:51 UTC (rev 161925)
+++ default-config.patch2016-02-17 01:15:34 UTC (rev 161926)
@@ -10,9 +10,13 @@
  # uncomment this if you really want xserver listen to tcp
  # tcp_listen=1
  # uncoment this if you want reset the xserver after logou
-@@ -34,7 +34,7 @@
- gtk_theme=Clearlooks
+@@ -31,10 +31,10 @@
  
+ [display]
+ ## gtk theme used by greeter
+-gtk_theme=Clearlooks
++gtk_theme=Adwaita
+ 
  ## background of the greeter
 -bg=/usr/share/backgrounds/default.png
 +# bg=/usr/share/backgrounds/default.png

Deleted: xauth.patch
===
--- xauth.patch 2016-02-17 00:10:51 UTC (rev 161925)
+++ xauth.patch 2016-02-17 01:15:34 UTC (rev 161926)
@@ -1,82 +0,0 @@
-From e8f387089e241360bdc6955d3e479450722dcea3 Mon Sep 17 00:00:00 2001
-From: dgod 
-Date: Wed, 7 Oct 2015 16:38:52 +0800
-Subject: [PATCH] pass xauth file to xserver command
-

- src/lxdm.c | 20 +---
- 1 file changed, 17 insertions(+), 3 deletions(-)
-
-diff --git a/src/lxdm.c b/src/lxdm.c

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

2016-02-16 Thread Allan McRae
Date: Wednesday, February 17, 2016 @ 01:57:50
  Author: allan
Revision: 259873

remove patch included in roundup

Modified:
  glibc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-17 00:55:30 UTC (rev 259872)
+++ PKGBUILD2016-02-17 00:57:50 UTC (rev 259873)
@@ -24,7 +24,6 @@
 source=(http://ftp.gnu.org/gnu/libc/${pkgname}-${pkgver}.tar.xz{,.sig}
 glibc-2.22-roundup.patch
 glibc-2.22-CVE-2015-7547.patch
-glibc-2.22-Gracefully-handle-incompatible-locale-data.patch
 locale.gen.txt
 locale-gen)
 md5sums=('e51e02bf552a0a1fbbdc948fb2f5e83c'
@@ -31,7 +30,6 @@
  'SKIP'
  '176ca8230b2c1d2e9a904c3527ebed24'
  'db053da46e40f25a0fc988936725080b'
- '462e43aa6438fb1dfce8ad605e35cc24'
  '07ac979b6ab5eeb778d55f041529d623'
  '476e9113489f93b348b21e144b6a8fcf')
 validpgpkeys=('F37CDAB708E65EA183FD1AF625EF0A436C2A4AFF')  # Carlos O'Donell


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

2016-02-16 Thread Allan McRae
Date: Wednesday, February 17, 2016 @ 01:55:30
  Author: allan
Revision: 259872

fix CVE-2015-7547 CVE-2015-8776 CVE-2015-8777 CVE-2015-8778 CVE-2015-8779

Added:
  glibc/trunk/glibc-2.22-CVE-2015-7547.patch
Modified:
  glibc/trunk/PKGBUILD
  glibc/trunk/glibc-2.22-roundup.patch
  glibc/trunk/glibc.install

+
 PKGBUILD   |   11 
 glibc-2.22-CVE-2015-7547.patch |  572 
 glibc-2.22-roundup.patch   | 1822 ++-
 glibc.install  |8 
 4 files changed, 2396 insertions(+), 17 deletions(-)

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


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

2016-02-16 Thread Antonio Rojas
Date: Wednesday, February 17, 2016 @ 01:19:46
  Author: arojas
Revision: 259871

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

Added:
  gegl02/repos/staging-i686/
  gegl02/repos/staging-i686/PKGBUILD
(from rev 259870, gegl02/trunk/PKGBUILD)
  gegl02/repos/staging-i686/gegl-0.2.0-CVE-2012-4433.patch
(from rev 259870, gegl02/trunk/gegl-0.2.0-CVE-2012-4433.patch)
  gegl02/repos/staging-i686/gegl-0.2.0-ffmpeg-0.11.patch
(from rev 259870, gegl02/trunk/gegl-0.2.0-ffmpeg-0.11.patch)
  gegl02/repos/staging-i686/gegl-0.2.0-lua-5.2.patch
(from rev 259870, gegl02/trunk/gegl-0.2.0-lua-5.2.patch)
  gegl02/repos/staging-i686/gegl-0.2.0-remove-src-over-op.patch
(from rev 259870, gegl02/trunk/gegl-0.2.0-remove-src-over-op.patch)
  gegl02/repos/staging-x86_64/
  gegl02/repos/staging-x86_64/PKGBUILD
(from rev 259870, gegl02/trunk/PKGBUILD)
  gegl02/repos/staging-x86_64/gegl-0.2.0-CVE-2012-4433.patch
(from rev 259870, gegl02/trunk/gegl-0.2.0-CVE-2012-4433.patch)
  gegl02/repos/staging-x86_64/gegl-0.2.0-ffmpeg-0.11.patch
(from rev 259870, gegl02/trunk/gegl-0.2.0-ffmpeg-0.11.patch)
  gegl02/repos/staging-x86_64/gegl-0.2.0-lua-5.2.patch
(from rev 259870, gegl02/trunk/gegl-0.2.0-lua-5.2.patch)
  gegl02/repos/staging-x86_64/gegl-0.2.0-remove-src-over-op.patch
(from rev 259870, gegl02/trunk/gegl-0.2.0-remove-src-over-op.patch)

+
 staging-i686/PKGBUILD  |   59 +
 staging-i686/gegl-0.2.0-CVE-2012-4433.patch|  159 +++
 staging-i686/gegl-0.2.0-ffmpeg-0.11.patch  |   47 
 staging-i686/gegl-0.2.0-lua-5.2.patch  |   53 +
 staging-i686/gegl-0.2.0-remove-src-over-op.patch   |  195 +++
 staging-x86_64/PKGBUILD|   59 +
 staging-x86_64/gegl-0.2.0-CVE-2012-4433.patch  |  159 +++
 staging-x86_64/gegl-0.2.0-ffmpeg-0.11.patch|   47 
 staging-x86_64/gegl-0.2.0-lua-5.2.patch|   53 +
 staging-x86_64/gegl-0.2.0-remove-src-over-op.patch |  195 +++
 10 files changed, 1026 insertions(+)

Copied: gegl02/repos/staging-i686/PKGBUILD (from rev 259870, 
gegl02/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-02-17 00:19:46 UTC (rev 259871)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Daniel Isenmann 
+
+pkgname=gegl02
+pkgver=0.2.0
+pkgrel=3
+pkgdesc="Graph based image processing framework (v0.2)"
+arch=('i686' 'x86_64')
+url="http://www.gegl.org/";
+license=('GPL3' 'LGPL3')
+depends=('babl' 'libspiro')
+makedepends=('intltool' 'ruby' 'lua' 'libopenraw' 'openexr' 'mesa' 'glu' 
'ffmpeg' 'librsvg' 'jasper' 'exiv2' 'vala')
+optdepends=('libopenraw: openraw plugin'
+'openexr: openexr plugin'
+'ffmpeg: ffmpeg plugin'
+'librsvg: svg plugin'
+'jasper: jasper plugin')
+options=(!makeflags)
+source=(http://ftp.gimp.org/pub/gegl/${pkgver%.*}/gegl-${pkgver}.tar.bz2
+gegl-0.2.0-ffmpeg-0.11.patch
+gegl-0.2.0-CVE-2012-4433.patch
+gegl-0.2.0-lua-5.2.patch
+gegl-0.2.0-remove-src-over-op.patch)
+sha1sums=('764cc66cb3c7b261b8fc18a6268a0e264a91d573'
+  'f5e4c0edd32e088f768e303081f1ed2d80588d4c'
+  '44d48bd9ad008703de9f8eb683d557bac39a02c8'
+  'c78a092b880874ba7784b652bcd9c532e2b9975d'
+  'dc9ae21cc5ba0fb47ef05793f0cb169572dfab74')
+
+prepare() {
+  cd gegl-${pkgver}
+  patch -Np1 -i ../gegl-0.2.0-ffmpeg-0.11.patch
+  patch -Np1 -i ../gegl-0.2.0-CVE-2012-4433.patch
+  patch -Np1 -i ../gegl-0.2.0-lua-5.2.patch
+  patch -Np1 -i ../gegl-0.2.0-remove-src-over-op.patch
+}
+
+build() {
+  cd gegl-${pkgver}
+  ./configure  --prefix=/usr  --with-sdl --with-librsvg \
+--with-libavformat --with-jasper --without-umfpack --disable-docs
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+check() {
+  cd gegl-${pkgver}
+  make -k check || :
+}
+
+package() {
+  cd gegl-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  rm -r "${pkgdir}/usr/bin"
+}

Copied: gegl02/repos/staging-i686/gegl-0.2.0-CVE-2012-4433.patch (from rev 
259870, gegl02/trunk/gegl-0.2.0-CVE-2012-4433.patch)
===
--- staging-i686/gegl-0.2.0-CVE-2012-4433.patch (rev 0)
+++ staging-i686/gegl-0.2.0-CVE-2012-4433.patch 2016-02-17 00:19:46 UTC (rev 
259871)
@@ -0,0 +1,159 @@
+From ffa77a246652c7e706d690682fe659f50fbe5656 Mon Sep 17 00:00:00 2001
+From: Nils Philippsen 
+Date: Mon, 1 Jul 2013 12:03:51 +0200
+Subject: [PATCH] patch: CVE-2012-4433
+
+Squashed commit of the following:
+
+commit 2a9071e2dc4cfe1aaa7a726805985281936f9874
+Author: Nils Philippsen 
+Date:   Tue Oct 16 16:57:37 2

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

2016-02-16 Thread Antonio Rojas
Date: Wednesday, February 17, 2016 @ 01:19:04
  Author: arojas
Revision: 259870

ffmpeg 3.0 rebuild

Modified:
  gegl02/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-17 00:07:35 UTC (rev 259869)
+++ PKGBUILD2016-02-17 00:19:04 UTC (rev 259870)
@@ -4,7 +4,7 @@
 
 pkgname=gegl02
 pkgver=0.2.0
-pkgrel=2
+pkgrel=3
 pkgdesc="Graph based image processing framework (v0.2)"
 arch=('i686' 'x86_64')
 url="http://www.gegl.org/";


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

2016-02-16 Thread Antonio Rojas
Date: Wednesday, February 17, 2016 @ 01:10:51
  Author: arojas
Revision: 161925

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

Added:
  pianobar/repos/community-staging-i686/
  pianobar/repos/community-staging-i686/PKGBUILD
(from rev 161924, pianobar/trunk/PKGBUILD)
  pianobar/repos/community-staging-x86_64/
  pianobar/repos/community-staging-x86_64/PKGBUILD
(from rev 161924, pianobar/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   26 ++
 community-staging-x86_64/PKGBUILD |   26 ++
 2 files changed, 52 insertions(+)

Copied: pianobar/repos/community-staging-i686/PKGBUILD (from rev 161924, 
pianobar/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-02-17 00:10:51 UTC (rev 161925)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer:
+# Contributor: Daniel Wallace < danielwallace at gtmanfred dot com>
+# Contributor: Mitch Bigelow 
+# Contributor: Patrick Palka 
+
+pkgname=pianobar
+pkgver=2015.11.22
+pkgrel=2
+pkgdesc="console-based frontend for Pandora"
+url="http://6xq.net/0017";
+arch=('i686' 'x86_64')
+license=('MIT')
+depends=('libao' 'ffmpeg' 'curl')
+source=(http://6xq.net/projects/pianobar/$pkgname-$pkgver.tar.bz2)
+sha256sums=('23fbc9e6f55b3277dba7a0f68ff721bad7f1eeea504c616ba008841686de322b')
+
+build() {
+make -C ${pkgname}-${pkgver}
+}
+
+package() {
+make -C ${pkgname}-${pkgver} DESTDIR="$pkgdir" PREFIX=/usr install
+install -Dm644 $pkgname-$pkgver/COPYING 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+install -Dm755 $pkgname-$pkgver/contrib/headless_pianobar 
"$pkgdir/usr/bin/pianoctl"
+}

Copied: pianobar/repos/community-staging-x86_64/PKGBUILD (from rev 161924, 
pianobar/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-02-17 00:10:51 UTC (rev 161925)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer:
+# Contributor: Daniel Wallace < danielwallace at gtmanfred dot com>
+# Contributor: Mitch Bigelow 
+# Contributor: Patrick Palka 
+
+pkgname=pianobar
+pkgver=2015.11.22
+pkgrel=2
+pkgdesc="console-based frontend for Pandora"
+url="http://6xq.net/0017";
+arch=('i686' 'x86_64')
+license=('MIT')
+depends=('libao' 'ffmpeg' 'curl')
+source=(http://6xq.net/projects/pianobar/$pkgname-$pkgver.tar.bz2)
+sha256sums=('23fbc9e6f55b3277dba7a0f68ff721bad7f1eeea504c616ba008841686de322b')
+
+build() {
+make -C ${pkgname}-${pkgver}
+}
+
+package() {
+make -C ${pkgname}-${pkgver} DESTDIR="$pkgdir" PREFIX=/usr install
+install -Dm644 $pkgname-$pkgver/COPYING 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+install -Dm755 $pkgname-$pkgver/contrib/headless_pianobar 
"$pkgdir/usr/bin/pianoctl"
+}


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

2016-02-16 Thread Antonio Rojas
Date: Wednesday, February 17, 2016 @ 01:10:20
  Author: arojas
Revision: 161924

ffmpeg 3.0 rebuild

Modified:
  pianobar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-16 23:56:45 UTC (rev 161923)
+++ PKGBUILD2016-02-17 00:10:20 UTC (rev 161924)
@@ -6,7 +6,7 @@
 
 pkgname=pianobar
 pkgver=2015.11.22
-pkgrel=1
+pkgrel=2
 pkgdesc="console-based frontend for Pandora"
 url="http://6xq.net/0017";
 arch=('i686' 'x86_64')


[arch-commits] Commit in transcode/repos (28 files)

2016-02-16 Thread Antonio Rojas
Date: Wednesday, February 17, 2016 @ 01:07:35
  Author: arojas
Revision: 259869

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

Added:
  transcode/repos/staging-i686/
  transcode/repos/staging-i686/PKGBUILD
(from rev 259868, transcode/trunk/PKGBUILD)
  transcode/repos/staging-i686/subtitleripper-0.3.4-linkingorder.patch
(from rev 259868, transcode/trunk/subtitleripper-0.3.4-linkingorder.patch)
  transcode/repos/staging-i686/subtitleripper-0.3.4-respect-ldflags.patch
(from rev 259868, 
transcode/trunk/subtitleripper-0.3.4-respect-ldflags.patch)
  transcode/repos/staging-i686/transcode-1.1.7-ffmpeg-0.10.patch
(from rev 259868, transcode/trunk/transcode-1.1.7-ffmpeg-0.10.patch)
  transcode/repos/staging-i686/transcode-1.1.7-ffmpeg-0.11.patch
(from rev 259868, transcode/trunk/transcode-1.1.7-ffmpeg-0.11.patch)
  transcode/repos/staging-i686/transcode-1.1.7-ffmpeg-2.4.patch
(from rev 259868, transcode/trunk/transcode-1.1.7-ffmpeg-2.4.patch)
  transcode/repos/staging-i686/transcode-1.1.7-ffmpeg.patch
(from rev 259868, transcode/trunk/transcode-1.1.7-ffmpeg.patch)
  transcode/repos/staging-i686/transcode-1.1.7-ffmpeg2.patch
(from rev 259868, transcode/trunk/transcode-1.1.7-ffmpeg2.patch)
  transcode/repos/staging-i686/transcode-1.1.7-ffmpeg29.patch
(from rev 259868, transcode/trunk/transcode-1.1.7-ffmpeg29.patch)
  transcode/repos/staging-i686/transcode-1.1.7-libav-9.patch
(from rev 259868, transcode/trunk/transcode-1.1.7-libav-9.patch)
  transcode/repos/staging-i686/transcode-1.1.7-preset-force.patch
(from rev 259868, transcode/trunk/transcode-1.1.7-preset-force.patch)
  transcode/repos/staging-i686/transcode-1.1.7-preset-free.patch
(from rev 259868, transcode/trunk/transcode-1.1.7-preset-free.patch)
  transcode/repos/staging-i686/transcode-ffmpeg3.patch
(from rev 259868, transcode/trunk/transcode-ffmpeg3.patch)
  transcode/repos/staging-x86_64/
  transcode/repos/staging-x86_64/PKGBUILD
(from rev 259868, transcode/trunk/PKGBUILD)
  transcode/repos/staging-x86_64/subtitleripper-0.3.4-linkingorder.patch
(from rev 259868, transcode/trunk/subtitleripper-0.3.4-linkingorder.patch)
  transcode/repos/staging-x86_64/subtitleripper-0.3.4-respect-ldflags.patch
(from rev 259868, 
transcode/trunk/subtitleripper-0.3.4-respect-ldflags.patch)
  transcode/repos/staging-x86_64/transcode-1.1.7-ffmpeg-0.10.patch
(from rev 259868, transcode/trunk/transcode-1.1.7-ffmpeg-0.10.patch)
  transcode/repos/staging-x86_64/transcode-1.1.7-ffmpeg-0.11.patch
(from rev 259868, transcode/trunk/transcode-1.1.7-ffmpeg-0.11.patch)
  transcode/repos/staging-x86_64/transcode-1.1.7-ffmpeg-2.4.patch
(from rev 259868, transcode/trunk/transcode-1.1.7-ffmpeg-2.4.patch)
  transcode/repos/staging-x86_64/transcode-1.1.7-ffmpeg.patch
(from rev 259868, transcode/trunk/transcode-1.1.7-ffmpeg.patch)
  transcode/repos/staging-x86_64/transcode-1.1.7-ffmpeg2.patch
(from rev 259868, transcode/trunk/transcode-1.1.7-ffmpeg2.patch)
  transcode/repos/staging-x86_64/transcode-1.1.7-ffmpeg29.patch
(from rev 259868, transcode/trunk/transcode-1.1.7-ffmpeg29.patch)
  transcode/repos/staging-x86_64/transcode-1.1.7-libav-9.patch
(from rev 259868, transcode/trunk/transcode-1.1.7-libav-9.patch)
  transcode/repos/staging-x86_64/transcode-1.1.7-preset-force.patch
(from rev 259868, transcode/trunk/transcode-1.1.7-preset-force.patch)
  transcode/repos/staging-x86_64/transcode-1.1.7-preset-free.patch
(from rev 259868, transcode/trunk/transcode-1.1.7-preset-free.patch)
  transcode/repos/staging-x86_64/transcode-ffmpeg3.patch
(from rev 259868, transcode/trunk/transcode-ffmpeg3.patch)

---+
 staging-i686/PKGBUILD |   95 +++
 staging-i686/subtitleripper-0.3.4-linkingorder.patch  |   28 
 staging-i686/subtitleripper-0.3.4-respect-ldflags.patch   |   28 
 staging-i686/transcode-1.1.7-ffmpeg-0.10.patch|   15 
 staging-i686/transcode-1.1.7-ffmpeg-0.11.patch|  303 ++
 staging-i686/transcode-1.1.7-ffmpeg-2.4.patch |   13 
 staging-i686/transcode-1.1.7-ffmpeg.patch |   51 +
 staging-i686/transcode-1.1.7-ffmpeg2.patch|  332 +++
 staging-i686/transcode-1.1.7-ffmpeg29.patch   |  352 
 staging-i686/transcode-1.1.7-libav-9.patch|   31 +
 staging-i686/transcode-1.1.7-preset-force.patch   |   28 
 staging-i686/transcode-1.1.7-preset-free.patch|   34 +
 staging-i686/transcode-ffmpeg3.patch  |  213 +++
 staging-x86_64/PKGBUILD   |   95 +++
 staging-x86_64/subtitleripper-0.3.4-linkingorder.patch|   28 
 staging-x86_64/subtitleripper-0.3.4-respect-ldflags.patch |   28 
 staging-x86_64/transcode-1.1.7-ffmpeg-0.10.patch  |   15 
 staging-x86_64/transcode-1.1.7-ffmpeg-0.11.patch  |  

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

2016-02-16 Thread Antonio Rojas
Date: Wednesday, February 17, 2016 @ 01:05:59
  Author: arojas
Revision: 259868

ffmpeg 3.0 rebuild

Added:
  transcode/trunk/transcode-1.1.7-ffmpeg29.patch
  transcode/trunk/transcode-ffmpeg3.patch
Modified:
  transcode/trunk/PKGBUILD

+
 PKGBUILD   |   14 +
 transcode-1.1.7-ffmpeg29.patch |  352 +++
 transcode-ffmpeg3.patch|  213 +++
 3 files changed, 575 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-02-16 23:53:38 UTC (rev 259867)
+++ PKGBUILD2016-02-17 00:05:59 UTC (rev 259868)
@@ -6,7 +6,7 @@
 pkgname=transcode
 _sripver=0.3-4
 pkgver=1.1.7
-pkgrel=18
+pkgrel=19
 pkgdesc="A video/DVD ripper and encoder for the terminal/console"
 arch=('i686' 'x86_64')
 url="http://www.transcoding.org/";
@@ -25,7 +25,9 @@
transcode-1.1.7-libav-9.patch 
transcode-1.1.7-preset-force.patch
transcode-1.1.7-ffmpeg2.patch
-transcode-1.1.7-ffmpeg-2.4.patch)
+transcode-1.1.7-ffmpeg-2.4.patch
+   transcode-1.1.7-ffmpeg29.patch
+   transcode-ffmpeg3.patch)
 sha1sums=('e35df68b960eb56ef0a59a4cdbed1491be56aee6'
   'd93ff3578dd5f722c8f4ef16bc0903eec5781a0d'
   'fa05aa1770d9350d90b7cf315aa7c4a1fd921ac7'
@@ -37,7 +39,9 @@
   'ef1cccd35317d3a28443b654da49de731cdf1766'
   '034853427bc784a80b333d2e2f4bab44f0b86ce0'
   '764de67996e2c4947346c7a91586cc4ca826a8e2'
-  'b590dfc30cdc4bc2a6825de247928b46a8928a9a')
+  'b590dfc30cdc4bc2a6825de247928b46a8928a9a'
+  '0e8769c1e8ec9f0ed87266c404ba13560db3578d'
+  '6aefa6a13fa70f8cc92ed03dd5383a4adcd4a6d0')
 
 prepare() {
   cd ${pkgname}-${pkgver}
@@ -49,7 +53,9 @@
   patch -p1 -i "${srcdir}/transcode-1.1.7-preset-force.patch"
   patch -p1 -i "${srcdir}/transcode-1.1.7-ffmpeg2.patch"
   patch -p1 -i "${srcdir}/transcode-1.1.7-ffmpeg-2.4.patch"
-  sed -i 's|freetype/ftglyph.h|freetype2/ftglyph.h|' 
filter/subtitler/load_font.c
+  patch -p1 -i "${srcdir}/transcode-1.1.7-ffmpeg29.patch"
+  patch -p1 -i "${srcdir}/transcode-ffmpeg3.patch"
+  sed -i 's|freetype/ftglyph.h|freetype2/freetype/ftglyph.h|' 
filter/subtitler/load_font.c
 
   cd ../subtitleripper
   patch -p1 -i "${srcdir}/subtitleripper-0.3.4-linkingorder.patch"

Added: transcode-1.1.7-ffmpeg29.patch
===
--- transcode-1.1.7-ffmpeg29.patch  (rev 0)
+++ transcode-1.1.7-ffmpeg29.patch  2016-02-17 00:05:59 UTC (rev 259868)
@@ -0,0 +1,352 @@
+Index: transcode-1.1.7/encode/encode_lavc.c
+===
+--- transcode-1.1.7.orig/encode/encode_lavc.c
 transcode-1.1.7/encode/encode_lavc.c
+@@ -233,7 +233,7 @@ static void pre_encode_video_yuv420p(TCL
+  vframe_list_t *vframe)
+ {
+ avpicture_fill((AVPicture *)&pd->ff_venc_frame, vframe->video_buf,
+-PIX_FMT_YUV420P,
++AV_PIX_FMT_YUV420P,
+ pd->ff_vcontext.width, pd->ff_vcontext.height);
+ }
+ 
+@@ -247,7 +247,7 @@ static void pre_encode_video_yuv420p_huf
+ IMG_YUV_DEFAULT,
+ pd->ff_vcontext.width, pd->ff_vcontext.height);
+ avpicture_fill((AVPicture *)&pd->ff_venc_frame, pd->vframe_buf->video_buf,
+-   PIX_FMT_YUV422P,
++   AV_PIX_FMT_YUV422P,
+pd->ff_vcontext.width, pd->ff_vcontext.height);
+ ac_imgconvert(src, IMG_YUV_DEFAULT,
+   pd->ff_venc_frame.data, IMG_YUV422P,
+@@ -263,7 +263,7 @@ static void pre_encode_video_yuv422p(TCL
+ IMG_YUV422P,
+ pd->ff_vcontext.width, pd->ff_vcontext.height);
+ avpicture_fill((AVPicture *)&pd->ff_venc_frame, pd->vframe_buf->video_buf,
+-   PIX_FMT_YUV420P,
++   AV_PIX_FMT_YUV420P,
+pd->ff_vcontext.width, pd->ff_vcontext.height);
+ ac_imgconvert(src, IMG_YUV422P,
+   pd->ff_venc_frame.data, IMG_YUV420P,
+@@ -275,7 +275,7 @@ static void pre_encode_video_yuv422p_huf
+  vframe_list_t *vframe)
+ {
+ avpicture_fill((AVPicture *)&pd->ff_venc_frame, vframe->video_buf,
+-   PIX_FMT_YUV422P,
++   AV_PIX_FMT_YUV422P,
+pd->ff_vcontext.width, pd->ff_vcontext.height);
+ 
+ }
+@@ -285,7 +285,7 @@ static void pre_encode_video_rgb24(TCLav
+vframe_list_t *vframe)
+ {
+ avpicture_fill((AVPicture *)&pd->ff_venc_frame, pd->vframe_buf->video_buf,
+-   PIX_FMT_YUV420P,
++   AV_PIX_FMT_YUV420P,
+pd->ff_vcontext.width, pd->ff_vcontext.height);
+ ac_imgconvert(&vframe->video_buf, IMG_RGB_DEFAULT,

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

2016-02-16 Thread Balló György
Date: Wednesday, February 17, 2016 @ 00:56:45
  Author: bgyorgy
Revision: 161923

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

Added:
  simutrans/repos/community-i686/PKGBUILD
(from rev 161922, simutrans/trunk/PKGBUILD)
  simutrans/repos/community-i686/config.patch
(from rev 161922, simutrans/trunk/config.patch)
  simutrans/repos/community-i686/no-optimise.patch
(from rev 161922, simutrans/trunk/no-optimise.patch)
  simutrans/repos/community-i686/path-for-game-data.patch
(from rev 161922, simutrans/trunk/path-for-game-data.patch)
  simutrans/repos/community-i686/settings-folder.patch
(from rev 161922, simutrans/trunk/settings-folder.patch)
  simutrans/repos/community-i686/simutrans.desktop
(from rev 161922, simutrans/trunk/simutrans.desktop)
  simutrans/repos/community-x86_64/PKGBUILD
(from rev 161922, simutrans/trunk/PKGBUILD)
  simutrans/repos/community-x86_64/config.patch
(from rev 161922, simutrans/trunk/config.patch)
  simutrans/repos/community-x86_64/no-optimise.patch
(from rev 161922, simutrans/trunk/no-optimise.patch)
  simutrans/repos/community-x86_64/path-for-game-data.patch
(from rev 161922, simutrans/trunk/path-for-game-data.patch)
  simutrans/repos/community-x86_64/settings-folder.patch
(from rev 161922, simutrans/trunk/settings-folder.patch)
  simutrans/repos/community-x86_64/simutrans.desktop
(from rev 161922, simutrans/trunk/simutrans.desktop)
Deleted:
  simutrans/repos/community-i686/PKGBUILD
  simutrans/repos/community-i686/config.patch
  simutrans/repos/community-i686/no-optimise.patch
  simutrans/repos/community-i686/path-for-game-data.patch
  simutrans/repos/community-i686/settings-folder.patch
  simutrans/repos/community-i686/simutrans.desktop
  simutrans/repos/community-x86_64/PKGBUILD
  simutrans/repos/community-x86_64/config.patch
  simutrans/repos/community-x86_64/no-optimise.patch
  simutrans/repos/community-x86_64/path-for-game-data.patch
  simutrans/repos/community-x86_64/settings-folder.patch
  simutrans/repos/community-x86_64/simutrans.desktop

---+
 /PKGBUILD |  148 
 /config.patch |   66 
 /no-optimise.patch|   84 +++
 /path-for-game-data.patch |   36 ++
 /settings-folder.patch|   24 
 /simutrans.desktop|   18 +++
 community-i686/PKGBUILD   |   74 --
 community-i686/config.patch   |   33 --
 community-i686/no-optimise.patch  |   42 ---
 community-i686/path-for-game-data.patch   |   18 ---
 community-i686/settings-folder.patch  |   12 --
 community-i686/simutrans.desktop  |9 -
 community-x86_64/PKGBUILD |   74 --
 community-x86_64/config.patch |   33 --
 community-x86_64/no-optimise.patch|   42 ---
 community-x86_64/path-for-game-data.patch |   18 ---
 community-x86_64/settings-folder.patch|   12 --
 community-x86_64/simutrans.desktop|9 -
 18 files changed, 376 insertions(+), 376 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-16 23:56:28 UTC (rev 161922)
+++ community-i686/PKGBUILD 2016-02-16 23:56:45 UTC (rev 161923)
@@ -1,74 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Anton Bazhenov 
-# Contributor: Jaroslav Lichtblau 
-# Contributor: Gilles Gagniard 
-# Contributor: JD Steffen 
-
-pkgname=simutrans
-pkgver=120.1.2
-_pkgver=120-1-2
-pkgrel=1
-pkgdesc="An open source transportation simulation game"
-arch=('i686' 'x86_64')
-url="http://simutrans.com/";
-license=('custom:Artistic')
-depends=('gcc-libs' 'zlib' 'sdl_mixer' 'bzip2' 'simutrans-pak64')
-makedepends=('imagemagick' 'dos2unix')
-optdepends=('timidity++: play MIDI music')
-source=(http://downloads.sourceforge.net/$pkgname/$pkgname-src-$_pkgver.zip
-http://downloads.sourceforge.net/$pkgname/simulinux-i86-$_pkgver.zip
-no-optimise.patch
-settings-folder.patch
-path-for-game-data.patch
-config.patch
-simutrans.desktop)
-md5sums=('516c7c6fbd0882a2ef0e29589cb3b7bd'
- '5b57cc5bf1622c64b4aeba5041c92445'
- '4ab1d787772fc279181c1bc89dd42bf9'
- 'c87d9a9910bc371df5d50f7f1ec298bb'
- 'e716340d372af264ca05510facfe5d2c'
- 'c2f4e494168e235380373974c91a0803'
- 'f41f7a08ad517ef2b60412859eb49963')
-
-prepare() {
-  cd "$srcdir"
-
-  # Some files are distributed in DOS format
-  find . -type f -exec dos2unix -q '{}' \;
-
-  # Don't overwrite default optimization flags
-  patch -Np1 -i no-optimise.patch
-
-  # Adjust paths
-  patch -Np0 -i settings-folder.patch
-  patch -Np1 -i path-for-game-data.patch
-
-  # Configure the build process
-  cp config.template config.defau

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

2016-02-16 Thread Balló György
Date: Wednesday, February 17, 2016 @ 00:56:28
  Author: bgyorgy
Revision: 161922

upgpkg: simutrans 120.1.3-1

Update to new version

Modified:
  simutrans/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-16 23:52:09 UTC (rev 161921)
+++ PKGBUILD2016-02-16 23:56:28 UTC (rev 161922)
@@ -6,8 +6,8 @@
 # Contributor: JD Steffen 
 
 pkgname=simutrans
-pkgver=120.1.2
-_pkgver=120-1-2
+pkgver=120.1.3
+_pkgver=120-1-3
 pkgrel=1
 pkgdesc="An open source transportation simulation game"
 arch=('i686' 'x86_64')
@@ -23,8 +23,8 @@
 path-for-game-data.patch
 config.patch
 simutrans.desktop)
-md5sums=('516c7c6fbd0882a2ef0e29589cb3b7bd'
- '5b57cc5bf1622c64b4aeba5041c92445'
+md5sums=('ce22c82b01f713d6a75f24561f72910c'
+ '693c44eceda2bdb30249253387b838d8'
  '4ab1d787772fc279181c1bc89dd42bf9'
  'c87d9a9910bc371df5d50f7f1ec298bb'
  'e716340d372af264ca05510facfe5d2c'


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

2016-02-16 Thread Dave Reisner
Date: Wednesday, February 17, 2016 @ 00:53:38
  Author: dreisner
Revision: 259867

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

Added:
  systemd/repos/testing-i686/PKGBUILD
(from rev 259866, systemd/trunk/PKGBUILD)
  systemd/repos/testing-i686/arch.conf
(from rev 259866, systemd/trunk/arch.conf)
  systemd/repos/testing-i686/initcpio-hook-udev
(from rev 259866, systemd/trunk/initcpio-hook-udev)
  systemd/repos/testing-i686/initcpio-install-systemd
(from rev 259866, systemd/trunk/initcpio-install-systemd)
  systemd/repos/testing-i686/initcpio-install-udev
(from rev 259866, systemd/trunk/initcpio-install-udev)
  systemd/repos/testing-i686/loader.conf
(from rev 259866, systemd/trunk/loader.conf)
  systemd/repos/testing-i686/splash-arch.bmp
(from rev 259866, systemd/trunk/splash-arch.bmp)
  systemd/repos/testing-i686/systemd.install
(from rev 259866, systemd/trunk/systemd.install)
  systemd/repos/testing-x86_64/PKGBUILD
(from rev 259866, systemd/trunk/PKGBUILD)
  systemd/repos/testing-x86_64/arch.conf
(from rev 259866, systemd/trunk/arch.conf)
  systemd/repos/testing-x86_64/initcpio-hook-udev
(from rev 259866, systemd/trunk/initcpio-hook-udev)
  systemd/repos/testing-x86_64/initcpio-install-systemd
(from rev 259866, systemd/trunk/initcpio-install-systemd)
  systemd/repos/testing-x86_64/initcpio-install-udev
(from rev 259866, systemd/trunk/initcpio-install-udev)
  systemd/repos/testing-x86_64/loader.conf
(from rev 259866, systemd/trunk/loader.conf)
  systemd/repos/testing-x86_64/splash-arch.bmp
(from rev 259866, systemd/trunk/splash-arch.bmp)
  systemd/repos/testing-x86_64/systemd.install
(from rev 259866, systemd/trunk/systemd.install)
Deleted:
  systemd/repos/testing-i686/PKGBUILD
  systemd/repos/testing-i686/arch.conf
  systemd/repos/testing-i686/initcpio-hook-udev
  systemd/repos/testing-i686/initcpio-install-systemd
  systemd/repos/testing-i686/initcpio-install-udev
  systemd/repos/testing-i686/loader.conf
  systemd/repos/testing-i686/splash-arch.bmp
  systemd/repos/testing-i686/systemd.install
  systemd/repos/testing-x86_64/PKGBUILD
  systemd/repos/testing-x86_64/arch.conf
  systemd/repos/testing-x86_64/initcpio-hook-udev
  systemd/repos/testing-x86_64/initcpio-install-systemd
  systemd/repos/testing-x86_64/initcpio-install-udev
  systemd/repos/testing-x86_64/loader.conf
  systemd/repos/testing-x86_64/splash-arch.bmp
  systemd/repos/testing-x86_64/systemd.install

-+
 /PKGBUILD   |  360 ++
 /arch.conf  |   14 +
 /initcpio-hook-udev |   44 +++
 /initcpio-install-systemd   |  340 
 /initcpio-install-udev  |   56 
 /loader.conf|2 
 /systemd.install|  410 ++
 testing-i686/PKGBUILD   |  171 
 testing-i686/arch.conf  |7 
 testing-i686/initcpio-hook-udev |   22 -
 testing-i686/initcpio-install-systemd   |  170 
 testing-i686/initcpio-install-udev  |   28 --
 testing-i686/loader.conf|1 
 testing-i686/systemd.install|  205 ---
 testing-x86_64/PKGBUILD |  171 
 testing-x86_64/arch.conf|7 
 testing-x86_64/initcpio-hook-udev   |   22 -
 testing-x86_64/initcpio-install-systemd |  170 
 testing-x86_64/initcpio-install-udev|   28 --
 testing-x86_64/loader.conf  |1 
 testing-x86_64/systemd.install  |  205 ---
 21 files changed, 1226 insertions(+), 1208 deletions(-)

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


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

2016-02-16 Thread Dave Reisner
Date: Wednesday, February 17, 2016 @ 00:52:38
  Author: dreisner
Revision: 259866

upgpkg: systemd 229-2

- cherry pick some bugfixes from HEAD

Modified:
  systemd/trunk/PKGBUILD

--+
 PKGBUILD |   11 ++-
 1 file changed, 10 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-02-16 23:09:16 UTC (rev 259865)
+++ PKGBUILD2016-02-16 23:52:38 UTC (rev 259866)
@@ -4,7 +4,7 @@
 pkgbase=systemd
 pkgname=('systemd' 'libsystemd' 'systemd-sysvcompat')
 pkgver=229
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url="http://www.freedesktop.org/wiki/Software/systemd";
 makedepends=('acl' 'cryptsetup' 'docbook-xsl' 'gperf' 'lz4' 'xz' 'pam' 'libelf'
@@ -30,6 +30,15 @@
 prepare() {
   cd "$pkgbase"
 
+  # networkd: FIONREAD is not reliable on some sockets
+  git cherry-pick -n 4edc2c9b6b5b921873eb82e58719ed4d9e0d69bf
+
+  # fix assertion failure in src/core/timer.c on bootup (FS#48197)
+  git cherry-pick -n 6d2353394fc33e923d1ab464c8f88df2a5105ffb
+
+  # fix udevd error checking from cg_unified() (FS#48188)
+  git cherry-pick -n 6d2353394fc33e923d1ab464c8f88df2a5105ffb
+
   ./autogen.sh
 }
 


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

2016-02-16 Thread Balló György
Date: Wednesday, February 17, 2016 @ 00:52:09
  Author: bgyorgy
Revision: 161921

archrelease: copy trunk to community-any

Added:
  python2-futures/repos/community-any/LICENSE
(from rev 161920, python2-futures/trunk/LICENSE)
  python2-futures/repos/community-any/PKGBUILD
(from rev 161920, python2-futures/trunk/PKGBUILD)
Deleted:
  python2-futures/repos/community-any/LICENSE
  python2-futures/repos/community-any/PKGBUILD

--+
 LICENSE  |   42 +-
 PKGBUILD |   60 ++--
 2 files changed, 51 insertions(+), 51 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2016-02-16 23:52:02 UTC (rev 161920)
+++ LICENSE 2016-02-16 23:52:09 UTC (rev 161921)
@@ -1,21 +0,0 @@
-Copyright 2009 Brian Quinlan. All rights reserved.
-
-Redistribution and use in source and binary forms, with or without 
modification,
-are permitted provided that the following conditions are met:
-
-   1. Redistributions of source code must retain the above copyright notice,
-  this list of conditions and the following disclaimer.
-   2. Redistributions in binary 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 BRIAN QUINLAN "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
-HALL THE FREEBSD PROJECT 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.
\ No newline at end of file

Copied: python2-futures/repos/community-any/LICENSE (from rev 161920, 
python2-futures/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2016-02-16 23:52:09 UTC (rev 161921)
@@ -0,0 +1,21 @@
+Copyright 2009 Brian Quinlan. All rights reserved.
+
+Redistribution and use in source and binary forms, with or without 
modification,
+are permitted provided that the following conditions are met:
+
+   1. Redistributions of source code must retain the above copyright notice,
+  this list of conditions and the following disclaimer.
+   2. Redistributions in binary 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 BRIAN QUINLAN "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
+HALL THE FREEBSD PROJECT 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.
\ No newline at end of file

Deleted: PKGBUILD
===
--- PKGBUILD2016-02-16 23:52:02 UTC (rev 161920)
+++ PKGBUILD2016-02-16 23:52:09 UTC (rev 161921)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Jaroslav Lichtblau 
-# Contributor: Allan McRae 
-
-pkgname=python2-futures
-_pkgname=futures
-pkgver=3.0.4
-pkgrel=1
-pkgdesc="Backport of the concurrent.futures package from Python 3.2"
-arch=('any')
-url="https://github.com/agronholm/pythonfutures";
-license=('BSD')
-depends=('python2')
-source=("http://pypi.python.org/packages/source/f/$_pkgname/$_pkgname-$pkgver.tar.gz";
- LICENSE)
-md5sums=('27f0941502b3852ac78f3384e94f544e'
- 'dd6708d05936d3f6c4e20ed14c87b5e3')
-
-build() {
-  cd $_pkgname-$pkgver
-  python2 setup.py build
-}
-
-package() {
-  cd $_pkgname-$pkgver
-  python2 setup.py install --root "$pkgdir" --optimize=1
-
-  install -Dm644 ../LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python2-futures/repos/community-any/PKGBUILD (from rev 161920, 
python2-futures/trunk/PKGBUILD)
===
--- PKGBUILD   

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

2016-02-16 Thread Balló György
Date: Wednesday, February 17, 2016 @ 00:52:02
  Author: bgyorgy
Revision: 161920

upgpkg: python2-futures 3.0.5-1

Update to new version

Modified:
  python2-futures/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-16 23:47:29 UTC (rev 161919)
+++ PKGBUILD2016-02-16 23:52:02 UTC (rev 161920)
@@ -5,7 +5,7 @@
 
 pkgname=python2-futures
 _pkgname=futures
-pkgver=3.0.4
+pkgver=3.0.5
 pkgrel=1
 pkgdesc="Backport of the concurrent.futures package from Python 3.2"
 arch=('any')
@@ -14,7 +14,7 @@
 depends=('python2')
 
source=("http://pypi.python.org/packages/source/f/$_pkgname/$_pkgname-$pkgver.tar.gz";
  LICENSE)
-md5sums=('27f0941502b3852ac78f3384e94f544e'
+md5sums=('ced2c365e518242512d7a398b515ff95'
  'dd6708d05936d3f6c4e20ed14c87b5e3')
 
 build() {


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

2016-02-16 Thread Balló György
Date: Wednesday, February 17, 2016 @ 00:47:29
  Author: bgyorgy
Revision: 161919

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

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

---+
 /PKGBUILD |   64 
 /metacity.install |   22 
 community-i686/PKGBUILD   |   32 --
 community-i686/metacity.install   |   11 --
 community-x86_64/PKGBUILD |   32 --
 community-x86_64/metacity.install |   11 --
 6 files changed, 86 insertions(+), 86 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-16 23:47:19 UTC (rev 161918)
+++ community-i686/PKGBUILD 2016-02-16 23:47:29 UTC (rev 161919)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Jan de Groot 
-
-pkgname=metacity
-pkgver=3.18.1
-pkgrel=1
-pkgdesc="Legacy GNOME window manager"
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('dconf' 'libcanberra' 'libgtop' 'libsm' 'gsettings-desktop-schemas' 
'gtk3' 'startup-notification' 'zenity')
-makedepends=('intltool' 'itstool')
-url="https://wiki.gnome.org/Projects/Metacity";
-install=metacity.install
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('5ccb2343413b6ba4d75f300b494524bde7fe77ec818f7f73e3b232777ce6dad8')
-
-prepare() {
-  cd $pkgname-$pkgver
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--libexecdir=/usr/lib/$pkgname \
-  --disable-static --disable-schemas-compile
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: metacity/repos/community-i686/PKGBUILD (from rev 161918, 
metacity/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-16 23:47:29 UTC (rev 161919)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributor: Jan de Groot 
+
+pkgname=metacity
+pkgver=3.18.2
+pkgrel=1
+pkgdesc="Legacy GNOME window manager"
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('dconf' 'libcanberra' 'libgtop' 'libsm' 'gsettings-desktop-schemas' 
'gtk3' 'startup-notification' 'zenity')
+makedepends=('intltool' 'itstool')
+url="https://wiki.gnome.org/Projects/Metacity";
+install=metacity.install
+source=(https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('e3ef981d0f159c57a8bf23f04755a5fe34f634aaada52fb30cd7b05dd43243dc')
+
+prepare() {
+  cd $pkgname-$pkgver
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--libexecdir=/usr/lib/$pkgname \
+  --disable-static --disable-schemas-compile
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-i686/metacity.install
===
--- community-i686/metacity.install 2016-02-16 23:47:19 UTC (rev 161918)
+++ community-i686/metacity.install 2016-02-16 23:47:29 UTC (rev 161919)
@@ -1,11 +0,0 @@
-post_install() {
-glib-compile-schemas /usr/share/glib-2.0/schemas
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: metacity/repos/community-i686/metacity.install (from rev 161918, 
metacity/trunk/metacity.install)
===
--- community-i686/metacity.install (rev 0)
+++ community-i686/metacity.install 2016-02-16 23:47:29 UTC (rev 161919)
@@ -0,0 +1,11 @@
+post_install() {
+glib-compile-schemas /usr/share/glib-2.0/schemas
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-02-16 23:47:19 UTC (rev 161918)
+++ community-x86_64/PKGBUILD   2016-02-16 23:47:29 UTC (rev 161919)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Jan de Groot 
-
-pkgname=metacity
-pkgver=3.18.1
-pkgrel=1
-pkgdesc="Legacy GNOME window manager"
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('dconf' 'libcanberr

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

2016-02-16 Thread Balló György
Date: Wednesday, February 17, 2016 @ 00:47:19
  Author: bgyorgy
Revision: 161918

upgpkg: metacity 3.18.2-1

Update to new version

Modified:
  metacity/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-16 23:41:22 UTC (rev 161917)
+++ PKGBUILD2016-02-16 23:47:19 UTC (rev 161918)
@@ -3,7 +3,7 @@
 # Contributor: Jan de Groot 
 
 pkgname=metacity
-pkgver=3.18.1
+pkgver=3.18.2
 pkgrel=1
 pkgdesc="Legacy GNOME window manager"
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 url="https://wiki.gnome.org/Projects/Metacity";
 install=metacity.install
 
source=(https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('5ccb2343413b6ba4d75f300b494524bde7fe77ec818f7f73e3b232777ce6dad8')
+sha256sums=('e3ef981d0f159c57a8bf23f04755a5fe34f634aaada52fb30cd7b05dd43243dc')
 
 prepare() {
   cd $pkgname-$pkgver


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

2016-02-16 Thread Balló György
Date: Wednesday, February 17, 2016 @ 00:41:12
  Author: bgyorgy
Revision: 161916

upgpkg: gnome-panel 3.18.2-1

Update to new version

Modified:
  gnome-panel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-16 23:31:08 UTC (rev 161915)
+++ PKGBUILD2016-02-16 23:41:12 UTC (rev 161916)
@@ -3,8 +3,8 @@
 # Contributor: Jan de Groot 
 
 pkgname=gnome-panel
-pkgver=3.18.1
-pkgrel=3
+pkgver=3.18.2
+pkgrel=1
 pkgdesc="Panel of GNOME Flashback"
 arch=('i686' 'x86_64')
 url="https://wiki.gnome.org/Projects/GnomePanel";
@@ -15,12 +15,16 @@
 'gnome-applets: Extra applets for the panel')
 install=$pkgname.install
 
source=(https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('c62518031fe86cd36a2385686363a7e5eb0a94f2fc6a8a48cf56d94654540377')
+sha256sums=('e2d8a51a2b9b3a4aa948647992f6fee23c3e69ec5639f2a824383e8a61fbac29')
 
 build() {
   cd $pkgname-$pkgver
   ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--libexecdir=/usr/lib/$pkgname \
   --disable-schemas-compile
+
+  #https://bugzilla.gnome.org/show_bug.cgi?id=656231
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
   make
 }
 


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

2016-02-16 Thread Balló György
Date: Wednesday, February 17, 2016 @ 00:41:22
  Author: bgyorgy
Revision: 161917

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

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

--+
 /PKGBUILD|   68 +
 /gnome-panel.install |   24 +++
 community-i686/PKGBUILD  |   30 --
 community-i686/gnome-panel.install   |   12 -
 community-x86_64/PKGBUILD|   30 --
 community-x86_64/gnome-panel.install |   12 -
 6 files changed, 92 insertions(+), 84 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-16 23:41:12 UTC (rev 161916)
+++ community-i686/PKGBUILD 2016-02-16 23:41:22 UTC (rev 161917)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Jan de Groot 
-
-pkgname=gnome-panel
-pkgver=3.18.1
-pkgrel=3
-pkgdesc="Panel of GNOME Flashback"
-arch=('i686' 'x86_64')
-url="https://wiki.gnome.org/Projects/GnomePanel";
-license=('GPL')
-depends=('evolution-data-server' 'gnome-desktop' 'gnome-menus' 'libwnck3')
-makedepends=('intltool' 'itstool' 'gobject-introspection')
-optdepends=('alacarte: Main menu editor'
-'gnome-applets: Extra applets for the panel')
-install=$pkgname.install
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('c62518031fe86cd36a2385686363a7e5eb0a94f2fc6a8a48cf56d94654540377')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--libexecdir=/usr/lib/$pkgname \
-  --disable-schemas-compile
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: gnome-panel/repos/community-i686/PKGBUILD (from rev 161916, 
gnome-panel/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-16 23:41:22 UTC (rev 161917)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributor: Jan de Groot 
+
+pkgname=gnome-panel
+pkgver=3.18.2
+pkgrel=1
+pkgdesc="Panel of GNOME Flashback"
+arch=('i686' 'x86_64')
+url="https://wiki.gnome.org/Projects/GnomePanel";
+license=('GPL')
+depends=('evolution-data-server' 'gnome-desktop' 'gnome-menus' 'libwnck3')
+makedepends=('intltool' 'itstool' 'gobject-introspection')
+optdepends=('alacarte: Main menu editor'
+'gnome-applets: Extra applets for the panel')
+install=$pkgname.install
+source=(https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('e2d8a51a2b9b3a4aa948647992f6fee23c3e69ec5639f2a824383e8a61fbac29')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--libexecdir=/usr/lib/$pkgname \
+  --disable-schemas-compile
+
+  #https://bugzilla.gnome.org/show_bug.cgi?id=656231
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-i686/gnome-panel.install
===
--- community-i686/gnome-panel.install  2016-02-16 23:41:12 UTC (rev 161916)
+++ community-i686/gnome-panel.install  2016-02-16 23:41:22 UTC (rev 161917)
@@ -1,12 +0,0 @@
-post_install() {
-  glib-compile-schemas usr/share/glib-2.0/schemas
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: gnome-panel/repos/community-i686/gnome-panel.install (from rev 161916, 
gnome-panel/trunk/gnome-panel.install)
===
--- community-i686/gnome-panel.install  (rev 0)
+++ community-i686/gnome-panel.install  2016-02-16 23:41:22 UTC (rev 161917)
@@ -0,0 +1,12 @@
+post_install() {
+  glib-compile-schemas usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/P

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

2016-02-16 Thread Sven-Hendrik Haase
Date: Wednesday, February 17, 2016 @ 00:31:00
  Author: svenstaro
Revision: 161914

upgpkg: mopidy 2.0.0-2

Fix FS#48215

Modified:
  mopidy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-16 23:29:20 UTC (rev 161913)
+++ PKGBUILD2016-02-16 23:31:00 UTC (rev 161914)
@@ -3,7 +3,7 @@
 
 pkgname=mopidy
 pkgver=2.0.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Mopidy is an extensible music server written in Python"
 arch=('any')
 url="http://www.mopidy.com";
@@ -12,10 +12,10 @@
  'python2-pykka>=1.1'
  'python2-setuptools'
  'python2-requests'
- 'gstreamer0.10-python'
- 'gstreamer0.10-base-plugins'
- 'gstreamer0.10-good-plugins'
- 'gstreamer0.10-ugly-plugins'
+ 'gstreamer'
+ 'gst-python2'
+ 'gst-plugins-good'
+ 'gst-plugins-ugly'
  'python2-tornado>=2.3')
 optdepends=('mopidy-spotify: Spotify backend'
 'mopidy-scrobbler: Last.FM scrobbler'


[arch-commits] Commit in mopidy/repos/community-any (8 files)

2016-02-16 Thread Sven-Hendrik Haase
Date: Wednesday, February 17, 2016 @ 00:31:08
  Author: svenstaro
Revision: 161915

archrelease: copy trunk to community-any

Added:
  mopidy/repos/community-any/PKGBUILD
(from rev 161914, mopidy/trunk/PKGBUILD)
  mopidy/repos/community-any/logging.conf
(from rev 161914, mopidy/trunk/logging.conf)
  mopidy/repos/community-any/mopidy.conf
(from rev 161914, mopidy/trunk/mopidy.conf)
  mopidy/repos/community-any/mopidy.install
(from rev 161914, mopidy/trunk/mopidy.install)
Deleted:
  mopidy/repos/community-any/PKGBUILD
  mopidy/repos/community-any/logging.conf
  mopidy/repos/community-any/mopidy.conf
  mopidy/repos/community-any/mopidy.install

+
 PKGBUILD   |  144 +++
 logging.conf   |   42 
 mopidy.conf|   30 +--
 mopidy.install |   24 -
 4 files changed, 120 insertions(+), 120 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-02-16 23:31:00 UTC (rev 161914)
+++ PKGBUILD2016-02-16 23:31:08 UTC (rev 161915)
@@ -1,72 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Alexandre Petitjean 
-
-pkgname=mopidy
-pkgver=2.0.0
-pkgrel=1
-pkgdesc="Mopidy is an extensible music server written in Python"
-arch=('any')
-url="http://www.mopidy.com";
-license=('APACHE')
-depends=('python2'
- 'python2-pykka>=1.1'
- 'python2-setuptools'
- 'python2-requests'
- 'gstreamer0.10-python'
- 'gstreamer0.10-base-plugins'
- 'gstreamer0.10-good-plugins'
- 'gstreamer0.10-ugly-plugins'
- 'python2-tornado>=2.3')
-optdepends=('mopidy-spotify: Spotify backend'
-'mopidy-scrobbler: Last.FM scrobbler'
-'mopidy-mopify: Web client with Spotify-inspired interface'
-'mopidy-soundcloud: Soundcloud backend')
-makedepends=('python2-sphinx')
-backup=('etc/mopidy/mopidy.conf')
-install=$pkgname.install
-source=("https://github.com/mopidy/mopidy/archive/v${pkgver}.tar.gz";
-'mopidy.conf'
-'logging.conf')
-md5sums=('ada9471fe369a7c70c2d4cb3f0e10abc'
- '5e3c3308a75241b2f7ea5647287ca70c'
- 'dbacd3800f63ef3c2a7135a6f3ee573d')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  make -C docs SPHINXBUILD=sphinx-build2 man
-  make -C docs SPHINXBUILD=sphinx-build2 html
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  python2 setup.py install --root="${pkgdir}/" --optimize=1
-
-  install -Dm755 extra/mopidyctl/mopidyctl "${pkgdir}/usr/bin/mopidyctl"
-
-  install -dm755 "${pkgdir}/usr/share/doc/mopidy"
-  cp -r docs/_build/html "${pkgdir}/usr/share/doc/mopidy"
-
-  install -dm755 "${pkgdir}/usr/share/man/man1/"
-  gzip -c docs/_build/man/mopidy.1 > 
"${pkgdir}/usr/share/man/man1/mopidy.1.gz" 
-
-  install -dm755 "${pkgdir}/usr/share/man/man8/"
-  gzip -c extra/mopidyctl/mopidyctl.8 > 
"${pkgdir}/usr/share/man/man8/mopidyctl.8.gz" 
-
-  install -Dm644 "${srcdir}/mopidy.conf" "${pkgdir}/etc/mopidy/mopidy.conf"
-  install -Dm644 "${srcdir}/logging.conf" "${pkgdir}/etc/mopidy/logging.conf"
-
-  install -Dm644 "extra/systemd/mopidy.service" 
"${pkgdir}/usr/lib/systemd/system/mopidy.service"
-  install -Dm644 "extra/desktop/mopidy.desktop" 
"${pkgdir}/usr/share/applications/mopidy.desktop"
-
-  install -dm755 -g 46 -o 46 "${pkgdir}/var/cache/mopidy"
-  install -dm755 -g 46 -o 46 "${pkgdir}/var/log/mopidy"
-  install -dm755 -g 46 -o 46 "${pkgdir}/var/lib/mopidy"
-  install -dm755 -g 46 -o 46 "${pkgdir}/var/lib/mopidy/local"
-  install -dm755 -g 46 -o 46 "${pkgdir}/var/lib/mopidy/media"
-  install -dm755 -g 46 -o 46 "${pkgdir}/var/lib/mopidy/playlists"
-
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: mopidy/repos/community-any/PKGBUILD (from rev 161914, 
mopidy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-02-16 23:31:08 UTC (rev 161915)
@@ -0,0 +1,72 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Alexandre Petitjean 
+
+pkgname=mopidy
+pkgver=2.0.0
+pkgrel=2
+pkgdesc="Mopidy is an extensible music server written in Python"
+arch=('any')
+url="http://www.mopidy.com";
+license=('APACHE')
+depends=('python2'
+ 'python2-pykka>=1.1'
+ 'python2-setuptools'
+ 'python2-requests'
+ 'gstreamer'
+ 'gst-python2'
+ 'gst-plugins-good'
+ 'gst-plugins-ugly'
+ 'python2-tornado>=2.3')
+optdepends=('mopidy-spotify: Spotify backend'
+'mopidy-scrobbler: Last.FM scrobbler'
+'mopidy-mopify: Web client with Spotify-inspired interface'
+'mopidy-soundcloud: Soundcloud backend')
+makedepends=('python2-sphinx')
+backup=('etc/mopidy/mopidy.conf')
+install=$pkgname.install
+source=("https://github.com/mopidy/mopidy/archive/v${pkgver}.tar.gz";
+'mopidy.conf'
+

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

2016-02-16 Thread Balló György
Date: Wednesday, February 17, 2016 @ 00:29:20
  Author: bgyorgy
Revision: 161913

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

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

--+
 /PKGBUILD|   64 +
 /gnome-flashback.install |   22 +
 community-i686/PKGBUILD  |   32 --
 community-i686/gnome-flashback.install   |   11 
 community-x86_64/PKGBUILD|   32 --
 community-x86_64/gnome-flashback.install |   11 
 6 files changed, 86 insertions(+), 86 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-16 23:29:12 UTC (rev 161912)
+++ community-i686/PKGBUILD 2016-02-16 23:29:20 UTC (rev 161913)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-
-pkgname=gnome-flashback
-pkgver=3.18.1
-pkgrel=2
-pkgdesc="GNOME Flashback session"
-arch=('i686' 'x86_64')
-url="https://wiki.gnome.org/Projects/GnomeFlashback";
-license=('GPL')
-depends=('gnome-bluetooth' 'gnome-panel' 'gnome-session' 
'gnome-settings-daemon' 'gnome-themes-standard' 'libibus' 'metacity' 'nautilus')
-makedepends=('intltool')
-optdepends=('gnome-backgrounds: Default background'
-'gnome-control-center: System settings'
-'gnome-screensaver: Lock screen'
-'network-manager-applet: Network management'
-'notification-daemon: Desktop notifications')
-install=$pkgname.install
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('30413730ba5216e577d6c76445cfa4fe9efaef43c54f3a42a9879107156641f9')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--libexecdir=/usr/lib/$pkgname \
-  --disable-schemas-compile
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: gnome-flashback/repos/community-i686/PKGBUILD (from rev 161912, 
gnome-flashback/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-16 23:29:20 UTC (rev 161913)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Balló György 
+
+pkgname=gnome-flashback
+pkgver=3.18.2
+pkgrel=1
+pkgdesc="GNOME Flashback session"
+arch=('i686' 'x86_64')
+url="https://wiki.gnome.org/Projects/GnomeFlashback";
+license=('GPL')
+depends=('gnome-bluetooth' 'gnome-panel' 'gnome-session' 
'gnome-settings-daemon' 'gnome-themes-standard' 'libibus' 'metacity' 'nautilus')
+makedepends=('intltool')
+optdepends=('gnome-backgrounds: Default background'
+'gnome-control-center: System settings'
+'gnome-screensaver: Lock screen'
+'network-manager-applet: Network management'
+'notification-daemon: Desktop notifications')
+install=$pkgname.install
+source=(https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('986f046f937adb0edfeab997d5e463769364468288e790beede69f5c374c7dae')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--libexecdir=/usr/lib/$pkgname \
+  --disable-schemas-compile
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-i686/gnome-flashback.install
===
--- community-i686/gnome-flashback.install  2016-02-16 23:29:12 UTC (rev 
161912)
+++ community-i686/gnome-flashback.install  2016-02-16 23:29:20 UTC (rev 
161913)
@@ -1,11 +0,0 @@
-post_install() {
-  glib-compile-schemas usr/share/glib-2.0/schemas
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: gnome-flashback/repos/community-i686/gnome-flashback.install (from rev 
161912, gnome-flashback/trunk/gnome-flashback.install)
===
--- community-i686/gnome-flashback.install  (rev 0)
+++ community-i686/gnome-flashback.install  2016-02-16 23:29:20 UTC (rev 
161913)
@@ -0,0 +1,11 @@
+pos

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

2016-02-16 Thread Balló György
Date: Wednesday, February 17, 2016 @ 00:29:12
  Author: bgyorgy
Revision: 161912

upgpkg: gnome-flashback 3.18.2-1

Update to new version

Modified:
  gnome-flashback/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-16 23:25:06 UTC (rev 161911)
+++ PKGBUILD2016-02-16 23:29:12 UTC (rev 161912)
@@ -2,8 +2,8 @@
 # Maintainer: Balló György 
 
 pkgname=gnome-flashback
-pkgver=3.18.1
-pkgrel=2
+pkgver=3.18.2
+pkgrel=1
 pkgdesc="GNOME Flashback session"
 arch=('i686' 'x86_64')
 url="https://wiki.gnome.org/Projects/GnomeFlashback";
@@ -17,7 +17,7 @@
 'notification-daemon: Desktop notifications')
 install=$pkgname.install
 
source=(https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('30413730ba5216e577d6c76445cfa4fe9efaef43c54f3a42a9879107156641f9')
+sha256sums=('986f046f937adb0edfeab997d5e463769364468288e790beede69f5c374c7dae')
 
 build() {
   cd $pkgname-$pkgver


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

2016-02-16 Thread Balló György
Date: Wednesday, February 17, 2016 @ 00:25:06
  Author: bgyorgy
Revision: 161911

archrelease: copy trunk to community-any

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

---+
 PKGBUILD  |   62 ++--
 blueberry.install |   24 ++--
 2 files changed, 43 insertions(+), 43 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-02-16 23:25:00 UTC (rev 161910)
+++ PKGBUILD2016-02-16 23:25:06 UTC (rev 161911)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributer: Sam Burgos 
-
-pkgname=blueberry
-pkgver=1.1.0
-pkgrel=1
-pkgdesc="Bluetooth configuration tool"
-arch=('any')
-url="https://github.com/linuxmint/blueberry";
-license=('GPL')
-depends=('gnome-bluetooth' 'python2-gobject' 'rfkill')
-install=$pkgname.install
-source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/blueberry/archive/$pkgver.tar.gz)
-md5sums=('312e8dc6e89da04bca73ba0d340956a2')
-
-prepare() {
-  cd $pkgname-$pkgver
-  # Python2 fix
-  sed -i 's@^#!.*python$@#!/usr/bin/python2@' usr/bin/blueberry{,-tray}
-}
-
-build() {
-  cd $pkgname-$pkgver
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  cp -r etc usr "$pkgdir"
-}

Copied: blueberry/repos/community-any/PKGBUILD (from rev 161910, 
blueberry/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-02-16 23:25:06 UTC (rev 161911)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributer: Sam Burgos 
+
+pkgname=blueberry
+pkgver=1.1.1
+pkgrel=1
+pkgdesc="Bluetooth configuration tool"
+arch=('any')
+url="https://github.com/linuxmint/blueberry";
+license=('GPL')
+depends=('gnome-bluetooth' 'python2-gobject' 'rfkill')
+install=$pkgname.install
+source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/blueberry/archive/$pkgver.tar.gz)
+md5sums=('ef6eba66bd510cf895cfe69a81e9fb7b')
+
+prepare() {
+  cd $pkgname-$pkgver
+  # Python2 fix
+  sed -i 's@^#!.*python$@#!/usr/bin/python2@' usr/bin/blueberry{,-tray}
+}
+
+build() {
+  cd $pkgname-$pkgver
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  cp -r etc usr "$pkgdir"
+}

Deleted: blueberry.install
===
--- blueberry.install   2016-02-16 23:25:00 UTC (rev 161910)
+++ blueberry.install   2016-02-16 23:25:06 UTC (rev 161911)
@@ -1,12 +0,0 @@
-post_install() {
-  glib-compile-schemas usr/share/glib-2.0/schemas
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: blueberry/repos/community-any/blueberry.install (from rev 161910, 
blueberry/trunk/blueberry.install)
===
--- blueberry.install   (rev 0)
+++ blueberry.install   2016-02-16 23:25:06 UTC (rev 161911)
@@ -0,0 +1,12 @@
+post_install() {
+  glib-compile-schemas usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}


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

2016-02-16 Thread Balló György
Date: Wednesday, February 17, 2016 @ 00:25:00
  Author: bgyorgy
Revision: 161910

upgpkg: blueberry 1.1.1-1

Update to new version

Modified:
  blueberry/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-16 23:13:47 UTC (rev 161909)
+++ PKGBUILD2016-02-16 23:25:00 UTC (rev 161910)
@@ -3,7 +3,7 @@
 # Contributer: Sam Burgos 
 
 pkgname=blueberry
-pkgver=1.1.0
+pkgver=1.1.1
 pkgrel=1
 pkgdesc="Bluetooth configuration tool"
 arch=('any')
@@ -12,7 +12,7 @@
 depends=('gnome-bluetooth' 'python2-gobject' 'rfkill')
 install=$pkgname.install
 
source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/blueberry/archive/$pkgver.tar.gz)
-md5sums=('312e8dc6e89da04bca73ba0d340956a2')
+md5sums=('ef6eba66bd510cf895cfe69a81e9fb7b')
 
 prepare() {
   cd $pkgname-$pkgver


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

2016-02-16 Thread Balló György
Date: Wednesday, February 17, 2016 @ 00:13:47
  Author: bgyorgy
Revision: 161909

archrelease: copy trunk to community-any

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

---+
 PKGBUILD  |   78 
 guake.install |   44 +++
 2 files changed, 61 insertions(+), 61 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-02-16 23:13:30 UTC (rev 161908)
+++ PKGBUILD2016-02-16 23:13:47 UTC (rev 161909)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Angel Velasquez 
-# Contributor: Wilson Pinto Júnior (N3RD3X) 
-# Contributor: Attila Bukor 
-
-pkgname=guake
-pkgver=0.8.3
-pkgrel=1
-pkgdesc='Drop-down terminal for GNOME'
-arch=('any')
-url="http://guake-project.org/";
-license=('GPL')
-depends=('python2-notify' 'vte' 'python2-gconf' 'python2-dbus' 
'python2-keybinder2' 'python2-xdg' 'libutempter')
-makedepends=('intltool' 'gnome-common')
-install=$pkgname.install
-source=($pkgname-$pkgver.tar.gz::https://github.com/Guake/$pkgname/archive/$pkgver.tar.gz)
-md5sums=('39bca0e53dcc100ad0c34ceac249967c')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  # Python2 fix
-  sed -i 's|/usr/bin/env python|/usr/bin/python2|' src/guake/prefs.py
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-   --disable-static --disable-schemas-install \
-   --with-gconf-schema-file-dir=/usr/share/gconf/schemas \
-   PYTHON=python2
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: guake/repos/community-any/PKGBUILD (from rev 161908, 
guake/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-02-16 23:13:47 UTC (rev 161909)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributor: Angel Velasquez 
+# Contributor: Wilson Pinto Júnior (N3RD3X) 
+# Contributor: Attila Bukor 
+
+pkgname=guake
+pkgver=0.8.4
+pkgrel=1
+pkgdesc='Drop-down terminal for GNOME'
+arch=('any')
+url="http://guake-project.org/";
+license=('GPL')
+depends=('python2-notify' 'vte' 'python2-gconf' 'python2-dbus' 
'python2-keybinder2' 'python2-xdg' 'libutempter')
+makedepends=('intltool' 'gnome-common')
+install=$pkgname.install
+source=($pkgname-$pkgver.tar.gz::https://github.com/Guake/$pkgname/archive/$pkgver.tar.gz)
+md5sums=('631b16716645b206b93dc91f32d255c0')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # Python2 fix
+  sed -i 's|/usr/bin/env python|/usr/bin/python2|' src/guake/prefs.py
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+   --disable-static --disable-schemas-install \
+   --with-gconf-schema-file-dir=/usr/share/gconf/schemas \
+   PYTHON=python2
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: guake.install
===
--- guake.install   2016-02-16 23:13:30 UTC (rev 161908)
+++ guake.install   2016-02-16 23:13:47 UTC (rev 161909)
@@ -1,22 +0,0 @@
-pkgname=guake
-
-post_install() {
-  usr/sbin/gconfpkg --install ${pkgname}
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-pre_upgrade() {
-  pre_remove $1
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-pre_remove() {
-  usr/sbin/gconfpkg --uninstall ${pkgname}
-}
-
-post_remove() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}

Copied: guake/repos/community-any/guake.install (from rev 161908, 
guake/trunk/guake.install)
===
--- guake.install   (rev 0)
+++ guake.install   2016-02-16 23:13:47 UTC (rev 161909)
@@ -0,0 +1,22 @@
+pkgname=guake
+
+post_install() {
+  usr/sbin/gconfpkg --install ${pkgname}
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+pre_upgrade() {
+  pre_remove $1
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  usr/sbin/gconfpkg --uninstall ${pkgname}
+}
+
+post_remove() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}


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

2016-02-16 Thread Balló György
Date: Wednesday, February 17, 2016 @ 00:13:30
  Author: bgyorgy
Revision: 161908

upgpkg: guake 0.8.4-1

Update to new version

Modified:
  guake/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-16 23:11:08 UTC (rev 161907)
+++ PKGBUILD2016-02-16 23:13:30 UTC (rev 161908)
@@ -5,7 +5,7 @@
 # Contributor: Attila Bukor 
 
 pkgname=guake
-pkgver=0.8.3
+pkgver=0.8.4
 pkgrel=1
 pkgdesc='Drop-down terminal for GNOME'
 arch=('any')
@@ -15,7 +15,7 @@
 makedepends=('intltool' 'gnome-common')
 install=$pkgname.install
 
source=($pkgname-$pkgver.tar.gz::https://github.com/Guake/$pkgname/archive/$pkgver.tar.gz)
-md5sums=('39bca0e53dcc100ad0c34ceac249967c')
+md5sums=('631b16716645b206b93dc91f32d255c0')
 
 prepare() {
   cd $pkgname-$pkgver


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

2016-02-16 Thread Balló György
Date: Wednesday, February 17, 2016 @ 00:10:56
  Author: bgyorgy
Revision: 161906

upgpkg: urlwatch 2.1-1

Update to new version

Modified:
  urlwatch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-16 23:05:33 UTC (rev 161905)
+++ PKGBUILD2016-02-16 23:10:56 UTC (rev 161906)
@@ -4,7 +4,7 @@
 # Contributor: Allan McRae 
 
 pkgname=urlwatch
-pkgver=2.0
+pkgver=2.1
 pkgrel=1
 pkgdesc="A tool for monitoring webpages for updates"
 arch=('any')
@@ -12,7 +12,7 @@
 license=('BSD')
 depends=('python-keyring' 'python-minidb' 'python-requests' 'python-yaml')
 source=("http://thp.io/2008/urlwatch/$pkgname-$pkgver.tar.gz";)
-md5sums=('799989901324ea670ae6610b738e7c8e')
+md5sums=('fff8148b75d9ec93861241b7d22eb75a')
 
 build() {
   cd $pkgname-$pkgver


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

2016-02-16 Thread Balló György
Date: Wednesday, February 17, 2016 @ 00:11:08
  Author: bgyorgy
Revision: 161907

archrelease: copy trunk to community-any

Added:
  urlwatch/repos/community-any/PKGBUILD
(from rev 161906, urlwatch/trunk/PKGBUILD)
Deleted:
  urlwatch/repos/community-any/PKGBUILD

--+
 PKGBUILD |   54 +++---
 1 file changed, 27 insertions(+), 27 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-02-16 23:10:56 UTC (rev 161906)
+++ PKGBUILD2016-02-16 23:11:08 UTC (rev 161907)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Skydrome 
-# Contributor: Allan McRae 
-
-pkgname=urlwatch
-pkgver=2.0
-pkgrel=1
-pkgdesc="A tool for monitoring webpages for updates"
-arch=('any')
-url="http://thp.io/2008/urlwatch/";
-license=('BSD')
-depends=('python-keyring' 'python-minidb' 'python-requests' 'python-yaml')
-source=("http://thp.io/2008/urlwatch/$pkgname-$pkgver.tar.gz";)
-md5sums=('799989901324ea670ae6610b738e7c8e')
-
-build() {
-  cd $pkgname-$pkgver
-  python3 setup.py build
-}
-
-package() {
-  cd $pkgname-$pkgver
-  python3 setup.py install --root="$pkgdir"
-
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-}

Copied: urlwatch/repos/community-any/PKGBUILD (from rev 161906, 
urlwatch/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-02-16 23:11:08 UTC (rev 161907)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Balló György 
+# Contributor: Skydrome 
+# Contributor: Allan McRae 
+
+pkgname=urlwatch
+pkgver=2.1
+pkgrel=1
+pkgdesc="A tool for monitoring webpages for updates"
+arch=('any')
+url="http://thp.io/2008/urlwatch/";
+license=('BSD')
+depends=('python-keyring' 'python-minidb' 'python-requests' 'python-yaml')
+source=("http://thp.io/2008/urlwatch/$pkgname-$pkgver.tar.gz";)
+md5sums=('fff8148b75d9ec93861241b7d22eb75a')
+
+build() {
+  cd $pkgname-$pkgver
+  python3 setup.py build
+}
+
+package() {
+  cd $pkgname-$pkgver
+  python3 setup.py install --root="$pkgdir"
+
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+}


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

2016-02-16 Thread Antonio Rojas
Date: Wednesday, February 17, 2016 @ 00:09:16
  Author: arojas
Revision: 259865

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

Added:
  ffmpegthumbnailer/repos/staging-i686/
  ffmpegthumbnailer/repos/staging-i686/PKGBUILD
(from rev 259864, ffmpegthumbnailer/trunk/PKGBUILD)
  ffmpegthumbnailer/repos/staging-i686/ffmpegthumbnailer-ffmpeg3.patch
(from rev 259864, ffmpegthumbnailer/trunk/ffmpegthumbnailer-ffmpeg3.patch)
  ffmpegthumbnailer/repos/staging-x86_64/
  ffmpegthumbnailer/repos/staging-x86_64/PKGBUILD
(from rev 259864, ffmpegthumbnailer/trunk/PKGBUILD)
  ffmpegthumbnailer/repos/staging-x86_64/ffmpegthumbnailer-ffmpeg3.patch
(from rev 259864, ffmpegthumbnailer/trunk/ffmpegthumbnailer-ffmpeg3.patch)

+
 staging-i686/PKGBUILD  |   41 +++
 staging-i686/ffmpegthumbnailer-ffmpeg3.patch   |   62 +++
 staging-x86_64/PKGBUILD|   41 +++
 staging-x86_64/ffmpegthumbnailer-ffmpeg3.patch |   62 +++
 4 files changed, 206 insertions(+)

Copied: ffmpegthumbnailer/repos/staging-i686/PKGBUILD (from rev 259864, 
ffmpegthumbnailer/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-02-16 23:09:16 UTC (rev 259865)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Ronald van Haren 
+# Contributor: boro...@gmail.com
+
+pkgname=ffmpegthumbnailer
+pkgver=2.1.0
+pkgrel=2
+pkgdesc="Lightweight video thumbnailer that can be used by file managers."
+url="https://github.com/dirkvdb/ffmpegthumbnailer";
+license=('GPL2')
+arch=('i686' 'x86_64')
+depends=('ffmpeg' 'libjpeg' 'libpng')
+makedepends=('cmake')
+optdepends=('gvfs: support for gio uris')
+source=("https://github.com/dirkvdb/$pkgname/archive/$pkgver.tar.gz"; 
ffmpegthumbnailer-ffmpeg3.patch)
+sha1sums=('5fe86d26b1d5baddc5b75c5015b8d1a1a3719285'
+  '634273e4373ec826ebc26daaadd01458a2a17df6')
+
+prepare() {
+  cd $pkgname-$pkgver
+# Fix build with ffmpeg 3.0 (Gentoo)
+  patch -lp1 -i ../ffmpegthumbnailer-ffmpeg3.patch
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  mkdir -p build
+  cd build
+  cmake .. \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_INSTALL_LIBDIR=lib \
+   -DENABLE_GIO=ON \
+   -DENABLE_THUMBNAILER=ON
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"/build
+  make DESTDIR="${pkgdir}" install
+}

Copied: ffmpegthumbnailer/repos/staging-i686/ffmpegthumbnailer-ffmpeg3.patch 
(from rev 259864, ffmpegthumbnailer/trunk/ffmpegthumbnailer-ffmpeg3.patch)
===
--- staging-i686/ffmpegthumbnailer-ffmpeg3.patch
(rev 0)
+++ staging-i686/ffmpegthumbnailer-ffmpeg3.patch2016-02-16 23:09:16 UTC 
(rev 259865)
@@ -0,0 +1,62 @@
+Index: ffmpegthumbnailer-2.0.10/libffmpegthumbnailer/moviedecoder.cpp
+===
+--- ffmpegthumbnailer-2.0.10.orig/libffmpegthumbnailer/moviedecoder.cpp
 ffmpegthumbnailer-2.0.10/libffmpegthumbnailer/moviedecoder.cpp
+@@ -266,7 +266,7 @@ bool MovieDecoder::decodeVideoPacket()
+ return false;
+ }
+ 
+-avcodec_get_frame_defaults(m_pFrame);
++av_frame_unref(m_pFrame);
+ 
+ int frameFinished;
+ 
+@@ -312,14 +312,8 @@ bool MovieDecoder::getVideoPacket()
+ 
+ void MovieDecoder::getScaledVideoFrame(int scaledSize, bool 
maintainAspectRatio, VideoFrame& videoFrame)
+ {
+-if (m_pFrame->interlaced_frame)
+-{
+-avpicture_deinterlace((AVPicture*) m_pFrame, (AVPicture*) m_pFrame, 
m_pVideoCodecContext->pix_fmt,
+-  m_pVideoCodecContext->width, 
m_pVideoCodecContext->height);
+-}
+-
+ int scaledWidth, scaledHeight;
+-convertAndScaleFrame(PIX_FMT_RGB24, scaledSize, maintainAspectRatio, 
scaledWidth, scaledHeight);
++convertAndScaleFrame(AV_PIX_FMT_RGB24, scaledSize, maintainAspectRatio, 
scaledWidth, scaledHeight);
+ 
+ videoFrame.width = scaledWidth;
+ videoFrame.height = scaledHeight;
+@@ -330,7 +324,7 @@ void MovieDecoder::getScaledVideoFrame(i
+ memcpy((&(videoFrame.frameData.front())), m_pFrame->data[0], 
videoFrame.lineSize * videoFrame.height);
+ }
+ 
+-void MovieDecoder::convertAndScaleFrame(PixelFormat format, int scaledSize, 
bool maintainAspectRatio, int& scaledWidth, int& scaledHeight)
++void MovieDecoder::convertAndScaleFrame(AVPixelFormat format, int scaledSize, 
bool maintainAspectRatio, int& scaledWidth, int& scaledHeight)
+ {
+ calculateDimensions(scaledSize, maintainAspectRatio, scaledWidth, 
scaledHeight);
+ 
+@@ -427,7 +421,7 @@ void MovieDecoder::calculateDimensions(i
+ }
+ }
+ 
+-void MovieDecoder::createAVFrame(AVFrame** pAvFrame, uint8_t** pFrameBuffer, 
int width, int height, PixelFormat

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

2016-02-16 Thread Antonio Rojas
Date: Wednesday, February 17, 2016 @ 00:08:36
  Author: arojas
Revision: 259864

ffmpeg 3.0 rebuild

Added:
  ffmpegthumbnailer/trunk/ffmpegthumbnailer-ffmpeg3.patch
Modified:
  ffmpegthumbnailer/trunk/PKGBUILD

-+
 PKGBUILD|   12 ---
 ffmpegthumbnailer-ffmpeg3.patch |   62 ++
 2 files changed, 69 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-02-16 22:56:34 UTC (rev 259863)
+++ PKGBUILD2016-02-16 23:08:36 UTC (rev 259864)
@@ -4,7 +4,7 @@
 
 pkgname=ffmpegthumbnailer
 pkgver=2.1.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Lightweight video thumbnailer that can be used by file managers."
 url="https://github.com/dirkvdb/ffmpegthumbnailer";
 license=('GPL2')
@@ -12,12 +12,14 @@
 depends=('ffmpeg' 'libjpeg' 'libpng')
 makedepends=('cmake')
 optdepends=('gvfs: support for gio uris')
-source=("https://github.com/dirkvdb/$pkgname/archive/$pkgver.tar.gz";)
-sha1sums=('5fe86d26b1d5baddc5b75c5015b8d1a1a3719285')
+source=("https://github.com/dirkvdb/$pkgname/archive/$pkgver.tar.gz"; 
ffmpegthumbnailer-ffmpeg3.patch)
+sha1sums=('5fe86d26b1d5baddc5b75c5015b8d1a1a3719285'
+  '634273e4373ec826ebc26daaadd01458a2a17df6')
 
 prepare() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  patch -Np1 -i "${srcdir}/locale.patch"
+  cd $pkgname-$pkgver
+# Fix build with ffmpeg 3.0 (Gentoo)
+  patch -lp1 -i ../ffmpegthumbnailer-ffmpeg3.patch
 }
 
 build() {

Added: ffmpegthumbnailer-ffmpeg3.patch
===
--- ffmpegthumbnailer-ffmpeg3.patch (rev 0)
+++ ffmpegthumbnailer-ffmpeg3.patch 2016-02-16 23:08:36 UTC (rev 259864)
@@ -0,0 +1,62 @@
+Index: ffmpegthumbnailer-2.0.10/libffmpegthumbnailer/moviedecoder.cpp
+===
+--- ffmpegthumbnailer-2.0.10.orig/libffmpegthumbnailer/moviedecoder.cpp
 ffmpegthumbnailer-2.0.10/libffmpegthumbnailer/moviedecoder.cpp
+@@ -266,7 +266,7 @@ bool MovieDecoder::decodeVideoPacket()
+ return false;
+ }
+ 
+-avcodec_get_frame_defaults(m_pFrame);
++av_frame_unref(m_pFrame);
+ 
+ int frameFinished;
+ 
+@@ -312,14 +312,8 @@ bool MovieDecoder::getVideoPacket()
+ 
+ void MovieDecoder::getScaledVideoFrame(int scaledSize, bool 
maintainAspectRatio, VideoFrame& videoFrame)
+ {
+-if (m_pFrame->interlaced_frame)
+-{
+-avpicture_deinterlace((AVPicture*) m_pFrame, (AVPicture*) m_pFrame, 
m_pVideoCodecContext->pix_fmt,
+-  m_pVideoCodecContext->width, 
m_pVideoCodecContext->height);
+-}
+-
+ int scaledWidth, scaledHeight;
+-convertAndScaleFrame(PIX_FMT_RGB24, scaledSize, maintainAspectRatio, 
scaledWidth, scaledHeight);
++convertAndScaleFrame(AV_PIX_FMT_RGB24, scaledSize, maintainAspectRatio, 
scaledWidth, scaledHeight);
+ 
+ videoFrame.width = scaledWidth;
+ videoFrame.height = scaledHeight;
+@@ -330,7 +324,7 @@ void MovieDecoder::getScaledVideoFrame(i
+ memcpy((&(videoFrame.frameData.front())), m_pFrame->data[0], 
videoFrame.lineSize * videoFrame.height);
+ }
+ 
+-void MovieDecoder::convertAndScaleFrame(PixelFormat format, int scaledSize, 
bool maintainAspectRatio, int& scaledWidth, int& scaledHeight)
++void MovieDecoder::convertAndScaleFrame(AVPixelFormat format, int scaledSize, 
bool maintainAspectRatio, int& scaledWidth, int& scaledHeight)
+ {
+ calculateDimensions(scaledSize, maintainAspectRatio, scaledWidth, 
scaledHeight);
+ 
+@@ -427,7 +421,7 @@ void MovieDecoder::calculateDimensions(i
+ }
+ }
+ 
+-void MovieDecoder::createAVFrame(AVFrame** pAvFrame, uint8_t** pFrameBuffer, 
int width, int height, PixelFormat format)
++void MovieDecoder::createAVFrame(AVFrame** pAvFrame, uint8_t** pFrameBuffer, 
int width, int height, AVPixelFormat format)
+ {
+ *pAvFrame = av_frame_alloc();
+ 
+Index: ffmpegthumbnailer-2.0.10/libffmpegthumbnailer/moviedecoder.h
+===
+--- ffmpegthumbnailer-2.0.10.orig/libffmpegthumbnailer/moviedecoder.h
 ffmpegthumbnailer-2.0.10/libffmpegthumbnailer/moviedecoder.h
+@@ -54,8 +54,8 @@ private:
+ 
+ bool decodeVideoPacket();
+ bool getVideoPacket();
+-void convertAndScaleFrame(PixelFormat format, int scaledSize, bool 
maintainAspectRatio, int& scaledWidth, int& scaledHeight);
+-void createAVFrame(AVFrame** pAvFrame, uint8_t** pFrameBuffer, int width, 
int height, PixelFormat format);
++void convertAndScaleFrame(AVPixelFormat format, int scaledSize, bool 
maintainAspectRatio, int& scaledWidth, int& scaledHeight);
++void createAVFrame(AVFrame** pAvFrame, uint8_t** pFrameBuffer, int width, 
int height, AVPixelFormat format);
+ void calculateDimensions(int squareSize, bool maintainAspectRatio, int& 
destWidth, int& destHeight);
+ 
+ private:


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

2016-02-16 Thread Balló György
Date: Wednesday, February 17, 2016 @ 00:05:24
  Author: bgyorgy
Revision: 161904

upgpkg: uget 2.0.5-1

Update to new version

Modified:
  uget/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-16 23:00:49 UTC (rev 161903)
+++ PKGBUILD2016-02-16 23:05:24 UTC (rev 161904)
@@ -2,7 +2,7 @@
 # Maintainer: Balló György 
 
 pkgname=uget
-pkgver=2.0.4
+pkgver=2.0.5
 pkgrel=1
 pkgdesc="GTK+ download manager featuring download classification and HTML 
import"
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 optdepends=('aria2: alternative backend')
 install=$pkgname.install
 source=(http://downloads.sourceforge.net/urlget/$pkgname-$pkgver.tar.gz)
-md5sums=('1a3e41ad752d3cb1934ff58b5c789e82')
+md5sums=('19665a85890a8db7d785ded404f96780')
 
 build() {
   cd $pkgname-$pkgver


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

2016-02-16 Thread Balló György
Date: Wednesday, February 17, 2016 @ 00:05:33
  Author: bgyorgy
Revision: 161905

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

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

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

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

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

Deleted: community-i686/uget.install
===
--- community-i686/uget.install 2016-02-16 23:05:24 UTC (rev 161904)
+++ community-i686/uget.install 2016-02-16 23:05:33 UTC (rev 161905)
@@ -1,11 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}

Copied: uget/repos/community-i686/uget.install (from rev 161904, 
uget/trunk/uget.install)
===
--- community-i686/uget.install (rev 0)
+++ community-i686/uget.install 2016-02-16 23:05:33 UTC (rev 161905)
@@ -0,0 +1,11 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}

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

Copied: uget/repos/co

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

2016-02-16 Thread Balló György
Date: Wednesday, February 17, 2016 @ 00:00:43
  Author: bgyorgy
Revision: 161902

upgpkg: cherrytree 0.36.5-1

Update to new version

Modified:
  cherrytree/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-16 22:14:43 UTC (rev 161901)
+++ PKGBUILD2016-02-16 23:00:43 UTC (rev 161902)
@@ -6,7 +6,7 @@
 # Contributor: Tomas A. Schertel 
 
 pkgname=cherrytree
-pkgver=0.36.4
+pkgver=0.36.5
 pkgrel=1
 pkgdesc='Hierarchical note taking application featuring rich text and syntax 
highlighting'
 arch=('any')
@@ -17,7 +17,7 @@
 'p7zip: for password protection support')
 install=cherrytree.install
 source=(http://www.giuspen.com/software/$pkgname-$pkgver.tar.xz)
-sha256sums=('33597a25bedc6699fb11aee15ced4f9f27d6d5643690cf41f6757ebe50b52dc2')
+sha256sums=('b3a552ec2f08e94cdca0adb1ff89b7a3e3178dabab47034974b0e9306a7e1694')
 
 build() {
   cd $pkgname-$pkgver


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

2016-02-16 Thread Balló György
Date: Wednesday, February 17, 2016 @ 00:00:49
  Author: bgyorgy
Revision: 161903

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-02-16 23:00:43 UTC (rev 161902)
+++ PKGBUILD2016-02-16 23:00:49 UTC (rev 161903)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Balló György 
-# Contributor: Bartłomiej Piotrowski
-# Contributor: Brad Fanella 
-# Contributor: Allan McRae 
-# Contributor: Tomas A. Schertel 
-
-pkgname=cherrytree
-pkgver=0.36.4
-pkgrel=1
-pkgdesc='Hierarchical note taking application featuring rich text and syntax 
highlighting'
-arch=('any')
-url='http://www.giuspen.com/cherrytree/'
-license=('GPL3')
-depends=('pygtksourceview2' 'python2-dbus' 'desktop-file-utils')
-optdepends=('python2-pyenchant: for spell checking support'
-'p7zip: for password protection support')
-install=cherrytree.install
-source=(http://www.giuspen.com/software/$pkgname-$pkgver.tar.xz)
-sha256sums=('33597a25bedc6699fb11aee15ced4f9f27d6d5643690cf41f6757ebe50b52dc2')
-
-build() {
-  cd $pkgname-$pkgver
-  python2 setup.py build
-}
-
-package() {
-  cd $pkgname-$pkgver
-  python2 setup.py install --root="$pkgdir/" --optimize=1
-}

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

Deleted: cherrytree.install
===
--- cherrytree.install  2016-02-16 23:00:43 UTC (rev 161902)
+++ cherrytree.install  2016-02-16 23:00:49 UTC (rev 161903)
@@ -1,14 +0,0 @@
-post_install()
-{
-   update-desktop-database -q
-   gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-   update-mime-database usr/share/mime &> /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: cherrytree/repos/community-any/cherrytree.install (from rev 161902, 
cherrytree/trunk/cherrytree.install)
===
--- cherrytree.install  (rev 0)
+++ cherrytree.install  2016-02-16 23:00:49 UTC (rev 161903)
@@ -0,0 +1,14 @@
+post_install()
+{
+   update-desktop-database -q
+   gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+   update-mime-database usr/share/mime &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}


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

2016-02-16 Thread Antonio Rojas
Date: Tuesday, February 16, 2016 @ 23:56:34
  Author: arojas
Revision: 259863

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

Added:
  k3b/repos/staging-i686/
  k3b/repos/staging-i686/PKGBUILD
(from rev 259862, k3b/trunk/PKGBUILD)
  k3b/repos/staging-i686/k3b-ffmpeg3.patch
(from rev 259862, k3b/trunk/k3b-ffmpeg3.patch)
  k3b/repos/staging-i686/k3b.install
(from rev 259862, k3b/trunk/k3b.install)
  k3b/repos/staging-x86_64/
  k3b/repos/staging-x86_64/PKGBUILD
(from rev 259862, k3b/trunk/PKGBUILD)
  k3b/repos/staging-x86_64/k3b-ffmpeg3.patch
(from rev 259862, k3b/trunk/k3b-ffmpeg3.patch)
  k3b/repos/staging-x86_64/k3b.install
(from rev 259862, k3b/trunk/k3b.install)

--+
 staging-i686/PKGBUILD|   46 
 staging-i686/k3b-ffmpeg3.patch   |  138 +
 staging-i686/k3b.install |   13 +++
 staging-x86_64/PKGBUILD  |   46 
 staging-x86_64/k3b-ffmpeg3.patch |  138 +
 staging-x86_64/k3b.install   |   13 +++
 6 files changed, 394 insertions(+)

Copied: k3b/repos/staging-i686/PKGBUILD (from rev 259862, k3b/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-02-16 22:56:34 UTC (rev 259863)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=k3b
+pkgver=2.0.3a
+pkgrel=4
+epoch=1
+pkgdesc="Feature-rich and easy to handle CD burning application"
+arch=('i686' 'x86_64')
+url="http://sourceforge.net/projects/k3b/";
+license=('GPL')
+depends=('kdebase-runtime' 'libkcddb' 'libsamplerate' 'libmad'
+ 'ffmpeg' 'taglib' 'libmpcdec' 'libdvdread' 'cdrkit' 'libxft')
+makedepends=('cmake' 'automoc4' 'docbook-xml')
+optdepends=('dvd+rw-tools: for dvd burning support'
+'vcdimager: for vcd burning support'
+'transcode: for advanced mpeg conversion support'
+'emovix: for bootable multimedia cd/dvd support'
+'cdrdao: for disk-at-once (DAO) mode support'
+'cdparanoia: for cd ripping support')
+install=k3b.install
+source=(http://download.kde.org/stable/${pkgname}/${pkgname}-${pkgver}.tar.xz 
k3b-ffmpeg3.patch)
+sha1sums=('f1001db3b5b32ef6bdb827742f1ca357c82b216f'
+  '8ee47b04e92499d484c49e33dd33dabdf53025c9')
+
+prepare() {
+  cd $pkgname-2.0.3
+# Workaround build failure with cmake 3.4
+  sed -e "s|^cmake_minimum_required|#cmake_minimum_required|" -i CMakeLists.txt
+# Fix build with ffmpeg 3.0 (Gentoo)
+  patch -p1 -i ../k3b-ffmpeg3.patch
+}
+
+build() {
+  mkdir build
+  cd build
+  cmake ../${pkgname}-2.0.3 \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Copied: k3b/repos/staging-i686/k3b-ffmpeg3.patch (from rev 259862, 
k3b/trunk/k3b-ffmpeg3.patch)
===
--- staging-i686/k3b-ffmpeg3.patch  (rev 0)
+++ staging-i686/k3b-ffmpeg3.patch  2016-02-16 22:56:34 UTC (rev 259863)
@@ -0,0 +1,138 @@
+From 52d3d64863d2fab4128f524870851f18f5cae1fc Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Old=C5=99ich=20Jedli=C4=8Dka?= 
+Date: Sat, 14 Feb 2015 15:31:07 +0100
+Subject: [PATCH] Fixed compilation with newer ffmpeg/libav.
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+Signed-off-by: Oldřich Jedlička 
+---
+ plugins/decoder/ffmpeg/k3bffmpegwrapper.cpp | 60 -
+ 1 file changed, 50 insertions(+), 10 deletions(-)
+
+diff --git a/plugins/decoder/ffmpeg/k3bffmpegwrapper.cpp 
b/plugins/decoder/ffmpeg/k3bffmpegwrapper.cpp
+index 5451fd3..2f80fd6 100644
+--- a/plugins/decoder/ffmpeg/k3bffmpegwrapper.cpp
 b/plugins/decoder/ffmpeg/k3bffmpegwrapper.cpp
+@@ -86,8 +86,12 @@ public:
+ K3b::Msf length;
+ 
+ // for decoding. ffmpeg requires 16-byte alignment.
++#ifdef HAVE_FFMPEG_AVCODEC_DECODE_AUDIO4
++::AVFrame* frame;
++#else
+ char outputBuffer[AVCODEC_MAX_AUDIO_FRAME_SIZE + 15];
+ char* alignedOutputBuffer;
++#endif
+ char* outputBufferPos;
+ int outputBufferSize;
+ ::AVPacket packet;
+@@ -102,14 +106,29 @@ K3bFFMpegFile::K3bFFMpegFile( const QString& filename )
+ d = new Private;
+ d->formatContext = 0;
+ d->codec = 0;
++#ifdef HAVE_FFMPEG_AVCODEC_DECODE_AUDIO4
++#  if LIBAVCODEC_BUILD < AV_VERSION_INT(55,28,1)
++d->frame = avcodec_alloc_frame();
++#  else
++d->frame = av_frame_alloc();
++#  endif
++#else
+ int offset = 0x10 - (reinterpret_cast(&d->outputBuffer) & 0xf);
+ d->alignedOutputBuffer = &d->outputBuffer[offset];
++#endif
+ }
+ 
+ 
+ K3bFFMpegFile::~K3bFFMpegFile()
+ {
+ close();
++#ifdef HAVE_FFMPEG_AVCODEC_DECODE_AUDIO4
++#  if LIBAVCODEC_BUILD < AV_VERSION_INT(55,28,1)
++av_free(d->frame);
++#  else
++av_fr

[arch-commits] Commit in k3b/trunk (PKGBUILD k3b-ffmpeg3.patch)

2016-02-16 Thread Antonio Rojas
Date: Tuesday, February 16, 2016 @ 23:55:57
  Author: arojas
Revision: 259862

ffmpeg 3.0 rebuild

Added:
  k3b/trunk/k3b-ffmpeg3.patch
Modified:
  k3b/trunk/PKGBUILD

---+
 PKGBUILD  |9 ++-
 k3b-ffmpeg3.patch |  138 
 2 files changed, 144 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-02-16 22:14:21 UTC (rev 259861)
+++ PKGBUILD2016-02-16 22:55:57 UTC (rev 259862)
@@ -3,7 +3,7 @@
 
 pkgname=k3b
 pkgver=2.0.3a
-pkgrel=3
+pkgrel=4
 epoch=1
 pkgdesc="Feature-rich and easy to handle CD burning application"
 arch=('i686' 'x86_64')
@@ -19,13 +19,16 @@
 'cdrdao: for disk-at-once (DAO) mode support'
 'cdparanoia: for cd ripping support')
 install=k3b.install
-source=(http://download.kde.org/stable/${pkgname}/${pkgname}-${pkgver}.tar.xz)
-sha1sums=('f1001db3b5b32ef6bdb827742f1ca357c82b216f')
+source=(http://download.kde.org/stable/${pkgname}/${pkgname}-${pkgver}.tar.xz 
k3b-ffmpeg3.patch)
+sha1sums=('f1001db3b5b32ef6bdb827742f1ca357c82b216f'
+  '8ee47b04e92499d484c49e33dd33dabdf53025c9')
 
 prepare() {
   cd $pkgname-2.0.3
 # Workaround build failure with cmake 3.4
   sed -e "s|^cmake_minimum_required|#cmake_minimum_required|" -i CMakeLists.txt
+# Fix build with ffmpeg 3.0 (Gentoo)
+  patch -p1 -i ../k3b-ffmpeg3.patch
 }
 
 build() {

Added: k3b-ffmpeg3.patch
===
--- k3b-ffmpeg3.patch   (rev 0)
+++ k3b-ffmpeg3.patch   2016-02-16 22:55:57 UTC (rev 259862)
@@ -0,0 +1,138 @@
+From 52d3d64863d2fab4128f524870851f18f5cae1fc Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Old=C5=99ich=20Jedli=C4=8Dka?= 
+Date: Sat, 14 Feb 2015 15:31:07 +0100
+Subject: [PATCH] Fixed compilation with newer ffmpeg/libav.
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+Signed-off-by: Oldřich Jedlička 
+---
+ plugins/decoder/ffmpeg/k3bffmpegwrapper.cpp | 60 -
+ 1 file changed, 50 insertions(+), 10 deletions(-)
+
+diff --git a/plugins/decoder/ffmpeg/k3bffmpegwrapper.cpp 
b/plugins/decoder/ffmpeg/k3bffmpegwrapper.cpp
+index 5451fd3..2f80fd6 100644
+--- a/plugins/decoder/ffmpeg/k3bffmpegwrapper.cpp
 b/plugins/decoder/ffmpeg/k3bffmpegwrapper.cpp
+@@ -86,8 +86,12 @@ public:
+ K3b::Msf length;
+ 
+ // for decoding. ffmpeg requires 16-byte alignment.
++#ifdef HAVE_FFMPEG_AVCODEC_DECODE_AUDIO4
++::AVFrame* frame;
++#else
+ char outputBuffer[AVCODEC_MAX_AUDIO_FRAME_SIZE + 15];
+ char* alignedOutputBuffer;
++#endif
+ char* outputBufferPos;
+ int outputBufferSize;
+ ::AVPacket packet;
+@@ -102,14 +106,29 @@ K3bFFMpegFile::K3bFFMpegFile( const QString& filename )
+ d = new Private;
+ d->formatContext = 0;
+ d->codec = 0;
++#ifdef HAVE_FFMPEG_AVCODEC_DECODE_AUDIO4
++#  if LIBAVCODEC_BUILD < AV_VERSION_INT(55,28,1)
++d->frame = avcodec_alloc_frame();
++#  else
++d->frame = av_frame_alloc();
++#  endif
++#else
+ int offset = 0x10 - (reinterpret_cast(&d->outputBuffer) & 0xf);
+ d->alignedOutputBuffer = &d->outputBuffer[offset];
++#endif
+ }
+ 
+ 
+ K3bFFMpegFile::~K3bFFMpegFile()
+ {
+ close();
++#ifdef HAVE_FFMPEG_AVCODEC_DECODE_AUDIO4
++#  if LIBAVCODEC_BUILD < AV_VERSION_INT(55,28,1)
++av_free(d->frame);
++#  else
++av_frame_free(&d->frame);
++#  endif
++#endif
+ delete d;
+ }
+ 
+@@ -326,26 +345,36 @@ int K3bFFMpegFile::fillOutputBuffer()
+ return 0;
+ }
+ 
++#ifdef HAVE_FFMPEG_AVCODEC_DECODE_AUDIO4
++int gotFrame = 0;
++int len = ::avcodec_decode_audio4(
++#else
+ d->outputBufferPos = d->alignedOutputBuffer;
+ d->outputBufferSize = AVCODEC_MAX_AUDIO_FRAME_SIZE;
+-
+-#ifdef HAVE_FFMPEG_AVCODEC_DECODE_AUDIO3
++#  ifdef HAVE_FFMPEG_AVCODEC_DECODE_AUDIO3
+ int len = ::avcodec_decode_audio3(
+-#else
+-#  ifdef HAVE_FFMPEG_AVCODEC_DECODE_AUDIO2
+-int len = ::avcodec_decode_audio2(
+ #  else
++#ifdef HAVE_FFMPEG_AVCODEC_DECODE_AUDIO2
++int len = ::avcodec_decode_audio2(
++#else
+ int len = ::avcodec_decode_audio(
++#endif
+ #  endif
+ #endif
+ 
+ FFMPEG_CODEC(d->formatContext->streams[0]),
++#ifdef HAVE_FFMPEG_AVCODEC_DECODE_AUDIO4
++d->frame,
++&gotFrame,
++&d->packet );
++#else
+ (short*)d->alignedOutputBuffer,
+ &d->outputBufferSize,
+-#ifdef HAVE_FFMPEG_AVCODEC_DECODE_AUDIO3
++#  ifdef HAVE_FFMPEG_AVCODEC_DECODE_AUDIO3
+ &d->packet );
+-#else
++#  else
+ d->packetData, d->packetSize );
++#  endif
+ #endif
+ 
+ if( d->packetSize <= 0 || len < 0 )
+@@ -355,6 +384,17 @@ int K3bFFMpegFile::fillOutputBuffer()
+ return -1;
+ }
+ 
++#ifdef HAVE_FFMPEG_AVCODEC_DECODE_AUDIO4
++if ( gotFrame ) {
++   

[arch-commits] Commit in (opencl-headers)

2016-02-16 Thread Laurent Carlier
Date: Tuesday, February 16, 2016 @ 23:14:43
  Author: lcarlier
Revision: 161901

community2extra: Moving opencl-headers from community to extra

Deleted:
  opencl-headers/


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

2016-02-16 Thread Laurent Carlier
Date: Tuesday, February 16, 2016 @ 23:14:21
  Author: lcarlier
Revision: 259861

archrelease: copy trunk to extra-any

Added:
  opencl-headers/repos/extra-any/
  opencl-headers/repos/extra-any/LICENSE.txt
(from rev 259860, opencl-headers/trunk/LICENSE.txt)
  opencl-headers/repos/extra-any/PKGBUILD
(from rev 259860, opencl-headers/trunk/PKGBUILD)

-+
 LICENSE.txt |   20 
 PKGBUILD|   54 ++
 2 files changed, 74 insertions(+)

Copied: opencl-headers/repos/extra-any/LICENSE.txt (from rev 259860, 
opencl-headers/trunk/LICENSE.txt)
===
--- extra-any/LICENSE.txt   (rev 0)
+++ extra-any/LICENSE.txt   2016-02-16 22:14:21 UTC (rev 259861)
@@ -0,0 +1,20 @@
+ * Copyright (c) 2008-2010 The Khronos Group Inc.
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a
+ * copy of this software and/or associated documentation files (the
+ * "Materials"), to deal in the Materials without restriction, including
+ * without limitation the rights to use, copy, modify, merge, publish,
+ * distribute, sublicense, and/or sell copies of the Materials, and to
+ * permit persons to whom the Materials are 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 Materials.
+ *
+ * THE MATERIALS ARE 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
+ * MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS.

Copied: opencl-headers/repos/extra-any/PKGBUILD (from rev 259860, 
opencl-headers/trunk/PKGBUILD)
===
--- extra-any/PKGBUILD  (rev 0)
+++ extra-any/PKGBUILD  2016-02-16 22:14:21 UTC (rev 259861)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault 
+# Contributor: Sylvain HENRY 
+
+pkgname=opencl-headers
+pkgver=2.1.20151224
+_clbasever=2.1
+pkgrel=1
+epoch=2
+pkgdesc='OpenCL (Open Computing Language) header files'
+arch=('any')
+url='http://www.khronos.org/registry/cl/'
+license=('custom')
+source=("https://sources.archlinux.org/other/community/${pkgname}/${pkgname}-${pkgver}.src.tar.xz";
+'LICENSE.txt')
+_headers=("http://www.khronos.org/registry/cl/api/${_clbasever}/opencl.h";
+  "http://www.khronos.org/registry/cl/api/${_clbasever}/cl_platform.h";
+  "http://www.khronos.org/registry/cl/api/${_clbasever}/cl.h";
+  "http://www.khronos.org/registry/cl/api/${_clbasever}/cl_ext.h";
+  "http://www.khronos.org/registry/cl/api/${_clbasever}/cl_egl.h";
+  "http://www.khronos.org/registry/cl/api/${_clbasever}/cl_gl.h";
+  "http://www.khronos.org/registry/cl/api/${_clbasever}/cl_gl_ext.h";
+  "http://www.khronos.org/registry/cl/api/${_clbasever}/cl2.hpp";
+  "http://www.khronos.org/registry/cl/api/${_clbasever}/cl.hpp";) # 
compatibility for OCL 1.2
+sha1sums=('6fae079bd2b02b1ea5312f61ff817c8f541ceb4f'
+  '98abb35b2eca82d0fc19db6d28fcc7bd20be0655')
+
+# source PKGBUILD && mksource
+mksource() {
+   cd "${srcdir}"
+   _dirname=${pkgname}-${pkgver}
+   mkdir ${_dirname}
+
+   pushd ${_dirname}
+   for _h in ${_headers[@]}; do
+  wget ${_h}
+   done
+   popd
+
+   tar -cJv --exclude=CVS -f ${_dirname}.src.tar.xz ${_dirname}
+   rm -rf ${_dirname}
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   install -dm755 "${pkgdir}"/usr/include/CL
+
+   for h in $(ls -1 *.h *.hpp); do
+  install -m 644 ${h} "${pkgdir}"/usr/include/CL/
+   done
+
+   install -D -m644 ../LICENSE.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}


[arch-commits] Commit in (5 files)

2016-02-16 Thread Laurent Carlier
Date: Tuesday, February 16, 2016 @ 23:14:16
  Author: lcarlier
Revision: 259860

community2extra: Moving opencl-headers from community to extra

Added:
  opencl-headers/
  opencl-headers/repos/
  opencl-headers/trunk/
  opencl-headers/trunk/LICENSE.txt
  opencl-headers/trunk/PKGBUILD

-+
 LICENSE.txt |   20 
 PKGBUILD|   54 ++
 2 files changed, 74 insertions(+)

Added: opencl-headers/trunk/LICENSE.txt
===
--- opencl-headers/trunk/LICENSE.txt(rev 0)
+++ opencl-headers/trunk/LICENSE.txt2016-02-16 22:14:16 UTC (rev 259860)
@@ -0,0 +1,20 @@
+ * Copyright (c) 2008-2010 The Khronos Group Inc.
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a
+ * copy of this software and/or associated documentation files (the
+ * "Materials"), to deal in the Materials without restriction, including
+ * without limitation the rights to use, copy, modify, merge, publish,
+ * distribute, sublicense, and/or sell copies of the Materials, and to
+ * permit persons to whom the Materials are 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 Materials.
+ *
+ * THE MATERIALS ARE 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
+ * MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS.

Added: opencl-headers/trunk/PKGBUILD
===
--- opencl-headers/trunk/PKGBUILD   (rev 0)
+++ opencl-headers/trunk/PKGBUILD   2016-02-16 22:14:16 UTC (rev 259860)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault 
+# Contributor: Sylvain HENRY 
+
+pkgname=opencl-headers
+pkgver=2.1.20151224
+_clbasever=2.1
+pkgrel=1
+epoch=2
+pkgdesc='OpenCL (Open Computing Language) header files'
+arch=('any')
+url='http://www.khronos.org/registry/cl/'
+license=('custom')
+source=("https://sources.archlinux.org/other/community/${pkgname}/${pkgname}-${pkgver}.src.tar.xz";
+'LICENSE.txt')
+_headers=("http://www.khronos.org/registry/cl/api/${_clbasever}/opencl.h";
+  "http://www.khronos.org/registry/cl/api/${_clbasever}/cl_platform.h";
+  "http://www.khronos.org/registry/cl/api/${_clbasever}/cl.h";
+  "http://www.khronos.org/registry/cl/api/${_clbasever}/cl_ext.h";
+  "http://www.khronos.org/registry/cl/api/${_clbasever}/cl_egl.h";
+  "http://www.khronos.org/registry/cl/api/${_clbasever}/cl_gl.h";
+  "http://www.khronos.org/registry/cl/api/${_clbasever}/cl_gl_ext.h";
+  "http://www.khronos.org/registry/cl/api/${_clbasever}/cl2.hpp";
+  "http://www.khronos.org/registry/cl/api/${_clbasever}/cl.hpp";) # 
compatibility for OCL 1.2
+sha1sums=('6fae079bd2b02b1ea5312f61ff817c8f541ceb4f'
+  '98abb35b2eca82d0fc19db6d28fcc7bd20be0655')
+
+# source PKGBUILD && mksource
+mksource() {
+   cd "${srcdir}"
+   _dirname=${pkgname}-${pkgver}
+   mkdir ${_dirname}
+
+   pushd ${_dirname}
+   for _h in ${_headers[@]}; do
+  wget ${_h}
+   done
+   popd
+
+   tar -cJv --exclude=CVS -f ${_dirname}.src.tar.xz ${_dirname}
+   rm -rf ${_dirname}
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   install -dm755 "${pkgdir}"/usr/include/CL
+
+   for h in $(ls -1 *.h *.hpp); do
+  install -m 644 ${h} "${pkgdir}"/usr/include/CL/
+   done
+
+   install -D -m644 ../LICENSE.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}


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


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

2016-02-16 Thread Jonathan Steel
Date: Tuesday, February 16, 2016 @ 23:07:51
  Author: jsteel
Revision: 161898

ffmpeg 3.0 rebuild

Modified:
  mgba/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-16 21:15:20 UTC (rev 161897)
+++ PKGBUILD2016-02-16 22:07:51 UTC (rev 161898)
@@ -6,7 +6,7 @@
 pkgbase=mgba
 pkgname=('libmgba' 'mgba-sdl' 'mgba-qt')
 pkgver=0.4.0
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url='http://mgba.io'
 license=('custom:MPL2')


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

2016-02-16 Thread Jonathan Steel
Date: Tuesday, February 16, 2016 @ 23:08:09
  Author: jsteel
Revision: 161899

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

Added:
  mgba/repos/community-staging-i686/
  mgba/repos/community-staging-i686/PKGBUILD
(from rev 161898, mgba/trunk/PKGBUILD)
  mgba/repos/community-staging-i686/mgba.install
(from rev 161898, mgba/trunk/mgba.install)
  mgba/repos/community-staging-x86_64/
  mgba/repos/community-staging-x86_64/PKGBUILD
(from rev 161898, mgba/trunk/PKGBUILD)
  mgba/repos/community-staging-x86_64/mgba.install
(from rev 161898, mgba/trunk/mgba.install)

---+
 community-staging-i686/PKGBUILD   |   61 
 community-staging-i686/mgba.install   |   11 +
 community-staging-x86_64/PKGBUILD |   61 
 community-staging-x86_64/mgba.install |   11 +
 4 files changed, 144 insertions(+)

Copied: mgba/repos/community-staging-i686/PKGBUILD (from rev 161898, 
mgba/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-02-16 22:08:09 UTC (rev 161899)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer:  Jonathan Steel 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Duck Hunt 
+
+pkgbase=mgba
+pkgname=('libmgba' 'mgba-sdl' 'mgba-qt')
+pkgver=0.4.0
+pkgrel=2
+arch=('i686' 'x86_64')
+url='http://mgba.io'
+license=('custom:MPL2')
+makedepends=('cmake' 'qt5-multimedia' 'sdl2' 'zlib' 'libpng' 'libzip' 'libedit'
+ 'ffmpeg' 'imagemagick' 'desktop-file-utils')
+install=$pkgbase.install
+source=($pkgbase-$pkgver.tar.gz::https://github.com/mgba-emu/mgba/archive/$pkgver.tar.gz)
+md5sums=('b37fcab5e7139b7c161d880576d2d1cc')
+
+prepare() {
+  [[ ! -d build ]] && mkdir build || rm -rf build
+}
+
+build() {
+  cd build
+  cmake "$srcdir"/mgba-$pkgver -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package_libmgba() {
+  pkgdesc='Shared library of mGBA'
+  depends=('zlib' 'libpng' 'libzip' 'libedit' 'ffmpeg' 'imagemagick')
+
+  cmake -DCOMPONENT=libmgba mgba-$pkgver -DCMAKE_INSTALL_PREFIX="$pkgdir/usr" \
+-P build/cmake_install.cmake
+  install -Dm644 mgba-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_mgba-sdl() {
+  pkgdesc='A Nintendo Gameboy Advance Emulator focusing on both speed and 
accuracy'
+  depends=('libmgba' 'sdl2')
+
+  cmake -DCOMPONENT=mgba-sdl mgba-$pkgver -DCMAKE_INSTALL_PREFIX="$pkgdir/usr" 
\
+-P build/cmake_install.cmake
+
+  install -d "$pkgdir"/usr/share/licenses/$pkgname
+  ln -s /usr/share/licenses/libmgba/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_mgba-qt() {
+  pkgdesc='A Nintendo Gameboy Advance Emulator focusing on both speed and 
accuracy. Qt5 UI.'
+  depends=('libmgba' 'qt5-multimedia' 'sdl2')
+
+  cmake -DCOMPONENT=mgba-qt mgba-$pkgver -DCMAKE_INSTALL_PREFIX="$pkgdir/usr" \
+-P build/cmake_install.cmake
+
+  desktop-file-install mgba-$pkgver/res/mgba-qt.desktop --dir 
"$pkgdir"/usr/share/applications/
+  install -Dm644 mgba-$pkgver/res/mgba-256.png 
"$pkgdir"/usr/share/pixmaps/mgba.png
+
+  install -d "$pkgdir"/usr/share/licenses/$pkgname
+  ln -s /usr/share/licenses/libmgba/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Copied: mgba/repos/community-staging-i686/mgba.install (from rev 161898, 
mgba/trunk/mgba.install)
===
--- community-staging-i686/mgba.install (rev 0)
+++ community-staging-i686/mgba.install 2016-02-16 22:08:09 UTC (rev 161899)
@@ -0,0 +1,11 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: mgba/repos/community-staging-x86_64/PKGBUILD (from rev 161898, 
mgba/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-02-16 22:08:09 UTC (rev 161899)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer:  Jonathan Steel 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Duck Hunt 
+
+pkgbase=mgba
+pkgname=('libmgba' 'mgba-sdl' 'mgba-qt')
+pkgver=0.4.0
+pkgrel=2
+arch=('i686' 'x86_64')
+url='http://mgba.io'
+license=('custom:MPL2')
+makedepends=('cmake' 'qt5-multimedia' 'sdl2' 'zlib' 'libpng' 'libzip' 'libedit'
+ 'ffmpeg' 'imagemagick' 'desktop-file-utils')
+install=$pkgbase.install
+source=($pkgbase-$pkgver.tar.gz::https://github.com/mgba-emu/mgba/archive/$pkgver.tar.gz)
+md5sums=('b37fcab5e7139b7c161d880576d2d1cc')
+
+prepare() {
+  [[ ! -d build ]] && mkdir build || rm -rf build
+}
+
+build() {
+  cd build
+  cmake "$srcdir"/mgba-$pkgver -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package_libmgba() {
+  pkgdesc='Shared library of mGBA'
+  depends=('zlib' 'libpng

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

2016-02-16 Thread Antonio Rojas
Date: Tuesday, February 16, 2016 @ 22:17:14
  Author: arojas
Revision: 259859

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

Added:
  plasma-framework/repos/extra-i686/PKGBUILD
(from rev 259858, plasma-framework/trunk/PKGBUILD)
  plasma-framework/repos/extra-x86_64/PKGBUILD
(from rev 259858, plasma-framework/trunk/PKGBUILD)
Deleted:
  plasma-framework/repos/extra-i686/PKGBUILD
  plasma-framework/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-02-16 21:15:40 UTC (rev 259858)
+++ extra-i686/PKGBUILD 2016-02-16 21:17:14 UTC (rev 259859)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=plasma-framework
-pkgver=5.19.0
-pkgrel=1
-pkgdesc='Plasma library and runtime components based upon KF5 and Qt5'
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/frameworks/plasma-framework'
-license=('LGPL')
-depends=('qt5-quickcontrols' 'kactivities')
-makedepends=('extra-cmake-modules' 'qt5-tools' 'kdoctools')
-groups=('kf5')
-source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz";)
-md5sums=('dbb2096267291d4a36482575c00a3c58')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DQML_INSTALL_DIR=lib/qt/qml \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: plasma-framework/repos/extra-i686/PKGBUILD (from rev 259858, 
plasma-framework/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-02-16 21:17:14 UTC (rev 259859)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=plasma-framework
+pkgver=5.19.0
+pkgrel=2
+pkgdesc='Plasma library and runtime components based upon KF5 and Qt5'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/plasma-framework'
+license=('LGPL')
+depends=('qt5-quickcontrols' 'kactivities')
+makedepends=('extra-cmake-modules' 'qt5-tools' 'kdoctools')
+groups=('kf5')
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz";
+   
bug359388.patch::"https://quickgit.kde.org/?p=plasma-framework.git&a=commitdiff&h=525bf2d3&o=plain";)
+md5sums=('dbb2096267291d4a36482575c00a3c58'
+ 'e721f2e101d2dc368c714dacb73dffc4')
+
+prepare() {
+  mkdir -p build
+
+  cd $pkgname-$pkgver
+# Fix missing sni-qt tray icons http://bugs.kde.org/show_bug.cgi?id=359388
+  patch -p1 -i ../bug359388.patch
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DQML_INSTALL_DIR=lib/qt/qml \
+-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   2016-02-16 21:15:40 UTC (rev 259858)
+++ extra-x86_64/PKGBUILD   2016-02-16 21:17:14 UTC (rev 259859)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=plasma-framework
-pkgver=5.19.0
-pkgrel=1
-pkgdesc='Plasma library and runtime components based upon KF5 and Qt5'
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/frameworks/plasma-framework'
-license=('LGPL')
-depends=('qt5-quickcontrols' 'kactivities')
-makedepends=('extra-cmake-modules' 'qt5-tools' 'kdoctools')
-groups=('kf5')
-source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz";)
-md5sums=('dbb2096267291d4a36482575c00a3c58')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DQML_INSTALL_DIR=lib/qt/qml \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="${pkgdir}" install
-}

Copied: plasma-framework/repos/extra-x86_64/PKGBUILD (from rev 259858, 
plasma-framework/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-02-16 21:17:14 UTC (rev 259859)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkg

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

2016-02-16 Thread Antonio Rojas
Date: Tuesday, February 16, 2016 @ 22:15:40
  Author: arojas
Revision: 259858

New plasma-framework release, new regression

Modified:
  plasma-framework/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-16 20:45:45 UTC (rev 259857)
+++ PKGBUILD2016-02-16 21:15:40 UTC (rev 259858)
@@ -4,7 +4,7 @@
 
 pkgname=plasma-framework
 pkgver=5.19.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Plasma library and runtime components based upon KF5 and Qt5'
 arch=('i686' 'x86_64')
 url='https://projects.kde.org/projects/frameworks/plasma-framework'
@@ -12,11 +12,17 @@
 depends=('qt5-quickcontrols' 'kactivities')
 makedepends=('extra-cmake-modules' 'qt5-tools' 'kdoctools')
 groups=('kf5')
-source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz";)
-md5sums=('dbb2096267291d4a36482575c00a3c58')
+source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz";
+   
bug359388.patch::"https://quickgit.kde.org/?p=plasma-framework.git&a=commitdiff&h=525bf2d3&o=plain";)
+md5sums=('dbb2096267291d4a36482575c00a3c58'
+ 'e721f2e101d2dc368c714dacb73dffc4')
 
 prepare() {
   mkdir -p build
+
+  cd $pkgname-$pkgver
+# Fix missing sni-qt tray icons http://bugs.kde.org/show_bug.cgi?id=359388
+  patch -p1 -i ../bug359388.patch
 }
 
 build() {


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

2016-02-16 Thread Maxime Gauduin
Date: Tuesday, February 16, 2016 @ 22:15:20
  Author: alucryd
Revision: 161897

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

Added:
  emby-server/repos/community-i686/PKGBUILD
(from rev 161896, emby-server/trunk/PKGBUILD)
  emby-server/repos/community-i686/emby-migrate-database
(from rev 161896, emby-server/trunk/emby-migrate-database)
  emby-server/repos/community-i686/emby-server
(from rev 161896, emby-server/trunk/emby-server)
  emby-server/repos/community-i686/emby-server.conf
(from rev 161896, emby-server/trunk/emby-server.conf)
  emby-server/repos/community-i686/emby-server.install
(from rev 161896, emby-server/trunk/emby-server.install)
  emby-server/repos/community-i686/emby-server.service
(from rev 161896, emby-server/trunk/emby-server.service)
  emby-server/repos/community-x86_64/PKGBUILD
(from rev 161896, emby-server/trunk/PKGBUILD)
  emby-server/repos/community-x86_64/emby-migrate-database
(from rev 161896, emby-server/trunk/emby-migrate-database)
  emby-server/repos/community-x86_64/emby-server
(from rev 161896, emby-server/trunk/emby-server)
  emby-server/repos/community-x86_64/emby-server.conf
(from rev 161896, emby-server/trunk/emby-server.conf)
  emby-server/repos/community-x86_64/emby-server.install
(from rev 161896, emby-server/trunk/emby-server.install)
  emby-server/repos/community-x86_64/emby-server.service
(from rev 161896, emby-server/trunk/emby-server.service)
Deleted:
  emby-server/repos/community-i686/PKGBUILD
  emby-server/repos/community-i686/emby-migrate-database
  emby-server/repos/community-i686/emby-server
  emby-server/repos/community-i686/emby-server.conf
  emby-server/repos/community-i686/emby-server.install
  emby-server/repos/community-i686/emby-server.service
  emby-server/repos/community-x86_64/PKGBUILD
  emby-server/repos/community-x86_64/emby-migrate-database
  emby-server/repos/community-x86_64/emby-server
  emby-server/repos/community-x86_64/emby-server.conf
  emby-server/repos/community-x86_64/emby-server.install
  emby-server/repos/community-x86_64/emby-server.service

+
 /PKGBUILD  |  112 +++
 /emby-migrate-database |  112 +++
 /emby-server   |6 +
 /emby-server.conf  |8 ++
 /emby-server.install   |   62 +
 /emby-server.service   |   32 
 community-i686/PKGBUILD|   56 ---
 community-i686/emby-migrate-database   |   56 ---
 community-i686/emby-server |3 
 community-i686/emby-server.conf|4 -
 community-i686/emby-server.install |   31 
 community-i686/emby-server.service |   16 
 community-x86_64/PKGBUILD  |   56 ---
 community-x86_64/emby-migrate-database |   56 ---
 community-x86_64/emby-server   |3 
 community-x86_64/emby-server.conf  |4 -
 community-x86_64/emby-server.install   |   31 
 community-x86_64/emby-server.service   |   16 
 18 files changed, 332 insertions(+), 332 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-02-16 21:14:56 UTC (rev 161896)
+++ community-i686/PKGBUILD 2016-02-16 21:15:20 UTC (rev 161897)
@@ -1,56 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: Daniel Seymour 
-
-pkgname=emby-server
-pkgver=3.0.5821
-pkgrel=1
-pkgdesc='Bring together your videos, music, photos, and live television'
-arch=('i686' 'x86_64')
-url='http://emby.media'
-license=('GPL2')
-depends=('ffmpeg' 'imagemagick' 'mono' 'sqlite')
-install='emby-server.install'
-source=("emby-server-${pkgver}.tar.gz::https://github.com/MediaBrowser/MediaBrowser/archive/${pkgver}.tar.gz";
-'emby-server'
-'emby-migrate-database'
-'emby-server.conf'
-'emby-server.service')
-backup=('etc/conf.d/emby-server')
-sha256sums=('8f85dbbe61c9279e08f902ceeea9183ad2cdfe10d343abe3ba695dc9d1bf5592'
-'7b1974f7bba8ac4b76e51ef7fe1257d165c7c4abbd0915e192391336048a3d74'
-'b25bf83a0ab371aff3b13b82f7af71b51bfe6d7e51eb8a8a3dd8f0774ffce6a5'
-'c9ad78f3e2f0ffcb4ee66bb3e99249fcd283dc9fee17895b9265dc733288b953'
-'8a91ea49a1699c820c4a180710072cba1d6d5c10e45df97477ff6a898f4e1d70')
-
-prepare() {
-  cd Emby-${pkgver}
-
-  sed 's/libMagickWand-6.Q8.so/libMagickWand-6.Q16HDRI.so/' -i 
MediaBrowser.Server.Mono/ImageMagickSharp.dll.config
-}
-
-build() {
-  cd Emby-${pkgver}
-
-  xbuild \
-/p:Configuration='Release Mono' \
-/p:Platform='Any CPU' \
-/p:OutputPath="${srcdir}/build" \
-/t:build MediaBrowser.Mono.sln
-  mono --aot='full' -O='all' ../build/MediaBrowser.Server.Mono.exe
-}
-
-package() {
-  install -dm 755 "${pkgdir}"/{etc/conf.d,u

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

2016-02-16 Thread Maxime Gauduin
Date: Tuesday, February 16, 2016 @ 22:14:56
  Author: alucryd
Revision: 161896

upgpkg: emby-server 3.0.5871-1

Modified:
  emby-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-16 20:28:00 UTC (rev 161895)
+++ PKGBUILD2016-02-16 21:14:56 UTC (rev 161896)
@@ -3,7 +3,7 @@
 # Contributor: Daniel Seymour 
 
 pkgname=emby-server
-pkgver=3.0.5821
+pkgver=3.0.5871
 pkgrel=1
 pkgdesc='Bring together your videos, music, photos, and live television'
 arch=('i686' 'x86_64')
@@ -17,7 +17,7 @@
 'emby-server.conf'
 'emby-server.service')
 backup=('etc/conf.d/emby-server')
-sha256sums=('8f85dbbe61c9279e08f902ceeea9183ad2cdfe10d343abe3ba695dc9d1bf5592'
+sha256sums=('abe0da011a9d365ae224096c8f9847f387f8e2342c470d77e10fb52e5eedf77b'
 '7b1974f7bba8ac4b76e51ef7fe1257d165c7c4abbd0915e192391336048a3d74'
 'b25bf83a0ab371aff3b13b82f7af71b51bfe6d7e51eb8a8a3dd8f0774ffce6a5'
 'c9ad78f3e2f0ffcb4ee66bb3e99249fcd283dc9fee17895b9265dc733288b953'


[arch-commits] Commit in xf86-video-intel/repos (8 files)

2016-02-16 Thread Andreas Radke
Date: Tuesday, February 16, 2016 @ 21:45:45
  Author: andyrtr
Revision: 259857

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

Added:
  xf86-video-intel/repos/testing-i686/PKGBUILD
(from rev 259856, xf86-video-intel/trunk/PKGBUILD)
  xf86-video-intel/repos/testing-i686/xf86-video-intel.install
(from rev 259856, xf86-video-intel/trunk/xf86-video-intel.install)
  xf86-video-intel/repos/testing-x86_64/PKGBUILD
(from rev 259856, xf86-video-intel/trunk/PKGBUILD)
  xf86-video-intel/repos/testing-x86_64/xf86-video-intel.install
(from rev 259856, xf86-video-intel/trunk/xf86-video-intel.install)
Deleted:
  xf86-video-intel/repos/testing-i686/PKGBUILD
  xf86-video-intel/repos/testing-i686/xf86-video-intel.install
  xf86-video-intel/repos/testing-x86_64/PKGBUILD
  xf86-video-intel/repos/testing-x86_64/xf86-video-intel.install

-+
 /PKGBUILD   |  124 ++
 /xf86-video-intel.install   |   40 +
 testing-i686/PKGBUILD   |   62 ---
 testing-i686/xf86-video-intel.install   |   20 
 testing-x86_64/PKGBUILD |   62 ---
 testing-x86_64/xf86-video-intel.install |   20 
 6 files changed, 164 insertions(+), 164 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2016-02-16 20:45:29 UTC (rev 259856)
+++ testing-i686/PKGBUILD   2016-02-16 20:45:45 UTC (rev 259857)
@@ -1,62 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR 
-# Maintainer: Jan de Groot 
-
-pkgname=xf86-video-intel
-pkgver=2.99.917+544+g8b8c9a3
-pkgrel=1
-epoch=1
-arch=(i686 x86_64)
-url="https://01.org/linuxgraphics";
-license=('custom')
-install=$pkgname.install
-pkgdesc="X.org Intel i810/i830/i915/945G/G965+ video drivers"
-depends=('mesa-dri' 'libxvmc' 'pixman' 'xcb-util>=0.3.9')
-makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=20' 'libx11' 
'libxrender'
- # additional deps for intel-virtual-output
- 'libxrandr' 'libxinerama' 'libxcursor' 'libxtst' 'libxss'
- # additional for git snapshot
- 'git')
-optdepends=('libxrandr: for intel-virtual-output'
-'libxinerama: for intel-virtual-output'
-'libxcursor: for intel-virtual-output'
-'libxtst: for intel-virtual-output'
-'libxss: for intel-virtual-output')
-replaces=('xf86-video-intel-uxa' 'xf86-video-intel-sna')
-provides=('xf86-video-intel-uxa' 'xf86-video-intel-sna')
-conflicts=('xorg-server<1.16' 'X-ABI-VIDEODRV_VERSION<20' 
'X-ABI-VIDEODRV_VERSION>=21'
-   'xf86-video-intel-sna' 'xf86-video-intel-uxa' 'xf86-video-i810' 
'xf86-video-intel-legacy')
-groups=('xorg-drivers' 'xorg')
-#source=(${url}/archive/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-source=('git://anongit.freedesktop.org/xorg/driver/xf86-video-intel#commit=8b8c9a3')
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --long | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr --libexecdir=/usr/lib
-  make
-}
-
-check() {
-  cd $pkgname
-  make check
-}
-
-package() {
-  cd $pkgname
-
-  make DESTDIR="${pkgdir}" install
-
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: xf86-video-intel/repos/testing-i686/PKGBUILD (from rev 259856, 
xf86-video-intel/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-02-16 20:45:45 UTC (rev 259857)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: AndyRTR 
+# Maintainer: Jan de Groot 
+
+pkgname=xf86-video-intel
+pkgver=2.99.917+552+ge41040f
+pkgrel=1
+epoch=1
+arch=(i686 x86_64)
+url="https://01.org/linuxgraphics";
+license=('custom')
+install=$pkgname.install
+pkgdesc="X.org Intel i810/i830/i915/945G/G965+ video drivers"
+depends=('mesa-dri' 'libxvmc' 'pixman' 'xcb-util>=0.3.9')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=20' 'libx11' 
'libxrender'
+ # additional deps for intel-virtual-output
+ 'libxrandr' 'libxinerama' 'libxcursor' 'libxtst' 'libxss'
+ # additional for git snapshot
+ 'git')
+optdepends=('libxrandr: for intel-virtual-output'
+'libxinerama: for intel-virtual-output'
+'libxcursor: for intel-virtual-output'
+'libxtst: for intel-virtual-output'
+'libxss: for intel-virtual-output')
+replaces=('xf86-video-intel-uxa' 'xf86-video-intel-sna')
+provides=('xf86-video-intel-uxa' 'xf86-video-intel-sna')
+conflicts=('xorg-server<1.16' 'X-ABI-VIDEODRV_VERSION<20' 
'X-ABI-VIDEODRV_VERSION>=21'
+   'xf86-video-intel-sna' 'xf86-video-intel-uxa' 'xf86-video-i810' 
'xf86-video-intel-legacy')

[arch-commits] Commit in xf86-video-intel/trunk (PKGBUILD)

2016-02-16 Thread Andreas Radke
Date: Tuesday, February 16, 2016 @ 21:45:29
  Author: andyrtr
Revision: 259856

upgpkg: xf86-video-intel 1:2.99.917+552+ge41040f-1

update to lastest git commit

Modified:
  xf86-video-intel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-16 20:12:29 UTC (rev 259855)
+++ PKGBUILD2016-02-16 20:45:29 UTC (rev 259856)
@@ -3,7 +3,7 @@
 # Maintainer: Jan de Groot 
 
 pkgname=xf86-video-intel
-pkgver=2.99.917+544+g8b8c9a3
+pkgver=2.99.917+552+ge41040f
 pkgrel=1
 epoch=1
 arch=(i686 x86_64)
@@ -28,7 +28,7 @@
'xf86-video-intel-sna' 'xf86-video-intel-uxa' 'xf86-video-i810' 
'xf86-video-intel-legacy')
 groups=('xorg-drivers' 'xorg')
 #source=(${url}/archive/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-source=('git://anongit.freedesktop.org/xorg/driver/xf86-video-intel#commit=8b8c9a3')
+source=('git://anongit.freedesktop.org/xorg/driver/xf86-video-intel#commit=e41040f')
 sha256sums=('SKIP')
 
 pkgver() {


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

2016-02-16 Thread Andreas Radke
Date: Tuesday, February 16, 2016 @ 21:28:00
  Author: andyrtr
Revision: 161895

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

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

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

Copied: virtualbox-modules-lts/repos/community-testing-i686/PKGBUILD (from rev 
161894, virtualbox-modules-lts/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2016-02-16 20:28:00 UTC (rev 161895)
@@ -0,0 +1,71 @@
+# $Id$
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Ionut Biru 
+# Contributor: Sébastien Luttringer
+
+pkgbase=virtualbox-modules-lts
+pkgname=('virtualbox-host-modules-lts' 'virtualbox-guest-modules-lts')
+pkgver=5.0.14
+pkgrel=3
+arch=('i686' 'x86_64')
+url='http://virtualbox.org'
+license=('GPL')
+makedepends=('linux-lts>=4.1.18' 'linux-lts<4.2'
+ 'linux-lts-headers>=4.1.18' 'linux-lts-headers<4.2'
+ "virtualbox-host-dkms>=$pkgver"
+ "virtualbox-guest-dkms>=$pkgver")
+
+# remember to also adjust the .install files and the package deps below
+_extramodules=extramodules-4.1-lts
+
+build() {
+  _kernver=$(cat /usr/lib/modules/$_extramodules/version)
+  # dkms need modification to be run as user
+  cp -r /var/lib/dkms .
+  echo "dkms_tree='$srcdir/dkms'" > dkms.conf
+  # build host modules
+  msg2 'Host modules'
+  dkms --dkmsframework dkms.conf build "vboxhost/$pkgver" -k "$_kernver"
+  # build guest modules
+  msg2 'Guest modules'
+  dkms --dkmsframework dkms.conf build "vboxguest/$pkgver" -k "$_kernver"
+}
+
+package_virtualbox-host-modules-lts(){
+  _kernver=$(cat /usr/lib/modules/$_extramodules/version)
+  pkgdesc='Host kernel modules for VirtualBox'
+  depends=('linux-lts>=4.1.18' 'linux-lts<4.2')
+  replaces=('virtualbox-modules-lts')
+  conflicts=('virtualbox-modules-lts')
+  provides=("virtualbox-host-modules=$pkgver")
+  install=virtualbox-host-modules-lts.install
+
+  cd "dkms/vboxhost/$pkgver/$_kernver/$CARCH/module"
+  install -dm755 "$pkgdir/usr/lib/modules/$_extramodules/"
+  install -m644 * "$pkgdir/usr/lib/modules/$_extramodules/"
+  find "$pkgdir" -name '*.ko' -exec gzip -9 {} +
+}
+
+package_virtualbox-guest-modules-lts(){
+  _kernver=$(cat /usr/lib/modules/$_extramodules/version)
+  pkgdesc='Guest kernel modules for VirtualBox'
+  license=('GPL')
+  depends=('linux-lts>=4.1.18' 'linux-lts<4.2')
+  replaces=('virtualbox-archlinux-modules-lts')
+  conflicts=('virtualbox-archlinux-modules-lts')
+  provides=("virtualbox-guest-modules=$pkgver")
+  install=virtualbox-guest-modules-lts.install
+
+  cd "dkms/vboxguest/$pkgver/$_kernver/$CARCH/module"
+  install -dm755 "$pkgdir/usr/lib/modules/$_extramodules/"
+  install -m644 * "$pkgdir/usr/lib/modules/$_extramodules/"
+  find "$pkgdir" -name '*.ko' -exec gzip -9 {} +
+}
+
+# vim:set ts=2 sw=2 et:
+
+
+
+
+
+

Copied: virtualbox-modules-lts/repos/community-testin

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

2016-02-16 Thread Andreas Radke
Date: Tuesday, February 16, 2016 @ 21:27:46
  Author: andyrtr
Revision: 161894

upgpkg: virtualbox-modules-lts 5.0.14-3

rebuild for 4.1.18

Modified:
  virtualbox-modules-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-16 20:24:57 UTC (rev 161893)
+++ PKGBUILD2016-02-16 20:27:46 UTC (rev 161894)
@@ -6,12 +6,12 @@
 pkgbase=virtualbox-modules-lts
 pkgname=('virtualbox-host-modules-lts' 'virtualbox-guest-modules-lts')
 pkgver=5.0.14
-pkgrel=2
+pkgrel=3
 arch=('i686' 'x86_64')
 url='http://virtualbox.org'
 license=('GPL')
-makedepends=('linux-lts>=4.1.17' 'linux-lts<4.2'
- 'linux-lts-headers>=4.1.17' 'linux-lts-headers<4.2'
+makedepends=('linux-lts>=4.1.18' 'linux-lts<4.2'
+ 'linux-lts-headers>=4.1.18' 'linux-lts-headers<4.2'
  "virtualbox-host-dkms>=$pkgver"
  "virtualbox-guest-dkms>=$pkgver")
 
@@ -34,7 +34,7 @@
 package_virtualbox-host-modules-lts(){
   _kernver=$(cat /usr/lib/modules/$_extramodules/version)
   pkgdesc='Host kernel modules for VirtualBox'
-  depends=('linux-lts>=4.1.17' 'linux-lts<4.2')
+  depends=('linux-lts>=4.1.18' 'linux-lts<4.2')
   replaces=('virtualbox-modules-lts')
   conflicts=('virtualbox-modules-lts')
   provides=("virtualbox-host-modules=$pkgver")
@@ -50,7 +50,7 @@
   _kernver=$(cat /usr/lib/modules/$_extramodules/version)
   pkgdesc='Guest kernel modules for VirtualBox'
   license=('GPL')
-  depends=('linux-lts>=4.1.17' 'linux-lts<4.2')
+  depends=('linux-lts>=4.1.18' 'linux-lts<4.2')
   replaces=('virtualbox-archlinux-modules-lts')
   conflicts=('virtualbox-archlinux-modules-lts')
   provides=("virtualbox-guest-modules=$pkgver")


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

2016-02-16 Thread Andreas Radke
Date: Tuesday, February 16, 2016 @ 21:24:48
  Author: andyrtr
Revision: 161892

upgpkg: tp_smapi-lts 0.41-47

rebuild for 4.1.18

Modified:
  tp_smapi-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-16 20:22:11 UTC (rev 161891)
+++ PKGBUILD2016-02-16 20:24:48 UTC (rev 161892)
@@ -12,13 +12,13 @@
 _pkgname=tp_smapi
 _extramodules=/usr/lib/modules/extramodules-4.1-lts
 pkgver=0.41
-pkgrel=46
+pkgrel=47
 pkgdesc="linux-lts modules for ThinkPad's SMAPI functionality"
 arch=('i686' 'x86_64')
 url='https://github.com/evgeni/tp_smapi'
 license=('GPL')
-depends=('linux-lts>=4.1.17' 'linux-lts<4.2')
-makedepends=('linux-lts-headers>=4.1.17' 'linux-lts-headers<4.2')
+depends=('linux-lts>=4.1.18' 'linux-lts<4.2')
+makedepends=('linux-lts-headers>=4.1.18' 'linux-lts-headers<4.2')
 install="${pkgname}.install"
 
source=("https://github.com/downloads/evgeni/${_pkgname}/${_pkgname}-${pkgver}.tar.gz";)
 md5sums=('63c683415c764568f6bf17c7eabe4752')


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

2016-02-16 Thread Andreas Radke
Date: Tuesday, February 16, 2016 @ 21:24:57
  Author: andyrtr
Revision: 161893

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

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

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

Copied: tp_smapi-lts/repos/community-testing-i686/PKGBUILD (from rev 161892, 
tp_smapi-lts/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2016-02-16 20:24:57 UTC (rev 161893)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Lukas Fleischer 
+# Contributor: xduugu
+# Contributor: nh2
+# Contributor: Steven Davidovitz 
+# Contributor: Nick B 
+# Contributor: Christof Musik 
+# Contributor: Stefan Rupp 
+# Contributor: Ignas Anikevicius 
+
+pkgname=tp_smapi-lts
+_pkgname=tp_smapi
+_extramodules=/usr/lib/modules/extramodules-4.1-lts
+pkgver=0.41
+pkgrel=47
+pkgdesc="linux-lts modules for ThinkPad's SMAPI functionality"
+arch=('i686' 'x86_64')
+url='https://github.com/evgeni/tp_smapi'
+license=('GPL')
+depends=('linux-lts>=4.1.18' 'linux-lts<4.2')
+makedepends=('linux-lts-headers>=4.1.18' 'linux-lts-headers<4.2')
+install="${pkgname}.install"
+source=("https://github.com/downloads/evgeni/${_pkgname}/${_pkgname}-${pkgver}.tar.gz";)
+md5sums=('63c683415c764568f6bf17c7eabe4752')
+
+build() {
+  cd "${srcdir}/${_pkgname}-${pkgver}"
+
+  _kernver=$(< "${_extramodules}/version")
+
+  sed -ri -e "s/^(KVER\s*:=).*$/\1 ${_kernver}/" \
+ -e "s#^(KBASE\s*:=).*\$#\1 ${_extramodules%/*}/${_kernver}#" Makefile
+
+  make HDAPS=1
+}
+
+package() {
+  _kernver=$(< "${_extramodules}/version")
+
+  make -C "${_extramodules%/*}/${_kernver}/build" \
+INSTALL_MOD_PATH="${pkgdir}/${_extramodules%%/lib/*}" \
+M="${srcdir}/${_pkgname}-${pkgver}" modules_install
+
+  cd "${pkgdir}/${_extramodules%/*}"
+  mv "${_kernver}/extra" "${_extramodules##*/}"
+  rmdir "${_kernver}"
+
+  # compress kernel modules
+  find "${pkgdir}" -name "*.ko" -exec gzip -9 {} +
+
+  # load module on startup
+  echo tp_smapi > "${srcdir}/${pkgname}.conf"
+  install -Dm644 "${srcdir}/${pkgname}.conf" 
"${pkgdir}/usr/lib/modules-load.d/${pkgname}.conf"
+
+  # update kernel version in install file
+  sed -ri "s#^(extramodules=).*\$#\1${_extramodules}#" 
"${startdir}/${pkgname}.install"
+}

Copied: tp_smapi-lts/repos/community-testing-i686/tp_smapi-lts.install (from 
rev 161892, tp_smapi-lts/trunk/tp_smapi-lts.install)
===
--- community-testing-i686/tp_smapi-lts.install (rev 0)
+++ community-testing-i686/tp_smapi-lts.install 2016-02-16 20:24:57 UTC (rev 
161893)
@@ -0,0 +1,13 @@
+extramodules=/usr/lib/modules/extramodules-4.1-lts
+
+post_install() {
+  depmod -v $(< "$extramodules/version") &>/dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: tp_smapi-lts/repos/community-testing-x86_64/PKGBUILD (from rev 161892, 
tp_smapi-lts/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2016-02-16 20:24:57 UTC (rev 161893)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Lukas Fleischer 
+# Contributor: xduugu
+# Contributor: nh2
+# Contributor: Steven Davidovitz 
+# Contributor: Nick B 
+# Contributor: Christof Musik 
+# Contributor: Stefan Rupp 
+# Contributor: Ignas Anikevicius 
+
+pkgname=tp_smapi-lts
+_pkgname=tp_smapi
+_extramodules=/usr/lib/modules/extramodules-4.1-lts
+pkgver=0.41
+pkgrel=47
+pkgdesc="linux-lts modules for ThinkPad's SMAPI functionality"
+arch=('i686' 'x86_64')
+url='https://github.com/evgeni/tp_smapi'
+license=('GPL')
+depends=('linux-lts>=4.1.18' 'linux-lts<4.2')
+makedepends=('linux-lts-headers>=4.1.18' 'linux-lts-headers<4.2')
+install="${pkgname}.install"
+source=("https://github.com/downloads/evgeni/${_pkgname}/${_pkgname}-${pkgver}.tar.gz";)
+md5sums=('63c683415c764568f6bf17c7eabe4752')
+
+build() {
+  cd "${srcdir}/${_pkgname}-${pkgver}"
+
+  

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

2016-02-16 Thread Andreas Radke
Date: Tuesday, February 16, 2016 @ 21:22:01
  Author: andyrtr
Revision: 161890

upgpkg: r8168-lts 8.041.00-3

rebuild for 4.1.18

Modified:
  r8168-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-16 20:19:42 UTC (rev 161889)
+++ PKGBUILD2016-02-16 20:22:01 UTC (rev 161890)
@@ -4,14 +4,14 @@
 pkgname=r8168-lts
 _pkgname=r8168
 pkgver=8.041.00
-pkgrel=2
+pkgrel=3
 pkgdesc="A kernel module for Realtek 8168 network cards for linux-lts"
 #url="http://www.realtek.com.tw";
 url="https://code.google.com/p/r8168/";
 license=("GPL")
 arch=('i686' 'x86_64')
-depends=('glibc' "linux-lts>=4.1.17" "linux-lts<4.2")
-makedepends=("linux-lts-headers>=4.1.17" "linux-lts-headers<4.2")
+depends=('glibc' "linux-lts>=4.1.18" "linux-lts<4.2")
+makedepends=("linux-lts-headers>=4.1.18" "linux-lts-headers<4.2")
 install=$pkgname.install
 
source=(https://github.com/mtorromeo/r8168/archive/$pkgver/$pkgname-$pkgver.tar.gz)
 sha256sums=('d56f60e4157ccbf8f8717270b1acb391b0a959d9a96c2f0b4a91c683aa8b83a5')


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

2016-02-16 Thread Andreas Radke
Date: Tuesday, February 16, 2016 @ 21:22:11
  Author: andyrtr
Revision: 161891

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

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

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

Copied: r8168-lts/repos/community-testing-i686/PKGBUILD (from rev 161890, 
r8168-lts/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2016-02-16 20:22:11 UTC (rev 161891)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=r8168-lts
+_pkgname=r8168
+pkgver=8.041.00
+pkgrel=3
+pkgdesc="A kernel module for Realtek 8168 network cards for linux-lts"
+#url="http://www.realtek.com.tw";
+url="https://code.google.com/p/r8168/";
+license=("GPL")
+arch=('i686' 'x86_64')
+depends=('glibc' "linux-lts>=4.1.18" "linux-lts<4.2")
+makedepends=("linux-lts-headers>=4.1.18" "linux-lts-headers<4.2")
+install=$pkgname.install
+source=(https://github.com/mtorromeo/r8168/archive/$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('d56f60e4157ccbf8f8717270b1acb391b0a959d9a96c2f0b4a91c683aa8b83a5')
+
+_extramodules=extramodules-4.1-lts
+
+build() {
+   cd "$_pkgname-$pkgver"
+   local _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
+   make -C /usr/lib/modules/$_kernver/build \
+   SUBDIRS="$srcdir/$_pkgname-$pkgver/src" \
+   EXTRA_CFLAGS="-DCONFIG_R8168_NAPI -DCONFIG_R8168_VLAN" \
+   modules
+}
+
+package() {
+   cd "$_pkgname-$pkgver"
+   install -Dm644 src/$_pkgname.ko 
"$pkgdir/usr/lib/modules/$_extramodules/$_pkgname.ko"
+   find "$pkgdir" -name '*.ko' -exec gzip -9 {} +
+}

Copied: r8168-lts/repos/community-testing-i686/r8168-lts.install (from rev 
161890, r8168-lts/trunk/r8168-lts.install)
===
--- community-testing-i686/r8168-lts.install(rev 0)
+++ community-testing-i686/r8168-lts.install2016-02-16 20:22:11 UTC (rev 
161891)
@@ -0,0 +1,17 @@
+rebuild_module_dependencies() {
+   EXTRAMODULES='extramodules-4.1-lts'
+   depmod $(cat /lib/modules/$EXTRAMODULES/version)
+}
+
+post_install() {
+  rebuild_module_dependencies
+   echo '>>> The module r8168 conflicts with r8169. You can blacklist it 
with:'
+   echo '>>>  `echo "blacklist r8169" > 
/etc/modprobe.d/r8169_blacklist.conf`'
+}
+post_upgrade() {
+   rebuild_module_dependencies
+}
+
+post_remove() {
+   rebuild_module_dependencies
+}

Copied: r8168-lts/repos/community-testing-x86_64/PKGBUILD (from rev 161890, 
r8168-lts/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2016-02-16 20:22:11 UTC (rev 161891)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=r8168-lts
+_pkgname=r8168
+pkgver=8.041.00
+pkgrel=3
+pkgdesc="A kernel module for Realtek 8168 network cards for linux-lts"
+#url="http://www.realtek.com.tw";
+url="https://code.google.com/p/r8168/";
+license=("GPL")
+arch=('i686' 'x86_64')
+depends=('glibc' "linux-lts>=4.1.18" "linux-lts<4.2")
+makedepends=("linux-lts-headers>=4.1.18" "linux-lts-headers<4.2")
+install=$pkgname.install
+source=(https://github.com/mtorromeo/r8168/archive/$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('d56f60e4157ccbf8f8717270b1acb391b0a959d9a96c2f0b4a91c683aa8b83a5')
+
+_extramodules=extramodules-4.1-lts
+
+build() {
+   cd "$_pkgname-$pkgver"
+   local _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
+   make -C /usr/lib/modules/$_kernver/build \
+   SUBDIRS="$srcdir/$_pkgname-$pkgver/src" \
+   EXTRA_CFLAGS="-DCONFIG_R8168_NAPI -DCONFIG_R8168_VLAN" \
+   modules
+}
+
+package() {
+   cd "$_pkgname-$pkgver"
+   install -Dm644 src/$_pkgname.ko 
"$pkgdir/usr/lib/modules/$_extramodules/$_pkgname.ko"
+   find "$pkgdir" -name '*.ko' -exec gzip -9 {} +
+}

Copied: r8168-lts/rep

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

2016-02-16 Thread Andreas Radke
Date: Tuesday, February 16, 2016 @ 21:19:33
  Author: andyrtr
Revision: 161888

upgpkg: bbswitch-lts 0.8-16

rebuild for 4.1.18

Modified:
  bbswitch-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-16 20:17:15 UTC (rev 161887)
+++ PKGBUILD2016-02-16 20:19:33 UTC (rev 161888)
@@ -7,13 +7,13 @@
 _basename=bbswitch
 pkgver=0.8
 _extramodules=extramodules-4.1-lts # Don't forget to update 
bbswitch-lts.install
-pkgrel=15
+pkgrel=16
 pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus 
laptops"
 arch=('i686' 'x86_64')
 url="http://github.com/Bumblebee-Project/bbswitch";
 license=('GPL')
-depends=('linux-lts>=4.1.17' 'linux-lts<4.2')
-makedepends=('linux-lts-headers>=4.1.17' 'linux-lts-headers<4.2')
+depends=('linux-lts>=4.1.18' 'linux-lts<4.2')
+makedepends=('linux-lts-headers>=4.1.18' 'linux-lts-headers<4.2')
 install=${pkgname}.install
 
source=("${_basename}-$pkgver.tar.gz::https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz";)
 md5sums=('5b116b31ace3604ddf9d1fc1f4bc5807')


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

2016-02-16 Thread Andreas Radke
Date: Tuesday, February 16, 2016 @ 21:19:42
  Author: andyrtr
Revision: 161889

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

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

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

Copied: bbswitch-lts/repos/community-testing-i686/PKGBUILD (from rev 161888, 
bbswitch-lts/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2016-02-16 20:19:42 UTC (rev 161889)
@@ -0,0 +1,34 @@
+# $Id: PKGBUILD 120281 2014-10-06 16:24:13Z tpowa $
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: M0Rf30
+# Contributor: Samsagax 
+
+pkgname=bbswitch-lts
+_basename=bbswitch
+pkgver=0.8
+_extramodules=extramodules-4.1-lts # Don't forget to update 
bbswitch-lts.install
+pkgrel=16
+pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus 
laptops"
+arch=('i686' 'x86_64')
+url="http://github.com/Bumblebee-Project/bbswitch";
+license=('GPL')
+depends=('linux-lts>=4.1.18' 'linux-lts<4.2')
+makedepends=('linux-lts-headers>=4.1.18' 'linux-lts-headers<4.2')
+install=${pkgname}.install
+source=("${_basename}-$pkgver.tar.gz::https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz";)
+md5sums=('5b116b31ace3604ddf9d1fc1f4bc5807')
+
+build() {
+  cd ${srcdir}/${_basename}-${pkgver}
+
+  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+
+  make KDIR=/lib/modules/${_kernver}/build
+}
+
+package() {
+  cd ${srcdir}/${_basename}-${pkgver}
+   
+  install -Dm644 bbswitch.ko 
"${pkgdir}"/usr/lib/modules/${_extramodules}/bbswitch.ko
+  gzip "${pkgdir}/usr/lib/modules/${_extramodules}/bbswitch.ko"
  
+}

Copied: bbswitch-lts/repos/community-testing-i686/bbswitch-lts.install (from 
rev 161888, bbswitch-lts/trunk/bbswitch-lts.install)
===
--- community-testing-i686/bbswitch-lts.install (rev 0)
+++ community-testing-i686/bbswitch-lts.install 2016-02-16 20:19:42 UTC (rev 
161889)
@@ -0,0 +1,12 @@
+post_install() {
+EXTRAMODULES='extramodules-4.1-lts'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Copied: bbswitch-lts/repos/community-testing-x86_64/PKGBUILD (from rev 161888, 
bbswitch-lts/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2016-02-16 20:19:42 UTC (rev 161889)
@@ -0,0 +1,34 @@
+# $Id: PKGBUILD 120281 2014-10-06 16:24:13Z tpowa $
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: M0Rf30
+# Contributor: Samsagax 
+
+pkgname=bbswitch-lts
+_basename=bbswitch
+pkgver=0.8
+_extramodules=extramodules-4.1-lts # Don't forget to update 
bbswitch-lts.install
+pkgrel=16
+pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus 
laptops"
+arch=('i686' 'x86_64')
+url="http://github.com/Bumblebee-Project/bbswitch";
+license=('GPL')
+depends=('linux-lts>=4.1.18' 'linux-lts<4.2')
+makedepends=('linux-lts-headers>=4.1.18' 'linux-lts-headers<4.2')
+install=${pkgname}.install
+source=("${_basename}-$pkgver.tar.gz::https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz";)
+md5sums=('5b116b31ace3604ddf9d1fc1f4bc5807')
+
+build() {
+  cd ${srcdir}/${_basename}-${pkgver}
+
+  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+
+  make KDIR=/lib/modules/${_kernver}/build
+}
+
+package() {
+  cd ${srcdir}/${_basename}-${pkgver}
+   
+  install -Dm644 bbswitch.ko 
"${pkgdir}"/usr/lib/modules/${_extramodules}/bbswitch.ko
+  gzip "${pkgdir}/usr/lib/modules/${_extramodules}/bbswitch.ko"
  
+}

Copied: bbswitch-lts/repos/community-testing-x86_64/bbswitch-lts.install (from 
rev 161888, bbswitch-lts/trunk/bbswitch-lts.install)
===
--- community-testing-x86_64/bbswitch-lts.install   

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

2016-02-16 Thread Andreas Radke
Date: Tuesday, February 16, 2016 @ 21:17:01
  Author: andyrtr
Revision: 161885

upgpkg: acpi_call-lts 1.1.0-27

rebuild for 4.1.18

Modified:
  acpi_call-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-16 20:15:44 UTC (rev 161884)
+++ PKGBUILD2016-02-16 20:17:01 UTC (rev 161885)
@@ -5,14 +5,14 @@
 
 pkgname=acpi_call-lts
 pkgver=1.1.0
-pkgrel=26
+pkgrel=27
 _extramodules=extramodules-4.1-lts
 pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
 arch=('i686' 'x86_64')
 url="http://github.com/mkottman/${pkgname%-*}";
 license=('GPL')
-depends=('linux-lts>=4.1.17')
-makedepends=('linux-lts-headers>=4.1.17')
+depends=('linux-lts>=4.1.18')
+makedepends=('linux-lts-headers>=4.1.18')
 provides=("${pkgname%-*}")
 install="${pkgname%-*}.install"
 source=("acpi_call-$pkgver.tar.gz::${url}/archive/v${pkgver}.tar.gz")


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

2016-02-16 Thread Andreas Radke
Date: Tuesday, February 16, 2016 @ 21:17:11
  Author: andyrtr
Revision: 161886

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

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

+
 community-testing-i686/PKGBUILD|   48 +++
 community-testing-i686/acpi_call.install   |   14 +++
 community-testing-x86_64/PKGBUILD  |   48 +++
 community-testing-x86_64/acpi_call.install |   14 +++
 4 files changed, 124 insertions(+)

Copied: acpi_call-lts/repos/community-testing-i686/PKGBUILD (from rev 161885, 
acpi_call-lts/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2016-02-16 20:17:11 UTC (rev 161886)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: mortzu 
+# Contributor: fnord0 
+
+pkgname=acpi_call-lts
+pkgver=1.1.0
+pkgrel=27
+_extramodules=extramodules-4.1-lts
+pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
+arch=('i686' 'x86_64')
+url="http://github.com/mkottman/${pkgname%-*}";
+license=('GPL')
+depends=('linux-lts>=4.1.18')
+makedepends=('linux-lts-headers>=4.1.18')
+provides=("${pkgname%-*}")
+install="${pkgname%-*}.install"
+source=("acpi_call-$pkgver.tar.gz::${url}/archive/v${pkgver}.tar.gz")
+sha256sums=('d0d14b42944282724fca76f57d598eed794ef97448f387d1c489d85ad813f2f0')
+
+prepare() {
+  cd acpi_call-${pkgver}
+
+  # Fix build with Linux >= 3.17
+  sed -i 's|acpi/acpi.h|linux/acpi.h|' acpi_call.c
+}
+
+build() {
+  cd ${pkgname%-*}-${pkgver}
+
+  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+
+  make KVERSION="${_kernver}"
+}
+
+package() {
+  cd ${pkgname%-*}-${pkgver}
+
+  install -dm 755 "${pkgdir}"/usr/lib/{modules/${_extramodules},modules-load.d}
+  install -m 644 ${pkgname%-*}.ko "${pkgdir}"/usr/lib/modules/${_extramodules}/
+  gzip "${pkgdir}"/usr/lib/modules/${_extramodules}/${pkgname%-*}.ko
+  echo ${pkgname%-*} > "${pkgdir}"/usr/lib/modules-load.d/${pkgname}.conf
+
+  install -dm 755 "${pkgdir}"/usr/share/${pkgname}
+  cp -dr --no-preserve='ownership' {examples,support} 
"${pkgdir}"/usr/share/${pkgname}/
+}
+
+# vim: ts=2 sw=2 et:

Copied: acpi_call-lts/repos/community-testing-i686/acpi_call.install (from rev 
161885, acpi_call-lts/trunk/acpi_call.install)
===
--- community-testing-i686/acpi_call.install(rev 0)
+++ community-testing-i686/acpi_call.install2016-02-16 20:17:11 UTC (rev 
161886)
@@ -0,0 +1,14 @@
+post_install() {
+  _extramodules=extramodules-4.1-lts
+  depmod $(cat /usr/lib/modules/${_extramodules}/version)
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}
+
+# vim: ts=2 sw=2 et:

Copied: acpi_call-lts/repos/community-testing-x86_64/PKGBUILD (from rev 161885, 
acpi_call-lts/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2016-02-16 20:17:11 UTC (rev 161886)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: mortzu 
+# Contributor: fnord0 
+
+pkgname=acpi_call-lts
+pkgver=1.1.0
+pkgrel=27
+_extramodules=extramodules-4.1-lts
+pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
+arch=('i686' 'x86_64')
+url="http://github.com/mkottman/${pkgname%-*}";
+license=('GPL')
+depends=('linux-lts>=4.1.18')
+makedepends=('linux-lts-headers>=4.1.18')
+provides=("${pkgname%-*}")
+install="${pkgname%-*}.install"
+source=("acpi_call-$pkgver.tar.gz::${url}/archive/v${pkgver}.tar.gz")
+sha256sums=('d0d14b42944282724fca76f57d598eed794ef97448f387d1c489d85ad813f2f0')
+
+prepare() {
+  cd acpi_call-${pkgver}
+
+  # Fix build with Linux >= 3.17
+  sed -i 's|acpi/acpi.h|linux/acpi.h|' acpi_call.c
+}
+
+build() {
+  cd ${pkgname%-*}-${pkgver}
+
+  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+
+  make KVERSION="${_kernver}"
+}
+
+package() {
+  cd ${pkgname%-*}-${pkgver}
+
+  install -dm 755 "${pkgdir}"/usr/lib/{modules/${_extramodules},modules-load.d}
+  install -m 644 ${pkgname%-*}.ko "${pkgdir}"/usr/lib/modules/${_extramodules}/
+  gzip "${pkgdir}"/usr/lib/modules/${_extramodules}/$

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

2016-02-16 Thread Jaroslav Lichtblau
Date: Tuesday, February 16, 2016 @ 21:15:44
  Author: jlichtblau
Revision: 161884

upgpkg: qmmp 1.0.6-2 - ffmpeg 3.0 rebuild

Modified:
  qmmp/trunk/PKGBUILD
  qmmp/trunk/qmmp.changelog

+
 PKGBUILD   |2 +-
 qmmp.changelog |5 -
 2 files changed, 5 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-02-16 20:10:59 UTC (rev 161883)
+++ PKGBUILD2016-02-16 20:15:44 UTC (rev 161884)
@@ -3,7 +3,7 @@
 
 pkgname=qmmp
 pkgver=1.0.6
-pkgrel=1
+pkgrel=2
 pkgdesc="Qt5 based audio-player"
 arch=('i686' 'x86_64')
 url="http://qmmp.ylsoftware.com/";

Modified: qmmp.changelog
===
--- qmmp.changelog  2016-02-16 20:10:59 UTC (rev 161883)
+++ qmmp.changelog  2016-02-16 20:15:44 UTC (rev 161884)
@@ -1,5 +1,8 @@
+2016-02-16 Jaroslav Lichtblau 
+   * qmmp 1.0.6-2 ffmpeg 3.0 rebuild
+
 2016-01-27 Jaroslav Lichtblau 
-   * qmmp 1.0.6-1
+   * qmmp 1.0.6-1 
 
 2016-01-02 Jaroslav Lichtblau 
* qmmp 1.0.5-1


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

2016-02-16 Thread Jaroslav Lichtblau
Date: Tuesday, February 16, 2016 @ 21:17:15
  Author: jlichtblau
Revision: 161887

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

Added:
  qmmp/repos/community-staging-i686/
  qmmp/repos/community-staging-i686/PKGBUILD
(from rev 161884, qmmp/trunk/PKGBUILD)
  qmmp/repos/community-staging-i686/qmmp.changelog
(from rev 161884, qmmp/trunk/qmmp.changelog)
  qmmp/repos/community-staging-i686/qmmp.install
(from rev 161884, qmmp/trunk/qmmp.install)
  qmmp/repos/community-staging-x86_64/
  qmmp/repos/community-staging-x86_64/PKGBUILD
(from rev 161884, qmmp/trunk/PKGBUILD)
  qmmp/repos/community-staging-x86_64/qmmp.changelog
(from rev 161884, qmmp/trunk/qmmp.changelog)
  qmmp/repos/community-staging-x86_64/qmmp.install
(from rev 161884, qmmp/trunk/qmmp.install)

-+
 community-staging-i686/PKGBUILD |   50 
 community-staging-i686/qmmp.changelog   |  184 ++
 community-staging-i686/qmmp.install |   12 +
 community-staging-x86_64/PKGBUILD   |   50 
 community-staging-x86_64/qmmp.changelog |  184 ++
 community-staging-x86_64/qmmp.install   |   12 +
 6 files changed, 492 insertions(+)

Copied: qmmp/repos/community-staging-i686/PKGBUILD (from rev 161884, 
qmmp/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-02-16 20:17:15 UTC (rev 161887)
@@ -0,0 +1,50 @@
+#$Id$
+# Maintainer: Jaroslav Lichtblau 
+
+pkgname=qmmp
+pkgver=1.0.6
+pkgrel=2
+pkgdesc="Qt5 based audio-player"
+arch=('i686' 'x86_64')
+url="http://qmmp.ylsoftware.com/";
+license=('GPL')
+depends=('alsa-lib' 'curl' 'desktop-file-utils' 'hicolor-icon-theme' 'libmad'
+ 'libvorbis' 'libogg' 'libxkbcommon-x11' 'taglib' 'xdg-utils' 
'qt5-x11extras')
+makedepends=('cmake' 'flac' 'jack' 'libmpcdec' 'pulseaudio' 'ffmpeg' 
'libcdio-paranoia'
+ 'libcddb' 'libmms' 'libsamplerate' 'libmodplug' 'libsndfile' 
'wavpack'
+ 'projectm' 'mesa' 'faad2' 'libgme' 'libsidplayfp' 'opusfile' 
'wildmidi' 'qt5-tools')
+optdepends=('flac: native FLAC support'
+'jack: JACK sound output'
+'libmpcdec: Musepack support'
+'pulseaudio: PulseAudio output'
+'libcdio-paranoia: Compact Disc input and control support'
+'libcddb: CDDB server support'
+'libmms: MMS stream protocol support'
+'libmodplug: MOD playing library'
+'libsndfile: sampled sound support'
+'projectm: visual efects'
+'faad2: ADTS AAC support'
+'libgme: support for chiptunes from various platforms'
+'libsidplayfp: C64 music support'
+'opusfile: Opus support'
+'wildmidi: MIDI support'
+'ffmpeg' 'libsamplerate' 'wavpack')
+install=$pkgname.install
+changelog=$pkgname.changelog
+source=(http://qmmp.ylsoftware.com/files/$pkgname-$pkgver.tar.bz2)
+sha256sums=('e97965cb41426f0e2fc418a625b0f3097227a1414c81665a65bbd33802e77e7f')
+
+build() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  cmake . -DCMAKE_INSTALL_PREFIX=/usr \
+  -DCMAKE_INSTALL_LIBDIR=/usr/lib \
+  -DUSE_HAL:BOOL=FALSE
+  make
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  make DESTDIR="${pkgdir}" install
+}

Copied: qmmp/repos/community-staging-i686/qmmp.changelog (from rev 161884, 
qmmp/trunk/qmmp.changelog)
===
--- community-staging-i686/qmmp.changelog   (rev 0)
+++ community-staging-i686/qmmp.changelog   2016-02-16 20:17:15 UTC (rev 
161887)
@@ -0,0 +1,184 @@
+2016-02-16 Jaroslav Lichtblau 
+   * qmmp 1.0.6-2 ffmpeg 3.0 rebuild
+
+2016-01-27 Jaroslav Lichtblau 
+   * qmmp 1.0.6-1 
+
+2016-01-02 Jaroslav Lichtblau 
+   * qmmp 1.0.5-1
+
+2015-12-21 Jaroslav Lichtblau 
+   * qmmp 1.0.4-1
+
+2015-12-19 Jaroslav Lichtblau 
+   * qmmp 1.0.3-1
+
+2015-11-14 Jaroslav Lichtblau 
+   * qmmp 1.0.2-1
+
+2015-10-21 Jaroslav Lichtblau 
+   * qmmp 1.0.1-1
+   * FS#46785 and FS#46808 fix
+
+2015-10-03 Jaroslav Lichtblau 
+   * qmmp 1.0.0-2 FS#46542 fix
+
+2015-10-02 Jaroslav Lichtblau 
+   * qmmp 1.0.0-1
+
+2015-10-01 Jaroslav Lichtblau 
+   * qmmp 0.9.2-1
+
+2015-09-06 Jaroslav Lichtblau 
+   * qmmp 0.9.1-1
+
+2015-09-05 Jaroslav Lichtblau 
+   * qmmp 0.9.0-1
+
+2015-08-26 Jaroslav Lichtblau 
+   * qmmp 0.8.8-1
+
+2015-08-12 Jaroslav Lichtblau 
+   * qmmp 0.8.7-1
+
+2015-08-09 Jaroslav Lichtblau 
+   * qmmp 0.8.6-1
+
+2015-06-07 Jaroslav Lichtblau 
+   * qmmp 0.8.5-1
+
+2015-04-27 Jaroslav Lichtblau 
+   * qmmp 0.8.4-2 FS#44558 implemented
+
+2015-04-18 Jaroslav Lichtblau 
+   * qmmp 0.8.4-1
+
+2015-01-09 Jaroslav Lichtblau 
+   * qmmp 0.8.3-1
+
+2014-10-1

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

2016-02-16 Thread Andreas Radke
Date: Tuesday, February 16, 2016 @ 21:12:29
  Author: andyrtr
Revision: 259855

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

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

-+
 testing-i686/PKGBUILD   |   50 ++
 testing-i686/nvidia-340xx-lts.install   |   15 +
 testing-x86_64/PKGBUILD |   50 ++
 testing-x86_64/nvidia-340xx-lts.install |   15 +
 4 files changed, 130 insertions(+)

Copied: nvidia-340xx-lts/repos/testing-i686/PKGBUILD (from rev 259854, 
nvidia-340xx-lts/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-02-16 20:12:29 UTC (rev 259855)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=nvidia-340xx-lts
+pkgver=340.96
+_extramodules=extramodules-4.1-lts
+pkgrel=3
+pkgdesc="NVIDIA drivers for linux-lts"
+arch=('i686' 'x86_64')
+url="http://www.nvidia.com/";
+makedepends=('linux-lts>=4.1.18' 'linux-lts-headers>=4.1.18' 
"nvidia-340xx-utils=$pkgver" "nvidia-340xx-libgl=${pkgver}")
+provides=('nvidia-340xx')
+conflicts=('nvidia-lts')
+license=('custom')
+install=${pkgname}.install
+options=(!strip)
+source=("ftp://download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run";
+
"ftp://download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run";)
+md5sums=('cb64b165b638671bcdc75bcf297b8d90'
+ '7bdbcee13bade63227933d9217571882')
+
+[[ "$CARCH" = "i686" ]] && _pkg="NVIDIA-Linux-x86-${pkgver}"
+[[ "$CARCH" = "x86_64" ]] && _pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
+
+prepare() {
+sh ${_pkg}.run --extract-only
+}
+
+build() {
+  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+  cd "${_pkg}/kernel"
+  make SYSSRC=/usr/lib/modules/${_kernver}/build module
+
+  cd uvm
+  make SYSSRC=/usr/lib/modules/${_kernver}/build module
+}
+
+package() {
+  depends=('linux-lts>=4.1.11' "nvidia-340xx-utils=$pkgver" 'libgl')
+
+  install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia.ko" \
+"${pkgdir}/usr/lib/modules/${_extramodules}/kernel/drivers/video/nvidia.ko"
+  install -D -m644 "${srcdir}/${_pkg}/kernel/uvm/nvidia-uvm.ko" \
+
"${pkgdir}/usr/lib/modules/${_extramodules}/kernel/drivers/video/nvidia-uvm.ko"
+  gzip "${pkgdir}/usr/lib/modules/${_extramodules}/kernel/drivers/video/"*.ko
+  install -d -m755 "${pkgdir}/usr/lib/modprobe.d"
+  echo "blacklist nouveau" >> "${pkgdir}/usr/lib/modprobe.d/nvidia-lts.conf"
+  echo "blacklist nvidiafb" >> "${pkgdir}/usr/lib/modprobe.d/nvidia-lts.conf"
+  install -D -m644 "${srcdir}/${_pkg}/LICENSE" 
"${pkgdir}/usr/share/licenses/nvidia-lts/LICENSE"
+}

Copied: nvidia-340xx-lts/repos/testing-i686/nvidia-340xx-lts.install (from rev 
259854, nvidia-340xx-lts/trunk/nvidia-340xx-lts.install)
===
--- testing-i686/nvidia-340xx-lts.install   (rev 0)
+++ testing-i686/nvidia-340xx-lts.install   2016-02-16 20:12:29 UTC (rev 
259855)
@@ -0,0 +1,15 @@
+post_install() {
+EXTRAMODULES='extramodules-4.1-lts'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+echo 'In order to use nvidia module, reboot the system.'
+}
+
+post_upgrade() {
+EXTRAMODULES='extramodules-4.1-lts'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+}
+
+post_remove() {
+EXTRAMODULES='extramodules-4.1-lts'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+}

Copied: nvidia-340xx-lts/repos/testing-x86_64/PKGBUILD (from rev 259854, 
nvidia-340xx-lts/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-02-16 20:12:29 UTC (rev 259855)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=nvidia-340xx-lts
+pkgver=340.96
+_extramodules=extramodules-4.1-lts
+pkgrel=3
+pkgdesc="NVIDIA drivers for linux-lts"
+arch=('i686' 'x86_64')
+url="http://www.nvidia.com/";
+makedepends=('linux-lts>=4.1.18' 'linux-lts-headers>=4.1.18' 
"nvidia-340xx-utils=$pkgver" "nvidia-340xx-libgl=${pkgver}")
+provides=('nvidia-340xx')
+conflicts=('nvidia-lts')
+license=('custom')
+install=${pkgname}.install
+options=(!strip)
+source=("ftp://download.nvidia.com/XFree86/Linux

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

2016-02-16 Thread Andreas Radke
Date: Tuesday, February 16, 2016 @ 21:12:19
  Author: andyrtr
Revision: 259854

upgpkg: nvidia-340xx-lts 340.96-3

kernel 4.1.18 rebuild

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

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-16 20:10:47 UTC (rev 259853)
+++ PKGBUILD2016-02-16 20:12:19 UTC (rev 259854)
@@ -4,11 +4,11 @@
 pkgname=nvidia-340xx-lts
 pkgver=340.96
 _extramodules=extramodules-4.1-lts
-pkgrel=2
+pkgrel=3
 pkgdesc="NVIDIA drivers for linux-lts"
 arch=('i686' 'x86_64')
 url="http://www.nvidia.com/";
-makedepends=('linux-lts>=4.1.17' 'linux-lts-headers>=4.1.17' 
"nvidia-340xx-utils=$pkgver" "nvidia-340xx-libgl=${pkgver}")
+makedepends=('linux-lts>=4.1.18' 'linux-lts-headers>=4.1.18' 
"nvidia-340xx-utils=$pkgver" "nvidia-340xx-libgl=${pkgver}")
 provides=('nvidia-340xx')
 conflicts=('nvidia-lts')
 license=('custom')


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

2016-02-16 Thread Sven-Hendrik Haase
Date: Tuesday, February 16, 2016 @ 21:10:59
  Author: svenstaro
Revision: 161883

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

Added:
  blender/repos/community-staging-i686/
  blender/repos/community-staging-i686/PKGBUILD
(from rev 161882, blender/trunk/PKGBUILD)
  blender/repos/community-staging-i686/blender.install
(from rev 161882, blender/trunk/blender.install)
  blender/repos/community-staging-i686/ffmpeg-3.0.patch
(from rev 161882, blender/trunk/ffmpeg-3.0.patch)
  blender/repos/community-staging-x86_64/
  blender/repos/community-staging-x86_64/PKGBUILD
(from rev 161882, blender/trunk/PKGBUILD)
  blender/repos/community-staging-x86_64/blender.install
(from rev 161882, blender/trunk/blender.install)
  blender/repos/community-staging-x86_64/ffmpeg-3.0.patch
(from rev 161882, blender/trunk/ffmpeg-3.0.patch)

---+
 community-staging-i686/PKGBUILD   |  105 
 community-staging-i686/blender.install|   13 +++
 community-staging-i686/ffmpeg-3.0.patch   |   56 ++
 community-staging-x86_64/PKGBUILD |  105 
 community-staging-x86_64/blender.install  |   13 +++
 community-staging-x86_64/ffmpeg-3.0.patch |   56 ++
 6 files changed, 348 insertions(+)

Copied: blender/repos/community-staging-i686/PKGBUILD (from rev 161882, 
blender/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-02-16 20:10:59 UTC (rev 161883)
@@ -0,0 +1,105 @@
+# $Id$
+# Contributor: John Sowiak 
+# Contributor: tobias 
+# Maintainer: Sven-Hendrik Haase 
+
+# Sometimes blender.org takes some time to release patch releases and because 
Arch users
+# are impatient, we sometimes need to build from git directly.
+# Update because I get so many queries on this:
+# Due to our other rolling deps, it's sometimes not possible to build Blender 
stable releases.
+# More often than not, a new openshadinglanguage breaks it and I could either 
backport fixes
+# or simply roll with a new version. I usually choose the latter when the 
former seems
+# unreasonable.
+
+_gittag=v2.76b
+#_gitcommit=4f8e05
+
+pkgname=blender
+pkgver=2.76.b
+#[[ -n $_gitcommit ]] && pkgver=${pkgver}.git1.${_gitcommit}
+pkgrel=4
+epoch=17
+pkgdesc="A fully integrated 3D graphics creation suite"
+arch=('i686' 'x86_64')
+license=('GPL')
+url="http://www.blender.org";
+depends=('libpng' 'libtiff' 'openexr' 'python' 'desktop-file-utils' 
'python-requests'
+ 'shared-mime-info' 'hicolor-icon-theme' 'xdg-utils' 'glew' 'openjpeg'
+ 'freetype2' 'openal' 'ffmpeg' 'fftw' 'boost-libs' 'opencollada'
+ 'openimageio' 'libsndfile' 'jack' 'opencolorio' 'openshadinglanguage'
+ 'jemalloc' 'libspnav' 'ptex' 'opensubdiv')
+makedepends=('cmake' 'boost' 'mesa' 'git' 'llvm35')
+[[ $CARCH == x86_64 ]] && makedepends+=('cuda')
+optdepends=('cuda: cycles renderer cuda support')
+options=(!strip)
+install=blender.install
+source=("git://git.blender.org/blender-addons.git"
+"git://git.blender.org/blender-addons-contrib.git"
+"git://git.blender.org/blender-translations.git"
+"git://git.blender.org/scons.git"
+"ffmpeg-3.0.patch")
+if [[ -n $_gittag ]]; then
+
source+=("${pkgname}-${pkgver}::git://git.blender.org/blender.git#tag=${_gittag}")
+else
+
source+=("${pkgname}-${pkgver}::git://git.blender.org/blender.git#commit=${_gitcommit}")
+fi
+md5sums=('SKIP'
+ 'SKIP'
+ 'SKIP'
+ 'SKIP'
+ '0ebec522bf78bc3b2b3ebd939bafc779'
+ 'SKIP')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  git submodule init
+  git config submodule."release/scripts/addons".url ${srcdir}/blender-addons
+  git config submodule."release/scripts/addons_contrib".url 
${srcdir}/blender-addons-contrib
+  git config submodule."release/datafiles/locale".url 
${srcdir}/blender-translations
+  git config submodule."scons".url ${srcdir}/scons
+  git submodule update
+
+  # ffmpeg-3.0 fixes
+  git cherry-pick -n 0b03785eb5d46dfc053d7f8ef4924219fe7759c5
+  git cherry-pick -n b82538d3b77e4b9fe3791059fef2e604d56f747f
+  patch -Np1 < ${srcdir}/ffmpeg-3.0.patch
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  mkdir build && cd build
+
+  [[ $CARCH == i686 ]] && BUILDCUDA="OFF" || BUILDCUDA="ON"
+
+  cmake -C../build_files/cmake/config/blender_full.cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DWITH_INSTALL_PORTABLE=OFF \
+-DWITH_PYTHON_INSTALL=OFF \
+-DOPENIMAGEIO_ROOT_DIR=/usr \
+-DWITH_LLVM=ON \
+-DWITH_SYSTEM_OPENJPEG=ON \
+-DWITH_GL_PROFILE_CORE=OFF \
+-DWITH_GL_PROFILE_ES20=OFF \
+-DLLVM_VERSION=3.5 \
+-DLLVM_STATIC=ON \
+-DWITH_CYCLES_CUDA_BINARIES=$BUILDCUDA \
+-DWITH_CYCLES_OSL=ON \
+-DWITH_CYCLES_PTEX=ON \
+ 

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

2016-02-16 Thread Antonio Rojas
Date: Tuesday, February 16, 2016 @ 21:10:47
  Author: arojas
Revision: 259853

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

Added:
  ffmpegthumbs/repos/staging-i686/
  ffmpegthumbs/repos/staging-i686/PKGBUILD
(from rev 259852, ffmpegthumbs/trunk/PKGBUILD)
  ffmpegthumbs/repos/staging-x86_64/
  ffmpegthumbs/repos/staging-x86_64/PKGBUILD
(from rev 259852, ffmpegthumbs/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   43 +++
 staging-x86_64/PKGBUILD |   43 +++
 2 files changed, 86 insertions(+)

Copied: ffmpegthumbs/repos/staging-i686/PKGBUILD (from rev 259852, 
ffmpegthumbs/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-02-16 20:10:47 UTC (rev 259853)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgname=ffmpegthumbs
+pkgver=15.12.2
+pkgrel=2
+pkgdesc='FFmpeg-based thumbnail creator for video files'
+url='https://projects.kde.org/ffmpegthumbs'
+arch=(i686 x86_64)
+license=(GPL LGPL FDL)
+groups=(kde-applications kdemultimedia)
+depends=(kio ffmpeg)
+makedepends=(extra-cmake-modules git)
+replaces=(kdemultimedia-ffmpegthumbs)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz";
+   
ffmpegthumbs-ffmpeg3.patch::"https://git.reviewboard.kde.org/r/126992/diff/raw/";)
+md5sums=('3e56e870a963fbc7e0c1b873628e56e7'
+ '0e3a9b044e2d94be9c608ad6369e9c7f')
+
+prepare() {
+  mkdir -p build
+
+  cd $pkgname-$pkgver
+# Fix build against ffmpeg 3.0
+  patch -p1 -i ../ffmpegthumbs-ffmpeg3.patch
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Copied: ffmpegthumbs/repos/staging-x86_64/PKGBUILD (from rev 259852, 
ffmpegthumbs/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2016-02-16 20:10:47 UTC (rev 259853)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgname=ffmpegthumbs
+pkgver=15.12.2
+pkgrel=2
+pkgdesc='FFmpeg-based thumbnail creator for video files'
+url='https://projects.kde.org/ffmpegthumbs'
+arch=(i686 x86_64)
+license=(GPL LGPL FDL)
+groups=(kde-applications kdemultimedia)
+depends=(kio ffmpeg)
+makedepends=(extra-cmake-modules git)
+replaces=(kdemultimedia-ffmpegthumbs)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz";
+   
ffmpegthumbs-ffmpeg3.patch::"https://git.reviewboard.kde.org/r/126992/diff/raw/";)
+md5sums=('3e56e870a963fbc7e0c1b873628e56e7'
+ '0e3a9b044e2d94be9c608ad6369e9c7f')
+
+prepare() {
+  mkdir -p build
+
+  cd $pkgname-$pkgver
+# Fix build against ffmpeg 3.0
+  patch -p1 -i ../ffmpegthumbs-ffmpeg3.patch
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in blender/trunk (PKGBUILD ffmpeg-3.0.patch)

2016-02-16 Thread Sven-Hendrik Haase
Date: Tuesday, February 16, 2016 @ 21:10:47
  Author: svenstaro
Revision: 161882

upgpkg: blender 17:2.76.b-4

ffmpeg 3 rebuild

Added:
  blender/trunk/ffmpeg-3.0.patch
Modified:
  blender/trunk/PKGBUILD

--+
 PKGBUILD |   13 +---
 ffmpeg-3.0.patch |   56 +
 2 files changed, 66 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-02-16 19:56:44 UTC (rev 161881)
+++ PKGBUILD2016-02-16 20:10:47 UTC (rev 161882)
@@ -12,12 +12,12 @@
 # unreasonable.
 
 _gittag=v2.76b
-#_gitcommit=e24ea81d65416d778ded6c7b9698dd673e2ed6b9
+#_gitcommit=4f8e05
 
 pkgname=blender
 pkgver=2.76.b
 #[[ -n $_gitcommit ]] && pkgver=${pkgver}.git1.${_gitcommit}
-pkgrel=3
+pkgrel=4
 epoch=17
 pkgdesc="A fully integrated 3D graphics creation suite"
 arch=('i686' 'x86_64')
@@ -36,7 +36,8 @@
 source=("git://git.blender.org/blender-addons.git"
 "git://git.blender.org/blender-addons-contrib.git"
 "git://git.blender.org/blender-translations.git"
-"git://git.blender.org/scons.git")
+"git://git.blender.org/scons.git"
+"ffmpeg-3.0.patch")
 if [[ -n $_gittag ]]; then
 
source+=("${pkgname}-${pkgver}::git://git.blender.org/blender.git#tag=${_gittag}")
 else
@@ -46,6 +47,7 @@
  'SKIP'
  'SKIP'
  'SKIP'
+ '0ebec522bf78bc3b2b3ebd939bafc779'
  'SKIP')
 
 prepare() {
@@ -57,6 +59,11 @@
   git config submodule."release/datafiles/locale".url 
${srcdir}/blender-translations
   git config submodule."scons".url ${srcdir}/scons
   git submodule update
+
+  # ffmpeg-3.0 fixes
+  git cherry-pick -n 0b03785eb5d46dfc053d7f8ef4924219fe7759c5
+  git cherry-pick -n b82538d3b77e4b9fe3791059fef2e604d56f747f
+  patch -Np1 < ${srcdir}/ffmpeg-3.0.patch
 }
 
 build() {

Added: ffmpeg-3.0.patch
===
--- ffmpeg-3.0.patch(rev 0)
+++ ffmpeg-3.0.patch2016-02-16 20:10:47 UTC (rev 161882)
@@ -0,0 +1,56 @@
+diff --git a/intern/ffmpeg/ffmpeg_compat.h b/intern/ffmpeg/ffmpeg_compat.h
+index b591032..78115b3 100644
+--- a/intern/ffmpeg/ffmpeg_compat.h
 b/intern/ffmpeg/ffmpeg_compat.h
+@@ -468,7 +468,32 @@ AVRational av_get_r_frame_rate_compat(const AVStream 
*stream)
+ 
+ #define MAX_NEG_CROP 1024
+ 
+-extern const uint8_t ff_crop_tab[256 + 2 * MAX_NEG_CROP];
++#define times4(x) x, x, x, x
++#define times256(x) times4(times4(times4(times4(times4(x)
++
++static const uint8_t ff_compat_crop_tab[256 + 2 * MAX_NEG_CROP] = {
++times256(0x00),
++0x00,0x01,0x02,0x03,0x04,0x05,0x06,0x07,0x08,0x09,0x0A,0x0B,0x0C,0x0D,0x0E,0x0F,
++0x10,0x11,0x12,0x13,0x14,0x15,0x16,0x17,0x18,0x19,0x1A,0x1B,0x1C,0x1D,0x1E,0x1F,
++0x20,0x21,0x22,0x23,0x24,0x25,0x26,0x27,0x28,0x29,0x2A,0x2B,0x2C,0x2D,0x2E,0x2F,
++0x30,0x31,0x32,0x33,0x34,0x35,0x36,0x37,0x38,0x39,0x3A,0x3B,0x3C,0x3D,0x3E,0x3F,
++0x40,0x41,0x42,0x43,0x44,0x45,0x46,0x47,0x48,0x49,0x4A,0x4B,0x4C,0x4D,0x4E,0x4F,
++0x50,0x51,0x52,0x53,0x54,0x55,0x56,0x57,0x58,0x59,0x5A,0x5B,0x5C,0x5D,0x5E,0x5F,
++0x60,0x61,0x62,0x63,0x64,0x65,0x66,0x67,0x68,0x69,0x6A,0x6B,0x6C,0x6D,0x6E,0x6F,
++0x70,0x71,0x72,0x73,0x74,0x75,0x76,0x77,0x78,0x79,0x7A,0x7B,0x7C,0x7D,0x7E,0x7F,
++0x80,0x81,0x82,0x83,0x84,0x85,0x86,0x87,0x88,0x89,0x8A,0x8B,0x8C,0x8D,0x8E,0x8F,
++0x90,0x91,0x92,0x93,0x94,0x95,0x96,0x97,0x98,0x99,0x9A,0x9B,0x9C,0x9D,0x9E,0x9F,
++0xA0,0xA1,0xA2,0xA3,0xA4,0xA5,0xA6,0xA7,0xA8,0xA9,0xAA,0xAB,0xAC,0xAD,0xAE,0xAF,
++0xB0,0xB1,0xB2,0xB3,0xB4,0xB5,0xB6,0xB7,0xB8,0xB9,0xBA,0xBB,0xBC,0xBD,0xBE,0xBF,
++0xC0,0xC1,0xC2,0xC3,0xC4,0xC5,0xC6,0xC7,0xC8,0xC9,0xCA,0xCB,0xCC,0xCD,0xCE,0xCF,
++0xD0,0xD1,0xD2,0xD3,0xD4,0xD5,0xD6,0xD7,0xD8,0xD9,0xDA,0xDB,0xDC,0xDD,0xDE,0xDF,
++0xE0,0xE1,0xE2,0xE3,0xE4,0xE5,0xE6,0xE7,0xE8,0xE9,0xEA,0xEB,0xEC,0xED,0xEE,0xEF,
++0xF0,0xF1,0xF2,0xF3,0xF4,0xF5,0xF6,0xF7,0xF8,0xF9,0xFA,0xFB,0xFC,0xFD,0xFE,0xFF,
++times256(0xFF)
++};
++
++#undef times4
++#undef times256
+ 
+ /* filter parameters: [-1 4 2 4 -1] // 8 */
+ FFMPEG_INLINE
+@@ -478,7 +503,7 @@ void deinterlace_line(uint8_t *dst,
+   const uint8_t *lum,
+   int size)
+ {
+-  const uint8_t *cm = ff_crop_tab + MAX_NEG_CROP;
++  const uint8_t *cm = ff_compat_crop_tab + MAX_NEG_CROP;
+   int sum;
+ 
+   for(;size > 0;size--) {
+@@ -502,7 +527,7 @@ void deinterlace_line_inplace(uint8_t *lum_m4, uint8_t 
*lum_m3,
+   uint8_t *lum_m2, uint8_t *lum_m1,
+   uint8_t *lum, int size)
+ {
+-  const uint8_t *cm = ff_crop_tab + MAX_NEG_CROP;
++  const uint8_t *cm = ff_compat_crop_tab + MAX_NEG_CROP;
+   int sum;
+ 
+   for(;size > 0;size--) {
\ No newline at end of file


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

2016-02-16 Thread Andreas Radke
Date: Tuesday, February 16, 2016 @ 21:09:04
  Author: andyrtr
Revision: 259851

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

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

-+
 testing-i686/PKGBUILD   |   47 ++
 testing-i686/nvidia-304xx-lts.install   |   15 +
 testing-x86_64/PKGBUILD |   47 ++
 testing-x86_64/nvidia-304xx-lts.install |   15 +
 4 files changed, 124 insertions(+)

Copied: nvidia-304xx-lts/repos/testing-i686/PKGBUILD (from rev 259850, 
nvidia-304xx-lts/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-02-16 20:09:04 UTC (rev 259851)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andreas Radke 
+
+pkgname=nvidia-304xx-lts
+pkgver=304.131
+_extramodules=extramodules-4.1-lts
+pkgrel=3
+pkgdesc="NVIDIA drivers for linux-lts, 304xx legacy branch"
+arch=('i686' 'x86_64')
+url="http://www.nvidia.com/";
+depends=('linux-lts>=4.1.18' 'libgl' "nvidia-304xx-utils=${pkgver}")
+makedepends=('linux-lts-headers>=4.1.18')
+conflicts=('nvidia-lts' 'nvidia-96xx-lts' 'nvidia-173xx-lts')
+provides=('nvidia-304xx')
+license=('custom')
+install=nvidia-304xx-lts.install
+options=('!strip')
+source_i686=("http://us.download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run";)
+source_x86_64=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run";)
+sha512sums_i686=('3e67c40648554dc49472081eee88ae982c3b235b3346e4d9e7fb5ae33ec5f10ed088da804ac7d8bd1565995df3861f12b3560030cd3a19339a2d35768b0a943e')
+sha512sums_x86_64=('07e529e4e81c42b43861475029aa0f223f8f3d299be9ddfe820c583e26aae49223a9b0dfee6d66ab09c526554bb581e5f8cf755eda600cb9e0bdac7d5f4acb93')
+
+if [ "$CARCH" = "i686" ]; then
+  _arch='x86'
+  _pkg="NVIDIA-Linux-${_arch}-${pkgver}"
+elif [ "$CARCH" = "x86_64" ]; then
+  _arch='x86_64'
+  _pkg="NVIDIA-Linux-${_arch}-${pkgver}-no-compat32"
+fi
+
+build() {
+_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+sh "${_pkg}.run" --extract-only
+cd "${_pkg}/kernel"
+make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
+}
+
+package() {
+install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia.ko" \
+"${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko"
+install -d -m755 "${pkgdir}/usr/lib/modprobe.d"
+echo "blacklist nouveau" >> 
"${pkgdir}/usr/lib/modprobe.d/nvidia-304xx-lts.conf"
+echo "blacklist nvidiafb" >> 
"${pkgdir}/usr/lib/modprobe.d/nvidia-304xx-lts.conf"
+gzip "${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko"
+install -D -m644 ${_pkg}/LICENSE 
"${pkgdir}/usr/share/licenses/nvidia-304xx-lts/LICENSE"
+}

Copied: nvidia-304xx-lts/repos/testing-i686/nvidia-304xx-lts.install (from rev 
259850, nvidia-304xx-lts/trunk/nvidia-304xx-lts.install)
===
--- testing-i686/nvidia-304xx-lts.install   (rev 0)
+++ testing-i686/nvidia-304xx-lts.install   2016-02-16 20:09:04 UTC (rev 
259851)
@@ -0,0 +1,15 @@
+post_install() {
+EXTRAMODULES='extramodules-4.1-lts'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+echo 'In order to use nvidia module, reboot the system.'
+}
+
+post_upgrade() {
+EXTRAMODULES='extramodules-4.1-lts'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+}
+
+post_remove() {
+EXTRAMODULES='extramodules-4.1-lts'
+depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+}

Copied: nvidia-304xx-lts/repos/testing-x86_64/PKGBUILD (from rev 259850, 
nvidia-304xx-lts/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-02-16 20:09:04 UTC (rev 259851)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Andreas Radke 
+
+pkgname=nvidia-304xx-lts
+pkgver=304.131
+_extramodules=extramodules-4.1-lts
+pkgrel=3
+pkgdesc="NVIDIA drivers for linux-lts, 304xx legacy branch"
+arch=('i686' 'x86_64')
+url="http://www.nvidia.com/";
+depends=('linux-lts>=4.1.18' 'libgl' "nvidia-304xx-utils=${pkgver}")
+makedepends=('linux-lts-headers>=4.1.18')
+conflicts=('nvidia-lts' 'nvidia-96xx-lts' 'nvidia-173xx-lts')
+provide

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

2016-02-16 Thread Antonio Rojas
Date: Tuesday, February 16, 2016 @ 21:09:16
  Author: arojas
Revision: 259852

ffmpeg 3.0 rebuild

Modified:
  ffmpegthumbs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-16 20:09:04 UTC (rev 259851)
+++ PKGBUILD2016-02-16 20:09:16 UTC (rev 259852)
@@ -4,7 +4,7 @@
 
 pkgname=ffmpegthumbs
 pkgver=15.12.2
-pkgrel=1
+pkgrel=2
 pkgdesc='FFmpeg-based thumbnail creator for video files'
 url='https://projects.kde.org/ffmpegthumbs'
 arch=(i686 x86_64)
@@ -13,11 +13,17 @@
 depends=(kio ffmpeg)
 makedepends=(extra-cmake-modules git)
 replaces=(kdemultimedia-ffmpegthumbs)
-source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz";)
-md5sums=('3e56e870a963fbc7e0c1b873628e56e7')
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz";
+   
ffmpegthumbs-ffmpeg3.patch::"https://git.reviewboard.kde.org/r/126992/diff/raw/";)
+md5sums=('3e56e870a963fbc7e0c1b873628e56e7'
+ '0e3a9b044e2d94be9c608ad6369e9c7f')
 
 prepare() {
   mkdir -p build
+
+  cd $pkgname-$pkgver
+# Fix build against ffmpeg 3.0
+  patch -p1 -i ../ffmpegthumbs-ffmpeg3.patch
 }
 
 build() {


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

2016-02-16 Thread Andreas Radke
Date: Tuesday, February 16, 2016 @ 21:08:52
  Author: andyrtr
Revision: 259850

upgpkg: nvidia-304xx-lts 304.131-3

kernel 4.1.18 rebuild

Modified:
  nvidia-304xx-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-02-16 20:05:56 UTC (rev 259849)
+++ PKGBUILD2016-02-16 20:08:52 UTC (rev 259850)
@@ -5,12 +5,12 @@
 pkgname=nvidia-304xx-lts
 pkgver=304.131
 _extramodules=extramodules-4.1-lts
-pkgrel=2
+pkgrel=3
 pkgdesc="NVIDIA drivers for linux-lts, 304xx legacy branch"
 arch=('i686' 'x86_64')
 url="http://www.nvidia.com/";
-depends=('linux-lts>=4.1.17' 'libgl' "nvidia-304xx-utils=${pkgver}")
-makedepends=('linux-lts-headers>=4.1.17')
+depends=('linux-lts>=4.1.18' 'libgl' "nvidia-304xx-utils=${pkgver}")
+makedepends=('linux-lts-headers>=4.1.18')
 conflicts=('nvidia-lts' 'nvidia-96xx-lts' 'nvidia-173xx-lts')
 provides=('nvidia-304xx')
 license=('custom')


  1   2   3   4   >