Pierre Gruet pushed to branch master at Debian Med / beast2-mcmc
Commits: 70b12a37 by Pierre Gruet at 2023-08-17T08:34:06+02:00 Fixing the clean target for two consecutive binary builds - - - - - c4e8abee by Pierre Gruet at 2023-08-17T09:24:08+02:00 Saving two files from removal by dh_clean to preserve the orig source tree - - - - - 2 changed files: - debian/changelog - debian/rules Changes: ===================================== debian/changelog ===================================== @@ -1,8 +1,8 @@ beast2-mcmc (2.7.5+dfsg-2) UNRELEASED; urgency=medium - * FIxing the clean target (Closes: #1043696) + * FIxing the clean target (Closes: #1043696, #1049745) - -- Pierre Gruet <[email protected]> Wed, 16 Aug 2023 06:45:53 +0200 + -- Pierre Gruet <[email protected]> Thu, 17 Aug 2023 09:23:43 +0200 beast2-mcmc (2.7.5+dfsg-1) unstable; urgency=medium ===================================== debian/rules ===================================== @@ -35,10 +35,18 @@ override_dh_clean: if [ -e debian/treeparser ]; then \ rm src/beast/base/evolution/tree/treeparser/*.java; \ mv debian/treeparser/*.java src/beast/base/evolution/tree/treeparser; \ + rm -rf debian/treeparser; \ fi # Removing the build dirs, with build .class, .jar and .zip inside rm -rf build beastfx/build release/package + # Saving three files ro restore the orig source tree after dh_clean + for F in examples/nexus/primate-mtDNA.nex~ examples/nexus/ringe.nex~ examples/testHKY.xml~; do \ + cp $$F $$F.save; \ + done dh_clean + for F in examples/nexus/primate-mtDNA.nex~ examples/nexus/ringe.nex~ examples/testHKY.xml~; do \ + mv $$F.save $$F; \ + done execute_before_dh_auto_configure: # Replacing upstream .java files generated by a recent antlr4 with ones View it on GitLab: https://salsa.debian.org/med-team/beast2-mcmc/-/compare/a4c6e6dc198a4b1b608a9f36a5995d6fb38830a3...c4e8abee36e54eae05523dc4102c1f8a06903aa8 -- View it on GitLab: https://salsa.debian.org/med-team/beast2-mcmc/-/compare/a4c6e6dc198a4b1b608a9f36a5995d6fb38830a3...c4e8abee36e54eae05523dc4102c1f8a06903aa8 You're receiving this email because of your account on salsa.debian.org.
_______________________________________________ debian-med-commit mailing list [email protected] https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/debian-med-commit
