Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
3.4.3 17 Nov 2023 01:53:44 |
Ruslan Makhmatkhanov (rm) |
Rename net/py-ldap to net/py-python-ldap
This makes portname conformant to upstream one. Also it is now allow
us to build a package with pep517, so switch to it |
3.4.3 17 Nov 2023 01:24:04 |
Ruslan Makhmatkhanov (rm) |
net/py-ldap: update to 3.4.3
Changes:
https://github.com/python-ldap/python-ldap/releases/tag/python-ldap-3.4.2
https://github.com/python-ldap/python-ldap/releases/tag/python-ldap-3.4.3 |
3.4.0 27 Jun 2023 19:34:34 |
Rene Ladan (rene) |
all: remove explicit versions in USES=python for "3.x+"
The logic in USES=python will automatically convert this to 3.8+ by
itself.
Adjust two ports that only had Python 3.7 mentioned but build fine
on Python 3.8 too.
finance/quickfix: mark BROKEN with PYTHON
libtool: compile: c++ -DHAVE_CONFIG_H -I. -I../.. -I -I. -I.. -I../.. -I../C++
-DLIBICONV_PLUG -DPYTHON_MAJOR_VERSION=3 -Wno-unused-variable
-Wno-maybe-uninitialized -O2 -pipe -DLIBICONV_PLUG -fstack-protector-strong
-fno-strict-aliasing -DLIBICONV_PLUG -Wall -ansi
-Wno-unused-command-line-argument -Wpointer-arith -Wwrite-strings
-Wno-overloaded-virtual -Wno-deprecated-declarations -Wno-deprecated -std=c++0x
-MT _quickfix_la-QuickfixPython.lo -MD -MP -MF
.deps/_quickfix_la-QuickfixPython.Tpo -c QuickfixPython.cpp -fPIC -DPIC -o
.libs/_quickfix_la-QuickfixPython.o
warning: unknown warning option '-Wno-maybe-uninitialized'; did you mean
'-Wno-uninitialized'? [-Wunknown-warning-option]
QuickfixPython.cpp:175:11: fatal error: 'Python.h' file not found
^~~~~~~~~~
1 warning and 1 error generated.
Reviewed by: portmgr, vishwin, yuri
Differential Revision: <https://reviews.freebsd.org/D40568> |
3.4.0 08 Feb 2023 10:53:56 |
Muhammad Moinur Rahman (bofh) |
Mk/**ldap.mk: Convert USE_LDAP to USES=ldap
Convert the USE_LDAP=yes to USES=ldap and adds the following features:
- Adds the argument USES=ldap:server to add openldap2{4|5|6}-server as
RUN_DEPENDS
- Adds the argument USES=ldap<version> and replaces WANT_OPENLDAP_VER
- Adds OPENLDAP versions in bsd.default-versions.mk
- Adds USE_OPENLDAP/WANT_OPENLDAP_VER in Mk/bsd.sanity.mk
- Changes consumers to use the features
Reviewed by: delphij
Approved by: portmgr
Differential Revision: https://reviews.freebsd.org/D38233 |
3.4.0 11 Jan 2023 15:58:34 |
Dmitry Marakasov (amdmi3) |
*/*: rename CHEESESHOP to PYPI in MASTER_SITES
PR: 267994
Differential revision: D37518
Approved by: bapt |
07 Sep 2022 21:58:51 |
Stefan Eßer (se) |
Remove WWW entries moved into port Makefiles
Commit b7f05445c00f has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner) |
3.4.0 07 Sep 2022 21:10:59 |
Stefan Eßer (se) |
Add WWW entries to port Makefiles
It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.
Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.
There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.
(Only the first 15 lines of the commit message are shown above ) |
3.4.0 02 Dec 2021 10:36:10 |
Ruslan Makhmatkhanov (rm) |
net/py-ldap: update to 3.4.0 |
3.3.1_1 02 Dec 2021 10:27:12 |
Ruslan Makhmatkhanov (rm) |
net/py-ldap: do not imply openldap 2.4
- add patch to fix build OpenLDAP 2.5
- do not imply 2.4 version
PR: 260054
Reported by: delphij |
3.3.1_1 01 Aug 2021 08:32:35 |
Xin LI (delphij) |
net/openldap24-server: Make SASL permanent for OpenLDAP port.
PR: ports/257374
Reviewed by: obrien
Approved by: portmgr (exp-run by antoine)
Differential Revision: https://reviews.freebsd.org/D31301 |
3.3.1 07 Apr 2021 08:09:01 |
Mathieu Arnold (mat) |
One more small cleanup, forgotten yesterday.
Reported by: lwhsu |
3.3.1 06 Apr 2021 14:31:07 |
Mathieu Arnold (mat) |
Remove # $FreeBSD$ from Makefiles. |
3.3.1 12 Jan 2021 14:15:16 |
rm |
net/py-ldap: update to 3.3.1 |
3.2.0 03 Jan 2021 09:11:52 |
antoine |
Remove python 2.7 support from a few ports |
3.2.0 24 Dec 2020 13:46:02 |
kai |
Relax hardcoded paths to fix build with Python 3.8.7
Since r558913 Python 3.8 incorporates BPO-42604 [1] which changed the
shared libs naming scheme. This means "EXT_SUFFIX" is now derived from
SOABI and yields with Python 3.8 to ".cpython-38.so" instead of ".so".
The affected ports strip the libaries in the "post-install" target via
hardcoded path(s) and the build fails at the end because the new extension
is not expected at this place.
Remedy the issue by adding wildcards to these paths. This should also
prepare the ports for future Python releases, which will use the new shared
libs naming scheme.
[1] https://bugs.python.org/issue42604
PR: 252057
Reported by: John Kennedy
Reviewed by: fluffy, koobs
Approved by: koobs (python) |
3.2.0 03 Nov 2019 09:15:13 |
rm |
net/py-ldap: update to 3.2.0 |
3.1.0 10 Jul 2018 17:01:24 |
rm |
net/py-ldap: update to 3.1.0
Changelog:
Released 3.1.0 2018-05-25
This release brings two minor API changes:
- Long-deprecated functions `ldap.open()` and `ldap.init()` are removed
- `LDAPObject.compare_s()` and `compare_ext_s` return bool instead of 0 or 1 |
3.0.0 20 Jun 2018 17:05:44 |
mat |
Use PY_FLAVOR for dependencies.
FLAVOR is the current port's flavor, it should not be used outside of
this scope.
Sponsored by: Absolight |
3.0.0 02 May 2018 13:36:21 |
rm |
net/py-ldap: update to 3.0.0 |
2.5.2 22 Jan 2018 20:09:00 |
rm |
net/py-ldap: update to 2.5.2 |
2.4.45 30 Nov 2017 15:50:34 |
mat |
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 (Only the first 15 lines of the commit message are shown above ) |
2.4.45 17 Oct 2017 21:54:36 |
rm |
net/py-ldap: update to 2.4.45 |
2.4.44 22 Sep 2017 20:53:13 |
rm |
net/py-ldap: update to 2.4.44 |
2.4.41 14 Jul 2017 20:14:45 |
rm |
net/py-ldap: update to 2.4.41 |
2.4.40 03 Jul 2017 17:44:56 |
rm |
net/py-ldap: update to 2.4.40 |
2.4.39 06 Jun 2017 20:54:22 |
rm |
net/py-ldap: update to 2.4.39 |
2.4.38 29 Apr 2017 19:46:39 |
rm |
net/py-ldap: update to 2.4.38 |
2.4.37 28 Apr 2017 13:10:46 |
rm |
net/py-ldap: update to 2.4.37 |
2.4.32 16 Feb 2017 19:28:08 |
rm |
net/py-ldap: update to 2.4.32 |
2.4.30 09 Feb 2017 20:52:43 |
rm |
net/py-ldap: update to 2.4.30 |
2.4.29 26 Jan 2017 09:26:34 |
rm |
net/py-ldap: update to 2.4.29 |
2.4.28 09 Dec 2016 22:24:55 |
rm |
net/py-ldap: update to 2.4.28 |
2.4.27 21 Aug 2016 12:59:22 |
rm |
net/py-ldap: update to 2.4.27
- update to 2.4.27
- make dependency upon pyasn1 excplicit |
2.4.26 29 Jul 2016 12:23:50 |
rm |
net/py-ldap: update to 2.4.26 |
2.4.25 01 Apr 2016 14:16:20 |
mat |
Remove ${PORTSDIR}/ from dependencies, categories m, n, o, and p.
With hat: portmgr
Sponsored by: Absolight |
2.4.25 25 Jan 2016 14:39:38 |
rm |
net/py-ldap: sync with py-ldap
- convert to option helpers
- add conflicts with py27-pyldap: they install files into the same place
These changes are non-functional, so no PORTREVISION bump. |
2.4.25 19 Jan 2016 19:08:33 |
rm |
net/py-ldap: update to 2.4.25 |
2.4.22 15 Nov 2015 22:41:40 |
rm |
net/py-ldap: restore accidentally removed replacement
It's still needed to make build prefix-safe. This doesn't affect
default package, so not PORTREVISION bump. |
2.4.22 15 Nov 2015 22:17:35 |
rm |
net/py-ldap: update to 2.4.22 |
2.4.21_1 14 Nov 2015 20:54:42 |
rm |
devel/py-asn1-modules: rename to py-pyasn1-modules to match upstream naming
- bump PORTREVISION for dependend ports |
2.4.21 28 Sep 2015 18:22:48 |
rm |
net/py-ldap: update to 2.4.21 |
2.4.20 27 Jul 2015 06:23:28 |
rm |
net/py-ldap: fix build with alternate LOCALBASE
Not bumping PORTREVISION because default builds are not affected.
PR: 201882
Submitted by: jhujhiti@adjectivism.org |
2.4.20 14 Jul 2015 18:15:02 |
rm |
net/py-ldap: update to 2.4.20 |
2.4.19 18 Jun 2015 19:56:52 |
rm |
net/py-ldap2: rename to py-ldap
To better match upstream name |