ruby-vl.spec 89 KB

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