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/heirloom-mailx/Makefile

Number of commits found: 35

Wednesday, 10 Jan 2024
13:13 Baptiste Daroussin (bapt) search for other commits by this committer
MAN?PREFIX: eleminate its usage  and move man to share/man
commit hash: 64631af5a788e3083ad88fb728a95a3499015a6d commit hash: 64631af5a788e3083ad88fb728a95a3499015a6d commit hash: 64631af5a788e3083ad88fb728a95a3499015a6d commit hash: 64631af5a788e3083ad88fb728a95a3499015a6d 64631af
Monday, 6 Nov 2023
10:03 Rodrigo Osorio (rodrigo) search for other commits by this committer
*/*: Update WWW to use HTTPS for sourceforge.net projects

Homepage link is permanent redirected to its HTTPS counterpart
Issue reported by repology : https://repology.org/repository/freebsd/problems

Approved by:	portmgr (blanket)
PR:		274888
commit hash: 06df180a9e39055026499a326ef67812801a8919 commit hash: 06df180a9e39055026499a326ef67812801a8919 commit hash: 06df180a9e39055026499a326ef67812801a8919 commit hash: 06df180a9e39055026499a326ef67812801a8919 06df180
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, 27 Jan 2022
02:36 Cy Schubert (cy) search for other commits by this committer Author: Andrea Biardi
mail/heirloom-mailx: Fix wrong UTC offset for Europe/Dublin

Somewhere around 2018, the tzdata maintainers (IANA) corrected a
historical mistake with the Europe/Dublin timezone. The mistake was
rooted in a misunderstanding of whether IST meant "Irish Summer Time"
or "Irish Standard Time".

The problem was discussed at great length
(http://mm.icann.org/pipermail/tz/2018-January/thread.html) and it was
concluded that IST really meant Irish *Standard* Time (in constrast with,
say, British *Summer* Time), and that this standard time is defined as
UTC+0100.

This corresponds to the article at
https://en.wikipedia.org/wiki/Time_in_the_Republic_of_Ireland and the
notes at https://en.wikipedia.org/wiki/Winter_time_(clock_lag); the
source archive of tzdata has a long section dedicated to this problem and
a large set of official references and links to www.irishstatutebook.ie.

Once the question was settled, the only possible solution for keeping
the Irish local time in sync with the rest of the world (timezones aside,
the local time in Ireland - as understood by common people - is the same
as in London and Belfast) was for IANA to _reverse_ the functioning of
the DST flag for Ireland. The result is that in the current IANA timezone
database (2021e), Europe/Dublin has DST applied in *winter*, with an
adjustment of -1h (that is, negative).

Digging deeper, one uncovers that there are a few other countries that
have (or once had) the same time-switch mechanism as Ireland; amongst
others, https://github.com/MenoData/Time4J/issues/742 also concedes that
negative DST is a reality.

In heirloom mailx, the logic that works out the UTC offset does the right
thing up to a point (November 2021, Ireland = UTC+0100), but then upon
inspecting tm->tm_isdst it sees that DST is in effect (remember, flag has
been reversed, so DST in Ireland is on in winter time) it adds one hour
(it should subtract one, because the adjustment is negative, but mailx
doesn't know).

PR:		260137
Submitted by:	Andrea Biardi <a.biardi@tiscali.it>
Reported by:	Andrea Biardi <a.biardi@tiscali.it>
MFH:		2022Q1
commit hash: c4f80928aed6891068ad6cf9be8c4aaff2a62e24 commit hash: c4f80928aed6891068ad6cf9be8c4aaff2a62e24 commit hash: c4f80928aed6891068ad6cf9be8c4aaff2a62e24 commit hash: c4f80928aed6891068ad6cf9be8c4aaff2a62e24 c4f8092
Wednesday, 26 Jan 2022
22:30 Cy Schubert (cy) search for other commits by this committer
mail/heirloom-mailx: Use the proper progname in argv[0]

When argv[0] does not match that af the program name passed to
execv(2), mailwrapper cannot determine which application to call
in its translation table resulting in:

mailwrapper: no mapping in /etc/mail/mailer.conf

MFH:		2022Q1
commit hash: 849299d0d6cc566e3cf9681755dbcfdb8c38b9a3 commit hash: 849299d0d6cc566e3cf9681755dbcfdb8c38b9a3 commit hash: 849299d0d6cc566e3cf9681755dbcfdb8c38b9a3 commit hash: 849299d0d6cc566e3cf9681755dbcfdb8c38b9a3 849299d
Friday, 29 Oct 2021
09:50 Stefan Eßer (se) search for other commits by this committer
*/*: Remove redundant '-[0-9]*' from CONFLICTS

The conflict checks compare the patterns first against the package
names without version (as reported by "pkg query "%n"), then - if
there was no match - agsinst the full package names including the
version (as reported by "pkg query "%n-%v").

Many CONFLICTS definitions used patterns like "bash-[0-9]*" to filter
for the bash package in any version. But that pattern is functionally
identical with just "bash".

Approved by:	portmgr (blanket)
commit hash: 819f25b36d45b8ac5593ec8e6f470d9ad454b08a commit hash: 819f25b36d45b8ac5593ec8e6f470d9ad454b08a commit hash: 819f25b36d45b8ac5593ec8e6f470d9ad454b08a commit hash: 819f25b36d45b8ac5593ec8e6f470d9ad454b08a 819f25b
Friday, 8 Oct 2021
11:24 Bernhard Froehlich (decke) search for other commits by this committer
mail/heirloom-mailx: Add CPE information

Approved by:    portmgr (blanket)
commit hash: cb3fe262a8d5fe7adf54ab6d20d576eaf4bb9605 commit hash: cb3fe262a8d5fe7adf54ab6d20d576eaf4bb9605 commit hash: cb3fe262a8d5fe7adf54ab6d20d576eaf4bb9605 commit hash: cb3fe262a8d5fe7adf54ab6d20d576eaf4bb9605 cb3fe26
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, 9 Oct 2019
12:06 bapt search for other commits by this committer
Drop the ipv6 virtual category for m* category as it is not relevant anymore
Original commitRevision:514142 
Monday, 15 Oct 2018
02:56 cy search for other commits by this committer
Jettison SSLv2 support. Not only does this allow mail/mailx to
build using openssl111 in base but SSLv2 is insecure.
Original commitRevision:482131 
Wednesday, 21 Jun 2017
02:30 cy search for other commits by this committer
Switch to USES=localbase.
Original commitRevision:444007 
Monday, 4 Jul 2016
19:23 cy search for other commits by this committer
Assume maintainership.

PR:		210762
Original commitRevision:418052 
Saturday, 2 Jul 2016
11:22 brnrd search for other commits by this committer
mail/heirloom-mailx: Fix build without EGD

  - Add patch for building without EGD (OpenSSL 1.1/LibreSSL)
  - Move from USE_OPENSSL to USES=ssl

PR:		205540
Approved by:	Maintainer timeout
Original commitRevision:417925 
Wednesday, 4 Feb 2015
19:33 pawel search for other commits by this committer
Fix path to sendmail binary that was accidentally removed
during a previous update

PR:		196082
Submitted by:	Jamie Landeg-Jones <jamie@dyslexicfish.net> (maintainer)
Original commitRevision:378412 
Tuesday, 5 Aug 2014
00:20 pi search for other commits by this committer
mail/heirloom-mailx: remove SENDMAIL option, wrapper is sufficient

PR:		190134
Approved by:	jamie@dyslexicfish.net (maintainer)
Original commitRevision:364070 
Monday, 4 Aug 2014
09:49 pi search for other commits by this committer
mail/heirloom-mailx: add option to use sendmail from ports, and take ownership

PR:		190134
Submitted by:	Jamie Landeg-Jones <jamie@dyslexicfish.net>
Original commitRevision:363985 
Sunday, 8 Jun 2014
13:19 vanilla search for other commits by this committer
1: Stagify.
2: due pkg-plist changed, bump version.
Original commitRevision:357014 
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 
Saturday, 27 Apr 2013
11:59 mva search for other commits by this committer
- Convert USE_ICONV=yes to USES=iconv
- Change USE_GNOME=pkgconfig|gnomehack to USES=pathfix|pkgconfig while here

Reviewed by:	zeising
Original commitRevision:316662 
Wednesday, 20 Feb 2013
20:11 bapt search for other commits by this committer
Convert to new options framework
Original commitRevision:312658 
16:08 fluffy search for other commits by this committer
- Reassign ports from avl@ back to pool at his request.

Submitted by:	avl via IM
Approved by:	avl via IM
Original commitRevision:312628 
Saturday, 28 Jul 2012
15:57 cs search for other commits by this committer
Fix typos in COMMENT

Approved by:	portmgr@ (implicit)
Original commit
Friday, 23 Sep 2011
22:26 amdmi3 search for other commits by this committer
- Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)
- Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead

PR:             157936
Submitted by:   myself
Exp-runs by:    pav
Approved by:    pav
Original commit
Tuesday, 11 May 2010
22:05 avl search for other commits by this committer
- Add a patch to fix "unignore" and similar commands
- Bump PORTREVISION

PR:             ports/146280
Submitted by:   B. Smith <anon_101100 at yahoo.com>
Obtained from:  developers cvs
Original commit
Wednesday, 14 Oct 2009
12:24 avl search for other commits by this committer
- Fix wrong PKGNAME

PR:             ports/139577
Submitted by:   Jamie Landeg Jones <jamie at bishopston.net>
Original commit
Saturday, 22 Aug 2009
00:28 amdmi3 search for other commits by this committer
- Switch SourceForge ports to the new File Release System: categories starting
with M
Original commit
Thursday, 28 May 2009
20:44 avl search for other commits by this committer
Change MAINTAINER on my ports to my FreeBSD email address

Approved by:    tabthorpe (mentor)
Original commit
Tuesday, 31 Mar 2009
08:57 miwi search for other commits by this committer
- Make MAKE_JOBS_UNSAFE

PR:             133125
Submitted by:   Alexander Logvinov <ports@logvinov.com> (maintainer)
Original commit
Monday, 1 Dec 2008
14:23 amdmi3 search for other commits by this committer
- Add mutual conflicts to mail/heirloom-mailx and mail/mailx: both install
bin/mailx

PR:             129332
Submitted by:   Alexander Logvinov <ports at logvinov dot com> (maintainer of
mail/heirloom-mailx)
Reported by:    Evgeniy Pismenchuk <evpian at gmail dot com>
Original commit
Friday, 15 Aug 2008
00:27 edwin search for other commits by this committer
[maintainer update] mail/heirloom-mailx: update to 12.4

        Update to 12.4
        See http://heirloom.sourceforge.net/mailx/ChangeLog

        Add option for IPv6 Support

PR:             ports/126293
Submitted by:   Alexander Logvinov <ports@logvinov.com>
Original commit
Monday, 16 Jul 2007
07:35 miwi search for other commits by this committer
- Update to 12.3

PR:             114608
Submitted by:   Alexander Logvinov <ports@logvinov.com> (maintainer)
Original commit
Monday, 8 Jan 2007
08:46 clsung search for other commits by this committer
- Update to 12.2

PR:             ports/107670
Submitted by:   maintainer (Alexander Logvinov)
Original commit
Wednesday, 20 Dec 2006
12:30 gabor search for other commits by this committer
- Add ipv6 to CATEGORIES

PR:             ports/106893
Submitted by:   Janos Mohacsi <janos.mohacsi@bsd.hu>
Approved by:    erwin (mentor),
                Alexander Logvinov <ports@logvinov.com> (maintainer)
Original commit
Sunday, 5 Nov 2006
17:55 alepulver search for other commits by this committer
- Complete repocopy of mail/nail to mail/heirloom-mailx.

PR:             ports/104693
Submitted by:   Alexander Logvinov <ports@logvinov.com> (maintainer)
Original commit

Number of commits found: 35