package/jquery-ui: bump to version 1.13.1

The contents of the license file have changed. It adds the following
details:

 - The code examples are distributed under CC0, but we do not install
   them.

 - The files in the node_modules and external directories is provided
   under its own license, but we do not install those files.

Hence, the license remains just MIT.

Signed-off-by: Jesse Van Gavere <jesseevg@gmail.com>
[Thomas: add details on license file change.]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Jesse Van Gavere 2022-08-24 09:55:42 +02:00 committed by Thomas Petazzoni
parent dbc8c461e9
commit 86ec2b57f4
2 changed files with 8 additions and 13 deletions

View File

@ -1,3 +1,3 @@
# locally computed
sha256 c76f349930245360f4d1dea672b9a587f8938b536a378e20eeff919f7263f99f jquery-ui-1.10.4.zip
sha256 ef1fdd608b20fbea7ef269ed03bd24e637717cc193971798a394bf2fa983cd53 MIT-LICENSE.txt
sha256 5f063f91df85431e3fea84f5d5709726d6dcd15ee4bf86b0e9a4b134912a5efd jquery-ui-1.13.1.zip
sha256 de33fb695880d0b07615d4b86f78cd43796906959ade5fdfef70968827a0db78 LICENSE.txt

View File

@ -4,14 +4,11 @@
#
################################################################################
JQUERY_UI_VERSION = 1.10.4
# Use buildroot mirror since upstream switched the zipfile and directory
# structure without bumping/renaming.
# Remember to switch back to jqueryui.com when bumping!
JQUERY_UI_SITE = http://sources.buildroot.net
JQUERY_UI_VERSION = 1.13.1
JQUERY_UI_SITE = https://jqueryui.com/resources/download
JQUERY_UI_SOURCE = jquery-ui-$(JQUERY_UI_VERSION).zip
JQUERY_UI_LICENSE = MIT
JQUERY_UI_LICENSE_FILES = MIT-LICENSE.txt
JQUERY_UI_LICENSE_FILES = LICENSE.txt
define JQUERY_UI_EXTRACT_CMDS
$(UNZIP) -d $(@D) $(JQUERY_UI_DL_DIR)/$(JQUERY_UI_SOURCE)
@ -20,15 +17,13 @@ define JQUERY_UI_EXTRACT_CMDS
endef
define JQUERY_UI_INSTALL_TARGET_CMDS
$(INSTALL) -m 0644 -D $(@D)/ui/minified/jquery-ui.min.js \
$(INSTALL) -m 0644 -D $(@D)/jquery-ui.min.js \
$(TARGET_DIR)/var/www/jquery-ui.js
$(INSTALL) -m 0644 -D $(@D)/ui/minified/i18n/jquery-ui-i18n.min.js \
$(TARGET_DIR)/var/www/jquery-ui-i18n.js
$(INSTALL) -m 0644 -D $(@D)/themes/base/minified/jquery-ui.min.css \
$(INSTALL) -m 0644 -D $(@D)/jquery-ui.min.css \
$(TARGET_DIR)/var/www/jquery-ui.css
$(INSTALL) -d $(TARGET_DIR)/var/www/images
$(INSTALL) -m 0644 -t $(TARGET_DIR)/var/www/images \
$(@D)/themes/base/minified/images/*.png
$(@D)/images/*.png
endef
$(eval $(generic-package))