All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] package/angular-websocket: drop package
@ 2025-02-15 11:07 Peter Korsgaard
  2025-02-15 11:07 ` [Buildroot] [PATCH 2/2] package/angularjs: " Peter Korsgaard
  2025-02-15 21:20 ` [Buildroot] [PATCH 1/2] package/angular-websocket: " Julien Olivain
  0 siblings, 2 replies; 3+ messages in thread
From: Peter Korsgaard @ 2025-02-15 11:07 UTC (permalink / raw)
  To: buildroot

The package has not been updated since it was added in 2016 and the upstream
Github project has been archived as of Feb 17, 2024 - So drop the package.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
 Config.in.legacy                               |  7 +++++++
 package/Config.in                              |  5 -----
 package/angular-websocket/Config.in            |  7 -------
 .../angular-websocket/angular-websocket.hash   |  3 ---
 package/angular-websocket/angular-websocket.mk | 18 ------------------
 5 files changed, 7 insertions(+), 33 deletions(-)
 delete mode 100644 package/angular-websocket/Config.in
 delete mode 100644 package/angular-websocket/angular-websocket.hash
 delete mode 100644 package/angular-websocket/angular-websocket.mk

diff --git a/Config.in.legacy b/Config.in.legacy
index c302b73423..037f9a8b89 100644
--- a/Config.in.legacy
+++ b/Config.in.legacy
@@ -146,6 +146,13 @@ endif
 
 comment "Legacy options removed in 2025.02"
 
+config BR2_PACKAGE_ANGULAR_WEBSOCKET
+	bool "angular-websocket has been removed"
+	select BR2_LEGACY
+	help
+	  The angular-websocket package was removed as the upstream
+	  project has been archived.
+
 config BR2_PACKAGE_LATENCYTOP
 	bool "latencytop has been removed"
 	select BR2_LEGACY
diff --git a/package/Config.in b/package/Config.in
index dac1fc568d..5e2dc79cb5 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -1863,11 +1863,6 @@ endmenu
 
 menu "Javascript"
 	source "package/angularjs/Config.in"
-if BR2_PACKAGE_ANGULARJS
-menu "External AngularJS plugins"
-	source "package/angular-websocket/Config.in"
-endmenu
-endif
 	source "package/bootstrap/Config.in"
 	source "package/chartjs/Config.in"
 	source "package/datatables/Config.in"
diff --git a/package/angular-websocket/Config.in b/package/angular-websocket/Config.in
deleted file mode 100644
index 0981bd0d52..0000000000
--- a/package/angular-websocket/Config.in
+++ /dev/null
@@ -1,7 +0,0 @@
-config BR2_PACKAGE_ANGULAR_WEBSOCKET
-	bool "angular-websocket"
-	help
-	  An AngularJS WebSocket service for connecting client
-	  applications to servers.
-
-	  https://github.com/AngularClass/angular-websocket
diff --git a/package/angular-websocket/angular-websocket.hash b/package/angular-websocket/angular-websocket.hash
deleted file mode 100644
index 3aa5b5e7e1..0000000000
--- a/package/angular-websocket/angular-websocket.hash
+++ /dev/null
@@ -1,3 +0,0 @@
-# Locally calculated
-sha256  69d752896bc17c08750a2fda24b5eb3c6d653afc6f406dd90a6b7c920b22a14a  angular-websocket-2.0.0.tar.gz
-sha256  3013a57f2c8df37775804b8be5b107665a2ca209607bb92c618bcc084feb00a7  LICENSE
diff --git a/package/angular-websocket/angular-websocket.mk b/package/angular-websocket/angular-websocket.mk
deleted file mode 100644
index d45bfdf910..0000000000
--- a/package/angular-websocket/angular-websocket.mk
+++ /dev/null
@@ -1,18 +0,0 @@
-################################################################################
-#
-# angular-websocket
-#
-################################################################################
-
-ANGULAR_WEBSOCKET_VERSION = 2.0.0
-ANGULAR_WEBSOCKET_SITE = $(call github,AngularClass,angular-websocket,v$(ANGULAR_WEBSOCKET_VERSION))
-ANGULAR_WEBSOCKET_LICENSE = MIT
-ANGULAR_WEBSOCKET_LICENSE_FILES = LICENSE
-
-# install .min.js as .js
-define ANGULAR_WEBSOCKET_INSTALL_TARGET_CMDS
-	$(INSTALL) -m 0644 -D $(@D)/dist/angular-websocket.min.js \
-		$(TARGET_DIR)/var/www/angular-websocket.js
-endef
-
-$(eval $(generic-package))
-- 
2.39.5

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH 2/2] package/angularjs: drop package
  2025-02-15 11:07 [Buildroot] [PATCH 1/2] package/angular-websocket: drop package Peter Korsgaard
@ 2025-02-15 11:07 ` Peter Korsgaard
  2025-02-15 21:20 ` [Buildroot] [PATCH 1/2] package/angular-websocket: " Julien Olivain
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2025-02-15 11:07 UTC (permalink / raw)
  To: buildroot

The package has not been updated since 2020, has known vulnerabilities and
the upstream Github project has been archived as of April 12, 2024 - So drop
the package.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
 Config.in.legacy                 |  7 +++++++
 DEVELOPERS                       |  3 ---
 package/Config.in                |  1 -
 package/angularjs/Config.in      |  6 ------
 package/angularjs/angularjs.hash |  3 ---
 package/angularjs/angularjs.mk   | 29 -----------------------------
 6 files changed, 7 insertions(+), 42 deletions(-)
 delete mode 100644 package/angularjs/Config.in
 delete mode 100644 package/angularjs/angularjs.hash
 delete mode 100644 package/angularjs/angularjs.mk

diff --git a/Config.in.legacy b/Config.in.legacy
index 037f9a8b89..f94a7db7b0 100644
--- a/Config.in.legacy
+++ b/Config.in.legacy
@@ -146,6 +146,13 @@ endif
 
 comment "Legacy options removed in 2025.02"
 
+config BR2_PACKAGE_ANGULARJS
+	bool "angularjs has been removed"
+	select BR2_LEGACY
+	help
+	  The angularjs package was removed as the upstream
+	  project has been archived.
+
 config BR2_PACKAGE_ANGULAR_WEBSOCKET
 	bool "angular-websocket has been removed"
 	select BR2_LEGACY
diff --git a/DEVELOPERS b/DEVELOPERS
index 5f98257b86..4914acba0d 100644
--- a/DEVELOPERS
+++ b/DEVELOPERS
@@ -1447,9 +1447,6 @@ F:	package/gcc-bare-metal/
 F:	package/newlib-bare-metal/
 F:	toolchain/toolchain-bare-metal-buildroot/
 
-N:	Ignacy Gawędzki <ignacy.gawedzki@green-communications.fr>
-F:	package/angularjs/
-
 N:	Ilias Apalodimas <apalos@gmail.com>
 F:	package/keepalived/
 
diff --git a/package/Config.in b/package/Config.in
index 5e2dc79cb5..6f79eafc4b 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -1862,7 +1862,6 @@ menu "Hardware handling"
 endmenu
 
 menu "Javascript"
-	source "package/angularjs/Config.in"
 	source "package/bootstrap/Config.in"
 	source "package/chartjs/Config.in"
 	source "package/datatables/Config.in"
diff --git a/package/angularjs/Config.in b/package/angularjs/Config.in
deleted file mode 100644
index f0d2015a70..0000000000
--- a/package/angularjs/Config.in
+++ /dev/null
@@ -1,6 +0,0 @@
-config BR2_PACKAGE_ANGULARJS
-	bool "angularjs"
-	help
-	  AngularJS web application framework.
-
-	  http://angularjs.org
diff --git a/package/angularjs/angularjs.hash b/package/angularjs/angularjs.hash
deleted file mode 100644
index 5468174e4d..0000000000
--- a/package/angularjs/angularjs.hash
+++ /dev/null
@@ -1,3 +0,0 @@
-# Locally computed:
-sha256  471b57064031da8c5fd3b1ba3f52dd1e0d2740a97ed34da2e8ab2a4cc2718280  angular-1.8.2.zip
-sha256  237656fae6e39d02cd71cbcfbf91b7964eba5796aafca1bfcfff3b054ce3fed6  angular.js
diff --git a/package/angularjs/angularjs.mk b/package/angularjs/angularjs.mk
deleted file mode 100644
index d393c82c19..0000000000
--- a/package/angularjs/angularjs.mk
+++ /dev/null
@@ -1,29 +0,0 @@
-################################################################################
-#
-# angularjs
-#
-################################################################################
-
-ANGULARJS_VERSION = 1.8.2
-ANGULARJS_SOURCE = angular-$(ANGULARJS_VERSION).zip
-ANGULARJS_SITE = https://code.angularjs.org/$(ANGULARJS_VERSION)
-ANGULARJS_LICENSE = MIT
-# There's no separate license file in the archive, so use angular.js instead.
-ANGULARJS_LICENSE_FILES = angular.js
-ANGULARJS_CPE_ID_VENDOR = angularjs
-ANGULARJS_CPE_ID_PRODUCT = angular.js
-
-define ANGULARJS_EXTRACT_CMDS
-	unzip $(ANGULARJS_DL_DIR)/$(ANGULARJS_SOURCE) -d $(@D)
-	mv $(@D)/angular-$(ANGULARJS_VERSION)/* $(@D)
-	rmdir $(@D)/angular-$(ANGULARJS_VERSION)
-endef
-
-# install .min.js as .js
-define ANGULARJS_INSTALL_TARGET_CMDS
-	$(foreach f,$(notdir $(wildcard $(@D)/*.min.js)),
-		$(INSTALL) -m 0644 -D $(@D)/$(f) \
-			$(TARGET_DIR)/var/www/$(f:.min.js=.js)$(sep))
-endef
-
-$(eval $(generic-package))
-- 
2.39.5

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [Buildroot] [PATCH 1/2] package/angular-websocket: drop package
  2025-02-15 11:07 [Buildroot] [PATCH 1/2] package/angular-websocket: drop package Peter Korsgaard
  2025-02-15 11:07 ` [Buildroot] [PATCH 2/2] package/angularjs: " Peter Korsgaard
@ 2025-02-15 21:20 ` Julien Olivain
  1 sibling, 0 replies; 3+ messages in thread
From: Julien Olivain @ 2025-02-15 21:20 UTC (permalink / raw)
  To: Peter Korsgaard; +Cc: buildroot

On 15/02/2025 12:07, Peter Korsgaard wrote:
> The package has not been updated since it was added in 2016 and the 
> upstream
> Github project has been archived as of Feb 17, 2024 - So drop the 
> package.
> 
> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>

Series applied to master, thanks.
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2025-02-15 21:20 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-15 11:07 [Buildroot] [PATCH 1/2] package/angular-websocket: drop package Peter Korsgaard
2025-02-15 11:07 ` [Buildroot] [PATCH 2/2] package/angularjs: " Peter Korsgaard
2025-02-15 21:20 ` [Buildroot] [PATCH 1/2] package/angular-websocket: " Julien Olivain

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.