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>
23 lines
725 B
Ruby
23 lines
725 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_platformdirs < Pip
|
|
description 'A small Python package for determining appropriate platform-specific dirs.'
|
|
homepage 'https://pypi.org/project/platformdirs'
|
|
version "4.5.1-#{CREW_PY_VER}"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '7de05f54deb55ae56893cb8c141bf8e4c58a487fef30bf892b2e795d5d1f7ef4',
|
|
armv7l: '7de05f54deb55ae56893cb8c141bf8e4c58a487fef30bf892b2e795d5d1f7ef4',
|
|
i686: '20d3fa75aecac0ad7241733e14207e5b2958db5612ff3cce7333a96012d9b3b5',
|
|
x86_64: '204e3dccd39c301f31a880fd91635112cadde305a7e197387413b79f2fe4f31c'
|
|
})
|
|
|
|
depends_on 'python3' => :build
|
|
|
|
no_source_build
|
|
end
|