Your message dated Sat, 05 May 2007 12:47:03 +0000 with message-id <[EMAIL PROTECTED]> and subject line Bug#361363: fixed in wip 2p3-9 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: wip Version: 2p3-8.1 Severity: wishlist Tags: patch When building 'wip' on ppc64/unstable, I get the following error: /usr/bin/make make[1]: Entering directory `/wip-2p3' ./domake Host name set to Linux. ### Invalid Host type: [linux]. ### Host argument must be one of: ### sun solaris sgi u2 convex osf x86-linux x86_64-linux sparc-linux alpha-linux aix hpux make[1]: *** [default] Error 1 make[1]: Leaving directory `/wip-2p3' make: *** [build-stamp] Error 2 With the attached patch 'wip' can be compiled on ppc64. Regards Andreas Jochens diff -urN ../tmp-orig/wip-2p3/makewip ./makewip --- ../tmp-orig/wip-2p3/makewip 2006-04-08 07:36:18.000000000 +0000 +++ ./makewip 2006-04-08 07:32:45.000000000 +0000 @@ -208,7 +208,7 @@ # # The following is a list of acceptable hosts (all lowercase). # -set hostList = (sun solaris sgi u2 convex osf x86-linux x86_64-linux sparc-linux alpha-linux aix hpux) +set hostList = (sun solaris sgi u2 convex osf powerpc64-linux x86-linux x86_64-linux sparc-linux alpha-linux aix hpux) # # Set up the defaults for the command line options. # @@ -318,6 +318,8 @@ set wiphost = 'x86-linux' else if (($v_uname[1] == 'Linux') && ($m_uname =~ *86_64)) then set wiphost = 'x86_64-linux' + else if (($v_uname[1] == 'Linux') && ($m_uname =~ *pc64)) then + set wiphost = 'powerpc64-linux' else if (($v_uname[1] == 'Linux') && ($m_uname == sparc)) then set wiphost = 'sparc-linux' else if (($v_uname[1] == 'Linux') && ($m_uname == alpha)) then @@ -357,6 +359,7 @@ if ("$wiphost" == 'mips') set wiphost = 'sgi' if ("$wiphost" == 'x86-linux') set wiphost = 'x86-linux' if ("$wiphost" == 'x86_64-linux') set wiphost = 'x86_64-linux' +if ("$wiphost" == 'powerpc64-linux') set wiphost = 'powerpc64-linux' if ("$wiphost" == 'alpha-linux') set wiphost = 'alpha-linux' if ("$wiphost" == 'sparc-linux') set wiphost = 'sparc-linux' # @@ -559,6 +562,20 @@ set theM = "$theM -O" set cFlags = "$cFlags -O -Dx86_64linux" endif +else if ("$wiphost" == 'powerpc64-linux') then +# For Linux, f77 is a shell script which runs f2c. + set doranlib = 1 + set doliblm = 1 +# set f77lib = ( $f77lib -lf2c ) + set f77lib = ( $f77lib -lpng -lz -lg2c ) + set theM = 'g77' + if ($dodebug > 0) then + set theM = "$theM -g" + set cFlags = "$cFlags -g -Dpowerpc64linux" + else + set theM = "$theM -O" + set cFlags = "$cFlags -O -Dpowerpc64linux" + endif else if ("$wiphost" == 'sparc-linux') then # For Linux, f77 is a shell script which runs f2c. set doranlib = 1 diff -urN ../tmp-orig/wip-2p3/wip-patch ./wip-patch --- ../tmp-orig/wip-2p3/wip-patch 2006-04-08 07:36:18.000000000 +0000 +++ ./wip-patch 2006-04-08 07:27:22.000000000 +0000 @@ -5,28 +5,31 @@ # The following is a list of acceptable hosts (all lowercase). # -set hostList = (sun solaris sgi u2 convex osf x86-linux sparc-linux alpha-linux aix hpux) -+set hostList = (sun solaris sgi u2 convex osf x86-linux x86_64-linux sparc-linux alpha-linux aix hpux) ++set hostList = (sun solaris sgi u2 convex osf powerpc64-linux x86-linux x86_64-linux sparc-linux alpha-linux aix hpux) # # Set up the defaults for the command line options. # -@@ -316,6 +316,8 @@ +@@ -316,6 +316,10 @@ set wiphost = 'sgi' else if (($v_uname[1] == 'Linux') && ($m_uname =~ *86)) then set wiphost = 'x86-linux' + else if (($v_uname[1] == 'Linux') && ($m_uname =~ *86_64)) then + set wiphost = 'x86_64-linux' ++ else if (($v_uname[1] == 'Linux') && ($m_uname =~ *pc64)) then ++ set wiphost = 'powerpc64-linux' else if (($v_uname[1] == 'Linux') && ($m_uname == sparc)) then set wiphost = 'sparc-linux' else if (($v_uname[1] == 'Linux') && ($m_uname == alpha)) then -@@ -354,6 +356,7 @@ +@@ -354,6 +358,8 @@ if ("$wiphost" == 'sun3') set wiphost = 'sun' if ("$wiphost" == 'mips') set wiphost = 'sgi' if ("$wiphost" == 'x86-linux') set wiphost = 'x86-linux' +if ("$wiphost" == 'x86_64-linux') set wiphost = 'x86_64-linux' ++if ("$wiphost" == 'powerpc_64-linux') set wiphost = 'powerpc64-linux' if ("$wiphost" == 'alpha-linux') set wiphost = 'alpha-linux' if ("$wiphost" == 'sparc-linux') set wiphost = 'sparc-linux' # -@@ -542,6 +545,20 @@ +@@ -542,6 +550,34 @@ set theM = "$theM -O" set cFlags = "$cFlags -O -Dx86linux" endif @@ -44,6 +47,20 @@ + set theM = "$theM -O" + set cFlags = "$cFlags -O -Dx86_64linux" + endif ++else if ("$wiphost" == 'powerpc64-linux') then ++# For Linux, f77 is a shell script which runs f2c. ++ set doranlib = 1 ++ set doliblm = 1 ++# set f77lib = ( $f77lib -lf2c ) ++ set f77lib = ( $f77lib -lpng -lz -lg2c ) ++ set theM = 'g77' ++ if ($dodebug > 0) then ++ set theM = "$theM -g" ++ set cFlags = "$cFlags -g -Dpowerpc64linux" ++ else ++ set theM = "$theM -O" ++ set cFlags = "$cFlags -O -Dpowerpc64linux" ++ endif else if ("$wiphost" == 'sparc-linux') then # For Linux, f77 is a shell script which runs f2c. set doranlib = 1
--- End Message ---
--- Begin Message ---Source: wip Source-Version: 2p3-9 We believe that the bug you reported is fixed in the latest version of wip, which is due to be installed in the Debian FTP archive: wip_2p3-9.diff.gz to pool/non-free/w/wip/wip_2p3-9.diff.gz wip_2p3-9.dsc to pool/non-free/w/wip/wip_2p3-9.dsc wip_2p3-9_i386.deb to pool/non-free/w/wip/wip_2p3-9_i386.deb 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. Matej Vela <[EMAIL PROTECTED]> (supplier of updated wip 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: Sat, 5 May 2007 14:37:29 +0200 Source: wip Binary: wip Architecture: source i386 Version: 2p3-9 Distribution: unstable Urgency: medium Maintainer: Debian QA Group <[EMAIL PROTECTED]> Changed-By: Matej Vela <[EMAIL PROTECTED]> Description: wip - Interactive graphic plotting package for high quality output Closes: 328339 361363 Changes: wip (2p3-9) unstable; urgency=medium . * QA upload. * Package is orphaned (#405731); set maintainer to Debian QA Group. * Acknowledge NMU. * Prune indirectly used libraries from the link line (`-lX11 -lncurses -lz -lg2c') and from build dependencies (zlib1g-dev). If not for #422365, we could also get rid of `-lpng' and libpng12-dev. See <http://lists.debian.org/debian-devel-announce/2005/11/msg00016.html>. * makewip: Use gcc rather than g77 (fixes unreported build failure, therefore urgency=medium). * makewip: Use host type `gnu' for all Debian systems, regardless of kernel and architecture. Closes: #361363. * src/include/wipdefs.h: Use predefined macros __i386__ and __alpha__ instead of relying on makewip to determine the architecture. * Makefile, domake: Replace with inline commands in debian/rules. * makewip.old: We already have an .orig.tar.gz; remove. * wip-patch: We already have a .diff.gz; remove. * Switch to debhelper 5. * debian/menu: Capitalize `WIP'. * debian/lintian-overrides: Ignore false positive on copyright-should-refer-to-common-license-file-for-gpl. * debian/rules: Remove .wiphistory on clean. * debian/watch: Add. * debian/wip.1: Refer to /usr/share/doc rather than /usr/doc. * Conforms to Standards version 3.7.2. . wip (2p3-8.1) unstable; urgency=low . * NMU * Rebuild against updated libpng dependancies. (Closes: #328339( Files: 0a7e3f6970df44c17a78e8253d0a8a3d 588 non-free/x11 optional wip_2p3-9.dsc c34e81183fb84d6895f4e35350e8809e 7164 non-free/x11 optional wip_2p3-9.diff.gz 0a367ceaa61232e2e565df4e2e2ecb48 918756 non-free/x11 optional wip_2p3-9_i386.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQFGPHqjqbYs6sQrY8oRAon6AJ9voOeRFf32SzvzJWVPfSkP9BLmqgCfWSq8 cKhWey+uzjOCXIn8PtA9hWk= =lsDn -----END PGP SIGNATURE-----
--- End Message ---

