From owner-svn-ports-head@freebsd.org Sat Nov 18 23:35:23 2017 Return-Path: Delivered-To: svn-ports-head@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 BD3BCDDF697; Sat, 18 Nov 2017 23:35:23 +0000 (UTC) (envelope-from ehaupt@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 96C661CC8; Sat, 18 Nov 2017 23:35:23 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vAINZMPa094837; Sat, 18 Nov 2017 23:35:22 GMT (envelope-from ehaupt@FreeBSD.org) Received: (from ehaupt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vAINZMc8094833; Sat, 18 Nov 2017 23:35:22 GMT (envelope-from ehaupt@FreeBSD.org) Message-Id: <201711182335.vAINZMc8094833@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ehaupt set sender to ehaupt@FreeBSD.org using -f From: Emanuel Haupt Date: Sat, 18 Nov 2017 23:35:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r454468 - in head/net: . py-shodan X-SVN-Group: ports-head X-SVN-Commit-Author: ehaupt X-SVN-Commit-Paths: in head/net: . py-shodan X-SVN-Commit-Revision: 454468 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Nov 2017 23:35:23 -0000 Author: ehaupt Date: Sat Nov 18 23:35:22 2017 New Revision: 454468 URL: https://svnweb.freebsd.org/changeset/ports/454468 Log: Shodan is a search engine for Internet-connected devices. Google lets you search for websites, Shodan lets you search for devices. This library provides developers easy access to all of the data stored in Shodan in order to automate tasks and integrate into existing tools. WWW: https://cli.shodan.io/ Added: head/net/py-shodan/ head/net/py-shodan/Makefile (contents, props changed) head/net/py-shodan/distinfo (contents, props changed) head/net/py-shodan/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Sat Nov 18 23:34:19 2017 (r454467) +++ head/net/Makefile Sat Nov 18 23:35:22 2017 (r454468) @@ -1066,6 +1066,7 @@ SUBDIR += py-ripe.atlas.tools SUBDIR += py-s3cmd SUBDIR += py-s3transfer + SUBDIR += py-shodan SUBDIR += py-smbpasswd SUBDIR += py-soap2py SUBDIR += py-soappy Added: head/net/py-shodan/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-shodan/Makefile Sat Nov 18 23:35:22 2017 (r454468) @@ -0,0 +1,24 @@ +# Created by: Emanuel Haupt +# $FreeBSD$ + +PORTNAME= shodan +PORTVERSION= 1.7.3 +CATEGORIES= net python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= ehaupt@FreeBSD.org +COMMENT= Python library and command-line utility for Shodan + +LICENSE= MIT + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}XlsxWriter>0:textproc/py-xlsxwriter \ + ${PYTHON_PKGNAMEPREFIX}click-plugins>=1.0.3:devel/py-click-plugins \ + ${PYTHON_PKGNAMEPREFIX}click>=3.2:devel/py-click \ + ${PYTHON_PKGNAMEPREFIX}requests>0:www/py-requests + +USES= python +USE_PYTHON= autoplist distutils +NO_ARCH= yes + +.include Added: head/net/py-shodan/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-shodan/distinfo Sat Nov 18 23:35:22 2017 (r454468) @@ -0,0 +1,3 @@ +TIMESTAMP = 1511045607 +SHA256 (shodan-1.7.3.tar.gz) = 735bf70e3e4ff041c6d1424a40f349a8ba31f7e951422d8186a962d62550cf27 +SIZE (shodan-1.7.3.tar.gz) = 40839 Added: head/net/py-shodan/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-shodan/pkg-descr Sat Nov 18 23:35:22 2017 (r454468) @@ -0,0 +1,6 @@ +Shodan is a search engine for Internet-connected devices. Google lets you search +for websites, Shodan lets you search for devices. This library provides +developers easy access to all of the data stored in Shodan in order to automate +tasks and integrate into existing tools. + +WWW: https://cli.shodan.io/