All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-oe,meta-webserver][PATCH 0/4] LAMP update
@ 2013-08-20 23:01 Paul Eggleton
  2013-08-20 23:01 ` [meta-oe,meta-webserver][PATCH 1/4] apache2: update to 2.4.6 Paul Eggleton
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Paul Eggleton @ 2013-08-20 23:01 UTC (permalink / raw)
  To: openembedded-devel

An update to the LAMP (or at least the AMP) recipes. MySQL has been
replaced with a much newer version of MariaDB (although in the same 5.1
series; I tried updating to the newer 5.5 series and got it almost
working but there have been many changes including a switch to cmake and
a pretty significant size difference in the output without any further
package splitting, so some further work will be needed before we can
move up to that version.)

These have all been tested together on both qemux86 and qemuarm,
and the three other than mariadb were also tested without the mariadb
change.


The following changes since commit d4571b3d94d999ad54d8965f0d049dcfd34da504:

  quagga: two fixes (2013-08-16 11:00:19 -0400)

are available in the git repository at:

  git://git.openembedded.org/meta-openembedded-contrib paule/lamp-update
  http://cgit.openembedded.org/cgit.cgi/meta-openembedded-contrib/log/?h=paule/lamp-update

Paul Eggleton (4):
  apache2: update to 2.4.6
  modphp: update to 5.5.2
  phpmyadmin: update to 4.0.5
  mysql5: replace with mariadb 5.1.67 and tweak

 meta-oe/recipes-support/mysql/files/autofoo.patch  | 319 ----------------
 meta-oe/recipes-support/mysql/files/my.cnf         |  21 --
 ...5-native_5.1.40.bb => mariadb-native_5.1.67.bb} |   8 +-
 .../mysql/{mysql5 => mariadb}/Makefile.am.patch    |   0
 .../configure-ps-cache-check.patch                 |   0
 .../mysql/mariadb/configure.in.patch               |  13 +
 .../mysql/mariadb/fix-cve-2013-1861-1.patch        | 174 +++++++++
 .../mysql/mariadb/fix-cve-2013-1861-2.patch        | 257 +++++++++++++
 .../mysql/{files => mariadb}/fix_host_path.patch   |   0
 .../mysql/{mysql5 => mariadb}/misc.m4.patch        |   0
 .../mysql/{mysql5 => mariadb}/my.cnf               |   2 +-
 .../mysql/{files => mariadb}/mysqld.sh             |   0
 .../recipes-support/mysql/mariadb/plug.in.patch    | 405 +++++++++++++++++++++
 meta-oe/recipes-support/mysql/mariadb_5.1.67.bb    |  14 +
 .../{mysql5_5.1.40.inc => mariadb_5.1.67.inc}      |  62 +++-
 .../mysql/mysql5/configure-ps-cache-check.patch    |  27 --
 .../mysql/mysql5/configure.in.patch                |  54 ---
 .../mysql/mysql5/fix-abi-check-gcc45.patch         |  77 ----
 .../mysql/mysql5/fix_host_path.patch               |  37 --
 meta-oe/recipes-support/mysql/mysql5/mysqld.sh     |  24 --
 meta-oe/recipes-support/mysql/mysql5/plug.in.patch |  40 --
 meta-oe/recipes-support/mysql/mysql5_5.1.40.bb     |   6 -
 .../apache-configure_perlbin.patch                 |   0
 .../apache-ssl-ltmain-rpath.patch                  |   0
 .../fix-libtool-name.patch                         |   0
 .../httpd-2.4.1-corelimit.patch                    |   0
 .../httpd-2.4.1-selinux.patch                      |   0
 .../httpd-2.4.4-export.patch                       |   0
 .../httpd-2.4.4-r1332643.patch                     |   0
 .../replace-lynx-to-curl-in-apachectl-script.patch |   0
 .../server-makefile.patch                          |   0
 ...he2-native_2.4.4.bb => apache2-native_2.4.6.bb} |   4 +-
 .../apache2/{apache2_2.4.4.bb => apache2_2.4.6.bb} |   4 +-
 meta-webserver/recipes-php/modphp/modphp5.inc      |   5 +-
 meta-webserver/recipes-php/modphp/modphp_5.4.15.bb |   4 -
 meta-webserver/recipes-php/modphp/modphp_5.5.2.bb  |   7 +
 .../{phpmyadmin_3.5.8.1.bb => phpmyadmin_4.0.5.bb} |   4 +-
 37 files changed, 924 insertions(+), 644 deletions(-)
 delete mode 100644 meta-oe/recipes-support/mysql/files/autofoo.patch
 delete mode 100644 meta-oe/recipes-support/mysql/files/my.cnf
 rename meta-oe/recipes-support/mysql/{mysql5-native_5.1.40.bb => mariadb-native_5.1.67.bb} (54%)
 rename meta-oe/recipes-support/mysql/{mysql5 => mariadb}/Makefile.am.patch (100%)
 rename meta-oe/recipes-support/mysql/{files => mariadb}/configure-ps-cache-check.patch (100%)
 create mode 100644 meta-oe/recipes-support/mysql/mariadb/configure.in.patch
 create mode 100644 meta-oe/recipes-support/mysql/mariadb/fix-cve-2013-1861-1.patch
 create mode 100644 meta-oe/recipes-support/mysql/mariadb/fix-cve-2013-1861-2.patch
 rename meta-oe/recipes-support/mysql/{files => mariadb}/fix_host_path.patch (100%)
 rename meta-oe/recipes-support/mysql/{mysql5 => mariadb}/misc.m4.patch (100%)
 rename meta-oe/recipes-support/mysql/{mysql5 => mariadb}/my.cnf (94%)
 rename meta-oe/recipes-support/mysql/{files => mariadb}/mysqld.sh (100%)
 create mode 100644 meta-oe/recipes-support/mysql/mariadb/plug.in.patch
 create mode 100644 meta-oe/recipes-support/mysql/mariadb_5.1.67.bb
 rename meta-oe/recipes-support/mysql/{mysql5_5.1.40.inc => mariadb_5.1.67.inc} (75%)
 delete mode 100644 meta-oe/recipes-support/mysql/mysql5/configure-ps-cache-check.patch
 delete mode 100644 meta-oe/recipes-support/mysql/mysql5/configure.in.patch
 delete mode 100644 meta-oe/recipes-support/mysql/mysql5/fix-abi-check-gcc45.patch
 delete mode 100644 meta-oe/recipes-support/mysql/mysql5/fix_host_path.patch
 delete mode 100644 meta-oe/recipes-support/mysql/mysql5/mysqld.sh
 delete mode 100644 meta-oe/recipes-support/mysql/mysql5/plug.in.patch
 delete mode 100644 meta-oe/recipes-support/mysql/mysql5_5.1.40.bb
 rename meta-webserver/recipes-httpd/apache2/{apache2-2.4.4 => apache2-2.4.6}/apache-configure_perlbin.patch (100%)
 rename meta-webserver/recipes-httpd/apache2/{apache2-2.4.4 => apache2-2.4.6}/apache-ssl-ltmain-rpath.patch (100%)
 rename meta-webserver/recipes-httpd/apache2/{apache2-2.4.4 => apache2-2.4.6}/fix-libtool-name.patch (100%)
 rename meta-webserver/recipes-httpd/apache2/{apache2-2.4.4 => apache2-2.4.6}/httpd-2.4.1-corelimit.patch (100%)
 rename meta-webserver/recipes-httpd/apache2/{apache2-2.4.4 => apache2-2.4.6}/httpd-2.4.1-selinux.patch (100%)
 rename meta-webserver/recipes-httpd/apache2/{apache2-2.4.4 => apache2-2.4.6}/httpd-2.4.4-export.patch (100%)
 rename meta-webserver/recipes-httpd/apache2/{apache2-2.4.4 => apache2-2.4.6}/httpd-2.4.4-r1332643.patch (100%)
 rename meta-webserver/recipes-httpd/apache2/{apache2-2.4.4 => apache2-2.4.6}/replace-lynx-to-curl-in-apachectl-script.patch (100%)
 rename meta-webserver/recipes-httpd/apache2/{apache2-2.4.4 => apache2-2.4.6}/server-makefile.patch (100%)
 rename meta-webserver/recipes-httpd/apache2/{apache2-native_2.4.4.bb => apache2-native_2.4.6.bb} (89%)
 rename meta-webserver/recipes-httpd/apache2/{apache2_2.4.4.bb => apache2_2.4.6.bb} (97%)
 delete mode 100644 meta-webserver/recipes-php/modphp/modphp_5.4.15.bb
 create mode 100644 meta-webserver/recipes-php/modphp/modphp_5.5.2.bb
 rename meta-webserver/recipes-php/phpmyadmin/{phpmyadmin_3.5.8.1.bb => phpmyadmin_4.0.5.bb} (87%)

-- 
1.8.1.2



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

end of thread, other threads:[~2013-08-20 23:02 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-20 23:01 [meta-oe,meta-webserver][PATCH 0/4] LAMP update Paul Eggleton
2013-08-20 23:01 ` [meta-oe,meta-webserver][PATCH 1/4] apache2: update to 2.4.6 Paul Eggleton
2013-08-20 23:01 ` [meta-oe,meta-webserver][PATCH 2/4] modphp: update to 5.5.2 Paul Eggleton
2013-08-20 23:01 ` [meta-oe, meta-webserver][PATCH 3/4] phpmyadmin: update to 4.0.5 Paul Eggleton
2013-08-20 23:01 ` [meta-oe, meta-webserver][PATCH 4/4] mysql5: replace with mariadb 5.1.67 and tweak Paul Eggleton

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.