Commit History - (may be incomplete: see SVNWeb link above for full details) |
Date | By | Description |
05 Nov 2021 19:14:25 1.10.0_1
|
Po-Chuan Hsieh (sunpoet)  |
sysutils/py-scandir: Cosmetic change |
20 Jun 2021 11:37:59 1.10.0_1
|
Po-Chuan Hsieh (sunpoet)  |
sysutils/py-scandir: Remove blank line |
10 Jun 2021 14:46:16 1.10.0_1
|
Po-Chuan Hsieh (sunpoet)  |
sysutils/py-scandir: Fix build with Python 3.9+
PR: 256272
Reported by: John W. O'Brien <john@saltant.com> |
11 May 2021 21:47:19 1.10.0_1
|
Po-Chuan Hsieh (sunpoet)  |
sysutils/py-scandir: Clean up |
06 Apr 2021 14:31:07 1.10.0_1
|
Mathieu Arnold (mat)  |
Remove # $FreeBSD$ from Makefiles. |
09 Jan 2021 16:34:07
1.10.0_1
|
antoine  |
Remove python 2.7 support from a few ports |
24 Dec 2020 13:46:02
1.10.0_1
|
kai  |
Relax hardcoded paths to fix build with Python 3.8.7
Since r558913 Python 3.8 incorporates BPO-42604 [1] which changed the
shared libs naming scheme. This means "EXT_SUFFIX" is now derived from
SOABI and yields with Python 3.8 to ".cpython-38.so" instead of ".so".
The affected ports strip the libaries in the "post-install" target via
hardcoded path(s) and the build fails at the end because the new extension
is not expected at this place.
Remedy the issue by adding wildcards to these paths. This should also
prepare the ports for future Python releases, which will use the new shared
libs naming scheme.
[1] https://bugs.python.org/issue42604
PR: 252057
Reported by: John Kennedy
Reviewed by: fluffy, koobs
Approved by: koobs (python) |
18 Jan 2020 19:02:00
1.10.0_1
|
sunpoet  |
Change MASTER_SITES from GitHub to CHEESESHOP
- Take maintainership |
18 Jan 2020 16:46:29
1.10.0_1
|
rene  |
Return a few ports to the pool. |
18 Dec 2019 05:07:44
1.10.0_1
|
koobs  |
sysutils/py-scandir: Fix unicode issues, level up ports compliance
This change fixes tests and likely runtime in certain locale environments
by replace the existing test_scandir.py patch with a backported upstream
patch from PR #109 [1][2], coupled with setting an appropriate locale.
While I'm here:
- Strip shared library and add LICENSE_FILE
Tests now all pass on all Python versions (2.7-3.8)
[1] https://github.com/benhoyt/scandir/pull/109
[2] https://github.com/benhoyt/scandir/issues/122
Approved by: portmgr (blanket: ports compliance, bugfix)
MFH: 2019Q4 (blanket: bugfix) |
07 Apr 2019 11:42:52
1.10.0
|
rene  |
sysutils/py-scandir: update to 1.10.0
Reported by: portscout |
11 Aug 2018 12:57:32
1.9.0
|
rene  |
www/py-scandir: update to version 1.9.0
Reported by: portscout
Sponsored by: Essen Hackathon |
03 Aug 2018 12:59:51
1.8
|
rene  |
sysutils/py-scandir: update to version 1.8
Reported by: portscout |
16 Feb 2018 19:31:07
1.7
|
rene  |
sysutils/py-scandir: update to 1.7
Submitted by: portscout |
30 Sep 2017 14:45:59
1.6
|
rene  |
sysutils/py-scandir: update to 1.6
Add a patch to somewhat deal with Unicode tests, they still fail but
this might be unrelated to the port itself.
Sort USES before USE_*
Submitted by: portscout |
08 Jun 2017 02:14:32
1.5
|
rene  |
sysutils/py-scandir: update to 1.5
Submitted by: portscout |
25 Sep 2016 09:34:37
1.3
|
rene  |
sysutils/py-scandir: update to 1.3
This version is safe to use in Pootle 2.8.0b3
Submitted by: portscout
Sponsored by: EuroBSDCon 2016 Belgrade |
24 Sep 2016 16:46:14
1.2
|
rene  |
scandir, a better directory iterator and faster os.walk()
scandir() is a generator version of os.listdir() that returns an iterator
over files in a directory, and also exposes the extra information most
operating systems provide while iterating files in a directory (such as
type and stat information).
This module also includes a version of os.walk() that uses scandir()
to speed it up significantly.
NOTE: If you're using Python version 3.5+, os.scandir() and the speed
improvements to os.walk() are already available in the standard library.
WWW: https://github.com/benhoyt/scandir
Note: version 1.3 is available, but Pootle 2.8.0bX insists on
version 1.2 for the time being.
Sponsored by: EuroBSDCon 2016 Belgrade |