1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
/* vim: set sw=4 sts=4 et foldmethod=syntax : */
/*
* Copyright (c) 2008, 2009, 2010 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
* Public License version 2, as published by the Free Software Foundation.
*
* Paludis is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along with
* this program; if not, write to the Free Software Foundation, Inc., 59 Temple
* Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef PALUDIS_GUARD_PALUDIS_PALUDIS_REPOSITORIES_E_EXTRA_DISTRIBUTION_DATA_HH
#define PALUDIS_GUARD_PALUDIS_PALUDIS_REPOSITORIES_E_EXTRA_DISTRIBUTION_DATA_HH 1
#include <paludis/distribution-fwd.hh>
#include <paludis/util/fs_path.hh>
#include <paludis/util/named_value.hh>
#include <paludis/util/set.hh>
#include <memory>
#include <string>
namespace paludis
{
namespace n
{
typedef Name<struct name_default_buildroot> default_buildroot;
typedef Name<struct name_default_distdir> default_distdir;
typedef Name<struct name_default_eapi_when_unknown> default_eapi_when_unknown;
typedef Name<struct name_default_eapi_when_unspecified> default_eapi_when_unspecified;
typedef Name<struct name_default_layout> default_layout;
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;
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
{
struct EDistribution
{
NamedValue<n::default_buildroot, std::string> default_buildroot;
NamedValue<n::default_distdir, std::string> default_distdir;
NamedValue<n::default_eapi_when_unknown, std::string> default_eapi_when_unknown;
NamedValue<n::default_eapi_when_unspecified, std::string> default_eapi_when_unspecified;
NamedValue<n::default_layout, std::string> default_layout;
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;
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;
}
}
#endif
|