Still Failing: chroot-installation_sid_install_haskell/1215

2016-11-06 Thread jenkins
See 
https://jenkins.debian.net/job/chroot-installation_sid_install_haskell/1215//console
 or just 
https://jenkins.debian.net/job/chroot-installation_sid_install_haskell/1215/ 
for more information.___
Pkg-haskell-maintainers mailing list
Pkg-haskell-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-haskell-maintainers

Bug#843487: haskell-xmlhtml: FTBFS from source on hppa - cc1: out of memory

2016-11-06 Thread Clint Adams
On Sun, Nov 06, 2016 at 07:26:49PM -0500, John David Anglin wrote:
> In the latter build, I tried the gcc options that allow haskell-src-exts
> to build but this also failed.
> 
> Package appears to need more than 4G of VM to build.

What do you suggest?

___
Pkg-haskell-maintainers mailing list
Pkg-haskell-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-haskell-maintainers


haskell-wreq is marked for autoremoval from testing

2016-11-06 Thread Debian testing autoremoval watch
haskell-wreq 0.4.1.0-1 is marked for autoremoval from testing on 2016-11-28

It is affected by these RC bugs:
842524: libghc-wreq-dev: fails to build from source


___
Pkg-haskell-maintainers mailing list
Pkg-haskell-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-haskell-maintainers


Bug#843487: haskell-xmlhtml: FTBFS from source on hppa - cc1: out of memory

2016-11-06 Thread John David Anglin
Source: haskell-xmlhtml
Version: 0.2.3.5-3
Severity: normal

Dear Maintainer,

See build logs:
https://buildd.debian.org/status/fetch.php?pkg=haskell-xmlhtml=hppa=0.2.3.5-3=1477949147
https://buildd.debian.org/status/fetch.php?pkg=haskell-xmlhtml=hppa=0.2.3.5-3=1478477822

In the latter build, I tried the gcc options that allow haskell-src-exts
to build but this also failed.

Package appears to need more than 4G of VM to build.

Regards,
Dave Anglin


-- System Information:
Debian Release: stretch/sid
  APT prefers buildd-unstable
  APT policy: (500, 'buildd-unstable'), (500, 'unstable')
Architecture: hppa (parisc64)

Kernel: Linux 4.8.5+ (SMP w/4 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=UTF-8) (ignored: LC_ALL set to en_US.utf8)
Shell: /bin/sh linked to /bin/dash
Init: sysvinit (via /sbin/init)

___
Pkg-haskell-maintainers mailing list
Pkg-haskell-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-haskell-maintainers


Bug#814657: marked as done (ghc: Please add initial platform support for x32)

2016-11-06 Thread Debian Bug Tracking System
Your message dated Sun, 06 Nov 2016 22:50:33 +
with message-id 
and subject line Bug#814657: fixed in ghc 8.0.1-11
has caused the Debian Bug report #814657,
regarding ghc: Please add initial platform support for x32
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 ow...@bugs.debian.org
immediately.)


-- 
814657: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=814657
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: ghc
Version: 7.10.3-7
Severity: normal
Tags: patch

Hi!

I recently bootstrapped ghc on x32.

To achieve that, the following changes were necessary:

 * patch rts/Linker.c to use native 64-bit integer instructions on x32
 * build the compiler unregisterised even though x86_64 has a NCG
   which needs some work to support x32 though
 * use integer-simple by default on x32 since integer-gmp currently
   has issues on x32 (sizeof(mp_limb_t) != sizeof(void *) is unsupported)

The first patch is more discussed by upstream in detail in [1], since they
were not sure yet whether the simple patch that I am using is safe not to
break anything on other platforms.

Attaching a debdiff with my changes in any case so that a discussion can
be started.

Cheers,
Adrian

> [1] https://ghc.haskell.org/trac/ghc/ticket/11571

-- 
 .''`.  John Paul Adrian Glaubitz
: :' :  Debian Developer - glaub...@debian.org
`. `'   Freie Universitaet Berlin - glaub...@physik.fu-berlin.de
  `-GPG: 62FF 8A75 84E0 2956 9546  0006 7426 3B37 F5B5 F913
diff -Nru old/ghc-7.10.3/debian/patches/series new/ghc-7.10.3/debian/patches/series
--- old/ghc-7.10.3/debian/patches/series   2015-12-18 13:25:32.0 +0100
+++ new/ghc-7.10.3/debian/patches/series   2016-02-10 19:11:01.378870044 +0100
@@ -7,3 +7,4 @@
 cabal-show-detail-direct.patch
 sh4-platform-detection-support.patch
 sparc64-initial-platform-support.patch
+x32-use-native-x86_64-insn.patch
diff -Nru old/ghc-7.10.3/debian/patches/x32-use-native-x86_64-insn.patch new/ghc-7.10.3/debian/patches/x32-use-native-x86_64-insn.patch
--- old/ghc-7.10.3/debian/patches/x32-use-native-x86_64-insn.patch	 1970-01-01 01:00:00.0 +0100
+++ new/ghc-7.10.3/debian/patches/x32-use-native-x86_64-insn.patch	 2016-02-13 19:27:46.250266694 +0100
@@ -0,0 +1,25 @@
+Description: Use native x86_64 instructions on x32
+ This patch enables a few native 64-bit integer instructions
+ on x32 which are available on this architecture despite using
+ 32-bit pointers. These instructions are present on x86_64 but
+ not on x86 and ghc checks the size of (void *) to determine
+ that. This method fails on x32 since despite using 32-bit
+ pointers and hence sizeof(void *) == 4, it still uses the
+ full x86_64 instruction set and software-emulated variants
+ of the aforementioned 64-bit integer instructions are
+ therefore not present in the toolchain which will make ghc
+ fail to build on x32.
+ See: https://ghc.haskell.org/trac/ghc/ticket/11571
+ .
+
+--- ghc-7.10.3.orig/rts/Linker.c
 ghc-7.10.3/rts/Linker.c
+@@ -1432,7 +1432,7 @@ typedef struct _RtsSymbolVal {
+ 
+ 
+ // 64-bit support functions in libgcc.a
+-#if defined(__GNUC__) && SIZEOF_VOID_P <= 4 && !defined(_ABIN32)
++#if defined(__GNUC__) && SIZEOF_VOID_P <= 4 && !defined(_ABIN32) && !defined(__ILP32__)
+ #define RTS_LIBGCC_SYMBOLS \
+   SymI_NeedsProto(__divdi3)\
+   SymI_NeedsProto(__udivdi3)   \
diff -Nru old/ghc-7.10.3/debian/rules new/ghc-7.10.3/debian/rules
--- old/ghc-7.10.3/debian/rules	  2016-01-05 11:09:35.0 +0100
+++ new/ghc-7.10.3/debian/rules	  2016-02-13 19:33:46.001814498 +0100
@@ -43,6 +43,10 @@
 BUILD_HADDOCK_DOCS=YES
 DEB_HOOGLE_TXT_DIR = /usr/lib/ghc-doc/hoogle/
 
+ifeq (x32,$(DEB_HOST_ARCH))
+  EXTRA_CONFIGURE_FLAGS += --enable-unregisterised
+endif
+
 %:
	dh $@ --with autotools-dev
 
@@ -64,6 +68,9 @@
   echo "SRC_CC_OPTS += -fno-PIE" >> mk/build.mk
   echo "SRC_LD_OPTS += -no-pie" >> mk/build.mk
 endif
+ifeq (x32,$(DEB_HOST_ARCH))
+ echo "INTEGER_LIBRARY = integer-simple" >> mk/build.mk
+endif
 ifneq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
 # echo "GhcStage1HcOpts += -DDEBUG" >> mk/build.mk
 # echo "GhcStage2HcOpts += -DDEBUG" >> mk/build.mk
--- End Message ---
--- Begin Message ---
Source: ghc
Source-Version: 8.0.1-11

We believe that the bug you reported is fixed in the latest version of
ghc, 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 

haskell-cryptonite_0.20-5_source.changes ACCEPTED into unstable

2016-11-06 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 06 Nov 2016 15:16:57 -0500
Source: haskell-cryptonite
Binary: libghc-cryptonite-dev libghc-cryptonite-prof libghc-cryptonite-doc
Architecture: source
Version: 0.20-5
Distribution: unstable
Urgency: medium
Maintainer: Debian Haskell Group 

Changed-By: Clint Adams 
Description:
 libghc-cryptonite-dev - ${haskell:ShortDescription}${haskell:ShortBlurb}
 libghc-cryptonite-doc - ${haskell:ShortDescription}${haskell:ShortBlurb}
 libghc-cryptonite-prof - ${haskell:ShortDescription}${haskell:ShortBlurb}
Changes:
 haskell-cryptonite (0.20-5) unstable; urgency=medium
 .
   * Patch from James Clarke to fix alignment on sparc64.
Checksums-Sha1:
 9a6f74d45b1808258e1bc66be845b807a68da047 2672 haskell-cryptonite_0.20-5.dsc
 081f342d5c6d7c8c63901282d7b32a46a02b827d 582541 
haskell-cryptonite_0.20.orig.tar.gz
 11042bd7be43a4bf7b6e2028259448aff8d42852 7736 
haskell-cryptonite_0.20-5.debian.tar.xz
Checksums-Sha256:
 238fd8b83866eea3642b468e86f0b34370b9b14fed84c9b5101df3630f3ffa0e 2672 
haskell-cryptonite_0.20-5.dsc
 261bfac4e032f24658a31d8c34abd0c0f64f9de07be69ad43a9139a7c0b5c354 582541 
haskell-cryptonite_0.20.orig.tar.gz
 1e017cf921dea71558b99e06f8a6f209005b1d69ea1ab77fbe14174732bdec6c 7736 
haskell-cryptonite_0.20-5.debian.tar.xz
Files:
 5fb3843ae84738023193d9a9b895 2672 haskell extra 
haskell-cryptonite_0.20-5.dsc
 0de738cd70188dd8b4064c4af703e56c 582541 haskell extra 
haskell-cryptonite_0.20.orig.tar.gz
 7d0dbcefe472e9b9675d3bc82cc3ec15 7736 haskell extra 
haskell-cryptonite_0.20-5.debian.tar.xz

-BEGIN PGP SIGNATURE-
Comment: Debian!

iQKOBAEBCgB4BQJYH4/7XxSAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ3NTgxRUM4NzQwNTNFNkM4MDc3OTFCOUI1
NTkyMzMxRTE5OUQzOEE4ERxjbGludEBkZWJpYW4ub3JnAAoJEFWSMx4ZnTio1LUQ
AKgUdTTnO1E8gOI7PEvD2+9kzPoQzs0Ag7H3xxIAhru3CIE4dabtnXa/d6IUWITX
wmalGpoQcZdxZ098szL0aoJ8Rm7FUYGdqaeSxBuYwzGmaD/ocQZjJ7f/briKKHSw
AW8kRdBOgeevZvcuLOFdQz/IlbtCMVPunKvHhsJvZWiwQ+BFKBL3JJhdbOsUpCT3
Fu4HG/7RZRO/N8Q8T9XdcXjEIQjyclsAzICTjM5/LvdMxWR69+i3r1dhBfiIqoru
GrCikerwpcL5xREI790ffovduraCuARb18F0KK/QbRLsFokO6A9DxjdT0pXjHdil
qMe0yD9OaNfZ4oqdzo0fZqZQH4EVCY/XFDKXvImyjGxkBL1/Spz6pTq0XdXvAkp8
li4gx2OF3b+MtWtep1nf2LmkCyAw+8ZFcGp8BDOCaQhLsX8VI7MroeYHtACeFTx6
8BXBbNdRnhZKas7KZFh5D4Y7T5oa4neyjtGPFbihnAXp/VCKTnilhiZTIZPe4Til
FSRRnLYxubc316NDmRUuQY2tMTUboyxLSQwHLSsxIusQPhjHXSueIwNi2e4cF0Tp
rCc+Uxy9gPoPOZy5dMplypZ0+f8xPh32O8sE+uaWKpm4oOnBZ5pP9ZltXaATR8sE
Xt9MH4qPME7Zl1KWh7e7cI4aCtBTEYlYcfWcAfhFgU6G
=krH0
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Pkg-haskell-maintainers mailing list
Pkg-haskell-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-haskell-maintainers


Processing of ghc_8.0.1-10_source.changes

2016-11-06 Thread Debian FTP Masters
ghc_8.0.1-10_source.changes uploaded successfully to localhost
along with the files:
  ghc_8.0.1-10.dsc
  ghc_8.0.1.orig.tar.xz
  ghc_8.0.1-10.debian.tar.xz

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Pkg-haskell-maintainers mailing list
Pkg-haskell-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-haskell-maintainers


Bug#652507: marked as done (c2hs: fails reading its own intermediate representation (.chi))

2016-11-06 Thread Debian Bug Tracking System
Your message dated Sun, 6 Nov 2016 21:33:43 +0200
with message-id <20161106193343.g6newf26net6g...@gmail.com>
and subject line Fix in version 0.25.2-1
has caused the Debian Bug report #652507,
regarding c2hs: fails reading its own intermediate representation (.chi)
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 ow...@bugs.debian.org
immediately.)


-- 
652507: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=652507
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: c2hs
Version: 0.16.3-2
Severity: important
Tags: upstream patch

c2hs uses shown Language.C data structures as an intermediate
representation (the .chi files), and has its own code for parsing
them. It seems that Language.C has changed its Show instance for
lexemes, and c2hs can no longer parse its own .chi files.

The symptom for me is that "cabal build" fails with the following
error message:

  c2hs: Prelude.read: no parse

Patch attached.

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 3.1.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages c2hs depends on:
ii  libc6 2.13-23
ii  libffi5   3.0.10-3
ii  libgmp10  2:5.0.2+dfsg-2

c2hs recommends no packages.

c2hs suggests no packages.

-- no debconf information
diff -ur c2hs-0.16.3/src/C2HS/Gen/Monad.hs c2hs-0.16.3.blegh/src/C2HS/Gen/Monad.hs
--- c2hs-0.16.3/src/C2HS/Gen/Monad.hs	2011-03-24 09:04:59.0 -0400
+++ c2hs-0.16.3.blegh/src/C2HS/Gen/Monad.hs	2011-12-10 11:13:54.0 -0500
@@ -212,6 +212,11 @@
 -}
 -- super kludgy (depends on Show instance of Ident)
 instance Read Ident where
+  readsPrec _ ('"':lexeme) = let (ideChars, rest) = span (/= '"') lexeme
+ in
+  if null ideChars
+  then []
+  else [(internalIdent ideChars, tail rest)]
   readsPrec _ ('`':lexeme) = let (ideChars, rest) = span (/= '\'') lexeme
  in
  if null ideChars
--- End Message ---
--- Begin Message ---
Version: 0.25.2-1

This has been fixed in version 0.25.2-1.
For more information see https://github.com/haskell/c2hs/issues/40.

Thanks for reporting this.

-- 
Ilias--- End Message ---
___
Pkg-haskell-maintainers mailing list
Pkg-haskell-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-haskell-maintainers

Bug#680163: marked as done (Foreign pointer declaration produces helper function without type signature, producing warning with -Wall)

2016-11-06 Thread Debian Bug Tracking System
Your message dated Sun, 6 Nov 2016 21:27:13 +0200
with message-id <20161106192713.ualz3w25tl6iz...@gmail.com>
and subject line Fixed in version 0.17.1-1
has caused the Debian Bug report #680163,
regarding Foreign pointer declaration produces helper function without type 
signature, producing warning with -Wall
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 ow...@bugs.debian.org
immediately.)


-- 
680163: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=680163
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: c2hs
Version: 0.16.3-2
Severity: normal

When given a pointer declaration for a foreign pointer, such as:

{# pointer *foo as ^ foreign newtype #}

c2hs produces a helper function withFoo, without a type signature.  This
causes GHC with -Wall to produce a warning message, "Warning: Top-level
binding with no type signature".

- Josh Triplett

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-3-amd64 (SMP w/4 CPU cores)
Locale: LANG=C.UTF-8, LC_CTYPE=C.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages c2hs depends on:
ii  libc6 2.13-34
ii  libffi5   3.0.10-3
ii  libgmp10  2:5.0.5+dfsg-2

c2hs recommends no packages.

c2hs suggests no packages.

-- no debconf information


--- End Message ---
--- Begin Message ---
Version : 0.17.1-1

This has been fixed in version 0.17.1-1.
For more information see https://github.com/haskell/c2hs/issues/44.

Thanks for reporting this.

-- 
Ilias--- End Message ---
___
Pkg-haskell-maintainers mailing list
Pkg-haskell-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-haskell-maintainers

Bug#680329: marked as done (Does not parse GCC "mode" attribute for integer sizes (used in sys/types.h))

2016-11-06 Thread Debian Bug Tracking System
Your message dated Sun, 6 Nov 2016 21:22:58 +0200
with message-id <20161106192258.74uvfjoodtfv2...@gmail.com>
and subject line Fix in version 0.25.2-1
has caused the Debian Bug report #680329,
regarding Does not parse GCC "mode" attribute for integer sizes (used in 
sys/types.h)
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 ow...@bugs.debian.org
immediately.)


-- 
680329: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=680329
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: c2hs
Version: 0.16.3-2
Severity: important

A library I'd like to write bindings to has a typedef of int64_t to a
library-specific type name. c2hs seems to interpret that type as CInt,
both in foreign import declarations and in {# type #} directives. It
should interpret that type as a 64-bit integer type instead.

- Josh Triplett

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-3-amd64 (SMP w/4 CPU cores)
Locale: LANG=C.UTF-8, LC_CTYPE=C.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages c2hs depends on:
ii  libc6 2.13-34
ii  libffi5   3.0.10-3
ii  libgmp10  2:5.0.5+dfsg-2

c2hs recommends no packages.

c2hs suggests no packages.

-- no debconf information


--- End Message ---
--- Begin Message ---
Version: 0.25.2-1

This has been fixed in version 0.25.2-1.
For more information see https://github.com/haskell/c2hs/issues/40.

Thanks for reporting this.

-- 
Ilias--- End Message ---
___
Pkg-haskell-maintainers mailing list
Pkg-haskell-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-haskell-maintainers

Bug#680329: marked as done (Does not parse GCC "mode" attribute for integer sizes (used in sys/types.h))

2016-11-06 Thread Debian Bug Tracking System
Your message dated Sun, 6 Nov 2016 21:11:44 +0200
with message-id <20161106191144.qyclvxowdcuiw...@gmail.com>
and subject line Fixed in version 0.23.1
has caused the Debian Bug report #680329,
regarding Does not parse GCC "mode" attribute for integer sizes (used in 
sys/types.h)
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 ow...@bugs.debian.org
immediately.)


-- 
680329: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=680329
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: c2hs
Version: 0.16.3-2
Severity: important

A library I'd like to write bindings to has a typedef of int64_t to a
library-specific type name. c2hs seems to interpret that type as CInt,
both in foreign import declarations and in {# type #} directives. It
should interpret that type as a 64-bit integer type instead.

- Josh Triplett

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-3-amd64 (SMP w/4 CPU cores)
Locale: LANG=C.UTF-8, LC_CTYPE=C.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages c2hs depends on:
ii  libc6 2.13-34
ii  libffi5   3.0.10-3
ii  libgmp10  2:5.0.5+dfsg-2

c2hs recommends no packages.

c2hs suggests no packages.

-- no debconf information


--- End Message ---
--- Begin Message ---
Version: 0.25.2-1

This appears to have been fixed in c2hs v0.23.1.
For more information, see https://github.com/haskell/c2hs/issues/48.

Thanks for reporting this.

-- 
Ilias--- End Message ---
___
Pkg-haskell-maintainers mailing list
Pkg-haskell-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-haskell-maintainers

Processed: Forwarded #680329

2016-11-06 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> forwarded 680329 https://github.com/haskell/c2hs/issues/48
Bug #680329 [c2hs] Does not parse GCC "mode" attribute for integer sizes (used 
in sys/types.h)
Set Bug forwarded-to-address to 'https://github.com/haskell/c2hs/issues/48'.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
680329: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=680329
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems

___
Pkg-haskell-maintainers mailing list
Pkg-haskell-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-haskell-maintainers


haskell-terminal-size_0.3.2.1-2~bpo8+1_i386.changes REJECTED

2016-11-06 Thread Thorsten Alteholz

Hi Frederic,

I think this should not go to this NEW ...

  Thorsten



===

Please feel free to respond to this email if you don't understand why
your files were rejected, or if you upload new files which address our
concerns.


___
Pkg-haskell-maintainers mailing list
Pkg-haskell-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-haskell-maintainers


darcs-monitor 0.4.2-12 MIGRATED to testing

2016-11-06 Thread Debian testing watch
FYI: The status of the darcs-monitor source package
in Debian's testing distribution has changed.

  Previous version: 0.4.2-10
  Current version:  0.4.2-12

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See https://release.debian.org/testing-watch/ for more information.

___
Pkg-haskell-maintainers mailing list
Pkg-haskell-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-haskell-maintainers


Bug#843030: marked as done (snap-templates: fails to upgrade from 'testing' - trying to overwrite /usr/bin/snap-framework)

2016-11-06 Thread Debian Bug Tracking System
Your message dated Sun, 06 Nov 2016 15:35:20 +
with message-id 
and subject line Bug#843030: fixed in haskell-snap-templates 1.0.0.0-3
has caused the Debian Bug report #843030,
regarding snap-templates: fails to upgrade from 'testing' - trying to overwrite 
/usr/bin/snap-framework
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 ow...@bugs.debian.org
immediately.)


-- 
843030: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=843030
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: snap-templates
Version: 1.0.0.0-2
Severity: serious
User: debian...@lists.debian.org
Usertags: piuparts

Hi,

during a test with piuparts I noticed your package fails to upgrade from
'testing'.
It installed fine in 'testing', then the upgrade to 'sid' fails
because it tries to overwrite other packages files without declaring a
Breaks+Replaces relation.

See policy 7.6 at
https://www.debian.org/doc/debian-policy/ch-relationships.html#s-replaces

>From the attached log (scroll to the bottom...):

  Selecting previously unselected package snap-templates.
  Preparing to unpack .../1-snap-templates_1.0.0.0-2_amd64.deb ...
  Unpacking snap-templates (1.0.0.0-2) ...
  dpkg: error processing archive 
/tmp/apt-dpkg-install-GuJr0J/1-snap-templates_1.0.0.0-2_amd64.deb (--unpack):
   trying to overwrite '/usr/bin/snap-framework', which is also in package 
libghc-snap-dev 0.14.0.7-2
  dpkg-deb: error: subprocess paste was killed by signal (Broken pipe)
  Errors were encountered while processing:
   /tmp/apt-dpkg-install-GuJr0J/1-snap-templates_1.0.0.0-2_amd64.deb


cheers,

Andreas


libghc-snap-dev=0.14.0.7-2_snap-templates=1.0.0.0-2.log.gz
Description: application/gzip
--- End Message ---
--- Begin Message ---
Source: haskell-snap-templates
Source-Version: 1.0.0.0-3

We believe that the bug you reported is fixed in the latest version of
haskell-snap-templates, 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 843...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Clint Adams  (supplier of updated haskell-snap-templates 
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 ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 06 Nov 2016 08:43:34 -0500
Source: haskell-snap-templates
Binary: snap-templates
Architecture: source
Version: 1.0.0.0-3
Distribution: unstable
Urgency: high
Maintainer: Debian Haskell Group 

Changed-By: Clint Adams 
Description:
 snap-templates - ${haskell:ShortDescription}${haskell:ShortBlurb}
Closes: 843030
Changes:
 haskell-snap-templates (1.0.0.0-3) unstable; urgency=high
 .
   * Add Breaks+Replaces on libghc-snap-dev (<< 1.0.0.1-1).
 closes: #843030.
Checksums-Sha1:
 e2cf2291bf5b5d6ef368191aeba6ef2eadea06bc 2296 
haskell-snap-templates_1.0.0.0-3.dsc
 3d54d53ee987d7416f6be87c8c7787f5a668385a 17886 
haskell-snap-templates_1.0.0.0.orig.tar.gz
 b4dd315e764c45d72ec9976689fd6cbb51430aee 2596 
haskell-snap-templates_1.0.0.0-3.debian.tar.xz
Checksums-Sha256:
 0bf14788c9bbcdd52f34a28eda372cd1534f7959ce449587b89550fdd27f508c 2296 
haskell-snap-templates_1.0.0.0-3.dsc
 f6289348179d07721f6edc1dbe19bcfe989de0dd2945962c455e2ce113d2561b 17886 
haskell-snap-templates_1.0.0.0.orig.tar.gz
 a1f159057efe57d0e37b4ddbc639bb3920cacec78b7eeefad0230946041cdd3d 2596 
haskell-snap-templates_1.0.0.0-3.debian.tar.xz
Files:
 e740617eb68026f979cbd8ee8bf24604 2296 haskell extra 
haskell-snap-templates_1.0.0.0-3.dsc
 e8c0623be87cb3390bb64187532a3b21 17886 haskell extra 
haskell-snap-templates_1.0.0.0.orig.tar.gz
 f4b0dadc4d2888d9ae75a3df35346b28 2596 haskell extra 
haskell-snap-templates_1.0.0.0-3.debian.tar.xz

-BEGIN PGP SIGNATURE-
Comment: Debian!

iQKOBAEBCgB4BQJYHzPnXxSAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ3NTgxRUM4NzQwNTNFNkM4MDc3OTFCOUI1
NTkyMzMxRTE5OUQzOEE4ERxjbGludEBkZWJpYW4ub3JnAAoJEFWSMx4ZnTioq6MP
/26dd4oYnUEaeF76RdottVGnQeBYShle6a3JSxwVWt6jz/JKFgCiw7k/XZJ8KQTv
AgN2t6nHlsGbMps18MZZbshcenTVQduWIoD9OUzZr7Qj1mjrNXChIVkpc09k5XoB
O2ZXAJZM79NokWS96XAYn6CiXoMpgS3i5RCQBecIwvmGo3PNbEWvYtvSOnrTtDBY

haskell-snap-templates_1.0.0.0-3_source.changes ACCEPTED into unstable

2016-11-06 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 06 Nov 2016 08:43:34 -0500
Source: haskell-snap-templates
Binary: snap-templates
Architecture: source
Version: 1.0.0.0-3
Distribution: unstable
Urgency: high
Maintainer: Debian Haskell Group 

Changed-By: Clint Adams 
Description:
 snap-templates - ${haskell:ShortDescription}${haskell:ShortBlurb}
Closes: 843030
Changes:
 haskell-snap-templates (1.0.0.0-3) unstable; urgency=high
 .
   * Add Breaks+Replaces on libghc-snap-dev (<< 1.0.0.1-1).
 closes: #843030.
Checksums-Sha1:
 e2cf2291bf5b5d6ef368191aeba6ef2eadea06bc 2296 
haskell-snap-templates_1.0.0.0-3.dsc
 3d54d53ee987d7416f6be87c8c7787f5a668385a 17886 
haskell-snap-templates_1.0.0.0.orig.tar.gz
 b4dd315e764c45d72ec9976689fd6cbb51430aee 2596 
haskell-snap-templates_1.0.0.0-3.debian.tar.xz
Checksums-Sha256:
 0bf14788c9bbcdd52f34a28eda372cd1534f7959ce449587b89550fdd27f508c 2296 
haskell-snap-templates_1.0.0.0-3.dsc
 f6289348179d07721f6edc1dbe19bcfe989de0dd2945962c455e2ce113d2561b 17886 
haskell-snap-templates_1.0.0.0.orig.tar.gz
 a1f159057efe57d0e37b4ddbc639bb3920cacec78b7eeefad0230946041cdd3d 2596 
haskell-snap-templates_1.0.0.0-3.debian.tar.xz
Files:
 e740617eb68026f979cbd8ee8bf24604 2296 haskell extra 
haskell-snap-templates_1.0.0.0-3.dsc
 e8c0623be87cb3390bb64187532a3b21 17886 haskell extra 
haskell-snap-templates_1.0.0.0.orig.tar.gz
 f4b0dadc4d2888d9ae75a3df35346b28 2596 haskell extra 
haskell-snap-templates_1.0.0.0-3.debian.tar.xz

-BEGIN PGP SIGNATURE-
Comment: Debian!

iQKOBAEBCgB4BQJYHzPnXxSAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ3NTgxRUM4NzQwNTNFNkM4MDc3OTFCOUI1
NTkyMzMxRTE5OUQzOEE4ERxjbGludEBkZWJpYW4ub3JnAAoJEFWSMx4ZnTioq6MP
/26dd4oYnUEaeF76RdottVGnQeBYShle6a3JSxwVWt6jz/JKFgCiw7k/XZJ8KQTv
AgN2t6nHlsGbMps18MZZbshcenTVQduWIoD9OUzZr7Qj1mjrNXChIVkpc09k5XoB
O2ZXAJZM79NokWS96XAYn6CiXoMpgS3i5RCQBecIwvmGo3PNbEWvYtvSOnrTtDBY
Po/PdnHqNvmXseZNpxvMlPJIMn64DLwaagbn+J2/KxiIoqXxjvu4iKgbgFXgpKrx
AyFTe53RJ7RBSO9Uxm6jZmh3Z8duhbL/srqw7gMQAsclXDbXtee8Kiipmmzlfcm2
ZB8krmnt9/GWyd3c8OsXBXtCTcdb9OmlkVxLrYSv9GQJsmHsGLS7z+x8C1loLWKp
q1RclQBA3HDnqjUUjgrno5NjCZzxp6+YcL2JSuRy7Ec3vzUOUT5JtjzF1kB5VBjz
pBQBAunhwEmJtPL50wnekmmB345uT+PcRCl/k0dqVolcSyq/RNhG3Vs4zFBoOQZn
lG/Ty/7A63SYS2lht8LI/FOvLPqbgM9I63YcIKvgWoBSbTK7Z8mnQfLWszhe7ZGt
9XQJD6LYKJdPBmo2+HOkiw0HCjMvX5tZrz8pOonijIxC3Kxf4+EJihADLPtEi+9X
OSYsWmrdFBLPMAYpspzBrxXm/Sx20CoMws2UoGEUKGdU
=cd5q
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Pkg-haskell-maintainers mailing list
Pkg-haskell-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-haskell-maintainers


Processing of haskell-hmatrix_0.17.0.2-4_source.changes

2016-11-06 Thread Debian FTP Masters
haskell-hmatrix_0.17.0.2-4_source.changes uploaded successfully to localhost
along with the files:
  haskell-hmatrix_0.17.0.2-4.dsc
  haskell-hmatrix_0.17.0.2.orig.tar.gz
  haskell-hmatrix_0.17.0.2-4.debian.tar.xz

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Pkg-haskell-maintainers mailing list
Pkg-haskell-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-haskell-maintainers


Processing of haskell-snap-templates_1.0.0.0-3_source.changes

2016-11-06 Thread Debian FTP Masters
haskell-snap-templates_1.0.0.0-3_source.changes uploaded successfully to 
localhost
along with the files:
  haskell-snap-templates_1.0.0.0-3.dsc
  haskell-snap-templates_1.0.0.0.orig.tar.gz
  haskell-snap-templates_1.0.0.0-3.debian.tar.xz

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

___
Pkg-haskell-maintainers mailing list
Pkg-haskell-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-haskell-maintainers


Bug#843405: haskell-intern: needs sourceful upload

2016-11-06 Thread Clint Adams
Source: haskell-intern
Version: 0.9.1.4-1
Severity: serious

libghc-intern-doc needs to be rebuilt with ghc 8 so it can become
installable.

___
Pkg-haskell-maintainers mailing list
Pkg-haskell-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-haskell-maintainers


Bug#843404: haskell-swish: needs sourceful upload for ghc8 transition

2016-11-06 Thread Clint Adams
Source: haskell-swish
Version: 0.9.1.7-2
Severity: serious

libghc-swish-doc needs to be rebuilt against ghc 8 so it
can become installable.

___
Pkg-haskell-maintainers mailing list
Pkg-haskell-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-haskell-maintainers