Page MenuHomeFreeBSD

New port: devel/py-monotonic
ClosedPublic

Authored by alfred on Oct 4 2015, 7:09 PM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, Jan 21, 12:20 AM
Unknown Object (File)
Dec 22 2024, 10:46 PM
Unknown Object (File)
Oct 7 2024, 11:47 PM
Unknown Object (File)
Sep 28 2024, 8:30 PM
Unknown Object (File)
Sep 8 2024, 6:41 AM
Unknown Object (File)
Sep 5 2024, 9:42 AM
Unknown Object (File)
Sep 5 2024, 7:42 AM
Unknown Object (File)
Sep 3 2024, 10:56 AM
Subscribers

Details

Reviewers
sunpoet
novel
koobs
Group Reviewers
Python
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
No Lint Coverage
Unit
No Test Coverage
Build Status
Buildable 669
Build 669: arc lint + arc unit

Event Timeline

alfred retitled this revision from to New port: devel/py-monotonic.
alfred updated this object.
alfred edited the test plan for this revision. (Show Details)
sunpoet added a subscriber: sunpoet.
sunpoet added inline comments.
devel/Makefile
4098

Please keep SUBDIR sorted alphabetically.

devel/py-monotonic/Makefile
1

Let's use @FreeBSD.org. :)

5

FYI, 0.4 is released on Oct, 5.

14

If there is a license file shipped in the tarball, please add it to LICNESE_FILE.
In this case, please add "LICENSE_FILE=${WRKSRC}/LICENSE".

15

Since this module is an implementation of time.monotonic() for Python 2 & < 3.3, I would suggest to use "USES=python:-3.2" here.

16

Please sort USE_PYTHON.

Hi,

Alfred can you please provide a new patch, as per request from sunpoet ;)

Oh, I tried to upload a new diff, but wasn't able to do so, it makes me to create a new revision. Anyways, here it goes:

https://reviews.freebsd.org/D4845

It addresses sunpoet's comments and updates the version to 0.5.

This revision is now accepted and ready to land.Jan 11 2016, 1:22 AM