all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#26622: [PATCH] Add freexl
@ 2017-04-23 16:36 Catonano
  2017-04-23 20:32 ` Kei Kebreau
  2017-04-25 20:16 ` Ricardo Wurmus
  0 siblings, 2 replies; 17+ messages in thread
From: Catonano @ 2017-04-23 16:36 UTC (permalink / raw)
  To: 26622


[-- Attachment #1.1: Type: text/plain, Size: 310 bytes --]

Another xls files reading library.

The home page of Freexl says

FreeXL is licensed under the MPL tri-license terms; you are free to choose
the best-fit license between:

the MPL 1.1
the GPL v2.0 or any subsequent version
the LGPL v2.1 or any subsequent version

I'm not sure what this means for Guix

Thanks

[-- Attachment #1.2: Type: text/html, Size: 387 bytes --]

[-- Attachment #2: 0001-gnu-Add-freexl.patch --]
[-- Type: text/x-patch, Size: 1456 bytes --]

From d5f10229fb928f63404c6097c60e09f2c2a5b1bb Mon Sep 17 00:00:00 2001
From: humanitiesNerd <catonano@gmail.com>
Date: Sun, 23 Apr 2017 18:24:39 +0200
Subject: [PATCH 1/1] gnu: Add freexl

* gnu/packages/xml.scm (freexl): New variable.
---
 gnu/packages/xml.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm
index 7460b5d85..02ae00514 100644
--- a/gnu/packages/xml.scm
+++ b/gnu/packages/xml.scm
@@ -1122,3 +1122,23 @@ files.  It is designed to be fast and to handle large input files.")
      "libxls is a C library which can read Excel (xls) files since Excel 97 (the BIFF8 format).
 libxls cannot write Excel files.")
     (license license:bsd-2)))
+
+(define-public freexl
+  (package
+    (name "freexl")
+    (version "1.0.2")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "http://www.gaia-gis.it/gaia-sins/"
+                                  name  "-"
+                                  version ".tar.gz"))
+              (sha256
+               (base32
+                "17a0yrjb0gln7819j0vp7y25imhvwpil2b0rm44mwgzml0a4i6mk"))))
+    (build-system gnu-build-system)
+    (home-page "https://www.gaia-gis.it/fossil/freexl/index")
+    (synopsis "Read Excel files")
+    (description
+     "FreeXL is an open source library to extract valid data
+from within an Excel (.xls) spreadsheet.")
+    (license license:gpl2+)))
-- 
2.12.0


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

* bug#26622: [PATCH] Add freexl
  2017-04-23 16:36 bug#26622: [PATCH] Add freexl Catonano
@ 2017-04-23 20:32 ` Kei Kebreau
  2017-04-23 20:52   ` Catonano
  2017-04-24 14:30   ` Marius Bakke
  2017-04-25 20:16 ` Ricardo Wurmus
  1 sibling, 2 replies; 17+ messages in thread
From: Kei Kebreau @ 2017-04-23 20:32 UTC (permalink / raw)
  To: Catonano; +Cc: 26622

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

Catonano <catonano@gmail.com> writes:

> Another xls files reading library.
>
> The home page of Freexl says
>
> FreeXL is licensed under the MPL tri-license terms; you are free to choose the best-fit license
> between:
>
> the MPL 1.1
> the GPL v2.0 or any subsequent version
> the LGPL v2.1 or any subsequent version
>
> I'm not sure what this means for Guix
>
> Thanks
>

Just picking one should be fine. I believe that's what we do for GNU
IceCat, another piece of software under a similar tri-license. I'll
defer to someone else's better judgement though.

> From d5f10229fb928f63404c6097c60e09f2c2a5b1bb Mon Sep 17 00:00:00 2001
> From: humanitiesNerd <catonano@gmail.com>
> Date: Sun, 23 Apr 2017 18:24:39 +0200
> Subject: [PATCH 1/1] gnu: Add freexl
>
> * gnu/packages/xml.scm (freexl): New variable.
> ---
>  gnu/packages/xml.scm | 20 ++++++++++++++++++++
>  1 file changed, 20 insertions(+)
>
> diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm
> index 7460b5d85..02ae00514 100644
> --- a/gnu/packages/xml.scm
> +++ b/gnu/packages/xml.scm
> @@ -1122,3 +1122,23 @@ files.  It is designed to be fast and to handle large input files.")
>       "libxls is a C library which can read Excel (xls) files since Excel 97 (the BIFF8 format).
>  libxls cannot write Excel files.")
>      (license license:bsd-2)))
> +
> +(define-public freexl
> +  (package
> +    (name "freexl")
> +    (version "1.0.2")
> +    (source (origin
> +              (method url-fetch)
> +              (uri (string-append "http://www.gaia-gis.it/gaia-sins/"
> +                                  name  "-"
> +                                  version ".tar.gz"))
> +              (sha256
> +               (base32
> +                "17a0yrjb0gln7819j0vp7y25imhvwpil2b0rm44mwgzml0a4i6mk"))))
> +    (build-system gnu-build-system)
> +    (home-page "https://www.gaia-gis.it/fossil/freexl/index")
> +    (synopsis "Read Excel files")
> +    (description
> +     "FreeXL is an open source library to extract valid data
> +from within an Excel (.xls) spreadsheet.")
> +    (license license:gpl2+)))

The package builds and lints fine for me!

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

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

* bug#26622: [PATCH] Add freexl
  2017-04-23 20:32 ` Kei Kebreau
@ 2017-04-23 20:52   ` Catonano
  2017-04-24 14:30   ` Marius Bakke
  1 sibling, 0 replies; 17+ messages in thread
From: Catonano @ 2017-04-23 20:52 UTC (permalink / raw)
  To: Kei Kebreau; +Cc: 26622

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

2017-04-23 22:32 GMT+02:00 Kei Kebreau <kei@openmailbox.org>:

>
> Just picking one should be fine. I believe that's what we do for GNU
> IceCat, another piece of software under a similar tri-license. I'll
> defer to someone else's better judgement though.
>

[...]


> The package builds and lints fine for me!
>

Thank you, Kei

[-- Attachment #2: Type: text/html, Size: 857 bytes --]

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

* bug#26622: [PATCH] Add freexl
  2017-04-23 20:32 ` Kei Kebreau
  2017-04-23 20:52   ` Catonano
@ 2017-04-24 14:30   ` Marius Bakke
  1 sibling, 0 replies; 17+ messages in thread
From: Marius Bakke @ 2017-04-24 14:30 UTC (permalink / raw)
  To: Kei Kebreau, Catonano; +Cc: 26622

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

Kei Kebreau <kei@openmailbox.org> writes:

> Catonano <catonano@gmail.com> writes:
>
>> Another xls files reading library.
>>
>> The home page of Freexl says
>>
>> FreeXL is licensed under the MPL tri-license terms; you are free to choose the best-fit license
>> between:
>>
>> the MPL 1.1
>> the GPL v2.0 or any subsequent version
>> the LGPL v2.1 or any subsequent version
>>
>> I'm not sure what this means for Guix
>>
>> Thanks
>>
>
> Just picking one should be fine. I believe that's what we do for GNU
> IceCat, another piece of software under a similar tri-license. I'll
> defer to someone else's better judgement though.

Usually we list all of them. See e.g. "libcmis" or "python2-pycairo". I
don't think we should hide this fact from the end user.

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

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

* bug#26622: [PATCH] Add freexl
  2017-04-23 16:36 bug#26622: [PATCH] Add freexl Catonano
  2017-04-23 20:32 ` Kei Kebreau
@ 2017-04-25 20:16 ` Ricardo Wurmus
  2017-04-25 20:33   ` Catonano
  1 sibling, 1 reply; 17+ messages in thread
From: Ricardo Wurmus @ 2017-04-25 20:16 UTC (permalink / raw)
  To: Catonano; +Cc: 26622-done


Catonano <catonano@gmail.com> writes:

> Another xls files reading library.
>
> The home page of Freexl says
>
> FreeXL is licensed under the MPL tri-license terms; you are free to choose
> the best-fit license between:
>
> the MPL 1.1
> the GPL v2.0 or any subsequent version
> the LGPL v2.1 or any subsequent version
>
> I'm not sure what this means for Guix

This means that we write something like this:

    ;; Any of these licenses may be chosen.
    (license (list license:mpl1.1
                   license:gpl2+
                   license:lgpl2.1+))

> Subject: [PATCH 1/1] gnu: Add freexl
>
> * gnu/packages/xml.scm (freexl): New variable.
> ---
>  gnu/packages/xml.scm | 20 ++++++++++++++++++++
>  1 file changed, 20 insertions(+)
>
> diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm
> index 7460b5d85..02ae00514 100644
> --- a/gnu/packages/xml.scm
> +++ b/gnu/packages/xml.scm
> @@ -1122,3 +1122,23 @@ files.  It is designed to be fast and to handle large input files.")
>       "libxls is a C library which can read Excel (xls) files since Excel 97 (the BIFF8 format).
>  libxls cannot write Excel files.")
>      (license license:bsd-2)))
> +
> +(define-public freexl
> +  (package
> +    (name "freexl")
> +    (version "1.0.2")
> +    (source (origin
> +              (method url-fetch)
> +              (uri (string-append "http://www.gaia-gis.it/gaia-sins/"
> +                                  name  "-"
> +                                  version ".tar.gz"))

I’d join these two lines.

> +              (sha256
> +               (base32
> +                "17a0yrjb0gln7819j0vp7y25imhvwpil2b0rm44mwgzml0a4i6mk"))))
> +    (build-system gnu-build-system)
> +    (home-page "https://www.gaia-gis.it/fossil/freexl/index")
> +    (synopsis "Read Excel files")
> +    (description
> +     "FreeXL is an open source library to extract valid data
> +from within an Excel (.xls) spreadsheet.")

Please don’t use the term “open source”; besides, all software in Guix
is free software anyway.  Just “FreeXL is a C library to extract …” is
sufficient.

Pushed with these changes to master with commit 623fb4d16.

Thanks!

--
Ricardo

GPG: BCA6 89B6 3655 3801 C3C6  2150 197A 5888 235F ACAC
https://elephly.net

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

* bug#26622: [PATCH] Add freexl
  2017-04-25 20:16 ` Ricardo Wurmus
@ 2017-04-25 20:33   ` Catonano
  2017-04-25 20:41     ` Catonano
  0 siblings, 1 reply; 17+ messages in thread
From: Catonano @ 2017-04-25 20:33 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: 26622-done

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

2017-04-25 22:16 GMT+02:00 Ricardo Wurmus <rekado@elephly.net>:

>
> Catonano <catonano@gmail.com> writes:
>
>
> Pushed with these changes to master with commit 623fb4d16.
>
> Thanks!
>

Well, thanks to you, Ricardo !

[-- Attachment #2: Type: text/html, Size: 630 bytes --]

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

* bug#26622: [PATCH] Add freexl
  2017-04-25 20:33   ` Catonano
@ 2017-04-25 20:41     ` Catonano
  2017-04-26  6:45       ` Ricardo Wurmus
  0 siblings, 1 reply; 17+ messages in thread
From: Catonano @ 2017-04-25 20:41 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: 26622-done

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

Ehm,

the author is "Catonano" rather than "humanitiesNerd"
http://git.savannah.gnu.org/cgit/guix.git/commit/?id=623fb4d1629adfa97e3fe412d394ca0490742f29

Did I mess up my email settings ?

Should I update any email mapping now ?

[-- Attachment #2: Type: text/html, Size: 527 bytes --]

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

* bug#26622: [PATCH] Add freexl
  2017-04-25 20:41     ` Catonano
@ 2017-04-26  6:45       ` Ricardo Wurmus
  2017-04-26  7:52         ` Catonano
  0 siblings, 1 reply; 17+ messages in thread
From: Ricardo Wurmus @ 2017-04-26  6:45 UTC (permalink / raw)
  To: Catonano; +Cc: 26622-done


Catonano <catonano@gmail.com> writes:

> Ehm,
>
> the author is "Catonano" rather than "humanitiesNerd"
> http://git.savannah.gnu.org/cgit/guix.git/commit/?id=623fb4d1629adfa97e3fe412d394ca0490742f29

Oh, I’m sorry.

> Did I mess up my email settings ?

No, I copied the attribution line from another file that you had
contributed to.  Should we replace all “humanitiesNerd” with “Catonano”?

--
Ricardo

GPG: BCA6 89B6 3655 3801 C3C6  2150 197A 5888 235F ACAC
https://elephly.net

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

* bug#26622: [PATCH] Add freexl
  2017-04-26  6:45       ` Ricardo Wurmus
@ 2017-04-26  7:52         ` Catonano
  2017-04-27 10:54           ` Ricardo Wurmus
  0 siblings, 1 reply; 17+ messages in thread
From: Catonano @ 2017-04-26  7:52 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: 26622-done

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

2017-04-26 8:45 GMT+02:00 Ricardo Wurmus <rekado@elephly.net>:

>
> Catonano <catonano@gmail.com> writes:
>
> > Ehm,
> >
> > the author is "Catonano" rather than "humanitiesNerd"
> > http://git.savannah.gnu.org/cgit/guix.git/commit/?id=
> 623fb4d1629adfa97e3fe412d394ca0490742f29
>
> Oh, I’m sorry.
>
> > Did I mess up my email settings ?
>
> No, I copied the attribution line from another file that you had
> contributed to.


Ah, so I messed up a copyright attribution. I apologize, it slipped :-/



> Should we replace all “humanitiesNerd” with “Catonano”?
>

You know what ? We could take this opportunity to switch all my
contributions to my real name, rather than this silly nickname

We could replace all the occurrences of "humanitiesNerd" with "Adriano
Peluso"

Should I send a patch, for this ?

[-- Attachment #2: Type: text/html, Size: 1670 bytes --]

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

* bug#26622: [PATCH] Add freexl
  2017-04-26  7:52         ` Catonano
@ 2017-04-27 10:54           ` Ricardo Wurmus
  2017-04-28 16:40             ` Catonano
  0 siblings, 1 reply; 17+ messages in thread
From: Ricardo Wurmus @ 2017-04-27 10:54 UTC (permalink / raw)
  To: Catonano; +Cc: 26622-done


Catonano <catonano@gmail.com> writes:

> 2017-04-26 8:45 GMT+02:00 Ricardo Wurmus <rekado@elephly.net>:
>> Should we replace all “humanitiesNerd” with “Catonano”?
>>
>
> You know what ? We could take this opportunity to switch all my
> contributions to my real name, rather than this silly nickname
>
> We could replace all the occurrences of "humanitiesNerd" with "Adriano
> Peluso"
>
> Should I send a patch, for this ?

Yes, it’s best for you to send a patch.  I’ll apply it.

-- 
Ricardo

GPG: BCA6 89B6 3655 3801 C3C6  2150 197A 5888 235F ACAC
https://elephly.net

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

* bug#26622: [PATCH] Add freexl
  2017-04-27 10:54           ` Ricardo Wurmus
@ 2017-04-28 16:40             ` Catonano
  2017-04-29 17:58               ` Catonano
  0 siblings, 1 reply; 17+ messages in thread
From: Catonano @ 2017-04-28 16:40 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: 26622-done


[-- Attachment #1.1: Type: text/plain, Size: 227 bytes --]

2017-04-27 12:54 GMT+02:00 Ricardo Wurmus <rekado@elephly.net


> > Should I send a patch, for this ?
>
> Yes, it’s best for you to send a patch.  I’ll apply it.
>
>
Ok, so: here it is
I hope it's ok
Thank you !

[-- Attachment #1.2: Type: text/html, Size: 662 bytes --]

[-- Attachment #2: 0001-fixed-my-own-name-in-copyright-attribtions.patch --]
[-- Type: text/x-patch, Size: 2391 bytes --]

From cf36f995b788e73cff5370db5b5969b6736d71e1 Mon Sep 17 00:00:00 2001
From: humanitiesNerd <catonano@gmail.com>
Date: Fri, 28 Apr 2017 18:34:56 +0200
Subject: [PATCH 1/1] fixed my own name in copyright attribtions

* gnu/packages/emacs.scm: fixed te copyright line about myself
* gnu/packages/perl.scl: idem
* gnu/packkages/python.scm: idem
* gnu/packkages/xml.scm: idem
---
 gnu/packages/emacs.scm  | 2 +-
 gnu/packages/perl.scm   | 2 +-
 gnu/packages/python.scm | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 14d851184..a2b34ac04 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -7,7 +7,7 @@
 ;;; Copyright © 2015, 2016, 2017 Ricardo Wurmus <rekado@elephly.net>
 ;;; Copyright © 2016, 2017 Chris Marusich <cmmarusich@gmail.com>
 ;;; Copyright © 2015, 2016 Christopher Allan Webber <cwebber@dustycloud.org>
-;;; Copyright © 2016 humanitiesNerd <catonano@gmail.com>
+;;; Copyright © 2016 Adriano Peluso <catonano@gmail.com>
 ;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
 ;;; Copyright © 2016 David Thompson <davet@gnu.org>
 ;;; Copyright © 2016 Matthew Jordan <matthewjordandevops@yandex.com>
diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index 3eb7815f2..812d7548c 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -14,7 +14,7 @@
 ;;; Copyright © 2016 Jan Nieuwenhuizen <janneke@gnu.org>
 ;;; Copyright © 2017 Raoul J.P. Bonnal <ilpuccio.febo@gmail.com>
 ;;; Copyright © 2017 Marius Bakke <mbakke@fastmail.com>
-;;; Copyright © 2017 humanitiesNerd <catonano@gmail.com>
+;;; Copyright © 2017 Adriano Peluso <catonano@gmail.com>
 ;;; Copyright © 2017 Tobias Geerinckx-Rice <me@tobias.gr>
 ;;;
 ;;; This file is part of GNU Guix.
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index e51405bd9..71d29eea4 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -36,7 +36,7 @@
 ;;; Copyright © 2016, 2017 Thomas Danckaert <post@thomasdanckaert.be>
 ;;; Copyright © 2017 Carlo Zancanaro <carlo@zancanaro.id.au>
 ;;; Copyright © 2017 Frederick M. Muriithi <fredmanglis@gmail.com>
-;;; Copyright © 2017 humanitiesNerd <catonano@gmail.com>
+;;; Copyright © 2017 Adriano Peluso <catonano@gmail.com>
 ;;; Copyright © 2017 Ben Sturmfels <ben@sturm.com.au>
 ;;;
 ;;; This file is part of GNU Guix.
-- 
2.12.0


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

* bug#26622: [PATCH] Add freexl
  2017-04-28 16:40             ` Catonano
@ 2017-04-29 17:58               ` Catonano
  2017-04-29 18:02                 ` Catonano
  0 siblings, 1 reply; 17+ messages in thread
From: Catonano @ 2017-04-29 17:58 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: 26622-done

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

2017-04-28 18:40 GMT+02:00 Catonano <catonano@gmail.com>:

> 2017-04-27 12:54 GMT+02:00 Ricardo Wurmus <rekado@elephly.net
>
>
>> > Should I send a patch, for this ?
>>
>> Yes, it’s best for you to send a patch.  I’ll apply it.
>>
>>
> Ok, so: here it is
> I hope it's ok
> Thank you !
>


Wait ! This patch is missing one file ! 😯

I'll send a new one in a while !

[-- Attachment #2: Type: text/html, Size: 1255 bytes --]

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

* bug#26622: [PATCH] Add freexl
  2017-04-29 17:58               ` Catonano
@ 2017-04-29 18:02                 ` Catonano
  2017-05-08  0:24                   ` Leo Famulari
  0 siblings, 1 reply; 17+ messages in thread
From: Catonano @ 2017-04-29 18:02 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: 26622-done


[-- Attachment #1.1: Type: text/plain, Size: 548 bytes --]

Ok, her is the new one

It contains them all, this time

2017-04-29 19:58 GMT+02:00 Catonano <catonano@gmail.com>:

>
>
> 2017-04-28 18:40 GMT+02:00 Catonano <catonano@gmail.com>:
>
>> 2017-04-27 12:54 GMT+02:00 Ricardo Wurmus <rekado@elephly.net
>>
>>
>>> > Should I send a patch, for this ?
>>>
>>> Yes, it’s best for you to send a patch.  I’ll apply it.
>>>
>>>
>> Ok, so: here it is
>> I hope it's ok
>> Thank you !
>>
>
>
> Wait ! This patch is missing one file ! 😯
>
> I'll send a new one in a while !
>
>

[-- Attachment #1.2: Type: text/html, Size: 1766 bytes --]

[-- Attachment #2: 0001-fixed-my-own-name-in-copyright-attribtions.patch --]
[-- Type: text/x-patch, Size: 2935 bytes --]

From 2ca26fd7b797e9890045fb15cb249f68f44a26ed Mon Sep 17 00:00:00 2001
From: humanitiesNerd <catonano@gmail.com>
Date: Fri, 28 Apr 2017 18:34:56 +0200
Subject: [PATCH 1/1] fixed my own name in copyright attribtions

* gnu/packages/emacs.scm: fixed te copyright line about myself
* gnu/packages/perl.scl: idem
* gnu/packkages/python.scm: idem
* gnu/packkages/xml.scm: idem
---
 gnu/packages/emacs.scm  | 2 +-
 gnu/packages/perl.scm   | 2 +-
 gnu/packages/python.scm | 2 +-
 gnu/packages/xml.scm    | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 14d851184..a2b34ac04 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -7,7 +7,7 @@
 ;;; Copyright © 2015, 2016, 2017 Ricardo Wurmus <rekado@elephly.net>
 ;;; Copyright © 2016, 2017 Chris Marusich <cmmarusich@gmail.com>
 ;;; Copyright © 2015, 2016 Christopher Allan Webber <cwebber@dustycloud.org>
-;;; Copyright © 2016 humanitiesNerd <catonano@gmail.com>
+;;; Copyright © 2016 Adriano Peluso <catonano@gmail.com>
 ;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
 ;;; Copyright © 2016 David Thompson <davet@gnu.org>
 ;;; Copyright © 2016 Matthew Jordan <matthewjordandevops@yandex.com>
diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index 3eb7815f2..812d7548c 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -14,7 +14,7 @@
 ;;; Copyright © 2016 Jan Nieuwenhuizen <janneke@gnu.org>
 ;;; Copyright © 2017 Raoul J.P. Bonnal <ilpuccio.febo@gmail.com>
 ;;; Copyright © 2017 Marius Bakke <mbakke@fastmail.com>
-;;; Copyright © 2017 humanitiesNerd <catonano@gmail.com>
+;;; Copyright © 2017 Adriano Peluso <catonano@gmail.com>
 ;;; Copyright © 2017 Tobias Geerinckx-Rice <me@tobias.gr>
 ;;;
 ;;; This file is part of GNU Guix.
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index e51405bd9..71d29eea4 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -36,7 +36,7 @@
 ;;; Copyright © 2016, 2017 Thomas Danckaert <post@thomasdanckaert.be>
 ;;; Copyright © 2017 Carlo Zancanaro <carlo@zancanaro.id.au>
 ;;; Copyright © 2017 Frederick M. Muriithi <fredmanglis@gmail.com>
-;;; Copyright © 2017 humanitiesNerd <catonano@gmail.com>
+;;; Copyright © 2017 Adriano Peluso <catonano@gmail.com>
 ;;; Copyright © 2017 Ben Sturmfels <ben@sturm.com.au>
 ;;;
 ;;; This file is part of GNU Guix.
diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm
index 247107917..25bda0d5a 100644
--- a/gnu/packages/xml.scm
+++ b/gnu/packages/xml.scm
@@ -14,7 +14,7 @@
 ;;; Copyright © 2016, 2017 ng0 <contact.ng0@cryptolab.net>
 ;;; Copyright © 2016 Tobias Geerinckx-Rice <me@tobias.gr>
 ;;; Copyright © 2016, 2017 Marius Bakke <mbakke@fastmail.com>
-;;; Copyright © 2017 humanitiesNerd <catonano@gmail.com>
+;;; Copyright © 2017 Adriano Peluso <catonano@gmail.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
-- 
2.12.0


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

* bug#26622: [PATCH] Add freexl
  2017-04-29 18:02                 ` Catonano
@ 2017-05-08  0:24                   ` Leo Famulari
  2017-05-08  4:04                     ` Catonano
  0 siblings, 1 reply; 17+ messages in thread
From: Leo Famulari @ 2017-05-08  0:24 UTC (permalink / raw)
  To: Catonano; +Cc: Ricardo Wurmus, 26622-done

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

On Sat, Apr 29, 2017 at 08:02:23PM +0200, Catonano wrote:
> From 2ca26fd7b797e9890045fb15cb249f68f44a26ed Mon Sep 17 00:00:00 2001
> From: humanitiesNerd <catonano@gmail.com>
> Date: Fri, 28 Apr 2017 18:34:56 +0200
> Subject: [PATCH 1/1] fixed my own name in copyright attribtions
> 
> * gnu/packages/emacs.scm: fixed te copyright line about myself
> * gnu/packages/perl.scl: idem
> * gnu/packkages/python.scm: idem
> * gnu/packkages/xml.scm: idem

Thanks! I pushed it as f9f67fcb0f198e95cff5a14ad332bccc2ffc3221.

Unfortunately, after I pushed it, I noticed that I made a mistake when
rewriting your name in the "Author" field of the Git commit. I'm very
sorry that I misspelled your name!

By the way, the Git "Author" field corresponds to the "From" field in
your message:

> From 2ca26fd7b797e9890045fb15cb249f68f44a26ed Mon Sep 17 00:00:00 2001
> From: humanitiesNerd <catonano@gmail.com>
> Date: Fri, 28 Apr 2017 18:34:56 +0200
> Subject: [PATCH 1/1] fixed my own name in copyright attribtions

So, I manually changed it like this:

$ git commit --amend --author=...

And that's when I made the mistake :(

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

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

* bug#26622: [PATCH] Add freexl
  2017-05-08  0:24                   ` Leo Famulari
@ 2017-05-08  4:04                     ` Catonano
  2017-05-08 17:58                       ` Leo Famulari
  0 siblings, 1 reply; 17+ messages in thread
From: Catonano @ 2017-05-08  4:04 UTC (permalink / raw)
  To: Leo Famulari; +Cc: Ricardo Wurmus, 26622-done

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

2017-05-08 2:24 GMT+02:00 Leo Famulari <leo@famulari.name>:

> On Sat, Apr 29, 2017 at 08:02:23PM +0200, Catonano wrote:
> > From 2ca26fd7b797e9890045fb15cb249f68f44a26ed Mon Sep 17 00:00:00 2001
> > From: humanitiesNerd <catonano@gmail.com>
> > Date: Fri, 28 Apr 2017 18:34:56 +0200
> > Subject: [PATCH 1/1] fixed my own name in copyright attribtions
> >
> > * gnu/packages/emacs.scm: fixed te copyright line about myself
> > * gnu/packages/perl.scl: idem
> > * gnu/packkages/python.scm: idem
> > * gnu/packkages/xml.scm: idem
>
> Thanks! I pushed it as f9f67fcb0f198e95cff5a14ad332bccc2ffc3221.
>
> Unfortunately, after I pushed it, I noticed that I made a mistake when
> rewriting your name in the "Author" field of the Git commit. I'm very
> sorry that I misspelled your name!
>
> By the way, the Git "Author" field corresponds to the "From" field in
> your message:
>
> > From 2ca26fd7b797e9890045fb15cb249f68f44a26ed Mon Sep 17 00:00:00 2001
> > From: humanitiesNerd <catonano@gmail.com>
> > Date: Fri, 28 Apr 2017 18:34:56 +0200
> > Subject: [PATCH 1/1] fixed my own name in copyright attribtions
>
> So, I manually changed it like this:
>
> $ git commit --amend --author=...
>
> And that's when I made the mistake :(
>

Leo, it's ok, don't sweat it !

The git log search for "catonano" returns a mixture of "humanitiesNerd",
"Catonano" and "Adriana Peluso" now 😁

This might console you: this happened to me in high school. They kept
messing up my name on the official documents, especially documents
reporting my final grade results at the end of each year

There must be something that triggers some cognitive slope in my name. Who
knows

Thank you both !

P.S. there's a patch bundle of mine pending, it's about Tryton, I'd LOVE of
someone could review it !

Thanks !

[-- Attachment #2: Type: text/html, Size: 2674 bytes --]

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

* bug#26622: [PATCH] Add freexl
  2017-05-08  4:04                     ` Catonano
@ 2017-05-08 17:58                       ` Leo Famulari
  2017-05-09 16:46                         ` Catonano
  0 siblings, 1 reply; 17+ messages in thread
From: Leo Famulari @ 2017-05-08 17:58 UTC (permalink / raw)
  To: Catonano; +Cc: 26622-done

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

On Mon, May 08, 2017 at 06:04:38AM +0200, Catonano wrote:
> Leo, it's ok, don't sweat it !
> 
> The git log search for "catonano" returns a mixture of "humanitiesNerd",
> "Catonano" and "Adriana Peluso" now 😁
> 
> This might console you: this happened to me in high school. They kept
> messing up my name on the official documents, especially documents
> reporting my final grade results at the end of each year
> 
> There must be something that triggers some cognitive slope in my name. Who
> knows
> 
> Thank you both !

Alright, we'll get it right soon enough :)

> P.S. there's a patch bundle of mine pending, it's about Tryton, I'd LOVE of
> someone could review it !

Arun is reviewing it, please poke me if it needs more attention :)

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

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

* bug#26622: [PATCH] Add freexl
  2017-05-08 17:58                       ` Leo Famulari
@ 2017-05-09 16:46                         ` Catonano
  0 siblings, 0 replies; 17+ messages in thread
From: Catonano @ 2017-05-09 16:46 UTC (permalink / raw)
  To: Leo Famulari; +Cc: 26622-done

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

2017-05-08 19:58 GMT+02:00 Leo Famulari <leo@famulari.name>:

>
> > P.S. there's a patch bundle of mine pending, it's about Tryton, I'd LOVE
> of
> > someone could review it !
>
> Arun is reviewing it, please poke me if it needs more attention :)
>

I will !

Thanks !

[-- Attachment #2: Type: text/html, Size: 692 bytes --]

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

end of thread, other threads:[~2017-05-09 16:47 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-04-23 16:36 bug#26622: [PATCH] Add freexl Catonano
2017-04-23 20:32 ` Kei Kebreau
2017-04-23 20:52   ` Catonano
2017-04-24 14:30   ` Marius Bakke
2017-04-25 20:16 ` Ricardo Wurmus
2017-04-25 20:33   ` Catonano
2017-04-25 20:41     ` Catonano
2017-04-26  6:45       ` Ricardo Wurmus
2017-04-26  7:52         ` Catonano
2017-04-27 10:54           ` Ricardo Wurmus
2017-04-28 16:40             ` Catonano
2017-04-29 17:58               ` Catonano
2017-04-29 18:02                 ` Catonano
2017-05-08  0:24                   ` Leo Famulari
2017-05-08  4:04                     ` Catonano
2017-05-08 17:58                       ` Leo Famulari
2017-05-09 16:46                         ` Catonano

Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.