Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rails 7.0.8.6 #11443

Draft
wants to merge 1 commit into
base: rpm/develop
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
%global gem_name actioncable

Name: rubygem-%{gem_name}
Version: 6.1.7.10
Version: 7.0.8.6
Release: 1%{?dist}
Summary: WebSocket framework for Rails
License: MIT
Expand Down Expand Up @@ -59,6 +59,9 @@ cp -a .%{gem_dir}/* \
%doc %{gem_instdir}/README.md

%changelog
* Wed Nov 06 2024 Evgeni Golov - 7.0.8.6-1
- Release rubygem-actioncable 7.0.8.6

* Sun Oct 27 2024 Foreman Packaging Automation <[email protected]> - 6.1.7.10-1
- Update to 6.1.7.10

Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
%global gem_name actionmailbox

Name: rubygem-%{gem_name}
Version: 6.1.7.10
Version: 7.0.8.6
Release: 1%{?dist}
Summary: Inbound email handling framework
License: MIT
Expand All @@ -16,6 +16,11 @@ BuildRequires: rubygems-devel
BuildArch: noarch
# end specfile generated dependencies

# Allow to consume net-smtp/net-imap/net-pop as a default gem
Requires: (rubygem(net-imap) or ruby-default-gems < 3.1)
Requires: (rubygem(net-pop) or ruby-default-gems < 3.1)
Requires: (rubygem(net-smtp) or ruby-default-gems < 3.1)

%description
Receive and process incoming emails in Rails applications.

Expand All @@ -31,6 +36,12 @@ Documentation for %{name}.
%prep
%setup -q -n %{gem_name}-%{version}

# On EL9 rubygem-net-smtp/imap/pop are bundled into ruby-libs package and
# auto-generated dependencies will break dependency resolution
%gemspec_remove_dep -g net-smtp
%gemspec_remove_dep -g net-imap
%gemspec_remove_dep -g net-pop

%build
# Create the gem as gem install only works on a gem file
gem build ../%{gem_name}-%{version}.gemspec
Expand Down Expand Up @@ -60,6 +71,9 @@ cp -a .%{gem_dir}/* \
%doc %{gem_instdir}/README.md

%changelog
* Wed Nov 06 2024 Evgeni Golov - 7.0.8.6-1
- Release rubygem-actionmailbox 7.0.8.6

* Sun Oct 27 2024 Foreman Packaging Automation <[email protected]> - 6.1.7.10-1
- Update to 6.1.7.10

Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
%global gem_name actionmailer

Name: rubygem-%{gem_name}
Version: 6.1.7.10
Version: 7.0.8.6
Release: 1%{?dist}
Summary: Email composition and delivery framework (part of Rails)
License: MIT
Expand All @@ -16,6 +16,11 @@ BuildRequires: rubygems-devel
BuildArch: noarch
# end specfile generated dependencies

# Allow to consume net-smtp/net-imap/net-pop as a default gem
Requires: (rubygem(net-imap) or ruby-default-gems < 3.1)
Requires: (rubygem(net-pop) or ruby-default-gems < 3.1)
Requires: (rubygem(net-smtp) or ruby-default-gems < 3.1)

%description
Email on Rails. Compose, deliver, and test emails using the familiar
controller/view pattern. First-class support for multipart email and
Expand All @@ -33,6 +38,12 @@ Documentation for %{name}.
%prep
%setup -q -n %{gem_name}-%{version}

# On EL9 rubygem-net-smtp/imap/pop are bundled into ruby-libs package and
# auto-generated dependencies will break dependency resolution
%gemspec_remove_dep -g net-smtp
%gemspec_remove_dep -g net-imap
%gemspec_remove_dep -g net-pop

%build
# Create the gem as gem install only works on a gem file
gem build ../%{gem_name}-%{version}.gemspec
Expand All @@ -59,6 +70,9 @@ cp -a .%{gem_dir}/* \
%doc %{gem_instdir}/README.rdoc

%changelog
* Wed Nov 06 2024 Evgeni Golov - 7.0.8.6-1
- Release rubygem-actionmailer 7.0.8.6

* Sun Oct 27 2024 Foreman Packaging Automation <[email protected]> - 6.1.7.10-1
- Update to 6.1.7.10

Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
%global gem_name actionpack

Name: rubygem-%{gem_name}
Version: 6.1.7.10
Version: 7.0.8.6
Release: 1%{?dist}
Summary: Web-flow and rendering framework putting the VC in MVC (part of Rails)
License: MIT
Expand Down Expand Up @@ -58,6 +58,9 @@ cp -a .%{gem_dir}/* \
%doc %{gem_instdir}/README.rdoc

%changelog
* Wed Nov 06 2024 Evgeni Golov - 7.0.8.6-1
- Release rubygem-actionpack 7.0.8.6

* Sun Oct 27 2024 Foreman Packaging Automation <[email protected]> - 6.1.7.10-1
- Update to 6.1.7.10

Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
%global gem_name actiontext

Name: rubygem-%{gem_name}
Version: 6.1.7.10
Version: 7.0.8.6
Release: 1%{?dist}
Summary: Rich text framework
License: MIT
Expand Down Expand Up @@ -60,6 +60,9 @@ cp -a .%{gem_dir}/* \
%doc %{gem_instdir}/README.md

%changelog
* Wed Nov 06 2024 Evgeni Golov - 7.0.8.6-1
- Release rubygem-actiontext 7.0.8.6

* Sun Oct 27 2024 Foreman Packaging Automation <[email protected]> - 6.1.7.10-1
- Update to 6.1.7.10

Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
%global gem_name actionview

Name: rubygem-%{gem_name}
Version: 6.1.7.10
Version: 7.0.8.6
Release: 1%{?dist}
Summary: Rendering framework putting the V in MVC (part of Rails)
License: MIT
Expand Down Expand Up @@ -57,6 +57,9 @@ cp -a .%{gem_dir}/* \
%doc %{gem_instdir}/README.rdoc

%changelog
* Wed Nov 06 2024 Evgeni Golov - 7.0.8.6-1
- Release rubygem-actionview 7.0.8.6

* Sun Oct 27 2024 Foreman Packaging Automation <[email protected]> - 6.1.7.10-1
- Update to 6.1.7.10

Expand Down

This file was deleted.

1 change: 1 addition & 0 deletions packages/foreman/rubygem-activejob/activejob-7.0.8.6.gem
5 changes: 4 additions & 1 deletion packages/foreman/rubygem-activejob/rubygem-activejob.spec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
%global gem_name activejob

Name: rubygem-%{gem_name}
Version: 6.1.7.10
Version: 7.0.8.6
Release: 1%{?dist}
Summary: Job framework with pluggable queues
License: MIT
Expand Down Expand Up @@ -57,6 +57,9 @@ cp -a .%{gem_dir}/* \
%doc %{gem_instdir}/README.md

%changelog
* Wed Nov 06 2024 Evgeni Golov - 7.0.8.6-1
- Release rubygem-activejob 7.0.8.6

* Sun Oct 27 2024 Foreman Packaging Automation <[email protected]> - 6.1.7.10-1
- Update to 6.1.7.10

Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
%global gem_name activemodel

Name: rubygem-%{gem_name}
Version: 6.1.7.10
Version: 7.0.8.6
Release: 1%{?dist}
Summary: A toolkit for building modeling frameworks (part of Rails)
License: MIT
Expand Down Expand Up @@ -59,6 +59,9 @@ cp -a .%{gem_dir}/* \
%doc %{gem_instdir}/README.rdoc

%changelog
* Wed Nov 06 2024 Evgeni Golov - 7.0.8.6-1
- Release rubygem-activemodel 7.0.8.6

* Sun Oct 27 2024 Foreman Packaging Automation <[email protected]> - 6.1.7.10-1
- Update to 6.1.7.10

Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
%global gem_name activerecord

Name: rubygem-%{gem_name}
Version: 6.1.7.10
Version: 7.0.8.6
Release: 1%{?dist}
Summary: Object-relational mapper framework (part of Rails)
License: MIT
Expand Down Expand Up @@ -60,6 +60,9 @@ cp -a .%{gem_dir}/* \
%{gem_instdir}/examples

%changelog
* Wed Nov 06 2024 Evgeni Golov - 7.0.8.6-1
- Release rubygem-activerecord 7.0.8.6

* Sun Oct 27 2024 Foreman Packaging Automation <[email protected]> - 6.1.7.10-1
- Update to 6.1.7.10

Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
%global gem_name activestorage

Name: rubygem-%{gem_name}
Version: 6.1.7.10
Version: 7.0.8.6
Release: 1%{?dist}
Summary: Local and cloud file storage framework
License: MIT
Expand Down Expand Up @@ -60,6 +60,9 @@ cp -a .%{gem_dir}/* \
%doc %{gem_instdir}/README.md

%changelog
* Wed Nov 06 2024 Evgeni Golov - 7.0.8.6-1
- Release rubygem-activestorage 7.0.8.6

* Sun Oct 27 2024 Foreman Packaging Automation <[email protected]> - 6.1.7.10-1
- Update to 6.1.7.10

Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
%global gem_name activesupport

Name: rubygem-%{gem_name}
Version: 6.1.7.10
Version: 7.0.8.6
Release: 1%{?dist}
Summary: A toolkit of support libraries and Ruby core extensions extracted from the Rails framework
License: MIT
Expand Down Expand Up @@ -59,6 +59,9 @@ cp -a .%{gem_dir}/* \
%doc %{gem_instdir}/README.rdoc

%changelog
* Wed Nov 06 2024 Evgeni Golov - 7.0.8.6-1
- Release rubygem-activesupport 7.0.8.6

* Sun Oct 27 2024 Foreman Packaging Automation <[email protected]> - 6.1.7.10-1
- Update to 6.1.7.10

Expand Down
1 change: 0 additions & 1 deletion packages/foreman/rubygem-rails/rails-6.1.7.10.gem

This file was deleted.

1 change: 1 addition & 0 deletions packages/foreman/rubygem-rails/rails-7.0.8.6.gem
6 changes: 5 additions & 1 deletion packages/foreman/rubygem-rails/rubygem-rails.spec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
%global gem_name rails

Name: rubygem-%{gem_name}
Version: 6.1.7.10
Version: 7.0.8.6
Release: 1%{?dist}
Summary: Full-stack web application framework
License: MIT
Expand Down Expand Up @@ -48,6 +48,7 @@ cp -a .%{gem_dir}/* \

%files
%dir %{gem_instdir}
%license %{gem_instdir}/MIT-LICENSE

%exclude %{gem_cache}
%{gem_spec}
Expand All @@ -57,6 +58,9 @@ cp -a .%{gem_dir}/* \
%doc %{gem_instdir}/README.md

%changelog
* Wed Nov 06 2024 Evgeni Golov - 7.0.8.6-1
- Release rubygem-rails 7.0.8.6

* Sun Oct 27 2024 Foreman Packaging Automation <[email protected]> - 6.1.7.10-1
- Update to 6.1.7.10

Expand Down
1 change: 0 additions & 1 deletion packages/foreman/rubygem-railties/railties-6.1.7.10.gem

This file was deleted.

1 change: 1 addition & 0 deletions packages/foreman/rubygem-railties/railties-7.0.8.6.gem
5 changes: 4 additions & 1 deletion packages/foreman/rubygem-railties/rubygem-railties.spec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
%global gem_name railties

Name: rubygem-%{gem_name}
Version: 6.1.7.10
Version: 7.0.8.6
Release: 1%{?dist}
Summary: Tools for creating, working with, and running Rails applications
License: MIT
Expand Down Expand Up @@ -67,6 +67,9 @@ find %{buildroot}%{gem_instdir}/exe -type f | xargs chmod a+x
%doc %{gem_instdir}/README.rdoc

%changelog
* Wed Nov 06 2024 Evgeni Golov - 7.0.8.6-1
- Release rubygem-railties 7.0.8.6

* Sun Oct 27 2024 Foreman Packaging Automation <[email protected]> - 6.1.7.10-1
- Update to 6.1.7.10

Expand Down