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

andyrtr at archlinux.org andyrtr at archlinux.org
Thu Aug 18 15:04:20 UTC 2011


    Date: Thursday, August 18, 2011 @ 11:04:19
  Author: andyrtr
Revision: 135789

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

Added:
  libgnomecups/repos/extra-i686/PKGBUILD
    (from rev 135766, libgnomecups/repos/testing-i686/PKGBUILD)
  libgnomecups/repos/extra-i686/libgnomecups_0.2.3-ignore-ipp-not-found.patch
    (from rev 135766, libgnomecups/repos/testing-i686/libgnomecups_0.2.3-ignore-ipp-not-found.patch)
Deleted:
  libgnomecups/repos/extra-i686/PKGBUILD
  libgnomecups/repos/extra-i686/libgnomecups_0.2.3-ignore-ipp-not-found.patch
  libgnomecups/repos/testing-i686/

-----------------------------------------------+
 PKGBUILD                                      |   62 ++++++++++++------------
 libgnomecups_0.2.3-ignore-ipp-not-found.patch |   22 ++++----
 2 files changed, 42 insertions(+), 42 deletions(-)

Deleted: extra-i686/PKGBUILD
===================================================================
--- extra-i686/PKGBUILD	2011-08-18 15:04:18 UTC (rev 135788)
+++ extra-i686/PKGBUILD	2011-08-18 15:04:19 UTC (rev 135789)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot <jgc at archlinux.org>
-# Contributor: Paulius Palevicius <paulius at birzai.com>
-
-pkgname=libgnomecups
-pkgver=0.2.3
-pkgrel=8
-pkgdesc="GNOME cups library"
-arch=(i686 x86_64)
-license=('LGPL' 'GPL')
-url="http://www.gnome.org"
-depends=('libcups' 'glib2' 'krb5' 'gnutls')
-makedepends=('perlxml')
-options=(!libtool)
-source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/0.2/${pkgname}-${pkgver}.tar.bz2
-        libgnomecups_0.2.3-ignore-ipp-not-found.patch)
-md5sums=('dc4920c15c9f886f73ea74fbff0ae48b'
-         '973a1b9d93013ce431400a14b78f5d94')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  # This avoids generating huge 'IPP request failed with status 1030' lines
-  patch -Np1 -i ${srcdir}/libgnomecups_0.2.3-ignore-ipp-not-found.patch
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: libgnomecups/repos/extra-i686/PKGBUILD (from rev 135766, libgnomecups/repos/testing-i686/PKGBUILD)
===================================================================
--- extra-i686/PKGBUILD	                        (rev 0)
+++ extra-i686/PKGBUILD	2011-08-18 15:04:19 UTC (rev 135789)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Jan de Groot <jgc at archlinux.org>
+# Contributor: Paulius Palevicius <paulius at birzai.com>
+
+pkgname=libgnomecups
+pkgver=0.2.3
+pkgrel=9
+pkgdesc="GNOME cups library"
+arch=(i686 x86_64)
+license=('LGPL' 'GPL')
+url="http://www.gnome.org"
+depends=('libcups' 'glib2' 'krb5' 'gnutls')
+makedepends=('perlxml')
+options=(!libtool)
+source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/0.2/${pkgname}-${pkgver}.tar.bz2
+        libgnomecups_0.2.3-ignore-ipp-not-found.patch)
+md5sums=('dc4920c15c9f886f73ea74fbff0ae48b'
+         '973a1b9d93013ce431400a14b78f5d94')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  # This avoids generating huge 'IPP request failed with status 1030' lines
+  patch -Np1 -i ${srcdir}/libgnomecups_0.2.3-ignore-ipp-not-found.patch
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-i686/libgnomecups_0.2.3-ignore-ipp-not-found.patch
===================================================================
--- extra-i686/libgnomecups_0.2.3-ignore-ipp-not-found.patch	2011-08-18 15:04:18 UTC (rev 135788)
+++ extra-i686/libgnomecups_0.2.3-ignore-ipp-not-found.patch	2011-08-18 15:04:19 UTC (rev 135789)
@@ -1,11 +0,0 @@
---- a/libgnomecups/gnome-cups-request.c	2007-01-31 10:49:17.000000000 -0800
-+++ b/libgnomecups/gnome-cups-request.c	2009-11-24 12:49:30.000000000 -0800
-@@ -349,7 +349,7 @@
- 		if (request->response == NULL)
- 			status = IPP_INTERNAL_ERROR;
- 
--		if (status > IPP_OK_CONFLICT) {
-+		if (status > IPP_OK_CONFLICT && status != IPP_NOT_FOUND) {
- 			g_warning ("IPP request failed with status %d", status);
- 			if (request->error != NULL)
- 				*(request->error) = g_error_new (GNOME_CUPS_ERROR, 

Copied: libgnomecups/repos/extra-i686/libgnomecups_0.2.3-ignore-ipp-not-found.patch (from rev 135766, libgnomecups/repos/testing-i686/libgnomecups_0.2.3-ignore-ipp-not-found.patch)
===================================================================
--- extra-i686/libgnomecups_0.2.3-ignore-ipp-not-found.patch	                        (rev 0)
+++ extra-i686/libgnomecups_0.2.3-ignore-ipp-not-found.patch	2011-08-18 15:04:19 UTC (rev 135789)
@@ -0,0 +1,11 @@
+--- a/libgnomecups/gnome-cups-request.c	2007-01-31 10:49:17.000000000 -0800
++++ b/libgnomecups/gnome-cups-request.c	2009-11-24 12:49:30.000000000 -0800
+@@ -349,7 +349,7 @@
+ 		if (request->response == NULL)
+ 			status = IPP_INTERNAL_ERROR;
+ 
+-		if (status > IPP_OK_CONFLICT) {
++		if (status > IPP_OK_CONFLICT && status != IPP_NOT_FOUND) {
+ 			g_warning ("IPP request failed with status %d", status);
+ 			if (request->error != NULL)
+ 				*(request->error) = g_error_new (GNOME_CUPS_ERROR, 




More information about the arch-commits mailing list