all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Kitty terminal new package, symlink problem
@ 2024-05-22 14:38 Lucy Coleclough
  2024-05-30  3:21 ` Setting up gmail for git send-email Imran Iqbal
  0 siblings, 1 reply; 6+ messages in thread
From: Lucy Coleclough @ 2024-05-22 14:38 UTC (permalink / raw)
  To: guix-devel

[-- Attachment #1: Type: text/plain, Size: 1484 bytes --]

Hi Edison Ibáñez if you see this,
I am unsure if my reply on debuggs was sent, i am yet to get a email 
address that supports git send-email,
It seems that go embed does not support symlinks and in the kitty build 
dir, "/src/github.com/alecthomas/chroma/v2/**" the embed-ed files are 
symlinks to the chroma store directory.

https://pkg.go.dev/embed
"Patterns must not match files outside the package's module, such as 
‘.git/*’ or symbolic links. Patterns must not match files whose names 
include the special punctuation characters " * < > ? ` ' | / \ and :. 
Matches for empty directories are ignored. After that, each pattern in a 
//go:embed line must match at least one file or non-empty directory. "

I was just looking at what is the process which creates the link, it is 
possibly line 232 ( in my checkout) of guix/build/go-build-system
```
   (let ((dest (string-append (getenv "GOPATH") "/src/" unpack-path)))
     (mkdir-p dest)
     (if (file-is-directory? source)
         (copy-recursively source dest #:keep-mtime? #t)
         (unpack-maybe-strip source dest)))

```
there is not a symlink function call, i think build systems are 
inherited so maybe it is in a containing build system.

Im going out now but this seems to be the cause of the failure.

Also if anyone sees this and has an invite to riseup email service ( 
should the service be capable of handling another stranger) then please 
may i have a invite?, google sux
Thanks!

[-- Attachment #2: Type: text/html, Size: 2137 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2024-05-31 13:26 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-22 14:38 Kitty terminal new package, symlink problem Lucy Coleclough
2024-05-30  3:21 ` Setting up gmail for git send-email Imran Iqbal
2024-05-30  8:25   ` Philip McGrath
2024-05-30 10:15     ` lucy
2024-05-30 10:15   ` lucy
2024-05-31 13:23     ` pinoaffe

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.