summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony G. Basile <blueness@gentoo.org>2017-08-17 13:44:48 -0400
committerAnthony G. Basile <blueness@gentoo.org>2017-08-17 13:44:48 -0400
commit9fdd86b70fca882c39960edf61b8805886820e55 (patch)
tree35363a83d7753c0585ffbbdebe7f1b9a1a5ea86c /www-servers/thttpd
parentsys-apps/usbredir: use HTTPS for HOMEPAGE and SRC_URI (diff)
downloadgentoo-9fdd86b70fca882c39960edf61b8805886820e55.tar.gz
gentoo-9fdd86b70fca882c39960edf61b8805886820e55.tar.bz2
gentoo-9fdd86b70fca882c39960edf61b8805886820e55.zip
www-servers/thttpd: remove insecure version, bug #622306
Package-Manager: Portage-2.3.6, Repoman-2.3.1
Diffstat (limited to 'www-servers/thttpd')
-rw-r--r--www-servers/thttpd/Manifest1
-rw-r--r--www-servers/thttpd/thttpd-2.27.0.ebuild80
2 files changed, 0 insertions, 81 deletions
diff --git a/www-servers/thttpd/Manifest b/www-servers/thttpd/Manifest
index a404b876e5d0..4c3ace792cfe 100644
--- a/www-servers/thttpd/Manifest
+++ b/www-servers/thttpd/Manifest
@@ -1,2 +1 @@
-DIST sthttpd-2.27.0.tar.gz 206781 SHA256 97d660a881331e93818e872ce11536f461105d70a18dfc5de5895851c4b2afdb SHA512 78945867a01de2f9019deb2d1f21cdedf675c9d67f5de672d0d0bfdc397b444ac287a91d96976dddcdca080cc944e72dd3d1f95f31a592eb839125c494799bdc WHIRLPOOL 55ab90405b3affcb260dc4cfa14008f79cc0b2fd808686078b34ae0a6be2cc4941241406d78f9c2d06360ab6a07f1bf4abc1cf814a46ebe136f031058026419f
DIST thttpd-2.27.1.tar.gz 96430 SHA256 a1ee2806432eaf5b5dd267a0523701f9f1fa00fefd499d5bec42165a41e05846 SHA512 5d42e32652eb2310c7379d2c4373ad8f54b33bd7c2b444f06d1756eb4ed296774ce3144d91bbba85c6ad604e575128dc7199b797dc8d1b4849b0249054ba5d24 WHIRLPOOL e64b132e83b459fb0ab6da6f3a15c4a603f8d4f53f123cabccc82077506a258c616c2703992b671e9193c26c452bd3b6908ebfadfb15301f1e34f8925303f625
diff --git a/www-servers/thttpd/thttpd-2.27.0.ebuild b/www-servers/thttpd/thttpd-2.27.0.ebuild
deleted file mode 100644
index 55c36fe49a0c..000000000000
--- a/www-servers/thttpd/thttpd-2.27.0.ebuild
+++ /dev/null
@@ -1,80 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-inherit autotools eutils flag-o-matic toolchain-funcs user
-
-if [[ ${PV} = 9999* ]]
-then
- EGIT_REPO_URI="git://opensource.dyc.edu/s${PN}.git"
- inherit git-2
- KEYWORDS="ppc64 sparc"
-else
- MY_P="s${P}"
- S="${WORKDIR}/${MY_P}"
- SRC_URI="http://opensource.dyc.edu/pub/sthttpd/${MY_P}.tar.gz"
- KEYWORDS="amd64 arm ~hppa ~mips ppc ppc64 sparc x86 ~amd64-linux ~arm-linux ~x86-linux"
-fi
-
-DESCRIPTION="Fork of thttpd, a small, fast, multiplexing webserver"
-HOMEPAGE="http://opensource.dyc.edu/sthttpd"
-
-LICENSE="BSD GPL-2"
-SLOT="0"
-IUSE=""
-
-RDEPEND=""
-DEPEND=""
-
-WEBROOT="/var/www/localhost"
-
-THTTPD_USER=thttpd
-THTTPD_GROUP=thttpd
-THTTPD_DOCROOT="${EPREFIX}${WEBROOT}/htdocs"
-
-DOCS=( README TODO )
-
-pkg_setup() {
- ebegin "Creating thttpd user and group"
- enewgroup ${THTTPD_GROUP}
- enewuser ${THTTPD_USER} -1 -1 -1 ${THTTPD_GROUP}
-}
-
-src_prepare() {
- epatch "${FILESDIR}"/thttpd-renamed-htpasswd.patch
- mv "${S}"/extras/{htpasswd.c,th_htpasswd.c} || die
- eautoreconf -f -i
-}
-
-src_configure() {
- econf WEBDIR=${THTTPD_DOCROOT}
-}
-
-src_install () {
- default
-
- newinitd "${FILESDIR}"/thttpd.init.1 thttpd
- newconfd "${FILESDIR}"/thttpd.confd.1 thttpd
-
- insinto /etc/logrotate.d
- newins "${FILESDIR}/thttpd.logrotate" thttpd
-
- insinto /etc/thttpd
- doins "${FILESDIR}"/thttpd.conf.sample
-
- #move htdocs to docdir, bug #429632
- docompress -x /usr/share/doc/"${PF}"/htdocs.dist
- mv "${ED}"${WEBROOT}/htdocs \
- "${ED}"/usr/share/doc/"${PF}"/htdocs.dist || die
- mkdir "${ED}"${WEBROOT}/htdocs || die
-
- keepdir ${WEBROOT}/htdocs
-
- chown root:${THTTPD_GROUP} "${ED}/usr/sbin/makeweb" \
- || die "Failed chown makeweb"
- chmod 2751 "${ED}/usr/sbin/makeweb" \
- || die "Failed chmod makeweb"
- chmod 755 "${ED}/usr/share/doc/${PF}/htdocs.dist/cgi-bin/printenv" \
- || die "Failed chmod printenv"
-}