Date: Wed, 20 Sep 2017 01:55:00 +0000 (UTC) From: "Danilo G. Baio" <dbaio@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r450185 - in head/net: . py-wmi-query Message-ID: <201709200155.v8K1t0NU072694@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: dbaio Date: Wed Sep 20 01:55:00 2017 New Revision: 450185 URL: https://svnweb.freebsd.org/changeset/ports/450185 Log: Add net/py-wmi-query, Python scripts to get wmi data classes in a dict Simple Python lib to get wmi data classes in a dict. The script wmi_query make a query and print on the screen the wmi class object. Both keys and values will be printed for each object returned by the query. WWW: https://github.com/kanazux/wmi-query PR: 222451 Submitted by: Silvio Ap Silva <alvolivre@live.com> Added: head/net/py-wmi-query/ head/net/py-wmi-query/Makefile (contents, props changed) head/net/py-wmi-query/distinfo (contents, props changed) head/net/py-wmi-query/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Wed Sep 20 01:54:22 2017 (r450184) +++ head/net/Makefile Wed Sep 20 01:55:00 2017 (r450185) @@ -1079,6 +1079,7 @@ SUBDIR += py-upnp-inspector SUBDIR += py-uritemplate SUBDIR += py-urllib3 + SUBDIR += py-wmi-query SUBDIR += py-wolframalpha SUBDIR += py-xmlrpc SUBDIR += py-zope.proxy Added: head/net/py-wmi-query/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-wmi-query/Makefile Wed Sep 20 01:55:00 2017 (r450185) @@ -0,0 +1,22 @@ +# Created by: Silvio Ap Silva aka kanazuchi <alvolivre@live.com> +# $FreeBSD$ + +PORTNAME= wmi-query +PORTVERSION= 0.1.3 +CATEGORIES= net python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= alvolivre@live.com +COMMENT= Python scripts to get wmi data classes in a dict + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}impacket>=0:net/py-impacket + +NO_ARCH= yes +USES= python +USE_PYTHON= autoplist distutils + +.include <bsd.port.mk> Added: head/net/py-wmi-query/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-wmi-query/distinfo Wed Sep 20 01:55:00 2017 (r450185) @@ -0,0 +1,3 @@ +TIMESTAMP = 1505868209 +SHA256 (wmi-query-0.1.3.tar.gz) = 143137c2bdbf208e693055332b63cafde7a76ae4fb4a5894c174d436994814aa +SIZE (wmi-query-0.1.3.tar.gz) = 3709 Added: head/net/py-wmi-query/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-wmi-query/pkg-descr Wed Sep 20 01:55:00 2017 (r450185) @@ -0,0 +1,5 @@ +Simple Python lib to get wmi data classes in a dict. +The script wmi_query make a query and print on the screen the wmi class object. +Both keys and values will be printed for each object returned by the query. + +WWW: https://github.com/kanazux/wmi-query
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201709200155.v8K1t0NU072694>