58 lines
1.6 KiB
C++
58 lines
1.6 KiB
C++
/* vim: set sw=4 sts=4 et foldmethod=syntax : */
|
|
|
|
/*
|
|
* Copyright (c) 2007 Piotr Jaroszyński
|
|
*
|
|
* 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 "config.h"
|
|
|
|
#include <boost/python.hpp>
|
|
#include <boost/version.hpp>
|
|
#include <python/paludis_python.hh>
|
|
|
|
BOOST_PYTHON_MODULE(paludis)
|
|
{
|
|
#if BOOST_VERSION >= 103400
|
|
boost::python::docstring_options doc_options(true, false);
|
|
#endif
|
|
|
|
expose_about();
|
|
expose_exception();
|
|
expose_version_spec();
|
|
expose_version_operator();
|
|
expose_version_requirements();
|
|
expose_fs_path();
|
|
expose_contents();
|
|
expose_filter(); /* must be before dep_spec */
|
|
expose_dep_spec();
|
|
expose_dep_label();
|
|
expose_slot_requirement();
|
|
expose_name();
|
|
expose_log();
|
|
expose_environment();
|
|
expose_metadata_key();
|
|
expose_mask();
|
|
expose_match_package();
|
|
expose_package_id();
|
|
expose_action();
|
|
expose_repository();
|
|
expose_filtered_generator();
|
|
expose_generator();
|
|
expose_selection();
|
|
expose_choices();
|
|
}
|
|
|