From 8a12985e5277cc47f0f68c85f8f4b11709e1a574 Mon Sep 17 00:00:00 2001 From: Nicolas Carrier Date: Thu, 19 Jan 2023 14:28:56 +0100 Subject: [PATCH] package/composer: new package composer describes itself as a dependency manager for PHP, it is used by projects such as CakePHP. Signed-off-by: Nicolas Carrier Signed-off-by: Thomas Petazzoni --- package/Config.in.host | 1 + package/composer/Config.in.host | 8 ++++++++ package/composer/composer.hash | 4 ++++ package/composer/composer.mk | 31 +++++++++++++++++++++++++++++++ 4 files changed, 44 insertions(+) create mode 100644 package/composer/Config.in.host create mode 100644 package/composer/composer.hash create mode 100644 package/composer/composer.mk diff --git a/package/Config.in.host b/package/Config.in.host index 92af02e6af..aa1f15e3ac 100644 --- a/package/Config.in.host +++ b/package/Config.in.host @@ -13,6 +13,7 @@ menu "Host utilities" source "package/checkpolicy/Config.in.host" source "package/checksec/Config.in.host" source "package/cmake/Config.in.host" + source "package/composer/Config.in.host" source "package/cramfs/Config.in.host" source "package/crudini/Config.in.host" source "package/cryptsetup/Config.in.host" diff --git a/package/composer/Config.in.host b/package/composer/Config.in.host new file mode 100644 index 0000000000..ced73ceae9 --- /dev/null +++ b/package/composer/Config.in.host @@ -0,0 +1,8 @@ +config BR2_PACKAGE_HOST_COMPOSER + bool "host composer" + help + Composer is a tool for dependency management in PHP. It + allows you to declare the libraries your project depends on + and it will manage (install/update) them for you. + + https://getcomposer.org/ diff --git a/package/composer/composer.hash b/package/composer/composer.hash new file mode 100644 index 0000000000..123d6de1be --- /dev/null +++ b/package/composer/composer.hash @@ -0,0 +1,4 @@ +# Hash from https://getcomposer.org/download/ +sha256 f07934fad44f9048c0dc875a506cca31cc2794d6aebfc1867f3b1fbf48dce2c5 composer-2.5.8.phar +# Locally calculated +sha256 c8cce4b6b9729f264ffdf9296d505d63432497feeed1f586d1902b942197e024 LICENSE diff --git a/package/composer/composer.mk b/package/composer/composer.mk new file mode 100644 index 0000000000..a24c020796 --- /dev/null +++ b/package/composer/composer.mk @@ -0,0 +1,31 @@ +################################################################################ +# +# composer +# +################################################################################ + +COMPOSER_VERSION = 2.5.8 +COMPOSER_SOURCE = composer-$(COMPOSER_VERSION).phar +# Here, we pass a dummy URL parameter in order to control the name the file +# will have once downloaded. +# Otherwise, the names will clash ifever we update the version. +BASE_SITE = https://getcomposer.org/download/$(COMPOSER_VERSION)/composer.phar +COMPOSER_SITE = $(BASE_SITE)?n=f/$(COMPOSER_SOURCE) +COMPOSER_LICENSE = MIT +COMPOSER_LICENSE_FILES = LICENSE + +HOST_COMPOSER_DEPENDENCIES = host-php + +define HOST_COMPOSER_EXTRACT_CMDS + cp $(HOST_COMPOSER_DL_DIR)/$(COMPOSER_SOURCE) $(@D) + cd $(@D); $(HOST_DIR)/bin/php <<< 'extractTo(".", "LICENSE");' +endef + +define HOST_COMPOSER_INSTALL_CMDS + mv $(@D)/$(COMPOSER_SOURCE) $(HOST_DIR)/bin/composer + chmod +x $(HOST_DIR)/bin/composer +endef + +$(eval $(host-generic-package))