summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConrad Kostecki <conikost@gentoo.org>2021-07-18 13:46:29 +0200
committerConrad Kostecki <conikost@gentoo.org>2021-07-18 18:17:39 +0200
commit18eb1d22ed30e1e976b592d0192546282400f79b (patch)
tree5d82b9b22b1381a4695dc5011b106c0c93d47d0f /app-misc
parentapp-misc/beanstalkd: migrate to GLEP 81 (diff)
downloadgentoo-18eb1d22ed30e1e976b592d0192546282400f79b.tar.gz
gentoo-18eb1d22ed30e1e976b592d0192546282400f79b.tar.bz2
gentoo-18eb1d22ed30e1e976b592d0192546282400f79b.zip
app-misc/beanstalkd: drop old version
Closes: https://bugs.gentoo.org/781257 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'app-misc')
-rw-r--r--app-misc/beanstalkd/beanstalkd-1.10.ebuild50
1 files changed, 0 insertions, 50 deletions
diff --git a/app-misc/beanstalkd/beanstalkd-1.10.ebuild b/app-misc/beanstalkd/beanstalkd-1.10.ebuild
deleted file mode 100644
index 0207e6355a88..000000000000
--- a/app-misc/beanstalkd/beanstalkd-1.10.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit systemd toolchain-funcs user
-
-DESCRIPTION="A simple, fast work queue"
-HOMEPAGE="http://kr.github.io/beanstalkd/"
-SRC_URI="https://github.com/kr/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~mips x86 ~amd64-linux ~x64-macos"
-
-RDEPEND=""
-DEPEND=""
-
-IUSE=""
-
-DOCS=( README News docs/protocol.txt )
-
-pkg_setup() {
- enewuser beanstalk -1 -1 /var/lib/beanstalkd daemon
-}
-
-src_prepare() {
- sed -i -e "s/CFLAGS=/CFLAGS?=/" \
- -e "s/LDLIBS/LDFLAGS/" \
- -e "s/LDFLAGS=/LDFLAGS?=/" Makefile
-}
-
-src_compile() {
- emake CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" CC="$(tc-getCC)" LD="$(tc-getLD)"
-}
-
-src_install() {
- dobin beanstalkd
-
- DATADIR=/var/lib/${PN}
- dodir ${DATADIR}
- fowners beanstalk:daemon ${DATADIR}
-
- doman doc/"${PN}".1
-
- newconfd "${FILESDIR}/conf-1.9" beanstalkd
- newinitd "${FILESDIR}/init-1.9" beanstalkd
-
- systemd_dounit "${S}/adm/systemd/${PN}".{service,socket}
-}