From owner-svn-ports-all@FreeBSD.ORG Sun Aug 17 11:18:55 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B66BCDB9; Sun, 17 Aug 2014 11:18:55 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 A200D2994; Sun, 17 Aug 2014 11:18:55 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s7HBItsq049660; Sun, 17 Aug 2014 11:18:55 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s7HBIsJF049654; Sun, 17 Aug 2014 11:18:54 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201408171118.s7HBIsJF049654@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Sun, 17 Aug 2014 11:18:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r365172 - in head/security: . py-cpe X-SVN-Group: ports-head 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.18-1 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: Sun, 17 Aug 2014 11:18:55 -0000 Author: koobs Date: Sun Aug 17 11:18:54 2014 New Revision: 365172 URL: http://svnweb.freebsd.org/changeset/ports/365172 QAT: https://qat.redports.org/buildarchive/r365172/ Log: [NEW] security/py-cpe: Common Platform Enumeration (CPE) for Python Common Platform Enumeration (CPE) is a standardized method of describing and identifying classes of applications, operating systems, and hardware devices present among an enterprise's computing assets. For more information, please visit the official website of CPE, developed by MITRE and maintained by NIST. Features: * Versions: 1.1, 2.2, 2.3 * Formats: WFN, URI, FS. * Cross-version conversion. * Language parsing and evaluation. WWW: https://github.com/nilp0inter/cpe Added: head/security/py-cpe/ head/security/py-cpe/Makefile (contents, props changed) head/security/py-cpe/distinfo (contents, props changed) head/security/py-cpe/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Sun Aug 17 11:08:05 2014 (r365171) +++ head/security/Makefile Sun Aug 17 11:18:54 2014 (r365172) @@ -754,6 +754,7 @@ SUBDIR += py-cerealizer SUBDIR += py-certify SUBDIR += py-clamav + SUBDIR += py-cpe SUBDIR += py-cracklib SUBDIR += py-cryptkit SUBDIR += py-cryptography Added: head/security/py-cpe/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-cpe/Makefile Sun Aug 17 11:18:54 2014 (r365172) @@ -0,0 +1,19 @@ +# Created by: Kubilay Kocak +# $FreeBSD$ + +PORTNAME= cpe +PORTVERSION= 1.1.0 +CATEGORIES= security python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= koobs@FreeBSD.org +COMMENT= Common Platform Enumeration (CPE) for Python + +LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= python:-2.7 +USE_PYTHON= autoplist distutils + +.include Added: head/security/py-cpe/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-cpe/distinfo Sun Aug 17 11:18:54 2014 (r365172) @@ -0,0 +1,2 @@ +SHA256 (cpe-1.1.0.tar.gz) = 3e7d18460a9921ab6668d3cc2ffec59b6bd99922f30714446bcf982c022c4836 +SIZE (cpe-1.1.0.tar.gz) = 69155 Added: head/security/py-cpe/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-cpe/pkg-descr Sun Aug 17 11:18:54 2014 (r365172) @@ -0,0 +1,15 @@ +Common Platform Enumeration (CPE) is a standardized method of describing +and identifying classes of applications, operating systems, and hardware +devices present among an enterprise's computing assets. + +For more information, please visit the official website of CPE, developed +by MITRE and maintained by NIST. + +Features: + + * Versions: 1.1, 2.2, 2.3 + * Formats: WFN, URI, FS. + * Cross-version conversion. + * Language parsing and evaluation. + +WWW: https://github.com/nilp0inter/cpe