Broken symlinks in /etc/alternatives

2022-12-29 Thread Jakub Wilk
symbolic link to /usr/bin/python3-restructuredtext-lint /etc/alternatives/rst-lint: broken symbolic link to /usr/bin/python3-rst-lint /etc/alternatives/wsdump: broken symbolic link to /usr/bin/python3-wsdump I guess this is fallout from Python 2 removal? Please fix your packages. -- Jakub

Re: Proposed MBF: packages still using nose

2022-08-26 Thread Jakub Wilk
anorack Fixed upstream in 0.2.8. mwic Fixed upstream in 0.7.9. python-djvulibre Fixed upstream in 0.8.7. This one should probably be removed, though: there are no rev-deps, it's orphaned in Debian, and it's likely to be orphaned upstream soon too. -- Jakub Wilk

Re: can we disable the bounce kicker? Re: confirm

2016-09-11 Thread Jakub Wilk
istration of the mls to someone else, given you moved on from dpmt/papt :) Very gladly! Now we only need this "someone else". Last time[1] I asked the DPMT admins to take over the list admin duties, there were no replies. [0] <20130411191230.ga...@jwilk.net> [1] <20150410194600.ga...@jwilk.net> -- Jakub Wilk

Re: About requests.packages.urllib3 in Debian

2014-11-05 Thread Jakub Wilk
well sys.modules[where + '.' + name] = module _attach_namespace(urllib3, 'requests.packages') del _attach_namespace -- Jakub Wilk -- To UNSUBSCRIBE, email to debian-python-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact l

Re: Terminal Pager at unit tests

2014-09-09 Thread Jakub Wilk
fail if it's running on an automated enviroment. I could't find an elegant way to disable the terminal pager. Programs launching pagers must honour the PAGER environment variable (see Policy §11.4). So adding this to debian/rules should do the trick: export PAGER = cat -- Jak

Re: Bug#758013: s3ql autopkg test regression

2014-08-19 Thread Jakub Wilk
a bug, you need to give a better justification than “I said so”. -- Jakub Wilk -- To UNSUBSCRIBE, email to debian-python-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: https://lists.debian.org/20140819090239.ga7...@jwilk.net

Re: Bug#743927: Biopython does not define egg metadata

2014-08-15 Thread Jakub Wilk
the files that upstream installed. -- Jakub Wilk diff -Nru python-biopython-1.64+dfsg/debian/python-biopython.install python-biopython-1.64+dfsg/debian/python-biopython.install --- python-biopython-1.64+dfsg/debian/python-biopython.install 2014-03-06 11:18:03.0 +0100 +++ python-biopython

Re: Python3 search path order when building Debian package

2014-08-11 Thread Jakub Wilk
&&/;/g here. TEMP_REZ=`mktemp -t` && \ PYTHONPATH=$(CURDIR) PYTHON=python$$i testr-python$$PYMAJOR run --subunit | tee $$TEMP_REZ | subunit2pyunit ; \ And here too. -- Jakub Wilk -- To UNSUBSCRIBE, email to debian-python-requ...@lists.debian.org with a subject of &q

Re: python-pandocfilters_1.2.1-1_amd64.changes is NEW

2014-07-23 Thread Jakub Wilk
Hi Sebastian, debian-python@l.d.o, is a discussion list. We don't want all the bug traffic or messages from dak here. Please set your Maintainer field to: Debian Python Modules Team -- Jakub Wilk -- To UNSUBSCRIBE, email to debian-python-requ...@lists.debian.org with a subje

Re: /usr/bin/django-admin in python-django

2014-07-20 Thread Jakub Wilk
ibility is to create the django-admin symlink in maintainer scripts, with the target depending on which of python*-django packages are installer. This is how src:sphinx manages its /usr/bin/sphinx-* symlinks. -- Jakub Wilk -- To UNSUBSCRIBE, email to debian-python-requ...@lists.debia

Re: Embedded six.py in many packages: can someone add a lintian check?

2014-05-29 Thread Jakub Wilk
ation then? Yeah, that's the trick; I'm not sure. The best I could come up with was an a priori list of known common vendorizations. So something like this: https://bitbucket.org/jwilk/lintian4python/src/default/vendors/debian/python/data/python2-embedded-code-copies ? -- Jakub Wilk

Re: Embedded six.py in many packages: can someone add a lintian check?

2014-05-28 Thread Jakub Wilk
* Daniele Tricoli , 2014-05-28, 15:36: txclib -> urllib3 -> six Jakub, which version of urllib3 are you referring to? The one that is embedded in transifex-client. I removed the embedded copy on 1.3-2 so it should be ok... Great, thanks. -- Jakub Wilk -- To UNSUBSCRIBE, em

Re: Embedded six.py in many packages: can someone add a lintian check?

2014-05-28 Thread Jakub Wilk
y could implement something more generic for detecting embedded copies of Python modules.) Also, am I the only one that believe this is a bug, and that we should do mass bug-filling? It's absolutely a bug. -- Jakub Wilk -- To UNSUBSCRIBE, email to debian-python-requ...@lists.deb

Re: Help with python-biom-format needed

2014-05-21 Thread Jakub Wilk
build time (and thus these might be removed as well) or not? I strongly recommend rebuilding everything from source. -- Jakub Wilk -- To UNSUBSCRIBE, email to debian-python-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debia

Re: Help with python-biom-format needed

2014-05-21 Thread Jakub Wilk
ose --with-doctest dh_auto_test: pybuild --test -i python{version} -p 2.7 --dir . returned exit code 13 debian/rules:20: recipe for target 'build' failed make: *** [build] Error 13 dpkg-buildpackage: error: debian/rules build gave error exit status 2 -- Jakub Wilk Index: debian/control

Re: Help with python-biom-format needed

2014-05-21 Thread Jakub Wilk
$(pyrun) 'make --directory=doc singlehtml' # eww! -- Jakub Wilk -- To UNSUBSCRIBE, email to debian-python-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: https://lists.debian.org/20140521110223.ga6...@jwilk.net

Re: Help with python-biom-format needed

2014-05-21 Thread Jakub Wilk
biom-format-2.0.0/biom/_transform.so We don't want them to be accidentally used at build time. :) Good catch! I'm now also excluding *.so and *.pyx. Hmm, *.pyx? Aren't they source code from some *.c files? -- Jakub Wilk -- To UNSUBSCRIBE, email to debian-python-requ...@lists.

Re: Help with python-biom-format needed

2014-05-20 Thread Jakub Wilk
/_subsample.so biom-format-2.0.0/biom/_transform.so We don't want them to be accidentally used at build time. :) -- Jakub Wilk -- To UNSUBSCRIBE, email to debian-python-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Re: wheel support for Debian?

2014-05-19 Thread Jakub Wilk
* Matthias Klose , 2014-05-19, 12:44: we don't unpack jar files either. Fortunately, we don't have to mimic all the Java misfeatures. -- Jakub Wilk -- To UNSUBSCRIBE, email to debian-python-requ...@lists.debian.org with a subject of "unsubscribe". Trou

Re: restarting services after security upgrades in pure-Python modules?

2014-05-16 Thread Jakub Wilk
/NeedRestart/Interp/Python.pm -- Jakub Wilk -- To UNSUBSCRIBE, email to debian-python-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: https://lists.debian.org/20140516203454.ga5...@jwilk.net

Re: Preventing network access during nose doctest ?

2014-05-12 Thread Jakub Wilk
* Barry Warsaw , 2014-05-12, 09:41: Note that some test suites do legitimate http/https access during their tests. By "legitimate" I mean, they set up their own localhost special-port service and vend files out of them. AFAICS urllib honours the no_proxy environment variable. --

Re: Bug#747494: python3-biopython: Does not use C implementations of cpairwise2 functions

2014-05-09 Thread Jakub Wilk
7;from Bio.pairwise2 import rint; print(rint.__module__)' Bio.cpairwise2 It seems this module is not affected by the test suite since this runs fine. Yeah, as the code comment says, if the import fails, everything(?) still works, just slower. -- Jakub Wilk -- To UNSUBSCRIBE, em

Re: sponsorship request

2014-05-06 Thread Jakub Wilk
to be checked after a build, for example using "mc" to see the content of the .deb, and going into the DEBIAN folder). I find debc(1) very convenient for checking whether the built binary packages make sense. -- Jakub Wilk -- To UNSUBSCRIBE, email to debian-python-requ...@lists.

Re: Getting rid of python-support?

2014-04-30 Thread Jakub Wilk
dh_python{2,3}? Given it's like less than 200 packages left, let's do it now. This is smaller than e.g. a boost transition. This tag doesn't catch indirect use of python-support, via dh or cdbs. The actual number of affect packages is much higher. -- Jakub Wilk -- To UNSUBSCRIBE,

Re: BioPython: Some Python modules not found in tests at package build time

2014-04-28 Thread Jakub Wilk
That attached (untested) patch should do the trick. -- Jakub Wilk diff --git a/Tests/test_GenomeDiagram.py b/Tests/test_GenomeDiagram.py --- a/Tests/test_GenomeDiagram.py +++ b/Tests/test_GenomeDiagram.py @@ -27,7 +27,7 @@ "Install reportlab if you want to use Bio.Graphics.")

Re: BioPython: Some Python modules not found in tests at package build time

2014-04-26 Thread Jakub Wilk
* Jakub Wilk , 2014-04-26, 21:12: reportlab.graphics.renderPM.RenderPMError: Can't setFont(Times-Roman) missing the T1 files? Originally : makeT1Font() argument 2 must be string, not None Filed as #745985. Please let me know if the patch I made fixes all the reportlab problems fo

Re: BioPython: Some Python modules not found in tests at package build time

2014-04-26 Thread Jakub Wilk
Times-Roman) missing the T1 files? Originally : makeT1Font() argument 2 must be string, not None If I understand correctly, reportlab is trying to use non-free Adobe PostScript fonts, which (unsurprisingly) doesn't work on Debian systems. It should use the substitutes from the gsfonts package instead. -- Jakub Wilk from reportlab.graphics.shapes import Drawing from reportlab.graphics import renderPM d = Drawing(100, 100) renderPM.drawToFile(d, 'test.png', 'PNG')

Re: RFS: python-ebooklib

2014-04-24 Thread Jakub Wilk
n.net/debian/pool/main/p/python-ebooklib/python-ebooklib_0.15-1.dsc Don't hardcode Python versions in Depends. Use ${python:Depends} and ${python3:Depends} substitution variables instead. -- Jakub Wilk -- To UNSUBSCRIBE, email to debian-python-requ...@lists.debian.org with a subject of &q

Re: [PATCH] Support :any architecture qualifiers for multiarch

2014-04-20 Thread Jakub Wilk
* Steve Langasek , 2013-09-18, 14:33: On Wed, Sep 18, 2013 at 06:24:13PM +0200, Jakub Wilk wrote: Following the “if it didn't happen on a mailing list, it didn't happen”, I repeat here what I said on IRC: 12:26 < kwilk> So I rebuilt src:python-aalib, and I ended up these De

Re: Python CGI sandboxing advice (packaging of Online Python Tutor)

2014-04-09 Thread Jakub Wilk
* Jakub Wilk , 2014-02-13, 00:27: The CGI's code is supposed to be safeguarding against abuse, The protection is not very good. (I'll disclose the details later.) The exploit I had in mind was: import re from re import sys imp = re.sys.modules['imp&

Re: Bug#743583: python3-gi fails to install on arm64 (struct.error from py3compile)

2014-04-03 Thread Jakub Wilk
Of couse, it would be better if dh_python3 was Y2038-compliant. :) -- Jakub Wilk -- To UNSUBSCRIBE, email to debian-python-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: https://lists.debian.org/20140403232159.ga4...@jwilk.net

Re: Growing file lists after python2.7 rebuild

2014-03-11 Thread Jakub Wilk
t. Replacing $(shell ... ) with $$( ... ), and then adding appropriate Breaks+Replaces should fix this bug. (I haven't tested the proposed fix in practice yet.) It still don't understand why this bug didn't trigger for the amd64 package. Perhaps the build log could shed some

Re: Growing file lists after python2.7 rebuild

2014-03-11 Thread Jakub Wilk
d both for my local build and on the buildd. Source package and build log are on http://people.debian.org/~jmm/ “You don't have permission to access /~jmm/python2.7_2.7.3-6+deb7u1_i386-20140305-1206.gz on this server.” -- Jakub Wilk -- To UNSUBSCRIBE, email to debian-python-requ...@lists.

Re: Bug#739840: python-netaddr: python3 shebang

2014-02-26 Thread Jakub Wilk
offer help with implementing any of the above options, because I don't know cdbs. Sorry! [0] Resolution for the timestamp check is 1 second. :( http://bugs.python.org/issue18027 [1] --force (-f) force installation (overwrite any existing files) [2] --executable (-e) specify final dest

Re: preparing for Python 3.4

2014-02-21 Thread Jakub Wilk
ng referring to versioned interpreter N: name. This is often a mistake. N: N: Severity: normal, Certainty: wild-guess N: N: Check: python/scripts, Type: binary N: -- Jakub Wilk -- To UNSUBSCRIBE, email to debian-python-requ...@lists.debian.org with a subject of "unsubscr

Re: [Help] Bug#739631: python-pysam: FTBFS: ImportError: No module named pysam

2014-02-20 Thread Jakub Wilk
ide_dh_auto_test] Error 1 So setup.py installed stuff to "build/lib.linux-i686-2.7", but PYTHONPATH is set to "build/lib.linux-i486-2.7". /usr/share/python/python.mk defines a macro for determining build directory. You might want to use it. :) -- Jakub Wilk -- To UNSUBSCRI

Re: Python CGI sandboxing advice (packaging of Online Python Tutor)

2014-02-12 Thread Jakub Wilk
* Olivier Berger , 2014-02-10, 10:51: The CGI's code is supposed to be safeguarding against abuse, The protection is not very good. (I'll disclose the details later.) but I think some sandboxing would be better at the CGI invocation for additional security. Agreed. -- Jakub Wi

Re: Bug#736721: Incorrect dependencies

2014-02-07 Thread Jakub Wilk
c already contains some extensions modules written in Cython, so surely rewritting crypto.py and xattr.py in Cython shouldn't be a big deal? :-) -- Jakub Wilk -- To UNSUBSCRIBE, email to debian-python-requ...@lists.debian.org with a subject of "unsubscribe". Trouble?

Re: Indeed, python-concurrent.futures is the same

2014-01-31 Thread Jakub Wilk
close the bug report and remove Sandro from the Uploaders field? No. Policy §5.6.3 reads “if the ‘Maintainer’ control field names a group of people and a shared email address, the ‘Uploaders’ field must be present and must contain at least one human with their personal email address.” -- Jakub

Re: Multiple copies of timeoutsocket.py in Debian packages

2014-01-29 Thread Jakub Wilk
pikeproxy would have to be ported to the “new” API. I guess that would be worth a bug report, then ? I'm glad you volunteered to file them. ;-) Beware that spikeproxy's copy is slightly modified; see the attached diff. -- Jakub Wilk --- plucker-1.8/parser/python/PyPlucker/helper/ti

Re: Multiple copies of timeoutsocket.py in Debian packages

2014-01-28 Thread Jakub Wilk
ld have to be ported to the “new” API. -- Jakub Wilk -- To UNSUBSCRIBE, email to debian-python-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/20140128175053.ga5...@jwilk.net

Re: Set shebang line to default (instead of latest) Python 3 interpreter

2014-01-26 Thread Jakub Wilk
shebang with sed. Adding this after dh_auto_install should do the trick: sed -i -e '1 s,^#!.*,#!/usr/bin/python3,' $(package_install_bin_dir)/python3-coverage -- Jakub Wilk -- To UNSUBSCRIBE, email to debian-python-requ...@lists.debian.org with a subject of

Re: Set shebang line to default (instead of latest) Python 3 interpreter

2014-01-26 Thread Jakub Wilk
* Ben Finney , 2014-01-26, 17:06: How can I convince ‘dh_python3’ to set the shebang to the *default* Python 3 interpreter? dh_python3 --shebang=/usr/bin/python3 (if I recall correctly) -- Jakub Wilk -- To UNSUBSCRIBE, email to debian-python-requ...@lists.debian.org with a subject of

Re: Indeed, python-concurrent.futures is the same

2014-01-25 Thread Jakub Wilk
nstall_futures patch. Not shipping a deprecated and generically-named module, when there were no reverse-dependencies relying on its existence, sounds like a reasonable decision. I'm however confused how "import concurrent" works, even if there's nothing in /usr/lib/pytho

Re: Indeed, python-concurrent.futures is the same

2014-01-25 Thread Jakub Wilk
e"). It has always worked for me. Now what? -- Jakub Wilk -- To UNSUBSCRIBE, email to debian-python-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/20140125202944.ga18...@jwilk.net

Re: usr/bin/ scripts for console_scripts which lead to binaries-have-file-conflict when python 2 + 3

2013-12-16 Thread Jakub Wilk
depend on python-rdflib | python3-rdflib /usr/bin/python can't use the modules shipped by python3-rdflib. -- Jakub Wilk -- To UNSUBSCRIBE, email to debian-python-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive

Re: usr/bin/ scripts for console_scripts which lead to binaries-have-file-conflict when python 2 + 3

2013-12-14 Thread Jakub Wilk
*/and use the alternatives system/ -- Jakub Wilk -- To UNSUBSCRIBE, email to debian-python-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/20131214173550.ga8...@jwilk.net

Re: [Debian-med-packaging] Review and sponsoring request: pymia (Python module)

2013-12-11 Thread Jakub Wilk
uld use ${python3:Depends} (NOT ${python:Depends}). Build-dependency on pkg-config appears to be missing. -- Jakub Wilk -- To UNSUBSCRIBE, email to debian-python-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lis

Re: Review and sponsoring request: pymia (Python module)

2013-12-10 Thread Jakub Wilk
(In fact, now that wheezy is released, you don't need to pre-depend on multi-arch support even when you ship an actual shared library.) -- Jakub Wilk -- To UNSUBSCRIBE, email to debian-python-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas

Disappearing egg-info

2013-12-10 Thread Jakub Wilk
python-stdnum_0.8.1-1_all/usr/share/pyshared/python_stdnum-0.8.1.egg-info/requires.txt:distribute See also bug #731825. -- Jakub Wilk -- To UNSUBSCRIBE, email to debian-python-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Ar

Re: Recommending get-orig-source for packages ?

2013-12-04 Thread Jakub Wilk
f somebody steps up and does the actual work of implementing a better solution and migrating the existing information, Andreas will complain. s/complain/comply/ perhaps? -- Jakub Wilk -- To UNSUBSCRIBE, email to debian-python-requ...@lists.debian.org with a subject of "unsubscribe&quo

Re: Recommending get-orig-source for packages ?

2013-12-04 Thread Jakub Wilk
ilk.net By the way: currently you also have to audit another file in addition to d/watch if you need to exclude some files. Unless you knew in advance that there's nothing to exclude, which was most often the case, and you could guess it just by looking at version. -- Jakub Wilk -- To U

Re: Recommending get-orig-source for packages ?

2013-12-04 Thread Jakub Wilk
before you can run uscan. *sigh* -- Jakub Wilk -- To UNSUBSCRIBE, email to debian-python-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/20131204081249.ga9...@jwilk.net

Re: Recommending get-orig-source for packages ?

2013-12-03 Thread Jakub Wilk
hat is both policy-compliant and easy to understand. I don't want to waste time glaring at extra 10 lines of code only to realize it's a fancy wrapper over uscan. -- Jakub Wilk -- To UNSUBSCRIBE, email to debian-python-requ...@lists.debian.org with a subject of "unsubscribe"

Re: Some thoughts about py{support,central} -> dh_python2 conversion

2013-11-13 Thread Jakub Wilk
packages can integrate using dh_python2-based Sphinx? That's right. -- Jakub Wilk -- To UNSUBSCRIBE, email to debian-python-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/20131114070317.ga3...@jwilk.net

Re: Some thoughts about py{support,central} -> dh_python2 conversion

2013-11-12 Thread Jakub Wilk
* Jakub Wilk , 2012-05-03, 21:41: 2) Do not skip the "Before you begin"[0] step. This is very important: if two packages share a namespace, either both or none of them must use python-support. Also, it's not enough just to convert them all to dh_python2: you must make sure (

Re: uninstalling issue of a local Debian package

2013-10-28 Thread Jakub Wilk
it debian/prerm, moving the #DEBHELPER# token from line 4 to the end of the file, and see if it helps? As a side note, if the module name is "gavo", then the policy-compliant binary package name is "python-gavo". -- Jakub Wilk -- To UNSUBSCRIBE, email to debian-python-requ

Re: Using update-alternatives for /usr/bin provided binaries

2013-10-15 Thread Jakub Wilk
py $ python-coverage -x foo.py foo With Python 3 implementation, you'll get SyntaxError. -- Jakub Wilk -- To UNSUBSCRIBE, email to debian-python-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/20131015113503.ga1...@jwilk.net

Re: Using ‘export http_proxy = http://127.0.9.1:9/’ to fail noisily on dependency problems

2013-10-15 Thread Jakub Wilk
go: https://buildd.debian.org/status/fetch.php?pkg=python-ethtool&arch=i386&ver=0.7-1&stamp=1340805337 http://bugs.debian.org/683174 [0] Unfortunately Google doesn't seem to index Debian build logs. :( Perhaps someone wants to implement buildlogsearch.debian.net? -- Jakub Wilk -- To U

Re: Using update-alternatives for /usr/bin provided binaries

2013-10-15 Thread Jakub Wilk
tible with both Python 2 and 3. As I understand it, python{2,3}-coverage are NOT compatible, and therefore they should NOT use alternatives. -- Jakub Wilk -- To UNSUBSCRIBE, email to debian-python-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...

Re: Using ‘export http_proxy = http://127.0.9.1:9/’ to fail noisily on dependency problems

2013-10-14 Thread Jakub Wilk
, Debian buildds don't block Internet access. :( -- Jakub Wilk -- To UNSUBSCRIBE, email to debian-python-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/20131014112335.ga3...@jwilk.net

Re: about python-oauth2: CVE-2013-4347

2013-10-08 Thread Jakub Wilk
s to upstream bug report[0], which is about an (almost) orthogonal problem. Philippe's fix would make birthday attacks harder. Note however that make_nonce() and generate_nonce() docstrings say "generate pseudorandom number", so they would have to be updated accordingly. [0] http

Re: How to help with sphinx 1.2?

2013-09-23 Thread Jakub Wilk
* Dmitry Shachnev , 2013-09-21, 16:24: Will you sponsor the new package (the package is mature enough for unstable, but let's upload it to experimental until the mentioned fixes are uploaded)? I won't have time to review or sponsor anything in the next few months. Sorry. -- Jakub Wi

Re: Best practices for data files in /usr/share

2013-09-21 Thread Jakub Wilk
phinx/1.1.3%2Bdfsg-4/sphinx/__init__.py#L21 2) We run tests against source that has this line kept intact. Then we patch the line using sed: http://sources.debian.net/src/sphinx/1.1.3%2Bdfsg-4/debian/rules#L66 -- Jakub Wilk -- To UNSUBSCRIBE, email to debian-python-requ...@lists.debian.org w

Re: [PATCH] Support :any architecture qualifiers for multiarch

2013-09-20 Thread Jakub Wilk
ption (say, --multiarch-me-harder), so that maintainers can opt-in for :any dependencies. That doesn't sound to me like it's optimizing for the common case. The purpose of automatic dependency mechanism is not optimize for the common case; such a mechanism should assume worst case. -

Re: [PATCH] Support :any architecture qualifiers for multiarch

2013-09-19 Thread Jakub Wilk
n for :any dependencies. -- Jakub Wilk -- To UNSUBSCRIBE, email to debian-python-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/20130919150538.ga2...@jwilk.net

Bug#723736: RFA: lintian4python -- Debian package checker (for Python packages)

2013-09-19 Thread Jakub Wilk
for common errors. This package provides an experimental flavor of Lintian designed to check packages implemented in Python. Allergy advice == * contains: Perl (2.4 kloc), Python (1.0 kloc) * may contain traces of things that are nuts -- Jakub Wilk -- To UNSUBSCRIBE, email to

Re: [PATCH] Support :any architecture qualifiers for multiarch

2013-09-18 Thread Jakub Wilk
chitecture. 12:30 < kwilk> And there's no way to determine automatically whether it cares or not. -- Jakub Wilk -- To UNSUBSCRIBE, email to debian-python-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/20130918162413.ga3...@jwilk.net

Re: [PATCH] Support :any architecture qualifiers for multiarch

2013-09-17 Thread Jakub Wilk
blems prevent configuration of i18nspector: i18nspector depends on python3:any (>= 3.2.3-3~). dpkg: error processing i18nspector (--configure): dependency problems - leaving unconfigured Errors were encountered while processing: i18nspector E: Sub-process /usr/bin/dpkg returned an error co

Re: How to help with sphinx 1.2?

2013-09-16 Thread Jakub Wilk
I don't like it either. Anyway, here's a list of bugs you might want to fix before uploading Sphinx 1.2 (beta or not) to unstable: http://bugs.debian.org/cgi-bin/pkgreport.cgi?users=python-modules-t...@lists.alioth.debian.org;tag=sphinx1.2 https://bitbucket.org/birkenfeld/sphinx/issue

Re: Request to join PMPT

2013-09-12 Thread Jakub Wilk
env-python-shebang usr/bin/woof -- Jakub Wilk -- To UNSUBSCRIBE, email to debian-python-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/20130912163455.ga4...@jwilk.net

Re: Installing platform-independent resources outside the Python package (was: Specifying ‘--install-data’ for each binary package)

2013-09-09 Thread Jakub Wilk
* Ben Finney , 2013-09-09, 13:36: * Use ‘.links’ to make a symlink for each package to ‘usr/share//foofile’ at ‘usr/lib/python${PYTHON_VERSION}/dist-packages/${DISTRIBUTION_NAME}/foofile’. How can you do that without hardcoding Python version? -- Jakub Wilk -- To UNSUBSCRIBE, email to

Re: dh-python in unstable

2013-08-02 Thread Jakub Wilk
thon ./debian/control 2>/dev/null then exec /usr/share/dh-python/dh_python2 $@ else exec /usr/share/python/dh_python2 $@ fi -- Jakub Wilk -- To UNSUBSCRIBE, email to debian-python-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@list

Re: Request to join DPMT

2013-08-02 Thread Jakub Wilk
* Michael Schutte , 2013-07-29, 10:31: I have agreed with Jakub to take over python-docutils and I'm currently preparing the first revision of the 0.11 release. I'd therefore like to be added to the Modules Team. My username on Alioth is michi. Welcome to the team! :-) --

Re: django-ajax-selects

2013-08-01 Thread Jakub Wilk
wrong: python-django-filter instead of python-django-filters :-(. .oO( http://lists.debian.org/20130608225655.ga5...@jwilk.net ) -- Jakub Wilk -- To UNSUBSCRIBE, email to debian-python-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.or

Re: django-ajax-selects

2013-07-28 Thread Jakub Wilk
-name python-ajax-select -- Jakub Wilk -- To UNSUBSCRIBE, email to debian-python-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/20130728174224.gc6...@jwilk.net

Re: PEP 394 and shebang lines for /usr/bin/python2 scripts

2013-07-24 Thread Jakub Wilk
* Barry Warsaw , 2013-07-24, 12:38: In any case, it's come up that PEP 394 recommends distros start adopting shebang lines that state /usr/bin/python2 in their scripts, and I don't think we do this yet. We should! We absolutely should not. -- Jakub Wilk -- To UNSUBSCRIBE, email

Re: Requesting non -guest account on Alioth

2013-06-28 Thread Jakub Wilk
* Barry Warsaw , 2013-06-28, 11:46: Could the project admins for DPMT and PAPT please add my non-guest account? Done for DPMT. -- Jakub Wilk -- To UNSUBSCRIBE, email to debian-python-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.

Re: Request to join Project Python Modules Packaging Team

2013-06-28 Thread Jakub Wilk
ar with the process. I use a lot of Python packages for my pet projects but also at work. Because of this, I may propose more packages in the future and also help to backport some. In the long run, my personal goal is to become a DD :-) Welcome to the team! :) -- Jakub Wilk -- To UNSUBSCR

Re: Introducing myself

2013-06-23 Thread Jakub Wilk
would help finding a sponsor. -- Jakub Wilk -- To UNSUBSCRIBE, email to debian-python-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/20130623172153.ga6...@jwilk.net

Re: Request to Join Project Python Modules Packaging Team from Mike Neish (neishm-guest)

2013-06-21 Thread Jakub Wilk
admins to get it fixed. I used "dch -a" to append my change into the existing changelog. Hopefully that's doing the right thing. Yup, the changelog looks good to me. -- Jakub Wilk -- To UNSUBSCRIBE, email to debian-python-requ...@lists.debian.org with a subject of "uns

Re: Request to Join Project Python Modules Packaging Team from Mike Neish (neishm-guest)

2013-06-21 Thread Jakub Wilk
sed) entry under 2.2.6.7-3, or (C) Let the maintainers edit and sign off on the changelog. (A') Use dch(1), which should do the right thing. :) -- Jakub Wilk -- To UNSUBSCRIBE, email to debian-python-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listm

Re: Request to Join Project Python Modules Packaging Team from Mike Neish (neishm-guest)

2013-06-21 Thread Jakub Wilk
* Sandro Tosi , 2013-06-21, 08:37: Sandro, are you okay with me adding Mike to the team, so the he can commit the patch? sorry for the late reply; sure go ahead, Welcome to the team, Mike! :) does Mike need a sponsor for the upload? I believe he does. -- Jakub Wilk -- To UNSUBSCRIBE

Re: how could I help?

2013-06-18 Thread Jakub Wilk
se is usually a bad idea!) * Provide patches for these bugs: http://udd.debian.org/cgi-bin/python_bugs.cgi (Not necessarily all of them at once. ;P) -- Jakub Wilk -- To UNSUBSCRIBE, email to debian-python-requ...@lists.debian.org with a subject of "unsubscribe". Trouble?

Re: Recommend package not yet in Debian

2013-06-18 Thread Jakub Wilk
* Jakub Wilk , 2013-06-18, 20:31: 1. Just "Recommends: python3-pyicu" and rely the package is coming sometime I've been doing this for my packages (with s/pyicu/$somethingelse/ of course). Though that works only if you can predict the package name. And I believe the Ubu

Re: Recommend package not yet in Debian

2013-06-18 Thread Jakub Wilk
too. 3. This way: http://raphaelhertzog.com/2010/09/27/different-dependencies-between-debian-and-ubuntu-but-common-source-package/ I don't see how is that better that 1 or 2. It hides the problem rather than fixing it. 4. ??? Ping the maintainer? #671361 -- Jakub Wilk -- To UNSUB

Re: Taking over SQLObject package?

2013-06-14 Thread Jakub Wilk
you adding yourself to Uploaders. [...] I suggest starting to work on it in SVN immediately, I've added Neil Muller to the team. Welcome! -- Jakub Wilk -- To UNSUBSCRIBE, email to debian-python-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...

Re: Request to Join Project Python Modules Packaging Team from Mike Neish (neishm-guest)

2013-06-14 Thread Jakub Wilk
ed upstream in Pydap 3.1.) Sandro, are you okay with me adding Mike to the team, so the he can commit the patch? -- Jakub Wilk -- To UNSUBSCRIBE, email to debian-python-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: htt

Re: Introducing myself

2013-06-14 Thread Jakub Wilk
nges you want, so I'm mentioning it here only as word of advice for the future. :) Right now I've sent a request to join the team on alioth (login: emillon-guest) Welcome to the team! -- Jakub Wilk -- To UNSUBSCRIBE, email to debian-python-requ...@lists.debian.org with a subje

Re: RFS: python-keyring 1.4-1

2013-06-09 Thread Jakub Wilk
(I don't intend to sponsor this package.) * Dmitry Shachnev , 2013-06-08, 15:06: * Run upstream testsuite during build; Typo in the variable name: $(PYTHON) -> $(PYTHON2). Also, "python2.X -m unittest discover" works only for X>=7. -- Jakub Wilk -- To UNSUBSCRIBE, e

Re: Joining Python Modules Packaging Team

2013-06-08 Thread Jakub Wilk
version, I hope we get rid of it soon.) -- Jakub Wilk -- To UNSUBSCRIBE, email to debian-python-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/20130608225655.ga5...@jwilk.net

Re: Obsolete Conflits/Replaces: python2.3-MODULE, python2.4-MODULE

2013-06-08 Thread Jakub Wilk
* Jakub Wilk , 2013-06-05, 00:55: Would anyone mind if I made a mass-commit to drop them from the packages (co-)maintained by DPMT? Done! (With the exception of python-reportlab, which hasn't seen VCS updates since 2008, despite numerous uploads.) -- Jakub Wilk -- To UNSUBSCRIBE, ema

Re: python3.3 status

2013-06-06 Thread Jakub Wilk
* Scott Kitterman , 2013-06-06, 12:46: Did anyone file bugs for jwilk's FTBFS TODO packages? I've file them all, with one exception: I couldn't reproduce nuitka's FTBFS in a different build environment. -- Jakub Wilk -- To UNSUBSCRIBE, email to debian-python-requ...@lis

Re: python3.3 status

2013-06-06 Thread Jakub Wilk
python-astropy needs fixed Numpy mpi4py, pystemmer, python-llfuse are OK -- Jakub Wilk -- To UNSUBSCRIBE, email to debian-python-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/20130606170405.gb6...@jwilk.net

Re: RFS: bunch, kitchen, grapefruit, fabulous, stomper, txws, txzmq, moksha.common, moksha.hub

2013-06-06 Thread Jakub Wilk
on-type usr/share/pyshared/fabulous/logs.py:86 x: python-fabulous: except-without-exception-type usr/share/pyshared/fabulous/utils.py:95 x: python-fabulous: except-without-exception-type usr/share/pyshared/fabulous/xterm256.py:104 Patched and reported upstream. Now it emits:

Obsolete Conflits/Replaces: python2.3-MODULE, python2.4-MODULE

2013-06-04 Thread Jakub Wilk
ly still occur. Please consider dropping these obsolete relations from your packages. Would anyone mind if I made a mass-commit to drop them from the packages (co-)maintained by DPMT? -- Jakub Wilk A Mennucc1 pygame (U) Alain Leufroy xmldiff (U) Alexander Wirt eyed3 rr

Re: Use the just installed package in the postinst script

2013-05-27 Thread Jakub Wilk
* Cornelius Kölbel , 2013-05-27, 17:30: Although I am calling a update-python-modules in the postinst, the package is not available, yet. Do you have any tricks for this scenario? If you're using python-support, you want to read its README, section "Namespace packages".

Re: Joining DPMT / PAPT

2013-05-26 Thread Jakub Wilk
arguments. That's not what assert is for. [...] (These should be converted into TypeErrors, right?) Right. -- Jakub Wilk -- To UNSUBSCRIBE, email to debian-python-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive

Re: pyflakes and Python 3 scripts (was Re: PyCon 2013 -- tentative title/abstract/outline -- feedback plz)

2013-05-25 Thread Jakub Wilk
then with non-default Python interpreter easily; - write a wrapper script that execfile()s the original script. -- Jakub Wilk -- To UNSUBSCRIBE, email to debian-python-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: htt

Re: Request to Join Project Python Modules Packaging Team from Vincent Cheng (vincentc-guest)

2013-05-25 Thread Jakub Wilk
(--install-data) it doesn't store that location anywhere, so the code has no way of knowing where the data could be. In practice it means that you have to either patch the code that loads the data, or add symlinks pointing from old to new locations. -- Jakub Wilk -- To UNSUBSCRIBE, email t

  1   2   3   4   5   6   >