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>
26 lines
805 B
Ruby
26 lines
805 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_ldapdomaindump < Pip
|
|
description 'LDAPDomainDump uses LDAP to dump active directory information.'
|
|
homepage 'https://github.com/dirkjanm/ldapdomaindump/'
|
|
version "0.10.0-#{CREW_PY_VER}"
|
|
license 'LGPL-3'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '30333d359732b713561e25f97c7c1145daada5601a3307d76df4b106419d42fc',
|
|
armv7l: '30333d359732b713561e25f97c7c1145daada5601a3307d76df4b106419d42fc',
|
|
i686: '7a1169e62aa0f77e1238866a743a20e118340d4e6dd6b3a5ffd59c6017893deb',
|
|
x86_64: '2e590e1041a1b43aa4bb6caa372851307b55408e9ab4ca7d2d26f16240e8a26e'
|
|
})
|
|
|
|
depends_on 'py3_future'
|
|
depends_on 'py3_dnspython'
|
|
depends_on 'py3_ldap3'
|
|
depends_on 'python3' => :build
|
|
|
|
no_source_build
|
|
end
|