pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/databases/phppgadmin



Module Name:    pkgsrc
Committed By:   khorben
Date:           Wed Mar 31 12:30:52 UTC 2021

Modified Files:
        pkgsrc/databases/phppgadmin: Makefile PLIST distinfo

Log Message:
phppgadmin: update to version 7.13.0

This release incorporates the following changes:

* Add support for Postgres 13
* Add provisional support for Postgres 14
* Upgrade Jquery library to 3.4.1 (Nirgal)
* Allow users to see group owned databases when using "owned only"
* Fix bug where sorting on selects dumped you to the table screen (MichaMEG)
* This release drops support for PHP 7.1
* This will be the last release to support PHP 7.

Release 7.12.1 incorporated the following changes:

* Fix a number of issues related to changes in Postgres 12.
* Fix an issue with truncation of long multibyte strings
* Removal of broken tree branches from table/view browse option
* Properly escape identifiers when browsing tables/views/schemas
* Add support for granting USAGE on sequences

Release 7.12.0 incorporated the following changes:

* PHP 7.1 is now the default version for development
* Added support for all current versions of PostgreSQL (including 12)
* Updated some internal libraries, fixed additional bugs, and merged in patches

Finally, release 5.6 added support for all recent versions of Postgres (at
least 9.3 - 12devel). It also fixed a number of minor bugs and included several
language fixes.


To generate a diff of this commit:
cvs rdiff -u -r1.37 -r1.38 pkgsrc/databases/phppgadmin/Makefile
cvs rdiff -u -r1.17 -r1.18 pkgsrc/databases/phppgadmin/PLIST
cvs rdiff -u -r1.14 -r1.15 pkgsrc/databases/phppgadmin/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/databases/phppgadmin/Makefile
diff -u pkgsrc/databases/phppgadmin/Makefile:1.37 pkgsrc/databases/phppgadmin/Makefile:1.38
--- pkgsrc/databases/phppgadmin/Makefile:1.37   Sun Mar  7 13:09:37 2021
+++ pkgsrc/databases/phppgadmin/Makefile        Wed Mar 31 12:30:52 2021
@@ -1,16 +1,18 @@
-# $NetBSD: Makefile,v 1.37 2021/03/07 13:09:37 taca Exp $
+# $NetBSD: Makefile,v 1.38 2021/03/31 12:30:52 khorben Exp $
 
-DISTNAME=      phpPgAdmin-5.1
+DISTNAME=      phpPgAdmin-7.13.0
 PKGNAME=       ${PHP_PKG_PREFIX}-${DISTNAME:S/PgAdmin/pgadmin/}
 CATEGORIES=    databases www
-MASTER_SITES=  ${MASTER_SITE_SOURCEFORGE:=phppgadmin/}
-EXTRACT_SUFX=  .tar.bz2
+MASTER_SITES=  ${MASTER_SITE_GITHUB:=phppgadmin/}
+GITHUB_PROJECT=        phppgadmin
+GITHUB_TAG=    REL_7-13-0
 
 MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
-HOMEPAGE=      http://phppgadmin.sourceforge.net/
-COMMENT=       Set of PHP-scripts to administer PostgreSQL over the WWW
+HOMEPAGE=      https://github.com/phppgadmin/phppgadmin
+COMMENT=       Set of PHP scripts to administer PostgreSQL over the WWW
 
-DEPENDS+=      ${PHP_PKG_PREFIX}-pgsql>=4.2.0:../../databases/php-pgsql
+DEPENDS+=      ${PHP_PKG_PREFIX}-mbstring>=7.2.0:../../converters/php-mbstring
+DEPENDS+=      ${PHP_PKG_PREFIX}-pgsql>=7.2.0:../../databases/php-pgsql
 
 MESSAGE_SUBST+=        EGDIR=${EGDIR}
 

Index: pkgsrc/databases/phppgadmin/PLIST
diff -u pkgsrc/databases/phppgadmin/PLIST:1.17 pkgsrc/databases/phppgadmin/PLIST:1.18
--- pkgsrc/databases/phppgadmin/PLIST:1.17      Wed Sep 17 10:50:15 2014
+++ pkgsrc/databases/phppgadmin/PLIST   Wed Mar 31 12:30:52 2021
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.17 2014/09/17 10:50:15 wiz Exp $
+@comment $NetBSD: PLIST,v 1.18 2021/03/31 12:30:52 khorben Exp $
 share/doc/phppgadmin/CREDITS
 share/doc/phppgadmin/DEVELOPERS
 share/doc/phppgadmin/FAQ
@@ -24,6 +24,10 @@ share/phppgadmin/classes/class.select.ph
 share/phppgadmin/classes/database/ADODB_base.php
 share/phppgadmin/classes/database/Connection.php
 share/phppgadmin/classes/database/Postgres.php
+share/phppgadmin/classes/database/Postgres10.php
+share/phppgadmin/classes/database/Postgres11.php
+share/phppgadmin/classes/database/Postgres12.php
+share/phppgadmin/classes/database/Postgres13.php
 share/phppgadmin/classes/database/Postgres74.php
 share/phppgadmin/classes/database/Postgres80.php
 share/phppgadmin/classes/database/Postgres81.php
@@ -32,8 +36,12 @@ share/phppgadmin/classes/database/Postgr
 share/phppgadmin/classes/database/Postgres84.php
 share/phppgadmin/classes/database/Postgres90.php
 share/phppgadmin/classes/database/Postgres91.php
+share/phppgadmin/classes/database/Postgres92.php
+share/phppgadmin/classes/database/Postgres93.php
+share/phppgadmin/classes/database/Postgres94.php
+share/phppgadmin/classes/database/Postgres95.php
+share/phppgadmin/classes/database/Postgres96.php
 share/phppgadmin/colproperties.php
-share/phppgadmin/conf/config.inc.php
 share/phppgadmin/constraints.php
 share/phppgadmin/conversions.php
 share/phppgadmin/database.php
@@ -47,6 +55,11 @@ share/phppgadmin/functions.js
 share/phppgadmin/functions.php
 share/phppgadmin/groups.php
 share/phppgadmin/help.php
+share/phppgadmin/help/PostgresDoc10.php
+share/phppgadmin/help/PostgresDoc11.php
+share/phppgadmin/help/PostgresDoc12.php
+share/phppgadmin/help/PostgresDoc13.php
+share/phppgadmin/help/PostgresDoc14.php
 share/phppgadmin/help/PostgresDoc74.php
 share/phppgadmin/help/PostgresDoc80.php
 share/phppgadmin/help/PostgresDoc81.php
@@ -56,7 +69,14 @@ share/phppgadmin/help/PostgresDoc84.php
 share/phppgadmin/help/PostgresDoc90.php
 share/phppgadmin/help/PostgresDoc91.php
 share/phppgadmin/help/PostgresDoc92.php
+share/phppgadmin/help/PostgresDoc93.php
+share/phppgadmin/help/PostgresDoc94.php
+share/phppgadmin/help/PostgresDoc95.php
+share/phppgadmin/help/PostgresDoc96.php
 share/phppgadmin/history.php
+share/phppgadmin/images/themes/bootstrap/Favicon.ico
+share/phppgadmin/images/themes/bootstrap/Introduction.png
+share/phppgadmin/images/themes/bootstrap/title.png
 share/phppgadmin/images/themes/cappuccino/Lminus.png
 share/phppgadmin/images/themes/cappuccino/Lplus.png
 share/phppgadmin/images/themes/cappuccino/Tminus.png
@@ -209,10 +229,8 @@ share/phppgadmin/js/display.js
 share/phppgadmin/lang/afrikaans.php
 share/phppgadmin/lang/arabic.php
 share/phppgadmin/lang/catalan.php
-share/phppgadmin/lang/chinese-sim.php
-share/phppgadmin/lang/chinese-tr.php
-share/phppgadmin/lang/chinese-utf8-zh_CN.php
-share/phppgadmin/lang/chinese-utf8-zh_TW.php
+share/phppgadmin/lang/chinese-zh-CN.php
+share/phppgadmin/lang/chinese-zh-TW.php
 share/phppgadmin/lang/czech.php
 share/phppgadmin/lang/danish.php
 share/phppgadmin/lang/dutch.php
@@ -343,6 +361,8 @@ share/phppgadmin/tables.js
 share/phppgadmin/tables.php
 share/phppgadmin/tablespaces.php
 share/phppgadmin/tblproperties.php
+share/phppgadmin/themes/bootstrap/global.css
+share/phppgadmin/themes/bootstrap/title.png
 share/phppgadmin/themes/cappuccino/global.css
 share/phppgadmin/themes/default/global.css
 share/phppgadmin/themes/global.css
@@ -355,3 +375,4 @@ share/phppgadmin/viewproperties.php
 share/phppgadmin/views.php
 share/phppgadmin/xloadtree/xloadtree2.js
 share/phppgadmin/xloadtree/xtree2.js
+@pkgdir share/phppgadmin/conf

Index: pkgsrc/databases/phppgadmin/distinfo
diff -u pkgsrc/databases/phppgadmin/distinfo:1.14 pkgsrc/databases/phppgadmin/distinfo:1.15
--- pkgsrc/databases/phppgadmin/distinfo:1.14   Tue Nov  3 01:56:25 2015
+++ pkgsrc/databases/phppgadmin/distinfo        Wed Mar 31 12:30:52 2021
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.14 2015/11/03 01:56:25 agc Exp $
+$NetBSD: distinfo,v 1.15 2021/03/31 12:30:52 khorben Exp $
 
-SHA1 (phpPgAdmin-5.1.tar.bz2) = d7a1f42f79370e1006dcdf558ab888275a70c3c9
-RMD160 (phpPgAdmin-5.1.tar.bz2) = d802641475f6ba7f07196b84123666603134e1a1
-SHA512 (phpPgAdmin-5.1.tar.bz2) = 3a1eebfc4e07a620ea3ec5d65e1fd1f07cb19f12db470f163430ded20542107c828cebbd5d5ae23c470fbe5aa0e2358b8c4d3ba66834009a39ac74440cc751c0
-Size (phpPgAdmin-5.1.tar.bz2) = 583620 bytes
+SHA1 (phpPgAdmin-7.13.0.tar.gz) = 14ad46691f2128e1e1c3f01c34c323a4edeca35a
+RMD160 (phpPgAdmin-7.13.0.tar.gz) = 3effa8622574bfab9dc55ab85965f4d56efca31d
+SHA512 (phpPgAdmin-7.13.0.tar.gz) = 744718b49cd3cb1aa23aea0c402076e1a911892c8b871bac9650e39bcf73c45853f6b24bf699ad3b9432f3e082362577ac899baa4e89f14a4da8cf2fb017fb19
+Size (phpPgAdmin-7.13.0.tar.gz) = 804431 bytes



Home | Main Index | Thread Index | Old Index