Your message dated Wed, 06 Jan 2010 15:40:20 +0000
with message-id <[email protected]>
and subject line Bug#514184: fixed in mingw32-binutils 2.20-0.1
has caused the Debian Bug report #514184,
regarding please build 64-bit version
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
514184: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=514184
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: mingw32-binutils
Version: 2.18.50-20080109-1
Severity: wishlist
Tags: patch
Please could you provide a 64-bit version of mingw32-binutils? Patch
attached.
-- System Information:
Debian Release: 5.0
APT prefers unstable
APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)
Kernel: Linux 2.6.18-6-amd64 (SMP w/2 CPU cores)
Locale: LANG=ca_AD.UTF-8, LC_CTYPE=ca_AD.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Versions of packages mingw32-binutils depends on:
ii libc6 2.7-18 GNU C Library: Shared libraries
mingw32-binutils recommends no packages.
Versions of packages mingw32-binutils suggests:
pn mingw32 <none> (no description available)
-- no debconf information
diff -ur mingw32-binutils-2.18.50-20080109/debian/control mingw32-binutils-2.18.50-20080109.new/debian/control
--- mingw32-binutils-2.18.50-20080109/debian/control 2007-05-26 08:47:29.000000000 +0200
+++ mingw32-binutils-2.18.50-20080109.new/debian/control 2009-02-05 02:09:22.000000000 +0100
@@ -20,3 +20,16 @@
only for build reasons, you'll need all the mingw* packages
to actually build anything.
+Package: mingw64-binutils
+Architecture: any
+Suggests: mingw64
+Depends: ${shlibs:Depends}
+Description: Minimalist GNU win64 (cross) binutils
+ A Linux hosted, win64 target, cross compiler for C/C++
+ .
+ Freedom through obsolescence. Those who still really need to
+ can now build windows executables from the comfort of Debian.
+ .
+ This package contains the toolchain binutils. It is separate
+ only for build reasons, you'll need all the mingw* packages
+ to actually build anything.
diff -ur mingw32-binutils-2.18.50-20080109/debian/rules mingw32-binutils-2.18.50-20080109.new/debian/rules
--- mingw32-binutils-2.18.50-20080109/debian/rules 2009-02-05 02:08:40.000000000 +0100
+++ mingw32-binutils-2.18.50-20080109.new/debian/rules 2009-02-05 01:45:27.000000000 +0100
@@ -5,15 +5,19 @@
# Created 30 Jan 2001, by Ron Lee <[email protected]>
#export DH_VERBOSE=1
+SHELL = bash
package = mingw32-binutils
+package64 = mingw64-binutils
target = i586-mingw32msvc
+target64 = amd64-mingw32msvc
top_dir := $(shell pwd)
upstream_dir := $(top_dir)/upstream
build_dir := $(top_dir)/build_dir
build_src := $(build_dir)/src
build_objs := $(build_dir)/objs
+build_objs64 := $(build_dir)/objs64
PACKAGE_BASENAME = $(patsubst %-src.tar,%,$(basename $(notdir $(wildcard $(upstream_dir)/$(1)*))))
@@ -24,7 +28,7 @@
endif
-build : build-stamp
+build : build-stamp build64-stamp
# XXX Work around another gratuitous change in the source dir name.
# They did so well for so long, *sigh*.
@@ -42,6 +46,13 @@
--target=$(target)
touch $@
+configure64-stamp: unpack-stamp
+ mkdir -p $(build_objs64)
+ cd $(build_objs64) \
+ && $(build_src)/$(binutils)/configure -v \
+ --prefix=/usr \
+ --target=$(target64)
+ touch $@
build-stamp : configure-stamp
dh_testdir
@@ -49,6 +60,11 @@
touch $@
+build64-stamp : configure64-stamp
+ dh_testdir
+ cd $(build_objs64) && $(MAKE)
+
+ touch $@
install : install-stamp
@@ -57,19 +73,23 @@
dh_testroot
dh_clean -k
- dh_installdirs usr/share/lintian/overrides
+ dh_installdirs -A usr/share/lintian/overrides
cd $(build_objs) \
&& $(MAKE) install prefix=$(top_dir)/debian/$(package)/usr \
mandir=$(top_dir)/debian/$(package)/usr/share/man
+ cd $(build_objs64) \
+ && $(MAKE) install prefix=$(top_dir)/debian/$(package64)/usr \
+ mandir=$(top_dir)/debian/$(package64)/usr/share/man
# remove some non-cross stuff that will clash with other packages
- rm -rf debian/$(package)/usr/info
- rm -rf debian/$(package)/usr/lib
- rm -rf debian/$(package)/usr/share/locale
+ rm -rf debian/{$(package),$(package64)}/usr/info
+ rm -rf debian/{$(package),$(package64)}/usr/lib
+ rm -rf debian/{$(package),$(package64)}/usr/share/locale
# install override for the non fhs target dir gcc wants to use
# (until we find a better solution or change policy)
cp debian/lintian-overrides debian/$(package)/usr/share/lintian/overrides/$(package)
+ cp debian/lintian-overrides debian/$(package64)/usr/share/lintian/overrides/$(package64)
touch $@
@@ -106,17 +126,17 @@
binary-arch: build install
dh_testdir
dh_testroot
- dh_installdocs
- dh_installman debian/$(target)-dllwrap.1
- dh_installchangelogs
- dh_strip
- dh_compress
- dh_fixperms
- dh_installdeb
- dh_shlibdeps
- dh_gencontrol
- dh_md5sums
- dh_builddeb
+ dh_installdocs -s
+ dh_installman -p$(package) debian/$(target)-dllwrap.1
+ dh_installchangelogs -s
+ dh_strip -s
+ dh_compress -s
+ dh_fixperms -s
+ dh_installdeb -s
+ dh_shlibdeps -s
+ dh_gencontrol -s
+ dh_md5sums -s
+ dh_builddeb -s
binary: binary-indep binary-arch
--- End Message ---
--- Begin Message ---
Source: mingw32-binutils
Source-Version: 2.20-0.1
We believe that the bug you reported is fixed in the latest version of
mingw32-binutils, which is due to be installed in the Debian FTP archive:
mingw32-binutils_2.20-0.1.diff.gz
to main/m/mingw32-binutils/mingw32-binutils_2.20-0.1.diff.gz
mingw32-binutils_2.20-0.1.dsc
to main/m/mingw32-binutils/mingw32-binutils_2.20-0.1.dsc
mingw32-binutils_2.20-0.1_amd64.deb
to main/m/mingw32-binutils/mingw32-binutils_2.20-0.1_amd64.deb
mingw32-binutils_2.20.orig.tar.gz
to main/m/mingw32-binutils/mingw32-binutils_2.20.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.
Robert Millan <[email protected]> (supplier of updated mingw32-binutils
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.8
Date: Wed, 23 Dec 2009 22:21:06 +0100
Source: mingw32-binutils
Binary: mingw32-binutils
Architecture: source amd64
Version: 2.20-0.1
Distribution: unstable
Urgency: low
Maintainer: Ron Lee <[email protected]>
Changed-By: Robert Millan <[email protected]>
Description:
mingw32-binutils - Minimalist GNU win32 (cross) binutils
Closes: 514184
Changes:
mingw32-binutils (2.20-0.1) unstable; urgency=low
.
* Non-maintainer upload.
* New upstream release.
* Enable amd64 support. (Closes: #514184)
Checksums-Sha1:
f579bc97d040b814272b77ddec085ff0a78957ee 1052 mingw32-binutils_2.20-0.1.dsc
cedc3227230d20e3cdeb3a70a5632f4521c778aa 22530698
mingw32-binutils_2.20.orig.tar.gz
36ba4e030a3812c0627432a794ed184b2aa25a3f 5020 mingw32-binutils_2.20-0.1.diff.gz
54ef1af5a7c4957a1aec860f797f196adff5d751 11455610
mingw32-binutils_2.20-0.1_amd64.deb
Checksums-Sha256:
35188036caa1192bcf73c15a5a2bd544238b99caaf8cdcec24c6e2d6c8328e00 1052
mingw32-binutils_2.20-0.1.dsc
61fee86e1946ee3cef4bc7a364f6ad11d5fd2ef0c147b20ea62cce5be1fb1c80 22530698
mingw32-binutils_2.20.orig.tar.gz
08776270ba2d7020fd05743dd9535d05ccdcae7bfe92312a8b8204bad8861746 5020
mingw32-binutils_2.20-0.1.diff.gz
1db2469d8399d8495e557ce7752e5c5b7f36dd9777bfdbf21b6e8b3e958688d8 11455610
mingw32-binutils_2.20-0.1_amd64.deb
Files:
d78ae875841533d2e5a7ee6e57164562 1052 devel optional
mingw32-binutils_2.20-0.1.dsc
4a55644555387f41278223e97ce85452 22530698 devel optional
mingw32-binutils_2.20.orig.tar.gz
6e6fc5281ea5af1eebdaf20263abf584 5020 devel optional
mingw32-binutils_2.20-0.1.diff.gz
0a3b607d410cf067b76864523df9ad7b 11455610 devel optional
mingw32-binutils_2.20-0.1_amd64.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (GNU/Linux)
iEYEARECAAYFAksylJ4ACgkQC19io6rUCv+aAwCffew+rSsIM7M58Z1ccU8piGS/
lHEAmwcetOP5gMyZSRDixCL11nErf0CY
=DU8P
-----END PGP SIGNATURE-----
--- End Message ---