Hello community,
here is the log from the commit of package rubygem-treetop-1_4.4636 for
openSUSE:13.2:Update checked in at 2016-02-07 17:29:28
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:13.2:Update/rubygem-treetop-1_4.4636 (Old)
and /work/SRC/openSUSE:13.2:Update/.rubygem-treetop-1_4.4636.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-treetop-1_4.4636"
Changes:
--------
New Changes file:
--- /dev/null 2016-01-27 19:41:03.648095915 +0100
+++
/work/SRC/openSUSE:13.2:Update/.rubygem-treetop-1_4.4636.new/rubygem-treetop-1_4.changes
2016-02-07 17:29:29.000000000 +0100
@@ -0,0 +1,73 @@
+-------------------------------------------------------------------
+Mon Aug 26 05:05:30 UTC 2013 - [email protected]
+
+- updated to version 1.4.15, no changelog
+
+-------------------------------------------------------------------
+Tue Jun 4 16:39:14 UTC 2013 - [email protected]
+
+- updated to version 1.4.14
+
+-------------------------------------------------------------------
+Tue Oct 30 05:48:50 UTC 2012 - [email protected]
+
+- updated to version 1.4.12
+
+-------------------------------------------------------------------
+Fri Oct 12 09:47:51 UTC 2012 - [email protected]
+
+- updated to version 1.4.11, no changelog
+
+-------------------------------------------------------------------
+Tue Jul 31 14:47:42 UTC 2012 - [email protected]
+
+- use new gem2rpm to get new provisions
+
+-------------------------------------------------------------------
+Wed Apr 4 19:50:19 UTC 2012 - [email protected]
+
+- update to 1.4.10, no changelog
+
+-------------------------------------------------------------------
+Fri Mar 23 11:09:56 UTC 2012 - [email protected]
+
+- Spec file cleanup:
+ * Factory preparation
+
+-------------------------------------------------------------------
+Wed Dec 14 18:52:11 UTC 2011 - [email protected]
+
+- move more documentation to subpackage
+- don't have executable script on documenation
+
+-------------------------------------------------------------------
+Thu Dec 9 16:13:03 UTC 2010 - [email protected]
+
+- update to 1.4.9
+- fix url
+
+-------------------------------------------------------------------
+Mon Jun 14 18:27:26 UTC 2010 - [email protected]
+
+- update to version 1.4.8
+
+-------------------------------------------------------------------
+Fri Jun 11 10:00:01 UTC 2010 - [email protected]
+
+- use rubygems_requires macro
+
+-------------------------------------------------------------------
+Fri Dec 25 02:47:01 UTC 2009 - [email protected]
+
+- update to 1.4.3
+
+-------------------------------------------------------------------
+Thu Oct 1 19:39:15 CEST 2009 - [email protected]
+
+- update to 1.4.2
+
+-------------------------------------------------------------------
+Tue Mar 31 19:18:38 CEST 2009 - [email protected]
+
+- initial package
+
New:
----
rubygem-treetop-1_4.changes
rubygem-treetop-1_4.spec
treetop-1.4.15.gem
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ rubygem-treetop-1_4.spec ++++++
#
# spec file for package rubygem-treetop-1_4
#
# Copyright (c) 2014 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-treetop-1_4
Version: 1.4.15
Release: 0
%define mod_name treetop
%define mod_full_name %{mod_name}-%{version}
%define mod_branch -%{version}
%define mod_weight 10415
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: ruby-macros >= 3
BuildRequires: update-alternatives
Url: https://github.com/cjheath/treetop
Source: http://rubygems.org/gems/%{mod_full_name}.gem
Summary: A Ruby-based text parsing and interpretation DSL
License: MIT
Group: Development/Languages/Ruby
PreReq: update-alternatives
%description
A Ruby-based text parsing and interpretation DSL
%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
mkdir -p %{buildroot}%{_sysconfdir}/alternatives
mv %{buildroot}%{_bindir}/tt{,%{mod_branch}}
touch %{buildroot}%{_sysconfdir}/alternatives/tt
ln -s %{_sysconfdir}/alternatives/tt %{buildroot}%{_bindir}/tt
mkdir -p %{buildroot}%{_docdir}/%{name}
ln -s %{gem_base}/gems/%{mod_full_name}/LICENSE
%buildroot/%{_docdir}/%{name}/LICENSE
ln -s %{gem_base}/gems/%{mod_full_name}/README.md
%buildroot/%{_docdir}/%{name}/README.md
%post
/usr/sbin/update-alternatives --install \
%{_bindir}/tt tt %{_bindir}/tt%{mod_branch} %{mod_weight}
%preun
if [ "$1" = 0 ] ; then
/usr/sbin/update-alternatives --remove tt %{_bindir}/tt%{mod_branch}
fi
%files
%defattr(-,root,root,-)
%{_docdir}/%{name}
%{_bindir}/tt%{mod_branch}
%{_bindir}/tt
%ghost %{_sysconfdir}/alternatives/tt
%{gem_base}/cache/%{mod_full_name}.gem
%{gem_base}/gems/%{mod_full_name}/
%exclude %{gem_base}/gems/%{mod_full_name}/spec
%{gem_base}/specifications/%{mod_full_name}.gemspec
%files doc
%defattr(-,root,root,-)
%doc %{gem_base}/doc
%files testsuite
%defattr(-,root,root,-)
%{gem_base}/gems/%{mod_full_name}/spec
%changelog