Gentoo Archives: gentoo-commits

From: Austin English <wizardedit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/artifactory-bin/
Date: Tue, 26 Jul 2016 19:42:07
Message-Id: 1469562108.d640f70b27f636107850a1416c55d6ec17f732c8.wizardedit@gentoo
1 commit: d640f70b27f636107850a1416c55d6ec17f732c8
2 Author: Austin English <wizardedit <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jul 26 19:40:06 2016 +0000
4 Commit: Austin English <wizardedit <AT> gentoo <DOT> org>
5 CommitDate: Tue Jul 26 19:41:48 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d640f70b
7
8 dev-util/artifactory-bin: version bump
9
10 Package-Manager: portage-2.3.0
11
12 dev-util/artifactory-bin/Manifest | 1 +
13 .../artifactory-bin/artifactory-bin-4.10.0.ebuild | 97 ++++++++++++++++++++++
14 2 files changed, 98 insertions(+)
15
16 diff --git a/dev-util/artifactory-bin/Manifest b/dev-util/artifactory-bin/Manifest
17 index 9709645..aeef678 100644
18 --- a/dev-util/artifactory-bin/Manifest
19 +++ b/dev-util/artifactory-bin/Manifest
20 @@ -1,3 +1,4 @@
21 +DIST artifactory-4.10.0.zip 41178841 SHA256 949499822127506906589f88b887cc712931f95efcbc906584e1163e0976f058 SHA512 72f5665faec48701b96ccfdf46f42512a82874a636b912bec21a1738828fe5d5f6712307380ede07c787a3778064ade13b8d9cbd18442f77454539836d4a7bcd WHIRLPOOL 3afb4070946ddf83664edd98fa3c2288f359bb0f24fd8546750f4641ec4c391a84cdac9df3e383e9d4d8cf7baae48d67c4d0c8aea0a20aeae92273e4b8613d7e
22 DIST artifactory-4.7.6.zip 40332783 SHA256 8f2ee405e7b13ea2121a0e1c97ef3097ae54e9753d7288cc4ee95d3831cb01dd SHA512 06d102b8a17172a8f6a67e9f166278b59569ba8439c9eea02bc1a7401182f72bc00da8ea3484a30b1c96ab167d331868169edd3051f6e027d772a9c5ede50852 WHIRLPOOL 296dc74c9698058b2fc020ce0561929a7a75dc47ad48cce37be1d4e86e0c4bbddfb7ab108f58ee1175bb0fff113a4a216a11c6ddf01380d3fd8c826607712990
23 DIST artifactory-4.7.7.zip 40327123 SHA256 953a208daa35767ca915a9bab20310493c9abd78f238f787387c89077d377716 SHA512 2ebda9b45a819c9f060a7d789878f09ffb5e8791f9913ba5f86498ad69a01731fca9efde7c0ed9e206ea35a98d733052146c407208f28a3efc0b25423b11a894 WHIRLPOOL 57e60d9426849f140fdd67bc775c9d9e08c0c78926347dc5bd64cf0c5d0fd1ab759539756e98183e093e6e9b27301d5bb6192ca5c023c71664a49bded23b8a0e
24 DIST artifactory-4.8.0.zip 41084705 SHA256 2de13962ad1e6f4f1537e1fd86b6e70da6afae67a2449bf0cb369d3a84267647 SHA512 a21310a7699c63a2fe3f305f42fef0aab6a0b9d43b2b8ba89d2360e5f8364d233f6f64616271d6cd4e79c1cecd18b1a7197fbb034a5eabd77d97b257e09b2910 WHIRLPOOL e6a62c25f2927ea069fa512c40f8b7ea4cecb8625acdd8149c1f2db298b7375e362ee616562b37e9a00d5ed5451cb5861bf906d4d5c796eec9735e62b2a46e88
25
26 diff --git a/dev-util/artifactory-bin/artifactory-bin-4.10.0.ebuild b/dev-util/artifactory-bin/artifactory-bin-4.10.0.ebuild
27 new file mode 100644
28 index 0000000..211224d
29 --- /dev/null
30 +++ b/dev-util/artifactory-bin/artifactory-bin-4.10.0.ebuild
31 @@ -0,0 +1,97 @@
32 +# Copyright 1999-2016 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +# $Id$
35 +
36 +# Using a binary ebuild until a source ebuild is doable.
37 +# This was previously blocked by two major bugs upstream:
38 +# A lack of documented build instructions - https://www.jfrog.com/jira/browse/RTFACT-8960
39 +# A lack of source releases - https://www.jfrog.com/jira/browse/RTFACT-8961
40 +# Upstream now releases source and instructions (yay!), but most of artifactory's
41 +# dependencies are not in portage yet.
42 +
43 +EAPI=6
44 +
45 +inherit user
46 +
47 +MY_P="${P/-bin}"
48 +MY_PN="${PN/-bin}"
49 +MY_PV="${PV/-bin}"
50 +
51 +DESCRIPTION="The world's most advanced repository manager for maven"
52 +HOMEPAGE="http://www.jfrog.org/products.php"
53 +SRC_URI="https://bintray.com/artifact/download/jfrog/artifactory/jfrog-artifactory-oss-${MY_PV}.zip -> ${MY_P}.zip"
54 +
55 +LICENSE="AGPL-3+"
56 +SLOT="0"
57 +KEYWORDS="~x86 ~amd64"
58 +IUSE="ssl"
59 +
60 +RDEPEND=">=virtual/jre-1.8"
61 +DEPEND=">=virtual/jdk-1.8
62 + app-arch/unzip"
63 +
64 +S="${WORKDIR}/${MY_PN}-oss-${MY_PV}"
65 +
66 +pkg_setup() {
67 + enewgroup artifactory
68 + enewuser artifactory -1 /bin/sh -1 artifactory
69 +}
70 +
71 +src_prepare() {
72 + default
73 +
74 + if use ssl ; then
75 + cp "${FILESDIR}/artifactory.xml" tomcat/conf/Catalina/localhost/artifactory.xml || die
76 + cp "${FILESDIR}/server.xml" tomcat/conf/server.xml || die
77 + fi
78 +
79 + # Reverse https://www.jfrog.com/jira/browse/RTFACT-7123
80 + sed -i -e "s%artifactory.repo.global.disabled=true%artifactory.repo.global.disabled=false%g;" \
81 + etc/artifactory.system.properties || die
82 +
83 + # See FIXME in src_install(), this can probably go away,
84 + # but catalina.sh may need to be fixed for that:
85 + sed -i -e "s%/etc/opt/jfrog/artifactory/default%/etc/conf.d/${MY_PN}%g;" \
86 + misc/service/setenv.sh || die
87 +}
88 +
89 +src_install() {
90 + local ARTIFACTORY_HOME="/opt/artifactory"
91 + local TOMCAT_HOME="${ARTIFACTORY_HOME}/tomcat"
92 +
93 + insinto ${ARTIFACTORY_HOME}
94 + doins -r etc logs misc tomcat webapps
95 +
96 + dodir /etc/opt/jfrog
97 + dosym ${ARTIFACTORY_HOME}/etc /etc/opt/jfrog/artifactory
98 +
99 + dosym ${ARTIFACTORY_HOME}/logs /var/log/artifactory
100 +
101 + exeinto ${ARTIFACTORY_HOME}/bin
102 + doexe bin/*
103 +
104 + # FIXME: this is called by catalina.sh (it echoes the variables before starting
105 + # artifactory, as well as makes sure log dir, etc. exists). Those directories
106 + # could probably be moved to the ebuild and the script removed from catalina.sh
107 + # without consequence (and quieter starts). Would need to check if CATALINA_*
108 + # variables are actually used anywhere (from reading code don't appear to be
109 + # actually needed)
110 + exeinto ${TOMCAT_HOME}/bin
111 + doexe misc/service/setenv.sh
112 + doexe tomcat/bin/*
113 +
114 + keepdir ${ARTIFACTORY_HOME}/backup
115 + keepdir ${ARTIFACTORY_HOME}/data
116 + keepdir ${ARTIFACTORY_HOME}/run
117 + keepdir ${ARTIFACTORY_HOME}/work
118 + keepdir ${TOMCAT_HOME}/logs/catalina
119 + keepdir ${TOMCAT_HOME}/temp
120 + keepdir ${TOMCAT_HOME}/work
121 + keepdir /var/opt/jfrog/artifactory/run
122 +
123 + newconfd "${FILESDIR}/confd" ${MY_PN}
124 + newinitd "${FILESDIR}/initd" ${MY_PN}
125 +
126 + fowners -R artifactory:artifactory ${ARTIFACTORY_HOME}
127 + fperms -R u+w ${TOMCAT_HOME}/work
128 +}