<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ports/benchmarks/postal, branch main</title>
<subtitle>FreeBSD ports tree</subtitle>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/ports/'/>
<entry>
<title>benchmarks/postal: Moved man to share/man</title>
<updated>2024-02-22T13:23:41+00:00</updated>
<author>
<name>Muhammad Moinur Rahman</name>
<email>bofh@FreeBSD.org</email>
</author>
<published>2024-02-22T12:40:57+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/ports/commit/?id=a26e32b4fd59727cec4813781c1c4a5ff878de41'/>
<id>a26e32b4fd59727cec4813781c1c4a5ff878de41</id>
<content type='text'>
Approved by:    portmgr (blanket)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Approved by:    portmgr (blanket)
</pre>
</div>
</content>
</entry>
<entry>
<title>benchmarks/postal: update to 0.76</title>
<updated>2023-09-15T08:57:44+00:00</updated>
<author>
<name>Rodrigo Osorio</name>
<email>rodrigo@FreeBSD.org</email>
</author>
<published>2023-09-14T14:04:11+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/ports/commit/?id=2cf1aff496796ba20029b9952cc82d01b166a402'/>
<id>2cf1aff496796ba20029b9952cc82d01b166a402</id>
<content type='text'>
Major changes:
    * Fix buffer underrun
    * Add -b option to bind to an address to bhm
    * Improve build

Port changes:
    * Update MASTER_SITE and WWW
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Major changes:
    * Fix buffer underrun
    * Add -b option to bind to an address to bhm
    * Improve build

Port changes:
    * Update MASTER_SITE and WWW
</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>benchmarks: remove 'Created by' lines</title>
<updated>2022-07-20T14:20:56+00:00</updated>
<author>
<name>Tobias C. Berner</name>
<email>tcberner@FreeBSD.org</email>
</author>
<published>2022-07-20T14:20:56+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/ports/commit/?id=86b2c5122a18d1f73e6e4e4626889fab8fb0803a'/>
<id>86b2c5122a18d1f73e6e4e4626889fab8fb0803a</id>
<content type='text'>
A big Thank You to the original contributors of these ports:

  *  Alexander Logvinov &lt;ports@logvinov.com&gt;
  *  Alexey Dokuchaev &lt;danfe@FreeBSD.org&gt;
  *  Alexey V. Degtyarev
  *  Andreas Kohn &lt;andreas@syndrom23.de&gt;
  *  Andrew Shevtsov &lt;nyxo@dnuc.polyn.kiae.su&gt;
  *  Andrey Zakhvatov &lt;andy@FreeBSD.org&gt;
  *  Andy Clark &lt;andrewclarkii@gmail.com&gt;
  *  Antonio Carlos Venancio Junior (&lt;antonio@inf.ufsc.br&gt;)
  *  Bill Fumerola &lt;billf@chc-chimes.com&gt;
  *  Brad Davis &lt;brd@FreeBSD.org&gt;
  *  Bruce A. Mah &lt;bmah@FreeBSD.org&gt;
  *  Chao Shin &lt;quakelee@cn.freebsd.org&gt;
  *  Danilo Egea Gondolfo &lt;danilo@FreeBSD.org&gt;
  *  David O'Brien (obrien@FreeBSD.org)
  *  David O'Brien (obrien@NUXI.com)
  *  Dima Sivachenko &lt;dima@chg.ru&gt;
  *  Gabriel M. Dutra &lt;0xdutra@gmail.com&gt;
  *  Gea-Suan Lin &lt;gslin@ccca.nctu.edu.tw&gt;
  *  Gea-Suan Lin &lt;gslin@gslin.org&gt;
  *  Hannes Hauswedell &lt;h2+fbsdports@fsfe.org&gt;
  *  Johannes Dieterich &lt;dieterich@ogolem.org&gt;
  *  Johannes Dieterich &lt;jmd@FreeBSD.org&gt;
  *  Joseph Koshy &lt;jkoshy@FreeBSD.org&gt;
  *  Kris Moore &lt;kmoore@FreeBSD.org&gt;
  *  Lars Eggert &lt;lars@eggert.org&gt;
  *  Mark Pulford &lt;mark@kyne.com.au&gt;
  *  Matthias Fechner &lt;mfechner@FreeBSD.org&gt;
  *  NAKAJI Hiroyuki &lt;nakaji@jp.freebsd.org&gt;
  *  NAKATA Maho &lt;maho@FreeBSD.org&gt;
  *  Oliver Lehmann &lt;oliver@FreeBSD.org&gt;
  *  Pete Fritchman &lt;petef@databits.net&gt;
  *  Po-Chuan Hsieh &lt;sunpoet@FreeBSD.org&gt;
  *  Radim Kolar
  *  Radim Kolar &lt;hsn@sendmail.cz&gt;
  *  Roman Bogorodskiy &lt;bogorodskiy@inbox.ru&gt;
  *  Scott Flatman &lt;sf@dsinw.com&gt;
  *  Sergey A. Osokin &lt;osa@FreeBSD.org&gt;
  *  Sergey Kandaurov &lt;pluknet@gmail.com&gt;
  *  Sergey Skvortsov &lt;skv@protey.ru&gt;
  *  Slava Shwartsman &lt;slavash@FreeBSD.org&gt;
  *  Stephen Montgomery-Smith &lt;stephen@math.missouri.edu&gt;
  *  Sunpoet Po-Chuan Hsieh &lt;sunpoet@FreeBSD.org&gt;
  *  Thomas Dreibholz &lt;dreibh@iem.uni-due.de&gt;
  *  Tom Judge &lt;tom@tomjudge.com&gt;
  *  Veniamin Gvozdikov &lt;vg@FreeBSD.org&gt;
  *  Vsevolod Stakhov &lt;vsevolod@FreeBSD.org&gt;
  *  Will Andrews &lt;andrews@technologist.com&gt;
  *  Yen-Ming Lee &lt;leeym@FreeBSD.org&gt;
  *  Ying-Chieh Liao &lt;ijliao@FreeBSD.org&gt;
  *  arved
  *  asami
  *  dikshie &lt;dikshie@lapi.itb.ac.id&gt;
  *  gnn
  *  ijliao
  *  janos.mohacsi@bsd.hu
  *  jesper@jdn.dk
  *  jmz
  *  koshy
  *  luigi@FreeBSD.org
  *  mharo@FreeBSD.org
  *  mich@freebsdcluster.org
  *  mr
  *  se
  *  shalunov
  *  thierry@pompo.net
  *  trasz &lt;trasz@pin.if.uz.zgora.pl&gt;
  *  uminac

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:

  *  Alexander Logvinov &lt;ports@logvinov.com&gt;
  *  Alexey Dokuchaev &lt;danfe@FreeBSD.org&gt;
  *  Alexey V. Degtyarev
  *  Andreas Kohn &lt;andreas@syndrom23.de&gt;
  *  Andrew Shevtsov &lt;nyxo@dnuc.polyn.kiae.su&gt;
  *  Andrey Zakhvatov &lt;andy@FreeBSD.org&gt;
  *  Andy Clark &lt;andrewclarkii@gmail.com&gt;
  *  Antonio Carlos Venancio Junior (&lt;antonio@inf.ufsc.br&gt;)
  *  Bill Fumerola &lt;billf@chc-chimes.com&gt;
  *  Brad Davis &lt;brd@FreeBSD.org&gt;
  *  Bruce A. Mah &lt;bmah@FreeBSD.org&gt;
  *  Chao Shin &lt;quakelee@cn.freebsd.org&gt;
  *  Danilo Egea Gondolfo &lt;danilo@FreeBSD.org&gt;
  *  David O'Brien (obrien@FreeBSD.org)
  *  David O'Brien (obrien@NUXI.com)
  *  Dima Sivachenko &lt;dima@chg.ru&gt;
  *  Gabriel M. Dutra &lt;0xdutra@gmail.com&gt;
  *  Gea-Suan Lin &lt;gslin@ccca.nctu.edu.tw&gt;
  *  Gea-Suan Lin &lt;gslin@gslin.org&gt;
  *  Hannes Hauswedell &lt;h2+fbsdports@fsfe.org&gt;
  *  Johannes Dieterich &lt;dieterich@ogolem.org&gt;
  *  Johannes Dieterich &lt;jmd@FreeBSD.org&gt;
  *  Joseph Koshy &lt;jkoshy@FreeBSD.org&gt;
  *  Kris Moore &lt;kmoore@FreeBSD.org&gt;
  *  Lars Eggert &lt;lars@eggert.org&gt;
  *  Mark Pulford &lt;mark@kyne.com.au&gt;
  *  Matthias Fechner &lt;mfechner@FreeBSD.org&gt;
  *  NAKAJI Hiroyuki &lt;nakaji@jp.freebsd.org&gt;
  *  NAKATA Maho &lt;maho@FreeBSD.org&gt;
  *  Oliver Lehmann &lt;oliver@FreeBSD.org&gt;
  *  Pete Fritchman &lt;petef@databits.net&gt;
  *  Po-Chuan Hsieh &lt;sunpoet@FreeBSD.org&gt;
  *  Radim Kolar
  *  Radim Kolar &lt;hsn@sendmail.cz&gt;
  *  Roman Bogorodskiy &lt;bogorodskiy@inbox.ru&gt;
  *  Scott Flatman &lt;sf@dsinw.com&gt;
  *  Sergey A. Osokin &lt;osa@FreeBSD.org&gt;
  *  Sergey Kandaurov &lt;pluknet@gmail.com&gt;
  *  Sergey Skvortsov &lt;skv@protey.ru&gt;
  *  Slava Shwartsman &lt;slavash@FreeBSD.org&gt;
  *  Stephen Montgomery-Smith &lt;stephen@math.missouri.edu&gt;
  *  Sunpoet Po-Chuan Hsieh &lt;sunpoet@FreeBSD.org&gt;
  *  Thomas Dreibholz &lt;dreibh@iem.uni-due.de&gt;
  *  Tom Judge &lt;tom@tomjudge.com&gt;
  *  Veniamin Gvozdikov &lt;vg@FreeBSD.org&gt;
  *  Vsevolod Stakhov &lt;vsevolod@FreeBSD.org&gt;
  *  Will Andrews &lt;andrews@technologist.com&gt;
  *  Yen-Ming Lee &lt;leeym@FreeBSD.org&gt;
  *  Ying-Chieh Liao &lt;ijliao@FreeBSD.org&gt;
  *  arved
  *  asami
  *  dikshie &lt;dikshie@lapi.itb.ac.id&gt;
  *  gnn
  *  ijliao
  *  janos.mohacsi@bsd.hu
  *  jesper@jdn.dk
  *  jmz
  *  koshy
  *  luigi@FreeBSD.org
  *  mharo@FreeBSD.org
  *  mich@freebsdcluster.org
  *  mr
  *  se
  *  shalunov
  *  thierry@pompo.net
  *  trasz &lt;trasz@pin.if.uz.zgora.pl&gt;
  *  uminac

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>benchmarks/postal: Unbreak on CURRENT</title>
<updated>2019-05-06T20:57:58+00:00</updated>
<author>
<name>Tobias Kortkamp</name>
<email>tobik@FreeBSD.org</email>
</author>
<published>2019-05-06T20:57:58+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/ports/commit/?id=b527a33e86b0c234a60dddeb2c3f5831c7939fda'/>
<id>b527a33e86b0c234a60dddeb2c3f5831c7939fda</id>
<content type='text'>
tcp.cpp:135:10: error: assigning to 'int' from incompatible type '__bind&lt;int &amp;, sockaddr *&amp;, unsigned long&gt;'
    rc = bind(m_fd, source, sizeof(struct sockaddr_in));
         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

http://beefy12.nyi.freebsd.org/data/head-amd64-default/p500844_s347134/logs/errors/postal-0.73_3.log
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
tcp.cpp:135:10: error: assigning to 'int' from incompatible type '__bind&lt;int &amp;, sockaddr *&amp;, unsigned long&gt;'
    rc = bind(m_fd, source, sizeof(struct sockaddr_in));
         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

http://beefy12.nyi.freebsd.org/data/head-amd64-default/p500844_s347134/logs/errors/postal-0.73_3.log
</pre>
</div>
</content>
</entry>
<entry>
<title>benchmarks/postal: Fix build with Clang 6</title>
<updated>2018-08-25T03:06:45+00:00</updated>
<author>
<name>Tobias Kortkamp</name>
<email>tobik@FreeBSD.org</email>
</author>
<published>2018-08-25T03:06:45+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/ports/commit/?id=0560213a4491a5ca67d12123f7a959e98f3a73be'/>
<id>0560213a4491a5ca67d12123f7a959e98f3a73be</id>
<content type='text'>
bhm.cpp:420:25: error: value of type '__bind&lt;int &amp;, sockaddr *, unsigned long&gt;' is
      not contextually convertible to 'bool'
  if(listen_fd == -1 || bind(listen_fd, (sockaddr *)&amp;in, sizeof(in))
                        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
bhm.cpp:420:22: error: invalid operands to binary expression ('bool' and '__bind&lt;int
      &amp;, sockaddr *, unsigned long&gt;')
  if(listen_fd == -1 || bind(listen_fd, (sockaddr *)&amp;in, sizeof(in))

http://beefy11.nyi.freebsd.org/data/head-i386-default/p477696_s338122/logs/errors/postal-0.73_3.log
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
bhm.cpp:420:25: error: value of type '__bind&lt;int &amp;, sockaddr *, unsigned long&gt;' is
      not contextually convertible to 'bool'
  if(listen_fd == -1 || bind(listen_fd, (sockaddr *)&amp;in, sizeof(in))
                        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
bhm.cpp:420:22: error: invalid operands to binary expression ('bool' and '__bind&lt;int
      &amp;, sockaddr *, unsigned long&gt;')
  if(listen_fd == -1 || bind(listen_fd, (sockaddr *)&amp;in, sizeof(in))

http://beefy11.nyi.freebsd.org/data/head-i386-default/p477696_s338122/logs/errors/postal-0.73_3.log
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove all _USE=openssl occurrences.</title>
<updated>2017-03-15T14:45:54+00:00</updated>
<author>
<name>Mathieu Arnold</name>
<email>mat@FreeBSD.org</email>
</author>
<published>2017-03-15T14:45:54+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/ports/commit/?id=e51bbb58a4c6768d011c6b5ec5e74fd757f85e57'/>
<id>e51bbb58a4c6768d011c6b5ec5e74fd757f85e57</id>
<content type='text'>
Sponsored by:	Absolight
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Sponsored by:	Absolight
</pre>
</div>
</content>
</entry>
<entry>
<title>benchmarks/postal: Support DEFAULT_VERSIONS+=ssl</title>
<updated>2016-11-05T14:16:28+00:00</updated>
<author>
<name>John Marino</name>
<email>marino@FreeBSD.org</email>
</author>
<published>2016-11-05T14:16:28+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/ports/commit/?id=4875e3a46baf18c4dbc8d116e35077a6846459b5'/>
<id>4875e3a46baf18c4dbc8d116e35077a6846459b5</id>
<content type='text'>
The newest version of OpenSSL doesn't have SSLv3_method, similar to
LibreSSL, so update the patches to support both.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The newest version of OpenSSL doesn't have SSLv3_method, similar to
LibreSSL, so update the patches to support both.
</pre>
</div>
</content>
</entry>
</feed>
