svn commit: r496423 - in head/sysutils: . py-cpuinfo
Yuri Victorovich
yuri at FreeBSD.org
Thu Mar 21 06:42:18 UTC 2019
Author: yuri
Date: Thu Mar 21 06:42:16 2019
New Revision: 496423
URL: https://svnweb.freebsd.org/changeset/ports/496423
Log:
New port: sysutils/py-cpuinfo: Module for getting CPU info with pure Python
Added:
head/sysutils/py-cpuinfo/
head/sysutils/py-cpuinfo/Makefile (contents, props changed)
head/sysutils/py-cpuinfo/distinfo (contents, props changed)
head/sysutils/py-cpuinfo/pkg-descr (contents, props changed)
Modified:
head/sysutils/Makefile
Modified: head/sysutils/Makefile
==============================================================================
--- head/sysutils/Makefile Thu Mar 21 06:40:33 2019 (r496422)
+++ head/sysutils/Makefile Thu Mar 21 06:42:16 2019 (r496423)
@@ -1008,6 +1008,7 @@
SUBDIR += py-bcfg2
SUBDIR += py-bitrot
SUBDIR += py-cdmi
+ SUBDIR += py-cpuinfo
SUBDIR += py-croniter
SUBDIR += py-crontab
SUBDIR += py-diffoscope
Added: head/sysutils/py-cpuinfo/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/sysutils/py-cpuinfo/Makefile Thu Mar 21 06:42:16 2019 (r496423)
@@ -0,0 +1,20 @@
+# $FreeBSD$
+
+PORTNAME= py-cpuinfo
+DISTVERSION= 5.0.0
+CATEGORIES= sysutils python
+MASTER_SITES= CHEESESHOP
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= yuri at FreeBSD.org
+COMMENT= Module for getting CPU info with pure Python
+
+LICENSE= MIT
+LICENSE_FILE= ${WRKSRC}/LICENSE
+
+USES= python
+USE_PYTHON= distutils concurrent autoplist
+
+NO_ARCH= yes
+
+.include <bsd.port.mk>
Added: head/sysutils/py-cpuinfo/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/sysutils/py-cpuinfo/distinfo Thu Mar 21 06:42:16 2019 (r496423)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1553150245
+SHA256 (py-cpuinfo-5.0.0.tar.gz) = 2cf6426f776625b21d1db8397d3297ef7acfa59018f02a8779123f3190f18500
+SIZE (py-cpuinfo-5.0.0.tar.gz) = 82118
Added: head/sysutils/py-cpuinfo/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/sysutils/py-cpuinfo/pkg-descr Thu Mar 21 06:42:16 2019 (r496423)
@@ -0,0 +1,6 @@
+Py-cpuinfo gets CPU info with pure Python. Py-cpuinfo should work without any
+extra programs or libraries, beyond what your OS provides. It does not require
+any compilation(C/C++, assembly, et cetera) to use. It works with Python
+2 and 3.
+
+WWW: https://github.com/workhorsy/py-cpuinfo
More information about the svn-ports-head
mailing list