[Bug 1105050] Review Request: python-distlib - Low-level components of distutils2/packaging, augmented with higher-level APIs

2014-06-06 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1105050



--- Comment #3 from Matej Stuchlik mstuc...@redhat.com ---
Updated the spec.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 1105050] Review Request: python-distlib - Low-level components of distutils2/packaging, augmented with higher-level APIs

2014-06-06 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1105050

Robert Kuska rku...@redhat.com changed:

   What|Removed |Added

  Flags|fedora-review?  |fedora-review+



--- Comment #4 from Robert Kuska rku...@redhat.com ---
Looks nice, approved.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 1105050] Review Request: python-distlib - Low-level components of distutils2/packaging, augmented with higher-level APIs

2014-06-06 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1105050

Matej Stuchlik mstuc...@redhat.com changed:

   What|Removed |Added

  Flags||fedora-cvs?



--- Comment #5 from Matej Stuchlik mstuc...@redhat.com ---
New Package SCM Request
===
Package Name: python-distlib
Short Description: Low-level components of distutils2/packaging, augmented with
higher-level APIs
Upstream URL: https://bitbucket.org/vinay.sajip/distlib
Owners: mstuchli
Branches: 
InitialCC:

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 1105050] Review Request: python-distlib - Low-level components of distutils2/packaging, augmented with higher-level APIs

2014-06-06 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1105050

Jon Ciesla limburg...@gmail.com changed:

   What|Removed |Added

  Flags|fedora-cvs? |fedora-cvs+



-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 1105050] Review Request: python-distlib - Low-level components of distutils2/packaging, augmented with higher-level APIs

2014-06-06 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1105050



--- Comment #6 from Jon Ciesla limburg...@gmail.com ---
Git done (by process-git-requests).

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 1105050] Review Request: python-distlib - Low-level components of distutils2/packaging, augmented with higher-level APIs

2014-06-06 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1105050

Matej Stuchlik mstuc...@redhat.com changed:

   What|Removed |Added

 Status|ASSIGNED|CLOSED
 Resolution|--- |NEXTRELEASE
Last Closed||2014-06-06 08:50:15



-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 1105050] Review Request: python-distlib - Low-level components of distutils2/packaging, augmented with higher-level APIs

2014-06-05 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1105050

Robert Kuska rku...@redhat.com changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
 CC||rku...@redhat.com
   Assignee|nob...@fedoraproject.org|rku...@redhat.com
  Flags||fedora-review?



-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 1105050] Review Request: python-distlib - Low-level components of distutils2/packaging, augmented with higher-level APIs

2014-06-05 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1105050



--- Comment #1 from Robert Kuska rku...@redhat.com ---
BuildRequires:  python-setuptools
and
BuildRequires:  python3-setuptools

are actualy not needed.

Also distlib vendorize some python libs in distlib/_backport (tarfile.py,
sysconfig.py, shutil.py).

cat distlib/_backport/__init__.py
Modules copied from Python 3 standard libraries, for internal use only.

Individual classes and functions are found in d2._backport.misc.  Intended
usage is to always import things missing from 3.1 from that module: the
built-in/stdlib objects will be used if found.


There is SKIP_SLOW[1] env variable to skip some of those tests which fail, but
it's only small bonus. :-)

[1] http://pythonhosted.org//distlib/tutorial.html#pypi-availability

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 1105050] Review Request: python-distlib - Low-level components of distutils2/packaging, augmented with higher-level APIs

2014-06-05 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1105050



--- Comment #2 from Matej Stuchlik mstuc...@redhat.com ---
(In reply to Robert Kuska from comment #1)
 BuildRequires:  python-setuptools
 and
 BuildRequires:  python3-setuptools
 
 are actualy not needed.

Good point.

 Also distlib vendorize some python libs in distlib/_backport (tarfile.py,
 sysconfig.py, shutil.py).
 
 cat distlib/_backport/__init__.py
 Modules copied from Python 3 standard libraries, for internal use only.
 
 Individual classes and functions are found in d2._backport.misc.  Intended
 usage is to always import things missing from 3.1 from that module: the
 built-in/stdlib objects will be used if found.
 

Well done noticing this, it did not occur to me to check, will fix.

 There is SKIP_SLOW[1] env variable to skip some of those tests which fail,
 but it's only small bonus. :-)
 
 [1] http://pythonhosted.org//distlib/tutorial.html#pypi-availability

I did notice that, however since, as you note, it only skips some of the
failing tests I chose not to use it.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review