You've already forked macports-ports
mirror of
https://github.com/encounter/macports-ports.git
synced 2026-03-30 11:29:27 -07:00
49 lines
2.0 KiB
Tcl
49 lines
2.0 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-gpstime
|
|
version 0.3.2
|
|
|
|
platforms darwin
|
|
supported_archs noarch
|
|
license GPL-3
|
|
maintainers {gmail.com:stefan.countryman @stefco} openmaintainer
|
|
|
|
description GPS-aware datetime module with leap-second fetching
|
|
long_description This package provides a gpstime package, including a \
|
|
gpstime subclass of the built-in datetime class with the \
|
|
addition of GPS access and conversion methods. Leap \
|
|
second data is provided by the ietf_leap_seconds module \
|
|
that helps automatically maintain a local copy of the \
|
|
IETF leap second list: \
|
|
https://www.ietf.org/timezones/data/leap-seconds.list \
|
|
A command-line GPS data conversion utility that uses the \
|
|
gpstime module is also included. It is a rough \
|
|
work-alike to tconvert.
|
|
|
|
homepage https://git.ligo.org/cds/${python.rootname}
|
|
|
|
master_sites https://git.ligo.org/cds/${python.rootname}/-/archive/${version}/
|
|
distname ${python.rootname}-${version}
|
|
|
|
checksums rmd160 d62957cd15570ce24e5e17d5fe6d587777698809 \
|
|
sha256 b303807ba1e6a93f1ee1d47f36c014f2580348dd5045dd0cb28c1a59a0d700aa \
|
|
size 23900
|
|
|
|
python.versions 35 36 37 38
|
|
|
|
|
|
if {${name} ne ${subport}} {
|
|
depends_build-append \
|
|
port:py${python.version}-setuptools
|
|
depends_lib-append port:py${python.version}-dateutil \
|
|
port:py${python.version}-requests
|
|
livecheck.type none
|
|
} else {
|
|
livecheck.type regex
|
|
livecheck.url https://git.ligo.org/api/v4/projects/cds%2Fgpstime/repository/tags?sort=asc
|
|
livecheck.regex {"([0-9]\.[0-9]+\.[0-9]+)"}
|
|
}
|