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/norm/Makefile

Number of commits found: 14

Tuesday, 16 May 2023
18:22 Dimitry Andric (dim) search for other commits by this committer
net/norm: fix build with clang 16

Since clang 16 (and gcc 11) the default C++ standard is now gnu++17.
Because net/norm's build system does not explicitly set the C++
standard, this leads to several errors:

  ../src/common/normEncoderRS8.cpp:264:5: error: ISO C++17 does not allow
'register' storage class specifier [-Wregister]
      USE_GF_MULC ;
      ^
  ../src/common/normEncoderRS8.cpp:136:21: note: expanded from macro
'USE_GF_MULC'
  #define USE_GF_MULC register gf * __gf_mulc_
                      ^
  ../src/common/normEncoderRS8.cpp:265:5: error: ISO C++17 does not allow
'register' storage class specifier [-Wregister]
      register gf* dst = dst1;
      ^~~~~~~~~
  ../src/common/normEncoderRS8.cpp:266:5: error: ISO C++17 does not allow
'register' storage class specifier [-Wregister]
      register gf* src = src1 ;
      ^~~~~~~~~

Add USE_CXXSTD=gnu++98 to compile for C++98 with GNU extensions instead,
as net/norm does not seem to use any C++11 or later constructs.

PR:		271415
Approved by:	portmgr (build fix blanket)
MFH:		2023Q2
commit hash: 0fb51ef88cf03579745135004621570a58998dfe commit hash: 0fb51ef88cf03579745135004621570a58998dfe commit hash: 0fb51ef88cf03579745135004621570a58998dfe commit hash: 0fb51ef88cf03579745135004621570a58998dfe 0fb51ef
Thursday, 8 Sep 2022
07:31 Gleb Smirnoff (glebius) search for other commits by this committer
net/norm: use upstream divert(4) patches to avoid warning on CURRENT

PR:		266276
Approved by:	mikael
commit hash: ab6be4dbf3bb1c7680976465df6c8331a5e21b5f commit hash: ab6be4dbf3bb1c7680976465df6c8331a5e21b5f commit hash: ab6be4dbf3bb1c7680976465df6c8331a5e21b5f commit hash: ab6be4dbf3bb1c7680976465df6c8331a5e21b5f ab6be4d
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
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
Tuesday, 21 Apr 2020
00:14 pkubaj search for other commits by this committer
net/norm: don't set -mcpu=power7 on powerpc64 anymore

After head r360134, clang can compile this port with default -mcpu=ppc970.
Original commitRevision:532238 
Thursday, 23 Jan 2020
21:09 pkubaj search for other commits by this committer
net/norm: fix build on powerpc64 elfv2

On ELFv2 ABI Clang can't build this port by default and throws assertion
(already reported):
Assertion failed: ((Op.getOpcode() == ISD::FP_TO_SINT || Subtarget.hasFPCVT())
&& "i64 FP_TO_UINT is supported only with FPCVT"), function
LowerFP_TO_INTForReuse, file
/poudriere/jails/powerpc64-elfv2-pkubaj/usr/src/contrib/llvm-project/llvm/lib/Target/PowerPC/PPCISelLowering.cpp,
line 7281.
Stack dump:
0.	Program arguments: /usr/bin/c++ -cc1 -triple powerpc64-unknown-freebsd13.0
-emit-obj -disable-free -main-file-name protoDispatcher.cpp -mrelocation-model
pic -pic-level 2 -mthread-model posix -relaxed-aliasing -masm-verbose
-mconstructor-aliases -munwind-tables -fuse-init-array -target-cpu ppc64
-target-feature +secure-plt -mfloat-abi hard -dwarf-column-info
-debugger-tuning=gdb -momit-leaf-frame-pointer -coverage-notes-file
/wrkdirs/usr/ports/net/norm/work/norm-1.5r6/build/protolib/src/common/protoDispatcher.cpp.1.gcno
-resource-dir /usr/lib/clang/9.0.1 -I
/wrkdirs/usr/ports/net/norm/work/norm-1.5r6/build/protolib/include -I
/wrkdirs/usr/ports/net/norm/work/norm-1.5r6/protolib/include -I
/wrkdirs/usr/ports/net/norm/work/norm-1.5r6/build/protolib/include/unix -I
/wrkdirs/usr/ports/net/norm/work/norm-1.5r6/protolib/include/unix -D UNIX -D
HAVE_DIRFD -D HAVE_IPV6 -D HAVE_ASSERT -D HAVE_GETLOGIN -D HAVE_FLOCK -D NDEBUG
-internal-isystem /usr/include/c++/v1 -O3 -fdeprecated-macro -f
ebug-compilation-dir /wrkdirs/usr/ports/net/norm/work/norm-1.5r6/build
-ferror-limit 19 -fmessage-length 0 -stack-protector 2 -fno-signed-char
-fobjc-runtime=gnustep -fcxx-exceptions -fexceptions -fdiagnostics-show-option
-vectorize-loops -vectorize-slp -faddrsig -o
/wrkdirs/usr/ports/net/norm/work/norm-1.5r6/build/protolib/src/common/protoDispatcher.cpp.1.o
-x c++ ../protolib/src/common/protoDispatcher.cpp
1.	<eof> parser at end of file
2.	Code generation
3.	Running pass 'Function Pass Manager' on module
'../protolib/src/common/protoDispatcher.cpp'.
4.	Running pass 'PowerPC DAG->DAG Pattern Instruction Selection' on function
'@_ZN15ProtoDispatcher4WaitEv'
#0 0x000000001371df18 (/usr/bin/c+++0x1371df18)
#1 0x000000001371e594 (/usr/bin/c+++0x1371e594)
#2 0x000000001371b858 (/usr/bin/c+++0x1371b858)
#3 0x000000001371ed0c (/usr/bin/c+++0x1371ed0c)
#4 0x000000081520176c (/lib/libthr.so.3+0x1b76c)
c++: error: unable to execute command: Abort trap (core dumped)
c++: error: clang frontend command failed due to signal (use -v to see
invocation)
FreeBSD clang version 9.0.1 (git@github.com:llvm/llvm-project.git
c1a0a213378a458fbea1a5c77b315c7dce08fd05) (based on LLVM 9.0.1)
Target: powerpc64-unknown-freebsd13.0
Thread model: posix
InstalledDir: /usr/bin
c++: note: diagnostic msg: PLEASE submit a bug report to
https://bugs.freebsd.org/submit/ and include the crash backtrace, preprocessed
source, and associated run script.
c++: note: diagnostic msg:

The workaround is to optimize for POWER7, which supports necessary features in
hardware. This will break run-time for older CPU's, but at least we can get this
port running on POWER7 and newer.

PR:		243227
Approved by:	hd@oc.dk (maintainer timeout)
Original commitRevision:523941 
Sunday, 19 Jan 2020
17:33 antoine search for other commits by this committer
Allow building with a recent version of python
Original commitRevision:523582 
Tuesday, 14 Jan 2020
09:27 antoine search for other commits by this committer
Switch version of python used in USES=waf to default version of python

Reviewed by:	bapt
With hat:	portmgr
Differential Revision:	https://reviews.freebsd.org/D23143
Original commitRevision:522998 
Thursday, 18 Jan 2018
17:32 danfe search for other commits by this committer
Fix a trivial mistake in the code (add missing curly braces) and unbreak
this port on presumably all big-endian architectures.  While here, amend
the port description text to include some useful information.

Tested on:	powerpc, sparc64
Original commitRevision:459365 
Sunday, 30 Apr 2017
01:12 linimon search for other commits by this committer
Provide more descriptive error messages for ports failing on powerpc64.

Approved by:	portmgr (tier-2 blanket)
Original commitRevision:439779 
Saturday, 17 Sep 2016
13:51 linimon search for other commits by this committer
Mark as broken on various tier-2 archs.

Approved by:	tier-2 blanket (portmgr)
Original commitRevision:422325 
Thursday, 21 Apr 2016
16:43 swills search for other commits by this committer
many ports: mark broken on powerpc64
Original commitRevision:413746 
Sunday, 28 Feb 2016
05:59 pi search for other commits by this committer
New port: net/norm

This a port of NACK-Oriented Reliable Multicast (N.O.R.M.),
as specified in RFC5740.

WWW: http://www.nrl.navy.mil/itd/ncs/products/norm

PR:		201197
Submitted by:	Hans Duedal <hd@oc.dk>
Original commitRevision:409713 

Number of commits found: 14