Page MenuHomeFreeBSD

New port: devel/py-monotonic
ClosedPublic

Authored by novel on Jan 10 2016, 3:57 AM.
Tags
Referenced Files
Unknown Object (File)
Wed, May 22, 10:26 AM
Unknown Object (File)
Mon, May 20, 5:32 PM
Unknown Object (File)
Apr 23 2024, 12:29 PM
Unknown Object (File)
Apr 11 2024, 2:58 AM
Unknown Object (File)
Mar 19 2024, 1:32 PM
Unknown Object (File)
Jan 6 2024, 11:27 AM
Unknown Object (File)
Jan 6 2024, 11:26 AM
Unknown Object (File)
Dec 22 2023, 9:29 PM
Subscribers
None

Details

Reviewers
sunpoet
koobs
Summary

This module provides a monotonic() function which returns the value
(in fractional seconds) of a clock which never goes backwards. It
is compatible with Python 2 and Python 3.

On Python 3.3 or newer, monotonic will be an alias of time.monotonic
from the standard library. On older versions, it will fall back to
an equivalent implementation:

WWW: https://pypi.python.org/pypi/monotonic/

Diff Detail

Repository
rP FreeBSD ports repository
Lint
Lint Skipped
Unit
Tests Skipped

Event Timeline

novel retitled this revision from to New port: devel/py-monotonic.
novel updated this object.
novel edited the test plan for this revision. (Show Details)
novel added reviewers: sunpoet, koobs.
novel set the repository for this revision to rP FreeBSD ports repository.
novel edited the test plan for this revision. (Show Details)
novel added a project: Python.
koobs requested changes to this revision.Jan 10 2016, 5:54 AM
koobs edited edge metadata.
koobs added inline comments.
devel/py-monotonic/Makefile
12

Capitalize Python in Python 2

17

I think should be USES=python as the author explicitly states that monotonic will alias the standard libraries time.monotonic

devel/py-monotonic/pkg-descr
10

Match WWW to homepage or url field as per setup.py:

https://github.com/atdt/monotonic

This revision now requires changes to proceed.Jan 10 2016, 5:54 AM
novel edited edge metadata.
koobs edited edge metadata.

LGTM

This revision is now accepted and ready to land.Jan 10 2016, 2:10 PM