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) combinatio for a given watch list. This is what FreshPorts will look for.

non port: russian/p5-XML-Parser-encodings/Makefile

Number of commits found: 24

Wednesday, 20 Jul 2022
14:22 Tobias C. Berner (tcberner) search for other commits by this committer
russian: remove 'Created by' lines

A big Thank You to the original contributors of these ports:

  *  Alex Kapranoff <kapr@crosswinds.net>
  *  Alexander Logvinov <avl@FreeBSD.org>
  *  Andrey Fesenko <andrey@bsdnir.info>
  *  Anes Mukhametov <anes@anes.su>
  *  Boris Samorodov <bsam@FreeBSD.org>
  *  Dmitry Liakh <dliakh@ukr.net>
  *  Dmitry Morozovsky <marck@rinet.ru>
  *  Gvozdikov Veniamin <g.veniamin@googlemail.com>
  *  Igor Pokrovsky <tiamat@comset.net>
  *  Igor Vinokurov <igor@zynaps.ru>
  *  Michael Vasilenko <acid@stu.cn.ua>
  *  Mihail Timofeev <9267096@gmail.com>
  *  Roman Bogorodskiy <bogorodskiy@inbox.ru>
  *  Sergey Kandaurov <pluknet@gmail.com>
  *  Sergey Skvortsov <skv@protey.ru>
  *  Thierry Thomas <thierry@pompo.net>
  *  Vyacheslav Anikin <anikinsl@gmail.com>
  *  ache
  *  mi@aldan.algebra.com

With hat:	portmgr
commit hash: f27f23bd9fcb82e1ef5f2217b24444b9392a02c4 commit hash: f27f23bd9fcb82e1ef5f2217b24444b9392a02c4 commit hash: f27f23bd9fcb82e1ef5f2217b24444b9392a02c4 commit hash: f27f23bd9fcb82e1ef5f2217b24444b9392a02c4 f27f23b
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, 9 Jul 2018
08:40 mat search for other commits by this committer
Remove all := from BUILD_DEPENDS, here are never needed.

While there, cleanup, and sort depends.

When build and run dependencies are the same, there are three ways to
avoid duplicating the list while not adding the framework added
BUILD_DEPENDS to the RUN_DEPENDS.  In order of preference, they are:

1) use RUN_DEPENDS to set BUILD_DEPENDS:

BUILD_DEPENDS=	${RUN_DEPENDS}
RUN_DEPENDS=	foo:bar/baz

2) create another variable and use it:

MY_DEPENDS= foo:bar/baz
BUILD_DEPENDS=	${MY_DEPENDS}
RUN_DEPENDS=	${MY_DEPENDS}

3) use BUILD_DEPENDS to set RUN_DEPENDS and force evaluation:

BUILD_DEPENDS=	foo:bar/baz
RUN_DEPENDS:=	${BUILD_DEPENDS}

Sponsored by:	Absolight
Original commitRevision:474242 
Friday, 1 Apr 2016
14:25 mat search for other commits by this committer
Remove ${PORTSDIR}/ from dependencies, categories r, s, t, and u.

With hat:	portmgr
Sponsored by:	Absolight
Original commitRevision:412349 
Thursday, 5 Nov 2015
12:36 mat search for other commits by this committer
Fix ports that confused the meaning of WRKDIR and WRKSRC.

PR:		204056
Submitted by:	mat
Reviewed by:	bapt
Sponsored by:	Absolight
Differential Revision:	https://reviews.freebsd.org/D2735
Original commitRevision:400848 
Friday, 13 Mar 2015
17:29 adamw search for other commits by this committer
Clean up the rest of the perl@ Makefiles a bit.

- Remove dependencies on modules distributed as part of perl core
- Remove references to FreeBSD < 8 and perl < 5.16
- Ensure that DOCS and EXAMPLES options exist for ports installing
  PORTDOCS or PORTEXAMPLES
- Reduce unnecessary inclusions of bsd.port.options.mk by using
  OPTIONS helpers and the like
- Fix some cases where dependencies were only assigned to BUILD_DEPENDS
- Fix a few of the cases where dependencies were only assigned to RUN_DEPENDS.
  This one happens in many, many ports. I only applied it in cases where
  it interfered with 'make test' but it should maybe be done more generally.
- Mute ${MKDIR} in installation
- Parethesize compound commands
- In www/p5-URI-Fetch, remove the ZLIB option that wasn't used
Original commitRevision:381221 
Wednesday, 26 Nov 2014
13:08 mat search for other commits by this committer
Change the way Perl modules are installed, update the default Perl to 5.18.

Before, we had:

  site_perl :           lib/perl5/site_perl/5.18
  site_perl/perl_arch : lib/perl5/site_perl/5.18/mach
  perl_man3 :           lib/perl5/5.18/man/man3

Now we have:

  site_perl : lib/perl5/site_perl
  site_arch : lib/perl5/site_perl/mach/5.18
  perl_man3 : lib/perl5/site_perl/man/man3

Modules without any .so will be installed at the same place regardless of the
Perl version, minimizing the upgrade when the major Perl version is changed.
It uses a version dependent directory for modules with compiled bits.

As PERL_ARCH is no longer needed in plists, it has been removed from
PLIST_SUB.

The USE_PERL5=fixpacklist keyword is removed, the .packlist file is now
always removed, as is perllocal.pod.

The old site_perl and site_perl/arch directories have been kept in the
default Perl @INC for all Perl ports, and will be phased out as these old
Perl versions expire.

PR:		194969
Differential Revision:	https://reviews.freebsd.org/D1019
Exp-run by:	antoine
Reviewed by:	perl@
Approved by:	portmgr
Original commitRevision:373448 
Thursday, 6 Feb 2014
13:37 ehaupt search for other commits by this committer
- Support staging
- Define language specific package prefix
Original commitRevision:343075 
Friday, 20 Sep 2013
22:46 bapt search for other commits by this committer
Add NO_STAGE all over the place in preparation for the staging support (cat:
russian)
Original commitRevision:327766 
Saturday, 3 Aug 2013
13:52 mat search for other commits by this committer
Missed that one.
Original commitRevision:324193 
Friday, 29 Mar 2013
00:44 eadler search for other commits by this committer
For perl@ owned ports:

- Fix COMMENT
- Trim header
Original commitRevision:315509 
Tuesday, 24 Jul 2012
21:27 cs search for other commits by this committer
Fix typos in COMMENT
Original commit
Friday, 8 Jun 2012
12:47 culot search for other commits by this committer
- Remove SITE_PERL from *_DEPENDS

Submitted by:   az@
Original commit
Monday, 7 May 2012
15:42 skv search for other commits by this committer
Pass maintainership of almost of my "p5-*" ports to "perl@".

(I hope updating of them will be improved).
Original commit
Sunday, 5 Dec 2010
14:28 skv search for other commits by this committer
Remove encodings "koi8-r" and "windows-1251" because
they are shipped with XML-Parser since 2.40
Original commit
Tuesday, 19 Oct 2010
21:28 pav search for other commits by this committer
- Mark BROKEN: bad plist

Reported by:    pointyhat
Original commit
Tuesday, 24 Feb 2009
13:29 skv search for other commits by this committer
Use variables SITE_PERL and SITE_PERL_REL where appropriate.
Original commit
Sunday, 7 Oct 2007
05:45 linimon search for other commits by this committer
Set USE_PERL5/WANT_PERL as appropriate, for ports that either depend on
perl unconditonally, or conditionally.  To be able to conditionalize the
inclusion of bsd.perl.mk, they now need to be defined before the inclusion
of bsd.port.pre.mk.

Hat:            portmgr
Original commit
Friday, 24 Oct 2003
12:05 ijliao search for other commits by this committer
utilize SITE_PERL

PR:             58166
Submitted by:   Cheng-Lung Sung <clsung@dragon2.net>
Original commit
Friday, 7 Mar 2003
06:09 ade search for other commits by this committer
Clear moonlight beckons.
Requiem mors pacem pkg-comment,
And be calm ports tree.

E Nomini Patri, E Fili, E Spiritu Sancti.
Original commit
Friday, 7 Jun 2002
11:19 skv search for other commits by this committer
Minor clean.
Original commit
Monday, 21 Jan 2002
11:07 skv search for other commits by this committer
Minor fixes.    
Original commit
Sunday, 2 Dec 2001
18:24 steve search for other commits by this committer
Update to version 1.01.    
Original commit
Tuesday, 30 Oct 2001
20:48 tobez search for other commits by this committer
Add p5-XML-Parser-encodings 1.00, additional russian encodings for  
XML::Parser.    
Original commit

Number of commits found: 24