Hi,
On Tue, 28 Sept 2021 at 19:52, Jason Self <[email protected]> wrote:
> Yes, git://linux-libre.fsfla.org/releases.git which carries tagged
> releases, scripts, and logs. As you can see it goes all the way back to
> 2.6.21.
Thanks.
Does it make sense to switch from 'url-fetch' to 'git-fetch' in
linux-libre-deblob-scripts? Modulo what the Vagrant's remark.
--8<---------------cut here---------------start------------->8---
(define (linux-libre-deblob-scripts version gnu-revision
deblob-hash
deblob-check-hash)
(list (version-major+minor version)
(origin
(method url-fetch)
(uri (string-append "https://linux-libre.fsfla.org"
"/pub/linux-libre/releases/" version "-"
gnu-revision "/"
"deblob-" (version-major+minor version)))
(file-name (string-append "linux-libre-deblob-"
version "-" gnu-revision))
(sha256 deblob-hash))
(origin
(method url-fetch)
(uri (string-append "https://linux-libre.fsfla.org"
"/pub/linux-libre/releases/" version "-"
gnu-revision "/"
"deblob-check"))
(file-name (string-append "linux-libre-deblob-check-"
version "-" gnu-revision))
(sha256 deblob-check-hash))))
--8<---------------cut here---------------end--------------->8---
Cheers,
simon