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: mail/spmfilter/Makefile

Number of commits found: 37

Monday, 18 Mar 2024
12:28 Christian Weisgerber (naddy) search for other commits by this committer
mail/spmfilter: Move man pages to share/man

Approved by:	portmgr (blanket)
commit hash: 2bfbe28afe3cb517e38ed74007a27c65d986fcd6 commit hash: 2bfbe28afe3cb517e38ed74007a27c65d986fcd6 commit hash: 2bfbe28afe3cb517e38ed74007a27c65d986fcd6 commit hash: 2bfbe28afe3cb517e38ed74007a27c65d986fcd6 2bfbe28
Wednesday, 8 Feb 2023
10:53 Muhammad Moinur Rahman (bofh) search for other commits by this committer
Mk/**ldap.mk: Convert USE_LDAP to USES=ldap

Convert the USE_LDAP=yes to USES=ldap and adds the following features:

- Adds the argument USES=ldap:server to add openldap2{4|5|6}-server as
  RUN_DEPENDS
- Adds the argument USES=ldap<version> and replaces WANT_OPENLDAP_VER
- Adds OPENLDAP versions in bsd.default-versions.mk
- Adds USE_OPENLDAP/WANT_OPENLDAP_VER in Mk/bsd.sanity.mk
- Changes consumers to use the features

Reviewed by:	delphij
Approved by:	portmgr
Differential Revision: https://reviews.freebsd.org/D38233
commit hash: 6e1233be229212a0496f42d611bd40f3e3a628da commit hash: 6e1233be229212a0496f42d611bd40f3e3a628da commit hash: 6e1233be229212a0496f42d611bd40f3e3a628da commit hash: 6e1233be229212a0496f42d611bd40f3e3a628da 6e1233b
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
Wednesday, 27 May 2020
14:55 danfe search for other commits by this committer
Sanitize COMMENT per Section 5.6 of the FreeBSD Porter's Handbook (part 3).
Original commitRevision:536694 
Thursday, 2 Apr 2020
12:04 sunpoet search for other commits by this committer
Bump PORTREVISION for databases/libzdb shlib change
Original commitRevision:530319 
Saturday, 6 Apr 2019
14:42 sunpoet search for other commits by this committer
Update databases/libzdb to 3.2

- Update MASTER_SITES
- Update pkg-descr
- Update WWW
- Bump PORTREVISION of dependent ports for shlib change
- Take maintainership

Changes:	https://www.tildeslash.com/libzdb/#release_notes
Original commitRevision:498101 
Sunday, 25 Jun 2017
21:07 tcberner search for other commits by this committer
Make ninja opt-out in cmake.mk

Using ninja instead of make (1) can lead to significant speed ups while
building.
Therefore switch from having the ninja generator opt-in to having it opt-out.

Previously cmake-ports that wanted to use ninja could set
    CMAKE_NINJA=yes
now, ports that do not work with ninja can set
    cmake:<existing args>,noninja
Note, that needing this should be an exception and most often points to a broken
cmake of the port.

The ports using cmake were modified
* removed USES=gmake, if ninja is used
* removed MAKE_ARGS, if ninja is used
* added the cmake-argument noninja if necessary

PR:		219629
PR:		213331
Exp-run by:	antoine
Reviewed by:	rakuco
Differential Revision:	https://reviews.freebsd.org/D10748
Original commitRevision:444324 
Thursday, 25 May 2017
20:12 bapt search for other commits by this committer
In EREs, left-brace is not to be interpreted as an ordinary character unless
escaped. Using an unescaped left-brace as part of an invalid repetition
specification is undefined behavior.

PR:		219009
Submitted by:	Kyle Evans <bsdports@kyle-evans.net>
Approved by:	maintainer timeout (3 weeks)
Original commitRevision:441714 
Monday, 8 Aug 2016
13:46 mat search for other commits by this committer
USE_BDB cleanup.

- USE_BDB=4x+ -> USES=bdb.
- USE_BDB=yes -> USES=bdb.
- USE_BDB=xx  -> USES=bdb:xx.

Other modernisations when I see them.

PR:		209183
Sponsored by:	Absolight
Original commitRevision:419843 
Friday, 1 Apr 2016
14:16 mat search for other commits by this committer
Remove ${PORTSDIR}/ from dependencies, categories m, n, o, and p.

With hat:	portmgr
Sponsored by:	Absolight
Original commitRevision:412348 
Tuesday, 22 Sep 2015
21:20 amdmi3 search for other commits by this committer
- Switch to @sample
- Drop @dirrm* from plist
- Modernize vardir handling

Approved by:	portmgr blanket
Original commitRevision:397593 
Sunday, 22 Feb 2015
16:58 robak search for other commits by this committer
mail/libcmime: update 0.1.11 -> 0.1.15

- Add DOXYGEN option
- Bump mail/spmfilter PORTREVISION

PR:		195995
Submitted by:	Axel Steiner <ast@treibsand.com>
Original commitRevision:379619 
Saturday, 22 Nov 2014
20:40 crees search for other commits by this committer
Finally retire USE_PGSQL
Original commitRevision:373100 
Thursday, 21 Aug 2014
22:50 mandree search for other commits by this committer
Berkeley DB cleanup, remove versions 4.0 ... 4.7.
- Mk/bsd.database.mk rewrite, new default to db5.
- db6 is eligible by default only if installed on the system.
- Bump PORTREVISION of all ports that directly depend on BerkeleyDB or
  where USE_BDB is found in the port's directory
- Patch a few ports such that they will pick up or work with newer
  versions.
- Add UPDATING entry
- Drive-by format fix for pks
- Drop BerkeleyDB option from mail/popular for now, requires more work.
- Exp-run logs linked from the PR below.
- Ports that do not build (IGNORE, BROKEN, etc.) have pro-forma changes
  for new Berkeley DB, but are untested.

NOTE: please read UPDATING and the Wiki page before proceeding!

Announcement:	http://lists.freebsd.org/pipermail/freebsd-ports-announce/2014-August/000090.html
Wiki reference:	https://wiki.freebsd.org/Ports/BerkeleyDBCleanup
PR:		192690
Approved by:	portmgr (implicit, PORTREVISION bump on unstaged ports)
Original commitRevision:365599 
Sunday, 17 Aug 2014
16:08 tijl search for other commits by this committer
mail/libesmtp:
- Convert to USES=libtool and bump dependent ports
- Use option helpers
- Remove PTHREAD_CFLAGS and PTHREAD_LIBS
- Add INSTALL_TARGET=install-strip
Original commitRevision:365199 
Thursday, 24 Jul 2014
18:34 tijl search for other commits by this committer
net/openldap24-*:
- Convert to USES=libtool and bump dependent ports
- Avoid USE_AUTOTOOLS
- Don't use PTHREAD_LIBS
- Use MAKE_CMD

databases/glom:
- Drop :keepla
- Add INSTALL_TARGET=install-strip

databases/libgda4* databases/libgda5*:
- Convert to USES=libtool and bump dependent ports
- USES=tar:xz
- Use INSTALL_TARGET=install-strip
- Use @sample

databases/libgdamm:
- Drop :keepla
- USES=tar:bzip2
- Use INSTALL_TARGET=install-strip

databases/libgdamm5:
- Add INSTALL_TARGET=install-strip
- Drop --enable-static (inherited from old repocopy)

devel/anjuta x11-toolkits/py-gnome-extras:
- Drop :keepla

dns/powerdns dns/powerdns-devel:
- Convert to USES=libtool
- Add INSTALL_TARGET=install-strip
- Disable static modules
- Stop creating library symlinks with .0 suffix, not needed for dynamically
  opened modules

mail/dovecot2:
- Add USES=libtool

mail/dovecot2-pigeonhole:
- Drop CONFIGURE_TARGET (incorrect for Dragonfly)
- Add USES=libtool and INSTALL_TARGET=install-strip

math/gnumeric:
- USES=libtool tar:xz

Approved by:	portmgr (implicit, bump unstaged ports)
Original commitRevision:362835 
Tuesday, 4 Feb 2014
18:17 antoine search for other commits by this committer
Finish stage support
Original commitRevision:342582 
Saturday, 18 Jan 2014
22:57 danilo search for other commits by this committer
- Update from 0.6.3 to 0.6.7
- Add stage support

PR:		ports/185822
Submitted by:	Axel Steiner <ast@treibsand.com> (maintainer)
Original commitRevision:340222 
Saturday, 11 Jan 2014
16:12 tabthorpe search for other commits by this committer
- Update to 0.6.3
- Change port dependencies
- Update master site

PR:		ports/183232
Submitted by:	Axel Steiner <ast@treibsand.com> (maintainer)
Original commitRevision:339433 
Friday, 20 Sep 2013
19:59 bapt search for other commits by this committer
Add NO_STAGE all over the place in preparation for the staging support (cat:
mail)
Original commitRevision:327742 
Friday, 19 Jul 2013
20:57 cs search for other commits by this committer
Update to 2.11.3
Original commitRevision:323328 
Tuesday, 4 Jun 2013
10:32 bapt search for other commits by this committer
Convert to new options framework
Original commitRevision:319851 
Thursday, 16 May 2013
12:13 zeising search for other commits by this committer
Pass maintainership to Axel Steiner <ast@treibsand.com>

PR:		ports/178682:
Submitted by:	Frank Wall <fw@moov.de> (current maintainer)
Original commitRevision:318310 
Tuesday, 23 Apr 2013
14:20 bapt search for other commits by this committer
Finish converting the whole ports tree to USES=pkgconfig
Original commitRevision:316355 
Tuesday, 26 Mar 2013
21:22 cs search for other commits by this committer
- Update to 2.11.1
- Bump PORTREVISION

PR:		ports/175821
Submitted by:	Douglas Carmichael <dcarmich@dcarmichael.net>
Approved by:	maintainer
Original commitRevision:315332 
Friday, 22 Mar 2013
20:06 makc search for other commits by this committer
- convert USE_CMAKE to USES
- while here clean up some ports from CMAKE_VERBOSE, which is intended
  for users

Approved by:	portmgr (miwi)
Original commitRevision:314960 
Friday, 8 Mar 2013
10:51 kwm search for other commits by this committer
* Update the glib to 2.34.3 and gtk20 to 2.24.17 and gtk30 to 3.6.4 which
  are the latest stable releases.
* Update vala to the newest stable release 0.18.1, also update a few ports
  in the gtk/gnome stack.
* The c++ bindings ports for glib, atk, gconf, etc, have now USE_GNOME toggles.
* Remove pkg-config run depends from glib20 and freetype2. This doesn't
  eliminate pkg-config run dependency completely, a second phase is needed
  and is planned.
* Support for .:run. and .:build. for USE_GNOME components was added.
  Currently only libxml2 and libxslt support this mechanism.
* Updates of the telepathy stack and empathy.
* Trim makefile headers, convert ports to new options, trim off library
  versions for some ports.
* Fix other ports so they build with the new glib version.

Thanks to miwi and crees for helping out with some exp-runs.
Approved by:	portmgr (miwi & bapt)
Obtained from:	gnome team repo
Original commitRevision:313633 
Tuesday, 17 Jul 2012
20:00 cs search for other commits by this committer
- Update to 2.10.5
- Bump PORTREVISION
Original commit
Tuesday, 5 Jun 2012
21:35 cs search for other commits by this committer
Bump portrevision due to databases/libzdb update
Original commit
Wednesday, 23 May 2012
01:47 miwi search for other commits by this committer
- Chase libesmtp shlib bump
Original commit
Monday, 14 Nov 2011
03:26 rakuco search for other commits by this committer
Remove CMAKE_USE_PTHREAD from the ports using it.

This setting has not had any effect since r1.13 to bsd.cmake.mk, as it
was only useful when we supported FreeBSD < 7.

Approved by:    avilla (mentor), portmgr (miwi)
Feature safe:   yes
Original commit
Wednesday, 30 Jun 2010
04:18 sahil search for other commits by this committer
- Update to 0.4.2
- Add LICENSE

PR:             ports/147854
Submitted by:   Frank Wall <fw@moov.de> (maintainer)
Approved by:    itetcu@ (mentor)
Feature safe:   yes
Original commit
Tuesday, 11 May 2010
23:35 sahil search for other commits by this committer
- Fix build on 6.x

Reported by:    pointyhat via pav@
Approved by:    itetcu@ (mentor), Frank Wall <fw@moov.de> (maintainer)
Original commit
Sunday, 2 May 2010
19:28 sahil search for other commits by this committer
- Update to 0.4.1

PR:             ports/146113
Submitted by:   Frank Wall <fw@moov.de> (maintainer)
Approved by:    wxs@ (mentor)
Original commit
Tuesday, 27 Apr 2010
02:31 sahil search for other commits by this committer
spmfilter is a high-performance mail filtering framework, written in C.

It attempts to be a general filtering framework for any purposes.
Filtering mechanisms are provided by plugins, the API enables spmfilter
plugins to access messages as they are being processed by the MTA.
This allows them to examine and modify message content and
meta-information during the SMTP transaction. Plugins are loaded at
runtime and can be processed in any sequence, the processing chain
can also be altered by a single plugin

WWW: http://www.spmfilter.org/

PR:             ports/145673
Submitted by:   Frank Wall <fw at moov.de>
Reworked by:    sahil@ (myself)
Approved by:    wxs@ (mentor)
Original commit

Number of commits found: 37