-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fac9717
commit 2170340
Showing
338 changed files
with
115,855 additions
and
589 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,20 @@ | ||
# Locate the Google C++ Testing Framework source directory. | ||
# | ||
# Try to find GoogleTest library | ||
# | ||
# Defines the following variables: | ||
# | ||
# GTEST_FOUND - Found the Google Testing framework sources | ||
# | ||
# GTEST_FOUND - Found the GoogleTest library | ||
# GTEST_INCLUDE_DIRS - Include directories | ||
# GTEST_SOURCE_DIR - Source code directory | ||
# GTEST_LIBRARIES - libgtest | ||
# GTEST_MAIN_LIBRARIES - libgtest-main | ||
# GTEST_BOTH_LIBRARIES - libgtest & libgtest-main | ||
# GTEST_SOURCES - Source code to include in your project | ||
# | ||
# Accepts the following variables as input: | ||
# | ||
# GTEST_ROOT - (as CMake or environment variable) | ||
# The root directory of the gtest install prefix | ||
# | ||
# Example usage: | ||
# | ||
# find_package(GTest REQUIRED) | ||
# include_directories(${GTEST_INCLUDE_DIRS}) | ||
# add_subdirectory(${GTEST_SOURCE_DIR} | ||
# ${CMAKE_CURRENT_BINARY_DIR}/gtest_build) | ||
# | ||
# add_executable(foo foo.cc) | ||
# target_link_libraries(foo ${GTEST_BOTH_LIBRARIES}) | ||
# | ||
# enable_testing(true) | ||
# add_test(AllTestsInFoo foo) | ||
# The root directory of GoogleTest sources | ||
# | ||
# ========================================================= | ||
# | ||
# Copyright (C) 2012 Lukas Lalinsky <[email protected]> | ||
# Copyright (C) 2014 Lukas Lalinsky <[email protected]> | ||
# | ||
# Redistribution and use in source and binary forms, with or without | ||
# modification, are permitted provided that the following conditions are | ||
|
@@ -58,25 +43,26 @@ | |
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
|
||
|
||
find_path(GTEST_SOURCE_DIR | ||
NAMES src/gtest-all.cc CMakeLists.txt | ||
HINTS $ENV{GTEST_ROOT} ${GTEST_ROOT} /usr/src/gtest | ||
NAMES | ||
src/gtest-all.cc | ||
PATHS | ||
$ENV{GTEST_ROOT} | ||
${GTEST_ROOT} | ||
${CMAKE_SOURCE_DIR}/src/3rdparty/googletest/googletest | ||
NO_DEFAULT_PATH | ||
DOC "GoogleTest tools headers" | ||
) | ||
mark_as_advanced(GTEST_SOURCE_DIR) | ||
|
||
find_path(GTEST_INCLUDE_DIR | ||
NAMES gtest/gtest.h | ||
HINTS $ENV{GTEST_ROOT}/include ${GTEST_ROOT}/include | ||
) | ||
mark_as_advanced(GTEST_INCLUDE_DIR) | ||
|
||
include(FindPackageHandleStandardArgs) | ||
find_package_handle_standard_args(GTest DEFAULT_MSG GTEST_SOURCE_DIR GTEST_INCLUDE_DIR) | ||
find_package_handle_standard_args(GTest DEFAULT_MSG GTEST_SOURCE_DIR) | ||
|
||
if(GTEST_FOUND) | ||
set(GTEST_INCLUDE_DIRS ${GTEST_INCLUDE_DIR}) | ||
set(GTEST_LIBRARIES gtest) | ||
set(GTEST_MAIN_LIBRARIES gtest_main) | ||
set(GTEST_BOTH_LIBRARIES ${GTEST_LIBRARIES} ${GTEST_MAIN_LIBRARIES}) | ||
SET(GTEST_INCLUDE_DIRS | ||
${GTEST_SOURCE_DIR}/include | ||
) | ||
SET(GTEST_SOURCES | ||
${GTEST_SOURCE_DIR}/src/gtest-all.cc | ||
) | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,40 @@ | ||
chromaprint (1.5.1-4) unstable; urgency=medium | ||
|
||
[ Diederik de Haas ] | ||
* d/symbols: Set Build-Depends-Package field for libchromaprint1 | ||
* d/patches: Add DEP-3 Bug field to forwarded issue | ||
* d/patches: Replace ffmpeg 5 patches with upstream's | ||
|
||
-- Sebastian Ramacher <[email protected]> Thu, 27 Jul 2023 09:26:55 +0200 | ||
|
||
chromaprint (1.5.1-3) unstable; urgency=medium | ||
|
||
* debian/control: Bump Standards-Version | ||
* debian/patches: Fix build with googletest 1.13 (Closes: #1040998) | ||
|
||
-- Sebastian Ramacher <[email protected]> Mon, 17 Jul 2023 23:24:39 +0200 | ||
|
||
chromaprint (1.5.1-2) unstable; urgency=medium | ||
|
||
[ Debian Janitor ] | ||
* Remove constraints unnecessary since buster | ||
|
||
[ Sebastian Ramacher ] | ||
* debian/patches: Apply fix for ffmpeg 5.0 (Closes: #1004785) | ||
|
||
-- Sebastian Ramacher <[email protected]> Wed, 16 Feb 2022 23:02:01 +0100 | ||
|
||
chromaprint (1.5.1-1) unstable; urgency=medium | ||
|
||
* New upstream version 1.5.1 | ||
* debian/copyright: Update for 1.5.1 | ||
* debian/control: Bump Standards-Version | ||
* debian/rules: Prefer gtest from libgtest-dev | ||
* debian/libchromaprint1.symbols: Relax dependencies for template | ||
instantiations | ||
|
||
-- Sebastian Ramacher <[email protected]> Wed, 05 Jan 2022 18:45:01 +0100 | ||
|
||
chromaprint (1.5.0-2) unstable; urgency=medium | ||
|
||
[ Helmut Grohne ] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,8 +23,28 @@ License: Expat | |
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
THE SOFTWARE. | ||
|
||
Files: vendor/* | ||
Files: src/3rdparty/googletest/* | ||
Copyright: 2008 Google Inc | ||
License: BSD-3-clause | ||
|
||
Files: src/3rdparty/kissfft/* | ||
Copyright: 2003-2010 Mark Borgerding | ||
License: BSD-3-clause | ||
|
||
Files: src/avresample/avcodec.h | ||
Copyright: 2001 Fabrice Bellard | ||
License: LGPL-2.1+ | ||
|
||
Files: src/avresample/resample2.c | ||
Copyright: 2004 Michael Nidermayer <[email protected]> | ||
License: LGPL-2.1+ | ||
|
||
Files: debian/* | ||
Copyright: 2010-2011 Lukáš Lalinský <[email protected]> | ||
2011 Clint Adams <[email protected]> | ||
2011-2014 Simon Chopin <[email protected]> | ||
License: LGPL-2.1+ | ||
|
||
License: BSD-3-clause | ||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are met: | ||
|
@@ -49,20 +69,6 @@ License: BSD-3-clause | |
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
|
||
Files: src/avresample/avcodec.h | ||
Copyright: 2001 Fabrice Bellard | ||
License: LGPL-2.1+ | ||
|
||
Files: src/avresample/resample2.c | ||
Copyright: 2004 Michael Nidermayer <[email protected]> | ||
License: LGPL-2.1+ | ||
|
||
Files: debian/* | ||
Copyright: 2010-2011 Lukáš Lalinský <[email protected]> | ||
2011 Clint Adams <[email protected]> | ||
2011-2014 Simon Chopin <[email protected]> | ||
License: LGPL-2.1+ | ||
|
||
License: LGPL-2.1+ | ||
This library is free software; you can redistribute it and/or | ||
modify it under the terms of the GNU Lesser General Public | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.