After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 623333 - pygtk build failure with gtk bindings
pygtk build failure with gtk bindings
Status: RESOLVED DUPLICATE of bug 622870
Product: pygtk
Classification: Bindings
Component: gtk
unspecified
Other Linux
: Normal blocker
: ---
Assigned To: Nobody's working on this now (help wanted and appreciated)
Python bindings maintainers
Depends on:
Blocks:
 
 
Reported: 2010-07-02 00:06 UTC by Srinivas Rao
Modified: 2010-08-13 13:11 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Srinivas Rao 2010-07-02 00:06:50 UTC
Ticket subject: [pygtk] pygtk build failure with gtk bindings
Ticket number: 24586667
Ticket link: https://secure.mpcustomer.com/ticket.php?ticket=24586667
Ticket body: Hello,

Am completely new to the Linux development and following jhbuild
instructions for building the gnome and slowly getting my hands dirty -
hoping that I can contribute to gnome projects. Currently, the following
issue is blocking

The master pygtk git repository has the following for

gtk-base.defs #1835

(define-method select_month
 (of-object "GtkCalendar")
 (c-name "gtk_calendar_select_month")
 (return-type "gboolean")
 (parameters
   '("guint" "month")
   '("guint" "year")
 )
)

and the auto generated file gtk.c has the following implementation


   ret = gtk_calendar_select_month(GTK_CALENDAR(self->obj), month, year);

   return PyBool_FromLong(ret);

and fails the build with the following error


gtk.c: In function ‘_wrap_gtk_calendar_select_month’:
gtk.c:30434: error: void value not ignored as it ought to be
gtk.c: In function ‘_wrap_gtk_calendar_mark_day’:
gtk.c:30487: error: void value not ignored as it ought to be
gtk.c: In function ‘_wrap_gtk_calendar_unmark_day’:
gtk.c:30514: error: void value not ignored as it ought to be
make[2]: *** [_gtk_la-gtk.lo] Error 1
make[2]: Leaving directory `/home/Srinivas/Work/gnome/pygtk/gtk'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/Srinivas/Work/gnome/pygtk'
make: *** [all] Error 2
*** Error during phase build of pygtk: ########## Error running make   ***
[38/256]


Not sure, how to go about fix the issue, if this is real issue. Or Did I got
delta changes from latest versions ?

Would appreciate if someone can guide me through the process of submitting
changes and/or helping in resolving the above issue.

Rgds,
Srinivas
Comment 1 John Stowers 2010-08-13 13:11:17 UTC

*** This bug has been marked as a duplicate of bug 622870 ***