mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-13 18:31:08 +02:00
pypykatz-0.5.7.ebuild
This commit is contained in:
parent
5745047400
commit
c765293f15
3 changed files with 10 additions and 50 deletions
|
|
@ -1,2 +1,2 @@
|
|||
DIST 0.5.2.tar.gz 348183 BLAKE2B 0bc40ec2d465e76527b17150f0f61b34c80e478de6067555c5d22fd87c3b59a9334acdfe7e86ea34be2c18477ee92d116ecd827091d549734449955059308392 SHA512 74a535e0a4bb4caf63d82c3dcdd0775dff1966597a9df1f01ea519e8b0f4a6277648744a52608e32c47db67ac89bf66609bc89f33ca9b8f91822e0bb35b2dff4
|
||||
DIST 0.5.6.tar.gz 316366 BLAKE2B dceb2616e9ee79e1ade6faaa1d15733a543e901db77320cf25b06b3f9a162440bb97ef63a578dcef6b853e58983dc2c1c706744052836f11db74e433aa513201 SHA512 71ec3e4de0eb058cb506e4fd66438bca36b2472bafae985db31823b52d008a68da1d293fa797a1db7f877d05135cf561f2ea8d540811c338fdd6f25abdef046f
|
||||
DIST 0.5.7.tar.gz 316356 BLAKE2B 6fe411535c48f643360b34d3069bc4ced6df69340af94d47bf979b4953bc661a4f552b65fce4c12601ab38be36fbc2178d8e8970e50e503db0bf1843c925bca7 SHA512 0f0eae8e59dbefc715a7954be4862561133d14ef1d9bde834f0f845223ee096f57091d4c5b0ea866d47a2a8246c921a71f7c0813debcad2551614e8c6cd1e830
|
||||
|
|
|
|||
|
|
@ -1,41 +0,0 @@
|
|||
From 2e32ae9942f5fddbefa08cc83174ac84340dd8ed Mon Sep 17 00:00:00 2001
|
||||
From: Din Jakupi <din.jakupi@gmail.com>
|
||||
Date: Wed, 28 Apr 2021 09:18:39 +0200
|
||||
Subject: [PATCH] fix error/warning in setup install
|
||||
|
||||
---
|
||||
pypykatz/alsadecryptor/packages/kerberos/decryptor.py | 2 +-
|
||||
setup.py | 4 ++--
|
||||
2 files changed, 3 insertions(+), 3 deletions(-)
|
||||
|
||||
diff --git a/pypykatz/alsadecryptor/packages/kerberos/decryptor.py b/pypykatz/alsadecryptor/packages/kerberos/decryptor.py
|
||||
index 5912efd..a5ba850 100644
|
||||
--- a/pypykatz/alsadecryptor/packages/kerberos/decryptor.py
|
||||
+++ b/pypykatz/alsadecryptor/packages/kerberos/decryptor.py
|
||||
@@ -84,7 +84,7 @@ def handle_ticket(self, kerberos_ticket):
|
||||
except Exception as e:
|
||||
raise e
|
||||
|
||||
- def start(self):
|
||||
+ async def start(self):
|
||||
try:
|
||||
entry_ptr_value, entry_ptr_loc = self.find_first_entry()
|
||||
except Exception as e:
|
||||
diff --git a/setup.py b/setup.py
|
||||
index 427ccc7..707b933 100644
|
||||
--- a/setup.py
|
||||
+++ b/setup.py
|
||||
@@ -45,11 +45,11 @@
|
||||
|
||||
# long_description=open("README.txt").read(),
|
||||
python_requires='>=3.6',
|
||||
- classifiers=(
|
||||
+ classifiers=[
|
||||
"Programming Language :: Python :: 3.6",
|
||||
"License :: OSI Approved :: MIT License",
|
||||
"Operating System :: OS Independent",
|
||||
- ),
|
||||
+ ],
|
||||
install_requires=[
|
||||
'minidump>=0.0.17',
|
||||
'minikerberos>=0.2.11',
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
|
@ -17,11 +17,12 @@ SLOT="0"
|
|||
KEYWORDS="amd64 ~arm64 x86"
|
||||
IUSE="test"
|
||||
|
||||
RDEPEND=">=dev-python/minidump-0.0.18[${PYTHON_USEDEP}]
|
||||
>=dev-python/minikerberos-0.2.14[${PYTHON_USEDEP}]
|
||||
RDEPEND=">=dev-python/unicrypto-0.0.5[${PYTHON_USEDEP}]
|
||||
>=dev-python/minidump-0.0.21[${PYTHON_USEDEP}]
|
||||
>=dev-python/minikerberos-0.2.20[${PYTHON_USEDEP}]
|
||||
>=dev-python/aiowinreg-0.0.7[${PYTHON_USEDEP}]
|
||||
>=dev-python/msldap-0.3.30[${PYTHON_USEDEP}]
|
||||
>=dev-python/winacl-0.1.1[${PYTHON_USEDEP}]
|
||||
>=dev-python/aiosmb-0.2.50[${PYTHON_USEDEP}]"
|
||||
DEPEND="${RDEPEND}"
|
||||
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
||||
>=dev-python/msldap-0.3.38[${PYTHON_USEDEP}]
|
||||
>=dev-python/winacl-0.1.2[${PYTHON_USEDEP}]
|
||||
>=dev-python/aiosmb-0.3.8[${PYTHON_USEDEP}]
|
||||
>=dev-python/aesedb-0.0.5[${PYTHON_USEDEP}]
|
||||
"
|
||||
Loading…
Reference in a new issue