unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Mark H Weaver <mhw@netris.org>
To: Pierre Neidhardt <mail@ambrevar.xyz>
Cc: guix-devel@gnu.org
Subject: Re: 01/01: gnu: uncrustify: Update to 0.68.1.
Date: Thu, 29 Nov 2018 19:16:12 -0500	[thread overview]
Message-ID: <87d0qnpggo.fsf@netris.org> (raw)
In-Reply-To: <20181125134156.B66BE209B2@vcs0.savannah.gnu.org> (guix-commits's message of "Sun, 25 Nov 2018 08:41:56 -0500 (EST)")

Hi Pierre,

guix-commits@gnu.org writes:

> ambrevar pushed a commit to branch master
> in repository guix.
>
> commit 34843fe9238a041616f063038557d85cd8a30165
> Author: Pierre Neidhardt <mail@ambrevar.xyz>
> Date:   Sun Nov 25 14:41:16 2018 +0100
>
>     gnu: uncrustify: Update to 0.68.1.
>     
>     * gnu/packages/code.scm (uncrustify): Update to 0.68.1.

Hydra failed to download the updated source for this, due to a SHA256
hash mismatch on the source ZIP file.  I can reproduce the same failure
on my laptop:

--8<---------------cut here---------------start------------->8---
mhw@jojen ~$ guix build -S uncrustify
The following derivation will be built:
   /gnu/store/a4sj7y50fwahga5zw33rn22yl1vi5y1w-uncrustify-0.68.1.zip.drv
building /gnu/store/a4sj7y50fwahga5zw33rn22yl1vi5y1w-uncrustify-0.68.1.zip.drv...

Starting download of /gnu/store/6lpmknzjk6rwp5xq3pk0b5akd4h3b1jm-uncrustify-0.68.1.zip
From https://github.com/uncrustify/uncrustify/archive/uncrustify-0.68.1.zip...
following redirection to `https://codeload.github.com/uncrustify/uncrustify/zip/uncrustify-0.68.1'...
downloading from https://github.com/uncrustify/uncrustify/archive/uncrustify-0.68.1.zip...
 uncrustify-0.68.1.zip                                                                                                    1.0MiB/s 00:02 | 2.3MiB transferred
sha256 hash mismatch for /gnu/store/6lpmknzjk6rwp5xq3pk0b5akd4h3b1jm-uncrustify-0.68.1.zip:
  expected hash: 1jb3hmm11m2mgnypapak2lgyyvspnmx9bxd9dxis5swaja2ddxlg
  actual hash:   0yamvqhflvzpvvqwc2qilqdsa3hcbmnb6pf9wzggphhywviksc7w
hash mismatch for store item '/gnu/store/6lpmknzjk6rwp5xq3pk0b5akd4h3b1jm-uncrustify-0.68.1.zip'
build of /gnu/store/a4sj7y50fwahga5zw33rn22yl1vi5y1w-uncrustify-0.68.1.zip.drv failed
View build log at '/var/log/guix/drvs/a4/sj7y50fwahga5zw33rn22yl1vi5y1w-uncrustify-0.68.1.zip.drv.bz2'.
guix build: error: build failed: build of `/gnu/store/a4sj7y50fwahga5zw33rn22yl1vi5y1w-uncrustify-0.68.1.zip.drv' failed
--8<---------------cut here---------------end--------------->8---

Could you take a look?  If upstream modified the tarball in place, could
you show us a 'diff' between the old and new versions?

     Thanks!
       Mark


> ---
>  gnu/packages/code.scm | 7 ++++---
>  1 file changed, 4 insertions(+), 3 deletions(-)
>
> diff --git a/gnu/packages/code.scm b/gnu/packages/code.scm
> index 7250325..1e863b0 100644
> --- a/gnu/packages/code.scm
> +++ b/gnu/packages/code.scm
> @@ -540,7 +540,7 @@ independent targets.")
>  (define-public uncrustify
>    (package
>      (name "uncrustify")
> -    (version "0.67")
> +    (version "0.68.1")
>      (source (origin
>                (method url-fetch)
>                (uri (string-append
> @@ -548,10 +548,11 @@ independent targets.")
>                      "uncrustify-" version ".zip"))
>                (sha256
>                 (base32
> -                "0n13kq0nsm35fxhdp0f275n4x0w88hdv3bdjy0hgvv42x0dx5zyp"))))
> +                "1jb3hmm11m2mgnypapak2lgyyvspnmx9bxd9dxis5swaja2ddxlg"))))
>      (build-system cmake-build-system)
>      (native-inputs
> -     `(("unzip" ,unzip)))
> +     `(("unzip" ,unzip)
> +       ("python" ,python-wrapper)))
>      (arguments
>       `(#:phases
>         (modify-phases %standard-phases

       reply	other threads:[~2018-11-30  0:17 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <20181125134156.8362.7263@vcs0.savannah.gnu.org>
     [not found] ` <20181125134156.B66BE209B2@vcs0.savannah.gnu.org>
2018-11-30  0:16   ` Mark H Weaver [this message]
2018-11-30 12:09     ` 01/01: gnu: uncrustify: Update to 0.68.1 Pierre Neidhardt
2018-11-30 15:59       ` Ricardo Wurmus
2018-11-30 22:02     ` Ludovic Courtès
2018-12-01  0:27       ` Tobias Geerinckx-Rice
2018-12-01  5:02         ` Mark H Weaver

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87d0qnpggo.fsf@netris.org \
    --to=mhw@netris.org \
    --cc=guix-devel@gnu.org \
    --cc=mail@ambrevar.xyz \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).