File tree Expand file tree Collapse file tree 7 files changed +12
-11
lines changed Expand file tree Collapse file tree 7 files changed +12
-11
lines changed Original file line number Diff line number Diff line change 30
30
sed -i 's/mirror\.centos\.org\/centos/vault.centos.org/g;s/6\/sclo/6.10\/sclo/g;s/mirrorlist/#mirrorlist/g;s/#baseurl/baseurl/g' /etc/yum.repos.d/CentOS-SCLo-scl-rh.repo
31
31
fi
32
32
curl -L "https://negativo17.org/repos/epel-multimedia.repo" | sed -e '/^\[[a-z\-]*\]/a priority=99' > /etc/yum.repos.d/epel-multimedia.repo
33
- yum -y install $SCL_ENABLE $SCL_INSTALL rh-java-common-ant boost-devel ccache clang gcc-c++ gcc-gfortran java-1.8.0-openjdk-devel ant python python3-devel python3-pip swig file which wget unzip tar bzip2 gzip xz patch autoconf-archive automake make libtool bison flex perl-core nasm alsa-lib-devel freeglut-devel gtk2-devel libusb-devel libusb1-devel curl-devel expat-devel gettext-devel openssl-devel bzip2-devel zlib-devel SDL2-devel libva-devel libxkbcommon-devel libxkbcommon-x11-devel xcb-util* fontconfig-devel libffi-devel ragel ocl-icd-devel GeoIP-devel pcre-devel ssdeep-devel yajl-devel
33
+ yum -y install $SCL_ENABLE $SCL_INSTALL rh-java-common-ant boost-devel ccache clang gcc-c++ gcc-gfortran java-1.8.0-openjdk-devel ant python python3-devel python3-pip swig file which wget unzip tar bzip2 gzip xz patch autoconf-archive automake make libtool bison flex perl-core nasm alsa-lib-devel freeglut-devel gtk2-devel libusb-devel libusb1-devel curl-devel expat-devel gettext-devel openssl-devel bzip2-devel zlib-devel SDL2-devel libva-devel libxkbcommon-devel libxkbcommon-x11-devel xcb-util* fontconfig-devel libffi-devel ragel ocl-icd-devel GeoIP-devel pcre-devel pcre2-devel ssdeep-devel yajl-devel
34
34
# https://gcc.gnu.org/legacy-ml/gcc-patches/2018-01/msg01962.html
35
35
sed -i 's/_mm512_abs_pd (__m512 __A)/_mm512_abs_pd (__m512d __A)/g' /opt/rh/devtoolset-9/root/usr/lib/gcc/x86_64-redhat-linux/9/include/avx512fintrin.h
36
36
source scl_source enable $SCL_ENABLE || true
Original file line number Diff line number Diff line change 98
98
# $SUDO apt-key adv --keyserver keyserver.ubuntu.com --recv-keys BA6932366A755776
99
99
$SUDO apt-get update
100
100
$SUDO apt-get -y install gcc-multilib g++-multilib gfortran-multilib python3 python2.7 python3-minimal python2.7-minimal rpm libasound2-dev:$ARCH freeglut3-dev:$ARCH libfontconfig-dev:$ARCH libgtk2.0-dev:$ARCH libusb-dev:$ARCH libusb-1.0-0-dev:$ARCH libffi-dev:$ARCH libbz2-dev:$ARCH zlib1g-dev:$ARCH libxcb1-dev:$ARCH libpulse-dev:$ARCH
101
- $SUDO apt-get -y install pkg-config ccache clang $TOOLCHAIN openjdk-8-jdk ant python2 python3-pip swig git file wget unzip tar bzip2 gzip patch autoconf-archive autogen automake cmake make libtool bison flex perl nasm ragel curl libcurl4-openssl-dev libssl-dev libffi-dev libbz2-dev zlib1g-dev rapidjson-dev libdrm-dev
101
+ $SUDO apt-get -y install pkg-config ccache clang $TOOLCHAIN openjdk-8-jdk ant python2 python3-pip swig git file wget unzip tar bzip2 gzip patch autoconf-archive autogen automake cmake make libtool bison flex perl nasm ragel curl libcurl4-openssl-dev libssl-dev libffi-dev libbz2-dev zlib1g-dev rapidjson-dev libdrm-dev libpcre2-dev
102
102
103
103
export JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64/
104
104
echo "JAVA_HOME=$JAVA_HOME" >> $GITHUB_ENV
Original file line number Diff line number Diff line change 43
43
run : |
44
44
if [[ -z ${CI_DEPLOY_USERNAME:-} ]] || [[ "$GITHUB_EVENT_NAME" == "pull_request" ]] || [[ "$GITHUB_EVENT_HEAD_COMMIT_MESSAGE" == Release* ]] || [[ "${GITHUB_REF#refs/heads/}" == "release" ]]; then
45
45
# We are not deploying snapshots
46
- exit 0
46
+ # exit 0
47
47
fi
48
48
49
49
git --version
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ INSTALL_PATH=`pwd`
14
14
if [[ ! -d " ModSecurity" ]]; then
15
15
git clone https://github.com/SpiderLabs/ModSecurity
16
16
cd ModSecurity
17
- git checkout v3.0.8
17
+ git checkout v3.0.12
18
18
git submodule init
19
19
git submodule update
20
20
else
23
23
24
24
case $PLATFORM in
25
25
linux-x86_64)
26
+ # yum install -y pcre2-devel
26
27
sh build.sh
27
- ./configure --prefix=$INSTALL_PATH
28
+ ./configure --prefix=$INSTALL_PATH --with-pcre2
28
29
make -j $MAKEJ
29
30
make install-strip
30
31
;;
31
32
macosx-x86_64)
32
33
sh build.sh
33
34
sedinplace ' s/\\\$rpath/@rpath/g' configure
34
- ./configure --prefix=$INSTALL_PATH
35
+ ./configure --prefix=$INSTALL_PATH --with-pcre2
35
36
make -j $MAKEJ
36
37
make install-strip
37
38
;;
Original file line number Diff line number Diff line change 6
6
<parent >
7
7
<groupId >org.bytedeco</groupId >
8
8
<artifactId >javacpp-presets</artifactId >
9
- <version >1.5.8 </version >
9
+ <version >1.5.11-SNAPSHOT </version >
10
10
<relativePath >../../</relativePath >
11
11
</parent >
12
12
13
13
<groupId >org.bytedeco</groupId >
14
14
<artifactId >modsecurity-platform</artifactId >
15
- <version >3.0.8 -${project.parent.version} </version >
15
+ <version >3.0.12 -${project.parent.version} </version >
16
16
<name >JavaCPP Presets Platform for ModSecurity</name >
17
17
18
18
<properties >
Original file line number Diff line number Diff line change 6
6
<parent >
7
7
<groupId >org.bytedeco</groupId >
8
8
<artifactId >javacpp-presets</artifactId >
9
- <version >1.5.8 </version >
9
+ <version >1.5.11-SNAPSHOT </version >
10
10
</parent >
11
11
12
12
<groupId >org.bytedeco</groupId >
13
13
<artifactId >modsecurity</artifactId >
14
- <version >3.0.8 -${project.parent.version} </version >
14
+ <version >3.0.12 -${project.parent.version} </version >
15
15
<name >JavaCPP Presets for ModSecurity</name >
16
16
17
17
<dependencies >
Original file line number Diff line number Diff line change 12
12
<dependency >
13
13
<groupId >org.bytedeco</groupId >
14
14
<artifactId >modsecurity-platform</artifactId >
15
- <version >3.0.8 -1.5.8</version >
15
+ <version >3.0.12 -1.5.8</version >
16
16
</dependency >
17
17
</dependencies >
18
18
<build >
You can’t perform that action at this time.
0 commit comments