package/procrank_linux: remove package

The package is causing build errors with newer gcc versions:

procrank.c:381:9: error: implicit declaration of function 'asprintf';
 did you mean 'vsprintf'? [-Wimplicit-function-declaration]

The latest upstream commit dates back to 2018 and no open issues/
bug reports are present so the projects seems unmaintained.

Instead of fixing build errors for such a project which is not used by
any other package we remove it from buildroot.

Fixes:
https://autobuild.buildroot.net/results/f2b/f2b41d27cf32808783b582e8ad714fb653c05713/

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Bernd Kuhls
2025-11-06 21:45:18 +01:00
committed by Peter Korsgaard
parent c41af1dcc0
commit 0343a58a70
5 changed files with 6 additions and 33 deletions

View File

@@ -146,6 +146,12 @@ endif
comment "Legacy options removed in 2025.11"
config BR2_PACKAGE_PROCRANK_LINUX
bool "procrank_linux has been removed"
select BR2_LEGACY
help
procrank_linux is unmaintained and has been removed
config BR2_PACKAGE_MONGREL2
bool "mongrel2 has been removed"
select BR2_LEGACY

View File

@@ -2889,7 +2889,6 @@ menu "System tools"
source "package/polkit/Config.in"
source "package/powerpc-utils/Config.in"
source "package/procps-ng/Config.in"
source "package/procrank_linux/Config.in"
source "package/procs/Config.in"
source "package/psmisc/Config.in"
source "package/pwgen/Config.in"

View File

@@ -1,7 +0,0 @@
config BR2_PACKAGE_PROCRANK_LINUX
bool "procrank_linux"
help
procrank is a tool commonly used by Android platform
developers to find out how much memory is really being used.
https://github.com/csimmonds/procrank_linux

View File

@@ -1,3 +0,0 @@
# Locally calculated
sha256 1c3592b549b6793b29ab561568f493d0edbfe288ea2aed59afa689eaa26b5d9e procrank_linux-21c30ab4514a5b15ac6e813e21bee0d3d714cb08.tar.gz
sha256 38751245389e1e23f73e6f5384b5cbe7fa972cc4410c5adc9c04b082a0b9561a NOTICE

View File

@@ -1,22 +0,0 @@
################################################################################
#
# procrank_linux
#
################################################################################
PROCRANK_LINUX_VERSION = 21c30ab4514a5b15ac6e813e21bee0d3d714cb08
PROCRANK_LINUX_SITE = $(call github,csimmonds,procrank_linux,$(PROCRANK_LINUX_VERSION))
PROCRANK_LINUX_LICENSE = Apache-2.0
PROCRANK_LINUX_LICENSE_FILES = NOTICE
define PROCRANK_LINUX_BUILD_CMDS
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) CROSS_COMPILE="$(TARGET_CROSS)" \
LOCAL_CFLAGS="$(TARGET_CFLAGS)"
endef
define PROCRANK_LINUX_INSTALL_TARGET_CMDS
$(INSTALL) -m 0755 -D $(@D)/procrank \
$(TARGET_DIR)/usr/bin/procrank
endef
$(eval $(generic-package))