| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Submitted by: dim
|
|
|
|
|
|
| |
PR: ports/169668
Submitted by: stas
Approved by: portmgr (linimon)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Update lang/ruby19 to p125
Changes:
http://www.ruby-forum.com/topic/3663807#1047121
http://www.ruby-lang.org/en/news/2012/02/16/ruby-1-9-3-p125-is-released/
PR: ports/165223
Submitted by: swills (myself)
Reviewed by: pgollucci
Approved by: portmgr
|
|
|
|
|
| |
Reviewed by: pgollucci
Security: 91be81e7-3fea-11e1-afc7-2c4138874f7d
|
|
|
|
|
|
|
|
|
| |
upstream openssl changed the return type of openssl HMAC_CTX_copy from void to int
- The resultant binary is unaffected, so no PORTREVISION bump
Tested by: md5 ruby18
Tested by: make test-all
With Hat: ruby@
|
| |
|
|
|
|
|
|
|
|
| |
my ports in the past 3 weeks while ports were broken on any 10.x
machines, which means I'm unable to maintain them. So let people know
that there's no available support for them until things are back to
normal (which also means that anyone with spare time will be able
to fix them without getting approval).
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
%%RUBY_SITEARCHLIBDIR%%
%%RUBY_SITELIBDIR%%
lib/ruby/site_ruby
%%RUBY_VENDORARCHLIBDIR%%
%%RUBY_VENDORLIBDIR%%
lib/ruby/vendor_ruby
lib/ruby
Above directories are owned by lang/ruby1[89] ports.
PR: ports/153041
Tested by: 2-exp runs by pav
With Hat: ruby@
|
| |
|
|
|
|
|
| |
PR: ports/151712
Reported by: Pavel Argentov <argentoff@gmail.com>
|
| |
|
|
|
|
|
|
|
| |
- Bump portrevision.
PR: ports/149003
Submitted by: Anonymous <swell.k@gmail.com>
|
| |
|
|
|
|
|
| |
Approved by: portmgr (for Mk/bsd.port.mk part)
Tested by: Multiple -exp runs
|
|
|
|
|
| |
times in the auto-generated config.status file (happens with new m4).
This only fixes a potential build error - no package changes.
|
|
|
|
|
|
|
|
| |
- WITH_DEBUG is handled in Mk/bsd.port.mk
PR: ports/146863
Submitted by: Anonymous <swell.k@gmail.com>
Silence from: stas (maintainer)
|
|
|
|
|
| |
- Fix CVE-2010-0541 in ruby18. Bump portrevision.
- Fix ruby19 build with openssl 1.1.
|
|
|
|
|
| |
Reported by: John-Paul Bader <contact@smyck.org>
Obtained from: ruby svn (revision r26253)
|
|
|
|
|
| |
PR: ports/146112
Reported by: Paul <Paul.Shepel@gmail.com>
|
|
|
|
|
|
|
| |
there's already nothing to stop. Only mark the timer thread as stopped.
That fixes spontaneous lockups in ruby popen call.
Reported by: renchap @ FreeNode
|
|
|
|
| |
Submitted by: dinoex
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- On FreeBSD >= 7.2 allocate the new thread with adequate amount of stack
space to run the main ruby code in. This allows to mitigate problem
when too low stack space available for ruby when running with pthreads
enabled.
- Bump portrevision.
The long version. Before this change we used to link ruby against pthreads
uncoditionally on all versions of FreeBSD. This is indispensable in order
to load the threaded shared objects withing ruby. However, this causes a
dramatic decrease in the stack space available as pthreads only allows
up to several megabytes of stack space for the main application threads.
The only solution to this is to create the new thread immediately after
the program start with rigth stack size attributes set. Nonetheless this
scheme won't work for us on FreeBSD version before 7.2 as malloc implementation
in these versions was not threaded fork safe (i.e. this is impossible to
fork from the threaded program and expect malloc/free functions to work).
Thus the only solution for now can be to disable pthreads entirely on
FreeBSD <= 7.2. This won't cause any performance/usability problems for
users as Ruby 1.8 uses green threads, however it may prevent <= 7.2
users to load shared libraries linked agains pthreads.
Reported by: "François Montel" <seanmullen@gmail.com>
Tested by: Sean Mullen <seanmullen@gmail.com>
|
|
|
|
|
|
|
| |
when pthread libraries don't show up in Config::CONFIG["LIBS"] in some
cases.
Reported by: dinoex
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
we were linking the ruby binary against pthreads, and the default
stack size detection method with getrlimit didn't returned right
values in this case. Now, if threads enabled, it also tries to
determine the stack size via pthreads calls and use this value if
it is smaller than what getrlimit returned. Furthermore, the stack
overflow detection routine now works proactively, generating
exception if there're probability the stack will be exhausted by
the time of the next check (ruby performs checks only in each 256th
call of rb_call0). [1]
- Build pthreads-enabled ruby by default. I have not received any
bug reports for this for years, and this verison will work correctly
with threaded libraries. Also, do not link agains pthreads in non-pthread
case (this breaks stack size detection algorithm), and eliminate the
option to disable pthreads (so only power users who know what they're
doing can disable them).
- Build RDoc by default so it is available in the package.
- Bump portrevision.
PR: ports/132158
Reported by: Eugene Pimenov <libc@libc.st>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
been triggered by portupgrade which uses finalizers to remove lockfiles.
- Fix the bug in URI module that smashed uri paths in merge method for
ftp uris. [1]
- Fix segmentation fault when cloning objects with dynamically created
methods (via instance_eval). [2]
PR: ports/131775 [1], ports/135533 [2]
Submitted by: Yoshisato YANAGISAWA <osho@pcc-software.org> [2],
Helmut Schneider <jumper99@gmx.de> [1],
Jaakko Heinonen <jh@saunalahti.fi> [1],
Peter Hofer <ph@desktopbsd.net> [1]
Obtained from: ruby_1_8 svn tree (rev 22679) [2]
|
|
|
|
|
|
|
| |
- Bump portrevision.
Obtained from: ruby-lang CVS
Security: 62e0fbe5-5798-11de-bb78-001cc0377035
|
|
|
|
|
| |
PR: ports/135207
Submitted by: Keith Gaughan <kmgaughan@eircom.net>
|
|
|
|
|
|
|
| |
This updates also borrows some important bugfixes from Ruby CVS that
is not available in patchlevel 160 yet.
- Drop GC patch support. It is broken with the new ruby version and
seem to require the complete rewriting.
|
|
|
|
|
|
|
|
|
|
| |
to remote host was refused. FreeBSD connect(2) call returns EINVAL in
that case and clears the error code, so there's no way to determine
what happened. Reimplement ruby_connect via select call instead of
polling the status by connect(2). This may also reduce overhead (though,
not verified).
Reported by: Saku Ytti <saku@ytti.fi>
|
|
|
|
| |
Reported by: pav
|
|
|
|
| |
Reported by: Jan Henrik Sylvester <me@janh.de>
|
|
|
|
| |
Pointy hat to: me
|
|
|
|
|
| |
PR: ports/124837 (based on)
Submitted by: KIMURA Yasuhiro <yasu@utahime.org>
|
|
|
|
|
| |
PR: ports/130399
Submitted by: bf <bf2006a@yahoo.com>
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
- Fix Webrick DoS vulnerability.
- Serveral minor bugfixes in cgi.rb, ipaddr.rb and resolver.
- Bump PORTREVISION.
Obtained from: ruby VCS
Tested by: Ilya Bakulin <webmaster@kibab.com>
|
|
|
|
|
|
|
|
| |
* fix integer overflow in bignums;
* correctly check for string length in regexps;
* fix memory leak in parse.c.
- Bump portrevision.
|
|
|
|
|
|
|
|
| |
- fix integer overflow in Array;
- fix overflow in String;
- bump PORTREVISION.
Obtained from: ruby VCS
|
|
|
|
|
|
|
| |
- Update rexml to 3.1.7.2
- Bump portrevision.
Obtained from: ruby svn
|
|
|
|
|
|
|
| |
- Bump up portrevision.
Approved by: portmgr (marcus)
Reported by: mat
|
|
|
|
|
|
| |
It's a bugfix release.
Thanks to: Alexander Logvinov <ports@logvinov.com> for initial patchset.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
supports them. This is determined by running ``configure --help'' in
do-configure target and set the shell variable _LATE_CONFIGURE_ARGS
which is then passed to CONFIGURE_ARGS.
- Remove --mandir and --infodir in ports' Makefile where applicable
Few ports use REINPLACE_CMD to achieve the same effect, remove them too.
- Correct some manual pages location from PREFIX/man to MANPREFIX/man
- Define INFO_PATH where necessary
- Document that .info files are installed in a subdirectory relative to
PREFIX/INFO_PATH and slightly change add-plist-info to use INFO_PATH and
subdirectory detection.
PR: ports/111470
Approved by: portmgr
Discussed with: stas (Mk/*), gerald (info related stuffs)
Tested by: pointyhat exp run
|
|
|
|
|
|
|
| |
problems with some extensions. This also had been fixed in upsteam CVS.
- Bump portrevision.
Reported by: many
|
|
|
|
|
|
|
| |
serious bugs, some of which can pose security-related problems.
- Bump up PORTREVISION.
Requested by: many
|
|
|
|
| |
Approved by: stas (maintainer)
|
|
|
|
| |
Suggested by: knu
|
|
|
|
| |
With hat: portmgr
|
| |
|
|
|
|
|
| |
- Synchronise portversions and portepochs in all ruby subports
- Take maintainerships of all ruby subports.
|
|
|
|
|
| |
PR: ports/100996
Submitted by: stass
|
|
|
|
| |
- Bump portrevison
|
|
|
|
|
|
|
|
|
|
|
| |
- Make RI generation disabled by default (it causes problems
on slow hardware)
- PREFIX-cleaness fixes (in bsd.ruby.mk) [1]
- Take maintainership of bsd.ruby.mk [1]
The patch was tested in the tinderbox with all ruby-dependend ports.
Approved by: portmgr (linimon)
|
|
|
|
|
|
|
|
| |
- Bump portrevision
PR: ports/106287
Reported by: UEDA Hiroyuki <bsdmad@gmail.com>
Obtained from: ruby cvs
|
|
|
|
|
|
|
|
| |
unresolved symbols) on some systems (e.g. with libgnomeui). Linking
threading libraries donesn't employ threading in ruby per se, so it's safe
to do that in non-threaded case.
Reported by: mezz
|
|
|
|
|
|
| |
disabled.
Reported by: Anton Yuzhaninov <citrin@citrin.ru>
|
|
|
|
|
|
|
|
| |
ruby18 module
- Bump portrevision
PR: ports/105113
Submitted by: UEDA Hiroyuki <BSDmad@gmail.com>
|
|
|
|
|
|
|
| |
- Bump portrevision
Submitted by: nork
Approved by: portmgr (clement)
|
|
|
|
|
|
|
|
|
|
|
| |
privileges. When RB_INSTALL_USER environment variable is set, ruby
will not pass '${_BINOWNGRP}' to install program, thus allowing an
ordinal user to install gem or library (e.g. into home directory).
- Eliminate extra whitespace
- Bump portrevision.
PR: ports/103801 (idea)
Submitted by: Dimitri Aivaliotis <aglarond@gmail.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
modifications)
- Add OPTIONS
- Provide automatic pkg-plist generator to simplify updates
- Guarantee permissions safety when installing docs and examples (eliminate
${CP} -r *)
- Create handy docs and examples structure (install examples for external
libraries in separate directories)
- Remove unused KNOB (NORUBYLIB)
- Add knob to disable RDOC generation [1]
- Add knob to disable IPv6 support
- Move list of obsoleted packages to the separate file (files/obsoleted)
- Add additional .keep_me like files to allow shared directories to not
be deleted by dependent ports
- Minor cleanups and modifications
- Bump-up portrevision
All ruby ports were tested in tinderbox with these modifications.
Requested by: VANHULLEBUS Yvan <vanhu_bsd@zeninc.net> [1]
PR: ports/103353 [1], ports/102648, ports/102663, ports/102685, ports/102646
Approved by: sem (mentor)
|
|
|
|
|
|
| |
after 6.3-RELEASE
Submitted by: Stanislav Sedov <ssedov@mbsd.msk.ru>
|
|
|
|
| |
A bugs fix release.
|
|
|
|
|
|
|
| |
- these include irc/ japanese/ java/ lang/ mail/ math/ maintained by ports@
PR: ports/101916
Submitted by: Gea-Suan Lin <gslin_AT_gslin dot org>
|
|
|
|
| |
VuXML id: 76562594-1f19-11db-b7d4-0008743bf21a
|
|
|
|
| |
Reported by: mezz
|
|
|
|
|
| |
PR: ports/97765 (based on)
Submitted by: Takeshi MUTOH <mutoh@openedu.org>
|
|
|
|
|
| |
PR: ports/97178 (based on)
Submitted by: cokane
|
|
|
|
| |
Add missing entries for the ONIGURUMA option to the plist.
|
|
|
|
|
|
|
| |
of sign-extension noises through console / kernel log on FreeBSD/amd64.
PR: ports/94088
Submitted by: ariff
|
|
|
|
| |
Submitted by: MOROHOSHI Akihiko <moro@remus.dti.ne.jp>
|
|
|
|
|
|
|
|
| |
(migemo, mod_ruby, etc.).
- Remove WITHOUT_PTHREADS knob and add WITH_PTHREADS knob.
- Bump PORTREVISION.
Approved by: portmgr (krion)
|
|
|
|
|
|
| |
getcontext/setcontext issue.
Obtained from: Ruby CVS
|
|
|
|
|
|
|
|
|
|
|
| |
getcontext() saves EFLAGS and setcontext() restores it. When carry
flag is set in EFLAGS, setcontext() treats it as an system call error.
This problem is filed as misc/92110.
rev1.3 and before hid this problem, and rev1.4 exposed it.
Drop carry flag before getcontext() for workaround for this problem.
Submitted by: Tanaka Akira <akr__at__m17n.org>
Tested by: TAKANO Yuji <takachan__at__running-dog.net>
|
|
|
|
| |
Tested by: TAKANO Yuji <takachan__at__running-dog.net>
|
|
|
|
| |
Reported by: many
|
|
|
|
| |
Reported by: cperciva
|
|
|
|
|
|
|
|
| |
since my last commit. It spun in 'miniruby' somewhere in a
bigdecimal compile. So, if CPUTYPE is defined as athlon64 or
athlon-xp, ignore CPU_CFLAGS for workaround.
Reported by: Mike Harding <mvh__at__ix.netcom.com>
|
|
|
|
|
|
|
|
|
|
| |
before gcc 4.0.3.
previous one broke xcgroup of XCAST6:
http://sourceforge.net/projects/xcast6/
Reported by: SUZUKI Koichi <metal__at__gc5.so-net.ne.jp>
Obtained from: http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/eval.c.diff?r1=1.616.2.148;r2=1.616.2.149
|
|
|
|
|
|
| |
Investigated by: marius
This patch by: Tanaka Akira <akr@m17n.org> (akr in ruby CVS)
Obtained from: ruby CVS
|
|
|
|
| |
Submitted by: Yoshiaki Kasahara <kasahara@nc.kyushu-u.ac.jp>
|
|
|
|
|
|
| |
filesystem boundaries
Reported by: Virgil Champlin <champlin@stupidog.org>
|
|
|
|
| |
Submitted by: mezz
|
|
|
|
| |
Suggested by: mezz
|
| |
|
| |
|
|
|
|
| |
parsing works
|
| |
|
| |
|
|
|
|
|
| |
PR: ports/91556
Submitted by: Alexander Wittig <alexander@wittig.name>
|
|
|
|
|
|
| |
PR: ports/87704
Submitted by: IWATSUKI Hiroyuki <don@na.rim.or.jp>
Reviewed by: Parv <parv@pair.com>
|
| |
|
|
|
|
| |
Reminded by: linimon
|
|
|
|
| |
Reported by: kris via pointyhat
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Change LOCALBASE with _RUBY_BASE
- Set _RUBY_BASE=PREFIX if defined _RUBY_PORT_TEST
_RUBY_BASE=LOCALBASE otherwise for easy ports testing.
lang/ruby18:
- Update to 1.8.3
Grant maintainership to submitter.
While I'm here:
- Add _RUBY_PORT_TEST=yes to lang/ruby16 port too.
(lang/ruby1[68] must set it for right install).
PR: ports/87332
Submitted by: Alexander Novitsky
|
|
|
|
|
|
|
| |
Based on: ports/87816
Submitted by: Phil Oleson <oz@nixil.net>
Security: http://vuxml.FreeBSD.org/1daea60a-4719-11da-b5c6-0004614cc33d.html
|
|
|
|
|
|
|
|
|
|
| |
PR: ports/82855
Submitted by: Renato Botelho <freebsd@galle.com.br>
Obtained from: Ruby CVS
Approved by: maintainer timeout (1 day; security)
With hat: secteam
Security: CAN-2005-1992
Security: http://vuxml.FreeBSD.org/594eb447-e398-11d9-a8bd-000cf18bbe54.html
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
${PTHREAD_CFLAGS} and ${PTHREAD_LIBS} include in the build to kill the
headache of old '_r' and can't run with something like ruby-opengl, ruby-sdl,
ruby-gtk2 and etc on FreeBSD 4.x or older 5.x. With this commit should solve
those issues. It is recommend you to rebuild any apps that depend on
lang/ruby18, so see the UPDATING for detail.
Remove the 'BROKEN' on the other ports that knu has added them few weeks ago.
Some of them have been tested, so if one of them is still broke then please
let us know and one of us will re-add the 'BROKEN'.
This changes was worked by lofi and me. lofi did everything on FreeBSD 4.x
and I did others. lofi, thanks for help!
Tested by: many people
Tested on: i386 (FreeBSD 4.x, 5.x and 6.x), amd64 (FreeBSD 5.x and 6.x),
and sparc64 (FreeBSD 5.x and 6.x)
Not test on: ia64 and alpha
Approved by: portmgr (kris)
|
|
|
|
|
|
| |
so a real fix should be found ASAP.
Submitted by: gad
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
dropped and the lang/ruby16_r and lang/ruby18_r ports have been
removed, since no one seems to appreciate the partially working
solution.
Good news is that the pthread support of lang/ruby18 is now enabled by
default for newer systems, which means the ruby interpreter is linked
with libpthread. This will allow threaded extension libraries to run
and work properly on those systems.
The --march=cputype flag is disabled because it gets ruby to
malfunction and fail to build. I don't know if the problem is in
libpthread or in gcc.
(It really makes me wonder if they had actually tested before asking
me to do this somewhat risky change ;-)
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
* Please upgrade sysutils/portupgrade prior to this one, or pkgdb(1)
may coredump with a double free() problem from a misuse of the DL
module. In that case, reinstall sysutils/portupgrade manually.
|
|
|
|
|
|
|
| |
Obtained from: ruby CVS
Reviewed by: trhodes
OK'ed by: maintainer silence
With hat: secteam
|
| |
|
| |
|
|
|
|
| |
devel/readline is installed.
|
|
|
|
| |
snapshot as of 2004-05-02.
|
|
|
|
| |
Submitted by: trevor
|
|
|
|
|
|
| |
of Ruby, which is now 1.8.
Pointed out by: kris
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Always put a version suffix to the ruby name (no matter if ruby is the
default version) to avoid mess in future.
[Notes for i386 users]
If you are a ruby developer and still want to stick with ruby 1.6 as
default, please add RUBY_DEFAULT_VER=1.6 to /etc/make.conf.
If you are a ruby developer and want to keep ruby 1.6 as default,
please add RUBY_DEFAULT_VER=1.6 to /etc/make.conf. Otherwise, please
run the following series of commands to migrate to ruby 1.8:
1) Reinstall portupgrade manually (and ruby 1.8 will be installed)
pkg_delete portupgrade-\*
(cd /usr/ports/sysutils/portupgrade; make install clean)
2) Reinstall everything that depends on ruby 1.6 (to use ruby 1.8)
portupgrade -fr lang/ruby16
3) Reinstall ruby 1.8 (because the previous step kills symlinks)
portupgrade -f lang/ruby18
4) Deinstall ruby 1.6 stuff (if you are paranoia)
pkg_deinstall -ri lang/ruby16
|
|
|
|
|
| |
PR: ports/61596
Submitted by: Oliver Eikemeier <eikemeier@fillmore-labs.com>
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
that listed all archs, except ia64.
Approved by: portmgr (kris)
|
|
|
|
|
|
|
|
|
|
|
|
| |
The __libc_ia64_register_backing_store_base variable is defined on
Linux (in glibc) to allow processes to obtain the base of the RSE
backing store. On FreeBSD we do not have such a variable. We also
do not yet have a different interface for processes to use. So, for
now, hardcode the base address of the RSE backing store as it is
on FreeBSD. There's little chance this will change in the future,
so it's not that evil.
Approved by: portmgr (kris)
|
| |
|
|
|
|
|
| |
Many bugs have been fixed since the 1.8.0 release. (The diff file is
very big because some big files were moved, sorry)
|
| |
|
|
|
|
|
|
|
|
|
|
| |
AMD64 ports still need some more testing and tweaking)
By this update, openssl, webrick and xmlrpc modules are now part of
the standard distribution.
Since this version should no longer be called -devel, I am planning on
repo-moving lang/ruby{,-devel} to lang/ruby{16,18}, respectively.
|
|
|
|
|
|
|
|
|
| |
with gcc 3.3 with a -mcpu or -march flag (even -mcpu=pentiumpro, which
is the default CPU cflag that bsd.cpu.mk sets, leads ruby to coredump).
Although currently I'm not sure if gcc 3.3's optimization has a bug or
it is that it just exposed the dl module's hidden bug, disable those
flags to work around the problem for the moment.
|
|
|
|
|
|
| |
Bad proxy, no cookie, even for FTP service.
Submitted by: roberto
|
|
|
|
| |
unbreak for alpha and sparc64. (ia64 and amd64 are not supported yet)
|
|
|
|
|
| |
lack of prototypes. A patch to fix this will follow in a couple of
days, and in the meantime mark this port as ONLY_FOR_ARCHS=i386.
|
|
|
|
|
| |
ruby-csv, drb, rexml and yaml are now part of the ruby 1.8 standard
distribution.
|
|
|
|
|
|
|
| |
verbose flag on. (ruby -v -e 'begin;end')
PORTREVISION is not bumped since this is not a significant problem for
most people.
|
|
|
|
|
|
|
| |
latest snapshots as of 2003-04-19.
ruby-bigdecimal (formerly known as ruby-bigfloat) and ruby-zlib are
now part of ruby 1.8.
|
|
|
|
| |
Reported by: kris
|
| |
|
| |
|
|
|
|
|
|
|
| |
configure.in be ahead of that of configure and autoconf thus be
demanded.
Submitted: kris, bento
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
| |
Update Oni Guruma to 20030121.
Now that the MAKE_ARGS problem is gone, re-enable MAKE_ARGS for
sparc64.
|
|
|
|
| |
Submitted by: obrien [*]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
disabling parallel build on sparc64. The INSTALLS_DEPENDS thing
probably comes from bsd.port.mk, but I wonder why it is regarded as a
target when it is only used as a boolean variable. I think make(1)
has some problem with parallel build (-jN) on that platform.
I could not really reproduce the error on panther, but a submitter [1]
says the build went fine if he commented the -jN option out as I
suggested.
Submitted by: Anders Andersson <anders@hack.org>,
Joao Pedras <jpedras@webvolution.net> [1],
kris
|
|
|
|
| |
Submitted by: kris, bento
|
|
|
|
|
|
|
|
|
| |
which now supports FreeBSD/sparc64.
Set ONLY_FOR_ARCHS to i386, alpha and sparc64. Ruby does not support
IA64 yet. It does not even build or install correctly. We need some
clue to the IA64 stack structure and handling of the IA64 register
windows.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Update to the 1.6.8 final release. (which fixes a couple of
coredumping bugs)
- Update Oni Guruma (alternative BSDL regexp engine) to 20021210.
- Attach a small knob for debugging.
lang/ruby-devel
- Update to 1.8.0 preview 1 + errata patch. (fixes a couple of
coredumping bugs)
- Update Oni Guruma (alternative BSDL regexp engine) to 20021210.
- Fix pkg-plist nits.
lang/ruby16-shim-ruby18
- Update to 1.8.0 preview 1. (sync with 1.6.8 & 1.8.0 preview1)
- Fix pkg-plist nits.
Approved by: lioux (and self)
A Merry Christmas to: all of you
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
1.7.3.2002.12.11, and lang/ruby-devel to 1.7.3-2002.12.12.
- Fix a few bugs that lead to core dump, one in the ruby interpreter
and another in the syslog module.
Reported by: ume (net/dtcp was a victim)
- Fix an installation problem occasionally seen on bento. (a bug in
Makefile that caused race)
Submitted by: bento
- Fix a problem that irb(1) didn't work because the symlink was wrong.
Submitted by: Jos Backus <jos@catnook.com>
- Get rid of move & symlink spaghetti completely from the installation
process.
Discussed with: portmgr (will)
|
|
|
|
|
|
|
| |
archiver/ruby-zlib with lang/ruby-devel in the correct way.
The cause of this problem is that FreeBSD's make(1) got a bit too
sensitive about a mixture of `target:' and `target::'.
|
|
|
|
| |
Add a DEBUG knob here too.
|
| |
|
| |
|
|
|
|
| |
Reported by: Fritz Heinrichmeyer <Fritz.Heinrichmeyer@FernUni-Hagen.de>
|
|
|
|
|
|
| |
FreeBSD/sparc64 fails to build this and somehow the entire OS gets
frozen while running `miniruby'. I'd appreciate if someone with a
clue could help me fix the problem.
|
|
|
|
|
|
|
|
| |
fixes several coredump bugs and fatal threading problems.
Remove the autoconf dependency by including a pre-generated configure
script in the distfile. It now also includes a pre-generated parse.c
made by bison 1.35.
|
| |
|
|
|
|
| |
This fixes coredump on the Alpha.
|
|
|
|
| |
latest snapshots as of today, 2002-09-12 (JST).
|
|
|
|
|
|
| |
to pkg-plist.
Reported by: nork
|
|
|
|
| |
Suggested by: Andreas Hauser <hauser@informatik.uni-muenchen.de>
|
|
|
|
| |
2002-07-15.
|
| |
|
|
|
|
|
|
|
| |
undefined when DEBUG_FLAGS is defined.
Submitted by: Dave Cornejo <dave@dogwood.com>,
Joshua Goodall <joshua@roughtrade.net>
|
|
|
|
| |
2002-05-23.
|
|
|
|
|
|
| |
2002-05-05. This fixes some ruby extensions under RUBY_VER=1.7.
Update the Oni Guruma regex engine to 20020424.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Update to the latest 1.6 stable snapshot as of 2002-03-27.
- Update the Oni Guruma alternative regex engine to 20020325.
lang/ruby-devel:
- Update to the latest 1.7 development snapshot as of 2002-03-26.
- Add the WITH_ONIGURUMA knob as well as lang/ruby.
- Require devel/autoconf (2.53 or later is required).
- Add several modules to the obsoleted modules list (now included):
bigfloat
fileutils
racc-runtime
strscan
|
|
|
|
| |
Update lang/ruby-devel to the latest snapshot as of 2002-03-01.
|
|
|
|
|
|
| |
(what is built from ports) from coredumping. [workaround]
Set MAKE_ARGS to "-j3" to hasten the build.
|
| |
|
|
|
|
|
|
|
|
| |
lang/ruby-devel deinstall obsoleted (integrated) packages in their
post-install targets (for installation from ports) and in their plists
(for installation from packages),
Update to the latest snapshot as of 2002-01-29 while I'm at it.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- USE_AUTO* -> USE_AUTO*_VER=* where required
- USE_AUTO* / *_DEPENDS=.*auto*:*/devel/auto* -> GNU_CONFIGURE where OK
- Other minor changes to fix things
These changes should be no-ops with the current bsd.port.mk, but will
assist in preparing for the next generation of USE_AUTO*.
Submitted by: bento 4-exp USE_AUTO* cleanups
http://people.FreeBSD.org/~will/4-exp/
http://bento.FreeBSD.org/errorlogs/4-exp-latest/
|
|
|
|
| |
Update lang/ruby-devel to the 1.7.2 Xmas' development snapshot.
|
| |
|
|
|
|
|
|
| |
Update lang/ruby-devel to the latest snapshot, 1.7-2001.11.22.
Use bzip2 patches instead of gzip patches.
|
| |
|
| |
|
|
|
|
| |
today. (2001/11/04)
|
| |
|
|
|
|
|
| |
dependent ruby modules, due to the RUBY_ARCH change I've just
committed.
|
|
|
|
| |
Submitted by: knu
|
| |
|
|
|
|
|
| |
As for lang/ruby, this would perhaps be the last snapshot before the
1.6.5 release.
|
|
|
|
| |
We are now six hours away from the ports freeze!
|
| |
|
| |
|
|
|
|
| |
(as of 2001/08/16 20:00 JST)
|
| |
|
|
|
|
| |
2001.07.31.
|
| |
|
| |
|
|
|
|
| |
Let each elisp port create XEMACSLISPDIR by itself.
|
| |
|
|
|
|
| |
Reported by: bento
|
|
|
|
|
|
| |
post-install.
Dig XEmacs' site-lisp directory and RUBY_ELISPDIR.
|
|
|
|
| |
defined. (But not actual examples & docs)
|
|
|
|
|
|
| |
Introduce RUBY_R in preparation for ruby_r & ruby_r-devel ports.
Define RUBY_CONFIGURE_ARGS.
|
|
|
|
| |
1.7.1 phase.
|
| |
|
|
|
|
|
|
| |
Note that you'll have to rebuild all the installed ruby modules
if you upgrade. To do it, just install the latest portupgrade and
hit `portupgrade -rfcC ruby'.
|
|
|
|
|
|
|
|
| |
temporarily stop linking ruby with libc_r. This will break such
extension modules as ruby-qt, but we have to investigate the
annoying problems we are seeing, present in both ruby and our libc_r.
Once suggested by: green
|
|
|
|
| |
Update lang-ruby-devel to the latest development snapshot.
|
|
|
|
|
|
|
|
| |
Remove shells/ruby-shell as it is now part of the standard distribution.
(in both Ruby 1.6.4 and 1.7.0)
Mark security/ruby-sha1 broken for Ruby >= 1.7.0, as it is also part of the
standard distribution now.
|
|
|
|
| |
Update lang/ruby-devel to 1.7.0-a2001.05.12.
|
| |
|
| |
|
|
|