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: lang/php53/Makefile

Number of commits found: 45

Wednesday, 25 Mar 2015
12:58 marino search for other commits by this committer
lang category: Remove $PTHREAD_LIBS

Note: ecl did not pass check-plist (pre-existing), PR 198897 submitted.

approved by:	PTHREAD blanket
Original commitRevision:382211 
Saturday, 21 Mar 2015
19:41 flo search for other commits by this committer
Add patches for the following CVEs

CVE-2015-2301
CVE-2014-9705
CVE-2015-0273

MFH:		2015Q1
Original commitRevision:381839 
18:40 marino search for other commits by this committer
php53 and fallout: Deprecate, set removal for 15 APR 2015

The PHP developers stopped providing security patches for the 5.3
branch on 14 August 2014.  They "strongly urge" to upgrade to current
versions "as using older versions may expose you to security
vulnerabilities and bugs that have been fixed in more recent versions"
of PHP.

The PHP53 branch was released from maintainership today, so it's being
deprecated with removal set for 15 April 2015.

There were only 8 ports limited to php53, six of which were pecl- ports.
These ports must be upgraded to use a later version of php (5.6 is
recommended) soon, or they will be removed with php53.

Note that all 8 ports incorrectly set the PHP_DEFAULT_VERSION, so this
was changed to use IGNORE_WITH_PHP instead while here.

PR:		198150
Original commitRevision:381813 
17:16 flo search for other commits by this committer
Give up maintainership
Original commitRevision:381799 
Tuesday, 24 Feb 2015
22:36 flo search for other commits by this committer
Add patches for
- CVE-2014-8142
- CVE-2015-0231

MFH:		2015Q1
Original commitRevision:379853 
Wednesday, 31 Dec 2014
00:35 sbruno search for other commits by this committer
Fix build for armv6 with an upstream commit:
http://git.php.net/?p=php-src.git;a=commitdiff;h=050aae2860e1c202e2e9db715beaa97d0a4c9c33;hp=e67a2b9e471a7bc0b774b9056bb38745b7187969#patch1

PR:		196067
Submitted by:	mikael.urankar@gmail.com
Reviewed by:	flo@
Approved by:	mentor (implicit)
Original commitRevision:375867 
Saturday, 27 Sep 2014
08:31 riggs search for other commits by this committer
Modernise databases/freetds port
- Retire databases/freetds-msdblib port
  (no longer needed, recently updated upstream version has necessary compat
   option which is now enabled in the freetds port)
- Fix LIB_DEPENDS in dependent ports
- Bump PORTREVISION in freetds and dependent ports

PR:		193850
Submitted by:	5u623l20@gmail.com (maintainer)
Original commitRevision:369379 
Wednesday, 17 Sep 2014
18:38 antoine search for other commits by this committer
Php extensions are built from the same source tarball as php and should
have the same CPE identifier

Discussed with:	des@
With hat:	portmgr
Original commitRevision:368411 
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 
Monday, 18 Aug 2014
21:19 flo search for other commits by this committer
Update to 5.3.29.

This is the last maintenance release of the 5.3 branch, see
http://php.net/archive/2014.php#id2014-08-14-1

Security:	d2a892b9-2605-11e4-9da0-00a0986f28c4
MFH:		2014Q3
Original commitRevision:365354 
Sunday, 6 Jul 2014
14:42 flo search for other commits by this committer
Merge a patch from php 5.4/5.5 to fix a security vulnerability. No CVE has
been assigned (yet?).

More info on https://www.sektioneins.de/en/blog/14-07-04-phpinfo-infoleak.html

PR:		191638
Submitted by:	logan@elandsys.com
Original commitRevision:360913 
Wednesday, 11 Jun 2014
14:50 tijl search for other commits by this committer
Support LIBS like LDFLAGS.

- Add LIBS="${LIBS}" to MAKE_ENV and CONFIGURE_ENV.
- Add an option helper for LIBS.
- Adjust all ports that already use LIBS.  Also remove references to
  PTHREAD_CFLAGS and PTHREAD_LIBS while here.
- Some ports did not support having a LIBS environment variable and
  required additional patches.

Somewhat simplified a linker command line looks like:

${CC} ${src_LDFLAGS} ${LDFLAGS} ${src_LIBS} ${LIBS}

where src_LDFLAGS and src_LIBS are controlled by upstream and LDFLAGS and
LIBS can be controlled by us.  If possible -L and -l flags need to be
added to LIBS to make sure they appear after any -L and -l flags set by
upstream.  Many ports currently add -L${LOCALBASE}/lib to LDFLAGS but this
may appear too early on the command line causing installed libraries to
be linked in instead of freshly built ones.

Additional changes:
benchmarks/netio: Replace WITH_IPV6 with an IPV6 option.
comms/gnokii: Replace some patches with USES=pathfix.  Also remove -fPIC.
graphics/gimageview: USES=libtool and install desktop file in DESKTOPDIR.
graphics/visionworkbench: Remove FreeBSD 7 support.
multimedia/libmovtar: New LIB_DEPENDS syntax.
multimedia/opencinematools: Use standard do-build.
net/siproxd: USES=libtool:keepla (port actually needs .la files for plugins)
net-mgmt/nagios: Remove -fPIC.
net-mgmt/nagios4: Remove -fPIC.
print/cups-base: Only add -lssp_nonshared on i386 and OSVERSION < 1000036.
security/p11-kit: Replace PTHREAD_LIBS in CONFIGURE_ENV with
ac_cv_func_pthread_mutexattr_init=no in CONFIGURE_ARGS.  This skips a test
in configure that falsely detects pthread_mutexattr_init in our libc.
sysutils/dar: Fix iconv detection.
x11/rxvt-unicode: Remove -lstdc++ and patch configure to remove a FreeBSD
hack and use $CXX as linker as on other platforms.

PR:		190592
Exp-run by:	antoine
Approved by:	portmgr (antoine)
Original commitRevision:357486 
Wednesday, 4 Jun 2014
16:54 des search for other commits by this committer
Add CPE information.

With hat:	ports-secteam
Original commitRevision:356521 
Friday, 2 May 2014
17:48 flo search for other commits by this committer
- Fix CVE-2014-0185 via patch until 5.3.29 is released
- Use DEFAULT_VERSIONS [1]

PR:		ports/188061 [1]
Submitted by:	Spil <spil.oss@gmail.com> [1]
MFH:		2014Q2
Original commitRevision:352831 
Wednesday, 16 Apr 2014
18:28 zeising search for other commits by this committer
The FreeBSD x11@ and graphics team proudly presents
a zeising, kwm production, with help from dumbbell, bdrewery:

NEW XORG ON FREEBSD 9-STABLE AND 10-STABLE

This update switches over to use the new xorg stack by default on FreeBSD 9
and 10 stable, on osversions where vt(9) is available.
It is still possible to use the old stack by specifying WITHOUT_NEW_XORG in
/etc/make.conf .
FreeBSD 8-STABLE and released versions of FreeBSD still use
the old version.
A package repository with binary packages for new xorg will
be available soon.

This patch also contains updates of libxcb and related ports, pixman, as well
as some drivers and utilities.

Bump portrevisions for xf86-* ports, as well as virtualbox-ose-additions due
to xserver version change.

Apart from these updates, the way shared libraries are handled has been
changed for all xorg ports, as well as libxml2 and freetype, which means
ltverhack is gone and as a consequence shared libraries have been bumped.
The plan is that this change will make library bumps less likely in the
future.
All affected ports have had their portrevisions bumped as a consequence of
this.

Fix some issues where WITH_NEW_XORG weren't detected properly on CURRENT.

Update instructions, hardware support, and more notes can be found on
https://wiki.freebsd.org/Graphics

Thanks to:	all testers, bdrewery and the FreeBSD x11@ team
exp-run by:	bdrewery [1]
PR:		ports/187602 [1]
Approved by:	portmgr (bdrewery), core (jhb)
Original commitRevision:351411 
Tuesday, 24 Dec 2013
21:22 kwm search for other commits by this committer
Update freetype to 2.5.2.

Remove patch to add -I/usr/local/include in freetype-config --cflags. If
ports need extra headers they should look for them, and not get them via
a side-effect.

Freetype had a header resuffle in 2.5.1, patch ports to use the new header
style.

Thanks go to bdrewery for the two exp-runs and rakuco for helping me with
some troublesome cmake ports.

PR:		ports/184587
Original commitRevision:337385 
Saturday, 14 Dec 2013
23:30 flo search for other commits by this committer
Update to 5.3.28

Security:	47b4e713-6513-11e3-868f-0025905a4771
Original commitRevision:336500 
Friday, 1 Nov 2013
23:49 flo search for other commits by this committer
- convert php53 ports to STAGE
- convert to new LIB_DEPENDS format
Original commitRevision:332429 
Friday, 20 Sep 2013
19:53 bapt search for other commits by this committer
Add NO_STAGE all over the place in preparation for the staging support (cat:
lang)
Original commitRevision:327741 
Wednesday, 14 Aug 2013
22:35 ak search for other commits by this committer
- Remove MAKE_JOBS_SAFE variable

Approved by:	portmgr (bdrewery)
Original commitRevision:324744 
Saturday, 13 Jul 2013
15:21 flo search for other commits by this committer
Update to 5.3.27

Please Note: This will be the last regular release of the PHP 5.3 series.
All users of PHP are encouraged to upgrade to PHP 5.4 or PHP 5.5. The PHP
5.3 series will receive only security fixes for the next year.

I will maintain PHP 5.3 until the first not fixed vulnerability is found.
At that point I will deprecate the port with a 2 months notice, if no
other volunteer is found in that time the port will be removed.
Original commitRevision:322936 
Friday, 7 Jun 2013
15:19 flo search for other commits by this committer
Update to 5.3.26

Security:	59e7163c-cf84-11e2-907b-0025905a4770
Original commitRevision:320210 
Thursday, 16 May 2013
02:12 flo search for other commits by this committer
Update to 5.3.25
Original commitRevision:318269 
Saturday, 4 May 2013
22:48 flo search for other commits by this committer
Fix installation of ports that rely on cp -n for installing files. r245960
changed cp to exit with a non-zero exit code if the file exists and is not
overwritten thus causing ports to fail installing when e.g. trying to cp
.default -> .conf files that already exist.

We just ignore the error and continue, as we used to.

Reported by:	jaset
Approved by:	portmgr (bapt)
Original commitRevision:317389 
Monday, 22 Apr 2013
20:30 flo search for other commits by this committer
Update to 5.3.24

PR:		ports/177826
Submitted by:	Svyatoslav Lempert <svyatoslav.lempert@gmail.com>
Original commitRevision:316271 
Monday, 18 Mar 2013
20:46 flo search for other commits by this committer
Update to 5.3.23

Security:	1d23109a-9005-11e2-9602-d43d7e0c7c02
Original commitRevision:314596 
Monday, 25 Feb 2013
16:48 flo search for other commits by this committer
- enable LINKTHR OPTION by default as was done when lang/php5 was updated
  to 5.4, this should prevent segfaults when modules use libs with thread
  support enabled.

Discussed with:	ale
Original commitRevision:312933 
Tuesday, 22 Jan 2013
22:01 flo search for other commits by this committer
Update to 5.3.21
Original commitRevision:310837 
Wednesday, 9 Jan 2013
21:58 flo search for other commits by this committer
Restore mistakenly removed  PORTREVISION?=
Original commitRevision:310164 
21:55 flo search for other commits by this committer
Update to 5.3.20
Original commitRevision:310163 
Monday, 10 Dec 2012
19:11 mm search for other commits by this committer
Update PCRE to 8.32
Introduces the UTF-32 library pcre32
Bump PORTREVISION in dependent ports
Original commitRevision:308630 
Monday, 26 Nov 2012
21:29 flo search for other commits by this committer
Update to 5.3.19

Feature safe:	yes
Original commitRevision:307801 
Wednesday, 31 Oct 2012
23:17 flo search for other commits by this committer
Rename the suhosin patch to suhosin-patch-5.3.x-0.9.10.1.patch.gz to prevent
SHA256 and SIZE mismatches with the previous version. This is required as in php
5.3.18 2 copyright notices were updated with the current Year numbers, this
prevents the stock suhosin patch to apply.

Temporarily add my public_html on freefall to PATCH_SITES, as the
MASTER_SITE_LOCAL sync does not seem to work currently.

The diff between the latest available stock suhosin patch and the patch we apply
to our port can be found here:

http://people.freebsd.org/~flo/suhosin.diff

Reported by:	bdrewery
Feature safe:	yes
Original commitRevision:306772 
11:16 flo search for other commits by this committer
Update to 5.3.18

Feature safe:	yes
Original commitRevision:306746 
Wednesday, 19 Sep 2012
16:21 flo search for other commits by this committer
Update to 5.3.17
Original commitRevision:304535 
Wednesday, 22 Aug 2012
20:40 flo search for other commits by this committer
- Update to 5.3.16
- Add options PDO_MYSQL and PDO_PGSQL to php53-extensions [1]

PR:		ports/170401 [1]
Submitted by:	bdrewery [1]
Original commit
Saturday, 18 Aug 2012
14:29 ohauer search for other commits by this committer
- remove www/apache20 and devel/apr0
- s/USE_APACHE= 20+/USE_APACHE= 22+/
- unify s/YES/yes/
- cleanup APACHE_VERSION <= 22 usage
- add entry to MOVED

with hat apache@
Original commit
Monday, 23 Jul 2012
14:39 flo search for other commits by this committer
- update to 5.3.15
- document php vulnerabilities

Security:	http://www.vuxml.org/freebsd/bdab0acd-d4cd-11e1-8a1c-14dae9ebcf89.html
Original commit
Thursday, 12 Jul 2012
06:32 flo search for other commits by this committer
Fix copy & paste bug

Submitted by:   ohauer
Original commit
Wednesday, 11 Jul 2012
23:48 flo search for other commits by this committer
Convert to optionsNG
Original commit
Tuesday, 19 Jun 2012
19:39 flo search for other commits by this committer
Update to 5.3.14
Original commit
Friday, 18 May 2012
09:33 flo search for other commits by this committer
Fix the name of the apache module, it should be libphp5.so. This also fixes
packaging if WITH_APACHE is defined

PR:             ports/168099
Reported by:    brd, Spil <spil.oss@gmail.com>
Original commit
Wednesday, 16 May 2012
09:46 flo search for other commits by this committer
readd php 5.3.13 and all its modules as php53*
Original commit
Wednesday, 2 May 2012
21:22 flo search for other commits by this committer
- take maintainership [1]
- merge update to 5.3.11 from lang/php5
- mark IGNORE until lang/php5 is updated to 5.4.x and all the php53-* ports will
  be committed

Approved by:    ale [1]
Original commit
21:10 flo search for other commits by this committer
forced commit to note the repo copy of lang/php5 to lang/php53
Original commit

Number of commits found: 45