<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ports/converters/py-bsdconv, branch main</title>
<subtitle>FreeBSD ports tree</subtitle>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/ports/'/>
<entry>
<title>python.mk: rename PYTHON_EXT_SUFFIX to PYTHON_TAG, document, etc</title>
<updated>2025-06-19T20:28:47+00:00</updated>
<author>
<name>Charlie Li</name>
<email>vishwin@FreeBSD.org</email>
</author>
<published>2025-06-19T20:09:42+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/ports/commit/?id=4f0eba1efd73e85ccb544708c967bca70ad3e7a6'/>
<id>4f0eba1efd73e85ccb544708c967bca70ad3e7a6</id>
<content type='text'>
EXT_SUFFIX, according to PEP 3149, refers to the full tag and
extension for compiled extension module objects, eg .cpython-311.so,
.cpython-313t.so, etc. We do not use the correct semantic meaning,
and this usage becomes ambiguous and confusing when tags do not
match between bytecode and compiled extension module objects.

Rename our PYTHON_EXT_SUFFIX to PYTHON_TAG to align with PEP 3147's
specification of a magic tag, which consists of implementation name
and shorthand version only. This is meant for bytecode and other
files containing this tag in their filename that do not depend on
a specific Python ABI for the same version. Chase all existing
consumers.

Introduce PYTHON_SOABI to align with PEP 3149's specification of a
tag, which consists of implementation name, shorthand version and
any ABI flags present (this and PYTHON_TAG are identical without
ABI flags). This is meant for compiled extension module objects and
other files that depend on a specific Python ABI for the same
version.

Add documentation for these variables that our PYTHON_EXT_SUFFIX
never had.

PR: 274671
Event: Kitchener-Waterloo Hackathon 202506
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
EXT_SUFFIX, according to PEP 3149, refers to the full tag and
extension for compiled extension module objects, eg .cpython-311.so,
.cpython-313t.so, etc. We do not use the correct semantic meaning,
and this usage becomes ambiguous and confusing when tags do not
match between bytecode and compiled extension module objects.

Rename our PYTHON_EXT_SUFFIX to PYTHON_TAG to align with PEP 3147's
specification of a magic tag, which consists of implementation name
and shorthand version only. This is meant for bytecode and other
files containing this tag in their filename that do not depend on
a specific Python ABI for the same version. Chase all existing
consumers.

Introduce PYTHON_SOABI to align with PEP 3149's specification of a
tag, which consists of implementation name, shorthand version and
any ABI flags present (this and PYTHON_TAG are identical without
ABI flags). This is meant for compiled extension module objects and
other files that depend on a specific Python ABI for the same
version.

Add documentation for these variables that our PYTHON_EXT_SUFFIX
never had.

PR: 274671
Event: Kitchener-Waterloo Hackathon 202506
</pre>
</div>
</content>
</entry>
<entry>
<title>python: bump all USE_PYTHON=distutils consumers after RUN_DEPENDS removal</title>
<updated>2025-03-08T04:05:21+00:00</updated>
<author>
<name>Charlie Li</name>
<email>vishwin@FreeBSD.org</email>
</author>
<published>2025-03-08T02:33:49+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/ports/commit/?id=06a08e69f3acb846ad8252945f53c3a2d211e303'/>
<id>06a08e69f3acb846ad8252945f53c3a2d211e303</id>
<content type='text'>
Any missed ports, feel free to bump.

Any ports that need setuptools at runtime can have the devel/py-setuptools
manually added back to RUN_DEPENDS, but understand that this practice
is deprecated; see CHANGES for details.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Any missed ports, feel free to bump.

Any ports that need setuptools at runtime can have the devel/py-setuptools
manually added back to RUN_DEPENDS, but understand that this practice
is deprecated; see CHANGES for details.
</pre>
</div>
</content>
</entry>
<entry>
<title>all: remove explicit versions in USES=python for "3.x+"</title>
<updated>2023-06-27T19:34:34+00:00</updated>
<author>
<name>Rene Ladan</name>
<email>rene@FreeBSD.org</email>
</author>
<published>2023-06-14T22:00:28+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/ports/commit/?id=3d9a815d9c5acbb71f4bb07738bdeab4879feacb'/>
<id>3d9a815d9c5acbb71f4bb07738bdeab4879feacb</id>
<content type='text'>
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:	&lt;https://reviews.freebsd.org/D40568&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
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:	&lt;https://reviews.freebsd.org/D40568&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove WWW entries moved into port Makefiles</title>
<updated>2022-09-07T21:58:51+00:00</updated>
<author>
<name>Stefan Eßer</name>
<email>se@FreeBSD.org</email>
</author>
<published>2022-09-07T21:30:14+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/ports/commit/?id=fb16dfecae4a6efac9f3a78e0b759fb7a3c53de4'/>
<id>fb16dfecae4a6efac9f3a78e0b759fb7a3c53de4</id>
<content type='text'>
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)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
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)
</pre>
</div>
</content>
</entry>
<entry>
<title>Add WWW entries to port Makefiles</title>
<updated>2022-09-07T21:10:59+00:00</updated>
<author>
<name>Stefan Eßer</name>
<email>se@FreeBSD.org</email>
</author>
<published>2022-09-07T21:06:12+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/ports/commit/?id=b7f05445c00f2625aa19b4154ebcbce5ed2daa52'/>
<id>b7f05445c00f2625aa19b4154ebcbce5ed2daa52</id>
<content type='text'>
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)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
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)
</pre>
</div>
</content>
</entry>
<entry>
<title>converters: remove 'Created by' lines</title>
<updated>2022-07-20T14:21:03+00:00</updated>
<author>
<name>Tobias C. Berner</name>
<email>tcberner@FreeBSD.org</email>
</author>
<published>2022-07-20T14:21:03+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/ports/commit/?id=9ee281eef7279ea8489901eddf3d6bbcfc4dd176'/>
<id>9ee281eef7279ea8489901eddf3d6bbcfc4dd176</id>
<content type='text'>
A big Thank You to the original contributors of these ports:

  *  Aaron Dalton &lt;aaron@FreeBSD.org&gt;
  *  Akinori MUSHA aka knu &lt;knu@idaemons.org&gt;
  *  Alex Keda &lt;admin@lissyara.su&gt;
  *  Alex Semenyaka &lt;alex@rinet.ru&gt;
  *  Alexandr Kovalenko &lt;never@nevermind.kiev.ua&gt;
  *  Andreas Klemm &lt;andreas@klemm.gtn.com&gt;
  *  Andrey A. Chernov &lt;ache@FreeBSD.org&gt;
  *  Anton Berezin &lt;tobez@FreeBSD.org&gt;
  *  Blaz Zupan &lt;blaz@amis.net&gt;
  *  Brent J. Nordquist &lt;bjn@visi.com&gt;
  *  Carlos J. Puga Medina &lt;cpm@fbsd.es&gt;
  *  Cezary Morga &lt;cm@therek.net&gt;
  *  Cheng-Lung Sung &lt;clsung@FreeBSD.org&gt;
  *  Chris Costello &lt;chris@FreeBSD.org&gt;
  *  Cyrus Rahman &lt;cr@jcmax.com&gt;
  *  Dan Rench &lt;citric@cubicone.tmetic.com&gt;
  *  Denis Pokataev &lt;catone@cpan.org&gt;
  *  Dmitry Sivachenko &lt;dima@Chg.RU&gt;
  *  Douglas Thrift &lt;douglas@douglasthrift.net&gt;
  *  Emanuel Haupt &lt;ehaupt@FreeBSD.org&gt;
  *  Erwin Lansing &lt;erwin@lansing.dk&gt;
  *  G. Adam Stanislav
  *  G. Adam Stanislav &lt;adam@whizkidtech.net&gt;
  *  Gea-Suan Lin &lt;gslin@gslin.org&gt;
  *  Gvozdikov Veniamin &lt;g.veniamin@googlemail.com&gt;
  *  Ilia Chipitsine &lt;ilia@jane.cgu.chel.su&gt;
  *  Ismail Yenigul &lt;ismail.yenigul@surgate.com&gt;
  *  James FitzGibbon &lt;jfitz@FreeBSD.org&gt;
  *  Jan-Peter Koopmann &lt;j.koopmann@seceidos.de&gt;
  *  Jason Burgess &lt;dev@fenux.net&gt;
  *  Kevin Lo &lt;kevlo@FreeBSD.org&gt;
  *  Konstantin Chuguev &lt;Konstantin.Chuguev@dante.org.uk&gt;
  *  Kuang-che Wu &lt;kcwu@csie.org&gt;
  *  Lung Sung &lt;clsung@FreeBSD.org&gt;
  *  M.Indlekofer@gmx.de
  *  Marc Fournier &lt;scrappy@FreeBSD.org&gt;
  *  Mario Sergio Fujikawa Ferreira &lt;lioux@FreeBSD.org&gt;
  *  Mark Felder &lt;feld@FreeBSD.org&gt;
  *  Martin Matuska &lt;mm@FreeBSD.org&gt;
  *  Masanori Kiriake &lt;seiken@nbs.co.jp&gt;
  *  Maxim Sobolev &lt;sobomax@FreeBSD.org&gt;
  *  Michael Haro &lt;mharo@FreeBSD.org&gt;
  *  Michael Johnson &lt;ahze@FreeBSD.org&gt;
  *  Nosov Artem &lt;chip-set@mail.ru&gt;
  *  Oleg R. Muhutdinov &lt;mor@WhiteLuna.com&gt;
  *  Oscar Bonilla &lt;obonilla@fisicc-ufm.edu&gt;
  *  Patrick Li &lt;pat@databits.net&gt;
  *  Pav Lucistnik &lt;pav@oook.cz&gt;
  *  Po-Chuan Hsieh &lt;sunpoet@FreeBSD.org&gt;
  *  Rodrigo Graeff &lt;delphus@gmail.com&gt;
  *  Rong-En Fan &lt;rafan@infor.org&gt;
  *  Ryan T. Dean &lt;rtdean@cytherianage.net&gt;
  *  Seamus Venasse &lt;svenasse@polaris.ca&gt;
  *  Sergey Skvortsov &lt;skv@protey.ru&gt;
  *  Sunpoet Po-Chuan Hsieh &lt;sunpoet@FreeBSD.org&gt;
  *  TAKATSU Tomonari &lt;tota@FreeBSD.org&gt;
  *  Thomas Dreibholz &lt;dreibh@iem.uni-due.de&gt;
  *  Tim Vanderhoek &lt;ac199@freenet.hamilton.on.ca&gt;
  *  Timur Bakeyev &lt;bat@cpan.org&gt;
  *  Timur Bakeyev &lt;timur@FreeBSD.org&gt;
  *  Timur I. Bakeyev &lt;bat@cpan.org&gt;
  *  Torsten Zuehlsdorff &lt;ports@toco-domains.de&gt;
  *  Veniamin Gvozdikov &lt;vg@FreeBSD.org&gt;
  *  Vladimir Timofeev &lt;vovkasm@gmail.com&gt;
  *  Wen Heping &lt;wen@FreeBSD.org&gt;
  *  Wen Heping &lt;wenheping@gmail.com&gt;
  *  ache
  *  ache@FreeBSD.org
  *  buganini@gmail.com
  *  chinsan
  *  hosokawa
  *  ijliao
  *  kbyanc
  *  keiichi@iijlab.net
  *  never@nevermind.kiev.ua
  *  nork@FreeBSD.org
  *  nork@cityfujisawa.ne.jp
  *  roman@xpert.com
  *  samm
  *  thierry@pompo.net
  *  torstenb@FreeBSD.org
  *  trevor
  *  vanilla@
  *  will

With hat:	portmgr
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
A big Thank You to the original contributors of these ports:

  *  Aaron Dalton &lt;aaron@FreeBSD.org&gt;
  *  Akinori MUSHA aka knu &lt;knu@idaemons.org&gt;
  *  Alex Keda &lt;admin@lissyara.su&gt;
  *  Alex Semenyaka &lt;alex@rinet.ru&gt;
  *  Alexandr Kovalenko &lt;never@nevermind.kiev.ua&gt;
  *  Andreas Klemm &lt;andreas@klemm.gtn.com&gt;
  *  Andrey A. Chernov &lt;ache@FreeBSD.org&gt;
  *  Anton Berezin &lt;tobez@FreeBSD.org&gt;
  *  Blaz Zupan &lt;blaz@amis.net&gt;
  *  Brent J. Nordquist &lt;bjn@visi.com&gt;
  *  Carlos J. Puga Medina &lt;cpm@fbsd.es&gt;
  *  Cezary Morga &lt;cm@therek.net&gt;
  *  Cheng-Lung Sung &lt;clsung@FreeBSD.org&gt;
  *  Chris Costello &lt;chris@FreeBSD.org&gt;
  *  Cyrus Rahman &lt;cr@jcmax.com&gt;
  *  Dan Rench &lt;citric@cubicone.tmetic.com&gt;
  *  Denis Pokataev &lt;catone@cpan.org&gt;
  *  Dmitry Sivachenko &lt;dima@Chg.RU&gt;
  *  Douglas Thrift &lt;douglas@douglasthrift.net&gt;
  *  Emanuel Haupt &lt;ehaupt@FreeBSD.org&gt;
  *  Erwin Lansing &lt;erwin@lansing.dk&gt;
  *  G. Adam Stanislav
  *  G. Adam Stanislav &lt;adam@whizkidtech.net&gt;
  *  Gea-Suan Lin &lt;gslin@gslin.org&gt;
  *  Gvozdikov Veniamin &lt;g.veniamin@googlemail.com&gt;
  *  Ilia Chipitsine &lt;ilia@jane.cgu.chel.su&gt;
  *  Ismail Yenigul &lt;ismail.yenigul@surgate.com&gt;
  *  James FitzGibbon &lt;jfitz@FreeBSD.org&gt;
  *  Jan-Peter Koopmann &lt;j.koopmann@seceidos.de&gt;
  *  Jason Burgess &lt;dev@fenux.net&gt;
  *  Kevin Lo &lt;kevlo@FreeBSD.org&gt;
  *  Konstantin Chuguev &lt;Konstantin.Chuguev@dante.org.uk&gt;
  *  Kuang-che Wu &lt;kcwu@csie.org&gt;
  *  Lung Sung &lt;clsung@FreeBSD.org&gt;
  *  M.Indlekofer@gmx.de
  *  Marc Fournier &lt;scrappy@FreeBSD.org&gt;
  *  Mario Sergio Fujikawa Ferreira &lt;lioux@FreeBSD.org&gt;
  *  Mark Felder &lt;feld@FreeBSD.org&gt;
  *  Martin Matuska &lt;mm@FreeBSD.org&gt;
  *  Masanori Kiriake &lt;seiken@nbs.co.jp&gt;
  *  Maxim Sobolev &lt;sobomax@FreeBSD.org&gt;
  *  Michael Haro &lt;mharo@FreeBSD.org&gt;
  *  Michael Johnson &lt;ahze@FreeBSD.org&gt;
  *  Nosov Artem &lt;chip-set@mail.ru&gt;
  *  Oleg R. Muhutdinov &lt;mor@WhiteLuna.com&gt;
  *  Oscar Bonilla &lt;obonilla@fisicc-ufm.edu&gt;
  *  Patrick Li &lt;pat@databits.net&gt;
  *  Pav Lucistnik &lt;pav@oook.cz&gt;
  *  Po-Chuan Hsieh &lt;sunpoet@FreeBSD.org&gt;
  *  Rodrigo Graeff &lt;delphus@gmail.com&gt;
  *  Rong-En Fan &lt;rafan@infor.org&gt;
  *  Ryan T. Dean &lt;rtdean@cytherianage.net&gt;
  *  Seamus Venasse &lt;svenasse@polaris.ca&gt;
  *  Sergey Skvortsov &lt;skv@protey.ru&gt;
  *  Sunpoet Po-Chuan Hsieh &lt;sunpoet@FreeBSD.org&gt;
  *  TAKATSU Tomonari &lt;tota@FreeBSD.org&gt;
  *  Thomas Dreibholz &lt;dreibh@iem.uni-due.de&gt;
  *  Tim Vanderhoek &lt;ac199@freenet.hamilton.on.ca&gt;
  *  Timur Bakeyev &lt;bat@cpan.org&gt;
  *  Timur Bakeyev &lt;timur@FreeBSD.org&gt;
  *  Timur I. Bakeyev &lt;bat@cpan.org&gt;
  *  Torsten Zuehlsdorff &lt;ports@toco-domains.de&gt;
  *  Veniamin Gvozdikov &lt;vg@FreeBSD.org&gt;
  *  Vladimir Timofeev &lt;vovkasm@gmail.com&gt;
  *  Wen Heping &lt;wen@FreeBSD.org&gt;
  *  Wen Heping &lt;wenheping@gmail.com&gt;
  *  ache
  *  ache@FreeBSD.org
  *  buganini@gmail.com
  *  chinsan
  *  hosokawa
  *  ijliao
  *  kbyanc
  *  keiichi@iijlab.net
  *  never@nevermind.kiev.ua
  *  nork@FreeBSD.org
  *  nork@cityfujisawa.ne.jp
  *  roman@xpert.com
  *  samm
  *  thierry@pompo.net
  *  torstenb@FreeBSD.org
  *  trevor
  *  vanilla@
  *  will

With hat:	portmgr
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove # $FreeBSD$ from Makefiles.</title>
<updated>2021-04-06T14:31:07+00:00</updated>
<author>
<name>Mathieu Arnold</name>
<email>mat@FreeBSD.org</email>
</author>
<published>2021-04-06T11:55:50+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/ports/commit/?id=305f148f482daf30dcf728039d03d019f88344eb'/>
<id>305f148f482daf30dcf728039d03d019f88344eb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Drop python 2.7 support from a few ports</title>
<updated>2020-12-28T23:02:12+00:00</updated>
<author>
<name>Antoine Brodin</name>
<email>antoine@FreeBSD.org</email>
</author>
<published>2020-12-28T23:02:12+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/ports/commit/?id=aa7a6c429ea62d972467d6755fa7a6f52256b452'/>
<id>aa7a6c429ea62d972467d6755fa7a6f52256b452</id>
<content type='text'>
With hat:	portmgr
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
With hat:	portmgr
</pre>
</div>
</content>
</entry>
<entry>
<title>converters/py-bsdconv: switch to PYTHON_EXT_SUFFIX</title>
<updated>2020-12-24T13:26:55+00:00</updated>
<author>
<name>Dima Panov</name>
<email>fluffy@FreeBSD.org</email>
</author>
<published>2020-12-24T13:26:55+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/ports/commit/?id=db4cf77a44fb22abd8c9d4ca31dd0296d4e2d1ed'/>
<id>db4cf77a44fb22abd8c9d4ca31dd0296d4e2d1ed</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove ${PORTSDIR}/ from dependencies, Mk and categories a, b, and c.</title>
<updated>2016-04-01T13:29:15+00:00</updated>
<author>
<name>Mathieu Arnold</name>
<email>mat@FreeBSD.org</email>
</author>
<published>2016-04-01T13:29:15+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/ports/commit/?id=7f4572eae4327c4403d9ef714cb6de917650662a'/>
<id>7f4572eae4327c4403d9ef714cb6de917650662a</id>
<content type='text'>
With hat:	portmgr
Sponsored by:	Absolight
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
With hat:	portmgr
Sponsored by:	Absolight
</pre>
</div>
</content>
</entry>
</feed>
