patrick 14/07/21 06:42:27 Modified: ChangeLog Added: beanstalkd-1.9-r1.ebuild Removed: beanstalkd-1.9.ebuild Log: Fix cc invocation #517512 (Portage version: 2.2.10/cvs/Linux x86_64, unsigned Manifest commit)
Revision Changes Path 1.34 app-misc/beanstalkd/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/beanstalkd/ChangeLog?rev=1.34&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/beanstalkd/ChangeLog?rev=1.34&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/beanstalkd/ChangeLog?r1=1.33&r2=1.34 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/app-misc/beanstalkd/ChangeLog,v retrieving revision 1.33 retrieving revision 1.34 diff -u -r1.33 -r1.34 --- ChangeLog 4 Jun 2014 03:13:34 -0000 1.33 +++ ChangeLog 21 Jul 2014 06:42:27 -0000 1.34 @@ -1,6 +1,12 @@ # ChangeLog for app-misc/beanstalkd # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/beanstalkd/ChangeLog,v 1.33 2014/06/04 03:13:34 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/beanstalkd/ChangeLog,v 1.34 2014/07/21 06:42:27 patrick Exp $ + +*beanstalkd-1.9-r1 (21 Jul 2014) + + 21 Jul 2014; Patrick Lauer <[email protected]> +beanstalkd-1.9-r1.ebuild, + -beanstalkd-1.9.ebuild: + Fix cc invocation #517512 04 Jun 2014; Patrick Lauer <[email protected]> -beanstalkd-1.5.ebuild, -beanstalkd-1.6.ebuild, -beanstalkd-1.7.ebuild, -beanstalkd-1.8.ebuild: 1.1 app-misc/beanstalkd/beanstalkd-1.9-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/beanstalkd/beanstalkd-1.9-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/beanstalkd/beanstalkd-1.9-r1.ebuild?rev=1.1&content-type=text/plain Index: beanstalkd-1.9-r1.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-misc/beanstalkd/beanstalkd-1.9-r1.ebuild,v 1.1 2014/07/21 06:42:27 patrick Exp $ EAPI=5 inherit eutils 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 ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x64-macos ~x86-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-${PV}" beanstalkd newinitd "${FILESDIR}/init-${PV}" beanstalkd systemd_dounit "${S}/adm/systemd/${PN}".{service,socket} }
