mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-19 21:31:10 +02:00
sslyze: v1.1.2 bump
This commit is contained in:
parent
af33a8280d
commit
b78c364cec
5 changed files with 58 additions and 0 deletions
1
dev-python/tls_parser/Manifest
Normal file
1
dev-python/tls_parser/Manifest
Normal file
|
|
@ -0,0 +1 @@
|
|||
DIST tls_parser-1.0.0.tar.gz 12785 SHA256 3af9932911a8df4a4ec704f7d6f375055c4b4a03e3ca3a25d11e364b922d5bb3 SHA512 57359290e57507183b3a3ae5848bf5469bf8932f483ecf1be385fe0007805d9d02d23ae46449f4407f51cdcc135a1d0312c284ea0c845354ac7dbc00d673337f WHIRLPOOL d3933b6411a9c2c5023746eed450462a2272ab0a75cb6bd5318518f9533f7832b677b2d0622c2cf9a246a6a035aa32d36b618c82670c280b4a693da61117ff58
|
||||
26
dev-python/tls_parser/tls_parser-1.0.0.ebuild
Normal file
26
dev-python/tls_parser/tls_parser-1.0.0.ebuild
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
PYTHON_COMPAT=( python2_7 python3_{4,5} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Small library to parse TLS records."
|
||||
HOMEPAGE="https://github.com/nabla-c0d3/tls_parser"
|
||||
SRC_URI="https://github.com/nabla-c0d3/tls_parser/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE=""
|
||||
|
||||
DEPEND=""
|
||||
RDEPEND="${DEPEND}
|
||||
dev-python/typing
|
||||
dev-python/enum34
|
||||
"
|
||||
|
||||
#typing; python_version < '3.5'
|
||||
#enum34; python_version < '3.4'
|
||||
|
|
@ -1,2 +1,3 @@
|
|||
DIST sslyze-1.1.0.tar.gz 2554756 SHA256 9c95971f6b3f1467d9ffa58d25c49aefcba99ac058fe396aa0022c261de0c49c SHA512 6ca1cf86bccd8aefaa6dc1b58bfc32057c8c63d4da5d545d7b0a9f05a7f9fa094ef98fdbe0a2252f44205e460bf8e9a2dc4bf85d1948c01efa42c5159bd19938 WHIRLPOOL 0b642b0a7ed1ee75cd0a7a29c5ee571869bd3166a2eb9aff056555977b3d69a992800726ffd6414a2d39de7f92af38d95e352f5e4e43bb1ae3de97a32cf1a56e
|
||||
DIST sslyze-1.1.1.tar.gz 2554949 SHA256 c71e735e0ab61757866a00a8bfdf4921e19aa3af1efc23dab96a9c764061eb33 SHA512 8fec5243997be19c25f8c674bf222ede38589c8d81f9d58589f585b0893ede2d1cfa878581abace3393bbfe4dbed2f1b98aa11cc249b82f764ecf3e0e17c7f19 WHIRLPOOL e4ccdc1e782bf22852769e5ef90c16a39a18e33cccdad2d9380d22331fb1db8427fc78a629f464b95dd1f37648f55519bb9d23723716f6d40d71e91720896106
|
||||
DIST sslyze-1.1.2.tar.gz 2553796 SHA256 a77aea29beb0cf30b9371e9b5d5ddc8ef5616b411ac62603c914ce576b1bc9af SHA512 6d3bcb3e57dd6cdab03ff2b581f3624b595a551f1ced47cf67eb7db2f5317da64adfb12f264733edcd7ff06b88a29249b5e4682ab401d76bb21de1bb1994ce9b WHIRLPOOL e2d1fd1b47da81d047c5eca8c2aacb9560cbd0e88b27d8655a7ba768a02f45c2ea6c83b44e2ec57669af32bfcffc356820389ae4a39e076adca49169a62de040
|
||||
|
|
|
|||
28
net-analyzer/sslyze/sslyze-1.1.2.ebuild
Normal file
28
net-analyzer/sslyze/sslyze-1.1.2.ebuild
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
PYTHON_COMPAT=( python2_7 )
|
||||
inherit distutils-r1 versionator
|
||||
|
||||
DESCRIPTION="Fast and full-featured SSL scanner"
|
||||
HOMEPAGE="https://github.com/nabla-c0d3/sslyze"
|
||||
SRC_URI="https://github.com/nabla-c0d3/sslyze/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE=""
|
||||
|
||||
DEPEND=""
|
||||
#RDEPEND="=dev-python/nassl-$(get_version_component_range 1-2)*"
|
||||
RDEPEND="=dev-python/nassl-0.16*
|
||||
dev-python/typing
|
||||
dev-python/enum34
|
||||
=dev-python/cryptography-1.9
|
||||
=dev-python/tls-parser-1.0.0
|
||||
"
|
||||
|
||||
#typing; python_version < '3.5'
|
||||
#enum34; python_version < '3.4'
|
||||
|
|
@ -78,6 +78,8 @@ dev-python/simplesoapy
|
|||
|
||||
#sslyze
|
||||
=dev-python/nassl-0.16*
|
||||
dev-python/tls_parser
|
||||
=dev-python/cryptography-1.9*
|
||||
|
||||
#capstone
|
||||
=dev-python/capstone-python-4.0*
|
||||
|
|
|
|||
Loading…
Reference in a new issue