Changes of Revision 25

_service:set_version:x265.spec Deleted
x
 
1
@@ -1,168 +0,0 @@
2
-#
3
-# spec file for package x265
4
-#
5
-# Copyright (c) 2024 Packman Team <packman@links2linux.de>
6
-# Copyright (c) 2014 Torsten Gruner <t.gruner@katodev.de>
7
-#
8
-# All modifications and additions to the file contributed by third parties
9
-# remain the property of their copyright owners, unless otherwise agreed
10
-# upon. The license for this file, and modifications and additions to the
11
-# file, is the same license as for the pristine package itself (unless the
12
-# license for the pristine package is not an Open Source License, in which
13
-# case the license is the MIT License). An "Open Source License" is a
14
-# license that conforms to the Open Source Definition (Version 1.9)
15
-# published by the Open Source Initiative.
16
-
17
-# Please submit bugfixes or comments via https://bugs.links2linux.org/
18
-#
19
-
20
-
21
-%define sover   215
22
-%define libname lib%name
23
-%define libsoname %{libname}-%{sover}
24
-%define uver    4_1
25
-Name:           x265
26
-Version:        4.1
27
-Release:        0
28
-Summary:        A free h265/HEVC encoder - encoder binary
29
-License:        GPL-2.0-or-later
30
-URL:            https://bitbucket.org/multicoreware/x265_git
31
-Source0:        %name-%version.tar
32
-Patch0:         %name.patch
33
-Patch1:         x265.pkgconfig.patch
34
-Patch3:         0001-Fix-arm-flags.patch
35
-Patch4:         0004-Do-not-build-with-assembly-support-on-arm.patch
36
-BuildRequires:  cmake
37
-%if 0%{?suse_version} > 1500
38
-BuildRequires:  gcc-c++
39
-%else
40
-BuildRequires:  gcc13
41
-BuildRequires:  gcc13-c++
42
-%endif
43
-BuildRequires:  nasm >= 2.13
44
-BuildRequires:  pkgconfig
45
-%ifarch x86_64
46
-BuildRequires:  libnuma-devel >= 2.0.9
47
-%endif
48
-
49
-%description
50
-x265 is a free library for encoding next-generation H265/HEVC video
51
-streams.
52
-
53
-%package -n %{libsoname}
54
-Summary:        A free H265/HEVC encoder - encoder binary
55
-
56
-%description -n %{libsoname}
57
-x265 is a free library for encoding next-generation H265/HEVC video
58
-streams.
59
-
60
-%package -n libhdr10plus-%{uver}
61
-Summary:        A free HDR10+ library
62
-
63
-%description -n libhdr10plus-%{uver}
64
-A free library supporting HDR10+.
65
-
66
-%package -n %{libname}-devel
67
-Summary:        Libraries and include file for the %{libname} encoder
68
-Requires:       %{libsoname} = %version-%release
69
-Requires:       libhdr10plus-%{uver} = %version-%release
70
-Provides:       %name-devel = %version
71
-Obsoletes:      %name-devel < %version
72
-
73
-%description -n %{libname}-devel
74
-x265 is a free library for encoding next-generation H265/HEVC video
75
-streams.
76
-
77
-%prep
78
-%autosetup -p1
79
-
80
-%build
81
-test -x "$(type -p gcc)"    && CC="$_"
82
-test -x "$(type -p g++)"    && CXX="$_"
83
-test -x "$(type -p gcc-13)" && CC="$_"
84
-test -x "$(type -p g++-13)" && CXX="$_"
85
-export CC="$(readlink -f ${CC})"
86
-export CXX="$(readlink -f ${CXX})"
87
-CFLAGS='%optflags -Wno-misleading-indentation -Wno-unused-parameter -Wno-unused-variable'
88
-CXXFLAGS='%optflags -Wno-misleading-indentation -Wno-unused-parameter -Wno-unused-variable'
89
-# set the version by hand
90
-sed -i~ "/^include(Version)/d" source/CMakeLists.txt
91
-diff -u "$_"~ "$_" && exit 1
92
-# force version number in the soname
93
-sed -i~ 's/hdr10plus-shared PROPERTIES OUTPUT_NAME hdr10plus/hdr10plus-shared PROPERTIES OUTPUT_NAME hdr10plus-%version/' \
94
-       source/CMakeLists.txt
95
-diff -u "$_"~ "$_" && exit 1
96
-
97
-SOURCE_DIR="$PWD"/source
98
-COMMON_FLAGS="-DENABLE_TESTS=OFF -DENABLE_PIC=ON -Wno-dev"
99
-HIGH_BIT_DEPTH_FLAGS="-DENABLE_CLI=OFF -DENABLE_SHARED=OFF -DEXPORT_C_API=OFF -DHIGH_BIT_DEPTH=ON"
100
-
101
-%define __sourcedir ./source
102
-
103
-# Build 10bit depth version of the library
104
-%define __builddir ./source/build-10bit
105
-%cmake $COMMON_FLAGS $HIGH_BIT_DEPTH_FLAGS \
106
-%ifarch i586
107
-      -DENABLE_ASSEMBLY=OFF
108
-%endif
109
-
110
-%make_build
111
-cd ../..
112
-
113
-# Build 12bit depth version of the library
114
-%define __builddir ./source/build-12bit
115
-%cmake $COMMON_FLAGS $HIGH_BIT_DEPTH_FLAGS -DMAIN12=ON \
116
-%ifarch i586
117
-      -DENABLE_ASSEMBLY=OFF
118
-%endif
119
-
120
-%make_build
121
-cd ../..
122
-
123
-mv source/build-10bit/libx265.a source/build-10bit/libx265_main10.a
124
-mv source/build-12bit/libx265.a source/build-12bit/libx265_main12.a
125
-
126
-# Build general version of the library linking in the 10/12bit depth versions
127
-%define __builddir ./source/build
128
-%cmake $COMMON_FLAGS \
129
-       -DENABLE_SHARED=ON \
130
-       -DX265_LATEST_TAG="%{sover}.0" \
131
-       -DX265_VERSION="%version" \
132
-       -DENABLE_HDR10_PLUS=ON \
133
-       -DENABLE_CLI=ON \
134
-       -DLINKED_10BIT=ON \
135
-       -DLINKED_12BIT=ON \
136
-       -DEXTRA_LINK_FLAGS="-L$SOURCE_DIR/build-10bit -L$SOURCE_DIR/build-12bit" \
137
-       -DEXTRA_LIB="x265_main10.a;x265_main12.a"
138
-%make_build
139
-cd ../../
140
-
141
-%install
142
-%cmake_install
143
-find %buildroot -type f -name "*.a" -delete -print0
144
-
145
-%check
146
-
147
-%post -n %{libsoname} -p /sbin/ldconfig
148
-%postun -n %{libsoname} -p /sbin/ldconfig
149
-
150
-%post -n libhdr10plus-%{uver} -p /sbin/ldconfig
151
-%postun -n libhdr10plus-%{uver} -p /sbin/ldconfig
152
-
153
-%files -n %{libsoname}
154
-%doc doc/reST/releasenotes.rst
155
-%_libdir/%{libname}.so.%{sover}*
156
-
157
-%files -n libhdr10plus-%{uver}
158
-%_libdir/libhdr10plus-%version.so
159
-
160
-%files
161
-%_bindir/*
162
-
163
-%files -n %{libname}-devel
164
-%license COPYING
165
-%_includedir/*
166
-%_libdir/pkgconfig/*.pc
167
-%_libdir/%{libname}.so
168
-
169
-%changelog
170
_service Changed
17
 
1
@@ -1,5 +1,5 @@
2
 <services>
3
-   <service name="tar_scm">
4
+   <service name="tar_scm" mode="manual">
5
        <param name="exclude">.gitignore</param>
6
        <param name="exclude">.hgignore</param>
7
        <param name="exclude">.hgtags</param>
8
@@ -39,7 +39,7 @@
9
        <param name="versionrewrite-pattern">v?(^\++)(.*)</param>
10
        <param name="versionrewrite-replacement">\1</param>
11
    </service>
12
-   <service name="set_version">
13
+   <service name="set_version" mode="manual">
14
        <param name="basename">x265</param>
15
    </service>
16
 </services>
17
_service:tar_scm:x265-4.1.tar Deleted