Ruby 2.0.0(RPM)
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
]
開始行:
''目次''
#contents
~
----
~
※ [[RPM]] も参照の事。~
~
*準備 [#m57694ed]
~
*インストール [#w20d960f]
+''ソースの取得''
# su - rpmdevel
$ cd rpm/SOURCES
$ wget http://cache.ruby-lang.org/pub/ruby/ruby-2.0.0-p4...
~
+''SPECの作成''
$ cd /home/rpmdevel/rpm/SPECS
$ vi ruby200p451.spec
~
以下が中身。~
(参考:[[ソフトウェアエンジニアリング - CentOS 6でrubyの...
~
%define rubyver 2.0.0
%define rubyminorver p451
Name: ruby
Version: %{rubyver}%{rubyminorver}
Release: 2%{?dist}
License: Ruby License/GPL - see COPYING
URL: http://www.ruby-lang.org/
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release...
BuildRequires: readline libyaml libyaml-devel readline-...
Requires: libyaml
Source0: ftp://ftp.ruby-lang.org/pub/ruby/ruby-%{...
Summary: An interpreter of object-oriented script...
Group: Development/Languages
Provides: ruby(abi) = 2.0
Provides: ruby-irb
Provides: ruby-rdoc
Provides: ruby-libs
Provides: ruby-devel
Provides: rubygems
Obsoletes: ruby
Obsoletes: ruby-libs
Obsoletes: ruby-irb
Obsoletes: ruby-rdoc
Obsoletes: ruby-devel
Obsoletes: rubygems
%description
Ruby is the interpreted scripting language for quick and...
object-oriented programming. It has many features to pr...
files and to do system management tasks (as in Perl). I...
straight-forward, and extensible.
%prep
%setup -n ruby-%{rubyver}-%{rubyminorver}
%build
export CFLAGS="$RPM_OPT_FLAGS -Wall -fno-strict-aliasing"
%configure \
--enable-shared \
--disable-rpath \
--without-X11 \
--without-tk \
--includedir=%{_includedir}/ruby \
--libdir=%{_libdir}
make %{?_smp_mflags}
%install
# installing binaries ...
make install DESTDIR=$RPM_BUILD_ROOT
#we don't want to keep the src directory
rm -rf $RPM_BUILD_ROOT/usr/src
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-, root, root)
%{_bindir}
%{_includedir}
%{_datadir}
%{_libdir}
~
+''RPMの作成(1回目:失敗)''
$ rpmbuild -bb ruby200p451.spec
依存性についてエラーが表示される。~
エラー: ビルド依存性の失敗:
libyaml は ruby-2.1.1-1.el6.i686 に必要とされて...
libyaml-devel は ruby-2.1.1-1.el6.i686 に必要と...
readline-devel は ruby-2.1.1-1.el6.i686 に必要と...
ncurses-devel は ruby-2.1.1-1.el6.i686 に必要と...
gdbm-devel は ruby-2.1.1-1.el6.i686 に必要とされ...
tcl-devel は ruby-2.1.1-1.el6.i686 に必要とされ...
libffi-devel は ruby-2.1.1-1.el6.i686 に必要とさ...
~
++yumで足りないものをインストールする
$ exit
# yum -y install readline-devel ncurses-devel gdbm-devel...
~
デフォルトのリポジトリに libyaml、libyaml-devel が無いの...
~
(※EPELのリポジトリ設定については[[yumリポジトリにEPELを...
# yum --enablerepo=epel install libyaml libyaml-devel
~
+''RPMの作成(2回目:成功)''
$ rpmbuild -bb ruby200p451.spec
~
+''インストール''
$ sudo rpm -Uvh /home/rpmdevel/rpm/RPMS/i686/ruby-2.0.0p...
~
+''バージョン確認''
$ ruby -v
ruby 2.0.0p451 (2014-02-24 revision 45167) [i686-linux]
~
+''bundlerのインストール''~
※Redmineが使用するGemを一括インストールするためのツール。~
# gem install bundler --no-rdoc --no-ri
Fetching: bundler-1.5.3.gem (100%)
Successfully installed bundler-1.5.3
1 gem installed
~
+''RubyとPassengerのビルドに必要なヘッダファイル等をイン...
# yum install libcurl-devel
~
+''ImageMagickとヘッダファイル・日本語フォントのインスト...
# yum install ImageMagick ImageMagick-devel
# yum install ipa-pgothic-fonts
ImageMagickと日本語フォントはガントチャートをPNG形式の画...
~
''追記:''~
必須ではないと思っていたらRedmineのインストールで''bundle...
なので忘れずにインストールする。
Gem::Installer::ExtensionBuildError: ERROR: Failed to bu...
/usr/bin/ruby extconf.rb
checking for Ruby version >= 1.8.5... yes
checking for gcc... yes
checking for Magick-config... no
Can't install RMagick 2.13.2. Can't find Magick-config i...
*** extconf.rb failed ***
Could not create Makefile due to some reason, probably l...
libraries and/or headers. Check the mkmf.log file for m...
need configuration options.
Provided configuration options:
--with-opt-dir
--without-opt-dir
--with-opt-include
--without-opt-include=${opt-dir}/include
--with-opt-lib
--without-opt-lib=${opt-dir}/lib
--with-make-prog
--without-make-prog
--srcdir=.
--curdir
--ruby=/usr/bin/ruby
Gem files will remain installed in /usr/lib/ruby/gems/2....
Results logged to /usr/lib/ruby/gems/2.0.0/gems/rmagick-...
An error occurred while installing rmagick (2.13.2), and...
Make sure that `gem install rmagick -v '2.13.2'` succeed...
終了行:
''目次''
#contents
~
----
~
※ [[RPM]] も参照の事。~
~
*準備 [#m57694ed]
~
*インストール [#w20d960f]
+''ソースの取得''
# su - rpmdevel
$ cd rpm/SOURCES
$ wget http://cache.ruby-lang.org/pub/ruby/ruby-2.0.0-p4...
~
+''SPECの作成''
$ cd /home/rpmdevel/rpm/SPECS
$ vi ruby200p451.spec
~
以下が中身。~
(参考:[[ソフトウェアエンジニアリング - CentOS 6でrubyの...
~
%define rubyver 2.0.0
%define rubyminorver p451
Name: ruby
Version: %{rubyver}%{rubyminorver}
Release: 2%{?dist}
License: Ruby License/GPL - see COPYING
URL: http://www.ruby-lang.org/
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release...
BuildRequires: readline libyaml libyaml-devel readline-...
Requires: libyaml
Source0: ftp://ftp.ruby-lang.org/pub/ruby/ruby-%{...
Summary: An interpreter of object-oriented script...
Group: Development/Languages
Provides: ruby(abi) = 2.0
Provides: ruby-irb
Provides: ruby-rdoc
Provides: ruby-libs
Provides: ruby-devel
Provides: rubygems
Obsoletes: ruby
Obsoletes: ruby-libs
Obsoletes: ruby-irb
Obsoletes: ruby-rdoc
Obsoletes: ruby-devel
Obsoletes: rubygems
%description
Ruby is the interpreted scripting language for quick and...
object-oriented programming. It has many features to pr...
files and to do system management tasks (as in Perl). I...
straight-forward, and extensible.
%prep
%setup -n ruby-%{rubyver}-%{rubyminorver}
%build
export CFLAGS="$RPM_OPT_FLAGS -Wall -fno-strict-aliasing"
%configure \
--enable-shared \
--disable-rpath \
--without-X11 \
--without-tk \
--includedir=%{_includedir}/ruby \
--libdir=%{_libdir}
make %{?_smp_mflags}
%install
# installing binaries ...
make install DESTDIR=$RPM_BUILD_ROOT
#we don't want to keep the src directory
rm -rf $RPM_BUILD_ROOT/usr/src
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-, root, root)
%{_bindir}
%{_includedir}
%{_datadir}
%{_libdir}
~
+''RPMの作成(1回目:失敗)''
$ rpmbuild -bb ruby200p451.spec
依存性についてエラーが表示される。~
エラー: ビルド依存性の失敗:
libyaml は ruby-2.1.1-1.el6.i686 に必要とされて...
libyaml-devel は ruby-2.1.1-1.el6.i686 に必要と...
readline-devel は ruby-2.1.1-1.el6.i686 に必要と...
ncurses-devel は ruby-2.1.1-1.el6.i686 に必要と...
gdbm-devel は ruby-2.1.1-1.el6.i686 に必要とされ...
tcl-devel は ruby-2.1.1-1.el6.i686 に必要とされ...
libffi-devel は ruby-2.1.1-1.el6.i686 に必要とさ...
~
++yumで足りないものをインストールする
$ exit
# yum -y install readline-devel ncurses-devel gdbm-devel...
~
デフォルトのリポジトリに libyaml、libyaml-devel が無いの...
~
(※EPELのリポジトリ設定については[[yumリポジトリにEPELを...
# yum --enablerepo=epel install libyaml libyaml-devel
~
+''RPMの作成(2回目:成功)''
$ rpmbuild -bb ruby200p451.spec
~
+''インストール''
$ sudo rpm -Uvh /home/rpmdevel/rpm/RPMS/i686/ruby-2.0.0p...
~
+''バージョン確認''
$ ruby -v
ruby 2.0.0p451 (2014-02-24 revision 45167) [i686-linux]
~
+''bundlerのインストール''~
※Redmineが使用するGemを一括インストールするためのツール。~
# gem install bundler --no-rdoc --no-ri
Fetching: bundler-1.5.3.gem (100%)
Successfully installed bundler-1.5.3
1 gem installed
~
+''RubyとPassengerのビルドに必要なヘッダファイル等をイン...
# yum install libcurl-devel
~
+''ImageMagickとヘッダファイル・日本語フォントのインスト...
# yum install ImageMagick ImageMagick-devel
# yum install ipa-pgothic-fonts
ImageMagickと日本語フォントはガントチャートをPNG形式の画...
~
''追記:''~
必須ではないと思っていたらRedmineのインストールで''bundle...
なので忘れずにインストールする。
Gem::Installer::ExtensionBuildError: ERROR: Failed to bu...
/usr/bin/ruby extconf.rb
checking for Ruby version >= 1.8.5... yes
checking for gcc... yes
checking for Magick-config... no
Can't install RMagick 2.13.2. Can't find Magick-config i...
*** extconf.rb failed ***
Could not create Makefile due to some reason, probably l...
libraries and/or headers. Check the mkmf.log file for m...
need configuration options.
Provided configuration options:
--with-opt-dir
--without-opt-dir
--with-opt-include
--without-opt-include=${opt-dir}/include
--with-opt-lib
--without-opt-lib=${opt-dir}/lib
--with-make-prog
--without-make-prog
--srcdir=.
--curdir
--ruby=/usr/bin/ruby
Gem files will remain installed in /usr/lib/ruby/gems/2....
Results logged to /usr/lib/ruby/gems/2.0.0/gems/rmagick-...
An error occurred while installing rmagick (2.13.2), and...
Make sure that `gem install rmagick -v '2.13.2'` succeed...
ページ名: