From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34297) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ePTdL-0003Es-V7 for guix-patches@gnu.org; Thu, 14 Dec 2017 08:33:15 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ePTdG-00004r-6Q for guix-patches@gnu.org; Thu, 14 Dec 2017 08:33:07 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:52663) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ePTdG-0008W7-2o for guix-patches@gnu.org; Thu, 14 Dec 2017 08:33:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ePTdF-0003py-SN for guix-patches@gnu.org; Thu, 14 Dec 2017 08:33:01 -0500 Subject: [bug#29708] Update s-shell Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33348) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ePTby-0002Pr-4f for guix-patches@gnu.org; Thu, 14 Dec 2017 08:31:45 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ePTbr-0006v0-VC for guix-patches@gnu.org; Thu, 14 Dec 2017 08:31:42 -0500 Received: from aibo.runbox.com ([91.220.196.211]:56976) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ePTbr-0006rs-NG for guix-patches@gnu.org; Thu, 14 Dec 2017 08:31:35 -0500 Received: from [10.9.9.210] (helo=mailfront10.runbox.com) by mailtransmit03.runbox with esmtp (Exim 4.86_2) (envelope-from ) id 1ePTbo-0006P8-JB for guix-patches@gnu.org; Thu, 14 Dec 2017 14:31:32 +0100 Received: from dslb-094-220-161-196.094.220.pools.vodafone-ip.de ([94.220.161.196] helo=localhost) by mailfront10.runbox.com with esmtpsa (uid:892961 ) (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) id 1ePTbi-0001vf-DT for guix-patches@gnu.org; Thu, 14 Dec 2017 14:31:26 +0100 Date: Thu, 14 Dec 2017 13:31:23 +0000 From: ng0 Message-ID: <20171214133123.ymo5dxscjqhsbkfn@abyayala> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="vaabpzivuqzprles" Content-Disposition: inline List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 29708@debbugs.gnu.org --vaabpzivuqzprles Content-Type: multipart/mixed; boundary="bzutgtmxhl5sw6v4" Content-Disposition: inline --bzutgtmxhl5sw6v4 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Appended. --=20 GnuPG: A88C8ADD129828D7EAC02E52E22F9BBFEE348588 GnuPG: https://c.n0.is/ng0_pubkeys/tree/keys WWW: https://n0.is --bzutgtmxhl5sw6v4 Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename="0001-s-shell-Update-to-commit-da2e5c20c0c5f477ec3426dc258.patch" Content-Transfer-Encoding: quoted-printable =46rom cf2cbe9e9e525aa9dd697fcedb255a0fbc194ac9 Mon Sep 17 00:00:00 2001 =46rom: ng0 Date: Thu, 14 Dec 2017 13:22:58 +0000 Subject: [PATCH] s-shell: Update to commit da2e5c20c0c5f477ec3426dc2584889a789b1659. * gnu/packages/shells.scm (s-shell): Update to commit da2e5c20c0c5f477ec342= 6dc2584889a789b1659. (version): Use 'git-version'. --- gnu/packages/shells.scm | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/gnu/packages/shells.scm b/gnu/packages/shells.scm index 1f076999c..343f50d6d 100644 --- a/gnu/packages/shells.scm +++ b/gnu/packages/shells.scm @@ -511,11 +511,11 @@ Its features include: (license bsd-2)))) =20 (define-public s-shell - (let ((commit "6604341edb3a775ff94415762af3ee9bd86bfb3c") - (revision "1")) + (let ((commit "da2e5c20c0c5f477ec3426dc2584889a789b1659") + (revision "2")) (package (name "s-shell") - (version (string-append "0.0.0-" revision "." (string-take commit 7)= )) + (version (git-version "0.0.0" revision commit)) (source (origin (method git-fetch) @@ -525,13 +525,15 @@ Its features include: (file-name (string-append name "-" version "-checkout")) (sha256 (base32 - "1075cml6dl15d770j3m12yz90cjacsdslbv3gank1nxd76vmpdcr")))) + "0qiny71ww5nhzy4mnc8652hn0mlxyb67h333gbdxp4j4qxsi13q4")))) (build-system gnu-build-system) (inputs `(("linenoise" ,linenoise))) (arguments `(#:tests? #f - #:make-flags (list "CC=3Dgcc") + #:make-flags (list "CC=3Dgcc" + (string-append "PREFIX=3D" + (assoc-ref %outputs "out"))) #:phases (modify-phases %standard-phases (add-after 'unpack 'install-directory-fix --=20 2.15.1 --bzutgtmxhl5sw6v4-- --vaabpzivuqzprles Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEqIyK3RKYKNfqwC5S4i+bv+40hYgFAloyfSsACgkQ4i+bv+40 hYiA4A/6ApoJ/RMep8dR2XigUrrwLnLRCjJPVWK2iecDR+hJEXxnh5xuzq6b9Y1r juC7QVh3F1DlE3QPOvsNEenHgVDmQWEL6xqIgNI60j+04/gSvov/3pj9HVqrDR/V YpICfAb2z/D6sdOvsiuvPejTJg/D0oP3PLuGZ7WwepFCNUwIoW2t+0vFjZCkZjzy +sOHRWJtUhZIO2AFoEHs9SIcfCa5988V+rWi7qVWx69pxafuPUPi+xj+zekM39m0 +OmGdfvsANspH+vxSGGau1LbOMV29/G9n77UVNshWObi3m+cUMcy/23INTlyB7OO 8kedL0qy9+X40kdpFmX+wswnYmhzMbi7e+qiEabFOGYiAauy1rHmHJGI5+RgFftB mZAINMOHiZB9SK6EIBKBH5piL7mppP4woqKmoVQgNLplS13bb7RpEc2VpMmoqxr4 wq07gFlueu7ah7JFlW5paZUdWrruI2JVr709fSd1CquNWDeF4lnQM45Vqzg2FwAB ZSnQM7tGCHcuvIbhq/5GTNAy9DtIGhjBKRsk84N5Xic2wk/cW92nkmL2AkDDEEz5 C3+se9VdaQvH6a8u75DIINU4eTQtBkFyd61I4p4YZUIGJoSVggl1ox5YCTpBltup ucNRvpiw8r8vn9IYpu45bEUHOtHhux1bBu9wVYy7Q8dS0q2kMuw= =vRx0 -----END PGP SIGNATURE----- --vaabpzivuqzprles--