diff options
author | Ian Moone <csmk+gentoo@chaoslab.org> | 2017-10-20 04:40:57 +0900 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2017-10-27 23:02:08 +0200 |
commit | 9d676aea5fedb02ec5da7e65c51bf5f830545c6a (patch) | |
tree | a327ee3e90cb7dc5ad25343d2cf79f8e62061ed3 /www-servers | |
parent | www-servers/h2o: security bump to 2.2.3. (diff) | |
download | gentoo-9d676aea5fedb02ec5da7e65c51bf5f830545c6a.tar.gz gentoo-9d676aea5fedb02ec5da7e65c51bf5f830545c6a.tar.bz2 gentoo-9d676aea5fedb02ec5da7e65c51bf5f830545c6a.zip |
www-servers/h2o: drop insecure version.
Package-Manager: Portage-2.3.8, Repoman-2.3.3
Diffstat (limited to 'www-servers')
-rw-r--r-- | www-servers/h2o/Manifest | 1 | ||||
-rw-r--r-- | www-servers/h2o/h2o-2.2.2.ebuild | 68 |
2 files changed, 0 insertions, 69 deletions
diff --git a/www-servers/h2o/Manifest b/www-servers/h2o/Manifest index cd6850d14553..e73da6cfa39a 100644 --- a/www-servers/h2o/Manifest +++ b/www-servers/h2o/Manifest @@ -1,2 +1 @@ -DIST h2o-2.2.2.tar.gz 16192602 SHA256 cf45780058566bd63d90ad0b52b1d15f8515519090753398b9bcf770162a0433 SHA512 b5cc08f2be7056bbac4370f9b6ccb1ba0ad4ea61ce67e946a4f26b8f9c0a575f603c899b1a88f17d1065e0e72e1d1094199200ed24b4f3644a3c7df34aa04b51 WHIRLPOOL d9aff2d3e7caa0334efbac86a807fe8ecd5f146ae56315a5194b8de653ae4f91d33cad754714cd38fadd1c59d87cafe30c1f5f6cb2102362a7647ebd3f18dc84 DIST h2o-2.2.3.tar.gz 16207150 SHA256 d40401ca714d00ca5204e8d22148dbaa9cae3407e3b4b6b62bd208543901ea51 SHA512 f138667e8e4370102028da469e09e8b2ee2e5dc92f4513b35467aa2a2fb7b02bbda2b2d158bbf3198b26faeea48d5ec07a7ebab1d0cb3032c532d4e6323630f1 WHIRLPOOL 0a5b498c7568b07af9e475eec00fd8db0122608843c5918616857ec96479a180a89d7a4274c98107129efa784b0d3714dd687a9f1463606be65e12987dc89303 diff --git a/www-servers/h2o/h2o-2.2.2.ebuild b/www-servers/h2o/h2o-2.2.2.ebuild deleted file mode 100644 index fef33e05d6fc..000000000000 --- a/www-servers/h2o/h2o-2.2.2.ebuild +++ /dev/null @@ -1,68 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils systemd user - -DESCRIPTION="An optimized HTTP server with support for HTTP/1.x and HTTP/2" -HOMEPAGE="https://h2o.examp1e.net" -SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="libressl +mruby" - -RDEPEND=" - !libressl? ( dev-libs/openssl:0= ) - libressl? ( dev-libs/libressl:0= )" -DEPEND="${RDEPEND} - mruby? ( - sys-devel/bison - || ( - dev-lang/ruby:2.4 - dev-lang/ruby:2.3 - dev-lang/ruby:2.2 - ) - )" - -pkg_setup() { - enewgroup h2o - enewuser h2o -1 -1 -1 h2o -} - -src_prepare() { - # Leave optimization level to user CFLAGS - sed -i 's/-O2 -g ${CC_WARNING_FLAGS} //g' ./CMakeLists.txt \ - || die "sed fix failed!" - - cmake-utils_src_prepare -} - -src_configure() { - local mycmakeargs=( - -DCMAKE_INSTALL_SYSCONFDIR="${EPREFIX}"/etc/h2o - -DWITH_MRUBY="$(usex mruby)" - -DWITHOUT_LIBS=ON - ) - cmake-utils_src_configure -} - -src_install() { - cmake-utils_src_install - - newinitd "${FILESDIR}"/h2o.initd h2o - systemd_dounit "${FILESDIR}"/h2o.service - - insinto /etc/h2o - doins "${FILESDIR}"/h2o.conf - - keepdir /var/log/h2o - fperms 0700 /var/log/h2o - - keepdir /var/www/localhost/htdocs - - insinto /etc/logrotate.d - newins "${FILESDIR}"/h2o.logrotate h2o -} |