Bug#623110: Reproduced in Wheezy

2014-07-30 Thread Eleanor Chen
I can reproduce this bug in the current all-updated wheezy.


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#721357: cwidget: support cross build

2013-10-10 Thread Eleanor Chen
On Thu, Oct 10, 2013 at 7:36 AM, Colin Watson  wrote:
> On Sat, Aug 31, 2013 at 12:46:56AM +0800, Eleanor Chen wrote:
>> cwidget is needed to crossbuild a working chroot with build-essential,
>> so here is a patch to add cross build support to it.
>
> Hi,
>
> I'm not the maintainer, but I happened to notice this bug; you seem to
> have forgotten to attach the patch?
>

I'm sorry, attached is the patch.

Thanks,
Eleanor


cwidget-cross.diff
Description: Binary data


Bug#722088: libx11: add mips64{,el} to symbols for 64 bit

2013-09-07 Thread Eleanor Chen
Package: src:libx11
Version: 2:1.6.1-1
Tags: patch

In symbols file of libx11, 64 bit architectures are specified to make
it corrected. Here is a patch adding mips64 and mips64el to the 64bit
architecture list.


Thanks,
Eleanor Chen


mips64-is-64-bit.diff
Description: Binary data


Bug#721365: e2fsprogs: fix for cross build support

2013-08-30 Thread Eleanor Chen
Package: src:e2fsprogs
Version: 1.42.8-1
User: crossbu...@debian.org
Usertags: cross

In debian/rules, there is a line like this:
SYS_BLKID_VER := $(shell dpkg-query -W libblkid1 | cut -f 2 | cut -b 1)

This makes dpkg-query confused when it's actually being cross compiled
and looks for native arch of the build machine, thus failing the
build. This can be fixed by calling:
SYS_BLKID_VER := $(shell dpkg-query -W libblkid1:$(DEB_HOST_ARCH) |
cut -f 2 | cut -b 1)

Thanks,
Eleanor Chen


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#721359: util-linux: fix cross build

2013-08-30 Thread Eleanor Chen
Package: src:util-linux
Version: 2.20.1-5.5
Tags: patch
User: crossbu...@debian.org
Usertags: cross

util-linux fail to build when being cross build, and if
scanf_cv_type_modifier=as is passed then there is no problem.

Note selinux may not be wanted during bootstrap, and it needs to have
stage support to handle it.

Thanks,
Eleanor Chen


util-linux-cross.diff
Description: Binary data


Bug#721354: cracklib2: stage1 support

2013-08-30 Thread Eleanor Chen
Package: src:cracklib2
Version: 2.9.0-1
Tags: patch
User: crossbu...@debian.org
Usertags: cross

cracklib2 is something needs to be worked on during bootstrap process,
at the time python isn't available. Attached patch adds stage1 support
which makes it build without python when DEB_STAGE=1 is passed during
build.

Thanks,
Eleanor Chen


cracklib2-stage1.diff
Description: Binary data


Bug#721352: ustr: set correct CC when cross build

2013-08-30 Thread Eleanor Chen
Package: src:ustr
Version: 1.0.4-3
Tags: patch
User: crossbu...@debian.org
Usertags: cross

When being cross build, most parts of ustr needs to be compiled with
the cross CC but some of them needs to be compiled with native CC.
Currently it does not distinguish the two in Makefile and attached
patch adds support for it.

Thanks,
Eleanor

-- 
It is the time you have spent for your rose that makes your rose so important.


set-correct-CC-and-NATIVE_CC.diff
Description: Binary data


Bug#721358: coreutils: use dummy man when cross build

2013-08-30 Thread Eleanor Chen
Package: src:coreutils

During cross build help2man may not run leading FTBFS, it would be
good if it uses dummy-man. Here is the patch for it, but I'm not sure
if it's an appropriate solution.


Thanks,
Eleanor Chen


coreutils-use-dummy-man-when-cross.diff
Description: Binary data


Bug#721357: cwidget: support cross build

2013-08-30 Thread Eleanor Chen
Package: src:cwidget
Version: 0.5.16-3.4
Tags: patch
User: crossbu...@debian.org
Usertags: cross

cwidget is needed to crossbuild a working chroot with build-essential,
so here is a patch to add cross build support to it.

Thanks,
Eleanor Chen


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#721337: bash: use correct strip command when cross build

2013-08-30 Thread Eleanor Chen
Package: src:bash
User: crossbu...@debian.org
Usertags: cross

During the build process, debian/rules calls strip command directly.
This will cause trouble for people doing cross build because host
architecture's strip command may don't know how to handle the
resulting binary.

Something like the following will do the trick:

ifneq ($(DEB_BUILD_GNU_TYPE),$(DEB_HOST_GNU_TYPE))
STRIP=$(DEB_BUILD_GNU_TYPE)-strip
else
STRIP=strip
fi

Thanks,
Eleanor Chen


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#720713: sqlite3: support cross build

2013-08-24 Thread Eleanor Chen
Package: src:sqlite3
Version: 3.7.17-1
Tags: patch
User: crossbu...@debian.org
Usertags: cross

Attached patch detects if the build process is cross build, if true it
gaves up the generation process of pkgIndex.tcl.

Thanks,
Eleanor

-- 
It is the time you have spent for your rose that makes your rose so important.


sqlite3_cross.diff
Description: Binary data


Bug#720655: file: stage build support

2013-08-24 Thread Eleanor Chen
Package: src:file
Version: 1:5.14-2
Tags: patch
User: crossbu...@debian.org
Usertags: cross

Attached patch adds stage build support for file, so that python can
be disabled when bootstraping. Then the package can be built with
something like:

DEB_STAGE=stage1 dpkg-buildpackage -a$(ARCH) -d

Thanks,
Eleanor

-- 
It is the time you have spent for your rose that makes your rose so important.


file-stage1.diff
Description: Binary data


Bug#720654: openssl: add mipsn32/mips64 support and enable cross build

2013-08-24 Thread Eleanor Chen
Package: src:openssl
Version: 1.0.1e-3
Tags: patch
User: crossbu...@debian.org
Usertags: cross

Hi,

Attached patch added mipsn32 and mips64 configurations to openssl,
also it added some checks to make it able to be cross built (by
comparing DEB_BUILD_ARCH and DEB_HOST_ARCH).

Thanks,
Eleanor

-- 
It is the time you have spent for your rose that makes your rose so important.


openssl-cross.diff
Description: Binary data


Bug#719980: libidn: disable java and check when cross build

2013-08-17 Thread Eleanor Chen
Package: src:libidn
Version: 1.28-1
Tags: patch
User: crossbu...@debian.org
Usertags: cross

Attached patch disables java and check when cross build, this makes
the life of cross bootstrap a lot easier.

Thanks,
Eleanor

-- 
It is the time you have spent for your rose that makes your rose so important.


libidn-cross.diff
Description: Binary data


Bug#719978: alsa-lib: fix FTBFS when DSO linking

2013-08-17 Thread Eleanor Chen
Package: src:alsa-lib
Version: 1.0.27.2-1
Tags: patch

Attached patch fixes the FTBFS issue when DSO linking is used.

Thanks,
Eleanor

-- 
It is the time you have spent for your rose that makes your rose so important.


alsa-dso.diff
Description: Binary data


Bug#719962: isl: fix FTBFS when DSO linking

2013-08-17 Thread Eleanor Chen
Package: src:isl
Version: 0.11.2-1
Tags: patch

Attached patch fixes the FTBFS issue when DSO linking is used.

Thanks,
Eleanor

-- 
It is the time you have spent for your rose that makes your rose so important.


isl_dso.diff
Description: Binary data


Bug#719957: cloog: fix FTBFS when DSO linking

2013-08-17 Thread Eleanor Chen
Package: src:cloog
Version: 0.18.0-2
Tags: patch

Attached patch fixed the FTBFS issue when DSO linking is enabled. Also
it would be good if dh_autoreconf is used to regenerate autoconf
stuff.

Thanks,
Eleanor

-- 
It is the time you have spent for your rose that makes your rose so important.


cloog_dso.diff
Description: Binary data


Bug#719955: flex: cross build support

2013-08-17 Thread Eleanor Chen
Package: src:flex
Version: 2.5.35-10.1
Tags: patch
User: crossbu...@debian.org
Usertags: cross

Attached patch added cross build support for flex, it uses the correct
`strip' and added related variables to make cross build go forward.


Thanks,
Eleanor

-- 
It is the time you have spent for your rose that makes your rose so important.


flex-cross.diff
Description: Binary data


Bug#719953: numactl: add MIPS64 related archs and multi-arch

2013-08-17 Thread Eleanor Chen
Package: src:numactl
Version: 2.0.8-3
Tags: patch

Attached patch to debian/control added mipsn32, mipsn32el, mips64, and
mips64el to the supported architecture list, and marked the package as
Multiarch capable.

Thanks,
Eleanor

-- 
It is the time you have spent for your rose that makes your rose so important.


d-control.diff
Description: Binary data


Bug#719952: numactl: Fix FTBFS when DSO linking

2013-08-16 Thread Eleanor Chen
Package: src:numactl
Version: 2.0.8-3
Tags: patch

Attached patch fixes the FTBFS when using DSO linking.

Thanks,
Eleanor

-- 
It is the time you have spent for your rose that makes your rose so important.


numactl-dso.diff
Description: Binary data


Bug#719911: realpath: use correct CC when cross build

2013-08-16 Thread Eleanor Chen
Package: src:realpath
Version: 1.18-1
Tags: patch
User: crossbu...@debian.org
Usertags: cross

realpath hardcodes `CC := gcc' in common.mk, which causes trouble when
cross build. Attached patches fixes this problem.

Thanks,
Eleanor

-- 
It is the time you have spent for your rose that makes your rose so important.


realpath_CC_variable.diff
Description: Binary data


realpath_correct_cc.diff
Description: Binary data


Bug#719907: texinfo: support cross build

2013-08-16 Thread Eleanor Chen
Package: src:texinfo
Version: 5.1.dfsg.1-4
Tags: patch
User: crossbu...@debian.org
Usertags: cross

texinfo needs two changes for cross build:
1. Pass --build and --host during configure
2. Disable `make check ALL_TESTS=yes' when cross build

Attached patch addressed the above changes.

Thanks,
Eleanor

-- 
It is the time you have spent for your rose that makes your rose so important.


texinfo_cross.diff
Description: Binary data


Bug#719906: gawk: disable test when being cross build

2013-08-16 Thread Eleanor Chen
Package: src:gawk
Version: 1:4.0.1+dfsg-2
Tags: patch
User: crossbu...@debian.org
Usertags: cross

gawk currently runs tests in dh_auto_test, this should be disabled
when being cross build because it cannot run on CPU that does not
execute those cross compiled binaries.

Thanks,
Eleanor

-- 
It is the time you have spent for your rose that makes your rose so important.


gawk_disable-check-cross.diff
Description: Binary data


Bug#719905: tcp-wrappers: Fix FTBFS when DSO linking

2013-08-16 Thread Eleanor Chen
Package: src:tcp-wrappers
Version: 7.6.q-24
Tags: patch

Attached patch fixes the FTBFS bug when DSO linking is enabled.

Thanks,
Eleanor

-- 
It is the time you have spent for your rose that makes your rose so important.


tcp-wrappers_dso.diff
Description: Binary data


Bug#719902: slang2: Fix FTBFS when DSO linking

2013-08-16 Thread Eleanor Chen
Package: src:slang2
Version: 2.2.4-15
Tags: patch

Attached bug fixes the FTBFS problem when DSO linking is used.


Thanks,
Eleanor

-- 
It is the time you have spent for your rose that makes your rose so important.


slang2-dso.diff
Description: Binary data


Bug#719247: tcl8.5: export special environmental variables when cross build

2013-08-09 Thread Eleanor Chen
Package: src:tcl8.5
Version: 8.5.14-2
Tags: patch
User: crossbu...@debian.org
Usertags: cross

When cross-building tcl8.5, the build fails with "multiple definition
of `fixstrtod'", this can be worked around by exporting
ac_cv_func_strtod=yes and tcl_cv_strtod_buggy=1 in debian/rules.


Thanks,
Eleanor


tcl8.5_8.5.14-2.diff
Description: Binary data


Bug#719246: fdupes: use correct gcc for cross build

2013-08-09 Thread Eleanor Chen
Package: src:fdupes
Version: 1.50-PR2-4
Tags: patch
User: crossbu...@debian.org
Usertags: cross

fdupes uses CC=gcc in its Makefile, attached patches fixes this issue.

Thanks,
Eleanor


fdupes_1.50-PR2-4.patch
Description: Binary data


fix-hardcode-gcc.patch
Description: Binary data


Bug#719239: patchutils: only do check when not being cross compiled

2013-08-09 Thread Eleanor Chen
Package: src:patchutils
Version: 0.3.2-2
Tags: patch
User: crossbu...@debian.org
Usertags: cross

patchutils runs `$(MAKE) check -j1' in build-stamp, which is better be
put into a separate target, but anyway we can check to run it only
when DEB_HOST_GNU_TYPE and DEB_BUILD_GNU_TYPE are match.


Thanks,
Eleanor


patchutils_0.3.2-2.patch
Description: Binary data


Bug#718618: libwibble: use correct $CC and $CXX when cross build and multi-arch

2013-08-03 Thread Eleanor Chen
Package: libwibble
version: 0.1.28-1.1
Tags: patch
User: crossbu...@debian.org
Usertags: cross

libwibble isn't multi-arch aware, so it's $CC and $CXX are always set
to native compilers of the build machine. While multi-arch makes cross
building of packages possible, it make use of these variables to pick
the correct compilers for generating target code.

Also, libwibble is installed directly to /usr/lib, while for
cross-build, pkg-config will be configured to find .pc files from
/usr/lib// first, so here I make it installs to that path as
well.

Thank you.

Eleanor


crossbuild-and-multiarch.diff
Description: Binary data


Bug#715038: Bug #715038: add mips64(el) mipsn32(el) support to eglibc

2013-08-03 Thread Eleanor Chen
Attached is an updated version of this patch.

This version changes the way of generating libfake.{a,so} from using
ar to use gcc. Sometimes ar generates MIPS64r1 version of the file,
using gcc can make sure it is always MIPS64r2.

Thanks,

Eleanor Chen

-- 
It is the time you have spent for your rose that makes your rose so important.


mips64.diff
Description: Binary data


Bug#718617: selinux DSO linking

2013-08-03 Thread Eleanor Chen
Package: libselinux
Version: 2.1.13-2

Debian has just enabled DSO linking by default. This patch makes
selinux does not FTBFS.

Thank you.

Eleanor


libselinux-dso-linking.diff
Description: Binary data


Bug#718614: gcc-4.8 libstdcxx use cross-gencontrol

2013-08-02 Thread Eleanor Chen
Package: gcc-4.8
Version: 4.8.1-8
Severity: wishlist
Tags: patch
User: crossbu...@debian.org
Usertags: cross

When making a cross tool chain, if proper environment variables for
dh_gencontrol aren't passed, it will attempt to generate an amd64
(BUILD) version of DEBIAN/control for the target (HOST) architecture's
libstdc++, while it should be of pure HOST architecture without any
reference to the BUILD architecture.


Regards,
Eleanor Chen


libstdcxx-cross-gencontrol.diff
Description: Binary data


Bug#717965: dash: use $(DEB_HOST_GNU-TYPE)-strip when cross compile

2013-07-27 Thread Eleanor Chen
Package: src:dash
Version: 0.5.7-3
Tags: patch

The original debian/rules uses strip when cross compile, and this will
cause problem building the package.

The patch is to let it use $(DEB_HOST_GNU-TYPE)-strip when cross compile.

Thank you.

Eleanor


dash-0.5.7-strip.diff
Description: Binary data


Bug#717342: Nocheck when cross build

2013-07-19 Thread Eleanor Chen
Package: xz-utils

When cross build xz-utils, nocheck should be enabled, or it will fail
when running tests.




Thank you.

Eleanor


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#716795: generated library packages aren't marked Multiarch when cross compiling gcc

2013-07-12 Thread Eleanor Chen
Package: src:gcc-4.8

When using "with_deps_on_target_arch_pkgs=yes" and
"with_multiarch_lib=yes" parameters to cross compiling this package,
it's expected that the package should produce the very same library
packages as being built natively. But currently the produced library
packages like libgcc1 aren't marked as Multiarch.

Attached patch fixes this problem.

--
It is the time you have spent for your rose that makes your rose so important.


control-m4.diff.xz
Description: Binary data


Bug#715059: Fix hardcode libdir when bootstrapping

2013-07-05 Thread Eleanor Chen
Package: eglibc
Version: 2.17-6

This patch fixes the hardcode libdir problem with multilib when bootstrapping.

$LIBDIR is hardcode to "lib" before. However, when applied, $LIBDIR
will be changed accordingly when bootstrapping with multilib. It may
be changed to "lib32", "lib64" or "lib/".


fix-hardcode-libdir.patch
Description: Binary data


Bug#715057: Include Makeconfig into locale/Makefile

2013-07-05 Thread Eleanor Chen
Package: eglibc
Version: 2.17-6
Severity: wishlist

This patch includes Makeconfig into locale/Makefile to make sure that
the related files are not installed into the actual system during
bootstrap.

Thank you.

Eleanor


locale-include-makeconfig.diff
Description: Binary data


Bug#715038: add mips64(el) mipsn32(el) support to eglibc

2013-07-05 Thread Eleanor Chen
Package: eglibc
Version: 2.17-6

This patch adds multilib enabled mips64(el) mipsn32(el) configurations
to eglibc.

Exceptions are:
 * The version of linux-libc-dev should be greater than or equal to
3.10 on mips64(el) to getdents64 syscall, so that python 3.3 can be
built.
 * We choose gcc 4.8 as the default compiler for these new ports.

Thank you.

Eleanor


eglibc-mips64.patch
Description: Binary data


Bug#689632: ITP: fcitx-sayura - sayura wrapper for fcitx

2012-10-04 Thread Eleanor Chen
Package: wnpp
Severity: wishlist

* Package name: fcitx-sayura
  Version : 0.1.0
  Upstream Author : CSSlayer 
* URL : http://code.google.com/p/fcitx/
* License : GPL-2
  Programming Lang: C
  Description : sayura wrapper for fcitx


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#655489: 655489

2012-03-04 Thread Eleanor Chen
tags 655489 + pending
thanks

Thank you. I have fixed it.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#655489: [ho22bus] It should depends on ho22bus-data

2012-01-14 Thread Eleanor Chen
Yes, I have noticed that. The upstream has just updated. I will update ASAP.

Thank you.

Best Regards,
Eleanor

On Saturday, January 14, 2012, Manolo Díaz  wrote:
> Package: ho22bus
> Version: 0.9.1-1
>
> --- Please enter the report below this line. ---
>
> This package is unusable without ho22bus-data, so it should depends on
> it. It renders this bug serious AFAIK.
>
> Best Regards,
> Manolo Díaz
>
> --- System information. ---
> Architecture: amd64
> Kernel:   Linux 3.2.0
>
> Debian Release: wheezy/sid
>  1001 testing security.debian.org
>  1001 testing ftp.fr.debian.org
>
> --- Package information. ---
> Depends   (Version) | Installed
> ===-+-=
> libatk1.0-0 (>= 1.12.4) | 2.2.0-2
> libc6(>= 2.2.5) | 2.13-24
> libcairo2(>= 1.2.4) | 1.10.2-6.2
> libfontconfig1   (>= 2.8.0) | 2.8.0-3
> libfreetype6 (>= 2.2.1) | 2.4.8-1
> libgcc1(>= 1:4.1.1) | 1:4.6.2-11
> libgdk-pixbuf2.0-0  (>= 2.22.0) | 2.24.0-2
> libglib2.0-0(>= 2.12.0) | 2.30.2-4
> libgtk2.0-0  (>= 2.8.0) | 2.24.8-2
> libpango1.0-0   (>= 1.14.0) | 1.29.4-2
> libstdc++6   (>= 4.2.1) | 4.6.2-11
>
>
> Package's Recommends field is empty.
>
> Package's Suggests field is empty.
>
> --
> Manolo Díaz
>
>
>

-- 
It is the time you have spent for your rose that makes your rose so
important.