Post-Python 3.14.1 cleanups & Python package updates (#13716)

* 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>
This commit is contained in:
Satadru Pramanik, DO, MPH, MEng
2025-12-05 13:08:57 -05:00
committed by GitHub
parent 1e56b08db2
commit f43ba1d543
82 changed files with 66255 additions and 66202 deletions

View File

@@ -1,13 +1,20 @@
require 'buildsystems/python'
require 'buildsystems/pip'
class Yt_dlp < Python
class Yt_dlp < Pip
description 'A fork of youtube-dl with additional features and patches'
homepage 'https://github.com/yt-dlp/yt-dlp'
version "2025.11.12-#{CREW_PY_VER}"
license 'MIT'
compatibility 'all'
source_url 'https://github.com/yt-dlp/yt-dlp.git'
git_hashtag version.split('-')[0]
source_url 'SKIP'
binary_compression 'tar.zst'
binary_sha256({
aarch64: 'e51b131e5c54b1e445da5f9f528e330fdd5b2c54c8f839babb32bd5e0b3d36c8',
armv7l: 'e51b131e5c54b1e445da5f9f528e330fdd5b2c54c8f839babb32bd5e0b3d36c8',
i686: '47cb25af751409b7844fbbecd39aefedd5e6a17c5b234fdbb4c28f83f4b5c76e',
x86_64: 'ae9def42d7c756e6b4cfc134a3ee9b9ff762f2dd52f67779bd096f1b01a7670a'
})
depends_on 'py3_brotlicffi'
depends_on 'py3_certifi'
@@ -17,7 +24,7 @@ class Yt_dlp < Python
depends_on 'py3_websockets'
depends_on 'python3'
no_compile_needed
no_source_build
def self.postinstall
ExitMessage.add "\nType 'yt-dlp' to get started.\n"