| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
| |
2024-03-30 lang/ruby30: Please migrate to newer versions. Ruby 3.0 will reach its EoL on March 30, 2024
Sort MOVED while here
|
| | |
|
| |
|
|
| |
Approved by: portmgr (blanket)
|
| | |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
openssl:
Could not be configured. It will not be installed.
/wrkdirs/usr/ports/lang/ruby30/work/ruby-3.0.6/ext/openssl/extconf.rb:113: OpenSSL >= 1.0.1, < 3.0.0 or LibreSSL >= 2.5.0 is required
Check ext/openssl/mkmf.log for more details.
...
===> Building package for ruby30-3.0.6_1,1
pkg-static: Unable to access file /wrkdirs/usr/ports/lang/ruby30/work/stage/usr/local/lib/ruby/3.0/amd64-freebsd15/openssl.so:No such file or directory
pkg-static: Unable to access file /wrkdirs/usr/ports/lang/ruby30/work/stage/usr/local/lib/ruby/3.0/openssl.rb:No such file or directory
pkg-static: Unable to access file /wrkdirs/usr/ports/lang/ruby30/work/stage/usr/local/lib/ruby/3.0/openssl/bn.rb:No such file or directory
pkg-static: Unable to access file /wrkdirs/usr/ports/lang/ruby30/work/stage/usr/local/lib/ruby/3.0/openssl/buffering.rb:No such file or directory
pkg-static: Unable to access file /wrkdirs/usr/ports/lang/ruby30/work/stage/usr/local/lib/ruby/3.0/openssl/cipher.rb:No such file or directory
pkg-static: Unable to access file /wrkdirs/usr/ports/lang/ruby30/work/stage/usr/local/lib/ruby/3.0/openssl/config.rb:No such file or directory
pkg-static: Unable to access file /wrkdirs/usr/ports/lang/ruby30/work/stage/usr/local/lib/ruby/3.0/openssl/digest.rb:No such file or directory
pkg-static: Unable to access file /wrkdirs/usr/ports/lang/ruby30/work/stage/usr/local/lib/ruby/3.0/openssl/hmac.rb:No such file or directory
pkg-static: Unable to access file /wrkdirs/usr/ports/lang/ruby30/work/stage/usr/local/lib/ruby/3.0/openssl/marshal.rb:No such file or directory
pkg-static: Unable to access file /wrkdirs/usr/ports/lang/ruby30/work/stage/usr/local/lib/ruby/3.0/openssl/pkcs5.rb:No such file or directory
pkg-static: Unable to access file /wrkdirs/usr/ports/lang/ruby30/work/stage/usr/local/lib/ruby/3.0/openssl/pkey.rb:No such file or directory
pkg-static: Unable to access file /wrkdirs/usr/ports/lang/ruby30/work/stage/usr/local/lib/ruby/3.0/openssl/ssl.rb:No such file or directory
pkg-static: Unable to access file /wrkdirs/usr/ports/lang/ruby30/work/stage/usr/local/lib/ruby/3.0/openssl/version.rb:No such file or directory
pkg-static: Unable to access file /wrkdirs/usr/ports/lang/ruby30/work/stage/usr/local/lib/ruby/3.0/openssl/x509.rb:No such file or directory
*** Error code 1
Reference: https://pkg-status.freebsd.org/beefy18/data/main-amd64-default/pe4b8bfc7570d_sf7a5903de2/logs/ruby30-3.0.6_1,1.log
https://pkg-status.freebsd.org/beefy17/data/main-i386-default/pe4b8bfc7570d_sf7a5903de2/logs/ruby30-3.0.6_1,1.log
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
- ruby 3.0 do not have official OpenSSL 3 support although some other
vendors are merging patches from 3.1. Untill there is something solid
optionize OPENSSL to build openssl modules only on 12 and 13 while
turning off for 14.
- Utilize USES=localbase
- Considering no upstream support for OpenSSL on ruby 3.0 reduce the
EXPIRATION_DATE to 2024-03-30(Last day of official support) as there
is no point in carrying this over to the next quarterly.
Approved by: portmgr (blanket)
Sponsored by: The FreeBSD Foundation
|
| |
|
|
|
|
| |
- Fails to build the openssl module with OpenSSL 3.0.0 and later
Approved by: portmgr (blanket)
|
| | |
|
| | |
|
| |
|
|
|
|
|
|
|
| |
- Mark DEPRECATED and set EXPIRATION_DATE to 2024-04-30
Changes: https://www.ruby-lang.org/en/news/2023/03/30/ruby-3-0-6-released/
PR: 270556
Security: 9b60bba1-cf18-11ed-bd44-080027f5fec9
Security: 6bd2773c-cf1a-11ed-bd44-080027f5fec9
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Switch from Mk/bsd.ruby.mk to Mk/Uses/ruby.mk
Notable changes are.
- Mk/bsd.ruby.mk is moved to Mk/Uses/ruby.mk.
- USE_RUBY=yes is replaced with USES=ruby.
- USE_RUBY_EXTCONF is replaced with USES=ruby:extconf.
- USE_RUBY_RDOC is replaced with USES=ruby:rdoc.
- USE_RUBY_SETUP is replaces with USES=ruby:setup.
- RUBY_NO_BUILD_DEPENDS and RUBY_NO_RUN_DEPENDS are replaced with
USES=ruby:{build,none,run}.
- RUBY_REQUIRE isn't used anywhere, so removed.
- USES=gem now implies USES=ruby.
This is mainly the work of yasu@ at https://reviews.freebsd.org/D27863
I have just made some cosmetic changes and ran exp-run to test that the
tree is not in a BROKEN state.
Approved by: portmgr
Differential Revision: https://reviews.freebsd.org/D37925
|
| |
|
|
|
|
|
|
|
|
|
| |
When both CAPIDOCS and DOCS options are enabled, the following commands are executed:
1. post-install-CAPIDOCS-on: removed the installed .timestamp (in STAGEDIR).
2. post-install-DOCS-on: copied the generated .timestamp (in capi directory) to the STAGEDIR again.
Therefore, the installed .timestamp is orphaned.
To fix this, we remove both the generated and installed .timestamp in post-install-CAPIDOCS-on:.
PR: 267775
Reported by: yasu
|
| |
|
|
|
|
|
|
|
| |
ReleaseNotes: https://www.ruby-lang.org/en/news/2022/11/24/ruby-3-0-5-released/
PR: 267978
Approved by: maintainer timeout
Exp-run by: antoine
MFH: 2022Q4
Security: 84ab03b6-6c20-11ed-b519-080027f5fec9
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
When the both options are on, post-install-DOCS-on target is called
after post-install-CAPIDOCS-on has completed. And in the former files
under ${WRKSRC}/doc/ are copied to ${STAGEDIR}${RUBY_DOCDIR}. This
means files under ${WRKSRC}/doc/capi are copied to
${STAGEDIR}${RUBY_DOCDIR}/capi again. And of course
${WRKSRC}/doc/capi/.timestamp is included in them. As a result, even
though ${STAGEDIR}${RUBY_DOCDIR}/capi/.timestamp is removed in
post-install-CAPIDOCS-on target, it is detected as orphaned file at
check-plist phase. So fix it by adding 3rd argument to
${COPYTREE_SHARE} command so .timestamp is excluded from files to be
copied.
PR: 267775
Approved by: meta (ruby@)
Fixes: 93e3548c57a4 lang/ruby30: Simplify CAPIDOCS handling
|
| | |
|
| |
|
|
| |
that arm uses
|
| | |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This change merges the following upstream pull request into the Ruby
interpreter:
https://github.com/ruby/ruby/pull/6332
Adding this patch is no-op right now because we are not using POSIX (GNU)
qsort_r(3) interface yet. It will fix build when the change is applied.
Reviewed by: bapt (portmgr@), sunpoet (ruby@)
PR: ports/266227
MFH: 2022Q3
Differential Revision: https://reviews.freebsd.org/D36492
|
| |
|
|
|
|
|
|
|
|
| |
Commit b7f05445c00f has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner)
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.
Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.
There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.
This commit implements such a proposal and moves one of the WWW: entries
of each pkg-descr file into the respective port's Makefile. A heuristic
attempts to identify the most relevant URL in case there is more than
one WWW: entry in some pkg-descr file. URLs that are not moved into the
Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr
files in order to preserve them.
There are 1256 ports that had no WWW: entries in pkg-descr files. These
ports will not be touched in this commit.
The portlint port has been adjusted to expect a WWW entry in each port
Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as
deprecated.
Approved by: portmgr (tcberner)
|
| |
|
|
|
|
| |
In preparation for the update of config.guess/config.sub, where
amd64-portbld-freebsd14.0 is reported as x86_64-portbld-freebsd14.0,
Add a patch to keep the arch specific directory on amd64 being named amd64
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
A big Thank You to the original contributors of these ports:
* Aaron Dalton <aaron@FreeBSD.org>
* Adam Weinberger <adamw@FreeBSD.org>
* Akinori MUSHA aka knu <knu@idaemons.org>
* Alex Dupre <ale@FreeBSD.org>
* Alexey Dokuchaev <danfe@FreeBSD.org>
* Alonso Cardenas Marquez <acm@FreeBSD.org>
* Andreas Klemm <andreas@klemm.gtn.com>
* Andrew Pantyukhin <infofarmer@FreeBSD.org>
* Andrey Zakhvatov
* Anton Berezin <tobez@FreeBSD.org>
* Anton Berezin <tobez@tobez.org>
* Anton Shterenlikht
* Ashish SHUKLA <ashish@FreeBSD.org>
* Bob Eager <bob@eager.cx>
* Bruce M Simpson
* Bruce M. Simpson
* Christoph Mallon <christoph.mallon@gmx.de>
* Christopher Elkins <chrise@scardini.com>
* Christopher Key <cjk32@cam.ac.uk>
* Chuck Robey <chuckr@FreeBSD.org>
* Cyrille Lefevre <clefevre@citeweb.net>
* Dan Rench <citric@cubicone.tmetic.com>
* Danilo Egea Gondolfo <danilogondolfo@gmail.com>
* Dario Freni <saturnero@gufi.org>
* David Kalliecharan <dave@dal.ca>
* David Naylor <dbn@FreeBSD.org>
* David Naylor <dbn@dragon.local>
* David O'Brien (obrien@NUXI.com)
* David O'Brien (obrien@NUXI.org)
* David O'Brien <obrien@NUXI.org>
* David O'Brien <obrien@cs.ucdavis.edu>
* Dereckson <dereckson@gmail.com>
* Devon H. O'Dell <devon.odell@gmail.com>
* Dmitry Sivachenko <demon@FreeBSD.org>
* Don Croyle <croyle@gelemna.org>
* Douglas Anestad <yotta@dougdidit.com>
* Edwin Groothuis (edwin@mavetju.org)
* Edwin Groothuis <edwin@mavetju.org>
* Eugene Ossintsev
* Frank Fischer
* Frank Gruender <elwood@mc5sys.in-berlin.de>
* Frederic Cambus
* Gea-Suan Lin <gslin@gslin.org>
* Gerald Pfeifer <gerald@FreeBSD.org>
* Giuseppe Pilichi aka Jacula Modyun <jacula@gmail.com>
* GreenDog <fiziologus@gmail.com>
* Gustau Perez i Querol <gustau.perez@gmail.com>
* Guy Antony Halse <guy@rucus.ru.za.za>
* Herve Quiroz <hq@FreeBSD.org>
* Hye-Shik Chang
* Hye-Shik Chang <perky@fallin.lv>
* Hye-Shik Chang <perky@python.or.kr>
* Iblis Lin <iblis@hs.ntnu.edu.tw>
* James Bailie <jimmy@mammothcheese.ca>
* James FitzGibbon <jfitz@FreeBSD.org>
* Jean-Sébastien Pédron <dumbbell@FreeBSD.org>
* Jean-Yves Lefort <jylefort@FreeBSD.org>
* Jeff Brown <jabrown@caida.org>
* Jeremy Norris <ishmael27@home.com>
* Jing-Tang Keith Jang <keith@FreeBSD.org>
* John Hein <jhein@symmetricom.com>
* John Marino <marino@FreeBSD.org>
* John Merryweather Cooper
* John Merryweather Cooper <coop9211@uidaho.edu>
* John Merryweather Cooper et al
* Joseph Koshy <jkoshy@FreeBSD.org>
* Josh Elsasser <jre@vineyard.net>
* Josh Gilliam <josh@quick.net>
* Julian H. Stacey <jhs@FreeBSD.org>
* Julian Stecklina
* Jyun-Yan You <jyyou@cs.nctu.edu.tw>
* Katsuji ISHIKAWA <katsuji.ishikawa@gmail.com>
* Kimura Fuyuki <fuyuki@hadaly.org>
* Kimura Fuyuki <fuyuki@mj.0038.net>
* Kimura Fuyuki <fuyuki@nigredo.org>
* Kiriyama Kazuhiko <kiri@kiri.toba-cmt.ac.jp>
* Kubilay Kocak <koobs@FreeBSD.org>
* Lars Thegler <lth@FreeBSD.org>
* Lev Walkin <vlm@lionet.info>
* Li-Wen Hsu <lwhsu@FreeBSD.org>
* Mahdi Mokhtari <mokhi64@gmail.com>
* Marcin Cieslak <saper@SYSTEM.PL>
* Martin Matuska <mm@FreeBSD.org>
* Matthew Hunt <mph@FreeBSD.org>
* Michael Butschky <butsch@computi.erols.com>
* Michael Johnson <ahze@FreeBSD.org>
* Mitsuru YOSHIDA <mitsuru@riken.jp>
* Muhammad Moinur Rahman <5u623l20@gmail.com>
* Neal Nelson <ports@nicandneal.net>
* Nicola Vitale <nivit@FreeBSD.org>
* Nils M Holm <nmh@t3x.org>
* Oliver Braun <obraun@informatik.unibw-muenchen.de>
* Oliver Breuninger <ob@seicom.NET>
* Patrick Li <pat@databits.net>
* Pawel Worach <pawel.worach@gmail.com>
* Pedro F. Giffuni <giffunip@asme.org>
* Pedro Giffuni
* Pedro Giffuni <giffunip@asme.org>
* Pete French <pete@twisted.org.uk>
* Peter Schuller <peter.schuller@infidyne.com>
* Peter van Heusden <pvh@egenetics.com>
* Phillip Neumann <pneumann@gmail.com>
* Piotr Kubaj <pkubaj@anongoth.pl>
* Po-Chuan Hsieh <sunpoet@FreeBSD.org>
* Pontus Stenetorp <ninjin@kth.se>
* Ralf S. Engelschall <rse@engelschall.com>
* Rick van der Zwet <rick@wzoeterwoude.net>
* Rob Zinkov
* Roland Jesse <roland.jesse@gmx.net>
* Romain Tartiere <romain@blogreen.org>
* Ryan Steinmetz <zi@FreeBSD.org>
* Sahil Tandon <sahil@tandon.net>
* Sergei Kolobov <sergei@kolobov.com>
* Sergey A. Osokin <osa@FreeBSD.org>
* Sergey Skvortsov <skv@protey.ru>
* Simon Marlow <simonmar@microsoft.com>
* Simun Mikecin <numisemis@yahoo.com>
* Stanislav Sedov <ssedov@mbsd.msk.ru>
* Stephen Weeks <sweeks@sweeks.com>
* Steven G. Kargl
* Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
* Sylvio Cesar <sylvio@FreeBSD.org>
* Thomas Gellekum <tg@FreeBSD.org>
* Timothy Beyer <beyert@cs.ucr.edu>
* Timothy Bourke <timbob@bigpond.com>
* Tom Judge <tj@FreeBSD.org>
* Veniamin Gvozdikov <vg@FreeBSD.org>
* Vitaly Magerya <vmagerya@gmail.com>
* Wen Heping <wenheping@gmail.com>
* Wen Heping <wenhping@gmail.com>
* Wes Peters <wes@softweyr.com>
* Ying-Chieh Liao <ijliao@FreeBSD.org>
* Yukihiro Nakai <Nakai@technologist.com>
* Yukihiro Nakai <nakai@FreeBSD.org>
* Zach Garner <zach@neurosoft.org>
* aaron@FreeBSD.org
* andrewb@cs.cmu.edu
* arved
* chinsan
* chuckr
* dd
* erik@smluc.org
* gahr
* gahr@FreeBSD.org
* gpalmer
* hsu
* ijliao
* jasone
* jkh
* jkoshy
* jmacd
* jmacd@FreeBSD.org
* jmz
* js@jeannot.org
* jseger@FreeBSD.org
* kappa@FreeBSD.org.ua
* kbyanc
* msmith@gsoft.com.au
* mutoh@openedu.org
* netchild@FreeBSD.org
* patrick
* pst
* rene@FreeBSD.org
* ruslan@shevchenko.kiev.ua
* stas
* tobez
With hat: portmgr
|
| |
|
|
| |
PR: 264003
|
| |
|
|
|
|
|
|
|
| |
When CPUTYPE is set and the CPU supports lzcnt instruction, it fails to
build because x86intrin.h is not included. Fix the test to make it work
on FreeBSD.
PR: 260791
Approved by: ruby (maintainer timeout)
|
| |
|
|
|
|
|
|
|
| |
ReleaseNotes: https://www.ruby-lang.org/en/news/2022/04/12/ruby-3-0-4-released/
PR: 263252
Approved by: sunpoet (ruby@)
MFH: 2022Q2
Security: f22144d7-bad1-11ec-9cfe-0800270512f4
Security: 06ed6a49-bad4-11ec-9cfe-0800270512f4
|
| |
|
|
| |
Since dtrace is currently disabled on ruby3*, bump PORTREVISION only on ruby2*
|
| | |
|
| | |
|
| |
|
|
|
|
|
|
|
|
| |
ReleaseNotes: https://www.ruby-lang.org/en/news/2021/11/24/ruby-3-0-3-released/
PR: 260032
Approved by: maintainer timeout (> 2 weeks)
Security: CVE-2021-41816
Security: CVE-2021-41817
Security: CVE-2021-41819
MFH: 2021Q4
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
In Ruby 3.0 following standard libraries are distributed as bundled
gems.
- minitest
- power_assert
- test-unit
- typeprof
- rexml
- rss
But this port doesn't include bundled gems in its package. So add
message to pkg-message that they are provided as separate ports.
PR: 259757
Approved by: maintainer timeout (> 3 weeks)
|
| |
|
|
|
| |
Use ruby${RUBY_SUFFIX} or libruby${RUBY_SHLIBVER} directly.
It also fixes the inconsistency in lang/ruby{26,27,30}/{Makefile,pkg-plist}.
|
| |
|
|
| |
Changes: https://www.ruby-lang.org/en/news/2021/07/07/ruby-3-0-2-released/
|
| | |
|
| |
|
|
|
|
|
| |
Changes: https://www.ruby-lang.org/en/news/2020/12/25/ruby-3-0-0-released/
https://www.ruby-lang.org/en/news/2021/04/05/ruby-3-0-1-released/
PR: 251741
Reported by: Yasuhiro Kimura <yasu@utahime.org>
|
| |
|
|
|
|
| |
Doxygen 1.9.1 update (b8ac15afd00127044d75894e357f697d825ed385) brings improper
substitution in PLIST. %%RUBY_DEFAULT_SUFFIX%% and %%RUBY_SUFFIX%% should not be
used in the path/filename of C API documentations.
|
| |
|
|
|
|
| |
Also regen 'pkg-plist' for affected consumers, with PORTREVISION bump
Touch Mk/bsd.ruby.mk due to all ruby* is affected
MFH: 2021Q2
|
| | |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- regen patches by 'make makepatch'
- adjust consumers which affected by new doxygen styles
- take maintainersip
Changelog: https://www.doxygen.nl/manual/changelog.html#log_1_9_0
PR: 242347
Submitted by: fluffy
Reported by: Naram Qashat (ex-maintainer)
Exp-run by: antoine
Notes:
svn path=/head/; revision=560752
|
| |
|
|
| |
Notes:
svn path=/head/; revision=558676
|
| |
|
|
| |
Notes:
svn path=/head/; revision=552141
|
|
|
PR: 250131
Submitted by: Yasuhiro KIMURA <yasu@utahime.org>
Reviewed by: meta (myself)
Relnotes: https://www.ruby-lang.org/en/news/2020/09/25/ruby-3-0-0-preview1-released/
Notes:
svn path=/head/; revision=552092
|