diff options
Diffstat (limited to 'python')
-rw-r--r-- | python/Makefile.am | 2 | ||||
-rw-r--r-- | python/Makefile.in | 2 | ||||
-rw-r--r-- | python/_rpmdb.c | 6 | ||||
-rw-r--r-- | python/header-py.c | 2 | ||||
-rw-r--r-- | python/rpmdb-py.c | 2 | ||||
-rw-r--r-- | python/rpmdb/Makefile.am | 7 | ||||
-rw-r--r-- | python/rpmfd-py.c | 4 | ||||
-rw-r--r-- | python/rpmmi-py.c | 6 | ||||
-rw-r--r-- | python/rpmrc-py.c | 2 | ||||
-rw-r--r-- | python/rpmte-py.c | 4 | ||||
-rw-r--r-- | python/rpmts-py.c | 4 |
11 files changed, 24 insertions, 17 deletions
diff --git a/python/Makefile.am b/python/Makefile.am index 8baa903b3..534c5fb85 100644 --- a/python/Makefile.am +++ b/python/Makefile.am @@ -4,7 +4,7 @@ AUTOMAKE_OPTIONS = 1.4 foreign PYVER= @WITH_PYTHON_VERSION@ -SUBDIRS = rpmdb +SUBDIRS = rpmdb test INCLUDES = -I. \ -I$(top_srcdir)/lib \ diff --git a/python/Makefile.in b/python/Makefile.in index ecdfb52a7..b42140d5d 100644 --- a/python/Makefile.in +++ b/python/Makefile.in @@ -198,7 +198,7 @@ AUTOMAKE_OPTIONS = 1.4 foreign PYVER = @WITH_PYTHON_VERSION@ -SUBDIRS = rpmdb +SUBDIRS = rpmdb test INCLUDES = -I. \ -I$(top_srcdir)/lib \ diff --git a/python/_rpmdb.c b/python/_rpmdb.c index b91b7fcb3..5097dd3a9 100644 --- a/python/_rpmdb.c +++ b/python/_rpmdb.c @@ -1,3 +1,7 @@ +/** \ingroup python + * \file python/_rpmdb.c + */ + /*---------------------------------------------------------------------- Copyright (c) 1999-2001, Digital Creations, Fredericksburg, VA, USA and Andrew Kuchling. All rights reserved. @@ -88,7 +92,7 @@ #define PY_BSDDB_VERSION "3.3.1" -static char *rcs_id = "$Id: _rpmdb.c,v 1.2 2002/06/03 20:44:08 jbj Exp $"; +static char *rcs_id = "$Id: _rpmdb.c,v 1.3 2002/06/03 23:27:05 jbj Exp $"; #ifdef WITH_THREAD diff --git a/python/header-py.c b/python/header-py.c index 0418e8973..e97c075d4 100644 --- a/python/header-py.c +++ b/python/header-py.c @@ -23,7 +23,7 @@ #include "debug.h" /** \ingroup python - * \class rpm.hdr + * \class Rpmhdr * \brief A python header object represents an RPM package header. * * All RPM packages have headers that provide metadata for the package. diff --git a/python/rpmdb-py.c b/python/rpmdb-py.c index 584098492..8dc0dc790 100644 --- a/python/rpmdb-py.c +++ b/python/rpmdb-py.c @@ -14,7 +14,7 @@ #include "debug.h" /** \ingroup python - * \class rpm.db + * \class Rpmdb * \brief A python rpmdb object represents an RPM database. * * Instances of the rpmdb object provide access to the records of a diff --git a/python/rpmdb/Makefile.am b/python/rpmdb/Makefile.am index 981231234..832478ec5 100644 --- a/python/rpmdb/Makefile.am +++ b/python/rpmdb/Makefile.am @@ -4,6 +4,9 @@ AUTOMAKE_OPTIONS = 1.4 foreign PYVER= @WITH_PYTHON_VERSION@ +EXTRA_DIST = \ + __init__.py dbobj.py db.py dbrecio.py dbshelve.py dbtables.py dbutils.py + rpmdbdir = $(prefix)/lib/python${PYVER}/site-packages/rpmdb -rpmdb_SCRIPTS = __init__.py \ - dbobj.py db.py dbrecio.py dbshelve.py dbtables.py dbutils.py +rpmdb_SCRIPTS = \ + __init__.py dbobj.py db.py dbrecio.py dbshelve.py dbtables.py dbutils.py diff --git a/python/rpmfd-py.c b/python/rpmfd-py.c index e2c48593c..3cd9a2a25 100644 --- a/python/rpmfd-py.c +++ b/python/rpmfd-py.c @@ -20,8 +20,8 @@ extern int _rpmio_debug; /** \ingroup python - * \name Class: rpm.fd - * \class rpm.fd + * \name Class: Rpmfd + * \class Rpmfd * \brief An python rpm.fd object represents an rpm I/O handle. */ diff --git a/python/rpmmi-py.c b/python/rpmmi-py.c index 5782bf6c2..2d0485433 100644 --- a/python/rpmmi-py.c +++ b/python/rpmmi-py.c @@ -14,7 +14,7 @@ #include "debug.h" /** \ingroup python - * \class rpm.mi + * \class Rpmmi * \brief A python rpm.mi match iterator object represents the result of a * database query. * @@ -73,7 +73,7 @@ */ /** \ingroup python - * \name Class: rpm.mi + * \name Class: Rpmmi */ /*@{*/ @@ -102,7 +102,7 @@ rpmmi_Next(rpmmiObject * s) } #endif -/** \ingroup python +/** */ static PyObject * rpmmi_Pattern(rpmmiObject * s, PyObject * args) diff --git a/python/rpmrc-py.c b/python/rpmrc-py.c index bea2b006a..887c5a912 100644 --- a/python/rpmrc-py.c +++ b/python/rpmrc-py.c @@ -27,7 +27,7 @@ extern PyTypeObject PyDictIter_Type; static int _rc_debug = 0; /** \ingroup python - * \class rpm.rc + * \class Rpmrc * \brief A python rpm.rc object encapsulates rpmlib configuration. */ diff --git a/python/rpmte-py.c b/python/rpmte-py.c index 5f5472131..26da8a316 100644 --- a/python/rpmte-py.c +++ b/python/rpmte-py.c @@ -19,8 +19,8 @@ #include "debug.h" /** \ingroup python - * \name Class: rpm.te - * \class rpm.te + * \name Class: Rpmte + * \class Rpmte * \brief An python rpm.te object represents an element of a transaction set. */ diff --git a/python/rpmts-py.c b/python/rpmts-py.c index 633e46c4f..9d29c9095 100644 --- a/python/rpmts-py.c +++ b/python/rpmts-py.c @@ -23,8 +23,8 @@ #include "debug.h" /** \ingroup python - * \name Class: rpm.ts - * \class rpm.ts + * \name Class: Rpmts + * \class Rpmts * \brief A python rpm.ts object represents an RPM transaction set. * * The transaction set is the workhorse of RPM. It performs the |