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

2014-11-08 Thread Anatol Pomozov
Date: Saturday, November 8, 2014 @ 19:53:53
  Author: anatolik
Revision: 122268

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

Added:
  android-tools/repos/community-testing-i686/
  android-tools/repos/community-testing-i686/PKGBUILD
(from rev 122267, android-tools/trunk/PKGBUILD)
  android-tools/repos/community-testing-i686/adbMakefile
(from rev 122267, android-tools/trunk/adbMakefile)
  android-tools/repos/community-testing-i686/bash_completion
(from rev 122267, android-tools/trunk/bash_completion)
  android-tools/repos/community-testing-i686/fastbootMakefile
(from rev 122267, android-tools/trunk/fastbootMakefile)
  android-tools/repos/community-testing-x86_64/
  android-tools/repos/community-testing-x86_64/PKGBUILD
(from rev 122267, android-tools/trunk/PKGBUILD)
  android-tools/repos/community-testing-x86_64/adbMakefile
(from rev 122267, android-tools/trunk/adbMakefile)
  android-tools/repos/community-testing-x86_64/bash_completion
(from rev 122267, android-tools/trunk/bash_completion)
  android-tools/repos/community-testing-x86_64/fastbootMakefile
(from rev 122267, android-tools/trunk/fastbootMakefile)

---+
 community-testing-i686/PKGBUILD   |   46 ++
 community-testing-i686/adbMakefile|   43 +
 community-testing-i686/bash_completion|  202 
 community-testing-i686/fastbootMakefile   |   67 +
 community-testing-x86_64/PKGBUILD |   46 ++
 community-testing-x86_64/adbMakefile  |   43 +
 community-testing-x86_64/bash_completion  |  202 
 community-testing-x86_64/fastbootMakefile |   67 +
 8 files changed, 716 insertions(+)

Copied: android-tools/repos/community-testing-i686/PKGBUILD (from rev 122267, 
android-tools/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2014-11-08 18:53:53 UTC (rev 122268)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Anatol Pomozov
+# Contributor: 謝致邦 yek...@red54.com
+# Contributor: Alucryd alucryd at gmail dot com
+
+pkgname=android-tools
+pkgver=5.0.0_r2
+pkgrel=1
+pkgdesc='Android platform tools'
+arch=(i686 x86_64)
+url='http://tools.android.com/'
+license=(Apache MIT)
+depends=(openssl)
+makedepends=(git)
+source=(git+https://android.googlesource.com/platform/system/core#tag=android-$pkgver
+
git+https://android.googlesource.com/platform/system/extras#tag=android-$pkgver
+
git+https://android.googlesource.com/platform/external/libselinux#tag=android-$pkgver
+
git+https://android.googlesource.com/platform/external/f2fs-tools#tag=android-$pkgver
+adbMakefile
+fastbootMakefile
+bash_completion) # Bash completion file was taken from 
https://github.com/mbrubeck/android-completion
+sha1sums=('SKIP'
+  'SKIP'
+  'SKIP'
+  'SKIP'
+  'cc3d5bbf7f38574bfe597555b39d983db87ec37f'
+  '5a66a188e35ec09393f5bd85d5b63fe7a7e38c0f'
+  'd1b208c7c2d8d0053e9937653cca22d09b6d')
+
+
+prepare() {
+  # another way to fix the compilation error is to add #include stddef.h
+  sed -e 's/f2fs_sparse_file = NULL/f2fs_sparse_file = 0/g' -i 
extras/f2fs_utils/f2fs_utils.c 
+}
+
+build() {
+  make -C core/adb -f $srcdir/adbMakefile
+  make -C core/fastboot -f $srcdir/fastbootMakefile
+}
+
+package(){
+  install -Dm 755 core/adb/adb $pkgdir/usr/bin/adb
+  install -Dm 755 core/fastboot/fastboot $pkgdir/usr/bin/fastboot
+
+  install -Dm 644 bash_completion $pkgdir/etc/bash_completion.d/$pkgname
+}

Copied: android-tools/repos/community-testing-i686/adbMakefile (from rev 
122267, android-tools/trunk/adbMakefile)
===
--- community-testing-i686/adbMakefile  (rev 0)
+++ community-testing-i686/adbMakefile  2014-11-08 18:53:53 UTC (rev 122268)
@@ -0,0 +1,43 @@
+SRCS+= adb.c
+SRCS+= adb_auth_host.c
+SRCS+= adb_client.c
+SRCS+= commandline.c
+SRCS+= console.c
+SRCS+= fdevent.c
+SRCS+= file_sync_client.c
+SRCS+= get_my_path_linux.c
+SRCS+= services.c
+SRCS+= sockets.c
+SRCS+= transport.c
+SRCS+= transport_local.c
+SRCS+= transport_usb.c
+SRCS+= usb_linux.c
+SRCS+= usb_vendors.c
+
+VPATH+= ../libcutils
+SRCS+= load_file.c
+SRCS+= socket_inaddr_any_server.c
+SRCS+= socket_local_client.c
+SRCS+= socket_local_server.c
+SRCS+= socket_loopback_client.c
+SRCS+= socket_loopback_server.c
+SRCS+= socket_network_client.c
+
+VPATH+= ../libzipfile
+SRCS+= centraldir.c
+SRCS+= zipfile.c
+
+CPPFLAGS+= -DADB_HOST=1
+CPPFLAGS+= -DHAVE_FORKEXEC=1
+CPPFLAGS+= -DHAVE_OFF64_T=1
+CPPFLAGS+= -I.
+CPPFLAGS+= -I../include
+
+LIBS+= -lcrypto -lpthread -lz
+
+OBJS= $(SRCS:.c=.o)
+
+all: adb
+
+adb: $(OBJS)
+   cc -o $@ $(LDFLAGS) $(OBJS) $(LIBS)

Copied: 

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

2014-11-08 Thread Andreas Radke
Date: Saturday, November 8, 2014 @ 19:56:27
  Author: andyrtr
Revision: 225765

upgpkg: libreoffice-fresh 4.3.3-2

poppler 0.28.1 rebuild

Modified:
  libreoffice-fresh/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-08 18:14:12 UTC (rev 225764)
+++ PKGBUILD2014-11-08 18:56:27 UTC (rev 225765)
@@ -6,7 +6,7 @@
 pkgname=('libreoffice-fresh-sdk' 'libreoffice-fresh')
 _LOver=4.3.3.2
 pkgver=4.3.3
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 license=('LGPL3')
 url=http://www.libreoffice.org/;


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

2014-11-08 Thread Andreas Radke
Date: Saturday, November 8, 2014 @ 19:56:53
  Author: andyrtr
Revision: 225766

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

Added:
  libreoffice-fresh/repos/staging-i686/
  libreoffice-fresh/repos/staging-i686/PKGBUILD
(from rev 225765, libreoffice-fresh/trunk/PKGBUILD)
  libreoffice-fresh/repos/staging-i686/PKGBUILD.44
(from rev 225765, libreoffice-fresh/trunk/PKGBUILD.44)
  libreoffice-fresh/repos/staging-i686/libreoffice-fresh.csh
(from rev 225765, libreoffice-fresh/trunk/libreoffice-fresh.csh)
  libreoffice-fresh/repos/staging-i686/libreoffice-fresh.install
(from rev 225765, libreoffice-fresh/trunk/libreoffice-fresh.install)
  libreoffice-fresh/repos/staging-i686/libreoffice-fresh.sh
(from rev 225765, libreoffice-fresh/trunk/libreoffice-fresh.sh)
  
libreoffice-fresh/repos/staging-i686/make-pyuno-work-with-system-wide-module-install.diff
(from rev 225765, 
libreoffice-fresh/trunk/make-pyuno-work-with-system-wide-module-install.diff)
  libreoffice-fresh/repos/staging-x86_64/
  libreoffice-fresh/repos/staging-x86_64/PKGBUILD
(from rev 225765, libreoffice-fresh/trunk/PKGBUILD)
  libreoffice-fresh/repos/staging-x86_64/PKGBUILD.44
(from rev 225765, libreoffice-fresh/trunk/PKGBUILD.44)
  libreoffice-fresh/repos/staging-x86_64/libreoffice-fresh.csh
(from rev 225765, libreoffice-fresh/trunk/libreoffice-fresh.csh)
  libreoffice-fresh/repos/staging-x86_64/libreoffice-fresh.install
(from rev 225765, libreoffice-fresh/trunk/libreoffice-fresh.install)
  libreoffice-fresh/repos/staging-x86_64/libreoffice-fresh.sh
(from rev 225765, libreoffice-fresh/trunk/libreoffice-fresh.sh)
  
libreoffice-fresh/repos/staging-x86_64/make-pyuno-work-with-system-wide-module-install.diff
(from rev 225765, 
libreoffice-fresh/trunk/make-pyuno-work-with-system-wide-module-install.diff)

-+
 staging-i686/PKGBUILD   |  412 
+
 staging-i686/PKGBUILD.44|  413 
++
 staging-i686/libreoffice-fresh.csh  |6 
 staging-i686/libreoffice-fresh.install  |   13 
 staging-i686/libreoffice-fresh.sh   |6 
 staging-i686/make-pyuno-work-with-system-wide-module-install.diff   |   44 +
 staging-x86_64/PKGBUILD |  412 
+
 staging-x86_64/PKGBUILD.44  |  413 
++
 staging-x86_64/libreoffice-fresh.csh|6 
 staging-x86_64/libreoffice-fresh.install|   13 
 staging-x86_64/libreoffice-fresh.sh |6 
 staging-x86_64/make-pyuno-work-with-system-wide-module-install.diff |   44 +
 12 files changed, 1788 insertions(+)

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


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

2014-11-08 Thread Andreas Radke
Date: Saturday, November 8, 2014 @ 22:53:54
  Author: andyrtr
Revision: 225767

upgpkg: libreoffice-still 4.2.7-2

poppler 0.28.1 rebuild

Modified:
  libreoffice-still/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-08 18:56:53 UTC (rev 225766)
+++ PKGBUILD2014-11-08 21:53:54 UTC (rev 225767)
@@ -20,7 +20,7 @@
'libreoffice-still-extension-nlpsolver')
 _LOver=4.2.7.2
 pkgver=4.2.7
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 license=('LGPL3')
 url=http://www.libreoffice.org/;


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

2014-11-08 Thread Andreas Radke
Date: Saturday, November 8, 2014 @ 22:54:52
  Author: andyrtr
Revision: 225768

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

Added:
  libreoffice-still/repos/staging-i686/
  libreoffice-still/repos/staging-i686/PKGBUILD
(from rev 225767, libreoffice-still/trunk/PKGBUILD)
  libreoffice-still/repos/staging-i686/libreoffice-still-base.install
(from rev 225767, libreoffice-still/trunk/libreoffice-still-base.install)
  libreoffice-still/repos/staging-i686/libreoffice-still-calc.install
(from rev 225767, libreoffice-still/trunk/libreoffice-still-calc.install)
  libreoffice-still/repos/staging-i686/libreoffice-still-common.csh
(from rev 225767, libreoffice-still/trunk/libreoffice-still-common.csh)
  libreoffice-still/repos/staging-i686/libreoffice-still-common.install
(from rev 225767, libreoffice-still/trunk/libreoffice-still-common.install)
  libreoffice-still/repos/staging-i686/libreoffice-still-common.sh
(from rev 225767, libreoffice-still/trunk/libreoffice-still-common.sh)
  libreoffice-still/repos/staging-i686/libreoffice-still-draw.install
(from rev 225767, libreoffice-still/trunk/libreoffice-still-draw.install)
  libreoffice-still/repos/staging-i686/libreoffice-still-impress.install
(from rev 225767, libreoffice-still/trunk/libreoffice-still-impress.install)
  libreoffice-still/repos/staging-i686/libreoffice-still-writer.install
(from rev 225767, libreoffice-still/trunk/libreoffice-still-writer.install)
  
libreoffice-still/repos/staging-i686/make-pyuno-work-with-system-wide-module-install.diff
(from rev 225767, 
libreoffice-still/trunk/make-pyuno-work-with-system-wide-module-install.diff)
  libreoffice-still/repos/staging-x86_64/
  libreoffice-still/repos/staging-x86_64/PKGBUILD
(from rev 225767, libreoffice-still/trunk/PKGBUILD)
  libreoffice-still/repos/staging-x86_64/libreoffice-still-base.install
(from rev 225767, libreoffice-still/trunk/libreoffice-still-base.install)
  libreoffice-still/repos/staging-x86_64/libreoffice-still-calc.install
(from rev 225767, libreoffice-still/trunk/libreoffice-still-calc.install)
  libreoffice-still/repos/staging-x86_64/libreoffice-still-common.csh
(from rev 225767, libreoffice-still/trunk/libreoffice-still-common.csh)
  libreoffice-still/repos/staging-x86_64/libreoffice-still-common.install
(from rev 225767, libreoffice-still/trunk/libreoffice-still-common.install)
  libreoffice-still/repos/staging-x86_64/libreoffice-still-common.sh
(from rev 225767, libreoffice-still/trunk/libreoffice-still-common.sh)
  libreoffice-still/repos/staging-x86_64/libreoffice-still-draw.install
(from rev 225767, libreoffice-still/trunk/libreoffice-still-draw.install)
  libreoffice-still/repos/staging-x86_64/libreoffice-still-impress.install
(from rev 225767, libreoffice-still/trunk/libreoffice-still-impress.install)
  libreoffice-still/repos/staging-x86_64/libreoffice-still-writer.install
(from rev 225767, libreoffice-still/trunk/libreoffice-still-writer.install)
  
libreoffice-still/repos/staging-x86_64/make-pyuno-work-with-system-wide-module-install.diff
(from rev 225767, 
libreoffice-still/trunk/make-pyuno-work-with-system-wide-module-install.diff)

-+
 staging-i686/PKGBUILD   |  735 
++
 staging-i686/libreoffice-still-base.install |   11 
 staging-i686/libreoffice-still-calc.install |   11 
 staging-i686/libreoffice-still-common.csh   |6 
 staging-i686/libreoffice-still-common.install   |   22 
 staging-i686/libreoffice-still-common.sh|6 
 staging-i686/libreoffice-still-draw.install |   11 
 staging-i686/libreoffice-still-impress.install  |   11 
 staging-i686/libreoffice-still-writer.install   |   11 
 staging-i686/make-pyuno-work-with-system-wide-module-install.diff   |   44 
 staging-x86_64/PKGBUILD |  735 
++
 staging-x86_64/libreoffice-still-base.install   |   11 
 staging-x86_64/libreoffice-still-calc.install   |   11 
 staging-x86_64/libreoffice-still-common.csh |6 
 staging-x86_64/libreoffice-still-common.install |   22 
 staging-x86_64/libreoffice-still-common.sh  |6 
 staging-x86_64/libreoffice-still-draw.install   |   11 
 staging-x86_64/libreoffice-still-impress.install|   11 
 staging-x86_64/libreoffice-still-writer.install |   11 
 staging-x86_64/make-pyuno-work-with-system-wide-module-install.diff |   44 
 20 files changed, 1736 insertions(+)

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


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

2014-11-08 Thread Evangelos Foutras
Date: Sunday, November 9, 2014 @ 03:55:30
  Author: foutrelis
Revision: 225769

upgpkg: calligra 2.8.6-3

poppler 0.28.1 rebuild.

Modified:
  calligra/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-08 21:54:52 UTC (rev 225768)
+++ PKGBUILD2014-11-09 02:55:30 UTC (rev 225769)
@@ -19,7 +19,7 @@
  'calligra-stage'
  'calligra-words')
 pkgver=2.8.6
-pkgrel=2
+pkgrel=3
 arch=('i686' 'x86_64')
 url='http://www.calligra-suite.org/'
 license=('FDL1.2' 'GPL2' 'LGPL')


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

2014-11-08 Thread Evangelos Foutras
Date: Sunday, November 9, 2014 @ 03:56:11
  Author: foutrelis
Revision: 225770

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

Added:
  calligra/repos/staging-i686/
  calligra/repos/staging-i686/0001-switch-to-librevenge-based-import-libs.patch
(from rev 225769, 
calligra/trunk/0001-switch-to-librevenge-based-import-libs.patch)
  calligra/repos/staging-i686/PKGBUILD
(from rev 225769, calligra/trunk/PKGBUILD)
  calligra/repos/staging-i686/calligra-braindump.install
(from rev 225769, calligra/trunk/calligra-braindump.install)
  calligra/repos/staging-i686/calligra-extras.install
(from rev 225769, calligra/trunk/calligra-extras.install)
  calligra/repos/staging-i686/calligra-filters.install
(from rev 225769, calligra/trunk/calligra-filters.install)
  calligra/repos/staging-i686/calligra-flow.install
(from rev 225769, calligra/trunk/calligra-flow.install)
  calligra/repos/staging-i686/calligra-karbon.install
(from rev 225769, calligra/trunk/calligra-karbon.install)
  calligra/repos/staging-i686/calligra-kexi.install
(from rev 225769, calligra/trunk/calligra-kexi.install)
  calligra/repos/staging-i686/calligra-krita.install
(from rev 225769, calligra/trunk/calligra-krita.install)
  calligra/repos/staging-i686/calligra-plan.install
(from rev 225769, calligra/trunk/calligra-plan.install)
  calligra/repos/staging-i686/calligra-plugins.install
(from rev 225769, calligra/trunk/calligra-plugins.install)
  calligra/repos/staging-i686/calligra-sheets.install
(from rev 225769, calligra/trunk/calligra-sheets.install)
  calligra/repos/staging-i686/calligra-stage.install
(from rev 225769, calligra/trunk/calligra-stage.install)
  calligra/repos/staging-i686/calligra-words.install
(from rev 225769, calligra/trunk/calligra-words.install)
  calligra/repos/staging-i686/calligra.install
(from rev 225769, calligra/trunk/calligra.install)
  calligra/repos/staging-x86_64/
  
calligra/repos/staging-x86_64/0001-switch-to-librevenge-based-import-libs.patch
(from rev 225769, 
calligra/trunk/0001-switch-to-librevenge-based-import-libs.patch)
  calligra/repos/staging-x86_64/PKGBUILD
(from rev 225769, calligra/trunk/PKGBUILD)
  calligra/repos/staging-x86_64/calligra-braindump.install
(from rev 225769, calligra/trunk/calligra-braindump.install)
  calligra/repos/staging-x86_64/calligra-extras.install
(from rev 225769, calligra/trunk/calligra-extras.install)
  calligra/repos/staging-x86_64/calligra-filters.install
(from rev 225769, calligra/trunk/calligra-filters.install)
  calligra/repos/staging-x86_64/calligra-flow.install
(from rev 225769, calligra/trunk/calligra-flow.install)
  calligra/repos/staging-x86_64/calligra-karbon.install
(from rev 225769, calligra/trunk/calligra-karbon.install)
  calligra/repos/staging-x86_64/calligra-kexi.install
(from rev 225769, calligra/trunk/calligra-kexi.install)
  calligra/repos/staging-x86_64/calligra-krita.install
(from rev 225769, calligra/trunk/calligra-krita.install)
  calligra/repos/staging-x86_64/calligra-plan.install
(from rev 225769, calligra/trunk/calligra-plan.install)
  calligra/repos/staging-x86_64/calligra-plugins.install
(from rev 225769, calligra/trunk/calligra-plugins.install)
  calligra/repos/staging-x86_64/calligra-sheets.install
(from rev 225769, calligra/trunk/calligra-sheets.install)
  calligra/repos/staging-x86_64/calligra-stage.install
(from rev 225769, calligra/trunk/calligra-stage.install)
  calligra/repos/staging-x86_64/calligra-words.install
(from rev 225769, calligra/trunk/calligra-words.install)
  calligra/repos/staging-x86_64/calligra.install
(from rev 225769, calligra/trunk/calligra.install)

--+
 staging-i686/0001-switch-to-librevenge-based-import-libs.patch   |  882 
++
 staging-i686/PKGBUILD|  255 ++
 staging-i686/calligra-braindump.install  |   12 
 staging-i686/calligra-extras.install |   11 
 staging-i686/calligra-filters.install|   12 
 staging-i686/calligra-flow.install   |   12 
 staging-i686/calligra-karbon.install |   12 
 staging-i686/calligra-kexi.install   |   12 
 staging-i686/calligra-krita.install  |   13 
 staging-i686/calligra-plan.install   |   12 
 staging-i686/calligra-plugins.install|   11 
 staging-i686/calligra-sheets.install |   12 
 staging-i686/calligra-stage.install  |   12 
 staging-i686/calligra-words.install  |   12 
 staging-i686/calligra.install|   11 
 staging-x86_64/0001-switch-to-librevenge-based-import-libs.patch |  882 

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

2014-11-08 Thread Evangelos Foutras
Date: Sunday, November 9, 2014 @ 03:58:13
  Author: foutrelis
Revision: 122269

upgpkg: gambas3 3.5.4-5

- poppler 0.28.1 rebuild.
- Replace dbus-core dependency with dbus.

Modified:
  gambas3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-08 18:53:53 UTC (rev 122268)
+++ PKGBUILD2014-11-09 02:58:13 UTC (rev 122269)
@@ -16,7 +16,7 @@
  'gambas3-gb-xml-html' 'gambas3-gb-xml-rpc' 'gambas3-gb-xml-xslt' 
'gambas3-gb-xml' 'gambas3-gb-web')
 pkgname=(${_components[@]} 'gambas3-runtime' 'gambas3-devel' 'gambas3-ide' 
'gambas3-script' 'gambas3-examples')
 pkgver=3.5.4
-pkgrel=4
+pkgrel=5
 pkgdesc=A free development environment based on a Basic interpreter.
 arch=('i686' 'x86_64')
 url=http://gambas.sourceforge.net/;
@@ -26,7 +26,7 @@
  'zlib' 'mesa' 'glew' 'xdg-utils' 'gtk2' 'imlib2' 'gdk-pixbuf2'
  'postgresql-libs' 'libmariadbclient' 'unixodbc' 'sqlite2' 'sqlite' 
'librsvg'
  'curl' 'poppler-glib' 'sdl_mixer' 'sdl_ttf' 'libxtst' 'pcre' 
'qtwebkit'
- 'libxcursor' 'libsm' 'dbus-core' 'libxml2' 'libxslt' 
'libgnome-keyring'
+ 'libxcursor' 'libsm' 'dbus' 'libxml2' 'libxslt' 'libgnome-keyring'
 'gsl' 'gst-plugins-base-libs' 'alure' 'gtkglext' 'ncurses' 'llvm'
 'gmime')
 options=('!emptydirs' 'libtool')
@@ -242,7 +242,7 @@
 }
 
 package_gambas3-gb-dbus() {
-  depends=('gambas3-runtime' 'dbus-core')
+  depends=('gambas3-runtime' 'dbus')
   pkgdesc=DBUS component
 
   cd ${srcdir}/fakeinstall


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

2014-11-08 Thread Evangelos Foutras
Date: Sunday, November 9, 2014 @ 03:58:36
  Author: foutrelis
Revision: 122270

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

Added:
  gambas3/repos/community-staging-i686/PKGBUILD
(from rev 122269, gambas3/trunk/PKGBUILD)
  gambas3/repos/community-staging-i686/gambas3-runtime.install
(from rev 122269, gambas3/trunk/gambas3-runtime.install)
  gambas3/repos/community-staging-i686/gambas3-script.install
(from rev 122269, gambas3/trunk/gambas3-script.install)
  gambas3/repos/community-staging-x86_64/PKGBUILD
(from rev 122269, gambas3/trunk/PKGBUILD)
  gambas3/repos/community-staging-x86_64/gambas3-runtime.install
(from rev 122269, gambas3/trunk/gambas3-runtime.install)
  gambas3/repos/community-staging-x86_64/gambas3-script.install
(from rev 122269, gambas3/trunk/gambas3-script.install)
Deleted:
  gambas3/repos/community-staging-i686/PKGBUILD
  gambas3/repos/community-staging-i686/gambas3-runtime.install
  gambas3/repos/community-staging-i686/gambas3-script.install
  gambas3/repos/community-staging-x86_64/PKGBUILD
  gambas3/repos/community-staging-x86_64/gambas3-runtime.install
  gambas3/repos/community-staging-x86_64/gambas3-script.install

--+
 /PKGBUILD| 1938 +
 /gambas3-runtime.install |   20 
 /gambas3-script.install  |   30 
 community-staging-i686/PKGBUILD  |  969 --
 community-staging-i686/gambas3-runtime.install   |   10 
 community-staging-i686/gambas3-script.install|   15 
 community-staging-x86_64/PKGBUILD|  969 --
 community-staging-x86_64/gambas3-runtime.install |   10 
 community-staging-x86_64/gambas3-script.install  |   15 
 9 files changed, 1988 insertions(+), 1988 deletions(-)

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


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

2014-11-08 Thread Laurent Carlier
Date: Sunday, November 9, 2014 @ 06:44:39
  Author: lcarlier
Revision: 122271

upgpkg: gambas3 3.6.1-1

upstream update 3.6.1

Modified:
  gambas3/trunk/PKGBUILD

--+
 PKGBUILD |  105 +++--
 1 file changed, 82 insertions(+), 23 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-11-09 02:58:36 UTC (rev 122270)
+++ PKGBUILD2014-11-09 05:44:39 UTC (rev 122271)
@@ -6,17 +6,17 @@
 _components=('gambas3-gb-args' 'gambas3-gb-cairo' 'gambas3-gb-chart' 
'gambas3-gb-clipper' 'gambas3-gb-complex'
  'gambas3-gb-compress' 'gambas3-gb-crypt' 'gambas3-gb-dbus' 
'gambas3-gb-data' 'gambas3-gb-db-form' 'gambas3-gb-db-mysql' 
  'gambas3-gb-db-odbc' 'gambas3-gb-db-postgresql' 
'gambas3-gb-db-sqlite2' 'gambas3-gb-db-sqlite3' 'gambas3-gb-db' 
- 'gambas3-gb-desktop-gnome' 'gambas3-gb-desktop' 
'gambas3-gb-eval-highlight' 'gambas3-gb-httpd' 'gambas3-gb-form-dialog' 
'gambas3-gb-form-mdi' 
+ 'gambas3-gb-desktop-gnome' 'gambas3-gb-desktop-x11' 
'gambas3-gb-desktop' 'gambas3-gb-eval-highlight' 'gambas3-gb-httpd' 
'gambas3-gb-form-dialog' 'gambas3-gb-form-mdi' 
  'gambas3-gb-form-stock' 'gambas3-gb-form' 'gambas3-gb-gmp' 
'gambas3-gb-gsl' 'gambas3-gb-gtk-opengl' 'gambas3-gb-gtk' 
'gambas3-gb-image-effect'
- 'gambas3-gb-image-imlib' 'gambas3-gb-image-io' 'gambas3-gb-image' 
'gambas3-gb-jit' 'gambas3-gb-libxml' 'gambas3-gb-map'
- 'gambas3-gb-media' 'gambas3-gb-memcached' 'gambas3-gb-mime' 
'gambas3-gb-mysql' 'gambas3-gb-ncurses' 'gambas3-gb-net-curl' 
'gambas3-gb-net-pop3'
+ 'gambas3-gb-image-imlib' 'gambas3-gb-image-io' 'gambas3-gb-image' 
'gambas3-gb-inotify' 'gambas3-gb-jit' 'gambas3-gb-libxml' 'gambas3-gb-logging' 
'gambas3-gb-map' 'gambas3-gb-markdown'
+ 'gambas3-gb-media-form' 'gambas3-gb-media' 'gambas3-gb-memcached' 
'gambas3-gb-mime' 'gambas3-gb-mysql' 'gambas3-gb-ncurses' 'gambas3-gb-net-curl' 
'gambas3-gb-net-pop3'
  'gambas3-gb-net-smtp' 'gambas3-gb-net' 'gambas3-gb-openal' 
'gambas3-gb-opengl-glu' 'gambas3-gb-opengl-glsl' 'gambas3-gb-opengl-sge' 
'gambas3-gb-opengl'
  'gambas3-gb-option' 'gambas3-gb-pcre' 'gambas3-gb-pdf' 
'gambas3-gb-qt4-ext' 'gambas3-gb-qt4-opengl' 'gambas3-gb-qt4-webkit' 
'gambas3-gb-qt4'
  'gambas3-gb-openssl' 'gambas3-gb-report' 'gambas3-gb-sdl-sound' 
'gambas3-gb-sdl' 'gambas3-gb-settings' 'gambas3-gb-signal' 'gambas3-gb-v4l' 
'gambas3-gb-vb'
  'gambas3-gb-xml-html' 'gambas3-gb-xml-rpc' 'gambas3-gb-xml-xslt' 
'gambas3-gb-xml' 'gambas3-gb-web')
 pkgname=(${_components[@]} 'gambas3-runtime' 'gambas3-devel' 'gambas3-ide' 
'gambas3-script' 'gambas3-examples')
-pkgver=3.5.4
-pkgrel=5
+pkgver=3.6.1
+pkgrel=1
 pkgdesc=A free development environment based on a Basic interpreter.
 arch=('i686' 'x86_64')
 url=http://gambas.sourceforge.net/;
@@ -31,7 +31,7 @@
 'gmime')
 options=('!emptydirs' 'libtool')
 source=(http://downloads.sourceforge.net/gambas/${pkgbase}-${pkgver}.tar.bz2;)
-md5sums=('4de131e44bdc03f53aba365e672e311e')
+md5sums=('7ab648ce607b0cf631a331060d11b942')
 
 create_dirs() {
   install -dm755 ${pkgdir}/usr/lib/gambas3
@@ -41,11 +41,6 @@
 prepare() {
   cd ${srcdir}/${pkgbase}-${pkgver}
 
-  # llvm-3.5
-  sed -i 's#/AutoUpgrade.h#/IR/AutoUpgrade.h#g' gb.jit/configure.ac
-  sed -i 's#/Analysis/Verifier.h#/IR/Verifier.h#g' gb.jit/src/jit.h
-  sed -i 's#/Support/CFG.h#/IR/CFG.h#g' gb.jit/src/jit.h
-
   ./reconf-all
 }
 
@@ -166,7 +161,7 @@
   
   mv -v usr/lib/gambas3/gb.db.form.* ${pkgdir}/usr/lib/gambas3/
   mv -v usr/share/gambas3/info/gb.db.form.* ${pkgdir}/usr/share/gambas3/info/
-  mv -v usr/share/gambas3/control/gb.db.form 
${pkgdir}/usr/share/gambas3/control/
+  mv -v usr/share/gambas3/control/gb.db.form 
${pkgdir}/usr/share/gambas3/control
 }
 
 package_gambas3-gb-db-mysql() {
@@ -254,7 +249,7 @@
 }
 
 package_gambas3-gb-desktop-gnome() {
-  depends=('gambas3-gb-desktop' 'libgnome-keyring')
+  depends=('libgnome-keyring')
   pkgdesc=Desktop component for Gnome
 
   cd ${srcdir}/fakeinstall
@@ -262,10 +257,23 @@
   create_dirs
   
   mv -v usr/lib/gambas3/gb.desktop.gnome.* ${pkgdir}/usr/lib/gambas3/
+  mv -v usr/share/gambas3/info/gb.desktop.gnome.* 
${pkgdir}/usr/share/gambas3/info/
 }
 
+package_gambas3-gb-desktop-x11() {
+  depends=('libsm' 'libxtst')
+  pkgdesc=X-Window library support component
+
+  cd ${srcdir}/fakeinstall
+  
+  create_dirs
+  
+  mv -v usr/lib/gambas3/gb.desktop.x11.* ${pkgdir}/usr/lib/gambas3/
+  mv -v usr/share/gambas3/info/gb.desktop.x11.* 
${pkgdir}/usr/share/gambas3/info/
+}
+
 package_gambas3-gb-desktop() {
-  depends=('gambas3-gb-image' 'libsm' 'libxtst')
+  depends=('gambas3-gb-image')
   pkgdesc=Desktop component
 
   cd ${srcdir}/fakeinstall
@@ -274,7 +282,7 @@
   
   mv -v usr/lib/gambas3/gb.desktop.* ${pkgdir}/usr/lib/gambas3/
   mv -v usr/share/gambas3/info/gb.desktop.* ${pkgdir}/usr/share/gambas3/info/

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

2014-11-08 Thread Laurent Carlier
Date: Sunday, November 9, 2014 @ 06:44:55
  Author: lcarlier
Revision: 122272

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

Added:
  gambas3/repos/community-staging-i686/PKGBUILD
(from rev 122271, gambas3/trunk/PKGBUILD)
  gambas3/repos/community-staging-i686/gambas3-runtime.install
(from rev 122271, gambas3/trunk/gambas3-runtime.install)
  gambas3/repos/community-staging-i686/gambas3-script.install
(from rev 122271, gambas3/trunk/gambas3-script.install)
  gambas3/repos/community-staging-x86_64/PKGBUILD
(from rev 122271, gambas3/trunk/PKGBUILD)
  gambas3/repos/community-staging-x86_64/gambas3-runtime.install
(from rev 122271, gambas3/trunk/gambas3-runtime.install)
  gambas3/repos/community-staging-x86_64/gambas3-script.install
(from rev 122271, gambas3/trunk/gambas3-script.install)
Deleted:
  gambas3/repos/community-staging-i686/PKGBUILD
  gambas3/repos/community-staging-i686/gambas3-runtime.install
  gambas3/repos/community-staging-i686/gambas3-script.install
  gambas3/repos/community-staging-x86_64/PKGBUILD
  gambas3/repos/community-staging-x86_64/gambas3-runtime.install
  gambas3/repos/community-staging-x86_64/gambas3-script.install

--+
 /PKGBUILD| 2056 +
 /gambas3-runtime.install |   20 
 /gambas3-script.install  |   30 
 community-staging-i686/PKGBUILD  |  969 -
 community-staging-i686/gambas3-runtime.install   |   10 
 community-staging-i686/gambas3-script.install|   15 
 community-staging-x86_64/PKGBUILD|  969 -
 community-staging-x86_64/gambas3-runtime.install |   10 
 community-staging-x86_64/gambas3-script.install  |   15 
 9 files changed, 2106 insertions(+), 1988 deletions(-)

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


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

2014-11-08 Thread Sergej Pupykin
Date: Saturday, November 8, 2014 @ 12:58:48
  Author: spupykin
Revision: 122238

upgpkg: drupal 7.33-1

upd

Modified:
  drupal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-08 05:53:17 UTC (rev 122237)
+++ PKGBUILD2014-11-08 11:58:48 UTC (rev 122238)
@@ -3,7 +3,7 @@
 # Contributor: Corrado Primier cp663...@stud.polimi.it
 
 pkgname=drupal
-pkgver=7.32
+pkgver=7.33
 pkgrel=1
 pkgdesc=A PHP-based content management platform
 arch=('any')
@@ -13,7 +13,7 @@
 install='drupal.install'
 options=(!strip)
 source=(http://www.drupal.org/files/projects/$pkgname-$pkgver.tar.gz)
-md5sums=('d5d121a6ce974f2d20604a7e10e1987a')
+md5sums=('187b076a5753960d5d5cb12d30d93e73')
 
 package() {
   _instdir=$pkgdir/usr/share/webapps/drupal


[arch-commits] Commit in perl-devel-symdump/trunk (PKGBUILD)

2014-11-08 Thread Sergej Pupykin
Date: Saturday, November 8, 2014 @ 12:59:04
  Author: spupykin
Revision: 122240

upgpkg: perl-devel-symdump 2.12-1

upd

Modified:
  perl-devel-symdump/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-08 11:59:01 UTC (rev 122239)
+++ PKGBUILD2014-11-08 11:59:04 UTC (rev 122240)
@@ -3,7 +3,7 @@
 # Contributor: François Charette firmicus ατ gmx δοτ net
 
 pkgname=perl-devel-symdump
-pkgver=2.11
+pkgver=2.12
 pkgrel=1
 pkgdesc=Perl symbol table access and dumping
 arch=('any')
@@ -12,7 +12,7 @@
 depends=('perl=5.10.0')
 options=('!emptydirs')
 source=(http://www.cpan.org/authors/id/A/AN/ANDK/Devel-Symdump-$pkgver.tar.gz)
-md5sums=('f0f058866de78b4b2c95d2153de26570')
+md5sums=('004112b0c820556f6d073f77425a9f3d')
 
 build() {
   cd  $srcdir/Devel-Symdump-$pkgver


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

2014-11-08 Thread Sergej Pupykin
Date: Saturday, November 8, 2014 @ 12:59:01
  Author: spupykin
Revision: 122239

archrelease: copy trunk to community-any

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

+
 PKGBUILD   |   90 +++
 drupal.install |   30 +-
 2 files changed, 60 insertions(+), 60 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-11-08 11:58:48 UTC (rev 122238)
+++ PKGBUILD2014-11-08 11:59:01 UTC (rev 122239)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Corrado Primier cp663...@stud.polimi.it
-
-pkgname=drupal
-pkgver=7.32
-pkgrel=1
-pkgdesc=A PHP-based content management platform
-arch=('any')
-url=http://www.drupal.org/;
-license=('GPL')
-depends=('php')
-install='drupal.install'
-options=(!strip)
-source=(http://www.drupal.org/files/projects/$pkgname-$pkgver.tar.gz)
-md5sums=('d5d121a6ce974f2d20604a7e10e1987a')
-
-package() {
-  _instdir=$pkgdir/usr/share/webapps/drupal
-  mkdir -p ${_instdir}
-  cd ${_instdir}
-  cp -r $srcdir/$pkgname-$pkgver/{*,.htaccess} ${_instdir}
-
-  # move .htaccess
-  mkdir -p $pkgdir/etc/webapps/drupal
-  sed -i '1,1iRequire all denied' ${_instdir}/.htaccess
-  mv ${_instdir}/.htaccess $pkgdir/etc/webapps/drupal/.htaccess
-  ln -s /etc/webapps/drupal/.htaccess ${_instdir}/.htaccess
-
-  # move sites/
-  mkdir -p $pkgdir/var/lib/drupal/
-  mv ${_instdir}/sites $pkgdir/var/lib/drupal/sites
-  ln -s /var/lib/drupal/sites ${_instdir}/sites
-
-  # apache config example
-  cat $pkgdir/etc/webapps/drupal/apache.example.conf EOF
-   Alias /drupal /usr/share/webapps/drupal
-   Directory /usr/share/webapps/drupal
-   AllowOverride All
-   Options FollowSymlinks
-   Require all granted
-   php_admin_value open_basedir 
/srv/:/tmp/:/usr/share/webapps/:/etc/webapps:/usr/share/pear/:/var/lib/drupal
-   /Directory
-EOF
-}

Copied: drupal/repos/community-any/PKGBUILD (from rev 122238, 
drupal/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-11-08 11:59:01 UTC (rev 122239)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Corrado Primier cp663...@stud.polimi.it
+
+pkgname=drupal
+pkgver=7.33
+pkgrel=1
+pkgdesc=A PHP-based content management platform
+arch=('any')
+url=http://www.drupal.org/;
+license=('GPL')
+depends=('php')
+install='drupal.install'
+options=(!strip)
+source=(http://www.drupal.org/files/projects/$pkgname-$pkgver.tar.gz)
+md5sums=('187b076a5753960d5d5cb12d30d93e73')
+
+package() {
+  _instdir=$pkgdir/usr/share/webapps/drupal
+  mkdir -p ${_instdir}
+  cd ${_instdir}
+  cp -r $srcdir/$pkgname-$pkgver/{*,.htaccess} ${_instdir}
+
+  # move .htaccess
+  mkdir -p $pkgdir/etc/webapps/drupal
+  sed -i '1,1iRequire all denied' ${_instdir}/.htaccess
+  mv ${_instdir}/.htaccess $pkgdir/etc/webapps/drupal/.htaccess
+  ln -s /etc/webapps/drupal/.htaccess ${_instdir}/.htaccess
+
+  # move sites/
+  mkdir -p $pkgdir/var/lib/drupal/
+  mv ${_instdir}/sites $pkgdir/var/lib/drupal/sites
+  ln -s /var/lib/drupal/sites ${_instdir}/sites
+
+  # apache config example
+  cat $pkgdir/etc/webapps/drupal/apache.example.conf EOF
+   Alias /drupal /usr/share/webapps/drupal
+   Directory /usr/share/webapps/drupal
+   AllowOverride All
+   Options FollowSymlinks
+   Require all granted
+   php_admin_value open_basedir 
/srv/:/tmp/:/usr/share/webapps/:/etc/webapps:/usr/share/pear/:/var/lib/drupal
+   /Directory
+EOF
+}

Deleted: drupal.install
===
--- drupal.install  2014-11-08 11:58:48 UTC (rev 122238)
+++ drupal.install  2014-11-08 11:59:01 UTC (rev 122239)
@@ -1,15 +0,0 @@
-post_install() {
-  echo Remember that you need to install either mysql or postgresql for this 
package
-  echo to work. Also make sure to read either INSTALL.mysql.txt (for MySQL) 
or
-  echo INSTALL.pgsql.txt (for PostgreSQL) in /usr/share/webapps/drupal/.
-  if [[ ! `grep ^extension=mysql.so /etc/php/php.ini` ]]
-   then echo If you use mysql you should enable its module by adding the 
line:
-   echoextension=mysql.so
-   echo to your /etc/php/php.ini, otherwise drupal won't work.
-  fi
-  chown -R http:http var/lib/drupal
-}
-
-post_upgrade() {
-  chown -R http:http var/lib/drupal
-}

Copied: drupal/repos/community-any/drupal.install (from rev 122238, 
drupal/trunk/drupal.install)
===
--- 

[arch-commits] Commit in perl-devel-symdump/repos/community-any (PKGBUILD PKGBUILD)

2014-11-08 Thread Sergej Pupykin
Date: Saturday, November 8, 2014 @ 12:59:13
  Author: spupykin
Revision: 122241

archrelease: copy trunk to community-any

Added:
  perl-devel-symdump/repos/community-any/PKGBUILD
(from rev 122240, perl-devel-symdump/trunk/PKGBUILD)
Deleted:
  perl-devel-symdump/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-11-08 11:59:04 UTC (rev 122240)
+++ PKGBUILD2014-11-08 11:59:13 UTC (rev 122241)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: François Charette firmicus ατ gmx δοτ net
-
-pkgname=perl-devel-symdump
-pkgver=2.11
-pkgrel=1
-pkgdesc=Perl symbol table access and dumping
-arch=('any')
-url=http://search.cpan.org/dist/Devel-Symdump;
-license=('GPL' 'PerlArtistic')
-depends=('perl=5.10.0')
-options=('!emptydirs')
-source=(http://www.cpan.org/authors/id/A/AN/ANDK/Devel-Symdump-$pkgver.tar.gz)
-md5sums=('f0f058866de78b4b2c95d2153de26570')
-
-build() {
-  cd  $srcdir/Devel-Symdump-$pkgver
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd  $srcdir/Devel-Symdump-$pkgver
-  make install DESTDIR=$pkgdir
-  find $pkgdir -name '.packlist' -delete
-  find $pkgdir -name '*.pod' -delete
-}

Copied: perl-devel-symdump/repos/community-any/PKGBUILD (from rev 122240, 
perl-devel-symdump/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-11-08 11:59:13 UTC (rev 122241)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: François Charette firmicus ατ gmx δοτ net
+
+pkgname=perl-devel-symdump
+pkgver=2.12
+pkgrel=1
+pkgdesc=Perl symbol table access and dumping
+arch=('any')
+url=http://search.cpan.org/dist/Devel-Symdump;
+license=('GPL' 'PerlArtistic')
+depends=('perl=5.10.0')
+options=('!emptydirs')
+source=(http://www.cpan.org/authors/id/A/AN/ANDK/Devel-Symdump-$pkgver.tar.gz)
+md5sums=('004112b0c820556f6d073f77425a9f3d')
+
+build() {
+  cd  $srcdir/Devel-Symdump-$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd  $srcdir/Devel-Symdump-$pkgver
+  make install DESTDIR=$pkgdir
+  find $pkgdir -name '.packlist' -delete
+  find $pkgdir -name '*.pod' -delete
+}


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

2014-11-08 Thread Bartłomiej Piotrowski
Date: Saturday, November 8, 2014 @ 14:53:47
  Author: bpiotrowski
Revision: 122243

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-11-08 13:53:35 UTC (rev 122242)
+++ community-i686/PKGBUILD 2014-11-08 13:53:47 UTC (rev 122243)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
-# Contributor: naelstrof naelst...@gmail.com
-
-pkgname=maim
-pkgver=2.3.31
-pkgrel=1
-pkgdesc='Utility to take a screenshot using imlib2'
-arch=('i686' 'x86_64')
-url='https://github.com/naelstrof/maim'
-license=('GPL3')
-depends=('freetype2' 'imlib2' 'libx11' 'libxext' 'libxfixes' 'libxrandr')
-makedepends=('cmake')
-optdepends=('slop: region selection support')
-source=($url/archive/v$pkgver.tar.gz)
-md5sums=('ad08a7a77cd281eaa6b68c06d87ca1bb')
-
-build() {
-  cd $pkgname-$pkgver
-  cmake -DCMAKE_INSTALL_PREFIX=/usr/bin .
-  make
-}
-
-package() {
-  make -C $pkgname-$pkgver DESTDIR=$pkgdir install
-}

Copied: maim/repos/community-i686/PKGBUILD (from rev 122242, 
maim/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-11-08 13:53:47 UTC (rev 122243)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: naelstrof naelst...@gmail.com
+
+pkgname=maim
+pkgver=2.3.32
+pkgrel=1
+pkgdesc='Utility to take a screenshot using imlib2'
+arch=('i686' 'x86_64')
+url='https://github.com/naelstrof/maim'
+license=('GPL3')
+depends=('freetype2' 'imlib2' 'libx11' 'libxext' 'libxfixes' 'libxrandr')
+makedepends=('cmake')
+optdepends=('slop: region selection support')
+source=($url/archive/v$pkgver.tar.gz)
+md5sums=('9354c405bf0439648ad10f2fdb56d5dd')
+
+build() {
+  cd $pkgname-$pkgver
+  cmake -DCMAKE_INSTALL_PREFIX=/usr/bin .
+  make
+}
+
+package() {
+  make -C $pkgname-$pkgver DESTDIR=$pkgdir install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-11-08 13:53:35 UTC (rev 122242)
+++ community-x86_64/PKGBUILD   2014-11-08 13:53:47 UTC (rev 122243)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
-# Contributor: naelstrof naelst...@gmail.com
-
-pkgname=maim
-pkgver=2.3.31
-pkgrel=1
-pkgdesc='Utility to take a screenshot using imlib2'
-arch=('i686' 'x86_64')
-url='https://github.com/naelstrof/maim'
-license=('GPL3')
-depends=('freetype2' 'imlib2' 'libx11' 'libxext' 'libxfixes' 'libxrandr')
-makedepends=('cmake')
-optdepends=('slop: region selection support')
-source=($url/archive/v$pkgver.tar.gz)
-md5sums=('ad08a7a77cd281eaa6b68c06d87ca1bb')
-
-build() {
-  cd $pkgname-$pkgver
-  cmake -DCMAKE_INSTALL_PREFIX=/usr/bin .
-  make
-}
-
-package() {
-  make -C $pkgname-$pkgver DESTDIR=$pkgdir install
-}

Copied: maim/repos/community-x86_64/PKGBUILD (from rev 122242, 
maim/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-11-08 13:53:47 UTC (rev 122243)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: naelstrof naelst...@gmail.com
+
+pkgname=maim
+pkgver=2.3.32
+pkgrel=1
+pkgdesc='Utility to take a screenshot using imlib2'
+arch=('i686' 'x86_64')
+url='https://github.com/naelstrof/maim'
+license=('GPL3')
+depends=('freetype2' 'imlib2' 'libx11' 'libxext' 'libxfixes' 'libxrandr')
+makedepends=('cmake')
+optdepends=('slop: region selection support')
+source=($url/archive/v$pkgver.tar.gz)
+md5sums=('9354c405bf0439648ad10f2fdb56d5dd')
+
+build() {
+  cd $pkgname-$pkgver
+  cmake -DCMAKE_INSTALL_PREFIX=/usr/bin .
+  make
+}
+
+package() {
+  make -C $pkgname-$pkgver DESTDIR=$pkgdir install
+}


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

2014-11-08 Thread Bartłomiej Piotrowski
Date: Saturday, November 8, 2014 @ 14:53:35
  Author: bpiotrowski
Revision: 122242

upgpkg: maim 2.3.32-1

new upstream release

Modified:
  maim/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-08 11:59:13 UTC (rev 122241)
+++ PKGBUILD2014-11-08 13:53:35 UTC (rev 122242)
@@ -3,7 +3,7 @@
 # Contributor: naelstrof naelst...@gmail.com
 
 pkgname=maim
-pkgver=2.3.31
+pkgver=2.3.32
 pkgrel=1
 pkgdesc='Utility to take a screenshot using imlib2'
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 makedepends=('cmake')
 optdepends=('slop: region selection support')
 source=($url/archive/v$pkgver.tar.gz)
-md5sums=('ad08a7a77cd281eaa6b68c06d87ca1bb')
+md5sums=('9354c405bf0439648ad10f2fdb56d5dd')
 
 build() {
   cd $pkgname-$pkgver


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

2014-11-08 Thread Andreas Radke
Date: Saturday, November 8, 2014 @ 15:38:21
  Author: andyrtr
Revision: 225754

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

Added:
  poppler/repos/staging-i686/
  poppler/repos/staging-i686/PKGBUILD
(from rev 225753, poppler/trunk/PKGBUILD)
  poppler/repos/staging-x86_64/
  poppler/repos/staging-x86_64/PKGBUILD
(from rev 225753, poppler/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   89 ++
 staging-x86_64/PKGBUILD |   89 ++
 2 files changed, 178 insertions(+)

Copied: poppler/repos/staging-i686/PKGBUILD (from rev 225753, 
poppler/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2014-11-08 14:38:21 UTC (rev 225754)
@@ -0,0 +1,89 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgbase=poppler
+pkgname=('poppler' 'poppler-glib' 'poppler-qt4' 'poppler-qt5')
+pkgver=0.28.1
+pkgrel=1
+arch=(i686 x86_64)
+license=('GPL')
+makedepends=('libjpeg' 'gcc-libs' 'cairo' 'fontconfig' 'openjpeg' 'gtk2' 'qt4' 
'pkgconfig' 'lcms2' 'gobject-introspection' 'icu' 'qt5-base' 'git' 'python2')
+options=('!emptydirs')
+url=http://poppler.freedesktop.org/;
+source=(http://poppler.freedesktop.org/${pkgbase}-${pkgver}.tar.xz
+git://anongit.freedesktop.org/poppler/test)
+md5sums=('28de4b9f698296e11dff45a5cce1aa93'
+ 'SKIP')
+
+build() {
+  cd ${pkgbase}-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static \
+  --enable-cairo-output \
+  --enable-xpdf-headers \
+  --enable-libjpeg --enable-zlib \
+  --enable-poppler-qt4 \
+  --enable-poppler-qt5 \
+  --enable-poppler-glib
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgbase}-${pkgver}
+  LANG=en_US.UTF8 make check
+}
+
+package_poppler() {
+  pkgdesc=PDF rendering library based on xpdf 3.0
+  depends=('libjpeg' 'gcc-libs' 'cairo' 'fontconfig' 'openjpeg' 'lcms2')
+  optdepends=('poppler-data: encoding data to display PDF documents containing 
CJK characters')
+  conflicts=(poppler-qt3${pkgver})
+
+  cd ${srcdir}/${pkgbase}-${pkgver}
+  sed -e 's/^glib_subdir =.*/glib_subdir =/' \
+  -e 's/^qt4_subdir =.*/qt4_subdir =/' \
+  -e 's/^qt5_subdir =.*/qt5_subdir =/' -i Makefile
+  make DESTDIR=${pkgdir} install
+
+  rm -f ${pkgdir}/usr/lib/pkgconfig/poppler-{glib,qt4,qt5}.pc
+}
+
+package_poppler-glib() {
+  pkgdesc=Poppler glib bindings
+  depends=(poppler=${pkgver} 'glib2')
+
+  cd ${pkgbase}-${pkgver}
+  make -C poppler DESTDIR=${pkgdir} install-libLTLIBRARIES
+  make -C glib DESTDIR=${pkgdir} install
+  install -m755 -d ${pkgdir}/usr/lib/pkgconfig
+  install -m644 poppler-glib.pc ${pkgdir}/usr/lib/pkgconfig/
+  rm -f ${pkgdir}/usr/lib/libpoppler.*
+  rm -f ${pkgdir}/usr/bin/poppler-glib-demo
+}
+
+package_poppler-qt4() {
+  pkgdesc=Poppler Qt4 bindings
+  provides=(poppler-qt=${pkgver})
+  replaces=('poppler-qt')
+  conflicts=('poppler-qt')
+  depends=(poppler=${pkgver} 'qt4')
+
+  cd ${pkgbase}-${pkgver}
+  make -C poppler DESTDIR=${pkgdir} install-libLTLIBRARIES
+  make -C qt4 DESTDIR=${pkgdir} install
+  install -m755 -d ${pkgdir}/usr/lib/pkgconfig
+  install -m644 poppler-qt4.pc ${pkgdir}/usr/lib/pkgconfig/
+  rm -f ${pkgdir}/usr/lib/libpoppler.*
+}
+
+package_poppler-qt5() {
+  pkgdesc=Poppler Qt5 bindings
+  depends=(poppler=${pkgver} 'qt5-base')
+
+  cd ${pkgbase}-${pkgver}
+  make -C poppler DESTDIR=${pkgdir} install-libLTLIBRARIES
+  make -C qt5 DESTDIR=${pkgdir} install
+  install -m755 -d ${pkgdir}/usr/lib/pkgconfig
+  install -m644 poppler-qt5.pc ${pkgdir}/usr/lib/pkgconfig/
+  rm -f ${pkgdir}/usr/lib/libpoppler.*
+}

Copied: poppler/repos/staging-x86_64/PKGBUILD (from rev 225753, 
poppler/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2014-11-08 14:38:21 UTC (rev 225754)
@@ -0,0 +1,89 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgbase=poppler
+pkgname=('poppler' 'poppler-glib' 'poppler-qt4' 'poppler-qt5')
+pkgver=0.28.1
+pkgrel=1
+arch=(i686 x86_64)
+license=('GPL')
+makedepends=('libjpeg' 'gcc-libs' 'cairo' 'fontconfig' 'openjpeg' 'gtk2' 'qt4' 
'pkgconfig' 'lcms2' 'gobject-introspection' 'icu' 'qt5-base' 'git' 'python2')
+options=('!emptydirs')
+url=http://poppler.freedesktop.org/;
+source=(http://poppler.freedesktop.org/${pkgbase}-${pkgver}.tar.xz
+git://anongit.freedesktop.org/poppler/test)
+md5sums=('28de4b9f698296e11dff45a5cce1aa93'
+ 'SKIP')
+
+build() {
+  cd ${pkgbase}-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static \
+  --enable-cairo-output \
+  --enable-xpdf-headers \
+  --enable-libjpeg --enable-zlib \
+  --enable-poppler-qt4 \
+  --enable-poppler-qt5 \

[arch-commits] Commit in (8 files)

2014-11-08 Thread Fabio Castelli
Date: Saturday, November 8, 2014 @ 16:14:16
  Author: muflone
Revision: 122244

First commit for bluegriffon 1.7.2-1

Added:
  bluegriffon/
  bluegriffon/repos/
  bluegriffon/trunk/
  bluegriffon/trunk/PKGBUILD
  bluegriffon/trunk/bluegriffon.desktop
  bluegriffon/trunk/bluegriffon.install
  bluegriffon/trunk/freetype.patch
  bluegriffon/trunk/mozconfig

-+
 PKGBUILD|   85 ++
 bluegriffon.desktop |   16 +
 bluegriffon.install |   12 +++
 freetype.patch  |   74 +++
 mozconfig   |   37 +
 5 files changed, 224 insertions(+)

Added: bluegriffon/trunk/PKGBUILD
===
--- bluegriffon/trunk/PKGBUILD  (rev 0)
+++ bluegriffon/trunk/PKGBUILD  2014-11-08 15:14:16 UTC (rev 122244)
@@ -0,0 +1,85 @@
+# $Id$
+# Maintainer: Muflone http://www.muflone.com/contacts/english/
+# Contributor: Balló György ballogyor+arch at gmail dot com
+
+pkgname=bluegriffon
+pkgver=1.7.2
+_mozilla_ver=9db46ddfb517
+pkgrel=1
+pkgdesc=The next-generation Web Editor based on the rendering engine of 
Firefox
+arch=('i686' 'x86_64')
+url=http://bluegriffon.org/;
+license=('MPL' 'GPL' 'LGPL')
+depends=('alsa-lib' 'desktop-file-utils' 'dbus-glib' 'gtk2' 'hunspell' 
'mozilla-common'
+ 'nss' 'libevent' 'libvpx' 'libxt' 'python2' 'startup-notification')
+makedepends=('autoconf2.13' 'libpulse' 'subversion' 'unzip' 'xorg-server-xvfb' 
'zip')
+options=('!emptydirs')
+install=${pkgname}.install
+source=(${pkgname}-${pkgver}::svn+http://sources.disruptive-innovations.com/${pkgname}/tags/${pkgver};
+
${pkgname}-l10n-${pkgver}::svn+http://sources.disruptive-innovations.com/${pkgname}-l10n/tags/${pkgver};
+http://hg.mozilla.org/mozilla-central/archive/${_mozilla_ver}.tar.bz2;
+mozconfig
+bluegriffon.desktop
+freetype.patch)
+md5sums=('SKIP'
+ 'SKIP'
+ 'ced0be4498f9b29b68148af38bdd2f6d'
+ '7a39b0d261604c50d314acb115fc17fe'
+ 'b508d3a028380595d25c8039a217768b'
+ 'f19745a7e94053a5252e35f6cbf7b94f')
+
+prepare() {
+  cd ${srcdir}/mozilla-central-${_mozilla_ver}
+
+  # Move files to their correct location
+  mv ${srcdir}/${pkgname}-${pkgver} bluegriffon
+  mv ${srcdir}/${pkgname}-l10n-${pkgver} bluegriffon/locales
+  mv ${srcdir}/mozconfig .mozconfig
+
+  # Apply BlueGriffon's upstream customizations
+  patch -Np1 -i bluegriffon/config/content.patch
+
+  # Fix build with freetype 2.5
+  patch -Np1 -i ../freetype.patch
+
+  # python2 fix
+  find . -name \*.py -exec sed -i 's@^#.*python$@#!/usr/bin/python2@' '{}' \;
+}
+
+build() {
+  cd ${srcdir}/mozilla-central-${_mozilla_ver}
+
+  # configure script misdetects the preprocessor without an optimization level
+  # https://bugs.archlinux.org/task/34644
+  export CPPFLAGS+=' -O2'
+  export PYTHON=python2
+
+  xvfb-run -a -s -extension GLX -screen 0 1280x1024x24 \
+make -f client.mk build
+}
+
+package() {
+  cd ${srcdir}/mozilla-central-${_mozilla_ver}
+
+  mkdir -p ${pkgdir}/usr/lib/bluegriffon
+  cp -LR bg/dist/bin/* ${pkgdir}/usr/lib/bluegriffon
+
+  mkdir -p ${pkgdir}/usr/bin
+  ln -sf /usr/lib/bluegriffon/bluegriffon ${pkgdir}/usr/bin/bluegriffon
+
+  for i in 16x16 32x32 48x48; do
+  install -Dm644 bg/dist/branding/default${i/x*/}.png \
+${pkgdir}/usr/share/icons/hicolor/${i}/apps/bluegriffon.png
+  done
+
+  install -Dm644 bg/dist/branding/mozicon128.png \
+${pkgdir}/usr/share/icons/hicolor/128x128/apps/bluegriffon.png
+
+  install -Dm644 ../bluegriffon.desktop \
+${pkgdir}/usr/share/applications/bluegriffon.desktop
+
+  # Use system-provided dictionaries
+  rm -rf ${pkgdir}/usr/lib/bluegriffon/{dictionaries,hyphenation}
+  ln -sf /usr/share/hunspell ${pkgdir}/usr/lib/bluegriffon/dictionaries
+  ln -sf /usr/share/hyphen ${pkgdir}/usr/lib/bluegriffon/hyphenation
+}


Property changes on: bluegriffon/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: bluegriffon/trunk/bluegriffon.desktop
===
--- bluegriffon/trunk/bluegriffon.desktop   (rev 0)
+++ bluegriffon/trunk/bluegriffon.desktop   2014-11-08 15:14:16 UTC (rev 
122244)
@@ -0,0 +1,16 @@
+[Desktop Entry]
+Name=BlueGriffon
+GenericName=Web Editor
+GenericName[hu]=Webszerkesztő
+X-GNOME-FullName=BlueGriffon Web Editor
+X-GNOME-FullName[hu]=BlueGriffon webszerkesztő
+Comment=Create Web Pages
+Comment[es]=Crea páginas web
+Comment[hu]=Weboldalak készítése
+Comment[it]=Creare pagine Web
+Categories=Development;WebDevelopment;
+Exec=bluegriffon
+Icon=bluegriffon
+Terminal=false
+MimeType=text/html;application/xhtml+xml;
+Type=Application

Added: bluegriffon/trunk/bluegriffon.install

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

2014-11-08 Thread Andreas Radke
Date: Saturday, November 8, 2014 @ 16:53:02
  Author: andyrtr
Revision: 225755

upgpkg: cups-filters 1.0.61-3

poppler 0.28.1 rebuild

Modified:
  cups-filters/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-08 14:38:21 UTC (rev 225754)
+++ PKGBUILD2014-11-08 15:53:02 UTC (rev 225755)
@@ -3,7 +3,7 @@
 
 pkgname=cups-filters
 pkgver=1.0.61
-pkgrel=2
+pkgrel=3
 pkgdesc=OpenPrinting CUPS Filters
 arch=('i686' 'x86_64')
 url=http://www.linuxfoundation.org/collaborate/workgroups/openprinting;


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

2014-11-08 Thread Andreas Radke
Date: Saturday, November 8, 2014 @ 16:53:16
  Author: andyrtr
Revision: 225756

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

Added:
  cups-filters/repos/staging-i686/
  cups-filters/repos/staging-i686/PKGBUILD
(from rev 225755, cups-filters/trunk/PKGBUILD)
  cups-filters/repos/staging-x86_64/
  cups-filters/repos/staging-x86_64/PKGBUILD
(from rev 225755, cups-filters/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   54 ++
 staging-x86_64/PKGBUILD |   54 ++
 2 files changed, 108 insertions(+)

Copied: cups-filters/repos/staging-i686/PKGBUILD (from rev 225755, 
cups-filters/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2014-11-08 15:53:16 UTC (rev 225756)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+
+pkgname=cups-filters
+pkgver=1.0.61
+pkgrel=3
+pkgdesc=OpenPrinting CUPS Filters
+arch=('i686' 'x86_64')
+url=http://www.linuxfoundation.org/collaborate/workgroups/openprinting;
+license=('GPL')
+depends=('lcms2' 'poppler' 'qpdf')
+makedepends=('ghostscript' 'ttf-dejavu') # ttf-dejavu for make check
+optdepends=('ghostscript: for non-PostScript printers to print with CUPS to 
convert PostScript to raster images'
+   'foomatic-db: drivers use Ghostscript to convert PostScript to a 
printable form directly'
+   'foomatic-db-engine: drivers use Ghostscript to convert PostScript 
to a printable form directly'
+   'foomatic-db-nonfree: drivers use Ghostscript to convert PostScript 
to a printable form directly')
+backup=(etc/fonts/conf.d/99pdftoopvp.conf
+etc/cups/cups-browsed.conf)
+source=(http://www.openprinting.org/download/cups-filters/$pkgname-$pkgver.tar.gz)
+provides=('foomatic-filters')
+replaces=('foomatic-filters')
+conflicts=('foomatic-filters')
+md5sums=('3d77ee5eb9c6ee82036c0f7b67d5c3c5')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr  \
+--sysconfdir=/etc \
+--sbindir=/usr/bin \
+--localstatedir=/var \
+--with-rcdir=no \
+--enable-avahi \
+--with-browseremoteprotocols=DNSSD,CUPS \
+--with-test-font-path=/usr/share/fonts/TTF/DejaVuSans.ttf
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir/ install
+  
+  # add upstream systemd support file
+  install -Dm644 utils/cups-browsed.service 
${pkgdir}/usr/lib/systemd/system/cups-browsed.service
+  sed -i s|/usr/sbin/cups-browsed|/usr/bin/cups-browsed| 
${pkgdir}/usr/lib/systemd/system/cups-browsed.service
+  sed -i s|cups.service|org.cups.cupsd.service|g 
${pkgdir}/usr/lib/systemd/system/cups-browsed.service
+  
+  # use lp group from cups pkg FS#36769
+  chgrp -R lp ${pkgdir}/etc/cups
+}

Copied: cups-filters/repos/staging-x86_64/PKGBUILD (from rev 225755, 
cups-filters/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2014-11-08 15:53:16 UTC (rev 225756)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+
+pkgname=cups-filters
+pkgver=1.0.61
+pkgrel=3
+pkgdesc=OpenPrinting CUPS Filters
+arch=('i686' 'x86_64')
+url=http://www.linuxfoundation.org/collaborate/workgroups/openprinting;
+license=('GPL')
+depends=('lcms2' 'poppler' 'qpdf')
+makedepends=('ghostscript' 'ttf-dejavu') # ttf-dejavu for make check
+optdepends=('ghostscript: for non-PostScript printers to print with CUPS to 
convert PostScript to raster images'
+   'foomatic-db: drivers use Ghostscript to convert PostScript to a 
printable form directly'
+   'foomatic-db-engine: drivers use Ghostscript to convert PostScript 
to a printable form directly'
+   'foomatic-db-nonfree: drivers use Ghostscript to convert PostScript 
to a printable form directly')
+backup=(etc/fonts/conf.d/99pdftoopvp.conf
+etc/cups/cups-browsed.conf)
+source=(http://www.openprinting.org/download/cups-filters/$pkgname-$pkgver.tar.gz)
+provides=('foomatic-filters')
+replaces=('foomatic-filters')
+conflicts=('foomatic-filters')
+md5sums=('3d77ee5eb9c6ee82036c0f7b67d5c3c5')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr  \
+--sysconfdir=/etc \
+--sbindir=/usr/bin \
+--localstatedir=/var \
+--with-rcdir=no \
+--enable-avahi \
+--with-browseremoteprotocols=DNSSD,CUPS \
+--with-test-font-path=/usr/share/fonts/TTF/DejaVuSans.ttf
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir/ install
+  
+  # add upstream systemd support file
+  install -Dm644 utils/cups-browsed.service 
${pkgdir}/usr/lib/systemd/system/cups-browsed.service
+  sed -i s|/usr/sbin/cups-browsed|/usr/bin/cups-browsed| 

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

2014-11-08 Thread Fabio Castelli
Date: Saturday, November 8, 2014 @ 17:02:09
  Author: muflone
Revision: 122245

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

Added:
  bluegriffon/repos/community-testing-i686/
  bluegriffon/repos/community-testing-i686/PKGBUILD
(from rev 122244, bluegriffon/trunk/PKGBUILD)
  bluegriffon/repos/community-testing-i686/bluegriffon.desktop
(from rev 122244, bluegriffon/trunk/bluegriffon.desktop)
  bluegriffon/repos/community-testing-i686/bluegriffon.install
(from rev 122244, bluegriffon/trunk/bluegriffon.install)
  bluegriffon/repos/community-testing-i686/freetype.patch
(from rev 122244, bluegriffon/trunk/freetype.patch)
  bluegriffon/repos/community-testing-i686/mozconfig
(from rev 122244, bluegriffon/trunk/mozconfig)
  bluegriffon/repos/community-testing-x86_64/
  bluegriffon/repos/community-testing-x86_64/PKGBUILD
(from rev 122244, bluegriffon/trunk/PKGBUILD)
  bluegriffon/repos/community-testing-x86_64/bluegriffon.desktop
(from rev 122244, bluegriffon/trunk/bluegriffon.desktop)
  bluegriffon/repos/community-testing-x86_64/bluegriffon.install
(from rev 122244, bluegriffon/trunk/bluegriffon.install)
  bluegriffon/repos/community-testing-x86_64/freetype.patch
(from rev 122244, bluegriffon/trunk/freetype.patch)
  bluegriffon/repos/community-testing-x86_64/mozconfig
(from rev 122244, bluegriffon/trunk/mozconfig)

--+
 community-testing-i686/PKGBUILD  |   85 +
 community-testing-i686/bluegriffon.desktop   |   16 
 community-testing-i686/bluegriffon.install   |   12 +++
 community-testing-i686/freetype.patch|   74 +
 community-testing-i686/mozconfig |   37 ++
 community-testing-x86_64/PKGBUILD|   85 +
 community-testing-x86_64/bluegriffon.desktop |   16 
 community-testing-x86_64/bluegriffon.install |   12 +++
 community-testing-x86_64/freetype.patch  |   74 +
 community-testing-x86_64/mozconfig   |   37 ++
 10 files changed, 448 insertions(+)

Copied: bluegriffon/repos/community-testing-i686/PKGBUILD (from rev 122244, 
bluegriffon/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2014-11-08 16:02:09 UTC (rev 122245)
@@ -0,0 +1,85 @@
+# $Id$
+# Maintainer: Muflone http://www.muflone.com/contacts/english/
+# Contributor: Balló György ballogyor+arch at gmail dot com
+
+pkgname=bluegriffon
+pkgver=1.7.2
+_mozilla_ver=9db46ddfb517
+pkgrel=1
+pkgdesc=The next-generation Web Editor based on the rendering engine of 
Firefox
+arch=('i686' 'x86_64')
+url=http://bluegriffon.org/;
+license=('MPL' 'GPL' 'LGPL')
+depends=('alsa-lib' 'desktop-file-utils' 'dbus-glib' 'gtk2' 'hunspell' 
'mozilla-common'
+ 'nss' 'libevent' 'libvpx' 'libxt' 'python2' 'startup-notification')
+makedepends=('autoconf2.13' 'libpulse' 'subversion' 'unzip' 'xorg-server-xvfb' 
'zip')
+options=('!emptydirs')
+install=${pkgname}.install
+source=(${pkgname}-${pkgver}::svn+http://sources.disruptive-innovations.com/${pkgname}/tags/${pkgver};
+
${pkgname}-l10n-${pkgver}::svn+http://sources.disruptive-innovations.com/${pkgname}-l10n/tags/${pkgver};
+http://hg.mozilla.org/mozilla-central/archive/${_mozilla_ver}.tar.bz2;
+mozconfig
+bluegriffon.desktop
+freetype.patch)
+md5sums=('SKIP'
+ 'SKIP'
+ 'ced0be4498f9b29b68148af38bdd2f6d'
+ '7a39b0d261604c50d314acb115fc17fe'
+ 'b508d3a028380595d25c8039a217768b'
+ 'f19745a7e94053a5252e35f6cbf7b94f')
+
+prepare() {
+  cd ${srcdir}/mozilla-central-${_mozilla_ver}
+
+  # Move files to their correct location
+  mv ${srcdir}/${pkgname}-${pkgver} bluegriffon
+  mv ${srcdir}/${pkgname}-l10n-${pkgver} bluegriffon/locales
+  mv ${srcdir}/mozconfig .mozconfig
+
+  # Apply BlueGriffon's upstream customizations
+  patch -Np1 -i bluegriffon/config/content.patch
+
+  # Fix build with freetype 2.5
+  patch -Np1 -i ../freetype.patch
+
+  # python2 fix
+  find . -name \*.py -exec sed -i 's@^#.*python$@#!/usr/bin/python2@' '{}' \;
+}
+
+build() {
+  cd ${srcdir}/mozilla-central-${_mozilla_ver}
+
+  # configure script misdetects the preprocessor without an optimization level
+  # https://bugs.archlinux.org/task/34644
+  export CPPFLAGS+=' -O2'
+  export PYTHON=python2
+
+  xvfb-run -a -s -extension GLX -screen 0 1280x1024x24 \
+make -f client.mk build
+}
+
+package() {
+  cd ${srcdir}/mozilla-central-${_mozilla_ver}
+
+  mkdir -p ${pkgdir}/usr/lib/bluegriffon
+  cp -LR bg/dist/bin/* ${pkgdir}/usr/lib/bluegriffon
+
+  mkdir -p ${pkgdir}/usr/bin
+  ln -sf /usr/lib/bluegriffon/bluegriffon ${pkgdir}/usr/bin/bluegriffon
+
+  for i in 16x16 32x32 48x48; do
+  install -Dm644 bg/dist/branding/default${i/x*/}.png \
+

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

2014-11-08 Thread Evgeniy Alekseev
Date: Saturday, November 8, 2014 @ 17:23:04
  Author: arcanis
Revision: 122246

upgpkg: geogebra 5.0.26.0-1

Modified:
  geogebra/trunk/ChangeLog
  geogebra/trunk/PKGBUILD

---+
 ChangeLog |3 +++
 PKGBUILD  |6 +++---
 2 files changed, 6 insertions(+), 3 deletions(-)

Modified: ChangeLog
===
--- ChangeLog   2014-11-08 16:02:09 UTC (rev 122245)
+++ ChangeLog   2014-11-08 16:23:04 UTC (rev 122246)
@@ -1,3 +1,6 @@
+5.0.26.0-1:
+upstream update
+
 5.0.24.0-2:
 fix #42687
 

Modified: PKGBUILD
===
--- PKGBUILD2014-11-08 16:02:09 UTC (rev 122245)
+++ PKGBUILD2014-11-08 16:23:04 UTC (rev 122246)
@@ -5,8 +5,8 @@
 # Contributor: moostik mooostik at gmail dot com
 
 pkgname=geogebra
-pkgver=5.0.24.0
-pkgrel=2
+pkgver=5.0.26.0
+pkgrel=1
 pkgdesc=Dynamic mathematics software with interactive graphics, algebra and 
spreadsheet
 arch=('any')
 url='http://www.geogebra.org/'
@@ -17,7 +17,7 @@
 
source=(http://download.geogebra.org/installers/5.0/GeoGebra-Linux-Portable-${pkgver}.tar.bz2
 geogebra)
 install=geogebra.install
-md5sums=('1a0e286d67dbafa4139dea88de93e326'
+md5sums=('b5608c1c9d9335ea70fe83adeea95c61'
  'fc4a3140ceb50967598a620eb85219f4')
 changelog=ChangeLog
 


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

2014-11-08 Thread Evgeniy Alekseev
Date: Saturday, November 8, 2014 @ 17:23:21
  Author: arcanis
Revision: 122247

archrelease: copy trunk to community-any

Added:
  geogebra/repos/community-any/ChangeLog
(from rev 122246, geogebra/trunk/ChangeLog)
  geogebra/repos/community-any/PKGBUILD
(from rev 122246, geogebra/trunk/PKGBUILD)
  geogebra/repos/community-any/geogebra
(from rev 122246, geogebra/trunk/geogebra)
  geogebra/repos/community-any/geogebra.install
(from rev 122246, geogebra/trunk/geogebra.install)
Deleted:
  geogebra/repos/community-any/ChangeLog
  geogebra/repos/community-any/PKGBUILD
  geogebra/repos/community-any/geogebra
  geogebra/repos/community-any/geogebra.install

--+
 ChangeLog|   85 +++--
 PKGBUILD |   82 +--
 geogebra |   14 
 geogebra.install |   28 -
 4 files changed, 106 insertions(+), 103 deletions(-)

Deleted: ChangeLog
===
--- ChangeLog   2014-11-08 16:23:04 UTC (rev 122246)
+++ ChangeLog   2014-11-08 16:23:21 UTC (rev 122247)
@@ -1,41 +0,0 @@
-5.0.24.0-2:
-fix #42687
-
-5.0.24.0-1:
-upstream update
-
-5.0.19.0-1:
-upstream update
-
-5.0.18.0-1:
-upstream update
-
-5.0.16.0-1:
-upstream update
-
-5.0.14.0-1:
-upstream update
-
-5.0.9.0-1:
-upstream update
-
-5.0.8.0-1:
-upstream update
-
-5.0.7.0-1:
-upstream update
-
-5.0.4.0-1:
-upstream update
-
-4.4.45.0-1:
-upstream update
-
-4.4.44.0-1:
-upstream update
-
-4.4.43.0-1:
-upstream update
-
-4.4.42.0-1:
-upstream update

Copied: geogebra/repos/community-any/ChangeLog (from rev 122246, 
geogebra/trunk/ChangeLog)
===
--- ChangeLog   (rev 0)
+++ ChangeLog   2014-11-08 16:23:21 UTC (rev 122247)
@@ -0,0 +1,44 @@
+5.0.26.0-1:
+upstream update
+
+5.0.24.0-2:
+fix #42687
+
+5.0.24.0-1:
+upstream update
+
+5.0.19.0-1:
+upstream update
+
+5.0.18.0-1:
+upstream update
+
+5.0.16.0-1:
+upstream update
+
+5.0.14.0-1:
+upstream update
+
+5.0.9.0-1:
+upstream update
+
+5.0.8.0-1:
+upstream update
+
+5.0.7.0-1:
+upstream update
+
+5.0.4.0-1:
+upstream update
+
+4.4.45.0-1:
+upstream update
+
+4.4.44.0-1:
+upstream update
+
+4.4.43.0-1:
+upstream update
+
+4.4.42.0-1:
+upstream update

Deleted: PKGBUILD
===
--- PKGBUILD2014-11-08 16:23:04 UTC (rev 122246)
+++ PKGBUILD2014-11-08 16:23:21 UTC (rev 122247)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Evgeniy Alekseev arcanis at archlinux dot org
-# Contributor: Bartłomiej Piotrowski bpiotrowski at archlinux dot org
-# Contributor: Felipe Hommen felibank at gmail dot com
-# Contributor: moostik mooostik at gmail dot com
-
-pkgname=geogebra
-pkgver=5.0.24.0
-pkgrel=2
-pkgdesc=Dynamic mathematics software with interactive graphics, algebra and 
spreadsheet
-arch=('any')
-url='http://www.geogebra.org/'
-license=('GPL3' 'CCPL:by-sa' 'CCPL:by-nc')
-depends=('desktop-file-utils' 'gsl' 'hicolor-icon-theme' 'java-runtime'
- 'shared-mime-info' 'xdg-utils')
-makedepends=('gendesk')
-source=(http://download.geogebra.org/installers/5.0/GeoGebra-Linux-Portable-${pkgver}.tar.bz2
-geogebra)
-install=geogebra.install
-md5sums=('1a0e286d67dbafa4139dea88de93e326'
- 'fc4a3140ceb50967598a620eb85219f4')
-changelog=ChangeLog
-
-prepare() {
-  gendesk -f -n --pkgname ${pkgname} --pkgdesc ${pkgdesc} \
-  --name=GeoGebra \
-  --categories=Education;Science;Math \
-  
--mimetypes=application/vnd.geogebra.file;application/vnd.geogebra.tool
-}
-
-package() {
-  cd GeoGebra-Linux-Portable-${pkgver}
-
-  install -Dm755 ${srcdir}/geogebra ${pkgdir}/usr/bin/geogebra
-  install -dm755 ${pkgdir}/usr/share/geogebra
-  install geogebra/* -t ${pkgdir}/usr/share/geogebra/
-
-  install -Dm644 ${srcdir}/geogebra.desktop 
${pkgdir}/usr/share/applications/geogebra.desktop
-  install -Dm644 geogebra.png ${pkgdir}/usr/share/pixmaps/geogebra.png
-}
-

Copied: geogebra/repos/community-any/PKGBUILD (from rev 122246, 
geogebra/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-11-08 16:23:21 UTC (rev 122247)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Evgeniy Alekseev arcanis at archlinux dot org
+# Contributor: Bartłomiej Piotrowski bpiotrowski at archlinux dot org
+# Contributor: Felipe Hommen felibank at gmail dot com
+# Contributor: moostik mooostik at gmail dot com
+
+pkgname=geogebra
+pkgver=5.0.26.0
+pkgrel=1
+pkgdesc=Dynamic mathematics software with interactive graphics, algebra and 
spreadsheet
+arch=('any')
+url='http://www.geogebra.org/'
+license=('GPL3' 'CCPL:by-sa' 'CCPL:by-nc')
+depends=('desktop-file-utils' 'gsl' 'hicolor-icon-theme' 'java-runtime'
+ 'shared-mime-info' 'xdg-utils')
+makedepends=('gendesk')

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

2014-11-08 Thread Bartłomiej Piotrowski
Date: Saturday, November 8, 2014 @ 17:32:03
  Author: bpiotrowski
Revision: 122248

upgpkg: gambas3 3.5.4-4

rebuild against poppler 0.28.1

Modified:
  gambas3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-08 16:23:21 UTC (rev 122247)
+++ PKGBUILD2014-11-08 16:32:03 UTC (rev 122248)
@@ -16,7 +16,7 @@
  'gambas3-gb-xml-html' 'gambas3-gb-xml-rpc' 'gambas3-gb-xml-xslt' 
'gambas3-gb-xml' 'gambas3-gb-web')
 pkgname=(${_components[@]} 'gambas3-runtime' 'gambas3-devel' 'gambas3-ide' 
'gambas3-script' 'gambas3-examples')
 pkgver=3.5.4
-pkgrel=3
+pkgrel=4
 pkgdesc=A free development environment based on a Basic interpreter.
 arch=('i686' 'x86_64')
 url=http://gambas.sourceforge.net/;


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

2014-11-08 Thread Bartłomiej Piotrowski
Date: Saturday, November 8, 2014 @ 17:32:27
  Author: bpiotrowski
Revision: 122249

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

Added:
  gambas3/repos/community-staging-i686/
  gambas3/repos/community-staging-i686/PKGBUILD
(from rev 122248, gambas3/trunk/PKGBUILD)
  gambas3/repos/community-staging-i686/gambas3-runtime.install
(from rev 122248, gambas3/trunk/gambas3-runtime.install)
  gambas3/repos/community-staging-i686/gambas3-script.install
(from rev 122248, gambas3/trunk/gambas3-script.install)
  gambas3/repos/community-staging-x86_64/
  gambas3/repos/community-staging-x86_64/PKGBUILD
(from rev 122248, gambas3/trunk/PKGBUILD)
  gambas3/repos/community-staging-x86_64/gambas3-runtime.install
(from rev 122248, gambas3/trunk/gambas3-runtime.install)
  gambas3/repos/community-staging-x86_64/gambas3-script.install
(from rev 122248, gambas3/trunk/gambas3-script.install)

--+
 community-staging-i686/PKGBUILD  |  969 +
 community-staging-i686/gambas3-runtime.install   |   10 
 community-staging-i686/gambas3-script.install|   15 
 community-staging-x86_64/PKGBUILD|  969 +
 community-staging-x86_64/gambas3-runtime.install |   10 
 community-staging-x86_64/gambas3-script.install  |   15 
 6 files changed, 1988 insertions(+)

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


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

2014-11-08 Thread Bartłomiej Piotrowski
Date: Saturday, November 8, 2014 @ 17:56:45
  Author: bpiotrowski
Revision: 122250

upgpkg: gdal 1.11.1-2

rebuild against poppler 0.28.1

Modified:
  gdal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-08 16:32:27 UTC (rev 122249)
+++ PKGBUILD2014-11-08 16:56:45 UTC (rev 122250)
@@ -5,7 +5,7 @@
 
 pkgname=gdal
 pkgver=1.11.1
-pkgrel=1
+pkgrel=2
 pkgdesc=A translator library for raster geospatial data formats
 arch=('i686' 'x86_64')
 url=http://www.gdal.org/;


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

2014-11-08 Thread Bartłomiej Piotrowski
Date: Saturday, November 8, 2014 @ 17:56:59
  Author: bpiotrowski
Revision: 122251

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

Added:
  gdal/repos/community-staging-i686/
  gdal/repos/community-staging-i686/PKGBUILD
(from rev 122250, gdal/trunk/PKGBUILD)
  gdal/repos/community-staging-i686/gdal-1.5.1-python-install.patch
(from rev 122250, gdal/trunk/gdal-1.5.1-python-install.patch)
  gdal/repos/community-staging-i686/gdal.changelog
(from rev 122250, gdal/trunk/gdal.changelog)
  gdal/repos/community-staging-x86_64/
  gdal/repos/community-staging-x86_64/PKGBUILD
(from rev 122250, gdal/trunk/PKGBUILD)
  gdal/repos/community-staging-x86_64/gdal-1.5.1-python-install.patch
(from rev 122250, gdal/trunk/gdal-1.5.1-python-install.patch)
  gdal/repos/community-staging-x86_64/gdal.changelog
(from rev 122250, gdal/trunk/gdal.changelog)

--+
 community-staging-i686/PKGBUILD  |   74 +
 community-staging-i686/gdal-1.5.1-python-install.patch   |   10 +
 community-staging-i686/gdal.changelog|   32 +
 community-staging-x86_64/PKGBUILD|   74 +
 community-staging-x86_64/gdal-1.5.1-python-install.patch |   10 +
 community-staging-x86_64/gdal.changelog  |   32 +
 6 files changed, 232 insertions(+)

Copied: gdal/repos/community-staging-i686/PKGBUILD (from rev 122250, 
gdal/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-11-08 16:56:59 UTC (rev 122251)
@@ -0,0 +1,74 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau dragonl...@aur.archlinux.org
+# Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org
+# Contributor: William Rea sillywi...@gmail.com
+
+pkgname=gdal
+pkgver=1.11.1
+pkgrel=2
+pkgdesc=A translator library for raster geospatial data formats
+arch=('i686' 'x86_64')
+url=http://www.gdal.org/;
+license=('custom')
+depends=('curl' 'geos' 'giflib' 'hdf5' 'libgeotiff' 'libjpeg' 'libpng' 
'libspatialite' 'libtiff' 'netcdf' 'poppler' 'python2' 'python2-numpy' 
'cfitsio' 'sqlite' 'libmariadbclient' 'postgresql-libs')
+makedepends=('perl' 'swig' 'chrpath' 'doxygen')
+optdepends=('postgresql: postgresql database support'
+'mariadb: mariadb database support'
+'perl:  perl binding support')
+changelog=$pkgname.changelog
+source=(http://download.osgeo.org/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz
+gdal-1.5.1-python-install.patch)
+sha256sums=('f46b5944a8cabc8516673f231f466131cdfd2cdc6677dbee5d96ec7fc58a3340'
+'55a0a961b2d1caddf80f18b6763a96690b0b6443fbd5a0c89e29503ded3bcea6')
+
+prepare() {
+  cd ${srcdir}/$pkgname-$pkgver
+  patch -Np0 -i ${srcdir}/gdal-1.5.1-python-install.patch
+
+# python2 fixes
+  sed -i 's_python python1.5_python2 python python1.5_' configure
+  for file in swig/python/{,osgeo/,samples/,scripts/}*.py; do
+  sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' $file
+  done
+
+# Fix mandir
+  sed -i s|^mandir=.*|mandir='\${prefix}/share/man'| configure
+}
+
+build() {
+  cd ${srcdir}/$pkgname-$pkgver
+  export CFLAGS=$CFLAGS -fno-strict-aliasing
+
+# bug #23654
+  export LDFLAGS=$LDFLAGS -Wl,--as-needed 
+
+  ./configure --prefix=/usr --with-netcdf --with-libtiff --with-sqlite3 \
+  --with-geotiff --with-mysql --with-python --with-curl \
+  --with-hdf5 --with-perl --with-geos --with-png --with-poppler 
--with-spatialite
+
+# workaround for bug #13646
+  sed -i 's/PY_HAVE_SETUPTOOLS=1/PY_HAVE_SETUPTOOLS=/g' ./GDALmake.opt
+  sed -i 's/EXE_DEP_LIBS/KILL_EXE_DEP_LIBS/' apps/GNUmakefile
+
+  make
+  make man
+}
+
+package () {
+  cd ${srcdir}/$pkgname-$pkgver
+  make DESTDIR=${pkgdir} install
+  make DESTDIR=${pkgdir} install-man
+
+# install license
+  install -D -m644 LICENSE.TXT 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+
+#FS15477 clean up junks
+  rm -f ${pkgdir}/usr/bin/*.dox
+  rm -f ${pkgdir}/usr/share/man/man1/_build_gdal_src_gdal-${pkgver}_apps_.1
+
+# Remove RPATH
+  chrpath --delete 
${pkgdir}/usr/lib/perl5/${CARCH}-linux-thread-multi/auto/Geo/OSR/OSR.so
+  chrpath --delete 
${pkgdir}/usr/lib/perl5/${CARCH}-linux-thread-multi/auto/Geo/OGR/OGR.so
+  chrpath --delete 
${pkgdir}/usr/lib/perl5/${CARCH}-linux-thread-multi/auto/Geo/GDAL/GDAL.so
+  chrpath --delete 
${pkgdir}/usr/lib/perl5/${CARCH}-linux-thread-multi/auto/Geo/GDAL/Const/Const.so
+}

Copied: gdal/repos/community-staging-i686/gdal-1.5.1-python-install.patch (from 
rev 122250, gdal/trunk/gdal-1.5.1-python-install.patch)
===
--- community-staging-i686/gdal-1.5.1-python-install.patch  
(rev 0)
+++ community-staging-i686/gdal-1.5.1-python-install.patch  2014-11-08 
16:56:59 UTC (rev 

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

2014-11-08 Thread Bartłomiej Piotrowski
Date: Saturday, November 8, 2014 @ 18:13:43
  Author: bpiotrowski
Revision: 122253

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

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

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

Copied: pdf2djvu/repos/community-staging-i686/PKGBUILD (from rev 122252, 
pdf2djvu/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-11-08 17:13:43 UTC (rev 122253)
@@ -0,0 +1,37 @@
+# $Id$
+# Contributor: Paulo Matias matiasΘarchlinux-br·org
+# Maintainer: Jelle van der Waa je...@vdwaa.nl
+
+pkgname=pdf2djvu
+pkgver=0.7.17
+pkgrel=4
+pkgdesc=Creates DjVu files from PDF files
+arch=('i686' 'x86_64')
+url=http://pdf2djvu.googlecode.com;
+license=('GPL')
+depends=('poppler' 'djvulibre' 'libxslt' 'gcc-libs' 'graphicsmagick')
+makedepends=('pstreams' 'python2-nose' 'ttf-liberation')
+source=(http://pdf2djvu.googlecode.com/files/${pkgname}_${pkgver}.tar.gz;)
+md5sums=('fedec591afb14b144808d1a4facab174')
+
+build() {
+cd ${srcdir}/${pkgname}-${pkgver}
+
+./configure --prefix=/usr
+make
+}
+
+check() {
+cd ${srcdir}/${pkgname}-${pkgver}
+
+sed -i 's/nosetests/nosetests2/' tests/Makefile
+make test
+}
+
+package() {
+cd ${srcdir}/${pkgname}-${pkgver}
+
+make install DESTDIR=${pkgdir}
+install -Dm644 doc/${pkgname}.1 ${pkgdir}/usr/share/man/man1/${pkgname}.1
+}
+

Copied: pdf2djvu/repos/community-staging-x86_64/PKGBUILD (from rev 122252, 
pdf2djvu/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2014-11-08 17:13:43 UTC (rev 122253)
@@ -0,0 +1,37 @@
+# $Id$
+# Contributor: Paulo Matias matiasΘarchlinux-br·org
+# Maintainer: Jelle van der Waa je...@vdwaa.nl
+
+pkgname=pdf2djvu
+pkgver=0.7.17
+pkgrel=4
+pkgdesc=Creates DjVu files from PDF files
+arch=('i686' 'x86_64')
+url=http://pdf2djvu.googlecode.com;
+license=('GPL')
+depends=('poppler' 'djvulibre' 'libxslt' 'gcc-libs' 'graphicsmagick')
+makedepends=('pstreams' 'python2-nose' 'ttf-liberation')
+source=(http://pdf2djvu.googlecode.com/files/${pkgname}_${pkgver}.tar.gz;)
+md5sums=('fedec591afb14b144808d1a4facab174')
+
+build() {
+cd ${srcdir}/${pkgname}-${pkgver}
+
+./configure --prefix=/usr
+make
+}
+
+check() {
+cd ${srcdir}/${pkgname}-${pkgver}
+
+sed -i 's/nosetests/nosetests2/' tests/Makefile
+make test
+}
+
+package() {
+cd ${srcdir}/${pkgname}-${pkgver}
+
+make install DESTDIR=${pkgdir}
+install -Dm644 doc/${pkgname}.1 ${pkgdir}/usr/share/man/man1/${pkgname}.1
+}
+


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

2014-11-08 Thread Bartłomiej Piotrowski
Date: Saturday, November 8, 2014 @ 18:13:33
  Author: bpiotrowski
Revision: 122252

upgpkg: pdf2djvu 0.7.17-4

rebuild against poppler 0.28.1

Modified:
  pdf2djvu/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-08 16:56:59 UTC (rev 122251)
+++ PKGBUILD2014-11-08 17:13:33 UTC (rev 122252)
@@ -4,7 +4,7 @@
 
 pkgname=pdf2djvu
 pkgver=0.7.17
-pkgrel=3
+pkgrel=4
 pkgdesc=Creates DjVu files from PDF files
 arch=('i686' 'x86_64')
 url=http://pdf2djvu.googlecode.com;


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

2014-11-08 Thread Bartłomiej Piotrowski
Date: Saturday, November 8, 2014 @ 18:18:11
  Author: bpiotrowski
Revision: 225757

upgpkg: evas_generic_loaders 1.11.2-2

rebuild against poppler 0.28.1

Modified:
  evas_generic_loaders/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-08 15:53:16 UTC (rev 225756)
+++ PKGBUILD2014-11-08 17:18:11 UTC (rev 225757)
@@ -4,7 +4,7 @@
 
 pkgname=evas_generic_loaders
 pkgver=1.11.2
-pkgrel=1
+pkgrel=2
 pkgdesc=Additional generic loaders for Evas
 arch=('i686' 'x86_64')
 url=http://www.enlightenment.org;


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

2014-11-08 Thread Bartłomiej Piotrowski
Date: Saturday, November 8, 2014 @ 18:18:22
  Author: bpiotrowski
Revision: 225758

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

Added:
  evas_generic_loaders/repos/staging-i686/
  evas_generic_loaders/repos/staging-i686/PKGBUILD
(from rev 225757, evas_generic_loaders/trunk/PKGBUILD)
  evas_generic_loaders/repos/staging-x86_64/
  evas_generic_loaders/repos/staging-x86_64/PKGBUILD
(from rev 225757, evas_generic_loaders/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   37 +
 staging-x86_64/PKGBUILD |   37 +
 2 files changed, 74 insertions(+)

Copied: evas_generic_loaders/repos/staging-i686/PKGBUILD (from rev 225757, 
evas_generic_loaders/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2014-11-08 17:18:22 UTC (rev 225758)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Ronald van Haren ron...@archlinux.org
+# Contributor: Gustavo Sverzut Barbieri barbi...@gmail.com
+
+pkgname=evas_generic_loaders
+pkgver=1.11.2
+pkgrel=2
+pkgdesc=Additional generic loaders for Evas
+arch=('i686' 'x86_64')
+url=http://www.enlightenment.org;
+license=('GPL2')
+depends=('librsvg' 'poppler' 'libraw' 'libspectre' 'efl')
+options=('!emptydirs')
+source=(http://download.enlightenment.org/rel/libs/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+sha1sums=('6ebf889d47f3d1aaa1ec85a861d7d02daf3a472a')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  export CFLAGS=$CFLAGS -fvisibility=hidden
+
+  ./configure \
+--prefix=/usr \
+--libexecdir=/usr/lib/evas \
+--enable-poppler \
+--enable-spectre \
+--enable-libraw \
+--enable-svg \
+--enable-gstreamer
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}
+

Copied: evas_generic_loaders/repos/staging-x86_64/PKGBUILD (from rev 225757, 
evas_generic_loaders/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2014-11-08 17:18:22 UTC (rev 225758)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Ronald van Haren ron...@archlinux.org
+# Contributor: Gustavo Sverzut Barbieri barbi...@gmail.com
+
+pkgname=evas_generic_loaders
+pkgver=1.11.2
+pkgrel=2
+pkgdesc=Additional generic loaders for Evas
+arch=('i686' 'x86_64')
+url=http://www.enlightenment.org;
+license=('GPL2')
+depends=('librsvg' 'poppler' 'libraw' 'libspectre' 'efl')
+options=('!emptydirs')
+source=(http://download.enlightenment.org/rel/libs/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+sha1sums=('6ebf889d47f3d1aaa1ec85a861d7d02daf3a472a')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  export CFLAGS=$CFLAGS -fvisibility=hidden
+
+  ./configure \
+--prefix=/usr \
+--libexecdir=/usr/lib/evas \
+--enable-poppler \
+--enable-spectre \
+--enable-libraw \
+--enable-svg \
+--enable-gstreamer
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}
+


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

2014-11-08 Thread Alexandre Filgueira
Date: Saturday, November 8, 2014 @ 18:26:11
  Author: faidoc
Revision: 122254

upgpkg: cinnamon-desktop 2.4.1-1

Modified:
  cinnamon-desktop/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-08 17:13:43 UTC (rev 122253)
+++ PKGBUILD2014-11-08 17:26:11 UTC (rev 122254)
@@ -3,7 +3,7 @@
 # Contributor:  Jan de Groot j...@archlinux.org
 
 pkgname=cinnamon-desktop
-pkgver=2.4.0
+pkgver=2.4.1
 pkgrel=1
 pkgdesc=Library with common API for various Cinnamon modules
 arch=(i686 x86_64)
@@ -14,7 +14,7 @@
 install=cinnamon-desktop.install
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cinnamon-desktop/archive/${pkgver}.tar.gz;
 gnome-3.14.patch)
-sha256sums=('4ddfa1d73287f419c825eb0174eab18b87a96e5d895b59ea996ae17f27771acc'
+sha256sums=('82b7ce3a5b8c8d2864ae34b8898df8091b879809eb7e01464b4c631c4875f770'
 'c4df93c49fd3f9f8bc359cbad5d5526eef80ee5c34680f8ba62c67c3dbb7eca5')
 
 prepare() {


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

2014-11-08 Thread Alexandre Filgueira
Date: Saturday, November 8, 2014 @ 18:30:47
  Author: faidoc
Revision: 122255

upgpkg: muffin 2.4.1-1

Modified:
  muffin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-08 17:26:11 UTC (rev 122254)
+++ PKGBUILD2014-11-08 17:30:47 UTC (rev 122255)
@@ -4,7 +4,7 @@
 # Contributor: Ner0
 
 pkgname=muffin
-pkgver=2.4.0
+pkgver=2.4.1
 pkgrel=1
 pkgdesc=Cinnamon window manager based on Mutter
 arch=('i686' 'x86_64')
@@ -16,7 +16,7 @@
 options=('!emptydirs')
 install=$pkgname.install
 
source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/muffin/archive/$pkgver.tar.gz;)
-sha256sums=('2526c0a76b02fd5293fa791d4f977abc1d5ba8a51c5e59691b56184ce40d831b')
+sha256sums=('aadc8a985f4d87c9b08c6bc676bc699db59196c69c5f1262f049820f8b4b9dfd')
 
 prepare() {
   cd ${pkgname}-${pkgver}


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

2014-11-08 Thread Alexandre Filgueira
Date: Saturday, November 8, 2014 @ 18:32:29
  Author: faidoc
Revision: 122257

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

Added:
  muffin/repos/community-i686/PKGBUILD
(from rev 122255, muffin/trunk/PKGBUILD)
  muffin/repos/community-i686/muffin.install
(from rev 122255, muffin/trunk/muffin.install)
  muffin/repos/community-x86_64/PKGBUILD
(from rev 122255, muffin/trunk/PKGBUILD)
  muffin/repos/community-x86_64/muffin.install
(from rev 122256, muffin/trunk/muffin.install)
Deleted:
  muffin/repos/community-i686/PKGBUILD
  muffin/repos/community-i686/muffin.install
  muffin/repos/community-x86_64/PKGBUILD
  muffin/repos/community-x86_64/muffin.install

-+
 /PKGBUILD   |   90 ++
 /muffin.install |   20 
 community-i686/PKGBUILD |   45 ---
 community-i686/muffin.install   |   10 
 community-x86_64/PKGBUILD   |   45 ---
 community-x86_64/muffin.install |   10 
 6 files changed, 110 insertions(+), 110 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-11-08 17:32:11 UTC (rev 122256)
+++ community-i686/PKGBUILD 2014-11-08 17:32:29 UTC (rev 122257)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Alexandre Filgueira alexfilgue...@cinnarch.com
-# Contributor: Adam Hani Schakaki a...@schakaki.net
-# Contributor: Ner0
-
-pkgname=muffin
-pkgver=2.4.0
-pkgrel=1
-pkgdesc=Cinnamon window manager based on Mutter
-arch=('i686' 'x86_64')
-url=https://github.com/linuxmint/muffin;
-license=('GPL')
-depends=('clutter' 'gobject-introspection' 'cinnamon-desktop' 'libcanberra' 
'libsm'
- 'startup-notification' 'zenity' 'dconf')
-makedepends=('intltool' 'gnome-doc-utils' 'gnome-common') 
-options=('!emptydirs')
-install=$pkgname.install
-source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/muffin/archive/$pkgver.tar.gz;)
-sha256sums=('2526c0a76b02fd5293fa791d4f977abc1d5ba8a51c5e59691b56184ce40d831b')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-
-  PYTHON=python2 ./autogen.sh --prefix=/usr --sysconfdir=/etc 
--libexecdir=/usr/lib/muffin \
---localstatedir=/var 
--disable-static --disable-schemas-compile \
- --enable-compile-warnings=minimum
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR=$pkgdir/ install
-
-  # Remove unused stuff
-  make -C src DESTDIR=$pkgdir uninstall-binPROGRAMS 
uninstall-desktopfilesDATA
-  make -C src/tools DESTDIR=$pkgdir uninstall
-  make -C src/compositor/plugins DESTDIR=$pkgdir uninstall
-  make -C doc/man DESTDIR=$pkgdir uninstall
-}
-
-# vim:set ts=2 sw=2 et:

Copied: muffin/repos/community-i686/PKGBUILD (from rev 122255, 
muffin/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-11-08 17:32:29 UTC (rev 122257)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Alexandre Filgueira alexfilgue...@cinnarch.com
+# Contributor: Adam Hani Schakaki a...@schakaki.net
+# Contributor: Ner0
+
+pkgname=muffin
+pkgver=2.4.1
+pkgrel=1
+pkgdesc=Cinnamon window manager based on Mutter
+arch=('i686' 'x86_64')
+url=https://github.com/linuxmint/muffin;
+license=('GPL')
+depends=('clutter' 'gobject-introspection' 'cinnamon-desktop' 'libcanberra' 
'libsm'
+ 'startup-notification' 'zenity' 'dconf')
+makedepends=('intltool' 'gnome-doc-utils' 'gnome-common') 
+options=('!emptydirs')
+install=$pkgname.install
+source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/muffin/archive/$pkgver.tar.gz;)
+sha256sums=('aadc8a985f4d87c9b08c6bc676bc699db59196c69c5f1262f049820f8b4b9dfd')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  PYTHON=python2 ./autogen.sh --prefix=/usr --sysconfdir=/etc 
--libexecdir=/usr/lib/muffin \
+--localstatedir=/var 
--disable-static --disable-schemas-compile \
+ --enable-compile-warnings=minimum
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=$pkgdir/ install
+
+  # Remove unused stuff
+  make -C src DESTDIR=$pkgdir uninstall-binPROGRAMS 
uninstall-desktopfilesDATA
+  make -C src/tools DESTDIR=$pkgdir uninstall
+  make -C src/compositor/plugins DESTDIR=$pkgdir uninstall
+  make -C doc/man DESTDIR=$pkgdir uninstall
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/muffin.install
===
--- community-i686/muffin.install   2014-11-08 17:32:11 UTC (rev 122256)
+++ community-i686/muffin.install   2014-11-08 17:32:29 UTC (rev 122257)
@@ -1,10 +0,0 @@
-post_install() {
-  glib-compile-schemas usr/share/glib-2.0/schemas
-}
-

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

2014-11-08 Thread Alexandre Filgueira
Date: Saturday, November 8, 2014 @ 18:32:11
  Author: faidoc
Revision: 122256

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

Added:
  cinnamon-desktop/repos/community-i686/PKGBUILD
(from rev 122254, cinnamon-desktop/trunk/PKGBUILD)
  cinnamon-desktop/repos/community-i686/cinnamon-desktop.install
(from rev 122254, cinnamon-desktop/trunk/cinnamon-desktop.install)
  cinnamon-desktop/repos/community-i686/gnome-3.14.patch
(from rev 122254, cinnamon-desktop/trunk/gnome-3.14.patch)
  cinnamon-desktop/repos/community-x86_64/PKGBUILD
(from rev 122255, cinnamon-desktop/trunk/PKGBUILD)
  cinnamon-desktop/repos/community-x86_64/cinnamon-desktop.install
(from rev 122255, cinnamon-desktop/trunk/cinnamon-desktop.install)
  cinnamon-desktop/repos/community-x86_64/gnome-3.14.patch
(from rev 122255, cinnamon-desktop/trunk/gnome-3.14.patch)
Deleted:
  cinnamon-desktop/repos/community-i686/PKGBUILD
  cinnamon-desktop/repos/community-i686/cinnamon-desktop.install
  cinnamon-desktop/repos/community-i686/gnome-3.14.patch
  cinnamon-desktop/repos/community-x86_64/PKGBUILD
  cinnamon-desktop/repos/community-x86_64/cinnamon-desktop.install
  cinnamon-desktop/repos/community-x86_64/gnome-3.14.patch

---+
 /PKGBUILD |   72 
 /cinnamon-desktop.install |   22 
 /gnome-3.14.patch |   48 ++
 community-i686/PKGBUILD   |   36 --
 community-i686/cinnamon-desktop.install   |   11 
 community-i686/gnome-3.14.patch   |   24 -
 community-x86_64/PKGBUILD |   36 --
 community-x86_64/cinnamon-desktop.install |   11 
 community-x86_64/gnome-3.14.patch |   24 -
 9 files changed, 142 insertions(+), 142 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-11-08 17:30:47 UTC (rev 122255)
+++ community-i686/PKGBUILD 2014-11-08 17:32:11 UTC (rev 122256)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Alexandre Filgueria alexfilgue...@antergos.com
-# Contributor:  Jan de Groot j...@archlinux.org
-
-pkgname=cinnamon-desktop
-pkgver=2.4.0
-pkgrel=1
-pkgdesc=Library with common API for various Cinnamon modules
-arch=(i686 x86_64)
-license=(GPL LGPL)
-depends=(gtk3 libxkbfile python2)
-makedepends=(intltool gobject-introspection gnome-common python2)
-url=https://github.com/linuxmint/cinnamon-desktop;
-install=cinnamon-desktop.install
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cinnamon-desktop/archive/${pkgver}.tar.gz;
-gnome-3.14.patch)
-sha256sums=('4ddfa1d73287f419c825eb0174eab18b87a96e5d895b59ea996ae17f27771acc'
-'c4df93c49fd3f9f8bc359cbad5d5526eef80ee5c34680f8ba62c67c3dbb7eca5')
-
-prepare() {
-  cd $pkgname-$pkgver
-  # Update configuration for GNOME 3.14
-  patch -Np1 -i ../gnome-3.14.patch
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---libexecdir=/usr/lib/$pkgname --disable-static
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: cinnamon-desktop/repos/community-i686/PKGBUILD (from rev 122254, 
cinnamon-desktop/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-11-08 17:32:11 UTC (rev 122256)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Alexandre Filgueria alexfilgue...@antergos.com
+# Contributor:  Jan de Groot j...@archlinux.org
+
+pkgname=cinnamon-desktop
+pkgver=2.4.1
+pkgrel=1
+pkgdesc=Library with common API for various Cinnamon modules
+arch=(i686 x86_64)
+license=(GPL LGPL)
+depends=(gtk3 libxkbfile python2)
+makedepends=(intltool gobject-introspection gnome-common python2)
+url=https://github.com/linuxmint/cinnamon-desktop;
+install=cinnamon-desktop.install
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cinnamon-desktop/archive/${pkgver}.tar.gz;
+gnome-3.14.patch)
+sha256sums=('82b7ce3a5b8c8d2864ae34b8898df8091b879809eb7e01464b4c631c4875f770'
+'c4df93c49fd3f9f8bc359cbad5d5526eef80ee5c34680f8ba62c67c3dbb7eca5')
+
+prepare() {
+  cd $pkgname-$pkgver
+  # Update configuration for GNOME 3.14
+  patch -Np1 -i ../gnome-3.14.patch
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--libexecdir=/usr/lib/$pkgname --disable-static
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: community-i686/cinnamon-desktop.install
===
--- community-i686/cinnamon-desktop.install 2014-11-08 17:30:47 UTC (rev 
122255)
+++ community-i686/cinnamon-desktop.install 2014-11-08 

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

2014-11-08 Thread Bartłomiej Piotrowski
Date: Saturday, November 8, 2014 @ 18:33:35
  Author: bpiotrowski
Revision: 225759

upgpkg: inkscape 0.48.5-3

rebuild against poppler 0.28.1

Modified:
  inkscape/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-08 17:18:22 UTC (rev 225758)
+++ PKGBUILD2014-11-08 17:33:35 UTC (rev 225759)
@@ -5,7 +5,7 @@
 
 pkgname=inkscape
 pkgver=0.48.5
-pkgrel=2
+pkgrel=3
 pkgdesc='Vector graphics editor using the SVG file format'
 url='http://inkscape.sourceforge.net/'
 license=('GPL' 'LGPL')


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

2014-11-08 Thread Alexandre Filgueira
Date: Saturday, November 8, 2014 @ 18:33:55
  Author: faidoc
Revision: 122258

upgpkg: cinnamon-session 2.4.1-1

Modified:
  cinnamon-session/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-08 17:32:29 UTC (rev 122257)
+++ PKGBUILD2014-11-08 17:33:55 UTC (rev 122258)
@@ -3,7 +3,7 @@
 # Contributor: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
 
 pkgname=cinnamon-session
-pkgver=2.4.0
+pkgver=2.4.1
 pkgrel=1
 pkgdesc=The Cinnamon Session Handler
 arch=(i686 x86_64)
@@ -15,7 +15,7 @@
 url=https://github.com/linuxmint/cinnamon-session;
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cinnamon-session/archive/${pkgver}.tar.gz
 timeout.patch)
-sha256sums=('fd47e31ce5546c09a8ba25edea4fbf4e1ac0ead9bb9a6ebed5564f2783493c77'
+sha256sums=('0fe4a1a5cc7f9f0860722ac52f55ca918c980ade3dfc500d2c90da681f1a8f4c'
 'ef421a14814c7858490b3a806568ab4ec8a0dc21d390e94f801771c1261bb24a')
 
 prepare() {


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

2014-11-08 Thread Bartłomiej Piotrowski
Date: Saturday, November 8, 2014 @ 18:33:48
  Author: bpiotrowski
Revision: 225760

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

Added:
  inkscape/repos/staging-i686/
  inkscape/repos/staging-i686/PKGBUILD
(from rev 225759, inkscape/trunk/PKGBUILD)
  inkscape/repos/staging-i686/ime-placement.patch
(from rev 225759, inkscape/trunk/ime-placement.patch)
  inkscape/repos/staging-i686/install
(from rev 225759, inkscape/trunk/install)
  inkscape/repos/staging-x86_64/
  inkscape/repos/staging-x86_64/PKGBUILD
(from rev 225759, inkscape/trunk/PKGBUILD)
  inkscape/repos/staging-x86_64/ime-placement.patch
(from rev 225759, inkscape/trunk/ime-placement.patch)
  inkscape/repos/staging-x86_64/install
(from rev 225759, inkscape/trunk/install)

+
 staging-i686/PKGBUILD  |   54 ++
 staging-i686/ime-placement.patch   |   62 +++
 staging-i686/install   |   13 +++
 staging-x86_64/PKGBUILD|   54 ++
 staging-x86_64/ime-placement.patch |   62 +++
 staging-x86_64/install |   13 +++
 6 files changed, 258 insertions(+)

Copied: inkscape/repos/staging-i686/PKGBUILD (from rev 225759, 
inkscape/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2014-11-08 17:33:48 UTC (rev 225760)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Tobias Kieslich tob...@justdreams.de
+# Contributor: tobias tob...@archlinux.org
+
+pkgname=inkscape
+pkgver=0.48.5
+pkgrel=3
+pkgdesc='Vector graphics editor using the SVG file format'
+url='http://inkscape.sourceforge.net/'
+license=('GPL' 'LGPL')
+arch=('i686' 'x86_64')
+makedepends=('boost' 'intltool')
+depends=('gc' 'gsl' 'gtkmm' 'gtkspell' 'imagemagick' 'libxslt' 'poppler-glib' 
'popt'
+ 'python2' 'desktop-file-utils' 'hicolor-icon-theme')
+optdepends=('pstoedit: latex formulas'
+'texlive-core: latex formulas'
+'python2-numpy: some extensions'
+'python2-lxml: some extensions and filters'
+'uniconvertor: reading/writing to some proprietary formats')
+source=(http://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.bz2;
+'ime-placement.patch')
+sha1sums=('83ddb0c96069638f712a869039989bfd7d79c6a8'
+  'b12b948ca5ee7e02703a13aa8b8bccdf67947f12')
+
+install=install
+
+prepare() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   patch -p1 -i ../ime-placement.patch # FS#39898
+   sed -i 's|/usr/bin/python\|/usr/bin/python2|g' cxxtest/*.py
+   sed -i 's|/usr/bin/env python\|/usr/bin/env python2|g' 
share/*/{test/,}*.py
+   sed -i 's|python },|python2 },|g' 
src/extension/implementation/script.cpp
+   sed -i 's|python -c|python2 -c|g' configure share/extensions/uniconv*.py
+   sed -i 's|python|python2|g' src/main.cpp
+   sed -i '/extern unsigned GC_version;/c unsigned 
GC_version=GC_VERSION_MAJOR16+GC_VERSION_MINOR8+GC_VERSION_MICRO;' configure
+}
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   ./configure \
+   --prefix=/usr \
+   --with-python \
+   --with-perl \
+   --enable-lcms \
+   --enable-poppler-cairo \
+   --disable-dependency-tracking
+   make
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make DESTDIR=${pkgdir} install
+}

Copied: inkscape/repos/staging-i686/ime-placement.patch (from rev 225759, 
inkscape/trunk/ime-placement.patch)
===
--- staging-i686/ime-placement.patch(rev 0)
+++ staging-i686/ime-placement.patch2014-11-08 17:33:48 UTC (rev 225760)
@@ -0,0 +1,62 @@
+diff -aur old/src/text-context.cpp new/src/text-context.cpp
+--- old/src/text-context.cpp   2011-07-08 08:25:09.46879 -1000
 new/src/text-context.cpp   2014-04-21 14:48:22.668759004 -1000
+@@ -684,6 +684,17 @@
+ // articifically here, for the text object does not exist 
yet:
+ double cursor_height = 
sp_desktop_get_font_size_tool(desktop);
+ sp_ctrlline_set_coords(SP_CTRLLINE(tc-cursor), dtp, dtp 
+ Geom::Point(0, cursor_height));
++if (tc-imc) {
++GdkRectangle im_cursor;
++Geom::Point const top_left = 
SP_EVENT_CONTEXT(tc)-desktop-get_display_area().corner(3);
++Geom::Point const cursor_size(0, cursor_height);
++Geom::Point const im_position = 
SP_EVENT_CONTEXT(tc)-desktop-d2w(dtp + cursor_size - top_left);
++im_cursor.x = (int) floor(im_position[Geom::X]);
++   

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

2014-11-08 Thread Alexandre Filgueira
Date: Saturday, November 8, 2014 @ 18:35:01
  Author: faidoc
Revision: 122259

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

Added:
  cinnamon-session/repos/community-i686/PKGBUILD
(from rev 122258, cinnamon-session/trunk/PKGBUILD)
  cinnamon-session/repos/community-i686/cinnamon-session.install
(from rev 122258, cinnamon-session/trunk/cinnamon-session.install)
  cinnamon-session/repos/community-i686/timeout.patch
(from rev 122258, cinnamon-session/trunk/timeout.patch)
  cinnamon-session/repos/community-x86_64/PKGBUILD
(from rev 122258, cinnamon-session/trunk/PKGBUILD)
  cinnamon-session/repos/community-x86_64/cinnamon-session.install
(from rev 122258, cinnamon-session/trunk/cinnamon-session.install)
  cinnamon-session/repos/community-x86_64/timeout.patch
(from rev 122258, cinnamon-session/trunk/timeout.patch)
Deleted:
  cinnamon-session/repos/community-i686/PKGBUILD
  cinnamon-session/repos/community-i686/cinnamon-session.install
  cinnamon-session/repos/community-i686/timeout.patch
  cinnamon-session/repos/community-x86_64/PKGBUILD
  cinnamon-session/repos/community-x86_64/cinnamon-session.install
  cinnamon-session/repos/community-x86_64/timeout.patch

---+
 /PKGBUILD |   80 
 /cinnamon-session.install |   24 
 /timeout.patch|   48 
 community-i686/PKGBUILD   |   40 --
 community-i686/cinnamon-session.install   |   12 
 community-i686/timeout.patch  |   24 
 community-x86_64/PKGBUILD |   40 --
 community-x86_64/cinnamon-session.install |   12 
 community-x86_64/timeout.patch|   24 
 9 files changed, 152 insertions(+), 152 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-11-08 17:33:55 UTC (rev 122258)
+++ community-i686/PKGBUILD 2014-11-08 17:35:01 UTC (rev 122259)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Alexandre Filgueira alexfilgue...@antergos.com
-# Contributor: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-
-pkgname=cinnamon-session
-pkgver=2.4.0
-pkgrel=1
-pkgdesc=The Cinnamon Session Handler
-arch=(i686 x86_64)
-license=(GPL LGPL)
-depends=(dbus-glib cinnamon-desktop libsm libcanberra)
-makedepends=(intltool mesa json-glib xtrans gnome-common)
-options=('!emptydirs')
-install=cinnamon-session.install
-url=https://github.com/linuxmint/cinnamon-session;
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cinnamon-session/archive/${pkgver}.tar.gz
-timeout.patch)
-sha256sums=('fd47e31ce5546c09a8ba25edea4fbf4e1ac0ead9bb9a6ebed5564f2783493c77'
-'ef421a14814c7858490b3a806568ab4ec8a0dc21d390e94f801771c1261bb24a')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  # Increase timeout, for slow machines
-  patch -Np1 -i ../timeout.patch
-
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./autogen.sh --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --libexecdir=/usr/lib/cinnamon-session \
-  --disable-schemas-compile --enable-systemd --disable-gconf
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: cinnamon-session/repos/community-i686/PKGBUILD (from rev 122258, 
cinnamon-session/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-11-08 17:35:01 UTC (rev 122259)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Alexandre Filgueira alexfilgue...@antergos.com
+# Contributor: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+
+pkgname=cinnamon-session
+pkgver=2.4.1
+pkgrel=1
+pkgdesc=The Cinnamon Session Handler
+arch=(i686 x86_64)
+license=(GPL LGPL)
+depends=(dbus-glib cinnamon-desktop libsm libcanberra)
+makedepends=(intltool mesa json-glib xtrans gnome-common)
+options=('!emptydirs')
+install=cinnamon-session.install
+url=https://github.com/linuxmint/cinnamon-session;
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cinnamon-session/archive/${pkgver}.tar.gz
+timeout.patch)
+sha256sums=('0fe4a1a5cc7f9f0860722ac52f55ca918c980ade3dfc500d2c90da681f1a8f4c'
+'ef421a14814c7858490b3a806568ab4ec8a0dc21d390e94f801771c1261bb24a')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # Increase timeout, for slow machines
+  patch -Np1 -i ../timeout.patch
+
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./autogen.sh --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --libexecdir=/usr/lib/cinnamon-session \
+  --disable-schemas-compile --enable-systemd --disable-gconf
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: community-i686/cinnamon-session.install

[arch-commits] Commit in cinnamon-settings-daemon/trunk (PKGBUILD)

2014-11-08 Thread Alexandre Filgueira
Date: Saturday, November 8, 2014 @ 18:38:25
  Author: faidoc
Revision: 122260

upgpkg: cinnamon-settings-daemon 2.4.2-1

Modified:
  cinnamon-settings-daemon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-08 17:35:01 UTC (rev 122259)
+++ PKGBUILD2014-11-08 17:38:25 UTC (rev 122260)
@@ -3,7 +3,7 @@
 # Contributor: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
 
 pkgname=cinnamon-settings-daemon
-pkgver=2.4.1
+pkgver=2.4.2
 pkgrel=1
 pkgdesc=The Cinnamon Settings daemon
 arch=('i686' 'x86_64')
@@ -15,7 +15,7 @@
 install=cinnamon-settings-daemon.install
 url=https://github.com/linuxmint/cinnamon-settings-daemon;
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cinnamon-settings-daemon/archive/${pkgver}.tar.gz;)
-sha256sums=('e36522e04b6309e24c486caa9ee1eb2f3830bdf52aede5258402ec1e81499256')
+sha256sums=('c5de5443136142b1a620142bc6aab5a2b72f001a52f23f9f74ef99f1ebc9180b')
 
 prepare() {
   cd $pkgname-$pkgver


[arch-commits] Commit in cinnamon-settings-daemon/repos (8 files)

2014-11-08 Thread Alexandre Filgueira
Date: Saturday, November 8, 2014 @ 18:39:16
  Author: faidoc
Revision: 122261

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

Added:
  cinnamon-settings-daemon/repos/community-i686/PKGBUILD
(from rev 122260, cinnamon-settings-daemon/trunk/PKGBUILD)
  cinnamon-settings-daemon/repos/community-i686/cinnamon-settings-daemon.install
(from rev 122260, 
cinnamon-settings-daemon/trunk/cinnamon-settings-daemon.install)
  cinnamon-settings-daemon/repos/community-x86_64/PKGBUILD
(from rev 122260, cinnamon-settings-daemon/trunk/PKGBUILD)
  
cinnamon-settings-daemon/repos/community-x86_64/cinnamon-settings-daemon.install
(from rev 122260, 
cinnamon-settings-daemon/trunk/cinnamon-settings-daemon.install)
Deleted:
  cinnamon-settings-daemon/repos/community-i686/PKGBUILD
  cinnamon-settings-daemon/repos/community-i686/cinnamon-settings-daemon.install
  cinnamon-settings-daemon/repos/community-x86_64/PKGBUILD
  
cinnamon-settings-daemon/repos/community-x86_64/cinnamon-settings-daemon.install

---+
 /PKGBUILD |   80 
 /cinnamon-settings-daemon.install |   24 ++
 community-i686/PKGBUILD   |   40 --
 community-i686/cinnamon-settings-daemon.install   |   12 ---
 community-x86_64/PKGBUILD |   40 --
 community-x86_64/cinnamon-settings-daemon.install |   12 ---
 6 files changed, 104 insertions(+), 104 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-11-08 17:38:25 UTC (rev 122260)
+++ community-i686/PKGBUILD 2014-11-08 17:39:16 UTC (rev 122261)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Alexandre Filgueira (faidoc) alexfilgue...@antergos.com
-# Contributor: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-
-pkgname=cinnamon-settings-daemon
-pkgver=2.4.1
-pkgrel=1
-pkgdesc=The Cinnamon Settings daemon
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('cinnamon-desktop' 'libibus' 'libcanberra-pulse' 'librsvg' 'nss'
- 'pulseaudio-alsa' 'upower' 'libnotify' 'libgnomekbd' 'libwacom')
-makedepends=('intltool' 'docbook-xsl' 'gnome-common' 'xf86-input-wacom')
-options=('!emptydirs')
-install=cinnamon-settings-daemon.install
-url=https://github.com/linuxmint/cinnamon-settings-daemon;
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cinnamon-settings-daemon/archive/${pkgver}.tar.gz;)
-sha256sums=('e36522e04b6309e24c486caa9ee1eb2f3830bdf52aede5258402ec1e81499256')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-}
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --libexecdir=/usr/lib/$pkgname --disable-static --enable-systemd
-
-  #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
-}

Copied: cinnamon-settings-daemon/repos/community-i686/PKGBUILD (from rev 
122260, cinnamon-settings-daemon/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-11-08 17:39:16 UTC (rev 122261)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Alexandre Filgueira (faidoc) alexfilgue...@antergos.com
+# Contributor: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+
+pkgname=cinnamon-settings-daemon
+pkgver=2.4.2
+pkgrel=1
+pkgdesc=The Cinnamon Settings daemon
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('cinnamon-desktop' 'libibus' 'libcanberra-pulse' 'librsvg' 'nss'
+ 'pulseaudio-alsa' 'upower' 'libnotify' 'libgnomekbd' 'libwacom')
+makedepends=('intltool' 'docbook-xsl' 'gnome-common' 'xf86-input-wacom')
+options=('!emptydirs')
+install=cinnamon-settings-daemon.install
+url=https://github.com/linuxmint/cinnamon-settings-daemon;
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/linuxmint/cinnamon-settings-daemon/archive/${pkgver}.tar.gz;)
+sha256sums=('c5de5443136142b1a620142bc6aab5a2b72f001a52f23f9f74ef99f1ebc9180b')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --libexecdir=/usr/lib/$pkgname --disable-static --enable-systemd
+
+  #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/cinnamon-settings-daemon.install
===
--- community-i686/cinnamon-settings-daemon.install 2014-11-08 17:38:25 UTC 
(rev 122260)
+++ community-i686/cinnamon-settings-daemon.install 2014-11-08 17:39:16 UTC 
(rev 122261)
@@ -1,12 +0,0 @@

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

2014-11-08 Thread Alexandre Filgueira
Date: Saturday, November 8, 2014 @ 18:40:26
  Author: faidoc
Revision: 122262

upgpkg: cinnamon 2.4.1-1

Modified:
  cinnamon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-08 17:39:16 UTC (rev 122261)
+++ PKGBUILD2014-11-08 17:40:26 UTC (rev 122262)
@@ -5,7 +5,7 @@
 # Contributor: CReimer
 
 pkgname=cinnamon
-pkgver=2.4.0
+pkgver=2.4.1
 pkgrel=1
 pkgdesc=Linux desktop which provides advanced innovative features and a 
traditional user experience
 arch=('i686' 'x86_64')
@@ -24,7 +24,7 @@
 
source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/Cinnamon/archive/$pkgver.tar.gz;
 set_wheel.patch
 gnome-3.14.patch)
-sha256sums=('8c995f60e28ac0efb3ee478c53425679f76b8d384a8d66d73dd3571f42d9f728'
+sha256sums=('84f1adc6ce39ec3374c0b641821cb2c50287fc2c8692b5200a6ba3f0d1934f31'
 '3c4c7bb65d9e3b7d5569a14a45ebf08d2326250869645511dfa18d87b8eaf444'
 'da763a88b4ee2e889afffd189b877708ca34b704fe7e9b62c0cc2bd970564058')
 


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

2014-11-08 Thread Alexandre Filgueira
Date: Saturday, November 8, 2014 @ 18:41:42
  Author: faidoc
Revision: 122263

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

Added:
  cinnamon/repos/community-i686/PKGBUILD
(from rev 122262, cinnamon/trunk/PKGBUILD)
  cinnamon/repos/community-i686/cinnamon.install
(from rev 122262, cinnamon/trunk/cinnamon.install)
  cinnamon/repos/community-i686/gnome-3.14.patch
(from rev 122262, cinnamon/trunk/gnome-3.14.patch)
  cinnamon/repos/community-i686/set_wheel.patch
(from rev 122262, cinnamon/trunk/set_wheel.patch)
  cinnamon/repos/community-x86_64/PKGBUILD
(from rev 122262, cinnamon/trunk/PKGBUILD)
  cinnamon/repos/community-x86_64/cinnamon.install
(from rev 122262, cinnamon/trunk/cinnamon.install)
  cinnamon/repos/community-x86_64/gnome-3.14.patch
(from rev 122262, cinnamon/trunk/gnome-3.14.patch)
  cinnamon/repos/community-x86_64/set_wheel.patch
(from rev 122262, cinnamon/trunk/set_wheel.patch)
Deleted:
  cinnamon/repos/community-i686/PKGBUILD
  cinnamon/repos/community-i686/cinnamon.install
  cinnamon/repos/community-i686/gnome-3.14.patch
  cinnamon/repos/community-i686/set_wheel.patch
  cinnamon/repos/community-x86_64/PKGBUILD
  cinnamon/repos/community-x86_64/cinnamon.install
  cinnamon/repos/community-x86_64/gnome-3.14.patch
  cinnamon/repos/community-x86_64/set_wheel.patch

---+
 /PKGBUILD |  156 
 /cinnamon.install |   24 +
 /gnome-3.14.patch |   50 +++
 /set_wheel.patch  |  106 
 community-i686/PKGBUILD   |   78 --
 community-i686/cinnamon.install   |   12 --
 community-i686/gnome-3.14.patch   |   25 -
 community-i686/set_wheel.patch|   53 
 community-x86_64/PKGBUILD |   78 --
 community-x86_64/cinnamon.install |   12 --
 community-x86_64/gnome-3.14.patch |   25 -
 community-x86_64/set_wheel.patch  |   53 
 12 files changed, 336 insertions(+), 336 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-11-08 17:40:26 UTC (rev 122262)
+++ community-i686/PKGBUILD 2014-11-08 17:41:42 UTC (rev 122263)
@@ -1,78 +0,0 @@
-# $Id$
-# Maintainer: Alexandre Filgueira alexfilgue...@cinnarch.com
-# Contributor: M0Rf30
-# Contributor: unifiedlinux
-# Contributor: CReimer
-
-pkgname=cinnamon
-pkgver=2.4.0
-pkgrel=1
-pkgdesc=Linux desktop which provides advanced innovative features and a 
traditional user experience
-arch=('i686' 'x86_64')
-url=http://cinnamon.linuxmint.com/;
-license=('GPL2')
-depends=('accountsservice' 'caribou' 'cinnamon-settings-daemon' 
'cinnamon-session'
- 'cinnamon-translations' 'cjs' 'clutter-gtk' 'gnome-backgrounds' 
'gconf'
- 'gnome-themes-standard' 'gstreamer' 'libgnome-keyring' 'librsvg'
- 'networkmanager' 'muffin' 'python2-cairo' 'python2-dbus' 
'python2-pillow'
- 'python2-pam' 'python2-pexpect' 'python2-pyinotify' 'python2-lxml' 
'webkitgtk'
- 'cinnamon-control-center' 'cinnamon-screensaver' 'cinnamon-menus' 
'libgnomekbd'
- 'network-manager-applet' 'nemo' 'polkit-gnome')
-makedepends=('gnome-common' 'intltool')
-options=('!emptydirs')
-install=${pkgname}.install
-source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/Cinnamon/archive/$pkgver.tar.gz;
-set_wheel.patch
-gnome-3.14.patch)
-sha256sums=('8c995f60e28ac0efb3ee478c53425679f76b8d384a8d66d73dd3571f42d9f728'
-'3c4c7bb65d9e3b7d5569a14a45ebf08d2326250869645511dfa18d87b8eaf444'
-'da763a88b4ee2e889afffd189b877708ca34b704fe7e9b62c0cc2bd970564058')
-
-prepare() {
-  cd ${srcdir}/Cinnamon*
-
-  # Python2 fix
-  sed -i 's:/usr/bin/python :/usr/bin/python2 :' 
files/usr/bin/cinnamon-menu-editor
-  find -type f | xargs sed -i 's@^#!.*python$@#!/usr/bin/python2@'
-
-  # Use wheel group instread of sudo
-  patch -Np1 -i ../set_wheel.patch
-
-  # Some fixes for GNOME 3.14
-  patch -Np1 -i ../gnome-3.14.patch
-
-  # Add polkit agent to required components
-  sed -i 
's/RequiredComponents=\(.*\)$/RequiredComponents=\1polkit-gnome-authentication-agent-1;/'
 files/usr/share/cinnamon-session/sessions/cinnamon*.session
-
-  # Fix for the python2 PAM module  
-  sed -i 's:import PAM:import pam:' 
files/usr/lib/cinnamon-settings/modules/cs_user.py
-
-  # Use pkexec instead of gksu
-  sed -i 's/gksu/pkexec/' files/usr/bin/cinnamon-settings-users
-
-  # Check for the cc-panel path, not for the unneeded binary
-  sed -i 
's|/usr/bin/cinnamon-control-center|/usr/lib/cinnamon-control-center-1/panels|' 
files/usr/bin/cinnamon-settings
-
-  # Cinnamon has no upstream backgrounds, use GNOME backgrounds instead
-  sed -i 
's|/usr/share/cinnamon-background-properties|/usr/share/gnome-background-properties|'
 \
-

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

2014-11-08 Thread Bartłomiej Piotrowski
Date: Saturday, November 8, 2014 @ 18:44:33
  Author: bpiotrowski
Revision: 225761

upgpkg: texlive-bin 2014.34260-3

rebuild against poppler 0.28.1

Modified:
  texlive-bin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-08 17:33:48 UTC (rev 225760)
+++ PKGBUILD2014-11-08 17:44:33 UTC (rev 225761)
@@ -4,7 +4,7 @@
 
 pkgname=texlive-bin
 pkgver=2014.34260
-pkgrel=2
+pkgrel=3
 _biber_ver=1.9 # for biblatex 2.9 only.
 pkgdesc=TeX Live binaries
 license=('GPL')


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

2014-11-08 Thread Bartłomiej Piotrowski
Date: Saturday, November 8, 2014 @ 18:44:45
  Author: bpiotrowski
Revision: 225762

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

Added:
  texlive-bin/repos/staging-i686/
  texlive-bin/repos/staging-i686/PKGBUILD
(from rev 225761, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/staging-i686/fix-fontforge-encoding.patch
(from rev 225761, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/staging-i686/texlive.install
(from rev 225761, texlive-bin/trunk/texlive.install)
  texlive-bin/repos/staging-x86_64/
  texlive-bin/repos/staging-x86_64/PKGBUILD
(from rev 225761, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/staging-x86_64/fix-fontforge-encoding.patch
(from rev 225761, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/staging-x86_64/texlive.install
(from rev 225761, texlive-bin/trunk/texlive.install)

-+
 staging-i686/PKGBUILD   |  329 ++
 staging-i686/fix-fontforge-encoding.patch   |   12 
 staging-i686/texlive.install|   49 +++
 staging-x86_64/PKGBUILD |  329 ++
 staging-x86_64/fix-fontforge-encoding.patch |   12 
 staging-x86_64/texlive.install  |   49 +++
 6 files changed, 780 insertions(+)

Copied: texlive-bin/repos/staging-i686/PKGBUILD (from rev 225761, 
texlive-bin/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2014-11-08 17:44:45 UTC (rev 225762)
@@ -0,0 +1,329 @@
+# $Id$
+# Maintainer: Rémy Oudompheng r...@archlinux.org
+# Contributor: francois francois.archlinux.org
+
+pkgname=texlive-bin
+pkgver=2014.34260
+pkgrel=3
+_biber_ver=1.9 # for biblatex 2.9 only.
+pkgdesc=TeX Live binaries
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('cairo' 'pixman' 'graphite' 't1lib' 'gd' 'poppler'
+ 'libsigsegv' 'zziplib' 'libpng' 'libjpeg' 'freetype2'
+ 'icu' 'harfbuzz' 'harfbuzz-icu')
+makedepends=('perl' 'clisp' 'ffcall')
+optdepends=('ed: for texconfig')
+provides=('lcdf-typetools' 'kpathsea' 'xindy' 'pdfjam')
+conflicts=('pdfjam')
+options=('!strip')
+url='http://tug.org/texlive/'
+install=texlive.install
+source=('fix-fontforge-encoding.patch'
+
http://mirrors.kernel.org/archlinux/other/texlive/texlive-bin-source-${pkgver}.tar.xz;
+
http://downloads.sourceforge.net/project/biblatex-biber/biblatex-biber/${_biber_ver}/binaries/Linux/biber-linux_x86_64.tar.gz;
+
http://downloads.sourceforge.net/project/biblatex-biber/biblatex-biber/${_biber_ver}/binaries/Linux/biber-linux_x86_32.tar.gz;
+)
+noextract=(biber-linux_x86_64.tar.gz
+   biber-linux_x86_32.tar.gz)
+md5sums=('bfb9716aa00c86c08cd31e5b32edeb98'
+ 'b6fe9a6e6b3df0d69e804b87370039ef'
+ '137839688478710ded88909088dee970'
+ 'e1af258c7b7fa95d8299696aa3552eb3')
+
+prepare() {
+cd source
+true
+}
+
+build() {
+   cd $srcdir
+
+   if [ ${CARCH} = x86_64 ]; then
+ export CFLAGS=${CFLAGS} -fPIC
+ export CXXFLAGS=${CXXFLAGS} -fPIC
+ tar xf biber-linux_x86_64.tar.gz 
+   else
+ tar xf biber-linux_x86_32.tar.gz
+   fi
+
+   # this patch removes spurious error message with locale xx_YY.utf8
+   #patch -Np0 -i fix-fontforge-encoding.patch
+   # t4ht expects to be un /usr/share/texmf/bin/t4ht (FS#27251)
+   sed -i s/SELFAUTOPARENT/TEXMFROOT/ source/texk/tex4htk/t4ht.c
+   #
+   ### configure
+   cd source
+   ## prevent compiling Xdvi with libXp
+   sed -i~ 's|-lXp ||' texk/xdvik/configure
+   test ! -d Work  mkdir Work
+   cd Work
+   echo -- Initial configuration...
+   # we use temporary prefix to avoid messing the existing
+   # $pkgdir/usr/share/texmf tree
+   # system zlib is disabled due to issues with zlib 1.2.6 (FS#28221)
+   ../configure --prefix=/usr -C \
+ --sysconfdir=/etc \
+ --datarootdir=/usr/share \
+ --datadir=/usr/share \
+ --mandir=/usr/share/man \
+ --disable-native-texlive-build \
+ --with-banner-add=/Arch Linux \
+ --disable-multiplatform \
+ --disable-dialog \
+ --disable-psutils \
+ --disable-t1utils \
+ --disable-bibtexu \
+ --disable-xz \
+ --enable-shared \
+ --disable-static \
+ --with-system-zlib \
+ --with-system-zziplib \
+ --with-system-pnglib \
+ --with-system-ncurses \
+ --with-system-t1lib \
+ --with-system-gd \
+ --with-system-poppler \
+ --with-system-xpdf \
+ --with-system-freetype2 \
+ --with-system-pixman \
+ --with-system-cairo \
+ --with-system-harfbuzz \
+ --with-system-graphite \
+ --with-system-icu \
+ --with-freetype2-libdir=/usr/lib \
+ --with-freetype2-include=/usr/include/freetype2 \
+ --with-xdvi-x-toolkit=xaw \
+ --disable-dump-share \
+ --disable-aleph \
+ 

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

2014-11-08 Thread Laurent Carlier
Date: Saturday, November 8, 2014 @ 19:14:00
  Author: lcarlier
Revision: 225763

upgpkg: mesa 10.3.3-1

upstream update 10.3.3

Modified:
  mesa/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-08 17:44:45 UTC (rev 225762)
+++ PKGBUILD2014-11-08 18:14:00 UTC (rev 225763)
@@ -4,7 +4,7 @@
 
 pkgbase=mesa
 pkgname=('opencl-mesa' 'mesa-dri' 'mesa-vdpau' 'mesa' 'mesa-libgl')
-pkgver=10.3.2
+pkgver=10.3.3
 pkgrel=1
 arch=('i686' 'x86_64')
 makedepends=('python2' 'libxml2' 'libx11' 'glproto' 'libdrm' 'dri2proto' 
'dri3proto' 'presentproto' 
@@ -15,7 +15,7 @@
 
source=(ftp://ftp.freedesktop.org/pub/mesa/${pkgver}/MesaLib-${pkgver}.tar.bz2{,.sig}
 
#source=(ftp://ftp.freedesktop.org/pub/mesa/10.3/MesaLib-${pkgver}.tar.bz2{,.sig}
 LICENSE)
-sha256sums=('e9849bcb9aa9acd98a753d6d46d2e7d7238d3367036e11357a60efd16de8bea3'
+sha256sums=('0e4eee4a2ddf86456eed2fc44da367f95471f74249636710491e85cc256c4753'
 'SKIP'
 '7fdc119cf53c8ca65396ea73f6d10af641ba41ea1dd2bd44a824726e01c8b3f2')
 


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

2014-11-08 Thread Laurent Carlier
Date: Saturday, November 8, 2014 @ 19:14:12
  Author: lcarlier
Revision: 225764

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

Added:
  mesa/repos/extra-i686/LICENSE
(from rev 225763, mesa/trunk/LICENSE)
  mesa/repos/extra-i686/PKGBUILD
(from rev 225763, mesa/trunk/PKGBUILD)
  mesa/repos/extra-x86_64/LICENSE
(from rev 225763, mesa/trunk/LICENSE)
  mesa/repos/extra-x86_64/PKGBUILD
(from rev 225763, mesa/trunk/PKGBUILD)
Deleted:
  mesa/repos/extra-i686/LICENSE
  mesa/repos/extra-i686/PKGBUILD
  mesa/repos/extra-x86_64/LICENSE
  mesa/repos/extra-x86_64/PKGBUILD

---+
 /LICENSE  |  164 ++
 /PKGBUILD |  348 
 extra-i686/LICENSE|   82 ---
 extra-i686/PKGBUILD   |  174 
 extra-x86_64/LICENSE  |   82 ---
 extra-x86_64/PKGBUILD |  174 
 6 files changed, 512 insertions(+), 512 deletions(-)

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


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

2014-11-08 Thread Laurent Carlier
Date: Saturday, November 8, 2014 @ 19:23:55
  Author: lcarlier
Revision: 122265

upgpkg: lib32-mesa 10.3.3-1

upstream update 10.3.3

Modified:
  lib32-mesa/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-08 18:06:13 UTC (rev 122264)
+++ PKGBUILD2014-11-08 18:23:55 UTC (rev 122265)
@@ -4,7 +4,7 @@
 
 pkgbase=lib32-mesa
 pkgname=('lib32-mesa-dri' 'lib32-mesa-vdpau' 'lib32-mesa' 'lib32-mesa-libgl')
-pkgver=10.3.2
+pkgver=10.3.3
 pkgrel=1
 arch=('x86_64')
 makedepends=('python2' 'lib32-libxml2' 'lib32-expat' 'lib32-libx11' 'glproto' 
'lib32-libdrm' 'dri2proto' 'dri3proto' 'presentproto'
@@ -15,7 +15,7 @@
 
source=(ftp://ftp.freedesktop.org/pub/mesa/${pkgver}/MesaLib-${pkgver}.tar.bz2{,.sig}
 
#source=(ftp://ftp.freedesktop.org/pub/mesa/10.3/MesaLib-${pkgver}.tar.bz2{,.sig}
LICENSE)
-sha256sums=('e9849bcb9aa9acd98a753d6d46d2e7d7238d3367036e11357a60efd16de8bea3'
+sha256sums=('0e4eee4a2ddf86456eed2fc44da367f95471f74249636710491e85cc256c4753'
 'SKIP'
 '7fdc119cf53c8ca65396ea73f6d10af641ba41ea1dd2bd44a824726e01c8b3f2')
 


[arch-commits] Commit in lib32-mesa/repos/multilib-x86_64 (4 files)

2014-11-08 Thread Laurent Carlier
Date: Saturday, November 8, 2014 @ 19:24:03
  Author: lcarlier
Revision: 122266

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-mesa/repos/multilib-x86_64/LICENSE
(from rev 122265, lib32-mesa/trunk/LICENSE)
  lib32-mesa/repos/multilib-x86_64/PKGBUILD
(from rev 122265, lib32-mesa/trunk/PKGBUILD)
Deleted:
  lib32-mesa/repos/multilib-x86_64/LICENSE
  lib32-mesa/repos/multilib-x86_64/PKGBUILD

--+
 LICENSE  |  164 
 PKGBUILD |  312 ++---
 2 files changed, 238 insertions(+), 238 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2014-11-08 18:23:55 UTC (rev 122265)
+++ LICENSE 2014-11-08 18:24:03 UTC (rev 122266)
@@ -1,82 +0,0 @@
-Disclaimer
-
-Mesa is a 3-D graphics library with an API which is very similar to
-that of OpenGL*
-To the extent that Mesa utilizes the OpenGL command syntax or state
-machine, it is being used with authorization from Silicon Graphics,
-Inc.(SGI). However, the author does not possess an OpenGL license
-from SGI, and makes no claim that Mesa is in any way a compatible
-replacement for OpenGL or associated with SGI. Those who want a
-licensed implementation of OpenGL should contact a licensed
-vendor.
-
-Please do not refer to the library as MesaGL (for legal
-reasons). It's just Mesa or The Mesa 3-D graphics
-library
-
-* OpenGL is a trademark of Silicon Graphics Incorporated.
-
-License / Copyright Information
-
-The Mesa distribution consists of several components.  Different copyrights
-and licenses apply to different components.  For example, GLUT is copyrighted
-by Mark Kilgard, some demo programs are copyrighted by SGI, some of the Mesa
-device drivers are copyrighted by their authors.  See below for a list of
-Mesa's main components and the license for each.
-
-The core Mesa library is licensed according to the terms of the MIT license.
-This allows integration with the XFree86, Xorg and DRI projects.
-
-The default Mesa license is as follows:
-
-Copyright (C) 1999-2007  Brian Paul   All Rights Reserved.
-
-Permission is hereby granted, free of charge, to any person obtaining a
-copy of this software and associated documentation files (the Software),
-to deal in the Software without restriction, including without limitation
-the rights to use, copy, modify, merge, publish, distribute, sublicense,
-and/or sell copies of the Software, and to permit persons to whom the
-Software is furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included
-in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS
-OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
-BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
-AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
-CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-Attention, Contributors
-
-When contributing to the Mesa project you must agree to the licensing terms
-of the component to which you're contributing.
-The following section lists the primary components of the Mesa distribution
-and their respective licenses.
-
-
-Mesa Component Licenses
-
-Component Location   Primary Author  License
-
-Main Mesa codesrc/mesa/  Brian Paul  Mesa (MIT)
-
-Device driverssrc/mesa/drivers/* See drivers See drivers
-
-Ext headers   include/GL/glext.h SGI SGI Free B
-  include/GL/glxext.h
-
-GLUT  src/glut/  Mark KilgardMark's copyright
-
-Mesa GLU library  src/glu/mesa/  Brian Paul  GNU-LGPL
-
-SGI GLU library   src/glu/sgi/   SGI SGI Free B
-
-demo programs progs/demos/   various see source files
-
-X demos   progs/xdemos/  Brian Paul  see source files
-
-SGI demos progs/samples/ SGI SGI copyright
-
-RedBook demos progs/redbook/ SGI SGI copyright

Copied: lib32-mesa/repos/multilib-x86_64/LICENSE (from rev 122265, 
lib32-mesa/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2014-11-08 18:24:03 UTC (rev 122266)
@@ -0,0 +1,82 @@
+Disclaimer
+
+Mesa is a 3-D graphics library with an API which is very similar to
+that of OpenGL*
+To the extent that Mesa utilizes the OpenGL command syntax or state
+machine, it is being used with authorization from Silicon Graphics,
+Inc.(SGI). However, the author does not possess an 

[arch-commits] Commit in android-tools/trunk (PKGBUILD adbMakefile fastbootMakefile)

2014-11-08 Thread Anatol Pomozov
Date: Saturday, November 8, 2014 @ 19:52:51
  Author: anatolik
Revision: 122267

upgpkg: android-tools 5.0.0_r2-1

Modified:
  android-tools/trunk/PKGBUILD
  android-tools/trunk/adbMakefile
  android-tools/trunk/fastbootMakefile

--+
 PKGBUILD |   22 +++---
 adbMakefile  |2 +-
 fastbootMakefile |   15 ++-
 3 files changed, 30 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-11-08 18:24:03 UTC (rev 122266)
+++ PKGBUILD2014-11-08 18:52:51 UTC (rev 122267)
@@ -4,7 +4,7 @@
 # Contributor: Alucryd alucryd at gmail dot com
 
 pkgname=android-tools
-pkgver=4.4.4_r2.0.1
+pkgver=5.0.0_r2
 pkgrel=1
 pkgdesc='Android platform tools'
 arch=(i686 x86_64)
@@ -15,16 +15,24 @@
 
source=(git+https://android.googlesource.com/platform/system/core#tag=android-$pkgver
 
git+https://android.googlesource.com/platform/system/extras#tag=android-$pkgver
 
git+https://android.googlesource.com/platform/external/libselinux#tag=android-$pkgver
+
git+https://android.googlesource.com/platform/external/f2fs-tools#tag=android-$pkgver
 adbMakefile
 fastbootMakefile
 bash_completion) # Bash completion file was taken from 
https://github.com/mbrubeck/android-completion
-md5sums=('SKIP'
- 'SKIP'
- 'SKIP'
- '887d868e544330ef850334961685cab3'
- 'cd1a1a9d16b523119245bfe17120d73b'
- '421f8640d7b4ec156f1d37167f3e7a45')
+sha1sums=('SKIP'
+  'SKIP'
+  'SKIP'
+  'SKIP'
+  'cc3d5bbf7f38574bfe597555b39d983db87ec37f'
+  '5a66a188e35ec09393f5bd85d5b63fe7a7e38c0f'
+  'd1b208c7c2d8d0053e9937653cca22d09b6d')
 
+
+prepare() {
+  # another way to fix the compilation error is to add #include stddef.h
+  sed -e 's/f2fs_sparse_file = NULL/f2fs_sparse_file = 0/g' -i 
extras/f2fs_utils/f2fs_utils.c 
+}
+
 build() {
   make -C core/adb -f $srcdir/adbMakefile
   make -C core/fastboot -f $srcdir/fastbootMakefile

Modified: adbMakefile
===
--- adbMakefile 2014-11-08 18:24:03 UTC (rev 122266)
+++ adbMakefile 2014-11-08 18:52:51 UTC (rev 122267)
@@ -15,7 +15,6 @@
 SRCS+= usb_vendors.c
 
 VPATH+= ../libcutils
-SRCS+= list.c
 SRCS+= load_file.c
 SRCS+= socket_inaddr_any_server.c
 SRCS+= socket_local_client.c
@@ -30,6 +29,7 @@
 
 CPPFLAGS+= -DADB_HOST=1
 CPPFLAGS+= -DHAVE_FORKEXEC=1
+CPPFLAGS+= -DHAVE_OFF64_T=1
 CPPFLAGS+= -I.
 CPPFLAGS+= -I../include
 

Modified: fastbootMakefile
===
--- fastbootMakefile2014-11-08 18:24:03 UTC (rev 122266)
+++ fastbootMakefile2014-11-08 18:52:51 UTC (rev 122267)
@@ -4,6 +4,8 @@
 SRCS+=protocol.c
 SRCS+=usb_linux.c
 SRCS+=util_linux.c
+SRCS+=util.c
+SRCS+=fs.c
 
 VPATH+= ../libsparse
 SRCS+= backed_block.c
@@ -22,6 +24,7 @@
 SRCS+= contents.c
 SRCS+= crc16.c
 SRCS+= ext4_utils.c
+SRCS+= ext4_sb.c
 SRCS+= extent.c
 SRCS+= indirect.c
 SRCS+= make_ext4fs.c
@@ -29,6 +32,11 @@
 SRCS+= uuid.c
 SRCS+= wipe.c
 
+VPATH+= ../../extras/f2fs_utils
+SRCS+= f2fs_utils.c
+SRCS+= f2fs_dlutils.c
+SRCS+= f2fs_ioutils.c
+
 VPATH+= ../../libselinux/src
 SRCS+= callbacks.c
 SRCS+= check_context.c
@@ -42,9 +50,14 @@
 CPPFLAGS+= -I../libsparse/include
 CPPFLAGS+= -I../mkbootimg
 CPPFLAGS+= -I../../extras/ext4_utils
+CPPFLAGS+= -I../../extras/f2fs_utils/
 CPPFLAGS+= -I../../libselinux/include
+CPPFLAGS+= -I../../f2fs-tools/include
+CPPFLAGS+= -I../../f2fs-tools/mkfs
+CPPFLAGS+= -DHAVE_OFF64_T=1
+CPPFLAGS+= -std=gnu99
 
-LIBS+= -lz
+LIBS+= -lz -ldl
 
 OBJS= $(SRCS:.c=.o)