<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ports/databases/py-sqlite3/Makefile, branch pkg-install-eol</title>
<subtitle>FreeBSD ports tree</subtitle>
<id>https://cgit-dev.freebsd.org/ports/atom?h=pkg-install-eol</id>
<link rel='self' href='https://cgit-dev.freebsd.org/ports/atom?h=pkg-install-eol'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/'/>
<updated>2014-08-09T15:44:27Z</updated>
<entry>
<title>Convert the Python framework bits to USES=python.</title>
<updated>2014-08-09T15:44:27Z</updated>
<author>
<name>Marcus von Appen</name>
<email>mva@FreeBSD.org</email>
</author>
<published>2014-08-09T15:44:27Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=900db324a35a535534c39fc88ba374e4fe6c8d29'/>
<id>urn:sha1:900db324a35a535534c39fc88ba374e4fe6c8d29</id>
<content type='text'>
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
</content>
</entry>
<entry>
<title>- Catch up with the recent lang/pythonXX changes</title>
<updated>2014-08-02T06:57:40Z</updated>
<author>
<name>Marcus von Appen</name>
<email>mva@FreeBSD.org</email>
</author>
<published>2014-08-02T06:57:40Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=d76fe51a14c836ec2896e92f693f2388f295a18f'/>
<id>urn:sha1:d76fe51a14c836ec2896e92f693f2388f295a18f</id>
<content type='text'>
With hat:	python@
</content>
</entry>
<entry>
<title>- Chase database/sqlite3 slib bump</title>
<updated>2014-06-27T17:21:06Z</updated>
<author>
<name>Martin Wilke</name>
<email>miwi@FreeBSD.org</email>
</author>
<published>2014-06-27T17:21:06Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=bd48d39657a582c8dac1de7279de5bfa45eb1e58'/>
<id>urn:sha1:bd48d39657a582c8dac1de7279de5bfa45eb1e58</id>
<content type='text'>
Approved by:	portmgr (myself)
</content>
</entry>
<entry>
<title>- Add LICENSE</title>
<updated>2014-04-11T08:25:12Z</updated>
<author>
<name>Sunpoet Po-Chuan Hsieh</name>
<email>sunpoet@FreeBSD.org</email>
</author>
<published>2014-04-11T08:25:12Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=98f0310a3c066738b92fff02d1c906bf683e1bd1'/>
<id>urn:sha1:98f0310a3c066738b92fff02d1c906bf683e1bd1</id>
<content type='text'>
- Pet portlint: use PYTHON_DISTNAME instead of PYTHON_DISTFILE
- Use USES=tar:xz
</content>
</entry>
<entry>
<title>Use setuptools for all Python ports.</title>
<updated>2013-12-15T16:22:17Z</updated>
<author>
<name>William Grzybowski</name>
<email>wg@FreeBSD.org</email>
</author>
<published>2013-12-15T16:22:17Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=1e34739b64d384b87ee2c57027df596b464c79ab'/>
<id>urn:sha1:1e34739b64d384b87ee2c57027df596b464c79ab</id>
<content type='text'>
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)
</content>
</entry>
<entry>
<title>In preparation for making libtool generate libraries with a sane name, fix all</title>
<updated>2013-12-11T18:08:52Z</updated>
<author>
<name>Baptiste Daroussin</name>
<email>bapt@FreeBSD.org</email>
</author>
<published>2013-12-11T18:08:52Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=b5482324dcf6b062151cc203cef1561f8923c859'/>
<id>urn:sha1:b5482324dcf6b062151cc203cef1561f8923c859</id>
<content type='text'>
LIB_DEPENDS in databases
</content>
</entry>
<entry>
<title>databases/py-sqlite3: Remove BROKEN on ARM</title>
<updated>2013-11-01T11:24:14Z</updated>
<author>
<name>Kubilay Kocak</name>
<email>koobs@FreeBSD.org</email>
</author>
<published>2013-11-01T11:24:14Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=e0d13adc903f269d6d48855697e225f300f47f75'/>
<id>urn:sha1:e0d13adc903f269d6d48855697e225f300f47f75</id>
<content type='text'>
- 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 &lt;xw901103@gmail.com&gt;
</content>
</entry>
<entry>
<title>Add NO_STAGE all over the place in preparation for the staging support (cat: databases)</title>
<updated>2013-09-20T16:13:47Z</updated>
<author>
<name>Baptiste Daroussin</name>
<email>bapt@FreeBSD.org</email>
</author>
<published>2013-09-20T16:13:47Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=36117d709704f772dbc3d305cda6923741791598'/>
<id>urn:sha1:36117d709704f772dbc3d305cda6923741791598</id>
<content type='text'>
</content>
</entry>
<entry>
<title>- Add PORTSCOUT=ignore:1 to avoid false alarm</title>
<updated>2013-09-07T17:21:51Z</updated>
<author>
<name>Sunpoet Po-Chuan Hsieh</name>
<email>sunpoet@FreeBSD.org</email>
</author>
<published>2013-09-07T17:21:51Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=351df3310dc7918fbef6bad7144adee137e2ce6e'/>
<id>urn:sha1:351df3310dc7918fbef6bad7144adee137e2ce6e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>- Install standard libraries separated as other ports to the same place</title>
<updated>2013-03-01T20:12:01Z</updated>
<author>
<name>Li-Wen Hsu</name>
<email>lwhsu@FreeBSD.org</email>
</author>
<published>2013-03-01T20:12:01Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/ports/commit/?id=4e54190b40cb1ff1a2a891114bb7d3e3fe67fe80'/>
<id>urn:sha1:4e54190b40cb1ff1a2a891114bb7d3e3fe67fe80</id>
<content type='text'>
  with other standard libraries (${PYTHON_LIBDIR}/lib-dynload)
- Improve consistency of the Makefile(s)
- Whitespace cleanup for the patches
</content>
</entry>
</feed>
