From mle+hs at mega-nerd.com Sun Jul 14 22:28:22 2024 From: mle+hs at mega-nerd.com (Erik de Castro Lopo) Date: Mon, 15 Jul 2024 08:28:22 +1000 Subject: Issues with containers and vector on Github Message-ID: <20240715082822.5d67150e8b9136c38ec08c35@mega-nerd.com> Hi, I would like to bring you attention to ywo issues: https://github.com/haskell/vector/issues/496 https://github.com/haskell/containers/issues/1012 Both libraries list this mailing list as maintainers and the versions of both libraries on Github are seemingly behind the versions on Hackage. I am currently working on updating the `strict-containers` package to work with `ghc-9.10`, https://github.com/haskellari/strict-containers/issues/14#issuecomment-2227496213 but this package uses a script to pull `containers`, `unordered-containers` and `vector` from Github and then generate code from versions it has pull. However it uses git tags and git tags for the latest versions of the above two libraries is missing. I would very much appreciate it if someone could rectify this situation as soon as possible. Thanks, Erik -- ---------------------------------------------------------------------- Erik de Castro Lopo http://www.mega-nerd.com/ From david.feuer at gmail.com Sun Jul 14 22:30:12 2024 From: david.feuer at gmail.com (David Feuer) Date: Sun, 14 Jul 2024 18:30:12 -0400 Subject: Issues with containers and vector on Github In-Reply-To: <20240715082822.5d67150e8b9136c38ec08c35@mega-nerd.com> References: <20240715082822.5d67150e8b9136c38ec08c35@mega-nerd.com> Message-ID: Hmmm .... I'll look into that. On Sun, Jul 14, 2024, 6:28 PM Erik de Castro Lopo wrote: > Hi, > > I would like to bring you attention to ywo issues: > > https://github.com/haskell/vector/issues/496 > https://github.com/haskell/containers/issues/1012 > > Both libraries list this mailing list as maintainers and the versions > of both libraries on Github are seemingly behind the versions on > Hackage. > > I am currently working on updating the `strict-containers` package > to work with `ghc-9.10`, > > > https://github.com/haskellari/strict-containers/issues/14#issuecomment-2227496213 > > but this package uses a script to pull `containers`, `unordered-containers` > and `vector` from Github and then generate code from versions it has pull. > However it uses git tags and git tags for the latest versions of the > above two libraries is missing. > > I would very much appreciate it if someone could rectify this situation > as soon as possible. > > Thanks, > Erik > -- > ---------------------------------------------------------------------- > Erik de Castro Lopo > http://www.mega-nerd.com/ > _______________________________________________ > Libraries mailing list > Libraries at haskell.org > http://mail.haskell.org/cgi-bin/mailman/listinfo/libraries > -------------- next part -------------- An HTML attachment was scrubbed... URL: From alexey at kuleshevi.ch Mon Jul 15 14:49:45 2024 From: alexey at kuleshevi.ch (Alexey Kuleshevich) Date: Mon, 15 Jul 2024 14:49:45 +0000 Subject: Issues with containers and vector on Github In-Reply-To: <20240715082822.5d67150e8b9136c38ec08c35@mega-nerd.com> References: <20240715082822.5d67150e8b9136c38ec08c35@mega-nerd.com> Message-ID: Hi Erik, Starting with vector-0.13 we have two packages in the repository: * vector-stream - which takes care of the streaming functionality and not necessarily vector specific * vector - which is what the actual repo is about. So, in order to disambiguate package releases starting with `vector-0.13.0.0` we also include package names in the git tags. Here are both of the tags for both of the last versions: * https://github.com/haskell/vector/tree/vector-0.13.0.0 * https://github.com/haskell/vector/tree/vector-0.13.1.0 Sincerely, Alexey Kuleshevich On Sunday, July 14th, 2024 at 4:28 PM, Erik de Castro Lopo wrote: > > > Hi, > > I would like to bring you attention to ywo issues: > > https://github.com/haskell/vector/issues/496 > https://github.com/haskell/containers/issues/1012 > > Both libraries list this mailing list as maintainers and the versions > of both libraries on Github are seemingly behind the versions on > Hackage. > > I am currently working on updating the `strict-containers` package > to work with `ghc-9.10`, > > https://github.com/haskellari/strict-containers/issues/14#issuecomment-2227496213 > > but this package uses a script to pull `containers`, `unordered-containers` > and `vector` from Github and then generate code from versions it has pull. > However it uses git tags and git tags for the latest versions of the > above two libraries is missing. > > I would very much appreciate it if someone could rectify this situation > as soon as possible. > > Thanks, > Erik > -- > ---------------------------------------------------------------------- > Erik de Castro Lopo > http://www.mega-nerd.com/ > _______________________________________________ > Libraries mailing list > Libraries at haskell.org > http://mail.haskell.org/cgi-bin/mailman/listinfo/libraries From mle+hs at mega-nerd.com Tue Jul 16 04:57:38 2024 From: mle+hs at mega-nerd.com (Erik de Castro Lopo) Date: Tue, 16 Jul 2024 14:57:38 +1000 Subject: Issues with containers and vector on Github In-Reply-To: References: <20240715082822.5d67150e8b9136c38ec08c35@mega-nerd.com> Message-ID: <20240716145738.e3beb28ef62bcfe7d3463305@mega-nerd.com> Thanks Alexey, I now have `vector` sorted out in `strict-containers` and I am just waiting for `containers` before I can release a version of `strict-containers` that builds with `ghc-9.10`. Thanks again, Erik Alexey Kuleshevich wrote: > Hi Erik, > > Starting with vector-0.13 we have two packages in the repository: > > * vector-stream - which takes care of the streaming functionality and not necessarily > vector specific > vector specific > * vector - which is what the actual repo is about. > > So, in order to disambiguate package releases starting with `vector-0.13.0.0` we also > include package names in the git tags. Here are both of the tags for both of the last > versions: > > * https://github.com/haskell/vector/tree/vector-0.13.0.0 > * https://github.com/haskell/vector/tree/vector-0.13.1.0 > > Sincerely, > Alexey Kuleshevich > > > > On Sunday, July 14th, 2024 at 4:28 PM, Erik de Castro Lopo wrote: > > > > > > > Hi, > > > > I would like to bring you attention to ywo issues: > > > > https://github.com/haskell/vector/issues/496 > > https://github.com/haskell/containers/issues/1012 > > > > Both libraries list this mailing list as maintainers and the versions > > of both libraries on Github are seemingly behind the versions on > > Hackage. > > > > I am currently working on updating the `strict-containers` package > > to work with `ghc-9.10`, > > > > https://github.com/haskellari/strict-containers/issues/14#issuecomment-2227496213 > > > > but this package uses a script to pull `containers`, `unordered-containers` > > and `vector` from Github and then generate code from versions it has pull. > > However it uses git tags and git tags for the latest versions of the > > above two libraries is missing. > > > > I would very much appreciate it if someone could rectify this situation > > as soon as possible. > > > > Thanks, > > Erik > > -- > > ---------------------------------------------------------------------- > > Erik de Castro Lopo > > http://www.mega-nerd.com/ > > _______________________________________________ > > Libraries mailing list > > Libraries at haskell.org > > http://mail.haskell.org/cgi-bin/mailman/listinfo/libraries > -- ---------------------------------------------------------------------- Erik de Castro Lopo http://www.mega-nerd.com/ From mle+hs at mega-nerd.com Thu Jul 18 22:17:51 2024 From: mle+hs at mega-nerd.com (Erik de Castro Lopo) Date: Fri, 19 Jul 2024 08:17:51 +1000 Subject: Issues with containers and vector on Github In-Reply-To: References: <20240715082822.5d67150e8b9136c38ec08c35@mega-nerd.com> Message-ID: <20240719081751.307831e19d4d3b7dcee13945@mega-nerd.com> Hi David, Any update on this? THanks, Erik David Feuer wrote: > Hmmm .... I'll look into that. > > On Sun, Jul 14, 2024, 6:28 PM Erik de Castro Lopo > wrote: > > > Hi, > > > > I would like to bring you attention to ywo issues: > > > > https://github.com/haskell/vector/issues/496 > > https://github.com/haskell/containers/issues/1012 > > > > Both libraries list this mailing list as maintainers and the versions > > of both libraries on Github are seemingly behind the versions on > > Hackage. > > > > I am currently working on updating the `strict-containers` package > > to work with `ghc-9.10`, > > > > > > https://github.com/haskellari/strict-containers/issues/14#issuecomment-2227496213 > > > > but this package uses a script to pull `containers`, `unordered-containers` > > and `vector` from Github and then generate code from versions it has pull. > > However it uses git tags and git tags for the latest versions of the > > above two libraries is missing. > > > > I would very much appreciate it if someone could rectify this situation > > as soon as possible. > > > > Thanks, > > Erik > > -- > > ---------------------------------------------------------------------- > > Erik de Castro Lopo > > http://www.mega-nerd.com/ > > _______________________________________________ > > Libraries mailing list > > Libraries at haskell.org > > http://mail.haskell.org/cgi-bin/mailman/listinfo/libraries > > -- ---------------------------------------------------------------------- Erik de Castro Lopo http://www.mega-nerd.com/ From david.feuer at gmail.com Thu Jul 18 22:57:52 2024 From: david.feuer at gmail.com (David Feuer) Date: Thu, 18 Jul 2024 18:57:52 -0400 Subject: Issues with containers and vector on Github In-Reply-To: <20240719081751.307831e19d4d3b7dcee13945@mega-nerd.com> References: <20240715082822.5d67150e8b9136c38ec08c35@mega-nerd.com> <20240719081751.307831e19d4d3b7dcee13945@mega-nerd.com> Message-ID: I should be able to do it tonight. Got tied up with some other things. On Thu, Jul 18, 2024, 6:17 PM Erik de Castro Lopo wrote: > Hi David, > > Any update on this? > > THanks, > Erik > > David Feuer wrote: > > > Hmmm .... I'll look into that. > > > > On Sun, Jul 14, 2024, 6:28 PM Erik de Castro Lopo > > wrote: > > > > > Hi, > > > > > > I would like to bring you attention to ywo issues: > > > > > > https://github.com/haskell/vector/issues/496 > > > https://github.com/haskell/containers/issues/1012 > > > > > > Both libraries list this mailing list as maintainers and the versions > > > of both libraries on Github are seemingly behind the versions on > > > Hackage. > > > > > > I am currently working on updating the `strict-containers` package > > > to work with `ghc-9.10`, > > > > > > > > > > https://github.com/haskellari/strict-containers/issues/14#issuecomment-2227496213 > > > > > > but this package uses a script to pull `containers`, > `unordered-containers` > > > and `vector` from Github and then generate code from versions it has > pull. > > > However it uses git tags and git tags for the latest versions of the > > > above two libraries is missing. > > > > > > I would very much appreciate it if someone could rectify this situation > > > as soon as possible. > > > > > > Thanks, > > > Erik > > > -- > > > ---------------------------------------------------------------------- > > > Erik de Castro Lopo > > > http://www.mega-nerd.com/ > > > _______________________________________________ > > > Libraries mailing list > > > Libraries at haskell.org > > > http://mail.haskell.org/cgi-bin/mailman/listinfo/libraries > > > > > > -- > ---------------------------------------------------------------------- > Erik de Castro Lopo > http://www.mega-nerd.com/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From david.feuer at gmail.com Fri Jul 19 06:17:04 2024 From: david.feuer at gmail.com (David Feuer) Date: Fri, 19 Jul 2024 02:17:04 -0400 Subject: Issues with containers and vector on Github In-Reply-To: <20240719081751.307831e19d4d3b7dcee13945@mega-nerd.com> References: <20240715082822.5d67150e8b9136c38ec08c35@mega-nerd.com> <20240719081751.307831e19d4d3b7dcee13945@mega-nerd.com> Message-ID: I don't see a relevant branch on GitHub, but take a look at this tag: https://github.com/haskell/containers/tree/v0.7 The last few commits there should be everything relevant that needs to be harmonized. On Thu, Jul 18, 2024, 6:17 PM Erik de Castro Lopo wrote: > Hi David, > > Any update on this? > > THanks, > Erik > > David Feuer wrote: > > > Hmmm .... I'll look into that. > > > > On Sun, Jul 14, 2024, 6:28 PM Erik de Castro Lopo > > wrote: > > > > > Hi, > > > > > > I would like to bring you attention to ywo issues: > > > > > > https://github.com/haskell/vector/issues/496 > > > https://github.com/haskell/containers/issues/1012 > > > > > > Both libraries list this mailing list as maintainers and the versions > > > of both libraries on Github are seemingly behind the versions on > > > Hackage. > > > > > > I am currently working on updating the `strict-containers` package > > > to work with `ghc-9.10`, > > > > > > > > > > https://github.com/haskellari/strict-containers/issues/14#issuecomment-2227496213 > > > > > > but this package uses a script to pull `containers`, > `unordered-containers` > > > and `vector` from Github and then generate code from versions it has > pull. > > > However it uses git tags and git tags for the latest versions of the > > > above two libraries is missing. > > > > > > I would very much appreciate it if someone could rectify this situation > > > as soon as possible. > > > > > > Thanks, > > > Erik > > > -- > > > ---------------------------------------------------------------------- > > > Erik de Castro Lopo > > > http://www.mega-nerd.com/ > > > _______________________________________________ > > > Libraries mailing list > > > Libraries at haskell.org > > > http://mail.haskell.org/cgi-bin/mailman/listinfo/libraries > > > > > > -- > ---------------------------------------------------------------------- > Erik de Castro Lopo > http://www.mega-nerd.com/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From mle+hs at mega-nerd.com Sun Jul 28 23:21:24 2024 From: mle+hs at mega-nerd.com (Erik de Castro Lopo) Date: Mon, 29 Jul 2024 09:21:24 +1000 Subject: Issues with containers and vector on Github In-Reply-To: References: <20240715082822.5d67150e8b9136c38ec08c35@mega-nerd.com> <20240719081751.307831e19d4d3b7dcee13945@mega-nerd.com> Message-ID: <20240729092124.ed25bb47225051d84015d15e@mega-nerd.com> Hi David, I just sat down to look at this today and saw that you seem to have done this over the weekend in commit 8ede1fce858db46c48e8c6f7fd1977b78025b75c. However, there is still no 0.7 tag and the script used to update `strict-containers` depends on the tag. Cheers, Erik David Feuer wrote: > I don't see a relevant branch on GitHub, but take a look at this tag: > https://github.com/haskell/containers/tree/v0.7 > The last few commits there should be everything relevant that needs to be > harmonized. > > > On Thu, Jul 18, 2024, 6:17 PM Erik de Castro Lopo > wrote: > > > Hi David, > > > > Any update on this? > > > > THanks, > > Erik > > > > David Feuer wrote: > > > > > Hmmm .... I'll look into that. > > > > > > On Sun, Jul 14, 2024, 6:28 PM Erik de Castro Lopo > > > wrote: > > > > > > > Hi, > > > > > > > > I would like to bring you attention to ywo issues: > > > > > > > > https://github.com/haskell/vector/issues/496 > > > > https://github.com/haskell/containers/issues/1012 > > > > > > > > Both libraries list this mailing list as maintainers and the versions > > > > of both libraries on Github are seemingly behind the versions on > > > > Hackage. > > > > > > > > I am currently working on updating the `strict-containers` package > > > > to work with `ghc-9.10`, > > > > > > > > > > > > > > https://github.com/haskellari/strict-containers/issues/14#issuecomment-2227496213 > > > > > > > > but this package uses a script to pull `containers`, > > `unordered-containers` > > > > and `vector` from Github and then generate code from versions it has > > pull. > > > > However it uses git tags and git tags for the latest versions of the > > > > above two libraries is missing. > > > > > > > > I would very much appreciate it if someone could rectify this situation > > > > as soon as possible. > > > > > > > > Thanks, > > > > Erik > > > > -- > > > > ---------------------------------------------------------------------- > > > > Erik de Castro Lopo > > > > http://www.mega-nerd.com/ > > > > _______________________________________________ > > > > Libraries mailing list > > > > Libraries at haskell.org > > > > http://mail.haskell.org/cgi-bin/mailman/listinfo/libraries > > > > > > > > > > -- > > ---------------------------------------------------------------------- > > Erik de Castro Lopo > > http://www.mega-nerd.com/ > > -- ---------------------------------------------------------------------- Erik de Castro Lopo http://www.mega-nerd.com/ From david.feuer at gmail.com Sun Jul 28 23:24:29 2024 From: david.feuer at gmail.com (David Feuer) Date: Sun, 28 Jul 2024 19:24:29 -0400 Subject: Issues with containers and vector on Github In-Reply-To: <20240729092124.ed25bb47225051d84015d15e@mega-nerd.com> References: <20240715082822.5d67150e8b9136c38ec08c35@mega-nerd.com> <20240719081751.307831e19d4d3b7dcee13945@mega-nerd.com> <20240729092124.ed25bb47225051d84015d15e@mega-nerd.com> Message-ID: I didn't do it; Soumik did. I can try to look, but things are still crazy here. On Sun, Jul 28, 2024, 7:21 PM Erik de Castro Lopo wrote: > Hi David, > > I just sat down to look at this today and saw that you seem to have done > this over the weekend in commit 8ede1fce858db46c48e8c6f7fd1977b78025b75c. > > However, there is still no 0.7 tag and the script used to update > `strict-containers` depends on the tag. > > Cheers, > Erik > > David Feuer wrote: > > > I don't see a relevant branch on GitHub, but take a look at this tag: > > https://github.com/haskell/containers/tree/v0.7 > > The last few commits there should be everything relevant that needs to be > > harmonized. > > > > > > On Thu, Jul 18, 2024, 6:17 PM Erik de Castro Lopo > > wrote: > > > > > Hi David, > > > > > > Any update on this? > > > > > > THanks, > > > Erik > > > > > > David Feuer wrote: > > > > > > > Hmmm .... I'll look into that. > > > > > > > > On Sun, Jul 14, 2024, 6:28 PM Erik de Castro Lopo < > mle+hs at mega-nerd.com> > > > > wrote: > > > > > > > > > Hi, > > > > > > > > > > I would like to bring you attention to ywo issues: > > > > > > > > > > https://github.com/haskell/vector/issues/496 > > > > > https://github.com/haskell/containers/issues/1012 > > > > > > > > > > Both libraries list this mailing list as maintainers and the > versions > > > > > of both libraries on Github are seemingly behind the versions on > > > > > Hackage. > > > > > > > > > > I am currently working on updating the `strict-containers` package > > > > > to work with `ghc-9.10`, > > > > > > > > > > > > > > > > > > > https://github.com/haskellari/strict-containers/issues/14#issuecomment-2227496213 > > > > > > > > > > but this package uses a script to pull `containers`, > > > `unordered-containers` > > > > > and `vector` from Github and then generate code from versions it > has > > > pull. > > > > > However it uses git tags and git tags for the latest versions of > the > > > > > above two libraries is missing. > > > > > > > > > > I would very much appreciate it if someone could rectify this > situation > > > > > as soon as possible. > > > > > > > > > > Thanks, > > > > > Erik > > > > > -- > > > > > > ---------------------------------------------------------------------- > > > > > Erik de Castro Lopo > > > > > http://www.mega-nerd.com/ > > > > > _______________________________________________ > > > > > Libraries mailing list > > > > > Libraries at haskell.org > > > > > http://mail.haskell.org/cgi-bin/mailman/listinfo/libraries > > > > > > > > > > > > > > -- > > > ---------------------------------------------------------------------- > > > Erik de Castro Lopo > > > http://www.mega-nerd.com/ > > > > > > -- > ---------------------------------------------------------------------- > Erik de Castro Lopo > http://www.mega-nerd.com/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From mle+hs at mega-nerd.com Sun Jul 28 23:37:31 2024 From: mle+hs at mega-nerd.com (Erik de Castro Lopo) Date: Mon, 29 Jul 2024 09:37:31 +1000 Subject: Issues with containers and vector on Github In-Reply-To: References: <20240715082822.5d67150e8b9136c38ec08c35@mega-nerd.com> <20240719081751.307831e19d4d3b7dcee13945@mega-nerd.com> <20240729092124.ed25bb47225051d84015d15e@mega-nerd.com> Message-ID: <20240729093731.f48a337eb877579acfc0deb0@mega-nerd.com> Hi, Looking at this some more, I realize that the Git history is now somewhat garbled. I am going to try to compare the versions at git commits in the history with the 0.7 tarball on Hackage. :crossed_fingers: Erik David Feuer wrote: > I didn't do it; Soumik did. I can try to look, but things are still crazy > here. > > On Sun, Jul 28, 2024, 7:21 PM Erik de Castro Lopo > wrote: > > > Hi David, > > > > I just sat down to look at this today and saw that you seem to have done > > this over the weekend in commit 8ede1fce858db46c48e8c6f7fd1977b78025b75c. > > > > However, there is still no 0.7 tag and the script used to update > > `strict-containers` depends on the tag. > > > > Cheers, > > Erik > > > > David Feuer wrote: > > > > > I don't see a relevant branch on GitHub, but take a look at this tag: > > > https://github.com/haskell/containers/tree/v0.7 > > > The last few commits there should be everything relevant that needs to be > > > harmonized. > > > > > > > > > On Thu, Jul 18, 2024, 6:17 PM Erik de Castro Lopo > > > wrote: > > > > > > > Hi David, > > > > > > > > Any update on this? > > > > > > > > THanks, > > > > Erik > > > > > > > > David Feuer wrote: > > > > > > > > > Hmmm .... I'll look into that. > > > > > > > > > > On Sun, Jul 14, 2024, 6:28 PM Erik de Castro Lopo < > > mle+hs at mega-nerd.com> > > > > > wrote: > > > > > > > > > > > Hi, > > > > > > > > > > > > I would like to bring you attention to ywo issues: > > > > > > > > > > > > https://github.com/haskell/vector/issues/496 > > > > > > https://github.com/haskell/containers/issues/1012 > > > > > > > > > > > > Both libraries list this mailing list as maintainers and the > > versions > > > > > > of both libraries on Github are seemingly behind the versions on > > > > > > Hackage. > > > > > > > > > > > > I am currently working on updating the `strict-containers` package > > > > > > to work with `ghc-9.10`, > > > > > > > > > > > > > > > > > > > > > > > > https://github.com/haskellari/strict-containers/issues/14#issuecomment-2227496213 > > > > > > > > > > > > but this package uses a script to pull `containers`, > > > > `unordered-containers` > > > > > > and `vector` from Github and then generate code from versions it > > has > > > > pull. > > > > > > However it uses git tags and git tags for the latest versions of > > the > > > > > > above two libraries is missing. > > > > > > > > > > > > I would very much appreciate it if someone could rectify this > > situation > > > > > > as soon as possible. > > > > > > > > > > > > Thanks, > > > > > > Erik > > > > > > -- > > > > > > > > ---------------------------------------------------------------------- > > > > > > Erik de Castro Lopo > > > > > > http://www.mega-nerd.com/ > > > > > > _______________________________________________ > > > > > > Libraries mailing list > > > > > > Libraries at haskell.org > > > > > > http://mail.haskell.org/cgi-bin/mailman/listinfo/libraries > > > > > > > > > > > > > > > > > > -- > > > > ---------------------------------------------------------------------- > > > > Erik de Castro Lopo > > > > http://www.mega-nerd.com/ > > > > > > > > > > -- > > ---------------------------------------------------------------------- > > Erik de Castro Lopo > > http://www.mega-nerd.com/ > > -- ---------------------------------------------------------------------- Erik de Castro Lopo http://www.mega-nerd.com/ From mle+hs at mega-nerd.com Sun Jul 28 23:53:38 2024 From: mle+hs at mega-nerd.com (Erik de Castro Lopo) Date: Mon, 29 Jul 2024 09:53:38 +1000 Subject: Issues with containers and vector on Github In-Reply-To: <20240729093731.f48a337eb877579acfc0deb0@mega-nerd.com> References: <20240715082822.5d67150e8b9136c38ec08c35@mega-nerd.com> <20240719081751.307831e19d4d3b7dcee13945@mega-nerd.com> <20240729092124.ed25bb47225051d84015d15e@mega-nerd.com> <20240729093731.f48a337eb877579acfc0deb0@mega-nerd.com> Message-ID: <20240729095338.36b329b89467a24294e5ae79@mega-nerd.com> Hi, This commit: commit f5d0b13251291c3bd1ae396f3e6c8b0b9eaf58b0 (HEAD -> erikd/test-version) Author: David Feuer Date: Wed Sep 27 08:12:31 2023 -0400 Contains the `containers/src` tree which is only one line different from the release tarball on Hackage. The only difference is that the Git tree has an extra markdown file. Would be highly appreciative of a tag being added to this commit. Thanks, Erik Erik de Castro Lopo wrote: > Hi, > > Looking at this some more, I realize that the Git history is now somewhat > garbled. > > I am going to try to compare the versions at git commits in the history > with the 0.7 tarball on Hackage. :crossed_fingers: > > Erik > > David Feuer wrote: > > > I didn't do it; Soumik did. I can try to look, but things are still crazy > > here. > > > > On Sun, Jul 28, 2024, 7:21 PM Erik de Castro Lopo > > wrote: > > > > > Hi David, > > > > > > I just sat down to look at this today and saw that you seem to have done > > > this over the weekend in commit 8ede1fce858db46c48e8c6f7fd1977b78025b75c. > > > > > > However, there is still no 0.7 tag and the script used to update > > > `strict-containers` depends on the tag. > > > > > > Cheers, > > > Erik > > > > > > David Feuer wrote: > > > > > > > I don't see a relevant branch on GitHub, but take a look at this tag: > > > > https://github.com/haskell/containers/tree/v0.7 > > > > The last few commits there should be everything relevant that needs to be > > > > harmonized. > > > > > > > > > > > > On Thu, Jul 18, 2024, 6:17 PM Erik de Castro Lopo > > > > wrote: > > > > > > > > > Hi David, > > > > > > > > > > Any update on this? > > > > > > > > > > THanks, > > > > > Erik > > > > > > > > > > David Feuer wrote: > > > > > > > > > > > Hmmm .... I'll look into that. > > > > > > > > > > > > On Sun, Jul 14, 2024, 6:28 PM Erik de Castro Lopo < > > > mle+hs at mega-nerd.com> > > > > > > wrote: > > > > > > > > > > > > > Hi, > > > > > > > > > > > > > > I would like to bring you attention to ywo issues: > > > > > > > > > > > > > > https://github.com/haskell/vector/issues/496 > > > > > > > https://github.com/haskell/containers/issues/1012 > > > > > > > > > > > > > > Both libraries list this mailing list as maintainers and the > > > versions > > > > > > > of both libraries on Github are seemingly behind the versions on > > > > > > > Hackage. > > > > > > > > > > > > > > I am currently working on updating the `strict-containers` package > > > > > > > to work with `ghc-9.10`, > > > > > > > > > > > > > > > > > > > > > > > > > > > > > https://github.com/haskellari/strict-containers/issues/14#issuecomment-2227496213 > > > > > > > > > > > > > > but this package uses a script to pull `containers`, > > > > > `unordered-containers` > > > > > > > and `vector` from Github and then generate code from versions it > > > has > > > > > pull. > > > > > > > However it uses git tags and git tags for the latest versions of > > > the > > > > > > > above two libraries is missing. > > > > > > > > > > > > > > I would very much appreciate it if someone could rectify this > > > situation > > > > > > > as soon as possible. > > > > > > > > > > > > > > Thanks, > > > > > > > Erik > > > > > > > -- > > > > > > > > > > ---------------------------------------------------------------------- > > > > > > > Erik de Castro Lopo > > > > > > > http://www.mega-nerd.com/ > > > > > > > _______________________________________________ > > > > > > > Libraries mailing list > > > > > > > Libraries at haskell.org > > > > > > > http://mail.haskell.org/cgi-bin/mailman/listinfo/libraries > > > > > > > > > > > > > > > > > > > > > > -- > > > > > ---------------------------------------------------------------------- > > > > > Erik de Castro Lopo > > > > > http://www.mega-nerd.com/ > > > > > > > > > > > > > > -- > > > ---------------------------------------------------------------------- > > > Erik de Castro Lopo > > > http://www.mega-nerd.com/ > > > > > > -- > ---------------------------------------------------------------------- > Erik de Castro Lopo > http://www.mega-nerd.com/ > _______________________________________________ > Libraries mailing list > Libraries at haskell.org > http://mail.haskell.org/cgi-bin/mailman/listinfo/libraries -- ---------------------------------------------------------------------- Erik de Castro Lopo http://www.mega-nerd.com/ From david.feuer at gmail.com Mon Jul 29 00:08:56 2024 From: david.feuer at gmail.com (David Feuer) Date: Sun, 28 Jul 2024 20:08:56 -0400 Subject: Issues with containers and vector on Github In-Reply-To: <20240729095338.36b329b89467a24294e5ae79@mega-nerd.com> References: <20240715082822.5d67150e8b9136c38ec08c35@mega-nerd.com> <20240719081751.307831e19d4d3b7dcee13945@mega-nerd.com> <20240729092124.ed25bb47225051d84015d15e@mega-nerd.com> <20240729093731.f48a337eb877579acfc0deb0@mega-nerd.com> <20240729095338.36b329b89467a24294e5ae79@mega-nerd.com> Message-ID: Email (to the libraries list no less) is a terrible way to discuss this. Please use the GitHub issue tracker. On Sun, Jul 28, 2024, 7:53 PM Erik de Castro Lopo wrote: > Hi, > > This commit: > > commit f5d0b13251291c3bd1ae396f3e6c8b0b9eaf58b0 (HEAD -> > erikd/test-version) > Author: David Feuer > Date: Wed Sep 27 08:12:31 2023 -0400 > > Contains the `containers/src` tree which is only one line different from > the release tarball on Hackage. The only difference is that the Git > tree has an extra markdown file. > > Would be highly appreciative of a tag being added to this commit. > > Thanks, > Erik > > Erik de Castro Lopo wrote: > > > Hi, > > > > Looking at this some more, I realize that the Git history is now somewhat > > garbled. > > > > I am going to try to compare the versions at git commits in the history > > with the 0.7 tarball on Hackage. :crossed_fingers: > > > > Erik > > > > David Feuer wrote: > > > > > I didn't do it; Soumik did. I can try to look, but things are still > crazy > > > here. > > > > > > On Sun, Jul 28, 2024, 7:21 PM Erik de Castro Lopo < > mle+hs at mega-nerd.com> > > > wrote: > > > > > > > Hi David, > > > > > > > > I just sat down to look at this today and saw that you seem to have > done > > > > this over the weekend in commit > 8ede1fce858db46c48e8c6f7fd1977b78025b75c. > > > > > > > > However, there is still no 0.7 tag and the script used to update > > > > `strict-containers` depends on the tag. > > > > > > > > Cheers, > > > > Erik > > > > > > > > David Feuer wrote: > > > > > > > > > I don't see a relevant branch on GitHub, but take a look at this > tag: > > > > > https://github.com/haskell/containers/tree/v0.7 > > > > > The last few commits there should be everything relevant that > needs to be > > > > > harmonized. > > > > > > > > > > > > > > > On Thu, Jul 18, 2024, 6:17 PM Erik de Castro Lopo < > mle+hs at mega-nerd.com> > > > > > wrote: > > > > > > > > > > > Hi David, > > > > > > > > > > > > Any update on this? > > > > > > > > > > > > THanks, > > > > > > Erik > > > > > > > > > > > > David Feuer wrote: > > > > > > > > > > > > > Hmmm .... I'll look into that. > > > > > > > > > > > > > > On Sun, Jul 14, 2024, 6:28 PM Erik de Castro Lopo < > > > > mle+hs at mega-nerd.com> > > > > > > > wrote: > > > > > > > > > > > > > > > Hi, > > > > > > > > > > > > > > > > I would like to bring you attention to ywo issues: > > > > > > > > > > > > > > > > https://github.com/haskell/vector/issues/496 > > > > > > > > https://github.com/haskell/containers/issues/1012 > > > > > > > > > > > > > > > > Both libraries list this mailing list as maintainers and the > > > > versions > > > > > > > > of both libraries on Github are seemingly behind the > versions on > > > > > > > > Hackage. > > > > > > > > > > > > > > > > I am currently working on updating the `strict-containers` > package > > > > > > > > to work with `ghc-9.10`, > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > https://github.com/haskellari/strict-containers/issues/14#issuecomment-2227496213 > > > > > > > > > > > > > > > > but this package uses a script to pull `containers`, > > > > > > `unordered-containers` > > > > > > > > and `vector` from Github and then generate code from > versions it > > > > has > > > > > > pull. > > > > > > > > However it uses git tags and git tags for the latest > versions of > > > > the > > > > > > > > above two libraries is missing. > > > > > > > > > > > > > > > > I would very much appreciate it if someone could rectify this > > > > situation > > > > > > > > as soon as possible. > > > > > > > > > > > > > > > > Thanks, > > > > > > > > Erik > > > > > > > > -- > > > > > > > > > > > > > ---------------------------------------------------------------------- > > > > > > > > Erik de Castro Lopo > > > > > > > > http://www.mega-nerd.com/ > > > > > > > > _______________________________________________ > > > > > > > > Libraries mailing list > > > > > > > > Libraries at haskell.org > > > > > > > > http://mail.haskell.org/cgi-bin/mailman/listinfo/libraries > > > > > > > > > > > > > > > > > > > > > > > > > > -- > > > > > > > ---------------------------------------------------------------------- > > > > > > Erik de Castro Lopo > > > > > > http://www.mega-nerd.com/ > > > > > > > > > > > > > > > > > > -- > > > > > ---------------------------------------------------------------------- > > > > Erik de Castro Lopo > > > > http://www.mega-nerd.com/ > > > > > > > > > > -- > > ---------------------------------------------------------------------- > > Erik de Castro Lopo > > http://www.mega-nerd.com/ > > _______________________________________________ > > Libraries mailing list > > Libraries at haskell.org > > http://mail.haskell.org/cgi-bin/mailman/listinfo/libraries > > > -- > ---------------------------------------------------------------------- > Erik de Castro Lopo > http://www.mega-nerd.com/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From mle+hs at mega-nerd.com Mon Jul 29 00:20:53 2024 From: mle+hs at mega-nerd.com (Erik de Castro Lopo) Date: Mon, 29 Jul 2024 10:20:53 +1000 Subject: Issues with containers and vector on Github In-Reply-To: <20240729095338.36b329b89467a24294e5ae79@mega-nerd.com> References: <20240715082822.5d67150e8b9136c38ec08c35@mega-nerd.com> <20240719081751.307831e19d4d3b7dcee13945@mega-nerd.com> <20240729092124.ed25bb47225051d84015d15e@mega-nerd.com> <20240729093731.f48a337eb877579acfc0deb0@mega-nerd.com> <20240729095338.36b329b89467a24294e5ae79@mega-nerd.com> Message-ID: <20240729102053.a5b194a6eb22f87a5fb9bbfc@mega-nerd.com> Hi, Unfortunately, the repo at the below commit does not build with `ghc-9.10.1`. The changes required are: ``` diff --git a/containers-tests/containers-tests.cabal b/containers-tests/containers-tests.cabal index 5d3ea2b8..b58374e5 100644 --- a/containers-tests/containers-tests.cabal +++ b/containers-tests/containers-tests.cabal @@ -37,7 +37,7 @@ common deps build-depends: array >=0.4.0.0 , base >=4.10 && <5 - , deepseq >=1.2 && <1.5 + , deepseq >=1.2 && <1.6 , template-haskell common test-deps @@ -54,7 +54,7 @@ common benchmark-deps import: deps build-depends: containers-tests - , deepseq >=1.1.0.0 && <1.5 + , deepseq >=1.1.0.0 && <1.6 , tasty-bench >=0.3.1 && <0.4 -- Copy of containers library, ``` Erik Erik de Castro Lopo wrote: > Hi, > > This commit: > > commit f5d0b13251291c3bd1ae396f3e6c8b0b9eaf58b0 (HEAD -> erikd/test-version) > Author: David Feuer > Date: Wed Sep 27 08:12:31 2023 -0400 > > Contains the `containers/src` tree which is only one line different from > the release tarball on Hackage. The only difference is that the Git > tree has an extra markdown file. > > Would be highly appreciative of a tag being added to this commit. > > Thanks, > Erik > > Erik de Castro Lopo wrote: > > > Hi, > > > > Looking at this some more, I realize that the Git history is now somewhat > > garbled. > > > > I am going to try to compare the versions at git commits in the history > > with the 0.7 tarball on Hackage. :crossed_fingers: > > > > Erik > > > > David Feuer wrote: > > > > > I didn't do it; Soumik did. I can try to look, but things are still crazy > > > here. > > > > > > On Sun, Jul 28, 2024, 7:21 PM Erik de Castro Lopo > > > wrote: > > > > > > > Hi David, > > > > > > > > I just sat down to look at this today and saw that you seem to have done > > > > this over the weekend in commit 8ede1fce858db46c48e8c6f7fd1977b78025b75c. > > > > > > > > However, there is still no 0.7 tag and the script used to update > > > > `strict-containers` depends on the tag. > > > > > > > > Cheers, > > > > Erik > > > > > > > > David Feuer wrote: > > > > > > > > > I don't see a relevant branch on GitHub, but take a look at this tag: > > > > > https://github.com/haskell/containers/tree/v0.7 > > > > > The last few commits there should be everything relevant that needs to be > > > > > harmonized. > > > > > > > > > > > > > > > On Thu, Jul 18, 2024, 6:17 PM Erik de Castro Lopo > > > > > wrote: > > > > > > > > > > > Hi David, > > > > > > > > > > > > Any update on this? > > > > > > > > > > > > THanks, > > > > > > Erik > > > > > > > > > > > > David Feuer wrote: > > > > > > > > > > > > > Hmmm .... I'll look into that. > > > > > > > > > > > > > > On Sun, Jul 14, 2024, 6:28 PM Erik de Castro Lopo < > > > > mle+hs at mega-nerd.com> > > > > > > > wrote: > > > > > > > > > > > > > > > Hi, > > > > > > > > > > > > > > > > I would like to bring you attention to ywo issues: > > > > > > > > > > > > > > > > https://github.com/haskell/vector/issues/496 > > > > > > > > https://github.com/haskell/containers/issues/1012 > > > > > > > > > > > > > > > > Both libraries list this mailing list as maintainers and the > > > > versions > > > > > > > > of both libraries on Github are seemingly behind the versions on > > > > > > > > Hackage. > > > > > > > > > > > > > > > > I am currently working on updating the `strict-containers` package > > > > > > > > to work with `ghc-9.10`, > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > https://github.com/haskellari/strict-containers/issues/14#issuecomment-2227496213 > > > > > > > > > > > > > > > > but this package uses a script to pull `containers`, > > > > > > `unordered-containers` > > > > > > > > and `vector` from Github and then generate code from versions it > > > > has > > > > > > pull. > > > > > > > > However it uses git tags and git tags for the latest versions of > > > > the > > > > > > > > above two libraries is missing. > > > > > > > > > > > > > > > > I would very much appreciate it if someone could rectify this > > > > situation > > > > > > > > as soon as possible. > > > > > > > > > > > > > > > > Thanks, > > > > > > > > Erik > > > > > > > > -- > > > > > > > > > > > > ---------------------------------------------------------------------- > > > > > > > > Erik de Castro Lopo > > > > > > > > http://www.mega-nerd.com/ > > > > > > > > _______________________________________________ > > > > > > > > Libraries mailing list > > > > > > > > Libraries at haskell.org > > > > > > > > http://mail.haskell.org/cgi-bin/mailman/listinfo/libraries > > > > > > > > > > > > > > > > > > > > > > > > > > -- > > > > > > ---------------------------------------------------------------------- > > > > > > Erik de Castro Lopo > > > > > > http://www.mega-nerd.com/ > > > > > > > > > > > > > > > > > > -- > > > > ---------------------------------------------------------------------- > > > > Erik de Castro Lopo > > > > http://www.mega-nerd.com/ > > > > > > > > > > -- > > ---------------------------------------------------------------------- > > Erik de Castro Lopo > > http://www.mega-nerd.com/ > > _______________________________________________ > > Libraries mailing list > > Libraries at haskell.org > > http://mail.haskell.org/cgi-bin/mailman/listinfo/libraries > > > -- > ---------------------------------------------------------------------- > Erik de Castro Lopo > http://www.mega-nerd.com/ > _______________________________________________ > Libraries mailing list > Libraries at haskell.org > http://mail.haskell.org/cgi-bin/mailman/listinfo/libraries -- ---------------------------------------------------------------------- Erik de Castro Lopo http://www.mega-nerd.com/