blob: 62663a9d535a324da9e30ce2584a3fb60fb492a6 (
plain)
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
|
/* vim: set sw=4 sts=4 et foldmethod=syntax : */
/*
* Copyright (c) 2007 Piotr Jaroszyński <peper@gentoo.org>
*
* 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
*/
#include <paludis_python.hh>
#include <boost/version.hpp>
void expose_contents();
void expose_dep_spec();
void expose_eapi();
void expose_environment();
void expose_exception();
void expose_fs_entry();
void expose_log();
void expose_mask_reasons();
void expose_name();
void expose_package_database();
void expose_portage_dep_parser();
void expose_query();
void expose_repository();
void expose_version_metadata();
void expose_version_operator();
void expose_version_requirements();
void expose_version_spec();
BOOST_PYTHON_MODULE(paludis)
{
#if BOOST_VERSION >= 103400
boost::python::docstring_options doc_options(true, false);
#endif
expose_exception();
expose_version_spec();
expose_version_operator();
expose_version_requirements();
expose_fs_entry();
expose_eapi();
expose_contents();
expose_mask_reasons();
expose_version_metadata();
expose_dep_spec();
expose_portage_dep_parser();
expose_name();
expose_log();
expose_query();
expose_environment();
expose_package_database();
expose_repository();
}
|