[issue5302] Allow package_data specs/globs to match directories

2013-08-01 Thread Larry Hastings

Larry Hastings added the comment:

And this will hold up Python 3.4a1, as I can't close #13463 until this is 
closed first.  So I'm closing this as wontfix.

--
nosy: +larry
resolution:  - wont fix
status: open - closed

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



[issue5302] Allow package_data specs/globs to match directories

2013-07-31 Thread Éric Araujo

Éric Araujo added the comment:

packaging is not in the stdlib anymore, and the successors to distutils2 may or 
may not use package_data in setup.cfg.  This is obsolete.

--

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



[issue5302] Allow package_data specs/globs to match directories

2012-06-24 Thread Antoine Pitrou

Antoine Pitrou pit...@free.fr added the comment:

Cannot block a release anymore, since packaging has gone.

--
nosy: +pitrou
priority: release blocker - normal

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



[issue5302] Allow package_data specs/globs to match directories

2012-06-24 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

I explained in another issue that I had been using priority release blocker + 
version third-party to keep track of distutils2 release blockers.  This can be 
distracting for CPython devs and RMs so I’ll just use high now.

--
priority: normal - high

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



[issue5302] Allow package_data specs/globs to match directories

2012-06-24 Thread Antoine Pitrou

Antoine Pitrou pit...@free.fr added the comment:

 I explained in another issue that I had been using priority release
 blocker + version third-party to keep track of distutils2 release
 blockers.  This can be distracting for CPython devs and RMs so I’ll
 just use high now.

Woops, sorry.

--

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



[issue5302] Allow package_data specs/globs to match directories

2012-06-20 Thread Éric Araujo

Changes by Éric Araujo mer...@netwok.org:


--
versions: +Python 3.4 -Python 3.3

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



[issue5302] Allow package_data specs/globs to match directories

2012-06-19 Thread Georg Brandl

Georg Brandl ge...@python.org added the comment:

Does this block 3.3b1?

--
nosy: +georg.brandl

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



[issue5302] Allow package_data specs/globs to match directories

2012-03-15 Thread Alexis Metaireau

Alexis Metaireau ale...@notmyidea.org added the comment:

Agreed on this one. That would avoid to have a new syntax for this 
case, which seems to be very common.

--

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



[issue5302] Allow package_data specs/globs to match directories

2012-03-13 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

Or on the contrary, we could remove the special, 
not-supported-by-other-parts-of-the-stdlib ** syntax and just expand somedir to 
match all files in subdir and descendents, in package_data and resources.  I’ll 
make a patch for this idea to see how it looks.

--

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



[issue5302] Allow package_data specs/globs to match directories

2012-02-27 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

For consistency with the resources section, a recursive glob should be 
mydata/**, not mydata/* or bare mydata.

--

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



[issue5302] Allow package_data specs/globs to match directories

2012-02-06 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

One implementation by George Sakkis is found in this thread: 
http://bugs.python.org/issue2279#msg82213

There are subtle issues with this feature.  For example, a glob pattern could 
match both package data files and Python submodules, leading to the same .py 
files being included as modules and data.  I’ll see how far I want to specify 
the behavior in tests and docs.

--

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



[issue5302] Allow package_data specs/globs to match directories

2011-12-01 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

As a first step for this, I moved around some things in the test file to ease 
coming additions.  Can someone test this patch for the distutils2 repo on 
Windows?

--
keywords: +patch
Added file: http://bugs.python.org/file23829/test_sdist.diff

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



[issue5302] Allow package_data specs/globs to match directories

2011-11-24 Thread Éric Araujo

Éric Araujo mer...@netwok.org added the comment:

I need to fix this for distutils2’s next release (with #13463 and #5302), to 
include distutils2/tests/fake_dists.

--
assignee: tarek - eric.araujo
priority: high - release blocker
title: Allow package_data globs match directories - Allow package_data 
specs/globs to match directories
versions: +Python 3.3

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