pkgsrc/devel/jenkins/Makefile
ryoon 104880563f Update to 1.480.3
* Fix https://wiki.jenkins-ci.org/display/SECURITY/Jenkins+Security+Advisory+2013-02-16

Changelog:
What's new in 1.480.3 (2013/02/15)

    "Remember me on this computer" does not work, cookie is not accepted in new session (issue 16278)
    Slow/hung web UI in 1.483+ (stuck in parseURI) (issue 16474)
    Failure to delete old config files during rekeying on Windows (issue 16319)
    NoClassDefFoundError on Base64 when launching an headless slave with -jnlpCredential option (issue 9679)
    Loading asynchPeople calls (synch) People constructor (issue 16397)
    Jenkins briefly displays build queue and then it disappears until the page is reloaded (issue 15335)
    View.hasPeople too slow to use in sidepanel.jelly (issue 16244)
    XSS (SECURITY-46)
    File parameter causing data lost after Jenkins restart (issue 13536)
2013-02-19 18:21:41 +00:00

37 lines
786 B
Makefile

# $NetBSD: Makefile,v 1.12 2013/02/19 18:21:41 ryoon Exp $
#
DISTNAME= jenkins
PKGNAME= jenkins-${J_VERSION}
CATEGORIES= devel
MASTER_SITES= http://mirrors.jenkins-ci.org/war-stable/${J_VERSION}/
EXTRACT_SUFX= .war
MAINTAINER= ryoon@NetBSD.org
HOMEPAGE= http://jenkins-ci.org/
COMMENT= Open source continuous integration server (LTS release)
LICENSE= mit
J_VERSION= 1.480.3
DIST_SUBDIR= ${PKGNAME_NOREV}
WRKSRC= ${WRKDIR}
USE_LANGUAGES= # none
USE_JAVA= run
USE_JAVA2= 6
USE_TOOLS+= unzip
NO_CONFIGURE= yes
NO_BUILD= yes
INSTALLATION_DIRS= share/jenkins
do-install:
${UNZIP_CMD} -d ${DESTDIR}${PREFIX}/share/jenkins ${WRKSRC}/jenkins.war
${INSTALL_DATA} ${WRKSRC}/jenkins.war ${DESTDIR}${PREFIX}/share/jenkins
.include "../../mk/java-vm.mk"
.include "../../mk/bsd.pkg.mk"