summaryrefslogtreecommitdiff
path: root/databases/py-pgcli/Makefile (follow)
Commit message (Collapse)AuthorAgeFilesLines
* databases/py-pgcli: Update to 3.4.0Po-Chuan Hsieh2022-03-081-1/+1
| | | | Changes: https://github.com/dbcli/pgcli/blob/main/changelog.rst
* databases/py-pgcli: Update to 3.3.1Po-Chuan Hsieh2022-01-261-3/+3
| | | | Changes: https://github.com/dbcli/pgcli/blob/master/changelog.rst
* databases/py-pgcli: Update to 3.3.0Po-Chuan Hsieh2022-01-241-2/+2
| | | | Changes: https://github.com/dbcli/pgcli/blob/master/changelog.rst
* databases/py-pgcli: Update to 3.2.0Po-Chuan Hsieh2021-09-211-1/+1
| | | | Changes: https://github.com/dbcli/pgcli/blob/master/changelog.rst
* databases/py-pgcli: Update RUN_DEPENDS after ↵Po-Chuan Hsieh2021-05-121-1/+1
| | | | f043e2bdfd2063a32f59a9100cfc80bd3a580f7a
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* Add KEYRING optionSunpoet Po-Chuan Hsieh2020-12-191-0/+5
|
* Update to 3.1.0Sunpoet Po-Chuan Hsieh2020-12-131-6/+5
| | | | Changes: https://github.com/dbcli/pgcli/blob/master/changelog.rst
* Move devel/py-prompt_toolkit to devel/py-prompt-toolkitSunpoet Po-Chuan Hsieh2020-12-111-2/+2
| | | | - Bump PORTREVISION for dependency change
* Allow build with py-sqlparse 0.4.0Sunpoet Po-Chuan Hsieh2020-10-131-1/+2
| | | | | - Update WWW - Bump PORTREVISION for package change
* Update to 3.0.0Sunpoet Po-Chuan Hsieh2020-07-111-4/+4
| | | | Changes: https://github.com/dbcli/pgcli/blob/master/changelog.rst
* Update version requirement of RUN_DEPENDSSunpoet Po-Chuan Hsieh2020-02-111-3/+3
|
* Update to 2.2.0Sunpoet Po-Chuan Hsieh2019-12-081-2/+1
| | | | Changes: https://github.com/dbcli/pgcli/blob/master/changelog.rst
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2019-07-261-0/+1
| | | | | | | | | | | | | | | as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3 to GCC 9.1 under most circumstances now after revision 507371. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, everything INDEX-11 shows with a dependency on lang/gcc9 now. PR: 238330
* Update to 2.1.1Sunpoet Po-Chuan Hsieh2019-05-311-3/+2
| | | | Changes: https://github.com/dbcli/pgcli/blob/master/changelog.rst
* databases/py-pgcli: Fix runtime dependency failuresKubilay Kocak2019-05-281-2/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | pgcli depends on sqlparse<0.3.0,>=0.2.2, and sqlparse was updated to 0.3.0 in ports r495481. pgcli depends on psycopg2>=2.7.4,<2.8, and psycopg2 was updated to 2.8.2 in ports r502646. These broke run time, with the following error(s) raise DistributionNotFound(req, requirers) pkg_resources.DistributionNotFound: The 'sqlparse<0.3.0,>=0.2.2' distribution was not found and is required by pgcli raise DistributionNotFound(req, requirers) pkg_resources.DistributionNotFound: The 'psycopg2>=2.7.4,<2.8' distribution was not found and is required by pgcli Upstream upgraded sqlparse support to include 0.3.0 in PR #1052 [1], this change backports that PR accordingly. Upstream has an open PR to unpin psycopg2 [2][3] but it needs to be updated to use psycopg2 (not psycopg2-binary) in install_requires. This change patches out the psycopg2 max version. The test results shows no test failure delta with 2.8.2 over 2.7.7 (the version before ports r502646). While I'm here: - Declare pinned (maximum) RUN_DEPENDS versions according to setup.py to pick these issues up earlier during QA (max versions not being satisfied will error out during dependency builds/verification pre-commit [1] https://github.com/dbcli/pgcli/pull/1052 [2] https://github.com/dbcli/pgcli/pull/1059 [3] https://github.com/dbcli/pgcli/issues/1036 PR: 238182 Reported by: Marcin Cieślak <saper saper info> Approved by: portmgr (blanket: run time fix, just fix it)
* Update to 2.1.0Sunpoet Po-Chuan Hsieh2019-04-171-2/+2
| | | | Changes: https://github.com/dbcli/pgcli/blob/master/changelog.rst
* Update to 2.0.2Sunpoet Po-Chuan Hsieh2019-04-161-4/+3
| | | | Changes: https://github.com/dbcli/pgcli/blob/master/changelog.rst
* Bump a few PORTREVISIONs after r498529Antoine Brodin2019-04-101-1/+1
| | | | With hat: portmgr
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2018-12-121-0/+1
| | | | | | | | | | | | | | | defined via Mk/bsd.default-versions.mk which has moved from GCC 7.4 t GCC 8.2 under most circumstances. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, as a double check, everything INDEX-11 showed depending on lang/gcc7. PR: 231590
* Update to 1.11.0Sunpoet Po-Chuan Hsieh2018-09-251-3/+4
| | | | Changes: https://github.com/dbcli/pgcli/blob/master/changelog.rst
* Update to 1.10.3Sunpoet Po-Chuan Hsieh2018-07-291-2/+2
| | | | Changes: https://github.com/dbcli/pgcli/blob/master/changelog.rst
* Use PY_FLAVOR for dependencies.Mathieu Arnold2018-06-201-10/+10
| | | | | | | FLAVOR is the current port's flavor, it should not be used outside of this scope. Sponsored by: Absolight
* Update to 1.9.1Sunpoet Po-Chuan Hsieh2018-04-061-4/+1
| | | | Changes: https://github.com/dbcli/pgcli/blob/master/changelog.rst
* Update to 1.9.0Sunpoet Po-Chuan Hsieh2018-03-031-3/+6
| | | | | | - Update WWW Changes: https://github.com/dbcli/pgcli/blob/master/changelog.rst
* Update to 1.8.2Sunpoet Po-Chuan Hsieh2017-12-211-3/+2
| | | | Changes: https://github.com/dbcli/pgcli/blob/master/changelog.rst
* Fix py-cli-helpers dependencySunpoet Po-Chuan Hsieh2017-12-031-1/+2
| | | | | | - Bump PORTREVISION for package change Obtained from: https://github.com/dbcli/pgcli/commit/4093a8546b330bcbd257610ea6b27219af1615aa
* Convert Python ports to FLAVORS.Mathieu Arnold2017-11-301-10/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* Update to 1.8.1Sunpoet Po-Chuan Hsieh2017-09-201-2/+2
| | | | Changes: https://github.com/dbcli/pgcli/blob/master/changelog.rst
* Update to 1.8.0Sunpoet Po-Chuan Hsieh2017-09-151-3/+2
| | | | Changes: https://github.com/dbcli/pgcli/blob/master/changelog.rst
* Update to 1.7.0Sunpoet Po-Chuan Hsieh2017-07-161-2/+4
| | | | | | - Add LICENSE_FILE Changes: https://github.com/dbcli/pgcli/blob/master/changelog.rst
* Update to 1.6.0Sunpoet Po-Chuan Hsieh2017-05-281-3/+3
| | | | Changes: https://github.com/dbcli/pgcli/blob/master/changelog.rst
* Update to 1.5.1Sunpoet Po-Chuan Hsieh2017-03-151-1/+1
| | | | Changes: https://github.com/dbcli/pgcli/blob/master/changelog.rst
* Update to 1.5.0Sunpoet Po-Chuan Hsieh2017-03-071-2/+2
| | | | Changes: https://github.com/dbcli/pgcli/blob/master/changelog.rst
* Update to 1.4.0Sunpoet Po-Chuan Hsieh2017-01-121-3/+2
| | | | Changes: https://github.com/dbcli/pgcli/blob/master/changelog.rst
* - Allow concurrent installation (USE_PYTHON=concurrent)Sunpoet Po-Chuan Hsieh2016-12-031-1/+2
| | | | - Bump PORTREVISION for package change
* - Update to 1.3.1Sunpoet Po-Chuan Hsieh2016-11-191-2/+2
| | | | Changes: https://github.com/dbcli/pgcli/blob/master/changelog.rst
* - Update to 1.3.0Sunpoet Po-Chuan Hsieh2016-11-051-4/+6
| | | | | Changes: https://github.com/dbcli/pgcli/commits/master Differential Revision: https://reviews.freebsd.org/D8414
* Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.Mathieu Arnold2016-04-011-8/+8
| | | | | With hat: portmgr Sponsored by: Absolight
* - Add py-pgcli 0.20.1Sunpoet Po-Chuan Hsieh2015-12-041-0/+28
pgcli is a command line interface for Postgres with auto-completion and syntax highlighting. WWW: https://pypi.python.org/pypi/pgcli WWW: http://pgcli.com/