uledd: drop this package as it is no longer available
authorJosef Schlehofer <pepe.schlehofer@gmail.com>
Wed, 31 Dec 2025 13:46:36 +0000 (14:46 +0100)
committerJosef Schlehofer <pepe.schlehofer@gmail.com>
Thu, 1 Jan 2026 14:24:07 +0000 (15:24 +0100)
It looks like the repository [1] was removed.
Sources are nowhere to be found, it is no longer
developed, so remove it.

[1] https://github.com/blogic/uledd

Fixes: https://github.com/openwrt/packages/issues/28056
Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
utils/uledd/Makefile [deleted file]
utils/uledd/files/uledd.init [deleted file]
utils/uledd/patches/100-CMakeLists-update-min-version-to-3.10-for-CMake-4.0-.patch [deleted file]

diff --git a/utils/uledd/Makefile b/utils/uledd/Makefile
deleted file mode 100644 (file)
index 4351c53..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-include $(TOPDIR)/rules.mk
-
-PKG_NAME:=uledd
-PKG_RELEASE:=2
-
-PKG_SOURCE_PROTO:=git
-PKG_SOURCE_URL:=https://github.com/blogic/uledd.git
-PKG_SOURCE_DATE:=2020-09-15
-PKG_SOURCE_VERSION:=21d14d950bfe702b8c1f77de20f7529266dbd0f7
-PKG_MIRROR_HASH:=c13f2df22bb84c831f4d2381df4cd3638a53b6823a7ef9dad13a64031c8c4df5
-
-PKG_MAINTAINER:=John Crispin <john@phrozen.org>
-PKG_LICENSE:=LGPL-2.1-only
-PKG_LICENSE_FILES:=LICENSE
-
-include $(INCLUDE_DIR)/package.mk
-include $(INCLUDE_DIR)/cmake.mk
-
-define Package/uledd
-  SECTION:=utils
-  CATEGORY:=Utilities
-  DEPENDS:=+libubox +libubus +libblobmsg-json +libjson-c
-  TITLE:=PWM/RGB LED ubus frontend
-endef
-
-define Package/uledd/install
-       $(INSTALL_DIR) $(1)/sbin $(1)/etc/init.d
-
-       $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/uledd $(1)/sbin/
-       $(INSTALL_BIN) ./files/uledd.init $(1)/etc/init.d/uledd
-endef
-
-$(eval $(call BuildPackage,uledd))
diff --git a/utils/uledd/files/uledd.init b/utils/uledd/files/uledd.init
deleted file mode 100644 (file)
index b179267..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/sh /etc/rc.common
-
-START=95
-
-USE_PROCD=1
-PROG=/sbin/uledd
-
-start_service() {
-       procd_open_instance
-       procd_set_param command "$PROG"
-       procd_set_param respawn
-       procd_close_instance
-}
diff --git a/utils/uledd/patches/100-CMakeLists-update-min-version-to-3.10-for-CMake-4.0-.patch b/utils/uledd/patches/100-CMakeLists-update-min-version-to-3.10-for-CMake-4.0-.patch
deleted file mode 100644 (file)
index 2012bc4..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-From a1d33d3f09143cd9a117c47978894dd3ba6bcd90 Mon Sep 17 00:00:00 2001
-From: Christian Marangi <ansuelsmth@gmail.com>
-Date: Mon, 24 Nov 2025 22:46:56 +0100
-Subject: [PATCH] CMakeLists: update min version to 3.10 for CMake >= 4.0
- support
-
-Update minimum version of CMake to 3.10 for CMake >= 4.0 version
-support.
-
-New CMake require 3.5 as the minimum version with that increased to 3.10
-in the next CMake release.
-
-Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
----
- CMakeLists.txt | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -1,4 +1,4 @@
--cmake_minimum_required(VERSION 2.6)
-+cmake_minimum_required(VERSION 3.10)
- PROJECT(uleddd C)
- INCLUDE(GNUInstallDirs)