Am Montag, den 30.04.2012, 12:10 +0200 schrieb Julien Cristau: > On Mon, Apr 30, 2012 at 10:26:54 +0200, t...@coldtobi.de wrote: > > > tags 664927 + patch > > tags 664927 + pending > > thanks > > > > Dear maintainer, > > > > I've prepared an NMU for python-drizzle (versioned as 1.0-3.1) and > > I will upload it (via sponsor) to DELAYED/5. Please feel free to tell me if > > I > > should delay it longer. > > > > Regards. > > diff -Nru python-drizzle-1.0/debian/changelog > > python-drizzle-1.0/debian/changelog > > --- python-drizzle-1.0/debian/changelog 2011-10-02 12:25:06.000000000 > > +0200 > > +++ python-drizzle-1.0/debian/changelog 2012-04-30 10:16:47.000000000 > > +0200 > > @@ -1,3 +1,13 @@ > > +python-drizzle (1.0-3.1) unstable; urgency=low > > + > > + * Non-maintainer upload. > > + * Fix "FTBFS: interface/globals.i:82: Error: Unable to find > > + 'libdrizzle/constants.h'" Changed include paths for libdrizzle from > > + libdrizzle/ to libdrizzle-1.0/ > > + (Closes: #664927) > > + > > + -- Tobias Frost <t...@coldtobi.de> Mon, 30 Apr 2012 10:15:33 +0200 > > + > > python-drizzle (1.0-3) unstable; urgency=medium > > > > * Team upload. > > > Where's the rest of the NMU diff? > > Cheers, > Julien
See attached patch. I dont know why it has not been included by nmudiff.
Description: Change include paths for libddrizzle to libdrizzle-1.0 Author: Tobias Frost <t...@coldtobi.de> Bug: 664927 --- a/interface/globals.i +++ b/interface/globals.i @@ -40,8 +40,8 @@ %feature("autodoc", "1"); %{ -#include <libdrizzle/drizzle_client.h> -#include <libdrizzle/drizzle_server.h> +#include <libdrizzle-1.0/drizzle_client.h> +#include <libdrizzle-1.0/drizzle_server.h> typedef struct drizzle_st Drizzle; typedef struct drizzle_con_st Connection; @@ -79,7 +79,7 @@ %ignore drizzle_con_context_free_fn; %ignore drizzle_query_context_free_fn; %ignore drizzle_event_watch_fn; -%include <libdrizzle/constants.h> +%include <libdrizzle-1.0/constants.h> %typedef uint32_t in_port_t;