Solene Rapenne <[email protected]> wrote: > Solene Rapenne <[email protected]> wrote: > > this diff updates phppgadmin to 5.6 version, released a few days ago after a > > few years of inactivity. > > > > It happens that the "processes" tab doesn't work on older postgresql with > > this > > version... Don't know if it's a show stopper? > >
new diff version, removing the tests from post-install as suggested by sthen@ Index: Makefile =================================================================== RCS file: /data/cvs/ports/www/phppgadmin/Makefile,v retrieving revision 1.29 diff -u -p -r1.29 Makefile --- Makefile 17 Oct 2018 14:15:56 -0000 1.29 +++ Makefile 18 Dec 2018 13:25:59 -0000 @@ -2,17 +2,17 @@ COMMENT= tool to handle the administration of PostgreSQL over the web -DISTNAME= phpPgAdmin-5.1 +DISTNAME= phpPgAdmin-5.6.0 CATEGORIES= www databases HOMEPAGE= http://phppgadmin.sourceforge.net/ -REVISION= 4 MAINTAINER= Pierre-Emmanuel Andre <[email protected]> # GPLv2+ PERMIT_PACKAGE_CDROM= Yes -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=phppgadmin/} +MASTER_SITES= https://github.com/phppgadmin/phppgadmin/releases/download/REL_5-6-0/ +EXTRACT_SUFX= .tar.bz2 NO_BUILD= Yes NO_TEST= Yes @@ -29,5 +29,8 @@ RUN_DEPENDS= lang/php/${MODPHP_VERSION}, do-install: @cp -Rp ${WRKDIST} ${INSTDIR} @chown -R ${SHAREOWN}:${SHAREGRP} ${INSTDIR} + +post-install: + @rm -fr ${PREFIX}/phpPgAdmin/tests .include <bsd.port.mk> Index: distinfo =================================================================== RCS file: /data/cvs/ports/www/phppgadmin/distinfo,v retrieving revision 1.12 diff -u -p -r1.12 distinfo --- distinfo 25 Apr 2014 11:00:34 -0000 1.12 +++ distinfo 5 Dec 2018 13:43:51 -0000 @@ -1,2 +1,2 @@ -SHA256 (phpPgAdmin-5.1.tar.gz) = QilOexnTtAA5EuqtmjTfQJbAOAhxrtzhUqoT1JVYeKU= -SIZE (phpPgAdmin-5.1.tar.gz) = 747520 +SHA256 (phpPgAdmin-5.6.0.tar.bz2) = M+D8e7A4hy0vHdJp93yZJYIgpfT2WfjQ97QpBzeg3TU= +SIZE (phpPgAdmin-5.6.0.tar.bz2) = 880640 Index: pkg/PLIST =================================================================== RCS file: /data/cvs/ports/www/phppgadmin/pkg/PLIST,v retrieving revision 1.10 diff -u -p -r1.10 PLIST --- pkg/PLIST 4 Sep 2018 12:46:26 -0000 1.10 +++ pkg/PLIST 18 Dec 2018 13:27:25 -0000 @@ -25,6 +25,8 @@ phpPgAdmin/classes/database/ phpPgAdmin/classes/database/ADODB_base.php phpPgAdmin/classes/database/Connection.php phpPgAdmin/classes/database/Postgres.php +phpPgAdmin/classes/database/Postgres10.php +phpPgAdmin/classes/database/Postgres11.php phpPgAdmin/classes/database/Postgres74.php phpPgAdmin/classes/database/Postgres80.php phpPgAdmin/classes/database/Postgres81.php @@ -33,8 +35,15 @@ phpPgAdmin/classes/database/Postgres83.p phpPgAdmin/classes/database/Postgres84.php phpPgAdmin/classes/database/Postgres90.php phpPgAdmin/classes/database/Postgres91.php +phpPgAdmin/classes/database/Postgres92.php +phpPgAdmin/classes/database/Postgres93.php +phpPgAdmin/classes/database/Postgres94.php +phpPgAdmin/classes/database/Postgres95.php +phpPgAdmin/classes/database/Postgres96.php phpPgAdmin/colproperties.php +phpPgAdmin/composer.json phpPgAdmin/conf/ +phpPgAdmin/conf/.gitignore phpPgAdmin/conf/config.inc.php phpPgAdmin/conf/config.inc.php-dist phpPgAdmin/constraints.php @@ -51,6 +60,9 @@ phpPgAdmin/functions.php phpPgAdmin/groups.php phpPgAdmin/help/ phpPgAdmin/help.php +phpPgAdmin/help/PostgresDoc10.php +phpPgAdmin/help/PostgresDoc11.php +phpPgAdmin/help/PostgresDoc12.php phpPgAdmin/help/PostgresDoc74.php phpPgAdmin/help/PostgresDoc80.php phpPgAdmin/help/PostgresDoc81.php @@ -60,9 +72,17 @@ phpPgAdmin/help/PostgresDoc84.php phpPgAdmin/help/PostgresDoc90.php phpPgAdmin/help/PostgresDoc91.php phpPgAdmin/help/PostgresDoc92.php +phpPgAdmin/help/PostgresDoc93.php +phpPgAdmin/help/PostgresDoc94.php +phpPgAdmin/help/PostgresDoc95.php +phpPgAdmin/help/PostgresDoc96.php phpPgAdmin/history.php phpPgAdmin/images/ phpPgAdmin/images/themes/ +phpPgAdmin/images/themes/bootstrap/ +phpPgAdmin/images/themes/bootstrap/Favicon.ico +phpPgAdmin/images/themes/bootstrap/Introduction.png +phpPgAdmin/images/themes/bootstrap/title.png phpPgAdmin/images/themes/cappuccino/ phpPgAdmin/images/themes/cappuccino/Lminus.png phpPgAdmin/images/themes/cappuccino/Lplus.png @@ -373,6 +393,9 @@ phpPgAdmin/tables.php phpPgAdmin/tablespaces.php phpPgAdmin/tblproperties.php phpPgAdmin/themes/ +phpPgAdmin/themes/bootstrap/ +phpPgAdmin/themes/bootstrap/global.css +phpPgAdmin/themes/bootstrap/title.png phpPgAdmin/themes/cappuccino/ phpPgAdmin/themes/cappuccino/global.css phpPgAdmin/themes/default/
