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: databases/py-bsddb/Makefile

Number of commits found: 35

Thursday, 24 Dec 2020
10:09 antoine search for other commits by this committer
Explicitely deprecate more python 2.7 ports
Original commitRevision:559059 
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 
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 
Tuesday, 26 May 2015
16:47 antoine search for other commits by this committer
Switch PYTHON_REL from a 3 digits number to a 4 digits number to handle
python 2.7.10

Differential Revision:	https://reviews.freebsd.org/D2639
Reviewed by:	sunpoet, mva
Original commitRevision:387491 
Thursday, 14 May 2015
10:15 mat search for other commits by this committer
MASTER_SITES cleanup.

- Replace ${MASTER_SITE_FOO} with FOO.
- Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9%
  of the time.)
- Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and
  no hint of what it should be was present.
- Fix some logic.
- And generally, make things more simple and easy to understand.

While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and
SAMBA macros.

Also, replace some EXTRACT_SUFX occurences with USES=tar:*.

Checked by:	make fetch-urlall-list
With hat:	portmgr
Sponsored by:	Absolight
Original commitRevision:386312 
Sunday, 19 Oct 2014
08:50 mva search for other commits by this committer
- Convert ports from databases/ and deskutils/ to new USES=python

Approved by:	portmgr (implicit)
Original commitRevision:371173 
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 
Saturday, 9 Aug 2014
15:44 mva search for other commits by this committer
Convert the Python framework bits to USES=python.

Please use USES=python instead of USE_PYTHON.

  USE_PYTHON=yes becomes USES=python
  USE_PYTHON=2.7+ becomes USES=python:2.7+
  USE_PYTHON_BUILD=3.3 becomes USES=python:3.3,build
  ...

A new PYTHON_FEATURES variable was added, which enables certain features for a
port and replaces some knobs at the same time;

  PYTHON_FEATURES=distutils replaces USE_PYDISTUTILS
  PYTHON_FEATURES=autoplist replaces PYDISTUTILS_AUTOPLIST
  PYTHON_FEATURES=py3kplist replaces PYTHON_PY3K_PLIST_HACK
  PYTHON_FEATURES=noegginfo replaces PYDISTUTILS_NOEGGINFO
  PYTHON_FEATURES=concurrent replaces PYTHON_CONCURRENT_INSTALL
  PYTHON_FEATURES=pythonprefix replaces USE_PYTHON_PREFIX

Some knobs have been deprecated and are to be removed in the near future:

  PYTHON_MASTER_SITES - use MASTER_SITE_PYTHON instead
  PYTHON_PKGNAMESUFFIX - use PYTHON_PKGNAMEPREFIX instead
  PYDISTUTILS_INSTALLNOSINGLE - deprecated without replacement

Some knobs have been removed completely:

  PYTHON_MASTER_SITE_SUBDIR
  PYTHON_DISTNAME
  PYTHON_WRKSRC

Several variables specific to the Python framework are no longer passed to the
build environment to avoid polluting dependency builds.

  PYTHON_VERSION is not passed to .MAKEFLAGS anymore
  PYTHON_DEFAULT_VERSION,
  PYTHON_DEFAULT_PORTVERSION and
  PYTHONBASE are not passed to the make environment anymore

The conversion required a couple of ports to be updated to fit the changes and
new requirements. Those included "bsd.python.mk" directly or contained checks
in places, for which the USES framework would fail to provide correct values.

Python modules directly using the upstream Python package (such as py-tkinter
or py-sqlite3) were updated to avoid using the now unnecessary and remmoved
knobs from "bsd.python.mk".

Phabric:	D399
exp-run:	167368 192357
PR:		167368 192357
Reviewed by:	antoine, wg
Exp-run award:	antoine
With hat:	python@
Approved by:	portmgr
Original commitRevision:364450 
Saturday, 2 Aug 2014
06:57 mva search for other commits by this committer
- Catch up with the recent lang/pythonXX changes

With hat:	python@
Original commitRevision:363791 
Friday, 11 Apr 2014
08:25 sunpoet search for other commits by this committer
- Add LICENSE
- Pet portlint: use PYTHON_DISTNAME instead of PYTHON_DISTFILE
- Use USES=tar:xz
Original commitRevision:350900 
Sunday, 9 Feb 2014
13:46 rm search for other commits by this committer
- remove patch for python26, that's not in tree anymore
- turn extra-patch for python27 into regular patch and remove corresponding
  logic from Makefile
Original commitRevision:343501 
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 
Friday, 20 Sep 2013
16:13 bapt search for other commits by this committer
Add NO_STAGE all over the place in preparation for the staging support (cat:
databases)
Original commitRevision:327717 
Saturday, 7 Sep 2013
17:21 sunpoet search for other commits by this committer
- Add PORTSCOUT=ignore:1 to avoid false alarm
Original commitRevision:326659 
Friday, 17 May 2013
04:17 rm search for other commits by this committer
- update to latest upstream versions:
  . lang/python27: 2.7.3 -> 2.7.5
  . lang/python32: 3.2.3 -> 3.2.4
  . lang/python33: 3.3.0 -> 3.3.1
- update Mk/bsd.python.mk with new versions
- mark lang/python26 and lang/python31 as deprecated (set them to
  upstream EoL dates)
- update docs (lang/python-doc-html)
- align databases/py-bsddb patch for python27 - most of it was applied
  upstream. Raise BDB version to 4.3 atleast, according to
  upstream requirements.

Many thanks to Martin (miwi) for his time on this update.

PR:		178506
Submitted by:	rm (myself)
Exp-run by:	    portmgr (miwi)

- revert erroneous threads patch in lang/python26 and lang/python27,
  that was added after ports/131080. It was rejected upstream, because it's
  not actually a bug, but misuse.

  Gabor Pali (pgj) in collaboration with Kubilay Kocak (koobs) did an
  independent investigation regard the issue. See here for details:

  http://lists.freebsd.org/pipermail/freebsd-python/2013-April/005376.html

PR:	    153167
Submitted by:	Duncan Findlay <duncan@duncf.ca>
Reported by:	pgj/koobs (at python@ ML)
Exp-run by:     portmgr (miwi)
Original commitRevision:318353 
Friday, 1 Mar 2013
20:12 lwhsu search for other commits by this committer
- Install standard libraries separated as other ports to the same place
  with other standard libraries (${PYTHON_LIBDIR}/lib-dynload)
- Improve consistency of the Makefile(s)
- Whitespace cleanup for the patches
Original commitRevision:313167 
Wednesday, 3 Oct 2012
06:02 rm search for other commits by this committer
- cleanup unsupported python versions
- trim Makefile header
Original commitRevision:305184 
04:06 rm search for other commits by this committer
- do not hardcode distfile extension for lang/python ports in bsd.python.mk
  (PYTHON_DISTFILE variable)
- switch lang/python ports (and it's slaves) to tar.xz

I compared all the four pairs .tgz/.tar.xz and they have no content differences.

Discussed on:	python@
Original commitRevision:305181 
Monday, 10 Oct 2011
04:05 sunpoet search for other commits by this committer
- Fix build with various python releases (2.4-2.7) and berkeley db versions
(4.x-5.x)
Original commit
Tuesday, 4 Oct 2011
16:44 sunpoet search for other commits by this committer
- Fix build with db5
- Cosmetic change

PR:             ports/152886
Reported by:    Anatoly Borodin <anatoly.borodin@gmail.com>
Original commit
Thursday, 28 Oct 2010
21:00 erwin search for other commits by this committer
Deprecate md5 in favour of sha256 checksums.  md5 checksums will no longer
be generated or checked, and will be silently ignored for now.  Also,
generalize the MD5_FILE macro to DISTINFO_FILO.

PR:             149657
Submitted by:   rene
Approved by:    portmgr
Tested on:      pointyhat i386 7-exp
Original commit
Friday, 20 Aug 2010
20:53 lwhsu search for other commits by this committer
- Grab maintainership of these ports for python@
Original commit
Sunday, 23 May 2010
21:16 linimon search for other commits by this committer
Reset perky@FreeBSD.org due to maintainer-timeouts and no response
to email.

Hat:            portmgr
Original commit
Wednesday, 8 Jul 2009
08:55 lwhsu search for other commits by this committer
- Use checksum file under lang/python${PYTHON_SUFFIX}/,
  for removal lang/python/distinfo [1]
- USE_PYTHON=yes, all Python version in the ports tree is 2.3+
- Mark IGNORE for Python >= 3.0
- Prepare to be a master port

PR:             ports/136200 [1]
Submitted by:   lwhsu
Approved by:    perky
Original commit
Monday, 6 Apr 2009
05:12 tmclaugh search for other commits by this committer
Fix build with Python 2.6
- chase moved db.h include location

PR:             130410
Submitted by:   David Naylor
Approved by:    maintainer timeout
Original commit
Monday, 30 Jul 2007
09:42 alexbl search for other commits by this committer
 - Make Python 2.5.1 the default Python version
 - Add significantly better support in bsd.python.mk for working with
   Python Eggs and the easy_install system

Tested by:      pointyhat runs
Approved by:    pav (portmgr)
Most work by:   perky
Thanks to:      pav
Original commit
Saturday, 22 Apr 2006
04:39 perky search for other commits by this committer
- Utilize BDB macros from bsd.database.mk.
- This resolves a version problem reported in [1].

PR:             91801 [1]
Submitted by:   Rob B <rbyrnes@mailshack.com> [1]
Original commit
Monday, 29 Aug 2005
13:57 perky search for other commits by this committer
Add support for Berkeley DB 4.3

PR:             80998
Submitted by:   NIIMI Satoshi <sa2c@sa2c.net>
Original commit
Friday, 6 Feb 2004
13:12 trevor search for other commits by this committer
Use PLIST_FILES (bento-tested, marcus-reviewed).
Original commit
Monday, 26 Jan 2004
01:50 perky search for other commits by this committer
Allow to build with bsddb 4.2.

PR:             61650
Submitted by:   Scot W. Hetzel <hetzelsw@westbend.net>
Original commit
Friday, 21 Nov 2003
05:17 perky search for other commits by this committer
Add WITH_DB4 knob and change default to use db4.1.

Submitted by:   Rui Lopes <rui@ruilopes.com>
Original commit
Tuesday, 4 Nov 2003
17:36 perky search for other commits by this committer
Enable building for Python-2.4 by utilizing PYTHON_MASTER_SITES.
Original commit
16:38 perky search for other commits by this committer
Chase bsd.python.mk's change PYTHON_SITE_SUBDIR -> PYTHON_MASTER_SITE_SUBDIR.

Submitted by:   marcus
Original commit
Sunday, 19 Oct 2003
08:52 perky search for other commits by this committer
Utilize PYTHON_SITE_SUBDIR and USE_PYTHON.
Original commit
Thursday, 31 Jul 2003
20:03 perky search for other commits by this committer
Add new port for py-bsddb,
a bsddb[34] binding bundled in python2.3 distribution.
Original commit

Number of commits found: 35