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/metakit/Makefile

Number of commits found: 79

Thursday, 26 Dec 2019
07:54 antoine search for other commits by this committer
Deprecate a few ports

With hat:	portmgr
Original commitRevision:520894 
Wednesday, 12 Jun 2019
16:23 gahr search for other commits by this committer
database/metakit: fix USES=tcl
Original commitRevision:504027 
16:22 gahr search for other commits by this committer
IGNORE USES=t(cl|k):85+ and DEPRECATE USES=t(cl|k):85
Original commitRevision:504026 
15:51 gahr search for other commits by this committer
Deprecate Tcl/Tk 8.5 and dependent ports

Tcl/Tk 8.5 is approaching EOL. It might or might get another patch release with
8.7 is released, but people should have started migrating to 8.6 long ago. See
also the second paragraph in the last 8.5 release announcement from three years
ago here: https://code.activestate.com/lists/tcl-core/15413/

For now, I don't have an EXPIRATION_DATE.
Original commitRevision:504021 
Monday, 27 Aug 2018
19:38 tobik search for other commits by this committer
databases/metakit: Fix build with Clang 6

checking size of long... configure: error: cannot compute sizeof (long), 77

http://beefy11.nyi.freebsd.org/data/head-i386-default/p477696_s338122/logs/errors/metakit-2.4.9.7_2.log
Original commitRevision:478244 
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, 19 Mar 2017
09:01 amdmi3 search for other commits by this committer
- Add LICENSE_FILE
- Switch to options helpers
Original commitRevision:436478 
Tuesday, 10 Jan 2017
09:01 amdmi3 search for other commits by this committer
- Switch to options helpers
- Switch to new test framework
Original commitRevision:431071 
Monday, 14 Nov 2016
06:49 linimon search for other commits by this committer
Mark as broken on various tier-2 archs.

While here, pet portlint.

Approved by:	portmgr (tier-2 blanket)
Original commitRevision:426088 
Wednesday, 6 Jul 2016
14:15 gahr search for other commits by this committer
databases/metakit: and bump PORTREVISION
Original commitRevision:418134 
14:15 gahr search for other commits by this committer
databases/metakit: bump dependency on Tcl from 8.4 to 8.5
Original commitRevision:418133 
Sunday, 10 Aug 2014
09:40 antoine search for other commits by this committer
Stop doing strange things in plist
While here convert to USES=python
Original commitRevision:364523 
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 
Wednesday, 29 Jan 2014
14:33 gahr search for other commits by this committer
- Convert to USES=tcl
Original commitRevision:341740 
13:03 danfe search for other commits by this committer
- Stagify, reword COMMENT, drop ONLY_FOR_ARCHS: for broken cases, the port
  should be marked accordingly instead
- Clean up Makefile and port description text while here
Original commitRevision:341729 
Wednesday, 15 Jan 2014
23:40 bapt search for other commits by this committer
Reduce over inclusions of bsd.port.mk
Remove license file for well known license
Original commitRevision:339864 
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 
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 
Tuesday, 23 Apr 2013
11:51 gahr search for other commits by this committer
- Remove lang/tcl83 and x11-toolkits/tk83 (expired)
- Remove references to Tcl/Tk 8.3 from bsd.tcl.mk
- Update ports that required 8.3+ to require 8.4+ (since 8.5 is the
  default, I don't expect this change to cause much trouble)
Original commitRevision:316351 
Tuesday, 12 Jun 2012
06:26 bapt search for other commits by this committer
Convert to new option framework
Original commit
Friday, 18 Nov 2011
23:30 ehaupt search for other commits by this committer
Remove trailing whitespaces.

Feature safe:   yes
Original commit
Tuesday, 9 Aug 2011
15:41 mm search for other commits by this committer
Transfer maintainer back to ports@FreeBSD.org

Approved by:    maintainer (myself)
Original commit
Wednesday, 23 Mar 2011
15:53 mm search for other commits by this committer
- Add LICENSE knob(s)
Original commit
Monday, 23 Mar 2009
12:18 mm search for other commits by this committer
- Mark port MAKE_JOBS_SAFE
Original commit
Monday, 23 Feb 2009
14:46 mm search for other commits by this committer
- Change default Tcl/Tk version to 8.5
- Bump PORTVERSION of ports affected

Tested by:      pointyhat (pav)
Original commit
Monday, 5 Jan 2009
13:49 mm search for other commits by this committer
- Update to 2.4.9.7
- Introduce OPTIONS for python and tcl support
- Take advantage of USE_TCL
- Take maintainership
Original commit
Saturday, 27 Sep 2008
22:40 olgeni search for other commits by this committer
Compile and install metakit.pyo.
Original commit
Sunday, 7 Sep 2008
05:41 ahze search for other commits by this committer
Add amd64 to ONLY_FOR_ARCHS (atleast sparc64 doesn't build)
Original commit
Wednesday, 9 Apr 2008
13:42 pav search for other commits by this committer
- Move from versioned tcl/tk CATEGORIES to simple tcl and tk categories

With hat:       portmgr
Original commit
Monday, 28 May 2007
09:13 dinoex search for other commits by this committer
- fix objformat
Original commit
Monday, 14 Aug 2006
22:55 clsung search for other commits by this committer
- s,INSTALLS_SHLIB,USE_LDCONFIG,g
- these include comms/ converters/ databases/ devel/ maintained by ports@

PR:             ports/101916
Submitted by:   Gea-Suan Lin <gslin_AT_gslin dot org>
Original commit
Thursday, 4 May 2006
21:41 edwin search for other commits by this committer
Remove USE_REINPLACE from all categories starting with D
Original commit
Thursday, 23 Feb 2006
10:40 ade search for other commits by this committer
Conversion to a single libtool environment.

Approved by:    portmgr (kris)
Original commit
Thursday, 24 Nov 2005
01:13 pav search for other commits by this committer
- Fix fetching. This could use an update.
Original commit
Tuesday, 15 Nov 2005
06:52 ade search for other commits by this committer
Mass-conversion to the USE_AUTOTOOLS New World Order.  The code present
in bsd.autotools.mk essentially makes this a no-op given that all the
old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in
exactly the same way as USE_AUTOTOOLS itself.

Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME
team -- all GNOME 2.12.x ports use it.

Preliminary documentation can be found at:
        http://people.FreeBSD.org/~ade/autotools.txt

which is in the process of being SGMLized before introduction into the
Porters Handbook.

Light blue touch-paper.  Run.
Original commit
Saturday, 5 Nov 2005
07:28 mezz search for other commits by this committer
Change the poing of compileall.py to check on directory from
${PYTHON_SITELIBDIR} to ${WRKSRC}/../python to avoid compileall.py to touch
other apps' *.py files or there will be many leftover of *.pyc files. Bump
the PORTREVISION.
Original commit
Friday, 4 Nov 2005
19:11 adamw search for other commits by this committer
Force generation of byte-compiled metakit python library so that kris
doesn't cry when he reads his email ;;)
Original commit
Saturday, 10 Sep 2005
19:07 dougb search for other commits by this committer
In private mail adamw agreed that supporting the more generic
WITHOUT_PYTHON was a useful idea, and asked me to commit it for
him as he was not going to be able to get to it for a while.
Original commit
Friday, 9 Sep 2005
05:58 adamw search for other commits by this committer
Python-dependent apps may cause metakit.py to be byte-compiled into
metakit.pyc. Remove this file if it exists.

Also, utilize %%PYTHON_SITELIBDIR%%.
Original commit
Wednesday, 7 Sep 2005
15:28 adamw search for other commits by this committer
Actually convert *all* defined(METAKIT_WITH_PYTHON) instanced to
!defined(METAKIT_WITHOUT_PYTHON).

Previous commit obviously totally untested by:  me
Original commit
15:18 adamw search for other commits by this committer
Default python support to ON. This means that if you DON'T want python
support, you must specify METAKIT_WITHOUT_PYTHON.

Reviewed by:    krion
Original commit
Wednesday, 8 Dec 2004
06:03 dinoex search for other commits by this committer
- fix python build
PR:             74832
Original commit
Monday, 19 Jul 2004
05:14 dinoex search for other commits by this committer
- drop maintainership
Original commit
Friday, 9 Jul 2004
17:43 marcus search for other commits by this committer
Apply a big libtool patch to allow porters to use the libtool installed by
the libtoolX ports instead of the one included with each port.  Ports that
set USE_LIBTOOL_VER=X will now use the ports version of libtool instead of
the included version.  To restore previous behavior, use the new macro,
USE_INC_LIBTOOL_VER.  Both macros accept the same argument: a libtool version.

For example, to use the ports version of libtool-1.5, add the following to
your Makefile:

USE_LIBTOOL_VER=        15

To use the included version of libtool with extra hacks provided by
libtool-1.5, add the following to your Makefile:

USE_INC_LIBTOOL_VER=    15

With this change, ports that had to add additional libtool hacks to prevent
.la files from being installed or to fix certain threading issues can now
delete those hacks (after appropriate testing, of course).

PR:             63944
Based on work by:eik and marcus
Approved by:    ade (autotools maintainer)
Tested by:      kris on pointyhat
Bound to be hidden problems:    You bet
Original commit
Wednesday, 24 Mar 2004
20:59 ade search for other commits by this committer
Convert all but one port that uses libtool14 to use libtool15, in readiness
for the destruction of devel/libtool14
Original commit
Sunday, 14 Mar 2004
08:24 dinoex search for other commits by this committer
- update to 2.4.9.3
- fix a bunch of libtool problems after build and during installation.
Original commit
06:17 ade search for other commits by this committer
Whoa there, boy, that's a mighty big commit y'all have there...

Begin autotools sanitization sequence by requiring ports to explicitly
specify which version of {libtool,autoconf,automake} they need, erasing
the concept of a "system default".

For ports-in-waiting:

        USE_LIBTOOL=YES         ->      USE_LIBTOOL_VER=13
        USE_AUTOCONF=YES        ->      USE_AUTOCONF_VER=213
        USE_AUTOMAKE=YES        ->      USE_AUTOMAKE_VER=14

Ports attempting to use the old style system after June 1st 2004 will be
sorely disappointed.
Original commit
Sunday, 22 Feb 2004
08:33 dinoex search for other commits by this committer
- remove BROKEN
Original commit
08:32 dinoex search for other commits by this committer
- Fix MASTER_SITES
- newer version does not build yet.
Original commit
Saturday, 21 Feb 2004
21:17 kris search for other commits by this committer
BROKEN: Checksum mismatch
Original commit
Saturday, 13 Dec 2003
13:02 dinoex search for other commits by this committer
- Fix the symbolic link created by pkg_add
  this fixed the build of e4graph an other ports
- bump PORTVERSION for the new package

Pointed out by: kris
Original commit
Thursday, 11 Dec 2003
04:39 dinoex search for other commits by this committer
- rename shared lib and create a symbolic link
Submitted by:   osa
Original commit
Monday, 4 Aug 2003
07:27 dinoex search for other commits by this committer
- Fix support for python2.3
defaults to python2.2, python2.3 support is broken.
Original commit
Wednesday, 23 Jul 2003
14:05 dinoex search for other commits by this committer
- update CATEGORIES
Original commit
Friday, 28 Mar 2003
20:54 dinoex search for other commits by this committer
- Update to 2.4.9.2
Original commit
Wednesday, 5 Mar 2003
04:03 dinoex search for other commits by this committer
- Update to 2.4.9.1
Original commit
Sunday, 23 Feb 2003
12:24 dinoex search for other commits by this committer
- Update to 2.4.9
Original commit
Thursday, 20 Feb 2003
18:26 dinoex search for other commits by this committer
- add COMMENT
Original commit
Thursday, 12 Dec 2002
05:42 dinoex search for other commits by this committer
add ONLY_FOR_ARCHS, sparc64 has conflicting types
Original commit
Tuesday, 5 Nov 2002
21:04 dinoex search for other commits by this committer
- Update to 2.4.8
Original commit
Sunday, 16 Jun 2002
15:03 dinoex search for other commits by this committer
- Get rid of PERL and use SED
Original commit
Sunday, 2 Jun 2002
11:23 dinoex search for other commits by this committer
- Update to metakit-2.4.7-37
- Fix another libtoll problem
Original commit
08:20 dinoex search for other commits by this committer
- Update to metakit-2.4.6
Original commit
Wednesday, 1 May 2002
09:04 dinoex search for other commits by this committer
- Update to 2.4.5-35
- phyton-extensions now "libmk4py.so" instead of "Mk4py.so"
- static libs are not build
- shared libs now without any version.
Original commit
Sunday, 3 Feb 2002
09:16 dinoex search for other commits by this committer
There is a new release of MetaKit   Some details about this 2.4.3 release:    
Original commit
Thursday, 17 Jan 2002
05:16 dinoex search for other commits by this committer
- Upgrade for python 2.2, breakage is undone in python 2.2)    
Original commit
Saturday, 12 Jan 2002
15:33 dinoex search for other commits by this committer
- Fix include patch for Python != 2.1   - still boken for python2.2    
Original commit
Thursday, 10 Jan 2002
21:57 dinoex search for other commits by this committer
- rename OPTIONS:   METAKIT_WITH_TCL    -> METAKIT_WITH_TCL83  
METAKIT_WITH_TCLKIT -> METAKIT_WITH_TCL84    
Original commit
Saturday, 5 Jan 2002
23:43 dinoex search for other commits by this committer
- make portlint happier   - use DOCSDIR or EXAMPLESDIR   - get rid of some
INTERACTIVE scrips in news/ifmail    
Original commit
Wednesday, 19 Dec 2001
14:18 dinoex search for other commits by this committer
- Use standard USE_PYTHON=yes instead of hardcoded path.   - Fix an problem
installion on a clean system.    
Original commit
Monday, 17 Dec 2001
11:48 dinoex search for other commits by this committer
- Update to build with python 2.1   - fix extra files in package    
Original commit
Thursday, 13 Dec 2001
11:54 dinoex search for other commits by this committer
Update to: metakit-2.4.2-32   TCLKIT is no longer part of the distribution.  
METAKIT_WITH_TCL    Option build metakit for tcl8.3   METAKIT_WITH_TCLKIT Option
build metakit for tcl8.4    
Original commit
Saturday, 24 Nov 2001
04:53 dinoex search for other commits by this committer
Add new option METAKIT_WITH_TCLKIT   that can only build under tcl84/tk84    
Original commit
Friday, 26 Oct 2001
22:14 dinoex search for other commits by this committer
Update to 2.4.1   - Add Support for tcl interface   - Support to build without
python   - Add target for regression test   - make HTML documentation work   -
Fix install bug for FreeBSD >= 4.4   - Take Maintainership    
Original commit
Friday, 8 Sep 2000
13:24 tg search for other commits by this committer
Don't break package building on Satoshi's cluster. Explicitly depend   on
python1.5:lang/python15.    
Original commit
Monday, 31 Jul 2000
09:38 sobomax search for other commits by this committer
Update to 2.01.    
Original commit
Friday, 16 Jun 2000
22:52 asami search for other commits by this committer
Rename INSTALLS_SHLIBS to INSTALLS_SHLIB.  (There was a typo in the   previous
commit message to bsd.port.mk, which said INSTALL_SHLIBS.  Boo.)    
Original commit
09:48 sobomax search for other commits by this committer
Fourth round of INSTALLS_SHLIBS conversion.    
Original commit
Wednesday, 14 Jun 2000
14:21 sobomax search for other commits by this committer
Teach MASTER_SITES about new MASTER_SITE_SOURCEFORGE.    
Original commit

Number of commits found: 79