[arch-commits] Commit in qt/trunk (PKGBUILD improve-cups-support.patch)

2012-03-08 Thread Andrea Scarpino
Date: Thursday, March 8, 2012 @ 03:51:48
  Author: andrea
Revision: 152663

Apply non upstream patch to improve cups support in Qt/Kde apps (FS#28381)

Added:
  qt/trunk/improve-cups-support.patch
Modified:
  qt/trunk/PKGBUILD

+
 PKGBUILD   |   11 -
 improve-cups-support.patch |   84 +++
 2 files changed, 92 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-03-08 01:36:52 UTC (rev 152662)
+++ PKGBUILD2012-03-08 08:51:48 UTC (rev 152663)
@@ -5,7 +5,7 @@
 pkgbase=qt
 pkgname=('qt' 'qt-private-headers')
 pkgver=4.8.0
-pkgrel=5
+pkgrel=6
 arch=('i686' 'x86_64')
 url='http://qt-project.org/'
 license=('GPL3' 'LGPL')
@@ -20,7 +20,8 @@
 'qtconfig.desktop'
 'fix-qgraphicsscene-regression.patch'
 'improved-filter-event.patch'
-'qurl-backward-compatibility.patch')
+'qurl-backward-compatibility.patch'
+'improve-cups-support')
 md5sums=('e8a5fdbeba2927c948d9f477a6abe904'
  'fc211414130ab2764132e7370f8e5caa'
  '85179f5e0437514f8639957e1d8baf62'
@@ -28,7 +29,8 @@
  '6b771c8a81dd90b45e8a79afa0e5bbfd'
  'c2e91fc028250a590e76effe234468e2'
  '444ebeb716d7c7379835efb8aa88e6c8'
- '7bc255a36733d0fbc80c1902ade4beca')
+ '7bc255a36733d0fbc80c1902ade4beca'
+ 'c439c7731c25387352d8453ca7574971')
 
 build() {
   cd ${srcdir}/${_pkgfqn}
@@ -39,6 +41,9 @@
   patch -p1 -i ${srcdir}/improved-filter-event.patch
   patch -p1 -i ${srcdir}/qurl-backward-compatibility.patch
 
+  # (FS#28381) (KDEBUG#180051)
+  patch -p1 -i ${srcdir}/improve-cups-support.patch
+
   export QT4DIR=${srcdir}/${_pkgfqn}
   export LD_LIBRARY_PATH=${QT4DIR}/lib:${LD_LIBRARY_PATH}
 

Added: improve-cups-support.patch
===
--- improve-cups-support.patch  (rev 0)
+++ improve-cups-support.patch  2012-03-08 08:51:48 UTC (rev 152663)
@@ -0,0 +1,84 @@
+diff -ur 
qt-everywhere-opensource-src-4.6.2/src/gui/dialogs/qprintdialog_unix.cpp 
qt-everywhere-opensource-src-4.6.2-cups/src/gui/dialogs/qprintdialog_unix.cpp
+--- qt-everywhere-opensource-src-4.6.2/src/gui/dialogs/qprintdialog_unix.cpp   
2010-02-11 16:55:22.0 +0100
 
qt-everywhere-opensource-src-4.6.2-cups/src/gui/dialogs/qprintdialog_unix.cpp   
   2010-02-28 04:34:16.0 +0100
+@@ -569,6 +569,32 @@
+ void QPrintDialogPrivate::selectPrinter(QCUPSSupport *cups)
+ {
+ options.duplex-setEnabled(cups  cups-ppdOption(Duplex));
++
++if (cups) {
++const ppd_option_t* duplex = cups-ppdOption(Duplex);
++if (duplex) {
++// copy default ppd duplex to qt dialog
++if (qstrcmp(duplex-defchoice, DuplexTumble) == 0)
++options.duplexShort-setChecked(true);
++else if (qstrcmp(duplex-defchoice, DuplexNoTumble) == 0)
++options.duplexLong-setChecked(true);
++else
++options.noDuplex-setChecked(true);
++}
++
++if (cups-currentPPD()) {
++// set default color
++if (cups-currentPPD()-color_device)
++options.color-setChecked(true);
++else
++options.grayscale-setChecked(true);
++}
++
++// set collation
++const ppd_option_t *collate = cups-ppdOption(Collate);
++if (collate)
++options.collate-setChecked(qstrcmp(collate-defchoice, 
True)==0);
++}
+ }
+ #endif
+ 
+diff -ur qt-everywhere-opensource-src-4.6.2/src/gui/painting/qprinter.cpp 
qt-everywhere-opensource-src-4.6.2-cups/src/gui/painting/qprinter.cpp
+--- qt-everywhere-opensource-src-4.6.2/src/gui/painting/qprinter.cpp   
2010-02-11 16:55:22.0 +0100
 qt-everywhere-opensource-src-4.6.2-cups/src/gui/painting/qprinter.cpp  
2010-02-28 04:55:15.0 +0100
+@@ -627,6 +627,44 @@
+ d_ptr-paintEngine-type() != QPaintEngine::MacPrinter) {
+ setOutputFormat(QPrinter::PdfFormat);
+ }
++
++#if !defined(QT_NO_CUPS)  !defined(QT_NO_LIBRARY)
++// fill in defaults from ppd file
++QCUPSSupport cups;
++
++int printernum = -1;
++for (int i = 0; i  cups.availablePrintersCount(); i++) {
++if (printerName().toLocal8Bit() == cups.availablePrinters()[i].name)
++printernum = i;
++}
++if (printernum = 0) {
++cups.setCurrentPrinter(printernum);
++
++const ppd_option_t* duplex = cups.ppdOption(Duplex);
++if (duplex) {
++// copy default ppd duplex to qt dialog
++if (qstrcmp(duplex-defchoice, DuplexTumble) == 0)
++setDuplex(DuplexShortSide);
++else if (qstrcmp(duplex-defchoice, DuplexNoTumble) == 0)
++setDuplex(DuplexLongSide);
++else
++setDuplex(DuplexNone);
++}

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

2012-03-08 Thread Andrea Scarpino
Date: Thursday, March 8, 2012 @ 05:06:44
  Author: andrea
Revision: 152664

upgpkg: qt 4.8.0-6

typo

Modified:
  qt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-03-08 08:51:48 UTC (rev 152663)
+++ PKGBUILD2012-03-08 10:06:44 UTC (rev 152664)
@@ -21,7 +21,7 @@
 'fix-qgraphicsscene-regression.patch'
 'improved-filter-event.patch'
 'qurl-backward-compatibility.patch'
-'improve-cups-support')
+'improve-cups-support.patch')
 md5sums=('e8a5fdbeba2927c948d9f477a6abe904'
  'fc211414130ab2764132e7370f8e5caa'
  '85179f5e0437514f8639957e1d8baf62'



[arch-commits] Commit in qt/repos (38 files)

2012-03-08 Thread Andrea Scarpino
Date: Thursday, March 8, 2012 @ 05:07:57
  Author: andrea
Revision: 152665

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

Added:
  qt/repos/extra-i686/PKGBUILD
(from rev 152664, qt/trunk/PKGBUILD)
  qt/repos/extra-i686/assistant.desktop
(from rev 152664, qt/trunk/assistant.desktop)
  qt/repos/extra-i686/designer.desktop
(from rev 152664, qt/trunk/designer.desktop)
  qt/repos/extra-i686/fix-qgraphicsscene-regression.patch
(from rev 152664, qt/trunk/fix-qgraphicsscene-regression.patch)
  qt/repos/extra-i686/improve-cups-support.patch
(from rev 152664, qt/trunk/improve-cups-support.patch)
  qt/repos/extra-i686/improved-filter-event.patch
(from rev 152664, qt/trunk/improved-filter-event.patch)
  qt/repos/extra-i686/linguist.desktop
(from rev 152664, qt/trunk/linguist.desktop)
  qt/repos/extra-i686/qt.install
(from rev 152664, qt/trunk/qt.install)
  qt/repos/extra-i686/qtconfig.desktop
(from rev 152664, qt/trunk/qtconfig.desktop)
  qt/repos/extra-i686/qurl-backward-compatibility.patch
(from rev 152664, qt/trunk/qurl-backward-compatibility.patch)
  qt/repos/extra-x86_64/PKGBUILD
(from rev 152664, qt/trunk/PKGBUILD)
  qt/repos/extra-x86_64/assistant.desktop
(from rev 152664, qt/trunk/assistant.desktop)
  qt/repos/extra-x86_64/designer.desktop
(from rev 152664, qt/trunk/designer.desktop)
  qt/repos/extra-x86_64/fix-qgraphicsscene-regression.patch
(from rev 152664, qt/trunk/fix-qgraphicsscene-regression.patch)
  qt/repos/extra-x86_64/improve-cups-support.patch
(from rev 152664, qt/trunk/improve-cups-support.patch)
  qt/repos/extra-x86_64/improved-filter-event.patch
(from rev 152664, qt/trunk/improved-filter-event.patch)
  qt/repos/extra-x86_64/linguist.desktop
(from rev 152664, qt/trunk/linguist.desktop)
  qt/repos/extra-x86_64/qt.install
(from rev 152664, qt/trunk/qt.install)
  qt/repos/extra-x86_64/qtconfig.desktop
(from rev 152664, qt/trunk/qtconfig.desktop)
  qt/repos/extra-x86_64/qurl-backward-compatibility.patch
(from rev 152664, qt/trunk/qurl-backward-compatibility.patch)
Deleted:
  qt/repos/extra-i686/PKGBUILD
  qt/repos/extra-i686/assistant.desktop
  qt/repos/extra-i686/designer.desktop
  qt/repos/extra-i686/fix-qgraphicsscene-regression.patch
  qt/repos/extra-i686/improved-filter-event.patch
  qt/repos/extra-i686/linguist.desktop
  qt/repos/extra-i686/qt.install
  qt/repos/extra-i686/qtconfig.desktop
  qt/repos/extra-i686/qurl-backward-compatibility.patch
  qt/repos/extra-x86_64/PKGBUILD
  qt/repos/extra-x86_64/assistant.desktop
  qt/repos/extra-x86_64/designer.desktop
  qt/repos/extra-x86_64/fix-qgraphicsscene-regression.patch
  qt/repos/extra-x86_64/improved-filter-event.patch
  qt/repos/extra-x86_64/linguist.desktop
  qt/repos/extra-x86_64/qt.install
  qt/repos/extra-x86_64/qtconfig.desktop
  qt/repos/extra-x86_64/qurl-backward-compatibility.patch

--+
 extra-i686/PKGBUILD  |  281 ++---
 extra-i686/assistant.desktop |   18 -
 extra-i686/designer.desktop  |   22 -
 extra-i686/fix-qgraphicsscene-regression.patch   |  110 
 extra-i686/improve-cups-support.patch|   84 ++
 extra-i686/improved-filter-event.patch   |  196 +++---
 extra-i686/linguist.desktop  |   20 -
 extra-i686/qt.install|   24 -
 extra-i686/qtconfig.desktop  |   20 -
 extra-i686/qurl-backward-compatibility.patch |   26 -
 extra-x86_64/PKGBUILD|  281 ++---
 extra-x86_64/assistant.desktop   |   18 -
 extra-x86_64/designer.desktop|   22 -
 extra-x86_64/fix-qgraphicsscene-regression.patch |  110 
 extra-x86_64/improve-cups-support.patch  |   84 ++
 extra-x86_64/improved-filter-event.patch |  196 +++---
 extra-x86_64/linguist.desktop|   20 -
 extra-x86_64/qt.install  |   24 -
 extra-x86_64/qtconfig.desktop|   20 -
 extra-x86_64/qurl-backward-compatibility.patch   |   26 -
 20 files changed, 890 insertions(+), 712 deletions(-)

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


[arch-commits] Commit in gecko-sharp-2.0/repos (extra-i686)

2012-03-08 Thread Daniel Isenmann
Date: Thursday, March 8, 2012 @ 05:17:54
  Author: daniel
Revision: 152666

db-remove: gecko-sharp-2.0 removed by daniel

Deleted:
  gecko-sharp-2.0/repos/extra-i686/



[arch-commits] Commit in gecko-sharp-2.0/repos (extra-x86_64)

2012-03-08 Thread Daniel Isenmann
Date: Thursday, March 8, 2012 @ 05:18:12
  Author: daniel
Revision: 152667

db-remove: gecko-sharp-2.0 removed by daniel

Deleted:
  gecko-sharp-2.0/repos/extra-x86_64/



[arch-commits] Commit in gif2png/trunk (PKGBUILD gif2png-2.5.5-libpng15.patch)

2012-03-08 Thread Giovanni Scafora
Date: Thursday, March 8, 2012 @ 07:06:31
  Author: giovanni
Revision: 152668

upgpkg: gif2png 2.5.6-1

upstream release

Modified:
  gif2png/trunk/PKGBUILD
Deleted:
  gif2png/trunk/gif2png-2.5.5-libpng15.patch

--+
 PKGBUILD |9 +++--
 gif2png-2.5.5-libpng15.patch |   41 -
 2 files changed, 3 insertions(+), 47 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-03-08 10:18:12 UTC (rev 152667)
+++ PKGBUILD2012-03-08 12:06:31 UTC (rev 152668)
@@ -4,7 +4,7 @@
 # Contributor: Andrew Rose o...@netrux.com
 
 pkgname=gif2png
-pkgver=2.5.5
+pkgver=2.5.6
 pkgrel=1
 pkgdesc=A GIF to PNG image format converter
 arch=('i686' 'x86_64')
@@ -12,16 +12,13 @@
 license=('ZLIB')
 depends=('libpng')
 optdepends=('python2: for using web2png')
-source=(http://www.catb.org/~esr/${pkgname}/${pkgname}-${pkgver}.tar.gz;
-'gif2png-2.5.5-libpng15.patch')
-md5sums=('cfb4c003966866b6069d3707bfb12435'
- '5b3467b97157f9a7978a230b934bc488')
+source=(http://www.catb.org/~esr/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('47f74725311f9293e8a8d8c44ddc08c9')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
 
   sed -i 's#env python#env python2#' web2png
-  patch -Np1 -i ${srcdir}/gif2png-2.5.5-libpng15.patch
 
   ./configure --prefix=/usr \
   --mandir=/usr/share/man

Deleted: gif2png-2.5.5-libpng15.patch
===
--- gif2png-2.5.5-libpng15.patch2012-03-08 10:18:12 UTC (rev 152667)
+++ gif2png-2.5.5-libpng15.patch2012-03-08 12:06:31 UTC (rev 152668)
@@ -1,41 +0,0 @@
 a/gif2png.c2012-01-29 00:02:06.0 +0100
-+++ b/gif2png.c2012-02-06 00:49:14.0 +0100
-@@ -12,6 +12,7 @@
- #include unistd.h   /* for isatty() */
- #include sys/stat.h
- #include utime.h
-+#include zlib.h
- 
- #if !defined(TRUE)
- #define FALSE 0
-@@ -122,8 +123,8 @@
- int colors_used = 0;
- byte remap[MAXCMSIZE];
- int low_prec;
--png_struct *png_ptr = xalloc(sizeof (png_struct));
--png_info *info_ptr = xalloc(sizeof (png_info));
-+png_struct *png_ptr;
-+png_info *info_ptr;
- int p;
- int gray_bitdepth;
- png_color pal_rgb[MAXCMSIZE], *pltep;
-@@ -138,6 +139,19 @@
- png_text software;
- png_text comment;
- 
-+png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
-+if (png_ptr == NULL) {
-+  fprintf(stderr, gif2png: fatal error, out of memory\n);
-+  fprintf(stderr, gif2png: exiting ungracefully\n);
-+  exit(1);
-+}
-+info_ptr = png_create_info_struct(png_ptr);
-+if (info_ptr == NULL) {
-+  fprintf(stderr, gif2png: fatal error, out of memory\n);
-+  fprintf(stderr, gif2png: exiting ungracefully\n);
-+  exit(1);
-+}
-+
- /* these volatile declarations prevent gcc warnings (variable might be
-  *  clobbered by `longjmp' or `vfork') */
- volatile int gray = TRUE;



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

2012-03-08 Thread Giovanni Scafora
Date: Thursday, March 8, 2012 @ 07:06:57
  Author: giovanni
Revision: 152669

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

Added:
  gif2png/repos/extra-i686/PKGBUILD
(from rev 152668, gif2png/trunk/PKGBUILD)
  gif2png/repos/extra-x86_64/PKGBUILD
(from rev 152668, gif2png/trunk/PKGBUILD)
Deleted:
  gif2png/repos/extra-i686/PKGBUILD
  gif2png/repos/extra-i686/gif2png-2.5.5-libpng15.patch
  gif2png/repos/extra-x86_64/PKGBUILD
  gif2png/repos/extra-x86_64/gif2png-2.5.5-libpng15.patch

---+
 extra-i686/PKGBUILD   |   69 +---
 extra-i686/gif2png-2.5.5-libpng15.patch   |   41 
 extra-x86_64/PKGBUILD |   69 +---
 extra-x86_64/gif2png-2.5.5-libpng15.patch |   41 
 4 files changed, 66 insertions(+), 154 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-03-08 12:06:31 UTC (rev 152668)
+++ extra-i686/PKGBUILD 2012-03-08 12:06:57 UTC (rev 152669)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: eric e...@archlinux.org
-# Contributor: Andrew Rose o...@netrux.com
-
-pkgname=gif2png
-pkgver=2.5.5
-pkgrel=1
-pkgdesc=A GIF to PNG image format converter
-arch=('i686' 'x86_64')
-url=http://www.catb.org/~esr/gif2png/;
-license=('ZLIB')
-depends=('libpng')
-optdepends=('python2: for using web2png')
-source=(http://www.catb.org/~esr/${pkgname}/${pkgname}-${pkgver}.tar.gz;
-'gif2png-2.5.5-libpng15.patch')
-md5sums=('cfb4c003966866b6069d3707bfb12435'
- '5b3467b97157f9a7978a230b934bc488')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  sed -i 's#env python#env python2#' web2png
-  patch -Np1 -i ${srcdir}/gif2png-2.5.5-libpng15.patch
-
-  ./configure --prefix=/usr \
-  --mandir=/usr/share/man
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  make DESTDIR=${pkgdir} install
-  install -D -m644 COPYING ${pkgdir}/usr/share/licenses/$pkgname/LICENSE
-}

Copied: gif2png/repos/extra-i686/PKGBUILD (from rev 152668, 
gif2png/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-03-08 12:06:57 UTC (rev 152669)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: eric e...@archlinux.org
+# Contributor: Andrew Rose o...@netrux.com
+
+pkgname=gif2png
+pkgver=2.5.6
+pkgrel=1
+pkgdesc=A GIF to PNG image format converter
+arch=('i686' 'x86_64')
+url=http://www.catb.org/~esr/gif2png/;
+license=('ZLIB')
+depends=('libpng')
+optdepends=('python2: for using web2png')
+source=(http://www.catb.org/~esr/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('47f74725311f9293e8a8d8c44ddc08c9')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  sed -i 's#env python#env python2#' web2png
+
+  ./configure --prefix=/usr \
+  --mandir=/usr/share/man
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+  install -D -m644 COPYING ${pkgdir}/usr/share/licenses/$pkgname/LICENSE
+}

Deleted: extra-i686/gif2png-2.5.5-libpng15.patch
===
--- extra-i686/gif2png-2.5.5-libpng15.patch 2012-03-08 12:06:31 UTC (rev 
152668)
+++ extra-i686/gif2png-2.5.5-libpng15.patch 2012-03-08 12:06:57 UTC (rev 
152669)
@@ -1,41 +0,0 @@
 a/gif2png.c2012-01-29 00:02:06.0 +0100
-+++ b/gif2png.c2012-02-06 00:49:14.0 +0100
-@@ -12,6 +12,7 @@
- #include unistd.h   /* for isatty() */
- #include sys/stat.h
- #include utime.h
-+#include zlib.h
- 
- #if !defined(TRUE)
- #define FALSE 0
-@@ -122,8 +123,8 @@
- int colors_used = 0;
- byte remap[MAXCMSIZE];
- int low_prec;
--png_struct *png_ptr = xalloc(sizeof (png_struct));
--png_info *info_ptr = xalloc(sizeof (png_info));
-+png_struct *png_ptr;
-+png_info *info_ptr;
- int p;
- int gray_bitdepth;
- png_color pal_rgb[MAXCMSIZE], *pltep;
-@@ -138,6 +139,19 @@
- png_text software;
- png_text comment;
- 
-+png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
-+if (png_ptr == NULL) {
-+  fprintf(stderr, gif2png: fatal error, out of memory\n);
-+  fprintf(stderr, gif2png: exiting ungracefully\n);
-+  exit(1);
-+}
-+info_ptr = png_create_info_struct(png_ptr);
-+if (info_ptr == NULL) {
-+  fprintf(stderr, gif2png: fatal error, out of memory\n);
-+  fprintf(stderr, gif2png: exiting ungracefully\n);
-+  exit(1);
-+}
-+
- /* these volatile declarations prevent gcc warnings (variable might be
-  *  clobbered by `longjmp' or `vfork') */
- volatile int gray = TRUE;

Deleted: extra-x86_64/PKGBUILD

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

2012-03-08 Thread Tobias Powalowski
Date: Thursday, March 8, 2012 @ 08:10:48
  Author: tpowa
Revision: 152670

db-move: moved linux from [testing] to [core] (i686)

Added:
  linux/repos/core-i686/PKGBUILD
(from rev 152669, linux/repos/testing-i686/PKGBUILD)
  linux/repos/core-i686/change-default-console-loglevel.patch
(from rev 152669, 
linux/repos/testing-i686/change-default-console-loglevel.patch)
  linux/repos/core-i686/config
(from rev 152669, linux/repos/testing-i686/config)
  linux/repos/core-i686/config.x86_64
(from rev 152669, linux/repos/testing-i686/config.x86_64)
  linux/repos/core-i686/ext4-options.patch
(from rev 152669, linux/repos/testing-i686/ext4-options.patch)
  linux/repos/core-i686/i915-fix-ghost-tv-output.patch
(from rev 152669, linux/repos/testing-i686/i915-fix-ghost-tv-output.patch)
  linux/repos/core-i686/i915-gpu-finish.patch
(from rev 152669, linux/repos/testing-i686/i915-gpu-finish.patch)
  linux/repos/core-i686/linux.install
(from rev 152669, linux/repos/testing-i686/linux.install)
  linux/repos/core-i686/linux.preset
(from rev 152669, linux/repos/testing-i686/linux.preset)
Deleted:
  linux/repos/core-i686/PKGBUILD
  linux/repos/core-i686/change-default-console-loglevel.patch
  linux/repos/core-i686/config
  linux/repos/core-i686/config.x86_64
  linux/repos/core-i686/ext4-options.patch
  linux/repos/core-i686/i915-fix-ghost-tv-output.patch
  linux/repos/core-i686/i915-gpu-finish.patch
  linux/repos/core-i686/linux.install
  linux/repos/core-i686/linux.preset
  linux/repos/testing-i686/

---+
 PKGBUILD  |  606 -
 change-default-console-loglevel.patch |   24 
 config|11758 
 config.x86_64 |11276 +++---
 ext4-options.patch|   98 
 i915-fix-ghost-tv-output.patch|   52 
 i915-gpu-finish.patch |  110 
 linux.install |  124 
 linux.preset  |   28 
 9 files changed, 12038 insertions(+), 12038 deletions(-)

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


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

2012-03-08 Thread Tobias Powalowski
Date: Thursday, March 8, 2012 @ 08:10:50
  Author: tpowa
Revision: 152671

db-move: moved linux from [testing] to [core] (x86_64)

Added:
  linux/repos/core-x86_64/PKGBUILD
(from rev 152669, linux/repos/testing-x86_64/PKGBUILD)
  linux/repos/core-x86_64/change-default-console-loglevel.patch
(from rev 152669, 
linux/repos/testing-x86_64/change-default-console-loglevel.patch)
  linux/repos/core-x86_64/config
(from rev 152669, linux/repos/testing-x86_64/config)
  linux/repos/core-x86_64/config.x86_64
(from rev 152669, linux/repos/testing-x86_64/config.x86_64)
  linux/repos/core-x86_64/ext4-options.patch
(from rev 152669, linux/repos/testing-x86_64/ext4-options.patch)
  linux/repos/core-x86_64/i915-fix-ghost-tv-output.patch
(from rev 152669, linux/repos/testing-x86_64/i915-fix-ghost-tv-output.patch)
  linux/repos/core-x86_64/i915-gpu-finish.patch
(from rev 152669, linux/repos/testing-x86_64/i915-gpu-finish.patch)
  linux/repos/core-x86_64/linux.install
(from rev 152669, linux/repos/testing-x86_64/linux.install)
  linux/repos/core-x86_64/linux.preset
(from rev 152669, linux/repos/testing-x86_64/linux.preset)
Deleted:
  linux/repos/core-x86_64/PKGBUILD
  linux/repos/core-x86_64/change-default-console-loglevel.patch
  linux/repos/core-x86_64/config
  linux/repos/core-x86_64/config.x86_64
  linux/repos/core-x86_64/ext4-options.patch
  linux/repos/core-x86_64/i915-fix-ghost-tv-output.patch
  linux/repos/core-x86_64/i915-gpu-finish.patch
  linux/repos/core-x86_64/linux.install
  linux/repos/core-x86_64/linux.preset
  linux/repos/testing-x86_64/

---+
 PKGBUILD  |  606 -
 change-default-console-loglevel.patch |   24 
 config|11758 
 config.x86_64 |11276 +++---
 ext4-options.patch|   98 
 i915-fix-ghost-tv-output.patch|   52 
 i915-gpu-finish.patch |  110 
 linux.install |  124 
 linux.preset  |   28 
 9 files changed, 12038 insertions(+), 12038 deletions(-)

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


[arch-commits] Commit in fcpci/repos (31 files)

2012-03-08 Thread Tobias Powalowski
Date: Thursday, March 8, 2012 @ 08:11:21
  Author: tpowa
Revision: 152672

db-move: moved fcpci from [testing] to [extra] (i686)

Added:
  fcpci/repos/extra-i686/PKGBUILD
(from rev 152671, fcpci/repos/testing-i686/PKGBUILD)
  fcpci/repos/extra-i686/atomic.patch
(from rev 152671, fcpci/repos/testing-i686/atomic.patch)
  fcpci/repos/extra-i686/fcpci.install
(from rev 152671, fcpci/repos/testing-i686/fcpci.install)
  fcpci/repos/extra-i686/kernel-2.6.19.patch
(from rev 152671, fcpci/repos/testing-i686/kernel-2.6.19.patch)
  fcpci/repos/extra-i686/kernel-2.6.20.patch
(from rev 152671, fcpci/repos/testing-i686/kernel-2.6.20.patch)
  fcpci/repos/extra-i686/kernel-2.6.22.patch
(from rev 152671, fcpci/repos/testing-i686/kernel-2.6.22.patch)
  fcpci/repos/extra-i686/kernel-2.6.24.patch
(from rev 152671, fcpci/repos/testing-i686/kernel-2.6.24.patch)
  fcpci/repos/extra-i686/kernel-2.6.31.patch
(from rev 152671, fcpci/repos/testing-i686/kernel-2.6.31.patch)
  fcpci/repos/extra-i686/kernel-2.6.34.patch
(from rev 152671, fcpci/repos/testing-i686/kernel-2.6.34.patch)
  fcpci/repos/extra-i686/kernel-2.6.39-i686.patch
(from rev 152671, fcpci/repos/testing-i686/kernel-2.6.39-i686.patch)
  fcpci/repos/extra-i686/kernel-2.6.39-x86_64.patch
(from rev 152671, fcpci/repos/testing-i686/kernel-2.6.39-x86_64.patch)
  fcpci/repos/extra-i686/kernel-2.6.39.patch
(from rev 152671, fcpci/repos/testing-i686/kernel-2.6.39.patch)
  fcpci/repos/extra-i686/kernel-3.2.0.patch
(from rev 152671, fcpci/repos/testing-i686/kernel-3.2.0.patch)
  fcpci/repos/extra-i686/string.h
(from rev 152671, fcpci/repos/testing-i686/string.h)
  fcpci/repos/extra-i686/string64.h
(from rev 152671, fcpci/repos/testing-i686/string64.h)
Deleted:
  fcpci/repos/extra-i686/PKGBUILD
  fcpci/repos/extra-i686/atomic.patch
  fcpci/repos/extra-i686/fcpci.install
  fcpci/repos/extra-i686/kernel-2.6.19.patch
  fcpci/repos/extra-i686/kernel-2.6.20.patch
  fcpci/repos/extra-i686/kernel-2.6.22.patch
  fcpci/repos/extra-i686/kernel-2.6.24.patch
  fcpci/repos/extra-i686/kernel-2.6.31.patch
  fcpci/repos/extra-i686/kernel-2.6.34.patch
  fcpci/repos/extra-i686/kernel-2.6.39-i686.patch
  fcpci/repos/extra-i686/kernel-2.6.39-x86_64.patch
  fcpci/repos/extra-i686/kernel-2.6.39.patch
  fcpci/repos/extra-i686/kernel-3.2.0.patch
  fcpci/repos/extra-i686/string.h
  fcpci/repos/extra-i686/string64.h
  fcpci/repos/testing-i686/

+
 PKGBUILD   |  212 -
 atomic.patch   |   36 -
 fcpci.install  |   56 +-
 kernel-2.6.19.patch|   40 -
 kernel-2.6.20.patch|  110 ++--
 kernel-2.6.22.patch|   22 
 kernel-2.6.24.patch|   28 -
 kernel-2.6.31.patch|   22 
 kernel-2.6.34.patch|  340 +++---
 kernel-2.6.39-i686.patch   |   22 
 kernel-2.6.39-x86_64.patch |   22 
 kernel-2.6.39.patch|   44 -
 kernel-3.2.0.patch |   20 
 string.h   |  986 +--
 string64.h |  134 ++---
 15 files changed, 1047 insertions(+), 1047 deletions(-)

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


[arch-commits] Commit in fcpci/repos (31 files)

2012-03-08 Thread Tobias Powalowski
Date: Thursday, March 8, 2012 @ 08:11:23
  Author: tpowa
Revision: 152673

db-move: moved fcpci from [testing] to [extra] (x86_64)

Added:
  fcpci/repos/extra-x86_64/PKGBUILD
(from rev 152671, fcpci/repos/testing-x86_64/PKGBUILD)
  fcpci/repos/extra-x86_64/atomic.patch
(from rev 152671, fcpci/repos/testing-x86_64/atomic.patch)
  fcpci/repos/extra-x86_64/fcpci.install
(from rev 152671, fcpci/repos/testing-x86_64/fcpci.install)
  fcpci/repos/extra-x86_64/kernel-2.6.19.patch
(from rev 152671, fcpci/repos/testing-x86_64/kernel-2.6.19.patch)
  fcpci/repos/extra-x86_64/kernel-2.6.20.patch
(from rev 152671, fcpci/repos/testing-x86_64/kernel-2.6.20.patch)
  fcpci/repos/extra-x86_64/kernel-2.6.22.patch
(from rev 152671, fcpci/repos/testing-x86_64/kernel-2.6.22.patch)
  fcpci/repos/extra-x86_64/kernel-2.6.24.patch
(from rev 152671, fcpci/repos/testing-x86_64/kernel-2.6.24.patch)
  fcpci/repos/extra-x86_64/kernel-2.6.31.patch
(from rev 152671, fcpci/repos/testing-x86_64/kernel-2.6.31.patch)
  fcpci/repos/extra-x86_64/kernel-2.6.34.patch
(from rev 152671, fcpci/repos/testing-x86_64/kernel-2.6.34.patch)
  fcpci/repos/extra-x86_64/kernel-2.6.39-i686.patch
(from rev 152671, fcpci/repos/testing-x86_64/kernel-2.6.39-i686.patch)
  fcpci/repos/extra-x86_64/kernel-2.6.39-x86_64.patch
(from rev 152671, fcpci/repos/testing-x86_64/kernel-2.6.39-x86_64.patch)
  fcpci/repos/extra-x86_64/kernel-2.6.39.patch
(from rev 152671, fcpci/repos/testing-x86_64/kernel-2.6.39.patch)
  fcpci/repos/extra-x86_64/kernel-3.2.0.patch
(from rev 152671, fcpci/repos/testing-x86_64/kernel-3.2.0.patch)
  fcpci/repos/extra-x86_64/string.h
(from rev 152671, fcpci/repos/testing-x86_64/string.h)
  fcpci/repos/extra-x86_64/string64.h
(from rev 152671, fcpci/repos/testing-x86_64/string64.h)
Deleted:
  fcpci/repos/extra-x86_64/PKGBUILD
  fcpci/repos/extra-x86_64/atomic.patch
  fcpci/repos/extra-x86_64/fcpci.install
  fcpci/repos/extra-x86_64/kernel-2.6.19.patch
  fcpci/repos/extra-x86_64/kernel-2.6.20.patch
  fcpci/repos/extra-x86_64/kernel-2.6.22.patch
  fcpci/repos/extra-x86_64/kernel-2.6.24.patch
  fcpci/repos/extra-x86_64/kernel-2.6.31.patch
  fcpci/repos/extra-x86_64/kernel-2.6.34.patch
  fcpci/repos/extra-x86_64/kernel-2.6.39-i686.patch
  fcpci/repos/extra-x86_64/kernel-2.6.39-x86_64.patch
  fcpci/repos/extra-x86_64/kernel-2.6.39.patch
  fcpci/repos/extra-x86_64/kernel-3.2.0.patch
  fcpci/repos/extra-x86_64/string.h
  fcpci/repos/extra-x86_64/string64.h
  fcpci/repos/testing-x86_64/

+
 PKGBUILD   |  212 -
 atomic.patch   |   36 -
 fcpci.install  |   56 +-
 kernel-2.6.19.patch|   40 -
 kernel-2.6.20.patch|  110 ++--
 kernel-2.6.22.patch|   22 
 kernel-2.6.24.patch|   28 -
 kernel-2.6.31.patch|   22 
 kernel-2.6.34.patch|  340 +++---
 kernel-2.6.39-i686.patch   |   22 
 kernel-2.6.39-x86_64.patch |   22 
 kernel-2.6.39.patch|   44 -
 kernel-3.2.0.patch |   20 
 string.h   |  986 +--
 string64.h |  134 ++---
 15 files changed, 1047 insertions(+), 1047 deletions(-)

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


[arch-commits] Commit in fcpcmcia/repos (45 files)

2012-03-08 Thread Tobias Powalowski
Date: Thursday, March 8, 2012 @ 08:11:27
  Author: tpowa
Revision: 152674

db-move: moved fcpcmcia from [testing] to [extra] (i686)

Added:
  fcpcmcia/repos/extra-i686/PKGBUILD
(from rev 152671, fcpcmcia/repos/testing-i686/PKGBUILD)
  fcpcmcia/repos/extra-i686/atomic.patch
(from rev 152671, fcpcmcia/repos/testing-i686/atomic.patch)
  fcpcmcia/repos/extra-i686/fcpcmcia.diff
(from rev 152671, fcpcmcia/repos/testing-i686/fcpcmcia.diff)
  fcpcmcia/repos/extra-i686/fcpcmcia.install
(from rev 152671, fcpcmcia/repos/testing-i686/fcpcmcia.install)
  fcpcmcia/repos/extra-i686/kernel-2.6.19.patch
(from rev 152671, fcpcmcia/repos/testing-i686/kernel-2.6.19.patch)
  fcpcmcia/repos/extra-i686/kernel-2.6.20.patch
(from rev 152671, fcpcmcia/repos/testing-i686/kernel-2.6.20.patch)
  fcpcmcia/repos/extra-i686/kernel-2.6.22.patch
(from rev 152671, fcpcmcia/repos/testing-i686/kernel-2.6.22.patch)
  fcpcmcia/repos/extra-i686/kernel-2.6.24.patch
(from rev 152671, fcpcmcia/repos/testing-i686/kernel-2.6.24.patch)
  fcpcmcia/repos/extra-i686/kernel-2.6.27.patch
(from rev 152671, fcpcmcia/repos/testing-i686/kernel-2.6.27.patch)
  fcpcmcia/repos/extra-i686/kernel-2.6.28.patch
(from rev 152671, fcpcmcia/repos/testing-i686/kernel-2.6.28.patch)
  fcpcmcia/repos/extra-i686/kernel-2.6.31.patch
(from rev 152671, fcpcmcia/repos/testing-i686/kernel-2.6.31.patch)
  fcpcmcia/repos/extra-i686/kernel-2.6.33.patch
(from rev 152671, fcpcmcia/repos/testing-i686/kernel-2.6.33.patch)
  fcpcmcia/repos/extra-i686/kernel-2.6.34.patch
(from rev 152671, fcpcmcia/repos/testing-i686/kernel-2.6.34.patch)
  fcpcmcia/repos/extra-i686/kernel-2.6.35.patch
(from rev 152671, fcpcmcia/repos/testing-i686/kernel-2.6.35.patch)
  fcpcmcia/repos/extra-i686/kernel-2.6.36.patch
(from rev 152671, fcpcmcia/repos/testing-i686/kernel-2.6.36.patch)
  fcpcmcia/repos/extra-i686/kernel-2.6.37.patch
(from rev 152671, fcpcmcia/repos/testing-i686/kernel-2.6.37.patch)
  fcpcmcia/repos/extra-i686/kernel-2.6.39-i686.patch
(from rev 152671, fcpcmcia/repos/testing-i686/kernel-2.6.39-i686.patch)
  fcpcmcia/repos/extra-i686/kernel-2.6.39-x86_64.patch
(from rev 152671, fcpcmcia/repos/testing-i686/kernel-2.6.39-x86_64.patch)
  fcpcmcia/repos/extra-i686/kernel-2.6.39.patch
(from rev 152671, fcpcmcia/repos/testing-i686/kernel-2.6.39.patch)
  fcpcmcia/repos/extra-i686/kernel-3.2.0.patch
(from rev 152671, fcpcmcia/repos/testing-i686/kernel-3.2.0.patch)
  fcpcmcia/repos/extra-i686/pcmcia-2.6.16.patch
(from rev 152671, fcpcmcia/repos/testing-i686/pcmcia-2.6.16.patch)
  fcpcmcia/repos/extra-i686/pcmcia-2.6.17.patch
(from rev 152671, fcpcmcia/repos/testing-i686/pcmcia-2.6.17.patch)
Deleted:
  fcpcmcia/repos/extra-i686/PKGBUILD
  fcpcmcia/repos/extra-i686/atomic.patch
  fcpcmcia/repos/extra-i686/fcpcmcia.diff
  fcpcmcia/repos/extra-i686/fcpcmcia.install
  fcpcmcia/repos/extra-i686/kernel-2.6.19.patch
  fcpcmcia/repos/extra-i686/kernel-2.6.20.patch
  fcpcmcia/repos/extra-i686/kernel-2.6.22.patch
  fcpcmcia/repos/extra-i686/kernel-2.6.24.patch
  fcpcmcia/repos/extra-i686/kernel-2.6.27.patch
  fcpcmcia/repos/extra-i686/kernel-2.6.28.patch
  fcpcmcia/repos/extra-i686/kernel-2.6.31.patch
  fcpcmcia/repos/extra-i686/kernel-2.6.33.patch
  fcpcmcia/repos/extra-i686/kernel-2.6.34.patch
  fcpcmcia/repos/extra-i686/kernel-2.6.35.patch
  fcpcmcia/repos/extra-i686/kernel-2.6.36.patch
  fcpcmcia/repos/extra-i686/kernel-2.6.37.patch
  fcpcmcia/repos/extra-i686/kernel-2.6.39-i686.patch
  fcpcmcia/repos/extra-i686/kernel-2.6.39-x86_64.patch
  fcpcmcia/repos/extra-i686/kernel-2.6.39.patch
  fcpcmcia/repos/extra-i686/kernel-3.2.0.patch
  fcpcmcia/repos/extra-i686/pcmcia-2.6.16.patch
  fcpcmcia/repos/extra-i686/pcmcia-2.6.17.patch
  fcpcmcia/repos/testing-i686/

+
 PKGBUILD   |  284 ++--
 atomic.patch   |   36 -
 fcpcmcia.diff  |   80 +--
 fcpcmcia.install   |   58 +-
 kernel-2.6.19.patch|   40 -
 kernel-2.6.20.patch|  110 ++--
 kernel-2.6.22.patch|   22 
 kernel-2.6.24.patch|   28 -
 kernel-2.6.27.patch|   22 
 kernel-2.6.28.patch|  232 +-
 kernel-2.6.31.patch|   22 
 kernel-2.6.33.patch|  376 
 kernel-2.6.34.patch|  340 +++
 kernel-2.6.35.patch|  362 
 kernel-2.6.36.patch|  148 +++---
 kernel-2.6.37.patch|   84 +--
 kernel-2.6.39-i686.patch   |   22 
 kernel-2.6.39-x86_64.patch |   22 
 kernel-2.6.39.patch|   44 -
 kernel-3.2.0.patch |   20 
 pcmcia-2.6.16.patch|  492 ++---
 pcmcia-2.6.17.patch|  972 +--
 22 files changed, 1908 insertions(+), 1908 deletions(-)

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


[arch-commits] Commit in fcpcmcia/repos (45 files)

2012-03-08 Thread Tobias Powalowski
Date: Thursday, March 8, 2012 @ 08:11:31
  Author: tpowa
Revision: 152675

db-move: moved fcpcmcia from [testing] to [extra] (x86_64)

Added:
  fcpcmcia/repos/extra-x86_64/PKGBUILD
(from rev 152671, fcpcmcia/repos/testing-x86_64/PKGBUILD)
  fcpcmcia/repos/extra-x86_64/atomic.patch
(from rev 152671, fcpcmcia/repos/testing-x86_64/atomic.patch)
  fcpcmcia/repos/extra-x86_64/fcpcmcia.diff
(from rev 152671, fcpcmcia/repos/testing-x86_64/fcpcmcia.diff)
  fcpcmcia/repos/extra-x86_64/fcpcmcia.install
(from rev 152671, fcpcmcia/repos/testing-x86_64/fcpcmcia.install)
  fcpcmcia/repos/extra-x86_64/kernel-2.6.19.patch
(from rev 152671, fcpcmcia/repos/testing-x86_64/kernel-2.6.19.patch)
  fcpcmcia/repos/extra-x86_64/kernel-2.6.20.patch
(from rev 152671, fcpcmcia/repos/testing-x86_64/kernel-2.6.20.patch)
  fcpcmcia/repos/extra-x86_64/kernel-2.6.22.patch
(from rev 152671, fcpcmcia/repos/testing-x86_64/kernel-2.6.22.patch)
  fcpcmcia/repos/extra-x86_64/kernel-2.6.24.patch
(from rev 152671, fcpcmcia/repos/testing-x86_64/kernel-2.6.24.patch)
  fcpcmcia/repos/extra-x86_64/kernel-2.6.27.patch
(from rev 152671, fcpcmcia/repos/testing-x86_64/kernel-2.6.27.patch)
  fcpcmcia/repos/extra-x86_64/kernel-2.6.28.patch
(from rev 152671, fcpcmcia/repos/testing-x86_64/kernel-2.6.28.patch)
  fcpcmcia/repos/extra-x86_64/kernel-2.6.31.patch
(from rev 152671, fcpcmcia/repos/testing-x86_64/kernel-2.6.31.patch)
  fcpcmcia/repos/extra-x86_64/kernel-2.6.33.patch
(from rev 152671, fcpcmcia/repos/testing-x86_64/kernel-2.6.33.patch)
  fcpcmcia/repos/extra-x86_64/kernel-2.6.34.patch
(from rev 152671, fcpcmcia/repos/testing-x86_64/kernel-2.6.34.patch)
  fcpcmcia/repos/extra-x86_64/kernel-2.6.35.patch
(from rev 152671, fcpcmcia/repos/testing-x86_64/kernel-2.6.35.patch)
  fcpcmcia/repos/extra-x86_64/kernel-2.6.36.patch
(from rev 152671, fcpcmcia/repos/testing-x86_64/kernel-2.6.36.patch)
  fcpcmcia/repos/extra-x86_64/kernel-2.6.37.patch
(from rev 152671, fcpcmcia/repos/testing-x86_64/kernel-2.6.37.patch)
  fcpcmcia/repos/extra-x86_64/kernel-2.6.39-i686.patch
(from rev 152671, fcpcmcia/repos/testing-x86_64/kernel-2.6.39-i686.patch)
  fcpcmcia/repos/extra-x86_64/kernel-2.6.39-x86_64.patch
(from rev 152671, fcpcmcia/repos/testing-x86_64/kernel-2.6.39-x86_64.patch)
  fcpcmcia/repos/extra-x86_64/kernel-2.6.39.patch
(from rev 152671, fcpcmcia/repos/testing-x86_64/kernel-2.6.39.patch)
  fcpcmcia/repos/extra-x86_64/kernel-3.2.0.patch
(from rev 152671, fcpcmcia/repos/testing-x86_64/kernel-3.2.0.patch)
  fcpcmcia/repos/extra-x86_64/pcmcia-2.6.16.patch
(from rev 152671, fcpcmcia/repos/testing-x86_64/pcmcia-2.6.16.patch)
  fcpcmcia/repos/extra-x86_64/pcmcia-2.6.17.patch
(from rev 152671, fcpcmcia/repos/testing-x86_64/pcmcia-2.6.17.patch)
Deleted:
  fcpcmcia/repos/extra-x86_64/PKGBUILD
  fcpcmcia/repos/extra-x86_64/atomic.patch
  fcpcmcia/repos/extra-x86_64/fcpcmcia.diff
  fcpcmcia/repos/extra-x86_64/fcpcmcia.install
  fcpcmcia/repos/extra-x86_64/kernel-2.6.19.patch
  fcpcmcia/repos/extra-x86_64/kernel-2.6.20.patch
  fcpcmcia/repos/extra-x86_64/kernel-2.6.22.patch
  fcpcmcia/repos/extra-x86_64/kernel-2.6.24.patch
  fcpcmcia/repos/extra-x86_64/kernel-2.6.27.patch
  fcpcmcia/repos/extra-x86_64/kernel-2.6.28.patch
  fcpcmcia/repos/extra-x86_64/kernel-2.6.31.patch
  fcpcmcia/repos/extra-x86_64/kernel-2.6.33.patch
  fcpcmcia/repos/extra-x86_64/kernel-2.6.34.patch
  fcpcmcia/repos/extra-x86_64/kernel-2.6.35.patch
  fcpcmcia/repos/extra-x86_64/kernel-2.6.36.patch
  fcpcmcia/repos/extra-x86_64/kernel-2.6.37.patch
  fcpcmcia/repos/extra-x86_64/kernel-2.6.39-i686.patch
  fcpcmcia/repos/extra-x86_64/kernel-2.6.39-x86_64.patch
  fcpcmcia/repos/extra-x86_64/kernel-2.6.39.patch
  fcpcmcia/repos/extra-x86_64/kernel-3.2.0.patch
  fcpcmcia/repos/extra-x86_64/pcmcia-2.6.16.patch
  fcpcmcia/repos/extra-x86_64/pcmcia-2.6.17.patch
  fcpcmcia/repos/testing-x86_64/

+
 PKGBUILD   |  284 ++--
 atomic.patch   |   36 -
 fcpcmcia.diff  |   80 +--
 fcpcmcia.install   |   58 +-
 kernel-2.6.19.patch|   40 -
 kernel-2.6.20.patch|  110 ++--
 kernel-2.6.22.patch|   22 
 kernel-2.6.24.patch|   28 -
 kernel-2.6.27.patch|   22 
 kernel-2.6.28.patch|  232 +-
 kernel-2.6.31.patch|   22 
 kernel-2.6.33.patch|  376 
 kernel-2.6.34.patch|  340 +++
 kernel-2.6.35.patch|  362 
 kernel-2.6.36.patch|  148 +++---
 kernel-2.6.37.patch|   84 +--
 kernel-2.6.39-i686.patch   |   22 
 kernel-2.6.39-x86_64.patch |   22 
 kernel-2.6.39.patch|   44 -
 kernel-3.2.0.patch |   20 
 pcmcia-2.6.16.patch|  492 ++---
 pcmcia-2.6.17.patch|  972 +--
 22 files changed, 1908 insertions(+), 1908 deletions(-)

The diff is 

[arch-commits] Commit in nvidia/repos (5 files)

2012-03-08 Thread Tobias Powalowski
Date: Thursday, March 8, 2012 @ 08:11:32
  Author: tpowa
Revision: 152676

db-move: moved nvidia from [testing] to [extra] (i686)

Added:
  nvidia/repos/extra-i686/PKGBUILD
(from rev 152671, nvidia/repos/testing-i686/PKGBUILD)
  nvidia/repos/extra-i686/nvidia.install
(from rev 152671, nvidia/repos/testing-i686/nvidia.install)
Deleted:
  nvidia/repos/extra-i686/PKGBUILD
  nvidia/repos/extra-i686/nvidia.install
  nvidia/repos/testing-i686/

+
 PKGBUILD   |   92 +++
 nvidia.install |   30 -
 2 files changed, 61 insertions(+), 61 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-03-08 13:11:31 UTC (rev 152675)
+++ extra-i686/PKGBUILD 2012-03-08 13:11:32 UTC (rev 152676)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer : Thomas Baechler tho...@archlinux.org
-
-pkgname=nvidia
-pkgver=295.20
-_extramodules=extramodules-3.2-ARCH
-_kernver=$(cat /lib/modules/${_extramodules}/version)
-pkgrel=2
-pkgdesc=NVIDIA drivers for linux.
-arch=('i686' 'x86_64')
-url=http://www.nvidia.com/;
-depends=('linux=3.2' 'linux3.3' nvidia-utils=${pkgver})
-makedepends=('linux-headers=3.2' 'linux-headers3.3')
-conflicts=('nvidia-96xx' 'nvidia-173xx')
-license=('custom')
-install=nvidia.install
-options=(!strip)
-
-if [ $CARCH = i686 ]; then
-_arch='x86'
-_pkg=NVIDIA-Linux-${_arch}-${pkgver}
-
source=(ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run;)
-md5sums=('a6f702271da49930a17e28b5928fe75a')
-elif [ $CARCH = x86_64 ]; then
-_arch='x86_64'
-_pkg=NVIDIA-Linux-${_arch}-${pkgver}-no-compat32
-
source=(ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run;)
-md5sums=('79b05cffa482234833ae1c4bb40664c3')
-fi
-
-build() {
-cd ${srcdir}
-sh ${_pkg}.run --extract-only
-cd ${_pkg}/kernel
-make SYSSRC=/lib/modules/${_kernver}/build module
-}
-
-package() {
-install -D -m644 ${srcdir}/${_pkg}/kernel/nvidia.ko \
-${pkgdir}/lib/modules/${_extramodules}/nvidia.ko
-install -d -m755 ${pkgdir}/lib/modprobe.d
-echo blacklist nouveau  ${pkgdir}/lib/modprobe.d/nvidia.conf
-echo blacklist nvidiafb  ${pkgdir}/lib/modprobe.d/nvidia.conf
-sed -i -e s/EXTRAMODULES='.*'/EXTRAMODULES='${_extramodules}'/ 
${startdir}/nvidia.install
-gzip ${pkgdir}/lib/modules/${_extramodules}/nvidia.ko
-}

Copied: nvidia/repos/extra-i686/PKGBUILD (from rev 152671, 
nvidia/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-03-08 13:11:32 UTC (rev 152676)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer : Thomas Baechler tho...@archlinux.org
+
+pkgname=nvidia
+pkgver=295.20
+_extramodules=extramodules-3.2-ARCH
+_kernver=$(cat /lib/modules/${_extramodules}/version)
+pkgrel=3
+pkgdesc=NVIDIA drivers for linux.
+arch=('i686' 'x86_64')
+url=http://www.nvidia.com/;
+depends=('linux=3.2' 'linux3.3' nvidia-utils=${pkgver})
+makedepends=('linux-headers=3.2' 'linux-headers3.3')
+conflicts=('nvidia-96xx' 'nvidia-173xx')
+license=('custom')
+install=nvidia.install
+options=(!strip)
+
+if [ $CARCH = i686 ]; then
+_arch='x86'
+_pkg=NVIDIA-Linux-${_arch}-${pkgver}
+
source=(ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run;)
+md5sums=('a6f702271da49930a17e28b5928fe75a')
+elif [ $CARCH = x86_64 ]; then
+_arch='x86_64'
+_pkg=NVIDIA-Linux-${_arch}-${pkgver}-no-compat32
+
source=(ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run;)
+md5sums=('79b05cffa482234833ae1c4bb40664c3')
+fi
+
+build() {
+cd ${srcdir}
+sh ${_pkg}.run --extract-only
+cd ${_pkg}/kernel
+make SYSSRC=/lib/modules/${_kernver}/build module
+}
+
+package() {
+install -D -m644 ${srcdir}/${_pkg}/kernel/nvidia.ko \
+${pkgdir}/lib/modules/${_extramodules}/nvidia.ko
+install -d -m755 ${pkgdir}/lib/modprobe.d
+echo blacklist nouveau  ${pkgdir}/lib/modprobe.d/nvidia.conf
+echo blacklist nvidiafb  ${pkgdir}/lib/modprobe.d/nvidia.conf
+sed -i -e s/EXTRAMODULES='.*'/EXTRAMODULES='${_extramodules}'/ 
${startdir}/nvidia.install
+gzip ${pkgdir}/lib/modules/${_extramodules}/nvidia.ko
+}

Deleted: extra-i686/nvidia.install
===
--- extra-i686/nvidia.install   2012-03-08 13:11:31 UTC (rev 152675)
+++ extra-i686/nvidia.install   2012-03-08 13:11:32 UTC (rev 152676)
@@ -1,15 +0,0 @@
-post_install() {
-EXTRAMODULES='extramodules-3.2-ARCH'
-depmod $(cat /lib/modules/$EXTRAMODULES/version)
-echo 'In order to use nvidia module, reboot the system.'
-}
-
-post_upgrade() {
-EXTRAMODULES='extramodules-3.2-ARCH'
-depmod $(cat /lib/modules/$EXTRAMODULES/version)
-}
-
-post_remove() {
-EXTRAMODULES='extramodules-3.2-ARCH'
-depmod $(cat 

[arch-commits] Commit in nvidia/repos (5 files)

2012-03-08 Thread Tobias Powalowski
Date: Thursday, March 8, 2012 @ 08:11:34
  Author: tpowa
Revision: 152677

db-move: moved nvidia from [testing] to [extra] (x86_64)

Added:
  nvidia/repos/extra-x86_64/PKGBUILD
(from rev 152671, nvidia/repos/testing-x86_64/PKGBUILD)
  nvidia/repos/extra-x86_64/nvidia.install
(from rev 152671, nvidia/repos/testing-x86_64/nvidia.install)
Deleted:
  nvidia/repos/extra-x86_64/PKGBUILD
  nvidia/repos/extra-x86_64/nvidia.install
  nvidia/repos/testing-x86_64/

+
 PKGBUILD   |   92 +++
 nvidia.install |   30 -
 2 files changed, 61 insertions(+), 61 deletions(-)

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-03-08 13:11:32 UTC (rev 152676)
+++ extra-x86_64/PKGBUILD   2012-03-08 13:11:34 UTC (rev 152677)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer : Thomas Baechler tho...@archlinux.org
-
-pkgname=nvidia
-pkgver=295.20
-_extramodules=extramodules-3.2-ARCH
-_kernver=$(cat /lib/modules/${_extramodules}/version)
-pkgrel=2
-pkgdesc=NVIDIA drivers for linux.
-arch=('i686' 'x86_64')
-url=http://www.nvidia.com/;
-depends=('linux=3.2' 'linux3.3' nvidia-utils=${pkgver})
-makedepends=('linux-headers=3.2' 'linux-headers3.3')
-conflicts=('nvidia-96xx' 'nvidia-173xx')
-license=('custom')
-install=nvidia.install
-options=(!strip)
-
-if [ $CARCH = i686 ]; then
-_arch='x86'
-_pkg=NVIDIA-Linux-${_arch}-${pkgver}
-
source=(ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run;)
-md5sums=('a6f702271da49930a17e28b5928fe75a')
-elif [ $CARCH = x86_64 ]; then
-_arch='x86_64'
-_pkg=NVIDIA-Linux-${_arch}-${pkgver}-no-compat32
-
source=(ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run;)
-md5sums=('79b05cffa482234833ae1c4bb40664c3')
-fi
-
-build() {
-cd ${srcdir}
-sh ${_pkg}.run --extract-only
-cd ${_pkg}/kernel
-make SYSSRC=/lib/modules/${_kernver}/build module
-}
-
-package() {
-install -D -m644 ${srcdir}/${_pkg}/kernel/nvidia.ko \
-${pkgdir}/lib/modules/${_extramodules}/nvidia.ko
-install -d -m755 ${pkgdir}/lib/modprobe.d
-echo blacklist nouveau  ${pkgdir}/lib/modprobe.d/nvidia.conf
-echo blacklist nvidiafb  ${pkgdir}/lib/modprobe.d/nvidia.conf
-sed -i -e s/EXTRAMODULES='.*'/EXTRAMODULES='${_extramodules}'/ 
${startdir}/nvidia.install
-gzip ${pkgdir}/lib/modules/${_extramodules}/nvidia.ko
-}

Copied: nvidia/repos/extra-x86_64/PKGBUILD (from rev 152671, 
nvidia/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-03-08 13:11:34 UTC (rev 152677)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer : Thomas Baechler tho...@archlinux.org
+
+pkgname=nvidia
+pkgver=295.20
+_extramodules=extramodules-3.2-ARCH
+_kernver=$(cat /lib/modules/${_extramodules}/version)
+pkgrel=3
+pkgdesc=NVIDIA drivers for linux.
+arch=('i686' 'x86_64')
+url=http://www.nvidia.com/;
+depends=('linux=3.2' 'linux3.3' nvidia-utils=${pkgver})
+makedepends=('linux-headers=3.2' 'linux-headers3.3')
+conflicts=('nvidia-96xx' 'nvidia-173xx')
+license=('custom')
+install=nvidia.install
+options=(!strip)
+
+if [ $CARCH = i686 ]; then
+_arch='x86'
+_pkg=NVIDIA-Linux-${_arch}-${pkgver}
+
source=(ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run;)
+md5sums=('a6f702271da49930a17e28b5928fe75a')
+elif [ $CARCH = x86_64 ]; then
+_arch='x86_64'
+_pkg=NVIDIA-Linux-${_arch}-${pkgver}-no-compat32
+
source=(ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run;)
+md5sums=('79b05cffa482234833ae1c4bb40664c3')
+fi
+
+build() {
+cd ${srcdir}
+sh ${_pkg}.run --extract-only
+cd ${_pkg}/kernel
+make SYSSRC=/lib/modules/${_kernver}/build module
+}
+
+package() {
+install -D -m644 ${srcdir}/${_pkg}/kernel/nvidia.ko \
+${pkgdir}/lib/modules/${_extramodules}/nvidia.ko
+install -d -m755 ${pkgdir}/lib/modprobe.d
+echo blacklist nouveau  ${pkgdir}/lib/modprobe.d/nvidia.conf
+echo blacklist nvidiafb  ${pkgdir}/lib/modprobe.d/nvidia.conf
+sed -i -e s/EXTRAMODULES='.*'/EXTRAMODULES='${_extramodules}'/ 
${startdir}/nvidia.install
+gzip ${pkgdir}/lib/modules/${_extramodules}/nvidia.ko
+}

Deleted: extra-x86_64/nvidia.install
===
--- extra-x86_64/nvidia.install 2012-03-08 13:11:32 UTC (rev 152676)
+++ extra-x86_64/nvidia.install 2012-03-08 13:11:34 UTC (rev 152677)
@@ -1,15 +0,0 @@
-post_install() {
-EXTRAMODULES='extramodules-3.2-ARCH'
-depmod $(cat /lib/modules/$EXTRAMODULES/version)
-echo 'In order to use nvidia module, reboot the system.'
-}
-
-post_upgrade() {
-EXTRAMODULES='extramodules-3.2-ARCH'
-depmod $(cat /lib/modules/$EXTRAMODULES/version)
-}
-
-post_remove() {
-

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

2012-03-08 Thread Tobias Powalowski
Date: Thursday, March 8, 2012 @ 08:18:44
  Author: tpowa
Revision: 152678

fix #27353 python2 makedepend

Modified:
  lensfun/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-03-08 13:11:34 UTC (rev 152677)
+++ PKGBUILD2012-03-08 13:18:44 UTC (rev 152678)
@@ -9,7 +9,7 @@
 url=http://lensfun.berlios.de/;
 license=('LGPL3')
 depends=('glibc' 'glib2')
-makedepends=('python' 'libpng' 'doxygen')
+makedepends=('python2' 'libpng' 'doxygen')
 source=(http://download.berlios.de/${pkgname}/${pkgname}-${pkgver}.tar.bz2;
 runtime.cpu.detection.fix.backport.patch)
 



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

2012-03-08 Thread Tobias Powalowski
Date: Thursday, March 8, 2012 @ 08:27:59
  Author: tpowa
Revision: 152679

upgpkg: dirmngr 1.1.0-4

fix #28606

Modified:
  dirmngr/trunk/PKGBUILD

--+
 PKGBUILD |7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-03-08 13:18:44 UTC (rev 152678)
+++ PKGBUILD2012-03-08 13:27:59 UTC (rev 152679)
@@ -3,7 +3,7 @@
 
 pkgname=dirmngr
 pkgver=1.1.0
-pkgrel=3
+pkgrel=4
 pkgdesc=A daemon to handle CRL and certificate requests
 arch=('i686' 'x86_64')
 license=('GPL')
@@ -14,6 +14,11 @@
 
 build() {
   cd $srcdir/$pkgname-$pkgver
+  # FIX for https://bugzilla.redhat.com/565131
+  # not sure how best to turn this into something more upstreamable
+  # patch configure to try this combo first? -- Rex
+  # https://bugs.archlinux.org/task/28606
+  export LDAPLIBS=-lldap -llber
   ./configure --prefix=/usr  --libexecdir=/usr/lib
   make 
 }



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

2012-03-08 Thread Tobias Powalowski
Date: Thursday, March 8, 2012 @ 08:28:23
  Author: tpowa
Revision: 152680

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

Added:
  dirmngr/repos/testing-i686/
  dirmngr/repos/testing-i686/PKGBUILD
(from rev 152679, dirmngr/trunk/PKGBUILD)
  dirmngr/repos/testing-i686/dirmngr.install
(from rev 152679, dirmngr/trunk/dirmngr.install)
  dirmngr/repos/testing-x86_64/
  dirmngr/repos/testing-x86_64/PKGBUILD
(from rev 152679, dirmngr/trunk/PKGBUILD)
  dirmngr/repos/testing-x86_64/dirmngr.install
(from rev 152679, dirmngr/trunk/dirmngr.install)

+
 testing-i686/PKGBUILD  |   30 ++
 testing-i686/dirmngr.install   |   20 
 testing-x86_64/PKGBUILD|   30 ++
 testing-x86_64/dirmngr.install |   20 
 4 files changed, 100 insertions(+)

Copied: dirmngr/repos/testing-i686/PKGBUILD (from rev 152679, 
dirmngr/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-03-08 13:28:23 UTC (rev 152680)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Tobias Powalowski tp...@archlinux.org
+
+pkgname=dirmngr
+pkgver=1.1.0
+pkgrel=4
+pkgdesc=A daemon to handle CRL and certificate requests
+arch=('i686' 'x86_64')
+license=('GPL')
+url=ftp://ftp.gnupg.org/gcrypt/dirmngr;
+depends=('libgcrypt' 'libldap' 'libksba' 'libgpg-error' 'libassuan' 'pth')
+source=(ftp://ftp.gnupg.org/gcrypt/$pkgname/$pkgname-$pkgver.tar.bz2)
+install=dirmngr.install
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  # FIX for https://bugzilla.redhat.com/565131
+  # not sure how best to turn this into something more upstreamable
+  # patch configure to try this combo first? -- Rex
+  # https://bugs.archlinux.org/task/28606
+  export LDAPLIBS=-lldap -llber
+  ./configure --prefix=/usr  --libexecdir=/usr/lib
+  make 
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}
+md5sums=('f2570f0248f5947daac200e85291b328')

Copied: dirmngr/repos/testing-i686/dirmngr.install (from rev 152679, 
dirmngr/trunk/dirmngr.install)
===
--- testing-i686/dirmngr.install(rev 0)
+++ testing-i686/dirmngr.install2012-03-08 13:28:23 UTC (rev 152680)
@@ -0,0 +1,20 @@
+infodir=usr/share/info
+filelist=(dirmngr.info)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info $infodir/$file.gz $infodir/dir 2 /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info --delete $infodir/$file.gz $infodir/dir 2 /dev/null
+  done
+}

Copied: dirmngr/repos/testing-x86_64/PKGBUILD (from rev 152679, 
dirmngr/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2012-03-08 13:28:23 UTC (rev 152680)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Tobias Powalowski tp...@archlinux.org
+
+pkgname=dirmngr
+pkgver=1.1.0
+pkgrel=4
+pkgdesc=A daemon to handle CRL and certificate requests
+arch=('i686' 'x86_64')
+license=('GPL')
+url=ftp://ftp.gnupg.org/gcrypt/dirmngr;
+depends=('libgcrypt' 'libldap' 'libksba' 'libgpg-error' 'libassuan' 'pth')
+source=(ftp://ftp.gnupg.org/gcrypt/$pkgname/$pkgname-$pkgver.tar.bz2)
+install=dirmngr.install
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  # FIX for https://bugzilla.redhat.com/565131
+  # not sure how best to turn this into something more upstreamable
+  # patch configure to try this combo first? -- Rex
+  # https://bugs.archlinux.org/task/28606
+  export LDAPLIBS=-lldap -llber
+  ./configure --prefix=/usr  --libexecdir=/usr/lib
+  make 
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}
+md5sums=('f2570f0248f5947daac200e85291b328')

Copied: dirmngr/repos/testing-x86_64/dirmngr.install (from rev 152679, 
dirmngr/trunk/dirmngr.install)
===
--- testing-x86_64/dirmngr.install  (rev 0)
+++ testing-x86_64/dirmngr.install  2012-03-08 13:28:23 UTC (rev 152680)
@@ -0,0 +1,20 @@
+infodir=usr/share/info
+filelist=(dirmngr.info)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info $infodir/$file.gz $infodir/dir 2 /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info --delete $infodir/$file.gz $infodir/dir 2 /dev/null
+  done
+}



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

2012-03-08 Thread Ionut Biru
Date: Thursday, March 8, 2012 @ 12:13:48
  Author: ibiru
Revision: 152681

update to 1.7.91

Added:
  libwebkit/trunk/python.patch
  libwebkit/trunk/webkit-gtk-1.7.90-parallel-make-hack.patch
Modified:
  libwebkit/trunk/PKGBUILD

+
 PKGBUILD   |   31 ---
 python.patch   |   12 ++
 webkit-gtk-1.7.90-parallel-make-hack.patch |   21 ++
 3 files changed, 57 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-03-08 13:28:23 UTC (rev 152680)
+++ PKGBUILD2012-03-08 17:13:48 UTC (rev 152681)
@@ -3,21 +3,28 @@
 
 pkgbase=libwebkit
 pkgname=(libwebkit libwebkit3)
-pkgver=1.6.3
+pkgver=1.7.91
 pkgrel=1
 pkgdesc=An opensource web content engine
 arch=('i686' 'x86_64')
 url=http://webkitgtk.org/;
 license=('custom')
-depends=('libxt' 'libxslt' 'sqlite3' 'icu' 'gstreamer0.10-base' 'libsoup' 
'enchant')
-makedepends=('gperf' 'gobject-introspection' 'python2' 'gtk2' 'gtk3')
+depends=('libxt' 'libxslt' 'sqlite3' 'icu' 'gstreamer0.10-base' 'libsoup' 
'enchant' 'libgl')
+makedepends=('gperf' 'gobject-introspection' 'python2' 'gtk2' 'gtk3' 'mesa' 
'gtk-doc')
 options=('!libtool' '!emptydirs')
 install=libwebkit.install
-source=(http://webkitgtk.org/webkit-$pkgver.tar.xz)
-sha256sums=('12d0dbce6a895c7a8491a028e34a1dc55ae13ab76ac6202b2e489da9468077c3')
+source=(http://webkitgtk.org/webkit-$pkgver.tar.xz
+webkit-gtk-1.7.90-parallel-make-hack.patch
+python.patch)
+sha256sums=('9d9de6968c466b973988ce97e4f2f53535dd4f72356bd7b29b03ba9dab937545'
+'e20d7d45e6230308f7d4a7aac1095cb1fe8d9c7eb0f3e65b061acf8bc4bbaf73'
+'29b82e47277d982bc57a7ba967d28ae76e07556986627c2e456694b699ae0e09')
 
 build() {
   cd $srcdir/webkit-$pkgver
+  patch -Np1 -i $srcdir/webkit-gtk-1.7.90-parallel-make-hack.patch
+  patch -Np1 -i $srcdir/python.patch
+  autoreconf -I Source/autotools -fi
   mkdir build-gtk{2,3}
 
   ( cd build-gtk2  _build --with-gtk=2.0 )
@@ -29,8 +36,15 @@
 --enable-introspection \
 --with-font-backend=freetype \
 --with-unicode-backend=icu \
+--enable-geolocation=no \
 --enable-spellcheck $@
-  make all stamp-po
+#  make all stamp-po
+#  until parallel building is fixed
+  make all-built-sources-local
+  make all-ltlibraries-local
+  make all-programs-local
+  make all-data-local
+  make stamp-po
 }
 
 package_libwebkit() {
@@ -38,7 +52,7 @@
   depends+=(gtk2)
 
   cd $srcdir/webkit-$pkgver/build-gtk2
-  make DESTDIR=${pkgdir} install
+  make DESTDIR=$pkgdir install
   install -Dm644 ../Source/WebKit/LICENSE 
$pkgdir/usr/share/licenses/libwebkit/LICENSE
 }
 
@@ -50,3 +64,6 @@
   make DESTDIR=$pkgdir install
   install -Dm644 ../Source/WebKit/LICENSE 
$pkgdir/usr/share/licenses/libwebkit3/LICENSE
 }
+
+
+

Added: python.patch
===
--- python.patch(rev 0)
+++ python.patch2012-03-08 17:13:48 UTC (rev 152681)
@@ -0,0 +1,12 @@
+diff -Nur webkit-1.7.91.orig/Tools/GNUmakefile.am 
webkit-1.7.91/Tools/GNUmakefile.am
+--- webkit-1.7.91.orig/Tools/GNUmakefile.am2012-03-08 12:37:34.221447643 
+
 webkit-1.7.91/Tools/GNUmakefile.am 2012-03-08 12:53:28.713523074 +
+@@ -326,7 +326,7 @@
+ fi; \
+   fi
+ endif
+-  $(srcdir)/Tools/gtk/generate-gtkdoc --rebase --virtual-root=$${DESTDIR}
++  $(AM_V_GEN)$(PYTHON) $(srcdir)/Tools/gtk/generate-gtkdoc --rebase 
--virtual-root=$${DESTDIR}
+ 
+ uninstall-local:
+   @DOC_MODULE_VERSION=`cat ./Documentation/webkitgtk/version.xml`; \

Added: webkit-gtk-1.7.90-parallel-make-hack.patch
===
--- webkit-gtk-1.7.90-parallel-make-hack.patch  (rev 0)
+++ webkit-gtk-1.7.90-parallel-make-hack.patch  2012-03-08 17:13:48 UTC (rev 
152681)
@@ -0,0 +1,21 @@
+Horrible failure of a hack to enable workaround for
+https://bugs.webkit.org/show_bug.cgi?id=79498
+
+--- a/GNUmakefile.am
 b/GNUmakefile.am
+@@ -285,6 +285,15 @@
+ all-local: stamp-po
+   $(mkdir_p) $(top_builddir)/$(DEPDIR)/DerivedSources
+ 
++# Horrible hack to enable workaround for parallel make failure
++all-built-sources-local: $(BUILT_SOURCES) autotoolsconfig.h
++
++all-ltlibraries-local: GNUmakefile $(LTLIBRARIES)
++
++all-programs-local: GNUmakefile $(PROGRAMS)
++
++all-data-local: GNUmakefile $(DATA)
++
+ # remove built sources and program directories
+ clean-local:
+   -rm -rf $(GENPROGRAMS)



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

2012-03-08 Thread Ionut Biru
Date: Thursday, March 8, 2012 @ 12:33:57
  Author: ibiru
Revision: 152682

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  libwebkit/repos/gnome-unstable-i686/
  libwebkit/repos/gnome-unstable-i686/PKGBUILD
(from rev 152681, libwebkit/trunk/PKGBUILD)
  libwebkit/repos/gnome-unstable-i686/libwebkit.install
(from rev 152681, libwebkit/trunk/libwebkit.install)
  libwebkit/repos/gnome-unstable-i686/python.patch
(from rev 152681, libwebkit/trunk/python.patch)
  libwebkit/repos/gnome-unstable-i686/webkit-gtk-1.7.90-parallel-make-hack.patch
(from rev 152681, 
libwebkit/trunk/webkit-gtk-1.7.90-parallel-make-hack.patch)
  libwebkit/repos/gnome-unstable-x86_64/
  libwebkit/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 152681, libwebkit/trunk/PKGBUILD)
  libwebkit/repos/gnome-unstable-x86_64/libwebkit.install
(from rev 152681, libwebkit/trunk/libwebkit.install)
  libwebkit/repos/gnome-unstable-x86_64/python.patch
(from rev 152681, libwebkit/trunk/python.patch)
  
libwebkit/repos/gnome-unstable-x86_64/webkit-gtk-1.7.90-parallel-make-hack.patch
(from rev 152681, 
libwebkit/trunk/webkit-gtk-1.7.90-parallel-make-hack.patch)

--+
 gnome-unstable-i686/PKGBUILD |   69 
++
 gnome-unstable-i686/libwebkit.install|   11 +
 gnome-unstable-i686/python.patch |   12 +
 gnome-unstable-i686/webkit-gtk-1.7.90-parallel-make-hack.patch   |   21 +++
 gnome-unstable-x86_64/PKGBUILD   |   69 
++
 gnome-unstable-x86_64/libwebkit.install  |   11 +
 gnome-unstable-x86_64/python.patch   |   12 +
 gnome-unstable-x86_64/webkit-gtk-1.7.90-parallel-make-hack.patch |   21 +++
 8 files changed, 226 insertions(+)

Copied: libwebkit/repos/gnome-unstable-i686/PKGBUILD (from rev 152681, 
libwebkit/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2012-03-08 17:33:57 UTC (rev 152682)
@@ -0,0 +1,69 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+
+pkgbase=libwebkit
+pkgname=(libwebkit libwebkit3)
+pkgver=1.7.91
+pkgrel=1
+pkgdesc=An opensource web content engine
+arch=('i686' 'x86_64')
+url=http://webkitgtk.org/;
+license=('custom')
+depends=('libxt' 'libxslt' 'sqlite3' 'icu' 'gstreamer0.10-base' 'libsoup' 
'enchant' 'libgl')
+makedepends=('gperf' 'gobject-introspection' 'python2' 'gtk2' 'gtk3' 'mesa' 
'gtk-doc')
+options=('!libtool' '!emptydirs')
+install=libwebkit.install
+source=(http://webkitgtk.org/webkit-$pkgver.tar.xz
+webkit-gtk-1.7.90-parallel-make-hack.patch
+python.patch)
+sha256sums=('9d9de6968c466b973988ce97e4f2f53535dd4f72356bd7b29b03ba9dab937545'
+'e20d7d45e6230308f7d4a7aac1095cb1fe8d9c7eb0f3e65b061acf8bc4bbaf73'
+'29b82e47277d982bc57a7ba967d28ae76e07556986627c2e456694b699ae0e09')
+
+build() {
+  cd $srcdir/webkit-$pkgver
+  patch -Np1 -i $srcdir/webkit-gtk-1.7.90-parallel-make-hack.patch
+  patch -Np1 -i $srcdir/python.patch
+  autoreconf -I Source/autotools -fi
+  mkdir build-gtk{2,3}
+
+  ( cd build-gtk2  _build --with-gtk=2.0 )
+  ( cd build-gtk3  _build --with-gtk=3.0 )
+}
+
+_build() {
+  PYTHON=/usr/bin/python2 ../configure --prefix=/usr \
+--enable-introspection \
+--with-font-backend=freetype \
+--with-unicode-backend=icu \
+--enable-geolocation=no \
+--enable-spellcheck $@
+#  make all stamp-po
+#  until parallel building is fixed
+  make all-built-sources-local
+  make all-ltlibraries-local
+  make all-programs-local
+  make all-data-local
+  make stamp-po
+}
+
+package_libwebkit() {
+  pkgdesc+= (for GTK2)
+  depends+=(gtk2)
+
+  cd $srcdir/webkit-$pkgver/build-gtk2
+  make DESTDIR=$pkgdir install
+  install -Dm644 ../Source/WebKit/LICENSE 
$pkgdir/usr/share/licenses/libwebkit/LICENSE
+}
+
+package_libwebkit3() {
+  pkgdesc+= (for GTK3)
+  depends+=(gtk3)
+
+  cd $srcdir/webkit-$pkgver/build-gtk3
+  make DESTDIR=$pkgdir install
+  install -Dm644 ../Source/WebKit/LICENSE 
$pkgdir/usr/share/licenses/libwebkit3/LICENSE
+}
+
+
+

Copied: libwebkit/repos/gnome-unstable-i686/libwebkit.install (from rev 152681, 
libwebkit/trunk/libwebkit.install)
===
--- gnome-unstable-i686/libwebkit.install   (rev 0)
+++ gnome-unstable-i686/libwebkit.install   2012-03-08 17:33:57 UTC (rev 
152682)
@@ -0,0 +1,11 @@
+post_install() {
+  usr/bin/glib-compile-schemas usr/share/glib-2.0/schemas
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: libwebkit/repos/gnome-unstable-i686/python.patch (from rev 152681, 
libwebkit/trunk/python.patch)

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

2012-03-08 Thread Ionut Biru
Date: Thursday, March 8, 2012 @ 15:17:27
  Author: ibiru
Revision: 152683

update to 0.11.6

Modified:
  dconf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-03-08 17:33:57 UTC (rev 152682)
+++ PKGBUILD2012-03-08 20:17:27 UTC (rev 152683)
@@ -2,7 +2,7 @@
 # Maintainer: Ionut Biru ib...@archlinux.org
 
 pkgname=dconf
-pkgver=0.11.5
+pkgver=0.11.6
 pkgrel=1
 pkgdesc=A low-level configuration system.
 arch=(i686 x86_64)
@@ -13,7 +13,7 @@
 optdepends=('gtk3: for dconf-editor')
 install=dconf.install
 
source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('4f6ffd386b90e85791164794a66860aa16b7ff988f96105ea5ddc15808c776f5')
+sha256sums=('027f41b30b5f660baa54274938334fa73366db28600d3ee5d6b1e0763c310ee2')
 
 build() {
   cd $pkgname-$pkgver



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

2012-03-08 Thread Ionut Biru
Date: Thursday, March 8, 2012 @ 15:19:22
  Author: ibiru
Revision: 152684

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  dconf/repos/gnome-unstable-i686/PKGBUILD
(from rev 152683, dconf/trunk/PKGBUILD)
  dconf/repos/gnome-unstable-i686/dconf.install
(from rev 152683, dconf/trunk/dconf.install)
  dconf/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 152683, dconf/trunk/PKGBUILD)
  dconf/repos/gnome-unstable-x86_64/dconf.install
(from rev 152683, dconf/trunk/dconf.install)
Deleted:
  dconf/repos/gnome-unstable-i686/PKGBUILD
  dconf/repos/gnome-unstable-i686/dconf.install
  dconf/repos/gnome-unstable-x86_64/PKGBUILD
  dconf/repos/gnome-unstable-x86_64/dconf.install

-+
 gnome-unstable-i686/PKGBUILD|   62 +-
 gnome-unstable-i686/dconf.install   |   26 +++---
 gnome-unstable-x86_64/PKGBUILD  |   62 +-
 gnome-unstable-x86_64/dconf.install |   26 +++---
 4 files changed, 88 insertions(+), 88 deletions(-)

Deleted: gnome-unstable-i686/PKGBUILD
===
--- gnome-unstable-i686/PKGBUILD2012-03-08 20:17:27 UTC (rev 152683)
+++ gnome-unstable-i686/PKGBUILD2012-03-08 20:19:22 UTC (rev 152684)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru ib...@archlinux.org
-
-pkgname=dconf
-pkgver=0.11.5
-pkgrel=1
-pkgdesc=A low-level configuration system.
-arch=(i686 x86_64)
-url=http://live.gnome.org/dconf;
-license=('LGPL2.1')
-depends=('glib2' 'gdk-pixbuf2')
-makedepends=('vala' 'gtk3')
-optdepends=('gtk3: for dconf-editor')
-install=dconf.install
-source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('4f6ffd386b90e85791164794a66860aa16b7ff988f96105ea5ddc15808c776f5')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr --sysconfdir=/etc \
---libexecdir=/usr/lib/dconf
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: dconf/repos/gnome-unstable-i686/PKGBUILD (from rev 152683, 
dconf/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2012-03-08 20:19:22 UTC (rev 152684)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+
+pkgname=dconf
+pkgver=0.11.6
+pkgrel=1
+pkgdesc=A low-level configuration system.
+arch=(i686 x86_64)
+url=http://live.gnome.org/dconf;
+license=('LGPL2.1')
+depends=('glib2' 'gdk-pixbuf2')
+makedepends=('vala' 'gtk3')
+optdepends=('gtk3: for dconf-editor')
+install=dconf.install
+source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('027f41b30b5f660baa54274938334fa73366db28600d3ee5d6b1e0763c310ee2')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc \
+--libexecdir=/usr/lib/dconf
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: gnome-unstable-i686/dconf.install
===
--- gnome-unstable-i686/dconf.install   2012-03-08 20:17:27 UTC (rev 152683)
+++ gnome-unstable-i686/dconf.install   2012-03-08 20:19:22 UTC (rev 152684)
@@ -1,13 +0,0 @@
-post_install() {
-gio-querymodules /usr/lib/gio/modules
-glib-compile-schemas /usr/share/glib-2.0/schemas
-gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
-}
-
-post_upgrade(){
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: dconf/repos/gnome-unstable-i686/dconf.install (from rev 152683, 
dconf/trunk/dconf.install)
===
--- gnome-unstable-i686/dconf.install   (rev 0)
+++ gnome-unstable-i686/dconf.install   2012-03-08 20:19:22 UTC (rev 152684)
@@ -0,0 +1,13 @@
+post_install() {
+gio-querymodules /usr/lib/gio/modules
+glib-compile-schemas /usr/share/glib-2.0/schemas
+gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}
+
+post_upgrade(){
+post_install
+}
+
+post_remove() {
+post_install
+}

Deleted: gnome-unstable-x86_64/PKGBUILD
===
--- gnome-unstable-x86_64/PKGBUILD  2012-03-08 20:17:27 UTC (rev 152683)
+++ gnome-unstable-x86_64/PKGBUILD  2012-03-08 20:19:22 UTC (rev 152684)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru ib...@archlinux.org
-
-pkgname=dconf
-pkgver=0.11.5
-pkgrel=1
-pkgdesc=A low-level configuration system.
-arch=(i686 x86_64)
-url=http://live.gnome.org/dconf;
-license=('LGPL2.1')
-depends=('glib2' 'gdk-pixbuf2')
-makedepends=('vala' 'gtk3')
-optdepends=('gtk3: for dconf-editor')
-install=dconf.install

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

2012-03-08 Thread Ionut Biru
Date: Thursday, March 8, 2012 @ 15:25:59
  Author: ibiru
Revision: 152685

update to 3.2.4

Modified:
  gconf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-03-08 20:19:22 UTC (rev 152684)
+++ PKGBUILD2012-03-08 20:25:59 UTC (rev 152685)
@@ -2,7 +2,7 @@
 # Maintainer:  Jan de Groot j...@archlinux.org
 
 pkgname=gconf
-pkgver=3.2.3
+pkgver=3.2.4
 pkgrel=1
 pkgdesc=A configuration database system
 arch=(i686 x86_64)
@@ -12,23 +12,23 @@
 options=('!libtool')
 install=gconf.install
 url=http://www.gnome.org;
-source=(http://ftp.gnome.org/pub/gnome/sources/GConf/3.2/GConf-${pkgver}.tar.xz
+source=(http://ftp.gnome.org/pub/gnome/sources/GConf/3.2/GConf-$pkgver.tar.xz
 gconf-merge-schema
 gconfpkg
 gconf-reload.patch
 01_xml-gettext-domain.patch)
-sha256sums=('9eb55dd1d009b6eba9c32e3fae87d3aa45a33629a5e2031ed9f5acb05efaa149'
+sha256sums=('4beda17198f6dcea4250182135739f873da6a19c36f3346bbdb6171a10eccf24'
 'ee6b6e6f4975dad13a8c45f1c1f0547a99373bdecdcd6604bfc12965c328a028'
 'bf1928718caa5df2b9e54a13cfd0f15a8fe0e09e86b84385ce023616a114e898'
 '567b78d8b4b4bbcb77c5f134d57bc503c34867fcc6341c0b01716bcaa4a21694'
 'c883dec2b96978874a53700cfe7f26f24f8296767203e970bc6402b4b9945eb8')
 
 build() {
-  cd ${srcdir}/GConf-${pkgver}
+  cd GConf-$pkgver
   # Patch from fedora - reloads gconf after installing schemas
-  patch -Np1 -i ${srcdir}/gconf-reload.patch
+  patch -Np1 -i $srcdir/gconf-reload.patch
   # http://bugzilla.gnome.org/show_bug.cgi?id=568845
-  patch -Np1 -i ${srcdir}/01_xml-gettext-domain.patch
+  patch -Np1 -i $srcdir/01_xml-gettext-domain.patch
 
   # Python2 fix
   sed -i '1s|#!/usr/bin/env python$|2|' gsettings/gsettings-schema-convert
@@ -42,10 +42,10 @@
 }
 
 package() {
-  cd ${srcdir}/GConf-${pkgver}
-  make DESTDIR=${pkgdir} install
+  cd GConf-$pkgver
+  make DESTDIR=$pkgdir install
 
-  install -m755 -d ${pkgdir}/etc/gconf/gconf.xml.system
-  install -m755 ${srcdir}/gconf-merge-schema ${pkgdir}/usr/bin/
-  install -Dm755 ${srcdir}/gconfpkg ${pkgdir}/usr/sbin/gconfpkg
+  install -m755 -d $pkgdir/etc/gconf/gconf.xml.system
+  install -m755 $srcdir/gconf-merge-schema $pkgdir/usr/bin/
+  install -Dm755 $srcdir/gconfpkg $pkgdir/usr/sbin/gconfpkg
 }



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

2012-03-08 Thread Ionut Biru
Date: Thursday, March 8, 2012 @ 15:27:23
  Author: ibiru
Revision: 152686

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  gconf/repos/gnome-unstable-i686/
  gconf/repos/gnome-unstable-i686/01_xml-gettext-domain.patch
(from rev 152685, gconf/trunk/01_xml-gettext-domain.patch)
  gconf/repos/gnome-unstable-i686/PKGBUILD
(from rev 152685, gconf/trunk/PKGBUILD)
  gconf/repos/gnome-unstable-i686/gconf-merge-schema
(from rev 152685, gconf/trunk/gconf-merge-schema)
  gconf/repos/gnome-unstable-i686/gconf-reload.patch
(from rev 152685, gconf/trunk/gconf-reload.patch)
  gconf/repos/gnome-unstable-i686/gconf.install
(from rev 152685, gconf/trunk/gconf.install)
  gconf/repos/gnome-unstable-i686/gconfpkg
(from rev 152685, gconf/trunk/gconfpkg)
  gconf/repos/gnome-unstable-x86_64/
  gconf/repos/gnome-unstable-x86_64/01_xml-gettext-domain.patch
(from rev 152685, gconf/trunk/01_xml-gettext-domain.patch)
  gconf/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 152685, gconf/trunk/PKGBUILD)
  gconf/repos/gnome-unstable-x86_64/gconf-merge-schema
(from rev 152685, gconf/trunk/gconf-merge-schema)
  gconf/repos/gnome-unstable-x86_64/gconf-reload.patch
(from rev 152685, gconf/trunk/gconf-reload.patch)
  gconf/repos/gnome-unstable-x86_64/gconf.install
(from rev 152685, gconf/trunk/gconf.install)
  gconf/repos/gnome-unstable-x86_64/gconfpkg
(from rev 152685, gconf/trunk/gconfpkg)

---+
 gnome-unstable-i686/01_xml-gettext-domain.patch   |  362 
 gnome-unstable-i686/PKGBUILD  |   51 ++
 gnome-unstable-i686/gconf-merge-schema|   34 +
 gnome-unstable-i686/gconf-reload.patch|   20 +
 gnome-unstable-i686/gconf.install |   20 +
 gnome-unstable-i686/gconfpkg  |   50 ++
 gnome-unstable-x86_64/01_xml-gettext-domain.patch |  362 
 gnome-unstable-x86_64/PKGBUILD|   51 ++
 gnome-unstable-x86_64/gconf-merge-schema  |   34 +
 gnome-unstable-x86_64/gconf-reload.patch  |   20 +
 gnome-unstable-x86_64/gconf.install   |   20 +
 gnome-unstable-x86_64/gconfpkg|   50 ++
 12 files changed, 1074 insertions(+)

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


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

2012-03-08 Thread Evangelos Foutras
Date: Thursday, March 8, 2012 @ 15:29:58
  Author: foutrelis
Revision: 152687

upgpkg: iptraf-ng 1.1.1-1

New upstream release.

Modified:
  iptraf-ng/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-03-08 20:27:23 UTC (rev 152686)
+++ PKGBUILD2012-03-08 20:29:58 UTC (rev 152687)
@@ -3,7 +3,7 @@
 # Maintainer: sh0 m...@sh0.org
 
 pkgname=iptraf-ng
-pkgver=1.1.0
+pkgver=1.1.1
 pkgrel=1
 pkgdesc=A console-based network monitoring utility (a fork of original 
iptraf)
 url=https://fedorahosted.org/iptraf-ng/;
@@ -13,7 +13,7 @@
 replaces=('iptraf')
 options=('!libtool')
 source=(https://fedorahosted.org/releases/i/p/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('79a3787027515f688a35173ffbee6432')
+md5sums=('a48c30c186aafc1e8921b611236b732b')
 
 build() {
   cd $srcdir/$pkgname-$pkgver



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

2012-03-08 Thread Evangelos Foutras
Date: Thursday, March 8, 2012 @ 15:30:23
  Author: foutrelis
Revision: 152688

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

Added:
  iptraf-ng/repos/extra-i686/PKGBUILD
(from rev 152687, iptraf-ng/trunk/PKGBUILD)
  iptraf-ng/repos/extra-x86_64/PKGBUILD
(from rev 152687, iptraf-ng/trunk/PKGBUILD)
Deleted:
  iptraf-ng/repos/extra-i686/PKGBUILD
  iptraf-ng/repos/extra-x86_64/PKGBUILD

---+
 extra-i686/PKGBUILD   |   62 
 extra-x86_64/PKGBUILD |   62 
 2 files changed, 62 insertions(+), 62 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-03-08 20:29:58 UTC (rev 152687)
+++ extra-i686/PKGBUILD 2012-03-08 20:30:23 UTC (rev 152688)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru ib...@archlinux.org
-# Maintainer: sh0 m...@sh0.org
-
-pkgname=iptraf-ng
-pkgver=1.1.0
-pkgrel=1
-pkgdesc=A console-based network monitoring utility (a fork of original 
iptraf)
-url=https://fedorahosted.org/iptraf-ng/;
-arch=('i686' 'x86_64')
-depends=('ncurses')
-license=('GPL2')
-replaces=('iptraf')
-options=('!libtool')
-source=(https://fedorahosted.org/releases/i/p/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('79a3787027515f688a35173ffbee6432')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  sed s/ncurses5-config/ncursesw5-config/ -i configure.ac
-  autoreconf -fi
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var
-  make CFLAGS=$CFLAGS
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-  install -dm755 $pkgdir/var/lib/iptraf
-}

Copied: iptraf-ng/repos/extra-i686/PKGBUILD (from rev 152687, 
iptraf-ng/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-03-08 20:30:23 UTC (rev 152688)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+# Maintainer: sh0 m...@sh0.org
+
+pkgname=iptraf-ng
+pkgver=1.1.1
+pkgrel=1
+pkgdesc=A console-based network monitoring utility (a fork of original 
iptraf)
+url=https://fedorahosted.org/iptraf-ng/;
+arch=('i686' 'x86_64')
+depends=('ncurses')
+license=('GPL2')
+replaces=('iptraf')
+options=('!libtool')
+source=(https://fedorahosted.org/releases/i/p/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('a48c30c186aafc1e8921b611236b732b')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  sed s/ncurses5-config/ncursesw5-config/ -i configure.ac
+  autoreconf -fi
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var
+  make CFLAGS=$CFLAGS
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  install -dm755 $pkgdir/var/lib/iptraf
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-03-08 20:29:58 UTC (rev 152687)
+++ extra-x86_64/PKGBUILD   2012-03-08 20:30:23 UTC (rev 152688)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru ib...@archlinux.org
-# Maintainer: sh0 m...@sh0.org
-
-pkgname=iptraf-ng
-pkgver=1.1.0
-pkgrel=1
-pkgdesc=A console-based network monitoring utility (a fork of original 
iptraf)
-url=https://fedorahosted.org/iptraf-ng/;
-arch=('i686' 'x86_64')
-depends=('ncurses')
-license=('GPL2')
-replaces=('iptraf')
-options=('!libtool')
-source=(https://fedorahosted.org/releases/i/p/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('79a3787027515f688a35173ffbee6432')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  sed s/ncurses5-config/ncursesw5-config/ -i configure.ac
-  autoreconf -fi
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var
-  make CFLAGS=$CFLAGS
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-  install -dm755 $pkgdir/var/lib/iptraf
-}

Copied: iptraf-ng/repos/extra-x86_64/PKGBUILD (from rev 152687, 
iptraf-ng/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-03-08 20:30:23 UTC (rev 152688)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+# Maintainer: sh0 m...@sh0.org
+
+pkgname=iptraf-ng
+pkgver=1.1.1
+pkgrel=1
+pkgdesc=A console-based network monitoring utility (a fork of original 
iptraf)
+url=https://fedorahosted.org/iptraf-ng/;
+arch=('i686' 'x86_64')
+depends=('ncurses')
+license=('GPL2')
+replaces=('iptraf')
+options=('!libtool')
+source=(https://fedorahosted.org/releases/i/p/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('a48c30c186aafc1e8921b611236b732b')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  sed s/ncurses5-config/ncursesw5-config/ -i configure.ac
+  autoreconf -fi
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var
+  make CFLAGS=$CFLAGS
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make 

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

2012-03-08 Thread Ionut Biru
Date: Thursday, March 8, 2012 @ 15:30:49
  Author: ibiru
Revision: 152689

update to 3.3.91

Modified:
  gdl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-03-08 20:30:23 UTC (rev 152688)
+++ PKGBUILD2012-03-08 20:30:49 UTC (rev 152689)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=gdl
-pkgver=3.2.0
+pkgver=3.3.91
 pkgrel=1
 pkgdesc=GNOME Docking Library
 arch=(i686 x86_64)
@@ -11,17 +11,17 @@
 depends=('gtk3')
 makedepends=('gtk-doc' 'intltool' 'gobject-introspection')
 options=('!libtool')
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('f4839224b7837efb8fbec8666f8a3bb1ce9ea110f06c57a8b9438faa0abab533')
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('c251d9489671e904d3ba7566b8f2a6355b37879a6461bdd641f744c7dd3070c8')
 
 build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
+  cd $pkgname-$pkgver
   ./configure --prefix=/usr --sysconfdir=/etc \
   --localstatedir=/var --disable-static
   make
 }
 
 package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
 }



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

2012-03-08 Thread Ionut Biru
Date: Thursday, March 8, 2012 @ 15:35:00
  Author: ibiru
Revision: 152690

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  gdl/repos/gnome-unstable-i686/
  gdl/repos/gnome-unstable-i686/PKGBUILD
(from rev 152689, gdl/trunk/PKGBUILD)
  gdl/repos/gnome-unstable-x86_64/
  gdl/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 152689, gdl/trunk/PKGBUILD)

+
 gnome-unstable-i686/PKGBUILD   |   27 +++
 gnome-unstable-x86_64/PKGBUILD |   27 +++
 2 files changed, 54 insertions(+)

Copied: gdl/repos/gnome-unstable-i686/PKGBUILD (from rev 152689, 
gdl/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2012-03-08 20:35:00 UTC (rev 152690)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=gdl
+pkgver=3.3.91
+pkgrel=1
+pkgdesc=GNOME Docking Library
+arch=(i686 x86_64)
+license=('GPL')
+url=http://www.gnome.org/;
+depends=('gtk3')
+makedepends=('gtk-doc' 'intltool' 'gobject-introspection')
+options=('!libtool')
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('c251d9489671e904d3ba7566b8f2a6355b37879a6461bdd641f744c7dd3070c8')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: gdl/repos/gnome-unstable-x86_64/PKGBUILD (from rev 152689, 
gdl/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2012-03-08 20:35:00 UTC (rev 152690)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=gdl
+pkgver=3.3.91
+pkgrel=1
+pkgdesc=GNOME Docking Library
+arch=(i686 x86_64)
+license=('GPL')
+url=http://www.gnome.org/;
+depends=('gtk3')
+makedepends=('gtk-doc' 'intltool' 'gobject-introspection')
+options=('!libtool')
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('c251d9489671e904d3ba7566b8f2a6355b37879a6461bdd641f744c7dd3070c8')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}



[arch-commits] Commit in gnome-online-accounts/trunk (2 files)

2012-03-08 Thread Ionut Biru
Date: Thursday, March 8, 2012 @ 15:39:00
  Author: ibiru
Revision: 152691

update to 3.3.0

Modified:
  gnome-online-accounts/trunk/PKGBUILD
  gnome-online-accounts/trunk/gnome-online-accounts.install

---+
 PKGBUILD  |   10 +-
 gnome-online-accounts.install |2 +-
 2 files changed, 6 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-03-08 20:35:00 UTC (rev 152690)
+++ PKGBUILD2012-03-08 20:39:00 UTC (rev 152691)
@@ -2,7 +2,7 @@
 # Maintainer: Ionut Biru ib...@archlinux.org
 
 pkgname=gnome-online-accounts
-pkgver=3.2.1
+pkgver=3.3.0
 pkgrel=1
 pkgdesc=GNOME service to access online accounts
 arch=(i686 x86_64)
@@ -12,17 +12,17 @@
 makedepends=('intltool' 'libxslt' 'gobject-introspection' 'docbook-xsl')
 options=(!libtool)
 install=$pkgname.install
-source=(http://download.gnome.org/sources/$pkgname/3.2/$pkgname-$pkgver.tar.xz)
-sha256sums=('549c210c358fd05598a00cb7a8d8f5b0fd6e18f7cb321c3c1641fb18f1312234')
+source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('c5c0bc70b46f5ed5d6aa734834b2e0ef73fb8eddd9fd20606f0582043efb5d22')
 
 build() {
-  cd $srcdir/$pkgname-$pkgver
+  cd $pkgname-$pkgver
   ./configure --prefix=/usr --libexec=/usr/lib/gnome-online-accounts
   make
 }
 
 package() {
-  cd $srcdir/$pkgname-$pkgver
+  cd $pkgname-$pkgver
   make DESTDIR=$pkgdir install
 }
 

Modified: gnome-online-accounts.install
===
--- gnome-online-accounts.install   2012-03-08 20:35:00 UTC (rev 152690)
+++ gnome-online-accounts.install   2012-03-08 20:39:00 UTC (rev 152691)
@@ -1,5 +1,5 @@
 post_install () {
-gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
 }
 
 post_upgrade() {



[arch-commits] Commit in gnome-online-accounts/repos (6 files)

2012-03-08 Thread Ionut Biru
Date: Thursday, March 8, 2012 @ 15:39:45
  Author: ibiru
Revision: 152692

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  gnome-online-accounts/repos/gnome-unstable-i686/
  gnome-online-accounts/repos/gnome-unstable-i686/PKGBUILD
(from rev 152691, gnome-online-accounts/trunk/PKGBUILD)
  gnome-online-accounts/repos/gnome-unstable-i686/gnome-online-accounts.install
(from rev 152691, gnome-online-accounts/trunk/gnome-online-accounts.install)
  gnome-online-accounts/repos/gnome-unstable-x86_64/
  gnome-online-accounts/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 152691, gnome-online-accounts/trunk/PKGBUILD)
  
gnome-online-accounts/repos/gnome-unstable-x86_64/gnome-online-accounts.install
(from rev 152691, gnome-online-accounts/trunk/gnome-online-accounts.install)

-+
 gnome-unstable-i686/PKGBUILD|   29 ++
 gnome-unstable-i686/gnome-online-accounts.install   |   11 ++
 gnome-unstable-x86_64/PKGBUILD  |   29 ++
 gnome-unstable-x86_64/gnome-online-accounts.install |   11 ++
 4 files changed, 80 insertions(+)

Copied: gnome-online-accounts/repos/gnome-unstable-i686/PKGBUILD (from rev 
152691, gnome-online-accounts/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2012-03-08 20:39:45 UTC (rev 152692)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+
+pkgname=gnome-online-accounts
+pkgver=3.3.0
+pkgrel=1
+pkgdesc=GNOME service to access online accounts
+arch=(i686 x86_64)
+url=http://www.gnome.org;
+license=('GPL')
+depends=('libwebkit3' 'json-glib' 'libnotify' 'rest' 'hicolor-icon-theme')
+makedepends=('intltool' 'libxslt' 'gobject-introspection' 'docbook-xsl')
+options=(!libtool)
+install=$pkgname.install
+source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('c5c0bc70b46f5ed5d6aa734834b2e0ef73fb8eddd9fd20606f0582043efb5d22')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --libexec=/usr/lib/gnome-online-accounts
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: 
gnome-online-accounts/repos/gnome-unstable-i686/gnome-online-accounts.install 
(from rev 152691, gnome-online-accounts/trunk/gnome-online-accounts.install)
===
--- gnome-unstable-i686/gnome-online-accounts.install   
(rev 0)
+++ gnome-unstable-i686/gnome-online-accounts.install   2012-03-08 20:39:45 UTC 
(rev 152692)
@@ -0,0 +1,11 @@
+post_install () {
+gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Copied: gnome-online-accounts/repos/gnome-unstable-x86_64/PKGBUILD (from rev 
152691, gnome-online-accounts/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2012-03-08 20:39:45 UTC (rev 152692)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+
+pkgname=gnome-online-accounts
+pkgver=3.3.0
+pkgrel=1
+pkgdesc=GNOME service to access online accounts
+arch=(i686 x86_64)
+url=http://www.gnome.org;
+license=('GPL')
+depends=('libwebkit3' 'json-glib' 'libnotify' 'rest' 'hicolor-icon-theme')
+makedepends=('intltool' 'libxslt' 'gobject-introspection' 'docbook-xsl')
+options=(!libtool)
+install=$pkgname.install
+source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('c5c0bc70b46f5ed5d6aa734834b2e0ef73fb8eddd9fd20606f0582043efb5d22')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --libexec=/usr/lib/gnome-online-accounts
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: 
gnome-online-accounts/repos/gnome-unstable-x86_64/gnome-online-accounts.install 
(from rev 152691, gnome-online-accounts/trunk/gnome-online-accounts.install)
===
--- gnome-unstable-x86_64/gnome-online-accounts.install 
(rev 0)
+++ gnome-unstable-x86_64/gnome-online-accounts.install 2012-03-08 20:39:45 UTC 
(rev 152692)
@@ -0,0 +1,11 @@
+post_install () {
+gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}



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

2012-03-08 Thread Ionut Biru
Date: Thursday, March 8, 2012 @ 16:16:34
  Author: ibiru
Revision: 152693

update to 3.4.0

Modified:
  libgweather/trunk/PKGBUILD
  libgweather/trunk/gettext-not-xml.patch
  libgweather/trunk/libgweather.install

---+
 PKGBUILD  |   24 +-
 gettext-not-xml.patch |   64 
 libgweather.install   |8 +++---
 3 files changed, 48 insertions(+), 48 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-03-08 20:39:45 UTC (rev 152692)
+++ PKGBUILD2012-03-08 21:16:34 UTC (rev 152693)
@@ -2,25 +2,25 @@
 # Maintainer: Jan de Groot  j...@archlinux.org
 
 pkgname=libgweather
-pkgver=3.2.1
+pkgver=3.4.0
 pkgrel=1
 pkgdesc=Provides access to weather information from the net
 arch=('i686' 'x86_64')
 license=('LGPL')
 depends=('gconf' 'libsoup-gnome' 'gnome-icon-theme')
-makedepends=('pkgconfig' 'intltool' 'gtk-doc' 'gobject-introspection' 
'gnome-common')
+makedepends=('intltool' 'gtk-doc' 'gobject-introspection' 'gnome-common')
 options=('!libtool' '!emptydirs')
 url=http://www.gnome.org/;
 install=libgweather.install
-source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz
 gettext-not-xml.patch)
-sha256sums=('495f6d0f79947d6e601db3220360b1fcd6ae43608cd1571be5bcd5c05b7388d5'
-'5b6bf182294b8974a89492237d98b60678b83efcf31de8a0ca1bebd90f3356a3')
+sha256sums=('db8fdfc022fffd1ef97615c19af278fb6e1fca5ebf4ff2da5e255d54869c9e18'
+'3808da5c27bad1152eee824db2cead21de599af198eca017a18e1b0adb366330')
 
 build() {
-cd ${srcdir}/${pkgname}-${pkgver}
+cd $pkgname-$pkgver
 
-patch -Np1 -i ${srcdir}/gettext-not-xml.patch
+patch -Np1 -i $srcdir/gettext-not-xml.patch
 gtkdocize
 autoreconf -fi
 
@@ -31,10 +31,10 @@
 }
 
 package() {
-cd ${srcdir}/${pkgname}-${pkgver}
-make GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR=${pkgdir} install
+cd $pkgname-$pkgver
+make GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR=$pkgdir install
 
-install -m755 -d ${pkgdir}/usr/share/gconf/schemas
-gconf-merge-schema ${pkgdir}/usr/share/gconf/schemas/${pkgname}.schemas 
--domain libgweather ${pkgdir}/etc/gconf/schemas/*.schemas
-rm -f ${pkgdir}/etc/gconf/schemas/*.schemas
+install -m755 -d $pkgdir/usr/share/gconf/schemas
+gconf-merge-schema $pkgdir/usr/share/gconf/schemas/$pkgname.schemas 
--domain libgweather $pkgdir/etc/gconf/schemas/*.schemas
+rm -f $pkgdir/etc/gconf/schemas/*.schemas
 }

Modified: gettext-not-xml.patch
===
--- gettext-not-xml.patch   2012-03-08 20:39:45 UTC (rev 152692)
+++ gettext-not-xml.patch   2012-03-08 21:16:34 UTC (rev 152693)
@@ -1,7 +1,7 @@
-diff -up libgweather-3.1.3/configure.ac.gettext libgweather-3.1.3/configure.ac
 libgweather-3.1.3/configure.ac.gettext 2011-07-04 10:52:13.0 
-0400
-+++ libgweather-3.1.3/configure.ac 2011-07-06 20:26:17.180168365 -0400
-@@ -43,19 +43,16 @@ GNOME_MAINTAINER_MODE_DEFINES
+diff -Nur libgweather-3.4.0.orig/configure.ac libgweather-3.4.0/configure.ac
+--- libgweather-3.4.0.orig/configure.ac2012-03-08 20:49:21.497783149 
+
 libgweather-3.4.0/configure.ac 2012-03-08 20:59:21.082941563 +
+@@ -43,19 +43,16 @@
  LT_PREREQ([2.2.6])
  LT_INIT([dlopen win32-dll disable-static])
  
@@ -16,16 +16,16 @@
  AC_PATH_PROG(GCONFTOOL, gconftool-2)
  
 -AC_ARG_ENABLE(all-translations-in-one-xml,
--[AC_HELP_STRING([--enable-all-translations-in-one-xml],
+-[AS_HELP_STRING([--enable-all-translations-in-one-xml],
 -[Put all translations in a big Locations.xml file 
(slow to parse)])],
 -[enable_big_xml=yes],
 -[enable_big_xml=no])
 -AM_CONDITIONAL(USE_ONE_BIG_XML, test x$enable_big_xml = xyes)
 -
  AC_ARG_ENABLE(locations-compression,
- [AC_HELP_STRING([--enable-locations-compression],
+ [AS_HELP_STRING([--enable-locations-compression],
  [Compress Locations.xml files])],
-@@ -191,7 +188,7 @@ AC_OUTPUT([
+@@ -178,7 +175,7 @@
  Makefile
  doc/Makefile
  po/Makefile.in
@@ -34,9 +34,9 @@
  libgweather/Makefile
  libgweather/gweather-3.0.pc
  libgweather/gweather-3.0-uninstalled.pc
-@@ -199,12 +196,6 @@ data/Makefile
- icons/Makefile
+@@ -187,12 +184,6 @@
  ])
+ AC_OUTPUT
  
 -if test x$enable_big_xml = xyes; then
 -  LOCATIONS_XML_TRANSLATIONS=one big file
@@ -47,17 +47,17 @@
  dnl 
***
  dnl *** Display Summary 
***
  dnl 
***
-@@ -215,6 +206,4 @@ libgweather-$VERSION configure summary:
+@@ -203,6 +194,4 @@
  

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

2012-03-08 Thread Ionut Biru
Date: Thursday, March 8, 2012 @ 16:18:37
  Author: ibiru
Revision: 152694

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  libgweather/repos/gnome-unstable-i686/
  libgweather/repos/gnome-unstable-i686/PKGBUILD
(from rev 152693, libgweather/trunk/PKGBUILD)
  libgweather/repos/gnome-unstable-i686/gettext-not-xml.patch
(from rev 152693, libgweather/trunk/gettext-not-xml.patch)
  libgweather/repos/gnome-unstable-i686/libgweather.install
(from rev 152693, libgweather/trunk/libgweather.install)
  libgweather/repos/gnome-unstable-x86_64/
  libgweather/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 152693, libgweather/trunk/PKGBUILD)
  libgweather/repos/gnome-unstable-x86_64/gettext-not-xml.patch
(from rev 152693, libgweather/trunk/gettext-not-xml.patch)
  libgweather/repos/gnome-unstable-x86_64/libgweather.install
(from rev 152693, libgweather/trunk/libgweather.install)

-+
 gnome-unstable-i686/PKGBUILD|   40 +
 gnome-unstable-i686/gettext-not-xml.patch   |  532 ++
 gnome-unstable-i686/libgweather.install |   22 +
 gnome-unstable-x86_64/PKGBUILD  |   40 +
 gnome-unstable-x86_64/gettext-not-xml.patch |  532 ++
 gnome-unstable-x86_64/libgweather.install   |   22 +
 6 files changed, 1188 insertions(+)

Copied: libgweather/repos/gnome-unstable-i686/PKGBUILD (from rev 152693, 
libgweather/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2012-03-08 21:18:37 UTC (rev 152694)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Jan de Groot  j...@archlinux.org
+
+pkgname=libgweather
+pkgver=3.4.0
+pkgrel=1
+pkgdesc=Provides access to weather information from the net
+arch=('i686' 'x86_64')
+license=('LGPL')
+depends=('gconf' 'libsoup-gnome' 'gnome-icon-theme')
+makedepends=('intltool' 'gtk-doc' 'gobject-introspection' 'gnome-common')
+options=('!libtool' '!emptydirs')
+url=http://www.gnome.org/;
+install=libgweather.install
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz
+gettext-not-xml.patch)
+sha256sums=('db8fdfc022fffd1ef97615c19af278fb6e1fca5ebf4ff2da5e255d54869c9e18'
+'3808da5c27bad1152eee824db2cead21de599af198eca017a18e1b0adb366330')
+
+build() {
+cd $pkgname-$pkgver
+
+patch -Np1 -i $srcdir/gettext-not-xml.patch
+gtkdocize
+autoreconf -fi
+
+./configure --prefix=/usr --sysconfdir=/etc \
+--localstatedir=/var --disable-static \
+--enable-locations-compression
+make
+}
+
+package() {
+cd $pkgname-$pkgver
+make GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR=$pkgdir install
+
+install -m755 -d $pkgdir/usr/share/gconf/schemas
+gconf-merge-schema $pkgdir/usr/share/gconf/schemas/$pkgname.schemas 
--domain libgweather $pkgdir/etc/gconf/schemas/*.schemas
+rm -f $pkgdir/etc/gconf/schemas/*.schemas
+}

Copied: libgweather/repos/gnome-unstable-i686/gettext-not-xml.patch (from rev 
152693, libgweather/trunk/gettext-not-xml.patch)
===
--- gnome-unstable-i686/gettext-not-xml.patch   (rev 0)
+++ gnome-unstable-i686/gettext-not-xml.patch   2012-03-08 21:18:37 UTC (rev 
152694)
@@ -0,0 +1,532 @@
+diff -Nur libgweather-3.4.0.orig/configure.ac libgweather-3.4.0/configure.ac
+--- libgweather-3.4.0.orig/configure.ac2012-03-08 20:49:21.497783149 
+
 libgweather-3.4.0/configure.ac 2012-03-08 20:59:21.082941563 +
+@@ -43,19 +43,16 @@
+ LT_PREREQ([2.2.6])
+ LT_INIT([dlopen win32-dll disable-static])
+ 
++dnl IT_PROG_INTLTOOL does this for us in the case of the po/ subdir, but 
we're on our own for po-locations
++AC_OUTPUT_COMMANDS([sed -e /POTFILES =/r po/POTFILES 
po-locations/Makefile.in  po-locations/Makefile])
++IT_PO_SUBDIR([po-locations])
++
+ IT_PROG_INTLTOOL([0.40.6])
+ PKG_PROG_PKG_CONFIG([0.19])
+ 
+ AC_PROG_CC
+ AC_PATH_PROG(GCONFTOOL, gconftool-2)
+ 
+-AC_ARG_ENABLE(all-translations-in-one-xml,
+-[AS_HELP_STRING([--enable-all-translations-in-one-xml],
+-[Put all translations in a big Locations.xml file 
(slow to parse)])],
+-[enable_big_xml=yes],
+-[enable_big_xml=no])
+-AM_CONDITIONAL(USE_ONE_BIG_XML, test x$enable_big_xml = xyes)
+-
+ AC_ARG_ENABLE(locations-compression,
+ [AS_HELP_STRING([--enable-locations-compression],
+ [Compress Locations.xml files])],
+@@ -178,7 +175,7 @@
+ Makefile
+ doc/Makefile
+ po/Makefile.in
+-po-locations/Makefile
++po-locations/Makefile.in
+ libgweather/Makefile
+ libgweather/gweather-3.0.pc
+ libgweather/gweather-3.0-uninstalled.pc
+@@ -187,12 +184,6 @@
+ ])
+ AC_OUTPUT
+ 
+-if test x$enable_big_xml = xyes; then
+-  LOCATIONS_XML_TRANSLATIONS=one big file
+-else

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

2012-03-08 Thread Evangelos Foutras
Date: Thursday, March 8, 2012 @ 16:36:57
  Author: foutrelis
Revision: 152695

upgpkg: chromium 17.0.963.78-1

New upstream release.

Modified:
  chromium/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-03-08 21:18:37 UTC (rev 152694)
+++ PKGBUILD2012-03-08 21:36:57 UTC (rev 152695)
@@ -9,7 +9,7 @@
 # build time.
 
 pkgname=chromium
-pkgver=17.0.963.66
+pkgver=17.0.963.78
 pkgrel=1
 pkgdesc=The open-source project behind Google Chrome, an attempt at creating 
a safer, faster, and more stable browser
 arch=('i686' 'x86_64')
@@ -33,7 +33,7 @@
 gcc-4.6.patch
 nacl-cflags-remove-fstack-protector.patch
 chromium-media-no-sse-r0.patch)
-sha256sums=('34dc897a64a2bd9be234536232c2649e95d3b2623f5ea715472a78a1bdf14801'
+sha256sums=('2956cfeab05def5ab9b21c05a3a49e5d8efadadd4f27c212dd1c185ef05518c9'
 '964fe3a5ec56f2505649aba00f900abe4205674b7fdaa16772647d347173bb01'
 '09bfac44104f4ccda4c228053f689c947b3e97da9a4ab6fa34ce061ee83d0322'
 'c53bfc4db9dde684fbaed6a4bbecb207e3e7a0a2703233426fe076a6d3c557f3'



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

2012-03-08 Thread Evangelos Foutras
Date: Thursday, March 8, 2012 @ 16:37:58
  Author: foutrelis
Revision: 152696

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

Added:
  chromium/repos/extra-i686/PKGBUILD
(from rev 152695, chromium/trunk/PKGBUILD)
  chromium/repos/extra-i686/chromium-media-no-sse-r0.patch
(from rev 152695, chromium/trunk/chromium-media-no-sse-r0.patch)
  chromium/repos/extra-i686/chromium.desktop
(from rev 152695, chromium/trunk/chromium.desktop)
  chromium/repos/extra-i686/chromium.install
(from rev 152695, chromium/trunk/chromium.install)
  chromium/repos/extra-i686/chromium.sh
(from rev 152695, chromium/trunk/chromium.sh)
  chromium/repos/extra-i686/gcc-4.6.patch
(from rev 152695, chromium/trunk/gcc-4.6.patch)
  chromium/repos/extra-i686/nacl-cflags-remove-fstack-protector.patch
(from rev 152695, chromium/trunk/nacl-cflags-remove-fstack-protector.patch)
  chromium/repos/extra-x86_64/PKGBUILD
(from rev 152695, chromium/trunk/PKGBUILD)
  chromium/repos/extra-x86_64/chromium-media-no-sse-r0.patch
(from rev 152695, chromium/trunk/chromium-media-no-sse-r0.patch)
  chromium/repos/extra-x86_64/chromium.desktop
(from rev 152695, chromium/trunk/chromium.desktop)
  chromium/repos/extra-x86_64/chromium.install
(from rev 152695, chromium/trunk/chromium.install)
  chromium/repos/extra-x86_64/chromium.sh
(from rev 152695, chromium/trunk/chromium.sh)
  chromium/repos/extra-x86_64/gcc-4.6.patch
(from rev 152695, chromium/trunk/gcc-4.6.patch)
  chromium/repos/extra-x86_64/nacl-cflags-remove-fstack-protector.patch
(from rev 152695, chromium/trunk/nacl-cflags-remove-fstack-protector.patch)
Deleted:
  chromium/repos/extra-i686/PKGBUILD
  chromium/repos/extra-i686/chromium-media-no-sse-r0.patch
  chromium/repos/extra-i686/chromium.desktop
  chromium/repos/extra-i686/chromium.install
  chromium/repos/extra-i686/chromium.sh
  chromium/repos/extra-i686/gcc-4.6.patch
  chromium/repos/extra-i686/nacl-cflags-remove-fstack-protector.patch
  chromium/repos/extra-x86_64/PKGBUILD
  chromium/repos/extra-x86_64/chromium-media-no-sse-r0.patch
  chromium/repos/extra-x86_64/chromium.desktop
  chromium/repos/extra-x86_64/chromium.install
  chromium/repos/extra-x86_64/chromium.sh
  chromium/repos/extra-x86_64/gcc-4.6.patch
  chromium/repos/extra-x86_64/nacl-cflags-remove-fstack-protector.patch

+
 extra-i686/PKGBUILD|  286 +++
 extra-i686/chromium-media-no-sse-r0.patch  |   34 -
 extra-i686/chromium.desktop|  226 +--
 extra-i686/chromium.install|   24 -
 extra-i686/chromium.sh |8 
 extra-i686/gcc-4.6.patch   |  198 +-
 extra-i686/nacl-cflags-remove-fstack-protector.patch   |   34 -
 extra-x86_64/PKGBUILD  |  286 +++
 extra-x86_64/chromium-media-no-sse-r0.patch|   34 -
 extra-x86_64/chromium.desktop  |  226 +--
 extra-x86_64/chromium.install  |   24 -
 extra-x86_64/chromium.sh   |8 
 extra-x86_64/gcc-4.6.patch |  198 +-
 extra-x86_64/nacl-cflags-remove-fstack-protector.patch |   34 -
 14 files changed, 810 insertions(+), 810 deletions(-)

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


[arch-commits] Commit in evolution-data-server/trunk (2 files)

2012-03-08 Thread Ionut Biru
Date: Thursday, March 8, 2012 @ 17:04:19
  Author: ibiru
Revision: 152697

update to 3.3.91

Added:
  evolution-data-server/trunk/evolution-data-server.install
Modified:
  evolution-data-server/trunk/PKGBUILD

---+
 PKGBUILD  |   16 +---
 evolution-data-server.install |   11 +++
 2 files changed, 20 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-03-08 21:37:58 UTC (rev 152696)
+++ PKGBUILD2012-03-08 22:04:19 UTC (rev 152697)
@@ -2,30 +2,32 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=evolution-data-server
-pkgver=3.2.3
-pkgrel=2
+pkgver=3.3.91
+pkgrel=1
 pkgdesc=Centralized access to appointments and contacts
 arch=('i686' 'x86_64')
 depends=('gconf' 'gnome-online-accounts' 'nss' 'krb5' 'libgweather' 'libical' 
'db' 'libgdata')
 makedepends=('intltool' 'gperf' 'gobject-introspection' 'vala')
 options=('!libtool')
+install=$pkgname.install
 url=http://www.gnome.org;
 license=('GPL')
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/3.2/$pkgname-$pkgver.tar.xz)
-sha256sums=('8760814491fa1ecf8806b31231b30c5f20169790abdc6b78a2faa194fde3987c')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('39718b98764f1d0ff456151eb6127f5f6e76c267592cb79d3c93c5478cd64cc3')
 
 build() {
-  cd $srcdir/$pkgname-$pkgver
+  cd $pkgname-$pkgver
   ./configure --prefix=/usr --sysconfdir=/etc \
   --localstatedir=/var --with-openldap=yes \
   --libexecdir=/usr/lib/evolution-data-server \
   --with-krb5=/usr --with-libdb=/usr \
-  --enable-vala-bindings
+  --enable-vala-bindings \
+  --disable-schemas-install
   sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' -e 's/if test 
$export_dynamic = yes  test -n $export_dynamic_flag_spec; then/  
func_append compile_command  -Wl,-O1,--as-needed\n  func_append 
finalize_command  -Wl,-O1,--as-needed\n\0/' libtool
   make
 }
 
 package() {
-  cd $srcdir/$pkgname-$pkgver
+  cd $pkgname-$pkgver
   make DESTDIR=$pkgdir install
 }

Added: evolution-data-server.install
===
--- evolution-data-server.install   (rev 0)
+++ evolution-data-server.install   2012-03-08 22:04:19 UTC (rev 152697)
@@ -0,0 +1,11 @@
+post_install () {
+glib-compile-schemas /usr/share/glib-2.0/schemas
+}
+
+post_upgrade () {
+post_install
+}
+
+post_remove () {
+post_install
+}



[arch-commits] Commit in evolution-data-server/repos (6 files)

2012-03-08 Thread Ionut Biru
Date: Thursday, March 8, 2012 @ 17:08:05
  Author: ibiru
Revision: 152698

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  evolution-data-server/repos/gnome-unstable-i686/
  evolution-data-server/repos/gnome-unstable-i686/PKGBUILD
(from rev 152697, evolution-data-server/trunk/PKGBUILD)
  evolution-data-server/repos/gnome-unstable-i686/evolution-data-server.install
(from rev 152697, evolution-data-server/trunk/evolution-data-server.install)
  evolution-data-server/repos/gnome-unstable-x86_64/
  evolution-data-server/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 152697, evolution-data-server/trunk/PKGBUILD)
  
evolution-data-server/repos/gnome-unstable-x86_64/evolution-data-server.install
(from rev 152697, evolution-data-server/trunk/evolution-data-server.install)

-+
 gnome-unstable-i686/PKGBUILD|   33 ++
 gnome-unstable-i686/evolution-data-server.install   |   11 ++
 gnome-unstable-x86_64/PKGBUILD  |   33 ++
 gnome-unstable-x86_64/evolution-data-server.install |   11 ++
 4 files changed, 88 insertions(+)

Copied: evolution-data-server/repos/gnome-unstable-i686/PKGBUILD (from rev 
152697, evolution-data-server/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2012-03-08 22:08:05 UTC (rev 152698)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=evolution-data-server
+pkgver=3.3.91
+pkgrel=1
+pkgdesc=Centralized access to appointments and contacts
+arch=('i686' 'x86_64')
+depends=('gconf' 'gnome-online-accounts' 'nss' 'krb5' 'libgweather' 'libical' 
'db' 'libgdata')
+makedepends=('intltool' 'gperf' 'gobject-introspection' 'vala')
+options=('!libtool')
+install=$pkgname.install
+url=http://www.gnome.org;
+license=('GPL')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('39718b98764f1d0ff456151eb6127f5f6e76c267592cb79d3c93c5478cd64cc3')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --with-openldap=yes \
+  --libexecdir=/usr/lib/evolution-data-server \
+  --with-krb5=/usr --with-libdb=/usr \
+  --enable-vala-bindings \
+  --disable-schemas-install
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' -e 's/if test 
$export_dynamic = yes  test -n $export_dynamic_flag_spec; then/  
func_append compile_command  -Wl,-O1,--as-needed\n  func_append 
finalize_command  -Wl,-O1,--as-needed\n\0/' libtool
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: 
evolution-data-server/repos/gnome-unstable-i686/evolution-data-server.install 
(from rev 152697, evolution-data-server/trunk/evolution-data-server.install)
===
--- gnome-unstable-i686/evolution-data-server.install   
(rev 0)
+++ gnome-unstable-i686/evolution-data-server.install   2012-03-08 22:08:05 UTC 
(rev 152698)
@@ -0,0 +1,11 @@
+post_install () {
+glib-compile-schemas /usr/share/glib-2.0/schemas
+}
+
+post_upgrade () {
+post_install
+}
+
+post_remove () {
+post_install
+}

Copied: evolution-data-server/repos/gnome-unstable-x86_64/PKGBUILD (from rev 
152697, evolution-data-server/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2012-03-08 22:08:05 UTC (rev 152698)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=evolution-data-server
+pkgver=3.3.91
+pkgrel=1
+pkgdesc=Centralized access to appointments and contacts
+arch=('i686' 'x86_64')
+depends=('gconf' 'gnome-online-accounts' 'nss' 'krb5' 'libgweather' 'libical' 
'db' 'libgdata')
+makedepends=('intltool' 'gperf' 'gobject-introspection' 'vala')
+options=('!libtool')
+install=$pkgname.install
+url=http://www.gnome.org;
+license=('GPL')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('39718b98764f1d0ff456151eb6127f5f6e76c267592cb79d3c93c5478cd64cc3')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --with-openldap=yes \
+  --libexecdir=/usr/lib/evolution-data-server \
+  --with-krb5=/usr --with-libdb=/usr \
+  --enable-vala-bindings \
+  --disable-schemas-install
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' -e 's/if test 
$export_dynamic = yes  test -n $export_dynamic_flag_spec; then/  
func_append compile_command  -Wl,-O1,--as-needed\n  func_append 
finalize_command  -Wl,-O1,--as-needed\n\0/' libtool
+  make
+}
+
+package() {
+  

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

2012-03-08 Thread Tom Gundersen
Date: Thursday, March 8, 2012 @ 18:18:16
  Author: tomegun
Revision: 152699

upgpkg: libgphoto2 2.4.13-1

upstream update
add libusb1 support (in addition to the old libusb-compat)
don't delete .a files, as they don't exist
remove some noop ./configure options
remove the udev helper as it is no longer used by any udev rule
  this means libgphoto2 don't have to be rebuilt when udev
  moves from /lib to /usr/lib
remove support for the 'camera' group (as discussed on irc)
  this is not needed as consolekit/systemd applies acl to cameras
  in the same way as everything else (audio, video,...), also it
  it is suggested by upstream not to use the group

Modified:
  libgphoto2/trunk/PKGBUILD
  libgphoto2/trunk/libgphoto2.install

+
 PKGBUILD   |   19 ---
 libgphoto2.install |   18 --
 2 files changed, 16 insertions(+), 21 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-03-08 22:08:05 UTC (rev 152698)
+++ PKGBUILD2012-03-08 23:18:16 UTC (rev 152699)
@@ -1,23 +1,26 @@
 # $Id$
-# Maintainer: Eduardo Romero edua...@archlinux.org
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: Tom Gundersen t...@jklm.no
+# Contributor: Eduardo Romero edua...@archlinux.org
 # Contributor: Damir Perisa damir.per...@bluewin.ch
 
 pkgname=libgphoto2
-pkgver=2.4.11
+pkgver=2.4.13
 pkgrel=1
 pkgdesc=The core library of gphoto2, designed to allow access to digital 
camera by external programs.
 arch=(i686 x86_64)
 url=http://www.gphoto.org;
 license=(LGPL)
-depends=('libexif' 'libjpeg=8' 'gd' 'libltdl' 'libusb-compat')
+depends=('libexif' 'libjpeg=8' 'gd' 'libltdl' 'libusb-compat' 'libusb')
 install=libgphoto2.install
 options=('libtool')
 source=(http://downloads.sourceforge.net/gphoto/${pkgname}-${pkgver}.tar.gz)
-md5sums=('a2230c31e320acb7ececd90bc02fe515')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
-  udevscriptdir=/lib/udev ./configure --prefix=/usr --with-drivers=all 
--disable-static --disable-rpath
+  ./configure \
+   --prefix=/usr \
+   --disable-rpath
   make
 }
 
@@ -25,14 +28,16 @@
   cd ${srcdir}/${pkgname}-${pkgver}
   make DESTDIR=${pkgdir} install
 
-  rm -f ${pkgdir}/usr/lib/libgphoto2/${pkgver}/*.a
+  # Remove unused udev helper
+  rm -rf ${pkgdir}/usr/lib/udev
 
   install -m755 -d ${pkgdir}/lib/udev/rules.d
   LD_LIBRARY_PATH=${pkgdir}/usr/lib${LD_LIBRARY_PATH:+:}$LD_LIBRARY_PATH \
   CAMLIBS=${pkgdir}/usr/lib/libgphoto2/${pkgver} \
-  ${pkgdir}/usr/lib/libgphoto2/print-camera-list udev-rules version 136 
group camera mode 0660  \
+  ${pkgdir}/usr/lib/libgphoto2/print-camera-list udev-rules version 136 
 \
   ${pkgdir}/lib/udev/rules.d/40-gphoto.rules
 
   # Remove recursive symlink
   rm -f ${pkgdir}/usr/include/gphoto2/gphoto2
 }
+md5sums=('7d8a1d3ae02069af381f07a0bb4bfc15')

Modified: libgphoto2.install
===
--- libgphoto2.install  2012-03-08 22:08:05 UTC (rev 152698)
+++ libgphoto2.install  2012-03-08 23:18:16 UTC (rev 152699)
@@ -1,16 +1,6 @@
-post_install() {
-  getent group camera /dev/null || usr/sbin/groupadd -g 97 camera
-  /bin/cat THEEND
-NOTE
-
-Add your user to group 'camera' to use camera devices.
-THEEND
-}
-
 post_upgrade() {
-  getent group camera /dev/null || usr/sbin/groupadd -g 97 camera
+if [ $(vercmp $2 2.14.13) -lt 0 ]; then
+  groupdel camera /dev/null
+  echo Users no longer need to be in the 'camera' group to use camera devices
+fi
 }
-
-post_remove() {
-  usr/sbin/groupdel camera /dev/null
-}



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

2012-03-08 Thread Tom Gundersen
Date: Thursday, March 8, 2012 @ 18:18:37
  Author: tomegun
Revision: 152700

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

Added:
  libgphoto2/repos/testing-i686/
  libgphoto2/repos/testing-i686/PKGBUILD
(from rev 152699, libgphoto2/trunk/PKGBUILD)
  libgphoto2/repos/testing-i686/libgphoto2.install
(from rev 152699, libgphoto2/trunk/libgphoto2.install)
  libgphoto2/repos/testing-x86_64/
  libgphoto2/repos/testing-x86_64/PKGBUILD
(from rev 152699, libgphoto2/trunk/PKGBUILD)
  libgphoto2/repos/testing-x86_64/libgphoto2.install
(from rev 152699, libgphoto2/trunk/libgphoto2.install)

---+
 testing-i686/PKGBUILD |   43 
 testing-i686/libgphoto2.install   |6 +
 testing-x86_64/PKGBUILD   |   43 
 testing-x86_64/libgphoto2.install |6 +
 4 files changed, 98 insertions(+)

Copied: libgphoto2/repos/testing-i686/PKGBUILD (from rev 152699, 
libgphoto2/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-03-08 23:18:37 UTC (rev 152700)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: Tom Gundersen t...@jklm.no
+# Contributor: Eduardo Romero edua...@archlinux.org
+# Contributor: Damir Perisa damir.per...@bluewin.ch
+
+pkgname=libgphoto2
+pkgver=2.4.13
+pkgrel=1
+pkgdesc=The core library of gphoto2, designed to allow access to digital 
camera by external programs.
+arch=(i686 x86_64)
+url=http://www.gphoto.org;
+license=(LGPL)
+depends=('libexif' 'libjpeg=8' 'gd' 'libltdl' 'libusb-compat' 'libusb')
+install=libgphoto2.install
+options=('libtool')
+source=(http://downloads.sourceforge.net/gphoto/${pkgname}-${pkgver}.tar.gz)
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure \
+   --prefix=/usr \
+   --disable-rpath
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  # Remove unused udev helper
+  rm -rf ${pkgdir}/usr/lib/udev
+
+  install -m755 -d ${pkgdir}/lib/udev/rules.d
+  LD_LIBRARY_PATH=${pkgdir}/usr/lib${LD_LIBRARY_PATH:+:}$LD_LIBRARY_PATH \
+  CAMLIBS=${pkgdir}/usr/lib/libgphoto2/${pkgver} \
+  ${pkgdir}/usr/lib/libgphoto2/print-camera-list udev-rules version 136 
 \
+  ${pkgdir}/lib/udev/rules.d/40-gphoto.rules
+
+  # Remove recursive symlink
+  rm -f ${pkgdir}/usr/include/gphoto2/gphoto2
+}
+md5sums=('7d8a1d3ae02069af381f07a0bb4bfc15')

Copied: libgphoto2/repos/testing-i686/libgphoto2.install (from rev 152699, 
libgphoto2/trunk/libgphoto2.install)
===
--- testing-i686/libgphoto2.install (rev 0)
+++ testing-i686/libgphoto2.install 2012-03-08 23:18:37 UTC (rev 152700)
@@ -0,0 +1,6 @@
+post_upgrade() {
+if [ $(vercmp $2 2.14.13) -lt 0 ]; then
+  groupdel camera /dev/null
+  echo Users no longer need to be in the 'camera' group to use camera devices
+fi
+}

Copied: libgphoto2/repos/testing-x86_64/PKGBUILD (from rev 152699, 
libgphoto2/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2012-03-08 23:18:37 UTC (rev 152700)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: Tom Gundersen t...@jklm.no
+# Contributor: Eduardo Romero edua...@archlinux.org
+# Contributor: Damir Perisa damir.per...@bluewin.ch
+
+pkgname=libgphoto2
+pkgver=2.4.13
+pkgrel=1
+pkgdesc=The core library of gphoto2, designed to allow access to digital 
camera by external programs.
+arch=(i686 x86_64)
+url=http://www.gphoto.org;
+license=(LGPL)
+depends=('libexif' 'libjpeg=8' 'gd' 'libltdl' 'libusb-compat' 'libusb')
+install=libgphoto2.install
+options=('libtool')
+source=(http://downloads.sourceforge.net/gphoto/${pkgname}-${pkgver}.tar.gz)
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure \
+   --prefix=/usr \
+   --disable-rpath
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  # Remove unused udev helper
+  rm -rf ${pkgdir}/usr/lib/udev
+
+  install -m755 -d ${pkgdir}/lib/udev/rules.d
+  LD_LIBRARY_PATH=${pkgdir}/usr/lib${LD_LIBRARY_PATH:+:}$LD_LIBRARY_PATH \
+  CAMLIBS=${pkgdir}/usr/lib/libgphoto2/${pkgver} \
+  ${pkgdir}/usr/lib/libgphoto2/print-camera-list udev-rules version 136 
 \
+  ${pkgdir}/lib/udev/rules.d/40-gphoto.rules
+
+  # Remove recursive symlink
+  rm -f ${pkgdir}/usr/include/gphoto2/gphoto2
+}
+md5sums=('7d8a1d3ae02069af381f07a0bb4bfc15')

Copied: libgphoto2/repos/testing-x86_64/libgphoto2.install (from rev 152699, 
libgphoto2/trunk/libgphoto2.install)
===
--- testing-x86_64/libgphoto2.install 

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

2012-03-08 Thread Giovanni Scafora
Date: Thursday, March 8, 2012 @ 19:03:47
  Author: giovanni
Revision: 152701

upgpkg: gif2png 2.5.7-1

upstream release

Modified:
  gif2png/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-03-08 23:18:37 UTC (rev 152700)
+++ PKGBUILD2012-03-09 00:03:47 UTC (rev 152701)
@@ -4,7 +4,7 @@
 # Contributor: Andrew Rose o...@netrux.com
 
 pkgname=gif2png
-pkgver=2.5.6
+pkgver=2.5.7
 pkgrel=1
 pkgdesc=A GIF to PNG image format converter
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 depends=('libpng')
 optdepends=('python2: for using web2png')
 source=(http://www.catb.org/~esr/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('47f74725311f9293e8a8d8c44ddc08c9')
+md5sums=('6da196f7923b7c329b83aa9a1dbf72be')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2012-03-08 Thread Giovanni Scafora
Date: Thursday, March 8, 2012 @ 19:04:15
  Author: giovanni
Revision: 152702

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

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

---+
 extra-i686/PKGBUILD   |   66 
 extra-x86_64/PKGBUILD |   66 
 2 files changed, 66 insertions(+), 66 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-03-09 00:03:47 UTC (rev 152701)
+++ extra-i686/PKGBUILD 2012-03-09 00:04:15 UTC (rev 152702)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: eric e...@archlinux.org
-# Contributor: Andrew Rose o...@netrux.com
-
-pkgname=gif2png
-pkgver=2.5.6
-pkgrel=1
-pkgdesc=A GIF to PNG image format converter
-arch=('i686' 'x86_64')
-url=http://www.catb.org/~esr/gif2png/;
-license=('ZLIB')
-depends=('libpng')
-optdepends=('python2: for using web2png')
-source=(http://www.catb.org/~esr/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('47f74725311f9293e8a8d8c44ddc08c9')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  sed -i 's#env python#env python2#' web2png
-
-  ./configure --prefix=/usr \
-  --mandir=/usr/share/man
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  make DESTDIR=${pkgdir} install
-  install -D -m644 COPYING ${pkgdir}/usr/share/licenses/$pkgname/LICENSE
-}

Copied: gif2png/repos/extra-i686/PKGBUILD (from rev 152701, 
gif2png/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-03-09 00:04:15 UTC (rev 152702)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: eric e...@archlinux.org
+# Contributor: Andrew Rose o...@netrux.com
+
+pkgname=gif2png
+pkgver=2.5.7
+pkgrel=1
+pkgdesc=A GIF to PNG image format converter
+arch=('i686' 'x86_64')
+url=http://www.catb.org/~esr/gif2png/;
+license=('ZLIB')
+depends=('libpng')
+optdepends=('python2: for using web2png')
+source=(http://www.catb.org/~esr/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('6da196f7923b7c329b83aa9a1dbf72be')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  sed -i 's#env python#env python2#' web2png
+
+  ./configure --prefix=/usr \
+  --mandir=/usr/share/man
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+  install -D -m644 COPYING ${pkgdir}/usr/share/licenses/$pkgname/LICENSE
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-03-09 00:03:47 UTC (rev 152701)
+++ extra-x86_64/PKGBUILD   2012-03-09 00:04:15 UTC (rev 152702)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: eric e...@archlinux.org
-# Contributor: Andrew Rose o...@netrux.com
-
-pkgname=gif2png
-pkgver=2.5.6
-pkgrel=1
-pkgdesc=A GIF to PNG image format converter
-arch=('i686' 'x86_64')
-url=http://www.catb.org/~esr/gif2png/;
-license=('ZLIB')
-depends=('libpng')
-optdepends=('python2: for using web2png')
-source=(http://www.catb.org/~esr/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('47f74725311f9293e8a8d8c44ddc08c9')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  sed -i 's#env python#env python2#' web2png
-
-  ./configure --prefix=/usr \
-  --mandir=/usr/share/man
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  make DESTDIR=${pkgdir} install
-  install -D -m644 COPYING ${pkgdir}/usr/share/licenses/$pkgname/LICENSE
-}

Copied: gif2png/repos/extra-x86_64/PKGBUILD (from rev 152701, 
gif2png/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-03-09 00:04:15 UTC (rev 152702)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: eric e...@archlinux.org
+# Contributor: Andrew Rose o...@netrux.com
+
+pkgname=gif2png
+pkgver=2.5.7
+pkgrel=1
+pkgdesc=A GIF to PNG image format converter
+arch=('i686' 'x86_64')
+url=http://www.catb.org/~esr/gif2png/;
+license=('ZLIB')
+depends=('libpng')
+optdepends=('python2: for using web2png')
+source=(http://www.catb.org/~esr/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('6da196f7923b7c329b83aa9a1dbf72be')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  sed -i 's#env python#env python2#' web2png
+
+  ./configure --prefix=/usr \
+  --mandir=/usr/share/man
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  make 

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

2012-03-08 Thread Jan Steffens
Date: Thursday, March 8, 2012 @ 19:51:50
  Author: heftig
Revision: 152703

1.29.5, needs glib2=2.31

Modified:
  pango/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-03-09 00:04:15 UTC (rev 152702)
+++ PKGBUILD2012-03-09 00:51:50 UTC (rev 152703)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=pango
-pkgver=1.29.4
+pkgver=1.29.5
 pkgrel=1
 pkgdesc=A library for layout and rendering of text
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 install=pango.install
 
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/1.29/${pkgname}-${pkgver}.tar.xz)
 url=http://www.pango.org/;
-sha256sums=('7ae8d1953e6098a2706df58c1f84555c06ace7006bb34c0e54ab9acd98c1127f')
+sha256sums=('578c38de8450baa61d651e96049d2710f242bda3c47afc2d84773cbafeed775a')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2012-03-08 Thread Jan Steffens
Date: Thursday, March 8, 2012 @ 19:53:05
  Author: heftig
Revision: 152704

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  pango/repos/gnome-unstable-i686/
  pango/repos/gnome-unstable-i686/PKGBUILD
(from rev 152703, pango/trunk/PKGBUILD)
  pango/repos/gnome-unstable-i686/pango.install
(from rev 152703, pango/trunk/pango.install)
  pango/repos/gnome-unstable-x86_64/
  pango/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 152703, pango/trunk/PKGBUILD)
  pango/repos/gnome-unstable-x86_64/pango.install
(from rev 152703, pango/trunk/pango.install)

-+
 gnome-unstable-i686/PKGBUILD|   29 +
 gnome-unstable-i686/pango.install   |   21 +
 gnome-unstable-x86_64/PKGBUILD  |   29 +
 gnome-unstable-x86_64/pango.install |   21 +
 4 files changed, 100 insertions(+)

Copied: pango/repos/gnome-unstable-i686/PKGBUILD (from rev 152703, 
pango/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2012-03-09 00:53:05 UTC (rev 152704)
@@ -0,0 +1,29 @@
+# $Id$ 
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=pango
+pkgver=1.29.5
+pkgrel=1
+pkgdesc=A library for layout and rendering of text
+arch=('i686' 'x86_64')
+license=('LGPL')
+depends=('glib2' 'cairo' 'libxft' 'libthai' 'freetype2')
+makedepends=('gobject-introspection' 'libxt' 'gtk-doc')
+options=('!libtool' '!emptydirs')
+install=pango.install
+source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/1.29/${pkgname}-${pkgver}.tar.xz)
+url=http://www.pango.org/;
+sha256sums=('578c38de8450baa61d651e96049d2710f242bda3c47afc2d84773cbafeed775a')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --with-included-modules=basic-fc
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: pango/repos/gnome-unstable-i686/pango.install (from rev 152703, 
pango/trunk/pango.install)
===
--- gnome-unstable-i686/pango.install   (rev 0)
+++ gnome-unstable-i686/pango.install   2012-03-09 00:53:05 UTC (rev 152704)
@@ -0,0 +1,21 @@
+# arg 1:  the new package version
+post_install() {
+   # we need to ldconfig first, in case xfree86's libs aren't
+   # in ld.so.cache yet
+   sbin/ldconfig -r .
+   usr/bin/pango-querymodules etc/pango/pango.modules
+}
+
+# arg 1:  the new package version
+# arg 2:  the old package version
+post_upgrade() {
+   if [ -f usr/etc/pango/pango.modules ]; then
+   rm usr/etc/pango/pango.modules
+   fi
+   post_install $1
+}
+
+# arg 1:  the old package version
+pre_remove() {
+   rm etc/pango/pango.modules
+}

Copied: pango/repos/gnome-unstable-x86_64/PKGBUILD (from rev 152703, 
pango/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2012-03-09 00:53:05 UTC (rev 152704)
@@ -0,0 +1,29 @@
+# $Id$ 
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=pango
+pkgver=1.29.5
+pkgrel=1
+pkgdesc=A library for layout and rendering of text
+arch=('i686' 'x86_64')
+license=('LGPL')
+depends=('glib2' 'cairo' 'libxft' 'libthai' 'freetype2')
+makedepends=('gobject-introspection' 'libxt' 'gtk-doc')
+options=('!libtool' '!emptydirs')
+install=pango.install
+source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/1.29/${pkgname}-${pkgver}.tar.xz)
+url=http://www.pango.org/;
+sha256sums=('578c38de8450baa61d651e96049d2710f242bda3c47afc2d84773cbafeed775a')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --with-included-modules=basic-fc
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Copied: pango/repos/gnome-unstable-x86_64/pango.install (from rev 152703, 
pango/trunk/pango.install)
===
--- gnome-unstable-x86_64/pango.install (rev 0)
+++ gnome-unstable-x86_64/pango.install 2012-03-09 00:53:05 UTC (rev 152704)
@@ -0,0 +1,21 @@
+# arg 1:  the new package version
+post_install() {
+   # we need to ldconfig first, in case xfree86's libs aren't
+   # in ld.so.cache yet
+   sbin/ldconfig -r .
+   usr/bin/pango-querymodules etc/pango/pango.modules
+}
+
+# arg 1:  the new package version
+# arg 2:  the old package version
+post_upgrade() {
+   if [ -f usr/etc/pango/pango.modules ]; then
+   rm usr/etc/pango/pango.modules
+   fi
+   post_install $1
+}
+
+# arg 1:  the old package version

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

2012-03-08 Thread Jan Steffens
Date: Thursday, March 8, 2012 @ 20:00:24
  Author: heftig
Revision: 152705

0.6.4

Modified:
  libcroco/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-03-09 00:53:05 UTC (rev 152704)
+++ PKGBUILD2012-03-09 01:00:24 UTC (rev 152705)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=libcroco
-pkgver=0.6.3
+pkgver=0.6.4
 pkgrel=1
 pkgdesc=A CSS parsing library
 arch=('x86_64' 'i686')
@@ -12,7 +12,7 @@
 options=('!libtool')
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/0.6/$pkgname-$pkgver.tar.xz)
 url=http://www.gnome.org;
-sha256sums=('8b7c565bf3eae1dff0a09d128fc3726acc1a492a7de23b25dce803a4f93d42c1')
+sha256sums=('c816bad3406c52a98d84ac0e4a7b70ee0640b49cde4a236deaa02c4232ea')
 
 build() {
   cd $srcdir/$pkgname-$pkgver



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

2012-03-08 Thread Jan Steffens
Date: Thursday, March 8, 2012 @ 20:01:22
  Author: heftig
Revision: 152706

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

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

---+
 extra-i686/PKGBUILD   |   52 
 extra-x86_64/PKGBUILD |   52 
 2 files changed, 52 insertions(+), 52 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-03-09 01:00:24 UTC (rev 152705)
+++ extra-i686/PKGBUILD 2012-03-09 01:01:22 UTC (rev 152706)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=libcroco
-pkgver=0.6.3
-pkgrel=1
-pkgdesc=A CSS parsing library
-arch=('x86_64' 'i686')
-depends=('glib2' 'libxml2')
-makedepends=('intltool')
-license=('LGPL')
-options=('!libtool')
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/0.6/$pkgname-$pkgver.tar.xz)
-url=http://www.gnome.org;
-sha256sums=('8b7c565bf3eae1dff0a09d128fc3726acc1a492a7de23b25dce803a4f93d42c1')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr --disable-static
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: libcroco/repos/extra-i686/PKGBUILD (from rev 152705, 
libcroco/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-03-09 01:01:22 UTC (rev 152706)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=libcroco
+pkgver=0.6.4
+pkgrel=1
+pkgdesc=A CSS parsing library
+arch=('x86_64' 'i686')
+depends=('glib2' 'libxml2')
+makedepends=('intltool')
+license=('LGPL')
+options=('!libtool')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/0.6/$pkgname-$pkgver.tar.xz)
+url=http://www.gnome.org;
+sha256sums=('c816bad3406c52a98d84ac0e4a7b70ee0640b49cde4a236deaa02c4232ea')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-03-09 01:00:24 UTC (rev 152705)
+++ extra-x86_64/PKGBUILD   2012-03-09 01:01:22 UTC (rev 152706)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=libcroco
-pkgver=0.6.3
-pkgrel=1
-pkgdesc=A CSS parsing library
-arch=('x86_64' 'i686')
-depends=('glib2' 'libxml2')
-makedepends=('intltool')
-license=('LGPL')
-options=('!libtool')
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/0.6/$pkgname-$pkgver.tar.xz)
-url=http://www.gnome.org;
-sha256sums=('8b7c565bf3eae1dff0a09d128fc3726acc1a492a7de23b25dce803a4f93d42c1')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr --disable-static
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: libcroco/repos/extra-x86_64/PKGBUILD (from rev 152705, 
libcroco/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-03-09 01:01:22 UTC (rev 152706)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=libcroco
+pkgver=0.6.4
+pkgrel=1
+pkgdesc=A CSS parsing library
+arch=('x86_64' 'i686')
+depends=('glib2' 'libxml2')
+makedepends=('intltool')
+license=('LGPL')
+options=('!libtool')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/0.6/$pkgname-$pkgver.tar.xz)
+url=http://www.gnome.org;
+sha256sums=('c816bad3406c52a98d84ac0e4a7b70ee0640b49cde4a236deaa02c4232ea')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}



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

2012-03-08 Thread Stéphane Gaudreault
Date: Thursday, March 8, 2012 @ 20:02:53
  Author: stephane
Revision: 152707

upgpkg: krb5 1.10.1-1

upstream update

Modified:
  krb5/trunk/PKGBUILD
Deleted:
  krb5/trunk/krb5-1.9.1-2011-007.patch
  krb5/trunk/krb5-1.9.1-canonicalize-fallback.patch
  krb5/trunk/krb5-1.9.1-config-script.patch

+
 PKGBUILD   |   35 --
 krb5-1.9.1-2011-007.patch  |   40 -
 krb5-1.9.1-canonicalize-fallback.patch |   58 ---
 krb5-1.9.1-config-script.patch |   27 --
 4 files changed, 8 insertions(+), 152 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-03-09 01:01:22 UTC (rev 152706)
+++ PKGBUILD2012-03-09 01:02:53 UTC (rev 152707)
@@ -2,8 +2,8 @@
 # Maintainer: Stéphane Gaudreault steph...@archlinux.org
 
 pkgname=krb5
-pkgver=1.9.2
-pkgrel=2
+pkgver=1.10.1
+pkgrel=1
 pkgdesc=The Kerberos network authentication system
 arch=('i686' 'x86_64')
 url=http://web.mit.edu/kerberos/;
@@ -14,40 +14,20 @@
 replaces=('heimdal')
 conflicts=('heimdal')
 backup=('etc/krb5.conf' 'var/lib/krb5kdc/kdc.conf')
-source=(http://web.mit.edu/kerberos/dist/${pkgname}/1.9/${pkgname}-${pkgver}-signed.tar
+source=(http://web.mit.edu/kerberos/dist/${pkgname}/1.10/${pkgname}-${pkgver}-signed.tar
 krb5-kadmind
 krb5-kdc
-krb5-kpropd
-krb5-1.9.1-config-script.patch
-krb5-1.9.1-2011-007.patch)
-sha1sums=('aa06f778ee1f9791cd4c5cf4c9e9465769ffec92'
+krb5-kpropd)
+sha1sums=('f9f3b77173f68b268b43e4f9c29bf7c9f3fd1f0e'
   '2aa229369079ed1bbb201a1ef72c47bf143f4dbe'
   '77d2312ecd8bf12a6e72cc8fd871a8ac93b23393'
-  '7f402078fa65bb9ff1beb6c017450df78560'
-  '7342410760cf44bfa01bb99bb4c49e12496cb46f'
-  'ec917dd1d1c96fa331f512331d5aa37c2e9b9df7')
+  '7f402078fa65bb9ff1beb6c017450df78560')
 options=('!emptydirs')
 
 build() {
tar zxvf ${pkgname}-${pkgver}.tar.gz
cd ${srcdir}/${pkgname}-${pkgver}/src
 
-   # - Make krb5-config suppress CFLAGS output when called with --libs
-   #   cf https://bugzilla.redhat.com/show_bug.cgi?id=544391
-   #
-   # - Omit extra libraries because their interfaces are not exposed to 
applications
-   #   by libkrb5, unless do_deps is set to 1, which indicates that the caller
-   #   wants the whole list.
-   #
-   #   Patch from upstream :
-   #   
http://anonsvn.mit.edu/viewvc/krb5/trunk/src/krb5-config.in?r1=23662r2=25236
-   patch -Np2 -i ${srcdir}/krb5-1.9.1-config-script.patch
-
-   # Apply upstream patch to fix a null pointer dereference when processing 
TGS requests
-   # CVE-2011-1530
-   # see http://web.mit.edu/kerberos/advisories/MITKRB5-SA-2011-007.txt
-   patch -Np2 -i ${srcdir}/krb5-1.9.1-2011-007.patch
-
# FS#25384
sed -i /KRB5ROOT=/s/\/local// util/ac_check_krb5.m4
 
@@ -62,7 +42,8 @@
--disable-rpath \
--without-tcl \
--enable-dns-for-realm \
-   --with-ldap
+   --with-ldap \
+   --without-system-verto
make
 }
 

Deleted: krb5-1.9.1-2011-007.patch
===
--- krb5-1.9.1-2011-007.patch   2012-03-09 01:01:22 UTC (rev 152706)
+++ krb5-1.9.1-2011-007.patch   2012-03-09 01:02:53 UTC (rev 152707)
@@ -1,40 +0,0 @@
-diff --git a/src/kdc/Makefile.in b/src/kdc/Makefile.in
-index f46cad3..102fbaa 100644
 a/src/kdc/Makefile.in
-+++ b/src/kdc/Makefile.in
-@@ -67,6 +67,7 @@ check-unix:: rtest
- 
- check-pytests::
-   $(RUNPYTEST) $(srcdir)/t_workers.py $(PYTESTFLAGS)
-+  $(RUNPYTEST) $(srcdir)/t_emptytgt.py $(PYTESTFLAGS)
- 
- install::
-   $(INSTALL_PROGRAM) krb5kdc ${DESTDIR}$(SERVER_BINDIR)/krb5kdc
-diff --git a/src/kdc/do_tgs_req.c b/src/kdc/do_tgs_req.c
-index c169c54..840a2ef 100644
 a/src/kdc/do_tgs_req.c
-+++ b/src/kdc/do_tgs_req.c
-@@ -243,7 +243,8 @@ tgt_again:
- if (!tgs_1 || !data_eq(*server_1, *tgs_1)) {
- errcode = find_alternate_tgs(request, server);
- firstpass = 0;
--goto tgt_again;
-+if (errcode == 0)
-+goto tgt_again;
- }
- }
- status = UNKNOWN_SERVER;
-diff --git a/src/kdc/t_emptytgt.py b/src/kdc/t_emptytgt.py
-new file mode 100644
-index 000..1760bcd
 /dev/null
-+++ b/src/kdc/t_emptytgt.py
-@@ -0,0 +1,8 @@
-+#!/usr/bin/python
-+from k5test import *
-+
-+realm = K5Realm(start_kadmind=False, create_host=False)
-+output = realm.run_as_client([kvno, 'krbtgt/'], expected_code=1)
-+if 'not found in Kerberos database' not in output:
-+fail('TGT lookup for empty realm failed in unexpected way')
-+success('Empty tgt lookup.')

Deleted: krb5-1.9.1-canonicalize-fallback.patch

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

2012-03-08 Thread Jan Steffens
Date: Thursday, March 8, 2012 @ 20:03:04
  Author: heftig
Revision: 152708

strip srcdir

Modified:
  pango/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-03-09 01:02:53 UTC (rev 152707)
+++ PKGBUILD2012-03-09 01:03:04 UTC (rev 152708)
@@ -16,7 +16,7 @@
 sha256sums=('578c38de8450baa61d651e96049d2710f242bda3c47afc2d84773cbafeed775a')
 
 build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
+  cd ${pkgname}-${pkgver}
 
   ./configure --prefix=/usr --sysconfdir=/etc \
   --localstatedir=/var --with-included-modules=basic-fc
@@ -24,6 +24,6 @@
 }
 
 package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
+  cd ${pkgname}-${pkgver}
   make DESTDIR=${pkgdir} install
 }



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

2012-03-08 Thread Stéphane Gaudreault
Date: Thursday, March 8, 2012 @ 20:03:05
  Author: stephane
Revision: 152709

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

Added:
  krb5/repos/testing-i686/
  krb5/repos/testing-i686/PKGBUILD
(from rev 152707, krb5/trunk/PKGBUILD)
  krb5/repos/testing-i686/krb5-kadmind
(from rev 152707, krb5/trunk/krb5-kadmind)
  krb5/repos/testing-i686/krb5-kdc
(from rev 152707, krb5/trunk/krb5-kdc)
  krb5/repos/testing-i686/krb5-kpropd
(from rev 152707, krb5/trunk/krb5-kpropd)
  krb5/repos/testing-x86_64/
  krb5/repos/testing-x86_64/PKGBUILD
(from rev 152707, krb5/trunk/PKGBUILD)
  krb5/repos/testing-x86_64/krb5-kadmind
(from rev 152707, krb5/trunk/krb5-kadmind)
  krb5/repos/testing-x86_64/krb5-kdc
(from rev 152707, krb5/trunk/krb5-kdc)
  krb5/repos/testing-x86_64/krb5-kpropd
(from rev 152707, krb5/trunk/krb5-kpropd)

-+
 testing-i686/PKGBUILD   |   71 ++
 testing-i686/krb5-kadmind   |   40 +++
 testing-i686/krb5-kdc   |   40 +++
 testing-i686/krb5-kpropd|   40 +++
 testing-x86_64/PKGBUILD |   71 ++
 testing-x86_64/krb5-kadmind |   40 +++
 testing-x86_64/krb5-kdc |   40 +++
 testing-x86_64/krb5-kpropd  |   40 +++
 8 files changed, 382 insertions(+)

Copied: krb5/repos/testing-i686/PKGBUILD (from rev 152707, krb5/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-03-09 01:03:05 UTC (rev 152709)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+
+pkgname=krb5
+pkgver=1.10.1
+pkgrel=1
+pkgdesc=The Kerberos network authentication system
+arch=('i686' 'x86_64')
+url=http://web.mit.edu/kerberos/;
+license=('custom')
+depends=('e2fsprogs' 'libldap' 'keyutils')
+makedepends=('perl')
+provides=('heimdal')
+replaces=('heimdal')
+conflicts=('heimdal')
+backup=('etc/krb5.conf' 'var/lib/krb5kdc/kdc.conf')
+source=(http://web.mit.edu/kerberos/dist/${pkgname}/1.10/${pkgname}-${pkgver}-signed.tar
+krb5-kadmind
+krb5-kdc
+krb5-kpropd)
+sha1sums=('f9f3b77173f68b268b43e4f9c29bf7c9f3fd1f0e'
+  '2aa229369079ed1bbb201a1ef72c47bf143f4dbe'
+  '77d2312ecd8bf12a6e72cc8fd871a8ac93b23393'
+  '7f402078fa65bb9ff1beb6c017450df78560')
+options=('!emptydirs')
+
+build() {
+   tar zxvf ${pkgname}-${pkgver}.tar.gz
+   cd ${srcdir}/${pkgname}-${pkgver}/src
+
+   # FS#25384
+   sed -i /KRB5ROOT=/s/\/local// util/ac_check_krb5.m4
+
+   export CFLAGS+= -fPIC -fno-strict-aliasing -fstack-protector-all
+   export CPPFLAGS+= -I/usr/include/et
+   ./configure --prefix=/usr \
+   --mandir=/usr/share/man \
+   --localstatedir=/var/lib \
+   --enable-shared \
+   --with-system-et \
+   --with-system-ss \
+   --disable-rpath \
+   --without-tcl \
+   --enable-dns-for-realm \
+   --with-ldap \
+   --without-system-verto
+   make
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}/src
+   make DESTDIR=${pkgdir} EXAMPLEDIR=/usr/share/doc/${pkgname}/examples 
install
+
+   # Sample KDC config file
+   install -dm 755 ${pkgdir}/var/lib/krb5kdc
+   install -pm 644 config-files/kdc.conf ${pkgdir}/var/lib/krb5kdc/kdc.conf
+
+   # Default configuration file
+   install -dm 755 ${pkgdir}/etc
+   install -pm 644 config-files/krb5.conf ${pkgdir}/etc/krb5.conf
+
+   install -dm 755 ${pkgdir}/etc/rc.d
+   install -m 755 ../../krb5-kdc  ${pkgdir}/etc/rc.d
+   install -m 755 ../../krb5-kadmind  ${pkgdir}/etc/rc.d
+   install -m 755 ../../krb5-kpropd   ${pkgdir}/etc/rc.d
+
+   install -dm 755 ${pkgdir}/usr/share/aclocal
+   install -m 644 util/ac_check_krb5.m4 ${pkgdir}/usr/share/aclocal
+
+   install -Dm644 ${srcdir}/${pkgname}-${pkgver}/NOTICE 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Copied: krb5/repos/testing-i686/krb5-kadmind (from rev 152707, 
krb5/trunk/krb5-kadmind)
===
--- testing-i686/krb5-kadmind   (rev 0)
+++ testing-i686/krb5-kadmind   2012-03-09 01:03:05 UTC (rev 152709)
@@ -0,0 +1,40 @@
+#!/bin/bash
+
+# general config
+. /etc/rc.conf
+. /etc/rc.d/functions
+
+PID=`pidof -o %PPID /usr/sbin/kadmind`
+case $1 in
+start)
+stat_busy Starting Kerberos Admin Daemon
+if [ -z $PID ]; then
+   /usr/sbin/kadmind
+fi
+if [ ! -z $PID -o $? -gt 0 ]; then
+stat_fail
+else
+add_daemon krb5-kadmind
+stat_done
+fi
+;;
+stop)
+stat_busy Stopping Kerberos Admin Daemon
+   [ ! -z $PID ]  kill $PID  /dev/null
+if [ $? -gt 0 ]; 

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

2012-03-08 Thread Jan Steffens
Date: Thursday, March 8, 2012 @ 20:03:31
  Author: heftig
Revision: 152710

strip srcdir

Modified:
  libcroco/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-03-09 01:03:05 UTC (rev 152709)
+++ PKGBUILD2012-03-09 01:03:31 UTC (rev 152710)
@@ -15,12 +15,12 @@
 sha256sums=('c816bad3406c52a98d84ac0e4a7b70ee0640b49cde4a236deaa02c4232ea')
 
 build() {
-  cd $srcdir/$pkgname-$pkgver
+  cd $pkgname-$pkgver
   ./configure --prefix=/usr --disable-static
   make
 }
 
 package() {
-  cd $srcdir/$pkgname-$pkgver
+  cd $pkgname-$pkgver
   make DESTDIR=$pkgdir install
 }



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

2012-03-08 Thread Jan Steffens
Date: Thursday, March 8, 2012 @ 20:16:26
  Author: heftig
Revision: 152711

2.35.2

Modified:
  librsvg/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-03-09 01:03:31 UTC (rev 152710)
+++ PKGBUILD2012-03-09 01:16:26 UTC (rev 152711)
@@ -2,30 +2,27 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=librsvg
-pkgver=2.34.2
-pkgrel=3
+pkgver=2.35.2
+pkgrel=1
 pkgdesc=A SVG viewing library
 arch=(i686 x86_64)
 license=('LGPL')
 depends=('gdk-pixbuf2=2.24.1-3' 'pango' 'libcroco')
-makedepends=('intltool' 'gtk2')
-optdepends=('gtk2: for rsvg-view support')
+makedepends=('intltool' 'gtk2' 'gtk3')
+optdepends=('gtk3: for rsvg-view-3')
 options=('!libtool' '!emptydirs')
 url=http://librsvg.sourceforge.net/;
 install=librsvg.install
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/2.34/$pkgname-$pkgver.tar.xz)
-sha256sums=('5de701325b84c0a15ab6892f49ffd6471722044bfe0b350725bf420642ee4464')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('84bf2a293d374711654c4472d7e1ca9e152f6b0f0def050c09b77d9d8dd2354c')
 
 build() {
-  cd $srcdir/$pkgname-$pkgver
-  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' rsvg.in
-  ./configure --prefix=/usr --libexecdir=/usr/lib/$pkgname \
-  --with-croco --disable-static \
-  --with-svgz
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-static
   make
 }
 
 package() {
-  cd $srcdir/$pkgname-$pkgver
+  cd $pkgname-$pkgver
   make DESTDIR=$pkgdir install
 }



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

2012-03-08 Thread Jan Steffens
Date: Thursday, March 8, 2012 @ 20:17:54
  Author: heftig
Revision: 152712

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  librsvg/repos/gnome-unstable-i686/
  librsvg/repos/gnome-unstable-i686/PKGBUILD
(from rev 152711, librsvg/trunk/PKGBUILD)
  librsvg/repos/gnome-unstable-i686/librsvg.install
(from rev 152711, librsvg/trunk/librsvg.install)
  librsvg/repos/gnome-unstable-x86_64/
  librsvg/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 152711, librsvg/trunk/PKGBUILD)
  librsvg/repos/gnome-unstable-x86_64/librsvg.install
(from rev 152711, librsvg/trunk/librsvg.install)

---+
 gnome-unstable-i686/PKGBUILD  |   28 
 gnome-unstable-i686/librsvg.install   |   11 +++
 gnome-unstable-x86_64/PKGBUILD|   28 
 gnome-unstable-x86_64/librsvg.install |   11 +++
 4 files changed, 78 insertions(+)

Copied: librsvg/repos/gnome-unstable-i686/PKGBUILD (from rev 152711, 
librsvg/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2012-03-09 01:17:54 UTC (rev 152712)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=librsvg
+pkgver=2.35.2
+pkgrel=1
+pkgdesc=A SVG viewing library
+arch=(i686 x86_64)
+license=('LGPL')
+depends=('gdk-pixbuf2=2.24.1-3' 'pango' 'libcroco')
+makedepends=('intltool' 'gtk2' 'gtk3')
+optdepends=('gtk3: for rsvg-view-3')
+options=('!libtool' '!emptydirs')
+url=http://librsvg.sourceforge.net/;
+install=librsvg.install
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('84bf2a293d374711654c4472d7e1ca9e152f6b0f0def050c09b77d9d8dd2354c')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: librsvg/repos/gnome-unstable-i686/librsvg.install (from rev 152711, 
librsvg/trunk/librsvg.install)
===
--- gnome-unstable-i686/librsvg.install (rev 0)
+++ gnome-unstable-i686/librsvg.install 2012-03-09 01:17:54 UTC (rev 152712)
@@ -0,0 +1,11 @@
+post_install() {
+usr/bin/gdk-pixbuf-query-loaders --update-cache
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Copied: librsvg/repos/gnome-unstable-x86_64/PKGBUILD (from rev 152711, 
librsvg/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2012-03-09 01:17:54 UTC (rev 152712)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=librsvg
+pkgver=2.35.2
+pkgrel=1
+pkgdesc=A SVG viewing library
+arch=(i686 x86_64)
+license=('LGPL')
+depends=('gdk-pixbuf2=2.24.1-3' 'pango' 'libcroco')
+makedepends=('intltool' 'gtk2' 'gtk3')
+optdepends=('gtk3: for rsvg-view-3')
+options=('!libtool' '!emptydirs')
+url=http://librsvg.sourceforge.net/;
+install=librsvg.install
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('84bf2a293d374711654c4472d7e1ca9e152f6b0f0def050c09b77d9d8dd2354c')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: librsvg/repos/gnome-unstable-x86_64/librsvg.install (from rev 152711, 
librsvg/trunk/librsvg.install)
===
--- gnome-unstable-x86_64/librsvg.install   (rev 0)
+++ gnome-unstable-x86_64/librsvg.install   2012-03-09 01:17:54 UTC (rev 
152712)
@@ -0,0 +1,11 @@
+post_install() {
+usr/bin/gdk-pixbuf-query-loaders --update-cache
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}



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

2012-03-08 Thread Jan Steffens
Date: Thursday, March 8, 2012 @ 20:36:28
  Author: heftig
Revision: 152713

3.3.91

Modified:
  gnome-themes-standard/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-03-09 01:17:54 UTC (rev 152712)
+++ PKGBUILD2012-03-09 01:36:28 UTC (rev 152713)
@@ -2,28 +2,29 @@
 # Maintainer: Jan heftig Steffens jan.steff...@gmail.com
 
 pkgname=gnome-themes-standard
-pkgver=3.2.1
+pkgver=3.3.91
 pkgrel=1
 pkgdesc=Default themes for the GNOME desktop
 arch=('i686' 'x86_64')
-url=http://abattis.org/cantarell/;
+url=http://www.gnome.org;
 license=('GPL2')
 depends=('cantarell-fonts' 'ttf-dejavu' 'gtk3' 'gtk-engines' 'librsvg')
 makedepends=('intltool')
 groups=('gnome')
 replaces=('gnome-themes')
 conflicts=('gnome-themes')
-source=(http://download.gnome.org/sources/$pkgname/3.2/$pkgname-${pkgver}.tar.xz)
-sha256sums=('ab9e7f6001f4f18420df6a66407ace4340ee815b31e571bc55de7983370e26f3')
+options=('!libtool')
+source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('5047414bf27142bf194481124801679c37a4a711ceee09951f5492d2127e2960')
 
 build() {
-  cd $srcdir/$pkgname-$pkgver
+  cd $pkgname-$pkgver
   ./configure --prefix=/usr
   make
 }
 
 package() {
-  cd $srcdir/$pkgname-$pkgver
+  cd $pkgname-$pkgver
   make DESTDIR=${pkgdir} install
 }
 



[arch-commits] Commit in gnome-themes-standard/repos (4 files)

2012-03-08 Thread Jan Steffens
Date: Thursday, March 8, 2012 @ 20:38:14
  Author: heftig
Revision: 152714

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  gnome-themes-standard/repos/gnome-unstable-i686/
  gnome-themes-standard/repos/gnome-unstable-i686/PKGBUILD
(from rev 152713, gnome-themes-standard/trunk/PKGBUILD)
  gnome-themes-standard/repos/gnome-unstable-x86_64/
  gnome-themes-standard/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 152713, gnome-themes-standard/trunk/PKGBUILD)

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

Copied: gnome-themes-standard/repos/gnome-unstable-i686/PKGBUILD (from rev 
152713, gnome-themes-standard/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2012-03-09 01:38:14 UTC (rev 152714)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Jan heftig Steffens jan.steff...@gmail.com
+
+pkgname=gnome-themes-standard
+pkgver=3.3.91
+pkgrel=1
+pkgdesc=Default themes for the GNOME desktop
+arch=('i686' 'x86_64')
+url=http://www.gnome.org;
+license=('GPL2')
+depends=('cantarell-fonts' 'ttf-dejavu' 'gtk3' 'gtk-engines' 'librsvg')
+makedepends=('intltool')
+groups=('gnome')
+replaces=('gnome-themes')
+conflicts=('gnome-themes')
+options=('!libtool')
+source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('5047414bf27142bf194481124801679c37a4a711ceee09951f5492d2127e2960')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=${pkgdir} install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: gnome-themes-standard/repos/gnome-unstable-x86_64/PKGBUILD (from rev 
152713, gnome-themes-standard/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2012-03-09 01:38:14 UTC (rev 152714)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Jan heftig Steffens jan.steff...@gmail.com
+
+pkgname=gnome-themes-standard
+pkgver=3.3.91
+pkgrel=1
+pkgdesc=Default themes for the GNOME desktop
+arch=('i686' 'x86_64')
+url=http://www.gnome.org;
+license=('GPL2')
+depends=('cantarell-fonts' 'ttf-dejavu' 'gtk3' 'gtk-engines' 'librsvg')
+makedepends=('intltool')
+groups=('gnome')
+replaces=('gnome-themes')
+conflicts=('gnome-themes')
+options=('!libtool')
+source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('5047414bf27142bf194481124801679c37a4a711ceee09951f5492d2127e2960')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=${pkgdir} install
+}
+
+# vim:set ts=2 sw=2 et:



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

2012-03-08 Thread Stéphane Gaudreault
Date: Thursday, March 8, 2012 @ 20:48:12
  Author: stephane
Revision: 152715

upgpkg: subversion 1.7.4-1

upstream update

Modified:
  subversion/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-03-09 01:38:14 UTC (rev 152714)
+++ PKGBUILD2012-03-09 01:48:12 UTC (rev 152715)
@@ -3,7 +3,7 @@
 # Contributor: Jason Chu ja...@archlinux.org
 
 pkgname=subversion
-pkgver=1.7.3
+pkgver=1.7.4
 pkgrel=1
 pkgdesc=A Modern Concurrent Version Control System
 arch=('i686' 'x86_64')
@@ -19,8 +19,8 @@
 options=('!makeflags' '!libtool')
 
source=(http://apache.mirror.rafal.ca/subversion/$pkgname-$pkgver.tar.bz2{,.asc}
 svnserve svn svnserve.conf subversion.rpath.fix.patch)
-sha1sums=('624d4070361c0e8d7cf4f5c667629e72459b122d'
-  'cac344ec6e717bab3d97e2f3f1206289d83b8e05'
+sha1sums=('57a3cd351c1dbe020e7a1952df6cd2674527'
+  'eebe0be6d539bf7dc37cf01b3c738072f1d9197b'
   '64ba3e6ebafc08ac62f59d788f7a825fdce69573'
   '73b36c046c09cec2093354911c89e3ba8056af6c'
   'ad117bf3b2a838a9a678a93fd8db1a066ad46c41'



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

2012-03-08 Thread Stéphane Gaudreault
Date: Thursday, March 8, 2012 @ 20:48:25
  Author: stephane
Revision: 152716

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

Added:
  subversion/repos/testing-i686/
  subversion/repos/testing-i686/PKGBUILD
(from rev 152715, subversion/trunk/PKGBUILD)
  subversion/repos/testing-i686/subversion.rpath.fix.patch
(from rev 152715, subversion/trunk/subversion.rpath.fix.patch)
  subversion/repos/testing-i686/svn
(from rev 152715, subversion/trunk/svn)
  subversion/repos/testing-i686/svnserve
(from rev 152715, subversion/trunk/svnserve)
  subversion/repos/testing-i686/svnserve.conf
(from rev 152715, subversion/trunk/svnserve.conf)
  subversion/repos/testing-x86_64/
  subversion/repos/testing-x86_64/PKGBUILD
(from rev 152715, subversion/trunk/PKGBUILD)
  subversion/repos/testing-x86_64/subversion.rpath.fix.patch
(from rev 152715, subversion/trunk/subversion.rpath.fix.patch)
  subversion/repos/testing-x86_64/svn
(from rev 152715, subversion/trunk/svn)
  subversion/repos/testing-x86_64/svnserve
(from rev 152715, subversion/trunk/svnserve)
  subversion/repos/testing-x86_64/svnserve.conf
(from rev 152715, subversion/trunk/svnserve.conf)

---+
 testing-i686/PKGBUILD |   76 
 testing-i686/subversion.rpath.fix.patch   |   10 +++
 testing-i686/svn  |   11 
 testing-i686/svnserve |   42 +++
 testing-i686/svnserve.conf|7 ++
 testing-x86_64/PKGBUILD   |   76 
 testing-x86_64/subversion.rpath.fix.patch |   10 +++
 testing-x86_64/svn|   11 
 testing-x86_64/svnserve   |   42 +++
 testing-x86_64/svnserve.conf  |7 ++
 10 files changed, 292 insertions(+)

Copied: subversion/repos/testing-i686/PKGBUILD (from rev 152715, 
subversion/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-03-09 01:48:25 UTC (rev 152716)
@@ -0,0 +1,76 @@
+# $Id$
+# Maintainer: Paul Mattal p...@archlinux.org
+# Contributor: Jason Chu ja...@archlinux.org
+
+pkgname=subversion
+pkgver=1.7.4
+pkgrel=1
+pkgdesc=A Modern Concurrent Version Control System
+arch=('i686' 'x86_64')
+license=('APACHE')
+depends=('neon' 'apr-util' 'sqlite3' 'file')
+optdepends=('libgnome-keyring' 'kdeutils-kwallet' 'bash-completion: for svn 
bash completion' \
+'python2: for some hook scripts' 'ruby: for some hook scripts')
+makedepends=('krb5' 'apache' 'python2' 'perl' 'swig' 'java-runtime' 
'java-environment'
+ 'autoconf' 'db' 'e2fsprogs' 'libgnome-keyring' 'kdelibs')
+backup=('etc/xinetd.d/svn' 'etc/conf.d/svnserve')
+url=http://subversion.apache.org/;
+provides=('svn')
+options=('!makeflags' '!libtool')
+source=(http://apache.mirror.rafal.ca/subversion/$pkgname-$pkgver.tar.bz2{,.asc}
+svnserve svn svnserve.conf subversion.rpath.fix.patch)
+sha1sums=('57a3cd351c1dbe020e7a1952df6cd2674527'
+  'eebe0be6d539bf7dc37cf01b3c738072f1d9197b'
+  '64ba3e6ebafc08ac62f59d788f7a825fdce69573'
+  '73b36c046c09cec2093354911c89e3ba8056af6c'
+  'ad117bf3b2a838a9a678a93fd8db1a066ad46c41'
+  '3d1e28408a9abb42af2e531adc0d01ce21acfad6')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   export PYTHON=/usr/bin/python2
+
+   patch -p0 -i ../subversion.rpath.fix.patch
+   sed -i 's|/usr/bin/env python|/usr/bin/env python2|' 
tools/hook-scripts/{,mailer/{,tests/}}*.py
+
+   ./configure --prefix=/usr --with-apr=/usr --with-apr-util=/usr \
+   --with-zlib=/usr --with-neon=/usr --with-apxs \
+   --with-sqlite=/usr 
--with-berkeley-db=:/usr/include/:/usr/lib:db-5.3 \
+   --enable-javahl --with-gnome-keyring --with-kwallet
+
+   make external-all
+   make LT_LDFLAGS=-L$Fdestdir/usr/lib local-all
+   make swig_pydir=/usr/lib/python2.7/site-packages/libsvn \
+ swig_pydir_extra=/usr/lib/python2.7/site-packages/svn swig-py swig-pl 
javahl # swig-rb
+}
+
+#check() {
+#   cd ${srcdir}/${pkgname}-${pkgver}
+#   export LANG=C LC_ALL=C
+#   make check check-swig-pl check-swig-py check-javahl CLEANUP=yes # 
check-swig-rb
+#}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   export LD_LIBRARY_PATH=${pkgdir}/usr/lib:$LD_LIBRARY_PATH
+   make DESTDIR=${pkgdir} INSTALLDIRS=vendor \
+ swig_pydir=/usr/lib/python2.7/site-packages/libsvn \
+ swig_pydir_extra=/usr/lib/python2.7/site-packages/svn \
+ install install-swig-py install-swig-pl install-javahl # install-swig-rb
+
+   install -d ${pkgdir}/usr/share/subversion
+   cp -a tools/hook-scripts ${pkgdir}/usr/share/subversion/
+   rm -f ${pkgdir}/usr/share/subversion/hook-scripts/*.in
+
+   rm -f ${pkgdir}/usr/lib/perl5/vendor_perl/auto/SVN/_Core/.packlist
+   rm -rf