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

MicroOS Desktop community does not support installations via Agama #1243

Merged
merged 1 commit into from
May 21, 2024
Merged
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
5 changes: 5 additions & 0 deletions products.d/agama-products-opensuse.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue May 21 11:35:51 UTC 2024 - Richard Brown <[email protected]>

- Remove definitions for MicroOS Desktop

-------------------------------------------------------------------
Mon Dec 4 14:11:51 UTC 2023 - Ancor Gonzalez Sosa <[email protected]>

Expand Down
1 change: 0 additions & 1 deletion products.d/agama-products-opensuse.spec
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ install -m 0644 *.yaml %{buildroot}%{_datadir}/agama/products.d
%dir %{_datadir}/agama
%dir %{_datadir}/agama/products.d
%{_datadir}/agama/products.d/microos.yaml
%{_datadir}/agama/products.d/microos-desktop.yaml
%{_datadir}/agama/products.d/tumbleweed.yaml

%changelog
139 changes: 0 additions & 139 deletions products.d/microos-desktop.yaml

This file was deleted.

5 changes: 2 additions & 3 deletions service/test/agama/software/manager_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -230,12 +230,11 @@
describe "#products" do
it "returns the list of known products" do
products = subject.products
expect(products.size).to eq(3)
expect(products.size).to eq(2)
expect(products).to all(be_a(Agama::Software::Product))
expect(products).to contain_exactly(
an_object_having_attributes(id: "Tumbleweed"),
an_object_having_attributes(id: "MicroOS"),
an_object_having_attributes(id: "MicroOS-Desktop")
an_object_having_attributes(id: "MicroOS")
)
end
end
Expand Down
Loading