]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commitdiff
package/nodejs: remove support for express
authorMartin Bark <martin@barkynet.com>
Sat, 6 May 2017 13:19:12 +0000 (14:19 +0100)
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Sat, 6 May 2017 13:54:11 +0000 (15:54 +0200)
BR2_PACKAGE_NODEJS_MODULES_EXPRESS has been deprecated.  To continue using
add express to BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL

Fixes:
http://autobuild.buildroot.org/results/fcfa38e98c22c8809452f7d0ee86dfe2e9d2482f
http://autobuild.buildroot.org/results/946996fa78c7814d1e0ea0ef1239c6eb0c7aa8dd
http://autobuild.buildroot.org/results/df920e7b17617f1e4867d94eda52cab38f7b0622

Signed-off-by: Martin Bark <martin@barkynet.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Config.in.legacy
package/nodejs/Config.in
package/nodejs/nodejs.mk

index bc14bf2a61da41ca2518c6ec10897d1c5b5a9bad..501581c6fc6469caabc5d7329bea0a5747ae97c6 100644 (file)
@@ -145,6 +145,14 @@ endif
 ###############################################################################
 comment "Legacy options removed in 2017.05"
 
+config BR2_PACKAGE_NODEJS_MODULES_EXPRESS
+       bool "Express web application framework option has been removed"
+       select BR2_LEGACY
+       help
+         The option to enable the NodeJS Express web application
+         framework has been removed. To continue using it, add
+         "express" to BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL.
+
 config BR2_PACKAGE_BLUEZ5_UTILS_GATTTOOL
        bool "bluez5_utils gatttool install option removed"
        select BR2_PACKAGE_BLUEZ5_UTILS_DEPRECATED
index 4810d59de9ee80b633e078faa175bac2c2b64dea..d5034cca4d35fcf500d531c8334abbf06758580e 100644 (file)
@@ -44,16 +44,6 @@ config BR2_PACKAGE_NODEJS_NPM
 
          Note that NPM is always built for the buildroot host.
 
-config BR2_PACKAGE_NODEJS_MODULES_EXPRESS
-       bool "Express web application framework"
-       help
-         Express is a minimal and flexible node.js web application
-         framework, providing a robust set of features for building
-         single and multi-page, and hybrid web applications.
-
-         http://www.expressjs.com
-         https://github.com/visionmedia/express
-
 config BR2_PACKAGE_NODEJS_MODULES_COFFEESCRIPT
        bool "CoffeeScript"
        help
index 1a195022d69165a282e3c77f826018b95bd1c64e..ba6ee4e74378fa101190517ce4fa8ed0d02c462a 100644 (file)
@@ -143,7 +143,6 @@ endef
 # popular modules, as well as the "additional modules" list.
 #
 NODEJS_MODULES_LIST= $(call qstrip,\
-       $(if $(BR2_PACKAGE_NODEJS_MODULES_EXPRESS),express) \
        $(if $(BR2_PACKAGE_NODEJS_MODULES_COFFEESCRIPT),coffee-script) \
        $(BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL))