Codebase list dssp / HEAD
new version Maarten L. Hekkelman 2 years ago
4 changed file(s) with 23 addition(s) and 37 deletion(s). Raw diff Collapse all Expand all
0 dssp (4.0.4-1) unstable; urgency=medium
1
2 * New upstream release, Closes: #1005450
3
4 -- Maarten L. Hekkelman <maarten@hekkelman.com> Sun, 13 Feb 2022 10:23:33 +0100
5
06 dssp (4.0.3-1) unstable; urgency=medium
17
28 * New upstream release
0 version.patch
0 unit-test.patch
0 --- a/test/unit-test.cpp
1 +++ b/test/unit-test.cpp
2 @@ -85,7 +85,7 @@
3 BOOST_CHECK(test.eof());
4 BOOST_CHECK(reference.eof());
5 }
6 -
7 +/*
8 BOOST_AUTO_TEST_CASE(ut_mmcif_2)
9 {
10 using namespace std::literals;
11 @@ -113,3 +113,4 @@
12
13 BOOST_CHECK(structure.datablock() == rs.datablock());
14 }
15 +*/
+0
-36
debian/patches/version.patch less more
0 Description: Do not attempt to generate a git based version string
1 Author: Maarten L. Hekkelman <maarten@hekkelman.com>
2 Forwarded: yes
3
4 --- a/CMakeLists.txt
5 +++ b/CMakeLists.txt
6 @@ -106,18 +106,18 @@
7
8 # Create a revision file, containing the current git version info
9
10 -find_package(Git)
11 -if(GIT_FOUND AND EXISTS "${CMAKE_SOURCE_DIR}/.git")
12 - include(GetGitRevisionDescription)
13 - get_git_head_revision(REFSPEC COMMITHASH)
14 -
15 - # Generate our own version string
16 - git_describe_working_tree(BUILD_VERSION_STRING --match=build --dirty)
17 -else()
18 - message(WARNING "Git not found, cannot set version info")
19 -
20 +#find_package(Git)
21 +#if(GIT_FOUND AND EXISTS "${CMAKE_SOURCE_DIR}/.git")
22 +# include(GetGitRevisionDescription)
23 +# get_git_head_revision(REFSPEC COMMITHASH)
24 +#
25 +# # Generate our own version string
26 +# git_describe_working_tree(BUILD_VERSION_STRING --match=build --dirty)
27 +#else()
28 +# message(WARNING "Git not found, cannot set version info")
29 +#
30 SET(BUILD_VERSION_STRING ${PROJECT_VERSION})
31 -endif()
32 +#endif()
33
34 # generate version.h
35 include_directories(${CMAKE_BINARY_DIR} PRIVATE)