Your message dated Sun, 30 Apr 2006 09:56:12 -0700
with message-id <[EMAIL PROTECTED]>
and subject line Bug#361443: fixed in wxwidgets2.6 2.6.3.2
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: wxwidgets2.6
Version: 2.6.1.2
Severity: serious
Tags: patch

From my pbuilder build log:

...
 debian/rules build
dpkg-parsechangelog: warning: no utmp entry available and LOGNAME not defined; 
using uid of process (1234)
debian: warning: no utmp entry available and LOGNAME not defined; using uid of 
process (1234)
dh_testdir
generating control file libwxgtk2.6-dev.postinst
sed: -e expression #1, char 62: unterminated address regex
generating control file libwxgtk2.6-dev.prerm
sed: -e expression #1, char 62: unterminated address regex
make: *** [control-files-stamp] Error 1

I've attached a patch which fixes the build for me.
-- 
Daniel Schepler
diff -urN wxwidgets2.6-2.6.1.2.old/debian/rules wxwidgets2.6-2.6.1.2/debian/rules
--- wxwidgets2.6-2.6.1.2.old/debian/rules	2005-08-25 12:54:17.000000000 +0000
+++ wxwidgets2.6-2.6.1.2/debian/rules	2006-01-28 09:06:51.000000000 +0000
@@ -151,41 +151,41 @@
 	echo python_ver := python$(shell python -c "import sys;print sys.version[:3]") > $@
 
 debian/control: $(addprefix debian/,control.in python-version)
-	sed -e 's/=V/$(release)/g;     \
-		s/=SOV/$(sorelease)/g; \
-		s/=PY/$(python_ver)/g' \
+	sed -e 's/=V/$(release)/g;     '\
+'		s/=SOV/$(sorelease)/g; '\
+'		s/=PY/$(python_ver)/g' \
 		< debian/control.in > debian/control
 
 control-files-stamp: debian/control
 	dh_testdir
 	@for f in postinst prerm; do                                         \
 		echo "generating control file $(package_gtk_dev).$$f";       \
-		sed -e 's/=V/$(release)/g;                                   \
-			s/=PRIO/$(alt_prio)/g'                               \
+		sed -e 's/=V/$(release)/g;                                  '\
+'			s/=PRIO/$(alt_prio)/g'                               \
 			< debian/libwxgtk-dev.$$f                            \
 			> debian/$(package_gtk_dev).$$f;                     \
 	done;
 	@for f in postinst prerm; do                                         \
 		echo "generating control file $(package_gtk_dbg).$$f";       \
-		sed -e 's/=V/$(release)/g;                                   \
-			s/=PRIO/$(alt_prio)/g'                               \
+		sed -e 's/=V/$(release)/g;                                  '\
+'			s/=PRIO/$(alt_prio)/g'                               \
 			< debian/libwxgtk-dbg.$$f                            \
 			> debian/$(package_gtk_dbg).$$f;                     \
 	done;
 	@for f in docs postinst prerm; do                                    \
 		echo "generating control file $(package_gtk_py_lib).$$f";    \
-		sed -e 's/=PY/$(python_ver)/g;                               \
-			s|=WXPYDIR|$(wxpydir)|g;                             \
-			s/=V/$(release)/g;                                   \
-			s/=PRIO/$(alt_prio)/g'                               \
+		sed -e 's/=PY/$(python_ver)/g;                              '\
+'			s|=WXPYDIR|$(wxpydir)|g;                            '\
+'			s/=V/$(release)/g;                                  '\
+'			s/=PRIO/$(alt_prio)/g'                               \
 			< debian/python-wxgtk.$$f                            \
 			> debian/$(package_gtk_py_lib).$$f;                  \
 	done;
 	@for f in postinst prerm; do                                         \
 		echo "generating control file $(package_gtk_dbg_py).$$f";    \
-		sed -e 's/=PY/$(python_ver)/g;                               \
-			s/=V/$(release)/g;                                   \
-			s/=PRIO/$(alt_prio)/g'                               \
+		sed -e 's/=PY/$(python_ver)/g;                              '\
+'			s/=V/$(release)/g;                                  '\
+'			s/=PRIO/$(alt_prio)/g'                               \
 			< debian/python-wxgtk-dbg.$$f                        \
 			> debian/$(package_gtk_dbg_py).$$f;                  \
 	done;
@@ -202,17 +202,17 @@
 	done;
 	@for f in postinst prerm; do                                         \
 		echo "generating control file $(package_msw_dev).$$f";       \
-		sed -e 's/=V/$(release)/g;                                   \
-			s/=PRIO/$(alt_prio)/g;                               \
-			s/=H/$(cross_host)/g'                                \
+		sed -e 's/=V/$(release)/g;                                  '\
+'			s/=PRIO/$(alt_prio)/g;                              '\
+'			s/=H/$(cross_host)/g'                                \
 			< debian/libwxmsw-dev.$$f                            \
 			> debian/$(package_msw_dev).$$f;                     \
 	done;
 	@for f in postinst prerm; do                                         \
 		echo "generating control file $(package_msw_dbg).$$f";       \
-		sed -e 's/=V/$(release)/g;                                   \
-			s/=PRIO/$(alt_prio)/g;                               \
-			s/=H/$(cross_host)/g'                                \
+		sed -e 's/=V/$(release)/g;                                  '\
+'			s/=PRIO/$(alt_prio)/g;                              '\
+'			s/=H/$(cross_host)/g'                                \
 			< debian/libwxmsw-dbg.$$f                            \
 			> debian/$(package_msw_dbg).$$f;                     \
 	done;
@@ -220,8 +220,8 @@
 #		sed -e 's/=V/$(release)/g' < debian/wx-common.menu           \
 #			> debian/$(package_common).menu;
 	@echo "generating control file lintian-override";                    \
-		sed -e 's/=V/$(release)/g;                                   \
-			s/=SOV/$(sorelease)/g'                               \
+		sed -e 's/=V/$(release)/g;                                  '\
+'			s/=SOV/$(sorelease)/g'                               \
 			< debian/lintian-override.in                         \
 			> debian/lintian-override;                           \
 	touch $@

--- End Message ---
--- Begin Message ---
Source: wxwidgets2.6
Source-Version: 2.6.3.2

We believe that the bug you reported is fixed in the latest version of
wxwidgets2.6, which is due to be installed in the Debian FTP archive:

libwxbase2.6-0_2.6.3.2_i386.deb
  to pool/main/w/wxwidgets2.6/libwxbase2.6-0_2.6.3.2_i386.deb
libwxbase2.6-dbg_2.6.3.2_i386.deb
  to pool/main/w/wxwidgets2.6/libwxbase2.6-dbg_2.6.3.2_i386.deb
libwxbase2.6-dev_2.6.3.2_i386.deb
  to pool/main/w/wxwidgets2.6/libwxbase2.6-dev_2.6.3.2_i386.deb
libwxgtk2.6-0_2.6.3.2_i386.deb
  to pool/main/w/wxwidgets2.6/libwxgtk2.6-0_2.6.3.2_i386.deb
libwxgtk2.6-dbg_2.6.3.2_i386.deb
  to pool/main/w/wxwidgets2.6/libwxgtk2.6-dbg_2.6.3.2_i386.deb
libwxgtk2.6-dev_2.6.3.2_i386.deb
  to pool/main/w/wxwidgets2.6/libwxgtk2.6-dev_2.6.3.2_i386.deb
python-wxgtk2.6_2.6.3.2_i386.deb
  to pool/main/w/wxwidgets2.6/python-wxgtk2.6_2.6.3.2_i386.deb
python-wxtools_2.6.3.2_all.deb
  to pool/main/w/wxwidgets2.6/python-wxtools_2.6.3.2_all.deb
python-wxversion_2.6.3.2_all.deb
  to pool/main/w/wxwidgets2.6/python-wxversion_2.6.3.2_all.deb
wx-common_2.6.3.2_i386.deb
  to pool/main/w/wxwidgets2.6/wx-common_2.6.3.2_i386.deb
wx2.6-doc_2.6.3.2_all.deb
  to pool/main/w/wxwidgets2.6/wx2.6-doc_2.6.3.2_all.deb
wx2.6-examples_2.6.3.2_all.deb
  to pool/main/w/wxwidgets2.6/wx2.6-examples_2.6.3.2_all.deb
wx2.6-headers_2.6.3.2_i386.deb
  to pool/main/w/wxwidgets2.6/wx2.6-headers_2.6.3.2_i386.deb
wx2.6-i18n_2.6.3.2_all.deb
  to pool/main/w/wxwidgets2.6/wx2.6-i18n_2.6.3.2_all.deb
wxwidgets2.6_2.6.3.2.dsc
  to pool/main/w/wxwidgets2.6/wxwidgets2.6_2.6.3.2.dsc
wxwidgets2.6_2.6.3.2.tar.gz
  to pool/main/w/wxwidgets2.6/wxwidgets2.6_2.6.3.2.tar.gz



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Ron Lee <[EMAIL PROTECTED]> (supplier of updated wxwidgets2.6 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.7
Date: Fri, 14 Apr 2006 16:50:24 +0930
Source: wxwidgets2.6
Binary: wx2.6-headers-msw python-wxversion libwxmsw2.6-dbg python-wxgtk2.6 
libwxbase2.6-0 wx2.6-examples libwxgtk2.6-dbg python-wxgtk2.6-dbg wx2.6-doc 
python-wxtools libwxgtk2.6-dev wx2.6-headers wx2.6-i18n wx-common 
libwxbase2.6-dev libwxbase2.6-dbg libwxgtk2.6-0 libwxmsw2.6-dev
Architecture: source i386 all
Version: 2.6.3.2
Distribution: unstable
Urgency: low
Maintainer: Ron Lee <[EMAIL PROTECTED]>
Changed-By: Ron Lee <[EMAIL PROTECTED]>
Description: 
 libwxbase2.6-0 - wxBase library (runtime) - non-GUI support classes of 
wxWidgets t
 libwxbase2.6-dbg - wxBase library (debug) - non-GUI support classes of 
wxWidgets too
 libwxbase2.6-dev - wxBase library (development) - non-GUI support classes of 
wxWidge
 libwxgtk2.6-0 - wxWidgets Cross-platform C++ GUI toolkit (GTK+ runtime)
 libwxgtk2.6-dbg - wxWidgets Cross-platform C++ GUI toolkit (GTK+ development)
 libwxgtk2.6-dev - wxWidgets Cross-platform C++ GUI toolkit (GTK+ development)
 python-wxgtk2.6 - wxWidgets Cross-platform C++ GUI toolkit (wxPython binding)
 python-wxtools - wxWidgets Cross-platform C++ GUI toolkit (wxPython common 
files)
 python-wxversion - wxWidgets Cross-platform C++ GUI toolkit (wxPython version 
select
 wx-common  - wxWidgets Cross-platform C++ GUI toolkit (common support files)
 wx2.6-doc  - wxWidgets Cross-platform C++ GUI toolkit (documentation)
 wx2.6-examples - wxWidgets Cross-platform C++ GUI toolkit (examples)
 wx2.6-headers - wxWidgets Cross-platform C++ GUI toolkit (header files)
 wx2.6-i18n - wxWidgets Cross-platform C++ GUI toolkit (i18n support)
Closes: 327638 328896 328966 333944 342761 350695 358219 361443
Changes: 
 wxwidgets2.6 (2.6.3.2) unstable; urgency=low
 .
   * Next try for an upload candidate.
   * Fixes FTBFS on GNU/kFreeBSD. Closes: #327638
   * Update fr.po, thanks to Thomas Huriaux and debian-l10n-french.
     Closes: #328966
   * Split wxbase back into its own package, after all these years
     and just after I drop it, someone finally has a use for it.
     Such is life.  Closes: #333944
   * Fixes FTBFS with new make.  If this ugly quoting is the tradeoff,
     I'm itching to learn of the fabulous benefits...
     Ack NMU for this from Kurt Roeckx to keep the amd64 transition
     rolling while my x86 build machine was painfully dying.  Thanks!
     Closes: #350695, #361443
   * New FSF address in copyright file.
   * Add an index.html link to the doc contents page.  Closes: #328896
   * Fixes declarations for friends, as required by C++, and now gcc4.1.
     Closes: #358219
   * Add an unpack_examples script, loosely based on one submitted
     by Richard Esplin.  Closes: #342761
   * Disable the reserved vtable entries (again, but this time its
     optional) to retain compatibility with the existing release
     in the distro.
   * Update build-deps for xorg7.
Files: 
 fdb88ee83ed38ec9df085bbbcd4f567f 995 libs optional wxwidgets2.6_2.6.3.2.dsc
 45f7fa2aacb49e84d1b27e98a03383f1 15126609 libs optional 
wxwidgets2.6_2.6.3.2.tar.gz
 d39b1ba4359b3a92ee13d752f79b621a 536226 libs optional 
libwxbase2.6-0_2.6.3.2_i386.deb
 d3c3c2bb3ad1f3b0d8913e7673f00621 34632 libdevel optional 
libwxbase2.6-dev_2.6.3.2_i386.deb
 bbbd88f67c118ed821dbcf730f6cf80f 2922796 libdevel extra 
libwxbase2.6-dbg_2.6.3.2_i386.deb
 18198c7b52296db7aaf23ba2e6fc2da7 2756692 libs optional 
libwxgtk2.6-0_2.6.3.2_i386.deb
 a99a0b986ed4db63e67aaebb4822ab74 34976 libdevel optional 
libwxgtk2.6-dev_2.6.3.2_i386.deb
 babdcef0fa1d868ebcb95d34de2a689e 18928006 libdevel extra 
libwxgtk2.6-dbg_2.6.3.2_i386.deb
 385ef413840b00c924d50c9c90d17d20 2768494 python optional 
python-wxgtk2.6_2.6.3.2_i386.deb
 980ea10f0626955a9c73cf974fdf01b2 47316 devel optional 
wx-common_2.6.3.2_i386.deb
 be93cde0a2b51946a7b61ebf6ff591b8 861320 devel optional 
wx2.6-headers_2.6.3.2_i386.deb
 53b5637770b239c03a2e8c0ce9fc499d 20692 python optional 
python-wxversion_2.6.3.2_all.deb
 17c723595c76fc2f3660f73e7ec0aa60 17224 python optional 
python-wxtools_2.6.3.2_all.deb
 3f555ddd94ade6d3e60f10d199c00959 629264 libs optional 
wx2.6-i18n_2.6.3.2_all.deb
 01d4a2f8e5cee5659abfa9d734d98336 1174722 doc optional wx2.6-doc_2.6.3.2_all.deb
 b7797730807338417c196dac9b643252 3600858 devel optional 
wx2.6-examples_2.6.3.2_all.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.3 (GNU/Linux)

iD8DBQFERerkp4BCHGgCHOQRAmM5AJ9ziYiN337P0xtaKXOMkKBon0SKmgCfW9QB
q1ciIcA7spyqXfSjrMSMsvI=
=LDq7
-----END PGP SIGNATURE-----


--- End Message ---

Reply via email to