non port: devel/py-importlib-metadata/Makefile |
Number of commits found: 34 |
Monday, 4 Dec 2023
|
22:13 Muhammad Moinur Rahman (bofh)
devel/py-importlib-metadata: Update version 6.8.0=>7.0.0
Changelog: https://github.com/python/importlib_metadata/releases/tag/v7.0.0
659be85 |
Tuesday, 18 Jul 2023
|
00:53 Charlie Li (vishwin)
devel/py-setuptools: convert individual consumers to ${PY_SETUPTOOLS}
Currently a no-op, but in the future outputs the correct setuptools
port depending on whether USES_PYTHON=distutils is specified.
With hat: python
PR: 270510, 270358
9a80a6e |
Saturday, 15 Jul 2023
|
19:01 Muhammad Moinur Rahman (bofh)
devel/py-importlib-metadata: Update version 6.7.0=>6.8.0
Changelog:
https://github.com/python/importlib_metadata/releases/tag/v6.8.0
e8fb223 |
Friday, 30 Jun 2023
|
00:51 Muhammad Moinur Rahman (bofh)
devel/py-importlib-metadata: Utilize USE_PYTHON=pep517
Reported by: vishwin
092d07b |
Thursday, 29 Jun 2023
|
22:33 Muhammad Moinur Rahman (bofh)
devel/py-importlib-metadata: Update version 6.6.0=>6.7.0
Changelog:
https://github.com/python/importlib_metadata/releases/tag/v6.7.0
f2f3efc |
Tuesday, 27 Jun 2023
|
19:34 Rene Ladan (rene)
all: remove explicit versions in USES=python for "3.x+"
The logic in USES=python will automatically convert this to 3.8+ by
itself.
Adjust two ports that only had Python 3.7 mentioned but build fine
on Python 3.8 too.
finance/quickfix: mark BROKEN with PYTHON
libtool: compile: c++ -DHAVE_CONFIG_H -I. -I../.. -I -I. -I.. -I../.. -I../C++
-DLIBICONV_PLUG -DPYTHON_MAJOR_VERSION=3 -Wno-unused-variable
-Wno-maybe-uninitialized -O2 -pipe -DLIBICONV_PLUG -fstack-protector-strong
-fno-strict-aliasing -DLIBICONV_PLUG -Wall -ansi
-Wno-unused-command-line-argument -Wpointer-arith -Wwrite-strings
-Wno-overloaded-virtual -Wno-deprecated-declarations -Wno-deprecated -std=c++0x
-MT _quickfix_la-QuickfixPython.lo -MD -MP -MF
.deps/_quickfix_la-QuickfixPython.Tpo -c QuickfixPython.cpp -fPIC -DPIC -o
.libs/_quickfix_la-QuickfixPython.o
warning: unknown warning option '-Wno-maybe-uninitialized'; did you mean
'-Wno-uninitialized'? [-Wunknown-warning-option]
QuickfixPython.cpp:175:11: fatal error: 'Python.h' file not found
^~~~~~~~~~
1 warning and 1 error generated.
Reviewed by: portmgr, vishwin, yuri
Differential Revision: <https://reviews.freebsd.org/D40568>
3d9a815 |
Sunday, 23 Apr 2023
|
18:46 Muhammad Moinur Rahman (bofh)
devel/py-importlib-metadata: Update version 6.4.1=>6.6.0
Changelog:
https://github.com/python/importlib_metadata/releases/tag/v6.6.0
902f443 |
Sunday, 16 Apr 2023
|
19:02 Muhammad Moinur Rahman (bofh)
devel/py-importlib-metadata: Update version 6.3.0=>6.4.1
Changelog:
https://github.com/python/importlib_metadata/releases/tag/v6.4.1
6aaac4b |
Friday, 14 Apr 2023
|
18:14 Muhammad Moinur Rahman (bofh)
devel/py-importlib-metadata: Update version 6.0.0=>6.3.0
Changelog:
https://github.com/python/importlib_metadata/releases/tag/v6.3.0
e0097b9 |
Tuesday, 11 Apr 2023
|
20:46 Muhammad Moinur Rahman (bofh)
*/*: Adopt ports from swills@
2c2dd85 |
20:34 Rene Ladan (rene)
all: return swills' ports to the pools after safeeping his ports bit.
With hat: portmgr-secretary
4f538db |
Tuesday, 4 Apr 2023
|
18:29 Antoine Brodin (antoine)
USE_PYTHON=pep517: bump PORTREVISION
1730e97 |
Monday, 6 Feb 2023
|
02:54 Yuri Victorovich (yuri)
devel/py-importlib-metadata: Fix circular dependency problem
... introduced by USE_PYTHON=pep517.
PR: 269363
Reported by: John Hein <jcfyecrayz@liamekaens.com>
d6583d6 |
Sunday, 5 Feb 2023
|
20:42 Charlie Li (vishwin)
devel/py-importlib-metadata: add explicit setuptools BUILD_DEPENDS
Per PEP-518 [0], for projects using setuptools as the build backend,
both setuptools and wheel are to be specified, as wheel is a plugin
for setuptools to support the format at all. Additionally, wheel
itself will soon [1] not depend on setuptools, but rather the
dependency tree will reverse.
With hat: python
Approved by: mentors (implicit), swills (maintainer, implicit)
References: https://peps.python.org/pep-0518/#build-system-table [0]
https://github.com/pypa/wheel/pull/501 [1]
4717471 |
19:05 Charlie Li (vishwin)
Revert "Mk/Uses/python.mk: Fix USE_PYTHON=pep517: always compile and install
bytecode"
Despite installer's default behaviour to compile and install bytecode,
we are not doing so going forward at stage/package time. [0] During
initial development and qualification of PEP-517 framework support,
compiling and installing bytecode at stage/package time was considered,
but was found problematic, fragile and ultimately unreliable, both
currently and historically (with USE_PYTHON=distutils), due to our
fixed plist requirement. While the living binary distribution format
(wheel) specification [1] says to compile bytecode, that is in the
pure Python package management context (pip, etc); nuance always
exists when interacting with "system" package management.
Additionally, "bytecode is an implementation detail of the CPython
interpreter. No guarantees are made that bytecode will not be added,
removed, or changed between versions of Python," thus "should not
be considered to work across Python VMs or Python releases." [2]
This is important to ensuring correctness for those ports specifying
NO_ARCH.
Instead of compiling and installing bytecode at stage/package time,
there is a WIP, review D34739, that compiles and installs bytecode
at install time instead, using triggers.
The aforementioned build_fs_violations will be investigated.
This reverts commit de6965254c3a007efcf697c3d455b54d2aeb2383.
With hat: python
Approved by: tcberner (mentor, portmgr)
Reference: https://wiki.freebsd.org/Python/PEP-517 [0]
https://packaging.python.org/en/latest/specifications/binary-distribution-format/
[1]
https://docs.python.org/3/library/dis.html [2]
f5890bd |
18:16 Po-Chuan Hsieh (sunpoet)
Mk/Uses/python.mk: Fix USE_PYTHON=pep517: always compile and install bytecode
- While I'm here, use long options for easier reading [1][2]
- Bump PORTREVISION of dependent ports (USE_PYTHON=pep517) for package change
It fixes build_fs_violation of dependent ports in poudriere (with -t flag).
It is also the default behavior of installer [2].
from py-sphinx log:
=>> Checking for staging violations... done
=>> Error: Filesystem touched during stage (files must install to ${STAGEDIR}):
extra: usr/local/lib/python3.9/site-packages/importlib_metadata/__pycache__
=>> Cleaning up wrkdir
from installer documentation:
--compile-bytecode
Possible choices: 0, 1, 2
generate bytecode for the specified optimization level(s) (default=0, 1)
--no-compile-bytecode
don’t generate bytecode for installed modules
Default: False
With hat: python
Reference: https://pypa-build.readthedocs.io/en/stable/ [1]
https://installer.pypa.io/en/stable/cli/installer/ [2]
de69652 |
Saturday, 4 Feb 2023
|
07:05 Yuri Victorovich (yuri)
devel/py-importlib-metadata: Update 4.8.1 → 6.0.0
Remove upper limitation on version in devel/py-poetry because it
doesn't change tests outcome.
This unbreaks devel/py-jupyterlab and also opens path for several
other ports that depend on the newest devel/py-importlib-metadata
versions.
PR: 269125
Approved by: portmgr (unbreak devel/py-jupyterlab)
89168e9 |
Wednesday, 11 Jan 2023
|
15:58 Dmitry Marakasov (amdmi3)
*/*: rename CHEESESHOP to PYPI in MASTER_SITES
PR: 267994
Differential revision: D37518
Approved by: bapt
77d6847 |
Wednesday, 7 Sep 2022
|
21:10 Stefan Eßer (se)
Add WWW entries to port Makefiles
It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.
Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.
There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.
This commit implements such a proposal and moves one of the WWW: entries
of each pkg-descr file into the respective port's Makefile. A heuristic
attempts to identify the most relevant URL in case there is more than
one WWW: entry in some pkg-descr file. URLs that are not moved into the
Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr
files in order to preserve them.
There are 1256 ports that had no WWW: entries in pkg-descr files. These
ports will not be touched in this commit.
The portlint port has been adjusted to expect a WWW entry in each port
Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as
deprecated.
Approved by: portmgr (tcberner)
b7f0544 |
Saturday, 6 Nov 2021
|
17:25 Steve Wills (swills)
devel/py-importlib-metadata: update to 4.8.1
03c761c |
Sunday, 19 Sep 2021
|
06:01 Po-Chuan Hsieh (sunpoet)
devel/py-importlib-metadata: Add NO_ARCH
Approved by: portmgr (blanket)
dcec01f |
Saturday, 28 Aug 2021
|
04:56 Steve Wills (swills)
devel/py-importlib-metadata: update to 4.7.1
PR: 255237
Reported by: yuri
3cda2f5 |
Tuesday, 25 May 2021
|
13:55 Dmitry Marakasov (amdmi3)
Mk: switch PYTHON_REL to 5 digits to support python 3.10.x
PR: 255013
Differential Revision: https://reviews.freebsd.org/D29418
Exp-run by: antoine
Approved by: wen@, no objection from python@ or portmgr@
0729af4 |
Wednesday, 7 Apr 2021
|
08:09 Mathieu Arnold (mat)
One more small cleanup, forgotten yesterday.
Reported by: lwhsu
cf118cc |
Tuesday, 6 Apr 2021
|
14:31 Mathieu Arnold (mat)
Remove # $FreeBSD$ from Makefiles.
305f148 |
Saturday, 19 Dec 2020
|
18:17 kai
devel/py-importlib-metadata: Fix RUN_DEPENDS for Python < 3.8
* Python < 3.8 also needs devel/py-typing-extensions for runtime.
* Bump PORTREVISION due changed dependencies.
Approved by: portmgr ("just fix it")
 |
Friday, 18 Dec 2020
|
15:14 swills
devel/py-importlib-metadata: update to 3.3.0
 |
Wednesday, 23 Sep 2020
|
19:10 swills
devel/py-importlib-metadata: update to 2.0.0
 |
Tuesday, 21 Jul 2020
|
01:30 swills
devel/py-importlib-metadata: update to 1.7.0
 |
Tuesday, 14 Jul 2020
|
07:59 antoine
Unbreak bulk -a
 |
Friday, 11 Oct 2019
|
14:04 swills
devel/py-importlib-metadata: update to 0.23
 |
Saturday, 6 Jul 2019
|
19:16 swills
devel/py-importlib-metadata: update to 0.18
 |
Friday, 31 May 2019
|
17:20 swills
devel/py-importlib-metadata: update to 0.17, add missing build dep
 |
Monday, 27 May 2019
|
20:14 swills
devel/py-pre-commit: create port and deps
A framework for managing and maintaining multi-language pre-commit
hooks.
WWW: https://pre-commit.com/
 |
Number of commits found: 34 |