diff options
Diffstat (limited to 'paludis/repositories')
-rw-r--r-- | paludis/repositories/e/extra_distribution_data.cc | 8 | ||||
-rw-r--r-- | paludis/repositories/e/extra_distribution_data.hh | 12 |
2 files changed, 1 insertions, 19 deletions
diff --git a/paludis/repositories/e/extra_distribution_data.cc b/paludis/repositories/e/extra_distribution_data.cc index 1fa4f48a5..283310cc5 100644 --- a/paludis/repositories/e/extra_distribution_data.cc +++ b/paludis/repositories/e/extra_distribution_data.cc @@ -59,13 +59,7 @@ namespace paludis n::default_profile_eapi() = k->get("default_profile_eapi"), n::default_profile_layout() = k->get("default_profile_layout"), n::default_write_cache() = k->get("default_write_cache"), - n::news_directory() = FSPath(k->get("news_directory")), - n::qa_category_dir_checks() = make_set(k->get("qa_category_dir_checks")), - n::qa_eclass_file_contents_checks() = make_set(k->get("qa_eclass_file_contents_checks")), - n::qa_package_dir_checks() = make_set(k->get("qa_package_dir_checks")), - n::qa_package_id_checks() = make_set(k->get("qa_package_id_checks")), - n::qa_package_id_file_contents_checks() = make_set(k->get("qa_package_id_file_contents_checks")), - n::qa_tree_checks() = make_set(k->get("qa_tree_checks")) + n::news_directory() = FSPath(k->get("news_directory")) )); } }; diff --git a/paludis/repositories/e/extra_distribution_data.hh b/paludis/repositories/e/extra_distribution_data.hh index 1a3acff24..c5cd4a740 100644 --- a/paludis/repositories/e/extra_distribution_data.hh +++ b/paludis/repositories/e/extra_distribution_data.hh @@ -41,12 +41,6 @@ namespace paludis typedef Name<struct name_default_profile_layout> default_profile_layout; typedef Name<struct name_default_write_cache> default_write_cache; typedef Name<struct name_news_directory> news_directory; - typedef Name<struct name_qa_category_dir_checks> qa_category_dir_checks; - typedef Name<struct name_qa_eclass_file_contents_checks> qa_eclass_file_contents_checks; - typedef Name<struct name_qa_package_dir_checks> qa_package_dir_checks; - typedef Name<struct name_qa_package_id_checks> qa_package_id_checks; - typedef Name<struct name_qa_package_id_file_contents_checks> qa_package_id_file_contents_checks; - typedef Name<struct name_qa_tree_checks> qa_tree_checks; } namespace erepository @@ -63,12 +57,6 @@ namespace paludis NamedValue<n::default_profile_layout, std::string> default_profile_layout; NamedValue<n::default_write_cache, std::string> default_write_cache; NamedValue<n::news_directory, FSPath> news_directory; - NamedValue<n::qa_category_dir_checks, std::shared_ptr<const Set<std::string> > > qa_category_dir_checks; - NamedValue<n::qa_eclass_file_contents_checks, std::shared_ptr<const Set<std::string> > > qa_eclass_file_contents_checks; - NamedValue<n::qa_package_dir_checks, std::shared_ptr<const Set<std::string> > > qa_package_dir_checks; - NamedValue<n::qa_package_id_checks, std::shared_ptr<const Set<std::string> > > qa_package_id_checks; - NamedValue<n::qa_package_id_file_contents_checks, std::shared_ptr<const Set<std::string> > > qa_package_id_file_contents_checks; - NamedValue<n::qa_tree_checks, std::shared_ptr<const Set<std::string> > > qa_tree_checks; }; typedef ExtraDistributionData<EDistribution> EExtraDistributionData; |