File rubygem-rake-compiler.changes of Package rubygem-rake-compiler

-------------------------------------------------------------------
Tue Jun 21 04:37:05 UTC 2016 - coolo@suse.com

- updated to version 1.0.1
 see installed History.txt

  === 1.0.1 / 2016-06-21
  
  * Bugfixes:
    * Add missing dependency.
  
  === 1.0.0 / 2016-06-21
  
  * Enhancements:
    * Really support extension in sub directory.

-------------------------------------------------------------------
Sat May 21 04:36:24 UTC 2016 - coolo@suse.com

- updated to version 0.9.9
 see installed History.txt

  === 0.9.9 / 2016-05-10
  
  * Bugfixes:
    * Support Symbol as extension name again.
      #134 [Patch by Takashi Kokubun]

-------------------------------------------------------------------
Fri Apr 29 04:38:47 UTC 2016 - coolo@suse.com

- updated to version 0.9.8
 see installed History.txt

  === 0.9.8 / 2016-04-29
  
  * Enhancements:
    * Support extension in sub directory.
      #128, #129 [Patch by Kenta Murata]

-------------------------------------------------------------------
Sat Mar 19 05:31:26 UTC 2016 - coolo@suse.com

- updated to version 0.9.7
 see installed History.txt

  === 0.9.7 / 2016-03-16
  
  * Bugfixes:
    * May fix "make" detection on Windows.
      #123 [Reported by Aaron Stone]

-------------------------------------------------------------------
Sat Mar  5 05:30:50 UTC 2016 - coolo@suse.com

- updated to version 0.9.6
 see installed History.txt

  === 0.9.6 / 2016-03-04
  
  * Enhancements
    * Add more descriptions into README.
      Closes #105 [Patch by Aaron Stone]
    * Remove needless executable bits.
      Closes #107 [Patch by Thibault Jouan]
    * Update .gitignore.
      Closes #108 [Patch by Thibault Jouan]
    * Improve "make" detection on some platforms such as FreeBSD.
      Closes #109 [Patch by Thibault Jouan]
    * Enable cucumber steps for POSIX on *BSD.
      Closes #110 [Patch by Thibault Jouan]
    * Stop to build bundled extensions.
    * Add description about CLI option into README.
      Closes #115 [Patch by Richard Michael]
    * Update description about using rake-compiler on virtual machine in
      README.
      Closes #116, #117 [Patch by Lars Kanis]
    * Update fake mechanism to be compatible with Bundler.
      Closes #121 [Patch by Lars Kanis]
  
  * Bugfixes:
    * Fix typos in README.
      Closes #102, #103 [Patch by Robert Fletcher]

-------------------------------------------------------------------
Fri Feb  6 18:18:14 UTC 2015 - coolo@suse.com

- updated to version 0.9.5
 * Enhancements
   * Support adding bundled files in cross_compiling block.
     Closes #100 [Patch by Aaron Stone]
 
 === 0.9.4 / 2014-12-28
 
 * Notes:
   * Change maintainer to Kouhei Sutou from Luis Lavena.
     Thanks Luis Lavena for your great works!
   * Change repository to https://github.com/rake-compiler/rake-compiler
     from https://github.com/luislavena/rake-compiler .
 
 * Bugfixes:
   * Loose RubyGems dependency a little bit to ease old Debian/Ubuntu.
     Closes #93
 
 === 0.9.3 / 2014-08-03
 
 * Bugfixes:
   * Fix specs to run (and pass) on Ruby 2.1 and beyond.
     Pull #94 [hggh]

-------------------------------------------------------------------
Sun Oct 12 12:15:09 UTC 2014 - adrian@suse.de

- adapt to new rubygem packaging style

-------------------------------------------------------------------
Fri Nov 22 08:40:33 UTC 2013 - coolo@suse.com

- updated to version 0.9.2
 * Bugfixes:
   * Pre-load resolver to avoid Bundler blow up during cross-compilation
     Pull #83 [larskanis]

-------------------------------------------------------------------
Mon Aug  5 09:21:38 UTC 2013 - coolo@suse.com

- updated to version 0.9.1
 * Bugfixes:
   * Restore compatibility with RubyGems platforms for cross-compilation
     (i386-mingw32 and x86-mingw32 are the same and supported)
 
 === 0.9.0 / 2013-08-03
 
 * Enhancements:
   * Add support for cross-builds and multiple platforms (x86/x64).
     Pull #74 [larskanis]
 
       $ rake-compiler cross-ruby VERSION=1.8.7-p371
       $ rake-compiler cross-ruby VERSION=1.9.3-p392
       $ rake-compiler cross-ruby VERSION=2.0.0-p0
       $ rake-compiler cross-ruby VERSION=2.0.0-p0 HOST=x86_64-w64-mingw32
       $ rake cross compile RUBY_CC_VERSION=1.8.7:1.9.3:2.0.0
 
       # Rakefile
       ext.cross_platform = %w[i386-mingw32 x64-mingw32]
 
   * Support for cross-platform specific options. Pull #74 [larskanis]
 
       # Rakefile
       ext.cross_config_options << "--with-common-option"
       ext.cross_config_options << {"x64-mingw32" => "--enable-64bits"}
 
 * Bugfixes:
   * Correct fat-gems support caused by RubyGems issues. Pull #76 [knu]
 
 * Deprecations:
   * Requires minimum Ruby 1.8.7 and RubyGems 1.8.25
   * Usage of 'i386-mswin32' needs to be changed to 'i386-mswin32-60'
 
-------------------------------------------------------------------
Sun Mar  3 19:29:07 UTC 2013 - coolo@suse.com

- updated to version 0.8.3
 * Bugfixes:
   * Support FreeBSD 'mingw32-gcc' cross compiler. Closes #72 [knu]

-------------------------------------------------------------------
Mon Feb  4 20:25:48 UTC 2013 - coolo@suse.com

- updated to version 0.8.2
 * Bugfixes:
  * Unset CC, LDFLAGS and CPPFLAGS prior cross-compiling. Closes #55

-------------------------------------------------------------------
Sun May  6 14:32:37 UTC 2012 - coolo@suse.com

- update to 0.8.1
   * Raise error when either make or gmake could be found. Closes #53, #54

-------------------------------------------------------------------
Thu Apr  5 07:52:59 UTC 2012 - coolo@suse.com

- update to 0.8.0

  * Enhancements:
    * Invocation from command line now support extra options similar to RubyGems.
      Closes #4 from Pull #47 [jonforums]
  
        $ rake compile -- --with-opt-dir=/opt/local
  
  * Bugfixes:
    * Only emit cross-compilation warnings for C when `cross` is invoked.
      Closes #16 from Pull #48 [mvz]
    * Only emit warnings when invoking cross-compilation tasks for JRuby.
      Pull #45 [jfirebaugh]
    * Use x86 MinGW cross-compiler. Pull #49 [larskanis]

-------------------------------------------------------------------
Wed Nov 30 15:06:14 UTC 2011 - fcastelli@suse.com

- Fix the spec file: removed some requirements since they were
  just development dependencies.

-------------------------------------------------------------------
Tue Nov 29 13:42:37 UTC 2011 - schubi@suse.com

- update to 0.7.9 

-------------------------------------------------------------------
Fri Jun 11 10:00:01 UTC 2010 - mrueckert@suse.de

- use rubygems_requires macro

-------------------------------------------------------------------
Thu Dec 17 15:32:50 UTC 2009 - dmacvicar@novell.com

- Update to 0.7.0
  * Allow generation of JRuby extensions
  * Allow alteration of the Gem Specification when cross compiling.
    Closes GH-3
  * Detect GNU make independently of distribution based naming.
  * Usage of #dup to duplicate gemspec instead of YAML dumping.
  * No longer support Ruby older than 1.8.6
  * No longer support RubyGems older than 1.3.5
  * Force definition of binary directory and executables.
    Closes GH-11
  * Workaround path with spaces issues using relative paths. Closes
    GH-6
  * Removed gemspec, GitHub gems no more 

-------------------------------------------------------------------
Sat Aug 15 15:59:43 UTC 2009 - dmacvicar@novell.com

- initial package for 0.6.0 

openSUSE Build Service is sponsored by