public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Alfredo Tupone" <tupone@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/phppgadmin/
Date: Sat, 23 Sep 2023 16:17:44 +0000 (UTC)	[thread overview]
Message-ID: <1695485771.28ff884ee447917d218180c379481502215316bb.tupone@gentoo> (raw)

commit:     28ff884ee447917d218180c379481502215316bb
Author:     Francisco Javier Félix <web <AT> inode64 <DOT> com>
AuthorDate: Mon Sep 18 09:16:35 2023 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Sat Sep 23 16:16:11 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28ff884e

dev-db/phppgadmin: update to 7.14.5 and support for PHP 8.x

* Support for PHP 8.x
* use a new fork, the old one has not been updated for 2 years
* remove old versions, they are incompatible with PHP 8.x

Closes: https://bugs.gentoo.org/762514
Signed-off-by: INODE64 <web <AT> inode64.com>
Closes: https://github.com/gentoo/gentoo/pull/32895
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>

 dev-db/phppgadmin/Manifest                 |  3 +--
 dev-db/phppgadmin/metadata.xml             |  2 +-
 dev-db/phppgadmin/phppgadmin-7.12.1.ebuild | 38 ------------------------------
 dev-db/phppgadmin/phppgadmin-7.13.0.ebuild | 38 ------------------------------
 dev-db/phppgadmin/phppgadmin-7.14.5.ebuild | 38 ++++++++++++++++++++++++++++++
 5 files changed, 40 insertions(+), 79 deletions(-)

diff --git a/dev-db/phppgadmin/Manifest b/dev-db/phppgadmin/Manifest
index 949156fb576b..ed40a199d3ec 100644
--- a/dev-db/phppgadmin/Manifest
+++ b/dev-db/phppgadmin/Manifest
@@ -1,2 +1 @@
-DIST phpPgAdmin-7.12.1.tar.bz2 579723 BLAKE2B 58d4992424fb6c9bf8565843c6d76ceecb68212cc311d15d43303fd6b63fe2a611ce146761b8f6b8f992798060d065a0b0e528aed5df217a3078cef9e56c49da SHA512 d64b4796c5acad990ef81b12ebd377474d04c1a65adc41a91a2d278bb975812389bb6eae23490de3f5ce09502d36adea3cacfdec0e868c6a0e0bcb639b8a94db
-DIST phpPgAdmin-7.13.0.tar.bz2 620530 BLAKE2B 09aa0fe9eeded2caac78847f01774a988e8b086cb362bcce2a3a9139fb28cd43b749c3b13ea1cc9064ef1bee2c4c7bc93eed7e41a72bcaa4479d63e7e748d710 SHA512 1a3d51d0f3b5a3857664c37e5df21070b81dfc0db8844d0af784ff09f644e6a61a9607f4a87f865c5c40bb55445db187b73b9ccceff4a0293c26a6bfeb5953ac
+DIST phppgadmin-7.14.5.tar.gz 1153991 BLAKE2B 52f52e02305814a149cdde7498bdffe281c78198241c436182bdebce7e2597aea8ac1e0ae04900073355dbe4da7f41f0f0b83c5ec28a5b476ce6f3249dfff6b7 SHA512 1983b7d98623def3aa0d83f7ea507026abe1699dba3104fddf743fb581a4f1226be8d784990984ebcc22e92c2bed3cacfbec13ed7387d7b87b2662fc66fe0ac6

diff --git a/dev-db/phppgadmin/metadata.xml b/dev-db/phppgadmin/metadata.xml
index 935ffaf44a18..3e9cef899440 100644
--- a/dev-db/phppgadmin/metadata.xml
+++ b/dev-db/phppgadmin/metadata.xml
@@ -6,6 +6,6 @@
 		<name>Tupone Alfredo</name>
 	</maintainer>
 	<upstream>
-		<remote-id type="github">phppgadmin/phppgadmin</remote-id>
+		<remote-id type="github">ReimuHakurei/phppgadmin</remote-id>
 	</upstream>
 </pkgmetadata>

diff --git a/dev-db/phppgadmin/phppgadmin-7.12.1.ebuild b/dev-db/phppgadmin/phppgadmin-7.12.1.ebuild
deleted file mode 100644
index e0ec4521ab80..000000000000
--- a/dev-db/phppgadmin/phppgadmin-7.12.1.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit webapp
-
-MY_P="phpPgAdmin-${PV}"
-
-DESCRIPTION="Web-based administration for Postgres database in php"
-HOMEPAGE="http://phppgadmin.sourceforge.net/"
-SRC_URI="https://github.com/${PN}/${PN}/releases/download/REL_$(ver_rs 1- -)/${MY_P}.tar.bz2"
-
-LICENSE="GPL-2"
-KEYWORDS="~amd64"
-IUSE=""
-
-RDEPEND="dev-lang/php[postgres,session]"
-
-S="${WORKDIR}/${MY_P}"
-
-src_install() {
-	webapp_src_preinst
-
-	local doc
-	local docs="CREDITS DEVELOPERS FAQ HISTORY INSTALL TODO TRANSLATORS"
-	dodoc ${docs}
-	mv conf/config.inc.php-dist conf/config.inc.php
-
-	cp -r * "${D}"${MY_HTDOCSDIR}
-	for doc in ${docs} INSTALL LICENSE; do
-		rm -f "${D}"${MY_HTDOCSDIR}/${doc}
-	done
-
-	webapp_configfile ${MY_HTDOCSDIR}/conf/config.inc.php
-	webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt
-	webapp_src_install
-}

diff --git a/dev-db/phppgadmin/phppgadmin-7.13.0.ebuild b/dev-db/phppgadmin/phppgadmin-7.13.0.ebuild
deleted file mode 100644
index e0ec4521ab80..000000000000
--- a/dev-db/phppgadmin/phppgadmin-7.13.0.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit webapp
-
-MY_P="phpPgAdmin-${PV}"
-
-DESCRIPTION="Web-based administration for Postgres database in php"
-HOMEPAGE="http://phppgadmin.sourceforge.net/"
-SRC_URI="https://github.com/${PN}/${PN}/releases/download/REL_$(ver_rs 1- -)/${MY_P}.tar.bz2"
-
-LICENSE="GPL-2"
-KEYWORDS="~amd64"
-IUSE=""
-
-RDEPEND="dev-lang/php[postgres,session]"
-
-S="${WORKDIR}/${MY_P}"
-
-src_install() {
-	webapp_src_preinst
-
-	local doc
-	local docs="CREDITS DEVELOPERS FAQ HISTORY INSTALL TODO TRANSLATORS"
-	dodoc ${docs}
-	mv conf/config.inc.php-dist conf/config.inc.php
-
-	cp -r * "${D}"${MY_HTDOCSDIR}
-	for doc in ${docs} INSTALL LICENSE; do
-		rm -f "${D}"${MY_HTDOCSDIR}/${doc}
-	done
-
-	webapp_configfile ${MY_HTDOCSDIR}/conf/config.inc.php
-	webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt
-	webapp_src_install
-}

diff --git a/dev-db/phppgadmin/phppgadmin-7.14.5.ebuild b/dev-db/phppgadmin/phppgadmin-7.14.5.ebuild
new file mode 100644
index 000000000000..e0f1422ca113
--- /dev/null
+++ b/dev-db/phppgadmin/phppgadmin-7.14.5.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit webapp
+
+MY_P="phpPgAdmin-${PV}-mod"
+
+DESCRIPTION="Web-based administration for Postgres database in php"
+HOMEPAGE="http://phppgadmin.sourceforge.net/"
+SRC_URI="https://github.com/ReimuHakurei/phpPgAdmin/archive/refs/tags/v${PV}-mod.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+KEYWORDS="~amd64"
+IUSE=""
+
+RDEPEND="dev-lang/php[postgres,session,unicode]"
+
+S="${WORKDIR}/${MY_P}"
+
+src_install() {
+	webapp_src_preinst
+
+	local doc
+	local docs="BUGS CREDITS DEVELOPERS FAQ HISTORY INSTALL TODO TRANSLATORS"
+	dodoc ${docs}
+	mv conf/config.inc.php-dist conf/config.inc.php || die
+
+	cp -r * "${D}${MY_HTDOCSDIR}"
+	for doc in ${docs} INSTALL LICENSE; do
+		rm -f "${D}${MY_HTDOCSDIR}/${doc}" || die
+	done
+
+	webapp_configfile "${MY_HTDOCSDIR}"/conf/config.inc.php
+	webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt
+	webapp_src_install
+}


             reply	other threads:[~2023-09-23 16:17 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-09-23 16:17 Alfredo Tupone [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-12-19 20:02 [gentoo-commits] repo/gentoo:master commit in: dev-db/phppgadmin/ Alfredo Tupone
2024-11-26 19:29 Alfredo Tupone
2024-11-18 10:28 Arthur Zamarin
2024-01-13  8:44 Alfredo Tupone
2023-12-27 19:22 Alfredo Tupone
2021-01-07 20:09 Alfredo Tupone
2020-12-30 22:22 Alfredo Tupone
2020-08-03 19:11 Alfredo Tupone
2020-07-21 16:27 Alfredo Tupone
2017-12-25 19:17 David Seifert
2017-07-30  8:47 Michał Górny

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1695485771.28ff884ee447917d218180c379481502215316bb.tupone@gentoo \
    --to=tupone@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox