X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from dal-a2.localdomain (unknown [74.117.189.115]) by mail.alpinelinux.org (Postfix) with ESMTP id 418FADC0091 for ; Fri, 28 Jun 2013 15:05:45 +0000 (UTC) Received: from ncopa-desktop.alpinelinux.org (3.203.202.84.customer.cdi.no [84.202.203.3]) (using SSLv3 with cipher ECDHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) (Authenticated sender: ncopa@tanael.org) by dal-a2.localdomain (Postfix) with ESMTPSA id 873A2BC29FD; Fri, 28 Jun 2013 15:05:44 +0000 (UTC) Date: Fri, 28 Jun 2013 17:05:41 +0200 From: Natanael Copa To: Vitaliy Tokarev Cc: alpine-devel@lists.alpinelinux.org Subject: Re: [alpine-devel] [PATCH] new aport for yaws 1.96 Message-ID: <20130628170541.1b15c733@ncopa-desktop.alpinelinux.org> In-Reply-To: <1372280211-26328-1-git-send-email-vitaliy.tokarev@gmail.com> References: <1372280211-26328-1-git-send-email-vitaliy.tokarev@gmail.com> X-Mailer: Claws Mail 3.9.2 (GTK+ 2.24.17; x86_64-unknown-linux-gnu) X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit On Thu, 27 Jun 2013 00:56:51 +0400 Vitaliy Tokarev wrote: > Yaws is a HTTP high perfomance 1.1 webserver particularly well > suited for dynamic-content web applications. > --- > testing/yaws/APKBUILD | 66 ++++++++++++++++++++++++++++++++++++++++ > testing/yaws/yaws.init.d | 52 +++++++++++++++++++++++++++++++ > testing/yaws/yaws.post-deinstall | 2 ++ > testing/yaws/yaws.post-install | 2 ++ > testing/yaws/yaws.post-upgrade | 2 ++ > 5 files changed, 124 insertions(+) > create mode 100644 testing/yaws/APKBUILD > create mode 100755 testing/yaws/yaws.init.d > create mode 100644 testing/yaws/yaws.post-deinstall > create mode 100644 testing/yaws/yaws.post-install > create mode 100644 testing/yaws/yaws.post-upgrade ... > diff --git a/testing/yaws/yaws.post-deinstall b/testing/yaws/yaws.post-deinstall > new file mode 100644 > index 0000000..60dd86d > --- /dev/null > +++ b/testing/yaws/yaws.post-deinstall > @@ -0,0 +1,2 @@ > +#!/bin/sh > +rmdir --ignore-fail-on-non-empty /usr/var/log/yaws && exit 0 > diff --git a/testing/yaws/yaws.post-install b/testing/yaws/yaws.post-install > new file mode 100644 > index 0000000..17ac6d7 > --- /dev/null > +++ b/testing/yaws/yaws.post-install > @@ -0,0 +1,2 @@ > +#!/bin/sh > +mkdir -p /usr/var/log/yaws && exit 0 > diff --git a/testing/yaws/yaws.post-upgrade b/testing/yaws/yaws.post-upgrade > new file mode 100644 > index 0000000..17ac6d7 > --- /dev/null > +++ b/testing/yaws/yaws.post-upgrade > @@ -0,0 +1,2 @@ > +#!/bin/sh > +mkdir -p /usr/var/log/yaws && exit 0 Why are those needed? /usr/var sounds wrong. It also fails to build here: ccache gcc -c -Os -fomit-frame-pointer -pipe -I/usr/include/security -I"/usr/lib/erlang/usr/include" -I/usr/include/pam/ epam.c setuid_drv.c:20:24: fatal error: erl_driver.h: No such file or directory compilation terminated. sounds like erland-dev should be in makedepends. -nc --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---