From owner-svn-ports-all@freebsd.org Wed Sep 20 01:55:01 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 88948E160CE; Wed, 20 Sep 2017 01:55:01 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 629B075F9A; Wed, 20 Sep 2017 01:55:01 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v8K1t0EZ072698; Wed, 20 Sep 2017 01:55:00 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v8K1t0NU072694; Wed, 20 Sep 2017 01:55:00 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201709200155.v8K1t0NU072694@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Wed, 20 Sep 2017 01:55:00 +0000 (UTC) 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 X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: in head/net: . py-wmi-query X-SVN-Commit-Revision: 450185 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Sep 2017 01:55:01 -0000 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 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 +# $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 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