* [gentoo-commits] repo/gentoo:master commit in: www-servers/bozohttpd/, profiles/, www-servers/bozohttpd/files/
@ 2022-03-02 12:26 Jakov Smolić
0 siblings, 0 replies; only message in thread
From: Jakov Smolić @ 2022-03-02 12:26 UTC (permalink / raw
To: gentoo-commits
commit: ab1a41182e784453a1e46048a0c963e161b1e99c
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 2 12:23:09 2022 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Wed Mar 2 12:26:12 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab1a4118
www-servers/bozohttpd: treeclean
Closes: https://bugs.gentoo.org/830428
Closes: https://bugs.gentoo.org/713614
Closes: https://bugs.gentoo.org/746356
Closes: https://bugs.gentoo.org/746404
Closes: https://bugs.gentoo.org/746416
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
profiles/package.mask | 5 ----
www-servers/bozohttpd/Manifest | 1 -
www-servers/bozohttpd/bozohttpd-20190228.ebuild | 35 ----------------------
www-servers/bozohttpd/files/bozohttpd.conffile | 11 -------
www-servers/bozohttpd/files/bozohttpd.initscript | 37 ------------------------
www-servers/bozohttpd/metadata.xml | 9 ------
6 files changed, 98 deletions(-)
diff --git a/profiles/package.mask b/profiles/package.mask
index ddd096e11b49..1da8be3a6c49 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -236,11 +236,6 @@ dev-python/python-slip
# Removal after 2022-03-01.
sys-auth/pam_blue
-# Jonas Stein <jstein@gentoo.org> (2022-01-02)
-# Unmaintained and broken.
-# Removal after 2022-03-01. Bug #830428.
-www-servers/bozohttpd
-
# Jonas Stein <jstein@gentoo.org> (2021-12-24)
# Alpha version
=app-editors/ghex-4.0.0_alpha
diff --git a/www-servers/bozohttpd/Manifest b/www-servers/bozohttpd/Manifest
deleted file mode 100644
index fa4b0c03424d..000000000000
--- a/www-servers/bozohttpd/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST bozohttpd-20190228.tar.bz2 59460 BLAKE2B bfd5f16f997903ce8c1b708c5d50955779545bbfee7525966ff0f3475114841ce8feac800d945782548474dc866c032876cb50afaa93cc164c7cdf4b5eeeb555 SHA512 8658695ad9248c9c013362d040981df5d18366e1ad0a6b80707841f93fe576c54631ff3810cc08062b1b28fb07884464bfc27fb71c37831446b2de67a6254f09
diff --git a/www-servers/bozohttpd/bozohttpd-20190228.ebuild b/www-servers/bozohttpd/bozohttpd-20190228.ebuild
deleted file mode 100644
index a95a11e85e56..000000000000
--- a/www-servers/bozohttpd/bozohttpd-20190228.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit toolchain-funcs
-
-DESCRIPTION="bozohttpd is a small and secure http server"
-HOMEPAGE="http://www.eterna.com.au/bozohttpd/"
-SRC_URI="http://www.eterna.com.au/bozohttpd/${P}.tar.bz2"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-
-DEPEND="dev-libs/openssl:0="
-RDEPEND="${DEPEND}
- virtual/logger"
-
-src_prepare() {
- default
- mv Makefile{.boot,} || die
-}
-
-src_compile() {
- emake CC="$(tc-getCC)" OPT="${CFLAGS}"
-}
-
-src_install() {
- dobin bozohttpd
- doman bozohttpd.8
-
- newconfd "${FILESDIR}"/${PN}.conffile bozohttpd
- newinitd "${FILESDIR}"/${PN}.initscript bozohttpd
-}
diff --git a/www-servers/bozohttpd/files/bozohttpd.conffile b/www-servers/bozohttpd/files/bozohttpd.conffile
deleted file mode 100644
index 49dbbe5517c4..000000000000
--- a/www-servers/bozohttpd/files/bozohttpd.conffile
+++ /dev/null
@@ -1,11 +0,0 @@
-# Config file for /etc/init.d/bozohttpd
-
-# necessary stuff
-DATADIR=/var/www/localhost/htdocs
-BIND_ADDRESS=localhost
-LISTEN_PORT=80
-
-# optional stuff
-#USER=daemon
-#INDEX_DEFAULT=index.php
-#APPEND="-C .php /usr/bin/php"
diff --git a/www-servers/bozohttpd/files/bozohttpd.initscript b/www-servers/bozohttpd/files/bozohttpd.initscript
deleted file mode 100644
index 9f05c4184178..000000000000
--- a/www-servers/bozohttpd/files/bozohttpd.initscript
+++ /dev/null
@@ -1,37 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License, v2 or later
-
-#NB: Config is in /etc/conf.d/bozohttpd
-
-
-depend() {
- need logger net
-}
-
-checkconfig() {
- if [ -z "$DATADIR" ] || [ -z "$BIND_ADDRESS" ] || [ -z "$LISTEN_PORT" ]; then
- eerror "You need to setup DATADIR, BIND_ADDRESS and LISTEN PORT in /etc/conf.d/bozohttpd first"
- return 1
- fi
-}
-
-start() {
- checkconfig || return 1
-
- local params=""
-
- [ -n "$USER" ] && params="$params -U $USER"
- [ -n "$INDEX_DEFAULT" ] && params="$params -x $INDEX_DEFAULT"
- [ -n "$APPEND" ] && params="$params $APPEND"
-
- ebegin "Starting bozohttpd"
- start-stop-daemon --start --exec /usr/bin/bozohttpd -- -b -i $BIND_ADDRESS -I $LISTEN_PORT -X ${params} $DATADIR
- eend ${?}
-}
-
-stop() {
- ebegin "Stopping bozohttpd"
- start-stop-daemon --stop --exec /usr/bin/bozohttpd
- eend ${?}
-}
diff --git a/www-servers/bozohttpd/metadata.xml b/www-servers/bozohttpd/metadata.xml
deleted file mode 100644
index b818ab566e19..000000000000
--- a/www-servers/bozohttpd/metadata.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <!-- maintainer-needed -->
- <longdescription>
- bozohttpd is designed to be small, simple and relatively
- featureless, hopefully increasing its security.
- </longdescription>
-</pkgmetadata>
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2022-03-02 12:26 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-03-02 12:26 [gentoo-commits] repo/gentoo:master commit in: www-servers/bozohttpd/, profiles/, www-servers/bozohttpd/files/ Jakov Smolić
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox