Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions p/pyav/build_info.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"maintainer": "SakshiJain0302",
"maintainer": "Shivansh-ibm",
"package_name": "PyAV",
"github_url": "https://github.com/PyAV-Org/PyAV",
"version": "v16.0.0",
"version": "v16.1.0",
"wheel_build" : true,
"package_dir": "p/pyav",
"default_branch": "main",
Expand Down
10 changes: 5 additions & 5 deletions p/pyav/pyav_ubi_9.3.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
# -----------------------------------------------------------------------------
#
# Package : PyAV
# Version : v16.0.0
# Version : v16.1.0
# Source repo : https://github.com/PyAV-Org/PyAV
# Tested on : UBI 9.3
# Language : c
# Ci-Check : True
# Script License: Apache License 2.0
# Maintainer : Sakshi Jain <sakshi.jain16@ibm.com>
# Maintainer : Shivansh Sharma<shivansh.s1@ibm.com>
#
# Disclaimer: This script has been tested in root mode on given
# ========== platform using the mentioned version of the package.
Expand All @@ -21,7 +21,7 @@
set -e

PACKAGE_NAME=PyAV
PACKAGE_VERSION=${1:-v16.0.0}
PACKAGE_VERSION=${1:-v16.1.0}
PACKAGE_URL=https://github.com/PyAV-Org/PyAV
CURRENT_DIR=$(pwd)
PACKAGE_DIR=PyAV
Expand Down Expand Up @@ -309,14 +309,14 @@ fi

#During wheel creation for this package we need installed dependencies from source. Once script get exit, and if we build wheel through wrapper script, then those are not applicable during wheel creation. So we are generating wheel for this package in script itself.
echo "---------------------------------------------------Building the wheel--------------------------------------------------"
pip install --upgrade pip build setuptools wheel
python -m pip install --upgrade pip build setuptools wheel
python -m build --wheel --no-isolation --outdir="$CURRENT_DIR/"

echo "----------------------------------------------Testing pkg-------------------------------------------------------"
#Test package
#Skipping few tests as they are failing because of disabling some codecs related to audio and video in ffmpeg. We disabled those codecs because of license associated with them.
# test_video_remux is added in 15.0.0 release and related to some codec test : https://github.com/PyAV-Org/PyAV/commit/633f237a6916d17b85fe937f95e28af651fbaf0e , that is why disabling it will pass this script
if ! (pytest -k "not test_video_remux and not test_attachment_stream and not test_data_types and not test_qmin_qmax and not test_profiles and not test_printing_video_stream and not test_frame_duration_matches_packet and not test_printing_video_stream2 and not test_no_side_data and not test_encoding_dnxhd and not test_encoding_dvvideo and not test_encoding_h264 and not test_encoding_mjpeg and not test_encoding_mpeg1video and not test_encoding_mpeg4 and not test_encoding_png and not test_encoding_tiff and not test_encoding_xvid and not test_mov and not test_decode_video_corrupt and not test_decoded_motion_vectors and not test_decoded_motion_vectors_no_flag and not test_decoded_time_base and not test_decoded_video_frame_count and not test_flush_decoded_video_frame_count and not test_av_stream_Stream and not test_encoding_with_pts and not test_stream_audio_resample and not test_max_b_frames and not test_container_probing and not test_stream_probing and not test_writing_to_custom_io_dash and not test_decode_half and not test_stream_seek and not test_side_data and not test_opaque and not test_reformat_pixel_format_align and not test_filter_output_parameters and not test_codec_mpeg4_decoder and not test_codec_mpeg4_encoder and not test_codec_delay and not test_codec_tag and not test_decoder_extradata and not test_decoder_gop_size and not test_decoder_timebase and not test_encoder_extradata and not test_encoder_pix_fmt and not test_parse and not test_sky_timelapse and not test_av_codec_codec_Codec and not test_av_enum_EnumFlag and not test_av_enum_EnumItem and not test_default_options and not test_encoding and not test_encoding_with_unicode_filename and not test_stream_index and not test_writing_to_buffer and not test_writing_to_buffer_broken and not test_writing_to_buffer_broken_with_close and not test_writing_to_file and not test_writing_to_pipe_writeonly") ; then
if ! (pytest -k "not test_decoded_video_enc_params_no_flag and not test_decoded_video_enc_params and not test_subtitle_encode_mp4 and not test_video_remux and not test_attachment_stream and not test_data_types and not test_qmin_qmax and not test_profiles and not test_printing_video_stream and not test_frame_duration_matches_packet and not test_printing_video_stream2 and not test_no_side_data and not test_encoding_dnxhd and not test_encoding_dvvideo and not test_encoding_h264 and not test_encoding_mjpeg and not test_encoding_mpeg1video and not test_encoding_mpeg4 and not test_encoding_png and not test_encoding_tiff and not test_encoding_xvid and not test_mov and not test_decode_video_corrupt and not test_decoded_motion_vectors and not test_decoded_motion_vectors_no_flag and not test_decoded_time_base and not test_decoded_video_frame_count and not test_flush_decoded_video_frame_count and not test_av_stream_Stream and not test_encoding_with_pts and not test_stream_audio_resample and not test_max_b_frames and not test_container_probing and not test_stream_probing and not test_writing_to_custom_io_dash and not test_decode_half and not test_stream_seek and not test_side_data and not test_opaque and not test_reformat_pixel_format_align and not test_filter_output_parameters and not test_codec_mpeg4_decoder and not test_codec_mpeg4_encoder and not test_codec_delay and not test_codec_tag and not test_decoder_extradata and not test_decoder_gop_size and not test_decoder_timebase and not test_encoder_extradata and not test_encoder_pix_fmt and not test_parse and not test_sky_timelapse and not test_av_codec_codec_Codec and not test_av_enum_EnumFlag and not test_av_enum_EnumItem and not test_default_options and not test_encoding and not test_encoding_with_unicode_filename and not test_stream_index and not test_writing_to_buffer and not test_writing_to_buffer_broken and not test_writing_to_buffer_broken_with_close and not test_writing_to_file and not test_writing_to_pipe_writeonly") ; then
echo "------------------$PACKAGE_NAME:install_success_but_test_fails---------------------"
echo "$PACKAGE_URL $PACKAGE_NAME"
echo "$PACKAGE_NAME | $PACKAGE_URL | $PACKAGE_VERSION | GitHub | Fail | Install_success_but_test_Fails"
Expand Down