2007-01-16 00:35:31 +01:00
|
|
|
#
|
2011-02-22 21:30:58 +01:00
|
|
|
# spec file for package ruby
|
2007-01-16 00:35:31 +01:00
|
|
|
#
|
2014-01-06 09:27:21 +01:00
|
|
|
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
2007-01-16 00:35:31 +01:00
|
|
|
#
|
2008-09-08 01:38:25 +02:00
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
|
2007-01-16 00:35:31 +01:00
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
|
2012-07-02 16:18:33 +02:00
|
|
|
|
2007-01-16 00:35:31 +01:00
|
|
|
Name: ruby
|
2014-09-10 13:32:05 +02:00
|
|
|
Version: 2.1
|
2011-03-18 14:47:34 +01:00
|
|
|
Release: 0
|
2007-01-16 00:35:31 +01:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
2014-09-10 13:32:05 +02:00
|
|
|
Source: README
|
2007-10-11 22:07:03 +02:00
|
|
|
Url: http://www.ruby-lang.org/
|
2007-01-16 00:35:31 +01:00
|
|
|
Summary: An Interpreted Object-Oriented Scripting Language
|
2014-09-10 13:32:05 +02:00
|
|
|
License: MIT
|
2014-09-10 13:32:45 +02:00
|
|
|
Group: Development/Languages/Ruby
|
2014-09-10 13:32:05 +02:00
|
|
|
BuildRequires: ruby%{version}-devel
|
|
|
|
#!BuildIgnore: rubygem-gem2rpm
|
|
|
|
%requires_ge ruby%{version}
|
|
|
|
Provides: rubygems = 1.8.15
|
|
|
|
Obsoletes: rubygems < 1.8.15
|
2012-05-08 13:54:54 +02:00
|
|
|
|
2007-01-16 00:35:31 +01:00
|
|
|
%description
|
|
|
|
Ruby is an interpreted scripting language for quick and easy
|
|
|
|
object-oriented programming. It has many features for processing text
|
|
|
|
files and performing system management tasks (as in Perl). It is
|
|
|
|
simple, straight-forward, and extensible.
|
|
|
|
|
|
|
|
* Ruby features:
|
|
|
|
|
|
|
|
- Simple Syntax
|
|
|
|
|
|
|
|
- *Normal* Object-Oriented features (class, method calls, for
|
|
|
|
example)
|
|
|
|
|
|
|
|
- *Advanced* Object-Oriented features(Mix-in, Singleton-method, for
|
|
|
|
example)
|
|
|
|
|
|
|
|
- Operator Overloading
|
|
|
|
|
|
|
|
- Exception Handling
|
|
|
|
|
|
|
|
- Iterators and Closures
|
|
|
|
|
|
|
|
- Garbage Collection
|
|
|
|
|
|
|
|
- Dynamic Loading of Object Files (on some architectures)
|
|
|
|
|
|
|
|
- Highly Portable (works on many UNIX machines; DOS, Windows, Mac,
|
|
|
|
BeOS, and more)
|
|
|
|
|
|
|
|
%package devel
|
2007-08-06 18:21:32 +02:00
|
|
|
Summary: Development files to link against Ruby
|
2012-07-02 16:18:33 +02:00
|
|
|
Group: Development/Languages/Ruby
|
2014-09-10 13:32:05 +02:00
|
|
|
Requires: %{name}
|
|
|
|
%requires_ge ruby%{version}-devel
|
2012-05-08 13:54:54 +02:00
|
|
|
|
2007-01-16 00:35:31 +01:00
|
|
|
%description devel
|
|
|
|
Development files to link against Ruby.
|
|
|
|
|
|
|
|
%prep
|
2011-03-18 14:47:34 +01:00
|
|
|
|
2007-01-16 00:35:31 +01:00
|
|
|
%build
|
|
|
|
|
|
|
|
%install
|
2014-09-10 13:32:05 +02:00
|
|
|
install -D -m 0644 %{S:0} %{buildroot}/usr/share/doc/packages/ruby/README
|
|
|
|
install -D -m 0644 %{S:0} %{buildroot}/usr/share/doc/packages/ruby-devel/README
|
2012-08-01 20:58:56 +02:00
|
|
|
|
2007-01-16 00:35:31 +01:00
|
|
|
%files
|
2014-09-10 13:32:05 +02:00
|
|
|
%defattr(-,root,root)
|
|
|
|
%doc /usr/share/doc/packages/ruby/
|
2007-01-16 00:35:31 +01:00
|
|
|
|
2014-09-10 13:32:05 +02:00
|
|
|
%files devel
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%doc /usr/share/doc/packages/ruby-devel/
|
2007-01-16 00:35:31 +01:00
|
|
|
|
2012-07-02 16:18:33 +02:00
|
|
|
%changelog
|