Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Sukneet Basuta (a7ba654b7a40cef8017daf407e3e1727e694f874)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Sukneet Basuta <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Sukneet Basuta (a7ba654b7a40cef8017daf407e3e1727e694f874)
  • Date: Sun, 8 Jul 2012 00:00:33 -0500

GIT changes to master grimoire by Sukneet Basuta <sukneet AT sourcemage.org>:

dev/null |binary
gnome2-libs/libgnomecups/DETAILS | 4 -
gnome2-libs/libgnomecups/HISTORY | 6 ++
gnome2-libs/libgnomecups/PRE_BUILD | 4 +
gnome2-libs/libgnomecups/glib.patch | 37
++++++++++++++++
gnome2-libs/libgnomecups/libgnomecups-0.2.2.tar.bz2.sig | 0
gnome2-libs/libgnomecups/libgnomecups-0.2.3.tar.bz2.sig |binary
gnome2-libs/libgnomeprint/HISTORY | 5 ++
gnome2-libs/libgnomeprint/PRE_BUILD | 4 +
gnome2-libs/libgnomeprint/stdio.patch | 9 +++
10 files changed, 67 insertions(+), 2 deletions(-)

New commits:
commit a7ba654b7a40cef8017daf407e3e1727e694f874
Author: Sukneet Basuta <sukneet AT sourcemage.org>
Commit: Sukneet Basuta <sukneet AT sourcemage.org>

libgnomeprint: fix compilation by adding missing header

* PRE_BUILD: added, to apply patch
* stdio.patch: added, patch to apply missing header.

commit 779218c081d3a3e1a63f138a1be2219a44755ff0
Author: Sukneet Basuta <sukneet AT sourcemage.org>
Commit: Sukneet Basuta <sukneet AT sourcemage.org>

libgnomecups: => 0.2.3
fixed WEB_SITE

* PRE_BUILD: added, to apply patch
* glib.patch: added, fix compilation with glib>=2.31

diff --git a/gnome2-libs/libgnomecups/DETAILS
b/gnome2-libs/libgnomecups/DETAILS
index 1ca6e3c..d5fa833 100755
--- a/gnome2-libs/libgnomecups/DETAILS
+++ b/gnome2-libs/libgnomecups/DETAILS
@@ -1,5 +1,5 @@
SPELL=libgnomecups
- VERSION=0.2.2
+ VERSION=0.2.3
BRANCH=`echo $VERSION|cut -d . -f 1,2`
SOURCE=$SPELL-$VERSION.tar.bz2
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
@@ -7,7 +7,7 @@ SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
SOURCE_GPG="gurus.gpg:${SOURCE}.sig"
LICENSE[0]=LGPL
ENTERED=20020505
- UPDATED=20050318
+ WEB_SITE=http://www.gnome.org
KEYWORDS="cups gnome2 libs"
SHORT="Gnome library to CUPS system"
cat << EOF
diff --git a/gnome2-libs/libgnomecups/HISTORY
b/gnome2-libs/libgnomecups/HISTORY
index 4dae6c8..1f1ead6 100644
--- a/gnome2-libs/libgnomecups/HISTORY
+++ b/gnome2-libs/libgnomecups/HISTORY
@@ -1,3 +1,9 @@
+2012-07-08 Sukneet Basuta <sukneet AT sourcemage.org>
+ * DETAILS: updated spell to 0.2.3
+ fixed WEB_SITE
+ * PRE_BUILD: added, to apply patch
+ * glib.patch: added, fix compilation with glib>=2.31
+
2006-07-20 Treeve Jelbert <treeve AT sourcemage.org>
* DEPENDS: change glib -> glib2

diff --git a/gnome2-libs/libgnomecups/PRE_BUILD
b/gnome2-libs/libgnomecups/PRE_BUILD
new file mode 100755
index 0000000..4a5b046
--- /dev/null
+++ b/gnome2-libs/libgnomecups/PRE_BUILD
@@ -0,0 +1,4 @@
+default_pre_build &&
+cd $SOURCE_DIRECTORY &&
+
+patch -p1 < $SPELL_DIRECTORY/glib.patch
diff --git a/gnome2-libs/libgnomecups/glib.patch
b/gnome2-libs/libgnomecups/glib.patch
new file mode 100644
index 0000000..e84b0e6
--- /dev/null
+++ b/gnome2-libs/libgnomecups/glib.patch
@@ -0,0 +1,37 @@
+From d84eee9450b3b6f6155074915efc61bedcc8d446 Mon Sep 17 00:00:00 2001
+From: Dominique Leuenberger <dimstar AT opensuse.org>
+Date: Sun, 27 Nov 2011 21:36:41 +0100
+Subject: [PATCH] Fix: Only glib.h can be included
+
+---
+ libgnomecups/gnome-cups-i18n.c | 2 +-
+ libgnomecups/gnome-cups-init.h | 3 +--
+ 2 files changed, 2 insertions(+), 3 deletions(-)
+
+diff --git a/libgnomecups/gnome-cups-i18n.c b/libgnomecups/gnome-cups-i18n.c
+index 8987c5c..127756d 100644
+--- a/libgnomecups/gnome-cups-i18n.c
++++ b/libgnomecups/gnome-cups-i18n.c
+@@ -1,5 +1,5 @@
+ #include <config.h>
+-#include <glib/gmacros.h>
++#include <glib.h>
+ #include "gnome-cups-i18n.h"
+
+ #ifdef ENABLE_NLS
+diff --git a/libgnomecups/gnome-cups-init.h b/libgnomecups/gnome-cups-init.h
+index 22b682a..c4600fc 100644
+--- a/libgnomecups/gnome-cups-init.h
++++ b/libgnomecups/gnome-cups-init.h
+@@ -1,8 +1,7 @@
+ #ifndef GNOME_CUPS_INIT
+ #define GNOME_CUPS_INIT
+
+-#include <glib/gtypes.h>
+-#include <glib/gmacros.h>
++#include <glib.h>
+
+ G_BEGIN_DECLS
+
+--
+1.7.7
diff --git a/gnome2-libs/libgnomecups/libgnomecups-0.2.2.tar.bz2.sig
b/gnome2-libs/libgnomecups/libgnomecups-0.2.2.tar.bz2.sig
deleted file mode 100644
index 546e539..0000000
Binary files a/gnome2-libs/libgnomecups/libgnomecups-0.2.2.tar.bz2.sig and
/dev/null differ
diff --git a/gnome2-libs/libgnomecups/libgnomecups-0.2.3.tar.bz2.sig
b/gnome2-libs/libgnomecups/libgnomecups-0.2.3.tar.bz2.sig
new file mode 100644
index 0000000..0cd5b5e
Binary files /dev/null and
b/gnome2-libs/libgnomecups/libgnomecups-0.2.3.tar.bz2.sig differ
diff --git a/gnome2-libs/libgnomeprint/HISTORY
b/gnome2-libs/libgnomeprint/HISTORY
index 25e9f74..9062b14 100644
--- a/gnome2-libs/libgnomeprint/HISTORY
+++ b/gnome2-libs/libgnomeprint/HISTORY
@@ -1,3 +1,8 @@
+2012-07-08 Sukneet Basuta <sukneet AT sourcemage.org>
+ * PRE_BUILD: added, to apply patch
+ * stdio.patch: added, patch to apply missing header.
+ From gentoo.
+
2010-09-30 Vasil Yonkov <spirtbrat AT sourcemage.org>
* DETAILS: updated spell to 2.18.8

diff --git a/gnome2-libs/libgnomeprint/PRE_BUILD
b/gnome2-libs/libgnomeprint/PRE_BUILD
new file mode 100755
index 0000000..1055db2
--- /dev/null
+++ b/gnome2-libs/libgnomeprint/PRE_BUILD
@@ -0,0 +1,4 @@
+default_pre_build &&
+cd $SOURCE_DIRECTORY &&
+
+patch -p1 < $SPELL_DIRECTORY/stdio.patch
diff --git a/gnome2-libs/libgnomeprint/stdio.patch
b/gnome2-libs/libgnomeprint/stdio.patch
new file mode 100644
index 0000000..dd91954
--- /dev/null
+++ b/gnome2-libs/libgnomeprint/stdio.patch
@@ -0,0 +1,9 @@
+--- a/libgnomeprint/modules/cups/gnome-print-cups-transport.c
++++ b/libgnomeprint/modules/cups/gnome-print-cups-transport.c
+@@ -34,6 +34,7 @@
+ #include <sys/types.h>
+ #include <sys/stat.h>
+ #include <fcntl.h>
++#include <stdio.h>
+ #include <unistd.h>
+ #include <locale.h>



  • [SM-Commit] GIT changes to master grimoire by Sukneet Basuta (a7ba654b7a40cef8017daf407e3e1727e694f874), Sukneet Basuta, 07/08/2012

Archive powered by MHonArc 2.6.24.

Top of Page