forked from pool/rubygem-mixlib-log
updated with gem2rpm
OBS-URL: https://build.opensuse.org/package/show/devel:languages:ruby:extensions/rubygem-mixlib-log?expand=0&rev=3
This commit is contained in:
parent
24f75d49a2
commit
11f62f9054
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:d06702c453454d7a75b6bbc74cbe7114f72e231f07f482e7cb39e7f05e4ca912
|
|
||||||
size 10240
|
|
3
mixlib-log-1.4.1.gem
Normal file
3
mixlib-log-1.4.1.gem
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:2887ef2b2a1e028a9d692cea7ed369de4ae3418f17c4bcd97697a61d68899371
|
||||||
|
size 12288
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Aug 1 05:05:27 UTC 2012 - coolo@suse.com
|
||||||
|
|
||||||
|
- updated to version 1.4.1
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Apr 21 23:45:47 CEST 2011 - berendt@b1-systems.de
|
Thu Apr 21 23:45:47 CEST 2011 - berendt@b1-systems.de
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package rubygem-mixlib-log (Version 1.1.0)
|
# spec file for package rubygem-mixlib-log
|
||||||
#
|
#
|
||||||
# Copyright (c) 2010 B1 Systems GmbH, Vohburg, Germany.
|
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -12,39 +12,67 @@
|
|||||||
# license that conforms to the Open Source Definition (Version 1.9)
|
# license that conforms to the Open Source Definition (Version 1.9)
|
||||||
# published by the Open Source Initiative.
|
# published by the Open Source Initiative.
|
||||||
|
|
||||||
# norootforbuild
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||||
|
#
|
||||||
|
|
||||||
|
|
||||||
Name: rubygem-mixlib-log
|
Name: rubygem-mixlib-log
|
||||||
Version: 1.3.0
|
Version: 1.4.1
|
||||||
Release: 0
|
Release: 0
|
||||||
%define mod_name mixlib-log
|
%define mod_name mixlib-log
|
||||||
#
|
%define mod_full_name %{mod_name}-%{version}
|
||||||
Group: Development/Languages/Ruby
|
|
||||||
License: GPLv2+ or Ruby
|
|
||||||
#
|
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
BuildRequires: rubygems_with_buildroot_patch
|
BuildRequires: ruby-macros >= 1
|
||||||
%rubygems_requires
|
|
||||||
#
|
|
||||||
Url: http://www.opscode.com
|
Url: http://www.opscode.com
|
||||||
Source: %{mod_name}-%{version}.gem
|
Source: %{mod_full_name}.gem
|
||||||
#
|
|
||||||
Summary: A gem that provides a simple mixin for log functionality
|
Summary: A gem that provides a simple mixin for log functionality
|
||||||
|
License: GPLv2+ or Ruby
|
||||||
|
Group: Development/Languages/Ruby
|
||||||
|
|
||||||
%description
|
%description
|
||||||
A gem that provides a simple mixin for log functionality
|
A gem that provides a simple mixin for log functionality
|
||||||
|
|
||||||
%prep
|
%package doc
|
||||||
%build
|
Summary: RDoc documentation for %{mod_name}
|
||||||
%install
|
Group: Development/Languages/Ruby
|
||||||
%gem_install %{S:0}
|
Requires: %{name} = %{version}
|
||||||
|
|
||||||
%clean
|
%description doc
|
||||||
%{__rm} -rf %{buildroot}
|
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
|
%files
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
%{_libdir}/ruby/gems/%{rb_ver}/cache/%{mod_name}-%{version}.gem
|
%{_libdir}/ruby/gems/%{rb_ver}/cache/%{mod_full_name}.gem
|
||||||
%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_name}-%{version}/
|
%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/
|
||||||
%{_libdir}/ruby/gems/%{rb_ver}/specifications/%{mod_name}-%{version}.gemspec
|
%exclude %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/spec
|
||||||
%doc %{_libdir}/ruby/gems/%{rb_ver}/doc/%{mod_name}-%{version}/
|
%{_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}/spec
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
x
Reference in New Issue
Block a user