unlink
OBS-URL: https://build.opensuse.org/package/show/devel:languages:ruby:extensions/rubygem-i18n?expand=0&rev=2
This commit is contained in:
commit
558e3dc84b
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
## Default LFS
|
||||||
|
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.gem filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.lz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.lzma filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.obscpio filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.oxt filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.png filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.txz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.whl filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.zst filter=lfs diff=lfs merge=lfs -text
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
.osc
|
3
i18n-0.6.0.gem
Normal file
3
i18n-0.6.0.gem
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:400e7bf941f445176aac95ed22eea6fa4a74670543d1795e026473012b74f5dd
|
||||||
|
size 60928
|
26
rubygem-i18n.changes
Normal file
26
rubygem-i18n.changes
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Aug 3 07:49:10 UTC 2012 - coolo@suse.com
|
||||||
|
|
||||||
|
- remove no longer necessary suffix
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Jul 31 11:44:56 UTC 2012 - jreidinger@suse.com
|
||||||
|
|
||||||
|
- use new gem2rpm to provide correct dependencies for activesupport
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Mar 23 10:59:56 UTC 2012 - saschpe@suse.de
|
||||||
|
|
||||||
|
- Spec file cleanup:
|
||||||
|
* Factory preparation
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Aug 16 12:33:53 UTC 2011 - mrueckert@suse.de
|
||||||
|
|
||||||
|
- change license header to list MIT and Ruby license (bnc#712385)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 20 12:33:57 UTC 2011 - mrueckert@suse.de
|
||||||
|
|
||||||
|
- initial package of the 0.6 branch (0.6.0)
|
||||||
|
|
78
rubygem-i18n.spec
Normal file
78
rubygem-i18n.spec
Normal file
@ -0,0 +1,78 @@
|
|||||||
|
#
|
||||||
|
# spec file for package rubygem-i18n
|
||||||
|
#
|
||||||
|
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
|
#
|
||||||
|
# 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.
|
||||||
|
|
||||||
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||||
|
#
|
||||||
|
|
||||||
|
|
||||||
|
Name: rubygem-i18n
|
||||||
|
Version: 0.6.0
|
||||||
|
Release: 0
|
||||||
|
%define mod_name i18n
|
||||||
|
%define mod_full_name %{mod_name}-%{version}
|
||||||
|
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
|
BuildRequires: ruby-macros >= 1
|
||||||
|
Url: http://github.com/svenfuchs/i18n
|
||||||
|
Source: %{mod_full_name}.gem
|
||||||
|
Summary: New wave Internationalization support for Ruby
|
||||||
|
License: MIT and Ruby
|
||||||
|
Group: Development/Languages/Ruby
|
||||||
|
|
||||||
|
%description
|
||||||
|
New wave Internationalization support for Ruby.
|
||||||
|
|
||||||
|
%package doc
|
||||||
|
Summary: RDoc documentation for %{mod_name}
|
||||||
|
Group: Development/Languages/Ruby
|
||||||
|
Requires: %{name} = %{version}
|
||||||
|
|
||||||
|
%description doc
|
||||||
|
Documentation generated at gem installation time.
|
||||||
|
Usually in RDoc and RI formats.
|
||||||
|
|
||||||
|
%package testsuite
|
||||||
|
Summary: Test suite for %{mod_name}
|
||||||
|
Group: Development/Languages/Ruby
|
||||||
|
Requires: %{name} = %{version}
|
||||||
|
|
||||||
|
%description testsuite
|
||||||
|
Test::Unit or RSpec files, useful for developers.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
#gem_unpack
|
||||||
|
#if you need patches, apply them here and replace the # with a % sign in the surrounding lines
|
||||||
|
#gem_build
|
||||||
|
|
||||||
|
%build
|
||||||
|
|
||||||
|
%install
|
||||||
|
%gem_install -f
|
||||||
|
|
||||||
|
%files
|
||||||
|
%defattr(-,root,root,-)
|
||||||
|
%{_libdir}/ruby/gems/%{rb_ver}/cache/%{mod_full_name}.gem
|
||||||
|
%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/
|
||||||
|
%exclude %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/test
|
||||||
|
%{_libdir}/ruby/gems/%{rb_ver}/specifications/%{mod_full_name}.gemspec
|
||||||
|
|
||||||
|
%files doc
|
||||||
|
%defattr(-,root,root,-)
|
||||||
|
%doc %{_libdir}/ruby/gems/%{rb_ver}/doc/%{mod_full_name}/
|
||||||
|
|
||||||
|
%files testsuite
|
||||||
|
%defattr(-,root,root,-)
|
||||||
|
%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/test
|
||||||
|
|
||||||
|
%changelog
|
Loading…
x
Reference in New Issue
Block a user