diff options
author | qinxialei <xialeiqin@gmail.com> | 2021-04-22 11:31:19 +0800 |
---|---|---|
committer | qinxialei <xialeiqin@gmail.com> | 2021-04-22 11:31:19 +0800 |
commit | 034bba76210402fa28686a7d16cb77333362f3e2 (patch) | |
tree | b88600a9ca6dc35d3130febd5f444d25b3aeb3a0 | |
parent | 81ce37eb93e8ce442ecb1855a4e7166628128ac7 (diff) | |
download | libgav1-034bba76210402fa28686a7d16cb77333362f3e2.tar.gz libgav1-034bba76210402fa28686a7d16cb77333362f3e2.tar.bz2 libgav1-034bba76210402fa28686a7d16cb77333362f3e2.zip |
update debian/files
-rw-r--r-- | debian/changelog | 21 | ||||
-rw-r--r-- | debian/control | 2 | ||||
-rw-r--r-- | debian/copyright | 2 | ||||
-rw-r--r-- | debian/patches/Unbundling-abseil.patch | 22 | ||||
-rwxr-xr-x | debian/rules | 2 |
5 files changed, 39 insertions, 10 deletions
diff --git a/debian/changelog b/debian/changelog index d08ab72..bf82221 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,22 @@ +libgav1 (0.16.3-1~exp1) experimental; urgency=medium + + * New upstream version 0.16.3 + * d/control: + + Bump Standards-Version to 4.5.1. + * d/patches: + + Update patch:Unbundling-abseil.patch + * d/copyright: + + Update copyright + + -- qinxialei <xialeiqin@gmail.com> Thu, 22 Apr 2021 10:35:22 +0800 + +libgav1 (0.16.0-5) unstable; urgency=medium + + * Team upload. + * debian/libgav1-0.symbols: Refresh symbols again. + + -- Boyuan Yang <byang@debian.org> Sun, 08 Nov 2020 20:38:23 -0500 + libgav1 (0.16.0-5) unstable; urgency=medium * Team upload. @@ -8,7 +27,7 @@ libgav1 (0.16.0-5) unstable; urgency=medium libgav1 (0.16.0-4) unstable; urgency=medium * Team upload. - * debian/libgav1-0.symbols: Try to distinguish by symbol bits. + * debian/libgav1-0.symbols: Try to distinguish by symbol bits. * debian/rules: Also explicitly disable AVX2 per baseline. -- Boyuan Yang <byang@debian.org> Sat, 31 Oct 2020 12:26:14 -0400 diff --git a/debian/control b/debian/control index ea8ac0a..dc8bf81 100644 --- a/debian/control +++ b/debian/control @@ -7,7 +7,7 @@ Build-Depends: debhelper-compat (= 13), cmake (>= 3.7.1), libabsl-dev, -Standards-Version: 4.5.0 +Standards-Version: 4.5.1 Homepage: https://chromium.googlesource.com/codecs/libgav1/ Vcs-Browser: https://salsa.debian.org/multimedia-team/libgav1 Vcs-Git: https://salsa.debian.org/multimedia-team/libgav1.git diff --git a/debian/copyright b/debian/copyright index f26a054..98ad8c9 100644 --- a/debian/copyright +++ b/debian/copyright @@ -5,7 +5,7 @@ Source: https://chromium.googlesource.com/codecs/libgav1/ Files: * Copyright: 2019-2020 Google LLC - 2019-2020 The libgav1 Authors + 2019-2021 The libgav1 Authors License: Apache-2.0 Files: debian/* diff --git a/debian/patches/Unbundling-abseil.patch b/debian/patches/Unbundling-abseil.patch index c33dcbe..83672d4 100644 --- a/debian/patches/Unbundling-abseil.patch +++ b/debian/patches/Unbundling-abseil.patch @@ -1,7 +1,7 @@ Unbundling abseil --- a/CMakeLists.txt +++ b/CMakeLists.txt -@@ -97,7 +97,6 @@ +@@ -100,7 +100,6 @@ libgav1_dump_options() endif() @@ -9,12 +9,22 @@ Unbundling abseil set(libgav1_gtest_build "${libgav1_build}/gtest") # Compiler/linker flags must be lists, but come in from the environment as -@@ -109,8 +108,8 @@ - separate_arguments(LIBGAV1_EXE_LINKER_FLAGS) - endif() +@@ -115,18 +114,8 @@ + # Set test-only flags based on LIBGAV1_CXX_FLAGS. + libgav1_set_test_flags() --add_subdirectory("${libgav1_root}/third_party/abseil-cpp" -- "${libgav1_abseil_build}" EXCLUDE_FROM_ALL) +-set(libgav1_abseil "${libgav1_root}/third_party/abseil-cpp") +-if(NOT EXISTS "${libgav1_abseil}") +- message( +- FATAL_ERROR +- "Abseil not found. This dependency is required by the" +- " examples & tests and libgav1 when LIBGAV1_THREADPOOL_USE_STD_MUTEX is" +- " not defined. To continue, download the Abseil repository to" +- " third_party/abseil-cpp:\n git \\\n -C ${libgav1_root} \\\n" +- " clone \\\n" +- " https://github.com/abseil/abseil-cpp.git third_party/abseil-cpp") +-endif() +-add_subdirectory("${libgav1_abseil}" "${libgav1_abseil_build}" EXCLUDE_FROM_ALL) +set(absl "/usr/lib/*/cmake/absl") +find_package(absl REQUIRED) diff --git a/debian/rules b/debian/rules index 216424e..d48b7a5 100755 --- a/debian/rules +++ b/debian/rules @@ -6,7 +6,7 @@ export DEB_BUILD_MAINT_OPTIONS = hardening=+all CXXFLAGS += $(CPPFLAGS) -EXTRA_CONFIG_FLAGS = +EXTRA_CONFIG_FLAGS = # try to fix FTBFS on mipsel ifneq (,$(filter $(DEB_HOST_ARCH), armel m68k mips mipsel powerpc powerpcspe sh4)) |