- New port: devel/py-setproctitle

A setproctitle implementation for Python.

The library allows a process to change its title (as displayed by system tools
such as ps(1) and top(1).

WWW: http://pypi.python.org/pypi/setproctitle/

PR:		144694
Submitted by:	Sofian Brabez <sbrabez@gmail.com> (maintainer)
Approved by:	jadawin (wants his PRs, can't commit right now)
This commit is contained in:
Pietro Cerutti 2010-03-12 14:45:14 +00:00
parent 5fa3923ffa
commit 96b09a4fea
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=250963
4 changed files with 42 additions and 0 deletions

View file

@ -2673,6 +2673,7 @@
SUBDIR += py-rtree SUBDIR += py-rtree
SUBDIR += py-ruledispatch SUBDIR += py-ruledispatch
SUBDIR += py-sendfile SUBDIR += py-sendfile
SUBDIR += py-setproctitle
SUBDIR += py-setuptools SUBDIR += py-setuptools
SUBDIR += py-setuptools_darcs SUBDIR += py-setuptools_darcs
SUBDIR += py-shapely SUBDIR += py-shapely

View file

@ -0,0 +1,32 @@
# New ports collection makefile for: py-setproctitle
# Date created: 2010-03-12
# Whom: Sofian Brabez <sbrabez@gmail.com>
#
# $FreeBSD$
#
PORTNAME= setproctitle
PORTVERSION= 1.0
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= sbrabez@gmail.com
COMMENT= Allow customization of the process title
USE_PYTHON= yes
USE_PYDISTUTILS= yes
PLIST_FILES= %%PYTHON_SITELIBDIR%%/${PORTNAME}.so
PORTDOCS= COPYRIGHT HISTORY README
post-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for f in ${PORTDOCS}
@${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>

View file

@ -0,0 +1,3 @@
MD5 (setproctitle-1.0.tar.gz) = 27504766d1a0ea30a88d8eaf1e311fa3
SHA256 (setproctitle-1.0.tar.gz) = a8b08c7a589aa6b76729bdee25d5a5e6b4c85415e30f356e308366711b98db48
SIZE (setproctitle-1.0.tar.gz) = 12003

View file

@ -0,0 +1,6 @@
A setproctitle implementation for Python.
The library allows a process to change its title (as displayed by system tools
such as ps(1) and top(1).
WWW: http://pypi.python.org/pypi/setproctitle/