chainsaw 14/10/21 08:38:20 Modified: ChangeLog Added: jenkins-bin-1.584-r1.ebuild Removed: jenkins-bin-1.584.ebuild Log: Logrotate snippet as written by Travis Hansen in bug #526166. Stop attempting to create a /var/run directory structure, those sands have shifted. Enhance init script to create home directory if missing. Do not assign the jenkins user a shell as it is not needed, as per Agostino "ago" Sarubbo on #gentoo-dev. Remove older revision. (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xB5058F9A)
Revision Changes Path 1.3 dev-util/jenkins-bin/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/jenkins-bin/ChangeLog?rev=1.3&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/jenkins-bin/ChangeLog?rev=1.3&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/jenkins-bin/ChangeLog?r1=1.2&r2=1.3 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-util/jenkins-bin/ChangeLog,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- ChangeLog 20 Oct 2014 23:18:28 -0000 1.2 +++ ChangeLog 21 Oct 2014 08:38:20 -0000 1.3 @@ -1,6 +1,17 @@ # ChangeLog for dev-util/jenkins-bin # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/jenkins-bin/ChangeLog,v 1.2 2014/10/20 23:18:28 mrueg Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/jenkins-bin/ChangeLog,v 1.3 2014/10/21 08:38:20 chainsaw Exp $ + +*jenkins-bin-1.584-r1 (21 Oct 2014) + + 21 Oct 2014; Tony Vroon <[email protected]> -jenkins-bin-1.584.ebuild, + +jenkins-bin-1.584-r1.ebuild, +files/jenkins-bin.init2, + +files/jenkins-bin.logrotate: + Logrotate snippet as written by Travis Hansen in bug #526166. Stop attempting + to create a /var/run directory structure, those sands have shifted. Enhance + init script to create home directory if missing. Do not assign the jenkins + user a shell as it is not needed, as per Agostino "ago" Sarubbo on + #gentoo-dev. Remove older revision. 20 Oct 2014; Manuel RĂ¼ger <[email protected]> jenkins-bin-1.584.ebuild: Fix install. 1.1 dev-util/jenkins-bin/jenkins-bin-1.584-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/jenkins-bin/jenkins-bin-1.584-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/jenkins-bin/jenkins-bin-1.584-r1.ebuild?rev=1.1&content-type=text/plain Index: jenkins-bin-1.584-r1.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-util/jenkins-bin/jenkins-bin-1.584-r1.ebuild,v 1.1 2014/10/21 08:38:20 chainsaw Exp $ EAPI=5 inherit user DESCRIPTION="Extensible continuous integration server" HOMEPAGE="http://jenkins-ci.org/" LICENSE="MIT" SRC_URI="http://mirrors.jenkins-ci.org/war/${PV}/${PN/-bin/}.war -> ${P}.war" RESTRICT="mirror" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" DEPEND="media-fonts/dejavu" RDEPEND="${DEPEND} >=virtual/jdk-1.5" S=${WORKDIR} pkg_setup() { enewgroup jenkins enewuser jenkins -1 /sbin/nologin /var/lib/jenkins jenkins } src_install() { keepdir /var/log/jenkins /var/lib/jenkins/backup /var/lib/jenkins/home insinto /opt/jenkins newins "${DISTDIR}"/${P}.war ${PN/-bin/}.war insinto /etc/logrotate.d newins "${FILESDIR}"/${PN}.logrotate ${PN} newinitd "${FILESDIR}"/${PN}.init2 jenkins newconfd "${FILESDIR}"/${PN}.confd jenkins fowners jenkins:jenkins /var/log/jenkins /var/lib/jenkins /var/lib/jenkins/home /var/lib/jenkins/backup }
