Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package rubygem-hoe for openSUSE:Factory 
checked in at 2026-07-15 16:37:12
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-hoe (Old)
 and      /work/SRC/openSUSE:Factory/.rubygem-hoe.new.1991 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rubygem-hoe"

Wed Jul 15 16:37:12 2026 rev:61 rq:1365654 version:4.7.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/rubygem-hoe/rubygem-hoe.changes  2026-06-30 
15:12:35.850344078 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-hoe.new.1991/rubygem-hoe.changes        
2026-07-15 16:57:56.531691397 +0200
@@ -1,0 +2,5 @@
+Tue Jul 14 11:40:00 UTC 2026 - Hendrik Vogelsang <[email protected]>
+
+- Update to version 4.7.1, see bundled History.rdoc
+
+-------------------------------------------------------------------

Old:
----
  hoe-4.7.0.gem

New:
----
  hoe-4.7.1.gem

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ rubygem-hoe.spec ++++++
--- /var/tmp/diff_new_pack.wzfEIs/_old  2026-07-15 16:57:57.771733259 +0200
+++ /var/tmp/diff_new_pack.wzfEIs/_new  2026-07-15 16:57:57.775733394 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           rubygem-hoe
-Version:        4.7.0
+Version:        4.7.1
 Release:        0
 %define mod_name hoe
 %define mod_full_name %{mod_name}-%{version}

++++++ hoe-4.7.0.gem -> hoe-4.7.1.gem ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/History.rdoc new/History.rdoc
--- old/History.rdoc    1980-01-02 01:00:00.000000000 +0100
+++ new/History.rdoc    1980-01-02 01:00:00.000000000 +0100
@@ -1,3 +1,9 @@
+=== 4.7.1 / 2026-07-03
+
+* 1 bug fix:
+
+  * Remove Manifest.txt from extra_rdoc_files as latest rdoc mangles the file.
+
 === 4.7.0 / 2026-04-22
 
 * 2 minor enhancements:
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
Binary files old/checksums.yaml.gz.sig and new/checksums.yaml.gz.sig differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/data.tar.gz.sig new/data.tar.gz.sig
--- old/data.tar.gz.sig 1980-01-02 01:00:00.000000000 +0100
+++ new/data.tar.gz.sig 1980-01-02 01:00:00.000000000 +0100
@@ -1,4 +1 @@
-�3���&2��.�5�#D�aK�w~���G���;���kr���S���Rj�0n��J����a���c�?��@���l��FG9
-R�����
-L     :[9�l!��H���*[���Dr�_��;v�tU��;m��z��(�`���l���n5��7X��1k�f�� 
N���nB�!3�r'���EC��0�`}ga9J�:<+>W �
-Ÿ�#oQ��\#�V��2��6 ���Q��T     �f̌�:�
\ No newline at end of file
+��\��}A�#�T�9�]��5a��u{��� ���_i���>����R9�^,{2
�u�E�d^�Pأ�_c�"��BEg��xOw�+R+H�]�_��y#�����y���
8VV0��aU4�=�Q_�@$U��-���\��b�~�j魧��l��ϖCt�\��GW��s�g�̚#�G$�£���u$��
����eP�r�z���1vN����g�v=H=�*^���{l͙ʊ��K���R�
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/hoe.rb new/lib/hoe.rb
--- old/lib/hoe.rb      1980-01-02 01:00:00.000000000 +0100
+++ new/lib/hoe.rb      1980-01-02 01:00:00.000000000 +0100
@@ -87,7 +87,7 @@
   include Rake::DSL if defined?(Rake::DSL)
 
   # duh
-  VERSION = "4.7.0"
+  VERSION = "4.7.1"
 
   @@plugins = [:clean, :debug, :deps, :flay, :flog, :newb, :package,
                :publish, :signing, :test]
@@ -580,9 +580,15 @@
         s.author  = author
       end
 
-      s.extra_rdoc_files += s.files.grep(/\.(txt|rdoc|md)$/)
-      s.extra_rdoc_files.reject! { |f| f =~ 
%r%^(test|spec|vendor|template|data|tmp)/% }
-      s.extra_rdoc_files += @extra_rdoc_files
+      # TODO: pull up to accessors?
+      bad_files = %w[ Manifest.txt ]
+      bad_dirs  = %w[ test spec vendor template data tmp ]
+
+      s.extra_rdoc_files += s.files
+        .grep(/\.(txt|rdoc|md)$/)
+        .grep_v(/^(?:#{bad_files.join "|"})/)
+        .grep_v(/^(?:#{bad_dirs.join "|"})\//)
+      s.extra_rdoc_files += self.extra_rdoc_files
     end
 
     check_for_version
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata        1980-01-02 01:00:00.000000000 +0100
+++ new/metadata        1980-01-02 01:00:00.000000000 +0100
@@ -1,7 +1,7 @@
 --- !ruby/object:Gem::Specification
 name: hoe
 version: !ruby/object:Gem::Version
-  version: 4.7.0
+  version: 4.7.1
 platform: ruby
 authors:
 - Ryan Davis
@@ -105,7 +105,6 @@
 extensions: []
 extra_rdoc_files:
 - History.rdoc
-- Manifest.txt
 - README.rdoc
 files:
 - ".autotest"
@@ -172,7 +171,7 @@
     - !ruby/object:Gem::Version
       version: '3.0'
 requirements: []
-rubygems_version: 3.7.2
+rubygems_version: 4.0.12
 specification_version: 4
 summary: Hoe is a rake/rubygems helper for project Rakefiles
 test_files: []
Binary files old/metadata.gz.sig and new/metadata.gz.sig differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/test/test_hoe.rb new/test/test_hoe.rb
--- old/test/test_hoe.rb        1980-01-02 01:00:00.000000000 +0100
+++ new/test/test_hoe.rb        1980-01-02 01:00:00.000000000 +0100
@@ -374,7 +374,7 @@
 
     assert_equal urls, hoe.urls
 
-    text_files = files.grep(/(txt|rdoc)$/).reject { |f| f =~ /template/ }
+    text_files = files.grep(/(txt|rdoc)$/).reject { |f| f =~ 
/template|Manifest/ }
 
     assert_equal "blah", spec.name
     assert_equal "1.2.3", spec.version.to_s
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/test/test_hoe_publish.rb new/test/test_hoe_publish.rb
--- old/test/test_hoe_publish.rb        1980-01-02 01:00:00.000000000 +0100
+++ new/test/test_hoe_publish.rb        1980-01-02 01:00:00.000000000 +0100
@@ -25,7 +25,7 @@
                 -o doc
                 --main README.rdoc
                 lib
-                History.rdoc Manifest.txt README.rdoc
+                History.rdoc README.rdoc
                ]
 
     # skip if linux?

Reply via email to