summaryrefslogtreecommitdiff
path: root/security/py-gssapi/Makefile
AgeCommit message (Collapse)AuthorFilesLines
2022-11-14py-gssapi: update to 1.8.2.wiz1-2/+5
Release v1.8.2: Klipspringer (Patch 2) Latest Added Python 3.11 wheel - #303 Release v1.8.1: Klipspringer (Patch 1) Bumped minimum Python version to Python 3.7 - #299 Release v1.8.0: Klipspringer Created PEP 517 compliant sdist No longer include cythonised files in sdist as they can be built on install time with Cython The Cython build requirement will be automatically resolved by pip and other tools due to PEP 517 metadata
2022-04-07py-gssapi: updated to 1.7.3adam1-4/+2
v1.7.3: Fix up sha512sum file generation in the GitHub release asset Added Python type annotation to classes and functions
2022-01-04*: bump PKGREVISION for egg.mk userswiz1-2/+2
They now have a tool dependency on py-setuptools instead of a DEPENDS
2021-10-21*: recursive bump for heimdal 7.7.0wiz1-1/+2
its buildlink3.mk now includes openssl's buildlink3.mk
2021-10-11py-gssapi: updated to 1.7.2adam1-2/+2
Release v1.7.2: George (Patch 2) Fix broken symlink in GitHub release asset Add wheels for macOS - both x86_64 and arm64 Fix distutil deprecation on Python 3.10 by using setuptools instead Release v1.7.0: George Support for running tests against Heimdal in CI Add Kerberos specific GSS-API Extensions Tidy up docs and turn warnings into errors Support DCE IOV functions on macOS
2021-07-05py-gssapi: updated to 1.6.14adam1-2/+2
Release v1.6.14: Meyer (Patch 14) Support for 32-bit Windows python Enable specification of krb5-config via environment variable Support for GSS_C_CHANNEL_BOUND_FLAG Support for docs build with sphinx 4 Fix undefined variable in get_all_statuses() Add support for str objects in the cred store dict
2021-01-03py-gssapi: updated to 1.6.12adam1-2/+2
Release v1.6.12: Meyer (Patch 12) Fix GSSAPI detection for macOS Big Sur Clarify how to disable detection Release v1.6.11: Meyer (Patch 11) Fix build on FreeBSD On FreeBSD, prefer GSSAPI from ports if available Support python >= 3.8 in test suite by dropping dependency on should_be Fix malformed S4U tests Release v1.6.10: Meyer (Patch 10) Provide python 3.9 Windows wheels Fix shlex.split on Windows Removed six package and other older py cleanup values
2020-07-09py-gssapi: updated to 1.6.9adam1-2/+2
v1.6.9: Meyer (Patch 9) There were no releases between 1.6.5 and 1.6.9 due to release pipeline issues with Github Actions; please use this release instead. Raise exception on unknown usage Update tutorial to make server_name equal FQDN Handle missing locale.LC_MESSAGES on Windows
2020-07-07py-gssapi: updated to 1.6.7adam1-2/+2
v1.6.7: Update version in setup.py and docs/conf.py.
2020-04-18py-gssapi: apparently Python 2.7 is not supportedadam1-5/+2
2020-04-09py-gssapi: updated to 1.6.5adam1-2/+2
v1.6.5: Meyer (patch 5) Fix python_requires so that python-3.5 users hopefully don't get a version they can't use v1.6.4: Meyer (patch 4) Fix missing substitution in inquire_property Fix DLL handling on Windows with workarounds
2020-03-07py-gssapi: updated to 1.6.2adam1-2/+2
v1.6.2: Meyer (patch 2) Changelog Features Provide wheels for python-3.8 on Windows Documentation Expand on documentation of cred stores
2019-08-11py-gssapi: updated to 1.6.1adam1-2/+2
v1.6.1: Features * Windows support, with wheels! * GSSAPI extension rfc4178 (set_neg_mechs) support * Expose mechanisms in the high-level API * Test suite improvements Documentation * Add documentation for common cred store values * Documentation typo fixes
2019-08-03py-gssapi: updated to 1.6.0adam1-5/+5
1.6.0: Unknown changes
2018-08-07py-gssapi: updated to 1.5.1adam1-2/+2
1.5.1: Remove warning about collections.abc usage for Python 3.7+
2018-04-13py-gssapi: updated to 1.5.0adam1-2/+2
v1.5.0: Jordan Features Added build support for mingw32 Implement gss_set_cred_option() and gss_set_sec_context_option() Bugfixes Handle GSS_NO_OID_SET when creating sets
2018-02-22py-gssapi: updated to 1.4.1adam1-3/+3
1.4.1: Features Support most of the GGF Extensions Tooling Exit successfully when no docs change Documentation Fix typo in Name documentation
2017-12-06py-gssapi: updated to 1.3.0adam1-2/+2
1.3.0: Features * Support RFC 5587: Extended GSS Mechanism Inquiry APIs * Support RFC 5801: Using GSSAPI Mechanisms in SASL Bugfixes * Fix potential infinite recursion in GSSError#display_status when there is an error displaying the error * Read the linker path during setup to support properly building with Heimdal on Debian * Fix OID inequality comparison Tooling * k5test and gssapi-console now live in their own projects. They can be found at pythongssapi/k5test and pythongssapi/gssapi-console, respectively, and are available on PyPI as k5test and gssapi_console
2017-11-30py-gssapi: updated to 1.2.3adam1-4/+4
1.2.3: Bug fixes.
2017-10-30py-gssapi: enable all Python versions; fixed PLIST for different KRB5_TYPEadam1-6/+14
2017-01-01Add python-3.6 to incompatible versions.wiz1-2/+2
2016-07-24Use pypi distfile.wiz1-5/+8
Make more ready for python-3.x, but mark it as not-ready-yet.
2016-07-24Use recommended dependency glob patternagc1-4/+4
2016-07-24Add py-gssapi-1.2.0 to the Packages Collection.agc1-0/+24
Python-GSSAPI provides both low-level and high level wrappers around the GSSAPI C libraries. While it focuses on the Kerberos mechanism, it should also be useable with other GSSAPI mechanisms. Python-GSSAPI is composed of two parts: a low-level C-style API which thinly wraps the underlying RFC 2744 methods, and a high-level, Pythonic API (which is itself a wrapper around the low-level API). Examples may be found in the examples directory. The low-level API lives in gssapi.raw. The methods contained therein are designed to match closely with the original GSSAPI C methods. All relevant methods and classes may be imported directly from gssapi.raw. Extension methods will only be imported if they are present. The high-level API lives directly under gssapi. The classes contained in each file are designed to provide a more Pythonic, Object-Oriented view of GSSAPI. The exceptions from the low-level API, plus several additional exceptions, live in gssapi.exceptions. The rest of the classes may be imported directly from gssapi. Only classes are exported by gssapi - all functions are methods of classes in the high-level API.