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>
31 lines
994 B
Ruby
31 lines
994 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_readme_renderer < Pip
|
|
description 'Safely render long_description/README files in Warehouse'
|
|
homepage 'https://github.com/pypa/readme_renderer'
|
|
version "44.0-#{CREW_PY_VER}"
|
|
license 'Apache'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'ede8109728d102a78d3035293b819f96d5d4c18e9f82047db1c8b77359cfd0b5',
|
|
armv7l: 'ede8109728d102a78d3035293b819f96d5d4c18e9f82047db1c8b77359cfd0b5',
|
|
i686: '460f1a73b0282bb82dd11f4b1f8b04a48ca2cb12685dd4c9dfa1b65dfa73cf9a',
|
|
x86_64: '8bc7195c1c9418a1678a47ca803e965702de64e4f62de72c7b31dc5006e163b2'
|
|
})
|
|
|
|
depends_on 'py3_bleach' => :build
|
|
depends_on 'py3_docutils' => :build
|
|
depends_on 'py3_nh3' => :build
|
|
depends_on 'py3_pygments' => :build
|
|
depends_on 'py3_six' => :build
|
|
depends_on 'py3_setuptools' => :build
|
|
depends_on 'py3_cmarkgfm' => :build
|
|
depends_on 'python3' # R
|
|
depends_on 'rust' => :build
|
|
|
|
no_source_build
|
|
end
|