burpsuite: 2020.12.1 bump

This commit is contained in:
blshkv 2020-12-19 16:57:21 +08:00
parent 9326fcade8
commit f9d23e7866
No known key found for this signature in database
GPG key ID: 32BDCED870788F04
6 changed files with 12 additions and 46 deletions

View file

@ -3,7 +3,7 @@
EAPI=7
PYTHON_COMPAT=( python3_{6,7,8} )
PYTHON_COMPAT=( python3_{6..9} )
PYTHON_REQ_USE="tk"
inherit distutils-r1
@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
KEYWORDS="amd64 ~arm64 x86"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
DEPEND="${PYTHON_DEPS}"

View file

@ -3,7 +3,8 @@
EAPI=7
PYTHON_COMPAT=( python3_{6,7,8} )
DISTUTILS_USE_SETUPTOOLS=rdepend
PYTHON_COMPAT=( python3_{6..9} )
inherit distutils-r1
@ -13,7 +14,8 @@ SRC_URI="https://github.com/nolze/msoffcrypto-tool/archive/v${PV}.tar.gz -> ${P}
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
KEYWORDS="amd64 ~arm64 x86"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
DEPEND="${PYTHON_DEPS}"

View file

@ -1,9 +1,10 @@
# Copyright 1999-2019 Gentoo Authors
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{5,6,7,8} )
DISTUTILS_USE_SETUPTOOLS=rdepend
PYTHON_COMPAT=( python3_{6..9} )
inherit distutils-r1
@ -11,9 +12,9 @@ DESCRIPTION="A VBA p-code disassembler"
HOMEPAGE="https://github.com/bontchev/pcodedmp"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
KEYWORDS="~amd64 ~arm64 ~mips ~x86"
KEYWORDS="amd64 ~arm64 x86"
LICENSE="GPL-3"
SLOT=0
RDEPEND="${PYTHON_DEPS}"
RDEPEND=""
DEPEND="${RDEPEND}"

View file

@ -1,3 +1,2 @@
DIST burpsuite_community_v2020.11.1.jar 401376351 BLAKE2B 09fa99250c2f0aed786ee24570f2dcfb4f6cd603fd4e7e36489919d7abb90526584d1ef25b2b84e1aaeea7f1432152aee16f16f31e8061dca2e0faca8853c63e SHA512 76213a9e5ffc5295e971630674ebfd3a2485bf90d41d8dd591af6da1d37c04c75c20f74d5f4ef3cfd59f4fa593335097498c7561b9d329241673a0b46ec1a316
DIST burpsuite_community_v2020.12.1.jar 410644531 BLAKE2B e739c7fad39d3c702c78a9009065cdbe38b2e276816e2e50319b996b0e401889138a8f85e849bea0209cbfcbebcc230a92fa34f48a404b09e09ae0a99910639f SHA512 6009727281ae8f273042cb6136fea831ac4adb8c9a51694fee3e4e640ce65735587fcdafff7e534b4229d68ae8bfd2be46f93037ee8b66c7a544bbf4ec1ae886
DIST burpsuite_community_v2020.12.jar 410844371 BLAKE2B 6267efe92b32eb1638ea23f4e28177c791975bcac8463dfa18906a14ae657c2e76e4b417e39ea967abdc4785c89d2cf86839077937a50d4319ed9fcb75e77594 SHA512 0ff7b21fb5bf4a0734601002a49268139e235652420eb49c1c7476b3cffd27adb8fe5751ce44354f5684d010578b2e0d4f4bbf5a8671efbfd8b965f016bacde5
DIST burpsuite_community_v2020.9.1.jar 383462343 BLAKE2B 146aa107f0d4cfec023afc006583b04df0b2d12329237b99493ed14fdc65bad4a1196ce4bfed4d39c70f0324ad0f40ef4379bdece7a3f946eb3fb2ed459e8ab2 SHA512 50b9aca8ed3e2e276fc7c444647f8ce9cb5565918547ae801659be146bbe963e9e2e7e6d27d19a4b4aa378f8e47244f43904025e562c18d0a31421a33977f61e

View file

@ -1,36 +0,0 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
MY_P="burpsuite_community_v${PV}.jar"
DESCRIPTION="Interactive proxy for attacking and debugging web applications"
HOMEPAGE="https://portswigger.net/burp/"
SRC_URI="https://portswigger.net/burp/releases/download?product=community&version=${PV} -> ${MY_P}"
LICENSE="BURP"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
DEPEND=""
RDEPEND="|| ( virtual/jre virtual/jdk )"
S=${WORKDIR}
src_unpack() {
cp "${DISTDIR}/${A}" "${S}"
}
src_install() {
dodir /opt/"${PN}"
insinto /opt/"${PN}"
doins "${MY_P}"
newbin - ${PN} <<-EOF
#!/bin/sh
export _JAVA_OPTIONS='-Dawt.useSystemAAFontSettings=on'
java -Xmx2G -jar /opt/${PN}/${MY_P} >/dev/null 2>&1 &
EOF
}