diff options
Diffstat (limited to 'paludis')
-rw-r--r-- | paludis/distributions/exherbo/e.conf | 5 | ||||
-rw-r--r-- | paludis/distributions/gentoo/e.conf | 8 | ||||
-rw-r--r-- | paludis/repositories/e/extra_distribution_data.cc | 8 | ||||
-rw-r--r-- | paludis/repositories/e/extra_distribution_data.hh | 12 |
4 files changed, 1 insertions, 32 deletions
diff --git a/paludis/distributions/exherbo/e.conf b/paludis/distributions/exherbo/e.conf index 31c034161..abf28d5e6 100644 --- a/paludis/distributions/exherbo/e.conf +++ b/paludis/distributions/exherbo/e.conf @@ -8,8 +8,3 @@ default_profile_eapi = exheres-0 default_profile_layout = exheres default_write_cache = /var/cache/paludis/metadata news_directory = /var/lib/exherbo/news -qa_category_dir_checks = -qa_eclass_file_contents_checks = -qa_package_dir_checks = -qa_package_id_checks = -qa_tree_checks = diff --git a/paludis/distributions/gentoo/e.conf b/paludis/distributions/gentoo/e.conf index 371f60f53..ea4bf51da 100644 --- a/paludis/distributions/gentoo/e.conf +++ b/paludis/distributions/gentoo/e.conf @@ -8,11 +8,3 @@ default_names_cache = default_profile_eapi = 0 default_write_cache = /var/empty news_directory = /var/lib/gentoo/news -qa_category_dir_checks = stray_category_dir_files -qa_eclass_file_contents_checks = variable_assigns deprecated_functions subshell_die header function_keyword whitespace -qa_package_dir_checks = manifest ebuild_count changelog misc_files files_dir_size -qa_package_id_checks = eapi_supported metadata_keys short_description_key homepage_key iuse_key keywords_key license_key \ - spec_keys extractors fetches_key restrict_key inherited_key visibility -qa_package_id_file_contents_checks = default_functions variable_assigns deprecated_functions kv_variables root_variable \ - subshell_die function_keyword whitespace header -qa_tree_checks = stray_tree_files repo_name categories 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; |