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.

non port: databases/pg_reorg/Makefile

Number of commits found: 17

Sunday, 13 Jun 2021
10:50 Rene Ladan (rene) search for other commits by this committer
*/*: Remove expired ports:

2021-06-13 databases/postgresql95-client: PostgreSQL-9.5 has reached end-of-life
2021-06-13 databases/postgresql95-contrib: PostgreSQL-9.5 has reached
end-of-life
2021-06-13 databases/postgresql95-docs: PostgreSQL-9.5 has reached end-of-life
2021-06-13 databases/postgresql95-pgtcl: PostgreSQL-9.5 has reached end-of-life
2021-06-13 databases/postgresql95-plperl: PostgreSQL-9.5 has reached end-of-life
2021-06-13 databases/postgresql95-plpython: PostgreSQL-9.5 has reached
end-of-life
2021-06-13 databases/postgresql95-pltcl: PostgreSQL-9.5 has reached end-of-life
2021-06-13 databases/postgresql95-server: PostgreSQL-9.5 has reached end-of-life
databases/pg_reorg: abandonware only for PostgreSQL 9.5
databases/pgespresso: functionality part of PostgreSQL 9.6 and later
commit hash: a3da90c5e4f183d6a61b55ac6da01974ab575ed1 commit hash: a3da90c5e4f183d6a61b55ac6da01974ab575ed1 commit hash: a3da90c5e4f183d6a61b55ac6da01974ab575ed1 commit hash: a3da90c5e4f183d6a61b55ac6da01974ab575ed1 a3da90c
Tuesday, 6 Apr 2021
14:31 Mathieu Arnold (mat) search for other commits by this committer
Remove # $FreeBSD$ from Makefiles.
commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb 305f148
Friday, 24 Jul 2020
16:48 rene search for other commits by this committer
databases/pg_reorg: limit to PostgreSQL 9.5, bump PORTREVISION
Original commitRevision:543260 
Saturday, 19 Oct 2019
12:21 rakuco search for other commits by this committer
Switch MASTER_SITES and WWW to https in Chris' ports.

PR:		241272
Submitted by:	Chris Hutchinson <portmaster@bsdforge.com> (maintainer)
Original commitRevision:514793 
Saturday, 3 Aug 2019
10:49 tobik search for other commits by this committer
databases/pg_reorg: Fixup r507940 and declare compatible PostgreSQL versions
correctly
Original commitRevision:507946 
09:02 tobik search for other commits by this committer
databases/pg_reorg: Do not build on newer PostgreSQL versions

It fails to build with PostgreSQL 11:

pgut/pgut.c:389:47: error: too few arguments to function call, expected 4, have
3
        return simple_prompt("Password: ", 100, false);
               ~~~~~~~~~~~~~                         ^
/usr/local/include/postgresql/server/port.h:193:1: note: 'simple_prompt'
declared here
extern void simple_prompt(const char *prompt, char *destination, size_t destlen,
^
1 error generated.

http://package18.nyi.freebsd.org/data/120amd64-default-PR239514/2019-07-29_20h41m52s/logs/pg_reorg-1.1.11_2.log

And after fixing that one:

reorg.c:230:55: warning: incompatible pointer types passing 'bool [1]' to
parameter of type 'const char *' [-Wincompatible-pointer-types]
                execute_plan(SPI_OK_SELECT, plan_peek, values_peek, nulls_peek);
                                                                    ^~~~~~~~~~
./pgut/pgut-spi.h:28:84: note: passing argument to parameter 'nulls' here
extern void execute_plan(int expected, SPIPlanPtr plan, Datum *values, const
char *nulls);
                                                                                
  ^
reorg.c:256:58: warning: incompatible pointer types passing 'bool *' to
parameter of type 'const char *' [-Wincompatible-pointer-types]
                                execute_plan(SPI_OK_INSERT, plan_insert,
&values[2], &nulls[2]);
                                                                                
    ^~~~~~~~~
[...]
reorg.c:573:34: error: use of undeclared identifier 'BTREE_AM_OID'
                        opclass = OpclassnameGetOpcid(BTREE_AM_OID, opcname);
                                                      ^
reorg.c:590:57: error: member reference type 'FormData_pg_attribute' (aka
'struct FormData_pg_attribute') is not a pointer; did you mean to use '.'?
                                opcintype =
RelationGetDescr(indexRel)->attrs[nattr]->atttypid;
                                           
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~
etc.

PR:		239514
Original commitRevision:507940 
Friday, 26 Jul 2019
20:46 gerald search for other commits by this committer
Bump PORTREVISION for ports depending on the canonical version of GCC
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
Original commitRevision:507372 
Wednesday, 12 Dec 2018
01:35 gerald search for other commits by this committer
Bump PORTREVISION for ports depending on the canonical version of GCC
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
Original commitRevision:487272 
Sunday, 24 Jun 2018
00:54 linimon search for other commits by this committer
Workaround the following problem on aarch64 by setting LLD_UNSAFE=yes:

  cc: error: invalid linker name in argument '-fuse-ld=bfd'

Neither emaste nor I can figure out exactly where the offending stanza is
coming in.  It will take someone with more knowledge of gmake debug flags,
and possibly the src build infrastructure, to figure it out.

While here, pet portlint.

Approved by:	portmgr (tier-2 blanket)
Original commitRevision:473169 
Tuesday, 14 Apr 2015
06:56 danfe search for other commits by this committer
- Provide another master site, as it appears that pgfoundry may be fading
- Point WWW line to a working page in the port description, reformat it
- Unmute installation command while I'm here

PR		199424
Submitted by:	maintainer
Original commitRevision:383980 
Tuesday, 24 Feb 2015
17:44 jbeich search for other commits by this committer
- Update to 1.1.11
- Require PostgreSQL 9.1+
- Strip binaries
- Sync pkg-descr
- Pass maintainership

PR:		197586
Submitted by:	Chris Hutchinson <portmaster@bsdforge.com>

ChangeLog:
- Supports PostgreSQL 9.4
- Change not to wait for transactions in different databases.
- Support for DESC, NULLS FIRST/LAST, COLLATE to index keys.
Original commitRevision:379831 
Thursday, 29 May 2014
20:21 mat search for other commits by this committer
- Fix build
- Fix plist with pgsql > 9.0
- Update to 1.1.10 to fix with pgsql >= 9.3

Sponsored by:	Absolight
Original commitRevision:355744 
Tuesday, 13 May 2014
16:48 antoine search for other commits by this committer
Maintainer no longer wishes to maintain those 2 ports
Original commitRevision:353971 
Monday, 5 May 2014
13:48 bapt search for other commits by this committer
Convert to USES=pgsql

While here:
databases/pg_reorg
- stagify

databases/iplike
- convert to USES=libtool
- strip binarie

databases/ip4r
- strip binaries

databases/postgresql-libpgeasy
- convert to USES=libtool
- strip binaries
- stagify

databases/postgresql-libpqxx
- convert to USES=libtool
- strip binaries

databases/postgresql-libpqxx3
- convert to USES=libtool
- strip binaries
Original commitRevision:353002 
Friday, 20 Sep 2013
16:13 bapt search for other commits by this committer
Add NO_STAGE all over the place in preparation for the staging support (cat:
databases)
Original commitRevision:327717 
Sunday, 21 Jul 2013
17:16 marino search for other commits by this committer
databases/pg_reorg: Upgrade to v1.1.8, use DESTDIR

This version upgrade is required for PostgreSQL 9.2 support and was
proposed by the maintainer.  Additional changes were added by myself:
  1) Header trimmed
  2) USE_GMAKE changed to USES+=gmake
  3) NOPORTSDOCS changed to options/DOCS
  4) Proposed logic for alternative PLIST was replaced with DESTDIR support

The package list changes directory structure depending if postgresql 91
or higher client is used.  This could have been handled with PLIST_SUB
(rather than an alternate pkg-plist) but PGSQL_VER variable isn't
evaluated until much later.  Using an intermediate DESTDIR scheme not
only makes the DOCS option handling cleaner, it makes the pkg-plist creation
bulletproof.  It also gives this port a head start for future "Stage" support.

PR:		ports/179954
Submitted by:	marino
Approved by:	bapt (mentor), maintainer
Original commitRevision:323404 
Monday, 26 Dec 2011
20:00 pawel search for other commits by this committer
pg_reorg allows you to reorganize your tables online,
for example, do online vacuum full or cluster.

WWW: http://pgfoundry.org/projects/reorg/

PR:             ports/160313
Submitted by:   alp@sfedu.ru, improvements by rm@
Original commit

Number of commits found: 17