From: Efraim Flashner <efraim@flashner.co.il>
To: Mathieu Lirzin <mthl@openmailbox.org>
Cc: guix-devel@gnu.org
Subject: Re: [PATCH 1/7] gnu: ncdu: Update to 1.11.
Date: Thu, 10 Sep 2015 20:53:49 +0300 [thread overview]
Message-ID: <20150910205349.4c83952d@debian-netbook> (raw)
In-Reply-To: <87zj0up7eh.fsf@openmailbox.org>
[-- Attachment #1.1: Type: text/plain, Size: 2207 bytes --]
On Thu, 10 Sep 2015 18:26:46 +0200
Mathieu Lirzin <mthl@openmailbox.org> wrote:
> Efraim Flashner <efraim@flashner.co.il> writes:
>
> > * gnu/packages/ncdu.scm (ncdu): Update to 1.11.
> > ---
> > gnu/packages/ncdu.scm | 6 +++---
> > 1 file changed, 3 insertions(+), 3 deletions(-)
> >
> > diff --git a/gnu/packages/ncdu.scm b/gnu/packages/ncdu.scm
> > index 6c3d617..0b3fc66 100644
> > --- a/gnu/packages/ncdu.scm
> > +++ b/gnu/packages/ncdu.scm
> > @@ -27,14 +27,14 @@
> > (define-public ncdu
> > (package
> > (name "ncdu")
> > - (version "1.10")
> > + (version "1.11")
> > (source (origin
>
>
> > (method url-fetch)
> > (uri (string-append "http://dev.yorhel.nl/download/ncdu-"
> > version ".tar.gz"))
> > (sha256
> > (base32
> > - "0rqc5wpqcbfqpcwxgh3jxwa0yw2py0hv0acpsf0a9g6v9144m6gm"))))
> > + "0yxv87hpal05p6nii6rlnai5a8958689l9vz020w4qvlwiragbnh"))))
>
> Not related to this update but guix lint report undesired tabulations on
> these lines. It's fine to silently untabify them with this commit.
>
> > (inputs
> > `(("ncurses" ,ncurses)))
> > (build-system gnu-build-system)
> > @@ -44,5 +44,5 @@ run on a remote server where you don't have an entire
> > graphical setup, but have to do with a simple SSH connection. ncdu aims
> > to be fast, simple and easy to use, and should be able to run in any
> > minimal POSIX-like environment with ncurses installed.")
> > - (license (x11-style
> > "http://g.blicky.net/ncdu.git/plain/COPYING?id=v1.10"))
> > + (license (x11-style
> > "http://g.blicky.net/ncdu.git/plain/COPYING?id=v1.11"))
>
> Since it has high probability to change every next version, I will be in
> favor of this
>
> (license (x11-style
> (string-append
> "http://g.blicky.net/ncdu.git/plain/COPYING?id=v" version)))
>
> Maybe there is something with doing that, what do others think?
>
> --
> Mathieu Lirzin
--
Efraim Flashner <efraim@flashner.co.il> אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.2: 0001-gnu-ncdu-Update-to-1.11.patch --]
[-- Type: text/x-patch, Size: 1795 bytes --]
From 81c1868e2e38ba1c006f276e86f99d1b7bae9c85 Mon Sep 17 00:00:00 2001
From: Efraim Flashner <efraim@flashner.co.il>
Date: Thu, 10 Sep 2015 15:57:23 +0300
Subject: [PATCH 1/7] gnu: ncdu: Update to 1.11.
* gnu/packages/ncdu.scm (ncdu): Update to 1.11.
---
gnu/packages/ncdu.scm | 18 ++++++++++--------
1 file changed, 10 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/ncdu.scm b/gnu/packages/ncdu.scm
index 6c3d617..b5c1522 100644
--- a/gnu/packages/ncdu.scm
+++ b/gnu/packages/ncdu.scm
@@ -27,14 +27,14 @@
(define-public ncdu
(package
(name "ncdu")
- (version "1.10")
+ (version "1.11")
(source (origin
- (method url-fetch)
- (uri (string-append "http://dev.yorhel.nl/download/ncdu-"
- version ".tar.gz"))
- (sha256
- (base32
- "0rqc5wpqcbfqpcwxgh3jxwa0yw2py0hv0acpsf0a9g6v9144m6gm"))))
+ (method url-fetch)
+ (uri (string-append "http://dev.yorhel.nl/download/ncdu-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "0yxv87hpal05p6nii6rlnai5a8958689l9vz020w4qvlwiragbnh"))))
(inputs
`(("ncurses" ,ncurses)))
(build-system gnu-build-system)
@@ -44,5 +44,7 @@ run on a remote server where you don't have an entire graphical setup, but have
to do with a simple SSH connection. ncdu aims to be fast, simple and easy to
use, and should be able to run in any minimal POSIX-like environment with
ncurses installed.")
- (license (x11-style "http://g.blicky.net/ncdu.git/plain/COPYING?id=v1.10"))
+ (license (x11-style
+ (string-append "http://g.blicky.net/ncdu.git/plain/COPYING?id=v"
+ version)))
(home-page "http://dev.yorhel.nl/ncdu")))
--
2.5.1
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
next prev parent reply other threads:[~2015-09-10 17:56 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-09-10 13:47 [PATCH 0/7] Misc updates Efraim Flashner
2015-09-10 13:47 ` [PATCH 1/7] gnu: ncdu: Update to 1.11 Efraim Flashner
2015-09-10 16:26 ` Mathieu Lirzin
2015-09-10 17:53 ` Efraim Flashner [this message]
2015-09-10 19:18 ` Ludovic Courtès
2015-09-10 19:23 ` Efraim Flashner
2015-09-10 13:47 ` [PATCH 2/7] gnu: terminology: Update to 0.9.0 Efraim Flashner
2015-09-10 16:57 ` Mathieu Lirzin
2015-09-10 17:53 ` Efraim Flashner
2015-09-10 13:47 ` [PATCH 3/7] gnu: efl: Update to 1.15.1 Efraim Flashner
2015-09-10 16:58 ` Mathieu Lirzin
2015-09-10 17:52 ` Efraim Flashner
2015-09-10 13:47 ` [PATCH 4/7] gnu: elementary: " Efraim Flashner
2015-09-10 17:09 ` Mathieu Lirzin
2015-09-10 17:52 ` Efraim Flashner
2015-09-10 13:47 ` [PATCH 5/7] gnu: evas-generic-loaders: Update to 1.15.0 Efraim Flashner
2015-09-10 17:19 ` Mathieu Lirzin
2015-09-10 13:47 ` [PATCH 6/7] gnu: emotion-generic-players: " Efraim Flashner
2015-09-10 17:34 ` Mathieu Lirzin
2015-09-10 17:52 ` Efraim Flashner
2015-09-10 13:47 ` [PATCH 7/7] gnu: enlightenment: Update to 0.19.9 Efraim Flashner
2015-09-10 17:42 ` Mathieu Lirzin
2015-09-10 17:51 ` Efraim Flashner
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=20150910205349.4c83952d@debian-netbook \
--to=efraim@flashner.co.il \
--cc=guix-devel@gnu.org \
--cc=mthl@openmailbox.org \
/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).