Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/beanstalkd/
Date: Sun, 18 Jul 2021 16:18:07
Message-Id: 1626625059.18eb1d22ed30e1e976b592d0192546282400f79b.conikost@gentoo
1 commit: 18eb1d22ed30e1e976b592d0192546282400f79b
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 18 11:46:29 2021 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 18 16:17:39 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18eb1d22
7
8 app-misc/beanstalkd: drop old version
9
10 Closes: https://bugs.gentoo.org/781257
11 Package-Manager: Portage-3.0.20, Repoman-3.0.3
12 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
13
14 app-misc/beanstalkd/beanstalkd-1.10.ebuild | 50 ------------------------------
15 1 file changed, 50 deletions(-)
16
17 diff --git a/app-misc/beanstalkd/beanstalkd-1.10.ebuild b/app-misc/beanstalkd/beanstalkd-1.10.ebuild
18 deleted file mode 100644
19 index 0207e6355a8..00000000000
20 --- a/app-misc/beanstalkd/beanstalkd-1.10.ebuild
21 +++ /dev/null
22 @@ -1,50 +0,0 @@
23 -# Copyright 1999-2021 Gentoo Authors
24 -# Distributed under the terms of the GNU General Public License v2
25 -
26 -EAPI=5
27 -
28 -inherit systemd toolchain-funcs user
29 -
30 -DESCRIPTION="A simple, fast work queue"
31 -HOMEPAGE="http://kr.github.io/beanstalkd/"
32 -SRC_URI="https://github.com/kr/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
33 -
34 -LICENSE="MIT"
35 -SLOT="0"
36 -KEYWORDS="amd64 ~mips x86 ~amd64-linux ~x64-macos"
37 -
38 -RDEPEND=""
39 -DEPEND=""
40 -
41 -IUSE=""
42 -
43 -DOCS=( README News docs/protocol.txt )
44 -
45 -pkg_setup() {
46 - enewuser beanstalk -1 -1 /var/lib/beanstalkd daemon
47 -}
48 -
49 -src_prepare() {
50 - sed -i -e "s/CFLAGS=/CFLAGS?=/" \
51 - -e "s/LDLIBS/LDFLAGS/" \
52 - -e "s/LDFLAGS=/LDFLAGS?=/" Makefile
53 -}
54 -
55 -src_compile() {
56 - emake CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" CC="$(tc-getCC)" LD="$(tc-getLD)"
57 -}
58 -
59 -src_install() {
60 - dobin beanstalkd
61 -
62 - DATADIR=/var/lib/${PN}
63 - dodir ${DATADIR}
64 - fowners beanstalk:daemon ${DATADIR}
65 -
66 - doman doc/"${PN}".1
67 -
68 - newconfd "${FILESDIR}/conf-1.9" beanstalkd
69 - newinitd "${FILESDIR}/init-1.9" beanstalkd
70 -
71 - systemd_dounit "${S}/adm/systemd/${PN}".{service,socket}
72 -}