aboutsummaryrefslogtreecommitdiff
path: root/utils/procps-ng
Commit message (Collapse)AuthorAge
* procps-ng: add missing InstallDev sectionMarko Ratkaj2022-03-31
| | | | | | | This package seems to be missing an InstallDev section. Had a compile failure for an application that needs to compile against libprocps Signed-off-by: Marko Ratkaj <markoratkaj@gmail.com>
* treewide: Run refresh on all packagesIlya Lipnitskiy2021-02-20
| | | | | | | | | The crude loop I wrote to come up with this changeset: find -L package/feeds/packages/ -name patches | \ sed 's/patches$/refresh/' | sort | xargs make Signed-off-by: Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com>
* procps-ng: move binaries to /usr/libexecHuangbin Zhan2020-10-27
| | | | Signed-off-by: Huangbin Zhan <zhanhb88@gmail.com>
* procps-ng: fix alternatives of procps-ng-sysctlHuangbin Zhan2020-10-27
| | | | | | align with busybox sysctl Signed-off-by: Huangbin Zhan <zhanhb88@gmail.com>
* procps-ng: move procps-ng-w to /usr/binHuangbin Zhan2020-06-14
| | | | | | procps-ng-w was installed to /bin, which should be an accident. Signed-off-by: Huangbin Zhan <zhanhb88@gmail.com>
* procps-ng: add new applet sysctlJan Pavlinec2020-08-14
| | | | Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
* procps-ng: update to 3.3.16Rosen Penev2020-06-06
| | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* procps-ng: remove unnecessary PKG_BUILD_DEPENDSIan Cooper2020-04-29
| | | | | | | | | | | | | | | | | | The package Makefile contains an unnecessary PKG_BUILD_DEPENDS line that builds gettext and libiconv even in cases where the build has gettext-full and libiconv-full selected. This behaviour can and does mask errors in other package Makefiles that are dependent on libiconv-full if it is compiled before these packages by causing libiconv-stub to be created and put in the staging tree and potentially linked against by these dependent packages when they omit to specify an appropriate PKG_BUILD_DEPENDS line. procps-ng does not require gettext or libiconv to be built in order to compile correctly. Signed-off-by: Ian Cooper <iancooper@hotmail.com>
* procps-ng: Remove DEFAULT lineRosen Penev2019-11-26
| | | | | | | The intended behavior is to has the buildbot select all the applets as well as packages only selecting what they need. This should do it. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* procps-ng: change default package selection Change the default selection of ↵Tiago Gaspar2019-10-01
| | | | | | packages from all to none. Signed-off-by: Tiago Gaspar <tiagogaspar8@gmail.com>
* treewide: avoid deref symlinks when installing .soYousong Zhou2019-06-21
| | | | | | | | | | | | | | This change is inspired by commit openwrt/openwrt@38b22b1e ("nghttp2: deduplicate files in libnghttp2") The packages in this commit are identified with the following command grep -rin -E 'INSTALL_(DATA|BIN)' | grep -F '.so' | grep -F '*' Some of them do not have symlinks and are not affected, but the change is still applied for consideration of best practices just in case Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
* procps-ng: Update to 3.3.15Rosen Penev2018-09-17
| | | | | | Switch from locally generated git tarball to official one. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* procps-ng: use alternatives to coexist with busybox appletsYousong Zhou2018-01-12
| | | | | | Fixes FS#699 Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
* treewide: run "make check FIXUP=1"Etienne Champetier2017-08-29
| | | | | | | | | | fix Makefile chmod (644) replace MD5SUM with HASH add PKG_MIRROR_HASH when PKG_SOURCE_PROTO:=git (PKG_SOURCE_PROTO:=svn tarballs are not reproducible for now) Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>
* procps-ng: add required build dependenciesJo-Philipp Wich2016-07-12
| | | | | | | | | | | | | | | | | | | Since 3048ebedec5b989a621529eec159cf5aa17b58b6 added a autoreconfig fixup to procps-ng, the build fails on certain systems with errors like configure.ac:72: error: possibly undefined macro: AM_GNU_GETTEXT_VERSION or configure:14998: error: possibly undefined macro: AM_ICONV_LINKFLAGS_BODY Fix the issue by adding build time dependencies on the `gettext` and `libiconv` stub libraries to ensure that `gettext.m4` and `iconv.m4` are installed into the staging directory before `procps-ng` is getting reconfigured. Fixes https://github.com/openwrt/packages/issues/2890#issuecomment-231115844 Signed-off-by: Jo-Philipp Wich <jo@mein.io>
* procps-ng: fix build on systems without gettext development utilitiesJo-Philipp Wich2016-06-24
| | | | | | | | | | | | | | | | | | | | | | | | The current procps-ng Makefile calls the shipped autogen.sh script which introduces incorrect implicit dependencies on host utilities, leading to the following error observed on a minimal build system: (cd .../procps-ng-3.3.11; echo "3.3.11" > ".../procps-ng-3.3.11/.tarball-version"; ./autogen.sh ); You must have autopoint installed to generate procps-ng build system. The autopoint command is part of the GNU gettext package. Makefile:96: recipe for target '.../procps-ng-3.3.11/.configured_yynyyyyy' failed make[3]: *** [.../procps-ng-3.3.11/.configured_yynyyyyy] Error 1 Apply the following changes in order to fix compilation: - Apply the generic autoreconf fixup to generate configure and Makefiles - Use Build/Prepare to populate .tarball-version and revert Build/Configure to its default implementation - Disable to build of docs and tests as those require additional utilities not guaranteed to be present Fixes #2890. Signed-off-by: Jo-Philipp Wich <jo@mein.io>
* procps-ng: bump to 8a198e3eafbde0b627e9992b41d26e6762e4f8c7notnyt2016-06-13
| | | | | | | This contains format string fixes among others. procps-ng was not properly displaying cpu usage in top and ps. Signed-off-by: Rob Mosher nyt-lede@countercultured.net
* procps-ng: import version 3.3.11Gergely Kiss2015-08-27
Signed-off-by: Gergely Kiss <mail.gery@gmail.com>