Page MenuHomeFreeBSD

New port: devel/py-monotonic
ClosedPublic

Authored by novel on Jan 10 2016, 3:57 AM.
Tags
Referenced Files
Unknown Object (File)
Thu, Apr 11, 2:58 AM
Unknown Object (File)
Tue, Mar 19, 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
Unknown Object (File)
Dec 10 2023, 5:49 PM
Unknown Object (File)
Dec 8 2023, 7:10 AM
Unknown Object (File)
Dec 6 2023, 12:34 AM
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

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
11

Capitalize Python in Python 2

16

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
9

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