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.

Port details
norm NACK-Oriented Reliable Multicast (NORM)
1.5r6_3 net on this many watch lists=3 search for ports that depend on this port Find issues related to this port Report an issue related to this port View this port on Repology. pkg-fallout 1.5r6_3Version of this port present on the latest quarterly branch.
Maintainer: hd@oc.dk search for ports maintained by this maintainer
Port Added: 2016-02-28 05:59:54
Last Update: 2023-05-16 18:22:56
Commit Hash: 0fb51ef
People watching this port, also watch:: screen, libinotify, py39-pycparser, p5-Net-HTTP, p5-Encode-Locale
License: not specified in port
WWW:
https://www.nrl.navy.mil/itd/ncs/products/norm
Description:
This a port of NACK-Oriented Reliable Multicast (NORM) Transport Protocol implementation, as specified in RFC 5740. This protocol can provide end- to-end reliable transport of bulk data objects or streams over generic IP multicast routing and forwarding services.
Homepage    cgit ¦ Codeberg ¦ GitHub ¦ GitLab ¦ SVNWeb

Manual pages:
FreshPorts has no man page information for this port.
pkg-plist: as obtained via: make generate-plist
Expand this list (5 items)
Collapse this list.
  1. include/normApi.h
  2. lib/libnorm.so
  3. lib/libnorm.so.1
  4. lib/libnorm.so.1.0.0
  5. @ldconfig
Collapse this list.
Dependency lines:
  • norm>0:net/norm
To install the port:
cd /usr/ports/net/norm/ && make install clean
To add the package, run one of these commands:
  • pkg install net/norm
  • pkg install norm
NOTE: If this package has multiple flavors (see below), then use one of them instead of the name specified above.
PKGNAME: norm
Flavors: there is no flavor information for this port.
distinfo:
TIMESTAMP = 1662622009 SHA256 (src-norm-1.5r6.tgz) = 20ea2e8dd5d5e1ff1ff91dc7dab6db53a77d7b7183d8cf2425c215fd294f22a7 SIZE (src-norm-1.5r6.tgz) = 2297898

Expand this list (4 items)

Collapse this list.

SHA256 (waf-2.0.19) = ba63c90a865a9bcf46926c4e6776f9a3f73d29f33d49b7f61f96bc37b7397cef SIZE (waf-2.0.19) = 104832 SHA256 (ba9ca1ca7d73592268ebfd5a43271303e76f461e.patch) = 20caaebb6455004de46935d79372c13d10bf2df699ebb996e5e390b6a23b666e SIZE (ba9ca1ca7d73592268ebfd5a43271303e76f461e.patch) = 1857

Collapse this list.


Packages (timestamps in pop-ups are UTC):
norm
ABIaarch64amd64armv6armv7i386powerpcpowerpc64powerpc64le
FreeBSD:13:latest1.5r6_31.5r6_31.5r6_11.5r6_31.5r6_3-1.5r6_1-
FreeBSD:13:quarterly1.5r6_31.5r6_31.5r6_31.5r6_31.5r6_31.5r6_31.5r6_31.5r6_3
FreeBSD:14:latest1.5r6_31.5r6_31.5r6_21.5r6_31.5r6_31.5r6_3-1.5r6_3
FreeBSD:14:quarterly1.5r6_31.5r6_3-1.5r6_31.5r6_31.5r6_31.5r6_31.5r6_3
FreeBSD:15:latest1.5r6_31.5r6_3n/a1.5r6_3n/a1.5r6_31.5r6_31.5r6_3
FreeBSD:15:quarterly--n/a-n/a---
Dependencies
NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
Build dependencies:
  1. python3.9 : lang/python39
This port is required by:
for Libraries
  1. net/libzmq4
  2. net-p2p/monero-cli

Configuration Options:
No options to configure
Options name:
net_norm
USES:
libtool tar:tgz waf
FreshPorts was unable to extract/find any pkg message
Master Sites:
  1. There is no master site for this port.

Number of commits found: 15

Commit History - (may be incomplete: for full details, see links to repositories near top of page)
CommitCreditsLog message
1.5r6_3
16 May 2023 18:22:56
commit hash: 0fb51ef88cf03579745135004621570a58998dfecommit hash: 0fb51ef88cf03579745135004621570a58998dfecommit hash: 0fb51ef88cf03579745135004621570a58998dfecommit hash: 0fb51ef88cf03579745135004621570a58998dfe files touched by this commit
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
1.5r6_2
08 Sep 2022 07:31:15
commit hash: ab6be4dbf3bb1c7680976465df6c8331a5e21b5fcommit hash: ab6be4dbf3bb1c7680976465df6c8331a5e21b5fcommit hash: ab6be4dbf3bb1c7680976465df6c8331a5e21b5fcommit hash: ab6be4dbf3bb1c7680976465df6c8331a5e21b5f files touched by this commit
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
07 Sep 2022 21:58:51
commit hash: fb16dfecae4a6efac9f3a78e0b759fb7a3c53de4commit hash: fb16dfecae4a6efac9f3a78e0b759fb7a3c53de4commit hash: fb16dfecae4a6efac9f3a78e0b759fb7a3c53de4commit hash: fb16dfecae4a6efac9f3a78e0b759fb7a3c53de4 files touched by this commit
Stefan Eßer (se) search for other commits by this committer
Remove WWW entries moved into port Makefiles

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)
1.5r6_1
07 Sep 2022 21:10:59
commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 files touched by this commit
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.
(Only the first 15 lines of the commit message are shown above View all of this commit message)
1.5r6_1
07 Apr 2021 08:09:01
commit hash: cf118ccf875508b9a1c570044c93cfcc82bd455ccommit hash: cf118ccf875508b9a1c570044c93cfcc82bd455ccommit hash: cf118ccf875508b9a1c570044c93cfcc82bd455ccommit hash: cf118ccf875508b9a1c570044c93cfcc82bd455c files touched by this commit
Mathieu Arnold (mat) search for other commits by this committer
One more small cleanup, forgotten yesterday.
Reported by:	lwhsu
1.5r6_1
06 Apr 2021 14:31:07
commit hash: 305f148f482daf30dcf728039d03d019f88344ebcommit hash: 305f148f482daf30dcf728039d03d019f88344ebcommit hash: 305f148f482daf30dcf728039d03d019f88344ebcommit hash: 305f148f482daf30dcf728039d03d019f88344eb files touched by this commit
Mathieu Arnold (mat) search for other commits by this committer
Remove # $FreeBSD$ from Makefiles.
1.5r6_1
21 Apr 2020 00:14:43
Revision:532238Original commit files touched by this commit
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.
1.5r6
23 Jan 2020 21:09:43
Revision:523941Original commit files touched by this commit
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)
(Only the first 15 lines of the commit message are shown above View all of this commit message)
1.5r6
19 Jan 2020 17:33:14
Revision:523582Original commit files touched by this commit
antoine search for other commits by this committer
Allow building with a recent version of python
1.5r6
14 Jan 2020 09:27:19
Revision:522998Original commit files touched by this commit
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
1.5r6
18 Jan 2018 17:32:31
Revision:459365Original commit files touched by this commit
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
1.5r6
30 Apr 2017 01:12:10
Revision:439779Original commit files touched by this commit
linimon search for other commits by this committer
Provide more descriptive error messages for ports failing on powerpc64.

Approved by:	portmgr (tier-2 blanket)
1.5r6
17 Sep 2016 13:51:42
Revision:422325Original commit files touched by this commit
linimon search for other commits by this committer
Mark as broken on various tier-2 archs.

Approved by:	tier-2 blanket (portmgr)
1.5r6
21 Apr 2016 16:43:15
Revision:413746Original commit files touched by this commit
swills search for other commits by this committer
many ports: mark broken on powerpc64
1.5r6
28 Feb 2016 05:59:43
Revision:409713Original commit files touched by this commit
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>

Number of commits found: 15