non port: devel/py-yaml/Makefile |
SVNWeb
|
Number of commits found: 53 |
Tue, 27 Jun 2023
|
[ 19:34 Rene Ladan (rene) ] 3d9a815 (Only the first 10 of 4481 ports in this commit are shown above. )
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>
|
Mon, 30 Jan 2023
|
[ 23:51 Po-Chuan Hsieh (sunpoet) ] 43d1681
devel/py-yaml: Update to 6.0
- Add CONFLICTS_INSTALL
Changes: https://github.com/yaml/pyyaml/blob/master/CHANGES
|
Wed, 11 Jan 2023
|
[ 15:58 Dmitry Marakasov (amdmi3) ] 77d6847 (Only the first 10 of 3335 ports in this commit are shown above. )
*/*: rename CHEESESHOP to PYPI in MASTER_SITES
PR: 267994
Differential revision: D37518
Approved by: bapt
|
Wed, 7 Sep 2022
|
[ 21:10 Stefan Eßer (se) ] b7f0544 (Only the first 10 of 27931 ports in this commit are shown above. )
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 )
|
Wed, 20 Jul 2022
|
[ 14:21 Tobias C. Berner (tcberner) ] aa6eefd (Only the first 10 of 5087 ports in this commit are shown above. )
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 )
|
Thu, 23 Jun 2022
|
[ 02:12 Danilo G. Baio (dbaio) ] b6c6960
devel/py-yaml: Pass MAINTAINER'ship to Python@
|
Wed, 2 Jun 2021
|
[ 18:41 Dmitry Marakasov (amdmi3) ] 44ab294
devel/py-yaml: update to 5.4.1
PR: 256220
Approved by: dbaio (maintainer)
MFH: 2020Q2 (security release)
|
Tue, 6 Apr 2021
|
[ 14:31 Mathieu Arnold (mat) ] 305f148 (Only the first 10 of 29333 ports in this commit are shown above. )
Remove # $FreeBSD$ from Makefiles.
|
Tue, 2 Mar 2021
|
[ 11:28 dbaio ]
devel/py-yaml: Take MAINTAINER'ship
|
[ 00:51 jpaetzel ] (Only the first 10 of 19 ports in this commit are shown above. )
deorbit jpaetzel
|
Tue, 19 Jan 2021
|
[ 16:10 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
|
Mon, 28 Dec 2020
|
[ 23:02 antoine ] (Only the first 10 of 1942 ports in this commit are shown above. )
Drop python 2.7 support from a few ports
With hat: portmgr
|
Thu, 24 Dec 2020
|
[ 13:46 kai ] (Only the first 10 of 166 ports in this commit are shown above. )
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)
|
Sat, 16 May 2020
|
[ 11:04 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)
|
Mon, 27 Apr 2020
|
[ 20:22 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
|
Tue, 3 Dec 2019
|
[ 23:35 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
|
Wed, 24 Apr 2019
|
[ 15:33 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
|
Mon, 9 Jul 2018
|
[ 15:21 jpaetzel ]
Update to 3.13
|
Mon, 19 Feb 2018
|
[ 23:43 jpaetzel ]
Update to 3.12
PR: 226034
Submitted by: loic.blot@unix-experience.fr
|
Thu, 30 Nov 2017
|
[ 15:50 mat ] (Only the first 10 of 2423 ports in this commit are shown above. )
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 )
|
Sat, 22 Oct 2016
|
[ 02:28 jpaetzel ]
Update to allow installation with multiple versions of python
PR: 213644
Submitted by: Michael Zhilin
|
Tue, 27 Sep 2016
|
[ 17:49 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)
|
Fri, 1 Apr 2016
|
[ 14:00 mat ] (Only the first 10 of 5103 ports in this commit are shown above. )
Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.
With hat: portmgr
Sponsored by: Absolight
|
Mon, 20 Oct 2014
|
[ 16:04 mva ] (Only the first 10 of 564 ports in this commit are shown above. )
- Convert ports of devel/ to USES=python
Approved by: portmgr (implicit)
|
Tue, 15 Jul 2014
|
[ 17:52 adamw ] (Only the first 10 of 13 ports in this commit are shown above. )
Add EXAMPLES to OPTIONS_DEFINE to ports that check for PORT_OPTIONS:MEXAMPLES.
|
Fri, 23 May 2014
|
[ 00:25 jpaetzel ]
Update to 3.11
PR: ports/189992
Submitted by: Bartek Rutkowski
|
Sun, 9 Feb 2014
|
[ 13:07 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
|
[ 11:57 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)
|
Sun, 15 Dec 2013
|
[ 16:22 wg ] (Only the first 10 of 64 ports in this commit are shown above. )
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 )
|
Sat, 9 Nov 2013
|
[ 21:13 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>
|
Mon, 23 Sep 2013
|
[ 19:56 demon ]
Fix plist for python version 3.2+
Maintainer timeout.
|
Fri, 20 Sep 2013
|
[ 17:13 bapt ] (Only the first 10 of 2998 ports in this commit are shown above. )
Add NO_STAGE all over the place in preparation for the staging support (cat:
devel part 3)
|
Thu, 23 May 2013
|
[ 02:23 jgh ]
- adoption of optionsNG
- trim historical headers
Approved by: portmgr (miwi)
|
Mon, 30 May 2011
|
[ 15:13 jpaetzel ]
Update to 3.10
|
Sat, 12 Sep 2009
|
[ 01:14 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)
|
Tue, 3 Mar 2009
|
[ 21:26 jpaetzel ]
Fix plist error in textproc/libyaml
Approved by: linimon (mentor)
|
Sun, 1 Mar 2009
|
[ 01:47 jpaetzel ]
Update libyaml to 0.1.2
Approved by: linimon (mentor)
|
Wed, 14 Jan 2009
|
[ 16:21 jpaetzel ]
Bump to latest production ready version
Approved by: linimon (mentor)
|
Mon, 12 Jan 2009
|
[ 05:57 jpaetzel ]
Grab MAINTAINER
Approved by: linimon (mentor)
|
Wed, 17 Dec 2008
|
[ 16:43 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)
|
Mon, 30 Jul 2007
|
[ 09:42 alexbl ] (Only the first 10 of 445 ports in this commit are shown above. )
- 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
|
Sun, 27 May 2007
|
[ 10:40 miwi ]
- Update to 3.05
PR: 112933
Submitted by: Neal Nelson <neal@nelson.name> (maintainer)
|
Mon, 4 Sep 2006
|
[ 15:59 itetcu ]
Update to version 3.04
PR: 102850
Submitted by: Neal Nelson (maintainer)
|
Fri, 23 Jun 2006
|
[ 08:56 pav ]
- Update to 3.03
PR: ports/99254
Submitted by: Neal Nelson <neal@nelson.name> (maintainer)
|
Fri, 16 Jun 2006
|
[ 13:50 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]
|
Fri, 26 May 2006
|
[ 15:14 pav ]
- Update to 3.02
- Take maintainership
PR: ports/97891
Submitted by: Neal Nelson <neal@nelson.name>
|
Tue, 9 May 2006
|
[ 15:00 ijliao ]
upgrade to 3.01
|
Fri, 31 Mar 2006
|
[ 02:50 ijliao ]
fix master site and WWW
PR: 95134
Submitted by: Jean-Francois BOEUF <jfb@minet.net>
|
Sun, 10 Jul 2005
|
[ 19:26 kris ]
Chase master site
|
Sun, 16 May 2004
|
[ 16:16 krion ]
- Fix MASTER_SITES
PR: ports/66686
Submitted by: Roman Neuhauser <neuhauser@chello.cz>
|
Tue, 1 Jul 2003
|
[ 07:58 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>
|
Thu, 20 Feb 2003
|
[ 17:07 knu ] (Only the first 10 of 432 ports in this commit are shown above. )
De-pkg-comment.
|
Fri, 3 Jan 2003
|
[ 11:28 ijliao ]
add py-yaml 20021223
Python YAML parser
|
Number of commits found: 53 |