mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-06 22:24:12 -05:00
* Adjust py3_readme_renderer to use CREW_PY_VER. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add Python 3.14 to install.sh, add more filelists. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add note in lib/const.rb about variable changes needing to go into install.sh Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update py3_pip, add more filelists. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Handle crew upload being passed multiple files properly, and keep no_compile_needed packages from having a binary block added. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Move yt_dlp to pip buildsystem. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * python_cleanup: Package File Update Run on linux/386 container. * Update py3_ldapdomaindump and mark as fixed. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust crew pip upload logic. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Gate verbose version.rb logging behind VERY_VERBOSE. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Do not let package_utils.clean_name change pkg.name, which affects using version.rb on py3_pygobject. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * pip package updates Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com>
32 lines
1.0 KiB
Ruby
32 lines
1.0 KiB
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_impacket < Pip
|
|
description 'Impacket provides network protocols constructors and dissectors.'
|
|
homepage 'https://www.secureauth.com/labs/open-source-tools/impacket/'
|
|
version "0.13.0-#{CREW_PY_VER}"
|
|
license 'Apache-2.0-with-impacket-modifications'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '1117db9e8cdee4c90401f25893c719a484e2a5f2095b494035ebd7d91dc4a3d2',
|
|
armv7l: '1117db9e8cdee4c90401f25893c719a484e2a5f2095b494035ebd7d91dc4a3d2',
|
|
i686: '8af047d0acfe121e4851f6da2be737df2039a1cc12255db4b95543c6c57dcc66',
|
|
x86_64: '02ea1096d99a8707bad27c53605f925e9730ce4b2c55be3dbf96eb0c2c9bcaf7'
|
|
})
|
|
|
|
depends_on 'py3_pycryptodomex'
|
|
depends_on 'py3_cryptography'
|
|
depends_on 'py3_flask'
|
|
depends_on 'py3_pyasn1'
|
|
depends_on 'py3_pyopenssl'
|
|
depends_on 'py3_six'
|
|
depends_on 'py3_ldap3'
|
|
depends_on 'py3_ldapdomaindump'
|
|
depends_on 'python3' => :build
|
|
depends_on 'rust' => :build
|
|
|
|
no_source_build
|
|
end
|