Hello community,
here is the log from the commit of package rubygem-capistrano for
openSUSE:Factory checked in at 2013-05-07 07:35:28
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-capistrano (Old)
and /work/SRC/openSUSE:Factory/.rubygem-capistrano.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-capistrano"
Changes:
--------
--- /work/SRC/openSUSE:Factory/rubygem-capistrano/rubygem-capistrano.changes
2013-03-08 11:20:50.000000000 +0100
+++
/work/SRC/openSUSE:Factory/.rubygem-capistrano.new/rubygem-capistrano.changes
2013-05-07 07:35:29.000000000 +0200
@@ -1,0 +2,62 @@
+Mon Apr 29 07:34:53 UTC 2013 - [email protected]
+
+- updated to version 2.15.3
+ * For deploy:cleanup, use try_sudo with rm command. (@joshstaiger)
+ * Restore maintenance.rhtml (@chulkilee)
+ * Fixes GH-434, If branches is an array of array, iterate them separately.
(@gnufied)
+
+ A big "thank you" to the people who've pushed really amazing patches to the
+ 2.15.x branch so soon after it's release. 2.15.0 was just too huge to go out
+ bug free.
+
+ ## 2.15.2 / April 24 2013
+
+ * Fixed a bug with asset_paths (String vs. Array). (@joeycarmello)
+
+ ## 2.15.1 / April 23 2013
+
+ * Support for Rails 4 (and other) randomised asset manifest names. (@jimryan)
+
+ ## 2.15.0 / April 23 2013
+
+ * New varaible :shared_assets_prefix to allow people to host somewhere other
+ than `/assets/`. Default is `assets`.
+ * Bring back web:enable and web:disable tasks. Sincerely apologies to all
affected
+ removing these was one of the most glaring mistakes we've made on this
project
+ and I feel personally responsible.
+ * Makes :git_shallow_clone work with branches (@cannikin)
+ * Avoid removing required assets (@bosko)
+ * Fix escaping of asset_paths when calling `deploy:finalize_update` (@mcary)
+ * Improve parallel command logging (@mpapis)
+ * Allow updating variables in the cap shell `cap> set :some_setting new_value`
+ (@jpfuentes2)
+ * Add the option to configure `Capistrano::Logger.default_formatters=` this
+ relates to the previous merging of the capistrano-colors gem.
(@kellyredding)
+ * Don't attempt to connect to a nil `:gateway` (@mattheath)
+ * Simplify our .gemspec dependency list (@timoschilling)
+ * Make the existece of `config/deploy/{stage}.rb` optional, it'll be loaded if
+ it exists, otherwise we continue without it (@ymainier)
+ * Misc spelling/typo fixes. (@mv)
+ * Update mtime and atime with touch when fixing asset timestamps (@wildoats)
+ * Change call of `rake {env} precompile:all` to drop the errornous `{env}`
(@zxiest)
+ * Evaluate assets_role at runtime using a lambda (@nlenepveu)
+ * Handle when hosts (for example by joining/leaving the no_release meta group)
+ have different old releases for `deploy:cleanup` (@oggy)
+ * Check for nil when tearing down connections (@yyuu)
+ * Go back to using SCP for uploads as against SFTP (@pjungwir)
+ * Added an option to dereference symlinks when using the :copy strategy
+ (`set :copy_dereference_symlink, true`) useful when your working directory
+ contains files symlinked in from outside your project root (@mehmetc)
+ * Small typo fix in README (@yule)
+ * Add Ruby 2.0.0-p0 to the TravisCI build (@jarrettmeyer)
+ * Add the option to set the shared asset prefix for Rails,
+ (`set :shared_assets_prefix, "my_shared_assets"`) corresponds with it's
+ namesake in Rails. By default is set to `assets`. (@spectator)
+ * Improved error messages for `cap {stage} deploy:check` (@petems)
+ * Make `run_locally` work with the `--dry-run` flag. (@flagthisiskun)
+ * Fix a link in the README to writing a good commit message. (@mhutchin)
+ * Code style fixes (@mv)
+ * Report differently if the command was killed by a signal (for example the
+ oom killer on Ubuntu/Debian). (@tanob)
+
+-------------------------------------------------------------------
Old:
----
capistrano-2.14.2.gem
New:
----
capistrano-2.15.3.gem
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ rubygem-capistrano.spec ++++++
--- /var/tmp/diff_new_pack.6ypac1/_old 2013-05-07 07:35:30.000000000 +0200
+++ /var/tmp/diff_new_pack.6ypac1/_new 2013-05-07 07:35:30.000000000 +0200
@@ -17,7 +17,7 @@
Name: rubygem-capistrano
-Version: 2.14.2
+Version: 2.15.3
Release: 0
%define mod_name capistrano
%define mod_full_name %{mod_name}-%{version}
@@ -25,10 +25,13 @@
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: ruby-macros >= 1
Url: http://github.com/capistrano/capistrano
-Source: %{mod_full_name}.gem
+Source: http://rubygems.org/gems/%{mod_full_name}.gem
Summary: Capistrano - Welcome to easy deployment with Ruby over SSH
License: MIT
Group: Development/Languages/Ruby
+%define mod_branch -2.15.3
+%define mod_weight 2
+PreReq: update-alternatives
%description
Capistrano is a utility and framework for executing commands in parallel on
@@ -60,11 +63,31 @@
%install
%gem_install -f
+mv %{buildroot}%{_bindir}/cap{,%{mod_branch}}
+ln -s cap%{mod_branch} %{buildroot}%{_bindir}/cap
+mv %{buildroot}%{_bindir}/capify{,%{mod_branch}}
+ln -s capify%{mod_branch} %{buildroot}%{_bindir}/capify
+
+%post
+/usr/sbin/update-alternatives --install \
+ %{_bindir}/cap cap %{_bindir}/cap%{mod_branch} %{mod_weight}
+/usr/sbin/update-alternatives --install \
+ %{_bindir}/capify capify %{_bindir}/capify%{mod_branch} %{mod_weight}
+
+%preun
+if [ "$1" = 0 ] ; then
+ /usr/sbin/update-alternatives --remove cap %{_bindir}/cap%{mod_branch}
+fi
+if [ "$1" = 0 ] ; then
+ /usr/sbin/update-alternatives --remove capify
%{_bindir}/capify%{mod_branch}
+fi
%files
%defattr(-,root,root,-)
-%{_bindir}/cap
-%{_bindir}/capify
+%{_bindir}/cap%{mod_branch}
+%ghost %{_bindir}/cap
+%{_bindir}/capify%{mod_branch}
+%ghost %{_bindir}/capify
%{_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
--
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]