blob: 006a9dc4b8ead984bbd44c964282a3af351cee8d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/usr/bin/env bash
# vim: set sw=4 sts=4 et ft=sh :
make_enum_ChangeType()
{
prefix ct
namespace paludis::resolver
key ct_downgrade "It's a downgrade"
key ct_reinstall "It's a reinstall"
key ct_upgrade "It's an upgrade"
key ct_add_to_slot "We're adding a new version to an existing slot (binaries)"
key ct_slot_new "It's a new slot, but other slots are installed"
key ct_new "It's new"
want_destringify
}
|