ruby-vl.spec 84 KB

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