Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
6.0.1 07 Jul 2024 08:05:33 |
Po-Chuan Hsieh (sunpoet) |
devel/py-pyyaml: Move devel/py-yaml to devel/py-pyyaml
- Bump PORTREVISION of dependent ports for dependency change |
6.0.1 14 Nov 2023 17:16:42 |
Po-Chuan Hsieh (sunpoet) |
devel/py-yaml: Update to 6.0.1
Changes: https://github.com/yaml/pyyaml/blob/main/CHANGES |
6.0 27 Jun 2023 19:34: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> |
6.0 30 Jan 2023 23:51:44 |
Po-Chuan Hsieh (sunpoet) |
devel/py-yaml: Update to 6.0
- Add CONFLICTS_INSTALL
Changes: https://github.com/yaml/pyyaml/blob/master/CHANGES |
5.4.1 11 Jan 2023 15:58:34 |
Dmitry Marakasov (amdmi3) |
*/*: rename CHEESESHOP to PYPI in MASTER_SITES
PR: 267994
Differential revision: D37518
Approved by: bapt |
07 Sep 2022 21:58:51 |
Stefan Eßer (se) |
Remove WWW entries moved into port Makefiles
Commit b7f05445c00f has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner) |
5.4.1 07 Sep 2022 21:10:59 |
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.
(Only the first 15 lines of the commit message are shown above ) |
5.4.1 20 Jul 2022 14:21:35 |
Tobias C. Berner (tcberner) |
devel: remove 'Created by' lines
A big Thank You to the original contributors of these ports:
* "Waitman Gobble" <uzimac@da3m0n8t3r.com>
* <jkoshy@FreeBSD.org>
* Aaron Dalton <aaron@FreeBSD.org>
* Aaron Dalton <aaron@daltons.ca>
* Aaron H. K. Diep <ahkdiep@gmail.com>
* Aaron Hurt <ahurt@anbcs.com>
* Abel Chow <abel_chow@yahoo.com>
* Adam McLaurin
* Adam Saponara <as@php.net>
* Adam Weinberger <adamw@FreeBSD.org>
* Ade Lovett <ade@FreeBSD.org> (Only the first 15 lines of the commit message are shown above ) |
5.4.1 23 Jun 2022 02:12:26 |
Danilo G. Baio (dbaio) |
devel/py-yaml: Pass MAINTAINER'ship to Python@ |
5.4.1 02 Jun 2021 18:41:43 |
Dmitry Marakasov (amdmi3) |
devel/py-yaml: update to 5.4.1
PR: 256220
Approved by: dbaio (maintainer)
MFH: 2020Q2 (security release) |
5.3.1_1 06 Apr 2021 14:31:07 |
Mathieu Arnold (mat) |
Remove # $FreeBSD$ from Makefiles. |
5.3.1_1 02 Mar 2021 11:28:10 |
dbaio |
devel/py-yaml: Take MAINTAINER'ship |
5.3.1_1 02 Mar 2021 00:51:54 |
jpaetzel |
deorbit jpaetzel |
5.3.1_1 19 Jan 2021 16:10:08 |
jpaetzel |
Switch the optional libyaml to be on by default
There are software packages that expect pyyaml to be compiled
with libyaml support. Switching the default eases using the port
as a dep.
Reported by: thierry |
5.3.1 28 Dec 2020 23:02:15 |
antoine |
Drop python 2.7 support from a few ports
With hat: portmgr |
5.3.1 24 Dec 2020 13:46:02 |
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) |
5.3.1 16 May 2020 11:04:56 |
sunpoet |
Convert to options helper
- Use USE_PYTHON=concurrent instead of setting EXAMPLESDIR manually
- Sort PLIST
PR: 246407
Submitted by: sunpoet (myself)
Approved by: jpaetzel (maintainer) |
5.3.1 27 Apr 2020 20:22:43 |
jpaetzel |
Update to 5.3.1
This release contains a security fix for CVE-2020-1747. FullLoader was still
exploitable for arbitrary command execution.
https://bugzilla.redhat.com/show_bug.cgi?id=1807367
Thanks to Riccardo Schirone (https://github.com/ret2libc) for both reporting
this and providing the fixes to resolve it.
- https://github.com/yaml/pyyaml/pull/386
PR: 245937
Submitted by: daniel.engberg.lists@pyret.net
MFH: 2020Q2
Security: http://vuxml.freebsd.org/freebsd/aae8fecf-888e-11ea-9714-08002718de91.html |
5.2 23 Feb 2020 09:31:30 |
amdmi3 |
- Update WWW
Approved by: portmgr blanket |
5.2 03 Dec 2019 23:35:17 |
jpaetzel |
Update to 5.2
Repair incompatibilities introduced with 5.1. The default Loader was changed,
but
several methods like add_constructor still used the old default
A more flexible fix for custom tag constructors
Change default loader for yaml.add_constructor
Change default loader for add_implicit_resolver, add_path_resolver
Make FullLoader safer by removing python/object/apply from the default
FullLoader
Move constructor for object/apply to UnsafeConstructor
Fix bug introduced in 5.1 where quoting went wrong on systems with
sys.maxunicode <= 0xffff
Fix logic for quoting special characters |
5.1 24 Apr 2019 15:33:50 |
jpaetzel |
Update to 5.1
https://github.com/yaml/pyyaml/blob/5.1/announcement.msg
=======================
Announcing PyYAML-5.1
=======================
A new MAJOR RELEASE of PyYAML is now available:
https://pypi.org/project/PyYAML/
This is the first major release of PyYAML under the new maintenance team.
Among the many changes listed below, this release specifically addresses the
arbitrary code execution issue raised by:
https://nvd.nist.gov/vuln/detail/CVE-2017-18342
(See https://github.com/yaml/pyyaml/wiki/PyYAML-yaml.load(input)-Deprecation
for complete details).
...
PR: 237501
Reported by: sergey@akhmatov.ru |
3.13 09 Jul 2018 15:21:31 |
jpaetzel |
Update to 3.13 |
3.12 19 Feb 2018 23:43:34 |
jpaetzel |
Update to 3.12
PR: 226034
Submitted by: loic.blot@unix-experience.fr |
3.11_2 30 Nov 2017 15:50:34 |
mat |
Convert Python ports to FLAVORS.
Ports using USE_PYTHON=distutils are now flavored. They will
automatically get flavors (py27, py34, py35, py36) depending on what
versions they support.
There is also a USE_PYTHON=flavors for ports that do not use distutils
but need FLAVORS to be set. A USE_PYTHON=noflavors can be set if
using distutils but flavors are not wanted.
A new USE_PYTHON=optsuffix that will add PYTHON_PKGNAMESUFFIX has been
added to cope with Python ports that did not have the Python
PKGNAMEPREFIX but are flavored.
USES=python now also exports a PY_FLAVOR variable that contains the (Only the first 15 lines of the commit message are shown above ) |
3.11_2 22 Oct 2016 02:28:25 |
jpaetzel |
Update to allow installation with multiple versions of python
PR: 213644
Submitted by: Michael Zhilin |
3.11_1 27 Sep 2016 17:49:37 |
amdmi3 |
devel/py-yaml:
- Add LICENSE_FILE
- Switch to options helpers
- Strip library
- Add support for tests
Add devel/py3-yaml python3 counterpart of this port
PR: 212692
Submitted by: amdmi3
Approved by: maintainer timeout (jpaetzel, 2 weeks) |
3.11 01 Apr 2016 14:00:57 |
mat |
Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.
With hat: portmgr
Sponsored by: Absolight |
3.11 27 Oct 2014 10:58:26 |
bapt |
Cleanup plist |
3.11 20 Oct 2014 16:04:14 |
mva |
- Convert ports of devel/ to USES=python
Approved by: portmgr (implicit) |
3.11 15 Jul 2014 17:52:18 |
adamw |
Add EXAMPLES to OPTIONS_DEFINE to ports that check for PORT_OPTIONS:MEXAMPLES. |
3.11 23 May 2014 00:25:49 |
jpaetzel |
Update to 3.11
PR: ports/189992
Submitted by: Bartek Rutkowski |
3.10_1 09 Feb 2014 13:07:02 |
koobs |
devel/py-yaml: Remove redundant bsd.port.options.mk include
Save one extra parse of bsd.port.mk by moving PORT_OPTIONS:MEXAMPLES under
the bsd.port.pre.mk include and removing bsd.port.options.mk.
Reported by: mat |
3.10_1 09 Feb 2014 11:57:31 |
koobs |
devel/py-yaml: Modernise: STAGE, AUTOPLIST & more
- Enable STAGE support
- Enable AUTOPLIST support, update pkg-plist
- Use PyPi (CHEESESHOP) master site, Geo-CDN backed
- Add LICENSE (MIT)
- Deprecate PYDISTUTILS_PKGNAME, not needed with AUTOPLIST
- Remove PLIST_SUB, not necessary with AUTOPLIST
- Deprecate OPTIONSFILE override
- Deprecate py3k-fix-pkg-plist.inc hack
- Use new LIB_DEPENDS convention
- Makefile: Whitespace alignment
- Bump PORTREVISION
Approved by: portmgr (blanket) |
3.10 15 Dec 2013 16:22:17 |
wg |
Use setuptools for all Python ports.
Setuptools is the preferred method to manage Python distributions after
many changes to the packaging ecosystem over the past couple of years.
Only ports using USE_PYDISTUTILS= yes are affected by this commit, ports using
USE_PYDISTUTILS= easy_install remains the same however this usage is now
deprecated and should be converted to USE_PYDISTUTILS= yes.
Some Python distributions do not work with setuptools out of the box because
they extend the install command from distutils and not setuptools, and
so they need to be patched accordingly.
pip (which leverages setuptools) works around the issue by using eggs, however
we want to get rid of those as well, as support for "flat" installation is (Only the first 15 lines of the commit message are shown above ) |
3.10 09 Nov 2013 21:13:57 |
jpaetzel |
Make port option less confusing.
In the context of this port, turning on yaml support
doesn't enable the optional yaml support like it does
for other ports. It compiles the yaml support against
textproc/libyaml, which provides for yaml parsing with
the speed of C in the ease of use of a scripting language.
PR: ports/183763
Submitted by: Michael Gmelin <freebsd@grem.de> |
3.10 23 Sep 2013 19:56:48 |
demon |
Fix plist for python version 3.2+
Maintainer timeout. |
3.10 20 Sep 2013 17:13:47 |
bapt |
Add NO_STAGE all over the place in preparation for the staging support (cat:
devel part 3) |
3.10 23 May 2013 02:23:34 |
jgh |
- adoption of optionsNG
- trim historical headers
Approved by: portmgr (miwi) |
3.10 30 May 2011 15:13:38 |
jpaetzel |
Update to 3.10 |
3.09 12 Sep 2009 01:14:55 |
jpaetzel |
Update devel/py-yaml and textproc/libyaml to latest versions
PR: ports/138401
Submitted by: Wen Heping <wenheping@gmail.com>
Approved by: itetcu@ (mentor) |
3.07_2 03 Mar 2009 21:26:16 |
jpaetzel |
Fix plist error in textproc/libyaml
Approved by: linimon (mentor) |
3.07_1 01 Mar 2009 01:47:51 |
jpaetzel |
Update libyaml to 0.1.2
Approved by: linimon (mentor) |
3.07 14 Jan 2009 16:21:32 |
jpaetzel |
Bump to latest production ready version
Approved by: linimon (mentor) |
3.06 12 Jan 2009 05:57:43 |
jpaetzel |
Grab MAINTAINER
Approved by: linimon (mentor) |
3.06 17 Dec 2008 16:43:36 |
pav |
- Update to 3.06
- Add a knob to build libYAML bindings (defaults to off)
PR: ports/128992
Submitted by: Yi-Jheng Lin <yzlin@cs.nctu.edu.tw>
Approved by: maintainer timeout (28 days) |
3.05 30 Jul 2007 09:42:28 |
alexbl |
- Make Python 2.5.1 the default Python version
- Add significantly better support in bsd.python.mk for working with
Python Eggs and the easy_install system
Tested by: pointyhat runs
Approved by: pav (portmgr)
Most work by: perky
Thanks to: pav |
3.05 27 May 2007 10:40:25 |
miwi |
- Update to 3.05
PR: 112933
Submitted by: Neal Nelson <neal@nelson.name> (maintainer) |
3.04 04 Sep 2006 15:59:45 |
itetcu |
Update to version 3.04
PR: 102850
Submitted by: Neal Nelson (maintainer) |
3.03 23 Jun 2006 08:56:29 |
pav |
- Update to 3.03
PR: ports/99254
Submitted by: Neal Nelson <neal@nelson.name> (maintainer) |
3.02_1 16 Jun 2006 13:50:45 |
jkoshy |
Fix a ZeroDivisionError on FreeBSD 4, by bringing in a vendor
patch [SVN#168 at pyyaml.org].
Bump PORTREVISION.
PR: ports/99009
Submitted by: jkoshy
Approved by: Neal Nelson (neal at nelson dot name) [MAINTAINER] |
3.02 26 May 2006 15:14:43 |
pav |
- Update to 3.02
- Take maintainership
PR: ports/97891
Submitted by: Neal Nelson <neal@nelson.name> |
3.01 09 May 2006 15:00:24 |
ijliao |
upgrade to 3.01 |
0.32 31 Mar 2006 02:50:51 |
ijliao |
fix master site and WWW
PR: 95134
Submitted by: Jean-Francois BOEUF <jfb@minet.net> |
0.32 08 Nov 2005 21:03:35 |
mnag |
Update WWW
Add SHA256
PR: 88689
Submitted by: jmelo@freebsdbrasil.com.br |
0.32 10 Jul 2005 19:26:18 |
kris |
Chase master site |
0.32 16 May 2004 16:16:42 |
krion |
- Fix MASTER_SITES
PR: ports/66686
Submitted by: Roman Neuhauser <neuhauser@chello.cz> |
0.32 29 Jan 2004 07:24:56 |
trevor |
SIZEify. |
0.32 01 Jul 2003 07:58:44 |
daichi |
update devel/py-yaml:
o Fix unfetchable distfile, but in the same time
o Update to 0.32
o Change the distinfo
PR: 53036
Submitted by: Serge Gagnon <gagnon__s@videotron.ca> |
20021223 10 May 2003 14:41:45 |
petef |
py-yaml development has been taken over by someone else; update WWW:
appropriately.
Noticed by: fenner's portsurvey |
20021223 20 Feb 2003 17:07:10 |
knu |
De-pkg-comment. |
20021223 03 Jan 2003 11:28:49 |
ijliao |
add py-yaml 20021223
Python YAML parser |