From: Paul Eggleton <paul.eggleton@linux.intel.com>
To: openembedded-devel@lists.openembedded.org
Subject: [meta-webserver][PATCH 0/6] Add meta-webserver
Date: Mon, 1 Oct 2012 17:14:52 +0100 [thread overview]
Message-ID: <cover.1349107616.git.paul.eggleton@linux.intel.com> (raw)
So finally I have got this into a working state; apologies for the
delay. There were a number of issues affecting cross-compilation as well
as some problems with the initial configuration; these should now be
addressed. We may wish to look at a more standard directory layout for
Apache as the default one doesn't seem to be used by most distributions;
we can look at this later - for now let's get the recipes out there so
people can try them out.
I know there are a few people waiting to submit additional recipes for
this layer and I expect we will also want to look at moving some
web-server related recipes from meta-oe into here at some point in the
near future.
The following changes since commit 7bfff4b1d6b0067ddabf2474320e3e78795b2b4f:
uhd,fuse: Fix misplaced quotations (2012-09-28 22:50:42 +0200)
are available in the git repository at:
git://git.openembedded.org/meta-openembedded-contrib paule/meta-webserver-add
http://cgit.openembedded.org/cgit.cgi/meta-openembedded-contrib/log/?h=paule/meta-webserver-add
Paul Eggleton (6):
Add meta-webserver layer
apache2: add from OE-Classic
modphp: add from OE-Classic
apache2: update to version 2.4.2 and fix
modphp: update to 5.3.14 and fix
xdebug: add new recipe
meta-webserver/COPYING.MIT | 17 +
meta-webserver/README | 37 +++
meta-webserver/conf/layer.conf | 13 +
.../apache2-2.4.2/apache-configure_perlbin.patch | 37 +++
.../apache2-2.4.2/apache-ssl-ltmain-rpath.patch | 76 +++++
.../apache2/apache2-2.4.2/fix-libtool-name.patch | 55 +++
.../apache2-2.4.2/httpd-2.4.1-corelimit.patch | 37 +++
.../apache2/apache2-2.4.2/httpd-2.4.1-export.patch | 22 ++
.../apache2-2.4.2/httpd-2.4.1-selinux.patch | 63 ++++
.../apache2-2.4.2/httpd-2.4.2-r1326980+.patch | 74 +++++
.../apache2-2.4.2/httpd-2.4.2-r1327036+.patch | 87 +++++
.../apache2-2.4.2/httpd-2.4.2-r1332643.patch | 260 +++++++++++++++
.../apache2-2.4.2/httpd-2.4.2-r1337344+.patch | 350 ++++++++++++++++++++
.../apache2-2.4.2/httpd-2.4.2-restart.patch | 35 ++
.../replace-lynx-to-curl-in-apachectl-script.patch | 52 +++
.../apache2/apache2-2.4.2/server-makefile.patch | 11 +
.../recipes-httpd/apache2/apache2-native_2.4.2.bb | 43 +++
.../recipes-httpd/apache2/apache2_2.4.2.bb | 130 ++++++++
meta-webserver/recipes-httpd/apache2/files/init | 63 ++++
.../recipes-php/modphp/files/70_mod_php5.conf | 12 +
.../recipes-php/modphp/files/configure.patch | 11 +
.../recipes-php/modphp/files/pthread-check.patch | 64 ++++
meta-webserver/recipes-php/modphp/modphp5.inc | 91 +++++
meta-webserver/recipes-php/modphp/modphp_5.3.14.bb | 5 +
meta-webserver/recipes-php/xdebug/xdebug_2.2.1.bb | 29 ++
25 files changed, 1674 insertions(+)
create mode 100644 meta-webserver/COPYING.MIT
create mode 100644 meta-webserver/README
create mode 100644 meta-webserver/conf/layer.conf
create mode 100644 meta-webserver/recipes-httpd/apache2/apache2-2.4.2/apache-configure_perlbin.patch
create mode 100644 meta-webserver/recipes-httpd/apache2/apache2-2.4.2/apache-ssl-ltmain-rpath.patch
create mode 100644 meta-webserver/recipes-httpd/apache2/apache2-2.4.2/fix-libtool-name.patch
create mode 100644 meta-webserver/recipes-httpd/apache2/apache2-2.4.2/httpd-2.4.1-corelimit.patch
create mode 100644 meta-webserver/recipes-httpd/apache2/apache2-2.4.2/httpd-2.4.1-export.patch
create mode 100644 meta-webserver/recipes-httpd/apache2/apache2-2.4.2/httpd-2.4.1-selinux.patch
create mode 100644 meta-webserver/recipes-httpd/apache2/apache2-2.4.2/httpd-2.4.2-r1326980+.patch
create mode 100644 meta-webserver/recipes-httpd/apache2/apache2-2.4.2/httpd-2.4.2-r1327036+.patch
create mode 100644 meta-webserver/recipes-httpd/apache2/apache2-2.4.2/httpd-2.4.2-r1332643.patch
create mode 100644 meta-webserver/recipes-httpd/apache2/apache2-2.4.2/httpd-2.4.2-r1337344+.patch
create mode 100644 meta-webserver/recipes-httpd/apache2/apache2-2.4.2/httpd-2.4.2-restart.patch
create mode 100644 meta-webserver/recipes-httpd/apache2/apache2-2.4.2/replace-lynx-to-curl-in-apachectl-script.patch
create mode 100644 meta-webserver/recipes-httpd/apache2/apache2-2.4.2/server-makefile.patch
create mode 100644 meta-webserver/recipes-httpd/apache2/apache2-native_2.4.2.bb
create mode 100644 meta-webserver/recipes-httpd/apache2/apache2_2.4.2.bb
create mode 100755 meta-webserver/recipes-httpd/apache2/files/init
create mode 100644 meta-webserver/recipes-php/modphp/files/70_mod_php5.conf
create mode 100644 meta-webserver/recipes-php/modphp/files/configure.patch
create mode 100644 meta-webserver/recipes-php/modphp/files/pthread-check.patch
create mode 100644 meta-webserver/recipes-php/modphp/modphp5.inc
create mode 100644 meta-webserver/recipes-php/modphp/modphp_5.3.14.bb
create mode 100644 meta-webserver/recipes-php/xdebug/xdebug_2.2.1.bb
--
1.7.9.5
next reply other threads:[~2012-10-01 16:28 UTC|newest]
Thread overview: 31+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-10-01 16:14 Paul Eggleton [this message]
2012-10-01 16:14 ` [meta-webserver][PATCH 1/6] Add meta-webserver layer Paul Eggleton
2012-10-01 16:14 ` [meta-webserver][PATCH 2/6] apache2: add from OE-Classic Paul Eggleton
2012-10-03 10:17 ` Koen Kooi
2012-10-03 11:28 ` Paul Eggleton
2012-10-03 11:41 ` Koen Kooi
2012-10-03 12:23 ` Paul Eggleton
2012-10-01 16:14 ` [meta-webserver][PATCH 3/6] modphp: " Paul Eggleton
2012-10-03 10:20 ` Koen Kooi
2012-10-03 11:28 ` Paul Eggleton
2012-10-03 11:44 ` Koen Kooi
2012-10-01 16:14 ` [meta-webserver][PATCH 4/6] apache2: update to version 2.4.2 and fix Paul Eggleton
2012-10-01 16:14 ` [meta-webserver][PATCH 5/6] modphp: update to 5.3.14 " Paul Eggleton
2012-10-01 16:14 ` [meta-webserver][PATCH 6/6] xdebug: add new recipe Paul Eggleton
2012-10-03 10:21 ` Koen Kooi
2012-10-03 11:28 ` Paul Eggleton
2012-10-03 11:47 ` Koen Kooi
2012-10-03 13:08 ` Paul Eggleton
2012-10-02 14:40 ` [meta-webserver][PATCH 0/6] Add meta-webserver Koen Kooi
2012-10-02 14:53 ` Paul Eggleton
2012-10-03 10:24 ` Koen Kooi
2012-10-03 10:43 ` Paul Eggleton
2012-10-03 11:27 ` Koen Kooi
2012-10-03 11:29 ` Paul Eggleton
2012-10-03 11:43 ` Koen Kooi
2012-10-03 12:23 ` Paul Eggleton
2012-10-03 13:12 ` Koen Kooi
2012-10-03 13:43 ` Paul Eggleton
2012-10-03 14:08 ` McClintock Matthew-B29882
2012-10-03 14:18 ` Paul Eggleton
2012-10-03 14:19 ` Khem Raj
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.1349107616.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 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.