Bug#1070015: haskel-pandoc: FTBFS on armel: Couldn't match expected type: WriterState -> m a

2024-05-01 Thread Ilias Tsitsimpis
On Sun, Apr 28, 2024 at 05:14PM, Sebastian Ramacher wrote:
> https://buildd.debian.org/status/fetch.php?pkg=haskell-pandoc=armel=3.1.3-1%2Bb1=1713911741=0

I have been trying to understand what is wrong, but haven't found
anything. My best guess right now is that this is a GHC bug that
manifests due to the time64 transition.

Oddly enough, if we run 'build' again it succeeds.

My course of action for now is:
  * Upload a workaround for haskell-pandoc that runs 'build' twice, so
we can finish with this transition
  * Upgrade to GHC 9.6 with the next transition, with the hope that this
bug is fixed there
  * If not, report this upstream

-- 
Ilias



Bug#1069354: notfound 1069375 in 3.1.10-2, closing 1069375, notfound 1069396 in 3.0.1.2-6, closing 1069396 ...

2024-04-21 Thread Ilias Tsitsimpis
notfound 1069375 3.1.10-2
close 1069375 
notfound 1069396 3.0.1.2-6
close 1069396 
close 1069392 
notfound 1069392 1.6.1-2
close 1069380 
notfound 1069380 1.6.0.8-2
close 1069354 
notfound 1069354 4.0.3-2
close 1069420 
notfound 1069420 0.19.1-3
close 1069455 
notfound 1069455 5.0.18.3+dfsg1-5
close 1069494 
notfound 1069494 3.1.3-1
close 1069491 
notfound 1069491 2.9.3.1-1
close 1069489 
notfound 1069489 0.9.2-5
close 1069461 
notfound 1069461 1.6.7-2
close 1069443 
notfound 1069443 1.6.12-2
close 1069500 
notfound 1069500 0.3.0.1-1
close 1069430 
notfound 1069430 0.3.16-1
close 1069442 
notfound 1069442 0.28.0.1-1
close 1069503 
notfound 1069503 0.1.3.2-2
close 1069428 
notfound 1069428 4.16.2.0-2
close 1069459 
notfound 1069459 0.35.2-1
close 1069464 
notfound 1069464 5.3.1.1-1
close 1069431 
notfound 1069431 0.5.8-3
close 1069493 
notfound 1069493 0.2.0.1-1
close 1069501 
notfound 1069501 0.1.0.2-3
close 1069457 
notfound 1069457 3.3.25-1
close 1069522 
notfound 1069522 1.6.2.2-2
close 1069541 
notfound 1069541 0.4.14-1
close 1069537 
notfound 1069537 1.6.9-2
close 1069543 
notfound 1069543 2.91.31-1
close 1069548 
notfound 1069548 1.7.1.7-2
thanks



Bug#1069259: haskell-termonad: FTBFS on armhf: callStackDoc, called at compiler/GHC/Utils/Panic.hs:182:37 in ghc:GHC.Utils.Panic

2024-04-20 Thread Ilias Tsitsimpis
Control: severity -1 important

On Thu, Apr 18, 2024 at 10:48PM, Sebastian Ramacher wrote:
> https://buildd.debian.org/status/fetch.php?pkg=haskell-termonad=armhf=4.5.0.0-1%2Bb4=1713092640=0

This appears to be a GHC bug. I have requested the removal of
haskell-termonad from armhf, for now.

-- 
Ilias



Bug#1068586: ghc: Broken on arm{el,hf} because of time_t transition

2024-04-09 Thread Ilias Tsitsimpis
On Tue, Apr 09, 2024 at 08:53PM, Adrian Bunk wrote:
> On Tue, Apr 09, 2024 at 07:23:29PM +0300, Ilias Tsitsimpis wrote:
> > I believe it's not. haskell-hourglass used to work on arm{el,hf} just
> > before the time64 transition.
> 
> before this transition x32 was the only 32bit architecture with 64bit time_t.

Aha! Didn't know that, thanks for flagging this. I am surprised that we
hadn't noticed this earlier (as we see now, GHC is completely broken).

> > The fix here is to backport (at least) the following patches which
> > change these calls to use the capi calling convention:
> > 
> >   * 
> > https://gitlab.haskell.org/ghc/packages/time/-/commit/d52314edb138b6ecd7e888c588f83917b0ee2c29
> >   * 
> > https://gitlab.haskell.org/ghc/packages/directory/-/commit/f6b288bd96fba5a955d1f73663eb52c1859ee765
> 
> This localtime_r issue I mentioned is not covered in the above commit in 
> time.

Hmm true. My guess here is that GHC gets a completely bogus CTime value
back from clock_gettime() (we proved that the way we call
clock_gettime() is currently broken) and when it passes this CTime value
to localtime_r() it fails. I haven't verified any of this, just a guess.

> > We need a way to identify every package that is broken.
> 
> $ nm -D /usr/lib/ghc/lib/arm-linux-ghc-9.4.7/libHStime-1.12.2-ghc9.4.7.so | 
> grep gettimeofday
>  U gettimeofday@GLIBC_2.4
> ...
> 
> $ nm -D 
> /usr/lib/ghc/lib/arm-linux-ghc-9.4.7/libHSdirectory-1.3.7.1-ghc9.4.7.so | 
> grep utimensat 
> ...
>  U utimensat@GLIBC_2.6
> 
> $ nm -D /usr/lib/ghc/lib/arm-linux-ghc-9.4.7/libHStime-1.12.2-ghc9.4.7.so | 
> grep localtime
>  U __localtime64_r@GLIBC_2.34

Thank you! Can we maybe run this against all Haskell libraries and
identify the ones that are currently broken? Maybe we have such a script
already for the time64 transition.

> But the last one is the broken localtime_r one, is anything going wrong 
> with the ccall from TimeZone.hs to cbits there?
> 
> get_current_timezone_seconds() returning long is wrong,
> and might contribute to that bug:
> 
>   foreign import ccall unsafe "HsTime.h get_current_timezone_seconds"
> get_current_timezone_seconds ::
> CTime -> Ptr CInt -> Ptr CString -> IO CLong
> ...
>   getTimeZoneCTime ctime =
> ...
> secs <- get_current_timezone_seconds ctime pdst pcname
> 
> I don't know Haskell, but is this declaring ctime as CLong,
> and then passing it instead of a CTime?

I believe it returns the timezone in seconds (i.e., 3600 for +1 hour
timezone), so CLong should be large enough to hold this value. My guess
right now is that it fails due to the bogus CTime value that we pass, we
need to test this.

-- 
Ilias



Bug#1068586: ghc: Broken on arm{el,hf} because of time_t transition

2024-04-09 Thread Ilias Tsitsimpis
Hi Adrian,

On Tue, Apr 09, 2024 at 12:56PM, Adrian Bunk wrote:
> FTR, in haskell-hourglass this is #1001686 which already failed on x32 
> for this reason.

I believe it's not. haskell-hourglass used to work on arm{el,hf} just
before the time64 transition.

> My reading of the code is that this happens when 
> libraries/time/lib/cbits/HsTime.c returns 0x8000 due to 
> localtime_r() called in this function returning an error.
> 
> The "localtime_r failed" is from
> libraries/time/lib/Data/Time/LocalTime/Internal/TimeZone.hs

The problem is that GHC uses the ccall calling convention in order to
call clock_gettime() [1]. GHC assumes time_t to be 64-bits, but ends up
calling the old 32-bits variant of clock_gettime(), and not the new one
__clock_gettime64().

Here is more information about GHC's FFI calling conventions[2].
Here is also an upstream issue about this[3].

[1] 
https://gitlab.haskell.org/ghc/packages/time/-/blob/baab563ee2ce547f7b7f7e7069ed09db2d406941/lib/Data/Time/Clock/Internal/CTimespec.hsc#L30
[2] https://www.haskell.org/ghc/blog/20210709-capi-usage.html
[3] https://github.com/haskell/directory/pull/145

The fix here is to backport (at least) the following patches which
change these calls to use the capi calling convention:

  * 
https://gitlab.haskell.org/ghc/packages/time/-/commit/d52314edb138b6ecd7e888c588f83917b0ee2c29
  * 
https://gitlab.haskell.org/ghc/packages/directory/-/commit/f6b288bd96fba5a955d1f73663eb52c1859ee765

Other Haskell libraries may have the same bug as GHC if they are calling
directly the C functions using the ccall calling convention. An example
is haskell-hourglass, which needs to be patched as well:

  * 
https://github.com/vincenthz/hs-hourglass/blob/36bd2e6d5d0eb316532f13285d1c533d6da297ef/Data/Hourglass/Internal/Unix.hs#L82

We need a way to identify every package that is broken.

-- 
Ilias



Bug#1068586: ghc: Broken on arm{el,hf} because of time_t transition

2024-04-07 Thread Ilias Tsitsimpis
Package: ghc
Version: 9.4.7-3
Severity: grave
Justification: renders package unusable

I recently uploaded a new version of GHC to unstable, in order to fix
#1068179. As a result, GHC got rebuilt taking into account the new size
for time_t on arm{el,hf}. This is evident from the build logs, where
we now see:

  
https://buildd.debian.org/status/fetch.php?pkg=ghc=armel=9.4.7-4=1712410679=0

  checking Haskell type for time_t... Int64

whereas previously we had:

  
https://buildd.debian.org/status/fetch.php?pkg=ghc=armel=9.4.7-3=1708366014=0

  checking Haskell type for time_t... Int32


After this change, a number of Haskell packages have started to FTBFS:

* 
https://buildd.debian.org/status/fetch.php?pkg=haskell-filestore=armel=0.6.5-3%2Bb2=1712457355=0
* 
https://buildd.debian.org/status/fetch.php?pkg=haskell-fold-debounce=armel=0.2.0.11-1%2Bb2=1712466208=0
* 
https://buildd.debian.org/status/fetch.php?pkg=haskell-hourglass=armel=0.2.12-5%2Bb2=1712462130=0

Looking into this, I see that (at least) the getPOSIXTime method is
broken on arm{el,hf}. Compiling the following program on armel:

  $ cat Time.hs
  import Data.Time.Clock.POSIX

  main = do
t <- getPOSIXTime
print t

  $ ghc -o time Time.hs
  $ ./time
  3590884976642664859s

whereas on an amd64 system it returns:

  $ ./time
  1712499127.06215219s

This bug blocks the time_t transition (#1036884).

-- 
Ilias



Bug#1054863: haskell-hsyaml: FTBFS: make: *** [/usr/share/cdbs/1/class/hlibrary.mk:153: configure-ghc-stamp] Error 25

2024-03-03 Thread Ilias Tsitsimpis
Hi Jonas,

On Fri, Oct 27, 2023 at 09:50PM, Lucas Nussbaum wrote:
> > Error: hlibrary.setup: Encountered missing or private dependencies:
> > base >=4.5 && <4.17

Can you please update haskell-hsyaml to version 0.2.1.2, which is the
version we are currently tracking on our package-plan? This should also
fix this bug and unblock stylish-haskell.

Thanks,

-- 
Ilias



Bug#1057792: Removal notice: obsolete

2023-12-08 Thread Ilias Tsitsimpis
Source: darcs-monitor
Version: 0.4.2-14
Severity: serious

I intend to remove this package:

  * It has no rev dependencies
  * Seems unmaintained; Last upload more than 10 years ago
  * It's not part of the latest Stackage LTS

If you believe we should keep this package in Debian, please close this
bug report.

-- 
Ilias



Bug#1054353: Removal notice: obsolete

2023-12-07 Thread Ilias Tsitsimpis
Control: clone -1 -2
Control: reassign -2 ftp.debian.org
Control: retitle -2 RM: haskell-tree-monad -- ROM; obsolete
Control: severity -2 normal

On Sun, Oct 22, 2023 at 04:25PM, Ilias Tsitsimpis wrote:
> I intend to remove this package:
> 
>   * The current version FTBFS
>   * It's not part of the latest Stackage LTS

Dear FTP masters, please remove haskell-tree-monad from unstable.

-- 
Ilias



Bug#1057722: Removal notice: obsolete

2023-12-07 Thread Ilias Tsitsimpis
Source: haskell-tidal
Version: 1.7.10-1
Severity: serious

I intend to remove this package:

  * It has no rev dependencies
  * Newer versions depend on libraries not available in Debian (tidal-link)

If you believe we should keep this package in Debian, please close this
bug report.

-- 
Ilias



Bug#1057720: Removal notice: obsolete

2023-12-07 Thread Ilias Tsitsimpis
Source: haskell-ircbot
Version: 0.6.6.1-1
Severity: serious

I intend to remove this package:

  * It has no rev dependencies
  * The current version FTBFS (depends on optparse-applicative <0.17),
  * It's not part of the latest Stackage LTS

If you believe we should keep this package in Debian, please close this
bug report.

-- 
Ilias



Bug#1057719: Removal notice: obsolete

2023-12-07 Thread Ilias Tsitsimpis
Source: haskell-happstack-authenticate
Version: 2.6.1-1
Severity: serious

I intend to remove this package:

  * It has no rev dependencies
  * The current version FTBFS (depends on broken haskell-userid)
  * It's not part of the latest Stackage LTS

If you believe we should keep this package in Debian, please close this
bug report.

-- 
Ilias



Bug#1057718: Removal notice: obsolete

2023-12-07 Thread Ilias Tsitsimpis
Source: haskell-userid
Version: 0.1.3.7-1
Severity: serious

I intend to remove this package:

  * It has only one rev dependency (happstack-authenticate, which I
intend to remove as well)
  * The current version FTBFS (depends on base <4.17), 
  * Seems unmaintained; Doesn't build with GHC 9.4
  * It's not part of the latest Stackage LTS

If you believe we should keep this package in Debian, please close this
bug report.

-- 
Ilias



Bug#1057716: Removal notice: obsolete

2023-12-07 Thread Ilias Tsitsimpis
Source: haskell-diagrams
Version: 1.4.0.1-1
Severity: serious

I intend to remove this package:

  * It has no rev dependencies
  * It is a meta-package that installs diagrams-core, diagrams-lib, and
diagrams-cairo packages.

If you believe we should keep this package in Debian, please close this
bug report.

-- 
Ilias



Bug#1057652: libghc-base64-dev: Segfaults on 32-bit architectures

2023-12-06 Thread Ilias Tsitsimpis
Package: libghc-base64-dev
Version: 0.4.2.4-2
Severity: grave
Tags: upstream
Justification: renders package unusable
Forwarded: https://github.com/emilypi/base64/issues/56

This library segfaults on 32-bit architectures. The testsuite fails as
well, but unfortunately is not enabled in Debian because of a missing
build-dependency.

For more information, see the upstream bug report
https://github.com/emilypi/base64/issues/56.

-- 
Ilias



Bug#1054495: Removal notice: obsolete

2023-12-02 Thread Ilias Tsitsimpis
Control: clone -1 -2
Control: reassign -2 ftp.debian.org
Control: retitle -2 RM: haskell-repa -- ROM; obsolete
Control: severity -2 normal

On Tue, Oct 24, 2023 at 06:23PM, Ilias Tsitsimpis wrote:
> I intend to remove this package:
> 
>   * It has no rev dependencies
>   * The current version FTBFS
>   * It's not part of the latest Stackage LTS

Dear FTP masters, please remove haskell-repa from unstable.

-- 
Ilias



Bug#1054318: Removal notice: obsolete

2023-12-02 Thread Ilias Tsitsimpis
Control: clone -1 -2
Control: reassign -2 ftp.debian.org
Control: retitle -2 RM: haskell-syb-with-class -- ROM; obsolete
Control: severity -2 normal

On Sat, Oct 21, 2023 at 08:35PM, Ilias Tsitsimpis wrote:
> I intend to remove this package:
> 
>   * The current version FTBFS with GHC 9.4
>   * It's not part of the latest Stackage LTS

Dear FTP masters, please remove haskell-syb-with-class from unstable.

-- 
Ilias



Bug#1054355: Removal notice: obsolete

2023-12-02 Thread Ilias Tsitsimpis
Control: clone -1 -2
Control: reassign -2 ftp.debian.org
Control: retitle -2 RM: haskell-parallel-tree-search -- ROM; obsolete
Control: severity -2 normal

On Sun, Oct 22, 2023 at 04:26PM, Ilias Tsitsimpis wrote:
> I intend to remove this package:
> 
>   * It has no rev dependencies
>   * The current version FTBFS
>   * Seems unmaintained; Last upload more than 3 years ago
>   * It's not part of the latest Stackage LTS

Dear FTP masters, please remove haskell-parallel-tree-search from unstable.

-- 
Ilias



Bug#1054317: Removal notice: obsolete

2023-12-02 Thread Ilias Tsitsimpis
Control: clone -1 -2
Control: reassign -2 ftp.debian.org
Control: retitle -2 RM: haskell-numtype -- ROM; obsolete
Control: severity -2 normal

On Sat, Oct 21, 2023 at 08:10PM, Ilias Tsitsimpis wrote:
> I intend to remove this package:
> 
>   * It has no rev dependencies
>   * The current version FTBFS with GHC 9.4
>   * Seems unmaintained; Last upload more than 5 years ago
>   * It's not part of the latest Stackage LTS

Dear FTP masters, please remove haskell-numtype from unstable.

-- 
Ilias



Bug#1054319: Removal notice: obsolete

2023-12-01 Thread Ilias Tsitsimpis
Control: clone -1 -2
Control: reassign -2 ftp.debian.org
Control: retitle -2 RM: haskell-ixset -- ROM; obsolete
Control: severity -2 normal

On Sat, Oct 21, 2023 at 08:38PM, Ilias Tsitsimpis wrote:
> I intend to remove this package:
> 
>   * It has no rev dependencies
>   * The current version FTBFS (depends on broken haskell-syb-with-class)
>   * It's not part of the latest Stackage LTS


Dear FTP masters, please remove haskell-ixset from unstable.

-- 
Ilias



Bug#1054358: Removal notice: obsolete

2023-12-01 Thread Ilias Tsitsimpis
Control: clone -1 -2
Control: reassign -2 ftp.debian.org
Control: retitle -2 RM: haskell-mbox -- ROM; obsolete
Control: severity -2 normal

On Sun, Oct 22, 2023 at 04:33PM, Ilias Tsitsimpis wrote:
> I intend to remove this package:
> 
>   * It has no rev dependencies
>   * The current version FTBFS
>   * Seems unmaintained; Last upload more than 5 years ago
>   * It's not part of the latest Stackage LTS


Dear FTP masters, please remove haskell-mbox from unstable.

-- 
Ilias



Bug#1054357: Removal notice: obsolete

2023-12-01 Thread Ilias Tsitsimpis
Control: clone -1 -2
Control: reassign -2 ftp.debian.org
Control: retitle -2 RM: haskell-fclabels -- ROM; obsolete
Control: severity -2 normal

On Sun, Oct 22, 2023 at 04:31PM, Ilias Tsitsimpis wrote:
> I intend to remove this package:
> 
>   * It has no rev dependencies
>   * The current version FTBFS
>   * It's not part of the latest Stackage LTS


Dear FTP masters, please remove haskell-fclabels from unstable.

-- 
Ilias



Bug#1054356: Removal notice: obsolete

2023-12-01 Thread Ilias Tsitsimpis
Control: clone -1 -2
Control: reassign -2 ftp.debian.org
Control: retitle -2 RM: haskell-data-tree-print -- ROM; obsolete
Control: severity -2 normal

On Sun, Oct 22, 2023 at 04:28PM, Ilias Tsitsimpis wrote:
> I intend to remove this package:
> 
>   * It has no rev dependencies
>   * The current version FTBFS
>   * Seems unmaintained; Last upload more than 5 years ago
>   * It's not part of the latest Stackage LTS
> 
> If you believe we should keep this package in Debian, please close this
> bug report.


Dear FTP masters, please remove haskell-data-tree-print from unstable.

-- 
Ilias



Bug#1054316: Removal notice: obsolete

2023-12-01 Thread Ilias Tsitsimpis
Control: clone -1 -2
Control: reassign -2 ftp.debian.org
Control: retitle -2 RM: haskell-czipwith -- ROM; obsolete
Control: severity -2 normal

On Sat, Oct 21, 2023 at 08:07PM, Ilias Tsitsimpis wrote:
> I intend to remove this package:
> 
>   * It has no rev dependencies
>   * The current version FTBFS with GHC 9.4
>   * It's not part of the latest Stackage LTS
> 
> If you believe we should keep this package in Debian, please close this
> bug report.


Dear FTP masters, please remove haskell-czipwith from unstable.

-- 
Ilias



Bug#1018196: Bug#1018197: Removal notice: obsolete

2023-12-01 Thread Ilias Tsitsimpis
Control: clone -1 -2
Control: reassign -2 ftp.debian.org
Control: retitle -2 RM: haskell-cipher-aes -- ROM; obsolete
Control: severity -2 normal

On Sun, Oct 22, 2023 at 07:19PM, Adrian Bunk wrote:
> #1022681 has now been fixed.

Dear FTP masters, please remove haskell-cipher-aes from unstable.

-- 
Ilias



Bug#1018197: Removal notice: obsolete

2023-12-01 Thread Ilias Tsitsimpis
Control: clone -1 -2
Control: reassign -2 ftp.debian.org
Control: retitle -2 RM: haskell-cprng-aes -- ROM; obsolete
Control: severity -2 normal

On Sun, Oct 22, 2023 at 07:19PM, Adrian Bunk wrote:
> #1022681 has now been fixed.

Dear FTP masters, please remove haskell-cprng-aes from unstable.

-- 
Ilias



Bug#1054498: Removal notice: obsolete

2023-12-01 Thread Ilias Tsitsimpis
Control: clone -1 -2
Control: reassign -2 ftp.debian.org
Control: retitle -2 RM: haskell-butcher -- ROM; obsolete
Control: severity -2 normal

On Tue, Oct 24, 2023 at 06:30PM, Ilias Tsitsimpis wrote:
> I intend to remove this package:
> 
>   * It has no rev dependencies
>   * The current version FTBFS
>   * It's not part of the latest Stackage LTS
> 
> If you believe we should keep this package in Debian, please close this
> bug report.


Dear FTP masters, please remove haskell-butcher from unstable.

-- 
Ilias



Bug#1054596: Removal notice: obsolete

2023-12-01 Thread Ilias Tsitsimpis
Control: clone -1 -2
Control: reassign -2 ftp.debian.org
Control: retitle -2 RM: haskell-binary-parsers -- ROM; obsolete
Control: severity -2 normal

On Thu, Oct 26, 2023 at 06:16PM, Ilias Tsitsimpis wrote:
> I intend to remove this package:
> 
>   * It has no rev dependencies
>   * The current version FTBFS
>   * Seems unmaintained; Last upload more than 4 years ago
>   * It's not part of the latest Stackage LTS

Dear FTP masters, please remove haskell-binary-parsers from unstable.

-- 
Ilias



Bug#1056758: Removal notice: obsolete

2023-11-25 Thread Ilias Tsitsimpis
Source: haskell-reform-hsp
Version: 0.2.7.2-2
Severity: serious

I intend to remove this package:

  * It has no rev dependencies
  * The current version FTBFS
  * Seems unmaintained; Last upload more than 3 years ago
  * It's not part of the latest Stackage LTS

If you believe we should keep this package in Debian, please close this
bug report.

-- 
Ilias



Bug#1053686: pandoc: cannot fulfill the build dependencies

2023-11-23 Thread Ilias Tsitsimpis
On Fri, Nov 17, 2023 at 09:28AM, Ilias Tsitsimpis wrote:
> On Thu, Nov 16, 2023 at 10:16PM, Jonas Smedegaard wrote:
> > Quoting John MacFarlane (2023-11-16 19:25:17)
> > > Removing lua support would be most unfortunate!  If you need help from 
> > > upstream in getting things to work, let me know.
> > 
> > I agree: Pandoc with its core scripting language disabled is a severely
> > crippled Pandoc.
> 
> Understood, but I am not really sure how to move forward, since Pandoc
> doesn't fully support the latest Stackage LTS. I can help with
> packaging/upgrade libraries if you can provide the right set of
> libraries we need.

I uploaded the following packages:

* haskell-hslua-cli_v1.3.0-1,
* haskell-hslua-module-doclayout_v1.1.0-1
* haskell-hslua-module-zip_v1.1.0-1

I believe the next step is to update pandoc to 3.0.1, so we can then
package pandoc-lua-engine, pandoc-server and eventually pandoc-cli.

Jonas, how can I help move this forward? Pandoc is the last blocker to
finish the Haskell transition.

-- 
Ilias



Bug#1053686: pandoc: cannot fulfill the build dependencies

2023-11-16 Thread Ilias Tsitsimpis
On Thu, Nov 16, 2023 at 10:16PM, Jonas Smedegaard wrote:
> Quoting John MacFarlane (2023-11-16 19:25:17)
> > Removing lua support would be most unfortunate!  If you need help from 
> > upstream in getting things to work, let me know.
> 
> I agree: Pandoc with its core scripting language disabled is a severely
> crippled Pandoc.

Understood, but I am not really sure how to move forward, since Pandoc
doesn't fully support the latest Stackage LTS. I can help with
packaging/upgrade libraries if you can provide the right set of
libraries we need.

-- 
Ilias



Bug#1053686: pandoc: cannot fulfill the build dependencies

2023-11-16 Thread Ilias Tsitsimpis
Hi John,

On Thu, Nov 16, 2023 at 10:25AM, John MacFarlane wrote:
> Removing lua support would be most unfortunate!  If you need help from 
> upstream in getting things to work, let me know.

We are currently tracking the latest Stackage LTS, and Lua support is
not enabled for Pandoc there (see also [1]).

It would help if you can give us a list of packages/versions we need to
use in order to compile pandoc-cli with Lua support using the latest
Stackage LTS.

[1] 
https://github.com/commercialhaskell/stack/issues/6260#issuecomment-1751302985

Thanks,

-- 
Ilias



Bug#1053686: pandoc: cannot fulfill the build dependencies

2023-11-16 Thread Ilias Tsitsimpis
Hi Jonas,

On Thu, Nov 16, 2023 at 01:28PM, Jonas Smedegaard wrote:
> Upstream project has restructured to now be organized as multiple
> projects to be built as dependencies of each other.
> 
> I had hoped to be able to orchestrate such chain-of-builds internally in
> the single source package, but the Haskell build helper tools seem to be
> in too bad shape for that: Apparently all Haskell packages use CDBS
> which is quite cumbersome to use for "looping" subtasks, and both of the
> two available non-CDBS debhelper tools existing in Debian are broken.

I would suggest packaging these libraries as distinct packages in
Debian, not only because our tooling doesn't support the other way, but
also because these are distinct packages in Hackage, with different
versions/releases. Essentially treat Hackage as the source of truth, and
not the git (mono-) repo.

> I therefore give up on that approach, and see no other way forward than
> to introduce the libraries of Pandoc as a new source package, and then
> have the existing src:pandoc package depend on that to build the binary.
> 
> I will now file an RFP for that new dependent package, in the hope that
> the Haskell team can adopt maintenance of that.

Please let me know of any missing libraries, and I will package them
ASAP. I thought we had everything in Debian until now. See also my
message here [1], where I point to the new pandoc-cli package, and the
fact that Lua support is currently broken, and maybe it's best to
disable it for now.

Let me know how I can help.

[1] https://lists.debian.org/debian-haskell/2023/11/msg4.html

Best,

-- 
Ilias



Bug#1054956: closing 1054956

2023-11-01 Thread Ilias Tsitsimpis
close 1054956 5.3.1.1-1
thanks



Bug#1054596: Removal notice: obsolete

2023-10-26 Thread Ilias Tsitsimpis
Source: haskell-binary-parsers
Version: 0.2.4.0-4
Severity: serious

I intend to remove this package:

  * It has no rev dependencies
  * The current version FTBFS
  * Seems unmaintained; Last upload more than 4 years ago
  * It's not part of the latest Stackage LTS

If you believe we should keep this package in Debian, please close this
bug report.

-- 
Ilias



Bug#1054497: Removal notice: obsolete

2023-10-24 Thread Ilias Tsitsimpis
Source: haskell-multistate
Version: 0.8.0.4-1
Severity: serious

I intend to remove this package:

  * It has only one rev dependency (haskell-butcher)
  * The current version FTBFS
  * It's not part of the latest Stackage LTS

If you believe we should keep this package in Debian, please close this
bug report.

-- 
Ilias



Bug#1054498: Removal notice: obsolete

2023-10-24 Thread Ilias Tsitsimpis
Source: haskell-butcher
Version: 1.3.3.2-2
Severity: serious

I intend to remove this package:

  * It has no rev dependencies
  * The current version FTBFS
  * It's not part of the latest Stackage LTS

If you believe we should keep this package in Debian, please close this
bug report.

-- 
Ilias



Bug#1054495: Removal notice: obsolete

2023-10-24 Thread Ilias Tsitsimpis
Source: haskell-repa
Version: 3.4.1.5-1
Severity: serious

I intend to remove this package:

  * It has no rev dependencies
  * The current version FTBFS
  * It's not part of the latest Stackage LTS

If you believe we should keep this package in Debian, please close this
bug report.

-- 
Ilias



Bug#1054358: Removal notice: obsolete

2023-10-22 Thread Ilias Tsitsimpis
Source: haskell-mbox
Version: 0.3.4-6
Severity: serious

I intend to remove this package:

  * It has no rev dependencies
  * The current version FTBFS
  * Seems unmaintained; Last upload more than 5 years ago
  * It's not part of the latest Stackage LTS

If you believe we should keep this package in Debian, please close this
bug report.

-- 
Ilias



Bug#1054357: Removal notice: obsolete

2023-10-22 Thread Ilias Tsitsimpis
Source: haskell-fclabels
Version: 2.0.5.1-1
Severity: serious

I intend to remove this package:

  * It has no rev dependencies
  * The current version FTBFS
  * It's not part of the latest Stackage LTS

If you believe we should keep this package in Debian, please close this
bug report.

-- 
Ilias



Bug#1054356: Removal notice: obsolete

2023-10-22 Thread Ilias Tsitsimpis
Source: haskell-data-tree-print
Version: 0.1.0.2-3
Severity: serious

I intend to remove this package:

  * It has no rev dependencies
  * The current version FTBFS
  * Seems unmaintained; Last upload more than 5 years ago
  * It's not part of the latest Stackage LTS

If you believe we should keep this package in Debian, please close this
bug report.

-- 
Ilias



Bug#1054355: Removal notice: obsolete

2023-10-22 Thread Ilias Tsitsimpis
Source: haskell-parallel-tree-search
Version: 0.4.2-2
Severity: serious

I intend to remove this package:

  * It has no rev dependencies
  * The current version FTBFS
  * Seems unmaintained; Last upload more than 3 years ago
  * It's not part of the latest Stackage LTS

If you believe we should keep this package in Debian, please close this
bug report.

-- 
Ilias



Bug#1054353: Removal notice: obsolete

2023-10-22 Thread Ilias Tsitsimpis
Source: haskell-tree-monad
Version: 0.3.2-1
Severity: serious

I intend to remove this package:

  * The current version FTBFS
  * It's not part of the latest Stackage LTS

If you believe we should keep this package in Debian, please close this
bug report.

-- 
Ilias



Bug#1023150: closing 1023150

2023-10-22 Thread Ilias Tsitsimpis
close 1023150 2.9.8-2
thanks



Bug#1054319: Removal notice: obsolete

2023-10-21 Thread Ilias Tsitsimpis
Source: haskell-ixset
Version: 1.1.1.2-1
Severity: serious

I intend to remove this package:

  * It has no rev dependencies
  * The current version FTBFS (depends on broken haskell-syb-with-class)
  * It's not part of the latest Stackage LTS

If you believe we should keep this package in Debian, please close this
bug report.

-- 
Ilias



Bug#1054318: Removal notice: obsolete

2023-10-21 Thread Ilias Tsitsimpis
Source: haskell-syb-with-class
Version: 0.6.1.14-1
Severity: serious

I intend to remove this package:

  * The current version FTBFS with GHC 9.4
  * It's not part of the latest Stackage LTS

If you believe we should keep this package in Debian, please close this
bug report.

-- 
Ilias



Bug#1054317: Removal notice: obsolete

2023-10-21 Thread Ilias Tsitsimpis
Source: haskell-numtype
Version: 1.2-7
Severity: serious

I intend to remove this package:

  * It has no rev dependencies
  * The current version FTBFS with GHC 9.4
  * Seems unmaintained; Last upload more than 5 years ago
  * It's not part of the latest Stackage LTS

If you believe we should keep this package in Debian, please close this
bug report.

-- 
Ilias



Bug#1054316: Removal notice: obsolete

2023-10-21 Thread Ilias Tsitsimpis
Source: haskell-czipwith
Version: 1.0.1.4-1
Severity: serious

I intend to remove this package:

  * It has no rev dependencies
  * The current version FTBFS with GHC 9.4
  * It's not part of the latest Stackage LTS

If you believe we should keep this package in Debian, please close this
bug report.

-- 
Ilias



Bug#1053982: haskell-hindent: Cannot update this package to newer version

2023-10-15 Thread Ilias Tsitsimpis
Source: haskell-hindent
Version: 5.3.4-1
Severity: serious
Tags: ftbfs
Justification: ftbfs
Forwarded: https://github.com/mihaimaruseac/hindent/issues/776

Newer versions of this package depend on unicode-show [1], which is not
available in Debian. Unfortunately, unicode-show is unmaintained [2],
and so it doesn't make sense to package it now.

I have opened an upstream bug report to find a replacement for
unicode-show. Until then, marking this bug as serious to keep
haskell-hindent out of testing and allow the Haskell transition to
complete.

[1] https://hackage.haskell.org/package/unicode-show
[2] https://github.com/haskell-jp/unicode-show#readme

Thanks,



Bug#1053981: propellor: Needs a sourceful upload to support haddock interface 41

2023-10-15 Thread Ilias Tsitsimpis
Source: propellor
Version: 5.13-3
Severity: serious

This package needs a sourceful upload to rebuild libghc-propellor-doc
against interface 41.

-- 
Ilias



Bug#1053980: haskell-raaz: Cannot update this package to newer version

2023-10-15 Thread Ilias Tsitsimpis
Source: haskell-raaz
Version: 0.2.1-2.1
Severity: serious
Tags: ftbfs
Justification: ftbfs

Newer versions of this package use Cabal's internal libraries feature,
which is not supported by haskell-devscripts (see
https://bugs.debian.org/1016650). This means we cannot update this
package until we fix #1016650.

I have marked this bug as serious to keep haskell-raaz out of testing,
until we decide how to proceed here.

-- 
Ilias



Bug#1052306: haskell-quickcheck: FTBFS on i386: 6 of 8 test suites (6 of 8 test cases) passed.

2023-10-10 Thread Ilias Tsitsimpis
Control: reassign -1 ghc 9.4.6-1
Control: retitle 1052306 Produces broken code on unregisterised 32-bit platforms
Control: forwarded -1 https://gitlab.haskell.org/ghc/ghc/-/issues/22607
Control: affects -1 haskell-quickcheck

On Wed, Sep 20, 2023 at 08:59AM, Sebastian Ramacher wrote:
> https://buildd.debian.org/status/fetch.php?pkg=haskell-quickcheck=i386=2.14.3-1=1693901450=0
> 
> === prop_FromList from examples/Heap.hs:118 ===
> +++ OK, passed 100 tests.
> 
> === prop_ToSortedList from examples/Heap.hs:121 ===
> *** Failed! (after 3 tests):
> Exception:
>   QuickCheck.pick used with empty list
>   CallStack (from HasCallStack):
> error, called at src/Test/QuickCheck/Gen.hs:312:15 in 
> QuickCheck-2.14.3-IcT7IGBF9jb4AGtBd4ZTHa:Test.QuickCheck.Gen
> Exception thrown while showing test case:
>   QuickCheck.pick used with empty list
>   CallStack (from HasCallStack):
> error, called at src/Test/QuickCheck/Gen.hs:312:15 in 
> QuickCheck-2.14.3-IcT7IGBF9jb4AGtBd4ZTHa:Test.QuickCheck.Gen
> 
> 
> Test suite test-quickcheck: PASS
> Test suite logged to: dist-ghc/test/QuickCheck-2.14.3-test-quickcheck.log
> 6 of 8 test suites (6 of 8 test cases) passed.
> -e: error: debian/hlibrary.setup test --builddir=dist-ghc 
> --show-details=direct returned exit code 1
>  at /usr/share/perl5/Debian/Debhelper/Dh_Lib.pm line 880.
>   Debian::Debhelper::Dh_Lib::error("debian/hlibrary.setup test 
> --builddir=dist-ghc --show-details"...) called at 
> /usr/share/perl5/Debian/Debhelper/Dh_Lib.pm line 610
>   Debian::Debhelper::Dh_Lib::error_exitcode("debian/hlibrary.setup test 
> --builddir=dist-ghc --show-details"...) called at 
> /usr/share/perl5/Debian/Debhelper/Dh_Lib.pm line 473
>   Debian::Debhelper::Dh_Lib::doit("debian/hlibrary.setup", "test", 
> "--builddir=dist-ghc", "--show-details=direct") called at 
> /usr/share/perl5/Debian/Debhelper/Buildsystem/Haskell/Recipes.pm line 686
>   Debian::Debhelper::Buildsystem::Haskell::Recipes::check_recipe() called 
> at -e line 1
> make: *** [/usr/share/cdbs/1/class/hlibrary.mk:163: check-ghc-stamp] Error 25

GHC produces broken code on unregisterised 32-bit platforms. I will
backport the fix and upload a newer version of GHC that fixes this.

Best,

-- 
Ilias



Bug#1053633: haskell-yi-core: FTBFS with haskell-unix-compat >= 0.7

2023-10-07 Thread Ilias Tsitsimpis
Source: haskell-yi-core
Version: 0.19.2-2
Severity: serious
Tags: ftbfs
Justification: ftbfs
Forwarded: https://github.com/yi-editor/yi/issues/1133

This package FTBFS with the latest version of haskell-unix-compat, which
is part of Stackage LTS 21 and available in Debian unstable.

-- 
Ilias



Bug#1051493: ghc: FTBFS with a GHC newer than 9.0.2

2023-09-08 Thread Ilias Tsitsimpis
Source: ghc
Version: 9.4.6-1
Severity: serious
Tags: ftbfs
Justification: FTBFS

The current version of GHC in unstable (9.4.6-1) FTBFS when the
bootstrap compiler is newer than 9.0.2.

The error message is the following:

  ghc.mk:141: *** The make build system requires a boot compiler older
  than ghc-9.2. Your boot compiler is too new and cannot be used to
  build ghc-9.4 with make. Either boot with ghc 9.0.2 or build with
  hadrian. See
  https://www.haskell.org/ghc/blog/20220805-make-to-hadrian.html for
  advice on transitioning to hadrian..  Stop.

We need to switch to the newer hadrian build system in order to be able
to build ghc with a newer bootstrap compiler.

For more information about why the make build system fails, see the
upstream issue https://gitlab.haskell.org/ghc/ghc/-/issues/21188.

Thanks,

-- 
Ilias



Bug#1017663: ghc: Please upgrade to llvm-toolchain-14

2023-08-20 Thread Ilias Tsitsimpis
Control: retitle -1 Please upgrade to llvm-toolchain-14

I propose we keep this bug (which is also marked as Serious), to track
the migration to llvm-toolchain-14 (since llvm-toolchain-13 does no
longer build in unstable).

I tried using llvm-toolchain-16 with GHC 9.4.6-1~exp2 but it failed
(build logs at [1]). The plan is to use llvm-toolchain-14 in GHC 9.4.6.
Please open a new bug report to track the migration to llvm-toolchain-16.

[1] 
https://buildd.debian.org/status/fetch.php?pkg=ghc=armel=9.4.6-1%7Eexp2=1692531678=0

Thanks,

-- 
Ilias



Bug#1020246: Not an active maintainer, but

2023-06-24 Thread Ilias Tsitsimpis
Control: forwarded -1 https://github.com/ndmitchell/hoogle/issues/359

Hi Iustin,

On Sun, Apr 23, 2023 at 11:25PM, Iustin Pop wrote:
> AFAIK, both armel and armfh are low-powered/"slow" arches, but i386 is
> surprising. Maybe due to memory limits?
> 
> I wonder if tests shouldn't simply be restricted to amd64, arm64, ppc64el and
> s390x? This should give it enough of architecture heterogeneity to catch
> any problems that simply do not appear on amd64 (mainstream arch) (yes,
> I've been bitten by this in one package of mine).
> 
> This would be a cheap fix (one entry in the control file). Thoughts?
> (Anyone?) It seems this bug is the only one that prevents it from
> entering testing (and it's a leaf package).

Unfortunately it's not just the tests that fail, hoogle is currently
completely broken on all 32-bit architectures. We need to either fix it,
or remove hoogle from these architectures.

Best,

-- 
Ilias



Bug#1029347: Removal notice: obsolete

2023-06-17 Thread Ilias Tsitsimpis
Control: clone -1 -2
Control: reassign -2 ftp.debian.org
Control: retitle -2 RM: haskell-taskell -- ROM; obsolete
Control: severity -2 normal

On Sat, Jan 21, 2023 at 05:04PM, Ilias Tsitsimpis wrote:
> I intend to remove this package:
> 
>   * It has no rev dependencies
>   * The current version FTBFS (BD-Uninstallable)
>   * Upstream development has stopped
>   * It's not part of the latest Stackage LTS
>   * Newer versions depend on libraries not available in Debian
>   * It has never been a part of a stable Debian release

Dear FTP masters, please remove haskell-taskell from unstable.

-- 
Ilias



Bug#1029347: Removal notice: obsolete

2023-01-21 Thread Ilias Tsitsimpis
Source: haskell-taskell
Version: 1.4.0.0-1
Severity: serious

I intend to remove this package:

  * It has no rev dependencies
  * The current version FTBFS (BD-Uninstallable)
  * Upstream development has stopped
  * It's not part of the latest Stackage LTS
  * Newer versions depend on libraries not available in Debian
  * It has never been a part of a stable Debian release

If you believe we should keep this package in Debian, please close this
bug report.

-- 
Ilias



Bug#1022914: Removal notice: obsolete

2023-01-21 Thread Ilias Tsitsimpis
Control: clone -1 -2
Control: reassign -2 ftp.debian.org
Control: retitle -2 RM: haskell-test-framework-th -- ROM; obsolete
Control: severity -2 normal

Dear FTP masters, please remove haskell-test-framework-th from unstable.

-- 
Ilias



Bug#1022040: Removal notice: obsolete

2023-01-21 Thread Ilias Tsitsimpis
Control: clone -1 -2
Control: reassign -2 ftp.debian.org
Control: retitle -2 RM: haskell-language-haskell-extract -- ROM; obsolete
Control: severity -2 normal

Dear FTP masters, please remove haskell-language-haskell-extract from
unstable.

-- 
Ilias



Bug#1026383: Removal notice: obsolete

2023-01-21 Thread Ilias Tsitsimpis
Control: clone -1 -2
Control: reassign -2 ftp.debian.org
Control: retitle -2 RM: haskell-simple-templates -- ROM; obsolete
Control: severity -2 normal

Dear FTP masters, please remove haskell-simple-templates from unstable.

-- 
Ilias



Bug#1026382: Removal notice: obsolete

2023-01-21 Thread Ilias Tsitsimpis
Control: clone -1 -2
Control: reassign -2 ftp.debian.org
Control: retitle -2 RM: haskell-simple -- ROM; obsolete
Control: severity -2 normal

Dear FTP masters, please remove haskell-simple from unstable.

-- 
Ilias



Bug#1022910: Removal notice: obsolete

2023-01-21 Thread Ilias Tsitsimpis
Control: clone -1 -2
Control: reassign -2 ftp.debian.org
Control: retitle -2 RM: haskell-regex-compat-tdfa -- ROM; obsolete
Control: severity -2 normal

Dear FTP masters, please remove haskell-regex-compat-tdfa from unstable.

-- 
Ilias



Bug#1026160: Removal notice: unused library

2023-01-21 Thread Ilias Tsitsimpis
Control: clone -1 -2
Control: reassign -2 ftp.debian.org
Control: retitle -2 RM: haskell-ekg-core -- ROM; obsolete
Control: severity -2 normal

Dear FTP masters, please remove haskell-ekg-core from unstable.

-- 
Ilias



Bug#1026161: Removal notice: obsolete

2023-01-21 Thread Ilias Tsitsimpis
Control: clone -1 -2
Control: reassign -2 ftp.debian.org
Control: retitle -2 RM: haskell-ekg-json -- ROM; obsolete
Control: severity -2 normal

Dear FTP masters, please remove haskell-ekg-json from unstable.

-- 
Ilias



Bug#1026158: Removal notice: obsolete

2023-01-21 Thread Ilias Tsitsimpis
Control: clone -1 -2
Control: reassign -2 ftp.debian.org
Control: retitle -2 RM: haskell-ekg -- ROM; obsolete
Control: severity -2 normal

Dear FTP masters, please remove haskell-ekg from unstable.

-- 
Ilias



Bug#1026383: Removal notice: obsolete

2022-12-19 Thread Ilias Tsitsimpis
Source: haskell-simple-templates
Version: 1.0.0-1
Severity: serious

I intend to remove the haskell-simple suite from Debian:

  * It FTBFS with latest aeson, no fix for more than 1 year (see
https://github.com/alevy/simple/issues/26)
  * Seems unmaintained: Home page doesn't work; Last upload more than 2
years ago
  * It's not part of the latest Stackage LTS

If you believe we should keep this package in Debian, please close this
bug report.

-- 
Ilias



Bug#1026382: Removal notice: obsolete

2022-12-19 Thread Ilias Tsitsimpis
Source: haskell-simple
Version: 1.0.0-1
Severity: serious

I intend to remove the haskell-simple-* suite from Debian:

  * It FTBFS with latest aeson, no fix for more than 1 year (see
https://github.com/alevy/simple/issues/26)
  * Seems unmaintained: Home page doesn't work; Last upload more than 2
years ago
  * It's not part of the latest Stackage LTS

If you believe we should keep this package in Debian, please close this
bug report.

-- 
Ilias



Bug#1022189: Removal notice: obsolete

2022-12-19 Thread Ilias Tsitsimpis
Control: clone -1 -2
Control: reassign -2 ftp.debian.org
Control: retitle -2 RM: haskell-product-isomorphic -- ROM; obsolete
Control: severity -2 normal

Dear FTP masters, please remove haskell-product-isomorphic from unstable.

-- 
Ilias



Bug#1022192: Removal notice: obsolete

2022-12-19 Thread Ilias Tsitsimpis
Control: clone -1 -2
Control: reassign -2 ftp.debian.org
Control: retitle -2 RM: haskell-relational-query -- ROM; obsolete
Control: severity -2 normal

Dear FTP masters, please remove haskell-relational-query from unstable.

-- 
Ilias



Bug#1022190: Removal notice: obsolete

2022-12-19 Thread Ilias Tsitsimpis
Control: clone -1 -2
Control: reassign -2 ftp.debian.org
Control: retitle -2 RM: haskell-persistable-record -- ROM; obsolete
Control: severity -2 normal

Dear FTP masters, please remove haskell-persistable-record from unstable.

-- 
Ilias



Bug#1026161: Removal notice: obsolete

2022-12-15 Thread Ilias Tsitsimpis
Source: haskell-ekg-json
Version: 0.1.0.6-7
Severity: serious

I intend to remove this package. It's a dependency of haskell-ekg, which
we plan on removing (see #1026158).

If you believe we should keep this package in Debian, please close this
bug report.

-- 
Ilias



Bug#1026160: Removal notice: unused library

2022-12-15 Thread Ilias Tsitsimpis
Source: haskell-ekg-core
Version: 0.1.1.7-2
Severity: serious

I intend to remove this package. It's a dependency of haskell-ekg, which
we plan on removing (see #1026158).

If you believe we should keep this package in Debian, please close this
bug report.

-- 
Ilias



Bug#1026158: Removal notice: obsolete

2022-12-15 Thread Ilias Tsitsimpis
Source: haskell-ekg
Version: 0.4.0.15-6
Severity: serious

I intend to remove this package:

  * It has no rev dependencies
  * The current version FTBFS
  * Seems unmaintained; Last upload more than 4 years ago
  * It's not part of the latest Stackage LTS

If you believe we should keep this package in Debian, please close this
bug report.

-- 
Ilias



Bug#1018030: Removal notice: obsolete

2022-12-15 Thread Ilias Tsitsimpis
Control: clone -1 -2
Control: reassign -2 ftp.debian.org
Control: retitle -2 RM: haskell-uri -- ROM; obsolete
Control: severity -2 normal

Dear FTP masters, please remove haskell-uri from unstable.

-- 
Ilias



Bug#1022920: Removal notice: obsolete

2022-12-15 Thread Ilias Tsitsimpis
Control: clone -1 -2
Control: reassign -2 ftp.debian.org
Control: retitle -2 RM: haskell-thyme -- ROM; obsolete
Control: severity -2 normal

Dear FTP masters, please remove haskell-thyme from unstable.

-- 
Ilias



Bug#1022918: Removal notice: obsolete

2022-12-15 Thread Ilias Tsitsimpis
Control: clone -1 -2
Control: reassign -2 ftp.debian.org
Control: retitle -2 RM: haskell-text-format -- ROM; obsolete
Control: severity -2 normal

Dear FTP masters, please remove haskell-text-format from unstable.

-- 
Ilias



Bug#1022913: Removal notice: obsolete

2022-12-15 Thread Ilias Tsitsimpis
Control: clone -1 -2
Control: reassign -2 ftp.debian.org
Control: retitle -2 RM: haskell-test-framework-th-prime -- ROM; obsolete
Control: severity -2 normal

Dear FTP masters, please remove haskell-test-framework-th-prime from
unstable.

-- 
Ilias



Bug#1022196: Removal notice: obsolete

2022-12-15 Thread Ilias Tsitsimpis
Control: clone -1 -2
Control: reassign -2 ftp.debian.org
Control: retitle -2 RM: haskell-relational-schemas -- ROM; obsolete
Control: severity -2 normal

Dear FTP masters, please remove haskell-relational-schemas from
unstable.

-- 
Ilias



Bug#1022194: Removal notice: obsolete

2022-12-15 Thread Ilias Tsitsimpis
Control: clone -1 -2
Control: reassign -2 ftp.debian.org
Control: retitle -2 RM: haskell-relational-query-hdbc -- ROM; obsolete
Control: severity -2 normal

Dear FTP masters, please remove haskell-relational-query-hdbc from
unstable.

-- 
Ilias



Bug#1022191: Removal notice: obsolete

2022-12-15 Thread Ilias Tsitsimpis
Control: clone -1 -2
Control: reassign -2 ftp.debian.org
Control: retitle -2 RM: haskell-persistable-types-hdbc-pg -- ROM; obsolete
Control: severity -2 normal

Dear FTP masters, please remove haskell-persistable-types-hdbc-pg from
unstable.

-- 
Ilias



Bug#1022195: Removal notice: obsolete

2022-12-15 Thread Ilias Tsitsimpis
Control: clone -1 -2
Control: reassign -2 ftp.debian.org
Control: retitle -2 RM: haskell-relational-record -- ROM; obsolete
Control: severity -2 normal

Dear FTP masters, please remove haskell-relational-record from unstable.

-- 
Ilias



Bug#1022223: Removal notice: obsolete

2022-12-15 Thread Ilias Tsitsimpis
Control: clone -1 -2
Control: reassign -2 ftp.debian.org
Control: retitle -2 RM: haskell-pipes-zlib -- ROM; obsolete
Control: severity -2 normal

Dear FTP masters, please remove haskell-pipes-zlib from unstable.

-- 
Ilias



Bug#1022908: Removal notice: obsolete

2022-12-15 Thread Ilias Tsitsimpis
Control: clone -1 -2
Control: reassign -2 ftp.debian.org
Control: retitle -2 RM: haskell-pipes-aeson -- ROM; obsolete
Control: severity -2 normal

Dear FTP masters, please remove haskell-pipes-aeson from unstable.

-- 
Ilias



Bug#1022906: Removal notice: obsolete

2022-12-15 Thread Ilias Tsitsimpis
Control: clone -1 -2
Control: reassign -2 ftp.debian.org
Control: retitle -2 RM: haskell-monad-unlift -- ROM; obsolete
Control: severity -2 normal

Dear FTP masters, please remove haskell-monad-unlift from unstable.

-- 
Ilias



Bug#1022905: Removal notice: obsolete

2022-12-15 Thread Ilias Tsitsimpis
Control: clone -1 -2
Control: reassign -2 ftp.debian.org
Control: retitle -2 RM: haskell-maths -- ROM; obsolete
Control: severity -2 normal

Dear FTP masters, please remove haskell-maths from unstable.

-- 
Ilias



Bug#1020782: Removal notice: obsolete

2022-12-15 Thread Ilias Tsitsimpis
Control: clone -1 -2
Control: reassign -2 ftp.debian.org
Control: retitle -2 RM: haskell-hashmap -- ROM; obsolete
Control: severity -2 normal

Dear FTP masters, please remove haskell-hashmap from unstable.

-- 
Ilias



Bug#1018051: Removal notice: obsolete

2022-12-15 Thread Ilias Tsitsimpis
Control: clone -1 -2
Control: reassign -2 ftp.debian.org
Control: retitle -2 RM: haskell-hsh -- ROM; obsolete
Control: severity -2 normal

Dear FTP masters, please remove haskell-hsh from unstable.

-- 
Ilias



Bug#1022901: Removal notice: obsolete

2022-12-15 Thread Ilias Tsitsimpis
Control: clone -1 -2
Control: reassign -2 ftp.debian.org
Control: retitle -2 RM: haskell-ghc-mtl -- ROM; obsolete
Control: severity -2 normal

Dear FTP masters, please remove haskell-ghc-mtl from unstable.

-- 
Ilias



Bug#1022053: Removal notice: obsolete

2022-12-15 Thread Ilias Tsitsimpis
Control: clone -1 -2
Control: reassign -2 ftp.debian.org
Control: retitle -2 RM: haskell-djinn-ghc -- ROM; obsolete
Control: severity -2 normal

Dear FTP masters, please remove haskell-djinn-ghc from unstable.

-- 
Ilias



Bug#1021070: Removal notice: obsolete

2022-12-15 Thread Ilias Tsitsimpis
Control: clone -1 -2
Control: reassign -2 ftp.debian.org
Control: retitle -2 RM: haskell-descriptive -- ROM; obsolete
Control: severity -2 normal

Dear FTP masters, please remove haskell-descriptive from unstable.

-- 
Ilias



Bug#1017011: Removal notice: obsolete

2022-12-15 Thread Ilias Tsitsimpis
Control: clone -1 -2
Control: reassign -2 ftp.debian.org
Control: retitle -2 RM: haskell-binary-tagged -- ROM; obsolete
Control: severity -2 normal

Dear FTP masters, please remove haskell-binary-tagged from unstable.

-- 
Ilias



Bug#1026136: Removal notice: obsolete

2022-12-15 Thread Ilias Tsitsimpis
Source: arbtt
Version: 0.11.1-1
Severity: serious

This package seems unmaintained. Is anyone from the Debian Haskell group
interested in this package? Updating it means that:

  * We have to package the tz Haskell library
  * We have to take care of https://bugs.debian.org/166

If no one is interested in maintaining this, I will request for
adoption, and if that fails as well, will remove this package.

-- 
Ilias



Bug#1023156: haskell-gi-gtk FTBFS on armel

2022-12-04 Thread Ilias Tsitsimpis
Control: severity -1 important

On Tue, Nov 01, 2022 at 10:17AM, Scott Talbert wrote:
> On Sun, 30 Oct 2022, Adrian Bunk wrote:
> 
> > haskell-gi-gtk has only once ever been built successfully on armel.
> > Unless someone has a better suggestion, my short-term Plan B would be
> > that I request the removal of haskell-gi-gtk and reverse dependencies
> > on armel.
> 
> I think that's probably a good plan.  I believe I may have reported this bug
> (or one similar to it) to ghc, but it didn't sound like it was something
> that was going to fixed quickly/easily.

I requested the removal of haskell-gi-gtk on armel.
https://bugs.debian.org/1025412

-- 
Ilias



Bug#1018197: Removal notice: obsolete

2022-11-23 Thread Ilias Tsitsimpis
Control: severity -1 important

Downgrading this, since git-annex depends on it (see #1022681).

-- 
Ilias



Bug#1018196: Removal notice: obsolete

2022-11-23 Thread Ilias Tsitsimpis
Control: severity -1 important

Downgrading this, since git-annex depends on it (see #1022681).

-- 
Ilias



Bug#1022681: haskell-clientsession build depends on haskell-cipher-aes and haskell-cprng-aes

2022-11-20 Thread Ilias Tsitsimpis
Hi Adrian, Sean,

On Sun, Nov 20, 2022 at 01:44AM, Adrian Bunk wrote:
> Ilias, this bug is the reason why your removal notices for 
> haskell-{cipher,cprng}-aes are about to kick git-annex out
> of bookworm.
> 
> To keep git-annex in bookworm, it's either applying one of the two 
> upstream MRs for haskell-clientsessionor postponing the removal notices
> for haskell-{cipher,cprng}-aes.

We can postpone the removal notices (I will downgrade them to Important)
and keep git-annex in bookworm. But I would really like to see this
fixed. haskell-clientsession is clearly unmaintained (last upstream
commit is from 2016, and they have ignored both PRs).

Sean, can you please ask the author of git-annex to either remove the
dependency on clientsession, or consider a take over of this package?

Best,

-- 
Ilias



Bug#1022920: Removal notice: obsolete

2022-10-27 Thread Ilias Tsitsimpis
Source: haskell-thyme
Version: 0.3.5.5-5
Severity: serious

I intend to remove this package:

  * It has no rev dependencies
  * The current version FTBFS
  * Seems unmaintained; Last upload more than 7 years ago
  * It's not part of the latest Stackage LTS

If you believe we should keep this package in Debian, please close this
bug report.

-- 
Ilias



Bug#1022918: Removal notice: obsolete

2022-10-27 Thread Ilias Tsitsimpis
Source: haskell-text-format
Version: 0.3.2-4
Severity: serious

I intend to remove this package:

  * It has no rev dependencies
  * The current version FTBFS
  * Seems unmaintained; Last upload more than 3 years ago
  * It's not part of the latest Stackage LTS

If you believe we should keep this package in Debian, please close this
bug report.

-- 
Ilias



Bug#1022914: Removal notice: obsolete

2022-10-27 Thread Ilias Tsitsimpis
Source: haskell-test-framework-th
Version: 0.2.4-12
Severity: serious

I intend to remove this package:

  * It has no rev dependencies
  * Seems unmaintained; Last upload more than 10 years ago
  * It's not part of the latest Stackage LTS
  * Depends on deprecated software (see #1022040)

If you believe we should keep this package in Debian, please close this
bug report.

-- 
Ilias



  1   2   3   >