Re: guix describe user experience improvement proposition

2020-05-12 Thread Ekaitz Zarraga
On Tuesday, May 12, 2020 10:13 PM, Ekaitz Zarraga wrote: > On Tuesday, May 12, 2020 9:44 PM, zimoun zimon.touto...@gmail.com wrote: > > Usually, the way to add such information is '--list-formats', e.g., > > see "guix graph"with '--list-types' and '-list-bac

Inkscape 1.0 upgrade

2020-05-06 Thread Ekaitz Zarraga
Hi all, With the release of the 1.0 version of Inkscape I wanted to update our package and I'm encountering some problems I'm unable to solve myself. First, it depends on GDL (Gnome Devtool Libraries) which is not included in Guix so I'm packaging that too. I found an issue I don't know how to

Re: Inkscape 1.0 upgrade

2020-05-07 Thread Ekaitz Zarraga
Hi, ‐‐‐ Original Message ‐‐‐ On Thursday, May 7, 2020 6:39 AM, Maxim Cournoyer wrote: > Hello! > > It seems we're now at least 3 people to have worked toward Inkscape 1.0 > :-). I've posted a patch series adding a Inkscape 1.0 and various other > ... Thanks for the explanations given!

guix describe user experience improvement proposition

2020-05-12 Thread Ekaitz Zarraga
Hi all, Yesterday I wanted to use `guix describe` and I felt quite helpless when choosing the format I wanted. I suggest adding the possible format list in the help of the `guix describe -h` command. That way the feature discovery is easier for users that don't want to dig in the code. It

Re: guix describe user experience improvement proposition

2020-05-12 Thread Ekaitz Zarraga
On Tuesday, May 12, 2020 9:44 PM, zimoun wrote: > Dear > > On Tue, 12 May 2020 at 21:07, Ekaitz Zarraga eka...@elenq.tech wrote: > > > I suggest adding the possible format list in the help of the `guix describe > > -h` command. That way the feature discovery is eas

Re: My experience installing Guix system

2020-09-04 Thread Ekaitz Zarraga
Hi, Thanks for sharing it, it's very interesting to see your experience because it's very near to mine, even if my setup was much simpler. > It was a little messy, but in the end it > appears to work well. This is mostly my experience with guix. Good summary. We have to work more on

Inkscape export errors

2020-10-20 Thread Ekaitz Zarraga
Hi, I'm experiencing export errors in Inkscape 1.0.1 on several formats like DXF or Optimized SVG. I'm getting the following error: ``` Traceback (most recent call last): File "output_scour.py", line 8, in import inkex File

Re: Questions about Git and workflow

2020-08-21 Thread Ekaitz Zarraga
> I should have done `environment --ad-hoc`. If it helps: that's exactly what I do. Thanks for bringing the question btw. I was worried about my workflow being correct and it happens to be!

gnome-bluetooth

2020-05-24 Thread Ekaitz Zarraga
Hi, I've been diging in a Bluetooth issue I had in the past[^1] and I found some interesting details I need help to tackle. Looks like Gnome-bluetooth does NOT support Bluez5 which is what we are shipping right now. It's stated clearly in the project description:

Re: Downloader for "wrapped" tarbar?

2020-05-30 Thread Ekaitz Zarraga
‐‐‐ Original Message ‐‐‐ On Saturday, May 30, 2020 10:39 AM, Hartmut Goebel wrote: > Hi, > > was just written in another mail, I'm currently working on a > erlang/rebar build system. This includes an importer from hex.pm, a > package repository for elixir and erlang packages. (Since

Re: Downloader for "wrapped" tarbar?

2020-06-01 Thread Ekaitz Zarraga
‐‐‐ Original Message ‐‐‐ On Sunday, May 31, 2020 10:19 AM, Hartmut Goebel wrote: > Am 30.05.20 um 12:24 schrieb Ekaitz Zarraga: > > > I took a look to guix/download.scm I think you just need to check what > > url-fetch/zipbomb does because the usecase is s

Re: Inkscape export errors

2020-10-20 Thread Ekaitz Zarraga
> For optimized SVG, the error is due to missing the package scour, which > I meant to report, but was just reminded of because of your email. > > - > >

guix search: first line not shown

2020-06-30 Thread Ekaitz Zarraga
Hi, With the recent adoption of $PAGER in `guix search` I'm experiencing an issue. The some of the firsts lines are not shown if the output long enough to cover the full screen so I can't see the first package name. It forces me to scroll down and up again. If I run `guix search | less` works

Re: gcc-10 toolchain does not include string to numeric conversion functions like std::stoull

2020-07-13 Thread Ekaitz Zarraga
Hi, On Monday, July 13, 2020 4:21 PM, Ludovic Courtès wrote: > Unfortunately I haven’t dug further. Help welcome! > > Thanks, > Ludo’. I'd like to help but I don't know where to start (yet). I've found the same issue in older gcc-toolchains. 9.3.0 and 8.4.0 also fail. Many functions are

FreeCAD fails to compile

2020-12-05 Thread Ekaitz Zarraga
Hi, I solved most of the compilation issue with freecad. Now my package version compiles but install phase fails with this error: ```

Re: FreeCAD fails to compile

2020-12-05 Thread Ekaitz Zarraga
Looks like this line, inherited from the previous definition, was giving some trouble: > (string-append "-DCMAKE_INSTALL_LIBDIR=\\"" (assoc-ref %outputs > "out") "/lib\\"") It was creating wrong variables (and wrong syntax too!): if(EXISTS

Re: FreeCAD fails to compile

2020-12-05 Thread Ekaitz Zarraga
On Saturday, December 5, 2020 5:55 PM, John Soo wrote: > Nice work Ekaitz! > > I worked hard on freecad, it is quite a difficult program to package. That > was a weird issue that I asked about on the freecad forums. Perhaps it is > fixed upstream now, which would be excellent. Thanks for

Freecad: Draft module fixes

2020-12-10 Thread Ekaitz Zarraga
Hi, I sent a patch on freecad the other day but I realized freecad is not working totally. The Draft module needed a python package called `pivy`, a binding library for `coin3D`. But `pivy` needs `soqt`, which is an old Qt GUI component library for coin3D. Coin3D has some versioning issues

Re: Inkscape export errors

2020-10-21 Thread Ekaitz Zarraga
On Wednesday, October 21, 2020 2:03 PM, Ludovic Courtès wrote: > Egun on, Saluton Ludo, > > You would then need to include this variant of ‘inkscape’ alongside > ‘python’ so that ~/.guix-profile/etc/profile sets ‘PYTHONPATH’ > accordingly. > > A better fix would be to use ‘wrap-program’ to

Re: Inkscape export errors

2020-10-21 Thread Ekaitz Zarraga
rom 21a439f6f1978116584a6dc9ac80c0759c3fa771 Mon Sep 17 00:00:00 2001 From: Ekaitz Zarraga Date: Wed, 21 Oct 2020 19:08:20 +0200 Subject: [PATCH] gnu: Correct Inkscape extension dependencies * gnu/packages/inkscape.scm (inkscape@1.0.1): Add dependencies. * gnu/packages/python-xyz.scm (python-scour): New variable. ---

Re: [Telegram-Desktop]: Help with packaging

2021-01-08 Thread Ekaitz Zarraga
Hi, I'm not sure about what I'm going to say so take it with care: About the permission error I think the build directories are write protected by default it Guix, please someone correct me if I'm wrong. I'd say you can change the permissions of the folder with the chmod util, you can see many

Re: Staging branch [substitute availability]

2021-01-24 Thread Ekaitz Zarraga
; a lot of work and a huge patch (it was a major cleanup IIRC)." I'm > CC-ing Ekaitz Zarraga, who has been working on FreeCAD. I'm not sure > what we can do about this problem in the short term. Marius, can you > give more info about the bundling problem? Sorry for the delay in the answer.

Re: RISC-V is giving away developer boards

2021-05-04 Thread Ekaitz Zarraga
> > And if someone EU-based is interested to work full time for 6 months > we should apply for an NLNet grant. Is it an idea to set up a matrix > room for this? > > Pj. Depending on the needs and all that I would like to work on it I'm not a Guix expert but I know quite a bit about RISC-V and I

Re: RISC-V is giving away developer boards

2021-05-03 Thread Ekaitz Zarraga
> Could interested developers raise their hands? :-) Me: raises hand

Re: GCC: Canadian Cross + Dynamic linker issues

2021-04-07 Thread Ekaitz Zarraga
Let me please bump this thread a little bit, since I didn't get any answer > Hi, > > I've been struggling with GCC package definition for a while and I hope > someone > can help me solve or improve what I think are issues in its definition. > > I'm working on a R7RS-Small Scheme implementation

GCC: Canadian Cross + Dynamic linker issues

2021-03-18 Thread Ekaitz Zarraga
Hi, I've been struggling with GCC package definition for a while and I hope someone can help me solve or improve what I think are issues in its definition. I'm working on a R7RS-Small Scheme implementation that compiles to RISC-V assembly and I'm finding many issues to create a RISC-V cross

Re: What is a "mes-compatible Scheme"?

2021-09-04 Thread Ekaitz Zarraga
> From section 3.3.1 in the manual: > https://www.gnu.org/software/mes/manual/mes.html > > "Setting MES to a mes-compatible Scheme will run mescc using that" > > What is a "mes-compatible Scheme"? That term does not appear again in the > page. I'm not sure but I'd say that applies to Mes and

Re: Please explain these fundamental terms to me?

2021-09-25 Thread Ekaitz Zarraga
Hi, This should be clarified in the docs. I understand your confusion. Binary seeds are all the binaries that are needed for the instalation to start. They normally include Bash, GCC and that kind of stuff. So the instalation process starts with those and uses them as tools to build all the

Re: Please explain these fundamental terms to me?

2021-09-25 Thread Ekaitz Zarraga
ntence) ‐‐‐ Original Message ‐‐‐ On Saturday, September 25th, 2021 at 2:32 PM, Ekaitz Zarraga wrote: > Hi, > > This should be clarified in the docs. I understand your confusion. > > Binary seeds are all the binaries that are needed for the instalation to > start. They no

Re: Guix, ispell.el and FHS

2021-09-24 Thread Ekaitz Zarraga
Hi Andre > I'm relatively new to the GNU/Linux world, so I apologise for any silliness. > > I was looking ispell.el and saw: > > --8<---cut here---start->8--- > (defcustom ispell-look-command > (cond ((file-exists-p "/bin/look") "/bin/look") >

Re: Help with package AppImage support

2021-11-23 Thread Ekaitz Zarraga
> Could you show the CMake output? I attach it in this email. It's a "TARGET NOT FOUND" :S > Sometimes there’s a -D flag you need to pass to help it find the > package. (I’m not much of a CMake person though…) yeah... I tried many, but I didn't find the one. > Thanks for working on it! Thank

Re: Help with package AppImage support

2021-11-28 Thread Ekaitz Zarraga
> Hi, > > The log reads: > > --8<---cut here---start->8--- > -- Found PkgConfig: > /gnu/store/krpyb0zi700dcrg9cc8932w4v0qivdg9-pkg-config-0.29.2/bin/pkg-config > (found version "0.29.2") > -- Importing target libfuse via pkg-config (fuse, shared) > -- Checking

Re: Help with package AppImage support

2021-11-29 Thread Ekaitz Zarraga
Hi Ricardo, > appimagekit includes a copy of libappimage; that repository > contains a Findsquashfuse.cmake file, which defines how squashfuse > is found: > > https://github.com/AppImage/libappimage/blob/13f401a4a384ec59ec9a144e2a7006adf751571f/cmake/Modules/Findsquashfuse.cmake > > Ricardo I

Re: Help with package AppImage support

2021-11-29 Thread Ekaitz Zarraga
Hi Ricardo, > Ekaitz Zarraga writes: > > >> Maybe “TARGET NOT found” is CMake’s original way of saying that > >> you’re > >> missing a dependency (libsquashfuse), no? > > > > I mean, I already reached that conclusion but if you check the > > p

Help with package AppImage support

2021-11-22 Thread Ekaitz Zarraga
Hi, I'm trying to package some AppImage support for later adding it to `guix pack`. I having issues with AppImageKit (see below)... I'm not able to make it load the libsquashfuse I already packaged. CMake refuses to find it. I could use a hand to make this package work or at least some help

Re: LuaJIT ffi issue with dynamic libraries

2022-01-05 Thread Ekaitz Zarraga
Hi, I'm pushing this again just in case anyone has an answer. Thanks! ‐‐‐ Original Message ‐‐‐ On Thursday, November 25th, 2021 at 5:46 PM, Ekaitz Zarraga wrote: > Hi all, > > I've been having some issues with LuaJIT's FFI. More specifically with the > `load` function

Re: Accusation of breach of CoC (Was: [minor patch] Amend CoC)

2022-02-24 Thread Ekaitz Zarraga
> I suspect you haven't properly read any of my mails and jumped to conclusions > based on a quick skim, or something like that. Well, I've been reading them and some people told you to stop and you still continue. People already told you were bothering them. Even if your tone was respectful

Re: [minor patch] Amend CoC

2022-02-20 Thread Ekaitz Zarraga
I have a weird question about this that might be a little bit offtopic. Why should we specify reasons? It's like we are saying some reasons are more important than others. Is it not ok with... > our project and our community a harassment-free experience for everyone. ? That should cover

Re: Excessively energy-consuming software considered malware?

2022-02-20 Thread Ekaitz Zarraga
Note the joke here but: Yesterday I spent like 6 hours trying to install a package (blender). My Guix system compiled tons of rust modules, texlive, inkscape, gtk+ more than one time, qt nd finally blender. All that with my CPU to 100%. Is Guix malware? Cheers, Ekaitz

Re: Compiling blender

2022-02-20 Thread Ekaitz Zarraga
> On purpose? We have binaries for blender: > > https://ci.guix.gnu.org/search?query=blender > I was updating mesa, see #54066. > PS: I don’t take the bait :) But think about it, that makes Guix unusable when running on battery for instance. Making a Guix pull is unpredictable too... I

Re: Compiling blender

2022-02-20 Thread Ekaitz Zarraga
> Ekaitz Zarraga eka...@elenq.tech writes: > > > I was updating mesa, see #54066. > > Give the build farm some time and it will build things for you. > Nobody else is expected to build all the packages you mentioned. But I wanted to use it in my machine anyway. > >

Re: [minor patch] Amend CoC

2022-02-20 Thread Ekaitz Zarraga
Thinking about it from the perspective of people that want to join the project and are not potential harassers makes more sense. They will feel their problems are understood. Thanks for elaborating with that beautiful quote. It makes total sense. Ekaitz

Re: An appeal to empathy on actual hurt caused by this thread

2022-02-28 Thread Ekaitz Zarraga
Just to keep it clear, Taylan, You didn't in any case listen to what I actually said which was that you are forcing us to have this debate. You don't care if we want or we don't. I don't want to have this discussion and you are still pushing. I never said you were wrong or not, just wanted you

Re: An appeal to empathy on actual hurt caused by this thread

2022-02-26 Thread Ekaitz Zarraga
I'll just add my five cents here and leave the conversation: > Reading over my mails, I just don't understand why they might have been > misunderstood so badly. If you could shed some light on that, I would be > very grateful! It would certainly help me avoid mistakes in the future, > if I were

Re: Statement from the Guix maintainers regarding recent events

2022-03-01 Thread Ekaitz Zarraga
Hi, Thanks for the decision you have taken here, it was a difficult one. >From my side I want to publicly apologize to those who thought (very accurately) my tone was harsh. That being said, it looks like we reached some understanding together and that's a reason for celebration. I hope we

Re: gcc-4.7 and gcc-4.8 compilation failure in x64

2022-03-30 Thread Ekaitz Zarraga
Hi Reza, On Wednesday, March 30th, 2022 at 9:27 PM, Reza Housseini wrote: > Looks like a bug in gcc: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=81712 > > You probably have to patch gcc 4.* as it was only backported until gcc 5.5 > > On 3/29/22 21:01, Ekaitz Zarraga wrote:

Re: gcc-4.7 and gcc-4.8 compilation failure in x64

2022-03-30 Thread Ekaitz Zarraga
Good idea, I will! --- Original Message --- On Wednesday, March 30th, 2022 at 9:40 PM, Reza Housseini wrote: > Did you try to use guix time-machine and compile 4.7 from there? Perhaps > > the issue is the glibc version? > > On 3/30/22 21:32, Ekaitz Zarraga wrote

gcc-4.7 and gcc-4.8 compilation failure in x64

2022-03-29 Thread Ekaitz Zarraga
Hi, I'm digging on old compiler versions for bootstrapping purposes and I realized that gcc 4.7 and 4.8 packages don't compile on x64. We have been able to reproduce the failure of gcc 4.7 but we didn't test the 4.8 error that far. In gcc-4.7 the error is the following:

Re: gcc-4.7 and gcc-4.8 compilation failure in x64

2022-03-29 Thread Ekaitz Zarraga
> Hi Ekaitz > > Not that I am in any position to answer the question, but could you > > share a little bit more context? > > Did the error occur when you were compiling gcc-4.7 or do programs > > compiled with this compiler have this issue? > > What path led you to gcc-4.7? Can you share your

Re: gcc-4.7 and gcc-4.8 compilation failure in x64

2022-03-29 Thread Ekaitz Zarraga
> And you try to compile that using `guix build -m manifest.scm` the > compilation fails. The same happens when choosing 4.8. More specifically I mean the output of that command is: ./md-unwind-support.h:60:47: error: dereferencing pointer to incomplete type ... error: in phase 'build':

Re: How can we decrease the cognitive overhead for contributors?

2023-09-03 Thread Ekaitz Zarraga
Hi, > I think this is the biggest hurdle. A lot of folks are using gmail and > its web based UI and it is just plain awful. I have made the switch to > using neomutt (and isync + notmuch + mstmp) and it has made emails a joy > to use and work with. I use protonmail and they don't provide smtp

Re: How can we decrease the cognitive overhead for contributors?

2023-09-03 Thread Ekaitz Zarraga
> > This is what I mean when I say many times emacs is kind of mandatory, > > and > > this thread is kind of a demonstration of what I meant because the main > > discussion evolved to: you can use this or that in emacs to ease the > > dev > > experience. > > > One of the benefits of my being

Re: How can we decrease the cognitive overhead for contributors?

2023-09-06 Thread Ekaitz Zarraga
> > also not as obvious (you search for lines added or removed or changed, > > not easy language such as 'gnu: package-name: Add'). > > > > i'm pretty sure that the source of the annoyance is not the strict format in > the summary line, but the formal details in the commit message body.

Re: How can we decrease the cognitive overhead for contributors?

2023-09-13 Thread Ekaitz Zarraga
Hi, On Wednesday, September 13th, 2023 at 3:42 PM, Maxim Cournoyer wrote: > > There's no lock-in. You can use any tool you want. Most people hacking > on Guix do so with Emacs and Geiser because these are currently the best > tools (that I know of) to do the job; these are the tools many of

Re: How can we decrease the cognitive overhead for contributors?

2023-09-22 Thread Ekaitz Zarraga
> I think a lot of this discussion is stuck on what is better web or > email. Where it doesn't have to be. > > What we instead need to do is acknowledge that some people like the web > approach. > > And accommodate them so we can have guix used by more people. Simple as that > :D Exactly.

RFC: add more setups to Guix docs (was: The e(macs)lephant in the room and the Guix Bang)

2023-09-25 Thread Ekaitz Zarraga
: <40e5d840cf497a4313f33ce5fad7ecbea081f6ba.1695651517.git.eka...@elenq.tech> From: Ekaitz Zarraga Date: Mon, 25 Sep 2023 16:16:28 +0200 Subject: [PATCH] WIP: doc: contributing: Add alternative setups section Start with Guile Studio and Vim/NeoVim. * doc/contributing.texi (Alternative Setups

Re: RFC: add more setups to Guix docs (was: The e(macs)lephant in the room and the Guix Bang)

2023-09-25 Thread Ekaitz Zarraga
Hi Simon --- Original Message --- On Monday, September 25th, 2023 at 20:58, Simon Tournier wrote: > Hi Ekaitz, > > On Mon, 25 Sep 2023 at 14:25, Ekaitz Zarraga eka...@elenq.tech wrote: > > > I decided to go for the action instead of discussion. > > >

Add more setups to Guix docs

2023-10-04 Thread Ekaitz Zarraga
--- Original Message --- On Wednesday, October 4th, 2023 at 15:27, Ludovic Courtès wrote: > Hi, > > Ekaitz Zarraga eka...@elenq.tech skribis: > > > From 0c2be98f05bb288699a8e39dcef6428eb5a9dc3f Mon Sep 17 00:00:00 2001 > > Message-ID: > > 0c2be98f05

Re: [bug#66343] Add more setups to Guix docs

2023-10-04 Thread Ekaitz Zarraga
--- Original Message --- On Wednesday, October 4th, 2023 at 18:35, Efraim Flashner wrote: > On Wed, Oct 04, 2023 at 06:15:53PM +0000, Ekaitz Zarraga wrote: > > > --- Original Message --- > > On Wednesday, October 4th, 2023 at 16:18, Efraim Flashner > &g

Re: [bug#66343] Add more setups to Guix docs

2023-10-04 Thread Ekaitz Zarraga
--- Original Message --- On Wednesday, October 4th, 2023 at 16:18, Efraim Flashner wrote: > I think we can mention guix.vim also Certainly, do you want to add it yourself? Nobody is going to explain it better than you. :)

Re: How can we decrease the cognitive overhead for contributors?

2023-09-22 Thread Ekaitz Zarraga
Hi, > On Sun, Sep 03, 2023 at 05:45:41PM +0000, Ekaitz Zarraga wrote: > > > I use protonmail and they don't provide smtp access so I can't do git > > send-mail as easy as other people do. > > > A mail provider not allowing SMTP is a git forge tha

Re: [bug#66343] Add more setups to Guix docs

2023-10-05 Thread Ekaitz Zarraga
Thank you all for the collaboration!

Fw: Question regarding qmk firmware

2023-10-08 Thread Ekaitz Zarraga
Hi I want to forward this message to guix-devel because it is a clear case of some (actually good) technical decision affecting users in unexpected ways. Now, after the change, a user might run `guix search avr-toolchain` and find nothing. Same for ARM. This is a shame, because we have

Re: [bug#66343] Add more setups to Guix docs

2023-10-04 Thread Ekaitz Zarraga
ElenQ Technology --- Original Message --- On Wednesday, October 4th, 2023 at 20:51, Efraim Flashner wrote: > On Wed, Oct 04, 2023 at 06:47:51PM +0000, Ekaitz Zarraga wrote: > > > --- Original Message --- > > On Wednesday, October 4th, 2023 at 18:3

GDB-multiarch

2023-08-27 Thread Ekaitz Zarraga
Hi all, As you might know I'm talking part on the RISC-V bootstrapping efforts in Guix. This makes me need a multi-architecture GDB. So I made this simple package: ``` scheme (define-module (gdb) #:use-module (gnu packages) #:use-module (gnu packages gdb) #:use-module ((guix licenses)

Re: GDB-multiarch

2023-08-28 Thread Ekaitz Zarraga
ElenQ Technology Ethical Innovation --- Original Message --- On Monday, August 28th, 2023 at 11:04 AM, 宋文武 wrote: > Ekaitz Zarraga eka...@elenq.tech writes: > > > Hi all, > > > > As you might know I'm talking part on the RISC-V bootstrapping efforts in

Re: How can we decrease the cognitive overhead for contributors?

2023-08-24 Thread Ekaitz Zarraga
Hi, > This definitely falls into the IDE tooling issue that I complained about > a bunch of times. There seems to be a reality distortion field around > Lisp that makes some users believe that s-expressions automatically lead > to a good IDE experience. And yet, Java IDEs have had automatic

Re: Blender export backend missing

2022-05-20 Thread Ekaitz Zarraga
Hi --- Original Message --- On Friday, May 20th, 2022 at 11:36 PM, Théo Maxime Tyburn wrote: > I added ("alembic" ,alembic) to the inputs > and "-DWITH_ALEMBIC=ON" in the configure-flags list. > > Unfortunately it didn’t work directly. I get this error from ld > --8<---cut

Re: Blender export backend missing

2022-05-22 Thread Ekaitz Zarraga
Hi --- Original Message --- On Sunday, May 22nd, 2022 at 3:49 PM, Théo Maxime Tyburn wrote: > Hi > > Ekaitz Zarraga eka...@elenq.tech writes: > > > Make sure the version of alembic we have packaged is the one Blender > > expects. > > > > Someti

Re: Bootstrap script only works with guix environment, not with guix shell

2022-07-08 Thread Ekaitz Zarraga
Hi, Isn't `guix environment guix` equivalent to `guix shell -D guix`? I think you are missing a -D there so it's adding a shell with guix and not with its development dependencies. Hope that helps, Ekaitz [ElenQ Technology](https://elenq.tech) Ethical Innovation --- Original Message

Re: Bootstrap script only works with guix environment, not with guix shell

2022-07-08 Thread Ekaitz Zarraga
` or > `--development` to actually make an equivalent call. So `guix shell`, I > guess, is more nuanced then, than `guix environment`. > > Anyway, that solves it, thank you! > > Best regards, > Zelphir > > On 7/9/22 00:07, Ekaitz Zarraga wrote: > >> Hi, >> Isn't

Re: RISCV porting effort

2022-06-22 Thread Ekaitz Zarraga
Also, hi! We kinda have a working bootstrappable GCC. If you want to know more you can read here: https://ekaitz.elenq.tech/bootstrapGcc4.html :)

[PATCH] gnu: tcc: Update to a83b28568596afd8792fd58d1a5bd157fc6b6634

2022-07-12 Thread Ekaitz Zarraga
dependency). I hope this is useful. Best, EkaitzFrom ed05cfb9356fb5b07be48c54b9ec33eab672de61 Mon Sep 17 00:00:00 2001 From: Ekaitz Zarraga Date: Tue, 12 Jul 2022 11:05:15 +0200 Subject: [PATCH] gnu: tcc: Update to a83b28568596afd8792fd58d1a5bd157fc6b6634 * gnu/packages/c.scm (tcc): Update

Re: Teams

2022-06-04 Thread Ekaitz Zarraga
> Hi Guix, > > this is not a new idea[1]: let’s add a page to the website that lists teams > and a mail alias for each of the teams. > > For example, the “R team” consists of people familiar with how R > packaging works in Guix, e.g. Simon and myself. There would be an alias >

Re: [PATCH] gnu: tcc: Update to a83b28568596afd8792fd58d1a5bd157fc6b6634

2022-07-18 Thread Ekaitz Zarraga
Saluton, > Egun on! > > Ekaitz Zarraga eka...@elenq.tech skribis: > > > With this patch the tcc build issue is fixed, the downside is that it's > > set to an specific commit and not a release. > > > Is it because there’s no newer release? (I can add a comment

Re: Texinfo, Free Beer

2022-08-06 Thread Ekaitz Zarraga
Hi, --- Original Message --- On Saturday, August 6th, 2022 at 3:30 PM, jgart wrote: > Hi Guixers, > > wdyt of having some modern TLDR entry in the cookbook for getting Guix > neophytes up to par with texinfo? > > Since texinfo is the defacto markup for the GNU Guix project and we're

Re: WIP: zig-build-system

2023-01-12 Thread Ekaitz Zarraga
l me what you think. Let's see if we can merge this > someday. > > Best, > Ekaitz Let me add the docs tooFrom e5029028d6cf6c7b9d61081d95f09e2d735648ba Mon Sep 17 00:00:00 2001 From: Ekaitz Zarraga Date: Thu, 12 Jan 2023 23:09:46 +0100 Subject: [PATCH 3/3] Add zig-build-sys

Re: WIP: zig-build-system

2023-01-12 Thread Ekaitz Zarraga
this someday. Best, EkaitzFrom 5e26b25b9ed50a6c7c5e696d1fdc06e531c416d3 Mon Sep 17 00:00:00 2001 From: Ekaitz Zarraga Date: Thu, 15 Dec 2022 13:02:25 +0100 Subject: [PATCH 2/2] Add a sample package for testing the zig build system --- gnu/packages/zig.scm | 34 +- 1 file

Re: Ability to specify compiler package for Go build system.

2023-01-11 Thread Ekaitz Zarraga
> Pretty sure there is already a #:go argument, but I might be misremembering. Just took a look in the build-system and I can't find that argument. Maybe I didn't search correctly anyway... :) Cheers!

Re: Ability to specify compiler package for Go build system.

2023-01-11 Thread Ekaitz Zarraga
Hi, > Hi Guix, > > I'm trying to package wakatime-cli[1], while Guix uses Go 1.17 as the > default, the package requires > Go 1.19 at the current version (v1.60.4). > > Though it's possible to package the last version supports Go 1.17 (v1.38.0), > I wonder if we can > adjust the build system so

WIP: zig-build-system

2022-12-15 Thread Ekaitz Zarraga
package that actually works but has some weird needs you can find in the comments. Cheers, EkaitzFrom c19c7161cf0864be5ffee12e8baac248d2d9874a Mon Sep 17 00:00:00 2001 From: Ekaitz Zarraga Date: Thu, 15 Dec 2022 13:02:25 +0100 Subject: [PATCH 2/2] Add a sample package for testing the zig build system

Re: WIP: zig-build-system

2022-12-20 Thread Ekaitz Zarraga
-pasting :). You don't use inputs, don't need let* vs let, > and could probably directly (copy-recursively #$output out). Or rely on > 'make install'. 'make install' was available for ncdu2, not sure about > other zig projects. Make install won't be available generally, but yeah, I got you

Re: WIP: zig-build-system

2022-12-20 Thread Ekaitz Zarraga
Also all the flags I added I didn't add to the `gnu/build-system/zig.scm` file because I have no idea how to do that. Please help :) Cheers!

Re: Licence of the Guix blog posts

2022-11-28 Thread Ekaitz Zarraga
Hi, > > Simon, what do you think about emailing the authors of the “10 years of > stories” post asking if they agree with the licensing? :-) No rush, > though the sooner the more likely we are to get an answer. I'm one of them. You can use what I wrote with the license you prefer. Consider it

Re: etc/commiter.scm should not commit

2023-01-24 Thread Ekaitz Zarraga
--- Original Message --- On Tuesday, January 24th, 2023 at 2:50 AM, Csepp wrote: > There have been countless times when I was using etc/commiter.scm and it > commited more than it should have and then slapped an incorrect message > on it. > I think it would make a lot more sense if

Re: WIP: zig-build-system

2023-01-17 Thread Ekaitz Zarraga
> Egun on! > > Could you send the whole changeset to guix-patc...@gnu.org? That’ll > make sure (1) it doesn’t get lost, and (2) it’s tested by > https://qa.guix.gnu.org. (Use ‘git send-email’ for best results.) Sure thing! My email provider doesn't play well with git send-mail but I'll do it as

Re: Guix's Answer to PyInstaller

2023-03-31 Thread Ekaitz Zarraga
Hey! ¿Qué tal? --- Original Message --- On Friday, March 31st, 2023 at 7:33 PM, jgart wrote: > Hi Guixers, > > What is Guix's answer to PyInstaller? > > `guix pack --list-formats`? > > https://github.com/pyinstaller/pyinstaller > > I haven't reviewed all of PyInstaller yet to see

Re: Can zig-build-system be an alternative to the gnu-build-system?

2023-02-01 Thread Ekaitz Zarraga
Gracias! --- Original Message --- On Wednesday, February 1st, 2023 at 3:45 PM, jgart wrote: > hola Ekaitz, > > I added it as a pre-release to Guix 'R Us a few weeks ago: > > https://toys.whereis.みんな/symbols?search=zig-build-system > > ;()

Re: Can zig-build-system be an alternative to the gnu-build-system?

2023-02-01 Thread Ekaitz Zarraga
Hi > Can `zig-build-system` be an alternative to the `gnu-build-system`? It could be, but in order to do that we need to add the zig-build-system: https://issues.guix.gnu.org/60889 :)

Add hare compiler

2023-07-14 Thread Ekaitz Zarraga
-Id: <308b67848e93a25f627dd64e024e9a501979a157.1689368739.git.eka...@elenq.tech> From: Ekaitz Zarraga Date: Fri, 14 Jul 2023 22:52:59 +0200 Subject: [PATCH] gnu: Add hare * gnu/packages/hare.scm (hare, harec): New variable. * gnu/local.mk: Add hare.scm --- gnu/local.mk | 2 + gnu/packages/hare.

Re: Zig build system and river Wayland compositor

2023-06-21 Thread Ekaitz Zarraga
--- Original Message --- On Wednesday, June 21st, 2023 at 3:43 PM, Felix Lechner wrote: > Hi, > > I declared Bug#60889, [1] which provides a Zig build system, as a > prerequisite for Bug#64208. [2] The latter packages two Zig > applications that use the build system in the former. >

Re: Commit Access: jgart

2023-05-16 Thread Ekaitz Zarraga
Felicidades! --- Original Message --- On Tuesday, May 16th, 2023 at 2:28 AM, jgart wrote: > Hi Guixers, > > Thanks for granting me commit access. I'm looking forward to helping out with > patch review, with a > particular focus on moving patches along for the Python team. > > I

Re: arm-none-eabi toolchain and compiling C++ stuff

2023-12-20 Thread Ekaitz Zarraga
On 2023-12-20 21:28, Attila Lendvai wrote: dear Guix, i'm trying to compile something to a raspberry rp2040 microcontroller (https://codeberg.org/Riku_V/pico-serprog). $ guix shell gcc-toolchain cmake make pkg-config -e "((@ (gnu packages embedded)

Re: Suggestion for a guix shell feature.

2023-12-29 Thread Ekaitz Zarraga
On 2023-12-29 04:58, Maxim Cournoyer wrote: Hi, Apoorv via "Development of GNU Guix and the GNU System distribution." writes: I want to make a suggestion for a feature for guix shell. I was recently writing guix.scm files for my projects and was having problem with the libraries I added,

Re: cmake-build-system: build tests only if #:tests? is true?

2024-03-02 Thread Ekaitz Zarraga
Hi, On 2024-03-02 22:16, Hartmut Goebel wrote: Hi, I found an old and unfinished patch in my pile. It optimizes building with cmake by not building the test if "#:tests?" is false. (Basically it passes -DBUILD_TESTING=OFF/ON" depending on "#:tests?".) Is this of interest? Then I would take

Re: the right to rewrite history to rectify the past (was Re: Concerns/questions around Software Heritage Archive)

2024-03-21 Thread Ekaitz Zarraga
Hi, What are you implying with the "loud" minority here? MSavoritias He's probably talking about the same thing that made you continue being heated after the fact you were told to calm down and you are not wasting any single opportunity to continue answering every single email in this

Re: Error handling when 'guix substitute' dies

2024-03-17 Thread Ekaitz Zarraga
Hi Ada, On 2024-03-17 07:18, Ada Stevenson wrote: Hi Guix, I have this gripe with usability regarding using substitutes. Sometimes, usually when I'm on an enterprise network like my university's of library's wifi, the `guix substitute` process dies with a "TLS error in procedure

Re: GSoC 2024

2024-03-07 Thread Ekaitz Zarraga
I have an idea too, but I don't have the knowledge to mentor it. guix pack support for AppImages. On 2024-03-04 20:10, Gábor Boskovits wrote: Hello guix, I coordinated with the GNU org admins, and we can still do this round, but we have to go fast to make this happen. I have already taken the

Re: Google Summer of Code Inquiry

2024-03-29 Thread Ekaitz Zarraga
Hi all, Yes, I proposed the project because that was something I wanted to do myself, but I didn't have the time for. As Ludo suggests, start getting familiar with Guix's codebase and usage. I can help you with contribution later. When digging on the code, this talk by Josselin Poiret is

Re: backdoor injection via release tarballs combined with binary artifacts (was Re: Backdoor in upstream xz-utils)

2024-04-04 Thread Ekaitz Zarraga
Hi, I just want to add some perspective from the bootstrapping. On 2024-04-04 21:48, Attila Lendvai wrote: all in all, just by following my gut insctincts, i was advodating for building everything from git even before the exposure of this backdoor. in fact, i found it surprising as a guix

  1   2   >