1
0

Accepting request 242536 from devel:languages:ruby:extensions

Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/242536
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/rubygem-gem2rpm?expand=0&rev=13
This commit is contained in:
Stephan Kulow
2014-07-27 16:47:26 +00:00
committed by Git OBS Bridge
parent 1585e1c64c
commit 506a96abb0
13 changed files with 1054 additions and 115 deletions

View File

@@ -1,3 +1,131 @@
-------------------------------------------------------------------
Thu Jul 24 15:30:14 UTC 2014 - mrueckert@suse.de
- update to 0.10.1
- Migrate test suite to Minitest 5.x.
- Move gem binary extension and gem.build_complete file.
- Merge pull request #31 from axilleas/add_check_macro
- Add %check macro, fix typos
- Remove Requires/Provides which are now autogenerated.
- Simplify binary extensions installation according to the new
guidelines.
- Clone new template for F21 and above. Rename the old one.
- "cp -a" implies -p.
- Better open mode handling.
- Test always against rawhide template.
- List development dependencies as BuildRequires.
- Cache rendered template in tests.
- Prevent dangling symlink in -debuginfo.
- Ignore release file encoding with older Ruby (fixes #23).
- Fix generating SRPM.
- Add description dot test case.
- Add description ending dot in #description method.
- Avoid 'method is redefined' warning.
- Test against current template.
- Merge pull request #25 from xsuchy/pull-req-dot
- description should end with dot
- Merge pull request #24 from strzibny/master
- Escape % in comment
- rebased gem2rpm-change-default-template.diff, new name:
0001-use-the-ID-from-os-release-to-use-the-proper-templat.patch
- rebased gem2rpm-0.9.2_config_file_support.patch, new name
0002-added-basic-config-file-support-to-gem2rpm-in-yaml-f.patch
- rebased gem2rpm-0.9.2_sles12_template.patch, new name:
0003-sle-12-templates.-they-require-the-config-file-suppo.patch
- rebased and splitted gem2rpm-fix-opensuse-template.diff, new
name:
0004-openSUSE-template-fixes.patch
0005-added-example-gem2rpm.yml.patch
0006-properly-shorten-description-and-summary.patch
0007-Preserve-the-license-header-found-in-the-output-file.patch
-------------------------------------------------------------------
Wed Jul 23 09:06:02 UTC 2014 - mrueckert@suse.de
- make sure the sle12 template is also installed
-------------------------------------------------------------------
Mon Jul 21 11:32:38 UTC 2014 - mrueckert@suse.de
- renamed gem2rpm.yml to gem2rpm.yml.documentation:
this is just documentation and not the gem2rpm.yml that gem2rpm
should pick up.
-------------------------------------------------------------------
Mon Jul 21 09:23:55 UTC 2014 - mrueckert@suse.de
- added gem2rpm-0.9.2_sles12_template.patch:
initial template for sle12 ruby packaging
-------------------------------------------------------------------
Tue Jul 15 18:43:12 UTC 2014 - mrueckert@suse.de
- added gem2rpm.yml and install it to the installed documentation
-------------------------------------------------------------------
Tue Jul 15 18:38:35 UTC 2014 - mrueckert@suse.de
- sles 12 template
- allow changing the master package name with config[:name]
This is mostly useful if you want the actual main package to
have real content after building. all the subpackages will
ignore config[:name] and still use the gem name.
-------------------------------------------------------------------
Tue Jul 15 17:21:42 UTC 2014 - mrueckert@suse.de
- sles 12 template
- add version suffix to the "spec file for ..." line
- move the preamble up so we can actually use
%define rb_build_versions ...
- config[:disable_automatic_rdoc_dep] to disable adding automatic
rdoc dependency. This is mostly needed for building rdoc itself
and avoiding a bootstrap cycle.
- actually print the patch name in the preamble
- the scripts entry in gem2rpm.yml can now be a hash or a string.
-------------------------------------------------------------------
Tue Jul 15 14:27:57 UTC 2014 - mrueckert@suse.de
- sles 12 template
- no longer print the gem2rpm.yml warning when the config is empty
- add back mod_version_suffix to the spec file
(needed for gem_install)
- converted buildrequires for ruby and ruby-devel to the macros so
we can easily pull multiple ruby versions and also easily limit
the ruby versions
- always buildrequire gem2rpm in generated spec files. It is the
only clean way to solve the "have choive for rubygem(gem2rpm)"
and still maintaining the multiversion ability
- handle config[:disable_docs] and pass --no-rdoc --no-ri to
gem_install in that case. (mostly a workaround for the rdoc bug
with the fastthread gem)
- added support to specify the content of the %check section.
-------------------------------------------------------------------
Fri Jul 11 08:23:20 UTC 2014 - mrueckert@suse.de
- if the config is nil, set it to an empty hash. this allows for
less noisy template files.
- more updates for the sle 12 template.
-------------------------------------------------------------------
Thu Jul 10 16:27:03 UTC 2014 - mrueckert@suse.de
- added new tag :sources in the yaml file to track additional
sources. this makde the next change much easier.
- make sure the config file that is passed to gem2rpm is also
appended to the sources list automatically.
- added template for sles12 (gem2rpm-0.9.2_sles12_template.patch)
-------------------------------------------------------------------
Thu Jul 10 14:52:01 UTC 2014 - mrueckert@suse.de
- added gem2rpm-0.9.2_config_file_support.patch:
added basic config file support to gem2rpm in yaml format. there
is no validation as it is basically a hash where certain keys
are picked up by our templates.
-------------------------------------------------------------------
Thu Feb 6 11:52:43 UTC 2014 - coolo@suse.com