Hello community, here is the log from the commit of package rubygem-hoe for openSUSE:Factory checked in at 2014-10-16 18:14:45 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/rubygem-hoe (Old) and /work/SRC/openSUSE:Factory/.rubygem-hoe.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-hoe" Changes: -------- --- /work/SRC/openSUSE:Factory/rubygem-hoe/rubygem-hoe.changes 2014-10-14 07:11:26.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.rubygem-hoe.new/rubygem-hoe.changes 2014-10-16 18:16:44.000000000 +0200 @@ -1,0 +2,9 @@ +Sun Oct 12 17:13:13 UTC 2014 - [email protected] + +- updated to version 3.13.0 + * 2 minor enhancements: + + * Added ext_name to sow template expansion variables. + * Added oedipus version to generation output + +------------------------------------------------------------------- Old: ---- hoe-3.12.0.gem New: ---- hoe-3.13.0.gem ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ rubygem-hoe.spec ++++++ --- /var/tmp/diff_new_pack.MBmNf6/_old 2014-10-16 18:16:45.000000000 +0200 +++ /var/tmp/diff_new_pack.MBmNf6/_new 2014-10-16 18:16:45.000000000 +0200 @@ -17,17 +17,16 @@ Name: rubygem-hoe -Version: 3.12.0 +Version: 3.13.0 Release: 0 %define mod_name hoe %define mod_full_name %{mod_name}-%{version} -%define mod_branch -%{version} -%define mod_weight 31200 - BuildRoot: %{_tmppath}/%{name}-%{version}-build -BuildRequires: ruby-macros >= 3 +BuildRequires: %{rubygem gem2rpm} +BuildRequires: %{rubygem rdoc > 3.10} +BuildRequires: %{ruby} +BuildRequires: ruby-macros >= 5 BuildRequires: update-alternatives -BuildRequires: rubygem(rdoc) > 3.10 Url: http://www.zenspider.com/projects/hoe.html Source: http://rubygems.org/gems/%{mod_full_name}.gem Summary: Hoe is a rake/rubygems helper for project Rakefiles @@ -43,7 +42,7 @@ testing, packaging, deployment, and announcement.. See class rdoc for help. Hint: `ri Hoe` or any of the plugins listed below. -For extra goodness, see: http://docs.seattlerb.org/hoe/Hoe.pdf +For extra goodness, see: http://docs.seattlerb.org/hoe/Hoe.pdf. %prep ++++++ hoe-3.12.0.gem -> hoe-3.13.0.gem ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/History.rdoc new/History.rdoc --- old/History.rdoc 2014-04-23 22:39:31.000000000 +0200 +++ new/History.rdoc 2014-09-27 00:35:10.000000000 +0200 @@ -1,3 +1,10 @@ +=== 3.13.0 / 2014-09-26 + +* 2 minor enhancements: + + * Added ext_name to sow template expansion variables. + * Added oedipus version to generation output + === 3.12.0 / 2014-04-23 * 3 minor enhancements: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bin/sow new/bin/sow --- old/bin/sow 2014-04-23 22:39:31.000000000 +0200 +++ new/bin/sow 2014-09-27 00:35:10.000000000 +0200 @@ -90,6 +90,7 @@ abort "Project #{project} seems to exist" if test ?d, project _, file_name, klass, test_klass = Hoe.normalize_names project +ext_name = File.basename file_name # minitest/plugin => plugin klass = klass # quell unused warnings if they're not used in templates test_klass = test_klass # ditto @@ -102,6 +103,11 @@ FileUtils.mv file, file.sub(/file_name$/, file_name) end + dirs = Dir["**/*"].select { |f| File.directory? f }.sort.reverse + dirs.grep(/ext_name$/).each do |file| + FileUtils.mv file, file.sub(/ext_name$/, ext_name) + end + paths = (Dir["**/*"] + Dir["**/.*"]).select { |f| File.file? f }.sort paths.each do |path| file = File.read path @@ -115,8 +121,11 @@ end end - paths.grep(/file_name|\.erb$/).each do |file| - new_file = file.sub(/(test_)?file_name/, file_name).sub(/\.erb$/, '') + paths.grep(/(file|ext)_name|\.erb$/).each do |file| + new_file = file. + sub(/(test_)?file_name/, file_name). + sub(/(test_)?ext_name/, ext_name). + sub(/\.erb$/, '') case file when /^bin/ then Files old/checksums.yaml.gz and new/checksums.yaml.gz differ Files old/checksums.yaml.gz.sig and new/checksums.yaml.gz.sig differ Files old/data.tar.gz.sig and new/data.tar.gz.sig differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/hoe/racc.rb new/lib/hoe/racc.rb --- old/lib/hoe/racc.rb 2014-04-23 22:39:31.000000000 +0200 +++ new/lib/hoe/racc.rb 2014-09-27 00:35:10.000000000 +0200 @@ -77,7 +77,7 @@ # HACK: taken from oedipus_lex's .rake file to bypass isolate bootstrap rule ".rex.rb" => proc {|path| path.sub(/\.rb$/, "") } do |t| require "oedipus_lex" - warn "Generating #{t.name} from #{t.source}" + warn "Generating #{t.name} from #{t.source} from #{OedipusLex::VERSION}" oedipus = OedipusLex.new oedipus_options oedipus.parse_file t.source diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/hoe.rb new/lib/hoe.rb --- old/lib/hoe.rb 2014-04-23 22:39:31.000000000 +0200 +++ new/lib/hoe.rb 2014-09-27 00:35:10.000000000 +0200 @@ -91,7 +91,7 @@ include Rake::DSL if defined?(Rake::DSL) # duh - VERSION = "3.12.0" + VERSION = "3.13.0" @@plugins = [:clean, :debug, :deps, :flay, :flog, :newb, :package, :publish, :gemcutter, :signing, :test] diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/metadata new/metadata --- old/metadata 2014-04-23 22:39:31.000000000 +0200 +++ new/metadata 2014-09-27 00:35:10.000000000 +0200 @@ -1,7 +1,7 @@ --- !ruby/object:Gem::Specification name: hoe version: !ruby/object:Gem::Version - version: 3.12.0 + version: 3.13.0 platform: ruby authors: - Ryan Davis @@ -10,9 +10,9 @@ cert_chain: - | -----BEGIN CERTIFICATE----- - MIIDPjCCAiagAwIBAgIBATANBgkqhkiG9w0BAQUFADBFMRMwEQYDVQQDDApyeWFu + MIIDPjCCAiagAwIBAgIBAjANBgkqhkiG9w0BAQUFADBFMRMwEQYDVQQDDApyeWFu ZC1ydWJ5MRkwFwYKCZImiZPyLGQBGRYJemVuc3BpZGVyMRMwEQYKCZImiZPyLGQB - GRYDY29tMB4XDTEzMDkxNjIzMDQxMloXDTE0MDkxNjIzMDQxMlowRTETMBEGA1UE + GRYDY29tMB4XDTE0MDkxNzIzMDcwN1oXDTE1MDkxNzIzMDcwN1owRTETMBEGA1UE AwwKcnlhbmQtcnVieTEZMBcGCgmSJomT8ixkARkWCXplbnNwaWRlcjETMBEGCgmS JomT8ixkARkWA2NvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALda b9DCgK+627gPJkB6XfjZ1itoOQvpqH1EXScSaba9/S2VF22VYQbXU1xQXL/WzCkx @@ -22,14 +22,14 @@ qhtV7HJxNKuPj/JFH0D2cswvzznE/a5FOYO68g+YCuFi5L8wZuuM8zzdwjrWHqSV gBEfoTEGr7Zii72cx+sCAwEAAaM5MDcwCQYDVR0TBAIwADALBgNVHQ8EBAMCBLAw HQYDVR0OBBYEFEfFe9md/r/tj/Wmwpy+MI8d9k/hMA0GCSqGSIb3DQEBBQUAA4IB - AQCFZ7JTzoy1gcG4d8A6dmOJy7ygtO5MFpRIz8HuKCF5566nOvpy7aHhDDzFmQuu - FX3zDU6ghx5cQIueDhf2SGOncyBmmJRRYawm3wI0o1MeN6LZJ/3cRaOTjSFy6+S6 - zqDmHBp8fVA2TGJtO0BLNkbGVrBJjh0UPmSoGzWlRhEVnYC33TpDAbNA+u39UrQI - ynwhNN7YbnmSR7+JU2cUjBFv2iPBO+TGuWC+9L2zn3NHjuc6tnmSYipA9y8Hv+As - Y4evBVezr3SjXz08vPqRO5YRdO3zfeMT8gBjRqZjWJGMZ2lD4XNfrs7eky74CyZw - xx3n58i0lQkBE1EpKE0lFu/y + AQAFoDJRokCQdxFfOrmsKX41KOFlU/zjrbDVM9hgB/Ur999M6OXGSi8FitXNtMwY + FVjsiAPeU7HaWVVcZkj6IhINelTkXsxgGz/qCzjHy3iUMuZWw36cS0fiWJ5rvH+e + hD7uXxJSFuyf1riDGI1aeWbQ74WMwvNstOxLUMiV5a1fzBhlxPqb537ubDjq/M/h + zPUFPVYeL5KjDHLCqI2FwIk2sEMOQgjpXHzl+3NlD2LUgUhHDMevmgVua0e2GT1B + xJcC6UN6NHMOVMyAXsr2HR0gRRx4ofN1LoP2KhXzSr8UMvQYlwPmE0N5GQv1b5AO + VpzF30vNaJK6ZT7xlIsIlwmH -----END CERTIFICATE----- -date: 2014-04-23 00:00:00.000000000 Z +date: 2014-09-26 00:00:00.000000000 Z dependencies: - !ruby/object:Gem::Dependency name: rake @@ -57,14 +57,14 @@ requirements: - - ~> - !ruby/object:Gem::Version - version: '5.3' + version: '5.4' type: :development prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - ~> - !ruby/object:Gem::Version - version: '5.3' + version: '5.4' - !ruby/object:Gem::Dependency name: rdoc requirement: !ruby/object:Gem::Requirement @@ -162,7 +162,7 @@ version: '1.4' requirements: [] rubyforge_project: -rubygems_version: 2.2.1 +rubygems_version: 2.4.1 signing_key: specification_version: 4 summary: Hoe is a rake/rubygems helper for project Rakefiles Files old/metadata.gz.sig and new/metadata.gz.sig differ -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
