./sysutils/py-supervisor, System for controlling process state under UNIX

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ] [ Add to tracker ]


Branch: CURRENT, Version: 4.2.5nb1, Package name: py310-supervisor-4.2.5nb1, Maintainer: pkgsrc-users

Supervisor is a client/server system that allows its users to control
a number of processes on UNIX-like operating systems.


Required to run:
[devel/py-setuptools] [lang/python37]

Required to build:
[pkgtools/cwrappers]

Master sites:

Filesize: 455.149 KB

Version history: (Expand)


CVS history: (Expand)


   2023-07-19 14:50:56 by Thomas Klausner | Files touched by this commit (1)
Log message:
py-supervisor: honor VARBASE in rc.d script

ride bump
   2023-07-19 14:48:22 by Thomas Klausner | Files touched by this commit (5)
Log message:
py-supervisor: improvements for running this

Install example config file in expect location.
Adapt paths in example config for pkgsrc.
Add rc.d script and install it.

Bump PKGREVISION.
   2023-07-03 15:04:57 by Thomas Klausner | Files touched by this commit (1)
Log message:
py-supervisor: not for Python 2
   2023-03-29 11:34:15 by Thomas Klausner | Files touched by this commit (96)
Log message:
*: use PYTHON_VERSION instead of _PYTHON_VERSION
   2022-12-29 13:35:42 by Adam Ciarcinski | Files touched by this commit (2) | Package updated
Log message:
py-supervisor: updated to 4.2.5

4.2.5 (2022-12-23)
------------------

- Fixed a bug where the XML-RPC method ``supervisor.startProcess()`` would
  return 500 Internal Server Error instead of an XML-RPC fault response
  if the command could not be parsed.  Patch by Julien Le Cléach.

- Fixed a bug on Python 2.7 where a ``UnicodeDecodeError`` may have occurred
  when using the web interface.  Patch by Vinay Sajip.

- Removed use of ``urllib.parse`` functions ``splithost``, ``splitport``, and
  ``splittype`` deprecated in Python 3.8.

- Removed use of ``asynchat`` and ``asyncore`` deprecated in Python 3.10.

- The return value of the XML-RPC method ``supervisor.getAllConfigInfo()``
  now includes the ``directory``, ``uid``, and ``serverurl`` of the
  program.  Patch by Yellmean.

- If a subprocess exits with a unexpected exit code (one not listed in
  ``exitcodes=`` in a ``[program:x]`` section) then the exit will now be logged
  at the ``WARN`` level instead of ``INFO``.  Patch by Precy Lee.

- ``supervisorctl shutdown`` now shows an error message if an argument is
  given.

- File descriptors are now closed using the faster ``os.closerange()`` instead
  of calling ``os.close()`` in a loop.  Patch by tyong920.
   2022-01-05 16:41:32 by Thomas Klausner | Files touched by this commit (289)
Log message:
python: egg.mk: add USE_PKG_RESOURCES flag

This flag should be set for packages that import pkg_resources
and thus need setuptools after the build step.

Set this flag for packages that need it and bump PKGREVISION.
   2022-01-04 21:55:40 by Thomas Klausner | Files touched by this commit (1595)
Log message:
*: bump PKGREVISION for egg.mk users

They now have a tool dependency on py-setuptools instead of a DEPENDS
   2021-12-31 14:28:23 by Adam Ciarcinski | Files touched by this commit (3) | Package updated
Log message:
py-supervisor: updated to 4.2.4

4.2.4 (2021-12-30)

Fixed a bug where the --identifier command line argument was ignored. It was \ 
broken since at least 3.0a7 (released in 2009) and probably earlier. Patch by \ 
Julien Le Cléach.

4.2.3 (2021-12-27)

Fixed a race condition where an rpcinterface extension that subscribed to events \ 
would not see the correct process state if it accessed the the state attribute \ 
on a Subprocess instance immediately in the event callback. Patch by Chao Wang.
Added the setuptools package to the list of dependencies in setup.py because it \ 
is a runtime dependency. Patch by Louis Sautier.
The web interface will now return a 404 Not Found response if a log file is \ 
missing. Previously, it would return 410 Gone. It was changed because 410 is \ 
intended to mean that the condition is likely to be permanent. A log file \ 
missing is usually temporary, e.g. a process that was never started will not \ 
have a log file but will have one as soon as it is started.