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: devel/csmith/Makefile

Number of commits found: 28

Wednesday, 26 Jul 2023
00:48 Muhammad Moinur Rahman (bofh) search for other commits by this committer
*/*: Fix build with llvm16 on 13.2-STABLE

As like as HEAD(14.0-RELEASE) llvm16 was merged in base for 13.2-STABLE
with the OSVERSION 1302507.

- Utilize USE_CXXSTD=c++14 or similar solution where applicable
- Update conditionals to addtionally check for OSVERSION greater than
  1302507 and less than 1400000

Approved by:	portmgr (blanket)
Sponsored by:	The FreeBSD Foundation
commit hash: 95274bf4f99c71fc056013d966aec239161dfd74 commit hash: 95274bf4f99c71fc056013d966aec239161dfd74 commit hash: 95274bf4f99c71fc056013d966aec239161dfd74 commit hash: 95274bf4f99c71fc056013d966aec239161dfd74 95274bf
Friday, 21 Jul 2023
15:41 Muhammad Moinur Rahman (bofh) search for other commits by this committer
devel/csmith: Fix build with llvm16

Sponsored by:	The FreeBSD Foundation
commit hash: 37581a9c35b1d2c13a0a647d68717387fa69a433 commit hash: 37581a9c35b1d2c13a0a647d68717387fa69a433 commit hash: 37581a9c35b1d2c13a0a647d68717387fa69a433 commit hash: 37581a9c35b1d2c13a0a647d68717387fa69a433 37581a9
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
Monday, 7 Dec 2020
20:09 rene search for other commits by this committer
Return mmokhi@'s ports to the pool after his commit bit was safekept.
Original commitRevision:557245 
Tuesday, 23 Oct 2018
06:36 linimon search for other commits by this committer
Enable build on all archs.  Apparently the x86-specific code is long gone.

PR:		229725
Submitted by:	Greg V <greg at unrelenting.technology>
Approved by:	maintainer timeout (> 3 months)
Original commitRevision:482810 
Sunday, 2 Jul 2017
12:36 mmokhi search for other commits by this committer
devel/csmith: Update csmith to 2.3.0
This new version contains many changes including:
. Added a CMake-based build system (as well as Autoconf-based system).
. Improved ability to generate C++-compatible code:
    First, the command-line option --lang-cpp now sets other
    options automatically (--match-exact-qualifiers,
    --no-vol-struct-union-fields, and
    --no-const-struct-union-fields).
    Second, the new command-line option --cpp11 tells Csmith to generate
    C++11-compatible code. The default is to generate C++03-compatible code.

. Added command-line options:
    --global-variables / --no-global-variables: allow or disallow global
        variables (allowed by default)
    --const-struct-union-fields / --no-const-struct-union-fields: allow or
        disallow const fields in structs and unions (allowed by default)
    --strict-float to disallow assignments
        between floats and integers. Unless this option is specified, such
        assignments are allowed.
    --fast-execution that biases Csmith toward
        generating faster programs.

. Removed --deputy command-line option, which previously caused Csmith to
    output annotations for Deputy, a dependent type system for C.

Reviewed by:	mat (mentor)
Approved by:	mat (mentor)
Differential Revision:	https://reviews.freebsd.org/D11337
Original commitRevision:444881 
Saturday, 11 Feb 2017
04:44 mmokhi search for other commits by this committer
Updating the ports I maintain to my FreeBSD.org address.

Submitted by:	mmokhi
Reviewed by:	feld, mat
Approved by:	feld, mat (mentors)
Differential Revision:	https://reviews.freebsd.org/D9498
Original commitRevision:433834 
Monday, 26 Dec 2016
19:00 sunpoet search for other commits by this committer
- Pass maintainership to submitter

PR:		215586
Submitted by:	Mahdi Mokhtari <mokhi64@gmail.com>
Original commitRevision:429567 
11:59 rene search for other commits by this committer
Reset ports per maintainer request.

PR:		215557
Submitted by:	A.J. "Fonz" van Werven (maintainer)
Original commitRevision:429499 
Sunday, 4 Jan 2015
20:51 pawel search for other commits by this committer
- Update to version 2.2.0
- Add new maintainer's mirror to MASTER_SITES
- Submitter is new maintainer
- Add PKGNAME to PLIST_SUB and use it to parameterize include directory

PR:		196424
Submitted by:	 A.J. "Fonz" van Werven <freebsd@skysmurf.nl>
Original commitRevision:376271 
Monday, 22 Dec 2014
21:23 antoine search for other commits by this committer
- Add missing run dependency on perl
- Shebangfix
Original commitRevision:375270 
Wednesday, 24 Sep 2014
06:00 eadler search for other commits by this committer
Hand back my ports to the pool.

Ports require time and TLC which I no longer have.
Original commitRevision:369161 
Friday, 29 Aug 2014
21:48 tijl search for other commits by this committer
Add USES=libtool and INSTALL_TARGET=install-strip
Original commitRevision:366574 
Tuesday, 15 Jul 2014
23:11 adamw search for other commits by this committer
Add OPTIONS_DEFINE=DOCS for ports with %%PORTDOCS%% in the plist.

Where possible, correct a few instances where PORTDOCS was being used
to flag stuff in EXAMPLESDIR. For some ports, mostly those owned by
ruby@, PORTDOCS is applied to pretty much everything whether it's
documentation or example.
Original commitRevision:362014 
Wednesday, 11 Dec 2013
23:44 eadler search for other commits by this committer
creduce/Makefile csmith/Makefile symports/Makefile: use BSD*CLAUSE

The LICENSE 'BSD' was not specific enough.  Now, use the new versioned licenses.
Original commitRevision:336237 
Sunday, 29 Sep 2013
03:05 eadler search for other commits by this committer
- Convert to staging
Original commitRevision:328642 
Friday, 20 Sep 2013
17:03 bapt search for other commits by this committer
Add NO_STAGE all over the place in preparation for the staging support (cat:
devel part 1)
Original commitRevision:327722 
Tuesday, 16 Jul 2013
21:59 eadler search for other commits by this committer
Remove now excess verbiage.

Reviewed by:	bapt
Original commitRevision:323129 
Saturday, 6 Jul 2013
17:27 eadler search for other commits by this committer
Convert some of my ports from USE_GMAKE to USES=gmake.
The remainder have other pending patches which I must finish before conversion.
Original commitRevision:322403 
Tuesday, 23 Apr 2013
01:44 eadler search for other commits by this committer
Simplify port logic
Original commitRevision:316295 
Friday, 8 Mar 2013
20:23 eadler search for other commits by this committer
Clean up my ports (and a couple of ports@ owned ones):

- Fix COMMENT
- Add MAKE_JOBS_SAFE where appropriate
- Change ordering of LICENSE lines
- Fix new header format
- Etc.

Reviewed by:	drogoh (on irc)
Original commitRevision:313672 
Saturday, 6 Oct 2012
14:35 eadler search for other commits by this committer
Trim the headers in the ports I maintain.
Original commitRevision:305369 
Saturday, 8 Sep 2012
12:12 eadler search for other commits by this committer
This will never work on a non-intel cpu
Original commitRevision:303898 
06:53 linimon search for other commits by this committer
Mark as broken on sparc64.

Hat:		portmgr
Original commitRevision:303870 
Wednesday, 23 Nov 2011
05:33 eadler search for other commits by this committer
- update to 2.1
- remove build patches

New features in this release:

- By default, functions and global variables are marked as "static" permitting
compilers to optimize more aggressivELY IN SOme cases.
- We now try harder to get auto-vectorizers and other loop optimizers in trouble
by generating code that is more idiomatic and therefore more likely to be
optimized. In particular, array indices are in-bounds by construction instead of
by using % operators.
- Unions are supported.
- The comma operator is supported, as in x = (y, 1, z, 3).
- Embedded assignments are supported, as in x = 1 + (y = z).
- The pre/post increment/decrement operators are supported.
- A --no-safe-math mode was added, which avoids calling the safe math wrappers.
This is useful when trying to crash compilers but the resulting executables
should not be run since they are very likely to have undefined behavior.

Feature safe:   yes
Original commit
Tuesday, 25 Oct 2011
20:54 eadler search for other commits by this committer
Csmith is a tool that can generate random C programs that statically
and dynamically conform to the C99 standard. Thus, it is useful for
stress-testing compilers, static analyzers, and other tools that
process C code. Csmith has found bugs in every tool that it has
tested, and over the last several years we have used it to find
and report more than 350 previously-unknown compiler bugs.

WWW: http://embed.cs.utah.edu/csmith/

Approved by:    bapt (mentor)
Original commit

Number of commits found: 28