[issue11092] Setup.cfg isn't packaged when running sdist

2011-02-01 Thread Julien Miotte

New submission from Julien Miotte miotte.jul...@gmail.com:

Operating System: Ubuntu Maverick
Version of Python: 2.6.6
Version of Distutils2: d355f123ac79

How to reproduce: Create a project bato with a setup.cfg, like this: 
[metadata]
name = bato
version = 1.0

Run:
$ python -m distutils2.run sdist
$ tar tf dist/bato-1.0.tar.gz

What happens: The archive doesn't contain the setup.cfg file.

--
assignee: tarek
components: Distutils2
messages: 127705
nosy: Julien.Miotte, eric.araujo, tarek
priority: normal
severity: normal
status: open
title: Setup.cfg isn't packaged when running sdist
versions: 3rd party

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue11092
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11040] After registering a project to PyPI, classifiers fields aren't displayed.

2011-01-28 Thread Julien Miotte

New submission from Julien Miotte miotte.jul...@gmail.com:

When I register a project with a setup.cfg with the following classifiers:

classifier =
Development Status :: 3 - Alpha
License :: OSI Approved :: GNU General Public License (GPL)
Environment :: X11 Applications :: Qt

And using the command:
$ python -m distutils2.run register

I can't find the classifiers on the PyPI project page, althought they can be 
found in the PKG-INFO generated by the 'sdist' command.

--
assignee: tarek
components: Distutils2
messages: 127285
nosy: Julien.Miotte, eric.araujo, tarek, tarek-ziade
priority: normal
severity: normal
status: open
title: After registering a project to PyPI, classifiers fields aren't displayed.
versions: Python 2.6

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue11040
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11040] After registering a project to PyPI, classifiers fields aren't displayed.

2011-01-28 Thread Julien Miotte

Changes by Julien Miotte miotte.jul...@gmail.com:


--
type:  - behavior

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue11040
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11041] On the distutils2 documentation, 'requires-python' shouldn't be documented as *multi

2011-01-28 Thread Julien Miotte

New submission from Julien Miotte miotte.jul...@gmail.com:

On the documentation page: http://distutils2.notmyidea.org/setupcfg.html, one 
can read :

# requires-python: Specifies the Python version the distribution requires. The 
value is a version number, as described in PEP 345. *optional *multi *environ

This is not consistant with the PEP 345 
(http://www.python.org/dev/peps/pep-0345/#requires-python), which doesn't 
specify that this field is of multiple use.

Distutils's behaviour on this matter is consistent with the PEP thought, so 
there's only need to remove the *multi in the documentation.

--
assignee: tarek
components: Distutils2
messages: 127287
nosy: Julien.Miotte, eric.araujo, tarek, tarek-ziade
priority: normal
severity: normal
status: open
title: On the distutils2 documentation, 'requires-python' shouldn't be 
documented as *multi

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue11041
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11042] [PyPI CSS] Adding project urls onto a project page using register, apparition of an overhead over the title

2011-01-28 Thread Julien Miotte

New submission from Julien Miotte miotte.jul...@gmail.com:

When adding project urls onto a PyPI project page using the following setup.cfg 
extract:

project_url =
Source repository,https://github.com/mike-perdide/qGitFilterBranch

And then registering the project with:

python -m distutils2.run register

Causes a not-so-nice overhead to appear just above the project title.

Can be seen in http://pypi.python.org/pypi/qGitFilterBranch/0.9.

--
assignee: tarek
components: Distutils2
messages: 127288
nosy: Julien.Miotte, eric.araujo, tarek, tarek-ziade
priority: normal
severity: normal
status: open
title: [PyPI CSS] Adding project urls onto a project page using register, 
apparition of an overhead over the title

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue11042
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11043] On GNU/Linux (Ubuntu) distutils2.mkcfg shouldn't create an executable setup.cfg

2011-01-28 Thread Julien Miotte

New submission from Julien Miotte miotte.jul...@gmail.com:

When using the command:

  $ python -m distutils2.mkcfg

To create a new setup.cfg, the resulting setup.cfg has the following 
permissions:

-rwxr-xr-x 1 mike mike  151 2011-01-28 12:47 setup.cfg*

I think the permissions should be 644

--
assignee: tarek
components: Distutils2
messages: 127289
nosy: Julien.Miotte, eric.araujo, tarek, tarek-ziade
priority: normal
severity: normal
status: open
title: On GNU/Linux (Ubuntu) distutils2.mkcfg shouldn't create an executable 
setup.cfg
versions: Python 2.6

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue11043
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11044] The description-file isn't handled by distutils2

2011-01-28 Thread Julien Miotte

New submission from Julien Miotte miotte.jul...@gmail.com:

When using the description-file field with a README.txt, and then using the 
'sdist' command, the generated PKG-INFO file will contain:

Description: UNKNOWN



Note: when using the description field with a simple string, the generated 
PKG-INFO file will contain the correct string.

--
assignee: tarek
components: Distutils2
messages: 127291
nosy: Julien.Miotte, eric.araujo, tarek, tarek-ziade
priority: normal
severity: normal
status: open
title: The description-file isn't handled by distutils2
versions: Python 2.6

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue11044
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11043] On GNU/Linux (Ubuntu) distutils2.mkcfg shouldn't create an executable setup.cfg

2011-01-28 Thread Julien Miotte

Julien Miotte miotte.jul...@gmail.com added the comment:

Hey Eric,

Sorry for that, I should know better. I'll have a look at the other submitted 
issues and I'll check they are still present in the latest version.

Regards.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue11043
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11044] The description-file isn't handled by distutils2

2011-01-28 Thread Julien Miotte

Julien Miotte miotte.jul...@gmail.com added the comment:

My bad, works fine with r903:c3cf81fc64db.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue11044
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11044] The description-file isn't handled by distutils2

2011-01-28 Thread Julien Miotte

Changes by Julien Miotte miotte.jul...@gmail.com:


--
resolution:  - out of date

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue11044
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11044] The description-file isn't handled by distutils2

2011-01-28 Thread Julien Miotte

Changes by Julien Miotte miotte.jul...@gmail.com:


--
status: open - closed

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue11044
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11040] After registering a project to PyPI, classifiers fields aren't displayed.

2011-01-28 Thread Julien Miotte

Julien Miotte miotte.jul...@gmail.com added the comment:

This can reproduced with:
 - distutils2 r903:c3cf81fc64db
 - python 2.6.6
 - Ubuntu 10.10

--
nosy:  -eric.araujo, tarek, tarek-ziade
versions: +3rd party -Python 2.6

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue11040
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com