Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion k/keystone/keystone_ubi_9.3.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ set -ex

# Variables
PACKAGE_NAME=keystone
PACKAGE_VERSION=27.0.0
PACKAGE_VERSION=${1:-27.0.0}
KEYSTONE_DBPASS=keystone
KEYSTONE_HOST_IP=localhost
SCRIPT_DIR=$(pwd)
Expand Down
2 changes: 1 addition & 1 deletion m/mariaDB-connector-odbc/mariaDB-connector-odbc_ubi_9.3.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ set -ex

# Variables
PACKAGE_NAME=MariaDB-Connector-ODBC
PACKAGE_VERSION=3.2.6
PACKAGE_VERSION=${1:-3.2.6}
SCRIPT_DIR=$(pwd)
PACKAGE_URL=https://github.com/MariaDB/mariadb-connector-odbc.git

Expand Down
2 changes: 2 additions & 0 deletions m/minio/minio_ubi_9_3.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ sudo tar -C /usr/local -xvzf go${GO_VERSION}.linux-s390x.tar.gz

# Clone the repository
git clone -b $PACKAGE_VERSION $PACKAGE_URL
go install mvdan.cc/gofumpt@latest
gofumpt -l -w .
cd $PACKAGE_NAME

if ! make; then
Expand Down
2 changes: 1 addition & 1 deletion n/netty-tcnative/netty-tcnative_ubi_9.3.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ set -ex

# Variables
PACKAGE_NAME=netty-tcnative
PACKAGE_VERSION=2.0.72
PACKAGE_VERSION=${1:-2.0.72}
SCRIPT_DIR=$(pwd)
JAVA_PROVIDED=OpenJDK11
DISTRO="$ID-$VERSION_ID"
Expand Down
2 changes: 1 addition & 1 deletion p/python/build_info.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"maintainer": "Yash Ratawa",
"package_name": "python",
"github_url": "https://github.com/python/cpython",
"version": "v3.13.15",
"version": "3.13.15",
"wheel_build" : true,
"package_dir": "p/python",
"default_branch": "main",
Expand Down
6 changes: 3 additions & 3 deletions r/ruby/ruby_ubi_9_3.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# -----------------------------------------------------------------------------
#
# Package : ruby
# Version : v3.4.5
# Version : 3.4.5
# Source repo : http://cache.ruby-lang.org/pub/ruby/3.4/ruby-3.4.5.tar.gz
# Tested on : UBI: 9.3
# Language : Ruby
Expand All @@ -23,7 +23,7 @@ set -ex
# Variables
PACKAGE_NAME=ruby
PACKAGE_VERSION=${1:-3.4.5}
PACKAGE_URL=http://cache.ruby-lang.org/pub/ruby/3.4/ruby-3.4.5.tar.gz
PACKAGE_URL=http://cache.ruby-lang.org/pub/ruby/3.4/${PACKAGE_NAME}-${PACKAGE_VERSION}.tar.gz

yum install -y sudo openssl-devel gcc make wget tar libyaml-devel gcc make glibc-devel autoconf automake libtool wget

Expand Down Expand Up @@ -51,7 +51,7 @@ yum install -y bison flex readline-devel
#Install ruby
wget $PACKAGE_URL
tar zxf $PACKAGE_NAME-$PACKAGE_VERSION.tar.gz
cd ruby-$PACKAGE_VERSION
cd $PACKAGE_NAME-$PACKAGE_VERSION

if ! ./configure ; then
echo "------------------$PACKAGE_NAME: configuration fails---------------------"
Expand Down
2 changes: 1 addition & 1 deletion t/terraform/terraform_ubi_9.3.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ set -ex

# Variables
PACKAGE_NAME=terraform
PACKAGE_VERSION=v1.12.2
PACKAGE_VERSION=${1:-v1.12.2}
GO_VERSION=1.24.2
PATCH_URL="https://raw.githubusercontent.com/linux-on-ibm-z/build-scripts/main/t/terraform/patch"
SCRIPT_DIR=$(pwd)
Expand Down
Loading