mbox series

[bug#49333,0/2] Remove unreachable GNA upstream

Message ID 20210702161451.26533-1-zimon.toutoune@gmail.com
Headers show
Series Remove unreachable GNA upstream | expand

Message

Simon Tournier July 2, 2021, 4:14 p.m. UTC
Hi,

These trivial patches allow to close the old report 25913 [1].
Since there is no apparent new upstream, the sources are hosted only by
Software Heritage.

To verify all is correct,

  tar xf $(guix build -S guile-dbi)
  guix hash -r guile-dbi-2.1.6/
  09ys5hj7gnj5w1iv1m194j06jk6b8sdhc8j6hcv3bprq1428kyxw

  guix hash -r $(./pre-inst-env guix build -S guile-dbi)
  09ys5hj7gnj5w1iv1m194j06jk6b8sdhc8j6hcv3bprq1428kyxw

and

  tar xf $(guix build -S guile-sqlite3)
  guix hash -r guile-dbd-sqlite2-2.1.6/
  1rwf3z6ib6nkhfnk2nw8p6fqirdx2pparcrlmsm0i2ii62plpqhb

  guix hash -r $(./pre-inst-env guix build -S guile-dbd-sqlite3)
  1rwf3z6ib6nkhfnk2nw8p6fqirdx2pparcrlmsm0i2ii62plpqhb


Cheers,
simon

1: <http://issues.guix.gnu.org/issue/25913>

zimoun (2):
  gnu: guile-dbi: Replace 'url-fetch' by 'git-fetch'.
  gnu: guile-dbd-sqlite3: Replace 'url-fetch' by 'git-fetch'.

 gnu/packages/guile-xyz.scm | 26 +++++++++++++++-----------
 1 file changed, 15 insertions(+), 11 deletions(-)


base-commit: 468caeb70140f2418cf269e7b1f09d40d6dcf9fb

Comments

Ludovic Courtès July 30, 2021, 8:54 p.m. UTC | #1
Hello,

zimoun <zimon.toutoune@gmail.com> skribis:

> These trivial patches allow to close the old report 25913 [1].
> Since there is no apparent new upstream, the sources are hosted only by
> Software Heritage.
>
> To verify all is correct,
>
>   tar xf $(guix build -S guile-dbi)
>   guix hash -r guile-dbi-2.1.6/
>   09ys5hj7gnj5w1iv1m194j06jk6b8sdhc8j6hcv3bprq1428kyxw
>
>   guix hash -r $(./pre-inst-env guix build -S guile-dbi)
>   09ys5hj7gnj5w1iv1m194j06jk6b8sdhc8j6hcv3bprq1428kyxw
>
> and
>
>   tar xf $(guix build -S guile-sqlite3)
>   guix hash -r guile-dbd-sqlite2-2.1.6/
>   1rwf3z6ib6nkhfnk2nw8p6fqirdx2pparcrlmsm0i2ii62plpqhb
>
>   guix hash -r $(./pre-inst-env guix build -S guile-dbd-sqlite3)
>   1rwf3z6ib6nkhfnk2nw8p6fqirdx2pparcrlmsm0i2ii62plpqhb

Finally applied, thanks!

Ludo’.