Re: Magic Wormhole Package Weirdness/Potential Security Issues?

2024-11-08 Thread Troy Figiel
Hi Juli, On Fri, 2024-11-08 at 13:26 -0500, Juliana Sims wrote: > To cover all my bases, I pk'd the hash produced by `pypi-uri` and > used > `guix download` to try to fetch the same file and check its hash, > only > to find that `guix download` couldn't find anything at that URL or > its > fall

Re: Contribute or create a channel?

2024-03-12 Thread Troy Figiel
Hi Attila, I know this wasn't directly sent to me, but I wanted to share a couple of thoughts anyway :-) On 2024-03-12 14:18, Attila Lendvai wrote: > my gut feeling is that new abstractions are needed that would enable > splitting the monorepo/community into less tightly coupled subgroups where

Re: Initialization of go-team branch.

2024-02-23 Thread Troy Figiel
Hi Oleg, That's awesome! I don't have much to add, except that it might be good to sync on what we would like to achieve now that the go-team branch exists. I was planning on working through some of the points I proposed here: https://lists.gnu.org/archive/html/guix-devel/2024-02/msg00054.html

Re: Golang check phase skipping some tests?

2024-02-05 Thread Troy Figiel
Hi Oleg (and the go-team), As I have spent some time with the go-build-system, I have a couple of extra suggestions/ideas. Obviously, as the person suggesting these changes, I would be more than happy to help implement them. This will unfortunately be a rather lengthy and very information-dense em

Re: Golang check phase skipping some tests?

2024-01-31 Thread Troy Figiel
Hi Oleg, Small update to give you some numbers. Looking through gnu/packages/ I found a total of 593 packages using the go-build-system. With guix refresh -l, I find 1449 dependent packages. I am currently at commit bed3a0b547a59f63b545db165e76ddd9af8bba1a. Take this as a rough estimate, since I s

Re: Git-LFS or Git Annex?

2024-01-24 Thread Troy Figiel
Hi all, On 2024-01-24 19:41, pukkamustard wrote: > I've used Git Annex for managing many large files (~100s of GiBs) and it > worked. However, I found Git Annex to be quite complex and to do things > automatically without me fully realizing. > I can mirror this sentiment. As far as my experience

Re: Golang check phase skipping some tests?

2024-01-18 Thread Troy Figiel
Hi Oleg and others, On 2024-01-18 11:25, Sharlatan Hellseher wrote: > With small adjustment of the invok line, I could manage to trigger all tests > to > be run, but it brings other issue of some not packed modules required for the > check phase. Thanks for the update! I noticed the same with `g

Using the pyproject-build-system

2024-01-15 Thread Troy Figiel
Hi Guix/Python team, My fix for python-requests-kerberos was pushed today (thanks Oleg!) and I thought it would be an appropriate moment to ask about the pyproject-build-system. In short, is the pyproject-build-system a preferable default over the python-build-system? The manual states "experiment

Golang check phase skipping some tests?

2024-01-15 Thread Troy Figiel
Hi everyone, When looking into the Go build system, I noticed the default check phase runs (invoke "go" "test" import-path), which only runs the tests in the root directory of the source. Running the tests in all subdirectories would require something like this instead: --8<---cut her