diff options
| author | Justus Winter <[email protected]> | 2016-07-28 13:44:38 +0000 | 
|---|---|---|
| committer | Justus Winter <[email protected]> | 2016-07-28 14:49:50 +0000 | 
| commit | 2f754440f28e8f81babdf7efa6186edbc8ad99fd (patch) | |
| tree | 28ba42ca510bfd662dbf5a5eda5a5bf981fa122d /lang/python/setup.py.in | |
| parent | python: Rename exported functions. (diff) | |
| download | gpgme-2f754440f28e8f81babdf7efa6186edbc8ad99fd.tar.gz gpgme-2f754440f28e8f81babdf7efa6186edbc8ad99fd.zip | |
python: Rename compiled SWIG module.
Avoid the name pygpgme, as this is the name of another popular Python
binding for GPGME.
This commit renames the compiled Python module produced by SWIG.
* lang/python/Makefile.am: Rename the compiled Python module.
* lang/python/gpgme.i: Likewise.
* lang/python/pyme/core.py: Likewise.
* lang/python/pyme/errors.py: Likewise.
* lang/python/pyme/util.py: Likewise.
* lang/python/pyme/version.py.in: Likewise.
* lang/python/setup.py.in: Likewise.
Signed-off-by: Justus Winter <[email protected]>
Diffstat (limited to 'lang/python/setup.py.in')
| -rwxr-xr-x | lang/python/setup.py.in | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/lang/python/setup.py.in b/lang/python/setup.py.in index 373e17c2..45b56a3e 100755 --- a/lang/python/setup.py.in +++ b/lang/python/setup.py.in @@ -135,7 +135,7 @@ class BuildExtFirstHack(build):          self.run_command('build_ext')          build.run(self) -swige = Extension("pyme._pygpgme", ["gpgme.i", "helpers.c"], +swige = Extension("pyme._gpgme", ["gpgme.i", "helpers.c"],                    swig_opts = ['-py3', '-builtin',                                 '-outdir', 'pyme'] + extra_swig_opts,                    include_dirs = include_dirs, | 
