diff options
author | 2011-06-11 23:42:44 +0100 | |
---|---|---|
committer | 2011-06-11 23:42:44 +0100 | |
commit | 282d46d06d950c3d1e8db3de7dfe939b224c694b (patch) | |
tree | bdee45843a318b693202702e305563383b95eb75 | |
parent | e379672bd8a1167080b362974cea1820ace4a5ba (diff) | |
download | paludis-282d46d06d950c3d1e8db3de7dfe939b224c694b.tar.gz paludis-282d46d06d950c3d1e8db3de7dfe939b224c694b.tar.xz |
Remove default_provides_cache
-rw-r--r-- | paludis/distributions/exherbo/e.conf | 1 | ||||
-rw-r--r-- | paludis/distributions/gentoo/e.conf | 1 | ||||
-rw-r--r-- | paludis/repositories/e/extra_distribution_data.cc | 3 | ||||
-rw-r--r-- | paludis/repositories/e/extra_distribution_data.hh | 4 |
4 files changed, 2 insertions, 7 deletions
diff --git a/paludis/distributions/exherbo/e.conf b/paludis/distributions/exherbo/e.conf index 2a5db2120..31c034161 100644 --- a/paludis/distributions/exherbo/e.conf +++ b/paludis/distributions/exherbo/e.conf @@ -6,7 +6,6 @@ default_layout = exheres default_names_cache = /var/cache/paludis/names default_profile_eapi = exheres-0 default_profile_layout = exheres -default_provides_cache = /var/empty default_write_cache = /var/cache/paludis/metadata news_directory = /var/lib/exherbo/news qa_category_dir_checks = diff --git a/paludis/distributions/gentoo/e.conf b/paludis/distributions/gentoo/e.conf index 62c0c5535..371f60f53 100644 --- a/paludis/distributions/gentoo/e.conf +++ b/paludis/distributions/gentoo/e.conf @@ -6,7 +6,6 @@ default_layout = traditional default_profile_layout = traditional default_names_cache = default_profile_eapi = 0 -default_provides_cache = default_write_cache = /var/empty news_directory = /var/lib/gentoo/news qa_category_dir_checks = stray_category_dir_files diff --git a/paludis/repositories/e/extra_distribution_data.cc b/paludis/repositories/e/extra_distribution_data.cc index d0a281b2f..1fa4f48a5 100644 --- a/paludis/repositories/e/extra_distribution_data.cc +++ b/paludis/repositories/e/extra_distribution_data.cc @@ -1,7 +1,7 @@ /* vim: set sw=4 sts=4 et foldmethod=syntax : */ /* - * Copyright (c) 2008, 2009, 2010 Ciaran McCreesh + * Copyright (c) 2008, 2009, 2010, 2011 Ciaran McCreesh * * This file is part of the Paludis package manager. Paludis is free software; * you can redistribute it and/or modify it under the terms of the GNU General @@ -58,7 +58,6 @@ namespace paludis n::default_names_cache() = k->get("default_names_cache"), n::default_profile_eapi() = k->get("default_profile_eapi"), n::default_profile_layout() = k->get("default_profile_layout"), - n::default_provides_cache() = k->get("default_provides_cache"), 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")), diff --git a/paludis/repositories/e/extra_distribution_data.hh b/paludis/repositories/e/extra_distribution_data.hh index 85aad1f67..1a3acff24 100644 --- a/paludis/repositories/e/extra_distribution_data.hh +++ b/paludis/repositories/e/extra_distribution_data.hh @@ -1,7 +1,7 @@ /* vim: set sw=4 sts=4 et foldmethod=syntax : */ /* - * Copyright (c) 2008, 2009, 2010 Ciaran McCreesh + * Copyright (c) 2008, 2009, 2010, 2011 Ciaran McCreesh * * This file is part of the Paludis package manager. Paludis is free software; * you can redistribute it and/or modify it under the terms of the GNU General @@ -39,7 +39,6 @@ namespace paludis typedef Name<struct name_default_names_cache> default_names_cache; typedef Name<struct name_default_profile_eapi> default_profile_eapi; typedef Name<struct name_default_profile_layout> default_profile_layout; - typedef Name<struct name_default_provides_cache> default_provides_cache; 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; @@ -62,7 +61,6 @@ namespace paludis NamedValue<n::default_names_cache, std::string> default_names_cache; NamedValue<n::default_profile_eapi, std::string> default_profile_eapi; NamedValue<n::default_profile_layout, std::string> default_profile_layout; - NamedValue<n::default_provides_cache, std::string> default_provides_cache; 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; |