Files
Eric F 3f5540ec6f py-{atomiclong,cached-property,pygit2,raven}: add py39
- Add python v 3.9

Since python39 is out, and py-gitfs (#8626) isn't merged yet. Updating
those ports – and py-gitfs can start att 39 instead.
2020-10-10 11:26:30 -07:00

37 lines
1.3 KiB
Tcl

# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
PortSystem 1.0
PortGroup python 1.0
name py-atomiclong
version 0.1.1
revision 0
categories-append devel
license MIT
maintainers nomaintainer
platforms darwin
description increment numbers, atomically, in python
long_description Sometimes you need to increment some numbers, atomically,\
in python. AtomicLong was born out of the need for fast\
thread-safe counters in python. It uses CFFI to bind GCC's\
Atomic Builtins. Its value is a C long which can be\
incremented, decremented, and set atomically. It is\
inspired by Java's java.util.concurrent.atomic.AtomicLong.
homepage https://github.com/dreid/atomiclong
checksums rmd160 aa6ea7bd708b3fcf83a7793f5284060a6ee52db8 \
sha256 cb1378c4cd676d6f243641c50e277504abf45f70f1ea76e446efcdbb69624bbe \
size 5057
python.versions 38 39
if {${name} ne ${subport}} {
depends_build-append port:py${python.version}-setuptools
depends_lib-append port:py${python.version}-cffi
livecheck.type none
}