Your message dated Tue, 10 Oct 2006 22:31:46 +0200
with message-id <[EMAIL PROTECTED]>
and subject line python-popy: #327331 done - package has been removed from
unstable
has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere. Please contact me immediately.)
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--- Begin Message ---
Package: python-popy
Version: 2.0.8-7.1
Severity: serious
Tags: patch
When building 'python-popy' on unstable, I get the following error:
make[1]: Entering directory `/python-popy-2.0.8'
gcc -fPIC -Wstrict-prototypes -Wall -O6 -fomit-frame-pointer \
-I/usr/include/python2.1/config \
-I/usr/include/python2.1 \
-DHAVE_CONFIG=1 -I/usr/include/postgresql
-I/usr/include/postgresql/server -Wall \
-DVERSION=\"2.0.8\" -I. -c PoPymodule.c -o PoPymodule2.1.o
In file included from PoPymodule.c:39:
PoPymodule.h:41:29: error: server/postgres.h: No such file or directory
PoPymodule.h:42:36: error: server/catalog/pg_type.h: No such file or directory
With the attached patch 'python-popy' can be compiled on unstable.
Regards
Andreas Jochens
diff -urN ../tmp-orig/python-popy-2.0.8/PoPymodule.h ./PoPymodule.h
--- ../tmp-orig/python-popy-2.0.8/PoPymodule.h 2005-09-09 07:37:56.000000000
+0000
+++ ./PoPymodule.h 2005-09-09 07:36:28.000000000 +0000
@@ -38,8 +38,8 @@
#include <Python.h>
#include <structmember.h>
-#include <server/postgres.h>
-#include <server/catalog/pg_type.h>
+#include <postgres.h>
+#include <catalog/pg_type.h>
#include <libpq-fe.h>
#include <libpq/libpq-fs.h>
#include <regex.h>
diff -urN ../tmp-orig/python-popy-2.0.8/debian/control ./debian/control
--- ../tmp-orig/python-popy-2.0.8/debian/control 2005-09-09
07:37:56.000000000 +0000
+++ ./debian/control 2005-09-09 07:31:48.000000000 +0000
@@ -2,7 +2,7 @@
Section: libs
Priority: optional
Maintainer: James W. Penny <[EMAIL PROTECTED]>
-Build-Depends: debhelper (>> 3.0.0), postgresql-dev, python-dev,
python2.1-dev, python2.2-dev, python2.3-dev
+Build-Depends: debhelper, postgresql-dev, libssl-dev, python-dev,
python2.1-dev, python2.2-dev, python2.3-dev
Standards-Version: 3.6.0
Package: python-popy
--- End Message ---
--- Begin Message ---
--- End Message ---