ruby-vl.spec 90 KB

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