Update package version to 3.4.7

This commit is contained in:
2025-10-10 17:54:12 +03:00
parent eeb6266e5d
commit 28e12daec2
2 changed files with 24 additions and 13 deletions
+24 -3
View File
@@ -1,9 +1,30 @@
name: ruby
description: A dynamic, open source programming language with a focus on simplicity and productivity
version: 3.4.6
version: 3.4.7
revision: 1
url: https://www.ruby-lang.org/en/
license: BSD-2-Clause
architecture: any
depends: ["gcc-libs", "gdbm", "glibc", "gmp", "libffi", "libxcrypt", "libyaml", "openssl", "readline", "valgrind", "zlib"]
make_depends: ["doxygen","graphviz","rustc", "procps-ng"]
type: source
depends:
- gcc-libs
- gdbm
- glibc
- gmp
- libffi
- libxcrypt
- libyaml
- openssl
- readline
- valgrind
- zlib
make_depends:
- doxygen
- graphviz
- rustc
- procps-ng
downloads:
- url: https://cache.ruby-lang.org/pub/ruby/${BPM_PKG_VERSION%.*}/ruby-${BPM_PKG_VERSION}.tar.xz
extract_to: ${BPM_SOURCE}
extract_strip_components: 1
checksum: db425a86f6e07546957578f4946cc700a91e7fd51115a86c56e096f30e0530c7
-10
View File
@@ -2,16 +2,6 @@
# BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE
# BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT
DOWNLOAD="https://cache.ruby-lang.org/pub/ruby/${BPM_PKG_VERSION%.*}/ruby-${BPM_PKG_VERSION}.tar.xz"
FILENAME="${DOWNLOAD##*/}"
# The prepare function is executed in the root of the temp directory
# This function is used for downloading files and putting them into the correct location
prepare() {
wget "$DOWNLOAD"
tar -xvf "$FILENAME" --strip-components=1 -C "$BPM_SOURCE"
}
# The build function is executed in the source directory
# This function is used to compile the source code
build() {