Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add: x265 #2232

Merged
merged 1 commit into from
Oct 15, 2024
Merged
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
5 changes: 5 additions & 0 deletions anda/fusion/x265/anda.hcl
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
project pkg {
rpm {
spec = "x265.spec"
}
}
1 change: 1 addition & 0 deletions anda/fusion/x265/update.rhai
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
rpm.version(find(`<a href="x265_([\d.]+).tar.gz"`, get("http://ftp.videolan.org/pub/videolan/x265/"), 1));
346 changes: 346 additions & 0 deletions anda/fusion/x265/x265.spec
Original file line number Diff line number Diff line change
@@ -0,0 +1,346 @@
# Use old cmake macro
%global __cmake_in_source_build 1

%global terrasrc_commit b018f3e14bd28f5b17c22446328c6decf9ce57a5

%global _so_version 212

Summary: H.265/HEVC encoder
Name: x265
Version: 4.0
Release: 1%{?dist}
URL: http://x265.org/
# source/Lib/TLibCommon - BSD
# source/Lib/TLibEncoder - BSD
# everything else - GPLv2+
License: GPLv2+ and BSD
Source0: https://bitbucket.org/multicoreware/%{name}_git/downloads/%{name}_%{version}.tar.gz

# fix building as PIC
Patch0: https://raw.githubusercontent.com/terrapkg/pkg-x265/%terrasrc_commit/x265-pic.patch
Patch1: https://raw.githubusercontent.com/terrapkg/pkg-x265/%terrasrc_commit/x265-high-bit-depth-soname.patch
Patch2: https://raw.githubusercontent.com/terrapkg/pkg-x265/%terrasrc_commit/x265-pkgconfig_path_fix.patch
# https://bitbucket.org/multicoreware/x265_git/pull-requests/10
Patch3: https://bitbucket.org/harlancc/x265_git/commits/8454caf458c5f5d20cce711ff8ea8de55ec1ae50/raw#/x265-sei-length-crash-fix.patch

BuildRequires: gcc-c++
BuildRequires: git
BuildRequires: cmake
%{?el7:BuildRequires: epel-rpm-macros}
BuildRequires: nasm
BuildRequires: ninja-build

%ifnarch armv7hl armv7hnl s390 s390x
BuildRequires: numactl-devel
%endif

%description
The primary objective of x265 is to become the best H.265/HEVC encoder
available anywhere, offering the highest compression efficiency and the highest
performance on a wide variety of hardware platforms.

This package contains the command line encoder.

%package libs
Summary: H.265/HEVC encoder library

%description libs
The primary objective of x265 is to become the best H.265/HEVC encoder
available anywhere, offering the highest compression efficiency and the
highest performance on a wide variety of hardware platforms.

This package contains the shared library.

%package devel
Summary: H.265/HEVC encoder library development files
Requires: %{name}-libs%{?_isa} = %{version}-%{release}

%description devel
The primary objective of x265 is to become the best H.265/HEVC encoder
available anywhere, offering the highest compression efficiency and the highest
performance on a wide variety of hardware platforms.

This package contains the shared library development files.

%prep
%autosetup -p1 -n %{name}_%{version}

%build
# High depth libraries (from source/h265.h):
# If the requested bitDepth is not supported by the linked libx265,
# it will attempt to dynamically bind x265_api_get() from a shared
# library with an appropriate name:
# 8bit: libx265_main.so
# 10bit: libx265_main10.so

build() {
%cmake -Wno-dev -G "Ninja" \
-DCMAKE_POSITION_INDEPENDENT_CODE:BOOL=ON \
-DCMAKE_SKIP_RPATH:BOOL=YES \
-DENABLE_PIC:BOOL=ON \
-DENABLE_SHARED=ON \
-DENABLE_TESTS:BOOL=ON \
-DENABLE_HDR10_PLUS=YES \
-DCMAKE_ASM_NASM_FLAGS=-w-macro-params-legacy \
$* \
../source
%cmake_build
}

# High depth 10/12 bit libraries are supported only on 64 bit. They require
# disabled AltiVec instructions for building on ppc64/ppc64le.
%ifarch x86_64 aarch64 ppc64 ppc64le
mkdir 10bit; pushd 10bit
build \
-DENABLE_CLI=OFF \
-DENABLE_ALTIVEC=OFF \
-DHIGH_BIT_DEPTH=ON
popd

mkdir 12bit; pushd 12bit
build \
-DENABLE_CLI=OFF \
-DENABLE_ALTIVEC=OFF \
-DHIGH_BIT_DEPTH=ON \
-DMAIN12=ON
popd
%endif

# 8 bit base library + encoder
mkdir 8bit; pushd 8bit
build
popd

%install
for i in 8 10 12; do
if [ -d ${i}bit ]; then
pushd ${i}bit
%cmake_install
# Remove unversioned library, should not be linked to
rm -f %{buildroot}%{_libdir}/libx265_main${i}.so
popd
fi
done

find %{buildroot} -name "*.a" -delete

%check
for i in 8 10 12; do
if [ -d ${i}bit ]; then
pushd ${i}bit
test/TestBench || :
popd
fi
done

%ldconfig_scriptlets libs

%files
%{_bindir}/x265

%files libs
%license COPYING
%{_libdir}/libhdr10plus.so
%{_libdir}/libx265.so.%{_so_version}
%ifarch x86_64 aarch64 ppc64 ppc64le
%{_libdir}/libx265_main10.so.%{_so_version}
%{_libdir}/libx265_main12.so.%{_so_version}
%endif

%files devel
%doc doc/*
%{_includedir}/hdr10plus.h
%{_includedir}/x265.h
%{_includedir}/x265_config.h
%{_libdir}/libx265.so
%{_libdir}/pkgconfig/x265.pc

%changelog
* Sun Sep 15 2024 Leigh Scott <[email protected]> - 4.0-1
- Update to 4.0

* Fri Aug 02 2024 RPM Fusion Release Engineering <[email protected]> - 3.6-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild

* Thu May 16 2024 Dominik Mierzejewski <[email protected]> - 3.6-2
- Backport a fix for crashes when encoding with variable length SEI

* Sat Apr 06 2024 Leigh Scott <[email protected]> - 3.6-1
- Update to 3.6

* Sun Feb 04 2024 RPM Fusion Release Engineering <[email protected]> - 3.5-7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild

* Wed Aug 02 2023 RPM Fusion Release Engineering <[email protected]> - 3.5-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild

* Thu Dec 29 2022 Nicolas Chauvet <[email protected]> - 3.5-5
- Enable ENABLE_HDR10_PLUS everywhere rfbz#6454

* Mon Aug 08 2022 RPM Fusion Release Engineering <[email protected]> - 3.5-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild and ffmpeg
5.1

* Wed Feb 09 2022 RPM Fusion Release Engineering <[email protected]> - 3.5-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild

* Tue Aug 03 2021 RPM Fusion Release Engineering <[email protected]> - 3.5-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild

* Tue Apr 13 2021 Leigh Scott <[email protected]> - 3.5-1
- Update to 3.5

* Tue Mar 16 2021 Leigh Scott <[email protected]> - 3.4-5
- Enable HDR10+.

* Thu Feb 04 2021 RPM Fusion Release Engineering <[email protected]> - 3.4-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild

* Wed Aug 19 2020 RPM Fusion Release Engineering <[email protected]> - 3.4-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild

* Thu Jul 23 2020 Leigh Scott <[email protected]> - 3.4-2
- Use old cmake macro

* Sun May 31 2020 Leigh Scott <[email protected]> - 3.4-1
- Update to 3.4

* Wed Mar 11 2020 Nicolas Chauvet <[email protected]> - 3.3-2
- Rebuilt for i686

* Sun Feb 23 2020 Leigh Scott <[email protected]> - 3.3-1
- Update to 3.3

* Wed Feb 05 2020 RPM Fusion Release Engineering <[email protected]> - 3.2.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild

* Thu Nov 28 2019 Leigh Scott <[email protected]> - 3.2.1-1
- Update to 3.2.1
- Switch upstream source url

* Fri Aug 09 2019 RPM Fusion Release Engineering <[email protected]> - 3.1.2-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild

* Sun Aug 04 2019 Leigh Scott <[email protected]> - 3.1.2-1
- Update to 3.1.2

* Fri Jun 28 2019 Nicolas Chauvet <[email protected]> - 3.1-1
- Update to 3.1
- Switch to github mirror

* Tue Mar 05 2019 RPM Fusion Release Engineering <[email protected]> - 3.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild

* Thu Feb 28 2019 Leigh Scott <[email protected]> - 3.0-1
- Update to 3.0

* Sun Dec 30 2018 Leigh Scott <[email protected]> - 2.9-3
- Rebuild against newer nasm on el7 (rfbz #5128)

* Wed Nov 21 2018 Antonio Trande <[email protected]> - 2.9-2
- Rebuild for ffmpeg-3.* on el7

* Sun Nov 18 2018 Leigh Scott <[email protected]> - 2.9-1
- Update to 2.9

* Thu Oct 04 2018 Sérgio Basto <[email protected]> - 2.8-1
- Update to 2.8 more 2 patches to fix builds on non-x86 and arm
https://bitbucket.org/multicoreware/x265/issues/404/28-fails-to-build-on-ppc64le-gnu-linux
https://bitbucket.org/multicoreware/x265/issues/406/arm-assembly-fail-to-compile-on-18

* Sun Aug 19 2018 Leigh Scott <[email protected]> - 2.7-5
- Rebuilt for Fedora 29 Mass Rebuild binutils issue

* Fri Jul 27 2018 RPM Fusion Release Engineering <[email protected]> - 2.7-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild

* Sun Apr 08 2018 Leigh Scott <[email protected]> - 2.7-3
- Fix pkgconfig file (rfbz #4853)

* Tue Feb 27 2018 Nicolas Chauvet <[email protected]> - 2.7-2
- Fix CFLAGS on ARM

* Tue Feb 27 2018 Leigh Scott <[email protected]> - 2.7-1
- update to 2.7
- Drop shared test patch as it causes nasm build to fail
- Fix scriptlets
- Use ninja to build

* Sat Dec 30 2017 Sérgio Basto <[email protected]> - 2.6-1
- Update x265 to 2.6

* Mon Oct 16 2017 Leigh Scott <[email protected]> - 2.5-1
- update to 2.5

* Thu Aug 31 2017 RPM Fusion Release Engineering <[email protected]> - 2.4-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild

* Sat Apr 29 2017 Leigh Scott <[email protected]> - 2.4-1
- update to 2.4

* Mon Apr 10 2017 Simone Caronni <[email protected]> - 2.2-3
- Use source from multicoreware website.
- Clean up SPEC file a bit (formatting, 80 char wide descriptions).
- Enable shared 10/12 bit libraries on 64 bit architectures.

* Mon Mar 20 2017 RPM Fusion Release Engineering <[email protected]> - 2.2-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild

* Tue Jan 03 2017 Dominik Mierzejewski <[email protected]> - 2.2-1
- update to 2.2
- spell out SO version in file list
- fix typo in patch

* Mon Nov 07 2016 Sérgio Basto <[email protected]> - 2.1-1
- Update to 2.1

* Thu Aug 18 2016 Sérgio Basto <[email protected]> - 1.9-3
- Clean spec, Vascom patches series, rfbz #4199, add license tag

* Tue Jul 19 2016 Dominik Mierzejewski <[email protected]> - 1.9-2
- use https for source URL
- enable NUMA support
- make sure Fedora compiler flags are used on ARM

* Fri Apr 08 2016 Adrian Reber <[email protected]> - 1.9-1
- Update to 1.9

* Sun Oct 25 2015 Dominik Mierzejewski <[email protected]> 1.8-2
- fix building as PIC
- update SO version in file list

* Sat Oct 24 2015 Nicolas Chauvet <[email protected]> - 1.8-1
- Update to 1.8
- Avoid tests for now

* Wed Apr 15 2015 Dominik Mierzejewski <[email protected]> 1.6-1
- update to 1.6 (ABI bump, rfbz#3593)
- release tarballs are now hosted on videolan.org
- drop obsolete patches

* Thu Dec 18 2014 Dominik Mierzejewski <[email protected]> 1.2-6
- fix build on armv7l arch (partially fix rfbz#3361, patch by Nicolas Chauvet)
- don't run tests on ARM for now (rfbz#3361)

* Sun Aug 17 2014 Dominik Mierzejewski <[email protected]> 1.2-5
- don't include contributor agreement in doc
- make sure /usr/share/doc/x265 is owned
- add a comment noting which files are BSD-licenced

* Fri Aug 08 2014 Dominik Mierzejewski <[email protected]> 1.2-4
- don't create bogus soname (patch by Xavier)

* Thu Jul 17 2014 Dominik Mierzejewski <[email protected]> 1.2-3
- fix tr call to remove DOS EOL
- build the library with -fPIC on arm and i686, too

* Sun Jul 13 2014 Dominik Mierzejewski <[email protected]> 1.2-2
- use version in source URL
- update License tag
- fix EOL in drag-uncrustify.bat
- don't link test binaries with shared binary on x86 (segfault)

* Thu Jul 10 2014 Dominik Mierzejewski <[email protected]> 1.2-1
- initial build
- fix pkgconfig file install location
- link test binaries with shared library
Loading