summaryrefslogtreecommitdiff
path: root/databases/puppetdb7 (follow)
Commit message (Collapse)AuthorAgeFilesLines
* databases/puppetdb7: Remove expired portRene Ladan2025-05-1013-290/+0
| | | | 2025-05-09 databases/puppetdb7: Reached EOL
* databases/puppetdb7: DeprecateRomain Tartière2025-03-091-0/+3
|
* Mk/**java.mk: Convert bsd.java.mk to USESMuhammad Moinur Rahman2024-12-311-2/+1
| | | | | | | | | | | | | | | | | | | The following features have been added or changed: - Instead of USE_JAVA use USES=java. This defaults to USES=java:build,run if NO_BUILD is undefined. Else it defaults to USES=java:run - Instead of USE_ANT=yes use USES=java:ant which also implies USES=java:build - Instead of JAVA_BUILD=yes use USES=java:build. Does not imply run or extract - Instead of JAVA_EXTRACT=yes use USES=java:extract does not imply build or run - Instead of JAVA_RUN=yes use USES=java:run does not imply extract or build - Instead of USE_JAVA=<version> use USES=java and JAVA_VERSION=<version> Approved by: mat (portmgr), glewis Differential Revision: https://reviews.freebsd.org/D48201
* databases/puppetdb7: Update to 7.20.1Romain Tartière2024-11-082-4/+4
| | | | | | | Release notes: https://www.puppet.com/docs/puppetdb/7/release_notes#puppetdb-7201 With hat: puppet
* databases/puppetdb7: Update to 7.19.1Romain Tartière2024-07-303-30/+9
| | | | | | | Release notes: https://www.puppet.com/docs/puppetdb/7/release_notes#puppetdb-7191 With hat: puppet
* databases/puppetdb7: Update to 7.19.0Romain Tartière2024-06-163-13/+13
| | | | | | | Release notes: https://www.puppet.com/docs/puppetdb/7/release_notes.html#puppetdb-7190 With hat: puppet
* databases/puppetdb7: Update to 7.18.0Romain Tartière2024-04-153-11/+11
| | | | | | | Release notes: https://www.puppet.com/docs/puppetdb/7/release_notes.html#puppetdb-7180 With hat: puppet
* databases/puppetdb7: Update to 7.17.1Romain Tartière2024-03-053-17/+17
| | | | | | | Release notes: https://www.puppet.com/docs/puppetdb/7/release_notes.html#puppetdb-7171 With hat: puppet
* databases/puppetdb7: Update to 7.16.0Romain Tartière2024-01-233-12/+11
| | | | | | | Release notes: https://www.puppet.com/docs/puppetdb/7/release_notes.html#puppetdb-7160 With hat: puppet
* databases/puppetdb7: Fix loggingRomain Tartière2023-11-222-1/+2
| | | | | | | | | Some changes in PuppetDB recently broke logging. Ensure we write logs as before. While here, do some cleanup of the Makefile. With hat: puppet
* databases/puppetdb7: Update to 7.15.0Romain Tartière2023-11-103-17/+17
| | | | | | | Release notes: https://www.puppet.com/docs/puppetdb/7/release_notes#puppetdb-7150 With hat: puppet
* databases/puppetdb7: Update to 7.14.0Romain Tartière2023-08-253-13/+13
| | | | | | | Release notes: https://www.puppet.com/docs/puppetdb/7/release_notes.html#puppetdb-7140 With hat: puppet
* databases/puppetdb7: Update to 7.13.1Romain Tartière2023-06-163-15/+15
| | | | | | | Release notes: https://www.puppet.com/docs/puppetdb/7/release_notes.html#puppetdb-7131 With hat: puppet
* databases/puppetdb7: Update to 7.13.0Romain Tartière2023-04-093-9/+9
| | | | | | | Release notes: https://www.puppet.com/docs/puppetdb/7/release_notes.html#puppetdb-7130 With hat: puppet
* databases/puppetdb7: Update to 7.12.1Romain Tartière2023-02-102-4/+4
| | | | | | | Release notes: https://www.puppet.com/docs/puppetdb/7/release_notes.html#puppetdb-7121 With hat: puppet
* databases/puppetdb7: Update to 7.12.0Romain Tartière2022-12-092-4/+4
| | | | | | | Release notes: https://puppet.com/docs/puppetdb/7/release_notes.html#puppetdb-7120 With hat: puppet
* databases/puppetdb7: Update to 7.11.2Romain Tartière2022-10-122-4/+4
| | | | | | | Release notes: https://puppet.com/docs/puppetdb/7/release_notes.html#puppetdb-7112 With hat: puppet
* databases/puppetdb7: Update to 7.11.1Romain Tartière2022-09-162-4/+4
| | | | | | | Release notes: https://puppet.com/docs/puppetdb/7/release_notes.html#puppetdb-7111 With hat: puppet
* Remove WWW entries moved into port MakefilesStefan Eßer2022-09-071-2/+0
| | | | | | | | | | Commit b7f05445c00f has added WWW entries to port Makefiles based on WWW: lines in pkg-descr files. This commit removes the WWW: lines of moved-over URLs from these pkg-descr files. Approved by: portmgr (tcberner)
* Add WWW entries to port MakefilesStefan Eßer2022-09-071-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It has been common practice to have one or more URLs at the end of the ports' pkg-descr files, one per line and prefixed with "WWW:". These URLs should point at a project website or other relevant resources. Access to these URLs required processing of the pkg-descr files, and they have often become stale over time. If more than one such URL was present in a pkg-descr file, only the first one was tarnsfered into the port INDEX, but for many ports only the last line did contain the port specific URL to further information. There have been several proposals to make a project URL available as a macro in the ports' Makefiles, over time. This commit implements such a proposal and moves one of the WWW: entries of each pkg-descr file into the respective port's Makefile. A heuristic attempts to identify the most relevant URL in case there is more than one WWW: entry in some pkg-descr file. URLs that are not moved into the Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr files in order to preserve them. There are 1256 ports that had no WWW: entries in pkg-descr files. These ports will not be touched in this commit. The portlint port has been adjusted to expect a WWW entry in each port Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as deprecated. Approved by: portmgr (tcberner)
* databases/puppetdb7: Update to 7.11.0Romain Tartière2022-08-053-15/+15
| | | | | | | Release notes: https://puppet.com/docs/puppetdb/7/release_notes.html#puppetdb-7110 With hat: puppet
* Fix CONFLICTS_INSTALL in the databases categoryStefan Eßer2022-06-291-1/+1
| | | | Approved by: portmgr (implicit)
* databases/puppetdb7: Update to 7.10.1Romain Tartière2022-04-222-4/+4
| | | | | | | Release notes: https://puppet.com/docs/puppetdb/7/release_notes.html#puppetdb-7101 With hat: puppet
* databases/puppetdb7: Update to 7.10.0Romain Tartière2022-03-222-4/+4
| | | | | | | Release notes: https://puppet.com/docs/puppetdb/7/release_notes.html#puppetdb-7100 With hat: puppet
* databases/puppetdb7: Update to 7.9.2Romain Tartière2022-02-183-11/+11
| | | | | | | Release notes: https://puppet.com/docs/puppetdb/7/release_notes.html#puppetdb-792 With hat: puppet
* databases/puppetdb7: Update to 7.9.0Romain Tartière2022-01-213-13/+13
| | | | | | | Release notes: https://puppet.com/docs/puppetdb/7/release_notes.html#puppetdb-790 With hat: puppet
* databases/puppetdb7: Update to 7.8.0Romain Tartière2021-12-142-4/+4
| | | | | | | Release notes: https://puppet.com/docs/puppetdb/7/release_notes.html#puppetdb-780 With hat: puppet
* */*: Remove redundant '-*' from CONFLICTS definitionsStefan Eßer2021-11-251-1/+1
| | | | | | | | | The conflict checks compare the patterns first against the package names without version (as reported by "pkg query "%n"), then - if there was no match - agsinst the full package names including the version (as reported by "pkg query "%n-%v"). Approved by: portmgr (blanket)
* databases/puppetdb7: Update to 7.7.1Romain Tartière2021-11-092-4/+4
| | | | | | | Release notes: https://puppet.com/docs/puppetdb/7/release_notes.html#puppetdb-771 With hat: puppet
* databases/puppetdb7: Add CPE informationStefan Eßer2021-10-141-1/+2
| | | | Approved by: portmgr (blanket)
* databases/puppetdb7: Update to 7.7.0Romain Tartière2021-10-122-4/+4
| | | | | | | Release notes: https://puppet.com/docs/puppetdb/7/release_notes.html#puppetdb-770 With hat: puppet
* databases/puppetdb7: Update to 7.6.0Romain Tartière2021-09-163-9/+9
| | | | | | | Release notes: https://puppet.com/docs/puppetdb/7/release_notes.html#puppetdb-760 With hat: puppet
* databases/puppetdb7: Update to 7.5.2Romain Tartière2021-08-182-4/+4
| | | | With hat: puppet
* databases/puppetdb7: Update to 7.5.0Romain Tartière2021-07-212-4/+4
| | | | | | | Release notes: https://puppet.com/docs/puppetdb/latest/release_notes.html#puppetdb-750 With hat: puppet
* databases/puppetdb7: Update to 7.4.1Romain Tartière2021-06-253-15/+15
| | | | | | | Release notes: https://puppet.com/docs/puppetdb/latest/release_notes.html#puppetdb-741 With hat: puppet
* databases/puppetdb7: Update to 7.3.1Romain Tartière2021-04-303-15/+15
| | | | | | | Release notes: https://puppet.com/docs/puppetdb/latest/release_notes.html#puppetdb-731 With hat: puppet
* One more small cleanup, forgotten yesterday.Mathieu Arnold2021-04-071-1/+0
| | | | Reported by: lwhsu
* all: Remove all other $FreeBSD keywords.Mathieu Arnold2021-04-061-2/+0
|
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* Update to 7.2.0Romain Tartière2021-02-282-4/+4
| | | | | | | | | | Release notes: https://puppet.com/docs/puppetdb/latest/release_notes.html#puppetdb-720 With hat: puppet Notes: svn path=/head/; revision=566816
* Update to 7.1.0Romain Tartière2021-02-194-12/+15
| | | | | | | | | | Release notes: https://puppet.com/docs/puppetdb/latest/release_notes.html#puppetdb-710 With hat: puppet Notes: svn path=/head/; revision=566114
* Update to 7.0.1Romain Tartière2020-12-172-4/+4
| | | | | | | | | | Release notes: https://puppet.com/docs/puppetdb/latest/release_notes.html#puppetdb-701 With hat: puppet Notes: svn path=/head/; revision=558266
* Hello PuppetDB 7!Romain Tartière2020-12-042-6/+6
| | | | | | | | | | Actually update databases/puppetdb7 and databases/puppetdb-terminus7 and a few minor tweaks. With hat: puppet Notes: svn path=/head/; revision=557024
* Copy databases/puppetdb6 and databases/puppetdb-terminus6 toRomain Tartière2020-12-0413-0/+310
databases/puppetdb7 and databases/puppetdb-terminus7. The pre-commit hook does not allow me to copy and update the port at the same time. With hat: puppet Notes: svn path=/head/; revision=557023