[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#729090: marked as done (ben: Please update architecture lists)



Your message dated Mon, 27 Jan 2014 10:48:25 +0000
with message-id <E1W7jjt-000476-39@franck.debian.org>
and subject line Bug#729090: fixed in ben 0.6.7
has caused the Debian Bug report #729090,
regarding ben: Please update architecture lists
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 owner@bugs.debian.org
immediately.)


-- 
729090: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=729090
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Package: ben
Version: 0.6.6
Severity: wishlist
Tags: patch

Dear Maintainer,

Architecture list provided by the ben is a bit old.
I've created patches to update.
Could you please apply these?

Best regards,
  Nobuhiro

-- System Information:
Debian Release: jessie/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386
armhf

Kernel: Linux 3.11-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=ja_JP.UTF-8, LC_CTYPE=ja_JP.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
>From 8305d06f9f3dc1420867edf460952c98cbc5b18c Mon Sep 17 00:00:00 2001
From: Nobuhiro Iwamatsu <iwamatsu@debian.org>
Date: Sat, 9 Nov 2013 06:22:27 +0900
Subject: [PATCH 1/4] Set to debian_architectures s390x instead of s390

Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@debian.org>
---
 lib/benl_base.ml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/benl_base.ml b/lib/benl_base.ml
index 0ae5d65..d2af244 100644
--- a/lib/benl_base.ml
+++ b/lib/benl_base.ml
@@ -56,7 +56,7 @@ let debian_architectures = ref
   [ "amd64"; "armel";
     "i386"; "ia64";
     "kfreebsd-amd64"; "kfreebsd-i386";
-    "mips"; "mipsel"; "powerpc"; "s390"; "sparc" ]
+    "mips"; "mipsel"; "powerpc"; "s390x"; "sparc" ]
 
 let ignored_architectures : string list ref = ref []
 
-- 
1.8.4.2

>From 4ade37911938125d18ad508381eb7f9b85a324a3 Mon Sep 17 00:00:00 2001
From: Nobuhiro Iwamatsu <iwamatsu@debian.org>
Date: Sat, 9 Nov 2013 06:27:25 +0900
Subject: [PATCH 2/4] Move armhf from debian_ports_architectures to
 debian_architectures

Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@debian.org>
---
 lib/benl_base.ml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/benl_base.ml b/lib/benl_base.ml
index d2af244..3eedcee 100644
--- a/lib/benl_base.ml
+++ b/lib/benl_base.ml
@@ -53,7 +53,7 @@ let string_of_string escaping string =
     string
 
 let debian_architectures = ref
-  [ "amd64"; "armel";
+  [ "amd64"; "armel"; "armhf";
     "i386"; "ia64";
     "kfreebsd-amd64"; "kfreebsd-i386";
     "mips"; "mipsel"; "powerpc"; "s390x"; "sparc" ]
@@ -61,7 +61,7 @@ let debian_architectures = ref
 let ignored_architectures : string list ref = ref []
 
 let debian_ports_architectures =
-  [ "armhf"; "avr32"; "m68k"; "powerpcspe";
+  [ "avr32"; "m68k"; "powerpcspe";
     "sh4"; "sparc64" ]
 
 type status = Unknown | Up_to_date | Outdated
-- 
1.8.4.2

>From 6278fcbf8703118664c604e691f9b620e4082cbc Mon Sep 17 00:00:00 2001
From: Nobuhiro Iwamatsu <iwamatsu@debian.org>
Date: Sat, 9 Nov 2013 06:28:06 +0900
Subject: [PATCH 3/4] Remove avr32 from list of debian_ports_architectures

Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@debian.org>
---
 lib/benl_base.ml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/benl_base.ml b/lib/benl_base.ml
index 3eedcee..d3e0525 100644
--- a/lib/benl_base.ml
+++ b/lib/benl_base.ml
@@ -61,7 +61,7 @@ let debian_architectures = ref
 let ignored_architectures : string list ref = ref []
 
 let debian_ports_architectures =
-  [ "avr32"; "m68k"; "powerpcspe";
+  [ "m68k"; "powerpcspe";
     "sh4"; "sparc64" ]
 
 type status = Unknown | Up_to_date | Outdated
-- 
1.8.4.2

>From 76e63df158315afa2dab5b383fc50ada256a3731 Mon Sep 17 00:00:00 2001
From: Nobuhiro Iwamatsu <iwamatsu@debian.org>
Date: Sat, 9 Nov 2013 06:32:00 +0900
Subject: [PATCH 4/4] Add alpha, arm64, ppc64 and x32 to list of
 debian_ports_architectures

Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@debian.org>
---
 lib/benl_base.ml | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/lib/benl_base.ml b/lib/benl_base.ml
index d3e0525..d9a31e0 100644
--- a/lib/benl_base.ml
+++ b/lib/benl_base.ml
@@ -61,8 +61,9 @@ let debian_architectures = ref
 let ignored_architectures : string list ref = ref []
 
 let debian_ports_architectures =
-  [ "m68k"; "powerpcspe";
-    "sh4"; "sparc64" ]
+  [ "alpha"; "arm64";
+    "m68k"; "powerpcspe"; "ppc64";
+    "sh4"; "sparc64"; "x32" ]
 
 type status = Unknown | Up_to_date | Outdated
 
-- 
1.8.4.2


--- End Message ---
--- Begin Message ---
Source: ben
Source-Version: 0.6.7

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

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 729090@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Stéphane Glondu <glondu@debian.org> (supplier of updated ben 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 ftpmaster@ftp-master.debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Mon, 27 Jan 2014 11:26:46 +0100
Source: ben
Binary: libben-ocaml-dev libben-ocaml ben
Architecture: source amd64
Version: 0.6.7
Distribution: unstable
Urgency: low
Maintainer: Debian OCaml Maintainers <debian-ocaml-maint@lists.debian.org>
Changed-By: Stéphane Glondu <glondu@debian.org>
Description: 
 ben        - toolbox for Debian maintainers
 libben-ocaml - OCaml libraries for Debian maintainers (runtime package)
 libben-ocaml-dev - OCaml libraries for Debian maintainers (development package)
Closes: 728708 729090 732833 736159
Changes: 
 ben (0.6.7) unstable; urgency=low
 .
   [ Stéphane Glondu ]
   * In monitor, consider all binary packages of affected source packages
   * Sort transitions in tracker index (Closes: #732833)
   * Download .gz package lists instead of .bz2 (Closes: #736159)
   * Bump Standards-Version to 3.9.5
 .
   [ Nobuhiro Iwamatsu ]
   * Update achitecture lists (Closes: #729090)
 .
   [ Colin Watson ]
   * Tolerate templates with buildds or critical_bugs entries that return
     None (Closes: #728708)
Checksums-Sha1: 
 ff7372bace072cb1e026a12bef89005696c8550f 2016 ben_0.6.7.dsc
 d51e5ff44c892839d5f131435036f659595e2dfc 54076 ben_0.6.7.tar.xz
 4a562c93430de0e36f24600ee4e2a2f93d7e6b93 95772 libben-ocaml-dev_0.6.7_amd64.deb
 e42ceddfdb28d8bf9bafab2170ed66fa90298090 107266 libben-ocaml_0.6.7_amd64.deb
 b0f96f5d4cbd44145afa06a530d5962c44cfc007 869680 ben_0.6.7_amd64.deb
Checksums-Sha256: 
 fc7480409e03a783ba484be654f4e30aa1d754e12ff6eac7770103036bc7f2e1 2016 ben_0.6.7.dsc
 193be3b6ca913539c7e2403ddbe566687f68cceec4c787c7f0ea6aa8c53f0e8a 54076 ben_0.6.7.tar.xz
 9cc6149910a856b2c8a3b36a7cb9fe43d0cdd728927a010412ab53a91c9a2708 95772 libben-ocaml-dev_0.6.7_amd64.deb
 a253d2e7a17c407cc46b4f197a6971337061a011f54f9387379b06936ccd140c 107266 libben-ocaml_0.6.7_amd64.deb
 80ff2c3c0d4afd7dd10dfdd89e8fe5818df3c3d4cb79eff1377f5720a1055c6b 869680 ben_0.6.7_amd64.deb
Files: 
 27a1f3de32797ca150cb9d835c1f298c 2016 ocaml optional ben_0.6.7.dsc
 34d9dd304183339653f988465eb9bb61 54076 ocaml optional ben_0.6.7.tar.xz
 97d616179a3f4f087e16c8dc99423cfd 95772 ocaml optional libben-ocaml-dev_0.6.7_amd64.deb
 70a7099574b34a8646084ca043961bb3 107266 ocaml optional libben-ocaml_0.6.7_amd64.deb
 135038a2a25898812e96104b6255821a 869680 ocaml optional ben_0.6.7_amd64.deb

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

iQIcBAEBCgAGBQJS5jcTAAoJEHhT2k1JiBrT5uQP/ReUcVvVuWlhrjzzUXHqQEUl
ZyihZdqRT3l2GjGYCxvbLcaaI3AYQPpg1/YhxcjqEeMJveyPveq1PNi/Tl98pOfp
uHLTxIUkYYeXBdzLP1lRLOF3PX5eNJAe6NHnA/CICSPLBLfujwkPGeMlZP0bLBmL
1SdkM397QRMUErE5hlclxbhEsL641QmtrBu3FrgEyhWE3FLLVHVrIDuUSgXNePps
GV/wxSXDUiY3uPQE4MXEcQuz9f0HXOxYQK9uDVAlX+yd574PVETDhK77LS3CoJYx
lg+Am/A+fpug7JfGFXAsnzC+9oxifVMb5Ib4Dwto3SasQC01IFuc1nngrWD82kS4
OWCPP00r7rxdrZ0cM4t2jFBiBk7696GTzuL3g+E8dQf/FAyAJZwN0S45kROlKPqx
npQw7eYV2aGHxjmTxNjHtyt+QcF7K9xIEurlwnuhQh/MO4qWRB/uKXe6Gk3NiC8w
c4rHBiNlLY1+M+7/cVy2g5xAwqImjiO//F0+htLAp8fNpNpmmiJVVNCsMSozNkEo
2JUzg1Ft53/9VCQOXRqtd31Zm40Pqom97eWeqsWBxbpVLE8404yl2XevcJ3RlnLB
7P+In2NFMnfEkwSfRaNagVvKUJ5QvL/cPlbQN2/HPi/o6b90qZ/fciFw8eVE+Tzd
A/rDSp8nLHfGGlxCqTgF
=gxUo
-----END PGP SIGNATURE-----

--- End Message ---

Reply to: