diff options
author | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2025-02-17 16:21:20 +0800 |
---|---|---|
committer | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2025-02-17 16:21:20 +0800 |
commit | b0b86789e5e8f76f6b82bfa26db24ee56a08a0e7 (patch) | |
tree | 6950b08552d6f9f279cbe8527491a79c2ecf826d /lang/ruby32 | |
parent | lang/ruby31: Fix CPE_STR (diff) |
lang/ruby32: Fix CPE_STR
RUBY_RELVERSION and RUBY_PATCHLEVEL have been removed in a1a91e4c937a8664ae4b4bedca114e40c46e3d14.
This commit fixes the CPE_STR.
For example:
- Before:
cpe:2.3:a:ruby-lang:ruby::p::::freebsd14:x64
- After:
cpe:2.3:a:ruby-lang:ruby:3.2.7:p0::::freebsd14:x64
Diffstat (limited to 'lang/ruby32')
-rw-r--r-- | lang/ruby32/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lang/ruby32/Makefile b/lang/ruby32/Makefile index 45894febd124..31cee5f5e148 100644 --- a/lang/ruby32/Makefile +++ b/lang/ruby32/Makefile @@ -21,8 +21,7 @@ RUN_DEPENDS= libffi>=0:devel/libffi USES= autoreconf cpe localbase ruby:none ssl tar:xz CPE_VENDOR= ruby-lang -CPE_VERSION= ${RUBY_RELVERSION} -CPE_UPDATE= p${RUBY_PATCHLEVEL} +CPE_UPDATE= p0 USE_LDCONFIG= yes # We get these from other ports |