Hello community, here is the log from the commit of package rubygem-file-tail for openSUSE:Factory checked in at 2015-02-10 20:21:48 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/rubygem-file-tail (Old) and /work/SRC/openSUSE:Factory/.rubygem-file-tail.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-file-tail" Changes: -------- --- /work/SRC/openSUSE:Factory/rubygem-file-tail/rubygem-file-tail.changes 2012-10-11 11:18:02.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.rubygem-file-tail.new/rubygem-file-tail.changes 2015-02-10 20:21:48.000000000 +0100 @@ -1,0 +2,6 @@ +Fri Feb 6 13:12:49 UTC 2015 - [email protected] + +- updated to version 1.1.0 + * Depend on tins ~ 1.0 + +------------------------------------------------------------------- Old: ---- file-tail-1.0.12.gem New: ---- file-tail-1.1.0.gem gem2rpm.yml ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ rubygem-file-tail.spec ++++++ --- /var/tmp/diff_new_pack.byTmcC/_old 2015-02-10 20:21:49.000000000 +0100 +++ /var/tmp/diff_new_pack.byTmcC/_new 2015-02-10 20:21:49.000000000 +0100 @@ -1,7 +1,7 @@ # # spec file for package rubygem-file-tail # -# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -16,51 +16,42 @@ # +# +# This file was generated with a gem2rpm.yml and not just plain gem2rpm. +# All sections marked as MANUAL, license headers, summaries and descriptions +# can be maintained in that file. Please consult this file before editing any +# of those fields +# + Name: rubygem-file-tail -Version: 1.0.12 +Version: 1.1.0 Release: 0 %define mod_name file-tail %define mod_full_name %{mod_name}-%{version} - BuildRoot: %{_tmppath}/%{name}-%{version}-build -BuildRequires: ruby-macros >= 1 -BuildRequires: rubygem(rdoc) > 3.10 +BuildRequires: %{rubygem gem2rpm} +BuildRequires: %{rubygem rdoc > 3.10} +BuildRequires: %{ruby} +BuildRequires: ruby-macros >= 5 Url: http://github.com/flori/file-tail -Source: %{mod_full_name}.gem +Source: http://rubygems.org/gems/%{mod_full_name}.gem +Source1: gem2rpm.yml Summary: File::Tail for Ruby License: GPL-2.0 Group: Development/Languages/Ruby %description -Library to tail files in 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. +Library to tail files in Ruby. %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 +%gem_install \ + --doc-files="CHANGES COPYING README.rdoc" \ + -f -%files -%defattr(-,root,root,-) -%{_libdir}/ruby/gems/%{rb_ver}/cache/%{mod_full_name}.gem -%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/ -%{_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}/ +%gem_packages %changelog ++++++ file-tail-1.0.12.gem -> file-tail-1.1.0.gem ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/.gitignore new/.gitignore --- old/.gitignore 1970-01-01 01:00:00.000000000 +0100 +++ new/.gitignore 2014-09-26 21:07:14.000000000 +0200 @@ -1,5 +1,7 @@ *.rbc .*.sw[pon] +.AppleDouble +.bundle .rbx Gemfile.lock coverage diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/.travis.yml new/.travis.yml --- old/.travis.yml 1970-01-01 01:00:00.000000000 +0100 +++ new/.travis.yml 2014-09-26 21:07:14.000000000 +0200 @@ -1,12 +1,10 @@ rvm: - - 1.8.7 - 1.9.2 - 1.9.3 + - 2.0.0 + - 2.1.2 - ruby-head - - ree - - rbx-18mode - rbx-19mode - - jruby-18mode - jruby-19mode matrix: allow_failures: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/CHANGES new/CHANGES --- old/CHANGES 1970-01-01 01:00:00.000000000 +0100 +++ new/CHANGES 2014-09-26 21:07:14.000000000 +0200 @@ -1,3 +1,4 @@ +2014-09-26 * 1.1.0 * Depend on tins ~ 1.0 2012-05-31 * 1.0.10 * Use rewind to force IO#lineno to be reset. 2012-05-31 * 1.0.9 * Reopen file in :top mode at the beginning. 2011-12-24 * 1.0.8 * Support simplecov. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Gemfile new/Gemfile --- old/Gemfile 1970-01-01 01:00:00.000000000 +0100 +++ new/Gemfile 2014-09-26 21:07:14.000000000 +0200 @@ -1,8 +1,9 @@ # vim: set filetype=ruby et sw=2 ts=2: -source :rubygems +source 'https://rubygems.org' gemspec + group :development do gem 'simplecov' gem 'utils' diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Rakefile new/Rakefile --- old/Rakefile 1970-01-01 01:00:00.000000000 +0100 +++ new/Rakefile 2014-09-26 21:07:14.000000000 +0200 @@ -11,10 +11,11 @@ summary "#{path_name.camelize} for Ruby" description 'Library to tail files in Ruby' test_dir 'tests' - ignore '.*.sw[pon]', 'pkg', 'Gemfile.lock', 'coverage', '*.rbc', '.rbx' + ignore '.*.sw[pon]', 'pkg', 'Gemfile.lock', 'coverage', '*.rbc', '.rbx', '.AppleDouble', '.bundle' readme 'README.rdoc' + licenses << 'GPL-2.0' - dependency 'tins', '~>0.5' + dependency 'tins', '~>1.0' development_dependency 'test-unit', '~>2.4.0' diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/VERSION new/VERSION --- old/VERSION 1970-01-01 01:00:00.000000000 +0100 +++ new/VERSION 2014-09-26 21:07:14.000000000 +0200 @@ -1 +1 @@ -1.0.12 +1.1.0 Files old/checksums.yaml.gz and new/checksums.yaml.gz differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/file-tail.gemspec new/file-tail.gemspec --- old/file-tail.gemspec 1970-01-01 01:00:00.000000000 +0100 +++ new/file-tail.gemspec 2014-09-26 21:07:14.000000000 +0200 @@ -1,38 +1,40 @@ # -*- encoding: utf-8 -*- +# stub: file-tail 1.1.0 ruby lib Gem::Specification.new do |s| s.name = "file-tail" - s.version = "1.0.12" + s.version = "1.1.0" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= + s.require_paths = ["lib"] s.authors = ["Florian Frank"] - s.date = "2012-10-02" + s.date = "2014-09-26" s.description = "Library to tail files in Ruby" s.email = "[email protected]" - s.extra_rdoc_files = ["README.rdoc", "lib/file/tail/group.rb", "lib/file/tail/line_extension.rb", "lib/file/tail/logfile.rb", "lib/file/tail/tailer.rb", "lib/file/tail/version.rb", "lib/file/tail.rb", "lib/file-tail.rb"] + s.extra_rdoc_files = ["README.rdoc", "lib/file-tail.rb", "lib/file/tail.rb", "lib/file/tail/group.rb", "lib/file/tail/line_extension.rb", "lib/file/tail/logfile.rb", "lib/file/tail/tailer.rb", "lib/file/tail/version.rb"] s.files = [".gitignore", ".travis.yml", "CHANGES", "COPYING", "Gemfile", "README.rdoc", "Rakefile", "VERSION", "bin/rtail", "examples/pager.rb", "examples/tail.rb", "file-tail.gemspec", "lib/file-tail.rb", "lib/file/tail.rb", "lib/file/tail/group.rb", "lib/file/tail/line_extension.rb", "lib/file/tail/logfile.rb", "lib/file/tail/tailer.rb", "lib/file/tail/version.rb", "tests/file_tail_group_test.rb", "tests/file_tail_test.rb", "tests/test_helper.rb"] s.homepage = "http://github.com/flori/file-tail" + s.licenses = ["GPL-2.0"] s.rdoc_options = ["--title", "File-tail - File::Tail for Ruby", "--main", "README.rdoc"] - s.require_paths = ["lib"] - s.rubygems_version = "1.8.24" + s.rubygems_version = "2.2.2" s.summary = "File::Tail for Ruby" s.test_files = ["tests/file_tail_group_test.rb", "tests/file_tail_test.rb", "tests/test_helper.rb"] if s.respond_to? :specification_version then - s.specification_version = 3 + s.specification_version = 4 if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then - s.add_development_dependency(%q<gem_hadar>, ["~> 0.1.8"]) + s.add_development_dependency(%q<gem_hadar>, ["~> 1.0.0"]) s.add_development_dependency(%q<test-unit>, ["~> 2.4.0"]) - s.add_runtime_dependency(%q<tins>, ["~> 0.5"]) + s.add_runtime_dependency(%q<tins>, ["~> 1.0"]) else - s.add_dependency(%q<gem_hadar>, ["~> 0.1.8"]) + s.add_dependency(%q<gem_hadar>, ["~> 1.0.0"]) s.add_dependency(%q<test-unit>, ["~> 2.4.0"]) - s.add_dependency(%q<tins>, ["~> 0.5"]) + s.add_dependency(%q<tins>, ["~> 1.0"]) end else - s.add_dependency(%q<gem_hadar>, ["~> 0.1.8"]) + s.add_dependency(%q<gem_hadar>, ["~> 1.0.0"]) s.add_dependency(%q<test-unit>, ["~> 2.4.0"]) - s.add_dependency(%q<tins>, ["~> 0.5"]) + s.add_dependency(%q<tins>, ["~> 1.0"]) end end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/file/tail/version.rb new/lib/file/tail/version.rb --- old/lib/file/tail/version.rb 1970-01-01 01:00:00.000000000 +0100 +++ new/lib/file/tail/version.rb 2014-09-26 21:07:14.000000000 +0200 @@ -1,7 +1,7 @@ module File::Tail # File::Tail version - VERSION = '1.0.12' - VERSION_ARRAY = VERSION.split(/\./).map { |x| x.to_i } # :nodoc: + VERSION = '1.1.0' + VERSION_ARRAY = VERSION.split('.').map(&:to_i) # :nodoc: VERSION_MAJOR = VERSION_ARRAY[0] # :nodoc: VERSION_MINOR = VERSION_ARRAY[1] # :nodoc: VERSION_BUILD = VERSION_ARRAY[2] # :nodoc: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/metadata new/metadata --- old/metadata 1970-01-01 01:00:00.000000000 +0100 +++ new/metadata 2014-09-26 21:07:14.000000000 +0200 @@ -1,36 +1,32 @@ --- !ruby/object:Gem::Specification name: file-tail version: !ruby/object:Gem::Version - version: 1.0.12 - prerelease: + version: 1.1.0 platform: ruby authors: - Florian Frank autorequire: bindir: bin cert_chain: [] -date: 2012-10-02 00:00:00.000000000 Z +date: 2014-09-26 00:00:00.000000000 Z dependencies: - !ruby/object:Gem::Dependency name: gem_hadar requirement: !ruby/object:Gem::Requirement - none: false requirements: - - ~> - !ruby/object:Gem::Version - version: 0.1.8 + version: 1.0.0 type: :development prerelease: false version_requirements: !ruby/object:Gem::Requirement - none: false requirements: - - ~> - !ruby/object:Gem::Version - version: 0.1.8 + version: 1.0.0 - !ruby/object:Gem::Dependency name: test-unit requirement: !ruby/object:Gem::Requirement - none: false requirements: - - ~> - !ruby/object:Gem::Version @@ -38,7 +34,6 @@ type: :development prerelease: false version_requirements: !ruby/object:Gem::Requirement - none: false requirements: - - ~> - !ruby/object:Gem::Version @@ -46,32 +41,30 @@ - !ruby/object:Gem::Dependency name: tins requirement: !ruby/object:Gem::Requirement - none: false requirements: - - ~> - !ruby/object:Gem::Version - version: '0.5' + version: '1.0' type: :runtime prerelease: false version_requirements: !ruby/object:Gem::Requirement - none: false requirements: - - ~> - !ruby/object:Gem::Version - version: '0.5' + version: '1.0' description: Library to tail files in Ruby email: [email protected] executables: [] extensions: [] extra_rdoc_files: - README.rdoc +- lib/file-tail.rb +- lib/file/tail.rb - lib/file/tail/group.rb - lib/file/tail/line_extension.rb - lib/file/tail/logfile.rb - lib/file/tail/tailer.rb - lib/file/tail/version.rb -- lib/file/tail.rb -- lib/file-tail.rb files: - .gitignore - .travis.yml @@ -96,7 +89,9 @@ - tests/file_tail_test.rb - tests/test_helper.rb homepage: http://github.com/flori/file-tail -licenses: [] +licenses: +- GPL-2.0 +metadata: {} post_install_message: rdoc_options: - --title @@ -106,25 +101,20 @@ require_paths: - lib required_ruby_version: !ruby/object:Gem::Requirement - none: false requirements: - - - ! '>=' + - - '>=' - !ruby/object:Gem::Version version: '0' - segments: - - 0 - hash: 677393849118984260 required_rubygems_version: !ruby/object:Gem::Requirement - none: false requirements: - - - ! '>=' + - - '>=' - !ruby/object:Gem::Version version: '0' requirements: [] rubyforge_project: -rubygems_version: 1.8.24 +rubygems_version: 2.2.2 signing_key: -specification_version: 3 +specification_version: 4 summary: File::Tail for Ruby test_files: - tests/file_tail_group_test.rb ++++++ gem2rpm.yml ++++++ # --- # ## used by gem2rpm # :summary: this is a custom summary # ## used by gem2rpm # :description: |- # this is a custom description # # it can be multiline # ## used by gem2rpm # :license: MIT or Ruby # ## used by gem2rpm and gem_packages # :version_suffix: -x_y # ## used by gem2rpm and gem_packages # :disable_docs: true # ## used by gem2rpm # :disable_automatic_rdoc_dep: true # ## used by gem2rpm # :preamble: |- # BuildRequires: foobar # Requires: foobar # ## used by gem2rpm # :patches: # foo.patch: -p1 # bar.patch: # ## used by gem2rpm :sources: # - foo.desktop # - bar.desktop # :gem_install_args: '....' # ## used by gem2rpm # :pre_install: |- # %if 0%{?use_system_libev} # export USE_VENDORED_LIBEV="no" # %endif # ## used by gem2rpm # :post_install: |- # # delete custom files here or do other fancy stuff # install -D -m 0644 %{S:1} %{buildroot}%{_bindir}/gem2rpm-opensuse # ## used by gem2rpm # :testsuite_command: |- # (pushd %{buildroot}%{gem_base}/gems/%{mod_full_name} && rake test) # ## used by gem2rpm # :filelist: |- # /usr/bin/gem2rpm-opensuse # ## used by gem2rpm # :scripts: # :post: |- # /bin/echo foo # ## used by gem_packages # :main: # :preamble: |- # Requires: util-linux # Recommends: pwgen # :filelist: |- # /usr/bin/gem2rpm-opensuse # ## used by gem_packages # :custom: # apache: # :preamble: |- # Requires: ..... # :filelist: |- # /etc/apache2/conf.d/passenger.conf # :summary: Custom summary is optional # :description: |- # Custom description is optional # # bar # :post: |- # /bin/echo foo # -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
