Mathieu Malaterre pushed to branch master at Debian Med / pixelmed
Commits: a19e09be by Mathieu Malaterre at 2020-08-03T08:53:53+02:00 d/patches: Add -c flag to iconv to prevent failure. Closes: #966670 - - - - - c78d44f2 by Mathieu Malaterre at 2020-08-03T08:54:47+02:00 d/changelog: Upload -2 to sid - - - - - 2 changed files: - debian/changelog - debian/patches/native2ascii.patch Changes: ===================================== debian/changelog ===================================== @@ -1,3 +1,10 @@ +pixelmed (20200416-2) unstable; urgency=medium + + * Team upload. + * d/patches: Add -c flag to iconv to prevent failure. Closes: #966670 + + -- Mathieu Malaterre <[email protected]> Mon, 03 Aug 2020 08:54:27 +0200 + pixelmed (20200416-1) unstable; urgency=medium * Team upload. ===================================== debian/patches/native2ascii.patch ===================================== @@ -1,6 +1,8 @@ Description: No such thing as native2ascii on Debian Replace the utf8 to ascii conversion step from native2ascii to iconv. FIXME maybe a better patch is to use uni2ascii + Update: for some reason iconv fails only on buildd (cannot reproduce on + amd64/sid). See #966670, use -c flag. Author: Mathieu Malaterre <[email protected]> Last-Update: 2020-07-31 @@ -14,7 +16,7 @@ Index: pixelmed/Makefile.common.mk .utf-8_properties.properties: - native2ascii -encoding UTF8 $< >$@ + # native2ascii -encoding UTF8 $< >$@ -+ iconv -f UTF8 -t ascii//TRANSLIT $< >$@ ++ iconv -c -f UTF8 -t ascii//TRANSLIT $< >$@ clean: rm -f *~ *.class core *.bak test.* View it on GitLab: https://salsa.debian.org/med-team/pixelmed/-/compare/b4453d4905bf1c980c8eb0407bf8c493bf434659...c78d44f262719d4df56a33bc5edddf5162354afb -- View it on GitLab: https://salsa.debian.org/med-team/pixelmed/-/compare/b4453d4905bf1c980c8eb0407bf8c493bf434659...c78d44f262719d4df56a33bc5edddf5162354afb 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
