| Summary: | dev-python/pandas: Garbage in messages | ||
|---|---|---|---|
| Product: | Gentoo Linux | Reporter: | Martin Mokrejš <mmokrejs> |
| Component: | Current packages | Assignee: | Gentoo Science Related Packages <sci> |
| Status: | RESOLVED FIXED | ||
| Severity: | QA | ||
| Priority: | Normal | ||
| Version: | unspecified | ||
| Hardware: | All | ||
| OS: | All | ||
| Whiteboard: | |||
| Package list: | Runtime testing required: | --- | |
|
Description
Martin Mokrejš
2017-04-20 16:58:24 UTC
Strings with < or > need to be quoted to avoid interpretation by shell as redirection. pkg_postinst() of ebuilds since dev-python/pandas-0.17.1 has this problem. And do not use unnecessary ` (even quoted) in strings. Remember to drop useless :mod: and ~ ommit 5a089394f846149c267c3d067792818c982455c5 Author: Justin Lecher <jlec@gentoo.org> Date: Sat Jun 24 21:50:55 2017 +0200 dev-python/pandas: Fix quoting for bash safety Thanks Arfrever pointing to this Some cosmetic changes in wording Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=616138 Package-Manager: Portage-2.3.3, Repoman-2.3.2 Signed-off-by: Justin Lecher <jlec@gentoo.org> https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a089394f846149c267c3d067792818c982455c5 As said above, please drop ` characters in these messages: - optfeature "for msgpack compression using ``blosc``" dev-python/blosc + optfeature "for msgpack compression using blosc" dev-python/blosc - optfeature "Needed for parts of `pandas.stats`" dev-python/statsmodels + optfeature "Needed for parts of pandas.stats" dev-python/statsmodels `` results in execution of empty command (with no output), but `pandas.stats` results in "pandas.stats: command not found" on stderr. commit c59e7321fc209995d6727defe1a4fcee896df715 Author: Justin Lecher <jlec@gentoo.org> Date: Tue Jun 27 10:14:46 2017 +0100 dev-python/pandas: Drop backticks Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=616138 Package-Manager: Portage-2.3.6-prefix, Repoman-2.3.2 Signed-off-by: Justin Lecher <jlec@gentoo.org> https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c59e7321fc209995d6727defe1a4fcee896df715 |