aboutsummaryrefslogtreecommitdiff
path: root/databases/pgbarman
Commit message (Collapse)AuthorAgeFilesLines
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* Update to 2.12Matthew Seaman2020-11-092-4/+4
| | | | | | | ChangeLog: https://github.com/2ndquadrant-it/barman/blob/release/2.12/ChangeLog Notes: svn path=/head/; revision=554674
* Update to 2.11Matthew Seaman2020-07-183-6/+12
| | | | | | | ChangeLog: https://sourceforge.net/projects/pgbarman/files/2.11/ Notes: svn path=/head/; revision=542507
* Unbreak bulk -aAntoine Brodin2020-07-141-1/+1
| | | | Notes: svn path=/head/; revision=542200
* Update to 2.10Matthew Seaman2019-12-075-13/+16
| | | | | | | | | | Regenerate patches with 'make makepatch' after changes to files/patch-setup.py ChangeLog: https://sourceforge.net/projects/pgbarman/files/2.10/ Notes: svn path=/head/; revision=519217
* Upstream has renamed tutorial.pdf to manual.pdfMatthew Seaman2019-11-152-7/+6
| | | | | | | | PR: 241984 Submitted by: fluffy@FreeBSD.org Notes: svn path=/head/; revision=517679
* Mark a few ports BROKEN, unfetchableAntoine Brodin2019-11-061-0/+2
| | | | Notes: svn path=/head/; revision=516880
* Update to 2.9Matthew Seaman2019-08-022-5/+4
| | | | | | | | | | | ChangeLog: https://github.com/2ndquadrant-it/barman/blob/master/ChangeLog Notably this update introduces support for the new recovery/standby handling in postgresql-12, plust a number of other fixes and improvements. Notes: svn path=/head/; revision=507851
* 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 Notes: svn path=/head/; revision=507372
* Update to 2.8Matthew Seaman2019-05-164-17/+20
| | | | | | | | | Regenerate patches ChangeLog: https://sourceforge.net/projects/pgbarman/files/2.8/ Notes: svn path=/head/; revision=501791
* Bump a few PORTREVISIONs after r498529Antoine Brodin2019-04-101-0/+1
| | | | | | | With hat: portmgr Notes: svn path=/head/; revision=498530
* Update to 2.7Matthew Seaman2019-03-222-4/+4
| | | | | | | Release Notes: https://sourceforge.net/projects/pgbarman/files/2.7/ Notes: svn path=/head/; revision=496551
* Update to 2.6Matthew Seaman2019-02-074-41/+40
| | | | | | | | | ChangeLog: https://sourceforge.net/projects/pgbarman/files/2.6/ Reorder some items in the Makefile to mollify portlint. Notes: svn path=/head/; revision=492348
* 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
* Update to 2.5Matthew Seaman2018-10-272-4/+4
| | | | | | | Release Notes: https://www.pgbarman.org/barman-2-5-released/ Notes: svn path=/head/; revision=483141
* Update to 2.4Matthew Seaman2018-05-262-8/+8
| | | | | | | ChangeLog: https://sourceforge.net/projects/pgbarman/files/2.4/ Notes: svn path=/head/; revision=470951
* - Convert to option helper install target (add OPTIONS_DEFINE=DOCSAlexey Dokuchaev2018-01-111-3/+8
| | | | | | | | | when it was missing) - Invoke INSTALL_DATA where appropriate instead of INSTALL_MAN - Fix some whitespace and formatting bugs along the way Notes: svn path=/head/; revision=458761
* Convert Python ports to FLAVORS.Mathieu Arnold2017-11-301-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* Upgrade to 2.3Matthew Seaman2017-09-202-4/+4
| | | | | | | ChangeLog: https://sourceforge.net/projects/pgbarman/files/2.3/README.txt/view Notes: svn path=/head/; revision=450188
* Update to 2.2Matthew Seaman2017-07-182-4/+4
| | | | | | | ChangeLog: https://sourceforge.net/projects/pgbarman/files/2.2/README.txt/view Notes: svn path=/head/; revision=446150
* Update to 2.1Matthew Seaman2017-01-082-4/+4
| | | | | | | ChangeLog: https://sourceforge.net/projects/pgbarman/files/2.1/ Notes: svn path=/head/; revision=430863
* Update to 2.0Matthew Seaman2016-09-306-50/+46
| | | | | | | | | - Account for different username between postgresql 9.5 (postgres) or earlier versions (pgsql) - Regenerate patches by 'make makepatch' Notes: svn path=/head/; revision=422997
* Update to 1.6.1Matthew Seaman2016-05-232-4/+4
| | | | | | | ReleaseNotes: https://sourceforge.net/projects/pgbarman/files/1.6.1/ Notes: svn path=/head/; revision=415721
* Upstream has reworked and renamed their downloadable documentationMatthew Seaman2016-04-052-4/+5
| | | | | | | | PR: 208521 Submitted by: fbsd98816551@avksrv.org Notes: svn path=/head/; revision=412549
* Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.Mathieu Arnold2016-04-011-5/+5
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412346
* Update to 1.6.0Matthew Seaman2016-03-012-3/+3
| | | | | | | ChangeLog: https://sourceforge.net/projects/pgbarman/files/1.6.0/ Notes: svn path=/head/; revision=409853
* Update to 1.5.1Matthew Seaman2015-11-162-3/+3
| | | | | | | ChangeLog: https://sourceforge.net/projects/pgbarman/files/1.5.1/ Notes: svn path=/head/; revision=401775
* Update to 1.5.0Matthew Seaman2015-09-294-47/+53
| | | | | | | | | | | | - Mark as NO_ARCH=yes - Sort the USES lne contents - Regenerage patches via 'make makepatch' Announcement: http://www.pgbarman.org/barman-1-5-0-released/ ReleaseNotes: http://sourceforge.net/projects/pgbarman/files/1.5.0/ Notes: svn path=/head/; revision=398180
* Update to 1.4.1Matthew Seaman2015-05-062-4/+3
| | | | | | | ReleaseNotes: http://www.pgbarman.org/barman-1-4-1-released/ Notes: svn path=/head/; revision=385505
* Update distinfo for the tutorial documentMatthew Seaman2015-02-232-3/+4
| | | | | | | | | Fix random capitalization Submitted by: Jimmy Olgeni <olgeni@olgeni.com> Notes: svn path=/head/; revision=379672
* Update to 1.4.0Matthew Seaman2015-01-262-4/+3
| | | | | | | Release Notes: https://sourceforge.net/projects/pgbarman/files/1.4.0/ Notes: svn path=/head/; revision=377930
* Ooops. Replace the %%PREFIX%% special tokens accidentally lost duringMatthew Seaman2014-12-031-2/+2
| | | | | | | the previous update. Notes: svn path=/head/; revision=373846
* - Install man pages to a location where man(1) can find themMatthew Seaman2014-12-035-3/+103
| | | | | | | | | | - While here update man pages and speciment barman.conf file to use FreeBSD-ish locations for various things, particularly that our idea of the PostgreSQL default user is 'pgsql' although the database to connect to is 'postgres' Notes: svn path=/head/; revision=373845
* New port:Matthew Seaman2014-12-025-0/+72
Barman: backup and recovery manager for PostgreSQL. Barman is an open-source administration tool for disaster recovery of PostgreSQL servers written in Python. It allows your organisation to perform remote backups of multiple servers in business critical environments and helps DBAs during the recovery phase. WWW: http://www.pgbarman.org/ Notes: svn path=/head/; revision=373768