ruby-vl.spec 83 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082
  1. %global major_version 2
  2. %global minor_version 1
  3. %global teeny_version 5
  4. #global patch_level 95
  5. %global major_minor_version %{major_version}.%{minor_version}
  6. %global ruby_version %{major_minor_version}.%{teeny_version}
  7. %global ruby_version_patch_level %{major_minor_version}.%{teeny_version}
  8. %global ruby_release %{major_minor_version}.0
  9. %global ruby_abi %{major_minor_version}.0
  10. %global ruby_archive %{name}-%{ruby_version}
  11. %global ruby_libdir %{_datadir}/%{name}
  12. %global ruby_libarchdir %{_libdir}/%{name}
  13. # This is the local lib/arch and should not be used for packaging.
  14. %global ruby_sitedir site_ruby
  15. %global ruby_sitelibdir %{_prefix}/local/share/ruby/%{ruby_sitedir}
  16. %global ruby_sitearchdir %{_prefix}/local/%{_lib}/ruby/%{ruby_sitedir}
  17. # This is the general location for libs/archs compatible with all
  18. # or most of the Ruby versions
  19. %global ruby_vendordir vendor_ruby
  20. %global ruby_vendorlibdir %{_prefix}/share/ruby/%{ruby_vendordir}
  21. %global ruby_vendorarchdir %{_libdir}/ruby/%{ruby_vendordir}
  22. %global rubygems_version 2.2.2
  23. # The RubyGems library has to stay out of Ruby directory tree, since the
  24. # RubyGems should be share by all Ruby implementations.
  25. %global rubygems_dir %{_datadir}/rubygems
  26. # Specify custom RubyGems root.
  27. %global gem_dir %{_datadir}/gems
  28. %global gem_extdir %{_libdir}/gems
  29. %global gem_extdirs %{_exec_prefix}/lib{,64}/gems
  30. # TODO: The IRB has strange versioning. Keep the Ruby's versioning ATM.
  31. # http://redmine.ruby-lang.org/issues/5313
  32. %global irb_version %{ruby_version}
  33. %global rake_version 10.1.0
  34. %global rdoc_version 4.1.0
  35. %global bigdecimal_version 1.2.4
  36. %global io_console_version 0.4.2
  37. %global json_version 1.8.1
  38. %global minitest_version 4.7.5
  39. %global psych_version 2.0.5
  40. # Note:
  41. # As seen on perl srpm, as this (ruby) srpm contains several sub-components,
  42. # we cannot reset the release number to 1 even when the main (ruby) version
  43. # is updated - because it may be that the versions of sub-components don't
  44. # change.
  45. # rubyのmainバージョンが更新されても1には戻さずに必ず+1してください。
  46. %global ruby_rel 9
  47. %bcond_without emacsen
  48. %define rbmode ruby-mode
  49. %define rbmode_el ruby-mode
  50. %global _normalized_cpu %(echo %{_target_cpu} | sed 's/^ppc/powerpc/;s/i.86/i686/;s/sparcv./sparc/')
  51. Summary: An interpreter of object-oriented scripting language
  52. Summary(ja): オブジェクト指向言語 Ruby インタプリタ
  53. Name: ruby
  54. Version: %{ruby_version}
  55. Release: %{ruby_rel}%{?_dist_release}
  56. Group: Development/Languages
  57. # Public Domain for example for: include/ruby/st.h, strftime.c, ...
  58. License: (Ruby or BSD) and Public Domain
  59. URL: http://ruby-lang.org/
  60. Source0: ftp://ftp.ruby-lang.org/pub/%{name}/%{major_minor_version}/%{ruby_archive}.tar.xz
  61. Source1: operating_system.rb
  62. Source3: abrt_prelude.rb
  63. Source6: %{rbmode_el}-install.sh
  64. Source7: %{rbmode_el}-remove.sh
  65. Source8: %{rbmode_el}-init.el
  66. # changelog of fedora package
  67. Source10: Changelog.fedora
  68. ### Patch[0-99] from fedora package
  69. # http://bugs.ruby-lang.org/issues/7807
  70. Patch0: ruby-2.1.0-Prevent-duplicated-paths-when-empty-version-string-i.patch
  71. # Allows to override libruby.so placement. Hopefully we will be able to return
  72. # to plain --with-rubyarchprefix.
  73. # http://bugs.ruby-lang.org/issues/8973
  74. Patch1: ruby-2.1.0-Enable-configuration-of-archlibdir.patch
  75. # Force multiarch directories for i.86 to be always named i386. This solves
  76. # some differencies in build between Fedora and RHEL.
  77. Patch3: ruby-2.1.0-always-use-i386.patch
  78. # Fixes random WEBRick test failures.
  79. # https://bugs.ruby-lang.org/issues/6573.
  80. Patch5: ruby-1.9.3.p195-fix-webrick-tests.patch
  81. # Allows to install RubyGems into custom directory, outside of Ruby's tree.
  82. # http://redmine.ruby-lang.org/issues/5617
  83. Patch8: ruby-2.1.0-custom-rubygems-location.patch
  84. # Make mkmf verbose by default
  85. Patch12: ruby-1.9.3-mkmf-verbose.patch
  86. # Adds support for '--with-prelude' configuration option. This allows to built
  87. # in support for ABRT.
  88. # http://bugs.ruby-lang.org/issues/8566
  89. Patch17: ruby-2.1.2-Allow-to-specify-additional-preludes-by-configuratio.patch
  90. Requires: %{name}-libs = %{version}-%{release}
  91. Requires: ruby(rubygems) >= %{rubygems_version}
  92. # Make the bigdecimal gem a runtime dependency of Ruby to avoid problems
  93. # with user-installed gems, that don't require it in gemspec/Gemfile
  94. # See https://bugzilla.redhat.com/show_bug.cgi?id=829209
  95. # and http://bugs.ruby-lang.org/issues/6123
  96. Requires: rubygem(bigdecimal) >= %{bigdecimal_version}
  97. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  98. BuildRequires: autoconf
  99. BuildRequires: gdbm-devel
  100. BuildRequires: ncurses-devel
  101. BuildRequires: libdb-devel
  102. BuildRequires: libffi-devel
  103. BuildRequires: openssl-devel
  104. BuildRequires: libyaml-devel
  105. BuildRequires: readline-devel
  106. BuildRequires: tcl tk
  107. BuildRequires: libX11-devel
  108. BuildRequires: zlib-devel
  109. # Needed to pass test_set_program_name(TestRubyOptions)
  110. BuildRequires: procps
  111. Distribution: Vine Linux
  112. Vendor: Project Vine
  113. Packager: daisuke
  114. %description
  115. Ruby is the interpreted scripting language for quick and easy
  116. object-oriented programming. It has many features to process text
  117. files and to do system management tasks (as in Perl). It is simple,
  118. straight-forward, and extensible.
  119. %description -l ja
  120. Rubyはシンプルかつ強力なオブジェクト指向スクリプト言語です.Rubyは最初
  121. から純粋なオブジェクト指向言語として設計されていますから,オブジェクト
  122. 指向プログラミングを手軽に行う事が出来ます.もちろん通常の手続き型のプ
  123. ログラミングも可能です.
  124. Rubyはテキスト処理関係の能力などに優れ,Perlと同じくらい強力です.さら
  125. にシンプルな文法と,例外処理やイテレータなどの機構によって,より分かり
  126. やすいプログラミングが出来ます.
  127. %package devel
  128. Summary: A Ruby development environment
  129. Summary(ja): Ruby 開発環境
  130. Group: Development/Languages
  131. # Requires: %{name}-libs = %{version}-%{release}
  132. Requires: %{name} = %{version}-%{release}
  133. %description devel
  134. Header files and libraries for building an extension library for the
  135. Ruby or an application embedding Ruby.
  136. %description devel -l ja
  137. Rubyのための拡張ライブラリやRubyを組み込んだアプリケーションを作るため
  138. に必要となるへッダファイルやライブラリです.
  139. %package libs
  140. Summary: Libraries necessary to run Ruby
  141. Group: Development/Libraries
  142. License: Ruby or BSD
  143. Provides: ruby(abi) = %{ruby_release}
  144. Provides: ruby(release) = %{ruby_release}
  145. Provides: libruby = %{version}-%{release}
  146. Obsoletes: libruby < 1.9
  147. Obsoletes: drb erb
  148. Obsoletes: ruby-csv ruby-optparse ruby-rexml ruby-strscan rubyunit racc-runtime
  149. Obsoletes: ruby-openssl < 1.9
  150. %description libs
  151. This package includes the libruby, necessary to run Ruby.
  152. %description libs -l ja
  153. このパッケージには Ruby を利用するために必要となるライブラリが含まれ
  154. ています.
  155. %package rubygems
  156. Summary: Packaging system for Ruby application or library
  157. Summary(ja): Ruby アプリケーションやライブラリのためのパッケージシステム
  158. Version: %{rubygems_version}
  159. Group: Development/Libraries
  160. License: Ruby or MIT
  161. Requires: ruby(release) = %{ruby_release}
  162. Requires: rubygem(rdoc) >= %{rdoc_version}
  163. Requires: rubygem(io-console) >= %{io_console_version}
  164. Requires: rubygem(psych) >= %{psych_version}
  165. Requires: ca-certificates
  166. Provides: gem = %{version}-%{release}
  167. Provides: ruby(rubygems) = %{version}-%{release}
  168. Obsoletes: rubygems <= 1.8.24-1vl7
  169. BuildArch: noarch
  170. %description rubygems
  171. RubyGems is the Ruby standard for publishing and managing third party
  172. libraries.
  173. %description rubygems -l ja
  174. RubyGems は Ruby 標準のサードパーティ製ライブラリのパッケージ管理
  175. システムです。
  176. %package rubygems-devel
  177. Summary: Macros and development tools for packaging RubyGems
  178. Version: %{rubygems_version}
  179. Group: Development/Libraries
  180. License: Ruby or MIT
  181. Requires: ruby(rubygems) = %{version}-%{release}
  182. BuildArch: noarch
  183. %description rubygems-devel
  184. Macros and development tools for packaging RubyGems.
  185. %package -n rubygem-rake
  186. Summary: Ruby based make-like utility
  187. Summary(ja): Ruby ベースの make のようなユーティリティ
  188. Version: %{rake_version}
  189. Group: Development/Libraries
  190. License: Ruby or MIT
  191. Requires: ruby(release) = %{ruby_release}
  192. Requires: ruby(rubygems) >= %{rubygems_version}
  193. Provides: rake = %{version}-%{release}
  194. Provides: rubygem(rake) = %{version}-%{release}
  195. BuildArch: noarch
  196. %description -n rubygem-rake
  197. Rake is a Make-like program implemented in Ruby. Tasks and dependencies are
  198. specified in standard Ruby syntax.
  199. %description -n rubygem-rake -l ja
  200. Rake は Ruby ベースの make のようなユーティリティです。
  201. %package irb
  202. Summary: The Interactive Ruby
  203. Summary(ja): インタラクティブ Ruby
  204. Version: %{irb_version}
  205. Group: Development/Libraries
  206. Requires: %{name}-libs = %{ruby_version}
  207. Obsoletes: irb < 1.9
  208. Provides: irb = %{version}-%{release}
  209. Provides: ruby(irb) = %{version}-%{release}
  210. BuildArch: noarch
  211. %description irb
  212. The irb is acronym for Interactive Ruby. It evaluates ruby expression
  213. from the terminal.
  214. %description irb -l ja
  215. irb は Interactive RuBy の略で、対話的にRubyの式を入力し、
  216. 評価させることが可能です。
  217. %package -n rubygem-rdoc
  218. Summary: A tool to generate HTML and command-line documentation for Ruby projects
  219. Summary(ja): Rubyのソースコードからドキュメントを生成するツール
  220. Version: %{rdoc_version}
  221. Group: Development/Libraries
  222. License: GPLv2 and Ruby and MIT
  223. Requires: ruby(release) = %{ruby_release}
  224. Requires: ruby(rubygems) >= %{rubygems_version}
  225. Requires: ruby(irb) = %{irb_version}
  226. Requires: rubygem(json) = %{json_version}
  227. Provides: rdoc = %{version}-%{release}
  228. Provides: ri = %{version}-%{release}
  229. Provides: rubygem(rdoc) = %{version}-%{release}
  230. Obsoletes: rdoc < 1.9
  231. Obsoletes: ruby-rdoc < %{version}
  232. Obsoletes: ruby-ri < %{version}
  233. BuildArch: noarch
  234. %description -n rubygem-rdoc
  235. RDoc produces HTML and command-line documentation for Ruby projects. RDoc
  236. includes the 'rdoc' and 'ri' tools for generating and displaying online
  237. documentation.
  238. %description -n rubygem-rdoc -l ja
  239. RDocはRubyのソースコードからドキュメントを生成するツールです.
  240. %package doc
  241. Summary: Documentation for %{name}
  242. Summary(ja): %{name} のドキュメント
  243. Group: Applications/Documentation
  244. Requires: %{_bindir}/ri
  245. # TODO: It seems that ri documentation differs from platform to platform due to
  246. # some encoding bugs, therefore the documentation should be split out of this gem
  247. # or kept platform specific.
  248. # https://github.com/rdoc/rdoc/issues/71
  249. # BuildArch: noarch
  250. %description doc
  251. This package contains documentation for %{name}.
  252. %package -n rubygem-bigdecimal
  253. Summary: BigDecimal provides arbitrary-precision floating point decimal arithmetic
  254. Version: %{bigdecimal_version}
  255. Group: Development/Libraries
  256. License: GPL+ or Artistic
  257. Requires: ruby(release) = %{ruby_release}
  258. Requires: ruby(rubygems) >= %{rubygems_version}
  259. Provides: rubygem(bigdecimal) = %{version}-%{release}
  260. %description -n rubygem-bigdecimal
  261. Ruby provides built-in support for arbitrary precision integer arithmetic.
  262. For example:
  263. 42**13 -> 1265437718438866624512
  264. BigDecimal provides similar support for very large or very accurate floating
  265. point numbers. Decimal arithmetic is also useful for general calculation,
  266. because it provides the correct answers people expect–whereas normal binary
  267. floating point arithmetic often introduces subtle errors because of the
  268. conversion between base 10 and base 2.
  269. %package -n rubygem-io-console
  270. Summary: IO/Console is a simple console utilizing library
  271. Version: %{io_console_version}
  272. Group: Development/Libraries
  273. Requires: ruby(release) = %{ruby_release}
  274. Requires: ruby(rubygems) >= %{rubygems_version}
  275. Provides: rubygem(io-console) = %{version}-%{release}
  276. %description -n rubygem-io-console
  277. IO/Console provides very simple and portable access to console. It doesn't
  278. provide higher layer features, such like curses and readline.
  279. %package -n rubygem-json
  280. Summary: This is a JSON implementation as a Ruby extension in C
  281. Version: %{json_version}
  282. Group: Development/Libraries
  283. License: Ruby or GPLv2
  284. Requires: ruby(release) = %{ruby_release}
  285. Requires: ruby(rubygems) >= %{rubygems_version}
  286. Provides: rubygem(json) = %{version}-%{release}
  287. %description -n rubygem-json
  288. This is a implementation of the JSON specification according to RFC 4627.
  289. You can think of it as a low fat alternative to XML, if you want to store
  290. data to disk or transmit it over a network rather than use a verbose
  291. markup language.
  292. %package -n rubygem-minitest
  293. Summary: Minitest provides a complete suite of testing facilities.
  294. Version: %{minitest_version}
  295. Group: Development/Libraries
  296. License: MIT
  297. Requires: ruby(release) = %{ruby_release}
  298. Requires: ruby(rubygems) >= %{rubygems_version}
  299. Provides: rubygem(minitest) = %{version}-%{release}
  300. BuildArch: noarch
  301. %description -n rubygem-minitest
  302. minitest/unit is a small and incredibly fast unit testing framework.
  303. minitest/spec is a functionally complete spec engine.
  304. minitest/benchmark is an awesome way to assert the performance of your
  305. algorithms in a repeatable manner.
  306. minitest/mock by Steven Baker, is a beautifully tiny mock object
  307. framework.
  308. minitest/pride shows pride in testing and adds coloring to your test
  309. output.
  310. %package -n rubygem-psych
  311. Summary: A libyaml wrapper for Ruby
  312. Version: %{psych_version}
  313. Group: Development/Libraries
  314. License: MIT
  315. Requires: ruby(release)
  316. Requires: ruby(rubygems) >= %{rubygems_version}
  317. Provides: rubygem(psych) = %{version}-%{release}
  318. %description -n rubygem-psych
  319. Psych is a YAML parser and emitter. Psych leverages
  320. libyaml[http://pyyaml.org/wiki/LibYAML] for its YAML parsing and
  321. emitting
  322. capabilities. In addition to wrapping libyaml, Psych also knows how to
  323. serialize and de-serialize most Ruby objects to and from the YAML
  324. format.
  325. %package tcltk
  326. Summary: Tcl/Tk interface for scripting language Ruby
  327. Summary(ja): RubyのTcl/Tkインタフェースライブラリ
  328. Group: Development/Languages
  329. Requires: %{name}-libs = %{ruby_version}
  330. Provides: ruby(tcltk) = %{ruby_version}-%{release}
  331. %description tcltk
  332. Tcl/Tk interface for the object-oriented scripting language Ruby.
  333. %description -n ruby-tcltk -l ja
  334. RubyにTcl/Tkライブラリへのインタフェースを提供する拡張ライブラリです.
  335. %if %{with emacsen}
  336. %package mode
  337. Summary: Emacs-lisp ruby-mode for the scripting language Ruby
  338. Summary(ja): Emacs上でRubyスクリプトを書くためのモード
  339. Group: Applications/Editors/Emacs
  340. Requires(post): emacsen, emacsen-common >= 0.1
  341. Requires(preun): emacsen, emacsen-common >= 0.1
  342. BuildArch: noarch
  343. %description -n %{rbmode_el}
  344. Emacs-lisp ruby-mode for the object-oriented scripting language Ruby.
  345. %description -n %{rbmode_el} -l ja
  346. Emacs上でRubyスクリプトを書くのに便利なモードです.
  347. %endif
  348. %prep
  349. %setup -q -n %{ruby_archive}
  350. %patch0 -p1
  351. %patch1 -p1
  352. %patch3 -p1
  353. %patch5 -p1
  354. %patch8 -p1
  355. %patch12 -p1
  356. %patch17 -p1
  357. cp -a %{SOURCE3} .
  358. %build
  359. autoconf
  360. %configure \
  361. --with-rubylibprefix='%{ruby_libdir}' \
  362. --with-rubyarchprefix='%{ruby_libarchdir}' \
  363. --with-archdir='%{ruby_libarchdir}' \
  364. --with-archlibdir='%{_libdir}' \
  365. --with-sitedir='%{ruby_sitelibdir}' \
  366. --with-sitearchdir='%{ruby_sitearchdir}/%{ruby_release}' \
  367. --with-vendordir='%{ruby_vendorlibdir}' \
  368. --with-vendorarchdir='%{ruby_vendorarchdir}/%{ruby_release}' \
  369. --with-rubyhdrdir='%{_includedir}' \
  370. --with-rubyarchhdrdir='%{_includedir}' \
  371. --with-sitearchhdrdir='%{_includedir}/$(arch)' \
  372. --with-vendorarchhdrdir='%{_includedir}/$(arch)' \
  373. --with-rubygemsdir='%{rubygems_dir}' \
  374. --with-ruby-pc='%{name}.pc' \
  375. --disable-rpath \
  376. --enable-shared \
  377. --enable-multiarch \
  378. --with-prelude=./abrt_prelude.rb
  379. # Q= makes the build output more verbose and allows to check compiler options.
  380. make %{?_smp_mflags} COPY="cp -p" Q=
  381. %install
  382. rm -rf %{buildroot}
  383. make install DESTDIR=%{buildroot}
  384. # Version is empty if --with-ruby-version is specified.
  385. # http://bugs.ruby-lang.org/issues/7807
  386. sed -i 's/Version: \${ruby_version}/Version: %{ruby_version}/' %{buildroot}%{_libdir}/pkgconfig/%{name}.pc
  387. # install ruby-mode
  388. %if %{with emacsen}
  389. mkdir -p $RPM_BUILD_ROOT/%{_datadir}/emacs/site-lisp/%{rbmode}
  390. mkdir -p $RPM_BUILD_ROOT/%{_prefix}/lib/emacsen-common/packages/install
  391. mkdir -p $RPM_BUILD_ROOT/%{_prefix}/lib/emacsen-common/packages/remove
  392. cp misc/*.el %{SOURCE8} $RPM_BUILD_ROOT/%{_datadir}/emacs/site-lisp/%{rbmode}
  393. %_installemacsenscript %{rbmode} %{SOURCE6}
  394. %_removeemacsenscript %{rbmode} %{SOURCE7}
  395. %endif
  396. # Dump the macros into macro.ruby to use them to build other Ruby libraries.
  397. mkdir -p %{buildroot}%{_sysconfdir}/rpm
  398. cat >> %{buildroot}%{_sysconfdir}/rpm/macros.ruby << \EOF
  399. %%ruby_libdir %%{_datadir}/%{name}
  400. %%ruby_libarchdir %%{_libdir}/%{name}
  401. # This is the local lib/arch and should not be used for packaging.
  402. %%ruby_sitedir site_ruby/%{ruby_release}
  403. %%ruby_sitelibdir %%{_prefix}/local/share/%{name}/%%{ruby_sitedir}
  404. %%ruby_sitearchdir %%{_prefix}/local/%%{_lib}/%{name}/%%{ruby_sitedir}
  405. # This is the general location for libs/archs compatible with all
  406. # or most of the Ruby versions
  407. %%ruby_vendordir vendor_ruby/%{ruby_release}
  408. %%ruby_vendorlibdir %%{_datadir}/%{name}/%%{ruby_vendordir}
  409. %%ruby_vendorarchdir %%{_libdir}/%{name}/%%{ruby_vendordir}
  410. EOF
  411. cat >> %{buildroot}%{_sysconfdir}/rpm/macros.rubygems << \EOF
  412. # The RubyGems root folder.
  413. %%gem_dir %{gem_dir}
  414. %%gem_archdir %{_libdir}/gems
  415. # Common gem locations and files.
  416. %%gem_instdir %%{gem_dir}/%{ruby_release}/gems/%%{gem_name}-%%{version}
  417. %%gem_extdir %%{_libdir}/gems/%{ruby_release}/exts/%%{gem_name}-%%{version}
  418. %%gem_libdir %%{gem_instdir}/lib
  419. %%gem_cache %%{gem_dir}/%{ruby_release}/cache/%%{gem_name}-%%{version}.gem
  420. %%gem_spec %%{gem_dir}/%{ruby_release}/specifications/%%{gem_name}-%%{version}.gemspec
  421. %%gem_docdir %%{gem_dir}/%{ruby_release}/doc/%%{gem_name}-%%{version}
  422. EOF
  423. # Install custom operating_system.rb.
  424. mkdir -p %{buildroot}%{rubygems_dir}/rubygems/defaults
  425. cp %{SOURCE1} %{buildroot}%{rubygems_dir}/rubygems/defaults
  426. # Move gems root into common direcotry, out of Ruby directory structure.
  427. mv %{buildroot}%{ruby_libdir}/gems %{buildroot}%{gem_dir}
  428. # Create folders for gem binary extensions.
  429. mkdir -p %{buildroot}%{gem_extdirs}/exts
  430. # Move bundled rubygems to %%gem_dir and %%gem_extdir
  431. # make symlinks for io-console and bigdecimal,
  432. # which are considered to be part of stdlib by other Gems
  433. ## rake
  434. mkdir -p %{buildroot}%{gem_dir}/%{ruby_release}/gems/rake-%{rake_version}/lib
  435. mv %{buildroot}%{ruby_libdir}/%{ruby_release}/rake* %{buildroot}%{gem_dir}/%{ruby_release}/gems/rake-%{rake_version}/lib
  436. mv %{buildroot}%{gem_dir}/%{ruby_release}/specifications/default/rake-%{rake_version}.gemspec %{buildroot}%{gem_dir}/%{ruby_release}/specifications
  437. ## rdoc
  438. mkdir -p %{buildroot}%{gem_dir}/%{ruby_release}/gems/rdoc-%{rdoc_version}/lib
  439. mv %{buildroot}%{ruby_libdir}/%{ruby_release}/rdoc* %{buildroot}%{gem_dir}/%{ruby_release}/gems/rdoc-%{rdoc_version}/lib
  440. mv %{buildroot}%{gem_dir}/%{ruby_release}/specifications/default/rdoc-%{rdoc_version}.gemspec %{buildroot}%{gem_dir}/%{ruby_release}/specifications
  441. ## bigdecimal
  442. # gem_dir
  443. mkdir -p %{buildroot}%{gem_dir}/%{ruby_release}/gems/bigdecimal-%{bigdecimal_version}/lib
  444. mv %{buildroot}%{ruby_libdir}/%{ruby_release}/bigdecimal %{buildroot}%{gem_dir}/%{ruby_release}/gems/bigdecimal-%{bigdecimal_version}/lib
  445. ln -s %{gem_dir}/%{ruby_release}/gems/bigdecimal-%{bigdecimal_version}/lib/bigdecimal %{buildroot}%{ruby_libdir}/%{ruby_release}/bigdecimal
  446. # gem_extdir
  447. mkdir -p %{buildroot}%{gem_extdir}/%{ruby_release}/exts/bigdecimal-%{bigdecimal_version}/lib
  448. mv %{buildroot}%{ruby_libarchdir}/%{ruby_release}/bigdecimal.so %{buildroot}%{gem_extdir}/%{ruby_release}/exts/bigdecimal-%{bigdecimal_version}/lib
  449. ln -s %{gem_extdir}/%{ruby_release}/exts/bigdecimal-%{bigdecimal_version}/lib/bigdecimal.so %{buildroot}%{ruby_libarchdir}/%{ruby_release}/bigdecimal.so
  450. mv %{buildroot}%{gem_dir}/%{ruby_release}/specifications/default/bigdecimal-%{bigdecimal_version}.gemspec %{buildroot}%{gem_dir}/%{ruby_release}/specifications
  451. ## io_console
  452. # gem_dir
  453. mkdir -p %{buildroot}%{gem_dir}/%{ruby_release}/gems/io-console-%{io_console_version}/lib
  454. mv %{buildroot}%{ruby_libdir}/%{ruby_release}/io %{buildroot}%{gem_dir}/%{ruby_release}/gems/io-console-%{io_console_version}/lib
  455. ln -s %{gem_dir}/%{ruby_release}/gems/io-console-%{io_console_version}/lib/io %{buildroot}%{ruby_libdir}/%{ruby_release}/io
  456. # gem_extdir
  457. mkdir -p %{buildroot}%{gem_extdir}/%{ruby_release}/exts/io-console-%{io_console_version}/lib/io
  458. mv %{buildroot}%{ruby_libarchdir}/%{ruby_release}/io/console.so %{buildroot}%{gem_extdir}/%{ruby_release}/exts/io-console-%{io_console_version}/lib/io
  459. ln -s %{gem_extdir}/%{ruby_release}/exts/io-console-%{io_console_version}/lib/io/console.so %{buildroot}%{ruby_libarchdir}/%{ruby_release}/io/console.so
  460. mv %{buildroot}%{gem_dir}/%{ruby_release}/specifications/default/io-console-%{io_console_version}.gemspec %{buildroot}%{gem_dir}/%{ruby_release}/specifications
  461. ## json
  462. # gem_dir
  463. mkdir -p %{buildroot}%{gem_dir}/%{ruby_release}/gems/json-%{json_version}/lib
  464. mv %{buildroot}%{ruby_libdir}/%{ruby_release}/json* %{buildroot}%{gem_dir}/%{ruby_release}/gems/json-%{json_version}/lib
  465. ln -s %{gem_dir}/%{ruby_release}/gems/json-%{json_version}/lib/json %{buildroot}%{ruby_libdir}/%{ruby_release}/json
  466. # gem_extdir
  467. mkdir -p %{buildroot}%{gem_extdir}/%{ruby_release}/exts/json-%{json_version}/lib
  468. mv %{buildroot}%{ruby_libarchdir}/%{ruby_release}/json/ %{buildroot}%{gem_extdir}/%{ruby_release}/exts/json-%{json_version}/lib/
  469. ln -s %{gem_extdir}/%{ruby_release}/exts/json-%{json_version}/lib/json %{buildroot}%{ruby_libarchdir}/%{ruby_release}/json
  470. mv %{buildroot}%{gem_dir}/%{ruby_release}/specifications/default/json-%{json_version}.gemspec %{buildroot}%{gem_dir}/%{ruby_release}/specifications
  471. ## minitest
  472. mkdir -p %{buildroot}%{gem_dir}/%{ruby_release}/gems/minitest-%{minitest_version}/lib
  473. mv %{buildroot}%{ruby_libdir}/%{ruby_release}/minitest %{buildroot}%{gem_dir}/%{ruby_release}/gems/minitest-%{minitest_version}/lib
  474. mv %{buildroot}%{gem_dir}/%{ruby_release}/specifications/default/minitest-%{minitest_version}.gemspec %{buildroot}%{gem_dir}/%{ruby_release}/specifications
  475. ln -s %{gem_dir}/%{ruby_release}/gems/minitest-%{minitest_version}/lib/minitest %{buildroot}%{ruby_libdir}/%{ruby_release}/minitest
  476. ## psych
  477. mkdir -p %{buildroot}%{gem_dir}/%{ruby_release}/gems/psych-%{psych_version}/lib
  478. mkdir -p %{buildroot}%{gem_extdir}/%{ruby_release}/exts/psych-%{psych_version}/lib
  479. mv %{buildroot}%{ruby_libdir}/%{ruby_release}/psych* %{buildroot}%{gem_dir}/%{ruby_release}/gems/psych-%{psych_version}/lib
  480. mv %{buildroot}%{ruby_libarchdir}/%{ruby_release}/psych.so %{buildroot}%{gem_extdir}/%{ruby_release}/exts/psych-%{psych_version}/lib/
  481. mv %{buildroot}%{gem_dir}/%{ruby_release}/specifications/default/psych-%{psych_version}.gemspec %{buildroot}%{gem_dir}/%{ruby_release}/specifications
  482. ln -s %{gem_dir}/%{ruby_release}/gems/psych-%{psych_version}/lib/psych %{buildroot}%{ruby_libdir}/%{ruby_release}/psych
  483. ln -s %{gem_extdir}/%{ruby_release}/exts/psych-%{psych_version}/lib/psych.so %{buildroot}%{ruby_libarchdir}/%{ruby_release}/psych.so
  484. ln -s %{gem_dir}/%{ruby_release}/gems/psych-%{psych_version}/lib/psych.rb %{buildroot}%{ruby_libdir}/%{ruby_release}/psych.rb
  485. # Adjust the gemspec files so that the gems will load properly
  486. sed -i '/^end$/ i\
  487. s.require_paths = ["lib"]' %{buildroot}%{gem_dir}/%{ruby_release}/specifications/rake-%{rake_version}.gemspec
  488. sed -i '/^end$/ i\
  489. s.require_paths = ["lib"]' %{buildroot}%{gem_dir}/%{ruby_release}/specifications/rdoc-%{rdoc_version}.gemspec
  490. sed -i '/^end$/ i\
  491. s.require_paths = ["lib"]\
  492. s.extensions = ["bigdecimal.so"]' %{buildroot}%{gem_dir}/%{ruby_release}/specifications/bigdecimal-%{bigdecimal_version}.gemspec
  493. sed -i '/^end$/ i\
  494. s.require_paths = ["lib"]\
  495. s.extensions = ["io/console.so"]' %{buildroot}%{gem_dir}/%{ruby_release}/specifications/io-console-%{io_console_version}.gemspec
  496. sed -i '/^end$/ i\
  497. s.require_paths = ["lib"]\
  498. s.extensions = ["json/ext/parser.so", "json/ext/generator.so"]' %{buildroot}%{gem_dir}/%{ruby_release}/specifications/json-%{json_version}.gemspec
  499. sed -i '/^end$/ i\
  500. s.require_paths = ["lib"]' %{buildroot}%{gem_dir}/%{ruby_release}/specifications/minitest-%{minitest_version}.gemspec
  501. %check
  502. DISABLE_TESTS=""
  503. # OpenSSL 1.0.1 is breaking the drb test suite.
  504. # https://bugs.ruby-lang.org/issues/6221
  505. DISABLE_TESTS="-x test_drbssl.rb $DISABLE_TESTS"
  506. # Disable tests which requires /dev/pts
  507. DISABLE_TESTS="-x test_curses.rb $DISABLE_TESTS"
  508. %ifarch armv7l armv7hl armv7hnl
  509. # test_call_double(DL::TestDL) fails on ARM HardFP
  510. # http://bugs.ruby-lang.org/issues/6592
  511. DISABLE_TESTS="-x test_dl2.rb $DISABLE_TESTS"
  512. %endif
  513. touch abrt.rb
  514. %ifnarch ppc ppc64
  515. # Allow MD5 in OpenSSL.
  516. # https://bugs.ruby-lang.org/issues/9154
  517. OPENSSL_ENABLE_MD5_VERIFY=1 make check TESTS="-v $DISABLE_TESTS"
  518. %endif
  519. %post libs -p /sbin/ldconfig
  520. %postun libs -p /sbin/ldconfig
  521. %if %{with emacsen}
  522. %post -n %{rbmode_el}
  523. if [ "$1" = 2 ]; then
  524. %_emacsenPackageRemove %{rbmode}
  525. fi
  526. %_addemacsenlist %{rbmode}
  527. %_emacsenPackageInstall %{rbmode}
  528. %preun -n %{rbmode_el}
  529. if [ "$1" = 0 ]; then
  530. %_emacsenPackageRemove %{rbmode}
  531. %_removeemacsenlist %{rbmode}
  532. fi
  533. %endif
  534. %files
  535. %doc COPYING
  536. %lang(ja) %doc COPYING.ja
  537. %doc GPL
  538. %doc LEGAL
  539. %{_bindir}/erb
  540. %{_bindir}/ruby
  541. %{_bindir}/testrb
  542. %{_mandir}/man1/erb*
  543. %{_mandir}/man1/ruby*
  544. # http://fedoraproject.org/wiki/Packaging:Guidelines#Packaging_Static_Libraries
  545. %exclude %{_libdir}/libruby-static.a
  546. %files devel
  547. %doc COPYING*
  548. %doc GPL
  549. %doc LEGAL
  550. %doc README.EXT
  551. %lang(ja) %doc README.EXT.ja
  552. %config(noreplace) %{_sysconfdir}/rpm/macros.ruby
  553. %{_includedir}/*
  554. %{_libdir}/libruby.so
  555. %{_libdir}/pkgconfig/ruby.pc
  556. %files libs
  557. %doc COPYING
  558. %lang(ja) %doc COPYING.ja
  559. %doc GPL
  560. %doc LEGAL
  561. %doc README
  562. %lang(ja) %doc README.ja
  563. %doc NEWS
  564. %doc doc/NEWS-*
  565. %{ruby_sitelibdir}
  566. %{ruby_sitearchdir}
  567. %{ruby_vendorlibdir}
  568. %{ruby_vendorarchdir}
  569. # List all these files explicitly to prevent surprises
  570. # Platform independent libraries.
  571. %dir %{ruby_libdir}
  572. %dir %{ruby_libdir}/%{ruby_release}
  573. %{ruby_libdir}/%{ruby_release}/*.rb
  574. %exclude %{ruby_libdir}/%{ruby_release}/*-tk.rb
  575. %exclude %{ruby_libdir}/%{ruby_release}/irb.rb
  576. %exclude %{ruby_libdir}/%{ruby_release}/tcltk.rb
  577. %exclude %{ruby_libdir}/%{ruby_release}/tk*.rb
  578. %{ruby_libdir}/%{ruby_release}/cgi
  579. %{ruby_libdir}/%{ruby_release}/date
  580. %{ruby_libdir}/%{ruby_release}/digest
  581. %{ruby_libdir}/%{ruby_release}/dl
  582. %{ruby_libdir}/%{ruby_release}/drb
  583. %{ruby_libdir}/%{ruby_release}/fiddle
  584. %exclude %{ruby_libdir}/%{ruby_release}/irb
  585. %{ruby_libdir}/%{ruby_release}/matrix
  586. %{ruby_libdir}/%{ruby_release}/net
  587. %{ruby_libdir}/%{ruby_release}/openssl
  588. %{ruby_libdir}/%{ruby_release}/optparse
  589. %{ruby_libdir}/%{ruby_release}/psych
  590. %{ruby_libdir}/%{ruby_release}/racc
  591. %{ruby_libdir}/%{ruby_release}/rbconfig
  592. %{ruby_libdir}/%{ruby_release}/rexml
  593. %{ruby_libdir}/%{ruby_release}/rinda
  594. %{ruby_libdir}/%{ruby_release}/ripper
  595. %{ruby_libdir}/%{ruby_release}/rss
  596. %{ruby_libdir}/%{ruby_release}/shell
  597. %{ruby_libdir}/%{ruby_release}/test
  598. %{ruby_libdir}/%{ruby_release}/syslog
  599. %exclude %{ruby_libdir}/%{ruby_release}/tk
  600. %exclude %{ruby_libdir}/%{ruby_release}/tkextlib
  601. %{ruby_libdir}/%{ruby_release}/uri
  602. %{ruby_libdir}/%{ruby_release}/webrick
  603. %{ruby_libdir}/%{ruby_release}/xmlrpc
  604. %{ruby_libdir}/%{ruby_release}/yaml
  605. # Platform specific libraries.
  606. %{_libdir}/libruby.so.*
  607. %dir %{ruby_libarchdir}
  608. %dir %{ruby_libarchdir}/%{ruby_release}
  609. %{ruby_libarchdir}/%{ruby_release}/continuation.so
  610. %{ruby_libarchdir}/%{ruby_release}/coverage.so
  611. %{ruby_libarchdir}/%{ruby_release}/date_core.so
  612. %{ruby_libarchdir}/%{ruby_release}/dbm.so
  613. %dir %{ruby_libarchdir}/%{ruby_release}/digest
  614. %{ruby_libarchdir}/%{ruby_release}/digest.so
  615. %{ruby_libarchdir}/%{ruby_release}/digest/bubblebabble.so
  616. %{ruby_libarchdir}/%{ruby_release}/digest/md5.so
  617. %{ruby_libarchdir}/%{ruby_release}/digest/rmd160.so
  618. %{ruby_libarchdir}/%{ruby_release}/digest/sha1.so
  619. %{ruby_libarchdir}/%{ruby_release}/digest/sha2.so
  620. %dir %{ruby_libarchdir}/%{ruby_release}/dl
  621. %{ruby_libarchdir}/%{ruby_release}/dl.so
  622. %{ruby_libarchdir}/%{ruby_release}/dl/callback.so
  623. %dir %{ruby_libarchdir}/%{ruby_release}/enc
  624. %{ruby_libarchdir}/%{ruby_release}/enc/big5.so
  625. %{ruby_libarchdir}/%{ruby_release}/enc/cp949.so
  626. %{ruby_libarchdir}/%{ruby_release}/enc/emacs_mule.so
  627. %{ruby_libarchdir}/%{ruby_release}/enc/encdb.so
  628. %{ruby_libarchdir}/%{ruby_release}/enc/euc_jp.so
  629. %{ruby_libarchdir}/%{ruby_release}/enc/euc_kr.so
  630. %{ruby_libarchdir}/%{ruby_release}/enc/euc_tw.so
  631. %{ruby_libarchdir}/%{ruby_release}/enc/gb18030.so
  632. %{ruby_libarchdir}/%{ruby_release}/enc/gb2312.so
  633. %{ruby_libarchdir}/%{ruby_release}/enc/gbk.so
  634. %{ruby_libarchdir}/%{ruby_release}/enc/iso_8859_1.so
  635. %{ruby_libarchdir}/%{ruby_release}/enc/iso_8859_10.so
  636. %{ruby_libarchdir}/%{ruby_release}/enc/iso_8859_11.so
  637. %{ruby_libarchdir}/%{ruby_release}/enc/iso_8859_13.so
  638. %{ruby_libarchdir}/%{ruby_release}/enc/iso_8859_14.so
  639. %{ruby_libarchdir}/%{ruby_release}/enc/iso_8859_15.so
  640. %{ruby_libarchdir}/%{ruby_release}/enc/iso_8859_16.so
  641. %{ruby_libarchdir}/%{ruby_release}/enc/iso_8859_2.so
  642. %{ruby_libarchdir}/%{ruby_release}/enc/iso_8859_3.so
  643. %{ruby_libarchdir}/%{ruby_release}/enc/iso_8859_4.so
  644. %{ruby_libarchdir}/%{ruby_release}/enc/iso_8859_5.so
  645. %{ruby_libarchdir}/%{ruby_release}/enc/iso_8859_6.so
  646. %{ruby_libarchdir}/%{ruby_release}/enc/iso_8859_7.so
  647. %{ruby_libarchdir}/%{ruby_release}/enc/iso_8859_8.so
  648. %{ruby_libarchdir}/%{ruby_release}/enc/iso_8859_9.so
  649. %{ruby_libarchdir}/%{ruby_release}/enc/koi8_r.so
  650. %{ruby_libarchdir}/%{ruby_release}/enc/koi8_u.so
  651. %{ruby_libarchdir}/%{ruby_release}/enc/shift_jis.so
  652. %dir %{ruby_libarchdir}/%{ruby_release}/enc/trans
  653. %{ruby_libarchdir}/%{ruby_release}/enc/trans/big5.so
  654. %{ruby_libarchdir}/%{ruby_release}/enc/trans/chinese.so
  655. %{ruby_libarchdir}/%{ruby_release}/enc/trans/emoji.so
  656. %{ruby_libarchdir}/%{ruby_release}/enc/trans/emoji_iso2022_kddi.so
  657. %{ruby_libarchdir}/%{ruby_release}/enc/trans/emoji_sjis_docomo.so
  658. %{ruby_libarchdir}/%{ruby_release}/enc/trans/emoji_sjis_kddi.so
  659. %{ruby_libarchdir}/%{ruby_release}/enc/trans/emoji_sjis_softbank.so
  660. %{ruby_libarchdir}/%{ruby_release}/enc/trans/escape.so
  661. %{ruby_libarchdir}/%{ruby_release}/enc/trans/gb18030.so
  662. %{ruby_libarchdir}/%{ruby_release}/enc/trans/gbk.so
  663. %{ruby_libarchdir}/%{ruby_release}/enc/trans/iso2022.so
  664. %{ruby_libarchdir}/%{ruby_release}/enc/trans/japanese.so
  665. %{ruby_libarchdir}/%{ruby_release}/enc/trans/japanese_euc.so
  666. %{ruby_libarchdir}/%{ruby_release}/enc/trans/japanese_sjis.so
  667. %{ruby_libarchdir}/%{ruby_release}/enc/trans/korean.so
  668. %{ruby_libarchdir}/%{ruby_release}/enc/trans/single_byte.so
  669. %{ruby_libarchdir}/%{ruby_release}/enc/trans/transdb.so
  670. %{ruby_libarchdir}/%{ruby_release}/enc/trans/utf8_mac.so
  671. %{ruby_libarchdir}/%{ruby_release}/enc/trans/utf_16_32.so
  672. %{ruby_libarchdir}/%{ruby_release}/enc/utf_16be.so
  673. %{ruby_libarchdir}/%{ruby_release}/enc/utf_16le.so
  674. %{ruby_libarchdir}/%{ruby_release}/enc/utf_32be.so
  675. %{ruby_libarchdir}/%{ruby_release}/enc/utf_32le.so
  676. %{ruby_libarchdir}/%{ruby_release}/enc/windows_1251.so
  677. %{ruby_libarchdir}/%{ruby_release}/enc/windows_31j.so
  678. %{ruby_libarchdir}/%{ruby_release}/etc.so
  679. %{ruby_libarchdir}/%{ruby_release}/fcntl.so
  680. %{ruby_libarchdir}/%{ruby_release}/fiber.so
  681. %{ruby_libarchdir}/%{ruby_release}/fiddle.so
  682. %{ruby_libarchdir}/%{ruby_release}/gdbm.so
  683. %dir %{ruby_libarchdir}/%{ruby_release}/io
  684. %{ruby_libarchdir}/%{ruby_release}/io/nonblock.so
  685. %{ruby_libarchdir}/%{ruby_release}/io/wait.so
  686. %dir %{ruby_libarchdir}/%{ruby_release}/mathn
  687. %{ruby_libarchdir}/%{ruby_release}/mathn/complex.so
  688. %{ruby_libarchdir}/%{ruby_release}/mathn/rational.so
  689. %{ruby_libarchdir}/%{ruby_release}/nkf.so
  690. %{ruby_libarchdir}/%{ruby_release}/objspace.so
  691. %{ruby_libarchdir}/%{ruby_release}/openssl.so
  692. %{ruby_libarchdir}/%{ruby_release}/pathname.so
  693. %{ruby_libarchdir}/%{ruby_release}/psych.so
  694. %{ruby_libarchdir}/%{ruby_release}/pty.so
  695. %dir %{ruby_libarchdir}/%{ruby_release}/racc
  696. %{ruby_libarchdir}/%{ruby_release}/racc/cparse.so
  697. %{ruby_libarchdir}/%{ruby_release}/rbconfig.rb
  698. %{ruby_libarchdir}/%{ruby_release}/rbconfig/sizeof.so
  699. %{ruby_libarchdir}/%{ruby_release}/readline.so
  700. %{ruby_libarchdir}/%{ruby_release}/ripper.so
  701. %{ruby_libarchdir}/%{ruby_release}/sdbm.so
  702. %{ruby_libarchdir}/%{ruby_release}/socket.so
  703. %{ruby_libarchdir}/%{ruby_release}/stringio.so
  704. %{ruby_libarchdir}/%{ruby_release}/strscan.so
  705. %{ruby_libarchdir}/%{ruby_release}/syslog.so
  706. %exclude %{ruby_libarchdir}/%{ruby_release}/tcltklib.so
  707. %{ruby_libarchdir}/%{ruby_release}/thread.so
  708. %exclude %{ruby_libarchdir}/%{ruby_release}/tkutil.so
  709. %{ruby_libarchdir}/%{ruby_release}/zlib.so
  710. %files rubygems
  711. %{_bindir}/gem
  712. %{rubygems_dir}
  713. %{gem_dir}
  714. %exclude %{gem_dir}/%{ruby_release}/gems/*
  715. %{_exec_prefix}/lib*/gems
  716. %exclude %{_exec_prefix}/lib*/gems/%{ruby_release}/exts/bigdecimal-%{bigdecimal_version}
  717. %exclude %{_exec_prefix}/lib*/gems/%{ruby_release}/exts/io-console-%{io_console_version}
  718. %exclude %{_exec_prefix}/lib*/gems/%{ruby_release}/exts/json-%{json_version}
  719. %exclude %{_exec_prefix}/lib*/gems/%{ruby_release}/exts/psych-%{psych_version}
  720. %exclude %{gem_dir}/%{ruby_release}/gems/rake-%{rake_version}
  721. %exclude %{gem_dir}/%{ruby_release}/gems/rdoc-%{rdoc_version}
  722. %exclude %{gem_dir}/%{ruby_release}/specifications/bigdecimal-%{bigdecimal_version}.gemspec
  723. %exclude %{gem_dir}/%{ruby_release}/specifications/io-console-%{io_console_version}.gemspec
  724. %exclude %{gem_dir}/%{ruby_release}/specifications/json-%{json_version}.gemspec
  725. %exclude %{gem_dir}/%{ruby_release}/specifications/minitest-%{minitest_version}.gemspec
  726. %exclude %{gem_dir}/%{ruby_release}/specifications/rake-%{rake_version}.gemspec
  727. %exclude %{gem_dir}/%{ruby_release}/specifications/rdoc-%{rdoc_version}.gemspec
  728. %exclude %{gem_dir}/%{ruby_release}/specifications/psych-%{psych_version}.gemspec
  729. %files rubygems-devel
  730. %config(noreplace) %{_sysconfdir}/rpm/macros.rubygems
  731. %files -n rubygem-rake
  732. %{_bindir}/rake
  733. %{gem_dir}/%{ruby_release}/gems/rake-%{rake_version}
  734. %{gem_dir}/%{ruby_release}/specifications/rake-%{rake_version}.gemspec
  735. %{_mandir}/man1/rake.1*
  736. %files irb
  737. %{_bindir}/irb
  738. %{ruby_libdir}/%{ruby_release}/irb.rb
  739. %{ruby_libdir}/%{ruby_release}/irb
  740. %{_mandir}/man1/irb.1*
  741. %files -n rubygem-rdoc
  742. %{_bindir}/rdoc
  743. %{_bindir}/ri
  744. %{gem_dir}/%{ruby_release}/gems/rdoc-%{rdoc_version}
  745. %{gem_dir}/%{ruby_release}/specifications/rdoc-%{rdoc_version}.gemspec
  746. %{_mandir}/man1/ri*
  747. %files doc
  748. %doc README
  749. %lang(ja) %doc README.ja
  750. %doc ChangeLog
  751. %doc doc/ChangeLog-*
  752. %{_datadir}/ri
  753. %{_docdir}/ruby
  754. %files -n rubygem-bigdecimal
  755. %{ruby_libdir}/%{ruby_release}/bigdecimal
  756. %{ruby_libarchdir}/%{ruby_release}/bigdecimal.so
  757. %{gem_extdir}/%{ruby_release}/exts/bigdecimal-%{bigdecimal_version}
  758. %{gem_dir}/%{ruby_release}/gems/bigdecimal-%{bigdecimal_version}
  759. %{gem_dir}/%{ruby_release}/specifications/bigdecimal-%{bigdecimal_version}.gemspec
  760. %files -n rubygem-io-console
  761. %{ruby_libdir}/%{ruby_release}/io
  762. %{ruby_libarchdir}/%{ruby_release}/io/console.so
  763. %{gem_extdir}/%{ruby_release}/exts/io-console-%{io_console_version}
  764. %{gem_dir}/%{ruby_release}/gems/io-console-%{io_console_version}
  765. %{gem_dir}/%{ruby_release}/specifications/io-console-%{io_console_version}.gemspec
  766. %files -n rubygem-json
  767. %{ruby_libdir}/%{ruby_release}/json
  768. %{ruby_libarchdir}/%{ruby_release}/json
  769. %{gem_extdir}/%{ruby_release}/exts/json-%{json_version}
  770. %{gem_dir}/%{ruby_release}/gems/json-%{json_version}
  771. %{gem_dir}/%{ruby_release}/specifications/json-%{json_version}.gemspec
  772. %{ruby_libarchdir}/%{ruby_release}/json
  773. %files -n rubygem-minitest
  774. %{ruby_libdir}/%{ruby_release}/minitest
  775. %{gem_dir}/%{ruby_release}/gems/minitest-%{minitest_version}
  776. %{gem_dir}/%{ruby_release}/specifications/minitest-%{minitest_version}.gemspec
  777. %files -n rubygem-psych
  778. %{ruby_libdir}/%{ruby_release}/psych
  779. %{ruby_libdir}/%{ruby_release}/psych.rb
  780. %{ruby_libarchdir}/%{ruby_release}/psych.so
  781. %{gem_extdir}/%{ruby_release}/exts/psych-%{psych_version}
  782. %{gem_dir}/%{ruby_release}/gems/psych-%{psych_version}
  783. %{gem_dir}/%{ruby_release}/specifications/psych-%{psych_version}.gemspec
  784. %files tcltk
  785. %{ruby_libdir}/%{ruby_release}/*-tk.rb
  786. %{ruby_libdir}/%{ruby_release}/tcltk.rb
  787. %{ruby_libdir}/%{ruby_release}/tk*.rb
  788. %{ruby_libarchdir}/%{ruby_release}/tcltklib.so
  789. %{ruby_libarchdir}/%{ruby_release}/tkutil.so
  790. %{ruby_libdir}/%{ruby_release}/tk
  791. %{ruby_libdir}/%{ruby_release}/tkextlib
  792. %if %{with emacsen}
  793. %files mode
  794. %defattr(-, root, root)
  795. %doc misc/README
  796. %{_datadir}/emacs/site-lisp/%{rbmode}
  797. %{_prefix}/lib/emacsen-common/packages/install/*
  798. %{_prefix}/lib/emacsen-common/packages/remove/*
  799. %endif
  800. %changelog
  801. * Wed Nov 19 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 2.1.5-9
  802. - update to 2.1.5
  803. * Sat Jul 12 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 2.1.2-8
  804. - add R: rubygem(json) to rubygem-rdoc
  805. - fix json ext module path
  806. * Sun Jul 06 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.1.2-7
  807. - rebuild with libffi-3.0.13
  808. * Fri Jun 27 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 2.1.2-6
  809. - use ruby abi version for load_path
  810. - remove --with-ruby-version=''
  811. - update operating_system.rb
  812. * Wed Jun 25 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 2.1.2-5
  813. - update to 2.1.2
  814. * Wed May 21 2014 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.481-4
  815. - update to 2.0.0-p452
  816. * Thu Apr 10 2014 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.451-3
  817. - update to 2.0.0-p451
  818. * Sat Dec 07 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.0.0.353-2
  819. - fix macros.ruby
  820. * Tue Dec 03 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.353-1
  821. - update to 2.0.0-p353
  822. - change ruby(abi) -> ruby(release)
  823. * Mon Feb 25 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 1.9.3.392-10
  824. - update to 1.9.3-p392
  825. * Tue Feb 12 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 1.9.3.385-9
  826. - update to 1.9.3-p385
  827. * Mon Jan 21 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 1.9.3.374-7
  828. - update to 1.9.3-p374
  829. * Mon Jan 7 2013 IWAI, Masaharu <iwai@alib.jp> 1.9.3.362-6
  830. - build with Tcl/Tk 8.5.7-1
  831. * Wed Dec 26 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 1.9.3.362-5
  832. - update to 1.9.3-p362
  833. * Thu Nov 29 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 1.9.3.327-4
  834. - remove ruby_abi from gem_dir
  835. * Sun Nov 11 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 1.9.3.327-3
  836. - update to 1.9.3-p327
  837. - add patch10 to skip network related test
  838. - add patch11 to skip test_str_crypt (upstream bug)
  839. * Fri Oct 26 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 1.9.3.286-2
  840. - fix gem_extdir to include ruby_abi number
  841. - fix macros.ruby to include ruby_abi number
  842. - include site_ruby dir
  843. * Tue Oct 23 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 1.9.3.286-1
  844. - update to 1.9.3-p286
  845. - rebase with fedora package
  846. - change filesystem structure compatible with Vine ruby package
  847. - rename rubygems to ruby-rubygems
  848. - modify ruby filesystem structure
  849. - /usr{,/local}/share/ruby for arch-independent files
  850. - /usr{,/local}/lib{,64}/ruby for arch-dependent files
  851. - move gems to /usr/share/gems, /usr/lib{,64}/gems
  852. - merge rubygems, rake to ruby sub-package
  853. - add subpackages for ruby standard gems
  854. * Sat Jun 30 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 3.1-1
  855. - update to 1.8.7-p370
  856. * Sun May 06 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 1.8.7.358-1
  857. - update to 1.8.7-p358
  858. - add patch1100 to build with glibc-2.14
  859. * Mon Feb 28 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 1.8.7.334-1
  860. - update to 1.8.7-p334
  861. * Tue Jan 18 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 1.8.7.330-1
  862. - update to 1.8.7-p330
  863. - change License tag (Ruby or GPLv2)
  864. * Tue Feb 02 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 1.8.7.249-1
  865. - update to 1.8.7-p249
  866. - rebuild with db4-4.8.0
  867. - drop unneccesary patches: 809, 1001, 1002, 1003, 1004
  868. * Tue Sep 08 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.8.7.174-3
  869. - move noarch ruby libraries to /usr/lib/ruby.
  870. - add Patch960
  871. - add --with-ruby-prefix=%%{_prefix}/lib
  872. - add deprecated search path for 64bit arch.
  873. - --with-search-path=%%{_libdir}/ruby/%%{rubyxver}
  874. * Wed Aug 12 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.8.7.174-2
  875. - import Patch100[12345] from debian package
  876. * Added debian/patches/090811_thread_and_select.dpatch:
  877. threads may hangup when IO.select called from two or more threads.
  878. * Added debian/patches/090812_finalizer_at_exit.dpatch:
  879. finalizers should be run at exit (Closes: #534241)
  880. * Added debian/patches/090812_class_clone_segv.dpatch:
  881. avoid segv when an object cloned. (Closes: #533329)
  882. * Added debian/patches/090812_eval_long_exp_segv.dpatch:
  883. fix segv when eval a long expression. (Closes: #510561)
  884. * Added debian/patches/090812_openssl_x509_warning.dpatch:
  885. suppress warning from OpenSSL::X509::ExtensionFactory. (Closes: #489443)
  886. * Tue Jun 16 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.8.7.174-1
  887. - new upstream release 1.8.7-p174
  888. - fix CVE-2009-1904
  889. http://www.ruby-lang.org/en/news/2009/06/09/dos-vulnerability-in-bigdecimal/
  890. * Mon Jun 01 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.8.7.160-1
  891. - new upstream version 1.8.7-p160.
  892. - drop unneccesary patches: Patch807, Patch1010
  893. * Mon Sep 22 2008 NAKAMURA Kenta <kenta@vinelinux.org> 1.8.7.72-2
  894. - updated Patch950: ruby-1.8.7-p72-multilib.patch
  895. * Thu Sep 11 2008 akira yamada <akira@vinelinux.org> 1.8.7.72-1
  896. - new upstream version 1.8.7-p72.
  897. - droped unnecessary patches: Patch802.
  898. * Thu Sep 11 2008 akira yamada <akira@vinelinux.org> 1.8.6.287-1
  899. - new upstream version 1.8.6-p287.
  900. - droped unnecessary patches: Patch805, Patch1000.
  901. - updated Patch808 for 1.8.6-p287.
  902. - added Patch809: rcov may crash because of backwards incompatibility.
  903. (backported r14826:15141 of trunk).
  904. - added Patch1010 to fix CVE-2008-3790.
  905. * Sat Sep 6 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.8.6.111-1
  906. - applied new versioning policy
  907. - spec in UTF-8
  908. - removed BuildRequires: XOrg-devel
  909. * Wed Oct 24 2007 akira yamada <akira@vinelinux.org> 1.8.6.111-0vl2
  910. - added ruby-1.8.6.111-rexml-document-transitive.patch:
  911. - fixed: Document#write undefined local variable or method `transitive'.
  912. * Tue Oct 23 2007 akira yamada <akira@vinelinux.org> 1.8.6.111-0vl1
  913. - new upstream version 1.8.6.111.
  914. - added ruby-1.8.6.111-CVE-2007-5162.patch:
  915. - security fixes for CVE-2007-5162. It is backported r13657 from ruby_1_8
  916. branch.
  917. - added ruby-1.8.6.111-ruby-bugs-11507.patch:
  918. - ConditionVariable#wait may raise "not owner" exceptions.
  919. - added ruby-1.8.6.111-sync_try_lock_always_fail.patch:
  920. - Sync#try_lock always fails due to wrong variable name.
  921. * Thu May 17 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 1.8.6-0vl4
  922. - rebuild with new openssl
  923. * Thu May 10 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.8.6-0vl3
  924. - rebuilt with new toolchain and db4-4.3.x
  925. * Sun Mar 25 2007 NAKAMURA Kenta <kenta@vinelinux.org> 1.8.6-0vl2
  926. - modified emacsen-common path
  927. * Mon Mar 19 2007 akira yamada <akira@vinelinux.org> 1.8.6-0vl1
  928. - new upstream version 1.8.6.
  929. * Mon Dec 04 2006 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.8.5-0vl1.1
  930. - add pacth1000 for fix cgi.rb issue (JVN#84798830)
  931. * Wed Nov 1 2006 akira yamada <akira@ruby-lang.org> 1.8.5-0vl1
  932. - new upstream version 1.8.5.
  933. - added ruby-1.8.5-rexml_encoding.patch:
  934. - REXML should accept UTF-16. [ruby-list:42737]
  935. - added ruby-1.8.5-rdoc.patch:
  936. - Don't unescape HTML in HtmlFormatter. Submitted by Kent Sibilev <ksruby
  937. at gmail.com>. [ruby-core:08392].
  938. - lib/rdoc/generators/ri_generator.rb: do not chdir twice.
  939. - added ruby-1.8.5-hash_memory_reak.patch:
  940. - hash.c (rb_hash_s_create): fixed memory leak, based on the patch by Kent
  941. Sibilev <ksruby at gmail.com>. fixed: [ruby-talk:211233]
  942. - added ruby-1.8.5-top_cref.patch:
  943. - eval.c (ruby_init): rename top_cref to ruby_top_cref and export, along
  944. with ruby_cref, for use by the sandbox. [ruby-core:08762]
  945. - added ruby-1.8.5-tcltk.patch:
  946. - ext/tk/lib/tkextlib/blt.rb: double dashes (--) option doesn't work
  947. properly on some versions of BLT (wrong description on the manual of
  948. `blt::bgexec'?).
  949. - ext/tk/lib/tk/font.rb: TkFont#current_configinfo() doesn't work on
  950. Tcl/Tk8.x.
  951. - ext/tk/lib/tk.rb: update RELEASE_DATE.
  952. - added ruby-1.8.5-acl.patch:
  953. - patterns which include '*' should not cause getaddress() call.
  954. [ruby-dev:29406]
  955. - added ruby-1.8.5-socket.patch:
  956. - ext/socket/extconf.rb: check arpa/inet.h for ntohs.
  957. - ext/socket/socket.c: include arpa/inet.h if available.
  958. - ext/socket/socket.c (ruby_connect): sockerrlen should be socklen_t.
  959. - added ruby-1.8.5-exec_vs_nullbyte.patch:
  960. - io.c (pipe_open): null character should be saved for command name.
  961. [ruby-dev:29421]
  962. - process.c (proc_spawn): ditto.
  963. - process.c (proc_spawn_n): ditto.
  964. - process.c (rb_f_system): ditto.
  965. - added ruby-1.8.5-mimedec.patch:
  966. - CGI#out should not decode base64 strings. [ruby-dev:29284]
  967. - Kconv::toeuc should decode base64 strings. (reverted to old behaviour for
  968. compatibility.) [ruby-dev:29505]
  969. - corrected regexp for EUC-JP (Kconv::RegexpEucjp). [ruby-dev:29344]
  970. - added ruby-1.8.5-strftime_nullbyte.patch:
  971. - Time#strftime should save null character. [ruby-dev:29422]
  972. - added ruby-1.8.5-dbm_extconf.patch:
  973. - ext/dbm/extconf.rb: create makefile according to the result of check for
  974. dbm header. fixed: [ruby-dev:29445]
  975. - ext/dbm/extconf.rb: allow multiple candidates for dbm-type.
  976. - added ruby-1.8.5-check_sticky_bit.patch:
  977. - file.c (path_check_0): check if sticky bit is set on parent directories
  978. for executable path. fixed: [ruby-dev:29415]
  979. - Fix documentation submitted by Rick Ohnemus. ruby-Bugs-5529.
  980. [ruby-core:08725]
  981. - added ruby-1.8.5-float_hash.patch:
  982. - improve hash collision of Float objects. [ruby-dev:29352]
  983. - added ruby-1.8.5-time_vardecl.patch:
  984. - time.c (time_to_s): variable declaration after an execution statement.
  985. - added ruby-1.8.5-bignum.patch:
  986. - numeric.c (fix_plus): addition in Fixnum will never overflow long. a
  987. patch from Ondrej Bilka <neleai at seznam.cz>. [ruby-core:08794]
  988. - numeric.c (fix_minus): ditto.
  989. - bignum.c (rb_big_pow): eagerly truncate resulting bignum.
  990. [ruby-core:08794]
  991. - added ruby-1.8.5-migration_macro.patch:
  992. - ruby.h (RSTRING_PTR): add migration macro.
  993. - ruby.h (RARRAY_PTR): ditto.
  994. - added ruby-1.8.5-webrick_cookie.patch:
  995. - lib/webrick/cookie.rb (WEBrick::Cookie.parse_set_cookies): new method to
  996. parse multiple cookies per Set-Cookie header. Thanks to Aaron Patterson
  997. <aaron_patterson at speakeasy.net>. [ruby-core:08802]
  998. - added ruby-1.8.5-suppress_warnings.patch:
  999. - mkconfig.rb, ext/extmk.rb, lib/mkmf.rb: suppress warnings with $VERBOSE.
  1000. - ext/extmk.rb: Proc#call does not pass the block in 1.8.
  1001. - Makefile.in, win32/Makefile.sub (MINIRUBY): append MINIRUBYOPT.
  1002. - added ruby-1.8.5-pstore_binmode.patch:
  1003. - lib/pstore.rb: open all in binary mode, and get rid of the quirk of
  1004. msvcrt. fixed: [ruby-dev:29518]
  1005. - added ruby-1.8.5-testunit_rescue.patch:
  1006. - Rescue Exception in Test::Unit::TestCase#run. [ruby-core:08783]
  1007. - added ruby-1.8.5-prevent_loading_twice.patch:
  1008. - eval.c (rb_require_safe): prevent loading twice from extensions. fixed:
  1009. [ruby-dev:29523]
  1010. - added ruby-1.8.5-prohibit_intern_tainted_string.patch:
  1011. - string.c (rb_str_intern): prohibit interning tainted string.
  1012. - added ruby-1.8.5-ruby_mode.patch:
  1013. - misc/ruby-mode.el (ruby-parse-partial): better here-doc support. a patch
  1014. from Marshall T. Vandegrift <llasram at gmail.com>. [ruby-core:08804]
  1015. - added ruby-1.8.5-readme_ext.patch:
  1016. - README.EXT: English adjustment. [ruby-core:08851] [ruby-core:08852]
  1017. [ruby-core:08855]
  1018. - added ruby-1.8.5-check_safe_level_for_str_intern.patch:
  1019. - string.c (rb_str_intern): raise SecurityError only when $SAFE level is
  1020. greater than zero. [ruby-core:08862]
  1021. - parse.y (rb_interned_p): new function to check if a string is already
  1022. interned.
  1023. - object.c (str_to_id): use rb_str_intern().
  1024. - added ruby-1.8.5-pty.patch:
  1025. - ext/pty/pty.c (establishShell): parent pid is not used.
  1026. - ext/pty/pty.c (freeDevice): not used.
  1027. - ext/pty/pty.c (get_device_once): removed garbage right brace.
  1028. - ext/pty/pty.c (establishShell): remove remaining unused line.
  1029. - added ruby-1.8.5-imap_extraspace.patch:
  1030. - net/imap can accept extra space in server responses. The patch from Tom
  1031. Soderlund.
  1032. - added ruby-1.8.5-rdoc_nameerror.patch:
  1033. - rdoc/ri/ri_options.rb should require 'rdoc/ri/ri_paths'.
  1034. - added ruby-1.8.5-gdbm_docs.patch and updated ruby-1.8.5-.document.patch:
  1035. - added GDBM documents.
  1036. - added ruby-1.8.5-etc_uid_t.patch:
  1037. - etc.c should use uid_t instead of int. [ruby-core:08897]
  1038. - added ruby-1.8.5-cgi_empty_content.patch:
  1039. - invalid multipart data can make cgi.rb infinite loop and CPU consumption.
  1040. (CVE-2006-5467)
  1041. - added ruby-1.8.5-sandbox.patch:
  1042. - added Thread#kill!. [ruby-core:08768]
  1043. - added ruby-1.8.5-update_docs.patch:
  1044. - small fixes and updates for rdocs.
  1045. - added ruby-1.8.5-array.patch:
  1046. - fixed a potential leaks caused by shift. [ruby-talk:216055]
  1047. [ruby-core:08922] [ruby-list:42907]
  1048. - added ruby-1.8.5-dir_checkdir.patch:
  1049. - internal existence test for "/" fails anytime. [ruby-core:08913]
  1050. - added ruby-1.8.5-mkmf.patch:
  1051. - set default $LDFLAGS. [ruby-talk:216256]
  1052. - check function pointer first and macro next. [ruby-core:08949]
  1053. - fixed the bug of handling COMMON_MACROS.
  1054. - added ruby-1.8.5-jcode.patch:
  1055. - succ! in jcode.rb doesn't work on $KCODE == 'n'. [ruby-talk:216845]
  1056. - added ruby-1.8.5-eval.patch:
  1057. - check protected visibility based on real self, not ruby_frame->self.
  1058. [ruby-talk:217822]
  1059. - added ruby-1.8.5-include_module.patch:
  1060. - remove unnecessary check. [ruby-talk:218402]
  1061. - added ruby-1.8.5-bignum_shift.patch:
  1062. - a bug in right shift of negative bignums. [ruby-core:09020]
  1063. - added ruby-1.8.5-rexml_enc.patch:
  1064. - spaces are allowed around equal sign. [ruby-core:09032]
  1065. - added ruby-1.8.5-wrong_id_check.patch:
  1066. - wrong id check. [ruby-core:09158]
  1067. - typo fixed. [ruby-core:09168]
  1068. - added ruby-1.8.5-rb_warning.patch:
  1069. - some error message may contain format specifiers. [ruby-dev:29657]
  1070. - added ruby-1.8.5-parse.y.patch.patch:
  1071. - no need to re-create NODE_SELF() again. [ruby-core:09177]
  1072. - use particular enums. [ruby-core:09221]
  1073. - added ruby-1.8.5-signal.patch:
  1074. - handle SIGTERM. [ruby-list:42895]
  1075. - don't set SA_RESTART. a backport from the HEAD. [ruby-talk:220937]
  1076. [ruby-talk:147220]
  1077. - added ruby-1.8.5-string_tainted.patch:
  1078. - should be infected with only original string, but not the shared string.
  1079. [ruby-core:09152]
  1080. - strnig.c (rb_str_new4): keep shared string untainted when orignal string
  1081. is tainted. [ruby-dev:29672]
  1082. - added ruby-1.8.5-configure_alloca.patch:
  1083. - alloca is broken; use C_ALLOCA instead. [ruby-dev:29416]
  1084. - added ruby-1.8.5-openssl.patch:
  1085. - ossl_pkcs7_verify, ossl_spki_initialize: should clear error.
  1086. - Use digest/md5 instead of obsolete md5.
  1087. - added ruby-1.8.5-imap_nomodseq.patch:
  1088. - net/imap chokes on NOMODSEQ response. [ruby-Bugs#6026]
  1089. - added ruby-1.8.5-soap.patch:
  1090. - huge memory usage with the Ebay API.
  1091. <http://dev.ctor.org/soap4r/ticket/224>
  1092. - applied debian/patches/149_bignum_to_s.patch
  1093. - should preserve leading zero information for negative %b and %x.
  1094. [ruby-talk:221347]
  1095. - applied debian/patches/150_time_dup.patch
  1096. - duplicate the class of original time. [ruby-core:09357]
  1097. - applied debian/patches/151_super.patch
  1098. - fixed bug of zsuper with both of opt and rest. [ruby-list:42928]
  1099. - applied debian/patches/152_dir_glob.patch
  1100. - get rid of possible memory leak.
  1101. * Tue Sep 12 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.8.4-0vl5
  1102. - changed ruby-mode Group to Appliations/Editors/Emacs <BTS:VineLinux:163>
  1103. - changed ruby-doc Group to Appliations/Documentation <BTS:VineLinux:163>
  1104. - changed libruby Group to System Environment/Libraries
  1105. - rebuilt with openssl-0.9.7k
  1106. * Sat Jul 29 2006 NAKAMURA Kenta <kenta@vinelinux.org> 1.8.4-0vl4
  1107. - x86_64 architecture support
  1108. - added ruby-1.8.4-multilib.patch
  1109. - added ruby-1.8.4-tcltk-multilib.patch
  1110. - modified emacsen-common path
  1111. * Fri Jul 14 2006 akira yamada <akira@vinelinux.org> 1.8.4-0vl3
  1112. - added ruby-1.8.4-135.patch:
  1113. - should check if chars are multibyte for regexp-i option.
  1114. [ruby-dev:28598] [ruby-list:42096]
  1115. - added ruby-1.8.4-136.patch:
  1116. - jcode.rb breaks String#tr_s. [ruby-list:42090]
  1117. - added ruby-1.8.4-137.patch:
  1118. - Array#pack supports CRLF newlines. [ruby-dev:28601]
  1119. - added ruby-1.8.4-138.patch:
  1120. - should initialize variables first. [ruby-core:07785] [ruby-core:07810]
  1121. - avoid accessing uninitialized array element. [ruby-core:07809]
  1122. - added ruby-1.8.4-139.patch:
  1123. - Numeric#div should use floor rather than Interger. [ruby-dev:28589]
  1124. - the first element of Float#divmod should be an integer.
  1125. [ruby-dev:28589]
  1126. - added ruby-1.8.4-140.patch:
  1127. - avoids memory leak of YAML. [ruby-core:7808]
  1128. - added ruby-1.8.4-141.patch:
  1129. - fixes out of bounds array access. [ruby-core:07823]
  1130. - added ruby-1.8.4-142.patch:
  1131. - use AF_INET6 for nameservers containing colons.
  1132. - added ruby-1.8.4-143.patch:
  1133. - should not modify untainted objects in safe levels higher than 3.
  1134. - should not allow modifying literal regexps.
  1135. - added ruby-1.8.4-144.patch:
  1136. - should not close untainted dir stream in $SAVE >= 4.
  1137. - should not call a vararg function rb_sys_warning() indirectly.
  1138. [ruby-core:07886]
  1139. - added ruby-1.8.4-145.patch:
  1140. - should round for usec floating number. [ruby-core:07896]
  1141. - added ruby-1.8.4-146.patch:
  1142. - constant in Fixnum access with instance_eval dumps core.
  1143. [ruby-dev:28327]
  1144. - inspect for overriden method. [ruby-dev:28636]
  1145. - set_trace_func dumps core. [ruby-dev:28632]
  1146. - set_trace_func: binding has wrong self value for return events.
  1147. [ruby-core:07928]
  1148. - added ruby-1.8.4-147.patch:
  1149. - fixed typo of openssl/ssl.rb.
  1150. - added ruby-1.8.4-148.patch:
  1151. - fixed memory leak and alignment bug of the dl library. [ruby-dev:28665]
  1152. - added ruby-1.8.4-149.patch:
  1153. - new method: IO#read_nonblock, IO#write_nonblock,
  1154. Socket#connect_nonblock, Socket#accept_nonblock and
  1155. Socket#recvfrom_nonblock. [ruby-core:7917]
  1156. - use rb_read_pending instead of rb_io_read_pending. [ruby-dev:28663]
  1157. - new method: IPSocket#recvfrom_nonblock, TCPServer#accept_nonblock,
  1158. UNIXServer#accept_nonblock.
  1159. - reject non-AF_UNIX sockaddr. [ruby-dev:28691]
  1160. - added ruby-1.8.4-mkconfig.rb.patch:
  1161. - mkconfig.rb should remove "|#_!!_#|" and unquote commas generated by
  1162. autoconf > 2.59 (CVS).
  1163. * Wed May 10 2006 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.8.4-0vl2
  1164. - dirty fix to rb_arch macro for ppc
  1165. (_target_cpu should be powerpc, but rpm macro will translate to ppc anyhow)
  1166. this fix will be removed after rpm-4.4 macro issue is cleared up.
  1167. * Sun Apr 23 2006 akira yamada <akira@vinelinux.org> 1.8.4-0vl1
  1168. - new upstream version 1.8.4.
  1169. - updated ruby-refm-rdp.
  1170. - applied following bug-fix-patches.
  1171. - added ruby-1.8.4-100.patch:
  1172. - fixed a bug in constant reference during instance_eval for some type of
  1173. objects. [yarv-dev:707]
  1174. - added ruby-1.8.4-101.patch:
  1175. - allow dynamic symbols (:"...") to undef and alias. [ruby-dev:28105]
  1176. - added ruby-1.8.4-102.patch:
  1177. - (openssl) treat wildcard character in commonName. [ruby-dev:28121]
  1178. - (openssl) should use "rb_str_new(0, 0)" to make empty string.
  1179. - added ruby-1.8.4-103.patch:
  1180. - callcc or thread may leak memory [ruby-Bugs:1364] [ruby-dev:28154]
  1181. [ruby-dev:28172]
  1182. - mark objects refered from aborting threads. [ruby-dev:28190]
  1183. - added ruby-1.8.4-104.patch:
  1184. - avoid a GC problem with RUBY_ALWAYS_GC= ./ruby -e ''.
  1185. - declare rb_gc_abort_threads.
  1186. - added ruby-1.8.4-105.patch:
  1187. - should not recycle scope object used in a thread. [ruby-dev:28177]
  1188. - added ruby-1.8.4-106.patch (urgency medium):
  1189. - get rid of segfault on syntax error. [ruby-core:07070]
  1190. - added ruby-1.8.4-107.patch:
  1191. - fixed typo in webrick/httpservlet/filehandler.rb: fixed typo.
  1192. [ruby-core:7075]
  1193. - added ruby-1.8.4-108.patch (urgency medium):
  1194. - YAML loading of quoted Symbols broken. [ruby-Bugs:2535]
  1195. - YAML could not load Bignum in ruby 1.8.3/1.8.4. [ruby-core:6115]
  1196. - YAML could not dump Subclass of Numeric properly. [ruby-core:7047]
  1197. - should be able to load "!ruby/object:Bignum" syntax 1.8.3 dumped.
  1198. [ruby-core:6159]
  1199. - workaround for SEGV. ex: YAML.load("!map:B {}"). [ruby-core:7217]
  1200. - fixed a typo in yaml.rb. [ruby-talk:165285] [ruby-core:6995]
  1201. - YAML should output complex key mark even if map's key is empty seq/map.
  1202. [ruby-core:7129]
  1203. - added ruby-1.8.4-109.patch:
  1204. - fixed possibility of memmory corruption.
  1205. - added ruby-1.8.4-111.patch:
  1206. - don't clobber %l7 of SPARC if enable-shared.
  1207. - workaround for FreeBSD/i386 getcontext/setcontext bug. [ruby-dev:28263]
  1208. - added ruby-1.8.4-112.patch:
  1209. - FileUtils#mv should remove file after copying. [ruby-dev:28223]
  1210. - added ruby-1.8.4-113.patch:
  1211. - avoids compile error (use system routine if provided).
  1212. [ruby-core:07195]
  1213. - added ruby-1.8.4-114.patch:
  1214. - need not to protect $SAFE value. [ruby-core:07177]
  1215. - added ruby-1.8.4-115.patch:
  1216. - (2**32).to_s(2) fails with exception where sizeof(int) == 4 <
  1217. sizeof(long). [ruby-core:7300] [ruby-Bugs:3438]
  1218. - added ruby-1.8.4-116.patch:
  1219. - PStore#fetch should return default value if name is not found.
  1220. [ruby-core:7304]
  1221. - added ruby-1.8.4-117.patch:
  1222. - defined RSTRUCT_LEN and RSTRUCT_PTR for source level compatibility with
  1223. ruby 1.9.
  1224. - alias RbConfig for Config for compatibility with ruby 1.9.
  1225. - added ruby-1.8.4-118.patch:
  1226. - should not access ruby objects in finalizer of Zlib. [ruby-dev:28286]
  1227. - added ruby-1.8.4-119.patch:
  1228. - no need to push ruby_class. [ruby-dev:28176] [ruby-dev:28580]
  1229. - check if ruby_cbase is nil (during instance_eval for objects cannot have
  1230. singleton classes, e.g. fixnums and symbols). [ruby-dev:28178]
  1231. [ruby-dev:28580] [ruby-dev:28582]
  1232. - argument update propagation. [ruby-dev:28044]
  1233. - avoid unnecessary extra argument. [ruby-core:07366] [ruby-dev:28583]
  1234. [ruby-dev:28583]
  1235. - added ruby-1.8.4-120.patch:
  1236. - support non 32bit time_t environments.
  1237. - added ruby-1.8.4-121.patch:
  1238. - zsuper (with define_method) dumps core. [ruby-dev:28181]
  1239. - added ruby-1.8.4-122.patch:
  1240. - should no singleton classes for true, false, and nil. [ruby-dev:28186]
  1241. - added ruby-1.8.4-124.patch:
  1242. - sleep should always sleep for specified amount of time.
  1243. [ruby-talk:180067]
  1244. - added ruby-1.8.4-125.patch:
  1245. - unpack("l") did not work where sizeof(long) != 4. [ruby-talk:180024]
  1246. - fixed integer overflow on template "w" of pack. [ruby-talk:180126]
  1247. - added ruby-1.8.4-126.patch:
  1248. - removed unnecessary MY_FILE_NAME constant. [ruby-core:07376]
  1249. - added ruby-1.8.4-127.patch:
  1250. - odd break behavior. [ruby-talk:180420]
  1251. - added ruby-1.8.4-128.patch:
  1252. - unexpected syntax error. [ruby-talk:180648]
  1253. - added ruby-1.8.4-129.patch:
  1254. - fixed that irb can't parse /\^/. [ruby-dev:28404] [ruby-Bugs:3302]
  1255. - rdoc could not handle /\^/. [ruby-talk:181631] [ruby-dev:28404]
  1256. - added ruby-1.8.4-130.patch:
  1257. - symbols overlap ordinary objects. [ruby-core:07414]
  1258. - heap_slots may overflow.
  1259. - align VALUE with sizeof(RVALUE) globally. [ruby-talk:178364]
  1260. [ruby-core:7305]
  1261. - added ruby-1.8.4-131.patch:
  1262. - should not re-schedule output from KILLED thread.
  1263. - added ruby-1.8.4-133.patch:
  1264. - reports aliased method names in a generated backtrace. [ruby-dev:28471]
  1265. - insecure calling should be checked for non NODE_SCOPE method invocations
  1266. too.
  1267. - should preserve the current safe level as well as method definition.
  1268. - added ruby-1.8.4-134.patch:
  1269. - (bignum) second operand may be too big even if it's a Fixnum.
  1270. [ruby-talk:187984]
  1271. - libruby1.8-dbg: applied a patch from Matthew Palmer to provide detached
  1272. symbols.
  1273. * Wed Nov 9 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.8.1-0vl22
  1274. - added BuildRequires: zlib-devel
  1275. * Sat Jul 2 2005 KANEKO Seiji <giraffe@m2.pbc.ne.jp> 1.8.1-0vl21
  1276. - rebuild for VineSeed
  1277. - rename BuildRequires: XFree86-devel to XOrg-devel
  1278. * Thu Jun 23 2005 akira yamada <akira@vinelinux.org> 1.8.1-0vl20.1
  1279. - added ruby-1.8.2pre2-xmlrpc-util.rb.patch:
  1280. - fixed arbitrary command execution on XMLRPC server.
  1281. (CAN-2005-1992) [ruby-core:5237]
  1282. * Wed Nov 03 2004 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.8.1-0vl20
  1283. - increased release number to avoid discrepancy against 3.0/errata package
  1284. * Wed Nov 03 2004 akira yamada <akira@vinelinux.org> 1.8.1-0vl19
  1285. - updated and enabled ruby-1.8.2pre2-cvs-update-104.patch.
  1286. - added ruby-1.8.2pre2-io-open.patch:
  1287. - (important) additional changes for "open dumps core again^2."
  1288. [ruby-dev:24656]
  1289. - added ruby-1.8.2pre2-array-uniq.patch:
  1290. - Array#uniq should not freeze elements. [ruby-dev:24695]
  1291. * Wed Nov 03 2004 akira yamada <akira@vinelinux.org> 1.8.1-0vl18
  1292. - added ruby-1.8.2pre2-cvs-update-104.patch:
  1293. - (important) Enumerable#grep dumps core. [ruby-dev:24671]
  1294. - (important) open dumps core again^2. [ruby-dev:24656]
  1295. - added ruby-1.8.2pre2-ostruct-revert.patch and removed
  1296. ruby-1.8.2pre2-ostruct-marshal.patch:
  1297. - reverted lib/ostruct.rb.
  1298. * Sun Oct 31 2004 akira yamada <akira@vinelinux.org> 1.8.1-0vl17
  1299. - added ruby-1.8.2pre2-cvs-updates-103.patch:
  1300. - (important) temporarily frozen string causes core dump. [ruby-dev:24552]
  1301. - removed ruby-1.8.2pre2-cgi.rb-macie.patch,
  1302. ruby-1.8.2pre2-ostruct-marshal.patch,
  1303. ruby-1.8.2pre2-zlib-flush_next_in.patch and
  1304. ruby-1.8.2pre2-ruby_finalize_1-segv.patch: they ware included into the
  1305. above patch.
  1306. * Sat Oct 30 2004 akira yamada <akira@vinelinux.org> 1.8.1-0vl16
  1307. - added ruby-1.8.2pre2-eval.c-memory-leak.patch:
  1308. - (important) another memory leak in ruby_1_8. [ruby-core:03619]
  1309. - added ruby-1.8.2pre2-io-path.patch:
  1310. - (important) IO#path may cause segv. [ruby-talk:118234]
  1311. - added ruby-1.8.2pre2-enum-sort_by.patch:
  1312. - (important) Enumerable#sort_by dumps core again^4. [ruby-dev:24642]
  1313. * Fri Oct 29 2004 akira yamada <akira@vinelinux.org> 1.8.1-0vl15
  1314. - added ruby-1.8.2pre2-cvs-updates-100.patch:
  1315. - minor bug fix.
  1316. - added ruby-1.8.2pre2-cvs-updates-101.patch:
  1317. - (important) "IO.allocate.reopen('/nothing')" on irb causes SEGV.
  1318. [ruby-core:03288]
  1319. - YAML fails to load/dump non-printable characters. [ruby-core:03280]
  1320. [ruby-core:03286]
  1321. - Bug#265429: IO.select() mysteriously hangs [ruby-dev:24072]
  1322. [ruby-dev:24075]
  1323. - Pathological slowdown in 1.8 [ruby-core:02662]
  1324. - added ruby-1.8.2pre2-cvs-updates-102.patch:
  1325. - (important) fixed some segmentation fault bugs listed in
  1326. - <URL:http://jp.rubyist.net/magazine/?0002-RubyCore>.
  1327. - raise dumps core. [ruby-dev:24519]
  1328. - unpack("p") dumps core. [ruby-dev:24594]
  1329. - Enumerable#sort_by dumps core again. [ruby-dev:24386]
  1330. - Enumerable#sort_by dumps core again(2). [ruby-dev:24399]
  1331. - A class of return value of Array#*. [ruby-dev:24526]
  1332. - Zlib::Deflate#deflate causes core dump. [ruby-dev:24530]
  1333. - PStore#transaction may raise Errno::ENOENT. [ruby-dev:24561]
  1334. - String#include? ?\x80. [ruby-dev:24558]
  1335. - httpresponse.rb: ensure to close @body.
  1336. - (important) fixed memory leak. [ruby-core:03549]
  1337. - Zlib::GzipReader#ungetc does not work correctly.
  1338. - (important) core dump with binding, eval, instance_eval and class
  1339. variable. [ruby-dev:24120]
  1340. - added ruby-1.8.2pre2-cgi.rb-macie.patch:
  1341. - cgi.rb: workaround for Mac IE. [ruby-list:40136]
  1342. - added ruby-1.8.2pre2-ostruct-marshal.patch:
  1343. - ostruct.rb: OpenStruct can't be dumped. [ruby-dev:24625]
  1344. - added ruby-1.8.2pre2-zlib-flush_next_in.patch:
  1345. - (important) Zlib::Deflate#flush_next_in causes core dump.
  1346. [ruby-dev:24621]
  1347. - added ruby-1.8.2pre2-ruby_finalize_1-segv.patch:
  1348. - (important) raising zlib dumps core again. [ruby-dev:24627]
  1349. - removed ruby-1.8.2pre2-cgi-session-filename.patch and
  1350. ruby-1.8.2pre2-cgi.rb-infinity-loop.patch: they ware included into the
  1351. above patch.
  1352. * Fri Oct 29 2004 akira yamada <akira@vinelinux.org> 1.8.1-0vl14
  1353. - added ruby-1.8.2pre2-cgi-session-filename.patch:
  1354. - (important) CGI::Session::FilesStore and CGI::Session::PStore should not
  1355. use a session id as a filename.
  1356. - added ruby-1.8.2pre2-cgi.rb-infinity-loop.patch:
  1357. - (security) cgi.rb: avoids infinity loop.
  1358. * Wed Oct 13 2004 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.8.1-0vl13
  1359. - rebuilt with db4-4.2.25
  1360. * Fri Jul 30 2004 akira yamada <akira@vinelinux.org> 1.8.1-0vl12
  1361. - new upstream source, ruby-1.8.2-preview2.
  1362. - removed patches which is included into upstream:
  1363. ruby-1.8.2pr1-sleep.patch, ruby-1.8.2pr1-version.h.patch,
  1364. ruby-1.8.2pr1-yaml-rubytypes.rb.patch, ruby-1.8.2pr1-ruby-mode.patch,
  1365. ruby-1.8.2pr1-yaml-load-exception.patch,
  1366. ruby-1.8.2pr1-config.guess-revert.patch, ruby-1.8.2pr1-callcc.patch,
  1367. ruby-1.8.2pr1-net-imap.patch, ruby-1.8.2pr1-uri-ldap.patch,
  1368. ruby-1.8.2pr1-use-NULL.patch, ruby-1.8.2pr1-cgi-session.patch and
  1369. ruby-1.8.2pr1-run-final.patch.
  1370. - renamed to ruby-1.8.2pre2-delegate.rb.patch from
  1371. ruby-1.8.2pr1-delegate.rb.patch.
  1372. * Wed Jul 28 2004 akira yamada <akira@vinelinux.org> 1.8.1-0vl11
  1373. - enabled Patch811(ruby-1.8.2pr1-cgi-session.patch).
  1374. - added a patch:
  1375. - ruby-1.8.2pr1-run-final.patch: ObjectSpace.define_finalizer may cause
  1376. Segmentation falult. [ruby-dev:23957]
  1377. * Wed Jul 21 2004 akira yamada <akira@vinelinux.org> 1.8.1-0vl10
  1378. - new upstream source, ruby-1.8.2-preview1.
  1379. - removed patches which included into upstream:
  1380. ruby-1.8.1-{100..108}-cvs-updates.patch,
  1381. ruby-1.8.1-ia64-stack-limit-hack.patch,
  1382. ruby-1.8.1-zlib_64bit_gzfile_get32.patch,
  1383. ruby-1.8.1-rdoc-parse.rb.patch.
  1384. - updated patches:
  1385. - ruby-1.8.1-sleep.patch -> ruby-1.8.2pr1-sleep.patch
  1386. - ruby-1.8.1-yaml-rubytypes.rb.patch -> ruby-1.8.2pr1-yaml-rubytypes.rb.patch
  1387. - ruby-1.8.1-ruby-mode.patch -> ruby-1.8.2pr1-ruby-mode.patch
  1388. - ruby-1.8.1-delegate.rb.patch -> ruby-1.8.2pr1-delegate.rb.patch
  1389. - ruby-1.8.1-config.guess-revert.patch -> ruby-1.8.2pr1-config.guess-revert.patch
  1390. - ruby-1.8.1-ri-pager.patch -> ruby-1.8-ri-pager.patch
  1391. - added patches:
  1392. - ruby-1.8.2pr1-version.h.patch: added some constans.
  1393. - ruby-1.8.2pr1-yaml-load-exception.patch: YAML.load
  1394. couldn't load Exception objects. [ruby-talk:104405]
  1395. - ruby-1.8.2pr1-callcc.patch: callcc method may cause unknown data type
  1396. bug. [ruby-talk:106657]
  1397. - ruby-1.8.2pr1-net-imap.patch: wait command continuation requests before
  1398. sending octet data of literals.
  1399. - ruby-1.8.2pr1-uri-ldap.patch: method hierarchical? in uri/ldap.rb should
  1400. be in URI::LDAP.
  1401. - ruby-1.8.2pr1-use-NULL.patch: use NULL instead of 0.
  1402. - ruby-1.8.2pr1-cgi-session.patch: sets the permission of the session data
  1403. file to 0600. [ruby-dev:23952]
  1404. * Wed Jun 23 2004 akira yamada <akira@vinelinux.org> 1.8.1-0vl9
  1405. - added ruby-1.8.1-rdoc-parse.rb.patch:
  1406. - [ruby-talk:104190] %r{...} is a regular expression but RDoc prints it
  1407. as %{...}.
  1408. - added ruby-1.8.1-config.guess-revert.patch:
  1409. - [ruby-dev:23753] revert to original config.guess
  1410. <URL:ftp://ftp.gnu.org/pub/gnu/config/config.guess>.
  1411. * Tue Jun 22 2004 akira yamada <akira@vinelinux.org> 1.8.1-0vl8
  1412. - added ruby-1.8.1-yaml-rubytypes.rb.patch:
  1413. - backported from CVS HEAD.
  1414. * Tue Jun 22 2004 akira yamada <akira@vinelinux.org> 1.8.1-0vl7
  1415. - added ruby-1.8.1-106-cvs-updates.patch:
  1416. - [ruby-dev:23550] Socket.new(Socket::AF_INET, Socket::SOCK_STREAM, 0)
  1417. dumps core.
  1418. - [ruby-core:02793] ruby -e 'a[*b]+=c' dups core.
  1419. - [ruby-dev:23487] core dump by delete_if on 1.8
  1420. - options for Net::Telnet::login can take regexps for login prompt
  1421. and/or password prompt.
  1422. - added ruby-1.8.1-107-cvs-updates.patch:
  1423. - upgraded to stable-snapshot (2004-06-05).
  1424. - added debian/patches/108_cvs_updates.patch:
  1425. - [ruby-dev:22631] should not dump singleton class.
  1426. - limit safe level.
  1427. - [ruby-dev:23713] allow changing $SAFE.
  1428. - added ruby-1.8.1-820_zlib_64bit_gzfile_get32.patch:
  1429. - the value in gzfile_get32 can accidentally be sign extended on 64 bit
  1430. systems. Thanks to Matthew Mueller. (see Debian Bug#255442)
  1431. - removed ruby-1.8.1-time.c.patch, ruby-1.8.1-find.rb.patch,
  1432. ruby-1.8.1-telnet.rb.patch, ruby-1.8.1-yaml.patch,
  1433. ruby-1.8.1-proc_eq.patch, ruby-1.8.1-misc-escape.patch and
  1434. ruby-1.8.1-parse.y-reverse.patch. they ware included into the above
  1435. patch.
  1436. - updated SOURCE2. [VineSeed:09109]
  1437. - removed unusable "Prefix:".
  1438. * Fri Feb 06 2004 akira yamada <akira@vinelinux.org> 1.8.1-0vl6
  1439. - configure with --with-bundled-{sha1,md5,rmd160}. it free libruby1.8 from
  1440. libssl.
  1441. - added ruby-1.8.1-105-cvs-updates.patch:
  1442. - "undef" for methods does not work. [ruby-list:39058]
  1443. - blocks in "#{}" makes syntax error. [ruby-list:39061]
  1444. - Net::IMAP accepts 8-bit characters in quoted strings for Novell
  1445. GroupWise Internet Agent.
  1446. - Socket#recvfrom makes an invalid argument error in non-blocking mode.
  1447. [ruby-talk:89962]
  1448. - util.c (mblen): fix overrun. (DJGPP ONLY) [ruby-dev:22672]
  1449. - delegate.rb should use Kernel::raise for Thread. [ruby-dev:22681]
  1450. [ruby-dev:22684]
  1451. - delegate.rb should not delegate singleton_method_added.
  1452. [ruby-dev:22685]
  1453. - added ruby-1.8.1-find.rb.patch:
  1454. - Find.find raises SecurityError in $SAFE>=1. [ruby-dev:22641]
  1455. - Find.find("xyz") will yield "xyz" even if no such file exists.
  1456. [ruby-core:02319]
  1457. - added ruby-1.8.1-telnet.rb.patch:
  1458. - net/telnet.rb accepts "Login" prompt.
  1459. - added ruby-1.8.1-yaml.patch:
  1460. - syck library does not dump tv_usec correctly. [ruby-core:02305]
  1461. - syck cannot dump a Range of strings. [ruby-core:02306]
  1462. - added ruby-1.8.1-ruby-mode.patch:
  1463. - font-lock could not treat %"..." correctry. [ruby-dev:22705]
  1464. - added ruby-1.8.1-proc_eq.patch:
  1465. - Proc with empty body may not be equal. [ruby-dev:22590]
  1466. [ruby-dev:22594][ruby-dev:22602]
  1467. - added ruby-1.8.1-misc-escape.patch:
  1468. - Here-document in lib/rexml/encodings/ISO-8859-1.rb requires quotation,
  1469. as in US-ASCII.rb. [ruby-talk:88650]
  1470. - avoid warnings in rdoc/parsers/parse_c.rb.
  1471. * Thu Jan 22 2004 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.8.1-0vl5
  1472. - changed the arguments when generating RI (in the %%install section)
  1473. against "ppc vs powerpc" issue (thanks Akira Yamada-san for helping)
  1474. * Wed Jan 21 2004 akira yamada <akira@vinelinux.org> 1.8.1-0vl4
  1475. - added ruby-1.8.1-104-cvs-updates.patch:
  1476. - removed O_NONBLOCK for a socket used by DRb.
  1477. - Net::IMAP accepts an NIL-envelope.
  1478. * Tue Jan 20 2004 akira yamada <akira@vinelinux.org> 1.8.1-0vl3
  1479. - added ruby-1.8.1-103-cvs-updates.patch:
  1480. - io.c: initializer of lineno should be "INT2FIX(0)".
  1481. - disabled optimization on ia64. (-O1/2 makes ruby unusable.)
  1482. - added ruby-1.8.1-ia64-stack-limit-hack.patch:
  1483. - disable IA64_MAGIC_STACK_LIMIT trick when optimization is disabled.
  1484. [ruby-dev:22650]
  1485. * Mon Jan 19 2004 akira yamada <akira@vinelinux.org> 1.8.1-0vl2
  1486. - added ruby-1.8.1-101-cvs-updates.patch:
  1487. - StringIO.new.sysread should raise EOFError. [ruby-core:2078]
  1488. - don't increment lineno when gzfile_read_all returns "". [ruby-core:2078]
  1489. - ARGF.readline should raise EOFError at EOF. [ruby-dev:22458]
  1490. - both of ARGF.read and ARGF.read(nil) should concatenate input files when
  1491. length argument is nil. [ruby-dev:22450]
  1492. - ARGF.lineno should return 0 even if ARGF have not been read.
  1493. [ruby-dev:22460]
  1494. - ARGF.each_byte should return self. [ruby-dev:22465]
  1495. - ARGF.eof? should not have any side effect. [ruby-dev:22469]
  1496. - should not abort when module_function is called for undefined method.
  1497. [ruby-dev:22498]
  1498. - ARGF.read(n) makes an error when it gets EOF. [ruby-bugs-ja:PR#585]
  1499. - synchronized with date2 library version 3.5. it includes fixes for
  1500. [ruby-talk:90063].
  1501. - added ruby-1.8.1-102-cvs-updates.patch:
  1502. - documents of methods of IO is missing.
  1503. - added ruby-1.8.1-sleep.patch:
  1504. - sleep is broken with --enable-pthread. [ruby-core:2133]
  1505. [ruby-core:2137]
  1506. - added ruby-1.8.1-time.c.patch:
  1507. - Time#usec should not return neither a negative number nor a number which
  1508. is larger than 1000000. [ruby-dev:22614], [ruby-dev:22617]
  1509. - added ruby-1.8.1-ri-pager.patch:
  1510. - changed pager search order: ENV['PAGER'], pager, ...
  1511. - put datafiles of ri into rdoc package.
  1512. * Sat Dec 27 2003 akira yamada <akira@vinelinux.org> 1.8.1-0vl1
  1513. - new upstream version.
  1514. - applied bugfix patch. ruby-1.8.1-100-cvs-updates.patch:
  1515. - Kernel::require searches actual file name once when no extension
  1516. specified.
  1517. - fixes Ruby/Tk crash bug. (but does not fix block bug.) [ruby-talk:88830]
  1518. - Array#pack checks sign for "i" and "I". [ruby-dev:22427]
  1519. - IO::readlines should return lines when record-separater is nil.
  1520. [ruby-core:02077][ruby-core:02078]
  1521. - ARGF.read accepts "nil" for argument. [ruby-dev:22433]
  1522. - updated ruby-refm-rdp-1.6.8-ja-html.tar.gz.
  1523. - added ruby-mode-init.el.
  1524. - updated ruby-mode-install.sh and ruby-mode-remove.sh.
  1525. * Mon Dec 08 2003 akira yamada <akira@vinelinux.org> 1.8.0-0vl5
  1526. - updated ruby-1.8.1pr3-cvs-updates.patch.
  1527. * Sat Dec 06 2003 akira yamada <akira@vinelinux.org> 1.8.0-0vl3
  1528. - updated to Ruby 1.8.1-preview3.
  1529. - applied patches from the CVS.
  1530. * Thu Oct 16 2003 akira yamada <akira@vinelinux.org> 1.8.0-0vl2
  1531. - libruby obsoletes drb, erb, ruby-csv, ruby-optparse, ruby-rexml,
  1532. ruby-strscan, rubyunit and racc-runtime.
  1533. * Mon Oct 06 2003 akira yamada <akira@vinelinux.org> 1.8.0-0vl1
  1534. - new upstream version.
  1535. - applied patches from the CVS.
  1536. - new sub-package: ruby-openssl.
  1537. * Mon Mar 31 2003 KOBAYASHI R. Taizo <tkoba@vinelinux.org> 1.6.8-0vl2
  1538. - rebuild with tcltk-8.4.2
  1539. * Tue Jan 21 2003 akira yamada <akira@vinelinux.org> 1.6.8-0vl1
  1540. - new upstream version.
  1541. - applied a patch:
  1542. - [ruby-dev:18702] [PATCH] .rb/.so with same feature name
  1543. - build with db4-devel. (dbm.so is linked with libdb-4.0.so.)
  1544. * Tue Mar 19 2002 akira yamada <akira@vinelinux.org> 1.6.7-0vl5
  1545. - applied bug fix patch:
  1546. - ruby-dev#16462: preserve reference for GC, but link should be cut.
  1547. (ruby-dev#16411: block local var.)
  1548. - RUBY_RELEASE_DATE "2002-03-19"
  1549. (ruby-1.6.7-103.patch)
  1550. * Sun Mar 17 2002 akira yamada <akira@vinelinux.org> 1.6.7-0vl4
  1551. - applied bug fix patch:
  1552. - ruby-dev#16274: patch for 'wm state' (tk.rb)
  1553. - PR#206ja: SEGV handle EXIT
  1554. - updated NEWS
  1555. - RUBY_RELEASE_DATE "2002-03-14"
  1556. (ruby-1.6.7-100.patch)
  1557. - ruby-list#34313: singleton should not be Marshal.dump'ed
  1558. - ruby-dev#16411: block local var
  1559. - RUBY_RELEASE_DATE "2001-03-15"
  1560. (ruby-1.6.7-101.patch)
  1561. - handling multibyte chars is partially broken.
  1562. - RUBY_RELEASE_DATE "2002-03-18"
  1563. (ruby-1.6.7-102.patch)
  1564. - removed ruby-1.6.7-500-marshal-proc.patch and
  1565. ruby-1.6.7-501-class-var.patch. they are included (or rewrited) into the
  1566. above patch.
  1567. - updated refm. (ruby-refm-rdp-1.6.7-ja-html.zip)
  1568. - prefixed %%lang(ja) to %%doc for Japanese documents.
  1569. * Fri Mar 08 2002 akira yamada <akira@vinelinux.org> 1.6.7-0vl3
  1570. - applied patch501.
  1571. * Fri Mar 08 2002 akira yamada <akira@vinelinux.org> 1.6.7-0vl2
  1572. - updated refm. (ruby-refm-rdp-1.6.7-jp-html.zip)
  1573. * Sun Mar 03 2002 akira yamada <akira@vinelinux.org> 1.6.7-0vl1
  1574. - new upstream version.
  1575. - uri library is included.
  1576. - time.rb is new.
  1577. - some bugs are fixed.
  1578. - added ruby-refm-rdp-1.6.6-jp-html.zip.
  1579. - applied bug fix patch:
  1580. - ruby-dev#16178: Marshal::dump shuld call Proc#call.
  1581. (ruby-1.6.7-500-marshal-proc.patch)
  1582. - ruby-talk#35157: class vars broken in 1.6.7
  1583. (ruby-1.6.7-501-class-var.patch)
  1584. - removed: ruby-1.6.6-10[12].patch, ruby-1.6.6-502-net_pop.patch.
  1585. * Mon Feb 04 2002 akira yamada <akira@vinelinux.org> 1.6.6-0vl5
  1586. - applied bug fix patch:
  1587. - ruby-dev#15684: reject prefix followed by spaces only.
  1588. - PR#183: SEGV on remove_class_variable
  1589. (ruby-1.6.6-101.patch)
  1590. - PR#184: Net::APOP.auth_only is not usable
  1591. (ruby-1.6.6-502-net_pop.patch)
  1592. - removed ruby-1.6.6-502-net_pop.patch. it is included by
  1593. 101_ruby-1.6.6.patch.
  1594. - site_ruby moved to under /usr/local/lib.
  1595. - added db1-devel to BuildRequires.
  1596. * Wed Jan 09 2002 akira yamada <akira@vinelinux.org> 1.6.6-0vl4
  1597. - added a bug fix patch: ruby-1.6.6-501-ruby-mode.patch
  1598. - ruby-talk#30479: ruby-mode.el disables font-lock coloring
  1599. * Tue Jan 08 2002 akira yamada <akira@vinelinux.org> 1.6.6-0vl3
  1600. - added a bug fix patch: ruby-1.6.6-100.patch
  1601. - ruby-talk#30203: Ruby 1.6.6 bug and fix
  1602. - ruby-list#33047: regex bug
  1603. - PR#230: problem with -d in 1.6.6
  1604. - removed patches: ruby-900-XXX-strtod.patch ruby-503-weakref.rb.patch.
  1605. included into ruby-1.6.6-100.patch.
  1606. * Fri Jan 04 2002 akira yamada <akira@vinelinux.org> 1.6.6-0vl2
  1607. - added a patch:
  1608. - ruby-1.6.6-901-sparc.patch: PR#225: sparc linux needs different
  1609. FLUSH_REGISTER_WINDOWS
  1610. - renamed to ruby-mode from ruby-mode-el.
  1611. * Wed Dec 26 2001 akira yamada <akira@vinelinux.org> 1.6.6-0vl1
  1612. - new upstream version.
  1613. * Sun Nov 18 2001 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.6.5-0vl3
  1614. - rebuilt with new tcl/tk packages
  1615. - added patches: ruby-900-XXX-strtod.patch ruby-503-weakref.rb.patch
  1616. * Wed Oct 10 2001 akira yamada <akira@vinelinux.org> 1.6.5-0vl2
  1617. - applied bug fix patch from upstrem cvs repository.
  1618. - ruby-dev#14810, ruby-dev#14813 (ruby-1.6.5-100.patch)
  1619. - applied bug fix patch:
  1620. - ruby-list#31570 for net/pop.rb (ruby-1.6.5-501-net-pop.rb.patch)
  1621. - %%{_mandir} hack.
  1622. - emacsen_pkg hack. (very dirty for %%_foo() in %%if-%%endif. but it is
  1623. wrong of spec-specification... sigh.)
  1624. * Wed Sep 19 2001 akira yamada <akira@vinelinux.org> 1.6.5-0vl1
  1625. - new upstream version.
  1626. - add XFree86-devel to BuildRequires. (tk.h requires X11/Xlib.h.)
  1627. * Mon Sep 03 2001 akira yamada <akira@vinelinux.org> 1.6.4-0vl8
  1628. - removed files related on emacsen-common from libruby.
  1629. - updated upstream URLs.
  1630. * Tue Aug 07 2001 akira yamada <akira@vinelinux.org>
  1631. - 1.6.4-0vl7
  1632. - added ruby-1.6.4-108.patch.
  1633. - fixed: causes segv to mod_ruby.
  1634. - do not recurse if method_missing is undefined.
  1635. - m68k work around.
  1636. * Fri Aug 03 2001 akira yamada <akira@vinelinux.org>
  1637. - 1.6.4-0vl5
  1638. - new sub-package ruby-mode-el. it provides ruby-mode for emacsen.
  1639. * Wed Aug 01 2001 akira yamada <akira@vinelinux.org>
  1640. - 1.6.4-0vl4
  1641. - added ruby-1.6.4-10[67].patch.
  1642. - remove ruby-1.6.4-501.patch. (fixed on upstream.)
  1643. - marshal verbose warning bug.
  1644. - ruby-1.6-2001.07.31.
  1645. - packages except libruby and irb requires libruby = %%{version}-%%{release}.
  1646. - irb requires ruby = %%{version}-%%{release}.
  1647. * Thu Jul 26 2001 akira yamada <akira@vinelinux.org>
  1648. - 1.6.4-0vl3
  1649. - added ruby-1.6.4-10[345].patch and ruby-1.6.4-501.patch.
  1650. - tilde expansion problem and PR#158.
  1651. - some documents moved to libruby.rpm from ruby.rpm.
  1652. - stopped using %%configure macros, because it breaks
  1653. Config::CONFIG["libdir"] variable: %%configure sets
  1654. it to "/usr/lib" but it should be
  1655. "$(exec_prefix)/lib" for some packages which uses
  1656. ruby.
  1657. * Tue Jul 17 2001 akira yamada <akira@vinelinux.org>
  1658. - 1.6.4-0vl2
  1659. - added ruby-1.6.4-10[12].patch.
  1660. - fixed a bug around order of "$:".
  1661. - updated config.{guess,sub}.
  1662. - eval.c bug.
  1663. - marshal version 4.6.
  1664. * Mon Jun 04 2001 akira yamada <akira@vinelinux.org>
  1665. - 1.6.4-0vl1
  1666. - upgrade to nwe upstream version 1.6.4.
  1667. * Mon Apr 02 2001 akira yamada <akira@vinelinux.org>
  1668. - applied patch:
  1669. - fixed method cache bug. etc. (Patch103, Patch104)
  1670. * Tue Mar 27 2001 akira yamada <akira@vinelinux.org>
  1671. - applied patch:
  1672. - fixed marshal for bignum bug.
  1673. - fixed scope of constant variables bug.
  1674. * Tue Mar 20 2001 akira yamada <akira@vinelinux.org>
  1675. - upgraded to new upstream version 1.6.3.
  1676. * Fri Feb 09 2001 akira yamada <akira@vinelinux.org>
  1677. - fixed bad group for libruby.
  1678. - Applied patch: upgraded to cvs version (2001-02-08):
  1679. fixed minor bugs.
  1680. * Thu Jan 18 2001 akira yamada <akira@vinelinux.org>
  1681. - Applied patch: upgraded to cvs version (2001-01-15):
  1682. fixed minor bugs(e.g. ruby makes extention librares too large...).
  1683. * Wed Jan 10 2001 akira yamada <akira@vinelinux.org>
  1684. - Applied patch: upgraded to cvs version (2001-01-09):
  1685. fixed minor bugs.
  1686. * Sat Dec 30 2000 akira yamada <akira@vinelinux.org>
  1687. - Applied bug fix patch.
  1688. * Mon Dec 25 2000 akira yamada <akira@vinelinux.org>
  1689. - Updated to new upstream version 1.6.2.
  1690. * Fri Dec 22 2000 akira yamada <akira@vinelinux.org>
  1691. - Removed ruby_cvs.2000122019.patch, added ruby_cvs.2000122215.patch
  1692. (upgraded ruby to latest cvs version, 1.6.2-preview4).
  1693. * Wed Dec 20 2000 akira yamada <akira@vinelinux.org>
  1694. - Removed ruby_cvs.2000121413.patch, added ruby_cvs.2000122019.patch
  1695. (upgraded ruby to latest cvs version).
  1696. - new package: libruby
  1697. * Thu Dec 14 2000 akira yamada <akira@vinelinux.org>
  1698. - Removed ruby_cvs.2000101901.patch, added ruby_cvs.2000121413.patch
  1699. (upgraded ruby to latest cvs version).
  1700. - Removed ruby-dev.11262.patch, ruby-dev.11265.patch,
  1701. and ruby-dev.11268.patch (included into above patch).
  1702. * Sun Nov 12 2000 MACHINO, Satoshi <machino@vinelinux.org> 1.6.1-0vl9
  1703. - build on gcc-2.95.3
  1704. * Thu Oct 19 2000 akira yamada <akira@vinelinux.org>
  1705. - Added ruby-dev.11268.patch.
  1706. * Thu Oct 19 2000 akira yamada <akira@vinelinux.org>
  1707. - Removed ruby_cvs.2000101117.patch and added ruby_cvs.2000101901.patch
  1708. (upgraded ruby to latest cvs version).
  1709. - Added ruby-dev.11262.patch.
  1710. - Added ruby-dev.11265.patch.
  1711. * Wed Oct 11 2000 akira yamada <akira@vinelinux.org>
  1712. - Removed ruby_cvs.2000100313.patch and added ruby_cvs.2000101117.patch
  1713. (upgraded ruby to latest cvs version).
  1714. * Mon Oct 09 2000 akira yamada <akira@vinelinux.org>
  1715. - Removed ruby_cvs.2000100313.patch and added ruby_cvs.2000100313.patch
  1716. (upgraded ruby to latest cvs version).
  1717. * Tue Oct 03 2000 akira yamada <akira@vinelinux.org>
  1718. - Removed ruby_cvs.2000100218.patch and added ruby_cvs.2000100313.patch
  1719. (upgraded ruby to latest cvs version).
  1720. * Mon Oct 02 2000 akira yamada <akira@vinelinux.org>
  1721. - Removed ruby_cvs.2000092718.patch and added ruby_cvs.2000100218.patch
  1722. (upgraded ruby to latest cvs version).
  1723. * Wed Sep 27 2000 akira yamada <akira@vinelinux.org>
  1724. - Updated to upstream version 1.6.1.
  1725. - Removed ruby_cvs.2000082901.patch and added ruby_cvs.2000092718.patch
  1726. (upgraded ruby to latest cvs version).
  1727. * Tue Aug 29 2000 akira yamada <akira@redhat.com>
  1728. - Updated to version 1.4.6.
  1729. - removed ruby-dev.10123.patch(included into ruby-1.4.6).
  1730. - Added ruby_cvs.2000082901.patch(upgraded ruby to latest cvs version).
  1731. * Tue Jun 27 2000 akira yamada <akira@redhat.com>
  1732. - Updated manuals to version 1.4.5.
  1733. * Sun Jun 25 2000 akira yamada <akira@redhat.com>
  1734. - Added ruby-dev.10123.patch.
  1735. * Sat Jun 24 2000 akira yamada <akira@redhat.com>
  1736. - Updated to version 1.4.5.
  1737. - Removed ruby_cvs.2000062401.patch(included into ruby-1.4.5).
  1738. * Thu Jun 22 2000 akira yamada <akira@redhat.com>
  1739. - Updated to version 1.4.4(06/22/2000 CVS).
  1740. - Removed ruby-dev.10054.patch(included into ruby_cvs.patch).
  1741. * Thu Jun 22 2000 akira yamada <akira@redhat.com>
  1742. - Renamed to ruby_cvs20000620.patch from ruby_cvs.patch.
  1743. * Tue Jun 20 2000 akira yamada <akira@redhat.com>
  1744. - Updated to version 1.4.4(06/20/2000 CVS).
  1745. - Removed ruby-list.23190.patch(included into ruby_cvs.patch).
  1746. - Added ruby-dev.10054.patch.
  1747. * Thu Jun 15 2000 akira yamada <akira@redhat.com>
  1748. - Updated to version 1.4.4(06/12/2000 CVS).
  1749. - Added manuals and FAQs.
  1750. - Split into ruby, ruby-devel, ruby-tcltk, ruby-docs, irb.
  1751. * Tue Jun 13 2000 Mitsuo Hamada <mhamada@redhat.com>
  1752. - Updated to version 1.4.4
  1753. * Wed Dec 08 1999 Atsushi Yamagata <yamagata@plathome.co.jp>
  1754. - Updated to version 1.4.3
  1755. * Mon Sep 20 1999 Atsushi Yamagata <yamagata@plathome.co.jp>
  1756. - Updated to version 1.4.2 (Sep 18)
  1757. * Fri Sep 17 1999 Atsushi Yamagata <yamagata@plathome.co.jp>
  1758. - Updated to version 1.4.2
  1759. * Tue Aug 17 1999 Atsushi Yamagata <yamagata@plathome.co.jp>
  1760. - Updated to version 1.4.0
  1761. * Fri Jul 23 1999 Atsushi Yamagata <yamagata@plathome.co.jp>
  1762. - 2nd release
  1763. - Updated to version 1.2.6(15 Jul 1999)
  1764. - striped %{prefix}/bin/ruby
  1765. * Mon Jun 28 1999 Atsushi Yamagata <yamagata@plathome.co.jp>
  1766. - Updated to version 1.2.6(21 Jun 1999)
  1767. * Wed Apr 14 1999 Atsushi Yamagata <yamagata@plathome.co.jp>
  1768. - Updated to version 1.2.5
  1769. * Fri Apr 09 1999 Atsushi Yamagata <yamagata@plathome.co.jp>
  1770. - Updated to version 1.2.4
  1771. * Fri Dec 25 1998 Toru Hoshina <hoshina@best.com>
  1772. - Version up to 1.2 stable.
  1773. * Fri Nov 27 1998 Toru Hoshina <hoshina@best.com>
  1774. - Version up to 1.1c9.
  1775. * Thu Nov 19 1998 Toru Hoshina <hoshina@best.com>
  1776. - Version up to 1.1c8, however it appear short life :-P
  1777. * Fri Nov 13 1998 Toru Hoshina <hoshina@best.com>
  1778. - Version up.
  1779. * Tue Sep 22 1998 Toru Hoshina <hoshina@best.com>
  1780. - To make a libruby.so.
  1781. * Mon Sep 21 1998 Toru Hoshina <hoshina@best.com>
  1782. - Modified SPEC in order to install libruby.a so that it should be used by
  1783. another ruby entention.
  1784. - 2nd release.
  1785. * Mon Mar 9 1998 Shoichi OZAWA <shoch@jsdi.or.jp>
  1786. - Added a powerPC arch part. Thanks, MURATA Nobuhiro <nob@makioka.y-min.or.jp>