guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#68572: [PATCH] gnu: kubo: Update to 0.16.0.


From: Sharlatan Hellseher
Subject: bug#68572: [PATCH] gnu: kubo: Update to 0.16.0.
Date: Fri, 19 Jan 2024 22:55:11 +0000

Hi,

I've done some analysis of the vendor directory, and it contains a
massive list of missed Guix packages. I see that version 0.16.0 is not
the latest upstream version for that reason.

A quick review of the required modules for the latest version of *kubo*,
v0.25.0, shows that it requires significant packaging efforts.
Hopefully, some of the missing ones will be covered after all pending
patches related to Golang are merged.

https://github.com/ipfs/kubo/blob/v0.25.0/go.mod

Keep this message here for future reference regarding the update of
*kubo*.

Quick rough script to check missing packages
--8<---------------cut here---------------start------------->8---
cd vendor
find * -maxdepth 2 -mindepth 2 -type d |
    sed -e 's/[\.\/]/-/g' |
    sort |
    while read -r m
    do
        echo "go-$m"
    done |
    while read -r p
    do
        guix show $p 2>&1
    done |
    grep "package not found" |
    tee kubo-vendor-package-not-found
--8<---------------cut here---------------start------------->8---

Pushed as 

Attachment: signature.asc
Description: PGP signature


reply via email to

[Prev in Thread] Current Thread [Next in Thread]