From: Paul Eggleton <paul.eggleton@linux.intel.com>
To: openembedded-devel@lists.openembedded.org
Subject: [meta-webserver/meta-oe][PATCH 0/5] Recipe upgrades
Date: Tue, 5 Aug 2014 14:20:41 +0100 [thread overview]
Message-ID: <cover.1407244194.git.paul.eggleton@linux.intel.com> (raw)
The usual series of recipe upgrades for Apache / (mod-)PHP / phpMyAdmin;
however current phpMyAdmin now refuses to work with MariaDB/MySQL older
than 5.5. We shouldn't be shipping 5.1 anymore anyway since it's
unmaintained, so I went ahead with the upgrade, which turned out to be
quite a pain :( It's now working, and build-wise it's a significant
improvement. However, there has been a fairly major increase in package
size, so we ought to be going through and trying to trim things down
where possible. I don't really have time (nor, to be honest, enough
specific knowledge of MariaDB/MySQL) to do this, so if anyone feels like
diving in and doing that, please do.
The following changes since commit 7d9440a1e7bdf69403c55d1d21c7d1db1f07969e:
concurrencykit: fix SRC_URI, add PV, inherit autotools-brokensep (2014-08-05 12:02:42 +0200)
are available in the git repository at:
git://git.openembedded.org/meta-openembedded-contrib paule/upgrades4
http://cgit.openembedded.org/cgit.cgi/meta-openembedded-contrib/log/?h=paule/upgrades4
Paul Eggleton (5):
apache2: do not patch generated file
apache2: update to 2.4.10
modphp: update to 5.5.15
phpmyadmin: update to 4.2.7
mariadb: update to 5.5.38
...b-native_5.1.67.bb => mariadb-native_5.5.38.bb} | 5 +-
.../mysql/mariadb/Makefile.am.patch | 19 -
.../mariadb/avoid-plugin-options-warnings.patch | 17 -
.../mysql/mariadb/configure-ps-cache-check.patch | 27 --
.../mysql/mariadb/configure.in.patch | 13 -
.../mysql/mariadb/fix-cmake-module-path.patch | 29 ++
.../mysql/mariadb/fix-cve-2013-1861-1.patch | 174 ---------
.../mysql/mariadb/fix-cve-2013-1861-2.patch | 257 -------------
.../mysql/mariadb/fix-link-error-ub1310.patch | 37 --
.../mysql/mariadb/fix-mysqlclient-r-version.patch | 161 ++++++++
.../mysql/mariadb/fix_host_path.patch | 37 --
.../recipes-support/mysql/mariadb/misc.m4.patch | 13 -
meta-oe/recipes-support/mysql/mariadb/my.cnf | 1 +
meta-oe/recipes-support/mysql/mariadb/mysqld.sh | 24 --
.../recipes-support/mysql/mariadb/plug.in.patch | 405 ---------------------
.../mysql/mariadb/remove-bad-path.patch | 18 +
...orage-forbids-absolute-addresses-on-IA-32.patch | 44 ---
.../mariadb/zlib-let-libdir-configurable.patch | 63 ----
.../mysql/{mariadb_5.1.67.bb => mariadb_5.5.38.bb} | 2 +
.../{mariadb_5.1.67.inc => mariadb_5.5.38.inc} | 113 +++---
...e2-native_2.4.9.bb => apache2-native_2.4.10.bb} | 4 +-
.../apache2/apache2/apache-configure_perlbin.patch | 17 -
.../{apache2_2.4.9.bb => apache2_2.4.10.bb} | 4 +-
meta-webserver/recipes-php/modphp/modphp5.inc | 2 +-
meta-webserver/recipes-php/modphp/modphp_5.5.12.bb | 7 -
meta-webserver/recipes-php/modphp/modphp_5.5.15.bb | 7 +
.../{phpmyadmin_4.2.0.bb => phpmyadmin_4.2.7.bb} | 4 +-
27 files changed, 287 insertions(+), 1217 deletions(-)
rename meta-oe/recipes-support/mysql/{mariadb-native_5.1.67.bb => mariadb-native_5.5.38.bb} (71%)
delete mode 100644 meta-oe/recipes-support/mysql/mariadb/Makefile.am.patch
delete mode 100644 meta-oe/recipes-support/mysql/mariadb/avoid-plugin-options-warnings.patch
delete mode 100644 meta-oe/recipes-support/mysql/mariadb/configure-ps-cache-check.patch
delete mode 100644 meta-oe/recipes-support/mysql/mariadb/configure.in.patch
create mode 100644 meta-oe/recipes-support/mysql/mariadb/fix-cmake-module-path.patch
delete mode 100644 meta-oe/recipes-support/mysql/mariadb/fix-cve-2013-1861-1.patch
delete mode 100644 meta-oe/recipes-support/mysql/mariadb/fix-cve-2013-1861-2.patch
delete mode 100644 meta-oe/recipes-support/mysql/mariadb/fix-link-error-ub1310.patch
create mode 100644 meta-oe/recipes-support/mysql/mariadb/fix-mysqlclient-r-version.patch
delete mode 100644 meta-oe/recipes-support/mysql/mariadb/fix_host_path.patch
delete mode 100644 meta-oe/recipes-support/mysql/mariadb/misc.m4.patch
delete mode 100644 meta-oe/recipes-support/mysql/mariadb/mysqld.sh
delete mode 100644 meta-oe/recipes-support/mysql/mariadb/plug.in.patch
create mode 100644 meta-oe/recipes-support/mysql/mariadb/remove-bad-path.patch
delete mode 100644 meta-oe/recipes-support/mysql/mariadb/storage-forbids-absolute-addresses-on-IA-32.patch
delete mode 100644 meta-oe/recipes-support/mysql/mariadb/zlib-let-libdir-configurable.patch
rename meta-oe/recipes-support/mysql/{mariadb_5.1.67.bb => mariadb_5.5.38.bb} (94%)
rename meta-oe/recipes-support/mysql/{mariadb_5.1.67.inc => mariadb_5.5.38.inc} (68%)
rename meta-webserver/recipes-httpd/apache2/{apache2-native_2.4.9.bb => apache2-native_2.4.10.bb} (91%)
rename meta-webserver/recipes-httpd/apache2/{apache2_2.4.9.bb => apache2_2.4.10.bb} (97%)
delete mode 100644 meta-webserver/recipes-php/modphp/modphp_5.5.12.bb
create mode 100644 meta-webserver/recipes-php/modphp/modphp_5.5.15.bb
rename meta-webserver/recipes-php/phpmyadmin/{phpmyadmin_4.2.0.bb => phpmyadmin_4.2.7.bb} (87%)
--
1.9.3
next reply other threads:[~2014-08-05 13:21 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-08-05 13:20 Paul Eggleton [this message]
2014-08-05 13:20 ` [meta-webserver][PATCH 1/5] apache2: do not patch generated file Paul Eggleton
2014-08-05 13:20 ` [meta-webserver][PATCH 2/5] apache2: update to 2.4.10 Paul Eggleton
2014-08-05 13:20 ` [meta-webserver][PATCH 3/5] modphp: update to 5.5.15 Paul Eggleton
2014-08-05 13:20 ` [meta-webserver][PATCH 4/5] phpmyadmin: update to 4.2.7 Paul Eggleton
2014-08-05 13:20 ` [meta-oe][PATCH 5/5] mariadb: update to 5.5.38 Paul Eggleton
2014-08-06 19:22 ` Martin Jansa
2014-08-07 13:31 ` [meta-oe][PATCH v2] " Paul Eggleton
2014-08-08 0:45 ` Martin Jansa
2014-08-08 10:02 ` Martin Jansa
2014-08-08 13:05 ` Paul Eggleton
2014-08-08 13:52 ` Martin Jansa
2014-08-08 14:16 ` [meta-oe][PATCH v3] " Paul Eggleton
2014-08-08 13:01 ` [meta-oe][PATCH v2] " Paul Eggleton
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=cover.1407244194.git.paul.eggleton@linux.intel.com \
--to=paul.eggleton@linux.intel.com \
--cc=openembedded-devel@lists.openembedded.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