diff options
author | pauln <devnull@localhost> | 2004-10-19 21:33:22 +0000 |
---|---|---|
committer | pauln <devnull@localhost> | 2004-10-19 21:33:22 +0000 |
commit | d96e690b8d0e5796d7954f02b56d4b3d0fe00410 (patch) | |
tree | f1b050b67e7e3726f02867a60ec6afb9f9f7b3df /python/rpm | |
parent | 4330e4eab5adcf65c895a318917a74aa535d9258 (diff) | |
download | librpm-tizen-d96e690b8d0e5796d7954f02b56d4b3d0fe00410.tar.gz librpm-tizen-d96e690b8d0e5796d7954f02b56d4b3d0fe00410.tar.bz2 librpm-tizen-d96e690b8d0e5796d7954f02b56d4b3d0fe00410.zip |
Initial python wrapped rpm module files
CVS patchset: 7489
CVS date: 2004/10/19 21:33:22
Diffstat (limited to 'python/rpm')
-rw-r--r-- | python/rpm/Makefile.am | 15 | ||||
-rw-r--r-- | python/rpm/__init__.py | 8 |
2 files changed, 23 insertions, 0 deletions
diff --git a/python/rpm/Makefile.am b/python/rpm/Makefile.am new file mode 100644 index 000000000..f53e4c04b --- /dev/null +++ b/python/rpm/Makefile.am @@ -0,0 +1,15 @@ +# Makefile for rpm library + +AUTOMAKE_OPTIONS = 1.4 foreign + +PYVER = @WITH_PYTHON_VERSION@ + +pylibdir = ${prefix}/lib@MARK64@/python@WITH_PYTHON_VERSION@ +pyincdir = $(prefix)/include/python@WITH_PYTHON_VERSION@ + +EXTRA_DIST = \ + __init__.py + +rpmdir = $(pylibdir)/site-packages/rpm +rpm_SCRIPTS = \ + __init__.py diff --git a/python/rpm/__init__.py b/python/rpm/__init__.py new file mode 100644 index 000000000..be1768dc3 --- /dev/null +++ b/python/rpm/__init__.py @@ -0,0 +1,8 @@ +r"""RPM Module + +This module enables you to manipulate rpms and the rpm database. + +""" + +from _rpm import * + |