notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine
This referral link gives you 10% off a Fastmail.com account and gives me a discount on my Fastmail account.

Get notified when packages are built

A new feature has been added. FreshPorts already tracks package built by the FreeBSD project. This information is displayed on each port page. You can now get an email when FreshPorts notices a new package is available for something on one of your watch lists. However, you must opt into that. Click on Report Subscriptions on the right, and New Package Notification box, and click on Update.

Finally, under Watch Lists, click on ABI Package Subscriptions to select your ABI (e.g. FreeBSD:14:amd64) & package set (latest/quarterly) combination for a given watch list. This is what FreshPorts will look for.

Port details
postgresql-wal2json JSON output plugin for changeset extraction for PostgreSQL databases
2.5 databases on this many watch lists=0 search for ports that depend on this port Find issues related to this port Report an issue related to this port View this port on Repology. pkg-fallout 2.5Version of this port present on the latest quarterly branch.
Maintainer: daniel@morante.net search for ports maintained by this maintainer
Port Added: 2023-08-22 08:18:18
Last Update: 2024-03-02 14:01:25
Commit Hash: 0654062
License: BSD3CLAUSE
WWW:
https://github.com/getsentry/wal2json/
Description:
wal2json is an output plugin for logical decoding. It means that the plugin have access to tuples produced by INSERT and UPDATE. Also, UPDATE/DELETE old row versions can be accessed depending on the configured replica identity. Changes can be consumed using the streaming protocol (logical replication slots) or by a special SQL API.
Homepage    cgit ¦ Codeberg ¦ GitHub ¦ GitLab ¦ SVNWeb - no subversion history for this port

Manual pages:
FreshPorts has no man page information for this port.
pkg-plist: as obtained via: make generate-plist
Expand this list (4 items)
Collapse this list.
  1. lib/postgresql/wal2json.so
  2. /usr/local/share/licenses/postgresql12-wal2json-2.5/catalog.mk
  3. /usr/local/share/licenses/postgresql12-wal2json-2.5/LICENSE
  4. /usr/local/share/licenses/postgresql12-wal2json-2.5/BSD3CLAUSE
Collapse this list.
Dependency lines:
  • postgresql12-wal2json>0:databases/postgresql-wal2json
To install the port:
cd /usr/ports/databases/postgresql-wal2json/ && make install clean
To add the package, run one of these commands:
  • pkg install databases/postgresql-wal2json
  • pkg install postgresql12-wal2json
NOTE: If this package has multiple flavors (see below), then use one of them instead of the name specified above.
PKGNAME: postgresql12-wal2json
Flavors: there is no flavor information for this port.
distinfo:
TIMESTAMP = 1692687620 SHA256 (eulerto-wal2json-wal2json_2_5_GH0.tar.gz) = b516653575541cf221b99cf3f8be9b6821f6dbcfc125675c85f35090f824f00e SIZE (eulerto-wal2json-wal2json_2_5_GH0.tar.gz) = 91040

Packages (timestamps in pop-ups are UTC):
postgresql12-wal2json
ABIaarch64amd64armv6armv7i386powerpcpowerpc64powerpc64le
FreeBSD:13:latest2.52.5--2.5---
FreeBSD:13:quarterly2.52.5--2.52.52.52.5
FreeBSD:14:latest2.52.5--2.5---
FreeBSD:14:quarterly2.52.5--2.52.52.52.5
FreeBSD:15:latest2.52.5n/a-n/a2.52.52.5
Dependencies
NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
Build dependencies:
  1. gmake>=4.3 : devel/gmake
  2. postgres : databases/postgresql12-server
Runtime dependencies:
  1. postgres : databases/postgresql12-server
There are no ports dependent upon this port

Configuration Options:
No options to configure
Options name:
databases_postgresql-wal2json
USES:
gmake pgsql:11-14
pkg-message:
For install:
You need to set up at least two parameters in postgresql.conf: wal_level = logical # # these parameters only need to set in versions 9.4, 9.5 and 9.6 # default values are ok in version 10 or later # max_replication_slots = 10 max_wal_senders = 10 After changing these parameters, a restart is needed.
Master Sites:
Expand this list (1 items)
Collapse this list.
  1. https://codeload.github.com/eulerto/wal2json/tar.gz/wal2json_2_5?dummy=/
Collapse this list.
Notes from UPDATING
These upgrade notes are taken from /usr/ports/UPDATING
  • 2023-09-08
    Affects: users of databases/postgresql* and other software using PostgreSQL to run
    Author: kbowling@FreeBSD.org
    Reason: 
      The default version of PostgreSQL has been switched from 13 to 15.
      The upgrade procedure can use up twice the space the databases
      currently needs. If you have a big amount of stored data take a
      closer look at the manpage of pg_upgrade for avoidance and/or
      speedup of the upgrade.
    
      The upgrade instructions consider a basic usage and do not match
      complex scenarios like replication, sharding, or similar.
    
      Upgrade instructions:
    
      First stop your PostgreSQL, create PostgreSQL-binaries and backup your data.
      If you have another Version of PostgreSQL installed, for example 13, your
      files are named according to this.
    
      # service postgresql stop
      # pkg create postgresql13-server postgresql13-contrib
      # mkdir /tmp/pg-upgrade
      # tar xf postgresql13-server-13.12.pkg -C /tmp/pg-upgrade
      # tar xf postgresql13-contrib-13.12.pkg -C /tmp/pg-upgrade
      # pkg delete -f databases/postgresql13-server databases/postgresql13-contrib databases/postgresql13-client
    
      Now update PostgreSQL:
    
        pkg user:
        # pkg install databases/postgresql15-server databases/postgresql15-contrib
        # pkg upgrade
    
        Portmaster users:
        # portmaster databases/postgresql15-server databases/postgresql15-contrib
        # portmaster -a
    
        Portupgrade users:
        # portinstall databases/postgresql15-server databases/postgresql15-contrib
        # portupgrade -a
    
      After installing the new PostgreSQL version you need to convert
      all your databases to new version:
    
      # su -l postgres -c "/usr/local/bin/initdb --encoding=utf-8 --lc-collate=C -D /var/db/postgres/data15 -U postgres"
      # su -l postgres -c "pg_upgrade -b /tmp/pg-upgrade/usr/local/bin/ -d /var/db/postgres/data13/ -B /usr/local/bin/ -D /var/db/postgres/data15/ -U postgres "
    
      Now the migration is finished. You can start PostgreSQL again with:
    
      # service postgresql start
    
      ATTENTION:
      1) The default user changed from "pgsql" to "postgres" in 11. The migration steps above now assume
         the "postgres" database user and FreeBSD user.
      2) See the updating entry 20190829 if you are updating from a release prior to 11.
      3) If you use non-default initdb options, you have to adjust the initdb-command accordingly
    
    
Expand this list (1 items)
  • 2021-10-24
    Affects: users of databases/postgresql* and other software using PostgreSQL to run
    Author: kbowling@FreeBSD.org
    Reason: 
      The default version of PostgreSQL has been switched from 12 to 13.
      The upgrade procedure can use up twice the space the databases
      currently needs. If you have a big amount of stored data take a
      closer look at the manpage of pg_upgrade for avoidance and/or
      speedup of the upgrade.
    
      The upgrade instructions consider a basic usage and do not match
      complex scenarios like replication, sharding, or similar.
    
      Upgrade instructions:
    
      First stop your PostgreSQL, create PostgreSQL-binaries and backup your data.
      If you have another Version of PostgreSQL installed, for example 12.8, your
      files are named according to this.
    
      # service postgresql stop
      # pkg create postgresql12-server postgresql12-contrib
      # mkdir /tmp/pg-upgrade
      # tar xf postgresql12-server-12.8.pkg -C /tmp/pg-upgrade
      # tar xf postgresql12-contrib-12.8.pkg -C /tmp/pg-upgrade
      # pkg delete -f databases/postgresql12-server databases/postgresql12-contrib databases/postgresql12-client
    
      Now update PostgreSQL:
    
        pkg user:
        # pkg install databases/postgresql13-server databases/postgresql13-contrib
        # pkg upgrade
    
        Portmaster users:
        # portmaster databases/postgresql13-server databases/postgresql13-contrib
        # portmaster -a
    
        Portupgrade users:
        # portinstall databases/postgresql13-server databases/postgresql13-contrib
        # portupgrade -a
    
      After installing the new PostgreSQL version you need to convert
      all your databases to new version:
    
      # su -l postgres -c "/usr/local/bin/initdb --encoding=utf-8 --lc-collate=C -D /var/db/postgres/data13 -U postgres"
      # su -l postgres -c "pg_upgrade -b /tmp/pg-upgrade/usr/local/bin/ -d /var/db/postgres/data12/ -B /usr/local/bin/ -D /var/db/postgres/data13/ -U postgres "
    
      Now the migration is finished. You can start PostgreSQL again with:
    
      # service postgresql start
    
      ATTENTION:
      1) The default user changed from "pgsql" to "postgres" in 11. The migration steps above now assume
         the "postgres" database user and FreeBSD user.
      2) See the updating entry 20190829 if you are updating from a release prior to 11.
      3) If you use non-default initdb options, you have to adjust the initdb-command accordingly
    
    
  • Collapse this list.

Number of commits found: 2

Commit History - (may be incomplete: for full details, see links to repositories near top of page)
CommitCreditsLog message
2.5
02 Mar 2024 14:01:25
commit hash: 0654062eabb01deba8aef824e839f29b0fba3ceccommit hash: 0654062eabb01deba8aef824e839f29b0fba3ceccommit hash: 0654062eabb01deba8aef824e839f29b0fba3ceccommit hash: 0654062eabb01deba8aef824e839f29b0fba3cec files touched by this commit
Mathieu Arnold (mat) search for other commits by this committer
cleanup: (ir)regular GH_TAGNAME cleanup
2.5
22 Aug 2023 08:16:26
commit hash: ad47ed371cbbbc06f45722d6ac3afcdb3f6465a4commit hash: ad47ed371cbbbc06f45722d6ac3afcdb3f6465a4commit hash: ad47ed371cbbbc06f45722d6ac3afcdb3f6465a4commit hash: ad47ed371cbbbc06f45722d6ac3afcdb3f6465a4 files touched by this commit
Juraj Lutter (otis) search for other commits by this committer
Author: Daniel Morante
databases/postgresql-wal2json: Add new port

Add postgresql-wal2json, an output plugin for logical decoding.

WWW:		https://github.com/eulerto/wal2json

PR:		257904

Number of commits found: 2