libppd: update to 2.1.0
[oi-userland.git] / components / developer / jenkins-core-weekly / Makefile
blob1843dfb89a970d6370e7dd74b1c3c6390f663cbb
2 # This file and its contents are supplied under the terms of the
3 # Common Development and Distribution License ("CDDL"), version 1.0.
4 # You may only use this file in accordance with the terms of version
5 # 1.0 of the CDDL.
7 # A full copy of the text of the CDDL should have accompanied this
8 # source. A copy of the CDDL is also available via the Internet at
9 # http://www.illumos.org/license/CDDL.
13 # Copyright 2016-2021 Jim Klimov
14 # Copyright 2022 Till Wegmueller
16 include ../../../make-rules/shared-macros.mk
18 # NOTE: Before bumping to the new core version, take a look at
19 # https://jenkins.io/changelog/ (weekly)
20 # https://jenkins.io/changelog-stable/ (LTS)
21 # for "weather report" (user votes on good/bad state of the release).
22 # At some point it may make sense to deliver packaged LTS releases,
23 # and the initial recipe supports that notion already just in case,
24 # but no LTS issued so far includes updated libzfs.jar (v0.8+ needed).
25 # Note that for LTS it would make sense to define indexed "additional
26 # source" variables below, see e.g. docbook for inspiration.
28 COMPONENT_NAME= jenkins
29 JENKINS_RELEASE= weekly
30 COMPONENT_MAJOR_VERSION= 2
31 COMPONENT_MINOR_VERSION= 483
32 COMPONENT_ARCHIVE_HASH= sha256:94ed0b3be285b5216bdb104d0be6d91938ab26f09110cbbd970bc0dba9c8d1b4
33 # See $(COMPONENT_ARCHIVE_URL).sha256 e.g. for current weekly release, run
34 # wget -O - http://mirrors.jenkins-ci.org/war/latest/jenkins.war.sha256
35 # or for LTS
36 # wget -O - http://mirrors.jenkins.io/war-stable/latest/jenkins.war.sha256
38 COMPONENT_VERSION= $(COMPONENT_MAJOR_VERSION).$(COMPONENT_MINOR_VERSION)
39 COMPONENT_ARCHIVE= $(COMPONENT_NAME)-$(JENKINS_RELEASE)-$(COMPONENT_VERSION).war
40 COMPONENT_FMRI= developer/jenkins-core-$(JENKINS_RELEASE)
41 COMPONENT_CLASSIFICATION= Development/Java
42 COMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION)
43 COMPONENT_PROJECT_URL= https://jenkins.io/changelog/
44 COMPONENT_ARCHIVE_URL= https://get.jenkins.io/war/$(COMPONENT_VERSION)/jenkins.war
45 COMPONENT_LICENSE= MIT
46 COMPONENT_LICENSE_FILE= jenkins.license
47 COMPONENT_SUMMARY= Jenkins is a Java-based CI automation server
49 # Note: for the core, we only download a WAR - no unpacking, no building...
50 include $(WS_MAKE_RULES)/prep-download.mk
51 include $(WS_MAKE_RULES)/justmake.mk
52 include $(WS_MAKE_RULES)/ips.mk
54 PATH=$(PATH.gnu)
56 CLEAN_PATHS += $(SOURCE_DIR)
58 download::
60 $(SOURCE_DIR)/.prep: download
61 $(COMPONENT_PREP_ACTION)
62 $(TOUCH) $@
64 prep:: $(SOURCE_DIR)/.prep
66 clean::
67 $(PRE_CLEAN_ACTION)
68 $(RM) -r $(CLEAN_PATHS)
70 clobber:: clean
71 $(RM) -r $(CLOBBER_PATHS)
73 COMPONENT_PREP_ACTION = ( $(MKDIR) $(@D)/ && ln -sfr $(USERLAND_ARCHIVES)/$(COMPONENT_ARCHIVE) $(COMPONENT_DIR)/files/Makefile $(@D)/ )
75 # This, and the symlinks in the custom Makefile, save quite a bit
76 # of storage overhead (do not need to copy the WAR 3 extra times)
77 COMPONENT_COPY_ACTION = ( $(CLONEY) $(SOURCE_DIR)/ $(@D)/ )
79 COMPONENT_INSTALL_ENV += JENKINS_VERSION=$(COMPONENT_VERSION)
80 COMPONENT_INSTALL_ENV += JENKINS_RELEASE=$(JENKINS_RELEASE)
82 build: $(BUILD_32)
84 install: $(INSTALL_32)
86 test: $(NO_TESTS)
88 # Auto-generated dependencies
89 REQUIRED_PACKAGES += runtime/java/openjdk17