Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
3.9.18_7 16 Mar 2024 01:20:08 |
Gleb Popov (arrowd) |
*: Mark TESTING_UNSAFE |
3.9.16_7 15 Dec 2022 17:31:40 |
Dmitry Marakasov (amdmi3) |
Revert "*/py-{gdbm,sqlite3,tkinter}: switch from distutils to setuptools"
This reverts commit 7446740638e7d833fde0962e71ef440a6af3c749.
The change is not valid as setuptools have deprecated setup.py,
while distutils will be supported in existing point releases.
Python 3.12 support will require different solution.
PR: 268283 |
3.9.16_7 15 Dec 2022 15:14:33 |
Dmitry Marakasov (amdmi3) |
*/py-{gdbm,sqlite3,tkinter}: switch from distutils to setuptools
For python modules which come from python itself, switch from
distutils (no longer present in python 3.12) to setuptools, fixing
these mudules for python 3.12.
PR: 268283
Approved by: vishwin (python@) |
3.9.15_7 01 Nov 2022 11:24:35 |
Dmitry Marakasov (amdmi3) |
databases/py-sqlite3: fix build with python 3.11
While here, add a simple smoke test which catches this kind of
problems and silence stripping.
PR: 265537
Submitted by: loader@FreeBSD.org
Approved by: maintainer timeout (2+ months) |
3.9.13_7 20 Jul 2022 14:21:07 |
Tobias C. Berner (tcberner) |
databases: remove 'Created by' lines
A big Thank You to the original contributors of these ports:
* "Choe, Cheng-Dae" whitekid
* "Mahdi Mokhtari <mokhi64@gmail.com>"
* "Meikel Brandmeyer" <ocaml-sqlite3-port@kotka.de>
* <hvo.pm@xs4all.nl>
* <jsmith@resonatingmedia.com>
* <ports@c0decafe.net>
* Aaron Dalton <aaron@FreeBSD.org>
* Adam Weinberger <adamw@FreeBSD.org>
* Ade Lovett <ade@FreeBSD.org>
* Akinori MUSHA aka knu <knu@idaemons.org>
* Alan Snelson <Alan@Wave2.org> (Only the first 15 lines of the commit message are shown above ) |
3.8.12_7 24 Nov 2021 17:00:33 |
Dmitry Marakasov (amdmi3) |
databases/py-sqlite3: fix build with python 3.11
PR: 259745
Approved by: python |
3.8.10_7 26 May 2021 12:56:58 |
Po-Chuan Hsieh (sunpoet) |
databases/py-sqlite3: Use WRKSRC_SUBDIR |
3.8.10_7 25 May 2021 13:55:44 |
Dmitry Marakasov (amdmi3) |
Mk: switch from PYTHON_PORTVERSION to PYTHON_DISTVERSION
This brings python framework in consistense with handbook recommendations
to prefer DISTVERSION and simplifies adding prerelease versions of
python
PR: 255013
Differential Revision: https://reviews.freebsd.org/D29418
Exp-run by: antoine
Approved by: wen@, no objection from python@ or portmgr@ |
3.8.10_7 25 May 2021 13:55:43 |
Dmitry Marakasov (amdmi3) |
Mk: switch PYTHON_REL to 5 digits to support python 3.10.x
PR: 255013
Differential Revision: https://reviews.freebsd.org/D29418
Exp-run by: antoine
Approved by: wen@, no objection from python@ or portmgr@ |
3.7.10_7 06 Apr 2021 14:31:13 |
Mathieu Arnold (mat) |
all: Remove all other $FreeBSD keywords. |
3.7.10_7 06 Apr 2021 14:31:07 |
Mathieu Arnold (mat) |
Remove # $FreeBSD$ from Makefiles. |
3.7.9_7 04 Feb 2021 14:35:00 |
mat |
Those ports are allowed to build a 2.7 flavor, for now. |
3.7.9_7 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.7.9_7 04 Nov 2020 00:15:22 |
pkubaj |
databases/py-sqlite3: fix build on GCC architectures
cc -Wno-unused-result -Wsign-compare -DNDEBUG -O2 -pipe -fstack-protector-strong
-Wl,-rpath=/usr/local/lib/gcc9 -fno-strict-aliasing -O2 -pipe
-fstack-protector-strong -fno-strict-aliasing -fPIC -DMODULE_NAME="sqlite3"
-I/usr/local/include -IModules/_sqlite -I/usr/local/include/python3.9 -c
_sqlite/cache.c -o build/temp.freebsd-12.2-RELEASE-powerpc-3.9/_sqlite/cache.o
cc1: error: unrecognized command line option "-Wno-unused-result" |
2.7.14_7 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.7.12_7 03 Jul 2016 00:17:30 |
wen |
- Update to devel/py-setuptools to 23.1.0 [1][2]
PR: 210636 [1]
210685 [2]
Submitted by: vlad-fbsd@acheronmedia.com [1]
wen@ [2]
Exp-run by: antoine
Differential Revision: https://reviews.freebsd.org/D6994 |
2.7.11_7 19 May 2016 10:57:35 |
amdmi3 |
- Fix trailing whitespace in Makefiles
Approved by: portmgr blanket |
2.7.11_7 01 Apr 2016 14:00:57 |
mat |
Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.
With hat: portmgr
Sponsored by: Absolight |
2.7.10_7 19 Nov 2015 01:28:38 |
lwhsu |
Add version specified ports of separated standard Python modules for
non-default Python versions:
- Add pyXY-{sqlite3,gdbm,tkinter} ports for generating binary packages
- Improve/add pkg-message to point users to install respective packages of
separated Python standard modules
- Add COMMENT to explicitly show the Python version that package should be
used with
- Simplify version-related PYTHON_* for lang/python35
Reviewed by: koobs
Differential Revision: https://reviews.freebsd.org/D4170 |
2.7.9_6 26 May 2015 16:47:03 |
antoine |
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 |
2.7.9_6 14 May 2015 10:15:09 |
mat |
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 |
2.7.9_6 11 Feb 2015 13:18:23 |
koobs |
databases/py-sqlite3: Strip shared library
- Strip shared extension
- Sort DIST* entries
- Sort USE_PYTHON values
- Add LICENSE_FILE
Approved by: python (with hat) |
2.7.8_5 28 Sep 2014 16:37:34 |
mva |
- Convert to USES=python
With hat: python@ |
2.7.8_5 09 Aug 2014 15:44:28 |
mva |
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 (Only the first 15 lines of the commit message are shown above ) |
2.7.8_5 02 Aug 2014 06:57:41 |
mva |
- Catch up with the recent lang/pythonXX changes
With hat: python@ |
2.7.6_4 27 Jun 2014 17:21:07 |
miwi |
- Chase database/sqlite3 slib bump
Approved by: portmgr (myself) |
2.7.6_3 11 Apr 2014 08:25:12 |
sunpoet |
- Add LICENSE
- Pet portlint: use PYTHON_DISTNAME instead of PYTHON_DISTFILE
- Use USES=tar:xz |
2.7.6_3 15 Dec 2013 16:22:17 |
wg |
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 (Only the first 15 lines of the commit message are shown above ) |
2.7.6_3 11 Dec 2013 18:08:53 |
bapt |
In preparation for making libtool generate libraries with a sane name, fix all
LIB_DEPENDS in databases |
2.7.5_3 01 Nov 2013 11:24:14 |
koobs |
databases/py-sqlite3: Remove BROKEN on ARM
- Remove BROKEN for ARM architecture [1]
[1] http://lists.freebsd.org/pipermail/freebsd-python/2013-October/005960.html
PR: ports/183549
Reported by: Xu Waycell <xw901103@gmail.com> |
2.7.5_3 20 Sep 2013 16:13:49 |
bapt |
Add NO_STAGE all over the place in preparation for the staging support (cat:
databases) |
2.7.5_3 07 Sep 2013 17:21:52 |
sunpoet |
- Add PORTSCOUT=ignore:1 to avoid false alarm |
2.7.3_3 01 Mar 2013 20:12:02 |
lwhsu |
- 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 |
2.7.3_2 03 Oct 2012 04:06:38 |
rm |
- 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@ |
2.7.3_2 04 Sep 2012 03:05:24 |
linimon |
Mark as broken on ARM.
PR: ports/170946
Submitted by: linimon
Hat: portmgr |
2.7.3_2 26 Jul 2012 05:44:07 |
mva |
- Don't define HAVE_LOAD_EXTENSION when sqlite3 is compiled with EXTENSION
option turned off
PR: ports/156076
Submitted by: Pan Tsu <inyaoo@gmail.com> |
2.7.2_1 13 Oct 2011 13:06:11 |
wen |
- Remove stale pkg_message
PR: ports/161535
Submitted by: Ruslan Mahmatkhanov <cvs-src@yandex.ru> |
2.6.6_1 28 Oct 2010 21:00:21 |
erwin |
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 |
2.6.2_1 30 Jun 2009 21:51:53 |
lwhsu |
- Fix building with python3*
- Use checksum file under lang/python${PYTHON_SUFFIX}/,
for removal lang/python/distinfo |
2.5.1_1 30 Jul 2007 09:42:28 |
alexbl |
- 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 |
2.5_1 30 Mar 2007 04:18:18 |
kris |
Now appears to build |
2.5_1 11 Feb 2007 01:23:35 |
kris |
Schedule these broken ports for removal on 2007-04-10 if they are still
broken at that time and no fix has been submitted. |
2.5_1 12 Oct 2006 03:35:00 |
kris |
BROKEN: Incomplete pkg-plist
Approved by: portmgr (self) |
2.5.b3_1 07 Aug 2006 02:23:05 |
perky |
Make setup not to install an egg info file which isn't needed for
standard modules. |
2.5.b1 23 Jun 2006 03:54:01 |
perky |
Add new port for python sqlite3 module.
This port installs a Python "standard" library version of pysqlite
which is provided by databases/py-pysqlite22 already. Because
sqlite3 module was introduced in Python 2.5, this port plays only
for 2.5 or laters.
See Also: http://docs.python.org/dev/lib/module-sqlite3.html |