unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* [PATCH 1/1] Go: Update to 1.7
@ 2016-08-17  9:34 Petter
  2016-08-17 15:54 ` Alex Griffin
  0 siblings, 1 reply; 8+ messages in thread
From: Petter @ 2016-08-17  9:34 UTC (permalink / raw)
  To: guix-devel

Hi,

Made an attempt to update my first package.

Hope it's good!


---
  gnu/packages/golang.scm | 17 ++++++++++-------
  1 file changed, 10 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 09d962d..6e15cf6 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -185,11 +185,11 @@ garbage collection, various safety features and in 
the style of communicating
  sequential processes (CSP) concurrent programming features added.")
      (license license:bsd-3)))

-(define-public go-1.6
+(define-public go-1.7
    (package
      (inherit go-1.4)
      (name "go")
-    (version "1.6.3")
+    (version "1.7")
      (source
       (origin
         (method url-fetch)
@@ -197,7 +197,7 @@ sequential processes (CSP) concurrent programming 
features added.")
                             name version ".src.tar.gz"))
         (sha256
          (base32
-         "002v6irgfd63zp9iza8nski5by0lar033j3ddpqiikw6bznsw9k3"))))
+         "1h712yd5wk5mrj2dixc9z2xlgksfks00yvglrkrgr488p8b0qs3j"))))
      (arguments
       (substitute-keyword-arguments (package-arguments go-1.4)
         ((#:phases phases)
@@ -216,11 +216,14 @@ sequential processes (CSP) concurrent programming 
features added.")
                   ;; Removing net/ tests, which fail when attempting to 
access
                   ;; network resources not present in the build 
container.
                   (for-each delete-file
-                           '("net/listen_test.go" "net/parse_test.go"))
+                           '("net/listen_test.go"
+                             "net/parse_test.go"
+                             "net/cgo_unix_test.go"))

                   (substitute* "os/os_test.go"
                     (("/usr/bin") (getcwd))
-                   (("/bin/pwd") (which "pwd")))
+                   (("/bin/pwd") (which "pwd"))
+                   (("/bin/sh") (which "sh")))

                   ;; Add libgcc to runpath
                   (substitute* "cmd/link/internal/ld/lib.go"
@@ -275,7 +278,7 @@ sequential processes (CSP) concurrent programming 
features added.")

                   ;; fix shebang for testar script
                   ;; note the target script is generated at build time.
-                 (substitute* "../misc/cgo/testcarchive/test.bash"
+                 (substitute* 
"../misc/cgo/testcarchive/carchive_test.go"
                     (("#!/usr/bin/env") (string-append "#!" (which 
"env"))))

                   (substitute* "net/lookup_unix.go"
@@ -336,4 +339,4 @@ sequential processes (CSP) concurrent programming 
features added.")
       `(("go" ,go-1.4)
         ,@(package-native-inputs go-1.4)))))

-(define-public go go-1.6)
+(define-public go go-1.7)
-- 
2.9.3

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* Re: [PATCH 1/1] Go: Update to 1.7
  2016-08-17  9:34 [PATCH 1/1] Go: Update to 1.7 Petter
@ 2016-08-17 15:54 ` Alex Griffin
  2016-08-17 17:20   ` Petter
  2016-08-20  0:07   ` Leo Famulari
  0 siblings, 2 replies; 8+ messages in thread
From: Alex Griffin @ 2016-08-17 15:54 UTC (permalink / raw)
  To: Petter, guix-devel

[-- Attachment #1: Type: text/plain, Size: 464 bytes --]

On Wed, Aug 17, 2016, at 04:34 AM, Petter wrote:
> Hi,
> 
> Made an attempt to update my first package.
> 
> Hope it's good!

Hi Petter,

Thanks for contributing! Your changes work for me, but it looks like
your mail client mangled the formatting of your patch. So I produced a
good patch with your changes, and added a copyright line and commit
message for you. Hopefully that will make it easier for someone with
commit access to look it over.

-- 
Alex Griffin

[-- Attachment #2: 0001-gnu-go-Update-to-1.7.patch --]
[-- Type: text/plain, Size: 3324 bytes --]

From f2f28e088f2a3f833251c2b31de7e6f531bcdf9a Mon Sep 17 00:00:00 2001
From: Petter <petter@mykolab.ch>
Date: Wed, 17 Aug 2016 10:27:04 -0500
Subject: [PATCH] gnu: go: Update to 1.7.

* gnu/packages/golang.scm (go-1.6): Update to 1.7, with corresponding
  minor changes to prebuild phase, and rename variable to...
  (go-1.7): ...this new variable.
  (go): Inherit from new "go-1.7".
---
 gnu/packages/golang.scm | 18 +++++++++++-------
 1 file changed, 11 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 09d962d..afa3a36 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -3,6 +3,7 @@
 ;;; Copyright © 2016 Matthew Jordan <matthewjordandevops@yandex.com>
 ;;; Copyright © 2016 Andy Wingo <wingo@igalia.com>
 ;;; Copyright © 2016 Ludovic Courtès <ludo@gnu.org>
+;;; Copyright © 2016 Petter <petter@mykolab.ch>
 ;;;
 ;;; This file is an addendum GNU Guix.
 ;;;
@@ -185,11 +186,11 @@ garbage collection, various safety features and in the style of communicating
 sequential processes (CSP) concurrent programming features added.")
     (license license:bsd-3)))
 
-(define-public go-1.6
+(define-public go-1.7
   (package
     (inherit go-1.4)
     (name "go")
-    (version "1.6.3")
+    (version "1.7")
     (source
      (origin
        (method url-fetch)
@@ -197,7 +198,7 @@ sequential processes (CSP) concurrent programming features added.")
                            name version ".src.tar.gz"))
        (sha256
         (base32
-         "002v6irgfd63zp9iza8nski5by0lar033j3ddpqiikw6bznsw9k3"))))
+         "1h712yd5wk5mrj2dixc9z2xlgksfks00yvglrkrgr488p8b0qs3j"))))
     (arguments
      (substitute-keyword-arguments (package-arguments go-1.4)
        ((#:phases phases)
@@ -216,11 +217,14 @@ sequential processes (CSP) concurrent programming features added.")
                  ;; Removing net/ tests, which fail when attempting to access
                  ;; network resources not present in the build container.
                  (for-each delete-file
-                           '("net/listen_test.go" "net/parse_test.go"))
+                           '("net/listen_test.go"
+                             "net/parse_test.go"
+                             "net/cgo_unix_test.go"))
 
                  (substitute* "os/os_test.go"
                    (("/usr/bin") (getcwd))
-                   (("/bin/pwd") (which "pwd")))
+                   (("/bin/pwd") (which "pwd"))
+                   (("/bin/sh") (which "sh")))
 
                  ;; Add libgcc to runpath
                  (substitute* "cmd/link/internal/ld/lib.go"
@@ -275,7 +279,7 @@ sequential processes (CSP) concurrent programming features added.")
 
                  ;; fix shebang for testar script
                  ;; note the target script is generated at build time.
-                 (substitute* "../misc/cgo/testcarchive/test.bash"
+                 (substitute* "../misc/cgo/testcarchive/carchive_test.go"
                    (("#!/usr/bin/env") (string-append "#!" (which "env"))))
 
                  (substitute* "net/lookup_unix.go"
@@ -336,4 +340,4 @@ sequential processes (CSP) concurrent programming features added.")
      `(("go" ,go-1.4)
        ,@(package-native-inputs go-1.4)))))
 
-(define-public go go-1.6)
+(define-public go go-1.7)
-- 
2.9.3


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* Re: [PATCH 1/1] Go: Update to 1.7
  2016-08-17 15:54 ` Alex Griffin
@ 2016-08-17 17:20   ` Petter
  2016-08-20  0:27     ` Matthew Jordan
  2016-08-20  0:07   ` Leo Famulari
  1 sibling, 1 reply; 8+ messages in thread
From: Petter @ 2016-08-17 17:20 UTC (permalink / raw)
  To: Alex Griffin; +Cc: guix-devel

Hi Alex,

Great, thank you!


On 2016-08-17 17:54, Alex Griffin wrote:
> On Wed, Aug 17, 2016, at 04:34 AM, Petter wrote:
>> Hi,
>> 
>> Made an attempt to update my first package.
>> 
>> Hope it's good!
> 
> Hi Petter,
> 
> Thanks for contributing! Your changes work for me, but it looks like
> your mail client mangled the formatting of your patch. So I produced a
> good patch with your changes, and added a copyright line and commit
> message for you. Hopefully that will make it easier for someone with
> commit access to look it over.

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH 1/1] Go: Update to 1.7
  2016-08-17 15:54 ` Alex Griffin
  2016-08-17 17:20   ` Petter
@ 2016-08-20  0:07   ` Leo Famulari
  2016-08-20 10:20     ` Petter
  1 sibling, 1 reply; 8+ messages in thread
From: Leo Famulari @ 2016-08-20  0:07 UTC (permalink / raw)
  To: Alex Griffin; +Cc: guix-devel, Petter

On Wed, Aug 17, 2016 at 10:54:36AM -0500, Alex Griffin wrote:
> Thanks for contributing! Your changes work for me, but it looks like
> your mail client mangled the formatting of your patch. So I produced a
> good patch with your changes, and added a copyright line and commit
> message for you. Hopefully that will make it easier for someone with
> commit access to look it over.
> 
> -- 
> Alex Griffin

> From f2f28e088f2a3f833251c2b31de7e6f531bcdf9a Mon Sep 17 00:00:00 2001
> From: Petter <petter@mykolab.ch>
> Date: Wed, 17 Aug 2016 10:27:04 -0500
> Subject: [PATCH] gnu: go: Update to 1.7.
> 
> * gnu/packages/golang.scm (go-1.6): Update to 1.7, with corresponding
>   minor changes to prebuild phase, and rename variable to...
>   (go-1.7): ...this new variable.
>   (go): Inherit from new "go-1.7".

I have a working Syncthing [0] on x86_64 with this patch.

I noticed this during the test suite:

##### ../misc/cgo/testsanitizers
skipping msan tests: -fsanitize=memory not supported
gcc: error: -fsanitize=thread linking must be done with -pie or -shared
skipping tsan tests: -fsanitizer=thread build failed

I don't know whether or not that's a problem.

[0] WIP branch:
https://github.com/lfam/guix/commits/contrib-syncthing

>  ;;; Copyright ?? 2016 Matthew Jordan <matthewjordandevops@yandex.com>
>  ;;; Copyright ?? 2016 Andy Wingo <wingo@igalia.com>
>  ;;; Copyright ?? 2016 Ludovic Court??s <ludo@gnu.org>
> +;;; Copyright ?? 2016 Petter <petter@mykolab.ch>

Petter, I noticed your original patch did not add a line like this.
Please confirm the name and email address you'd prefer to use.
Pseudoynms are fine.

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH 1/1] Go: Update to 1.7
  2016-08-17 17:20   ` Petter
@ 2016-08-20  0:27     ` Matthew Jordan
  0 siblings, 0 replies; 8+ messages in thread
From: Matthew Jordan @ 2016-08-20  0:27 UTC (permalink / raw)
  To: Petter; +Cc: guix-devel

Hi all,

Sorry for the late reply, this week was busy one..
I'll take a closer look at it later tonight, presumming
anyone needs me to weigh in.

On first glance it looks ok though.

Respectuflly,

Matthew Jordan.

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH 1/1] Go: Update to 1.7
  2016-08-20  0:07   ` Leo Famulari
@ 2016-08-20 10:20     ` Petter
  2016-09-06  9:45       ` ng0
  2016-09-06 19:14       ` Efraim Flashner
  0 siblings, 2 replies; 8+ messages in thread
From: Petter @ 2016-08-20 10:20 UTC (permalink / raw)
  To: Leo Famulari; +Cc: guix-devel

On 2016-08-20 02:07, Leo Famulari wrote:
> On Wed, Aug 17, 2016 at 10:54:36AM -0500, Alex Griffin wrote:
>> Thanks for contributing! Your changes work for me, but it looks like
>> your mail client mangled the formatting of your patch. So I produced a
>> good patch with your changes, and added a copyright line and commit
>> message for you. Hopefully that will make it easier for someone with
>> commit access to look it over.
>> 
>> --
>> Alex Griffin
> 
>> From f2f28e088f2a3f833251c2b31de7e6f531bcdf9a Mon Sep 17 00:00:00 2001
>> From: Petter <petter@mykolab.ch>
>> Date: Wed, 17 Aug 2016 10:27:04 -0500
>> Subject: [PATCH] gnu: go: Update to 1.7.
>> 
>> * gnu/packages/golang.scm (go-1.6): Update to 1.7, with corresponding
>>   minor changes to prebuild phase, and rename variable to...
>>   (go-1.7): ...this new variable.
>>   (go): Inherit from new "go-1.7".
> 
> I have a working Syncthing [0] on x86_64 with this patch.
> 

Good, my testing on a couple of small programs have been successful as 
well.

> I noticed this during the test suite:
> 
> ##### ../misc/cgo/testsanitizers
> skipping msan tests: -fsanitize=memory not supported
> gcc: error: -fsanitize=thread linking must be done with -pie or -shared
> skipping tsan tests: -fsanitizer=thread build failed
> 
> I don't know whether or not that's a problem.
> 

Good catch, I did not notice this.

It could be an error by the Go team, ref:
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=703230

I don't know though if it would be correct for us in that case to add 
-fPIC to this call if that would solve it.

> [0] WIP branch:
> https://github.com/lfam/guix/commits/contrib-syncthing
> 
>>  ;;; Copyright ?? 2016 Matthew Jordan <matthewjordandevops@yandex.com>
>>  ;;; Copyright ?? 2016 Andy Wingo <wingo@igalia.com>
>>  ;;; Copyright ?? 2016 Ludovic Court??s <ludo@gnu.org>
>> +;;; Copyright ?? 2016 Petter <petter@mykolab.ch>
> 
> Petter, I noticed your original patch did not add a line like this.
> Please confirm the name and email address you'd prefer to use.
> Pseudoynms are fine.

Alex got it right, this is the name and e-mail address I want to use.

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH 1/1] Go: Update to 1.7
  2016-08-20 10:20     ` Petter
@ 2016-09-06  9:45       ` ng0
  2016-09-06 19:14       ` Efraim Flashner
  1 sibling, 0 replies; 8+ messages in thread
From: ng0 @ 2016-09-06  9:45 UTC (permalink / raw)
  To: Petter, Leo Famulari; +Cc: guix-devel

I just started working on this in my gogs-feature guix checkout, when
Petter pointed me to this patch.
Is it on someones todo inbox, or can someone commit it? The last comment
reads like go is good to go.

We'll find out about the sanitizing thing when someone with more go
knownledge runs into this I guess.

Petter <petter@mykolab.ch> writes:

> On 2016-08-20 02:07, Leo Famulari wrote:
>> On Wed, Aug 17, 2016 at 10:54:36AM -0500, Alex Griffin wrote:
>>> Thanks for contributing! Your changes work for me, but it looks like
>>> your mail client mangled the formatting of your patch. So I produced a
>>> good patch with your changes, and added a copyright line and commit
>>> message for you. Hopefully that will make it easier for someone with
>>> commit access to look it over.
>>> 
>>> --
>>> Alex Griffin
>> 
>>> From f2f28e088f2a3f833251c2b31de7e6f531bcdf9a Mon Sep 17 00:00:00 2001
>>> From: Petter <petter@mykolab.ch>
>>> Date: Wed, 17 Aug 2016 10:27:04 -0500
>>> Subject: [PATCH] gnu: go: Update to 1.7.
>>> 
>>> * gnu/packages/golang.scm (go-1.6): Update to 1.7, with corresponding
>>>   minor changes to prebuild phase, and rename variable to...
>>>   (go-1.7): ...this new variable.
>>>   (go): Inherit from new "go-1.7".
>> 
>> I have a working Syncthing [0] on x86_64 with this patch.
>> 
>
> Good, my testing on a couple of small programs have been successful as 
> well.
>
>> I noticed this during the test suite:
>> 
>> ##### ../misc/cgo/testsanitizers
>> skipping msan tests: -fsanitize=memory not supported
>> gcc: error: -fsanitize=thread linking must be done with -pie or -shared
>> skipping tsan tests: -fsanitizer=thread build failed
>> 
>> I don't know whether or not that's a problem.
>> 
>
> Good catch, I did not notice this.
>
> It could be an error by the Go team, ref:
> https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=703230
>
> I don't know though if it would be correct for us in that case to add 
> -fPIC to this call if that would solve it.
>
>> [0] WIP branch:
>> https://github.com/lfam/guix/commits/contrib-syncthing
>> 
>>>  ;;; Copyright ?? 2016 Matthew Jordan <matthewjordandevops@yandex.com>
>>>  ;;; Copyright ?? 2016 Andy Wingo <wingo@igalia.com>
>>>  ;;; Copyright ?? 2016 Ludovic Court??s <ludo@gnu.org>
>>> +;;; Copyright ?? 2016 Petter <petter@mykolab.ch>
>> 
>> Petter, I noticed your original patch did not add a line like this.
>> Please confirm the name and email address you'd prefer to use.
>> Pseudoynms are fine.
>
> Alex got it right, this is the name and e-mail address I want to use.
>

-- 
ng0
For non-prism friendly talk find me on http://www.psyced.org

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH 1/1] Go: Update to 1.7
  2016-08-20 10:20     ` Petter
  2016-09-06  9:45       ` ng0
@ 2016-09-06 19:14       ` Efraim Flashner
  1 sibling, 0 replies; 8+ messages in thread
From: Efraim Flashner @ 2016-09-06 19:14 UTC (permalink / raw)
  To: Petter; +Cc: guix-devel

[-- Attachment #1: Type: text/plain, Size: 2614 bytes --]

On Sat, Aug 20, 2016 at 12:20:30PM +0200, Petter wrote:
> On 2016-08-20 02:07, Leo Famulari wrote:
> > On Wed, Aug 17, 2016 at 10:54:36AM -0500, Alex Griffin wrote:
> > > Thanks for contributing! Your changes work for me, but it looks like
> > > your mail client mangled the formatting of your patch. So I produced a
> > > good patch with your changes, and added a copyright line and commit
> > > message for you. Hopefully that will make it easier for someone with
> > > commit access to look it over.
> > > 
> > > --
> > > Alex Griffin
> > 
> > > From f2f28e088f2a3f833251c2b31de7e6f531bcdf9a Mon Sep 17 00:00:00 2001
> > > From: Petter <petter@mykolab.ch>
> > > Date: Wed, 17 Aug 2016 10:27:04 -0500
> > > Subject: [PATCH] gnu: go: Update to 1.7.
> > > 
> > > * gnu/packages/golang.scm (go-1.6): Update to 1.7, with corresponding
> > >   minor changes to prebuild phase, and rename variable to...
> > >   (go-1.7): ...this new variable.
> > >   (go): Inherit from new "go-1.7".
> > 
> > I have a working Syncthing [0] on x86_64 with this patch.
> > 
> 
> Good, my testing on a couple of small programs have been successful as well.
> 
> > I noticed this during the test suite:
> > 
> > ##### ../misc/cgo/testsanitizers
> > skipping msan tests: -fsanitize=memory not supported
> > gcc: error: -fsanitize=thread linking must be done with -pie or -shared
> > skipping tsan tests: -fsanitizer=thread build failed
> > 
> > I don't know whether or not that's a problem.
> > 
> 
> Good catch, I did not notice this.
> 
> It could be an error by the Go team, ref:
> https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=703230
> 
> I don't know though if it would be correct for us in that case to add -fPIC
> to this call if that would solve it.
> 
> > [0] WIP branch:
> > https://github.com/lfam/guix/commits/contrib-syncthing
> > 
> > >  ;;; Copyright ?? 2016 Matthew Jordan <matthewjordandevops@yandex.com>
> > >  ;;; Copyright ?? 2016 Andy Wingo <wingo@igalia.com>
> > >  ;;; Copyright ?? 2016 Ludovic Court??s <ludo@gnu.org>
> > > +;;; Copyright ?? 2016 Petter <petter@mykolab.ch>
> > 
> > Petter, I noticed your original patch did not add a line like this.
> > Please confirm the name and email address you'd prefer to use.
> > Pseudoynms are fine.
> 
> Alex got it right, this is the name and e-mail address I want to use.
> 

Patch pushed!

-- 
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

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2016-09-06 19:15 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-08-17  9:34 [PATCH 1/1] Go: Update to 1.7 Petter
2016-08-17 15:54 ` Alex Griffin
2016-08-17 17:20   ` Petter
2016-08-20  0:27     ` Matthew Jordan
2016-08-20  0:07   ` Leo Famulari
2016-08-20 10:20     ` Petter
2016-09-06  9:45       ` ng0
2016-09-06 19:14       ` Efraim Flashner

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).