diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-04 16:29:39 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-04 16:29:39 -0600 |
commit | de77ae6a46f8c680b280c3d2a65c40a8da4622cf (patch) | |
tree | d5128aa87a098a9cdbef119a9a772a9b88ed3382 /ubuntu/maverick/libraries/python-trinity/debian | |
parent | 32e556c5c8f839339dd8a93d33e4f7a7ce20c1af (diff) | |
download | tde-packaging-de77ae6a46f8c680b280c3d2a65c40a8da4622cf.tar.gz tde-packaging-de77ae6a46f8c680b280c3d2a65c40a8da4622cf.zip |
Rename pykde to pytde in Ubuntu and Debian
Diffstat (limited to 'ubuntu/maverick/libraries/python-trinity/debian')
-rw-r--r-- | ubuntu/maverick/libraries/python-trinity/debian/changelog | 2 | ||||
-rw-r--r-- | ubuntu/maverick/libraries/python-trinity/debian/control | 2 | ||||
-rw-r--r-- | ubuntu/maverick/libraries/python-trinity/debian/pytdeconfig.py (renamed from ubuntu/maverick/libraries/python-trinity/debian/pykdeconfig.py) | 6 | ||||
-rwxr-xr-x | ubuntu/maverick/libraries/python-trinity/debian/rules | 6 |
4 files changed, 8 insertions, 8 deletions
diff --git a/ubuntu/maverick/libraries/python-trinity/debian/changelog b/ubuntu/maverick/libraries/python-trinity/debian/changelog index 688f8d49c..0c28cec76 100644 --- a/ubuntu/maverick/libraries/python-trinity/debian/changelog +++ b/ubuntu/maverick/libraries/python-trinity/debian/changelog @@ -320,7 +320,7 @@ python-trinity (3.11.3+20050829-1) unstable; urgency=low * Added the homepage of PyKDE to the package descriptions * HTML documentations is now installed into /usr/share/doc/python-trinity-doc/html - * pykdeconfig.py now also knows that the sip files + * pytdeconfig.py now also knows that the sip files are in /usr/share/sip/trinity, not in /usr/share/sip/kde (Closes: #312708) diff --git a/ubuntu/maverick/libraries/python-trinity/debian/control b/ubuntu/maverick/libraries/python-trinity/debian/control index 52ca67c5c..f52038d27 100644 --- a/ubuntu/maverick/libraries/python-trinity/debian/control +++ b/ubuntu/maverick/libraries/python-trinity/debian/control @@ -6,7 +6,7 @@ XSBC-Original-Maintainer: Ricardo Javier Cardenes Medina <rcardenes@debian.org> Uploaders: Torsten Marek <shlomme@debian.org>, Debian Python Modules Team <python-modules-team@lists.alioth.debian.org> Build-Depends: debhelper (>= 5.0.38), libtqtinterface-dev, python, python-all-dev, python-all-dbg, sip4 (>= 4.10), python-sip4-dev (>= 4.10), python-tqt-dev, tdelibs4-trinity-dev, python-central (>= 0.6.11), dpatch, python-sip4, python-sip4-dbg, python-sip4-dev Standards-Version: 3.8.4 -Homepage: http://www.riverbankcomputing.co.uk/pykde/index.php +Homepage: http://www.riverbankcomputing.co.uk/pytde/index.php XS-Python-Version: all Package: python-trinity-trinity diff --git a/ubuntu/maverick/libraries/python-trinity/debian/pykdeconfig.py b/ubuntu/maverick/libraries/python-trinity/debian/pytdeconfig.py index 9e3840afe..eac264752 100644 --- a/ubuntu/maverick/libraries/python-trinity/debian/pykdeconfig.py +++ b/ubuntu/maverick/libraries/python-trinity/debian/pytdeconfig.py @@ -4,8 +4,8 @@ import sys if getattr(sys, "pydebug", False): try: - from pykdeconfig_d import * + from pytdeconfig_d import * except ImportError, msg: - raise ImportError, 'No module named pykdeconfig; package python-trinity-dbg not installed' + raise ImportError, 'No module named pytdeconfig; package python-trinity-dbg not installed' else: - from pykdeconfig_nd import * + from pytdeconfig_nd import * diff --git a/ubuntu/maverick/libraries/python-trinity/debian/rules b/ubuntu/maverick/libraries/python-trinity/debian/rules index 85c43a0fe..ffa56ad63 100755 --- a/ubuntu/maverick/libraries/python-trinity/debian/rules +++ b/ubuntu/maverick/libraries/python-trinity/debian/rules @@ -93,12 +93,12 @@ install-indep: for version in ${PYTHONS};\ do\ mkdir -p debian/python-trinity-trinity-dev/opt/trinity/lib/python-$$version/site-packages;\ - cp debian/pykdeconfig.py debian/python-trinity-trinity-dev/opt/trinity/lib/python-$$version/site-packages/;\ - cp build-$$version/pykdeconfig.py debian/python-trinity-trinity-dev/opt/trinity/lib/python-$$version/site-packages/pykdeconfig_nd.py;\ + cp debian/pytdeconfig.py debian/python-trinity-trinity-dev/opt/trinity/lib/python-$$version/site-packages/;\ + cp build-$$version/pytdeconfig.py debian/python-trinity-trinity-dev/opt/trinity/lib/python-$$version/site-packages/pytdeconfig_nd.py;\ done for version in ${DBG_PYTHONS};\ do\ - cp dbg-build-$$version/pykdeconfig.py debian/python-trinity-trinity-dev/opt/trinity/lib/python-$$version/site-packages/pykdeconfig_d.py;\ + cp dbg-build-$$version/pytdeconfig.py debian/python-trinity-trinity-dev/opt/trinity/lib/python-$$version/site-packages/pytdeconfig_d.py;\ done install-arch: |