summaryrefslogtreecommitdiff
path: root/sysutils/py-setproctitle
AgeCommit message (Collapse)AuthorFilesLines
2022-08-18py-setproctitle: updated to 1.3.2adam2-6/+6
Version 1.3.2 - Restore import-time initialization of macOS to avoid crash on thread+fork
2022-08-10py-setproctitle: updated to 1.3.1adam2-6/+6
Version 1.3.1 ------------- - Fixed segfault on macOS 12.5 in forked processes. Note that, as a workaround, Activity Monitor will show the title of the parent.
2022-07-28py-setproctitle: updated to 1.3.0adam3-8/+13
Version 1.3.0 - Added fallback no-op implementation if building the extension fails. - Added support for displaying title as the process name in MacOS Activity Monitor - Fixed "Symbol not found: _Py_GetArgcArgv" error when using Xcode provided Python - Fixed FreeBSD support, broken in 1.2 - Added package type annotations - Dropped support for Python 3.6.
2022-04-30py-setproctitle: mark as not-for-python-2.xwiz1-1/+3
Last minor update broke this without notice
2022-04-15py-setproctitle: updated to 1.2.3adam2-10/+12
Version 1.2.3 Added Python 3.10 packages. Added Wheel packages for macOS. Package build moved to cibuildwheel, other wheels provided
2022-01-04*: bump PKGREVISION for egg.mk userswiz1-1/+2
They now have a tool dependency on py-setuptools instead of a DEPENDS
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-01-25py-setproctitle: update to 1.2.2.wiz2-7/+7
Version 1.2.2 ------------- - Fixed Windows build (issues #89, #90). - Added wheel packages for Windows (issues #47, #90). - Added wheel packages for aarch64 (issues #95).
2020-12-06py-setproctitle: update to 1.2.1.wiz2-7/+9
Version 1.2.1 ------------- - Fixed segfault after ``os.environ.clear()`` (issue #88).
2020-11-29py-setproctitle: update to 1.2.wiz3-8/+9
Version 1.2 ~~~~~~~~~~~ - added ``getthreadtitle()`` and ``setthreadtitle()``. - Initialisation of the module moved to the first usage: importing the module doesn't cause side effects. - Manage much longer command lines (#52) - Improved build on BSD, dropped ancient versions (issue #67). - Fixed build for Python 3.8 (#66, #72) - Added support for Python 3.9 - Dropped support for Python < 3.6
2016-06-08Switch to MASTER_SITE_PYPI.wiz1-2/+2
2016-05-18Updated py35-setproctitle to 1.1.10.wiz3-11/+14
Version 1.1.10 ~~~~~~~~~~~~~~ - Fixed building with certain ``prctl.h`` implementations (issue #44). - Use ``setuptools`` if available (issue #48).
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-07-26Update to 1.1.9:wiz2-6/+6
Version 1.1.9 ~~~~~~~~~~~~~ - Fixed build on VC (issues #20, #33). - Added ``MANIFEST.in`` to the source distribution to help with RPM building (issue #30).
2014-03-31Import py27-setproctitle-1.1.8 as sysutils/py-setproctitle.wiz4-0/+29
The library allows a process to change its title (as displayed by system tools such as ps and top). Changing the title is mostly useful in multi-process systems, for example when a master process is forked: changing the children's title allows to identify the task each process is busy with. The technique is used by PostgreSQL and the OpenSSH Server for example.