aboutsummaryrefslogtreecommitdiffstats
path: root/meta-webserver/recipes-php/phpmyadmin/phpmyadmin_4.7.3.bb
diff options
context:
space:
mode:
authorDerek Straka <derek@asterius.io>2017-10-27 17:18:57 -0400
committerArmin Kuster <akuster808@gmail.com>2018-02-01 07:32:03 -0800
commit0fb0fd23049064eb05ea351d6d0a1e705421a036 (patch)
tree0d67b09b63295f899d21e5f68b7e3b29999d8d82 /meta-webserver/recipes-php/phpmyadmin/phpmyadmin_4.7.3.bb
parentbe07dada956ea789dc655739bdf10e73a52d4885 (diff)
downloadmeta-openembedded-contrib-0fb0fd23049064eb05ea351d6d0a1e705421a036.tar.gz
phpmyadmin: update to version 4.7.5
includes: 4.7.5 (2017-10-23) - issue #13615 Avoid problems with browsing unknown query types - issue #13612 Integrate tooltip into datetime pickers - issue #13628 Fixed javascript error in server monitor - issue #13444 Fixed server monitor on non Linux and Windows systems - issue #13633 Reload javscript messages when changing language - issue #13604 Fixed crash on invalid ordering data - issue #13639 Fixed error when browsing non SELECT results - issue #13533 Fixed saving column to display - issue #13647 Fixed export of tables with VIRTUAL columns - issue #13669 Fixed selecting multiple rows accidentally selects the next row too - issue #13513 Fixed edit index Column alignment issue - issue #13515 Fixed rendering of add index dialog - issue #13710 Fixed possible error in server advisor - issue #13477 Fixed setting input transformations - issue #13552 Fixed IPv4/IPv6 To Binary input transformation - issue #13686 Clicking on column name to trigger sort with an active search leads to logout - issue #13725 Fixed copying tables with specific PARTITION definition - issue #13761 Fixed listing of bookmarks for a database 4.7.4 (2017-08-23) - issue #13415 Remove shadow from the logo - issue #13507 Fixed per server theme feature - issue #13523 Missing newline in ALTER exports - issue #13414 Fixed several compatibility issues with PHP 7.2 - issue #13550 Fixed copy results to clipboard - issue #13562 Add limitation for user group length - issue #13561 Fixed edit variable link in advisor - issue #13579 Optimize table link should not be visible in print page - issue #13553 Improved error handling on corrupted tables - issue #13512 Fixed rendering of add index dialog - issue #13606 Fixed refreshing server variables Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Armin Kuster <akuster808@gmail.com> (cherry picked from commit 2de93541d924963e20d4cc4b1592cd89183d4be3) Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'meta-webserver/recipes-php/phpmyadmin/phpmyadmin_4.7.3.bb')
-rw-r--r--meta-webserver/recipes-php/phpmyadmin/phpmyadmin_4.7.3.bb38
1 files changed, 0 insertions, 38 deletions
diff --git a/meta-webserver/recipes-php/phpmyadmin/phpmyadmin_4.7.3.bb b/meta-webserver/recipes-php/phpmyadmin/phpmyadmin_4.7.3.bb
deleted file mode 100644
index 9949a73954..0000000000
--- a/meta-webserver/recipes-php/phpmyadmin/phpmyadmin_4.7.3.bb
+++ /dev/null
@@ -1,38 +0,0 @@
-SUMMARY = "Web-based MySQL administration interface"
-HOMEPAGE = "http://www.phpmyadmin.net"
-# Main code is GPLv2, vendor/tecnickcom/tcpdf is under LGPLv3, js/jquery is under MIT
-LICENSE = "GPLv2 & LGPLv3 & MIT"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
- file://vendor/tecnickcom/tcpdf/LICENSE.TXT;md5=5c87b66a5358ebcc495b03e0afcd342c \
- file://js/jquery/MIT-LICENSE.txt;md5=e43aa437a6a1ba421653bd5034333bf9 \
-"
-
-SRC_URI = "https://files.phpmyadmin.net/phpMyAdmin/${PV}/phpMyAdmin-${PV}-all-languages.tar.xz \
- file://apache.conf \
-"
-
-SRC_URI[md5sum] = "4b0c5dbaf871eb86671613da3c31e6b3"
-SRC_URI[sha256sum] = "ed51669043f62494dc3bc21a87423373164ff63865a6c6bceaee535ef785f33e"
-
-S = "${WORKDIR}/phpMyAdmin-${PV}-all-languages"
-
-inherit allarch
-
-do_install() {
- install -d ${D}${datadir}/${BPN}
- cp -R --no-dereference --preserve=mode,links -v * ${D}${datadir}/${BPN}
- chown -R root:root ${D}${datadir}/${BPN}
- # Don't install patches to target
- rm -rf ${D}${datadir}/${BPN}/patches
-
- install -d ${D}${sysconfdir}/apache2/conf.d
- install -m 0644 ${WORKDIR}/apache.conf ${D}${sysconfdir}/apache2/conf.d/phpmyadmin.conf
-
- # Remove a few scripts that explicitly require bash (!)
- rm -f ${D}${datadir}/phpmyadmin/libraries/transformations/*.sh
-}
-
-FILES_${PN} = "${datadir}/${BPN} \
- ${sysconfdir}/apache2/conf.d"
-
-RDEPENDS_${PN} += "bash"