Your message dated Sat, 05 May 2007 18:02:03 +0000
with message-id <[EMAIL PROTECTED]>
and subject line Bug#361202: fixed in fakechroot 2.6-1
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: fakechroot
Version: 2.5-1
Severity: wishlist
Tags: patch

Hello,

please support the 32-bit biarch files also on ppc64.

The patch adds 32-bit powerpc support on the ppc64 architecture in
a similiar way as 32-bit i386 is supported on amd64.

The patch also changes the Build-Depends from 'ia32-libs-dev', which
does not exist anymore, to 'libc6-dev-i386' on amd64.


Regards
Andreas Jochens

diff -urN ../tmp-orig/fakechroot-2.5/debian/control ./debian/control
--- ../tmp-orig/fakechroot-2.5/debian/control   2006-04-07 06:53:02.000000000 
+0000
+++ ./debian/control    2006-04-07 06:53:06.000000000 +0000
@@ -3,7 +3,7 @@
 Section: utils
 Priority: optional
 Standards-Version: 3.6.2
-Build-Depends: libc6-dev-s390x [s390], libc6-dev-sparc64 [sparc], 
ia32-libs-dev [amd64], yada (>= 0.48)
+Build-Depends: libc6-dev-s390x [s390], libc6-dev-sparc64 [sparc], 
libc6-dev-powerpc [ppc64], libc6-dev-i386 [amd64], yada (>= 0.48)
 
 Package: fakechroot
 Architecture: any
diff -urN ../tmp-orig/fakechroot-2.5/debian/packages ./debian/packages
--- ../tmp-orig/fakechroot-2.5/debian/packages  2006-04-07 06:53:02.000000000 
+0000
+++ ./debian/packages   2006-04-07 06:52:59.000000000 +0000
@@ -24,7 +24,8 @@
  (c) 2003-2005 Piotr Roszatycki <[EMAIL PROTECTED]>, LGPL
 Build-Depends: libc6-dev-s390x [s390]
 Build-Depends: libc6-dev-sparc64 [sparc]
-Build-Depends: ia32-libs-dev [amd64]
+Build-Depends: libc6-dev-powerpc [ppc64]
+Build-Depends: libc6-dev-i386 [amd64]
 Build: bash
  CC=${CC:-gcc}
  CFLAGS=${CFLAGS:--Wall -pedantic -g}
@@ -94,6 +95,26 @@
                      $COMMON_CONFIG
          popd
      fi
+     if [ "$DEB_BUILD_ARCH" = "ppc64" ]; then
+         pushd build-tree-lib-biarch
+             CC="gcc -m32" CFLAGS="$CFLAGS" \
+                 ../configure \
+                    --cache-file=../config.biarch.cache \
+                    --build=powerpc64-linux \
+                    --host=powerpc-linux \
+                    --libdir=/usr/lib32 \
+                     $COMMON_CONFIG
+         popd
+         pushd build-tree-fake-biarch
+             CC="gcc -m32" CFLAGS="$CFLAGS" \
+                 ../fake/configure \
+                    --cache-file=../config.biarch.cache \
+                    --build=powerpc64-linux \
+                    --host=powerpc-linux \
+                    --libdir=/usr/lib32 \
+                     $COMMON_CONFIG
+         popd
+     fi
      if [ "$DEB_BUILD_ARCH" = "amd64" ]; then
          pushd build-tree-lib-biarch
              CC="gcc -m32" CFLAGS="$CFLAGS" \
@@ -178,15 +199,20 @@
  file-in-unusual-dir emul/ia32-linux/usr/lib/libfakechroot.so
  file-in-unusual-dir usr/lib64/fakechroot/libfakechroot.so
  file-in-unusual-dir usr/lib64/libfakechroot.so
+ file-in-unusual-dir usr/lib32/fakechroot/libfakechroot.so
+ file-in-unusual-dir usr/lib32/libfakechroot.so
  non-standard-dir-in-usr emul/ia32-linux/usr/lib/
  non-standard-dir-in-usr usr/lib64/
+ non-standard-dir-in-usr usr/lib32/
  non-standard-file-perm emul/ia32-linux/usr/lib/libfakechroot.so 0744 != 0644
  non-standard-file-perm usr/lib64/libfakechroot.so 0744 != 0644
+ non-standard-file-perm usr/lib32/libfakechroot.so 0744 != 0644
  non-standard-file-perm usr/lib/libfakechroot.so 0744 != 0644
  no-shlibs-control-file usr/lib/libfakechroot.so
  package-name-doesnt-match-sonames libfakechroot
  package-name-doesnt-match-sonames libfakechroot.so
  shlib-with-bad-permissions emul/ia32-linux/usr/lib/libfakechroot.so 0744
  shlib-with-bad-permissions usr/lib64/libfakechroot.so 0744
+ shlib-with-bad-permissions usr/lib32/libfakechroot.so 0744
  shlib-with-bad-permissions usr/lib/libfakechroot.so 0744
 Contains: libs
diff -urN ../tmp-orig/fakechroot-2.5/debian/rules ./debian/rules
--- ../tmp-orig/fakechroot-2.5/debian/rules     2006-04-07 06:53:02.000000000 
+0000
+++ ./debian/rules      2006-04-07 06:53:03.000000000 +0000
@@ -182,6 +182,26 @@
        echo -E '                    $$COMMON_CONFIG';\
        echo -E '        popd';\
        echo -E '    fi';\
+       echo -E '    if [ "$$DEB_BUILD_ARCH" = "ppc64" ]; then';\
+       echo -E '        pushd build-tree-lib-biarch';\
+       echo -E '            CC="gcc -m32" CFLAGS="$$CFLAGS" \';\
+       echo -E '                ../configure \';\
+       echo -E '                    --cache-file=../config.biarch.cache \';\
+       echo -E '                    --build=powerpc64-linux \';\
+       echo -E '                    --host=powerpc-linux \';\
+       echo -E '                    --libdir=/usr/lib32 \';\
+       echo -E '                    $$COMMON_CONFIG';\
+       echo -E '        popd';\
+       echo -E '        pushd build-tree-fake-biarch';\
+       echo -E '            CC="gcc -m32" CFLAGS="$$CFLAGS" \';\
+       echo -E '                ../fake/configure \';\
+       echo -E '                    --cache-file=../config.biarch.cache \';\
+       echo -E '                    --build=powerpc64-linux \';\
+       echo -E '                    --host=powerpc-linux \';\
+       echo -E '                    --libdir=/usr/lib32 \';\
+       echo -E '                    $$COMMON_CONFIG';\
+       echo -E '        popd';\
+       echo -E '    fi';\
        echo -E '    if [ "$$DEB_BUILD_ARCH" = "amd64" ]; then';\
        echo -E '        pushd build-tree-lib-biarch';\
        echo -E '            CC="gcc -m32" CFLAGS="$$CFLAGS" \';\


--- End Message ---
--- Begin Message ---
Source: fakechroot
Source-Version: 2.6-1

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

fakechroot_2.6-1.diff.gz
  to pool/main/f/fakechroot/fakechroot_2.6-1.diff.gz
fakechroot_2.6-1.dsc
  to pool/main/f/fakechroot/fakechroot_2.6-1.dsc
fakechroot_2.6-1_i386.deb
  to pool/main/f/fakechroot/fakechroot_2.6-1_i386.deb
fakechroot_2.6.orig.tar.gz
  to pool/main/f/fakechroot/fakechroot_2.6.orig.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.
Piotr Roszatycki <[EMAIL PROTECTED]> (supplier of updated fakechroot 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 17:20:28 +0200
Source: fakechroot
Binary: fakechroot
Architecture: source i386
Version: 2.6-1
Distribution: unstable
Urgency: low
Maintainer: Piotr Roszatycki <[EMAIL PROTECTED]>
Changed-By: Piotr Roszatycki <[EMAIL PROTECTED]>
Description: 
 fakechroot - gives a fake chroot environment
Closes: 361202 363403 410145 410739 412141 412603 412918
Changes: 
 fakechroot (2.6-1) unstable; urgency=low
 .
   * New environment variable FAKECHROOT_EXCLUDE_PATH.
   * Fixed getcwd(3) function. Closes: #410145, #410739.
   * Fixed readlink(2) function. Closes: #412141.
   * Fixed mktemp(3) function. Closes: #412918.
   * The chroot(2) function is now recursive and allows nested chroots.
     Closes: #412603.
   * Updated manpage.
   * Supported 32-bit biarch on ppc64 architecture. Closes: #361202.
   * Fixed typo in package's description. Closes: #363403.
Files: 
 f1ff59b59c0cd04bacac28b659a408de 666 utils optional fakechroot_2.6-1.dsc
 1ac07b265890cb3b5379327c3c8b07ab 445712 utils optional 
fakechroot_2.6.orig.tar.gz
 5d8d1c686cb1f3e387eacd91acbeb291 6280 utils optional fakechroot_2.6-1.diff.gz
 a9779b75bbe89e2a63650d28fd6eed75 25798 utils optional fakechroot_2.6-1_i386.deb

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

iD8DBQFGPMLIhMHHe8CxClsRArsJAKDMWduAIQcFCdw0PDvhs9shjkjivACgkpsB
DRB67EXxBFyQsY4mMui9Wrs=
=JaDP
-----END PGP SIGNATURE-----


--- End Message ---

Reply via email to