Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] phpMyAdmin: update to 5.2.0, fix update check.
@ 2022-08-30 15:06 TinfoilSubmarine
  2022-08-31 17:26 ` TinfoilSubmarine
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: TinfoilSubmarine @ 2022-08-30 15:06 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1286 bytes --]

There is a new pull request by TinfoilSubmarine against master on the void-packages repository

https://github.com/TinfoilSubmarine/void-packages update/phpMyAdmin
https://github.com/void-linux/void-packages/pull/38984

phpMyAdmin: update to 5.2.0, fix update check.
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


A patch file from https://github.com/void-linux/void-packages/pull/38984.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-update/phpMyAdmin-38984.patch --]
[-- Type: text/x-diff, Size: 1558 bytes --]

From 96248006bce679d5673aa77aaca749b8243e10b0 Mon Sep 17 00:00:00 2001
From: Joel Beckmeyer <joel@beckmeyer.us>
Date: Tue, 30 Aug 2022 09:20:15 -0400
Subject: [PATCH] phpMyAdmin: update to 5.2.0, fix update check.

---
 srcpkgs/phpMyAdmin/template | 6 +++---
 srcpkgs/phpMyAdmin/update   | 2 ++
 2 files changed, 5 insertions(+), 3 deletions(-)
 create mode 100644 srcpkgs/phpMyAdmin/update

diff --git a/srcpkgs/phpMyAdmin/template b/srcpkgs/phpMyAdmin/template
index a55d2b5dfe2e..2da9d6d5b4d7 100644
--- a/srcpkgs/phpMyAdmin/template
+++ b/srcpkgs/phpMyAdmin/template
@@ -1,16 +1,16 @@
 # Template file for 'phpMyAdmin'
 pkgname=phpMyAdmin
-version=5.0.4
+version=5.2.0
 revision=1
 wrksrc="phpMyAdmin-${version}-all-languages"
 conf_files="/etc/webapps/phpMyAdmin/config.inc.php"
-depends="php mysql"
+depends="php8.1 mysql"
 short_desc="Web interface for MySQL and MariaDB"
 maintainer="Franc[e]sco <lolisamurai@tfwno.gf>"
 license="GPL-2.0-only"
 homepage="https://www.phpmyadmin.net"
 distfiles="https://files.phpmyadmin.net/phpMyAdmin/${version}/phpMyAdmin-${version}-all-languages.tar.xz"
-checksum=1578c1a08e594da4f4f62e676ccbdbd17784c3de769b094ba42c35bf05c057db
+checksum=66da31ca295f06182ac3f2e6e96057dc824c459baedf4b29de6ed0d3be039230
 
 do_install() {
 	vmkdir usr/share/webapps/
diff --git a/srcpkgs/phpMyAdmin/update b/srcpkgs/phpMyAdmin/update
new file mode 100644
index 000000000000..95a771fd6de9
--- /dev/null
+++ b/srcpkgs/phpMyAdmin/update
@@ -0,0 +1,2 @@
+site="https://www.phpmyadmin.net/files/"
+pattern="<a href=.*>\K[\d.]+(?=</a>)"

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: phpMyAdmin: update to 5.2.0, fix update check.
  2022-08-30 15:06 [PR PATCH] phpMyAdmin: update to 5.2.0, fix update check TinfoilSubmarine
@ 2022-08-31 17:26 ` TinfoilSubmarine
  2022-09-01 18:47 ` [PR REVIEW] " williamdes
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: TinfoilSubmarine @ 2022-08-31 17:26 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 328 bytes --]

New comment by TinfoilSubmarine on void-packages repository

https://github.com/void-linux/void-packages/pull/38984#issuecomment-1233217846

Comment:
I just saw the note in https://github.com/ampache/ampache/wiki/Installation:
> PHP = 7.4|8.0|8.1 (PHP 8.1 support is **unstable**)

I guess I will bump this down to `php8.0`.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PR REVIEW] phpMyAdmin: update to 5.2.0, fix update check.
  2022-08-30 15:06 [PR PATCH] phpMyAdmin: update to 5.2.0, fix update check TinfoilSubmarine
  2022-08-31 17:26 ` TinfoilSubmarine
@ 2022-09-01 18:47 ` williamdes
  2022-09-01 21:43 ` Francesco149
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: williamdes @ 2022-09-01 18:47 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 289 bytes --]

New review comment by williamdes on void-packages repository

https://github.com/void-linux/void-packages/pull/38984#discussion_r960994211

Comment:
You should change this to https://www.phpmyadmin.net/home_page/version.txt
See: https://github.com/linuxserver/docker-phpmyadmin/issues/10

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: phpMyAdmin: update to 5.2.0, fix update check.
  2022-08-30 15:06 [PR PATCH] phpMyAdmin: update to 5.2.0, fix update check TinfoilSubmarine
  2022-08-31 17:26 ` TinfoilSubmarine
  2022-09-01 18:47 ` [PR REVIEW] " williamdes
@ 2022-09-01 21:43 ` Francesco149
  2022-09-01 23:39 ` [PR PATCH] [Updated] " TinfoilSubmarine
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Francesco149 @ 2022-09-01 21:43 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 191 bytes --]

New comment by Francesco149 on void-packages repository

https://github.com/void-linux/void-packages/pull/38984#issuecomment-1234812728

Comment:
ok to adopt the package btw, if anyone wants

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PR PATCH] [Updated] phpMyAdmin: update to 5.2.0, fix update check.
  2022-08-30 15:06 [PR PATCH] phpMyAdmin: update to 5.2.0, fix update check TinfoilSubmarine
                   ` (2 preceding siblings ...)
  2022-09-01 21:43 ` Francesco149
@ 2022-09-01 23:39 ` TinfoilSubmarine
  2022-09-01 23:48 ` williamdes
  2022-09-06  5:52 ` [PR PATCH] [Merged]: " classabbyamp
  5 siblings, 0 replies; 7+ messages in thread
From: TinfoilSubmarine @ 2022-09-01 23:39 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1291 bytes --]

There is an updated pull request by TinfoilSubmarine against master on the void-packages repository

https://github.com/TinfoilSubmarine/void-packages update/phpMyAdmin
https://github.com/void-linux/void-packages/pull/38984

phpMyAdmin: update to 5.2.0, fix update check.
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


A patch file from https://github.com/void-linux/void-packages/pull/38984.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-update/phpMyAdmin-38984.patch --]
[-- Type: text/x-diff, Size: 1606 bytes --]

From 059778326fac563c39dfaed105d08e67367c54f5 Mon Sep 17 00:00:00 2001
From: Joel Beckmeyer <joel@beckmeyer.us>
Date: Tue, 30 Aug 2022 09:20:15 -0400
Subject: [PATCH] phpMyAdmin: update to 5.2.0, fix update check.

---
 srcpkgs/phpMyAdmin/template | 8 ++++----
 srcpkgs/phpMyAdmin/update   | 2 ++
 2 files changed, 6 insertions(+), 4 deletions(-)
 create mode 100644 srcpkgs/phpMyAdmin/update

diff --git a/srcpkgs/phpMyAdmin/template b/srcpkgs/phpMyAdmin/template
index a55d2b5dfe2e..664332adac37 100644
--- a/srcpkgs/phpMyAdmin/template
+++ b/srcpkgs/phpMyAdmin/template
@@ -1,16 +1,16 @@
 # Template file for 'phpMyAdmin'
 pkgname=phpMyAdmin
-version=5.0.4
+version=5.2.0
 revision=1
 wrksrc="phpMyAdmin-${version}-all-languages"
 conf_files="/etc/webapps/phpMyAdmin/config.inc.php"
-depends="php mysql"
+depends="php mariadb"
 short_desc="Web interface for MySQL and MariaDB"
-maintainer="Franc[e]sco <lolisamurai@tfwno.gf>"
+maintainer="Joel Beckmeyer <joel@beckmeyer.us>"
 license="GPL-2.0-only"
 homepage="https://www.phpmyadmin.net"
 distfiles="https://files.phpmyadmin.net/phpMyAdmin/${version}/phpMyAdmin-${version}-all-languages.tar.xz"
-checksum=1578c1a08e594da4f4f62e676ccbdbd17784c3de769b094ba42c35bf05c057db
+checksum=66da31ca295f06182ac3f2e6e96057dc824c459baedf4b29de6ed0d3be039230
 
 do_install() {
 	vmkdir usr/share/webapps/
diff --git a/srcpkgs/phpMyAdmin/update b/srcpkgs/phpMyAdmin/update
new file mode 100644
index 000000000000..444963f5a661
--- /dev/null
+++ b/srcpkgs/phpMyAdmin/update
@@ -0,0 +1,2 @@
+site="https://www.phpmyadmin.net/home_page/version.txt"
+pattern="^\K[\d.]+$"

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: phpMyAdmin: update to 5.2.0, fix update check.
  2022-08-30 15:06 [PR PATCH] phpMyAdmin: update to 5.2.0, fix update check TinfoilSubmarine
                   ` (3 preceding siblings ...)
  2022-09-01 23:39 ` [PR PATCH] [Updated] " TinfoilSubmarine
@ 2022-09-01 23:48 ` williamdes
  2022-09-06  5:52 ` [PR PATCH] [Merged]: " classabbyamp
  5 siblings, 0 replies; 7+ messages in thread
From: williamdes @ 2022-09-01 23:48 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 203 bytes --]

New comment by williamdes on void-packages repository

https://github.com/void-linux/void-packages/pull/38984#issuecomment-1234918023

Comment:
Please always mention me on phpmyadmin PRs around the web 

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PR PATCH] [Merged]: phpMyAdmin: update to 5.2.0, fix update check.
  2022-08-30 15:06 [PR PATCH] phpMyAdmin: update to 5.2.0, fix update check TinfoilSubmarine
                   ` (4 preceding siblings ...)
  2022-09-01 23:48 ` williamdes
@ 2022-09-06  5:52 ` classabbyamp
  5 siblings, 0 replies; 7+ messages in thread
From: classabbyamp @ 2022-09-06  5:52 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1107 bytes --]

There's a merged pull request on the void-packages repository

phpMyAdmin: update to 5.2.0, fix update check.
https://github.com/void-linux/void-packages/pull/38984

Description:
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2022-09-06  5:52 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-30 15:06 [PR PATCH] phpMyAdmin: update to 5.2.0, fix update check TinfoilSubmarine
2022-08-31 17:26 ` TinfoilSubmarine
2022-09-01 18:47 ` [PR REVIEW] " williamdes
2022-09-01 21:43 ` Francesco149
2022-09-01 23:39 ` [PR PATCH] [Updated] " TinfoilSubmarine
2022-09-01 23:48 ` williamdes
2022-09-06  5:52 ` [PR PATCH] [Merged]: " classabbyamp

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).