blob: 2de5b1e2cb4320f5a76a1972fefccaf9db07bf7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
|
# Maintainer: Burgess Chang<bsc@brsvh.org>
# Contributor: Levente Polyak <anthraxx[at]archlinux[dot]org>
# Contributor: Frederik Schwan <freswa at archlinux dot org>
# Contributor: Guillaume ALAUX <guillaume@archlinux.org>
_majorver=11
_minorver=0
_securityver=15
_updatever=0
_cyclever=2043
_ver=56
if [ $_updatever -eq 0 ]; then
_git_tag=${_majorver}_${_minorver}_${_securityver}b${_cyclever}.${_ver}
else
_git_tag=${_majorver}_${_minorver}_${_securityver}_${_updatever}b${_cyclever}.${_ver}
fi
pkgbase=java11-jbr-xdg
pkgname=(
'jre11-jbr-xdg-headless'
'jre11-jbr-xdg'
'jdk11-jbr-xdg'
'jbr11-xdg-src'
'jbr11-xdg-doc'
)
pkgver=$_majorver.$_minorver.$_securityver.$_updatever.b$_cyclever.$_ver
pkgrel=1
arch=('x86_64')
url="https://confluence.jetbrains.com/display/JBR/JetBrains+Runtime"
license=('custom')
makedepends=(
'alsa-lib'
'bash'
'cpio'
'freetype2'
'giflib'
'gcc-libs'
'glibc'
'graphviz'
'harfbuzz'
'java-environment>=10'
'java-environment<12'
'libcups'
'libelf'
'libjpeg-turbo'
'libnet'
'libpng'
'libx11'
'libxrender'
'libxt'
'libxext'
'libxrandr'
'libxtst'
'pandoc'
'lcms2'
'unzip'
'zip'
)
options=(!lto)
source=(
https://github.com/JetBrains/JetBrainsRuntime/archive/refs/tags/jbr${_git_tag}.tar.gz
xdg-user-directories-compliant.patch
)
sha256sums=(
'036858070dcf27d554f2d1f6463b836b1c84d28b8655916a47183622c015bd4a'
'79906107716310b34f6548af9145b50cf3c99376379ce88e827923d7f66b3bf6'
)
case "${CARCH}" in
x86_64) _JARCH='x86_64';;
i686) _JARCH='x86';;
esac
_jvmdir=/usr/lib/jvm/java-${_majorver}-jbr-xdg
_jdkdir=JetBrainsRuntime-jbr${_git_tag}
_imgdir=${_jdkdir}/build/linux-${_JARCH}-normal-server-release/images
_nonheadless=(
lib/libawt_xawt.{so,debuginfo}
lib/libjawt.{so,debuginfo}
lib/libjsound.{so,debuginfo}
lib/libsplashscreen.{so,debuginfo}
)
prepare() {
cd ${_jdkdir}
patch -p1 -i ../xdg-user-directories-compliant.patch
}
build() {
cd ${_jdkdir}
NUM_PROC_OPT=''
MAKEFLAG_J=$(echo ${MAKEFLAGS} | sed -En 's/.*-j([0-9]+).*/\1/p')
if [ -n "${MAKEFLAG_J}" ]; then
# http://hg.openjdk.java.net/jdk10/jdk10/file/85e6cb013b98/make/InitSupport.gmk#l105
echo "Removing '-j${MAKEFLAG_J}' from MAKEFLAGS to prevent build fail. Passing it directly to ./configure."
export MAKEFLAGS=${MAKEFLAGS/-j${MAKEFLAG_J}/}
NUM_PROC_OPT="--with-num-cores=${MAKEFLAG_J}"
fi
# Avoid optimization of HotSpot being lowered from O3 to O2
local _CFLAGS="${CFLAGS//-O2/-O3} ${CPPFLAGS} -fcommon"
local _CXXFLAGS="${CXXFLAGS//-O2/-O3} ${CPPFLAGS} -fcommon"
local _LDFLAGS=${LDFLAGS}
if [[ ${CARCH} = i686 ]]; then
echo "Removing '-fno-plt' from CFLAGS and CXXFLAGS to prevent build fail with this architecture"
_CFLAGS=${CFLAGS/-fno-plt/}
_CXXFLAGS=${CXXFLAGS/-fno-plt/}
fi
# CFLAGS, CXXFLAGS and LDFLAGS are ignored as shown by a warning
# in the output of ./configure unless used like such:
# --with-extra-cflags="${CFLAGS}"
# --with-extra-cxxflags="${CXXFLAGS}"
# --with-extra-ldflags="${LDFLAGS}"
# See also paragraph "Configure Control Variables from "jdk${_majorver}-${_git_tag}/common/doc/building.md
unset CFLAGS
unset CXXFLAGS
unset LDFLAGS
bash configure \
--with-version-build="${_updatever}" \
--with-version-pre="" \
--with-version-opt="" \
--with-stdc++lib=dynamic \
--with-extra-cflags="${_CFLAGS}" \
--with-extra-cxxflags="${_CXXFLAGS}" \
--with-extra-ldflags="${_LDFLAGS}" \
--with-libjpeg=system \
--with-giflib=system \
--with-libpng=system \
--with-lcms=system \
--with-zlib=system \
--with-harfbuzz=system \
--with-jvm-features=zgc \
--enable-unlimited-crypto \
--disable-warnings-as-errors \
${NUM_PROC_OPT}
#--disable-javac-server
make images legacy-jre-image docs
# https://bugs.openjdk.java.net/browse/JDK-8173610
find "../${_imgdir}" -iname '*.so' -exec chmod +x {} \;
}
check() {
cd ${_jdkdir}
# TODO package jtreg
# make -k check
}
package_jre11-jbr-xdg-headless() {
pkgdesc="JetBrainsRuntime Java ${_majorver} headless runtime environment - - with improved Support for the XDG Base Directory Specification"
depends=(
'ca-certificates-utils'
'freetype2'
'glibc'
'gcc-libs'
'harfbuzz'
'java-runtime-common>=3'
'libjpeg-turbo'
'lcms2'
'libnet'
'nss'
'libfreetype.so'
'libharfbuzz.so'
'libjpeg.so'
'liblcms2.so'
)
optdepends=(
'java-rhino: for some JavaScript support'
)
provides=(
"java-runtime-headless=${_majorver}"
"java-runtime-headless-jbr-xdg=${_majorver}"
"jre${_majorver}-jbr-xdg-headless=${pkgver}-${pkgrel}"
)
backup=(
etc/${pkgbase}/logging.properties
etc/${pkgbase}/management/jmxremote.access
etc/${pkgbase}/management/jmxremote.password.template
etc/${pkgbase}/management/management.properties
etc/${pkgbase}/net.properties
etc/${pkgbase}/security/java.policy
etc/${pkgbase}/security/java.security
etc/${pkgbase}/security/policy/README.txt
etc/${pkgbase}/security/policy/limited/default_US_export.policy
etc/${pkgbase}/security/policy/limited/default_local.policy
etc/${pkgbase}/security/policy/limited/exempt_local.policy
etc/${pkgbase}/security/policy/unlimited/default_US_export.policy
etc/${pkgbase}/security/policy/unlimited/default_local.policy
etc/${pkgbase}/sound.properties
)
install=jre-jbr-xdg-headless.install
cd ${_imgdir}/jre
install -dm 755 "${pkgdir}${_jvmdir}"
cp -a bin lib \
"${pkgdir}${_jvmdir}"
for f in "${_nonheadless[@]}"; do
rm "${pkgdir}${_jvmdir}/${f}"
done
cp ../jdk/release "${pkgdir}${_jvmdir}"
cp ../jdk/lib/modules "${pkgdir}${_jvmdir}/lib"
# Conf
install -dm 755 "${pkgdir}/etc"
cp -r conf "${pkgdir}/etc/${pkgbase}"
ln -s /etc/${pkgbase} "${pkgdir}/${_jvmdir}/conf"
# Legal
install -dm 755 "${pkgdir}/usr/share/licenses"
cp -r legal "${pkgdir}/usr/share/licenses/${pkgbase}"
ln -s ${pkgbase} "${pkgdir}/usr/share/licenses/${pkgname}"
ln -s /usr/share/licenses/${pkgbase} "${pkgdir}/${_jvmdir}/legal"
# Man pages
for f in man/man1/* man/ja/man1/*; do
install -Dm 644 "${f}" "${pkgdir}/usr/share/${f/\.1/-jbr-xdg${_majorver}.1}"
done
ln -s /usr/share/man "${pkgdir}/${_jvmdir}/man"
# Link JKS keystore from ca-certificates-utils
rm -f "${pkgdir}${_jvmdir}/lib/security/cacerts"
ln -sf /etc/ssl/certs/java/cacerts "${pkgdir}${_jvmdir}/lib/security/cacerts"
}
package_jre11-jbr-xdg() {
pkgdesc="JetBrainsRuntime Java ${_majorver} full runtime environment - with improved Support for the XDG Base Directory Specification"
depends=(
'gcc-libs'
'giflib'
'glibc'
"jre${_majorver}-jbr-xdg-headless=${pkgver}-${pkgrel}"
'libpng'
'libgif.so'
)
optdepends=(
'alsa-lib: for basic sound support'
'gtk2: for the Gtk+ 2 look and feel - desktop usage'
'gtk3: for the Gtk+ 3 look and feel - desktop usage'
)
provides=(
"java-runtime=${_majorver}"
"java-runtime-jbr-xdg=${_majorver}"
"jre${_majorver}-jbr-xdg=${pkgver}-${pkgrel}"
)
install=jre-jbr-xdg.install
cd ${_imgdir}/jre
install -dm 755 "${pkgdir}${_jvmdir}"
for f in "${_nonheadless[@]}"; do
install -Dm 644 ${f} "${pkgdir}${_jvmdir}/${f}"
done
# Licenses
install -dm 755 "${pkgdir}/usr/share/licenses"
ln -s ${pkgbase} "${pkgdir}/usr/share/licenses/${pkgname}"
}
package_jdk11-jbr-xdg() {
pkgdesc="JetBrainsRuntime Java ${_majorver} development kit - with improved Support for the XDG Base Directory Specification"
depends=(
'glibc'
'gcc-libs'
'hicolor-icon-theme'
"jre${_majorver}-jbr-xdg=${pkgver}-${pkgrel}"
'java-environment-common=3'
'libelf'
)
provides=(
"java-environment=${_majorver}"
"java-environment-jbr-xdg=${_majorver}"
"jdk${_majorver}-jbr-xdg=${pkgver}-${pkgrel}"
)
install=jdk-jbr-xdg.install
cd ${_imgdir}/jdk
install -dm 755 "${pkgdir}${_jvmdir}"
cp -a bin demo include jmods lib \
"${pkgdir}${_jvmdir}"
rm "${pkgdir}${_jvmdir}/lib/src.zip"
# Remove files held by JRE
pushd ../jre
for d in bin lib; do
find ${d} ! -type d -exec rm "${pkgdir}${_jvmdir}/{}" \;
done
popd
find "${pkgdir}${_jvmdir}/lib" -type d -empty -delete
# Conf files all belong to JRE
# Legal
install -dm 755 "${pkgdir}/usr/share/licenses"
cp -r legal "${pkgdir}/usr/share/licenses/${pkgbase}"
pushd ../jre/legal
find . ! -type d -exec rm "${pkgdir}/usr/share/licenses/${pkgbase}/{}" \;
popd
find "${pkgdir}/usr/share/licenses" -type d -empty -delete
ln -s ${pkgbase} "${pkgdir}/usr/share/licenses/${pkgname}"
# Man pages
for f in man/man1/* man/ja/man1/*; do
if [ ! -e "../jre/${f}" ]; then
install -Dm 644 "${f}" "${pkgdir}/usr/share/${f/\.1/-jbr-xdg${_majorver}.1}"
fi
done
# Icons
for s in 16 24 32 48; do
install -Dm 644 \
"${srcdir}/${_jdkdir}/src/java.desktop/unix/classes/sun/awt/X11/java-icon${s}.png" \
"${pkgdir}/usr/share/icons/hicolor/${s}x${s}/apps/${pkgbase}.png"
done
}
package_jbr11-xdg-src() {
pkgdesc="JetBrainsRuntime Java ${_majorver} sources - with improved Support for the XDG Base Directory Specification"
# Depends on JDK to get license files
depends=("jdk${_majorver}-jbr-xdg=${pkgver}-${pkgrel}")
provides=("jbr${_majorver}-xdg-src=${pkgver}-${pkgrel}")
install -Dm 644 -t "${pkgdir}${_jvmdir}/lib" ${_imgdir}/jdk/lib/src.zip
install -dm 755 "${pkgdir}/usr/share/licenses"
ln -s ${pkgbase} "${pkgdir}/usr/share/licenses/${pkgname}"
}
package_jbr11-xdg-doc() {
pkgdesc="JetBrainsRuntime Java ${_majorver} documentation - with improved Support for the XDG Base Directory Specification"
# Depends on JDK to get license files
depends=("jdk${_majorver}-jbr-xdg=${pkgver}-${pkgrel}")
provides=("jbr${_majorver}-xdg-doc=${pkgver}-${pkgrel}")
install -dm 755 "${pkgdir}/usr/share/doc"
cp -r ${_imgdir}/docs "${pkgdir}/usr/share/doc/${pkgbase}"
install -dm 755 "${pkgdir}/usr/share/licenses"
ln -s ${pkgbase} "${pkgdir}/usr/share/licenses/${pkgname}"
}
# Local Variables:
# indent-tabs-mode: nil
# mode: sh
# sh-shell: bash
# tab-width: 4
# End:
# vim: filetype=bash tabstop=4 shiftwidth=4 expandtab:
|