Codebase list votca-csg / 9fc3a2f
New upstream release 1.6.1 Nicholas Breen 3 years ago
6 changed file(s) with 25 addition(s) and 20 deletion(s). Raw diff Collapse all Expand all
0 votca-csg (1.6.1-1) unstable; urgency=medium
1
2 * New upstream release.
3 - Remove directory-with-tilde.patch, incorporated upstream.
4 * Update watch file with filename mangling.
5 * Add stub debian/salsa-ci.yml.
6 * Update Multi-Arch headers.
7
8 -- Nicholas Breen <nbreen@debian.org> Fri, 17 Jul 2020 20:34:22 -0700
9
010 votca-csg (1.6-1) unstable; urgency=medium
111
212 * New upstream release.
1616 libgsl-dev,
1717 libsqlite3-dev,
1818 libvotca-tools-dev (<= 1.7~),
19 libvotca-tools-dev (>= 1.6),
19 libvotca-tools-dev (>= 1.6.1),
2020 pkg-config,
2121 python3,
2222 txt2tags
5252 Package: libvotca-csg6
5353 Section: libs
5454 Architecture: any
55 Multi-Arch: same
5556 Depends: ${misc:Depends}, ${shlibs:Depends}
5657 Breaks: libvotca-csg2, libvotca-csg3
5758 Replaces: libvotca-csg2, libvotca-csg3
7677
7778 Package: votca-csg-tutorials
7879 Architecture: all
80 Multi-Arch: foreign
7981 Depends: bash (>= 4), ${misc:Depends}
8082 Recommends: python3:any
8183 Description: VOTCA's coarse-graining tutorials
+0
-17
debian/patches/directory-with-tilde.patch less more
0 Description: Allow tildes and other characters in build directory path
1 One CMake line failed on directories with certain special characters,
2 such as the tilde in "1.6~rc1". This makes it more robust.
3 Author: Nicholas Breen <nbreen@debian.org>
4 Index: votca-csg/scripts/CMakeLists.txt
5 ===================================================================
6 --- votca-csg.orig/scripts/CMakeLists.txt
7 +++ votca-csg/scripts/CMakeLists.txt
8 @@ -22,7 +22,7 @@ foreach(SCRIPT csg_call csg_inverse)
9 install(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/${SCRIPT} DESTINATION ${CMAKE_INSTALL_BINDIR})
10 if (TXT2TAGS_FOUND AND BASH)
11 add_custom_command(OUTPUT ${SCRIPT}.man
12 - COMMAND VOTCASHARE=${CMAKE_SOURCE_DIR}/share ${BASH} ${CMAKE_CURRENT_BINARY_DIR}/${SCRIPT} --help > ${SCRIPT}.help
13 + COMMAND ${CMAKE_COMMAND} -E env VOTCASHARE=${CMAKE_SOURCE_DIR}/share ${BASH} ${CMAKE_CURRENT_BINARY_DIR}/${SCRIPT} --help > ${SCRIPT}.help
14 COMMAND ${BASH} ${CMAKE_CURRENT_BINARY_DIR}/help2t2t ${SCRIPT}.help > ${SCRIPT}.t2t
15 COMMAND ${TXT2TAGS_EXECUTABLE} -q -t man -i ${SCRIPT}.t2t -o ${SCRIPT}.man
16 DEPENDS help2t2t_build ${SCRIPT})
+0
-1
debian/patches/series less more
0 directory-with-tilde.patch
0 include:
1 - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/salsa-ci.yml
2 - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/pipeline-jobs.yml
3
4 # Reproducibility: captures build path
5 # blhc: false positive
6 variables:
7 SALSA_CI_DISABLE_REPROTEST: 1
8 SALSA_CI_DISABLE_BLHC: 1
00 version=4
1 opts=filenamemangle=s/.+\/v?(\d\S*)\.tar\.gz/votca-csg-$1\.tar\.gz/ \
12 https://github.com/votca/csg/releases .*/archive/v([\d.]+)\.tar\.(?:bz2|gz)
2 opts="component=tutorials" https://github.com/votca/csg-tutorials/releases .*/archive/v([\d.]+)\.tar\.(?:bz2|gz)
3 opts="component=tutorials,filenamemangle=s/.+\/v?(\d\S*)\.tar\.gz/votca-csg-tutorials-$1\.tar\.gz/" \
4 https://github.com/votca/csg-tutorials/releases .*/archive/v([\d.]+)\.tar\.(?:bz2|gz)