aboutsummaryrefslogtreecommitdiff
path: root/databases/pg_activity/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* - update to 1.5.0Jason Helfman2019-08-051-3/+3
| | | | | | | - while here pet portlint Notes: svn path=/head/; revision=508217
* Return jgh's ports to the various pools after his commit bit was safekept.Rene Ladan2019-08-051-1/+1
| | | | | | | Hat: portmgr-secretary Notes: svn path=/head/; revision=508206
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2019-07-261-1/+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 Notes: svn path=/head/; revision=507372
* Bump a few PORTREVISIONs after r498529Antoine Brodin2019-04-101-1/+1
| | | | | | | With hat: portmgr Notes: svn path=/head/; revision=498530
* 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 Notes: svn path=/head/; revision=487272
* Use PY_FLAVOR for dependencies.Mathieu Arnold2018-06-201-2/+2
| | | | | | | | | | FLAVOR is the current port's flavor, it should not be used outside of this scope. Sponsored by: Absolight Notes: svn path=/head/; revision=472884
* - update to 1.4.0Jason Helfman2018-05-181-2/+2
| | | | | | | - while here shift users per portlint Notes: svn path=/head/; revision=470254
* Clean up some USES=pythonAntoine Brodin2018-02-181-1/+1
| | | | | | | | PR: 225752 Submitted by: Yasuhiro KIMURA Notes: svn path=/head/; revision=462227
* Convert Python ports to FLAVORS.Mathieu Arnold2017-11-301-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 Notes: svn path=/head/; revision=455210
* - update to 1.3.1Jason Helfman2017-03-211-1/+1
| | | | | | | | | | - while here regenerated patch file (portlint warning) PR: 217964 Reported by: Marcelo Moreira Martins <m3systemmm@gmail.com> Notes: svn path=/head/; revision=436632
* Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.Mathieu Arnold2016-04-011-2/+2
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412346
* - update to 1.3.0Jason Helfman2016-01-151-1/+1
| | | | | | | | | - address deprecation of get_memory_percent (fixed upstream) Reported by: Mehdi Ravanbakhsh (via mail) Notes: svn path=/head/; revision=406194
* Update ports in the [bcd]* categories to not use GH_COMMIT.Mathieu Arnold2015-05-061-3/+1
| | | | | | | | | | With minor cleanups to make things simpler. With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=385521
* Update USE_GITHUB so it does not require GH_COMMIT.Bryan Drewery2015-03-191-1/+1
| | | | | | | | | | | | | | | | | | | | Using this new scheme allows only setting the _tag_ or _commit hash_ in GH_TAGNAME and not having to know the hash for a tag. This scheme will download a tarball that has a different checksum than before due to a changed directory name for extraction. The following MASTER_SITES are provided to retain the old checksum and directory structure (that require GH_COMMIT): GH -> GHL GITHUB -> GITHUB_LEGACY Differential Revision: https://reviews.freebsd.org/D748 Submitted by: amdmi3 Reviewed by: mat, swills, antoine, bdrewery With hat: portmgr Notes: svn path=/head/; revision=381618
* - re-insert distutilsJason Helfman2015-03-091-1/+1
| | | | Notes: svn path=/head/; revision=380861
* - update commentJason Helfman2015-03-091-3/+3
| | | | | | | | - define python versions - sort python uses Notes: svn path=/head/; revision=380860
* - update to 1.2.0Jason Helfman2015-02-131-2/+3
| | | | Notes: svn path=/head/; revision=378906
* Update "BSD" licenses in databases categoryMark Felder2014-12-051-1/+1
| | | | Notes: svn path=/head/; revision=373992
* - Convert ports from databases/ and deskutils/ to new USES=pythonMarcus von Appen2014-10-191-4/+2
| | | | | | | Approved by: portmgr (implicit) Notes: svn path=/head/; revision=371173
* s/post-patch-script/post-patch/Baptiste Daroussin2014-04-041-1/+1
| | | | Notes: svn path=/head/; revision=350108
* - adopt staging supportJason Helfman2014-01-101-10/+2
| | | | | | | - use python autoplist feature Notes: svn path=/head/; revision=339317
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | databases) Notes: svn path=/head/; revision=327717
* - update to 1.0.2Jason Helfman2013-08-271-5/+14
| | | | | | | - properly support DOCS, and add option Notes: svn path=/head/; revision=325431
* - add new port: databases/pg_activityJason Helfman2013-04-161-0/+31
Top like utility for PostgreSQL activity monitoring WWW: https://github.com/julmon/pg_activity Feature safe: yes Notes: svn path=/head/; revision=315915