diff options
Diffstat (limited to 'paludis/repositories/e/exndbam_repository.cc')
-rw-r--r-- | paludis/repositories/e/exndbam_repository.cc | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/paludis/repositories/e/exndbam_repository.cc b/paludis/repositories/e/exndbam_repository.cc index 1a2c0e2d2..e3a0edd38 100644 --- a/paludis/repositories/e/exndbam_repository.cc +++ b/paludis/repositories/e/exndbam_repository.cc @@ -93,7 +93,6 @@ ExndbamRepository::ExndbamRepository(const RepositoryName & n, const ExndbamRepo EInstalledRepository( make_named_values<EInstalledRepositoryParams>( value_for<n::builddir>(p.builddir()), - value_for<n::deprecated_world>(p.deprecated_world()), value_for<n::environment>(p.environment()), value_for<n::root>(p.root()) ), @@ -163,20 +162,10 @@ ExndbamRepository::repository_factory_create( if (name.empty()) name = "installed"; - std::string deprecated_world(f("world")); - if (deprecated_world.empty()) - deprecated_world = "/DOESNOTEXIST"; - else - Log::get_instance()->message("e.exndbam.configuration.deprecated", ll_warning, lc_context) << "Specifying world location " << - "in repository configuration files is deprecated. File '" << deprecated_world << "' will be " - "read but not updated. If you have recently upgraded from <paludis-0.26.0_alpha13, consult " - "the FAQ Upgrades section."; - return std::tr1::shared_ptr<Repository>(new ExndbamRepository( RepositoryName(name), make_named_values<ExndbamRepositoryParams>( value_for<n::builddir>(builddir), - value_for<n::deprecated_world>(deprecated_world), value_for<n::environment>(env), value_for<n::location>(location), value_for<n::root>(root) |