diff options
author | Lukasz Strzygowski <lucass@gentoo.org> | 2006-06-25 21:46:40 +0000 |
---|---|---|
committer | Lukasz Strzygowski <lucass@gentoo.org> | 2006-06-25 21:46:40 +0000 |
commit | b964d5bfb39874ee68fd4dd829e0be43eb500328 (patch) | |
tree | 0aa6f5e9895280d02f1efedd4dda0d93e449e5a2 /app-editors/leo/files | |
parent | Stable on hppa. (diff) | |
download | gentoo-2-b964d5bfb39874ee68fd4dd829e0be43eb500328.tar.gz gentoo-2-b964d5bfb39874ee68fd4dd829e0be43eb500328.tar.bz2 gentoo-2-b964d5bfb39874ee68fd4dd829e0be43eb500328.zip |
Version bump: marked ~amd64, updated patch, ebuild cleanup, bug #137952.
(Portage version: 2.1.1_pre1)
Diffstat (limited to 'app-editors/leo/files')
-rw-r--r-- | app-editors/leo/files/digest-leo-4.4.1_beta2 | 3 | ||||
-rw-r--r-- | app-editors/leo/files/leoGlobals-4.4.1_beta2.patch | 26 |
2 files changed, 29 insertions, 0 deletions
diff --git a/app-editors/leo/files/digest-leo-4.4.1_beta2 b/app-editors/leo/files/digest-leo-4.4.1_beta2 new file mode 100644 index 000000000000..ca57f769e2f4 --- /dev/null +++ b/app-editors/leo/files/digest-leo-4.4.1_beta2 @@ -0,0 +1,3 @@ +MD5 f38b66264922951d342e00bcc3100782 leo-4-4-1-beta-2.zip 5160976 +RMD160 a6254f4b247984794ee1f5961b1b62c7f53112c0 leo-4-4-1-beta-2.zip 5160976 +SHA256 aa4041802f5ee255cf2cb40ffbeda316af7be6ddc115baff4dd34e5482a6085d leo-4-4-1-beta-2.zip 5160976 diff --git a/app-editors/leo/files/leoGlobals-4.4.1_beta2.patch b/app-editors/leo/files/leoGlobals-4.4.1_beta2.patch new file mode 100644 index 000000000000..ad16196bcbbd --- /dev/null +++ b/app-editors/leo/files/leoGlobals-4.4.1_beta2.patch @@ -0,0 +1,26 @@ +--- src/leoGlobals.py.old 2006-06-25 22:50:52.000000000 +0200 ++++ src/leoGlobals.py 2006-06-25 23:03:23.000000000 +0200 +@@ -118,20 +118,9 @@ + + encoding = g.startupEncoding() + +- try: +- theDir = sys.leo_config_directory +- except AttributeError: +- theDir = g.os_path_join(g.app.loadDir,"..","config") +- +- if theDir: +- theDir = g.os_path_abspath(theDir) +- +- if ( +- not theDir or +- not g.os_path_exists(theDir,encoding) or +- not g.os_path_isdir(theDir,encoding) +- ): +- theDir = None ++ theDir = os.path.expanduser("~/.leo") ++ if not os.path.exists(theDir): ++ os.mkdir(theDir) + + return theDir + #@nonl |