summaryrefslogtreecommitdiff
path: root/sysutils/psmisc
AgeCommit message (Collapse)AuthorFilesLines
2021-10-26sysutils: Replace RMD160 checksums with BLAKE2s checksumsnia1-2/+2
All checksums have been double-checked against existing RMD160 and SHA512 hashes
2021-10-07sysutils: Remove SHA1 hashes for distfilesnia1-2/+1
2021-06-04sysutils/psmisc: Drop MESSAGEgdt1-9/+0
As containing a hint that is mostly in the docs, and if actually needed, should be added to those docs.
2021-06-04sysutils/psmisc: Update HOMEPAGEgdt1-2/+3
Also note new MASTER_SITES on gitlab.
2020-10-06psmisc: fix sscanf usage bug under musl libcmcf3-8/+22
C99 says that the %15c conversion specifier matches *exactly* 15 characters, so if the process name is shorter than 15 characters, it is not matched and 0 is returned. Some implementations (such as glibc) return a match, even with fewer characters than the field width, but this cannot be assumed. Instead, use %15[^)], as in upstream commit [0], which matches a non-empty sequence of characters other than ')'. [0] https://gitlab.com/psmisc/psmisc/-/commit/ca2b176889729a7347bd95b832b9a5bb39fec229
2020-03-20*: Convert broken sourceforge HOMEPAGEs back to httpnia1-2/+2
2020-01-18all: migrate several HOMEPAGEs to httpsrillig1-2/+2
pkglint --only "https instead of http" -r -F With manual adjustments afterwards since pkglint 19.4.4 fixed a few indentations in unrelated lines. This mainly affects projects hosted at SourceForce, as well as freedesktop.org, CTAN and GNU.
2017-01-03Remove custom linkage, termcap should provide enough.roy1-5/+1
2015-11-04Add SHA512 digests for distfiles for sysutils categoryagc1-1/+2
Problems found with existing digests: Package memconf distfile memconf-2.16/memconf.gz b6f4b736cac388dddc5070670351cf7262aba048 [recorded] 95748686a5ad8144232f4d4abc9bf052721a196f [calculated] Problems found locating distfiles: Package dc-tools: missing distfile dc-tools/abs0-dc-burn-netbsd-1.5-0-gae55ec9 Package ipw-firmware: missing distfile ipw2100-fw-1.2.tgz Package iwi-firmware: missing distfile ipw2200-fw-2.3.tgz Package nvnet: missing distfile nvnet-netbsd-src-20050620.tgz Package syslog-ng: missing distfile syslog-ng-3.7.2.tar.gz Otherwise, existing SHA1 digests verified and found to be the same on the machine holding the existing distfiles (morden). All existing SHA1 digests retained for now as an audit trail.
2015-08-10Build and install fuser on Linux. PR 25673dholland5-27/+32
(not actually tested on Linux; but package is Linux native so I'm expecting it to work)
2015-08-10Make this less netbsd-centric. PR 25673dholland1-4/+4
2014-10-09Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles.wiz1-3/+1
2014-09-23Fix build on systems which lack BSD termcap.jperkin2-12/+14
2013-12-13Need limits.h for PATH_MAX on SunOS.jperkin3-21/+39
2013-05-29Set LICENSE.wiz1-1/+2
From Bug Hunting.
2012-10-23Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.asau1-2/+1
2012-01-08Add missing mk/termcap buildlink.sbd1-2/+7
Bump PKGREVISION
2008-06-12Add DESTDIR support.joerg1-3/+4
2006-03-04Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where nojlam1-2/+2
developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
2005-09-28Replaced "# defined" with "yes" in Makefile variables like GNU_CONFIGURE,rillig1-2/+2
NO_BUILD, USE_LIBTOOL.
2005-06-20mention native fstat for netbsddan1-2/+2
2005-06-01Massive cleanup of buildlink3.mk and builtin.mk files in pkgsrc.jlam1-2/+2
Several changes are involved since they are all interrelated. These changes affect about 1000 files. The first major change is rewriting bsd.builtin.mk as well as all of the builtin.mk files to follow the new example in bsd.builtin.mk. The loop to include all of the builtin.mk files needed by the package is moved from bsd.builtin.mk and into bsd.buildlink3.mk. bsd.builtin.mk is now included by each of the individual builtin.mk files and provides some common logic for all of the builtin.mk files. Currently, this includes the computation for whether the native or pkgsrc version of the package is preferred. This causes USE_BUILTIN.* to be correctly set when one builtin.mk file includes another. The second major change is teach the builtin.mk files to consider files under ${LOCALBASE} to be from pkgsrc-controlled packages. Most of the builtin.mk files test for the presence of built-in software by checking for the existence of certain files, e.g. <pthread.h>, and we now assume that if that file is under ${LOCALBASE}, then it must be from pkgsrc. This modification is a nod toward LOCALBASE=/usr. The exceptions to this new check are the X11 distribution packages, which are handled specially as noted below. The third major change is providing builtin.mk and version.mk files for each of the X11 distribution packages in pkgsrc. The builtin.mk file can detect whether the native X11 distribution is the same as the one provided by pkgsrc, and the version.mk file computes the version of the X11 distribution package, whether it's built-in or not. The fourth major change is that the buildlink3.mk files for X11 packages that install parts which are part of X11 distribution packages, e.g. Xpm, Xcursor, etc., now use imake to query the X11 distribution for whether the software is already provided by the X11 distribution. This is more accurate than grepping for a symbol name in the imake config files. Using imake required sprinkling various builtin-imake.mk helper files into pkgsrc directories. These files are used as input to imake since imake can't use stdin for that purpose. The fifth major change is in how packages note that they use X11. Instead of setting USE_X11, package Makefiles should now include x11.buildlink3.mk instead. This causes the X11 package buildlink3 and builtin logic to be executed at the correct place for buildlink3.mk and builtin.mk files that previously set USE_X11, and fixes packages that relied on buildlink3.mk files to implicitly note that X11 is needed. Package buildlink3.mk should also include x11.buildlink3.mk when linking against the package libraries requires also linking against the X11 libraries. Where it was obvious, redundant inclusions of x11.buildlink3.mk have been removed.
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-02-24Add RMD160 digests.agc1-1/+2
2004-04-24Relinquish maintainership of packages to tech-pkg@NetBSD.org.jlam1-2/+2
2004-03-23USE_BUILDLINK3 must be set to "yes" or "no", not defined/undefined.jlam1-2/+2
2004-01-05bl3ifyjlam1-3/+5
2003-07-21COMMENT should start with a capital letter.martti1-2/+2
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2002-09-27Mark this package as conflicting with pstree<=2.16 (with thanks toagc1-1/+3
Thomas Klausner).
2002-09-27Remove the CONFLICTS with sysutils/pstree.agc1-3/+2
Bump PKGREVISION.
2002-08-25Merge packages from the buildlink2 branch back into the main trunk thatjlam1-3/+3
have been converted to USE_BUILDLINK2.
2001-10-31Move pkg/ files into package's toplevel directoryzuntum3-2/+2
2001-08-20Manually add LIBS+=${LIBGETOPT} to the package Makefile as it's no longerjlam1-2/+3
automatically added by libgetopt/buildlink.mk.
2001-07-14Don't really need kernfs.jlam1-4/+3
2001-07-14Add message file describing preconditions for the use of psmisc.jlam1-0/+10
2001-07-14Move inclusion of buildlink.mk files to end of Makefile.jlam1-3/+2
2001-06-18Mark as USE_BUILDLINK_ONLY and remove unnecessary config.cache entry tojlam1-4/+2
prevent detection of ncurses.
2001-06-18Convert to use buildlink.mk files.jlam1-8/+2
2001-06-11CPPFLAGS is now passed to MAKE_ENV and CONFIGURE_ENV by bsd.pkg.mk, sojlam1-2/+1
adapt by moving CPPFLAGS settings to top-level, and removing explicit inclusion of CPPFLAGS into MAKE_ENV and CONFIGURE_ENV.
2001-04-24Update psmisc to 20.1. Changes from version 19:jlam10-321/+326
- command line -<num> put back in. - got rid of annoying "sending signal #" debug message - updated killall.1 - updated killall usage - verbose now tells you what signal it is killing with. - New maintainer - Uses automake/autoconf to determine things - License changed to GPL - signames.h generated better (suggested by Grant Erickson) - uses getopt() for better command line stuff - makes less assumptions about process name, closes Debian Bug #53337 - Doesn't use losetup for loop devices in fuser. - Better selection of process name (thanks to David desJardins)
2001-04-19Move to sha1 digests, and add distfile sizes.agc1-2/+3
2001-04-17+ move the distfile digest/checksum value from files/md5 to distinfoagc3-10/+8
+ move the patch digest/checksum values from files/patch-sum to distinfo
2001-02-20Note CONFLICTS with each other.jlam1-1/+3
2001-02-17Update to new COMMENT style: COMMENT var in Makefile instead of pkg/COMMENT.wiz2-2/+2
2001-01-11Kill compiler warning.jlam2-7/+9
2000-10-06Honor CFLAGS passed in from environment.jlam2-5/+10
2000-08-11Remove (sometimes FreeBSD) packager's (porter's) name from DESCR.wiz1-3/+1
If anywhere, it should be the value of MAINTAINER in the Makefile. Some minor cleanup/reformatting while I'm here.
2000-03-19Regenjlam1-2/+2
2000-03-19Fix my sloppiness...this should fix 1.4.x compiles.jlam1-6/+6