notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
All times are UTC
Ukraine
non port: lang/ruby18/Makefile
SVNWeb

Number of commits found: 94

Thu, 26 Sep 2013
[ 18:23 tabthorpe search for other commits by this committer ] Original commit   Revision:328401
- Mark DEPRECATED, too
- Update the FORBIDDEN message

Noticed by:	eadler
Security:	ebd877b9-7ef4-4375-b1fd-c67780581898
[ 16:36 tabthorpe search for other commits by this committer ] Original commit   Revision:328377
- Mark FORBIDDEN, set EXPIRATION_DATE=2013-10-10
Fri, 20 Sep 2013
[ 19:53 bapt search for other commits by this committer ] Original commit   Revision:327741 (Only the first 10 of 379 ports in this commit are shown above. View all ports for this commit)
Add NO_STAGE all over the place in preparation for the staging support (cat:
lang)
Mon, 16 Sep 2013
[ 16:34 bapt search for other commits by this committer ] Original commit   Revision:327412
Only the default package will be named ruby-<version> now, to stop confusing
users

Approved by:	ruby (swills)
Fri, 11 Jan 2013
[ 22:05 jgh search for other commits by this committer ] Original commit   Revision:310250
- update remaining ruby@ maintained ports to new options framework
- trim historical header where applicable

Reviewed by:	swills@ (ruby@)
Tue, 18 Sep 2012
[ 20:41 swills search for other commits by this committer ] Original commit   Revision:304456
- Fix build with clang

Submitted by:	dim
Tue, 1 Nov 2011
[ 22:56 pgollucci search for other commits by this committer ] Original commit 
Let ruby@ maintain ruby
Mon, 24 Oct 2011
[ 03:33 stas search for other commits by this committer ] Original commit  (Only the first 10 of 258 ports in this commit are shown above. View all ports for this commit)
- Return my ports back to the pool.  I was unable to make any fixes to
  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).
Sat, 4 Dec 2010
[ 07:34 ade search for other commits by this committer ] Original commit  (Only the first 10 of 1730 ports in this commit are shown above. View all ports for this commit)
Sync to new bsd.autotools.mk
Sat, 16 Oct 2010
[ 11:52 ade search for other commits by this committer ] Original commit  (Only the first 10 of 445 ports in this commit are shown above. View all ports for this commit)
Punt autoconf267->autoconf268
Tue, 5 Oct 2010
[ 19:57 ade search for other commits by this committer ] Original commit  (Only the first 10 of 235 ports in this commit are shown above. View all ports for this commit)
Round one migration of ports from automake{19,110} to automake111
Wed, 15 Sep 2010
[ 18:35 ade search for other commits by this committer ] Original commit  (Only the first 10 of 652 ports in this commit are shown above. View all ports for this commit)
Autotools update.   Read ports/UPDATING 20100915 for details.

Approved by:    portmgr (for Mk/bsd.port.mk part)
Tested by:      Multiple -exp runs
Tue, 31 Aug 2010
[ 03:58 pgollucci search for other commits by this committer ] Original commit 
- remove extra -g from CFLAGS
- WITH_DEBUG is handled in Mk/bsd.port.mk

PR:             ports/146863
Submitted by:   Anonymous <swell.k@gmail.com>
Silence from:   stas (maintainer)
Tue, 6 Apr 2010
[ 23:54 stas search for other commits by this committer ] Original commit 
- Fix build with openssl 1.0.

Submitted by:   dinoex
Mon, 12 Oct 2009
[ 13:15 stas search for other commits by this committer ] Original commit 
- Don't build ruby with threads support on FreeBSD versions before 7.2
- 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>
Sun, 19 Jul 2009
[ 16:42 stas search for other commits by this committer ] Original commit 
- Add ${PTHREAD_LIBS} to LDFLAGS in threaded build.  This fixes the issue
  when pthread libraries don't show up in Config::CONFIG["LIBS"] in some
  cases.

Reported by:    dinoex
Fri, 19 Jun 2009
[ 12:42 stas search for other commits by this committer ] Original commit 
- Fix stack overflow detection algorithm.  It has not worked before as
  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>
Wed, 3 Jun 2009
[ 11:32 stas search for other commits by this committer ] Original commit 
- Really remove GC patch support.

PR:             ports/135207
Submitted by:   Keith Gaughan <kmgaughan@eircom.net>
Tue, 2 Jun 2009
[ 17:25 stas search for other commits by this committer ] Original commit 
- Update ruby 1.8.7 to the latest revision available from ruby-lang.org.
  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.
Thu, 12 Feb 2009
[ 17:54 stas search for other commits by this committer ] Original commit 
- Fix build with port's openssl version.

Reported by:    Jan Henrik Sylvester <me@janh.de>
[ 14:59 stas search for other commits by this committer ] Original commit 
- Fix pkg-plist.

Pointy hat to:  me
[ 14:24 stas search for other commits by this committer ] Original commit 
- Update ruby18 to 1.8.7p72.

PR:             ports/124837 (based on)
Submitted by:   KIMURA Yasuhiro <yasu@utahime.org>
Mon, 12 Jan 2009
[ 11:19 stas search for other commits by this committer ] Original commit 
- Fix build with OPENSSL_PORT.

PR:             ports/130399
Submitted by:   bf <bf2006a@yahoo.com>
Mon, 5 Jan 2009
[ 20:36 pav search for other commits by this committer ] Original commit  (Only the first 10 of 102 ports in this commit are shown above. View all ports for this commit)
- Remove conditional checks for FreeBSD 5.x and older
Fri, 15 Aug 2008
[ 21:45 stas search for other commits by this committer ] Original commit  (Only the first 10 of 16 ports in this commit are shown above. View all ports for this commit)
- Update ruby to 1.8.6 patchset 287.
Tue, 30 Oct 2007
[ 11:24 stas search for other commits by this committer ] Original commit  (Only the first 10 of 19 ports in this commit are shown above. View all ports for this commit)
- Update ruby to the latest 111 patchversion.
  It's a bugfix release.

Thanks to:      Alexander Logvinov <ports@logvinov.com> for initial patchset.
Wed, 3 Oct 2007
[ 23:22 edwin search for other commits by this committer ] Original commit  (Only the first 10 of 13 ports in this commit are shown above. View all ports for this commit)
Remove support for OSVERSION < 5
Mon, 23 Jul 2007
[ 09:36 rafan search for other commits by this committer ] Original commit  (Only the first 10 of 437 ports in this commit are shown above. View all ports for this commit)
- Set --mandir and --infodir in CONFIGURE_ARGS if the configure script
  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
Tue, 10 Jul 2007
[ 15:04 stas search for other commits by this committer ] Original commit  (Only the first 10 of 17 ports in this commit are shown above. View all ports for this commit)
- Add a bunch of fixes and patchs from the upstream. These fixes a lot of
  serious bugs, some of which can pose security-related problems.
- Bump up PORTREVISION.

Requested by:   many
Fri, 25 May 2007
[ 18:01 brian search for other commits by this committer ] Original commit 
Do pre-install actions as root

Approved by:    stas (maintainer)
Thu, 3 May 2007
[ 20:34 stas search for other commits by this committer ] Original commit 
- Install NEWS file too.

Suggested by:   knu
Thu, 5 Apr 2007
[ 08:13 pav search for other commits by this committer ] Original commit 
- Hack around RUBY_PORTEPOCH being set later than PKGNAME suffix is determined

With hat:       portmgr
Wed, 4 Apr 2007
[ 12:53 stas search for other commits by this committer ] Original commit 
- Use common RUBY_PORTEPOCH variable.
Tue, 3 Apr 2007
[ 21:57 stas search for other commits by this committer ] Original commit  (Only the first 10 of 13 ports in this commit are shown above. View all ports for this commit)
- Update ruby to 1.8.6
- Synchronise portversions and portepochs in all ruby subports
- Take maintainerships of all ruby subports.
Sat, 24 Mar 2007
[ 14:03 pav search for other commits by this committer ] Original commit  (Only the first 10 of 26 ports in this commit are shown above. View all ports for this commit)
- COPYTREE_* are now part of bsd.port.mk

PR:             ports/100996
Submitted by:   stass
Tue, 2 Jan 2007
[ 21:00 stas search for other commits by this committer ] Original commit 
- Forced commit to note, that the previous patch was received from
  Roman Shterenzon <romanbsd@yahoo.com>. Thanks!
[ 20:58 stas search for other commits by this committer ] Original commit 
- Add patch that allows GC performance profiling and analasys.
- Bump portrevison
[ 16:23 stas search for other commits by this committer ] Original commit 
- Update lang/ruby18 to 1.8.5p12 (bugfix release)
- 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)
Mon, 4 Dec 2006
[ 20:33 stas search for other commits by this committer ] Original commit 
- Fix an another cgi library vulnerability
- Bump portrevision

PR:             ports/106287
Reported by:    UEDA Hiroyuki <bsdmad@gmail.com>
Obtained from:  ruby cvs
Sun, 19 Nov 2006
[ 23:39 stas search for other commits by this committer ] Original commit 
- Back-out the previous commit, as it can cause linking problems (pthread's
  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
Tue, 14 Nov 2006
[ 20:49 stas search for other commits by this committer ] Original commit 
- Don't links agains threading libraries in case if pthreads support was
disabled.

Reported by:    Anton Yuzhaninov <citrin@citrin.ru>
Sat, 4 Nov 2006
[ 10:04 stas search for other commits by this committer ] Original commit 
- Add a workaround for the recently disclosed DoS vulnerability in the cgi.rb
  ruby18 module
- Bump portrevision

PR:             ports/105113
Submitted by:   UEDA Hiroyuki <BSDmad@gmail.com>
Sun, 15 Oct 2006
[ 10:46 stas search for other commits by this committer ] Original commit 
- Fix pkg-plist when ONIGURUMA option used
- Bump portrevision

Submitted by:   nork
Approved by:    portmgr (clement)
Mon, 9 Oct 2006
[ 13:17 stas search for other commits by this committer ] Original commit 
- Add runtime knob to allow libraries installation under user
  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>
Sun, 1 Oct 2006
[ 19:10 stas search for other commits by this committer ] Original commit 
- Prepare port to make ruby libraries PREFIX-clean (also requires bsd.ruby.mk
  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)
Wed, 13 Sep 2006
[ 11:12 sem search for other commits by this committer ] Original commit 
- Assign a new ruby maintainer who submitted patches which will be committed
  after 6.3-RELEASE

Submitted by:   Stanislav Sedov <ssedov@mbsd.msk.ru>
Sun, 27 Aug 2006
[ 09:53 sem search for other commits by this committer ] Original commit 
- Update to 1.8.5
  A bugs fix release.
Tue, 15 Aug 2006
[ 00:29 clsung search for other commits by this committer ] Original commit  (Only the first 10 of 61 ports in this commit are shown above. View all ports for this commit)
- s,INSTALLS_SHLIB,USE_LDCONFIG,g
- these include irc/ japanese/ java/ lang/ mail/ math/ maintained by ports@

PR:             ports/101916
Submitted by:   Gea-Suan Lin <gslin_AT_gslin dot org>
Sun, 30 Jul 2006
[ 09:55 sem search for other commits by this committer ] Original commit 
- Fix last discovered security vulnerabilities.

VuXML id:       76562594-1f19-11db-b7d4-0008743bf21a
Wed, 24 May 2006
[ 20:42 pav search for other commits by this committer ] Original commit 
- Revert previous commit, it broke ruby-gtk2

Reported by:    mezz
[ 08:06 pav search for other commits by this committer ] Original commit 
- Don't link pthread libs in non-pthread case (the default case)

PR:             ports/97765 (based on)
Submitted by:   Takeshi MUTOH <mutoh@openedu.org>
Mon, 15 May 2006
[ 12:42 pav search for other commits by this committer ] Original commit 
- Fix PKGNAMESUFFIX when both Oniguruma and pthreads are enabled

PR:             ports/97178 (based on)
Submitted by:   cokane
Wed, 3 May 2006
[ 04:55 okazaki search for other commits by this committer ] Original commit 
Remove obsolete USE_REINPLACE.
Add missing entries for the ONIGURUMA option to the plist.
Tue, 2 May 2006
[ 12:15 anray search for other commits by this committer ] Original commit 
Wrong type of integer argument to ioctl(2) cause ruby18 to produce lots
of sign-extension noises through console / kernel log on FreeBSD/amd64.

PR:             ports/94088
Submitted by:   ariff
Sun, 30 Apr 2006
[ 17:50 nobutaka search for other commits by this committer ] Original commit 
Show the message about WITH_PTHREADS knob only when WITH_PTHREADS isn't defined.

Submitted by:   MOROHOSHI Akihiko <moro@remus.dti.ne.jp>
Fri, 31 Mar 2006
[ 13:25 nobutaka search for other commits by this committer ] Original commit 
- Disable pthread support by default to fix breakage of some ruby applications
  (migemo, mod_ruby, etc.).
- Remove WITHOUT_PTHREADS knob and add WITH_PTHREADS knob.
- Bump PORTREVISION.

Approved by:    portmgr (krion)
Tue, 24 Jan 2006
[ 14:38 ume search for other commits by this committer ] Original commit 
Use the code actually committed into Ruby CVS against
getcontext/setcontext issue.

Obtained from:  Ruby CVS
Sat, 21 Jan 2006
[ 19:29 ume search for other commits by this committer ] Original commit 
WITHOUT_CPU_CFLAGS hack is not required anymore.

Tested by:      TAKANO Yuji <takachan__at__running-dog.net>
[ 05:38 ume search for other commits by this committer ] Original commit 
${CPUTYPE} might not defined.

Reported by:    cperciva
[ 04:26 ume search for other commits by this committer ] Original commit 
It was not buildable with CPUTYPE=athlon64 or CPUTYPE=athlon-xp
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>
Fri, 20 Jan 2006
[ 19:32 ume search for other commits by this committer ] Original commit 
eval.c (FUNCTION_CALL_MAY_RETURN_TWICE): use only for SPARC and IA64
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
Mon, 16 Jan 2006
[ 09:41 pav search for other commits by this committer ] Original commit 
- Provide WITHOUT_PTHREADS option

Submitted by:   Yoshiaki Kasahara <kasahara@nc.kyushu-u.ac.jp>
[ 01:43 pav search for other commits by this committer ] Original commit 
- Fix bug: FileUtils.mv() does not unlink source file when moving over
  filesystem boundaries

Reported by:    Virgil Champlin <champlin@stupidog.org>
Sat, 14 Jan 2006
[ 18:57 pav search for other commits by this committer ] Original commit 
- OPENSSLINC is even better

Submitted by:   mezz
[ 18:42 pav search for other commits by this committer ] Original commit 
- Use OPENSSLBASE

Suggested by:   mezz
[ 14:38 pav search for other commits by this committer ] Original commit 
- Enable pthreads using configure switch, so autodetection based on headers
  parsing works
[ 14:10 pav search for other commits by this committer ] Original commit 
- Correct OpenSSL handling from previous commit
[ 14:05 pav search for other commits by this committer ] Original commit 
- Make OpenSSL handling more obvious
[ 13:25 pav search for other commits by this committer ] Original commit 
- Update to 1.8.4

PR:             ports/91556
Submitted by:   Alexander Wittig <alexander@wittig.name>
Mon, 21 Nov 2005
[ 22:58 sem search for other commits by this committer ] Original commit 
- Drop maintinership to ports@

Reminded by:    linimon
Mon, 14 Nov 2005
[ 09:46 sem search for other commits by this committer ] Original commit 
- Back out the last update. It breaks many ruby ports install.

Reported by:    kris via pointyhat
Wed, 9 Nov 2005
[ 08:54 sem search for other commits by this committer ] Original commit 
bsd.ruby.mk:
- 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
Thu, 27 Oct 2005
[ 19:40 sem search for other commits by this committer ] Original commit 
- Fix a ruby vulnerabuility in the safe level settings.

Based on:       ports/87816
Submitted by:   Phil Oleson <oz@nixil.net>

Security:      
http://vuxml.FreeBSD.org/1daea60a-4719-11da-b5c6-0004614cc33d.html
Sun, 3 Jul 2005
[ 10:26 simon search for other commits by this committer ] Original commit 
Fix arbitrary command execution in XMLRPC server.

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
Fri, 25 Feb 2005
[ 00:17 mezz search for other commits by this committer ] Original commit 
Disable threads again; it has caused the more troubles. This time, it has
${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)
Thu, 24 Feb 2005
[ 02:41 obrien search for other commits by this committer ] Original commit 
Hack commit to allow ruby18 to build on sparc64.  This changes to threading,
so a real fix should be found ASAP.

Submitted by:   gad
Sat, 5 Feb 2005
[ 04:59 knu search for other commits by this committer ] Original commit  (Only the first 10 of 15 ports in this commit are shown above. View all ports for this commit)
The slippery pthread support for systems prior to 502102 has been
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 ;-)
Sat, 25 Dec 2004
[ 16:05 knu search for other commits by this committer ] Original commit 
Update to the "second" 1.8.2 release. (officially announced, of course)
[ 04:28 knu search for other commits by this committer ] Original commit 
Update lang/ruby18 to the 1.8.2 release.  Happy holidays!
[ 04:02 knu search for other commits by this committer ] Original commit 
Fix plist.
Thu, 23 Dec 2004
[ 20:30 knu search for other commits by this committer ] Original commit 
Update lang/ruby18 to 1.8.2-preview4.

* 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.
Thu, 25 Nov 2004
[ 15:25 simon search for other commits by this committer ] Original commit 
Fix DoS in the Ruby CGI module.

Obtained from:  ruby CVS
Reviewed by:    trhodes
OK'ed by:       maintainer silence
With hat:       secteam
Thu, 12 Aug 2004
[ 09:46 knu search for other commits by this committer ] Original commit 
Handle ri document directories properly.
[ 08:57 knu search for other commits by this committer ] Original commit 
Update lang/ruby18 to 1.8.2-preview2.
Tue, 13 Jul 2004
[ 07:03 knu search for other commits by this committer ] Original commit 
Pull in the latest change to mkmf.rb to avoid build error when
devel/readline is installed.
Sun, 2 May 2004
[ 20:30 knu search for other commits by this committer ] Original commit 
Update lang/ruby18 and the bundled modules to the latest 1.8 branch
snapshot as of 2004-05-02.
Sun, 14 Mar 2004
[ 00:18 kris search for other commits by this committer ] Original commit 
BROKEN on ia64: segfault during build
Thu, 26 Feb 2004
[ 19:20 knu search for other commits by this committer ] Original commit 
Change the default version of ruby to 1.8 for i386 as well, finally.

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)
(Only the first 15 lines of the commit message are shown above View all of this commit message)
Tue, 17 Feb 2004
[ 03:58 knu search for other commits by this committer ] Original commit 
Fix plist and bump PORTREVISION.

PR:             ports/61596
Submitted by:   Oliver Eikemeier <eikemeier@fillmore-labs.com>
Mon, 22 Dec 2003
[ 10:08 knu search for other commits by this committer ] Original commit 
Update lang/ruby18 to 1.8.1.p4.
Mon, 15 Dec 2003
[ 06:35 knu search for other commits by this committer ] Original commit  (Only the first 10 of 11 ports in this commit are shown above. View all ports for this commit)
Update lang/ruby18 and lang/ruby16-shim-ruby18 to 1.8.1-preview3.
Thu, 27 Nov 2003
[ 08:37 marcel search for other commits by this committer ] Original commit 
Now that the build on ia64 has been fixed, remove the ONLY_FOR_ARCHS
that listed all archs, except ia64.

Approved by: portmgr (kris)
Fri, 31 Oct 2003
[ 12:33 knu search for other commits by this committer ] Original commit 
Update lang/ruby18 to 1.8.1-preview2.
Wed, 10 Sep 2003
[ 07:33 knu search for other commits by this committer ] Original commit 
Update lang/ruby18 to the latest snapshot as of 2003-09-09.

Many bugs have been fixed since the 1.8.0 release. (The diff file is
very big because some big files were moved, sorry)

Number of commits found: 94