svn commit: r533815 - in head/sysutils: . py-py-cpuinfo

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Sun May 3 20:47:00 UTC 2020


Author: sunpoet
Date: Sun May  3 20:46:56 2020
New Revision: 533815
URL: https://svnweb.freebsd.org/changeset/ports/533815

Log:
  Add py-py-cpuinfo 5.0.0
  
  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.
  
  WWW: https://github.com/workhorsy/py-cpuinfo

Added:
  head/sysutils/py-py-cpuinfo/
  head/sysutils/py-py-cpuinfo/Makefile   (contents, props changed)
  head/sysutils/py-py-cpuinfo/distinfo   (contents, props changed)
  head/sysutils/py-py-cpuinfo/pkg-descr   (contents, props changed)
Modified:
  head/sysutils/Makefile

Modified: head/sysutils/Makefile
==============================================================================
--- head/sysutils/Makefile	Sun May  3 20:46:50 2020	(r533814)
+++ head/sysutils/Makefile	Sun May  3 20:46:56 2020	(r533815)
@@ -1008,6 +1008,7 @@
     SUBDIR += py-psutil
     SUBDIR += py-psutil121
     SUBDIR += py-ptyprocess
+    SUBDIR += py-py-cpuinfo
     SUBDIR += py-python-consul
     SUBDIR += py-python-crontab
     SUBDIR += py-python-nomad

Added: head/sysutils/py-py-cpuinfo/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/py-py-cpuinfo/Makefile	Sun May  3 20:46:56 2020	(r533815)
@@ -0,0 +1,21 @@
+# Created by: Po-Chuan Hsieh <sunpoet at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	py-cpuinfo
+PORTVERSION=	5.0.0
+CATEGORIES=	sysutils python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	sunpoet at FreeBSD.org
+COMMENT=	Get CPU info with pure Python
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USES=		python
+USE_PYTHON=	autoplist concurrent distutils
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/sysutils/py-py-cpuinfo/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/py-py-cpuinfo/distinfo	Sun May  3 20:46:56 2020	(r533815)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1588450788
+SHA256 (py-cpuinfo-5.0.0.tar.gz) = 2cf6426f776625b21d1db8397d3297ef7acfa59018f02a8779123f3190f18500
+SIZE (py-cpuinfo-5.0.0.tar.gz) = 82118

Added: head/sysutils/py-py-cpuinfo/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/py-py-cpuinfo/pkg-descr	Sun May  3 20:46:56 2020	(r533815)
@@ -0,0 +1,5 @@
+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.
+
+WWW: https://github.com/workhorsy/py-cpuinfo


More information about the svn-ports-head mailing list