27173447c8
Gentoo changed =* to mean almost the same thing as it does in Exherbo in bug 560466; the difference being that float-like components aren't treated specially, for example 1.0123 doesn't match a dep saying =1.012*. Since nothing in Exherbo relies on this anyway, just make it the same everywhere.
25 lines
619 B
Bash
25 lines
619 B
Bash
#!/usr/bin/env bash
|
|
# vim: set sw=4 sts=4 et ft=sh :
|
|
|
|
make_enum_VersionOperatorValue()
|
|
{
|
|
prefix vo
|
|
|
|
key vo_less_equal "<= dependency"
|
|
key vo_less "< dependency"
|
|
key vo_equal "= dependency"
|
|
key vo_tilde "~ dependency"
|
|
key vo_greater "> dependency"
|
|
key vo_greater_equal ">= dependency"
|
|
key vo_equal_star "=* dependency"
|
|
key vo_tilde_greater "~> dependency (gems)"
|
|
|
|
doxygen_comment << "END"
|
|
/**
|
|
* Represents an operator attached to a VersionSpec.
|
|
*
|
|
* \ingroup g_names
|
|
*/
|
|
END
|
|
}
|