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: multimedia/freevo/Makefile

Number of commits found: 54

Tuesday, 24 Mar 2020
19:54 antoine search for other commits by this committer
Convert the tree to use PY_PILLOW

With hat:	portmgr
Originally submitted by:	kai
Original commitRevision:529063 
Sunday, 8 Mar 2020
17:01 antoine search for other commits by this committer
Deprecate some ports using deprecated version of python

With hat:	portmgr
Original commitRevision:528058 
Monday, 24 Feb 2020
11:36 kai search for other commits by this committer
graphics/py-pillow: Update to 7.0.0

* Repo-Copy the Pillow 6.2.2 release to graphics/py-pillow6 to retain
  backwards compatibility for Python 2 consumers as the Pillow 7.0.0 release
  dropped the support for Python 2.

* Apply conditional statements to use either Pillow 7.x or Pillow 6.x for
  consumers that can be built for Python 2 or newer.

* Exceptions are ports that can be built only for either Python 2 or
  Python 3.  For the first case, consumers are just assigned to the
  repo-copied graphics/py-pillow6.

* Also remove Pillow from BUILD_DEPENDS of math/py-PyWavelets as it is not
  listed in setup.py as a build dependency [1] and relax the version
  requirements of Pillow for www/py-wagtail.

Release Notes:

* https://pillow.readthedocs.io/en/latest/releasenotes/index.html

Backward Incompatible Changes (7.0.0):

*
https://pillow.readthedocs.io/en/latest/releasenotes/7.0.0.html#backwards-incompatible-changes

Detailed Changelog:

* https://github.com/python-pillow/Pillow/blob/7.0.0/CHANGES.rst

PR:		243665
Submitted by:	sunpoet (patch for 7.0.0 and repo-copied version)
Reviewed by:	koobs [1], sunpoet
Approved by:	koobs (maintainer)
Differential Revision:	https://reviews.freebsd.org/D23713
Original commitRevision:526962 
Friday, 26 Jul 2019
20:46 gerald search for other commits by this committer
Bump PORTREVISION for ports depending on the canonical version of GCC
as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3
to GCC 9.1 under most circumstances now after revision 507371.

This includes ports
 - with USE_GCC=yes or USE_GCC=any,
 - with USES=fortran,
 - using Mk/bsd.octave.mk which in turn features USES=fortran, and
 - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang,
   c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib
plus, everything INDEX-11 shows with a dependency on lang/gcc9 now.

PR:		238330
Original commitRevision:507372 
Wednesday, 12 Dec 2018
01:35 gerald search for other commits by this committer
Bump PORTREVISION for ports depending on the canonical version of GCC
defined via Mk/bsd.default-versions.mk which has moved from GCC 7.4 t
GCC 8.2 under most circumstances.

This includes ports
 - with USE_GCC=yes or USE_GCC=any,
 - with USES=fortran,
 - using Mk/bsd.octave.mk which in turn features USES=fortran, and
 - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang,
   c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib
plus, as a double check, everything INDEX-11 showed depending on lang/gcc7.

PR:		231590
Original commitRevision:487272 
Saturday, 28 Jul 2018
23:23 yuri search for other commits by this committer
Replace explicit devel/py-game dependencies with ${PYGAME} in 7 ports

This is to simplify the pending rename devel/py-game -> devel/py-pygame in
bug#230115.

PR:		230118 230119
Approved by:	portmgr
Original commitRevision:475617 
Wednesday, 20 Jun 2018
17:05 mat search for other commits by this committer
Use PY_FLAVOR for dependencies.

FLAVOR is the current port's flavor, it should not be used outside of
this scope.

Sponsored by:	Absolight
Original commitRevision:472884 
Saturday, 10 Mar 2018
17:46 gerald search for other commits by this committer
Bump PORTREVISIONs of all users of math/mpc that we just updated to
version 1.1.0 (via revision 464079).
Original commitRevision:464084 
Monday, 19 Feb 2018
11:10 antoine search for other commits by this committer
Reduce dependency on the python2 metaport

PR:		225752
Submitted by:	Yasuhiro KIMURA
Original commitRevision:462307 
Thursday, 30 Nov 2017
15:50 mat search for other commits by this committer
Convert Python ports to FLAVORS.

  Ports using USE_PYTHON=distutils are now flavored.  They will
  automatically get flavors (py27, py34, py35, py36) depending on what
  versions they support.

  There is also a USE_PYTHON=flavors for ports that do not use distutils
  but need FLAVORS to be set.  A USE_PYTHON=noflavors can be set if
  using distutils but flavors are not wanted.

  A new USE_PYTHON=optsuffix that will add PYTHON_PKGNAMESUFFIX has been
  added to cope with Python ports that did not have the Python
  PKGNAMEPREFIX but are flavored.

  USES=python now also exports a PY_FLAVOR variable that contains the
  current python flavor.  It can be used in dependency lines when the
  port itself is not python flavored.  For example, deskutils/calibre.

  By default, all the flavors are generated.  To only generate flavors
  for the versions in PYTHON2_DEFAULT and PYTHON3_DEFAULT, define
  BUILD_DEFAULT_PYTHON_FLAVORS in your make.conf.

  In all the ports with Python dependencies, the *_DEPENDS entries MUST
  end with the flavor so that the framework knows which to build/use.
  This is done by appending '@${PY_FLAVOR}' after the origin (or
  @${FLAVOR} if in a Python module with Python flavors, as the content
  will be the same).  For example:

    RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR}

PR:		223071
Reviewed by:	portmgr, python
Sponsored by:	Absolight
Differential Revision:	https://reviews.freebsd.org/D12464
Original commitRevision:455210 
Sunday, 27 Aug 2017
17:32 sunpoet search for other commits by this committer
Change from USES=twisted to devel/py-twisted

- Bump PORTREVISION for dependency change

PR:		221653
Submitted by:	sunpoet (myself)
Approved by:	J.R. Oldroyd <fbsd@opal.com> (maintainer)
Original commitRevision:448832 
Wednesday, 26 Apr 2017
12:18 miwi search for other commits by this committer
- Fix shebangs

Submitted by:	Jochen Neumeister
Original commitRevision:439443 
Tuesday, 25 Apr 2017
08:20 riggs search for other commits by this committer
Chase ffmpeg 3.3 update (ABI changes)

PR:		218658
Submitted by:	riggs
Original commitRevision:439367 
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, 15 Sep 2015
13:23 rm search for other commits by this committer
multimedia/freevo: fix runtime with newer twisted lib

- add patch to fix runtime with modern twisted.web
- remove useless dependency on py-xml - it was successfully tested by
  maintainer with stock python xml package

While here:
- add NO_ARCH
- limit python version to 2.x
- modernize pkg-plist

Submitted by:	J.R. Oldroyd <fbsd@opal.com> (maintainer)
MFH:		2015Q3
Original commitRevision:396959 
Monday, 6 Oct 2014
15:46 wg search for other commits by this committer
multimedia/freevo: switch from py-imaging to py-pillow

With hat:	python
Approved by:	portmgr (bdrewery, implicit)
Original commitRevision:370189 
Wednesday, 10 Sep 2014
20:50 gerald search for other commits by this committer
Update the default version of GCC in the Ports Collection from GCC 4.7.4
to GCC 4.8.3.

Part II, Bump PORTREVISIONs.

PR:		192025
Tested by:	antoine (-exp runs)
Approved by:	portmgr (implicit)
Original commitRevision:367888 
Monday, 26 May 2014
17:42 riggs search for other commits by this committer
UIDs:
- Add freevo

GIDs:
- Add freevo

multimedia/freevo
- Handle user/group creation via Makefile variables
- Stagify
- Add License
- Bump PORTREVISION
- Simplify install
  - remove pkg-install.in
  - handle private subdirs in /var via pkg-plist and Makefile
  - remove user/group handling in pkg-deinstall.in

PR:		ports/189995
Submitted by:	"J.R. Oldroyd" <fbsd@opal.com> (maintainer)
Approved by:	thierry (mentor), maintainer
Original commitRevision:355422 
Monday, 10 Mar 2014
20:55 gerald search for other commits by this committer
Update the default version of GCC used in the Ports Collection from
GCC 4.6.4 to GCC 4.7.3.  This entails updating the lang/gcc port as
well as changing the default in Mk/bsd.default-versions.mk.

Part II, Bump PORTREVISIONs.

PR:		182136
Supported by:	Christoph Moench-Tegeder <cmt@burggraben.net> (fixing many ports)
Tested by:	bdrewery (two -exp runs)
Original commitRevision:347809 
Friday, 21 Feb 2014
13:38 ehaupt search for other commits by this committer
Remove trailing whitespaces from category multimedia
Original commitRevision:345422 
Monday, 10 Feb 2014
13:54 ehaupt search for other commits by this committer
According to the Porter's Handbook (5.12.2.3.) default options must be added to
OPTIONS_DEFINE. This policy has been implemented only recently that's why we
have many ports violating this policy.

This patch adds the default options specified in the Porter's Handbook to
OPTIONS_DEFINE where they are being used. Ports maintained by
gnome@FreeBSD.org, kde@FreeBSD.org and x11@FreeBSD.org have been excluded.

Approved by:    portmgr (bapt)
Original commitRevision:343634 
Sunday, 15 Dec 2013
16:22 wg search for other commits by this committer
Use setuptools for all Python ports.

Setuptools is the preferred method to manage Python distributions after
many changes to the packaging ecosystem over the past couple of years.

Only ports using USE_PYDISTUTILS= yes are affected by this commit, ports using
USE_PYDISTUTILS= easy_install remains the same however this usage is now
deprecated and should be converted to USE_PYDISTUTILS= yes.

Some Python distributions do not work with setuptools out of the box because
they extend the install command from distutils and not setuptools, and
so they need to be patched accordingly.

pip (which leverages setuptools) works around the issue by using eggs, however
we want to get rid of those as well, as support for "flat" installation is
unavailable or has other issues associated with it.

This work allows us to unify how python packages are built, ensure that Python
distributions are installed consistently, reduces complexity for Python port
maintainers and paves the way for simplifying the Python ports framework in
the future.

With hat on:	python
Reviewed by:	koobs, antoine
Exp-run:	bdrewery
Approved by:	bdrewery (portmgr)
Original commitRevision:336553 
Saturday, 26 Oct 2013
00:52 gerald search for other commits by this committer
Update to libmpc version 1.0.1 which brings the following fixes:

 - Switched to automake 1.11.6, see CVE-2012-3386.
 - #14669: Fixed extraction of CC from gmp.h.
 - Fixed case of intermediate zero real or imaginary part in mpc_fma,
   found by hydra with GMP_CHECK_RANDOMIZE=1346362345.

This is on top of the following changes from version 1.0

 - Licence change towards LGPLv3+ for the code and GFDLv1.3+ (with no
   invariant sections) for the documentation.
 - 100% of all lines are covered by tests
 - Renamed functions
   . mpc_mul_2exp to mpc_mul_2ui
   . mpc_div_2exp to mpc_div_2ui
 - 0^0, which returned (NaN,NaN) previously, now returns (1,+0).
 - Removed compatibility with K&R compilers, which was untestable due
   to lack of such compilers.
 - New functions
   . mpc_log10
   . mpc_mul_2si, mpc_div_2si
 - Speed-ups
   . mpc_fma
 - Bug fixes
   . mpc_div and mpc_norm now return a value indicating the effective
     rounding direction, as the other functions.
   . mpc_mul, mpc_sqr and mpc_norm now return correct results even if
     there are over- or underflows during the computation.
   . mpc_asin, mpc_proj, mpc_sqr: Wrong result when input variable has
     infinite part and equals output variable is corrected.
   . mpc_fr_sub: Wrong return value for imaginary part is corrected.

Convert to the new LIB_DEPENDS standard and remove hard-coded
.so versions from a couple of dependent ports.

Bump PORTREVISIONS of all dependent ports.

PR:		183141
Approved by:	portmgr (bdrewery)
Original commitRevision:331644 
Friday, 20 Sep 2013
20:57 bapt search for other commits by this committer
Add NO_STAGE all over the place in preparation for the staging support (cat:
multimedia)
Original commitRevision:327747 
Monday, 6 May 2013
10:22 bapt search for other commits by this committer
Convert from WITHOUT_NLS to PORT_OPTIONS:MNLS
While here do some conversion to new options framework
Original commitRevision:317503 
Wednesday, 24 Apr 2013
18:10 ak search for other commits by this committer
- Convert USE_GETTEXT to USES (part 3)

Approved by:	portmgr (bapt)
Original commitRevision:316464 
Tuesday, 31 Jul 2012
13:38 rm search for other commits by this committer
- fix checking for correct version of py-beautifulsoup once again

At the moment I can't think of a better solution for the case when
multimple versions of beautifulsoup is installed.
Original commit
07:07 rm search for other commits by this committer
- add LATEST_LINK for py-beautifulsoup32
- fix dependency name and bump PORTREVISION for dependend ports

Reported by:	pointyhat (erwin)
Original commit
Friday, 1 Jun 2012
05:26 dinoex search for other commits by this committer
- update png to 1.5.10
Original commit
Thursday, 29 Sep 2011
21:18 glarkin search for other commits by this committer
- Chase repocopy of devel/py-zopeInterace to devel/py-zope.interface

PR:             ports/160846
Submitted by:   Ruslan Mahmatkhanov <cvs-src@yandex.ru>
Original commit
Thursday, 20 Jan 2011
13:58 pav search for other commits by this committer
Port was broken following recent python updates.
- remove dependency on python 2.5 version
- add additional patches needed due to python Twisted library updates
- fix rc.d script

PR:             ports/152965
Submitted by:   J.R. Oldroyd <fbsd@opal.com> (maintainer)
Feature safe:   yes
Original commit
Monday, 31 May 2010
21:38 jacula search for other commits by this committer
- Update freevo to 1.9.0_3

PR:                ports/145859
Submitted by:      J.R. Oldroyd <fbsd@opal.com>
Approved by:       tabthorpe
Original commit
02:01 ade search for other commits by this committer
Bounce PORTREVISION for gettext-related ports.  Have fun, ya'll.
Original commit
Sunday, 28 Mar 2010
06:47 dinoex search for other commits by this committer
- update to 1.4.1
Reviewed by:    exp8 run on pointyhat
Supported by:   miwi
Original commit
Friday, 5 Feb 2010
11:46 dinoex search for other commits by this committer
- update to jpeg-8
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
Monday, 1 Jun 2009
19:56 dhn search for other commits by this committer
- Update to 1.9.0

PR:             ports/135044
Submitted by:   J.R. Oldroyd <fbsd@opal.com> (maintainer)
Original commit
Wednesday, 22 Apr 2009
00:46 amdmi3 search for other commits by this committer
- pkg-install and plist fixes
- while here, further fix plist and remove superfluous pre/post.mk usage

PR:             133813
Submitted by:   "J.R. Oldroyd" <fbsd at opal dot com> (maintainer)
Original commit
Monday, 2 Feb 2009
03:24 beech search for other commits by this committer
- Update to 1.8.3

PR:             ports/130592
Submitted by:   J.R. Oldroyd <fbsd@opal.com>
Original commit
Wednesday, 25 Jun 2008
18:15 itetcu search for other commits by this committer
Mark broken if -DNOPORTDOCS at maintainer's request.

Submitted by:   maintianer on private mail.
Original commit
Friday, 6 Jun 2008
13:48 edwin search for other commits by this committer
Bump portrevision due to upgrade of devel/gettext.

The affected ports are the ones with gettext as a run-dependency
according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT
in Makefile (29 of them).

PR:             ports/124340
Submitted by:   edwin@
Approved by:    portmgr (pav)
Original commit
Saturday, 19 Apr 2008
17:56 miwi search for other commits by this committer
- Remove unneeded dependency from gtk12/gtk20 [1]
- Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG
- Remove X11BASE support in favor of LOCALBASE or PREFIX
- Use USE_LDCONFIG instead of INSTALLS_SHLIB
- Remove unneeded USE_GCC 3.4+

Thanks to all Helpers:
        Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr,
        ehaupt, nox, itetcu, flz, pav

PR:             116263
Tested on:      pointyhat
Approved by:    portmgr (pav)
Original commit
Saturday, 19 May 2007
20:32 flz search for other commits by this committer
- Welcome X.org 7.2 \o/.
- Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}.
- Bump PORTREVISION for ports intalling files in ${X11BASE}.
Original commit
Friday, 16 Mar 2007
09:54 miwi search for other commits by this committer
- Pass maintainership to submitter

PR:             110362
Submitted by:   "J.R. Oldroyd" <fbsd@opal.com>
Approved by:    Soeren Dossing (old maintainer)
Original commit
Saturday, 12 Aug 2006
06:17 rafan search for other commits by this committer
- Try to remove some locale directories that are not in mtree file [1]
- Define USE_GETTEXT [1]
- Bump PORTREVISION for changes above [1]
- Reorder RUN_DEPENDS to pet portlint(1) [2]

PR:             ports/101498 [1]
Submitted by:   Stanislav Sedov <ssedov at mbsd.msk.ru> [1], rafan [2]
Approved by:    Soren Dossing <netcom at sauber.net> (maintainer)
Original commit
Wednesday, 10 May 2006
22:37 edwin search for other commits by this committer
Remove USE_REINPLACE from ports starting with M
Original commit
Monday, 3 Apr 2006
06:48 bland search for other commits by this committer
- Workaround Python ioctl() wrapper deficiency different way so Freevo
  do not attempts to read media every other second.
- Move pkg-message into files/pkg-message.in [1]

PR:             95226 [1]
Approved by:    maintainer
Original commit
Tuesday, 7 Mar 2006
08:28 ade search for other commits by this committer
Bump PORTREVISION on glib12/gtk12 consumer ports to ease the upgrade path.

Discussed with: kris
Approved by:    portmgr (implicit)
Original commit
Tuesday, 7 Feb 2006
22:48 lawrance search for other commits by this committer
Update to 1.5.4.

PR:             ports/91616
Submitted by:   Soren Dossing <netcom@sauber.net> (maintainer)
Original commit
15:11 lawrance search for other commits by this committer
Pass maintainership to Soren Dossing <netcom@sauber.net>.

PR:             ports/92186
Approved by:    Lewis Thompson <lewiz@compsoc.man.ac.uk> (outgoing maintainer)
Original commit
Thursday, 5 Jan 2006
03:57 edwin search for other commits by this committer
Chase libversion bumb to libMagick.so.9

PR:             ports/91270
Original commit
Monday, 3 Oct 2005
22:03 pav search for other commits by this committer
- Update to 1.5.3

PR:             ports/86369
Submitted by:   Soren Dossing <netcom@sauber.net>
Approved by:    Lewis Thompson <lewiz@compsoc.man.ac.uk> (maintainer)
Original commit
Friday, 8 Apr 2005
03:41 linimon search for other commits by this committer
Update maintainer's email address.

Requested by:   maintainer
Original commit
Tuesday, 23 Nov 2004
22:31 edwin search for other commits by this committer
NEW PORT: multimedia/freevo, an open-source home theatre PC platform

        This is a new port for Freevo, an open-source home theatre
        PC platform based on Linux and a number of open-source
        audio/video tools.  I considered submitting this as a
        follow-up to ports/59047 but decided against as it is an
        entirely new port.

PR:             ports/68215
Submitted by:   Lewis Thompson <purple@lewiz.net>
Nagged by:      dnns@#bsdports
Original commit

Number of commits found: 54