[Python-modules-team] Processed: Reopen the bug as it is only partially fixed

2011-02-13 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 unarchive 568757
Bug #568757 {Done: Piotr Lewandowski piotr.lewandow...@gmail.com} 
[python-xdg] python-xdg: xdg.BaseDirectory doesn’t follow the spec in one 
corner case
Unarchived Bug 568757
 reopen 568757
Bug #568757 {Done: Piotr Lewandowski piotr.lewandow...@gmail.com} 
[python-xdg] python-xdg: xdg.BaseDirectory doesn’t follow the spec in one 
corner case
'reopen' may be inappropriate when a bug has been closed with a version;
you may need to use 'found' to remove fixed versions.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
568757: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=568757
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems

___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/python-modules-team

[Python-modules-team] Bug#568757: Updated patch

2011-02-13 Thread Thibaut Girka
Here is an updated patch, which hopefully fixes this issue completely.
--- pyxdg-0.19.orig/xdg/BaseDirectory.py
+++ pyxdg-0.19/xdg/BaseDirectory.py
@@ -28,21 +28,21 @@
 from __future__ import generators
 import os
 
-_home = os.environ.get('HOME', '/')
-xdg_data_home = os.environ.get('XDG_DATA_HOME',
-os.path.join(_home, '.local', 'share'))
+_home = os.path.expanduser('~')
+xdg_data_home = os.environ.get('XDG_DATA_HOME') or \
+os.path.join(_home, '.local', 'share')
 
 xdg_data_dirs = [xdg_data_home] + \
-os.environ.get('XDG_DATA_DIRS', '/usr/local/share:/usr/share').split(':')
+   (os.environ.get('XDG_DATA_DIRS') or '/usr/local/share:/usr/share').split(':')
 
-xdg_config_home = os.environ.get('XDG_CONFIG_HOME',
-os.path.join(_home, '.config'))
+xdg_config_home = os.environ.get('XDG_CONFIG_HOME') or \
+os.path.join(_home, '.config')
 
 xdg_config_dirs = [xdg_config_home] + \
-os.environ.get('XDG_CONFIG_DIRS', '/etc/xdg').split(':')
+(os.environ.get('XDG_CONFIG_DIRS') or '/etc/xdg').split(':')
 
-xdg_cache_home = os.environ.get('XDG_CACHE_HOME',
-os.path.join(_home, '.cache'))
+xdg_cache_home = os.environ.get('XDG_CACHE_HOME') or \
+os.path.join(_home, '.cache')
 
 xdg_data_dirs = filter(lambda x: x, xdg_data_dirs)
 xdg_config_dirs = filter(lambda x: x, xdg_config_dirs)


signature.asc
Description: This is a digitally signed message part
___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/python-modules-team

[Python-modules-team] ldaptor_0.0.43+debian1-4_amd64.changes ACCEPTED into unstable

2011-02-13 Thread Debian FTP Masters



Accepted:
ldaptor-doc_0.0.43+debian1-4_all.deb
  to main/l/ldaptor/ldaptor-doc_0.0.43+debian1-4_all.deb
ldaptor-utils_0.0.43+debian1-4_all.deb
  to main/l/ldaptor/ldaptor-utils_0.0.43+debian1-4_all.deb
ldaptor_0.0.43+debian1-4.debian.tar.gz
  to main/l/ldaptor/ldaptor_0.0.43+debian1-4.debian.tar.gz
ldaptor_0.0.43+debian1-4.dsc
  to main/l/ldaptor/ldaptor_0.0.43+debian1-4.dsc
python-ldaptor_0.0.43+debian1-4_all.deb
  to main/l/ldaptor/python-ldaptor_0.0.43+debian1-4_all.deb


Override entries for your package:
ldaptor-doc_0.0.43+debian1-4_all.deb - optional doc
ldaptor-utils_0.0.43+debian1-4_all.deb - optional admin
ldaptor_0.0.43+debian1-4.dsc - source admin
python-ldaptor_0.0.43+debian1-4_all.deb - optional python

Announcing to debian-devel-chan...@lists.debian.org


Thank you for your contribution to Debian.

___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/python-modules-team


[Python-modules-team] Bug#613281: python-scrapy: missing build-dependency on python

2011-02-13 Thread Jakub Wilk

Source: python-scrapy
Version: 0.12.0.2528-1
Severity: important

python is needed to run the clean target, so it should be put in 
Build-Depends, not in Build-Depends-Indep.


--
Jakub Wilk



___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/python-modules-team


[Python-modules-team] Bug#613282: python-scrapy: spurious build-dependency on python-jinja

2011-02-13 Thread Jakub Wilk

Source: python-scrapy
Version: 0.12.0.2528-1
Severity: normal

python-scrapy build-depends on python-jinja, but (as far as I can tell) 
this package is not used at build time.


--
Jakub Wilk



___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/python-modules-team


[Python-modules-team] Bug#613282: Bug#613282: python-scrapy: spurious build-dependency on python-jinja

2011-02-13 Thread Piotr Ożarowski
 python-scrapy build-depends on python-jinja, but (as far as I can tell)  
 this package is not used at build time.

please also note that python-jinja will be removed from unstable soon,
use python-jinja2 instead.
-- 
Piotr Ożarowski Debian GNU/Linux Developer
www.ozarowski.pl  www.griffith.cc   www.debian.org
GPG Fingerprint: 1D2F A898 58DA AF62 1786 2DF7 AEF6 F1A2 A745 7645



___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/python-modules-team

[Python-modules-team] Cython 0.14.1 is to be uploaded to unstable -- FTBFs warnings

2011-02-13 Thread Yaroslav Halchenko
Hi All,

To get back from the habit of using inconvenient experimental and
keeping unstable stable; thus to return unstable to its definition and
to foster progress, I am going to upload 0.14.1 to unstable/sid.  That
will cause following sid versions of packages to FTBFS:

python-djvulibre
python-ecore
python-edje
python-elementary
python-evas
pyzmq

logs are available at
http://www.onerussian.com/Linux/bugs/cython-0.14-ftbs/

I am yet to check versions in experimental (mirrors or my network cause
apt-get updates to fail for some reason)...

-- 
=--=
Keep in touch www.onerussian.com
Yaroslav Halchenko www.ohloh.net/accounts/yarikoptic

___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/python-modules-team


Re: [Python-modules-team] Cython 0.14.1 is to be uploaded to unstable -- FTBFs warnings

2011-02-13 Thread Stefan Behnel

Yaroslav Halchenko, 14.02.2011 04:08:

To get back from the habit of using inconvenient experimental and
keeping unstable stable; thus to return unstable to its definition and
to foster progress, I am going to upload 0.14.1 to unstable/sid.  That
will cause following sid versions of packages to FTBFS:

python-djvulibre


This needs further investigation. Haven't got the source (nor the time) to 
look at it.




python-ecore
python-edje
python-elementary
python-evas


These are easy to fix by following the advice of the error message: replace 
__new__ by __cinit__.


Cython 0.14.1 has finally changed a long-standing warning into an error 
here because people got bitten more than once when they ignored the warning.




pyzmq


Fix: 'bool' - 'bint'

This is a semantic change in Cython 0.14: 'bool' is no longer available by 
default, simply because it doesn't make sense to use it and it's ambiguous 
(C++ has it's own bool, for example).


Stefan

___
Python-modules-team mailing list
Python-modules-team@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/python-modules-team