All of lore.kernel.org
 help / color / mirror / Atom feed
From: Peter Seiderer <ps.report@gmx.net>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH v3 3/5] package/qt5/qt5webengine: generate chromium-lts.inc automatically
Date: Sat, 23 Feb 2019 13:30:55 +0100	[thread overview]
Message-ID: <20190223133055.74ff4402@gmx.net> (raw)
In-Reply-To: <20190217141209.22182-4-thomas.petazzoni@bootlin.com>

On Sun, 17 Feb 2019 15:12:07 +0100, Thomas Petazzoni <thomas.petazzoni@bootlin.com> wrote:

> As a preparation to the bump of qt5webengine, this commit changes to a
> mechanism where it is generated automatically. We use a fairly
> convoluted 'find' expression to retrieve almost the same list of files
> as the exist ones.
> 
> The following files are added:
> 
>  - src/3rdparty/chromium/third_party/libxml/src/Copyright. This is the
>    file that was pointed to by the
>    src/3rdparty/chromium/third_party/libxslt/linux/COPYING symlink.
> 
>  - src/3rdparty/chromium/third_party/libxml/src/Copyright
> 
> Two license.py scripts that are not license files are removed.
> 
> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>

Reviewed-by: Peter Seiderer <ps.report@gmx.net>

Regards,
Peter

> ---
>  package/qt5/qt5webengine/chromium-lts.inc | 11 ++++++++---
>  1 file changed, 8 insertions(+), 3 deletions(-)
> 
> diff --git a/package/qt5/qt5webengine/chromium-lts.inc b/package/qt5/qt5webengine/chromium-lts.inc
> index 6d27f1a827..fbc1f9b639 100644
> --- a/package/qt5/qt5webengine/chromium-lts.inc
> +++ b/package/qt5/qt5webengine/chromium-lts.inc
> @@ -1,3 +1,9 @@
> +# Generated with:
> +# (echo "QT5WEBENGINE_CHROMIUM_LICENSE_FILES = \\" ; \
> +# 	find src/3rdparty/ -type f \
> +#	     \( -iname 'license*' -o -iname 'copying*' -o -name 'APPLE_LICENSE' -o -name 'Copyright' -o -path '*/license_texts/*' -o -path '*/licenses/*' \)\
> +#	     -a -not -name '*.cc' -not -name '*.py' -not -name '*.h' -not -name 'LICENSE.sha1' -not -name 'licensecheck.pl*' -not -name 'license.after' -not -name 'license.before' | \
> +#	     sort | sed 's%^\(.*\)$%\t\1 \\%') > package/qt5/qt5webengine/chromium-lts.inc
>  QT5WEBENGINE_CHROMIUM_LICENSE_FILES = \
>  	src/3rdparty/chromium/base/third_party/dmg_fp/LICENSE \
>  	src/3rdparty/chromium/base/third_party/dynamic_annotations/LICENSE \
> @@ -112,8 +118,9 @@ QT5WEBENGINE_CHROMIUM_LICENSE_FILES = \
>  	src/3rdparty/chromium/third_party/libvpx_new/source/libvpx/third_party/x86inc/LICENSE \
>  	src/3rdparty/chromium/third_party/libwebm/source/LICENSE.TXT \
>  	src/3rdparty/chromium/third_party/libwebp/LICENSE \
> +	src/3rdparty/chromium/third_party/libxml/src/Copyright \
>  	src/3rdparty/chromium/third_party/libXNVCtrl/LICENSE \
> -	src/3rdparty/chromium/third_party/libxslt/linux/COPYING \
> +	src/3rdparty/chromium/third_party/libxslt/Copyright \
>  	src/3rdparty/chromium/third_party/libyuv/LICENSE \
>  	src/3rdparty/chromium/third_party/libyuv/LICENSE_THIRD_PARTY \
>  	src/3rdparty/chromium/third_party/libyuv/third_party/gflags/LICENSE \
> @@ -124,7 +131,6 @@ QT5WEBENGINE_CHROMIUM_LICENSE_FILES = \
>  	src/3rdparty/chromium/third_party/mesa/src/docs/COPYING \
>  	src/3rdparty/chromium/third_party/mesa/src/docs/license.html \
>  	src/3rdparty/chromium/third_party/mesa/src/src/gallium/drivers/radeon/LICENSE.TXT \
> -	src/3rdparty/chromium/third_party/mesa/src/src/mapi/glapi/gen/license.py \
>  	src/3rdparty/chromium/third_party/minigbm/LICENSE \
>  	src/3rdparty/chromium/third_party/mocha/LICENSE \
>  	src/3rdparty/chromium/third_party/mockito/LICENSE \
> @@ -206,7 +212,6 @@ QT5WEBENGINE_CHROMIUM_LICENSE_FILES = \
>  	src/3rdparty/chromium/third_party/webdriver/LICENSE \
>  	src/3rdparty/chromium/third_party/WebKit/LICENSE \
>  	src/3rdparty/chromium/third_party/WebKit/LICENSE_FOR_ABOUT_CREDITS \
> -	src/3rdparty/chromium/third_party/WebKit/Source/build/scripts/license.py \
>  	src/3rdparty/chromium/third_party/WebKit/Source/core/LICENSE-APPLE \
>  	src/3rdparty/chromium/third_party/WebKit/Source/core/LICENSE-LGPL-2 \
>  	src/3rdparty/chromium/third_party/WebKit/Source/core/LICENSE-LGPL-2.1 \

  reply	other threads:[~2019-02-23 12:30 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-02-17 14:12 [Buildroot] [PATCH v3 0/5] Update Qt5 to 5.12.1 Thomas Petazzoni
2019-02-17 14:12 ` [Buildroot] [PATCH v3 1/5] package/qt5/qt5webengine: sort chromium-{latest, lts}.inc files Thomas Petazzoni
2019-02-23 12:29   ` Peter Seiderer
2019-02-17 14:12 ` [Buildroot] [PATCH v3 2/5] package/qt5/qt5webengine: generate chromium-latest.inc automatically Thomas Petazzoni
2019-02-23 12:30   ` Peter Seiderer
2019-02-17 14:12 ` [Buildroot] [PATCH v3 3/5] package/qt5/qt5webengine: generate chromium-lts.inc automatically Thomas Petazzoni
2019-02-23 12:30   ` Peter Seiderer [this message]
2019-02-17 14:12 ` [Buildroot] [PATCH v3 4/5] package/qt5: bump latest version to 5.12.1 Thomas Petazzoni
2019-02-23 12:32   ` Peter Seiderer
2019-02-17 14:12 ` [Buildroot] [PATCH v3 5/5] package/qt5/qt5webengine: add hashes for license files Thomas Petazzoni
2019-02-23 12:32   ` Peter Seiderer
2019-02-23 16:03 ` [Buildroot] [PATCH v3 0/5] Update Qt5 to 5.12.1 Thomas Petazzoni

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=20190223133055.74ff4402@gmx.net \
    --to=ps.report@gmx.net \
    --cc=buildroot@busybox.net \
    /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 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.