notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine
This referral link gives you 10% off a Fastmail.com account and gives me a discount on my Fastmail account.

Get notified when packages are built

A new feature has been added. FreshPorts already tracks package built by the FreeBSD project. This information is displayed on each port page. You can now get an email when FreshPorts notices a new package is available for something on one of your watch lists. However, you must opt into that. Click on Report Subscriptions on the right, and New Package Notification box, and click on Update.

Finally, under Watch Lists, click on ABI Package Subscriptions to select your ABI (e.g. FreeBSD:14:amd64) & package set (latest/quarterly) combination for a given watch list. This is what FreshPorts will look for.

non port: net/dpdk/Makefile

Number of commits found: 30

Sunday, 14 Jan 2024
20:28 Daniel Engberg (diizzy) search for other commits by this committer Author: Bruce Richardson
net/dpdk: Fix build warnings about symbols in version map file

The latest versions of ld are throwing warnings/errors about entries in
the linker script that don't exist in the actual build. For DPDK, there
are functions in the linker script (version.map) which only exist on Linux
(and sometimes only on Windows) but not on BSD. To avoid warnings/errors,
we can restore old behaviour by adding the "-Wl,--undefined-version"
flag to the build.

PR:		276277
commit hash: a11f3cf1acfa50cb00aae97b629e5163a7b6cb7b commit hash: a11f3cf1acfa50cb00aae97b629e5163a7b6cb7b commit hash: a11f3cf1acfa50cb00aae97b629e5163a7b6cb7b commit hash: a11f3cf1acfa50cb00aae97b629e5163a7b6cb7b a11f3cf
Saturday, 30 Dec 2023
07:16 Muhammad Moinur Rahman (bofh) search for other commits by this committer
net/dpdk: Move net/dpdk-22.11 to net/dpdk

net/dpdk was about to expire in lieu of net/dpdk-22.11. So move
net/dpdk-22.11 to dpdk.

When there are multiple versions in the ports tree always keep the most
latest stable version without the suffix/prefix and adjust accordingly
for other versions.

Approved by:	portmgr (blanket)
commit hash: 35b06fb1497aff804abe21e254ea4cf5829953b2 commit hash: 35b06fb1497aff804abe21e254ea4cf5829953b2 commit hash: 35b06fb1497aff804abe21e254ea4cf5829953b2 commit hash: 35b06fb1497aff804abe21e254ea4cf5829953b2 35b06fb
Saturday, 18 Nov 2023
09:24 Daniel Engberg (diizzy) search for other commits by this committer
net/dpdk: Deprecate and set expiration date to 2023-12-31

End of life since December 2022 upstream, point users to net/dpdk-22.11

Reference:
https://core.dpdk.org/roadmap/

PR:		272133
Reported by:	Bruce Richardson <bruce.richardson@intel.com>
commit hash: 91828ddfe49ca5c8de4636c1d30b048f63bae405 commit hash: 91828ddfe49ca5c8de4636c1d30b048f63bae405 commit hash: 91828ddfe49ca5c8de4636c1d30b048f63bae405 commit hash: 91828ddfe49ca5c8de4636c1d30b048f63bae405 91828dd
Tuesday, 27 Jun 2023
19:34 Rene Ladan (rene) search for other commits by this committer
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>
commit hash: 3d9a815d9c5acbb71f4bb07738bdeab4879feacb commit hash: 3d9a815d9c5acbb71f4bb07738bdeab4879feacb commit hash: 3d9a815d9c5acbb71f4bb07738bdeab4879feacb commit hash: 3d9a815d9c5acbb71f4bb07738bdeab4879feacb 3d9a815
Wednesday, 7 Sep 2022
21:10 Stefan Eßer (se) search for other commits by this committer
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)
commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 b7f0544
Thursday, 21 Apr 2022
17:45 Neel Chauhan (nc) search for other commits by this committer Author: Bruce Richardson
net/dpdk: update to 19.11.12 point release

PR:	263423
commit hash: 9e1a841eb1cd21c5b790d628a4adf230ba99e972 commit hash: 9e1a841eb1cd21c5b790d628a4adf230ba99e972 commit hash: 9e1a841eb1cd21c5b790d628a4adf230ba99e972 commit hash: 9e1a841eb1cd21c5b790d628a4adf230ba99e972 9e1a841
Monday, 25 Oct 2021
12:58 Alexey Dokuchaev (danfe) search for other commits by this committer
Style: improve ONLY_FOR_ARCHS_REASON (grammar, markup, etc.)

ONLY_FOR_ARCHS_REASON is used as part of the sentence and thus should
start with lower-case letter and not end with a period which is added
by the framework, similar to other knobs like BROKEN, IGNORE, et al.

While here, remove needless quoting, add missing Oxford comma, expand
contractions and jargonisms, use correct spelling for proper names.
commit hash: 61b661339366b6ee95ca1de0667979da9240c6b8 commit hash: 61b661339366b6ee95ca1de0667979da9240c6b8 commit hash: 61b661339366b6ee95ca1de0667979da9240c6b8 commit hash: 61b661339366b6ee95ca1de0667979da9240c6b8 61b6613
Wednesday, 7 Apr 2021
08:09 Mathieu Arnold (mat) search for other commits by this committer
One more small cleanup, forgotten yesterday.
Reported by:	lwhsu
commit hash: cf118ccf875508b9a1c570044c93cfcc82bd455c commit hash: cf118ccf875508b9a1c570044c93cfcc82bd455c commit hash: cf118ccf875508b9a1c570044c93cfcc82bd455c commit hash: cf118ccf875508b9a1c570044c93cfcc82bd455c cf118cc
Tuesday, 6 Apr 2021
14:31 Mathieu Arnold (mat) search for other commits by this committer
Remove # $FreeBSD$ from Makefiles.
commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb 305f148
Friday, 26 Mar 2021
03:04 vanilla search for other commits by this committer
Update to 19.11.7.

PR:		254403
Submitted by:	maintainer
Original commitRevision:569240 
Tuesday, 8 Sep 2020
17:26 lwhsu search for other commits by this committer
net/dpdk: Update to 19.11.4

PR:		249189
Submitted by:	Bruce Richardson <bruce.richardson@intel.com> (maintainer)
Original commitRevision:548000 
Wednesday, 1 Jul 2020
13:15 lwhsu search for other commits by this committer
Update to 19.11.3

PR:		247662
Submitted by:	Bruce Richardson <bruce.richardson@intel.com> (maintainer)
Original commitRevision:540956 
Tuesday, 16 Jun 2020
23:53 lwhsu search for other commits by this committer
Update to 19.11.2

PR:		246541
Submitted by:	Bruce Richardson <bruce.richardson@intel.com> (maintainer)
Original commitRevision:539393 
Monday, 18 May 2020
11:38 pi search for other commits by this committer
net/dpdk: ix build with 13-CURRENT

The automated package builds for net/dpdk are failing on 13-CURRENT
because of changes to the FreeBSD code in the 13 tree. This update
provides minor tweaks to the code to fix compatibility with BSD 13.

Two issues were observed:
* rename of CPU_NAND to CPU_ANDNOT
* change in vm_page_replace parameters and behaviour

Both issues only required small changes to a single file, and both
fixes are in the diff attached.

PR:		243058
Submitted by:	Bruce Richardson <bruce.richardson@intel.com> (maintainer)
Original commitRevision:535736 
Tuesday, 31 Dec 2019
20:17 rene search for other commits by this committer
net/dpdk: depend on OpenSSL via USES=ssl instead of directly

Reported by:	antoine, mat
Original commitRevision:521654 
16:20 rene search for other commits by this committer
net/dpdk: bump openssl dependency to 1.11, build-tested only.
Original commitRevision:521641 
Tuesday, 3 Dec 2019
20:55 pi search for other commits by this committer
net/dpdk: upgrade 18.05.1 -> 19.11

- As part of the update the build system was changed from using
  make to meson/ninja, which simplifies large parts of the port
  makefile, and will be the build system for DPDK going forward.

PR:		242325
Submitted by:	Bruce Richardson <bruce.richardson@intel.com> (maintainer)
Relnotes:	http://doc.dpdk.org/guides/rel_notes/release_19_11.html
		https://www.dpdk.org/blog/2019/11/29/dpdk-19-08-is-now-available-biggest-release-of-2019-2/
Original commitRevision:518967 
Saturday, 12 Jan 2019
13:34 pi search for other commits by this committer
net/dpdk: update 18.05 -> 18.05.1

PR:		234832
Approved by:	Bruce Richardson <bruce.richardson@intel.com> (maintainer)
Relnotes:	https://doc.dpdk.org/guides-18.05/rel_notes/release_18_05.html#fixes-in-18-05-stable-release
Original commitRevision:490054 
Wednesday, 18 Jul 2018
15:39 swills search for other commits by this committer
net/dpdk: update to 18.05

PR:		229863
Submitted by:	Bruce Richardson <bruce.richardson@intel.com> (maintainer)
Original commitRevision:474872 
Tuesday, 22 May 2018
13:15 mat search for other commits by this committer
Add PY_FLAVOR to Python module dependencies.

Sponsored by:	Absolight
Original commitRevision:470610 
Thursday, 30 Nov 2017
15:50 mat search for other commits by this committer
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
  current python flavor.  It can be used in dependency lines when the
  port itself is not python flavored.  For example, deskutils/calibre.

  By default, all the flavors are generated.  To only generate flavors
  for the versions in PYTHON2_DEFAULT and PYTHON3_DEFAULT, define
  BUILD_DEFAULT_PYTHON_FLAVORS in your make.conf.

  In all the ports with Python dependencies, the *_DEPENDS entries MUST
  end with the flavor so that the framework knows which to build/use.
  This is done by appending '@${PY_FLAVOR}' after the origin (or
  @${FLAVOR} if in a Python module with Python flavors, as the content
  will be the same).  For example:

    RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR}

PR:		223071
Reviewed by:	portmgr, python
Sponsored by:	Absolight
Differential Revision:	https://reviews.freebsd.org/D12464
Original commitRevision:455210 
Friday, 22 Sep 2017
10:48 mat search for other commits by this committer
Remove USES=execinfo.

PR:		220271
Submitted by:	mat (review), Yasuhiro KIMURA (PR)
Sponsored by:	Absolight
Differential Revision:	https://reviews.freebsd.org/D11488
Original commitRevision:450351 
Thursday, 6 Oct 2016
16:23 amdmi3 search for other commits by this committer
- Fix page zeroing (http://dpdk.org/dev/patchwork/patch/15211/)
- Added options for DEBUG and TOOLS
- Added WWW:

PR:		212923
Submitted by:	rum1cro@yandex.ru
Approved by:	bruce.richardson@intel.com (maintainer)
Original commitRevision:423416 
Monday, 5 Sep 2016
15:34 amdmi3 search for other commits by this committer
- Update to 16.07

PR:		212387
Submitted by:	rum1cro@yandex.ru
Approved by:	bruce.richardson@intel.com (maintainer)
Original commitRevision:421375 
Wednesday, 17 Feb 2016
04:18 pi search for other commits by this committer
net/dpdk: 2.1.0 -> 2.2.0

Release Notes:
  http://dpdk.org/doc/guides/rel_notes/release_2_2.html

PR:		207078
Approved by:	Bruce Richardson <bruce.richardson@intel.com> (maintainer)
Original commitRevision:409027 
Wednesday, 9 Sep 2015
12:14 vanilla search for other commits by this committer
Upgrade to 2.1

PR:		202415
Submitted by:	maintainer
Original commitRevision:396475 
Monday, 20 Apr 2015
12:49 vanilla search for other commits by this committer
Fix build on 9.3.
Original commitRevision:384356 
09:48 vanilla search for other commits by this committer
Upgrade to 2.0

PR:		199485
Submitted by:	maintainer
Original commitRevision:384342 
Monday, 22 Dec 2014
12:18 vanilla search for other commits by this committer
Upgrade to 1.8.0.

Submitted by:	maintainer via email.
Original commitRevision:375235 
Thursday, 16 Oct 2014
05:59 vanilla search for other commits by this committer
Add dpdk 1.7.1, intel(R) DPDK: Software libraries for packet processing.

PR:		ports/194072
Submitted by:	bruce.richardson@intel.com
Original commitRevision:370970 

Number of commits found: 30