Add ptsort, a prioritized topological sort.
This commit is contained in:
parent
187ca517f3
commit
4479683ce3
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=449259
4 changed files with 27 additions and 0 deletions
|
@ -369,6 +369,7 @@
|
|||
SUBDIR += posixtestsuite
|
||||
SUBDIR += proxyper
|
||||
SUBDIR += pspresent
|
||||
SUBDIR += ptsort
|
||||
SUBDIR += py-YABT
|
||||
SUBDIR += py-cinder
|
||||
SUBDIR += py-crudini
|
||||
|
|
18
misc/ptsort/Makefile
Normal file
18
misc/ptsort/Makefile
Normal file
|
@ -0,0 +1,18 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= ptsort
|
||||
PORTVERSION= 1.20170904
|
||||
CATEGORIES= misc
|
||||
MASTER_SITES= https://github.com/dag-erling/${PORTNAME}/releases/download/${PORTVERSION}/
|
||||
|
||||
MAINTAINER= des@FreeBSD.org
|
||||
COMMENT= Prioritized topological sort
|
||||
|
||||
LICENSE= BSD3CLAUSE
|
||||
|
||||
GNU_CONFIGURE= yes
|
||||
INSTALL_TARGET= install-strip
|
||||
|
||||
PLIST_FILES= bin/${PORTNAME} man/man1/${PORTNAME}.1.gz
|
||||
|
||||
.include <bsd.port.mk>
|
3
misc/ptsort/distinfo
Normal file
3
misc/ptsort/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
TIMESTAMP = 1504553271
|
||||
SHA256 (ptsort-1.20170904.tar.gz) = f759f2ca8f67e18c178361fda70671fbed7ad06a10ee96c96c9598859e456a75
|
||||
SIZE (ptsort-1.20170904.tar.gz) = 117293
|
5
misc/ptsort/pkg-descr
Normal file
5
misc/ptsort/pkg-descr
Normal file
|
@ -0,0 +1,5 @@
|
|||
The ptsort utility is a variant of the standard tsort (topological
|
||||
sort) utility which allows nodes to be prioritized, moving them and
|
||||
all their predecessors up in the final order.
|
||||
|
||||
WWW: https://github.com/dag-erling/ptsort
|
Loading…
Reference in a new issue