mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Roland Hieber <rhi@pengutronix.de>
To: "Uwe Kleine-König" <u.kleine-koenig@pengutronix.de>
Cc: barebox@lists.infradead.org, Ahmad Fatoum <a.fatoum@pengutronix.de>
Subject: Re: [PATCH] arch/arm/boards: Replace license and copyright boilerplate by SPDX identfiers
Date: Wed, 29 Apr 2020 17:52:31 +0200	[thread overview]
Message-ID: <20200429155231.k5cikwjxek6tozr3@pengutronix.de> (raw)
In-Reply-To: <20200429134156.heqow7sqyilgwgwp@pengutronix.de>

On Wed, Apr 29, 2020 at 03:41:56PM +0200, Uwe Kleine-König wrote:
> Hallo Roland,
> 
> first of all thanks for your feedback.
> 
> On Wed, Apr 29, 2020 at 12:50:45PM +0200, Roland Hieber wrote:
> > On Tue, Apr 28, 2020 at 03:24:05PM +0200, Uwe Kleine-König wrote:
> > > diff --git a/arch/arm/boards/embedsky-e9/board.c b/arch/arm/boards/embedsky-e9/board.c
> > > index e5f92636fbc3..e86d1700376b 100644
> > > --- a/arch/arm/boards/embedsky-e9/board.c
> > > +++ b/arch/arm/boards/embedsky-e9/board.c
> > > @@ -1,21 +1,12 @@
> > > +// SPDX-License-Identifier: GPL-2.0-or-later
> > > +// SPDX-FileCopyrightText: © 2014 Andrey Panov <rockford@yandex.ru>
> > > +
> > >  /*
> > > - * Copyright (C) 2014 Andrey Panov <rockford@yandex.ru>
> > > - *
> > >   * based on arch/arm/boards/freescale-mx6-sabresd/board.c
> > >   * Copyright (C) 2013 Hubert Feurstein <h.feurstein@gmail.com>
> > >   *
> > >   * based on arch/arm/boards/freescale-mx6-sabrelite/board.c
> > >   * Copyright (C) 2012 Steffen Trumtrar, Pengutronix
> > 
> > This looks like SPDX-FileCopyrightText to me too?
> 
> I'm unsure (and didn't add SPDX-FileCopyrightText consistently for these
> (I hope)). Is the copyright "infecting" in this way? What is your
> suggestion?
> 
> 	// SPDX-License-Identifier: GPL-2.0-or-later
> 	// SPDX-FileCopyrightText: © 2014 Andrey Panov <rockford@yandex.ru>
> 	// SPDX-FileCopyrightText: © 2013 Hubert Feurstein <h.feurstein@gmail.com>
> 	// SPDX-FileCopyrightText: © 2012 Steffen Trumtrar, Pengutronix
> 
> 	/*
> 	 * based on arch/arm/boards/freescale-mx6-sabresd/board.c
> 	 * and arch/arm/boards/freescale-mx6-sabrelite/board.c
> 	 */
> 
> ?

Yes. "based on" suggests to me "I copied the file and adapted it", so
the copyright lines from the copied file probably still apply – at least
I would count on it until we can disprove it (which we probably won't).
Further down in your patch we also had an "inspired by", but I don't
think that language is strong enough to warrant a copyright line.

> > > diff --git a/arch/arm/boards/phytec-phycore-pxa270/config.h b/arch/arm/boards/phytec-phycore-pxa270/config.h
> > > index ca02b1140b27..325c40191329 100644
> > > --- a/arch/arm/boards/phytec-phycore-pxa270/config.h
> > > +++ b/arch/arm/boards/phytec-phycore-pxa270/config.h
> > > @@ -1,23 +1,7 @@
> > > -/*
> > > - * Copyright (C) 2005 Phytec Messtechnik GmbH
> > > - * Juergen Kilb, H. Klaholz <armlinux@phytec.de>
> > > - *
> > > - * Copyright (C) 2006 Pengutronix
> > > - * Sascha Hauer <s.hauer@pengutronix.de>
> > > - * Robert Schwebel <r.schwebel@pengutronix.de>
> > > - *
> > > - * This program is free software; you can redistribute it and/or
> > > - * modify it under the terms of the GNU General Public License as
> > > - * published by the Free Software Foundation; either version 2 of
> > > - * the License, or (at your option) any later version.
> > > - *
> > > - * This program is distributed in the hope that it will be useful,
> > > - * but WITHOUT ANY WARRANTY; without even the implied warranty of
> > > - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
> > > - * GNU General Public License for more details.
> > > - *
> > > - *
> > > - */
> > > +// SPDX-License-Identifier: GPL-2.0-or-later
> > > +// SPDX-FileCopyrightText: © 2005 Juergen Kilb & H. Klaholz <armlinux@phytec.de>, Phytec Messtechnik GmbH
> > 
> > Nitpick: an '&' might have a slightly different semantics as a ','.
> 
> Right, I didn't use a , as the email address looked as if it covered
> both persons. An alternative I considered is to use two lines for the
> two developpers and duplicate the email address. I don't like s/&/,/ as
> after a name and a comma in all other locations a company only follows.

Yeah, I don't have a favourite here either.

 - Roland

-- 
Roland Hieber, Pengutronix e.K.          | r.hieber@pengutronix.de     |
Steuerwalder Str. 21                     | https://www.pengutronix.de/ |
31137 Hildesheim, Germany                | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686         | Fax:   +49-5121-206917-5555 |

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

  reply	other threads:[~2020-04-29 15:52 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-04-28 13:24 Uwe Kleine-König
2020-04-29 10:50 ` Roland Hieber
2020-04-29 13:41   ` Uwe Kleine-König
2020-04-29 15:52     ` Roland Hieber [this message]
2020-05-23 15:00 ` Roland Hieber
2020-05-23 15:06   ` Roland Hieber
2020-05-25 20:42   ` Uwe Kleine-König
2020-05-19 16:37 Uwe Kleine-König
2020-05-19 19:49 ` Uwe Kleine-König
2020-07-01 19:56   ` Uwe Kleine-König
2020-05-25  5:54 ` Sascha Hauer
2020-05-25 20:34   ` Roland Hieber

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

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

  git send-email \
    --in-reply-to=20200429155231.k5cikwjxek6tozr3@pengutronix.de \
    --to=rhi@pengutronix.de \
    --cc=a.fatoum@pengutronix.de \
    --cc=barebox@lists.infradead.org \
    --cc=u.kleine-koenig@pengutronix.de \
    /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.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox