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: net/py-ldaptor/Makefile

Number of commits found: 16

Tuesday, 14 Jan 2020
12:36 antoine search for other commits by this committer
Deprecate a few broken ports

With hat:	portmgr
Original commitRevision:523007 
Wednesday, 6 Nov 2019
14:00 antoine search for other commits by this committer
Mark a few ports BROKEN (unfetchable)
Original commitRevision:516887 
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 
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, 4 Sep 2017
00:00 sunpoet search for other commits by this committer
Change from USES=twisted to devel/py-twisted

- Bump PORTREVISION for dependency change

PR:		221658
Submitted by:	sunpoet (myself)
Approved by:	maintainer (timeout, 14 days)
Original commitRevision:449226 
Saturday, 19 Aug 2017
10:43 koobs search for other commits by this committer
net/py-ldaptor: Limit to 2.7 (Does not support Python 3.x)

This port depends on Twisted, which supports Python 3.x as of a number of
versions ago for some growing number of its components. On initial view, ldaptor
appears inconsistent (at least not explicit) in its state of Python 3.x support
for its latest version (16.0.0, not this ports version, 0.0.43)

- A Python 3 compatible wheel is available on PyPI
- Python 3.3-3.5 are included in tox.ini for testing

However:

- Travis CI configuration only tests with 2.7
- Open "Python3 support #55" upstream issue [1]

Additionally, Twisted/Python3 support aside, test builds (without USES=twisted
declared), results in a build error at configure time:

  SyntaxError: invalid syntax

This change limits build support to Python 2.7 accordingly.

While I'm here:

- Pet portlint: LICENSE [2], PLIST_FILES, makepatch.

[1] https://github.com/twisted/ldaptor/issues/55
[2]
https://github.com/twisted/ldaptor/commit/7e249b1586789a5c588f662ce74ee9f4338666e0

PR:		219323
Reported by:	Johannes Jost Meixner
Approved by:	portmgr (blanket)
MFH:		2017Q3
Original commitRevision:448296 
Wednesday, 7 Jun 2017
19:11 sunpoet search for other commits by this committer
Add NO_ARCH

Approved by:	portmgr (blanket)
Original commitRevision:442874 
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 
Wednesday, 4 Nov 2015
20:11 sunpoet search for other commits by this committer
- Move devel/py-parsing to devel/py-pyparsing
- Change MASTER_SITES to CHEESESHOP
- Remove DISTNAME
- While I'm here, remove duplicate PORTREVISION for security/py-crits/Makefile
Original commitRevision:400758 
Friday, 24 Oct 2014
16:21 mva search for other commits by this committer
- Convert ports of net/ to new USES=python

Approved by:	portmgr (implicit)
Original commitRevision:371449 
Saturday, 21 Jun 2014
22:15 wg search for other commits by this committer
net/py-ldaptor: support stage and use auto plist
Original commitRevision:358755 
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 
Sunday, 8 Dec 2013
12:04 mva search for other commits by this committer
New USES=twisted, to replace the old USE_TWISTED knob.

twisted can be configured with the arguments run or build to replace
the previous USE_TWISTED_RUN and USE_TWISTED_BUILD knobs. The twisted
components can be added as comma-separated arguments. If you previously
wrote
    USE_TWISTED=        yes
    USE_TWISTED=        conch names
    USE_TWISTED_RUN=    yes
you now would write
    USES=       twisted
    USES=       twisted:conch,names
    USES=       twisted:run
Original commitRevision:335877 
Friday, 20 Sep 2013
22:10 bapt search for other commits by this committer
Add NO_STAGE all over the place in preparation for the staging support (cat:
net)
Original commitRevision:327755 
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 
Saturday, 22 Oct 2011
13:34 pawel search for other commits by this committer
Ldaptor is a pure-Python library that implements:

    * LDAP client logic
    * separately-accessible LDAP and BER protocol message generation/parsing
    * ASCII-format LDAP filter generation and parsing
    * LDIF format data generation
    * Samba password changing logic

Also included is a web-based user interface to search and edit information in
an LDAP directory and a set of LDAP utilities for use from the command line.

WWW: http://github.com/antong/ldaptor

PR:             ports/157738
Submitted by:   Attila Nagy <bra@fsn.hu>
Original commit

Number of commits found: 16