diff options
Diffstat (limited to '0.8.0/paludis/dep_list.sr')
-rw-r--r-- | 0.8.0/paludis/dep_list.sr | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/0.8.0/paludis/dep_list.sr b/0.8.0/paludis/dep_list.sr new file mode 100644 index 000000000..abc6c9460 --- /dev/null +++ b/0.8.0/paludis/dep_list.sr @@ -0,0 +1,41 @@ +#!/bin/bash +# vim: set sw=4 sts=4 et : + +make_class_DepListOptions() +{ + key reinstall DepListReinstallOption + key target_type DepListTargetType + key upgrade DepListUpgradeOption + + key installed_deps_pre DepListDepsOption + key installed_deps_runtime DepListDepsOption + key installed_deps_post DepListDepsOption + + key uninstalled_deps_pre DepListDepsOption + key uninstalled_deps_runtime DepListDepsOption + key uninstalled_deps_post DepListDepsOption + + key circular DepListCircularOption + + key dependency_tags bool + + extra_constructors <<END + DepListOptions(); +END + + allow_named_args +} + +make_class_DepListEntry() +{ + key package PackageDatabaseEntry + key metadata VersionMetadata::ConstPointer + key tags DepListEntryTags::Pointer + + key generation long + key state DepListEntryState + key already_installed bool + + allow_named_args +} + |