Unreleased Variant List
This API is deprecated. Please use /rest_api/v1/modules/
.
Overview
This page shows the usage of the Module API, please see the following for more details.
Documents & examples
Method: GET
URL: /rest_api/v1/unreleasedvariants/
Query Params:
active
(bool)build_dep_name
(string)build_dep_stream
(string)component_branch
(string)component_name
(string)koji_tag
(string, case insensitive)modulemd
(string)rpm_filename
(string)runtime_dep_name
(string)runtime_dep_stream
(string)variant_context
(string, case insensitive)variant_id
(string, case insensitive)variant_name
(string, case insensitive)variant_release
(string, case insensitive)variant_type
(string, case insensitive)variant_uid
(string, case insensitive)variant_version
(string, case insensitive)ordering
(string) Comma separated list of fields for ordering results.- To sort by a field in descending order, prefix its name with minus (e.g.
-name
). - Use double underscores for nested field names (e.g.
parent__child
for{"parent": {"child": ...}}
).
- To sort by a field in descending order, prefix its name with minus (e.g.
Following filters can be used to show only specific fields. This can make
response time faster. Format is list or single value
(JSON: {"fields": ["a","b"]}
or {"fields": "a"}
, in URL: ?fields=a&fields=b
).
fields
(list | string) Fields to display (other fields will be hidden).exclude_fields
: (list | string) Fields NOT to display (overrulesfields
).
Paged Response:
{
"active (optional, default=false)": "boolean",
"build_deps (optional, default=null)": [
{
"dependency": "string",
"stream": "string"
}
],
"koji_tag": "string",
"modulemd": "string",
"rpms (optional, default=null)": [
"string"
],
"runtime_deps (optional, default=null)": [
{
"dependency": "string",
"stream": "string"
}
],
"variant_context (optional, default=\"00000000\")": "string",
"variant_id": "string",
"variant_name": "string",
"variant_release": "string",
"variant_type": "string",
"variant_uid": "string",
"variant_version": "string"
}
Method: GET
URL: /rest_api/v1/unreleasedvariants/{variant_uid}/
Response:
{
"active (optional, default=false)": "boolean",
"build_deps (optional, default=null)": [
{
"dependency": "string",
"stream": "string"
}
],
"koji_tag": "string",
"modulemd": "string",
"rpms (optional, default=null)": [
"string"
],
"runtime_deps (optional, default=null)": [
{
"dependency": "string",
"stream": "string"
}
],
"variant_context (optional, default=\"00000000\")": "string",
"variant_id": "string",
"variant_name": "string",
"variant_release": "string",
"variant_type": "string",
"variant_uid": "string",
"variant_version": "string"
}
Method: POST
URL: /rest_api/v1/unreleasedvariants/
Data:
{
"active (optional, default=false)": "boolean",
"build_deps (optional, default=null)": [
{
"dependency": "string",
"stream": "string"
}
],
"koji_tag": "string",
"modulemd": "string",
"rpms (optional, default=null)": [
{
"arch": "string",
"epoch": "string",
"name": "string",
"release": "string",
"srpm_name": "string",
"version": "string"
}
],
"runtime_deps (optional, default=null)": [
{
"dependency": "string",
"stream": "string"
}
],
"variant_context (optional, default=\"00000000\")": "string",
"variant_id": "string",
"variant_name": "string",
"variant_release": "string",
"variant_type": "string",
"variant_uid": "string",
"variant_version": "string"
}
Response:
{
"active (optional, default=false)": "boolean",
"build_deps (optional, default=null)": [
{
"dependency": "string",
"stream": "string"
}
],
"koji_tag": "string",
"modulemd": "string",
"rpms (optional, default=null)": [
"string"
],
"runtime_deps (optional, default=null)": [
{
"dependency": "string",
"stream": "string"
}
],
"variant_context (optional, default=\"00000000\")": "string",
"variant_id": "string",
"variant_name": "string",
"variant_release": "string",
"variant_type": "string",
"variant_uid": "string",
"variant_version": "string"
}
Example:
curl -X POST -H "Content-Type: application/json" https://pdc.fedoraproject.org/rest_api/v1/unreleasedvariants/ \
-d '{ "variant_id": "core", "variant_uid": "Core", "variant_name": "Minimalistic Core", "variant_type": "module", "variant_version": "master", "variant_release": "20170101", "variant_context": "2f345c78", "koji_tag": "foobar", "active": false }'
It is possible to create this resource in bulk. To do so, use the same procedure as when creating a single instance, only the request body should contain a list of JSON objects. The response you get back will also contain a list of values which you would obtain by submitting the request data separately.
Method: PUT/PATCH
URL: /rest_api/v1/unreleasedvariants/{variant_uid}/
Data:
{
"active (optional, default=false)": "boolean",
"build_deps (optional, default=null)": [
{
"dependency": "string",
"stream": "string"
}
],
"koji_tag": "string",
"modulemd": "string",
"rpms (optional, default=null)": [
{
"arch": "string",
"epoch": "string",
"name": "string",
"release": "string",
"srpm_name": "string",
"version": "string"
}
],
"runtime_deps (optional, default=null)": [
{
"dependency": "string",
"stream": "string"
}
],
"variant_context (optional, default=\"00000000\")": "string",
"variant_id": "string",
"variant_name": "string",
"variant_release": "string",
"variant_type": "string",
"variant_uid": "string",
"variant_version": "string"
}
Response:
{
"active (optional, default=false)": "boolean",
"build_deps (optional, default=null)": [
{
"dependency": "string",
"stream": "string"
}
],
"koji_tag": "string",
"modulemd": "string",
"rpms (optional, default=null)": [
"string"
],
"runtime_deps (optional, default=null)": [
{
"dependency": "string",
"stream": "string"
}
],
"variant_context (optional, default=\"00000000\")": "string",
"variant_id": "string",
"variant_name": "string",
"variant_release": "string",
"variant_type": "string",
"variant_uid": "string",
"variant_version": "string"
}
Example:
curl -X PATCH -d '{ "active": true}' -H "Content-Type: application/json" \
https://pdc.fedoraproject.org/rest_api/v1/unreleasedvariants/testmodule-master-20170301215520/
Method: DELETE
URL: /rest_api/v1/unreleasedvariants/{variant_uid}/
Response:
STATUS: 204 NO CONTENT
Example:
curl -X DELETE -H "Content-Type: application/json" https://pdc.fedoraproject.org/rest_api/v1/unreleasedvariants/variant_uid/
It is possible to delete multiple items in one request. Use the DELETE
method with the same url as for listing/creating objects. The request body
should contain a list with identifiers for objects to be deleted. The
identifier is usually the last part of the URL for deleting a single
object.
It is possible to update multiple objects in one request. Use the PUT
or
PATCH
method with the same url as for listing/creating objects. The
request body should contain an object, where keys are identifiers of
objects to be modified and their values use the same format as normal
update.
Browsable GET
GET /rest_api/v1/unreleasedvariants/
https://pdc.fedoraproject.org/rest_api/v1/unreleasedvariants/?page=2", "previous": null, "results": [ { "variant_id": "0ad", "variant_uid": "0ad:master:2920190207061404:e9d62918", "variant_name": "0ad", "variant_type": "module", "variant_version": "master", "variant_release": "2920190207061404", "variant_context": "e9d62918", "koji_tag": "module-0ad-master-2920190207061404-e9d62918", "modulemd": "---\ndocument: modulemd\nversion: 2\ndata:\n name: 0ad\n stream: master\n version: 2920190207061404\n context: e9d62918\n summary: Cross-Platform RTS Game of Ancient Warfare\n description: >-\n 0 A.D. (pronounced \"zero ey-dee\") is a free, open-source, cross-platform real-time\n strategy (RTS) game of ancient warfare. In short, it is a historically-based war/economy\n game that allows players to relive or rewrite the history of Western civilizations,\n focusing on the years between 500 B.C. and 500 A.D. The project is highly ambitious,\n involving state-of-the-art 3D graphics, detailed artwork, sound, and a flexible\n and powerful custom-built game engine.\n\n The game has been in development by Wildfire Games (WFG), a group of volunteer,\n hobbyist game developers, since 2001.\n license:\n module:\n - MIT\n xmd:\n mbs:\n scmurl: https://src.fedoraproject.org/modules/0ad.git?#58cdc22e05ab192114375ce084cf32b6dc456600\n buildrequires:\n platform:\n stream: f29\n ursine_rpms: \n filtered_rpms: []\n version: 5\n koji_tag: module-f29-build\n context: 00000000\n stream_collision_modules: \n ref: f29\n flatpak-runtime:\n stream: f29\n filtered_rpms: []\n version: 20181128194032\n koji_tag: module-flatpak-runtime-f29-20181128194032-6c81f848\n context: 6c81f848\n ref: c4c27057e7d84900b11cb55e6c804ec7f79a0321\n flatpak-common:\n stream: f29\n filtered_rpms: []\n version: 20190111224233\n koji_tag: module-flatpak-common-f29-20190111224233-775baa8e\n context: 775baa8e\n ref: f92996899eee80e73a5b7c9ccbc1b252036d4f3e\n mse: TRUE\n rpms:\n libsodium:\n ref: c1134be082e4891a93c476682ce8ac5298428443\n enet:\n ref: 93a51d2551b62201404829149f198192a833b7bb\n 0ad-data:\n ref: 319ccafad10ed2ca86f5d1766384dcf18c3c49cc\n nvidia-texture-tools:\n ref: 8cb08423ac9d544b13aabd36cd7fde2eae9b16f9\n miniupnpc:\n ref: f2f123fce8288e656cd915e8df0954c91b0d7db5\n gloox:\n ref: 1add252ec16a177c53a00782fc2a51f13eaa35ba\n 0ad:\n ref: 8736d54e97d6e8e79c9024986e35c8fe12ee0dde\n mozjs38:\n ref: a245bda0ec764e4a7b739e3537bf611adce00b16\n commit: 58cdc22e05ab192114375ce084cf32b6dc456600\n dependencies:\n - buildrequires:\n flatpak-common: [f29]\n flatpak-runtime: [f29]\n platform: [f29]\n requires:\n flatpak-common: [f29]\n flatpak-runtime: [f29]\n platform: [f29]\n profiles:\n default:\n rpms:\n - 0ad\n components:\n rpms:\n 0ad:\n rationale: Application package\n repository: git+https://src.fedoraproject.org/rpms/0ad\n cache: https://src.fedoraproject.org/repo/pkgs/0ad\n ref: f29\n buildorder: 10\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n 0ad-data:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/0ad-data\n cache: https://src.fedoraproject.org/repo/pkgs/0ad-data\n ref: f29\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n enet:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/enet\n cache: https://src.fedoraproject.org/repo/pkgs/enet\n ref: f29\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n gloox:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/gloox\n cache: https://src.fedoraproject.org/repo/pkgs/gloox\n ref: f29\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n libsodium:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/libsodium\n cache: https://src.fedoraproject.org/repo/pkgs/libsodium\n ref: f29\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n miniupnpc:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/miniupnpc\n cache: https://src.fedoraproject.org/repo/pkgs/miniupnpc\n ref: f29\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n mozjs38:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/mozjs38\n cache: https://src.fedoraproject.org/repo/pkgs/mozjs38\n ref: f29\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n nvidia-texture-tools:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/nvidia-texture-tools\n cache: https://src.fedoraproject.org/repo/pkgs/nvidia-texture-tools\n ref: f29\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n...", "runtime_deps": [ { "dependency": "platform", "stream": "f29" }, { "dependency": "flatpak-runtime", "stream": "f29" }, { "dependency": "flatpak-common", "stream": "f29" } ], "build_deps": [ { "dependency": "platform", "stream": "f29" }, { "dependency": "flatpak-runtime", "stream": "f29" }, { "dependency": "flatpak-common", "stream": "f29" } ], "active": false, "rpms": [] }, { "variant_id": "0ad", "variant_uid": "0ad:master:2920190207205148:e9d62918", "variant_name": "0ad", "variant_type": "module", "variant_version": "master", "variant_release": "2920190207205148", "variant_context": "e9d62918", "koji_tag": "module-0ad-master-2920190207205148-e9d62918", "modulemd": "---\ndocument: modulemd\nversion: 2\ndata:\n name: 0ad\n stream: master\n version: 2920190207205148\n context: e9d62918\n summary: Cross-Platform RTS Game of Ancient Warfare\n description: >-\n 0 A.D. (pronounced \"zero ey-dee\") is a free, open-source, cross-platform real-time\n strategy (RTS) game of ancient warfare. In short, it is a historically-based war/economy\n game that allows players to relive or rewrite the history of Western civilizations,\n focusing on the years between 500 B.C. and 500 A.D. The project is highly ambitious,\n involving state-of-the-art 3D graphics, detailed artwork, sound, and a flexible\n and powerful custom-built game engine.\n\n The game has been in development by Wildfire Games (WFG), a group of volunteer,\n hobbyist game developers, since 2001.\n license:\n module:\n - MIT\n xmd:\n mbs:\n scmurl: https://src.fedoraproject.org/modules/0ad.git?#896a5b748e00553a2e6369bb6d1530a5de911c07\n buildrequires:\n platform:\n stream: f29\n ursine_rpms: \n filtered_rpms: []\n version: 5\n koji_tag: module-f29-build\n context: 00000000\n stream_collision_modules: \n ref: f29\n flatpak-runtime:\n stream: f29\n filtered_rpms: []\n version: 20181128194032\n koji_tag: module-flatpak-runtime-f29-20181128194032-6c81f848\n context: 6c81f848\n ref: c4c27057e7d84900b11cb55e6c804ec7f79a0321\n flatpak-common:\n stream: f29\n filtered_rpms: []\n version: 2920190207113924\n koji_tag: module-flatpak-common-f29-2920190207113924-d8818e5b\n context: d8818e5b\n ref: eadce83d351b60ce819e65b2493bdb9fba90d101\n mse: TRUE\n rpms:\n libsodium:\n ref: c1134be082e4891a93c476682ce8ac5298428443\n enet:\n ref: 93a51d2551b62201404829149f198192a833b7bb\n 0ad-data:\n ref: 319ccafad10ed2ca86f5d1766384dcf18c3c49cc\n nvidia-texture-tools:\n ref: 8cb08423ac9d544b13aabd36cd7fde2eae9b16f9\n miniupnpc:\n ref: f2f123fce8288e656cd915e8df0954c91b0d7db5\n gloox:\n ref: 1add252ec16a177c53a00782fc2a51f13eaa35ba\n 0ad:\n ref: 8736d54e97d6e8e79c9024986e35c8fe12ee0dde\n mozjs38:\n ref: a245bda0ec764e4a7b739e3537bf611adce00b16\n commit: 896a5b748e00553a2e6369bb6d1530a5de911c07\n dependencies:\n - buildrequires:\n flatpak-common: [f29]\n flatpak-runtime: [f29]\n platform: [f29]\n requires:\n flatpak-common: [f29]\n flatpak-runtime: [f29]\n platform: [f29]\n profiles:\n default:\n rpms:\n - 0ad\n components:\n rpms:\n 0ad:\n rationale: Application package\n repository: git+https://src.fedoraproject.org/rpms/0ad\n cache: https://src.fedoraproject.org/repo/pkgs/0ad\n ref: f29\n buildorder: 10\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n 0ad-data:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/0ad-data\n cache: https://src.fedoraproject.org/repo/pkgs/0ad-data\n ref: f29\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n enet:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/enet\n cache: https://src.fedoraproject.org/repo/pkgs/enet\n ref: f29\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n gloox:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/gloox\n cache: https://src.fedoraproject.org/repo/pkgs/gloox\n ref: f29\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n libsodium:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/libsodium\n cache: https://src.fedoraproject.org/repo/pkgs/libsodium\n ref: f29\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n miniupnpc:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/miniupnpc\n cache: https://src.fedoraproject.org/repo/pkgs/miniupnpc\n ref: f29\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n mozjs38:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/mozjs38\n cache: https://src.fedoraproject.org/repo/pkgs/mozjs38\n ref: f29\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n nvidia-texture-tools:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/nvidia-texture-tools\n cache: https://src.fedoraproject.org/repo/pkgs/nvidia-texture-tools\n ref: f29\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n...", "runtime_deps": [ { "dependency": "platform", "stream": "f29" }, { "dependency": "flatpak-runtime", "stream": "f29" }, { "dependency": "flatpak-common", "stream": "f29" } ], "build_deps": [ { "dependency": "platform", "stream": "f29" }, { "dependency": "flatpak-runtime", "stream": "f29" }, { "dependency": "flatpak-common", "stream": "f29" } ], "active": false, "rpms": [] }, { "variant_id": "0ad", "variant_uid": "0ad:master:2920190208081909:e9d62918", "variant_name": "0ad", "variant_type": "module", "variant_version": "master", "variant_release": "2920190208081909", "variant_context": "e9d62918", "koji_tag": "module-0ad-master-2920190208081909-e9d62918", "modulemd": "---\ndocument: modulemd\nversion: 2\ndata:\n name: 0ad\n stream: master\n version: 2920190208081909\n context: e9d62918\n summary: Cross-Platform RTS Game of Ancient Warfare\n description: >-\n 0 A.D. (pronounced \"zero ey-dee\") is a free, open-source, cross-platform real-time\n strategy (RTS) game of ancient warfare. In short, it is a historically-based war/economy\n game that allows players to relive or rewrite the history of Western civilizations,\n focusing on the years between 500 B.C. and 500 A.D. The project is highly ambitious,\n involving state-of-the-art 3D graphics, detailed artwork, sound, and a flexible\n and powerful custom-built game engine.\n\n The game has been in development by Wildfire Games (WFG), a group of volunteer,\n hobbyist game developers, since 2001.\n license:\n module:\n - MIT\n xmd:\n mbs:\n scmurl: https://src.fedoraproject.org/modules/0ad.git?#c6ae7294dc66e82ff7fe2bcec3eeafebb217f0ba\n buildrequires:\n platform:\n stream: f29\n ursine_rpms: \n filtered_rpms: []\n version: 5\n koji_tag: module-f29-build\n context: 00000000\n stream_collision_modules: \n ref: f29\n flatpak-runtime:\n stream: f29\n filtered_rpms: []\n version: 20181128194032\n koji_tag: module-flatpak-runtime-f29-20181128194032-6c81f848\n context: 6c81f848\n ref: c4c27057e7d84900b11cb55e6c804ec7f79a0321\n flatpak-common:\n stream: f29\n filtered_rpms: []\n version: 2920190207113924\n koji_tag: module-flatpak-common-f29-2920190207113924-d8818e5b\n context: d8818e5b\n ref: eadce83d351b60ce819e65b2493bdb9fba90d101\n mse: TRUE\n rpms:\n wxGTK3:\n ref: 0e58a8839c26f525e437313880a9efeb8fbe6312\n libsodium:\n ref: c1134be082e4891a93c476682ce8ac5298428443\n enet:\n ref: 93a51d2551b62201404829149f198192a833b7bb\n 0ad-data:\n ref: 319ccafad10ed2ca86f5d1766384dcf18c3c49cc\n nvidia-texture-tools:\n ref: 8cb08423ac9d544b13aabd36cd7fde2eae9b16f9\n miniupnpc:\n ref: f2f123fce8288e656cd915e8df0954c91b0d7db5\n gloox:\n ref: 1add252ec16a177c53a00782fc2a51f13eaa35ba\n 0ad:\n ref: 8736d54e97d6e8e79c9024986e35c8fe12ee0dde\n mozjs38:\n ref: a245bda0ec764e4a7b739e3537bf611adce00b16\n commit: c6ae7294dc66e82ff7fe2bcec3eeafebb217f0ba\n dependencies:\n - buildrequires:\n flatpak-common: [f29]\n flatpak-runtime: [f29]\n platform: [f29]\n requires:\n flatpak-common: [f29]\n flatpak-runtime: [f29]\n platform: [f29]\n profiles:\n default:\n rpms:\n - 0ad\n components:\n rpms:\n 0ad:\n rationale: Application package\n repository: git+https://src.fedoraproject.org/rpms/0ad\n cache: https://src.fedoraproject.org/repo/pkgs/0ad\n ref: f29\n buildorder: 10\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n 0ad-data:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/0ad-data\n cache: https://src.fedoraproject.org/repo/pkgs/0ad-data\n ref: f29\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n enet:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/enet\n cache: https://src.fedoraproject.org/repo/pkgs/enet\n ref: f29\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n gloox:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/gloox\n cache: https://src.fedoraproject.org/repo/pkgs/gloox\n ref: f29\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n libsodium:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/libsodium\n cache: https://src.fedoraproject.org/repo/pkgs/libsodium\n ref: f29\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n miniupnpc:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/miniupnpc\n cache: https://src.fedoraproject.org/repo/pkgs/miniupnpc\n ref: f29\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n mozjs38:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/mozjs38\n cache: https://src.fedoraproject.org/repo/pkgs/mozjs38\n ref: f29\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n nvidia-texture-tools:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/nvidia-texture-tools\n cache: https://src.fedoraproject.org/repo/pkgs/nvidia-texture-tools\n ref: f29\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n wxGTK3:\n rationale: Flatpak application runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/wxGTK3\n cache: https://src.fedoraproject.org/repo/pkgs/wxGTK3\n ref: f29\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n...", "runtime_deps": [ { "dependency": "platform", "stream": "f29" }, { "dependency": "flatpak-runtime", "stream": "f29" }, { "dependency": "flatpak-common", "stream": "f29" } ], "build_deps": [ { "dependency": "platform", "stream": "f29" }, { "dependency": "flatpak-runtime", "stream": "f29" }, { "dependency": "flatpak-common", "stream": "f29" } ], "active": true, "rpms": [ "0ad-0:0.0.23b-5.module_f29+2813+c8efebc7.aarch64.rpm", "0ad-0:0.0.23b-5.module_f29+2813+c8efebc7.armv7hl.rpm", "0ad-0:0.0.23b-5.module_f29+2813+c8efebc7.i686.rpm", "0ad-0:0.0.23b-5.module_f29+2813+c8efebc7.src.rpm", "0ad-0:0.0.23b-5.module_f29+2813+c8efebc7.x86_64.rpm", "0ad-data-0:0.0.23b-1.module_f29+2813+c8efebc7.noarch.rpm", "0ad-data-0:0.0.23b-1.module_f29+2813+c8efebc7.src.rpm", "0ad-debuginfo-0:0.0.23b-5.module_f29+2813+c8efebc7.aarch64.rpm", "0ad-debuginfo-0:0.0.23b-5.module_f29+2813+c8efebc7.armv7hl.rpm", "0ad-debuginfo-0:0.0.23b-5.module_f29+2813+c8efebc7.i686.rpm", "0ad-debuginfo-0:0.0.23b-5.module_f29+2813+c8efebc7.x86_64.rpm", "0ad-debugsource-0:0.0.23b-5.module_f29+2813+c8efebc7.aarch64.rpm", "0ad-debugsource-0:0.0.23b-5.module_f29+2813+c8efebc7.armv7hl.rpm", "0ad-debugsource-0:0.0.23b-5.module_f29+2813+c8efebc7.i686.rpm", "0ad-debugsource-0:0.0.23b-5.module_f29+2813+c8efebc7.x86_64.rpm", "compat-wxGTK3-gtk2-0:3.0.4-4.module_f29+2813+c8efebc7.aarch64.rpm", "compat-wxGTK3-gtk2-0:3.0.4-4.module_f29+2813+c8efebc7.armv7hl.rpm", "compat-wxGTK3-gtk2-0:3.0.4-4.module_f29+2813+c8efebc7.i686.rpm", "compat-wxGTK3-gtk2-0:3.0.4-4.module_f29+2813+c8efebc7.ppc64le.rpm", "compat-wxGTK3-gtk2-0:3.0.4-4.module_f29+2813+c8efebc7.s390x.rpm", "compat-wxGTK3-gtk2-0:3.0.4-4.module_f29+2813+c8efebc7.x86_64.rpm", "compat-wxGTK3-gtk2-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.aarch64.rpm", "compat-wxGTK3-gtk2-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.armv7hl.rpm", "compat-wxGTK3-gtk2-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.i686.rpm", "compat-wxGTK3-gtk2-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.ppc64le.rpm", "compat-wxGTK3-gtk2-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.s390x.rpm", "compat-wxGTK3-gtk2-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.x86_64.rpm", "compat-wxGTK3-gtk2-devel-0:3.0.4-4.module_f29+2813+c8efebc7.aarch64.rpm", "compat-wxGTK3-gtk2-devel-0:3.0.4-4.module_f29+2813+c8efebc7.armv7hl.rpm", "compat-wxGTK3-gtk2-devel-0:3.0.4-4.module_f29+2813+c8efebc7.i686.rpm", "compat-wxGTK3-gtk2-devel-0:3.0.4-4.module_f29+2813+c8efebc7.ppc64le.rpm", "compat-wxGTK3-gtk2-devel-0:3.0.4-4.module_f29+2813+c8efebc7.s390x.rpm", "compat-wxGTK3-gtk2-devel-0:3.0.4-4.module_f29+2813+c8efebc7.x86_64.rpm", "compat-wxGTK3-gtk2-gl-0:3.0.4-4.module_f29+2813+c8efebc7.aarch64.rpm", "compat-wxGTK3-gtk2-gl-0:3.0.4-4.module_f29+2813+c8efebc7.armv7hl.rpm", "compat-wxGTK3-gtk2-gl-0:3.0.4-4.module_f29+2813+c8efebc7.i686.rpm", "compat-wxGTK3-gtk2-gl-0:3.0.4-4.module_f29+2813+c8efebc7.ppc64le.rpm", "compat-wxGTK3-gtk2-gl-0:3.0.4-4.module_f29+2813+c8efebc7.s390x.rpm", "compat-wxGTK3-gtk2-gl-0:3.0.4-4.module_f29+2813+c8efebc7.x86_64.rpm", "compat-wxGTK3-gtk2-gl-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.aarch64.rpm", "compat-wxGTK3-gtk2-gl-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.armv7hl.rpm", "compat-wxGTK3-gtk2-gl-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.i686.rpm", "compat-wxGTK3-gtk2-gl-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.ppc64le.rpm", "compat-wxGTK3-gtk2-gl-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.s390x.rpm", "compat-wxGTK3-gtk2-gl-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.x86_64.rpm", "compat-wxGTK3-gtk2-media-0:3.0.4-4.module_f29+2813+c8efebc7.aarch64.rpm", "compat-wxGTK3-gtk2-media-0:3.0.4-4.module_f29+2813+c8efebc7.armv7hl.rpm", "compat-wxGTK3-gtk2-media-0:3.0.4-4.module_f29+2813+c8efebc7.i686.rpm", "compat-wxGTK3-gtk2-media-0:3.0.4-4.module_f29+2813+c8efebc7.ppc64le.rpm", "compat-wxGTK3-gtk2-media-0:3.0.4-4.module_f29+2813+c8efebc7.s390x.rpm", "compat-wxGTK3-gtk2-media-0:3.0.4-4.module_f29+2813+c8efebc7.x86_64.rpm", "compat-wxGTK3-gtk2-media-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.aarch64.rpm", "compat-wxGTK3-gtk2-media-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.armv7hl.rpm", "compat-wxGTK3-gtk2-media-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.i686.rpm", "compat-wxGTK3-gtk2-media-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.ppc64le.rpm", "compat-wxGTK3-gtk2-media-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.s390x.rpm", "compat-wxGTK3-gtk2-media-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.x86_64.rpm", "enet-0:1.3.13-10.module_f29+2813+c8efebc7.aarch64.rpm", "enet-0:1.3.13-10.module_f29+2813+c8efebc7.armv7hl.rpm", "enet-0:1.3.13-10.module_f29+2813+c8efebc7.i686.rpm", "enet-0:1.3.13-10.module_f29+2813+c8efebc7.ppc64le.rpm", "enet-0:1.3.13-10.module_f29+2813+c8efebc7.s390x.rpm", "enet-0:1.3.13-10.module_f29+2813+c8efebc7.src.rpm", "enet-0:1.3.13-10.module_f29+2813+c8efebc7.x86_64.rpm", "enet-debuginfo-0:1.3.13-10.module_f29+2813+c8efebc7.aarch64.rpm", "enet-debuginfo-0:1.3.13-10.module_f29+2813+c8efebc7.armv7hl.rpm", "enet-debuginfo-0:1.3.13-10.module_f29+2813+c8efebc7.i686.rpm", "enet-debuginfo-0:1.3.13-10.module_f29+2813+c8efebc7.ppc64le.rpm", "enet-debuginfo-0:1.3.13-10.module_f29+2813+c8efebc7.s390x.rpm", "enet-debuginfo-0:1.3.13-10.module_f29+2813+c8efebc7.x86_64.rpm", "enet-debugsource-0:1.3.13-10.module_f29+2813+c8efebc7.aarch64.rpm", "enet-debugsource-0:1.3.13-10.module_f29+2813+c8efebc7.armv7hl.rpm", "enet-debugsource-0:1.3.13-10.module_f29+2813+c8efebc7.i686.rpm", "enet-debugsource-0:1.3.13-10.module_f29+2813+c8efebc7.ppc64le.rpm", "enet-debugsource-0:1.3.13-10.module_f29+2813+c8efebc7.s390x.rpm", "enet-debugsource-0:1.3.13-10.module_f29+2813+c8efebc7.x86_64.rpm", "enet-devel-0:1.3.13-10.module_f29+2813+c8efebc7.aarch64.rpm", "enet-devel-0:1.3.13-10.module_f29+2813+c8efebc7.armv7hl.rpm", "enet-devel-0:1.3.13-10.module_f29+2813+c8efebc7.i686.rpm", "enet-devel-0:1.3.13-10.module_f29+2813+c8efebc7.ppc64le.rpm", "enet-devel-0:1.3.13-10.module_f29+2813+c8efebc7.s390x.rpm", "enet-devel-0:1.3.13-10.module_f29+2813+c8efebc7.x86_64.rpm", "gloox-1:1.0.14-8.module_f29+2813+c8efebc7.aarch64.rpm", "gloox-1:1.0.14-8.module_f29+2813+c8efebc7.armv7hl.rpm", "gloox-1:1.0.14-8.module_f29+2813+c8efebc7.i686.rpm", "gloox-1:1.0.14-8.module_f29+2813+c8efebc7.ppc64le.rpm", "gloox-1:1.0.14-8.module_f29+2813+c8efebc7.s390x.rpm", "gloox-1:1.0.14-8.module_f29+2813+c8efebc7.src.rpm", "gloox-1:1.0.14-8.module_f29+2813+c8efebc7.x86_64.rpm", "gloox-debuginfo-1:1.0.14-8.module_f29+2813+c8efebc7.aarch64.rpm", "gloox-debuginfo-1:1.0.14-8.module_f29+2813+c8efebc7.armv7hl.rpm", "gloox-debuginfo-1:1.0.14-8.module_f29+2813+c8efebc7.i686.rpm", "gloox-debuginfo-1:1.0.14-8.module_f29+2813+c8efebc7.ppc64le.rpm", "gloox-debuginfo-1:1.0.14-8.module_f29+2813+c8efebc7.s390x.rpm", "gloox-debuginfo-1:1.0.14-8.module_f29+2813+c8efebc7.x86_64.rpm", "gloox-debugsource-1:1.0.14-8.module_f29+2813+c8efebc7.aarch64.rpm", "gloox-debugsource-1:1.0.14-8.module_f29+2813+c8efebc7.armv7hl.rpm", "gloox-debugsource-1:1.0.14-8.module_f29+2813+c8efebc7.i686.rpm", "gloox-debugsource-1:1.0.14-8.module_f29+2813+c8efebc7.ppc64le.rpm", "gloox-debugsource-1:1.0.14-8.module_f29+2813+c8efebc7.s390x.rpm", "gloox-debugsource-1:1.0.14-8.module_f29+2813+c8efebc7.x86_64.rpm", "gloox-devel-1:1.0.14-8.module_f29+2813+c8efebc7.aarch64.rpm", "gloox-devel-1:1.0.14-8.module_f29+2813+c8efebc7.armv7hl.rpm", "gloox-devel-1:1.0.14-8.module_f29+2813+c8efebc7.i686.rpm", "gloox-devel-1:1.0.14-8.module_f29+2813+c8efebc7.ppc64le.rpm", "gloox-devel-1:1.0.14-8.module_f29+2813+c8efebc7.s390x.rpm", "gloox-devel-1:1.0.14-8.module_f29+2813+c8efebc7.x86_64.rpm", "libsodium-0:1.0.17-1.module_f29+2813+c8efebc7.aarch64.rpm", "libsodium-0:1.0.17-1.module_f29+2813+c8efebc7.armv7hl.rpm", "libsodium-0:1.0.17-1.module_f29+2813+c8efebc7.i686.rpm", "libsodium-0:1.0.17-1.module_f29+2813+c8efebc7.ppc64le.rpm", "libsodium-0:1.0.17-1.module_f29+2813+c8efebc7.s390x.rpm", "libsodium-0:1.0.17-1.module_f29+2813+c8efebc7.src.rpm", "libsodium-0:1.0.17-1.module_f29+2813+c8efebc7.x86_64.rpm", "libsodium-debuginfo-0:1.0.17-1.module_f29+2813+c8efebc7.aarch64.rpm", "libsodium-debuginfo-0:1.0.17-1.module_f29+2813+c8efebc7.armv7hl.rpm", "libsodium-debuginfo-0:1.0.17-1.module_f29+2813+c8efebc7.i686.rpm", "libsodium-debuginfo-0:1.0.17-1.module_f29+2813+c8efebc7.ppc64le.rpm", "libsodium-debuginfo-0:1.0.17-1.module_f29+2813+c8efebc7.s390x.rpm", "libsodium-debuginfo-0:1.0.17-1.module_f29+2813+c8efebc7.x86_64.rpm", "libsodium-debugsource-0:1.0.17-1.module_f29+2813+c8efebc7.aarch64.rpm", "libsodium-debugsource-0:1.0.17-1.module_f29+2813+c8efebc7.armv7hl.rpm", "libsodium-debugsource-0:1.0.17-1.module_f29+2813+c8efebc7.i686.rpm", "libsodium-debugsource-0:1.0.17-1.module_f29+2813+c8efebc7.ppc64le.rpm", "libsodium-debugsource-0:1.0.17-1.module_f29+2813+c8efebc7.s390x.rpm", "libsodium-debugsource-0:1.0.17-1.module_f29+2813+c8efebc7.x86_64.rpm", "libsodium-devel-0:1.0.17-1.module_f29+2813+c8efebc7.aarch64.rpm", "libsodium-devel-0:1.0.17-1.module_f29+2813+c8efebc7.armv7hl.rpm", "libsodium-devel-0:1.0.17-1.module_f29+2813+c8efebc7.i686.rpm", "libsodium-devel-0:1.0.17-1.module_f29+2813+c8efebc7.ppc64le.rpm", "libsodium-devel-0:1.0.17-1.module_f29+2813+c8efebc7.s390x.rpm", "libsodium-devel-0:1.0.17-1.module_f29+2813+c8efebc7.x86_64.rpm", "libsodium-static-0:1.0.17-1.module_f29+2813+c8efebc7.aarch64.rpm", "libsodium-static-0:1.0.17-1.module_f29+2813+c8efebc7.armv7hl.rpm", "libsodium-static-0:1.0.17-1.module_f29+2813+c8efebc7.i686.rpm", "libsodium-static-0:1.0.17-1.module_f29+2813+c8efebc7.ppc64le.rpm", "libsodium-static-0:1.0.17-1.module_f29+2813+c8efebc7.s390x.rpm", "libsodium-static-0:1.0.17-1.module_f29+2813+c8efebc7.x86_64.rpm", "miniupnpc-0:2.0-13.module_f29+2813+c8efebc7.aarch64.rpm", "miniupnpc-0:2.0-13.module_f29+2813+c8efebc7.armv7hl.rpm", "miniupnpc-0:2.0-13.module_f29+2813+c8efebc7.i686.rpm", "miniupnpc-0:2.0-13.module_f29+2813+c8efebc7.ppc64le.rpm", "miniupnpc-0:2.0-13.module_f29+2813+c8efebc7.s390x.rpm", "miniupnpc-0:2.0-13.module_f29+2813+c8efebc7.src.rpm", "miniupnpc-0:2.0-13.module_f29+2813+c8efebc7.x86_64.rpm", "miniupnpc-debuginfo-0:2.0-13.module_f29+2813+c8efebc7.aarch64.rpm", "miniupnpc-debuginfo-0:2.0-13.module_f29+2813+c8efebc7.armv7hl.rpm", "miniupnpc-debuginfo-0:2.0-13.module_f29+2813+c8efebc7.i686.rpm", "miniupnpc-debuginfo-0:2.0-13.module_f29+2813+c8efebc7.ppc64le.rpm", "miniupnpc-debuginfo-0:2.0-13.module_f29+2813+c8efebc7.s390x.rpm", "miniupnpc-debuginfo-0:2.0-13.module_f29+2813+c8efebc7.x86_64.rpm", "miniupnpc-debugsource-0:2.0-13.module_f29+2813+c8efebc7.aarch64.rpm", "miniupnpc-debugsource-0:2.0-13.module_f29+2813+c8efebc7.armv7hl.rpm", "miniupnpc-debugsource-0:2.0-13.module_f29+2813+c8efebc7.i686.rpm", "miniupnpc-debugsource-0:2.0-13.module_f29+2813+c8efebc7.ppc64le.rpm", "miniupnpc-debugsource-0:2.0-13.module_f29+2813+c8efebc7.s390x.rpm", "miniupnpc-debugsource-0:2.0-13.module_f29+2813+c8efebc7.x86_64.rpm", "miniupnpc-devel-0:2.0-13.module_f29+2813+c8efebc7.aarch64.rpm", "miniupnpc-devel-0:2.0-13.module_f29+2813+c8efebc7.armv7hl.rpm", "miniupnpc-devel-0:2.0-13.module_f29+2813+c8efebc7.i686.rpm", "miniupnpc-devel-0:2.0-13.module_f29+2813+c8efebc7.ppc64le.rpm", "miniupnpc-devel-0:2.0-13.module_f29+2813+c8efebc7.s390x.rpm", "miniupnpc-devel-0:2.0-13.module_f29+2813+c8efebc7.x86_64.rpm", "mozjs38-0:38.8.0-11.module_f29+2813+c8efebc7.aarch64.rpm", "mozjs38-0:38.8.0-11.module_f29+2813+c8efebc7.armv7hl.rpm", "mozjs38-0:38.8.0-11.module_f29+2813+c8efebc7.i686.rpm", "mozjs38-0:38.8.0-11.module_f29+2813+c8efebc7.ppc64le.rpm", "mozjs38-0:38.8.0-11.module_f29+2813+c8efebc7.s390x.rpm", "mozjs38-0:38.8.0-11.module_f29+2813+c8efebc7.src.rpm", "mozjs38-0:38.8.0-11.module_f29+2813+c8efebc7.x86_64.rpm", "mozjs38-debuginfo-0:38.8.0-11.module_f29+2813+c8efebc7.aarch64.rpm", "mozjs38-debuginfo-0:38.8.0-11.module_f29+2813+c8efebc7.armv7hl.rpm", "mozjs38-debuginfo-0:38.8.0-11.module_f29+2813+c8efebc7.i686.rpm", "mozjs38-debuginfo-0:38.8.0-11.module_f29+2813+c8efebc7.ppc64le.rpm", "mozjs38-debuginfo-0:38.8.0-11.module_f29+2813+c8efebc7.s390x.rpm", "mozjs38-debuginfo-0:38.8.0-11.module_f29+2813+c8efebc7.x86_64.rpm", "mozjs38-debugsource-0:38.8.0-11.module_f29+2813+c8efebc7.aarch64.rpm", "mozjs38-debugsource-0:38.8.0-11.module_f29+2813+c8efebc7.armv7hl.rpm", "mozjs38-debugsource-0:38.8.0-11.module_f29+2813+c8efebc7.i686.rpm", "mozjs38-debugsource-0:38.8.0-11.module_f29+2813+c8efebc7.ppc64le.rpm", "mozjs38-debugsource-0:38.8.0-11.module_f29+2813+c8efebc7.s390x.rpm", "mozjs38-debugsource-0:38.8.0-11.module_f29+2813+c8efebc7.x86_64.rpm", "mozjs38-devel-0:38.8.0-11.module_f29+2813+c8efebc7.aarch64.rpm", "mozjs38-devel-0:38.8.0-11.module_f29+2813+c8efebc7.armv7hl.rpm", "mozjs38-devel-0:38.8.0-11.module_f29+2813+c8efebc7.i686.rpm", "mozjs38-devel-0:38.8.0-11.module_f29+2813+c8efebc7.ppc64le.rpm", "mozjs38-devel-0:38.8.0-11.module_f29+2813+c8efebc7.s390x.rpm", "mozjs38-devel-0:38.8.0-11.module_f29+2813+c8efebc7.x86_64.rpm", "nvidia-texture-tools-0:2.0.8-19.module_f29+2813+c8efebc7.aarch64.rpm", "nvidia-texture-tools-0:2.0.8-19.module_f29+2813+c8efebc7.armv7hl.rpm", "nvidia-texture-tools-0:2.0.8-19.module_f29+2813+c8efebc7.i686.rpm", "nvidia-texture-tools-0:2.0.8-19.module_f29+2813+c8efebc7.ppc64le.rpm", "nvidia-texture-tools-0:2.0.8-19.module_f29+2813+c8efebc7.s390x.rpm", "nvidia-texture-tools-0:2.0.8-19.module_f29+2813+c8efebc7.src.rpm", "nvidia-texture-tools-0:2.0.8-19.module_f29+2813+c8efebc7.x86_64.rpm", "nvidia-texture-tools-debuginfo-0:2.0.8-19.module_f29+2813+c8efebc7.aarch64.rpm", "nvidia-texture-tools-debuginfo-0:2.0.8-19.module_f29+2813+c8efebc7.armv7hl.rpm", "nvidia-texture-tools-debuginfo-0:2.0.8-19.module_f29+2813+c8efebc7.i686.rpm", "nvidia-texture-tools-debuginfo-0:2.0.8-19.module_f29+2813+c8efebc7.ppc64le.rpm", "nvidia-texture-tools-debuginfo-0:2.0.8-19.module_f29+2813+c8efebc7.s390x.rpm", "nvidia-texture-tools-debuginfo-0:2.0.8-19.module_f29+2813+c8efebc7.x86_64.rpm", "nvidia-texture-tools-debugsource-0:2.0.8-19.module_f29+2813+c8efebc7.aarch64.rpm", "nvidia-texture-tools-debugsource-0:2.0.8-19.module_f29+2813+c8efebc7.armv7hl.rpm", "nvidia-texture-tools-debugsource-0:2.0.8-19.module_f29+2813+c8efebc7.i686.rpm", "nvidia-texture-tools-debugsource-0:2.0.8-19.module_f29+2813+c8efebc7.ppc64le.rpm", "nvidia-texture-tools-debugsource-0:2.0.8-19.module_f29+2813+c8efebc7.s390x.rpm", "nvidia-texture-tools-debugsource-0:2.0.8-19.module_f29+2813+c8efebc7.x86_64.rpm", "nvidia-texture-tools-devel-0:2.0.8-19.module_f29+2813+c8efebc7.aarch64.rpm", "nvidia-texture-tools-devel-0:2.0.8-19.module_f29+2813+c8efebc7.armv7hl.rpm", "nvidia-texture-tools-devel-0:2.0.8-19.module_f29+2813+c8efebc7.i686.rpm", "nvidia-texture-tools-devel-0:2.0.8-19.module_f29+2813+c8efebc7.ppc64le.rpm", "nvidia-texture-tools-devel-0:2.0.8-19.module_f29+2813+c8efebc7.s390x.rpm", "nvidia-texture-tools-devel-0:2.0.8-19.module_f29+2813+c8efebc7.x86_64.rpm", "python2-miniupnpc-0:2.0-13.module_f29+2813+c8efebc7.aarch64.rpm", "python2-miniupnpc-0:2.0-13.module_f29+2813+c8efebc7.armv7hl.rpm", "python2-miniupnpc-0:2.0-13.module_f29+2813+c8efebc7.i686.rpm", "python2-miniupnpc-0:2.0-13.module_f29+2813+c8efebc7.ppc64le.rpm", "python2-miniupnpc-0:2.0-13.module_f29+2813+c8efebc7.s390x.rpm", "python2-miniupnpc-0:2.0-13.module_f29+2813+c8efebc7.x86_64.rpm", "python2-miniupnpc-debuginfo-0:2.0-13.module_f29+2813+c8efebc7.aarch64.rpm", "python2-miniupnpc-debuginfo-0:2.0-13.module_f29+2813+c8efebc7.armv7hl.rpm", "python2-miniupnpc-debuginfo-0:2.0-13.module_f29+2813+c8efebc7.i686.rpm", "python2-miniupnpc-debuginfo-0:2.0-13.module_f29+2813+c8efebc7.ppc64le.rpm", "python2-miniupnpc-debuginfo-0:2.0-13.module_f29+2813+c8efebc7.s390x.rpm", "python2-miniupnpc-debuginfo-0:2.0-13.module_f29+2813+c8efebc7.x86_64.rpm", "python3-miniupnpc-0:2.0-13.module_f29+2813+c8efebc7.aarch64.rpm", "python3-miniupnpc-0:2.0-13.module_f29+2813+c8efebc7.armv7hl.rpm", "python3-miniupnpc-0:2.0-13.module_f29+2813+c8efebc7.i686.rpm", "python3-miniupnpc-0:2.0-13.module_f29+2813+c8efebc7.ppc64le.rpm", "python3-miniupnpc-0:2.0-13.module_f29+2813+c8efebc7.s390x.rpm", "python3-miniupnpc-0:2.0-13.module_f29+2813+c8efebc7.x86_64.rpm", "python3-miniupnpc-debuginfo-0:2.0-13.module_f29+2813+c8efebc7.aarch64.rpm", "python3-miniupnpc-debuginfo-0:2.0-13.module_f29+2813+c8efebc7.armv7hl.rpm", "python3-miniupnpc-debuginfo-0:2.0-13.module_f29+2813+c8efebc7.i686.rpm", "python3-miniupnpc-debuginfo-0:2.0-13.module_f29+2813+c8efebc7.ppc64le.rpm", "python3-miniupnpc-debuginfo-0:2.0-13.module_f29+2813+c8efebc7.s390x.rpm", "python3-miniupnpc-debuginfo-0:2.0-13.module_f29+2813+c8efebc7.x86_64.rpm", "wxBase3-0:3.0.4-4.module_f29+2813+c8efebc7.aarch64.rpm", "wxBase3-0:3.0.4-4.module_f29+2813+c8efebc7.armv7hl.rpm", "wxBase3-0:3.0.4-4.module_f29+2813+c8efebc7.i686.rpm", "wxBase3-0:3.0.4-4.module_f29+2813+c8efebc7.ppc64le.rpm", "wxBase3-0:3.0.4-4.module_f29+2813+c8efebc7.s390x.rpm", "wxBase3-0:3.0.4-4.module_f29+2813+c8efebc7.x86_64.rpm", "wxBase3-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.aarch64.rpm", "wxBase3-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.armv7hl.rpm", "wxBase3-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.i686.rpm", "wxBase3-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.ppc64le.rpm", "wxBase3-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.s390x.rpm", "wxBase3-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.x86_64.rpm", "wxBase3-devel-0:3.0.4-4.module_f29+2813+c8efebc7.aarch64.rpm", "wxBase3-devel-0:3.0.4-4.module_f29+2813+c8efebc7.armv7hl.rpm", "wxBase3-devel-0:3.0.4-4.module_f29+2813+c8efebc7.i686.rpm", "wxBase3-devel-0:3.0.4-4.module_f29+2813+c8efebc7.ppc64le.rpm", "wxBase3-devel-0:3.0.4-4.module_f29+2813+c8efebc7.s390x.rpm", "wxBase3-devel-0:3.0.4-4.module_f29+2813+c8efebc7.x86_64.rpm", "wxBase3-devel-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.aarch64.rpm", "wxBase3-devel-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.armv7hl.rpm", "wxBase3-devel-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.i686.rpm", "wxBase3-devel-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.ppc64le.rpm", "wxBase3-devel-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.s390x.rpm", "wxBase3-devel-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.x86_64.rpm", "wxGTK3-0:3.0.4-4.module_f29+2813+c8efebc7.aarch64.rpm", "wxGTK3-0:3.0.4-4.module_f29+2813+c8efebc7.armv7hl.rpm", "wxGTK3-0:3.0.4-4.module_f29+2813+c8efebc7.i686.rpm", "wxGTK3-0:3.0.4-4.module_f29+2813+c8efebc7.ppc64le.rpm", "wxGTK3-0:3.0.4-4.module_f29+2813+c8efebc7.s390x.rpm", "wxGTK3-0:3.0.4-4.module_f29+2813+c8efebc7.src.rpm", "wxGTK3-0:3.0.4-4.module_f29+2813+c8efebc7.x86_64.rpm", "wxGTK3-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.aarch64.rpm", "wxGTK3-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.armv7hl.rpm", "wxGTK3-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.i686.rpm", "wxGTK3-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.ppc64le.rpm", "wxGTK3-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.s390x.rpm", "wxGTK3-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.x86_64.rpm", "wxGTK3-debugsource-0:3.0.4-4.module_f29+2813+c8efebc7.aarch64.rpm", "wxGTK3-debugsource-0:3.0.4-4.module_f29+2813+c8efebc7.armv7hl.rpm", "wxGTK3-debugsource-0:3.0.4-4.module_f29+2813+c8efebc7.i686.rpm", "wxGTK3-debugsource-0:3.0.4-4.module_f29+2813+c8efebc7.ppc64le.rpm", "wxGTK3-debugsource-0:3.0.4-4.module_f29+2813+c8efebc7.s390x.rpm", "wxGTK3-debugsource-0:3.0.4-4.module_f29+2813+c8efebc7.x86_64.rpm", "wxGTK3-devel-0:3.0.4-4.module_f29+2813+c8efebc7.aarch64.rpm", "wxGTK3-devel-0:3.0.4-4.module_f29+2813+c8efebc7.armv7hl.rpm", "wxGTK3-devel-0:3.0.4-4.module_f29+2813+c8efebc7.i686.rpm", "wxGTK3-devel-0:3.0.4-4.module_f29+2813+c8efebc7.ppc64le.rpm", "wxGTK3-devel-0:3.0.4-4.module_f29+2813+c8efebc7.s390x.rpm", "wxGTK3-devel-0:3.0.4-4.module_f29+2813+c8efebc7.x86_64.rpm", "wxGTK3-docs-0:3.0.4-4.module_f29+2813+c8efebc7.noarch.rpm", "wxGTK3-gl-0:3.0.4-4.module_f29+2813+c8efebc7.aarch64.rpm", "wxGTK3-gl-0:3.0.4-4.module_f29+2813+c8efebc7.armv7hl.rpm", "wxGTK3-gl-0:3.0.4-4.module_f29+2813+c8efebc7.i686.rpm", "wxGTK3-gl-0:3.0.4-4.module_f29+2813+c8efebc7.ppc64le.rpm", "wxGTK3-gl-0:3.0.4-4.module_f29+2813+c8efebc7.s390x.rpm", "wxGTK3-gl-0:3.0.4-4.module_f29+2813+c8efebc7.x86_64.rpm", "wxGTK3-gl-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.aarch64.rpm", "wxGTK3-gl-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.armv7hl.rpm", "wxGTK3-gl-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.i686.rpm", "wxGTK3-gl-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.ppc64le.rpm", "wxGTK3-gl-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.s390x.rpm", "wxGTK3-gl-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.x86_64.rpm", "wxGTK3-i18n-0:3.0.4-4.module_f29+2813+c8efebc7.noarch.rpm", "wxGTK3-media-0:3.0.4-4.module_f29+2813+c8efebc7.aarch64.rpm", "wxGTK3-media-0:3.0.4-4.module_f29+2813+c8efebc7.armv7hl.rpm", "wxGTK3-media-0:3.0.4-4.module_f29+2813+c8efebc7.i686.rpm", "wxGTK3-media-0:3.0.4-4.module_f29+2813+c8efebc7.ppc64le.rpm", "wxGTK3-media-0:3.0.4-4.module_f29+2813+c8efebc7.s390x.rpm", "wxGTK3-media-0:3.0.4-4.module_f29+2813+c8efebc7.x86_64.rpm", "wxGTK3-media-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.aarch64.rpm", "wxGTK3-media-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.armv7hl.rpm", "wxGTK3-media-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.i686.rpm", "wxGTK3-media-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.ppc64le.rpm", "wxGTK3-media-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.s390x.rpm", "wxGTK3-media-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.x86_64.rpm", "wxGTK3-webview-0:3.0.4-4.module_f29+2813+c8efebc7.aarch64.rpm", "wxGTK3-webview-0:3.0.4-4.module_f29+2813+c8efebc7.armv7hl.rpm", "wxGTK3-webview-0:3.0.4-4.module_f29+2813+c8efebc7.i686.rpm", "wxGTK3-webview-0:3.0.4-4.module_f29+2813+c8efebc7.ppc64le.rpm", "wxGTK3-webview-0:3.0.4-4.module_f29+2813+c8efebc7.s390x.rpm", "wxGTK3-webview-0:3.0.4-4.module_f29+2813+c8efebc7.x86_64.rpm", "wxGTK3-webview-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.aarch64.rpm", "wxGTK3-webview-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.armv7hl.rpm", "wxGTK3-webview-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.i686.rpm", "wxGTK3-webview-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.ppc64le.rpm", "wxGTK3-webview-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.s390x.rpm", "wxGTK3-webview-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.x86_64.rpm", "wxGTK3-xmldocs-0:3.0.4-4.module_f29+2813+c8efebc7.noarch.rpm" ] }, { "variant_id": "0ad", "variant_uid": "0ad:master:2920190514194751:e9d62918", "variant_name": "0ad", "variant_type": "module", "variant_version": "master", "variant_release": "2920190514194751", "variant_context": "e9d62918", "koji_tag": "module-0ad-master-2920190514194751-e9d62918", "modulemd": "---\ndocument: modulemd\nversion: 2\ndata:\n name: 0ad\n stream: master\n version: 2920190514194751\n context: e9d62918\n summary: Cross-Platform RTS Game of Ancient Warfare\n description: >-\n 0 A.D. (pronounced \"zero ey-dee\") is a free, open-source, cross-platform real-time\n strategy (RTS) game of ancient warfare. In short, it is a historically-based war/economy\n game that allows players to relive or rewrite the history of Western civilizations,\n focusing on the years between 500 B.C. and 500 A.D. The project is highly ambitious,\n involving state-of-the-art 3D graphics, detailed artwork, sound, and a flexible\n and powerful custom-built game engine.\n\n The game has been in development by Wildfire Games (WFG), a group of volunteer,\n hobbyist game developers, since 2001.\n license:\n module:\n - MIT\n xmd:\n mbs:\n scmurl: https://src.fedoraproject.org/flatpaks/0ad.git?#c58f6b0d897c1d9b12f5712e0779aef4e01d70d9\n buildrequires:\n platform:\n stream: f29\n ursine_rpms: \n filtered_rpms: []\n version: 5\n koji_tag: module-f29-build\n context: 00000000\n stream_collision_modules: \n ref: f29\n flatpak-runtime:\n stream: f29\n filtered_rpms: []\n version: 2920190503081648\n koji_tag: module-flatpak-runtime-f29-2920190503081648-6c81f848\n context: 6c81f848\n ref: 88dc754347fa86093ad47c3c87c24bb17f8cd42f\n flatpak-common:\n stream: f29\n filtered_rpms: []\n version: 2920190208083358\n koji_tag: module-flatpak-common-f29-2920190208083358-d8818e5b\n context: d8818e5b\n ref: 3bbbd9b0c1dd1c262822135b92b4278753ece3a2\n mse: TRUE\n rpms:\n wxGTK3:\n ref: 0e58a8839c26f525e437313880a9efeb8fbe6312\n libsodium:\n ref: c1134be082e4891a93c476682ce8ac5298428443\n enet:\n ref: 93a51d2551b62201404829149f198192a833b7bb\n 0ad-data:\n ref: 319ccafad10ed2ca86f5d1766384dcf18c3c49cc\n nvidia-texture-tools:\n ref: 8cb08423ac9d544b13aabd36cd7fde2eae9b16f9\n miniupnpc:\n ref: f2f123fce8288e656cd915e8df0954c91b0d7db5\n gloox:\n ref: 1add252ec16a177c53a00782fc2a51f13eaa35ba\n 0ad:\n ref: 8736d54e97d6e8e79c9024986e35c8fe12ee0dde\n mozjs38:\n ref: a245bda0ec764e4a7b739e3537bf611adce00b16\n commit: c58f6b0d897c1d9b12f5712e0779aef4e01d70d9\n dependencies:\n - buildrequires:\n flatpak-common: [f29]\n flatpak-runtime: [f29]\n platform: [f29]\n requires:\n flatpak-common: [f29]\n flatpak-runtime: [f29]\n platform: [f29]\n profiles:\n default:\n rpms:\n - 0ad\n components:\n rpms:\n 0ad:\n rationale: Application package\n repository: git+https://src.fedoraproject.org/rpms/0ad\n cache: https://src.fedoraproject.org/repo/pkgs/0ad\n ref: f29\n buildorder: 10\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n 0ad-data:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/0ad-data\n cache: https://src.fedoraproject.org/repo/pkgs/0ad-data\n ref: f29\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n enet:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/enet\n cache: https://src.fedoraproject.org/repo/pkgs/enet\n ref: f29\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n gloox:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/gloox\n cache: https://src.fedoraproject.org/repo/pkgs/gloox\n ref: f29\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n libsodium:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/libsodium\n cache: https://src.fedoraproject.org/repo/pkgs/libsodium\n ref: f29\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n miniupnpc:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/miniupnpc\n cache: https://src.fedoraproject.org/repo/pkgs/miniupnpc\n ref: f29\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n mozjs38:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/mozjs38\n cache: https://src.fedoraproject.org/repo/pkgs/mozjs38\n ref: f29\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n nvidia-texture-tools:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/nvidia-texture-tools\n cache: https://src.fedoraproject.org/repo/pkgs/nvidia-texture-tools\n ref: f29\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n wxGTK3:\n rationale: Flatpak application runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/wxGTK3\n cache: https://src.fedoraproject.org/repo/pkgs/wxGTK3\n ref: f29\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n...", "runtime_deps": [ { "dependency": "platform", "stream": "f29" }, { "dependency": "flatpak-runtime", "stream": "f29" }, { "dependency": "flatpak-common", "stream": "f29" } ], "build_deps": [ { "dependency": "platform", "stream": "f29" }, { "dependency": "flatpak-runtime", "stream": "f29" }, { "dependency": "flatpak-common", "stream": "f29" } ], "active": true, "rpms": [ "0ad-0:0.0.23b-5.module_f29+2813+c8efebc7.aarch64.rpm", "0ad-0:0.0.23b-5.module_f29+2813+c8efebc7.armv7hl.rpm", "0ad-0:0.0.23b-5.module_f29+2813+c8efebc7.i686.rpm", "0ad-0:0.0.23b-5.module_f29+2813+c8efebc7.src.rpm", "0ad-0:0.0.23b-5.module_f29+2813+c8efebc7.x86_64.rpm", "0ad-data-0:0.0.23b-1.module_f29+2813+c8efebc7.noarch.rpm", "0ad-data-0:0.0.23b-1.module_f29+2813+c8efebc7.src.rpm", "0ad-debuginfo-0:0.0.23b-5.module_f29+2813+c8efebc7.aarch64.rpm", "0ad-debuginfo-0:0.0.23b-5.module_f29+2813+c8efebc7.armv7hl.rpm", "0ad-debuginfo-0:0.0.23b-5.module_f29+2813+c8efebc7.i686.rpm", "0ad-debuginfo-0:0.0.23b-5.module_f29+2813+c8efebc7.x86_64.rpm", "0ad-debugsource-0:0.0.23b-5.module_f29+2813+c8efebc7.aarch64.rpm", "0ad-debugsource-0:0.0.23b-5.module_f29+2813+c8efebc7.armv7hl.rpm", "0ad-debugsource-0:0.0.23b-5.module_f29+2813+c8efebc7.i686.rpm", "0ad-debugsource-0:0.0.23b-5.module_f29+2813+c8efebc7.x86_64.rpm", "compat-wxGTK3-gtk2-0:3.0.4-4.module_f29+2813+c8efebc7.aarch64.rpm", "compat-wxGTK3-gtk2-0:3.0.4-4.module_f29+2813+c8efebc7.armv7hl.rpm", "compat-wxGTK3-gtk2-0:3.0.4-4.module_f29+2813+c8efebc7.i686.rpm", "compat-wxGTK3-gtk2-0:3.0.4-4.module_f29+2813+c8efebc7.ppc64le.rpm", "compat-wxGTK3-gtk2-0:3.0.4-4.module_f29+2813+c8efebc7.s390x.rpm", "compat-wxGTK3-gtk2-0:3.0.4-4.module_f29+2813+c8efebc7.x86_64.rpm", "compat-wxGTK3-gtk2-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.aarch64.rpm", "compat-wxGTK3-gtk2-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.armv7hl.rpm", "compat-wxGTK3-gtk2-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.i686.rpm", "compat-wxGTK3-gtk2-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.ppc64le.rpm", "compat-wxGTK3-gtk2-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.s390x.rpm", "compat-wxGTK3-gtk2-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.x86_64.rpm", "compat-wxGTK3-gtk2-devel-0:3.0.4-4.module_f29+2813+c8efebc7.aarch64.rpm", "compat-wxGTK3-gtk2-devel-0:3.0.4-4.module_f29+2813+c8efebc7.armv7hl.rpm", "compat-wxGTK3-gtk2-devel-0:3.0.4-4.module_f29+2813+c8efebc7.i686.rpm", "compat-wxGTK3-gtk2-devel-0:3.0.4-4.module_f29+2813+c8efebc7.ppc64le.rpm", "compat-wxGTK3-gtk2-devel-0:3.0.4-4.module_f29+2813+c8efebc7.s390x.rpm", "compat-wxGTK3-gtk2-devel-0:3.0.4-4.module_f29+2813+c8efebc7.x86_64.rpm", "compat-wxGTK3-gtk2-gl-0:3.0.4-4.module_f29+2813+c8efebc7.aarch64.rpm", "compat-wxGTK3-gtk2-gl-0:3.0.4-4.module_f29+2813+c8efebc7.armv7hl.rpm", "compat-wxGTK3-gtk2-gl-0:3.0.4-4.module_f29+2813+c8efebc7.i686.rpm", "compat-wxGTK3-gtk2-gl-0:3.0.4-4.module_f29+2813+c8efebc7.ppc64le.rpm", "compat-wxGTK3-gtk2-gl-0:3.0.4-4.module_f29+2813+c8efebc7.s390x.rpm", "compat-wxGTK3-gtk2-gl-0:3.0.4-4.module_f29+2813+c8efebc7.x86_64.rpm", "compat-wxGTK3-gtk2-gl-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.aarch64.rpm", "compat-wxGTK3-gtk2-gl-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.armv7hl.rpm", "compat-wxGTK3-gtk2-gl-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.i686.rpm", "compat-wxGTK3-gtk2-gl-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.ppc64le.rpm", "compat-wxGTK3-gtk2-gl-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.s390x.rpm", "compat-wxGTK3-gtk2-gl-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.x86_64.rpm", "compat-wxGTK3-gtk2-media-0:3.0.4-4.module_f29+2813+c8efebc7.aarch64.rpm", "compat-wxGTK3-gtk2-media-0:3.0.4-4.module_f29+2813+c8efebc7.armv7hl.rpm", "compat-wxGTK3-gtk2-media-0:3.0.4-4.module_f29+2813+c8efebc7.i686.rpm", "compat-wxGTK3-gtk2-media-0:3.0.4-4.module_f29+2813+c8efebc7.ppc64le.rpm", "compat-wxGTK3-gtk2-media-0:3.0.4-4.module_f29+2813+c8efebc7.s390x.rpm", "compat-wxGTK3-gtk2-media-0:3.0.4-4.module_f29+2813+c8efebc7.x86_64.rpm", "compat-wxGTK3-gtk2-media-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.aarch64.rpm", "compat-wxGTK3-gtk2-media-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.armv7hl.rpm", "compat-wxGTK3-gtk2-media-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.i686.rpm", "compat-wxGTK3-gtk2-media-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.ppc64le.rpm", "compat-wxGTK3-gtk2-media-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.s390x.rpm", "compat-wxGTK3-gtk2-media-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.x86_64.rpm", "enet-0:1.3.13-10.module_f29+2813+c8efebc7.aarch64.rpm", "enet-0:1.3.13-10.module_f29+2813+c8efebc7.armv7hl.rpm", "enet-0:1.3.13-10.module_f29+2813+c8efebc7.i686.rpm", "enet-0:1.3.13-10.module_f29+2813+c8efebc7.ppc64le.rpm", "enet-0:1.3.13-10.module_f29+2813+c8efebc7.s390x.rpm", "enet-0:1.3.13-10.module_f29+2813+c8efebc7.src.rpm", "enet-0:1.3.13-10.module_f29+2813+c8efebc7.x86_64.rpm", "enet-debuginfo-0:1.3.13-10.module_f29+2813+c8efebc7.aarch64.rpm", "enet-debuginfo-0:1.3.13-10.module_f29+2813+c8efebc7.armv7hl.rpm", "enet-debuginfo-0:1.3.13-10.module_f29+2813+c8efebc7.i686.rpm", "enet-debuginfo-0:1.3.13-10.module_f29+2813+c8efebc7.ppc64le.rpm", "enet-debuginfo-0:1.3.13-10.module_f29+2813+c8efebc7.s390x.rpm", "enet-debuginfo-0:1.3.13-10.module_f29+2813+c8efebc7.x86_64.rpm", "enet-debugsource-0:1.3.13-10.module_f29+2813+c8efebc7.aarch64.rpm", "enet-debugsource-0:1.3.13-10.module_f29+2813+c8efebc7.armv7hl.rpm", "enet-debugsource-0:1.3.13-10.module_f29+2813+c8efebc7.i686.rpm", "enet-debugsource-0:1.3.13-10.module_f29+2813+c8efebc7.ppc64le.rpm", "enet-debugsource-0:1.3.13-10.module_f29+2813+c8efebc7.s390x.rpm", "enet-debugsource-0:1.3.13-10.module_f29+2813+c8efebc7.x86_64.rpm", "enet-devel-0:1.3.13-10.module_f29+2813+c8efebc7.aarch64.rpm", "enet-devel-0:1.3.13-10.module_f29+2813+c8efebc7.armv7hl.rpm", "enet-devel-0:1.3.13-10.module_f29+2813+c8efebc7.i686.rpm", "enet-devel-0:1.3.13-10.module_f29+2813+c8efebc7.ppc64le.rpm", "enet-devel-0:1.3.13-10.module_f29+2813+c8efebc7.s390x.rpm", "enet-devel-0:1.3.13-10.module_f29+2813+c8efebc7.x86_64.rpm", "gloox-1:1.0.14-8.module_f29+2813+c8efebc7.aarch64.rpm", "gloox-1:1.0.14-8.module_f29+2813+c8efebc7.armv7hl.rpm", "gloox-1:1.0.14-8.module_f29+2813+c8efebc7.i686.rpm", "gloox-1:1.0.14-8.module_f29+2813+c8efebc7.ppc64le.rpm", "gloox-1:1.0.14-8.module_f29+2813+c8efebc7.s390x.rpm", "gloox-1:1.0.14-8.module_f29+2813+c8efebc7.src.rpm", "gloox-1:1.0.14-8.module_f29+2813+c8efebc7.x86_64.rpm", "gloox-debuginfo-1:1.0.14-8.module_f29+2813+c8efebc7.aarch64.rpm", "gloox-debuginfo-1:1.0.14-8.module_f29+2813+c8efebc7.armv7hl.rpm", "gloox-debuginfo-1:1.0.14-8.module_f29+2813+c8efebc7.i686.rpm", "gloox-debuginfo-1:1.0.14-8.module_f29+2813+c8efebc7.ppc64le.rpm", "gloox-debuginfo-1:1.0.14-8.module_f29+2813+c8efebc7.s390x.rpm", "gloox-debuginfo-1:1.0.14-8.module_f29+2813+c8efebc7.x86_64.rpm", "gloox-debugsource-1:1.0.14-8.module_f29+2813+c8efebc7.aarch64.rpm", "gloox-debugsource-1:1.0.14-8.module_f29+2813+c8efebc7.armv7hl.rpm", "gloox-debugsource-1:1.0.14-8.module_f29+2813+c8efebc7.i686.rpm", "gloox-debugsource-1:1.0.14-8.module_f29+2813+c8efebc7.ppc64le.rpm", "gloox-debugsource-1:1.0.14-8.module_f29+2813+c8efebc7.s390x.rpm", "gloox-debugsource-1:1.0.14-8.module_f29+2813+c8efebc7.x86_64.rpm", "gloox-devel-1:1.0.14-8.module_f29+2813+c8efebc7.aarch64.rpm", "gloox-devel-1:1.0.14-8.module_f29+2813+c8efebc7.armv7hl.rpm", "gloox-devel-1:1.0.14-8.module_f29+2813+c8efebc7.i686.rpm", "gloox-devel-1:1.0.14-8.module_f29+2813+c8efebc7.ppc64le.rpm", "gloox-devel-1:1.0.14-8.module_f29+2813+c8efebc7.s390x.rpm", "gloox-devel-1:1.0.14-8.module_f29+2813+c8efebc7.x86_64.rpm", "libsodium-0:1.0.17-1.module_f29+2813+c8efebc7.aarch64.rpm", "libsodium-0:1.0.17-1.module_f29+2813+c8efebc7.armv7hl.rpm", "libsodium-0:1.0.17-1.module_f29+2813+c8efebc7.i686.rpm", "libsodium-0:1.0.17-1.module_f29+2813+c8efebc7.ppc64le.rpm", "libsodium-0:1.0.17-1.module_f29+2813+c8efebc7.s390x.rpm", "libsodium-0:1.0.17-1.module_f29+2813+c8efebc7.src.rpm", "libsodium-0:1.0.17-1.module_f29+2813+c8efebc7.x86_64.rpm", "libsodium-debuginfo-0:1.0.17-1.module_f29+2813+c8efebc7.aarch64.rpm", "libsodium-debuginfo-0:1.0.17-1.module_f29+2813+c8efebc7.armv7hl.rpm", "libsodium-debuginfo-0:1.0.17-1.module_f29+2813+c8efebc7.i686.rpm", "libsodium-debuginfo-0:1.0.17-1.module_f29+2813+c8efebc7.ppc64le.rpm", "libsodium-debuginfo-0:1.0.17-1.module_f29+2813+c8efebc7.s390x.rpm", "libsodium-debuginfo-0:1.0.17-1.module_f29+2813+c8efebc7.x86_64.rpm", "libsodium-debugsource-0:1.0.17-1.module_f29+2813+c8efebc7.aarch64.rpm", "libsodium-debugsource-0:1.0.17-1.module_f29+2813+c8efebc7.armv7hl.rpm", "libsodium-debugsource-0:1.0.17-1.module_f29+2813+c8efebc7.i686.rpm", "libsodium-debugsource-0:1.0.17-1.module_f29+2813+c8efebc7.ppc64le.rpm", "libsodium-debugsource-0:1.0.17-1.module_f29+2813+c8efebc7.s390x.rpm", "libsodium-debugsource-0:1.0.17-1.module_f29+2813+c8efebc7.x86_64.rpm", "libsodium-devel-0:1.0.17-1.module_f29+2813+c8efebc7.aarch64.rpm", "libsodium-devel-0:1.0.17-1.module_f29+2813+c8efebc7.armv7hl.rpm", "libsodium-devel-0:1.0.17-1.module_f29+2813+c8efebc7.i686.rpm", "libsodium-devel-0:1.0.17-1.module_f29+2813+c8efebc7.ppc64le.rpm", "libsodium-devel-0:1.0.17-1.module_f29+2813+c8efebc7.s390x.rpm", "libsodium-devel-0:1.0.17-1.module_f29+2813+c8efebc7.x86_64.rpm", "libsodium-static-0:1.0.17-1.module_f29+2813+c8efebc7.aarch64.rpm", "libsodium-static-0:1.0.17-1.module_f29+2813+c8efebc7.armv7hl.rpm", "libsodium-static-0:1.0.17-1.module_f29+2813+c8efebc7.i686.rpm", "libsodium-static-0:1.0.17-1.module_f29+2813+c8efebc7.ppc64le.rpm", "libsodium-static-0:1.0.17-1.module_f29+2813+c8efebc7.s390x.rpm", "libsodium-static-0:1.0.17-1.module_f29+2813+c8efebc7.x86_64.rpm", "miniupnpc-0:2.0-13.module_f29+2813+c8efebc7.aarch64.rpm", "miniupnpc-0:2.0-13.module_f29+2813+c8efebc7.armv7hl.rpm", "miniupnpc-0:2.0-13.module_f29+2813+c8efebc7.i686.rpm", "miniupnpc-0:2.0-13.module_f29+2813+c8efebc7.ppc64le.rpm", "miniupnpc-0:2.0-13.module_f29+2813+c8efebc7.s390x.rpm", "miniupnpc-0:2.0-13.module_f29+2813+c8efebc7.src.rpm", "miniupnpc-0:2.0-13.module_f29+2813+c8efebc7.x86_64.rpm", "miniupnpc-debuginfo-0:2.0-13.module_f29+2813+c8efebc7.aarch64.rpm", "miniupnpc-debuginfo-0:2.0-13.module_f29+2813+c8efebc7.armv7hl.rpm", "miniupnpc-debuginfo-0:2.0-13.module_f29+2813+c8efebc7.i686.rpm", "miniupnpc-debuginfo-0:2.0-13.module_f29+2813+c8efebc7.ppc64le.rpm", "miniupnpc-debuginfo-0:2.0-13.module_f29+2813+c8efebc7.s390x.rpm", "miniupnpc-debuginfo-0:2.0-13.module_f29+2813+c8efebc7.x86_64.rpm", "miniupnpc-debugsource-0:2.0-13.module_f29+2813+c8efebc7.aarch64.rpm", "miniupnpc-debugsource-0:2.0-13.module_f29+2813+c8efebc7.armv7hl.rpm", "miniupnpc-debugsource-0:2.0-13.module_f29+2813+c8efebc7.i686.rpm", "miniupnpc-debugsource-0:2.0-13.module_f29+2813+c8efebc7.ppc64le.rpm", "miniupnpc-debugsource-0:2.0-13.module_f29+2813+c8efebc7.s390x.rpm", "miniupnpc-debugsource-0:2.0-13.module_f29+2813+c8efebc7.x86_64.rpm", "miniupnpc-devel-0:2.0-13.module_f29+2813+c8efebc7.aarch64.rpm", "miniupnpc-devel-0:2.0-13.module_f29+2813+c8efebc7.armv7hl.rpm", "miniupnpc-devel-0:2.0-13.module_f29+2813+c8efebc7.i686.rpm", "miniupnpc-devel-0:2.0-13.module_f29+2813+c8efebc7.ppc64le.rpm", "miniupnpc-devel-0:2.0-13.module_f29+2813+c8efebc7.s390x.rpm", "miniupnpc-devel-0:2.0-13.module_f29+2813+c8efebc7.x86_64.rpm", "mozjs38-0:38.8.0-11.module_f29+2813+c8efebc7.aarch64.rpm", "mozjs38-0:38.8.0-11.module_f29+2813+c8efebc7.armv7hl.rpm", "mozjs38-0:38.8.0-11.module_f29+2813+c8efebc7.i686.rpm", "mozjs38-0:38.8.0-11.module_f29+2813+c8efebc7.ppc64le.rpm", "mozjs38-0:38.8.0-11.module_f29+2813+c8efebc7.s390x.rpm", "mozjs38-0:38.8.0-11.module_f29+2813+c8efebc7.src.rpm", "mozjs38-0:38.8.0-11.module_f29+2813+c8efebc7.x86_64.rpm", "mozjs38-debuginfo-0:38.8.0-11.module_f29+2813+c8efebc7.aarch64.rpm", "mozjs38-debuginfo-0:38.8.0-11.module_f29+2813+c8efebc7.armv7hl.rpm", "mozjs38-debuginfo-0:38.8.0-11.module_f29+2813+c8efebc7.i686.rpm", "mozjs38-debuginfo-0:38.8.0-11.module_f29+2813+c8efebc7.ppc64le.rpm", "mozjs38-debuginfo-0:38.8.0-11.module_f29+2813+c8efebc7.s390x.rpm", "mozjs38-debuginfo-0:38.8.0-11.module_f29+2813+c8efebc7.x86_64.rpm", "mozjs38-debugsource-0:38.8.0-11.module_f29+2813+c8efebc7.aarch64.rpm", "mozjs38-debugsource-0:38.8.0-11.module_f29+2813+c8efebc7.armv7hl.rpm", "mozjs38-debugsource-0:38.8.0-11.module_f29+2813+c8efebc7.i686.rpm", "mozjs38-debugsource-0:38.8.0-11.module_f29+2813+c8efebc7.ppc64le.rpm", "mozjs38-debugsource-0:38.8.0-11.module_f29+2813+c8efebc7.s390x.rpm", "mozjs38-debugsource-0:38.8.0-11.module_f29+2813+c8efebc7.x86_64.rpm", "mozjs38-devel-0:38.8.0-11.module_f29+2813+c8efebc7.aarch64.rpm", "mozjs38-devel-0:38.8.0-11.module_f29+2813+c8efebc7.armv7hl.rpm", "mozjs38-devel-0:38.8.0-11.module_f29+2813+c8efebc7.i686.rpm", "mozjs38-devel-0:38.8.0-11.module_f29+2813+c8efebc7.ppc64le.rpm", "mozjs38-devel-0:38.8.0-11.module_f29+2813+c8efebc7.s390x.rpm", "mozjs38-devel-0:38.8.0-11.module_f29+2813+c8efebc7.x86_64.rpm", "nvidia-texture-tools-0:2.0.8-19.module_f29+2813+c8efebc7.aarch64.rpm", "nvidia-texture-tools-0:2.0.8-19.module_f29+2813+c8efebc7.armv7hl.rpm", "nvidia-texture-tools-0:2.0.8-19.module_f29+2813+c8efebc7.i686.rpm", "nvidia-texture-tools-0:2.0.8-19.module_f29+2813+c8efebc7.ppc64le.rpm", "nvidia-texture-tools-0:2.0.8-19.module_f29+2813+c8efebc7.s390x.rpm", "nvidia-texture-tools-0:2.0.8-19.module_f29+2813+c8efebc7.src.rpm", "nvidia-texture-tools-0:2.0.8-19.module_f29+2813+c8efebc7.x86_64.rpm", "nvidia-texture-tools-debuginfo-0:2.0.8-19.module_f29+2813+c8efebc7.aarch64.rpm", "nvidia-texture-tools-debuginfo-0:2.0.8-19.module_f29+2813+c8efebc7.armv7hl.rpm", "nvidia-texture-tools-debuginfo-0:2.0.8-19.module_f29+2813+c8efebc7.i686.rpm", "nvidia-texture-tools-debuginfo-0:2.0.8-19.module_f29+2813+c8efebc7.ppc64le.rpm", "nvidia-texture-tools-debuginfo-0:2.0.8-19.module_f29+2813+c8efebc7.s390x.rpm", "nvidia-texture-tools-debuginfo-0:2.0.8-19.module_f29+2813+c8efebc7.x86_64.rpm", "nvidia-texture-tools-debugsource-0:2.0.8-19.module_f29+2813+c8efebc7.aarch64.rpm", "nvidia-texture-tools-debugsource-0:2.0.8-19.module_f29+2813+c8efebc7.armv7hl.rpm", "nvidia-texture-tools-debugsource-0:2.0.8-19.module_f29+2813+c8efebc7.i686.rpm", "nvidia-texture-tools-debugsource-0:2.0.8-19.module_f29+2813+c8efebc7.ppc64le.rpm", "nvidia-texture-tools-debugsource-0:2.0.8-19.module_f29+2813+c8efebc7.s390x.rpm", "nvidia-texture-tools-debugsource-0:2.0.8-19.module_f29+2813+c8efebc7.x86_64.rpm", "nvidia-texture-tools-devel-0:2.0.8-19.module_f29+2813+c8efebc7.aarch64.rpm", "nvidia-texture-tools-devel-0:2.0.8-19.module_f29+2813+c8efebc7.armv7hl.rpm", "nvidia-texture-tools-devel-0:2.0.8-19.module_f29+2813+c8efebc7.i686.rpm", "nvidia-texture-tools-devel-0:2.0.8-19.module_f29+2813+c8efebc7.ppc64le.rpm", "nvidia-texture-tools-devel-0:2.0.8-19.module_f29+2813+c8efebc7.s390x.rpm", "nvidia-texture-tools-devel-0:2.0.8-19.module_f29+2813+c8efebc7.x86_64.rpm", "python2-miniupnpc-0:2.0-13.module_f29+2813+c8efebc7.aarch64.rpm", "python2-miniupnpc-0:2.0-13.module_f29+2813+c8efebc7.armv7hl.rpm", "python2-miniupnpc-0:2.0-13.module_f29+2813+c8efebc7.i686.rpm", "python2-miniupnpc-0:2.0-13.module_f29+2813+c8efebc7.ppc64le.rpm", "python2-miniupnpc-0:2.0-13.module_f29+2813+c8efebc7.s390x.rpm", "python2-miniupnpc-0:2.0-13.module_f29+2813+c8efebc7.x86_64.rpm", "python2-miniupnpc-debuginfo-0:2.0-13.module_f29+2813+c8efebc7.aarch64.rpm", "python2-miniupnpc-debuginfo-0:2.0-13.module_f29+2813+c8efebc7.armv7hl.rpm", "python2-miniupnpc-debuginfo-0:2.0-13.module_f29+2813+c8efebc7.i686.rpm", "python2-miniupnpc-debuginfo-0:2.0-13.module_f29+2813+c8efebc7.ppc64le.rpm", "python2-miniupnpc-debuginfo-0:2.0-13.module_f29+2813+c8efebc7.s390x.rpm", "python2-miniupnpc-debuginfo-0:2.0-13.module_f29+2813+c8efebc7.x86_64.rpm", "python3-miniupnpc-0:2.0-13.module_f29+2813+c8efebc7.aarch64.rpm", "python3-miniupnpc-0:2.0-13.module_f29+2813+c8efebc7.armv7hl.rpm", "python3-miniupnpc-0:2.0-13.module_f29+2813+c8efebc7.i686.rpm", "python3-miniupnpc-0:2.0-13.module_f29+2813+c8efebc7.ppc64le.rpm", "python3-miniupnpc-0:2.0-13.module_f29+2813+c8efebc7.s390x.rpm", "python3-miniupnpc-0:2.0-13.module_f29+2813+c8efebc7.x86_64.rpm", "python3-miniupnpc-debuginfo-0:2.0-13.module_f29+2813+c8efebc7.aarch64.rpm", "python3-miniupnpc-debuginfo-0:2.0-13.module_f29+2813+c8efebc7.armv7hl.rpm", "python3-miniupnpc-debuginfo-0:2.0-13.module_f29+2813+c8efebc7.i686.rpm", "python3-miniupnpc-debuginfo-0:2.0-13.module_f29+2813+c8efebc7.ppc64le.rpm", "python3-miniupnpc-debuginfo-0:2.0-13.module_f29+2813+c8efebc7.s390x.rpm", "python3-miniupnpc-debuginfo-0:2.0-13.module_f29+2813+c8efebc7.x86_64.rpm", "wxBase3-0:3.0.4-4.module_f29+2813+c8efebc7.aarch64.rpm", "wxBase3-0:3.0.4-4.module_f29+2813+c8efebc7.armv7hl.rpm", "wxBase3-0:3.0.4-4.module_f29+2813+c8efebc7.i686.rpm", "wxBase3-0:3.0.4-4.module_f29+2813+c8efebc7.ppc64le.rpm", "wxBase3-0:3.0.4-4.module_f29+2813+c8efebc7.s390x.rpm", "wxBase3-0:3.0.4-4.module_f29+2813+c8efebc7.x86_64.rpm", "wxBase3-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.aarch64.rpm", "wxBase3-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.armv7hl.rpm", "wxBase3-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.i686.rpm", "wxBase3-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.ppc64le.rpm", "wxBase3-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.s390x.rpm", "wxBase3-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.x86_64.rpm", "wxBase3-devel-0:3.0.4-4.module_f29+2813+c8efebc7.aarch64.rpm", "wxBase3-devel-0:3.0.4-4.module_f29+2813+c8efebc7.armv7hl.rpm", "wxBase3-devel-0:3.0.4-4.module_f29+2813+c8efebc7.i686.rpm", "wxBase3-devel-0:3.0.4-4.module_f29+2813+c8efebc7.ppc64le.rpm", "wxBase3-devel-0:3.0.4-4.module_f29+2813+c8efebc7.s390x.rpm", "wxBase3-devel-0:3.0.4-4.module_f29+2813+c8efebc7.x86_64.rpm", "wxBase3-devel-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.aarch64.rpm", "wxBase3-devel-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.armv7hl.rpm", "wxBase3-devel-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.i686.rpm", "wxBase3-devel-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.ppc64le.rpm", "wxBase3-devel-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.s390x.rpm", "wxBase3-devel-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.x86_64.rpm", "wxGTK3-0:3.0.4-4.module_f29+2813+c8efebc7.aarch64.rpm", "wxGTK3-0:3.0.4-4.module_f29+2813+c8efebc7.armv7hl.rpm", "wxGTK3-0:3.0.4-4.module_f29+2813+c8efebc7.i686.rpm", "wxGTK3-0:3.0.4-4.module_f29+2813+c8efebc7.ppc64le.rpm", "wxGTK3-0:3.0.4-4.module_f29+2813+c8efebc7.s390x.rpm", "wxGTK3-0:3.0.4-4.module_f29+2813+c8efebc7.src.rpm", "wxGTK3-0:3.0.4-4.module_f29+2813+c8efebc7.x86_64.rpm", "wxGTK3-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.aarch64.rpm", "wxGTK3-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.armv7hl.rpm", "wxGTK3-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.i686.rpm", "wxGTK3-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.ppc64le.rpm", "wxGTK3-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.s390x.rpm", "wxGTK3-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.x86_64.rpm", "wxGTK3-debugsource-0:3.0.4-4.module_f29+2813+c8efebc7.aarch64.rpm", "wxGTK3-debugsource-0:3.0.4-4.module_f29+2813+c8efebc7.armv7hl.rpm", "wxGTK3-debugsource-0:3.0.4-4.module_f29+2813+c8efebc7.i686.rpm", "wxGTK3-debugsource-0:3.0.4-4.module_f29+2813+c8efebc7.ppc64le.rpm", "wxGTK3-debugsource-0:3.0.4-4.module_f29+2813+c8efebc7.s390x.rpm", "wxGTK3-debugsource-0:3.0.4-4.module_f29+2813+c8efebc7.x86_64.rpm", "wxGTK3-devel-0:3.0.4-4.module_f29+2813+c8efebc7.aarch64.rpm", "wxGTK3-devel-0:3.0.4-4.module_f29+2813+c8efebc7.armv7hl.rpm", "wxGTK3-devel-0:3.0.4-4.module_f29+2813+c8efebc7.i686.rpm", "wxGTK3-devel-0:3.0.4-4.module_f29+2813+c8efebc7.ppc64le.rpm", "wxGTK3-devel-0:3.0.4-4.module_f29+2813+c8efebc7.s390x.rpm", "wxGTK3-devel-0:3.0.4-4.module_f29+2813+c8efebc7.x86_64.rpm", "wxGTK3-docs-0:3.0.4-4.module_f29+2813+c8efebc7.noarch.rpm", "wxGTK3-gl-0:3.0.4-4.module_f29+2813+c8efebc7.aarch64.rpm", "wxGTK3-gl-0:3.0.4-4.module_f29+2813+c8efebc7.armv7hl.rpm", "wxGTK3-gl-0:3.0.4-4.module_f29+2813+c8efebc7.i686.rpm", "wxGTK3-gl-0:3.0.4-4.module_f29+2813+c8efebc7.ppc64le.rpm", "wxGTK3-gl-0:3.0.4-4.module_f29+2813+c8efebc7.s390x.rpm", "wxGTK3-gl-0:3.0.4-4.module_f29+2813+c8efebc7.x86_64.rpm", "wxGTK3-gl-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.aarch64.rpm", "wxGTK3-gl-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.armv7hl.rpm", "wxGTK3-gl-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.i686.rpm", "wxGTK3-gl-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.ppc64le.rpm", "wxGTK3-gl-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.s390x.rpm", "wxGTK3-gl-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.x86_64.rpm", "wxGTK3-i18n-0:3.0.4-4.module_f29+2813+c8efebc7.noarch.rpm", "wxGTK3-media-0:3.0.4-4.module_f29+2813+c8efebc7.aarch64.rpm", "wxGTK3-media-0:3.0.4-4.module_f29+2813+c8efebc7.armv7hl.rpm", "wxGTK3-media-0:3.0.4-4.module_f29+2813+c8efebc7.i686.rpm", "wxGTK3-media-0:3.0.4-4.module_f29+2813+c8efebc7.ppc64le.rpm", "wxGTK3-media-0:3.0.4-4.module_f29+2813+c8efebc7.s390x.rpm", "wxGTK3-media-0:3.0.4-4.module_f29+2813+c8efebc7.x86_64.rpm", "wxGTK3-media-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.aarch64.rpm", "wxGTK3-media-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.armv7hl.rpm", "wxGTK3-media-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.i686.rpm", "wxGTK3-media-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.ppc64le.rpm", "wxGTK3-media-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.s390x.rpm", "wxGTK3-media-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.x86_64.rpm", "wxGTK3-webview-0:3.0.4-4.module_f29+2813+c8efebc7.aarch64.rpm", "wxGTK3-webview-0:3.0.4-4.module_f29+2813+c8efebc7.armv7hl.rpm", "wxGTK3-webview-0:3.0.4-4.module_f29+2813+c8efebc7.i686.rpm", "wxGTK3-webview-0:3.0.4-4.module_f29+2813+c8efebc7.ppc64le.rpm", "wxGTK3-webview-0:3.0.4-4.module_f29+2813+c8efebc7.s390x.rpm", "wxGTK3-webview-0:3.0.4-4.module_f29+2813+c8efebc7.x86_64.rpm", "wxGTK3-webview-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.aarch64.rpm", "wxGTK3-webview-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.armv7hl.rpm", "wxGTK3-webview-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.i686.rpm", "wxGTK3-webview-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.ppc64le.rpm", "wxGTK3-webview-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.s390x.rpm", "wxGTK3-webview-debuginfo-0:3.0.4-4.module_f29+2813+c8efebc7.x86_64.rpm", "wxGTK3-xmldocs-0:3.0.4-4.module_f29+2813+c8efebc7.noarch.rpm" ] }, { "variant_id": "0ad", "variant_uid": "0ad:master:3020190604073551:f1d02342", "variant_name": "0ad", "variant_type": "module", "variant_version": "master", "variant_release": "3020190604073551", "variant_context": "f1d02342", "koji_tag": "module-0ad-master-3020190604073551-f1d02342", "modulemd": "---\ndocument: modulemd\nversion: 2\ndata:\n name: 0ad\n stream: master\n version: 3020190604073551\n context: f1d02342\n summary: Cross-Platform RTS Game of Ancient Warfare\n description: >-\n 0 A.D. (pronounced \"zero ey-dee\") is a free, open-source, cross-platform real-time\n strategy (RTS) game of ancient warfare. In short, it is a historically-based war/economy\n game that allows players to relive or rewrite the history of Western civilizations,\n focusing on the years between 500 B.C. and 500 A.D. The project is highly ambitious,\n involving state-of-the-art 3D graphics, detailed artwork, sound, and a flexible\n and powerful custom-built game engine.\n\n The game has been in development by Wildfire Games (WFG), a group of volunteer,\n hobbyist game developers, since 2001.\n license:\n module:\n - MIT\n xmd:\n mbs:\n scmurl: https://src.fedoraproject.org/flatpaks/0ad.git?#1ff9515af61c2ee2d5decdeb2801e439d82a95e9\n buildrequires:\n platform:\n stream: f30\n ursine_rpms: \n filtered_rpms: []\n version: 6\n koji_tag: module-f30-build\n context: 00000000\n stream_collision_modules: \n ref: f30\n flatpak-runtime:\n stream: f30\n filtered_rpms: []\n version: 3020190603102507\n koji_tag: module-flatpak-runtime-f30-3020190603102507-a5b0195c\n context: a5b0195c\n ref: c956b1164a85f547c22b00cd49e0b356e9f6f4b9\n flatpak-common:\n stream: f30\n filtered_rpms: []\n version: 3020190603174434\n koji_tag: module-flatpak-common-f30-3020190603174434-548d4c8d\n context: 548d4c8d\n ref: 6d874bbb96ba6e54c14e1f5ec2b0f75baaf94cae\n mse: TRUE\n rpms:\n libsodium:\n ref: 5f9c883aecc9eb34a5812a655de7b5cad8fda395\n enet:\n ref: bde1c48345f3c626cdfc330cec738b235457750d\n 0ad-data:\n ref: fcd4a55336bd8b141e25189d44e54fa54ae9d117\n nvidia-texture-tools:\n ref: 15c8426aad7dc60553ab6324266ad848cf485655\n miniupnpc:\n ref: be350bdf19f9363d975dabbc610d00077ebeda76\n gloox:\n ref: 41cbc42c47ec52cc0c7d4a9af019ce5c81500b26\n 0ad:\n ref: 17c574109eb9f3ffd57432ed1490e83f0555413b\n mozjs38:\n ref: f5db1c05a9d89c9af7c1a17492add594919164b8\n commit: 1ff9515af61c2ee2d5decdeb2801e439d82a95e9\n dependencies:\n - buildrequires:\n flatpak-common: [f30]\n flatpak-runtime: [f30]\n platform: [f30]\n requires:\n flatpak-common: [f30]\n flatpak-runtime: [f30]\n platform: [f30]\n profiles:\n default:\n rpms:\n - 0ad\n components:\n rpms:\n 0ad:\n rationale: Application package\n repository: git+https://src.fedoraproject.org/rpms/0ad\n cache: https://src.fedoraproject.org/repo/pkgs/0ad\n ref: f30\n buildorder: 10\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n 0ad-data:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/0ad-data\n cache: https://src.fedoraproject.org/repo/pkgs/0ad-data\n ref: f30\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n enet:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/enet\n cache: https://src.fedoraproject.org/repo/pkgs/enet\n ref: f30\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n gloox:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/gloox\n cache: https://src.fedoraproject.org/repo/pkgs/gloox\n ref: f30\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n libsodium:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/libsodium\n cache: https://src.fedoraproject.org/repo/pkgs/libsodium\n ref: f30\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n miniupnpc:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/miniupnpc\n cache: https://src.fedoraproject.org/repo/pkgs/miniupnpc\n ref: f30\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n mozjs38:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/mozjs38\n cache: https://src.fedoraproject.org/repo/pkgs/mozjs38\n ref: f30\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n nvidia-texture-tools:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/nvidia-texture-tools\n cache: https://src.fedoraproject.org/repo/pkgs/nvidia-texture-tools\n ref: f30\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n...", "runtime_deps": [ { "dependency": "platform", "stream": "f30" }, { "dependency": "flatpak-runtime", "stream": "f30" }, { "dependency": "flatpak-common", "stream": "f30" } ], "build_deps": [ { "dependency": "platform", "stream": "f30" }, { "dependency": "flatpak-runtime", "stream": "f30" }, { "dependency": "flatpak-common", "stream": "f30" } ], "active": true, "rpms": [ "0ad-0:0.0.23b-6.module_f30+4499+b627b867.aarch64.rpm", "0ad-0:0.0.23b-6.module_f30+4499+b627b867.armv7hl.rpm", "0ad-0:0.0.23b-6.module_f30+4499+b627b867.i686.rpm", "0ad-0:0.0.23b-6.module_f30+4499+b627b867.src.rpm", "0ad-0:0.0.23b-6.module_f30+4499+b627b867.x86_64.rpm", "0ad-data-0:0.0.23b-2.module_f30+4499+b627b867.noarch.rpm", "0ad-data-0:0.0.23b-2.module_f30+4499+b627b867.src.rpm", "0ad-debuginfo-0:0.0.23b-6.module_f30+4499+b627b867.aarch64.rpm", "0ad-debuginfo-0:0.0.23b-6.module_f30+4499+b627b867.armv7hl.rpm", "0ad-debuginfo-0:0.0.23b-6.module_f30+4499+b627b867.i686.rpm", "0ad-debuginfo-0:0.0.23b-6.module_f30+4499+b627b867.x86_64.rpm", "0ad-debugsource-0:0.0.23b-6.module_f30+4499+b627b867.aarch64.rpm", "0ad-debugsource-0:0.0.23b-6.module_f30+4499+b627b867.armv7hl.rpm", "0ad-debugsource-0:0.0.23b-6.module_f30+4499+b627b867.i686.rpm", "0ad-debugsource-0:0.0.23b-6.module_f30+4499+b627b867.x86_64.rpm", "enet-0:1.3.14-2.module_f30+4499+b627b867.aarch64.rpm", "enet-0:1.3.14-2.module_f30+4499+b627b867.armv7hl.rpm", "enet-0:1.3.14-2.module_f30+4499+b627b867.i686.rpm", "enet-0:1.3.14-2.module_f30+4499+b627b867.ppc64le.rpm", "enet-0:1.3.14-2.module_f30+4499+b627b867.s390x.rpm", "enet-0:1.3.14-2.module_f30+4499+b627b867.src.rpm", "enet-0:1.3.14-2.module_f30+4499+b627b867.x86_64.rpm", "enet-debuginfo-0:1.3.14-2.module_f30+4499+b627b867.aarch64.rpm", "enet-debuginfo-0:1.3.14-2.module_f30+4499+b627b867.armv7hl.rpm", "enet-debuginfo-0:1.3.14-2.module_f30+4499+b627b867.i686.rpm", "enet-debuginfo-0:1.3.14-2.module_f30+4499+b627b867.ppc64le.rpm", "enet-debuginfo-0:1.3.14-2.module_f30+4499+b627b867.s390x.rpm", "enet-debuginfo-0:1.3.14-2.module_f30+4499+b627b867.x86_64.rpm", "enet-debugsource-0:1.3.14-2.module_f30+4499+b627b867.aarch64.rpm", "enet-debugsource-0:1.3.14-2.module_f30+4499+b627b867.armv7hl.rpm", "enet-debugsource-0:1.3.14-2.module_f30+4499+b627b867.i686.rpm", "enet-debugsource-0:1.3.14-2.module_f30+4499+b627b867.ppc64le.rpm", "enet-debugsource-0:1.3.14-2.module_f30+4499+b627b867.s390x.rpm", "enet-debugsource-0:1.3.14-2.module_f30+4499+b627b867.x86_64.rpm", "enet-devel-0:1.3.14-2.module_f30+4499+b627b867.aarch64.rpm", "enet-devel-0:1.3.14-2.module_f30+4499+b627b867.armv7hl.rpm", "enet-devel-0:1.3.14-2.module_f30+4499+b627b867.i686.rpm", "enet-devel-0:1.3.14-2.module_f30+4499+b627b867.ppc64le.rpm", "enet-devel-0:1.3.14-2.module_f30+4499+b627b867.s390x.rpm", "enet-devel-0:1.3.14-2.module_f30+4499+b627b867.x86_64.rpm", "gloox-1:1.0.14-9.module_f30+4499+b627b867.aarch64.rpm", "gloox-1:1.0.14-9.module_f30+4499+b627b867.armv7hl.rpm", "gloox-1:1.0.14-9.module_f30+4499+b627b867.i686.rpm", "gloox-1:1.0.14-9.module_f30+4499+b627b867.ppc64le.rpm", "gloox-1:1.0.14-9.module_f30+4499+b627b867.s390x.rpm", "gloox-1:1.0.14-9.module_f30+4499+b627b867.src.rpm", "gloox-1:1.0.14-9.module_f30+4499+b627b867.x86_64.rpm", "gloox-debuginfo-1:1.0.14-9.module_f30+4499+b627b867.aarch64.rpm", "gloox-debuginfo-1:1.0.14-9.module_f30+4499+b627b867.armv7hl.rpm", "gloox-debuginfo-1:1.0.14-9.module_f30+4499+b627b867.i686.rpm", "gloox-debuginfo-1:1.0.14-9.module_f30+4499+b627b867.ppc64le.rpm", "gloox-debuginfo-1:1.0.14-9.module_f30+4499+b627b867.s390x.rpm", "gloox-debuginfo-1:1.0.14-9.module_f30+4499+b627b867.x86_64.rpm", "gloox-debugsource-1:1.0.14-9.module_f30+4499+b627b867.aarch64.rpm", "gloox-debugsource-1:1.0.14-9.module_f30+4499+b627b867.armv7hl.rpm", "gloox-debugsource-1:1.0.14-9.module_f30+4499+b627b867.i686.rpm", "gloox-debugsource-1:1.0.14-9.module_f30+4499+b627b867.ppc64le.rpm", "gloox-debugsource-1:1.0.14-9.module_f30+4499+b627b867.s390x.rpm", "gloox-debugsource-1:1.0.14-9.module_f30+4499+b627b867.x86_64.rpm", "gloox-devel-1:1.0.14-9.module_f30+4499+b627b867.aarch64.rpm", "gloox-devel-1:1.0.14-9.module_f30+4499+b627b867.armv7hl.rpm", "gloox-devel-1:1.0.14-9.module_f30+4499+b627b867.i686.rpm", "gloox-devel-1:1.0.14-9.module_f30+4499+b627b867.ppc64le.rpm", "gloox-devel-1:1.0.14-9.module_f30+4499+b627b867.s390x.rpm", "gloox-devel-1:1.0.14-9.module_f30+4499+b627b867.x86_64.rpm", "libsodium-0:1.0.18-1.module_f30+4499+b627b867.aarch64.rpm", "libsodium-0:1.0.18-1.module_f30+4499+b627b867.armv7hl.rpm", "libsodium-0:1.0.18-1.module_f30+4499+b627b867.i686.rpm", "libsodium-0:1.0.18-1.module_f30+4499+b627b867.ppc64le.rpm", "libsodium-0:1.0.18-1.module_f30+4499+b627b867.s390x.rpm", "libsodium-0:1.0.18-1.module_f30+4499+b627b867.src.rpm", "libsodium-0:1.0.18-1.module_f30+4499+b627b867.x86_64.rpm", "libsodium-debuginfo-0:1.0.18-1.module_f30+4499+b627b867.aarch64.rpm", "libsodium-debuginfo-0:1.0.18-1.module_f30+4499+b627b867.armv7hl.rpm", "libsodium-debuginfo-0:1.0.18-1.module_f30+4499+b627b867.i686.rpm", "libsodium-debuginfo-0:1.0.18-1.module_f30+4499+b627b867.ppc64le.rpm", "libsodium-debuginfo-0:1.0.18-1.module_f30+4499+b627b867.s390x.rpm", "libsodium-debuginfo-0:1.0.18-1.module_f30+4499+b627b867.x86_64.rpm", "libsodium-debugsource-0:1.0.18-1.module_f30+4499+b627b867.aarch64.rpm", "libsodium-debugsource-0:1.0.18-1.module_f30+4499+b627b867.armv7hl.rpm", "libsodium-debugsource-0:1.0.18-1.module_f30+4499+b627b867.i686.rpm", "libsodium-debugsource-0:1.0.18-1.module_f30+4499+b627b867.ppc64le.rpm", "libsodium-debugsource-0:1.0.18-1.module_f30+4499+b627b867.s390x.rpm", "libsodium-debugsource-0:1.0.18-1.module_f30+4499+b627b867.x86_64.rpm", "libsodium-devel-0:1.0.18-1.module_f30+4499+b627b867.aarch64.rpm", "libsodium-devel-0:1.0.18-1.module_f30+4499+b627b867.armv7hl.rpm", "libsodium-devel-0:1.0.18-1.module_f30+4499+b627b867.i686.rpm", "libsodium-devel-0:1.0.18-1.module_f30+4499+b627b867.ppc64le.rpm", "libsodium-devel-0:1.0.18-1.module_f30+4499+b627b867.s390x.rpm", "libsodium-devel-0:1.0.18-1.module_f30+4499+b627b867.x86_64.rpm", "libsodium-static-0:1.0.18-1.module_f30+4499+b627b867.aarch64.rpm", "libsodium-static-0:1.0.18-1.module_f30+4499+b627b867.armv7hl.rpm", "libsodium-static-0:1.0.18-1.module_f30+4499+b627b867.i686.rpm", "libsodium-static-0:1.0.18-1.module_f30+4499+b627b867.ppc64le.rpm", "libsodium-static-0:1.0.18-1.module_f30+4499+b627b867.s390x.rpm", "libsodium-static-0:1.0.18-1.module_f30+4499+b627b867.x86_64.rpm", "miniupnpc-0:2.1-1.module_f30+4499+b627b867.aarch64.rpm", "miniupnpc-0:2.1-1.module_f30+4499+b627b867.armv7hl.rpm", "miniupnpc-0:2.1-1.module_f30+4499+b627b867.i686.rpm", "miniupnpc-0:2.1-1.module_f30+4499+b627b867.ppc64le.rpm", "miniupnpc-0:2.1-1.module_f30+4499+b627b867.s390x.rpm", "miniupnpc-0:2.1-1.module_f30+4499+b627b867.src.rpm", "miniupnpc-0:2.1-1.module_f30+4499+b627b867.x86_64.rpm", "miniupnpc-debuginfo-0:2.1-1.module_f30+4499+b627b867.aarch64.rpm", "miniupnpc-debuginfo-0:2.1-1.module_f30+4499+b627b867.armv7hl.rpm", "miniupnpc-debuginfo-0:2.1-1.module_f30+4499+b627b867.i686.rpm", "miniupnpc-debuginfo-0:2.1-1.module_f30+4499+b627b867.ppc64le.rpm", "miniupnpc-debuginfo-0:2.1-1.module_f30+4499+b627b867.s390x.rpm", "miniupnpc-debuginfo-0:2.1-1.module_f30+4499+b627b867.x86_64.rpm", "miniupnpc-debugsource-0:2.1-1.module_f30+4499+b627b867.aarch64.rpm", "miniupnpc-debugsource-0:2.1-1.module_f30+4499+b627b867.armv7hl.rpm", "miniupnpc-debugsource-0:2.1-1.module_f30+4499+b627b867.i686.rpm", "miniupnpc-debugsource-0:2.1-1.module_f30+4499+b627b867.ppc64le.rpm", "miniupnpc-debugsource-0:2.1-1.module_f30+4499+b627b867.s390x.rpm", "miniupnpc-debugsource-0:2.1-1.module_f30+4499+b627b867.x86_64.rpm", "miniupnpc-devel-0:2.1-1.module_f30+4499+b627b867.aarch64.rpm", "miniupnpc-devel-0:2.1-1.module_f30+4499+b627b867.armv7hl.rpm", "miniupnpc-devel-0:2.1-1.module_f30+4499+b627b867.i686.rpm", "miniupnpc-devel-0:2.1-1.module_f30+4499+b627b867.ppc64le.rpm", "miniupnpc-devel-0:2.1-1.module_f30+4499+b627b867.s390x.rpm", "miniupnpc-devel-0:2.1-1.module_f30+4499+b627b867.x86_64.rpm", "mozjs38-0:38.8.0-12.module_f30+4499+b627b867.aarch64.rpm", "mozjs38-0:38.8.0-12.module_f30+4499+b627b867.armv7hl.rpm", "mozjs38-0:38.8.0-12.module_f30+4499+b627b867.i686.rpm", "mozjs38-0:38.8.0-12.module_f30+4499+b627b867.ppc64le.rpm", "mozjs38-0:38.8.0-12.module_f30+4499+b627b867.s390x.rpm", "mozjs38-0:38.8.0-12.module_f30+4499+b627b867.src.rpm", "mozjs38-0:38.8.0-12.module_f30+4499+b627b867.x86_64.rpm", "mozjs38-debuginfo-0:38.8.0-12.module_f30+4499+b627b867.aarch64.rpm", "mozjs38-debuginfo-0:38.8.0-12.module_f30+4499+b627b867.armv7hl.rpm", "mozjs38-debuginfo-0:38.8.0-12.module_f30+4499+b627b867.i686.rpm", "mozjs38-debuginfo-0:38.8.0-12.module_f30+4499+b627b867.ppc64le.rpm", "mozjs38-debuginfo-0:38.8.0-12.module_f30+4499+b627b867.s390x.rpm", "mozjs38-debuginfo-0:38.8.0-12.module_f30+4499+b627b867.x86_64.rpm", "mozjs38-debugsource-0:38.8.0-12.module_f30+4499+b627b867.aarch64.rpm", "mozjs38-debugsource-0:38.8.0-12.module_f30+4499+b627b867.armv7hl.rpm", "mozjs38-debugsource-0:38.8.0-12.module_f30+4499+b627b867.i686.rpm", "mozjs38-debugsource-0:38.8.0-12.module_f30+4499+b627b867.ppc64le.rpm", "mozjs38-debugsource-0:38.8.0-12.module_f30+4499+b627b867.s390x.rpm", "mozjs38-debugsource-0:38.8.0-12.module_f30+4499+b627b867.x86_64.rpm", "mozjs38-devel-0:38.8.0-12.module_f30+4499+b627b867.aarch64.rpm", "mozjs38-devel-0:38.8.0-12.module_f30+4499+b627b867.armv7hl.rpm", "mozjs38-devel-0:38.8.0-12.module_f30+4499+b627b867.i686.rpm", "mozjs38-devel-0:38.8.0-12.module_f30+4499+b627b867.ppc64le.rpm", "mozjs38-devel-0:38.8.0-12.module_f30+4499+b627b867.s390x.rpm", "mozjs38-devel-0:38.8.0-12.module_f30+4499+b627b867.x86_64.rpm", "nvidia-texture-tools-0:2.0.8-20.module_f30+4499+b627b867.aarch64.rpm", "nvidia-texture-tools-0:2.0.8-20.module_f30+4499+b627b867.armv7hl.rpm", "nvidia-texture-tools-0:2.0.8-20.module_f30+4499+b627b867.i686.rpm", "nvidia-texture-tools-0:2.0.8-20.module_f30+4499+b627b867.ppc64le.rpm", "nvidia-texture-tools-0:2.0.8-20.module_f30+4499+b627b867.s390x.rpm", "nvidia-texture-tools-0:2.0.8-20.module_f30+4499+b627b867.src.rpm", "nvidia-texture-tools-0:2.0.8-20.module_f30+4499+b627b867.x86_64.rpm", "nvidia-texture-tools-debuginfo-0:2.0.8-20.module_f30+4499+b627b867.aarch64.rpm", "nvidia-texture-tools-debuginfo-0:2.0.8-20.module_f30+4499+b627b867.armv7hl.rpm", "nvidia-texture-tools-debuginfo-0:2.0.8-20.module_f30+4499+b627b867.i686.rpm", "nvidia-texture-tools-debuginfo-0:2.0.8-20.module_f30+4499+b627b867.ppc64le.rpm", "nvidia-texture-tools-debuginfo-0:2.0.8-20.module_f30+4499+b627b867.s390x.rpm", "nvidia-texture-tools-debuginfo-0:2.0.8-20.module_f30+4499+b627b867.x86_64.rpm", "nvidia-texture-tools-debugsource-0:2.0.8-20.module_f30+4499+b627b867.aarch64.rpm", "nvidia-texture-tools-debugsource-0:2.0.8-20.module_f30+4499+b627b867.armv7hl.rpm", "nvidia-texture-tools-debugsource-0:2.0.8-20.module_f30+4499+b627b867.i686.rpm", "nvidia-texture-tools-debugsource-0:2.0.8-20.module_f30+4499+b627b867.ppc64le.rpm", "nvidia-texture-tools-debugsource-0:2.0.8-20.module_f30+4499+b627b867.s390x.rpm", "nvidia-texture-tools-debugsource-0:2.0.8-20.module_f30+4499+b627b867.x86_64.rpm", "nvidia-texture-tools-devel-0:2.0.8-20.module_f30+4499+b627b867.aarch64.rpm", "nvidia-texture-tools-devel-0:2.0.8-20.module_f30+4499+b627b867.armv7hl.rpm", "nvidia-texture-tools-devel-0:2.0.8-20.module_f30+4499+b627b867.i686.rpm", "nvidia-texture-tools-devel-0:2.0.8-20.module_f30+4499+b627b867.ppc64le.rpm", "nvidia-texture-tools-devel-0:2.0.8-20.module_f30+4499+b627b867.s390x.rpm", "nvidia-texture-tools-devel-0:2.0.8-20.module_f30+4499+b627b867.x86_64.rpm", "python2-miniupnpc-0:2.1-1.module_f30+4499+b627b867.aarch64.rpm", "python2-miniupnpc-0:2.1-1.module_f30+4499+b627b867.armv7hl.rpm", "python2-miniupnpc-0:2.1-1.module_f30+4499+b627b867.i686.rpm", "python2-miniupnpc-0:2.1-1.module_f30+4499+b627b867.ppc64le.rpm", "python2-miniupnpc-0:2.1-1.module_f30+4499+b627b867.s390x.rpm", "python2-miniupnpc-0:2.1-1.module_f30+4499+b627b867.x86_64.rpm", "python2-miniupnpc-debuginfo-0:2.1-1.module_f30+4499+b627b867.aarch64.rpm", "python2-miniupnpc-debuginfo-0:2.1-1.module_f30+4499+b627b867.armv7hl.rpm", "python2-miniupnpc-debuginfo-0:2.1-1.module_f30+4499+b627b867.i686.rpm", "python2-miniupnpc-debuginfo-0:2.1-1.module_f30+4499+b627b867.ppc64le.rpm", "python2-miniupnpc-debuginfo-0:2.1-1.module_f30+4499+b627b867.s390x.rpm", "python2-miniupnpc-debuginfo-0:2.1-1.module_f30+4499+b627b867.x86_64.rpm", "python3-miniupnpc-0:2.1-1.module_f30+4499+b627b867.aarch64.rpm", "python3-miniupnpc-0:2.1-1.module_f30+4499+b627b867.armv7hl.rpm", "python3-miniupnpc-0:2.1-1.module_f30+4499+b627b867.i686.rpm", "python3-miniupnpc-0:2.1-1.module_f30+4499+b627b867.ppc64le.rpm", "python3-miniupnpc-0:2.1-1.module_f30+4499+b627b867.s390x.rpm", "python3-miniupnpc-0:2.1-1.module_f30+4499+b627b867.x86_64.rpm", "python3-miniupnpc-debuginfo-0:2.1-1.module_f30+4499+b627b867.aarch64.rpm", "python3-miniupnpc-debuginfo-0:2.1-1.module_f30+4499+b627b867.armv7hl.rpm", "python3-miniupnpc-debuginfo-0:2.1-1.module_f30+4499+b627b867.i686.rpm", "python3-miniupnpc-debuginfo-0:2.1-1.module_f30+4499+b627b867.ppc64le.rpm", "python3-miniupnpc-debuginfo-0:2.1-1.module_f30+4499+b627b867.s390x.rpm", "python3-miniupnpc-debuginfo-0:2.1-1.module_f30+4499+b627b867.x86_64.rpm" ] }, { "variant_id": "0ad", "variant_uid": "0ad:master:3120191108090604:802922d1", "variant_name": "0ad", "variant_type": "module", "variant_version": "master", "variant_release": "3120191108090604", "variant_context": "802922d1", "koji_tag": "module-0ad-master-3120191108090604-802922d1", "modulemd": "---\ndocument: modulemd\nversion: 2\ndata:\n name: 0ad\n stream: master\n version: 3120191108090604\n context: 802922d1\n summary: Cross-Platform RTS Game of Ancient Warfare\n description: >-\n 0 A.D. (pronounced \"zero ey-dee\") is a free, open-source, cross-platform real-time\n strategy (RTS) game of ancient warfare. In short, it is a historically-based war/economy\n game that allows players to relive or rewrite the history of Western civilizations,\n focusing on the years between 500 B.C. and 500 A.D. The project is highly ambitious,\n involving state-of-the-art 3D graphics, detailed artwork, sound, and a flexible\n and powerful custom-built game engine.\n\n The game has been in development by Wildfire Games (WFG), a group of volunteer,\n hobbyist game developers, since 2001.\n license:\n module:\n - MIT\n xmd:\n mbs:\n buildrequires:\n flatpak-common:\n context: f889fc00\n filtered_rpms: []\n koji_tag: module-flatpak-common-f31-3120191028112456-f889fc00\n ref: 10b2b04c6e30518c59ec70fa2f979850f7ae0896\n stream: f31\n version: 3120191028112456\n flatpak-runtime:\n context: f636be4b\n filtered_rpms: []\n koji_tag: module-flatpak-runtime-f31-3120191028104407-f636be4b\n ref: 3f74e1fee8095ccfc457203e6ab2e59d2a8e9269\n stream: f31\n version: 3120191028104407\n platform:\n context: 00000000\n filtered_rpms: []\n koji_tag: module-f31-build\n ref: f31\n stream: f31\n stream_collision_modules: \n ursine_rpms: \n version: 1\n commit: e6ce4fd95a6f029a58fd1450517f17539522420c\n mse: TRUE\n rpms:\n 0ad:\n ref: 8d610059b261107fbdc01e3fb2c6dfd1d55fbae2\n 0ad-data:\n ref: bd0a36ca26f14b270a7fe451dc8e5950988b347c\n enet:\n ref: bde1c48345f3c626cdfc330cec738b235457750d\n gloox:\n ref: 84644e36e9d2adde000a70c3c8b6e453b406ac5d\n libsodium:\n ref: 624d0fad6e753539460eb2b800562b78625884f8\n miniupnpc:\n ref: 7b826c83d6d0b37e9f4fa6168c8b7fa409491f1a\n nvidia-texture-tools:\n ref: 75390ca9ab9911aa93a7a4fe57fdf1db4d82f79d\n scmurl: https://src.fedoraproject.org/flatpaks/0ad.git?#e6ce4fd95a6f029a58fd1450517f17539522420c\n ursine_rpms:\n - polkit-0:0.116-4.fc31.i686\n - ghostscript-tools-dvipdf-0:9.27-1.fc31.i686\n - python3-cairo-devel-0:1.18.1-2.fc31.aarch64\n - libidn-devel-0:1.35-6.fc31.ppc64le\n - poppler-qt5-devel-0:0.73.0-14.fc31.i686\n - glibmm24-devel-0:2.62.0-1.fc31.ppc64le\n - wxGTK3-devel-0:3.0.4-10.fc31.x86_64\n - flatpak-rpm-macros-0:29-10.fc31.x86_64\n - libpeas-loader-python3-0:1.24.0-1.fc31.armv7hl\n - SDL_image-0:1.2.12-22.fc31.i686\n - startup-notification-0:0.12-18.fc31.x86_64\n - boost-python3-devel-0:1.69.0-9.fc31.ppc64le\n - libpeas-gtk-0:1.24.0-1.fc31.ppc64le\n - libijs-0:0.35-10.fc31.ppc64le\n - glew-devel-0:2.1.0-5.fc31.aarch64\n - poppler-devel-0:0.73.0-14.fc31.ppc64le\n - python2-gobject-devel-0:3.34.0-3.fc31.aarch64\n - liboauth-devel-0:1.0.3-13.fc31.ppc64le\n - libgweather-0:3.34.0-1.fc31.x86_64\n - xorg-x11-font-utils-1:7.5-42.fc31.s390x\n - gtksourceview4-0:4.4.0-1.fc31.i686\n - python2-cairo-devel-0:1.18.1-2.fc31.armv7hl\n - boost-0:1.69.0-9.fc31.i686\n - poppler-cpp-0:0.73.0-14.fc31.armv7hl\n - boost-devel-0:1.69.0-9.fc31.aarch64\n - libsigc++20-devel-0:2.10.2-2.fc31.x86_64\n - wxGTK3-webview-0:3.0.4-10.fc31.armv7hl\n - cairomm-0:1.12.0-11.fc31.x86_64\n - boost-doctools-0:1.69.0-9.fc31.s390x\n - boost-locale-0:1.69.0-9.fc31.x86_64\n - python2-gobject-base-0:3.34.0-3.fc31.s390x\n - exiv2-devel-0:0.27.2-1.fc31.x86_64\n - polkit-libs-0:0.116-4.fc31.aarch64\n - boost-regex-0:1.69.0-9.fc31.x86_64\n - poppler-utils-0:0.73.0-14.fc31.armv7hl\n - OpenEXR-libs-0:2.3.0-4.fc31.aarch64\n - boost-python3-0:1.69.0-9.fc31.s390x\n - gtksourceview4-tests-0:4.4.0-1.fc31.i686\n - liboauth-devel-0:1.0.3-13.fc31.armv7hl\n - libgdata-devel-0:0.17.11-1.fc31.aarch64\n - boost-coroutine-0:1.69.0-9.fc31.i686\n - polkit-docs-0:0.116-4.fc31.noarch\n - polkit-devel-0:0.116-4.fc31.aarch64\n - boost-type_erasure-0:1.69.0-9.fc31.i686\n - boost-type_erasure-0:1.69.0-9.fc31.s390x\n - urw-base35-nimbus-mono-ps-fonts-0:20170801-13.fc31.noarch\n - boost-math-0:1.69.0-9.fc31.ppc64le\n - OpenEXR-0:2.3.0-4.fc31.armv7hl\n - boost-numpy2-0:1.69.0-9.fc31.aarch64\n - opengl-games-utils-0:0.2-16.fc31.noarch\n - gnome-online-accounts-0:3.34.1-1.fc31.x86_64\n - boost-numpy3-0:1.69.0-9.fc31.i686\n - gtksourceview4-devel-0:4.4.0-1.fc31.x86_64\n - poppler-utils-0:0.73.0-14.fc31.ppc64le\n - libdazzle-0:3.34.1-1.fc31.x86_64\n - libmspack-0:0.10.1-0.2.alpha.fc31.x86_64\n - gtkmm30-0:3.24.2-1.fc31.armv7hl\n - boost-graph-0:1.69.0-9.fc31.armv7hl\n - boost-serialization-0:1.69.0-9.fc31.ppc64le\n - libgs-devel-0:9.27-1.fc31.s390x\n - boost-static-0:1.69.0-9.fc31.aarch64\n - openblas-threads64-0:0.3.7-1.fc31.s390x\n - openblas-openmp64-0:0.3.7-1.fc31.aarch64\n - boost-container-0:1.69.0-9.fc31.i686\n - libpaper-0:1.1.24-25.fc31.x86_64\n - libwmf-0:0.2.12-2.fc31.armv7hl\n - libdazzle-devel-0:3.34.1-1.fc31.i686\n - python3-cairo-0:1.18.1-2.fc31.s390x\n - atkmm-devel-0:2.24.3-3.fc31.s390x\n - gtksourceview4-tests-0:4.4.0-1.fc31.aarch64\n - python3-cairo-devel-0:1.18.1-2.fc31.armv7hl\n - gtksourceview4-0:4.4.0-1.fc31.ppc64le\n - python2-dbus-0:1.2.8-6.fc31.i686\n - wxBase3-devel-0:3.0.4-10.fc31.aarch64\n - gnome-desktop3-devel-0:3.34.1-1.fc31.s390x\n - evolution-data-server-devel-0:3.34.1-1.fc31.aarch64\n - python2-gobject-0:3.34.0-3.fc31.x86_64\n - libpaper-devel-0:1.1.24-25.fc31.x86_64\n - flatpak-rpm-macros-0:29-10.fc31.armv7hl\n - boost-iostreams-0:1.69.0-9.fc31.armv7hl\n - libsigc++20-0:2.10.2-2.fc31.aarch64\n - gtksourceview3-devel-0:3.24.11-2.fc31.aarch64\n - gtksourceview4-0:4.4.0-1.fc31.x86_64\n - exiv2-devel-0:0.27.2-1.fc31.s390x\n - ghostscript-x11-0:9.27-1.fc31.x86_64\n - boost-python2-0:1.69.0-9.fc31.s390x\n - libgdata-devel-0:0.17.11-1.fc31.ppc64le\n - gsl-0:2.5-2.fc31.aarch64\n - atkmm-devel-0:2.24.3-3.fc31.ppc64le\n - libgdata-0:0.17.11-1.fc31.x86_64\n - libgweather-devel-0:3.34.0-1.fc31.x86_64\n - boost-regex-0:1.69.0-9.fc31.s390x\n - atkmm-devel-0:2.24.3-3.fc31.aarch64\n - gtksourceview4-tests-0:4.4.0-1.fc31.s390x\n - gd-0:2.2.5-9.fc31.x86_64\n - polkit-libs-0:0.116-4.fc31.x86_64\n - OpenEXR-doc-0:2.3.0-4.fc31.i686\n - boost-log-0:1.69.0-9.fc31.s390x\n - openblas-static-0:0.3.7-1.fc31.x86_64\n - openblas-serial64-0:0.3.7-1.fc31.ppc64le\n - openblas-threads64-0:0.3.7-1.fc31.ppc64le\n - libimagequant-devel-0:2.12.5-1.fc31.s390x\n - evolution-data-server-tests-0:3.34.1-1.fc31.aarch64\n - wxGTK3-0:3.0.4-10.fc31.armv7hl\n - flatpak-runtime-config-0:29-6.fc31.ppc64le\n - gsl-devel-0:2.5-2.fc31.s390x\n - evolution-data-server-0:3.34.1-1.fc31.aarch64\n - flatpak-runtime-config-0:29-6.fc31.x86_64\n - ghostscript-tools-dvipdf-0:9.27-1.fc31.s390x\n - boost-program-options-0:1.69.0-9.fc31.i686\n - boost-context-0:1.69.0-9.fc31.aarch64\n - gtkmm30-devel-0:3.24.2-1.fc31.armv7hl\n - openblas-0:0.3.7-1.fc31.x86_64\n - python2-gobject-devel-0:3.34.0-3.fc31.armv7hl\n - evolution-data-server-devel-0:3.34.1-1.fc31.i686\n - libpaper-devel-0:1.1.24-25.fc31.s390x\n - compat-wxGTK3-gtk2-gl-0:3.0.4-10.fc31.s390x\n - cairomm-devel-0:1.12.0-11.fc31.i686\n - boost-static-0:1.69.0-9.fc31.s390x\n - glibmm24-doc-0:2.62.0-1.fc31.noarch\n - pangomm-devel-0:2.40.2-3.fc31.s390x\n - exiv2-devel-0:0.27.2-1.fc31.i686\n - python2-gobject-base-0:3.34.0-3.fc31.armv7hl\n - pangomm-devel-0:2.40.2-3.fc31.aarch64\n - boost-random-0:1.69.0-9.fc31.ppc64le\n - python3-dbus-0:1.2.8-6.fc31.ppc64le\n - poppler-qt5-0:0.73.0-14.fc31.x86_64\n - evolution-data-server-perl-0:3.34.1-1.fc31.aarch64\n - gsl-devel-0:2.5-2.fc31.aarch64\n - adobe-mappings-pdf-0:20180407-4.fc31.noarch\n - boost-numpy3-0:1.69.0-9.fc31.armv7hl\n - ghostscript-tools-fonts-0:9.27-1.fc31.s390x\n - wxBase3-0:3.0.4-10.fc31.x86_64\n - SDL-0:1.2.15-42.fc31.armv7hl\n - compat-wxGTK3-gtk2-0:3.0.4-10.fc31.i686\n - boost-stacktrace-0:1.69.0-9.fc31.x86_64\n - OpenEXR-devel-0:2.3.0-4.fc31.i686\n - libgweather-0:3.34.0-1.fc31.armv7hl\n - xorg-x11-font-utils-1:7.5-42.fc31.x86_64\n - wxGTK3-devel-0:3.0.4-10.fc31.armv7hl\n - libgs-0:9.27-1.fc31.s390x\n - wxBase3-devel-0:3.0.4-10.fc31.ppc64le\n - SDL-static-0:1.2.15-42.fc31.x86_64\n - exiv2-libs-0:0.27.2-1.fc31.s390x\n - compat-wxGTK3-gtk2-gl-0:3.0.4-10.fc31.ppc64le\n - ghostscript-tools-dvipdf-0:9.27-1.fc31.ppc64le\n - boost-date-time-0:1.69.0-9.fc31.i686\n - boost-system-0:1.69.0-9.fc31.s390x\n - python2-gobject-base-0:3.34.0-3.fc31.ppc64le\n - libpeas-gtk-0:1.24.0-1.fc31.aarch64\n - SDL_image-devel-0:1.2.12-22.fc31.armv7hl\n - libwmf-devel-0:0.2.12-2.fc31.i686\n - libmspack-devel-0:0.10.1-0.2.alpha.fc31.ppc64le\n - compat-wxGTK3-gtk2-gl-0:3.0.4-10.fc31.armv7hl\n - atkmm-devel-0:2.24.3-3.fc31.x86_64\n - gtkmm30-0:3.24.2-1.fc31.ppc64le\n - gtkmm30-devel-0:3.24.2-1.fc31.x86_64\n - openblas-static-0:0.3.7-1.fc31.armv7hl\n - python2-dbus-0:1.2.8-6.fc31.aarch64\n - gnome-desktop3-tests-0:3.34.1-1.fc31.i686\n - libdazzle-0:3.34.1-1.fc31.armv7hl\n - poppler-cpp-0:0.73.0-14.fc31.aarch64\n - poppler-devel-0:0.73.0-14.fc31.aarch64\n - boost-numpy2-0:1.69.0-9.fc31.ppc64le\n - python2-cairo-devel-0:1.18.1-2.fc31.aarch64\n - pangomm-0:2.40.2-3.fc31.s390x\n - boost-doc-0:1.69.0-9.fc31.armv7hl\n - libidn-devel-0:1.35-6.fc31.armv7hl\n - urw-base35-nimbus-sans-fonts-0:20170801-13.fc31.noarch\n - boost-doctools-0:1.69.0-9.fc31.i686\n - startup-notification-0:0.12-18.fc31.aarch64\n - jbig2dec-devel-0:0.16-1.fc31.ppc64le\n - atkmm-doc-0:2.24.3-3.fc31.noarch\n - python2-cairo-0:1.18.1-2.fc31.ppc64le\n - SDL-static-0:1.2.15-42.fc31.s390x\n - boost-devel-0:1.69.0-9.fc31.i686\n - boost-thread-0:1.69.0-9.fc31.s390x\n - evolution-data-server-tests-0:3.34.1-1.fc31.ppc64le\n - openblas-openmp-0:0.3.7-1.fc31.x86_64\n - boost-context-0:1.69.0-9.fc31.x86_64\n - compat-wxGTK3-gtk2-media-0:3.0.4-10.fc31.armv7hl\n - libical-devel-0:3.0.6-2.fc31.i686\n - libimagequant-0:2.12.5-1.fc31.ppc64le\n - openblas-threads64_-0:0.3.7-1.fc31.s390x\n - ghostscript-gtk-0:9.27-1.fc31.aarch64\n - libgdata-devel-0:0.17.11-1.fc31.i686\n - python3-cairo-0:1.18.1-2.fc31.aarch64\n - boost-examples-0:1.69.0-9.fc31.x86_64\n - compat-wxGTK3-gtk2-media-0:3.0.4-10.fc31.s390x\n - evolution-data-server-0:3.34.1-1.fc31.s390x\n - evolution-data-server-tests-0:3.34.1-1.fc31.x86_64\n - ghostscript-tools-fonts-0:9.27-1.fc31.aarch64\n - gd-progs-0:2.2.5-9.fc31.aarch64\n - wxGTK3-gl-0:3.0.4-10.fc31.x86_64\n - adobe-mappings-cmap-deprecated-0:20171205-6.fc31.noarch\n - urw-base35-p052-fonts-0:20170801-13.fc31.noarch\n - jbig2dec-libs-0:0.16-1.fc31.x86_64\n - gtksourceview4-0:4.4.0-1.fc31.armv7hl\n - libfontenc-devel-0:1.1.3-11.fc31.ppc64le\n - libsigc++20-0:2.10.2-2.fc31.i686\n - openblas-serial64_-0:0.3.7-1.fc31.aarch64\n - gnome-desktop3-0:3.34.1-1.fc31.i686\n - atkmm-0:2.24.3-3.fc31.i686\n - boost-jam-0:1.69.0-9.fc31.x86_64\n - libijs-devel-0:0.35-10.fc31.ppc64le\n - boost-python3-devel-0:1.69.0-9.fc31.x86_64\n - libijs-doc-0:0.35-10.fc31.noarch\n - libgs-0:9.27-1.fc31.i686\n - ghostscript-tools-printing-0:9.27-1.fc31.aarch64\n - libgweather-devel-0:3.34.0-1.fc31.armv7hl\n - SDL-0:1.2.15-42.fc31.x86_64\n - glibmm24-devel-0:2.62.0-1.fc31.x86_64\n - polkit-0:0.116-4.fc31.s390x\n - boost-python3-0:1.69.0-9.fc31.armv7hl\n - gtksourceview3-devel-0:3.24.11-2.fc31.armv7hl\n - gtkmm30-0:3.24.2-1.fc31.s390x\n - openblas-static-0:0.3.7-1.fc31.s390x\n - openblas-openmp64_-0:0.3.7-1.fc31.aarch64\n - boost-doctools-0:1.69.0-9.fc31.aarch64\n - wxBase3-0:3.0.4-10.fc31.i686\n - poppler-glib-devel-0:0.73.0-14.fc31.ppc64le\n - ghostscript-0:9.27-1.fc31.i686\n - boost-contract-0:1.69.0-9.fc31.x86_64\n - boost-fiber-0:1.69.0-9.fc31.i686\n - gd-progs-0:2.2.5-9.fc31.s390x\n - libimagequant-devel-0:2.12.5-1.fc31.i686\n - gd-0:2.2.5-9.fc31.aarch64\n - libsigc++20-0:2.10.2-2.fc31.s390x\n - ghostscript-x11-0:9.27-1.fc31.s390x\n - openblas-0:0.3.7-1.fc31.i686\n - poppler-qt-0:0.73.0-14.fc31.armv7hl\n - libical-devel-0:3.0.6-2.fc31.s390x\n - libpaper-0:1.1.24-25.fc31.aarch64\n - atkmm-0:2.24.3-3.fc31.x86_64\n - boost-numpy2-0:1.69.0-9.fc31.x86_64\n - libical-glib-devel-0:3.0.6-2.fc31.aarch64\n - libical-glib-devel-0:3.0.6-2.fc31.s390x\n - polkit-devel-0:0.116-4.fc31.i686\n - flatpak-runtime-config-0:29-6.fc31.i686\n - python3-gobject-base-0:3.34.0-3.fc31.i686\n - boost-type_erasure-0:1.69.0-9.fc31.aarch64\n - wxGTK3-media-0:3.0.4-10.fc31.ppc64le\n - exiv2-libs-0:0.27.2-1.fc31.armv7hl\n - ghostscript-0:9.27-1.fc31.aarch64\n - boost-python3-0:1.69.0-9.fc31.i686\n - exiv2-0:0.27.2-1.fc31.aarch64\n - openblas-serial64-0:0.3.7-1.fc31.s390x\n - glibmm24-0:2.62.0-1.fc31.armv7hl\n - wxGTK3-0:3.0.4-10.fc31.i686\n - openjpeg2-0:2.3.1-3.fc31.s390x\n - python3-cairo-devel-0:1.18.1-2.fc31.ppc64le\n - openjpeg2-tools-0:2.3.1-3.fc31.x86_64\n - boost-doc-0:1.69.0-9.fc31.ppc64le\n - boost-python3-0:1.69.0-9.fc31.aarch64\n - libwmf-devel-0:0.2.12-2.fc31.ppc64le\n - exiv2-devel-0:0.27.2-1.fc31.armv7hl\n - poppler-qt-0:0.73.0-14.fc31.i686\n - libGLEW-0:2.1.0-5.fc31.x86_64\n - libmspack-devel-0:0.10.1-0.2.alpha.fc31.x86_64\n - libgs-0:9.27-1.fc31.armv7hl\n - evolution-data-server-perl-0:3.34.1-1.fc31.s390x\n - boost-fiber-0:1.69.0-9.fc31.armv7hl\n - poppler-qt-devel-0:0.73.0-14.fc31.armv7hl\n - libimagequant-devel-0:2.12.5-1.fc31.armv7hl\n - openjpeg2-tools-0:2.3.1-3.fc31.aarch64\n - libmspack-devel-0:0.10.1-0.2.alpha.fc31.aarch64\n - libgs-devel-0:9.27-1.fc31.x86_64\n - OpenEXR-libs-0:2.3.0-4.fc31.x86_64\n - boost-iostreams-0:1.69.0-9.fc31.aarch64\n - libical-glib-0:3.0.6-2.fc31.x86_64\n - compat-wxGTK3-gtk2-devel-0:3.0.4-10.fc31.ppc64le\n - wxGTK3-devel-0:3.0.4-10.fc31.ppc64le\n - openblas-serial64-0:0.3.7-1.fc31.aarch64\n - gspell-devel-0:1.8.2-1.fc31.aarch64\n - flatpak-rpm-macros-0:29-10.fc31.ppc64le\n - libgdata-0:0.17.11-1.fc31.i686\n - gnome-online-accounts-devel-0:3.34.1-1.fc31.i686\n - boost-system-0:1.69.0-9.fc31.ppc64le\n - openblas-openmp64_-0:0.3.7-1.fc31.s390x\n - boost-0:1.69.0-9.fc31.aarch64\n - gd-devel-0:2.2.5-9.fc31.armv7hl\n - libsigc++20-devel-0:2.10.2-2.fc31.ppc64le\n - poppler-0:0.73.0-14.fc31.ppc64le\n - python2-dbus-0:1.2.8-6.fc31.armv7hl\n - libmspack-devel-0:0.10.1-0.2.alpha.fc31.armv7hl\n - libijs-devel-0:0.35-10.fc31.i686\n - OpenEXR-doc-0:2.3.0-4.fc31.ppc64le\n - libpeas-devel-0:1.24.0-1.fc31.aarch64\n - evolution-data-server-0:3.34.1-1.fc31.i686\n - libfontenc-0:1.1.3-11.fc31.armv7hl\n - wxGTK3-gl-0:3.0.4-10.fc31.aarch64\n - liboauth-0:1.0.3-13.fc31.s390x\n - poppler-cpp-devel-0:0.73.0-14.fc31.ppc64le\n - boost-timer-0:1.69.0-9.fc31.ppc64le\n - gnome-online-accounts-devel-0:3.34.1-1.fc31.s390x\n - geocode-glib-0:3.26.1-3.fc31.s390x\n - boost-coroutine-0:1.69.0-9.fc31.x86_64\n - libijs-devel-0:0.35-10.fc31.x86_64\n - pangomm-0:2.40.2-3.fc31.ppc64le\n - libpeas-0:1.24.0-1.fc31.s390x\n - gsl-0:2.5-2.fc31.ppc64le\n - boost-math-0:1.69.0-9.fc31.i686\n - jbig2dec-0:0.16-1.fc31.armv7hl\n - poppler-qt-0:0.73.0-14.fc31.x86_64\n - startup-notification-devel-0:0.12-18.fc31.aarch64\n - SDL-devel-0:1.2.15-42.fc31.x86_64\n - SDL_image-0:1.2.12-22.fc31.ppc64le\n - cairomm-0:1.12.0-11.fc31.ppc64le\n - libfontenc-0:1.1.3-11.fc31.aarch64\n - boost-chrono-0:1.69.0-9.fc31.aarch64\n - boost-atomic-0:1.69.0-9.fc31.aarch64\n - gspell-devel-0:1.8.2-1.fc31.i686\n - libgweather-devel-0:3.34.0-1.fc31.i686\n - wxGTK3-0:3.0.4-10.fc31.aarch64\n - poppler-glib-doc-0:0.73.0-14.fc31.noarch\n - gspell-devel-0:1.8.2-1.fc31.x86_64\n - libgdata-devel-0:0.17.11-1.fc31.armv7hl\n - boost-numpy3-0:1.69.0-9.fc31.s390x\n - python2-gobject-0:3.34.0-3.fc31.armv7hl\n - poppler-devel-0:0.73.0-14.fc31.i686\n - gspell-devel-0:1.8.2-1.fc31.ppc64le\n - geocode-glib-devel-0:3.26.1-3.fc31.aarch64\n - cairomm-devel-0:1.12.0-11.fc31.ppc64le\n - exiv2-doc-0:0.27.2-1.fc31.noarch\n - boost-system-0:1.69.0-9.fc31.aarch64\n - boost-devel-0:1.69.0-9.fc31.armv7hl\n - python2-cairo-devel-0:1.18.1-2.fc31.i686\n - poppler-qt-0:0.73.0-14.fc31.s390x\n - ghostscript-0:9.27-1.fc31.s390x\n - wxGTK3-media-0:3.0.4-10.fc31.aarch64\n - ghostscript-tools-fonts-0:9.27-1.fc31.i686\n - boost-python3-devel-0:1.69.0-9.fc31.i686\n - openblas-openmp-0:0.3.7-1.fc31.ppc64le\n - boost-python3-0:1.69.0-9.fc31.ppc64le\n - python3-gobject-base-0:3.34.0-3.fc31.armv7hl\n - glew-0:2.1.0-5.fc31.i686\n - libpaper-0:1.1.24-25.fc31.i686\n - ghostscript-tools-printing-0:9.27-1.fc31.x86_64\n - OpenEXR-doc-0:2.3.0-4.fc31.aarch64\n - dbus-python-devel-0:1.2.8-6.fc31.x86_64\n - boost-doctools-0:1.69.0-9.fc31.x86_64\n - xorg-x11-font-utils-1:7.5-42.fc31.armv7hl\n - startup-notification-devel-0:0.12-18.fc31.armv7hl\n - cairomm-doc-0:1.12.0-11.fc31.noarch\n - libpeas-devel-0:1.24.0-1.fc31.ppc64le\n - boost-python3-devel-0:1.69.0-9.fc31.aarch64\n - libdazzle-devel-0:3.34.1-1.fc31.s390x\n - libical-devel-0:3.0.6-2.fc31.x86_64\n - ghostscript-core-0:9.27-1.fc31.armv7hl\n - boost-filesystem-0:1.69.0-9.fc31.aarch64\n - libidn-devel-0:1.35-6.fc31.i686\n - poppler-glib-devel-0:0.73.0-14.fc31.armv7hl\n - boost-atomic-0:1.69.0-9.fc31.ppc64le\n - ilmbase-0:2.3.0-3.fc31.armv7hl\n - libical-0:3.0.6-2.fc31.x86_64\n - openblas-openmp64_-0:0.3.7-1.fc31.ppc64le\n - wxGTK3-gl-0:3.0.4-10.fc31.s390x\n - boost-contract-0:1.69.0-9.fc31.ppc64le\n - compat-wxGTK3-gtk2-devel-0:3.0.4-10.fc31.aarch64\n - poppler-glib-0:0.73.0-14.fc31.x86_64\n - openblas-Rblas-0:0.3.7-1.fc31.armv7hl\n - boost-static-0:1.69.0-9.fc31.i686\n - boost-math-0:1.69.0-9.fc31.s390x\n - openblas-openmp-0:0.3.7-1.fc31.i686\n - openblas-openmp-0:0.3.7-1.fc31.armv7hl\n - libfontenc-devel-0:1.1.3-11.fc31.i686\n - python3-gobject-0:3.34.0-3.fc31.s390x\n - libwmf-0:0.2.12-2.fc31.x86_64\n - openblas-threads-0:0.3.7-1.fc31.s390x\n - boost-numpy3-0:1.69.0-9.fc31.x86_64\n - jbig2dec-devel-0:0.16-1.fc31.i686\n - boost-filesystem-0:1.69.0-9.fc31.i686\n - ilmbase-devel-0:2.3.0-3.fc31.armv7hl\n - ghostscript-tools-fonts-0:9.27-1.fc31.armv7hl\n - boost-container-0:1.69.0-9.fc31.armv7hl\n - ghostscript-tools-fonts-0:9.27-1.fc31.ppc64le\n - gtksourceview4-tests-0:4.4.0-1.fc31.armv7hl\n - evolution-data-server-devel-0:3.34.1-1.fc31.x86_64\n - wxGTK3-0:3.0.4-10.fc31.s390x\n - libical-devel-0:3.0.6-2.fc31.aarch64\n - libGLEW-0:2.1.0-5.fc31.s390x\n - gtksourceview3-tests-0:3.24.11-2.fc31.aarch64\n - openblas-devel-0:0.3.7-1.fc31.i686\n - jbig2dec-libs-0:0.16-1.fc31.armv7hl\n - jbig2dec-0:0.16-1.fc31.x86_64\n - exiv2-libs-0:0.27.2-1.fc31.aarch64\n - gd-devel-0:2.2.5-9.fc31.x86_64\n - wxGTK3-devel-0:3.0.4-10.fc31.s390x\n - glew-devel-0:2.1.0-5.fc31.i686\n - openjpeg2-0:2.3.1-3.fc31.ppc64le\n - gtksourceview4-0:4.4.0-1.fc31.aarch64\n - glibmm24-devel-0:2.62.0-1.fc31.armv7hl\n - wxGTK3-devel-0:3.0.4-10.fc31.aarch64\n - boost-filesystem-0:1.69.0-9.fc31.x86_64\n - python3-gobject-devel-0:3.34.0-3.fc31.s390x\n - boost-math-0:1.69.0-9.fc31.x86_64\n - gsl-devel-0:2.5-2.fc31.i686\n - boost-wave-0:1.69.0-9.fc31.armv7hl\n - libical-0:3.0.6-2.fc31.ppc64le\n - pangomm-devel-0:2.40.2-3.fc31.armv7hl\n - libimagequant-0:2.12.5-1.fc31.armv7hl\n - boost-container-0:1.69.0-9.fc31.x86_64\n - openjpeg2-devel-0:2.3.1-3.fc31.armv7hl\n - geocode-glib-0:3.26.1-3.fc31.aarch64\n - glew-0:2.1.0-5.fc31.aarch64\n - SDL_image-devel-0:1.2.12-22.fc31.ppc64le\n - pangomm-doc-0:2.40.2-3.fc31.noarch\n - atkmm-0:2.24.3-3.fc31.armv7hl\n - boost-examples-0:1.69.0-9.fc31.aarch64\n - libijs-0:0.35-10.fc31.x86_64\n - jbig2dec-libs-0:0.16-1.fc31.i686\n - gtksourceview3-devel-0:3.24.11-2.fc31.ppc64le\n - poppler-qt5-0:0.73.0-14.fc31.aarch64\n - evolution-data-server-perl-0:3.34.1-1.fc31.x86_64\n - ghostscript-tools-fonts-0:9.27-1.fc31.x86_64\n - poppler-qt-devel-0:0.73.0-14.fc31.i686\n - adobe-mappings-pdf-devel-0:20180407-4.fc31.noarch\n - libical-devel-0:3.0.6-2.fc31.ppc64le\n - google-droid-sans-fonts-0:20120715-16.fc31.noarch\n - SDL_image-0:1.2.12-22.fc31.aarch64\n - boost-program-options-0:1.69.0-9.fc31.x86_64\n - boost-date-time-0:1.69.0-9.fc31.armv7hl\n - gtkmm30-devel-0:3.24.2-1.fc31.aarch64\n - flatpak-rpm-macros-0:29-10.fc31.i686\n - python2-dbus-0:1.2.8-6.fc31.ppc64le\n - boost-static-0:1.69.0-9.fc31.x86_64\n - poppler-qt-devel-0:0.73.0-14.fc31.s390x\n - python3-dbus-0:1.2.8-6.fc31.x86_64\n - glibmm24-0:2.62.0-1.fc31.x86_64\n - boost-random-0:1.69.0-9.fc31.i686\n - libpeas-gtk-0:1.24.0-1.fc31.armv7hl\n - boost-context-0:1.69.0-9.fc31.armv7hl\n - libpeas-devel-0:1.24.0-1.fc31.x86_64\n - poppler-glib-devel-0:0.73.0-14.fc31.s390x\n - python3-gobject-devel-0:3.34.0-3.fc31.aarch64\n - boost-date-time-0:1.69.0-9.fc31.x86_64\n - gd-devel-0:2.2.5-9.fc31.ppc64le\n - openblas-threads-0:0.3.7-1.fc31.ppc64le\n - boost-python3-devel-0:1.69.0-9.fc31.armv7hl\n - pangomm-devel-0:2.40.2-3.fc31.i686\n - libsigc++20-0:2.10.2-2.fc31.ppc64le\n - gnome-online-accounts-0:3.34.1-1.fc31.i686\n - gtksourceview3-devel-0:3.24.11-2.fc31.x86_64\n - boost-thread-0:1.69.0-9.fc31.x86_64\n - libdazzle-devel-0:3.34.1-1.fc31.ppc64le\n - boost-examples-0:1.69.0-9.fc31.s390x\n - atkmm-0:2.24.3-3.fc31.aarch64\n - libical-glib-0:3.0.6-2.fc31.s390x\n - openblas-devel-0:0.3.7-1.fc31.ppc64le\n - boost-fiber-0:1.69.0-9.fc31.ppc64le\n - gtkmm30-0:3.24.2-1.fc31.aarch64\n - SDL_image-devel-0:1.2.12-22.fc31.i686\n - boost-coroutine-0:1.69.0-9.fc31.ppc64le\n - libdazzle-devel-0:3.34.1-1.fc31.aarch64\n - boost-python2-devel-0:1.69.0-9.fc31.ppc64le\n - libdazzle-0:3.34.1-1.fc31.i686\n - gtkmm30-devel-0:3.24.2-1.fc31.i686\n - ghostscript-gtk-0:9.27-1.fc31.s390x\n - glew-devel-0:2.1.0-5.fc31.x86_64\n - liboauth-0:1.0.3-13.fc31.x86_64\n - gnome-desktop3-0:3.34.1-1.fc31.s390x\n - openblas-threads64-0:0.3.7-1.fc31.aarch64\n - libijs-devel-0:0.35-10.fc31.armv7hl\n - gd-devel-0:2.2.5-9.fc31.s390x\n - SDL-0:1.2.15-42.fc31.ppc64le\n - exiv2-0:0.27.2-1.fc31.x86_64\n - libsigc++20-0:2.10.2-2.fc31.armv7hl\n - libgs-devel-0:9.27-1.fc31.armv7hl\n - libical-glib-0:3.0.6-2.fc31.ppc64le\n - openjpeg2-devel-0:2.3.1-3.fc31.s390x\n - xorg-x11-font-utils-1:7.5-42.fc31.aarch64\n - gsl-devel-0:2.5-2.fc31.armv7hl\n - openblas-openmp64_-0:0.3.7-1.fc31.x86_64\n - gd-devel-0:2.2.5-9.fc31.aarch64\n - glibmm24-devel-0:2.62.0-1.fc31.i686\n - boost-math-0:1.69.0-9.fc31.aarch64\n - boost-graph-0:1.69.0-9.fc31.ppc64le\n - boost-python2-0:1.69.0-9.fc31.ppc64le\n - jbig2dec-devel-0:0.16-1.fc31.aarch64\n - poppler-qt5-0:0.73.0-14.fc31.i686\n - libwmf-devel-0:0.2.12-2.fc31.aarch64\n - python3-gobject-devel-0:3.34.0-3.fc31.ppc64le\n - compat-wxGTK3-gtk2-devel-0:3.0.4-10.fc31.s390x\n - gnome-online-accounts-devel-0:3.34.1-1.fc31.ppc64le\n - ghostscript-0:9.27-1.fc31.armv7hl\n - polkit-libs-0:0.116-4.fc31.i686\n - gnome-desktop3-tests-0:3.34.1-1.fc31.x86_64\n - compat-wxGTK3-gtk2-0:3.0.4-10.fc31.ppc64le\n - openblas-serial64_-0:0.3.7-1.fc31.s390x\n - geocode-glib-0:3.26.1-3.fc31.x86_64\n - wxBase3-0:3.0.4-10.fc31.aarch64\n - boost-thread-0:1.69.0-9.fc31.ppc64le\n - ghostscript-tools-printing-0:9.27-1.fc31.ppc64le\n - libpaper-0:1.1.24-25.fc31.s390x\n - libidn-0:1.35-6.fc31.armv7hl\n - gtksourceview3-tests-0:3.24.11-2.fc31.x86_64\n - boost-container-0:1.69.0-9.fc31.aarch64\n - boost-examples-0:1.69.0-9.fc31.i686\n - OpenEXR-libs-0:2.3.0-4.fc31.s390x\n - python2-cairo-devel-0:1.18.1-2.fc31.s390x\n - openblas-threads64_-0:0.3.7-1.fc31.x86_64\n - libgs-0:9.27-1.fc31.ppc64le\n - openblas-threads-0:0.3.7-1.fc31.x86_64\n - ghostscript-gtk-0:9.27-1.fc31.armv7hl\n - boost-python2-0:1.69.0-9.fc31.i686\n - libijs-0:0.35-10.fc31.s390x\n - gsl-0:2.5-2.fc31.s390x\n - startup-notification-0:0.12-18.fc31.ppc64le\n - compat-wxGTK3-gtk2-media-0:3.0.4-10.fc31.x86_64\n - glew-devel-0:2.1.0-5.fc31.armv7hl\n - libmspack-0:0.10.1-0.2.alpha.fc31.aarch64\n - wxGTK3-0:3.0.4-10.fc31.x86_64\n - compat-wxGTK3-gtk2-gl-0:3.0.4-10.fc31.x86_64\n - python2-gobject-devel-0:3.34.0-3.fc31.s390x\n - liboauth-devel-0:1.0.3-13.fc31.s390x\n - openjpeg2-tools-0:2.3.1-3.fc31.armv7hl\n - liboauth-devel-0:1.0.3-13.fc31.i686\n - libpaper-0:1.1.24-25.fc31.armv7hl\n - libidn-0:1.35-6.fc31.s390x\n - openblas-0:0.3.7-1.fc31.armv7hl\n - libmspack-0:0.10.1-0.2.alpha.fc31.s390x\n - libsigc++20-devel-0:2.10.2-2.fc31.aarch64\n - libsigc++20-devel-0:2.10.2-2.fc31.s390x\n - gd-0:2.2.5-9.fc31.ppc64le\n - openblas-Rblas-0:0.3.7-1.fc31.x86_64\n - boost-locale-0:1.69.0-9.fc31.armv7hl\n - libfontenc-0:1.1.3-11.fc31.i686\n - python2-cairo-0:1.18.1-2.fc31.aarch64\n - atkmm-devel-0:2.24.3-3.fc31.armv7hl\n - ghostscript-core-0:9.27-1.fc31.s390x\n - poppler-cpp-0:0.73.0-14.fc31.ppc64le\n - python2-cairo-devel-0:1.18.1-2.fc31.ppc64le\n - gspell-devel-0:1.8.2-1.fc31.armv7hl\n - libwmf-lite-0:0.2.12-2.fc31.i686\n - libpeas-gtk-0:1.24.0-1.fc31.s390x\n - jbig2dec-0:0.16-1.fc31.ppc64le\n - boost-jam-0:1.69.0-9.fc31.aarch64\n - boost-jam-0:1.69.0-9.fc31.ppc64le\n - gd-0:2.2.5-9.fc31.i686\n - SDL-devel-0:1.2.15-42.fc31.i686\n - poppler-utils-0:0.73.0-14.fc31.aarch64\n - boost-doctools-0:1.69.0-9.fc31.armv7hl\n - evolution-data-server-tests-0:3.34.1-1.fc31.armv7hl\n - boost-filesystem-0:1.69.0-9.fc31.ppc64le\n - boost-python2-devel-0:1.69.0-9.fc31.s390x\n - libwmf-lite-0:0.2.12-2.fc31.x86_64\n - poppler-qt5-0:0.73.0-14.fc31.s390x\n - boost-python3-devel-0:1.69.0-9.fc31.s390x\n - libidn-devel-0:1.35-6.fc31.aarch64\n - exiv2-devel-0:0.27.2-1.fc31.ppc64le\n - geocode-glib-devel-0:3.26.1-3.fc31.ppc64le\n - boost-test-0:1.69.0-9.fc31.ppc64le\n - boost-doc-0:1.69.0-9.fc31.i686\n - boost-examples-0:1.69.0-9.fc31.armv7hl\n - boost-random-0:1.69.0-9.fc31.x86_64\n - boost-graph-0:1.69.0-9.fc31.aarch64\n - gtksourceview4-devel-0:4.4.0-1.fc31.armv7hl\n - boost-container-0:1.69.0-9.fc31.ppc64le\n - python2-cairo-0:1.18.1-2.fc31.armv7hl\n - boost-log-0:1.69.0-9.fc31.ppc64le\n - boost-chrono-0:1.69.0-9.fc31.armv7hl\n - libwmf-devel-0:0.2.12-2.fc31.s390x\n - boost-python3-0:1.69.0-9.fc31.x86_64\n - OpenEXR-devel-0:2.3.0-4.fc31.s390x\n - boost-serialization-0:1.69.0-9.fc31.aarch64\n - libwmf-0:0.2.12-2.fc31.ppc64le\n - boost-doc-0:1.69.0-9.fc31.aarch64\n - gnome-desktop3-devel-0:3.34.1-1.fc31.armv7hl\n - boost-atomic-0:1.69.0-9.fc31.armv7hl\n - openblas-serial64-0:0.3.7-1.fc31.x86_64\n - boost-type_erasure-0:1.69.0-9.fc31.ppc64le\n - boost-thread-0:1.69.0-9.fc31.aarch64\n - wxBase3-devel-0:3.0.4-10.fc31.x86_64\n - evolution-data-server-perl-0:3.34.1-1.fc31.armv7hl\n - boost-wave-0:1.69.0-9.fc31.aarch64\n - gnome-desktop3-devel-0:3.34.1-1.fc31.i686\n - poppler-glib-0:0.73.0-14.fc31.ppc64le\n - python3-dbus-0:1.2.8-6.fc31.s390x\n - boost-regex-0:1.69.0-9.fc31.i686\n - xorg-x11-font-utils-1:7.5-42.fc31.ppc64le\n - python3-cairo-0:1.18.1-2.fc31.armv7hl\n - compat-wxGTK3-gtk2-media-0:3.0.4-10.fc31.aarch64\n - geocode-glib-0:3.26.1-3.fc31.armv7hl\n - openjpeg2-0:2.3.1-3.fc31.i686\n - gnome-desktop3-tests-0:3.34.1-1.fc31.aarch64\n - libical-glib-0:3.0.6-2.fc31.i686\n - python3-cairo-0:1.18.1-2.fc31.i686\n - boost-timer-0:1.69.0-9.fc31.x86_64\n - gspell-0:1.8.2-1.fc31.ppc64le\n - ghostscript-core-0:9.27-1.fc31.x86_64\n - boost-python2-devel-0:1.69.0-9.fc31.armv7hl\n - liboauth-0:1.0.3-13.fc31.i686\n - geocode-glib-0:3.26.1-3.fc31.ppc64le\n - xorg-x11-font-utils-1:7.5-42.fc31.i686\n - startup-notification-0:0.12-18.fc31.s390x\n - boost-devel-0:1.69.0-9.fc31.x86_64\n - boost-stacktrace-0:1.69.0-9.fc31.armv7hl\n - poppler-data-0:0.4.9-4.fc31.noarch\n - boost-filesystem-0:1.69.0-9.fc31.s390x\n - boost-wave-0:1.69.0-9.fc31.ppc64le\n - compat-wxGTK3-gtk2-gl-0:3.0.4-10.fc31.i686\n - python2-gobject-devel-0:3.34.0-3.fc31.x86_64\n - OpenEXR-libs-0:2.3.0-4.fc31.armv7hl\n - libical-0:3.0.6-2.fc31.s390x\n - poppler-qt5-devel-0:0.73.0-14.fc31.ppc64le\n - python3-gobject-0:3.34.0-3.fc31.armv7hl\n - SDL_image-0:1.2.12-22.fc31.x86_64\n - wxBase3-0:3.0.4-10.fc31.s390x\n - gnome-online-accounts-0:3.34.1-1.fc31.aarch64\n - boost-graph-0:1.69.0-9.fc31.i686\n - openjpeg2-devel-0:2.3.1-3.fc31.x86_64\n - SDL-devel-0:1.2.15-42.fc31.s390x\n - libpeas-loader-python3-0:1.24.0-1.fc31.x86_64\n - ghostscript-x11-0:9.27-1.fc31.ppc64le\n - boost-iostreams-0:1.69.0-9.fc31.ppc64le\n - python2-gobject-base-0:3.34.0-3.fc31.i686\n - gd-devel-0:2.2.5-9.fc31.i686\n - boost-contract-0:1.69.0-9.fc31.i686\n - boost-static-0:1.69.0-9.fc31.ppc64le\n - boost-0:1.69.0-9.fc31.ppc64le\n - compat-wxGTK3-gtk2-gl-0:3.0.4-10.fc31.aarch64\n - boost-doc-0:1.69.0-9.fc31.s390x\n - poppler-qt5-devel-0:0.73.0-14.fc31.s390x\n - boost-regex-0:1.69.0-9.fc31.ppc64le\n - wxBase3-devel-0:3.0.4-10.fc31.i686\n - atkmm-0:2.24.3-3.fc31.ppc64le\n - boost-random-0:1.69.0-9.fc31.s390x\n - libwmf-devel-0:0.2.12-2.fc31.armv7hl\n - boost-timer-0:1.69.0-9.fc31.i686\n - python3-dbus-0:1.2.8-6.fc31.i686\n - ghostscript-tools-dvipdf-0:9.27-1.fc31.x86_64\n - gnome-online-accounts-devel-0:3.34.1-1.fc31.armv7hl\n - libidn-0:1.35-6.fc31.aarch64\n - compat-wxGTK3-gtk2-0:3.0.4-10.fc31.armv7hl\n - gtksourceview3-tests-0:3.24.11-2.fc31.armv7hl\n - wxGTK3-gl-0:3.0.4-10.fc31.armv7hl\n - poppler-qt-devel-0:0.73.0-14.fc31.ppc64le\n - urw-base35-gothic-fonts-0:20170801-13.fc31.noarch\n - poppler-0:0.73.0-14.fc31.aarch64\n - libpaper-devel-0:1.1.24-25.fc31.aarch64\n - startup-notification-devel-0:0.12-18.fc31.i686\n - gtksourceview3-0:3.24.11-2.fc31.x86_64\n - flatpak-runtime-config-0:29-6.fc31.aarch64\n - dbus-python-devel-0:1.2.8-6.fc31.aarch64\n - dbus-python-devel-0:1.2.8-6.fc31.ppc64le\n - libimagequant-0:2.12.5-1.fc31.x86_64\n - gtksourceview3-tests-0:3.24.11-2.fc31.s390x\n - openblas-threads64_-0:0.3.7-1.fc31.aarch64\n - wxGTK3-webview-0:3.0.4-10.fc31.ppc64le\n - boost-log-0:1.69.0-9.fc31.x86_64\n - libimagequant-devel-0:2.12.5-1.fc31.x86_64\n - jbig2dec-devel-0:0.16-1.fc31.s390x\n - openblas-devel-0:0.3.7-1.fc31.x86_64\n - python2-gobject-base-0:3.34.0-3.fc31.aarch64\n - libical-devel-0:3.0.6-2.fc31.armv7hl\n - dbus-python-devel-0:1.2.8-6.fc31.i686\n - poppler-glib-0:0.73.0-14.fc31.armv7hl\n - wxBase3-0:3.0.4-10.fc31.ppc64le\n - exiv2-0:0.27.2-1.fc31.s390x\n - urw-base35-fonts-common-0:20170801-13.fc31.noarch\n - SDL_image-0:1.2.12-22.fc31.s390x\n - libgweather-0:3.34.0-1.fc31.aarch64\n - python2-gobject-devel-0:3.34.0-3.fc31.ppc64le\n - boost-program-options-0:1.69.0-9.fc31.ppc64le\n - libfontenc-0:1.1.3-11.fc31.s390x\n - SDL-0:1.2.15-42.fc31.s390x\n - openblas-threads-0:0.3.7-1.fc31.armv7hl\n - libpeas-gtk-0:1.24.0-1.fc31.x86_64\n - geocode-glib-devel-0:3.26.1-3.fc31.armv7hl\n - boost-chrono-0:1.69.0-9.fc31.ppc64le\n - OpenEXR-0:2.3.0-4.fc31.i686\n - boost-test-0:1.69.0-9.fc31.armv7hl\n - OpenEXR-libs-0:2.3.0-4.fc31.ppc64le\n - poppler-cpp-devel-0:0.73.0-14.fc31.aarch64\n - libGLEW-0:2.1.0-5.fc31.i686\n - openblas-static-0:0.3.7-1.fc31.i686\n - polkit-libs-0:0.116-4.fc31.armv7hl\n - boost-python2-devel-0:1.69.0-9.fc31.x86_64\n - libdazzle-0:3.34.1-1.fc31.aarch64\n - glibmm24-devel-0:2.62.0-1.fc31.aarch64\n - gd-progs-0:2.2.5-9.fc31.i686\n - boost-system-0:1.69.0-9.fc31.armv7hl\n - openblas-static-0:0.3.7-1.fc31.ppc64le\n - OpenEXR-devel-0:2.3.0-4.fc31.armv7hl\n - evolution-data-server-0:3.34.1-1.fc31.ppc64le\n - boost-stacktrace-0:1.69.0-9.fc31.ppc64le\n - libijs-0:0.35-10.fc31.armv7hl\n - evolution-data-server-devel-0:3.34.1-1.fc31.s390x\n - boost-build-0:1.69.0-9.fc31.noarch\n - python3-gobject-base-0:3.34.0-3.fc31.ppc64le\n - compat-wxGTK3-gtk2-0:3.0.4-10.fc31.aarch64\n - boost-locale-0:1.69.0-9.fc31.aarch64\n - python2-gobject-0:3.34.0-3.fc31.aarch64\n - openblas-threads-0:0.3.7-1.fc31.i686\n - ilmbase-devel-0:2.3.0-3.fc31.s390x\n - glew-0:2.1.0-5.fc31.s390x\n - python3-cairo-0:1.18.1-2.fc31.x86_64\n - gspell-0:1.8.2-1.fc31.x86_64\n - boost-numpy3-0:1.69.0-9.fc31.aarch64\n - gspell-0:1.8.2-1.fc31.s390x\n - gd-progs-0:2.2.5-9.fc31.x86_64\n - gspell-0:1.8.2-1.fc31.aarch64\n - libwmf-lite-0:0.2.12-2.fc31.armv7hl\n - ghostscript-tools-printing-0:9.27-1.fc31.s390x\n - libmspack-devel-0:0.10.1-0.2.alpha.fc31.i686\n - polkit-0:0.116-4.fc31.aarch64\n - libical-glib-0:3.0.6-2.fc31.armv7hl\n - exiv2-0:0.27.2-1.fc31.i686\n - poppler-qt-devel-0:0.73.0-14.fc31.aarch64\n - gtksourceview3-devel-0:3.24.11-2.fc31.i686\n - libidn-0:1.35-6.fc31.x86_64\n - jbig2dec-devel-0:0.16-1.fc31.x86_64\n - polkit-libs-0:0.116-4.fc31.ppc64le\n - libdazzle-0:3.34.1-1.fc31.ppc64le\n - OpenEXR-devel-0:2.3.0-4.fc31.x86_64\n - libdazzle-devel-0:3.34.1-1.fc31.armv7hl\n - liboauth-0:1.0.3-13.fc31.aarch64\n - boost-atomic-0:1.69.0-9.fc31.x86_64\n - gtksourceview4-0:4.4.0-1.fc31.s390x\n - python3-gobject-devel-0:3.34.0-3.fc31.armv7hl\n - ilmbase-devel-0:2.3.0-3.fc31.aarch64\n - libsigc++20-0:2.10.2-2.fc31.x86_64\n - urw-base35-d050000l-fonts-0:20170801-13.fc31.noarch\n - libpeas-devel-0:1.24.0-1.fc31.i686\n - libmspack-0:0.10.1-0.2.alpha.fc31.ppc64le\n - poppler-qt-0:0.73.0-14.fc31.ppc64le\n - evolution-data-server-perl-0:3.34.1-1.fc31.ppc64le\n - SDL-static-0:1.2.15-42.fc31.ppc64le\n - gd-0:2.2.5-9.fc31.armv7hl\n - boost-stacktrace-0:1.69.0-9.fc31.i686\n - libimagequant-0:2.12.5-1.fc31.s390x\n - openblas-Rblas-0:0.3.7-1.fc31.aarch64\n - gtksourceview4-tests-0:4.4.0-1.fc31.x86_64\n - ghostscript-core-0:9.27-1.fc31.ppc64le\n - libpeas-0:1.24.0-1.fc31.aarch64\n - boost-test-0:1.69.0-9.fc31.i686\n - libpaper-0:1.1.24-25.fc31.ppc64le\n - libgdata-devel-0:0.17.11-1.fc31.s390x\n - libijs-0:0.35-10.fc31.i686\n - libijs-devel-0:0.35-10.fc31.s390x\n - python2-gobject-0:3.34.0-3.fc31.i686\n - exiv2-0:0.27.2-1.fc31.armv7hl\n - libijs-devel-0:0.35-10.fc31.aarch64\n - openjpeg2-tools-0:2.3.1-3.fc31.i686\n - boost-date-time-0:1.69.0-9.fc31.ppc64le\n - startup-notification-devel-0:0.12-18.fc31.ppc64le\n - evolution-data-server-0:3.34.1-1.fc31.x86_64\n - libimagequant-0:2.12.5-1.fc31.aarch64\n - boost-devel-0:1.69.0-9.fc31.s390x\n - poppler-cpp-0:0.73.0-14.fc31.i686\n - poppler-cpp-0:0.73.0-14.fc31.s390x\n - openblas-Rblas-0:0.3.7-1.fc31.i686\n - boost-atomic-0:1.69.0-9.fc31.s390x\n - poppler-glib-0:0.73.0-14.fc31.aarch64\n - polkit-0:0.116-4.fc31.x86_64\n - boost-stacktrace-0:1.69.0-9.fc31.s390x\n - ilmbase-devel-0:2.3.0-3.fc31.i686\n - boost-python2-devel-0:1.69.0-9.fc31.i686\n - libical-glib-devel-0:3.0.6-2.fc31.x86_64\n - libgdata-0:0.17.11-1.fc31.ppc64le\n - gtkmm30-0:3.24.2-1.fc31.x86_64\n - compat-wxGTK3-gtk2-0:3.0.4-10.fc31.s390x\n - boost-fiber-0:1.69.0-9.fc31.aarch64\n - libical-0:3.0.6-2.fc31.i686\n - openjpeg2-0:2.3.1-3.fc31.aarch64\n - liboauth-0:1.0.3-13.fc31.ppc64le\n - libimagequant-0:2.12.5-1.fc31.i686\n - urw-base35-bookman-fonts-0:20170801-13.fc31.noarch\n - exiv2-libs-0:0.27.2-1.fc31.ppc64le\n - libGLEW-0:2.1.0-5.fc31.aarch64\n - urw-base35-fonts-devel-0:20170801-13.fc31.noarch\n - boost-test-0:1.69.0-9.fc31.aarch64\n - poppler-qt5-devel-0:0.73.0-14.fc31.x86_64\n - atkmm-devel-0:2.24.3-3.fc31.i686\n - poppler-cpp-devel-0:0.73.0-14.fc31.x86_64\n - urw-base35-c059-fonts-0:20170801-13.fc31.noarch\n - gtksourceview4-devel-0:4.4.0-1.fc31.s390x\n - libpeas-loader-python3-0:1.24.0-1.fc31.aarch64\n - libfontenc-devel-0:1.1.3-11.fc31.armv7hl\n - gtksourceview3-tests-0:3.24.11-2.fc31.i686\n - boost-regex-0:1.69.0-9.fc31.aarch64\n - libgdata-0:0.17.11-1.fc31.s390x\n - boost-timer-0:1.69.0-9.fc31.armv7hl\n - pangomm-0:2.40.2-3.fc31.armv7hl\n - polkit-devel-0:0.116-4.fc31.armv7hl\n - pangomm-0:2.40.2-3.fc31.i686\n - glew-devel-0:2.1.0-5.fc31.ppc64le\n - libsigc++20-devel-0:2.10.2-2.fc31.i686\n - boost-graph-0:1.69.0-9.fc31.s390x\n - gtkmm30-devel-0:3.24.2-1.fc31.ppc64le\n - wxGTK3-media-0:3.0.4-10.fc31.i686\n - openblas-0:0.3.7-1.fc31.aarch64\n - openblas-serial-0:0.3.7-1.fc31.s390x\n - OpenEXR-doc-0:2.3.0-4.fc31.x86_64\n - libical-glib-devel-0:3.0.6-2.fc31.armv7hl\n - python3-gobject-base-0:3.34.0-3.fc31.s390x\n - gspell-0:1.8.2-1.fc31.i686\n - gspell-0:1.8.2-1.fc31.armv7hl\n - libfontenc-devel-0:1.1.3-11.fc31.x86_64\n - urw-base35-standard-symbols-ps-fonts-0:20170801-13.fc31.noarch\n - libpeas-loader-python3-0:1.24.0-1.fc31.ppc64le\n - adobe-mappings-cmap-0:20171205-6.fc31.noarch\n - libgweather-devel-0:3.34.0-1.fc31.aarch64\n - boost-chrono-0:1.69.0-9.fc31.x86_64\n - boost-doc-0:1.69.0-9.fc31.x86_64\n - gnome-desktop3-0:3.34.1-1.fc31.aarch64\n - libwmf-lite-0:0.2.12-2.fc31.ppc64le\n - boost-jam-0:1.69.0-9.fc31.i686\n - wxGTK3-media-0:3.0.4-10.fc31.s390x\n - boost-context-0:1.69.0-9.fc31.ppc64le\n - SDL_image-devel-0:1.2.12-22.fc31.aarch64\n - poppler-data-devel-0:0.4.9-4.fc31.noarch\n - libpaper-devel-0:1.1.24-25.fc31.i686\n - startup-notification-devel-0:0.12-18.fc31.x86_64\n - boost-0:1.69.0-9.fc31.s390x\n - python3-gobject-devel-0:3.34.0-3.fc31.i686\n - boost-iostreams-0:1.69.0-9.fc31.i686\n - libical-glib-0:3.0.6-2.fc31.aarch64\n - cairomm-0:1.12.0-11.fc31.armv7hl\n - cairomm-devel-0:1.12.0-11.fc31.armv7hl\n - libidn-devel-0:1.35-6.fc31.s390x\n - wxGTK3-webview-0:3.0.4-10.fc31.i686\n - python3-dbus-0:1.2.8-6.fc31.aarch64\n - evolution-data-server-0:3.34.1-1.fc31.armv7hl\n - OpenEXR-doc-0:2.3.0-4.fc31.armv7hl\n - SDL-devel-0:1.2.15-42.fc31.aarch64\n - exiv2-0:0.27.2-1.fc31.ppc64le\n - ghostscript-core-0:9.27-1.fc31.aarch64\n - boost-numpy2-0:1.69.0-9.fc31.s390x\n - boost-python2-0:1.69.0-9.fc31.aarch64\n - gtkmm30-0:3.24.2-1.fc31.i686\n - boost-random-0:1.69.0-9.fc31.aarch64\n - libgs-devel-0:9.27-1.fc31.i686\n - boost-type_erasure-0:1.69.0-9.fc31.x86_64\n - openjpeg2-0:2.3.1-3.fc31.x86_64\n - libical-glib-doc-0:3.0.6-2.fc31.noarch\n - SDL-static-0:1.2.15-42.fc31.i686\n - cairomm-devel-0:1.12.0-11.fc31.x86_64\n - startup-notification-0:0.12-18.fc31.armv7hl\n - pangomm-0:2.40.2-3.fc31.x86_64\n - python2-gobject-0:3.34.0-3.fc31.s390x\n - wxGTK3-gl-0:3.0.4-10.fc31.i686\n - wxGTK3-devel-0:3.0.4-10.fc31.i686\n - python2-cairo-0:1.18.1-2.fc31.x86_64\n - ghostscript-tools-dvipdf-0:9.27-1.fc31.armv7hl\n - boost-python2-0:1.69.0-9.fc31.armv7hl\n - wxBase3-devel-0:3.0.4-10.fc31.s390x\n - boost-serialization-0:1.69.0-9.fc31.i686\n - python2-cairo-0:1.18.1-2.fc31.i686\n - boost-serialization-0:1.69.0-9.fc31.x86_64\n - boost-fiber-0:1.69.0-9.fc31.x86_64\n - gtksourceview3-0:3.24.11-2.fc31.aarch64\n - python2-dbus-0:1.2.8-6.fc31.x86_64\n - compat-wxGTK3-gtk2-devel-0:3.0.4-10.fc31.x86_64\n - polkit-0:0.116-4.fc31.ppc64le\n - boost-serialization-0:1.69.0-9.fc31.s390x\n - SDL-0:1.2.15-42.fc31.i686\n - gd-0:2.2.5-9.fc31.s390x\n - libgweather-0:3.34.0-1.fc31.i686\n - pangomm-devel-0:2.40.2-3.fc31.ppc64le\n - boost-chrono-0:1.69.0-9.fc31.i686\n - gnome-online-accounts-0:3.34.1-1.fc31.ppc64le\n - jbig2dec-devel-0:0.16-1.fc31.armv7hl\n - boost-graph-0:1.69.0-9.fc31.x86_64\n - python3-gobject-devel-0:3.34.0-3.fc31.x86_64\n - python3-cairo-devel-0:1.18.1-2.fc31.s390x\n - libGLEW-0:2.1.0-5.fc31.armv7hl\n - SDL-static-0:1.2.15-42.fc31.armv7hl\n - libwmf-0:0.2.12-2.fc31.aarch64\n - cairomm-devel-0:1.12.0-11.fc31.aarch64\n - ilmbase-0:2.3.0-3.fc31.ppc64le\n - gnome-online-accounts-0:3.34.1-1.fc31.s390x\n - python3-gobject-base-0:3.34.0-3.fc31.aarch64\n - boost-date-time-0:1.69.0-9.fc31.aarch64\n - poppler-0:0.73.0-14.fc31.x86_64\n - libfontenc-0:1.1.3-11.fc31.x86_64\n - poppler-0:0.73.0-14.fc31.i686\n - python3-cairo-devel-0:1.18.1-2.fc31.i686\n - boost-contract-0:1.69.0-9.fc31.armv7hl\n - polkit-libs-0:0.116-4.fc31.s390x\n - libpeas-gtk-0:1.24.0-1.fc31.i686\n - ghostscript-gtk-0:9.27-1.fc31.ppc64le\n - ghostscript-tools-printing-0:9.27-1.fc31.i686\n - boost-0:1.69.0-9.fc31.x86_64\n - boost-locale-0:1.69.0-9.fc31.s390x\n - glew-0:2.1.0-5.fc31.x86_64\n - poppler-qt5-0:0.73.0-14.fc31.armv7hl\n - poppler-glib-devel-0:0.73.0-14.fc31.aarch64\n - gtksourceview3-tests-0:3.24.11-2.fc31.ppc64le\n - boost-type_erasure-0:1.69.0-9.fc31.armv7hl\n - gnome-desktop3-devel-0:3.34.1-1.fc31.x86_64\n - boost-numpy2-0:1.69.0-9.fc31.i686\n - openblas-Rblas-0:0.3.7-1.fc31.ppc64le\n - gtksourceview4-devel-0:4.4.0-1.fc31.aarch64\n - gnome-desktop3-devel-0:3.34.1-1.fc31.ppc64le\n - boost-math-0:1.69.0-9.fc31.armv7hl\n - glew-devel-0:2.1.0-5.fc31.s390x\n - boost-contract-0:1.69.0-9.fc31.s390x\n - openblas-serial-0:0.3.7-1.fc31.ppc64le\n - boost-jam-0:1.69.0-9.fc31.s390x\n - gtksourceview4-devel-0:4.4.0-1.fc31.i686\n - openblas-Rblas-0:0.3.7-1.fc31.s390x\n - wxGTK3-media-0:3.0.4-10.fc31.armv7hl\n - libpeas-devel-0:1.24.0-1.fc31.s390x\n - libdazzle-0:3.34.1-1.fc31.s390x\n - poppler-0:0.73.0-14.fc31.armv7hl\n - jbig2dec-libs-0:0.16-1.fc31.ppc64le\n - openblas-serial-0:0.3.7-1.fc31.aarch64\n - libijs-0:0.35-10.fc31.aarch64\n - SDL-static-0:1.2.15-42.fc31.aarch64\n - flatpak-rpm-macros-0:29-10.fc31.s390x\n - libpaper-devel-0:1.1.24-25.fc31.armv7hl\n - poppler-0:0.73.0-14.fc31.s390x\n - libgs-devel-0:9.27-1.fc31.aarch64\n - jbig2dec-0:0.16-1.fc31.i686\n - libpeas-loader-python3-0:1.24.0-1.fc31.i686\n - cairomm-0:1.12.0-11.fc31.i686\n - ilmbase-0:2.3.0-3.fc31.i686\n - ghostscript-core-0:9.27-1.fc31.i686\n - dbus-python-devel-0:1.2.8-6.fc31.s390x\n - gnome-desktop3-tests-0:3.34.1-1.fc31.s390x\n - libwmf-0:0.2.12-2.fc31.i686\n - openjpeg2-tools-0:2.3.1-3.fc31.s390x\n - libwmf-lite-0:0.2.12-2.fc31.aarch64\n - poppler-glib-devel-0:0.73.0-14.fc31.i686\n - gsl-devel-0:2.5-2.fc31.x86_64\n - boost-python2-0:1.69.0-9.fc31.x86_64\n - gsl-devel-0:2.5-2.fc31.ppc64le\n - openjpeg2-devel-0:2.3.1-3.fc31.ppc64le\n - exiv2-devel-0:0.27.2-1.fc31.aarch64\n - adobe-mappings-cmap-devel-0:20171205-6.fc31.noarch\n - flatpak-runtime-config-0:29-6.fc31.armv7hl\n - libgs-0:9.27-1.fc31.aarch64\n - gnome-desktop3-0:3.34.1-1.fc31.ppc64le\n - openblas-0:0.3.7-1.fc31.s390x\n - SDL_image-devel-0:1.2.12-22.fc31.s390x\n - OpenEXR-0:2.3.0-4.fc31.x86_64\n - python3-cairo-0:1.18.1-2.fc31.ppc64le\n - boost-numpy2-0:1.69.0-9.fc31.armv7hl\n - python2-cairo-devel-0:1.18.1-2.fc31.x86_64\n - boost-locale-0:1.69.0-9.fc31.i686\n - boost-wave-0:1.69.0-9.fc31.i686\n - gsl-0:2.5-2.fc31.x86_64\n - poppler-cpp-0:0.73.0-14.fc31.x86_64\n - polkit-devel-0:0.116-4.fc31.x86_64\n - glibmm24-devel-0:2.62.0-1.fc31.s390x\n - libfontenc-0:1.1.3-11.fc31.ppc64le\n - poppler-qt5-devel-0:0.73.0-14.fc31.armv7hl\n - evolution-data-server-tests-0:3.34.1-1.fc31.i686\n - libpeas-0:1.24.0-1.fc31.x86_64\n - boost-wave-0:1.69.0-9.fc31.x86_64\n - libfontenc-devel-0:1.1.3-11.fc31.s390x\n - boost-timer-0:1.69.0-9.fc31.s390x\n - libimagequant-devel-0:2.12.5-1.fc31.ppc64le\n - geocode-glib-devel-0:3.26.1-3.fc31.i686\n - boost-log-0:1.69.0-9.fc31.aarch64\n - boost-filesystem-0:1.69.0-9.fc31.armv7hl\n - startup-notification-devel-0:0.12-18.fc31.s390x\n - flatpak-runtime-config-0:29-6.fc31.s390x\n - cairomm-devel-0:1.12.0-11.fc31.s390x\n - gtksourceview4-devel-0:4.4.0-1.fc31.ppc64le\n - evolution-data-server-perl-0:3.34.1-1.fc31.i686\n - ilmbase-0:2.3.0-3.fc31.x86_64\n - libmspack-devel-0:0.10.1-0.2.alpha.fc31.s390x\n - libgweather-devel-0:3.34.0-1.fc31.ppc64le\n - urw-base35-z003-fonts-0:20170801-13.fc31.noarch\n - boost-context-0:1.69.0-9.fc31.i686\n - boost-serialization-0:1.69.0-9.fc31.armv7hl\n - google-droid-sans-mono-fonts-0:20120715-16.fc31.noarch\n - SDL-devel-0:1.2.15-42.fc31.armv7hl\n - gnome-online-accounts-0:3.34.1-1.fc31.armv7hl\n - libimagequant-devel-0:2.12.5-1.fc31.aarch64\n - openblas-serial-0:0.3.7-1.fc31.i686\n - gspell-doc-0:1.8.2-1.fc31.noarch\n - OpenEXR-0:2.3.0-4.fc31.s390x\n - gtkmm30-devel-0:3.24.2-1.fc31.s390x\n - jbig2dec-0:0.16-1.fc31.aarch64\n - ilmbase-0:2.3.0-3.fc31.aarch64\n - libpeas-loader-python3-0:1.24.0-1.fc31.s390x\n - python2-cairo-0:1.18.1-2.fc31.s390x\n - libdazzle-devel-0:3.34.1-1.fc31.x86_64\n - poppler-glib-0:0.73.0-14.fc31.s390x\n - wxGTK3-webview-0:3.0.4-10.fc31.s390x\n - poppler-devel-0:0.73.0-14.fc31.x86_64\n - boost-random-0:1.69.0-9.fc31.armv7hl\n - libidn-0:1.35-6.fc31.i686\n - glibmm24-0:2.62.0-1.fc31.ppc64le\n - OpenEXR-doc-0:2.3.0-4.fc31.s390x\n - poppler-cpp-devel-0:0.73.0-14.fc31.armv7hl\n - libidn-devel-0:1.35-6.fc31.x86_64\n - exiv2-libs-0:0.27.2-1.fc31.i686\n - glibmm24-0:2.62.0-1.fc31.aarch64\n - openblas-static-0:0.3.7-1.fc31.aarch64\n - boost-log-0:1.69.0-9.fc31.i686\n - ghostscript-x11-0:9.27-1.fc31.aarch64\n - poppler-glib-0:0.73.0-14.fc31.i686\n - openblas-devel-0:0.3.7-1.fc31.aarch64\n - liboauth-devel-0:1.0.3-13.fc31.x86_64\n - boost-coroutine-0:1.69.0-9.fc31.armv7hl\n - evolution-data-server-tests-0:3.34.1-1.fc31.s390x\n - liboauth-0:1.0.3-13.fc31.armv7hl\n - boost-static-0:1.69.0-9.fc31.armv7hl\n - python2-dbus-0:1.2.8-6.fc31.s390x\n - libpeas-0:1.24.0-1.fc31.i686\n - geocode-glib-0:3.26.1-3.fc31.i686\n - jbig2dec-libs-0:0.16-1.fc31.aarch64\n - ghostscript-gtk-0:9.27-1.fc31.x86_64\n - glew-0:2.1.0-5.fc31.armv7hl\n - liboauth-devel-0:1.0.3-13.fc31.aarch64\n - poppler-devel-0:0.73.0-14.fc31.armv7hl\n - libgdata-0:0.17.11-1.fc31.armv7hl\n - urw-base35-fonts-legacy-0:20170801-13.fc31.noarch\n - ghostscript-x11-0:9.27-1.fc31.i686\n - boost-stacktrace-0:1.69.0-9.fc31.aarch64\n - libwmf-0:0.2.12-2.fc31.s390x\n - openjpeg2-tools-0:2.3.1-3.fc31.ppc64le\n - poppler-utils-0:0.73.0-14.fc31.s390x\n - jbig2dec-libs-0:0.16-1.fc31.s390x\n - openblas-openmp64-0:0.3.7-1.fc31.x86_64\n - libmspack-0:0.10.1-0.2.alpha.fc31.armv7hl\n - python3-gobject-0:3.34.0-3.fc31.i686\n - boost-program-options-0:1.69.0-9.fc31.aarch64\n - gspell-devel-0:1.8.2-1.fc31.s390x\n - libGLEW-0:2.1.0-5.fc31.ppc64le\n - exiv2-libs-0:0.27.2-1.fc31.x86_64\n - openjpeg2-0:2.3.1-3.fc31.armv7hl\n - python2-gobject-0:3.34.0-3.fc31.ppc64le\n - libpeas-0:1.24.0-1.fc31.armv7hl\n - polkit-devel-0:0.116-4.fc31.s390x\n - libgweather-devel-0:3.34.0-1.fc31.s390x\n - boost-program-options-0:1.69.0-9.fc31.s390x\n - gnome-desktop3-devel-0:3.34.1-1.fc31.aarch64\n - boost-numpy3-0:1.69.0-9.fc31.ppc64le\n - ghostscript-x11-0:9.27-1.fc31.armv7hl\n - libfontenc-devel-0:1.1.3-11.fc31.aarch64\n - openblas-devel-0:0.3.7-1.fc31.armv7hl\n - gnome-desktop3-0:3.34.1-1.fc31.armv7hl\n - libgdata-0:0.17.11-1.fc31.aarch64\n - compat-wxGTK3-gtk2-devel-0:3.0.4-10.fc31.armv7hl\n - libpeas-devel-0:1.24.0-1.fc31.armv7hl\n - poppler-qt5-0:0.73.0-14.fc31.ppc64le\n - gnome-desktop3-tests-0:3.34.1-1.fc31.armv7hl\n - boost-regex-0:1.69.0-9.fc31.armv7hl\n - libgs-devel-0:9.27-1.fc31.ppc64le\n - gnome-desktop3-0:3.34.1-1.fc31.x86_64\n - compat-wxGTK3-gtk2-media-0:3.0.4-10.fc31.i686\n - evolution-data-server-devel-0:3.34.1-1.fc31.armv7hl\n - python3-gobject-0:3.34.0-3.fc31.ppc64le\n - boost-wave-0:1.69.0-9.fc31.s390x\n - wxGTK3-0:3.0.4-10.fc31.ppc64le\n - gtksourceview3-0:3.24.11-2.fc31.armv7hl\n - openblas-openmp64-0:0.3.7-1.fc31.ppc64le\n - ilmbase-devel-0:2.3.0-3.fc31.ppc64le\n - openblas-0:0.3.7-1.fc31.ppc64le\n - boost-chrono-0:1.69.0-9.fc31.s390x\n - boost-system-0:1.69.0-9.fc31.i686\n - poppler-qt-0:0.73.0-14.fc31.aarch64\n - polkit-devel-0:0.116-4.fc31.ppc64le\n - gtksourceview3-0:3.24.11-2.fc31.ppc64le\n - gsl-0:2.5-2.fc31.armv7hl\n - glibmm24-0:2.62.0-1.fc31.i686\n - boost-jam-0:1.69.0-9.fc31.armv7hl\n - python3-gobject-0:3.34.0-3.fc31.aarch64\n - ilmbase-devel-0:2.3.0-3.fc31.x86_64\n - ghostscript-0:9.27-1.fc31.x86_64\n - gtksourceview3-devel-0:3.24.11-2.fc31.s390x\n - libidn-javadoc-0:1.35-6.fc31.noarch\n - boost-system-0:1.69.0-9.fc31.x86_64\n - openjpeg2-devel-0:2.3.1-3.fc31.i686\n - libwmf-lite-0:0.2.12-2.fc31.s390x\n - libidn-java-0:1.35-6.fc31.noarch\n - ghostscript-0:9.27-1.fc31.ppc64le\n - libical-0:3.0.6-2.fc31.armv7hl\n - geocode-glib-devel-0:3.26.1-3.fc31.x86_64\n - boost-program-options-0:1.69.0-9.fc31.armv7hl\n - cairomm-0:1.12.0-11.fc31.s390x\n - boost-container-0:1.69.0-9.fc31.s390x\n - boost-devel-0:1.69.0-9.fc31.ppc64le\n - boost-test-0:1.69.0-9.fc31.x86_64\n - openblas-openmp64-0:0.3.7-1.fc31.s390x\n - jbig2dec-0:0.16-1.fc31.s390x\n - libmspack-0:0.10.1-0.2.alpha.fc31.i686\n - boost-python2-devel-0:1.69.0-9.fc31.aarch64\n - OpenEXR-devel-0:2.3.0-4.fc31.ppc64le\n - poppler-glib-devel-0:0.73.0-14.fc31.x86_64\n - wxGTK3-gl-0:3.0.4-10.fc31.ppc64le\n - python3-cairo-devel-0:1.18.1-2.fc31.x86_64\n - gtksourceview3-0:3.24.11-2.fc31.s390x\n - OpenEXR-0:2.3.0-4.fc31.aarch64\n - gnome-online-accounts-devel-0:3.34.1-1.fc31.x86_64\n - boost-iostreams-0:1.69.0-9.fc31.s390x\n - openblas-threads-0:0.3.7-1.fc31.aarch64\n - libical-glib-devel-0:3.0.6-2.fc31.i686\n - python3-dbus-0:1.2.8-6.fc31.armv7hl\n - boost-doctools-0:1.69.0-9.fc31.ppc64le\n - OpenEXR-libs-0:2.3.0-4.fc31.i686\n - openblas-devel-0:0.3.7-1.fc31.s390x\n - evolution-data-server-langpacks-0:3.34.1-1.fc31.noarch\n - glew-0:2.1.0-5.fc31.ppc64le\n - libsigc++20-devel-0:2.10.2-2.fc31.armv7hl\n - boost-coroutine-0:1.69.0-9.fc31.aarch64\n - boost-locale-0:1.69.0-9.fc31.ppc64le\n - openblas-serial64_-0:0.3.7-1.fc31.x86_64\n - poppler-utils-0:0.73.0-14.fc31.i686\n - dbus-python-devel-0:1.2.8-6.fc31.armv7hl\n - wxGTK3-i18n-0:3.0.4-10.fc31.noarch\n - python3-gobject-base-0:3.34.0-3.fc31.x86_64\n - openblas-openmp-0:0.3.7-1.fc31.s390x\n - ghostscript-tools-dvipdf-0:9.27-1.fc31.aarch64\n - libgweather-0:3.34.0-1.fc31.ppc64le\n - libidn-0:1.35-6.fc31.ppc64le\n - python2-gobject-devel-0:3.34.0-3.fc31.i686\n - pangomm-devel-0:2.40.2-3.fc31.x86_64\n - polkit-0:0.116-4.fc31.armv7hl\n - boost-date-time-0:1.69.0-9.fc31.s390x\n - gnome-online-accounts-devel-0:3.34.1-1.fc31.aarch64\n - gnome-desktop3-tests-0:3.34.1-1.fc31.ppc64le\n - libpeas-0:1.24.0-1.fc31.ppc64le\n - openblas-openmp-0:0.3.7-1.fc31.aarch64\n - gd-progs-0:2.2.5-9.fc31.ppc64le\n - evolution-data-server-devel-0:3.34.1-1.fc31.ppc64le\n - boost-log-0:1.69.0-9.fc31.armv7hl\n - atkmm-0:2.24.3-3.fc31.s390x\n - openblas-serial-0:0.3.7-1.fc31.x86_64\n - flatpak-rpm-macros-0:29-10.fc31.aarch64\n - compat-wxGTK3-gtk2-0:3.0.4-10.fc31.x86_64\n - libgdata-devel-0:0.17.11-1.fc31.x86_64\n - ilmbase-0:2.3.0-3.fc31.s390x\n - libical-0:3.0.6-2.fc31.aarch64\n - libgweather-0:3.34.0-1.fc31.s390x\n - gtksourceview4-tests-0:4.4.0-1.fc31.ppc64le\n - boost-test-0:1.69.0-9.fc31.s390x\n - openblas-serial64_-0:0.3.7-1.fc31.ppc64le\n - poppler-devel-0:0.73.0-14.fc31.s390x\n - glibmm24-0:2.62.0-1.fc31.s390x\n - boost-timer-0:1.69.0-9.fc31.aarch64\n - pangomm-0:2.40.2-3.fc31.aarch64\n - boost-iostreams-0:1.69.0-9.fc31.x86_64\n - gsl-0:2.5-2.fc31.i686\n - urw-base35-nimbus-roman-fonts-0:20170801-13.fc31.noarch\n - compat-wxGTK3-gtk2-devel-0:3.0.4-10.fc31.i686\n - SDL_image-devel-0:1.2.12-22.fc31.x86_64\n - boost-contract-0:1.69.0-9.fc31.aarch64\n - python3-gobject-0:3.34.0-3.fc31.x86_64\n - openjpeg2-devel-docs-0:2.3.1-3.fc31.noarch\n - urw-base35-fonts-0:20170801-13.fc31.noarch\n - poppler-cpp-devel-0:0.73.0-14.fc31.i686\n - geocode-glib-devel-0:3.26.1-3.fc31.s390x\n - gtksourceview3-0:3.24.11-2.fc31.i686\n - wxBase3-0:3.0.4-10.fc31.armv7hl\n - boost-atomic-0:1.69.0-9.fc31.i686\n - boost-thread-0:1.69.0-9.fc31.i686\n - compat-wxGTK3-gtk2-media-0:3.0.4-10.fc31.ppc64le\n - openblas-threads64_-0:0.3.7-1.fc31.ppc64le\n - ghostscript-tools-printing-0:9.27-1.fc31.armv7hl\n - gd-progs-0:2.2.5-9.fc31.armv7hl\n - google-droid-serif-fonts-0:20120715-16.fc31.noarch\n - ghostscript-doc-0:9.27-1.fc31.noarch\n - wxGTK3-webview-0:3.0.4-10.fc31.x86_64\n - wxGTK3-media-0:3.0.4-10.fc31.x86_64\n - boost-0:1.69.0-9.fc31.armv7hl\n - openjpeg2-devel-0:2.3.1-3.fc31.aarch64\n - openblas-serial-0:0.3.7-1.fc31.armv7hl\n - wxGTK3-docs-0:3.0.4-10.fc31.noarch\n - poppler-qt5-devel-0:0.73.0-14.fc31.aarch64\n - poppler-cpp-devel-0:0.73.0-14.fc31.s390x\n - OpenEXR-0:2.3.0-4.fc31.ppc64le\n - openblas-threads64-0:0.3.7-1.fc31.x86_64\n - SDL-devel-0:1.2.15-42.fc31.ppc64le\n - poppler-qt-devel-0:0.73.0-14.fc31.x86_64\n - poppler-utils-0:0.73.0-14.fc31.x86_64\n - OpenEXR-devel-0:2.3.0-4.fc31.aarch64\n - ghostscript-gtk-0:9.27-1.fc31.i686\n - wxBase3-devel-0:3.0.4-10.fc31.armv7hl\n - libgs-0:9.27-1.fc31.x86_64\n - boost-thread-0:1.69.0-9.fc31.armv7hl\n - libical-glib-devel-0:3.0.6-2.fc31.ppc64le\n - libsigc++20-doc-0:2.10.2-2.fc31.noarch\n - gtkmm30-doc-0:3.24.2-1.fc31.noarch\n - libpaper-devel-0:1.1.24-25.fc31.ppc64le\n - google-droid-kufi-fonts-0:20120715-16.fc31.noarch\n - cairomm-0:1.12.0-11.fc31.aarch64\n - libwmf-devel-0:0.2.12-2.fc31.x86_64\n - SDL-0:1.2.15-42.fc31.aarch64\n - startup-notification-0:0.12-18.fc31.i686\n - wxGTK3-webview-0:3.0.4-10.fc31.aarch64\n - boost-examples-0:1.69.0-9.fc31.ppc64le\n - SDL_image-0:1.2.12-22.fc31.armv7hl\n - python2-gobject-base-0:3.34.0-3.fc31.x86_64\n dependencies:\n - buildrequires:\n flatpak-common: [f31]\n flatpak-runtime: [f31]\n platform: [f31]\n requires:\n flatpak-common: [f31]\n flatpak-runtime: [f31]\n platform: [f31]\n profiles:\n default:\n rpms:\n - 0ad\n components:\n rpms:\n 0ad:\n rationale: Application package\n repository: git+https://src.fedoraproject.org/rpms/0ad\n cache: https://src.fedoraproject.org/repo/pkgs/0ad\n ref: f31\n buildorder: 10\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n 0ad-data:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/0ad-data\n cache: https://src.fedoraproject.org/repo/pkgs/0ad-data\n ref: f31\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n enet:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/enet\n cache: https://src.fedoraproject.org/repo/pkgs/enet\n ref: f31\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n gloox:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/gloox\n cache: https://src.fedoraproject.org/repo/pkgs/gloox\n ref: f31\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n libsodium:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/libsodium\n cache: https://src.fedoraproject.org/repo/pkgs/libsodium\n ref: f31\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n miniupnpc:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/miniupnpc\n cache: https://src.fedoraproject.org/repo/pkgs/miniupnpc\n ref: f31\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n nvidia-texture-tools:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/nvidia-texture-tools\n cache: https://src.fedoraproject.org/repo/pkgs/nvidia-texture-tools\n ref: f31\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n...", "runtime_deps": [ { "dependency": "platform", "stream": "f31" }, { "dependency": "flatpak-runtime", "stream": "f31" }, { "dependency": "flatpak-common", "stream": "f31" } ], "build_deps": [ { "dependency": "platform", "stream": "f31" }, { "dependency": "flatpak-runtime", "stream": "f31" }, { "dependency": "flatpak-common", "stream": "f31" } ], "active": true, "rpms": [ "0ad-0:0.0.23b-9.module_f31+7020+9352e34e.aarch64.rpm", "0ad-0:0.0.23b-9.module_f31+7020+9352e34e.armv7hl.rpm", "0ad-0:0.0.23b-9.module_f31+7020+9352e34e.i686.rpm", "0ad-0:0.0.23b-9.module_f31+7020+9352e34e.ppc64le.rpm", "0ad-0:0.0.23b-9.module_f31+7020+9352e34e.src.rpm", "0ad-0:0.0.23b-9.module_f31+7020+9352e34e.x86_64.rpm", "0ad-data-0:0.0.23b-3.module_f31+7020+9352e34e.noarch.rpm", "0ad-data-0:0.0.23b-3.module_f31+7020+9352e34e.src.rpm", "0ad-debuginfo-0:0.0.23b-9.module_f31+7020+9352e34e.aarch64.rpm", "0ad-debuginfo-0:0.0.23b-9.module_f31+7020+9352e34e.armv7hl.rpm", "0ad-debuginfo-0:0.0.23b-9.module_f31+7020+9352e34e.i686.rpm", "0ad-debuginfo-0:0.0.23b-9.module_f31+7020+9352e34e.ppc64le.rpm", "0ad-debuginfo-0:0.0.23b-9.module_f31+7020+9352e34e.x86_64.rpm", "0ad-debugsource-0:0.0.23b-9.module_f31+7020+9352e34e.aarch64.rpm", "0ad-debugsource-0:0.0.23b-9.module_f31+7020+9352e34e.armv7hl.rpm", "0ad-debugsource-0:0.0.23b-9.module_f31+7020+9352e34e.i686.rpm", "0ad-debugsource-0:0.0.23b-9.module_f31+7020+9352e34e.ppc64le.rpm", "0ad-debugsource-0:0.0.23b-9.module_f31+7020+9352e34e.x86_64.rpm", "enet-0:1.3.14-2.module_f31+7020+9352e34e.aarch64.rpm", "enet-0:1.3.14-2.module_f31+7020+9352e34e.armv7hl.rpm", "enet-0:1.3.14-2.module_f31+7020+9352e34e.i686.rpm", "enet-0:1.3.14-2.module_f31+7020+9352e34e.ppc64le.rpm", "enet-0:1.3.14-2.module_f31+7020+9352e34e.s390x.rpm", "enet-0:1.3.14-2.module_f31+7020+9352e34e.src.rpm", "enet-0:1.3.14-2.module_f31+7020+9352e34e.x86_64.rpm", "enet-debuginfo-0:1.3.14-2.module_f31+7020+9352e34e.aarch64.rpm", "enet-debuginfo-0:1.3.14-2.module_f31+7020+9352e34e.armv7hl.rpm", "enet-debuginfo-0:1.3.14-2.module_f31+7020+9352e34e.i686.rpm", "enet-debuginfo-0:1.3.14-2.module_f31+7020+9352e34e.ppc64le.rpm", "enet-debuginfo-0:1.3.14-2.module_f31+7020+9352e34e.s390x.rpm", "enet-debuginfo-0:1.3.14-2.module_f31+7020+9352e34e.x86_64.rpm", "enet-debugsource-0:1.3.14-2.module_f31+7020+9352e34e.aarch64.rpm", "enet-debugsource-0:1.3.14-2.module_f31+7020+9352e34e.armv7hl.rpm", "enet-debugsource-0:1.3.14-2.module_f31+7020+9352e34e.i686.rpm", "enet-debugsource-0:1.3.14-2.module_f31+7020+9352e34e.ppc64le.rpm", "enet-debugsource-0:1.3.14-2.module_f31+7020+9352e34e.s390x.rpm", "enet-debugsource-0:1.3.14-2.module_f31+7020+9352e34e.x86_64.rpm", "enet-devel-0:1.3.14-2.module_f31+7020+9352e34e.aarch64.rpm", "enet-devel-0:1.3.14-2.module_f31+7020+9352e34e.armv7hl.rpm", "enet-devel-0:1.3.14-2.module_f31+7020+9352e34e.i686.rpm", "enet-devel-0:1.3.14-2.module_f31+7020+9352e34e.ppc64le.rpm", "enet-devel-0:1.3.14-2.module_f31+7020+9352e34e.s390x.rpm", "enet-devel-0:1.3.14-2.module_f31+7020+9352e34e.x86_64.rpm", "gloox-1:1.0.14-10.module_f31+7020+9352e34e.aarch64.rpm", "gloox-1:1.0.14-10.module_f31+7020+9352e34e.armv7hl.rpm", "gloox-1:1.0.14-10.module_f31+7020+9352e34e.i686.rpm", "gloox-1:1.0.14-10.module_f31+7020+9352e34e.ppc64le.rpm", "gloox-1:1.0.14-10.module_f31+7020+9352e34e.s390x.rpm", "gloox-1:1.0.14-10.module_f31+7020+9352e34e.src.rpm", "gloox-1:1.0.14-10.module_f31+7020+9352e34e.x86_64.rpm", "gloox-debuginfo-1:1.0.14-10.module_f31+7020+9352e34e.aarch64.rpm", "gloox-debuginfo-1:1.0.14-10.module_f31+7020+9352e34e.armv7hl.rpm", "gloox-debuginfo-1:1.0.14-10.module_f31+7020+9352e34e.i686.rpm", "gloox-debuginfo-1:1.0.14-10.module_f31+7020+9352e34e.ppc64le.rpm", "gloox-debuginfo-1:1.0.14-10.module_f31+7020+9352e34e.s390x.rpm", "gloox-debuginfo-1:1.0.14-10.module_f31+7020+9352e34e.x86_64.rpm", "gloox-debugsource-1:1.0.14-10.module_f31+7020+9352e34e.aarch64.rpm", "gloox-debugsource-1:1.0.14-10.module_f31+7020+9352e34e.armv7hl.rpm", "gloox-debugsource-1:1.0.14-10.module_f31+7020+9352e34e.i686.rpm", "gloox-debugsource-1:1.0.14-10.module_f31+7020+9352e34e.ppc64le.rpm", "gloox-debugsource-1:1.0.14-10.module_f31+7020+9352e34e.s390x.rpm", "gloox-debugsource-1:1.0.14-10.module_f31+7020+9352e34e.x86_64.rpm", "gloox-devel-1:1.0.14-10.module_f31+7020+9352e34e.aarch64.rpm", "gloox-devel-1:1.0.14-10.module_f31+7020+9352e34e.armv7hl.rpm", "gloox-devel-1:1.0.14-10.module_f31+7020+9352e34e.i686.rpm", "gloox-devel-1:1.0.14-10.module_f31+7020+9352e34e.ppc64le.rpm", "gloox-devel-1:1.0.14-10.module_f31+7020+9352e34e.s390x.rpm", "gloox-devel-1:1.0.14-10.module_f31+7020+9352e34e.x86_64.rpm", "libsodium-0:1.0.18-2.module_f31+7020+9352e34e.aarch64.rpm", "libsodium-0:1.0.18-2.module_f31+7020+9352e34e.armv7hl.rpm", "libsodium-0:1.0.18-2.module_f31+7020+9352e34e.i686.rpm", "libsodium-0:1.0.18-2.module_f31+7020+9352e34e.ppc64le.rpm", "libsodium-0:1.0.18-2.module_f31+7020+9352e34e.s390x.rpm", "libsodium-0:1.0.18-2.module_f31+7020+9352e34e.src.rpm", "libsodium-0:1.0.18-2.module_f31+7020+9352e34e.x86_64.rpm", "libsodium-debuginfo-0:1.0.18-2.module_f31+7020+9352e34e.aarch64.rpm", "libsodium-debuginfo-0:1.0.18-2.module_f31+7020+9352e34e.armv7hl.rpm", "libsodium-debuginfo-0:1.0.18-2.module_f31+7020+9352e34e.i686.rpm", "libsodium-debuginfo-0:1.0.18-2.module_f31+7020+9352e34e.ppc64le.rpm", "libsodium-debuginfo-0:1.0.18-2.module_f31+7020+9352e34e.s390x.rpm", "libsodium-debuginfo-0:1.0.18-2.module_f31+7020+9352e34e.x86_64.rpm", "libsodium-debugsource-0:1.0.18-2.module_f31+7020+9352e34e.aarch64.rpm", "libsodium-debugsource-0:1.0.18-2.module_f31+7020+9352e34e.armv7hl.rpm", "libsodium-debugsource-0:1.0.18-2.module_f31+7020+9352e34e.i686.rpm", "libsodium-debugsource-0:1.0.18-2.module_f31+7020+9352e34e.ppc64le.rpm", "libsodium-debugsource-0:1.0.18-2.module_f31+7020+9352e34e.s390x.rpm", "libsodium-debugsource-0:1.0.18-2.module_f31+7020+9352e34e.x86_64.rpm", "libsodium-devel-0:1.0.18-2.module_f31+7020+9352e34e.aarch64.rpm", "libsodium-devel-0:1.0.18-2.module_f31+7020+9352e34e.armv7hl.rpm", "libsodium-devel-0:1.0.18-2.module_f31+7020+9352e34e.i686.rpm", "libsodium-devel-0:1.0.18-2.module_f31+7020+9352e34e.ppc64le.rpm", "libsodium-devel-0:1.0.18-2.module_f31+7020+9352e34e.s390x.rpm", "libsodium-devel-0:1.0.18-2.module_f31+7020+9352e34e.x86_64.rpm", "libsodium-static-0:1.0.18-2.module_f31+7020+9352e34e.aarch64.rpm", "libsodium-static-0:1.0.18-2.module_f31+7020+9352e34e.armv7hl.rpm", "libsodium-static-0:1.0.18-2.module_f31+7020+9352e34e.i686.rpm", "libsodium-static-0:1.0.18-2.module_f31+7020+9352e34e.ppc64le.rpm", "libsodium-static-0:1.0.18-2.module_f31+7020+9352e34e.s390x.rpm", "libsodium-static-0:1.0.18-2.module_f31+7020+9352e34e.x86_64.rpm", "miniupnpc-0:2.1-2.module_f31+7020+9352e34e.aarch64.rpm", "miniupnpc-0:2.1-2.module_f31+7020+9352e34e.armv7hl.rpm", "miniupnpc-0:2.1-2.module_f31+7020+9352e34e.i686.rpm", "miniupnpc-0:2.1-2.module_f31+7020+9352e34e.ppc64le.rpm", "miniupnpc-0:2.1-2.module_f31+7020+9352e34e.s390x.rpm", "miniupnpc-0:2.1-2.module_f31+7020+9352e34e.src.rpm", "miniupnpc-0:2.1-2.module_f31+7020+9352e34e.x86_64.rpm", "miniupnpc-debuginfo-0:2.1-2.module_f31+7020+9352e34e.aarch64.rpm", "miniupnpc-debuginfo-0:2.1-2.module_f31+7020+9352e34e.armv7hl.rpm", "miniupnpc-debuginfo-0:2.1-2.module_f31+7020+9352e34e.i686.rpm", "miniupnpc-debuginfo-0:2.1-2.module_f31+7020+9352e34e.ppc64le.rpm", "miniupnpc-debuginfo-0:2.1-2.module_f31+7020+9352e34e.s390x.rpm", "miniupnpc-debuginfo-0:2.1-2.module_f31+7020+9352e34e.x86_64.rpm", "miniupnpc-debugsource-0:2.1-2.module_f31+7020+9352e34e.aarch64.rpm", "miniupnpc-debugsource-0:2.1-2.module_f31+7020+9352e34e.armv7hl.rpm", "miniupnpc-debugsource-0:2.1-2.module_f31+7020+9352e34e.i686.rpm", "miniupnpc-debugsource-0:2.1-2.module_f31+7020+9352e34e.ppc64le.rpm", "miniupnpc-debugsource-0:2.1-2.module_f31+7020+9352e34e.s390x.rpm", "miniupnpc-debugsource-0:2.1-2.module_f31+7020+9352e34e.x86_64.rpm", "miniupnpc-devel-0:2.1-2.module_f31+7020+9352e34e.aarch64.rpm", "miniupnpc-devel-0:2.1-2.module_f31+7020+9352e34e.armv7hl.rpm", "miniupnpc-devel-0:2.1-2.module_f31+7020+9352e34e.i686.rpm", "miniupnpc-devel-0:2.1-2.module_f31+7020+9352e34e.ppc64le.rpm", "miniupnpc-devel-0:2.1-2.module_f31+7020+9352e34e.s390x.rpm", "miniupnpc-devel-0:2.1-2.module_f31+7020+9352e34e.x86_64.rpm", "nvidia-texture-tools-0:2.0.8-21.module_f31+7020+9352e34e.aarch64.rpm", "nvidia-texture-tools-0:2.0.8-21.module_f31+7020+9352e34e.armv7hl.rpm", "nvidia-texture-tools-0:2.0.8-21.module_f31+7020+9352e34e.i686.rpm", "nvidia-texture-tools-0:2.0.8-21.module_f31+7020+9352e34e.ppc64le.rpm", "nvidia-texture-tools-0:2.0.8-21.module_f31+7020+9352e34e.s390x.rpm", "nvidia-texture-tools-0:2.0.8-21.module_f31+7020+9352e34e.src.rpm", "nvidia-texture-tools-0:2.0.8-21.module_f31+7020+9352e34e.x86_64.rpm", "nvidia-texture-tools-debuginfo-0:2.0.8-21.module_f31+7020+9352e34e.aarch64.rpm", "nvidia-texture-tools-debuginfo-0:2.0.8-21.module_f31+7020+9352e34e.armv7hl.rpm", "nvidia-texture-tools-debuginfo-0:2.0.8-21.module_f31+7020+9352e34e.i686.rpm", "nvidia-texture-tools-debuginfo-0:2.0.8-21.module_f31+7020+9352e34e.ppc64le.rpm", "nvidia-texture-tools-debuginfo-0:2.0.8-21.module_f31+7020+9352e34e.s390x.rpm", "nvidia-texture-tools-debuginfo-0:2.0.8-21.module_f31+7020+9352e34e.x86_64.rpm", "nvidia-texture-tools-debugsource-0:2.0.8-21.module_f31+7020+9352e34e.aarch64.rpm", "nvidia-texture-tools-debugsource-0:2.0.8-21.module_f31+7020+9352e34e.armv7hl.rpm", "nvidia-texture-tools-debugsource-0:2.0.8-21.module_f31+7020+9352e34e.i686.rpm", "nvidia-texture-tools-debugsource-0:2.0.8-21.module_f31+7020+9352e34e.ppc64le.rpm", "nvidia-texture-tools-debugsource-0:2.0.8-21.module_f31+7020+9352e34e.s390x.rpm", "nvidia-texture-tools-debugsource-0:2.0.8-21.module_f31+7020+9352e34e.x86_64.rpm", "nvidia-texture-tools-devel-0:2.0.8-21.module_f31+7020+9352e34e.aarch64.rpm", "nvidia-texture-tools-devel-0:2.0.8-21.module_f31+7020+9352e34e.armv7hl.rpm", "nvidia-texture-tools-devel-0:2.0.8-21.module_f31+7020+9352e34e.i686.rpm", "nvidia-texture-tools-devel-0:2.0.8-21.module_f31+7020+9352e34e.ppc64le.rpm", "nvidia-texture-tools-devel-0:2.0.8-21.module_f31+7020+9352e34e.s390x.rpm", "nvidia-texture-tools-devel-0:2.0.8-21.module_f31+7020+9352e34e.x86_64.rpm", "python2-miniupnpc-0:2.1-2.module_f31+7020+9352e34e.aarch64.rpm", "python2-miniupnpc-0:2.1-2.module_f31+7020+9352e34e.armv7hl.rpm", "python2-miniupnpc-0:2.1-2.module_f31+7020+9352e34e.i686.rpm", "python2-miniupnpc-0:2.1-2.module_f31+7020+9352e34e.ppc64le.rpm", "python2-miniupnpc-0:2.1-2.module_f31+7020+9352e34e.s390x.rpm", "python2-miniupnpc-0:2.1-2.module_f31+7020+9352e34e.x86_64.rpm", "python2-miniupnpc-debuginfo-0:2.1-2.module_f31+7020+9352e34e.aarch64.rpm", "python2-miniupnpc-debuginfo-0:2.1-2.module_f31+7020+9352e34e.armv7hl.rpm", "python2-miniupnpc-debuginfo-0:2.1-2.module_f31+7020+9352e34e.i686.rpm", "python2-miniupnpc-debuginfo-0:2.1-2.module_f31+7020+9352e34e.ppc64le.rpm", "python2-miniupnpc-debuginfo-0:2.1-2.module_f31+7020+9352e34e.s390x.rpm", "python2-miniupnpc-debuginfo-0:2.1-2.module_f31+7020+9352e34e.x86_64.rpm", "python3-miniupnpc-0:2.1-2.module_f31+7020+9352e34e.aarch64.rpm", "python3-miniupnpc-0:2.1-2.module_f31+7020+9352e34e.armv7hl.rpm", "python3-miniupnpc-0:2.1-2.module_f31+7020+9352e34e.i686.rpm", "python3-miniupnpc-0:2.1-2.module_f31+7020+9352e34e.ppc64le.rpm", "python3-miniupnpc-0:2.1-2.module_f31+7020+9352e34e.s390x.rpm", "python3-miniupnpc-0:2.1-2.module_f31+7020+9352e34e.x86_64.rpm", "python3-miniupnpc-debuginfo-0:2.1-2.module_f31+7020+9352e34e.aarch64.rpm", "python3-miniupnpc-debuginfo-0:2.1-2.module_f31+7020+9352e34e.armv7hl.rpm", "python3-miniupnpc-debuginfo-0:2.1-2.module_f31+7020+9352e34e.i686.rpm", "python3-miniupnpc-debuginfo-0:2.1-2.module_f31+7020+9352e34e.ppc64le.rpm", "python3-miniupnpc-debuginfo-0:2.1-2.module_f31+7020+9352e34e.s390x.rpm", "python3-miniupnpc-debuginfo-0:2.1-2.module_f31+7020+9352e34e.x86_64.rpm" ] }, { "variant_id": "0ad", "variant_uid": "0ad:master:3220200406112749:01239000", "variant_name": "0ad", "variant_type": "module", "variant_version": "master", "variant_release": "3220200406112749", "variant_context": "01239000", "koji_tag": "module-0ad-master-3220200406112749-01239000", "modulemd": "---\ndocument: modulemd\nversion: 2\ndata:\n name: 0ad\n stream: master\n version: 3220200406112749\n context: 01239000\n summary: Cross-Platform RTS Game of Ancient Warfare\n description: >-\n 0 A.D. (pronounced \"zero ey-dee\") is a free, open-source, cross-platform real-time\n strategy (RTS) game of ancient warfare. In short, it is a historically-based war/economy\n game that allows players to relive or rewrite the history of Western civilizations,\n focusing on the years between 500 B.C. and 500 A.D. The project is highly ambitious,\n involving state-of-the-art 3D graphics, detailed artwork, sound, and a flexible\n and powerful custom-built game engine.\n\n The game has been in development by Wildfire Games (WFG), a group of volunteer,\n hobbyist game developers, since 2001.\n license:\n module:\n - MIT\n xmd:\n mbs:\n buildrequires:\n flatpak-common:\n context: caf21102\n filtered_rpms: []\n koji_tag: module-flatpak-common-f32-3220200402094734-caf21102\n ref: e77e99f80bc38ca9e5d1fd1c174e42277ce745bd\n stream: f32\n version: 3220200402094734\n flatpak-runtime:\n context: 43bbeeef\n filtered_rpms: []\n koji_tag: module-flatpak-runtime-f32-3220200402094452-43bbeeef\n ref: e438411c6d02254d7a9a997dd593edf2d4e8ba84\n stream: f32\n version: 3220200402094452\n platform:\n context: 00000000\n filtered_rpms: []\n koji_tag: module-f32-build\n ref: f32\n stream: f32\n stream_collision_modules: \n ursine_rpms: \n version: 1\n commit: 786bb43a989824e2d9b6eccf12a1ef5152e5f305\n mse: TRUE\n rpms:\n 0ad:\n ref: 8af65c43e11e7313993bf8eb083df0f8f6c6a6b1\n 0ad-data:\n ref: 14c296b56fbd11ca08dff847f7e19d72e18d3b2a\n dejavu-fonts:\n ref: 18a66b561c3a6aeb892ac4aa3fd5689742ba18ae\n enet:\n ref: bdd09027a8a28cafd337e6ebea3e0430a4d9b670\n gloox:\n ref: d7d377c91fa954a73ad112b82f8801618594ba94\n libsodium:\n ref: 9f8789f4cdd61562ef99960441dbc4b1c39c7a0e\n miniupnpc:\n ref: c2b104bea5c9351730410ef3a291fcadaf98bda6\n nvidia-texture-tools:\n ref: dfbbbe8a14d038036fc311f239a88912715a211b\n scmurl: https://src.fedoraproject.org/flatpaks/0ad.git?#786bb43a989824e2d9b6eccf12a1ef5152e5f305\n ursine_rpms:\n - libfontenc-devel-0:1.1.3-12.fc32.aarch64\n - gnome-online-accounts-0:3.36.0-1.fc32.armv7hl\n - boost-regex-0:1.69.0-14.fc32.ppc64le\n - gnome-desktop3-0:3.36.1-1.fc32.x86_64\n - OpenEXR-doc-0:2.3.0-5.fc32.x86_64\n - gnome-online-accounts-devel-0:3.36.0-1.fc32.s390x\n - libgdata-0:0.17.12-1.fc32.x86_64\n - poppler-0:0.84.0-2.fc32.s390x\n - compat-wxGTK3-gtk2-media-0:3.0.4-13.fc32.x86_64\n - evolution-data-server-perl-0:3.36.1-1.fc32.aarch64\n - libhandy-devel-0:0.0.13-2.fc32.x86_64\n - libdazzle-devel-0:3.36.0-1.fc32.s390x\n - glew-devel-0:2.1.0-6.fc32.armv7hl\n - poppler-qt-0:0.84.0-2.fc32.aarch64\n - geocode-glib-devel-0:3.26.2-1.fc32.s390x\n - libfontenc-0:1.1.3-12.fc32.x86_64\n - gtksourceview3-tests-0:3.24.11-3.fc32.x86_64\n - boost-contract-0:1.69.0-14.fc32.i686\n - openblas-openmp64_-0:0.3.9-1.fc32.x86_64\n - boost-numpy3-0:1.69.0-14.fc32.x86_64\n - compat-wxGTK3-gtk2-gl-0:3.0.4-13.fc32.ppc64le\n - libsigc++20-devel-0:2.10.3-1.fc32.aarch64\n - libfontenc-devel-0:1.1.3-12.fc32.x86_64\n - polkit-0:0.116-7.fc32.ppc64le\n - SDL-static-0:1.2.15-43.fc32.i686\n - glew-devel-0:2.1.0-6.fc32.s390x\n - xorg-x11-font-utils-1:7.5-44.fc32.x86_64\n - gspell-0:1.8.3-2.fc32.armv7hl\n - boost-serialization-0:1.69.0-14.fc32.armv7hl\n - OpenEXR-devel-0:2.3.0-5.fc32.aarch64\n - wxGTK3-devel-0:3.0.4-13.fc32.aarch64\n - cairomm-0:1.12.0-12.fc32.i686\n - jbig2dec-libs-0:0.17-4.fc32.x86_64\n - polkit-0:0.116-7.fc32.s390x\n - poppler-qt-devel-0:0.84.0-2.fc32.ppc64le\n - boost-devel-0:1.69.0-14.fc32.x86_64\n - gsl-devel-0:2.6-2.fc32.i686\n - libidn-0:1.35-7.fc32.ppc64le\n - gspell-devel-0:1.8.3-2.fc32.x86_64\n - boost-timer-0:1.69.0-14.fc32.aarch64\n - glibmm24-0:2.64.2-1.fc32.aarch64\n - boost-contract-0:1.69.0-14.fc32.armv7hl\n - openjpeg2-tools-0:2.3.1-6.fc32.armv7hl\n - poppler-cpp-0:0.84.0-2.fc32.ppc64le\n - boost-wave-0:1.69.0-14.fc32.x86_64\n - liboauth-0:1.0.3-14.fc32.aarch64\n - openblas-threads64_-0:0.3.9-1.fc32.s390x\n - geocode-glib-devel-0:3.26.2-1.fc32.armv7hl\n - SDL-static-0:1.2.15-43.fc32.aarch64\n - libfontenc-devel-0:1.1.3-12.fc32.s390x\n - exiv2-0:0.27.2-2.fc32.armv7hl\n - wxGTK3-0:3.0.4-13.fc32.s390x\n - glibmm24-0:2.64.2-1.fc32.ppc64le\n - boost-system-0:1.69.0-14.fc32.armv7hl\n - openblas-0:0.3.9-1.fc32.s390x\n - OpenEXR-devel-0:2.3.0-5.fc32.i686\n - libdazzle-devel-0:3.36.0-1.fc32.x86_64\n - SDL_image-devel-0:1.2.12-23.fc32.aarch64\n - boost-filesystem-0:1.69.0-14.fc32.i686\n - gtksourceview3-0:3.24.11-3.fc32.i686\n - wxGTK3-webview-0:3.0.4-13.fc32.ppc64le\n - libdazzle-devel-0:3.36.0-1.fc32.ppc64le\n - ilmbase-0:2.3.0-4.fc32.i686\n - libijs-0:0.35-11.fc32.x86_64\n - libwmf-0:0.2.12-3.fc32.ppc64le\n - gsl-0:2.6-2.fc32.armv7hl\n - gsl-0:2.6-2.fc32.s390x\n - jbig2dec-libs-0:0.17-4.fc32.aarch64\n - boost-test-0:1.69.0-14.fc32.ppc64le\n - poppler-devel-0:0.84.0-2.fc32.x86_64\n - libimagequant-devel-0:2.12.6-2.fc32.x86_64\n - poppler-qt5-devel-0:0.84.0-2.fc32.s390x\n - SDL-devel-0:1.2.15-43.fc32.s390x\n - libgdata-devel-0:0.17.12-1.fc32.armv7hl\n - libgdata-0:0.17.12-1.fc32.ppc64le\n - boost-python3-devel-0:1.69.0-14.fc32.aarch64\n - libimagequant-0:2.12.6-2.fc32.x86_64\n - startup-notification-devel-0:0.12-19.fc32.s390x\n - boost-regex-0:1.69.0-14.fc32.aarch64\n - libidn-0:1.35-7.fc32.x86_64\n - ilmbase-devel-0:2.3.0-4.fc32.s390x\n - libpeas-loader-python3-0:1.26.0-1.fc32.ppc64le\n - wxBase3-devel-0:3.0.4-13.fc32.x86_64\n - boost-examples-0:1.69.0-14.fc32.i686\n - libsigc++20-0:2.10.3-1.fc32.i686\n - libwmf-lite-0:0.2.12-3.fc32.aarch64\n - boost-date-time-0:1.69.0-14.fc32.i686\n - libgweather-0:3.36.0-1.fc32.armv7hl\n - liboauth-0:1.0.3-14.fc32.s390x\n - boost-jam-0:1.69.0-14.fc32.s390x\n - libsigc++20-0:2.10.3-1.fc32.aarch64\n - polkit-0:0.116-7.fc32.aarch64\n - poppler-devel-0:0.84.0-2.fc32.i686\n - libhandy-0:0.0.13-2.fc32.ppc64le\n - boost-program-options-0:1.69.0-14.fc32.ppc64le\n - openblas-devel-0:0.3.9-1.fc32.armv7hl\n - gspell-0:1.8.3-2.fc32.x86_64\n - libpaper-0:1.1.24-26.fc32.x86_64\n - boost-0:1.69.0-14.fc32.aarch64\n - wxGTK3-media-0:3.0.4-13.fc32.aarch64\n - ghostscript-x11-0:9.50-1.fc32.x86_64\n - wxGTK3-i18n-0:3.0.4-13.fc32.noarch\n - gtksourceview3-0:3.24.11-3.fc32.aarch64\n - libical-0:3.0.8-1.fc32.x86_64\n - pangomm-devel-0:2.42.1-1.fc32.ppc64le\n - libwmf-0:0.2.12-3.fc32.x86_64\n - exiv2-0:0.27.2-2.fc32.i686\n - libsigc++20-devel-0:2.10.3-1.fc32.i686\n - libimagequant-devel-0:2.12.6-2.fc32.s390x\n - jbig2dec-libs-0:0.17-4.fc32.s390x\n - exiv2-devel-0:0.27.2-2.fc32.ppc64le\n - compat-wxGTK3-gtk2-gl-0:3.0.4-13.fc32.i686\n - exiv2-devel-0:0.27.2-2.fc32.aarch64\n - boost-devel-0:1.69.0-14.fc32.s390x\n - poppler-cpp-devel-0:0.84.0-2.fc32.ppc64le\n - gtkmm30-devel-0:3.24.2-2.fc32.s390x\n - openjpeg2-0:2.3.1-6.fc32.ppc64le\n - wxBase3-0:3.0.4-13.fc32.armv7hl\n - SDL_image-devel-0:1.2.12-23.fc32.ppc64le\n - poppler-cpp-devel-0:0.84.0-2.fc32.x86_64\n - pangomm-devel-0:2.42.1-1.fc32.x86_64\n - boost-graph-0:1.69.0-14.fc32.s390x\n - gtksourceview3-devel-0:3.24.11-3.fc32.i686\n - ghostscript-tools-dvipdf-0:9.50-1.fc32.ppc64le\n - polkit-devel-0:0.116-7.fc32.x86_64\n - boost-doctools-0:1.69.0-14.fc32.i686\n - poppler-cpp-devel-0:0.84.0-2.fc32.s390x\n - atkmm-0:2.24.3-4.fc32.ppc64le\n - libijs-0:0.35-11.fc32.s390x\n - SDL-static-0:1.2.15-43.fc32.s390x\n - ghostscript-0:9.50-1.fc32.ppc64le\n - opengl-games-utils-0:0.2-17.fc32.noarch\n - glibmm24-devel-0:2.64.2-1.fc32.x86_64\n - ghostscript-core-0:9.50-1.fc32.ppc64le\n - libfontenc-0:1.1.3-12.fc32.s390x\n - ilmbase-devel-0:2.3.0-4.fc32.ppc64le\n - boost-doctools-0:1.69.0-14.fc32.s390x\n - gsl-0:2.6-2.fc32.ppc64le\n - poppler-0:0.84.0-2.fc32.i686\n - libical-0:3.0.8-1.fc32.aarch64\n - libijs-devel-0:0.35-11.fc32.ppc64le\n - ghostscript-tools-fonts-0:9.50-1.fc32.s390x\n - compat-wxGTK3-gtk2-0:3.0.4-13.fc32.armv7hl\n - polkit-devel-0:0.116-7.fc32.s390x\n - boost-numpy3-0:1.69.0-14.fc32.aarch64\n - libical-glib-devel-0:3.0.8-1.fc32.aarch64\n - boost-coroutine-0:1.69.0-14.fc32.aarch64\n - boost-atomic-0:1.69.0-14.fc32.aarch64\n - gnome-desktop3-0:3.36.1-1.fc32.aarch64\n - boost-filesystem-0:1.69.0-14.fc32.s390x\n - pangomm-0:2.42.1-1.fc32.x86_64\n - wxGTK3-webview-0:3.0.4-13.fc32.x86_64\n - gsl-0:2.6-2.fc32.x86_64\n - openblas-devel-0:0.3.9-1.fc32.i686\n - OpenEXR-devel-0:2.3.0-5.fc32.ppc64le\n - libgdata-devel-0:0.17.12-1.fc32.x86_64\n - poppler-data-0:0.4.9-5.fc32.noarch\n - boost-serialization-0:1.69.0-14.fc32.aarch64\n - libidn-javadoc-0:1.35-7.fc32.noarch\n - libijs-devel-0:0.35-11.fc32.s390x\n - libpeas-gtk-0:1.26.0-1.fc32.ppc64le\n - OpenEXR-0:2.3.0-5.fc32.i686\n - openblas-static-0:0.3.9-1.fc32.armv7hl\n - libical-devel-0:3.0.8-1.fc32.x86_64\n - openblas-threads64-0:0.3.9-1.fc32.s390x\n - boost-stacktrace-0:1.69.0-14.fc32.aarch64\n - poppler-0:0.84.0-2.fc32.ppc64le\n - gd-0:2.3.0-1.fc32.armv7hl\n - SDL-0:1.2.15-43.fc32.i686\n - libical-glib-0:3.0.8-1.fc32.ppc64le\n - compat-wxGTK3-gtk2-devel-0:3.0.4-13.fc32.x86_64\n - libpaper-0:1.1.24-26.fc32.s390x\n - libGLEW-0:2.1.0-6.fc32.i686\n - liboauth-0:1.0.3-14.fc32.armv7hl\n - libgdata-devel-0:0.17.12-1.fc32.aarch64\n - libijs-0:0.35-11.fc32.aarch64\n - glibmm24-devel-0:2.64.2-1.fc32.armv7hl\n - boost-thread-0:1.69.0-14.fc32.s390x\n - libpaper-devel-0:1.1.24-26.fc32.s390x\n - boost-timer-0:1.69.0-14.fc32.s390x\n - xorg-x11-font-utils-1:7.5-44.fc32.i686\n - compat-wxGTK3-gtk2-devel-0:3.0.4-13.fc32.i686\n - gspell-0:1.8.3-2.fc32.s390x\n - wxBase3-devel-0:3.0.4-13.fc32.armv7hl\n - boost-program-options-0:1.69.0-14.fc32.s390x\n - SDL-0:1.2.15-43.fc32.armv7hl\n - compat-wxGTK3-gtk2-media-0:3.0.4-13.fc32.armv7hl\n - polkit-devel-0:0.116-7.fc32.ppc64le\n - boost-timer-0:1.69.0-14.fc32.i686\n - wxGTK3-gl-0:3.0.4-13.fc32.ppc64le\n - openblas-serial-0:0.3.9-1.fc32.armv7hl\n - libidn-devel-0:1.35-7.fc32.armv7hl\n - openblas-Rblas-0:0.3.9-1.fc32.aarch64\n - libfontenc-devel-0:1.1.3-12.fc32.ppc64le\n - urw-base35-fonts-legacy-0:20170801-14.fc32.noarch\n - atkmm-doc-0:2.24.3-4.fc32.noarch\n - jbig2dec-devel-0:0.17-4.fc32.armv7hl\n - boost-math-0:1.69.0-14.fc32.i686\n - libidn-devel-0:1.35-7.fc32.i686\n - startup-notification-0:0.12-19.fc32.armv7hl\n - wxGTK3-webview-0:3.0.4-13.fc32.aarch64\n - libhandy-devel-0:0.0.13-2.fc32.aarch64\n - boost-python3-0:1.69.0-14.fc32.armv7hl\n - libgweather-0:3.36.0-1.fc32.s390x\n - ilmbase-devel-0:2.3.0-4.fc32.x86_64\n - urw-base35-z003-fonts-0:20170801-14.fc32.noarch\n - libhandy-0:0.0.13-2.fc32.s390x\n - geocode-glib-0:3.26.2-1.fc32.ppc64le\n - poppler-devel-0:0.84.0-2.fc32.armv7hl\n - evolution-data-server-tests-0:3.36.1-1.fc32.x86_64\n - boost-math-0:1.69.0-14.fc32.aarch64\n - boost-graph-0:1.69.0-14.fc32.x86_64\n - boost-math-0:1.69.0-14.fc32.x86_64\n - polkit-0:0.116-7.fc32.x86_64\n - gnome-online-accounts-0:3.36.0-1.fc32.s390x\n - openblas-Rblas-0:0.3.9-1.fc32.armv7hl\n - liboauth-devel-0:1.0.3-14.fc32.aarch64\n - gnome-online-accounts-0:3.36.0-1.fc32.aarch64\n - OpenEXR-0:2.3.0-5.fc32.ppc64le\n - liboauth-devel-0:1.0.3-14.fc32.x86_64\n - boost-contract-0:1.69.0-14.fc32.aarch64\n - openblas-threads64-0:0.3.9-1.fc32.ppc64le\n - poppler-utils-0:0.84.0-2.fc32.i686\n - ghostscript-tools-printing-0:9.50-1.fc32.armv7hl\n - OpenEXR-libs-0:2.3.0-5.fc32.x86_64\n - gtksourceview3-tests-0:3.24.11-3.fc32.aarch64\n - libgweather-devel-0:3.36.0-1.fc32.aarch64\n - adobe-mappings-pdf-0:20180407-5.fc32.noarch\n - compat-wxGTK3-gtk2-0:3.0.4-13.fc32.aarch64\n - poppler-qt5-devel-0:0.84.0-2.fc32.armv7hl\n - openblas-serial64-0:0.3.9-1.fc32.ppc64le\n - SDL_image-devel-0:1.2.12-23.fc32.x86_64\n - SDL-devel-0:1.2.15-43.fc32.armv7hl\n - polkit-0:0.116-7.fc32.armv7hl\n - boost-fiber-0:1.69.0-14.fc32.x86_64\n - boost-iostreams-0:1.69.0-14.fc32.s390x\n - libhandy-0:0.0.13-2.fc32.aarch64\n - boost-date-time-0:1.69.0-14.fc32.ppc64le\n - openblas-openmp-0:0.3.9-1.fc32.s390x\n - libpaper-devel-0:1.1.24-26.fc32.aarch64\n - openblas-Rblas-0:0.3.9-1.fc32.x86_64\n - libwmf-lite-0:0.2.12-3.fc32.ppc64le\n - gd-devel-0:2.3.0-1.fc32.s390x\n - wxBase3-0:3.0.4-13.fc32.aarch64\n - openblas-threads64-0:0.3.9-1.fc32.x86_64\n - wxBase3-0:3.0.4-13.fc32.x86_64\n - gnome-desktop3-0:3.36.1-1.fc32.s390x\n - openjpeg2-devel-0:2.3.1-6.fc32.s390x\n - boost-wave-0:1.69.0-14.fc32.aarch64\n - gnome-desktop3-tests-0:3.36.1-1.fc32.x86_64\n - boost-thread-0:1.69.0-14.fc32.aarch64\n - libwmf-devel-0:0.2.12-3.fc32.s390x\n - libpeas-0:1.26.0-1.fc32.aarch64\n - boost-examples-0:1.69.0-14.fc32.ppc64le\n - SDL-0:1.2.15-43.fc32.x86_64\n - libical-devel-0:3.0.8-1.fc32.aarch64\n - libsigc++20-0:2.10.3-1.fc32.s390x\n - poppler-glib-devel-0:0.84.0-2.fc32.ppc64le\n - exiv2-devel-0:0.27.2-2.fc32.i686\n - wxGTK3-gl-0:3.0.4-13.fc32.x86_64\n - libwmf-devel-0:0.2.12-3.fc32.x86_64\n - openblas-openmp64-0:0.3.9-1.fc32.ppc64le\n - libical-glib-devel-0:3.0.8-1.fc32.ppc64le\n - poppler-glib-0:0.84.0-2.fc32.armv7hl\n - boost-0:1.69.0-14.fc32.i686\n - libgs-devel-0:9.50-1.fc32.s390x\n - libidn-0:1.35-7.fc32.armv7hl\n - libical-0:3.0.8-1.fc32.i686\n - wxGTK3-webview-0:3.0.4-13.fc32.i686\n - gsl-devel-0:2.6-2.fc32.s390x\n - urw-base35-fonts-common-0:20170801-14.fc32.noarch\n - evolution-data-server-tests-0:3.36.1-1.fc32.armv7hl\n - boost-type_erasure-0:1.69.0-14.fc32.s390x\n - evolution-data-server-perl-0:3.36.1-1.fc32.armv7hl\n - gtksourceview3-0:3.24.11-3.fc32.s390x\n - poppler-qt5-0:0.84.0-2.fc32.i686\n - libgs-0:9.50-1.fc32.ppc64le\n - poppler-qt-0:0.84.0-2.fc32.armv7hl\n - gtksourceview3-tests-0:3.24.11-3.fc32.ppc64le\n - wxBase3-devel-0:3.0.4-13.fc32.i686\n - compat-wxGTK3-gtk2-devel-0:3.0.4-13.fc32.armv7hl\n - libwmf-devel-0:0.2.12-3.fc32.ppc64le\n - geocode-glib-0:3.26.2-1.fc32.s390x\n - pangomm-0:2.42.1-1.fc32.i686\n - libpaper-devel-0:1.1.24-26.fc32.x86_64\n - startup-notification-devel-0:0.12-19.fc32.x86_64\n - ilmbase-devel-0:2.3.0-4.fc32.aarch64\n - boost-chrono-0:1.69.0-14.fc32.i686\n - openjpeg2-0:2.3.1-6.fc32.aarch64\n - OpenEXR-doc-0:2.3.0-5.fc32.aarch64\n - geocode-glib-devel-0:3.26.2-1.fc32.ppc64le\n - cairomm-0:1.12.0-12.fc32.aarch64\n - wxBase3-0:3.0.4-13.fc32.i686\n - boost-log-0:1.69.0-14.fc32.x86_64\n - openblas-threads64_-0:0.3.9-1.fc32.x86_64\n - libgweather-devel-0:3.36.0-1.fc32.x86_64\n - openblas-0:0.3.9-1.fc32.armv7hl\n - boost-doctools-0:1.69.0-14.fc32.armv7hl\n - openjpeg2-devel-docs-0:2.3.1-6.fc32.noarch\n - libpeas-loader-python3-0:1.26.0-1.fc32.armv7hl\n - xorg-x11-font-utils-1:7.5-44.fc32.armv7hl\n - openblas-threads-0:0.3.9-1.fc32.x86_64\n - boost-examples-0:1.69.0-14.fc32.aarch64\n - gnome-online-accounts-devel-0:3.36.0-1.fc32.armv7hl\n - cairomm-doc-0:1.12.0-12.fc32.noarch\n - gspell-devel-0:1.8.3-2.fc32.aarch64\n - evolution-data-server-tests-0:3.36.1-1.fc32.aarch64\n - gnome-desktop3-tests-0:3.36.1-1.fc32.aarch64\n - ghostscript-core-0:9.50-1.fc32.x86_64\n - boost-locale-0:1.69.0-14.fc32.armv7hl\n - google-droid-sans-mono-fonts-0:20200215-3.fc32.noarch\n - jbig2dec-devel-0:0.17-4.fc32.aarch64\n - boost-python3-devel-0:1.69.0-14.fc32.i686\n - openjpeg2-devel-0:2.3.1-6.fc32.x86_64\n - OpenEXR-libs-0:2.3.0-5.fc32.armv7hl\n - libical-devel-0:3.0.8-1.fc32.s390x\n - startup-notification-0:0.12-19.fc32.i686\n - boost-python3-devel-0:1.69.0-14.fc32.armv7hl\n - boost-iostreams-0:1.69.0-14.fc32.armv7hl\n - ghostscript-core-0:9.50-1.fc32.i686\n - libimagequant-devel-0:2.12.6-2.fc32.ppc64le\n - openblas-Rblas-0:0.3.9-1.fc32.s390x\n - libidn-devel-0:1.35-7.fc32.x86_64\n - openjpeg2-0:2.3.1-6.fc32.i686\n - cairomm-0:1.12.0-12.fc32.armv7hl\n - boost-0:1.69.0-14.fc32.armv7hl\n - boost-jam-0:1.69.0-14.fc32.i686\n - openblas-Rblas-0:0.3.9-1.fc32.ppc64le\n - ilmbase-0:2.3.0-4.fc32.s390x\n - glew-0:2.1.0-6.fc32.ppc64le\n - glibmm24-doc-0:2.64.2-1.fc32.noarch\n - gtksourceview3-tests-0:3.24.11-3.fc32.s390x\n - urw-base35-gothic-fonts-0:20170801-14.fc32.noarch\n - dbus-glib-devel-0:0.110-7.fc32.x86_64\n - poppler-qt-devel-0:0.84.0-2.fc32.x86_64\n - glibmm24-0:2.64.2-1.fc32.x86_64\n - boost-context-0:1.69.0-14.fc32.armv7hl\n - boost-contract-0:1.69.0-14.fc32.ppc64le\n - glew-devel-0:2.1.0-6.fc32.x86_64\n - libgweather-0:3.36.0-1.fc32.aarch64\n - ghostscript-tools-printing-0:9.50-1.fc32.aarch64\n - libfontenc-devel-0:1.1.3-12.fc32.i686\n - OpenEXR-devel-0:2.3.0-5.fc32.x86_64\n - boost-static-0:1.69.0-14.fc32.armv7hl\n - openblas-devel-0:0.3.9-1.fc32.ppc64le\n - geocode-glib-devel-0:3.26.2-1.fc32.aarch64\n - libdazzle-0:3.36.0-1.fc32.s390x\n - libwmf-lite-0:0.2.12-3.fc32.x86_64\n - libical-glib-devel-0:3.0.8-1.fc32.x86_64\n - poppler-0:0.84.0-2.fc32.armv7hl\n - pangomm-0:2.42.1-1.fc32.s390x\n - openblas-serial64-0:0.3.9-1.fc32.aarch64\n - poppler-qt5-0:0.84.0-2.fc32.x86_64\n - xorg-x11-font-utils-1:7.5-44.fc32.aarch64\n - poppler-qt5-devel-0:0.84.0-2.fc32.x86_64\n - OpenEXR-libs-0:2.3.0-5.fc32.s390x\n - SDL-devel-0:1.2.15-43.fc32.x86_64\n - exiv2-libs-0:0.27.2-2.fc32.armv7hl\n - google-droid-sans-fonts-0:20200215-3.fc32.noarch\n - gnome-online-accounts-0:3.36.0-1.fc32.i686\n - libpeas-0:1.26.0-1.fc32.x86_64\n - libgs-0:9.50-1.fc32.aarch64\n - libhandy-devel-0:0.0.13-2.fc32.s390x\n - libgweather-0:3.36.0-1.fc32.x86_64\n - libgs-0:9.50-1.fc32.s390x\n - exiv2-0:0.27.2-2.fc32.x86_64\n - ghostscript-gtk-0:9.50-1.fc32.armv7hl\n - flatpak-rpm-macros-0:32-2.fc32.s390x\n - poppler-cpp-0:0.84.0-2.fc32.i686\n - openjpeg2-devel-0:2.3.1-6.fc32.aarch64\n - openblas-openmp-0:0.3.9-1.fc32.aarch64\n - poppler-devel-0:0.84.0-2.fc32.s390x\n - gtkmm30-0:3.24.2-2.fc32.armv7hl\n - boost-timer-0:1.69.0-14.fc32.armv7hl\n - polkit-0:0.116-7.fc32.i686\n - boost-static-0:1.69.0-14.fc32.i686\n - libgdata-0:0.17.12-1.fc32.aarch64\n - libpeas-devel-0:1.26.0-1.fc32.x86_64\n - wxGTK3-devel-0:3.0.4-13.fc32.s390x\n - evolution-data-server-langpacks-0:3.36.1-1.fc32.noarch\n - boost-test-0:1.69.0-14.fc32.s390x\n - gtksourceview3-0:3.24.11-3.fc32.armv7hl\n - libical-0:3.0.8-1.fc32.s390x\n - gspell-0:1.8.3-2.fc32.ppc64le\n - wxBase3-0:3.0.4-13.fc32.s390x\n - libsigc++20-devel-0:2.10.3-1.fc32.s390x\n - openjpeg2-tools-0:2.3.1-6.fc32.s390x\n - libijs-doc-0:0.35-11.fc32.noarch\n - flatpak-runtime-config-0:32-1.fc32.i686\n - libical-0:3.0.8-1.fc32.ppc64le\n - polkit-libs-0:0.116-7.fc32.s390x\n - libgdata-0:0.17.12-1.fc32.armv7hl\n - compat-wxGTK3-gtk2-media-0:3.0.4-13.fc32.aarch64\n - dbus-glib-devel-0:0.110-7.fc32.s390x\n - ghostscript-tools-printing-0:9.50-1.fc32.ppc64le\n - boost-jam-0:1.69.0-14.fc32.armv7hl\n - boost-log-0:1.69.0-14.fc32.i686\n - glew-devel-0:2.1.0-6.fc32.ppc64le\n - gtkmm30-devel-0:3.24.2-2.fc32.armv7hl\n - gd-0:2.3.0-1.fc32.ppc64le\n - poppler-glib-devel-0:0.84.0-2.fc32.s390x\n - geocode-glib-0:3.26.2-1.fc32.x86_64\n - boost-wave-0:1.69.0-14.fc32.ppc64le\n - jbig2dec-0:0.17-4.fc32.s390x\n - libmspack-0:0.10.1-0.3.alpha.fc32.aarch64\n - libimagequant-0:2.12.6-2.fc32.aarch64\n - startup-notification-0:0.12-19.fc32.ppc64le\n - ghostscript-tools-dvipdf-0:9.50-1.fc32.s390x\n - dbus-glib-0:0.110-7.fc32.s390x\n - libGLEW-0:2.1.0-6.fc32.ppc64le\n - openblas-serial-0:0.3.9-1.fc32.x86_64\n - boost-python3-0:1.69.0-14.fc32.s390x\n - libsigc++20-devel-0:2.10.3-1.fc32.armv7hl\n - ghostscript-0:9.50-1.fc32.i686\n - cairomm-0:1.12.0-12.fc32.x86_64\n - atkmm-0:2.24.3-4.fc32.i686\n - poppler-glib-devel-0:0.84.0-2.fc32.aarch64\n - libfontenc-0:1.1.3-12.fc32.ppc64le\n - urw-base35-nimbus-mono-ps-fonts-0:20170801-14.fc32.noarch\n - boost-test-0:1.69.0-14.fc32.armv7hl\n - libgdata-devel-0:0.17.12-1.fc32.i686\n - pangomm-devel-0:2.42.1-1.fc32.aarch64\n - OpenEXR-libs-0:2.3.0-5.fc32.aarch64\n - openblas-serial64_-0:0.3.9-1.fc32.aarch64\n - startup-notification-devel-0:0.12-19.fc32.i686\n - gnome-online-accounts-0:3.36.0-1.fc32.ppc64le\n - openblas-0:0.3.9-1.fc32.x86_64\n - adobe-mappings-cmap-devel-0:20171205-7.fc32.noarch\n - boost-locale-0:1.69.0-14.fc32.s390x\n - poppler-data-devel-0:0.4.9-5.fc32.noarch\n - boost-coroutine-0:1.69.0-14.fc32.ppc64le\n - boost-container-0:1.69.0-14.fc32.x86_64\n - gspell-0:1.8.3-2.fc32.aarch64\n - pangomm-0:2.42.1-1.fc32.armv7hl\n - poppler-utils-0:0.84.0-2.fc32.s390x\n - poppler-glib-0:0.84.0-2.fc32.i686\n - liboauth-devel-0:1.0.3-14.fc32.ppc64le\n - gd-devel-0:2.3.0-1.fc32.i686\n - boost-atomic-0:1.69.0-14.fc32.ppc64le\n - libical-glib-devel-0:3.0.8-1.fc32.s390x\n - jbig2dec-libs-0:0.17-4.fc32.ppc64le\n - evolution-data-server-0:3.36.1-1.fc32.aarch64\n - boost-graph-0:1.69.0-14.fc32.aarch64\n - libidn-devel-0:1.35-7.fc32.s390x\n - openjpeg2-tools-0:2.3.1-6.fc32.i686\n - wxGTK3-webview-0:3.0.4-13.fc32.s390x\n - dbus-glib-0:0.110-7.fc32.aarch64\n - compat-wxGTK3-gtk2-gl-0:3.0.4-13.fc32.armv7hl\n - flatpak-rpm-macros-0:32-2.fc32.i686\n - pangomm-devel-0:2.42.1-1.fc32.armv7hl\n - wxGTK3-media-0:3.0.4-13.fc32.s390x\n - boost-log-0:1.69.0-14.fc32.ppc64le\n - gnome-desktop3-devel-0:3.36.1-1.fc32.armv7hl\n - boost-devel-0:1.69.0-14.fc32.armv7hl\n - glibmm24-devel-0:2.64.2-1.fc32.i686\n - openblas-devel-0:0.3.9-1.fc32.aarch64\n - gd-devel-0:2.3.0-1.fc32.aarch64\n - exiv2-0:0.27.2-2.fc32.s390x\n - boost-thread-0:1.69.0-14.fc32.i686\n - jbig2dec-devel-0:0.17-4.fc32.i686\n - libical-0:3.0.8-1.fc32.armv7hl\n - gd-progs-0:2.3.0-1.fc32.i686\n - evolution-data-server-0:3.36.1-1.fc32.ppc64le\n - SDL_image-0:1.2.12-23.fc32.ppc64le\n - gsl-0:2.6-2.fc32.i686\n - liboauth-devel-0:1.0.3-14.fc32.i686\n - gtksourceview3-devel-0:3.24.11-3.fc32.s390x\n - boost-chrono-0:1.69.0-14.fc32.ppc64le\n - gd-0:2.3.0-1.fc32.aarch64\n - boost-numpy3-0:1.69.0-14.fc32.i686\n - boost-atomic-0:1.69.0-14.fc32.x86_64\n - openblas-static-0:0.3.9-1.fc32.ppc64le\n - openblas-threads-0:0.3.9-1.fc32.i686\n - cairomm-devel-0:1.12.0-12.fc32.s390x\n - libmspack-0:0.10.1-0.3.alpha.fc32.armv7hl\n - openjpeg2-devel-0:2.3.1-6.fc32.armv7hl\n - exiv2-0:0.27.2-2.fc32.ppc64le\n - ilmbase-0:2.3.0-4.fc32.x86_64\n - boost-python3-0:1.69.0-14.fc32.ppc64le\n - wxGTK3-webview-0:3.0.4-13.fc32.armv7hl\n - evolution-data-server-devel-0:3.36.1-1.fc32.aarch64\n - openblas-threads64-0:0.3.9-1.fc32.aarch64\n - gtksourceview3-tests-0:3.24.11-3.fc32.armv7hl\n - openjpeg2-devel-0:2.3.1-6.fc32.ppc64le\n - boost-serialization-0:1.69.0-14.fc32.ppc64le\n - flatpak-rpm-macros-0:32-2.fc32.armv7hl\n - openblas-devel-0:0.3.9-1.fc32.s390x\n - gnome-online-accounts-devel-0:3.36.0-1.fc32.aarch64\n - gd-devel-0:2.3.0-1.fc32.armv7hl\n - openjpeg2-tools-0:2.3.1-6.fc32.ppc64le\n - dbus-glib-devel-0:0.110-7.fc32.i686\n - ghostscript-tools-dvipdf-0:9.50-1.fc32.aarch64\n - boost-numpy3-0:1.69.0-14.fc32.s390x\n - OpenEXR-libs-0:2.3.0-5.fc32.i686\n - wxGTK3-media-0:3.0.4-13.fc32.ppc64le\n - openblas-static-0:0.3.9-1.fc32.s390x\n - libijs-0:0.35-11.fc32.ppc64le\n - cairomm-devel-0:1.12.0-12.fc32.aarch64\n - startup-notification-0:0.12-19.fc32.x86_64\n - SDL-0:1.2.15-43.fc32.s390x\n - openblas-threads64_-0:0.3.9-1.fc32.aarch64\n - poppler-qt-devel-0:0.84.0-2.fc32.armv7hl\n - ghostscript-tools-fonts-0:9.50-1.fc32.armv7hl\n - libimagequant-devel-0:2.12.6-2.fc32.aarch64\n - compat-wxGTK3-gtk2-0:3.0.4-13.fc32.ppc64le\n - urw-base35-nimbus-roman-fonts-0:20170801-14.fc32.noarch\n - startup-notification-devel-0:0.12-19.fc32.armv7hl\n - libmspack-0:0.10.1-0.3.alpha.fc32.i686\n - libpeas-gtk-0:1.26.0-1.fc32.i686\n - glibmm24-devel-0:2.64.2-1.fc32.aarch64\n - libhandy-0:0.0.13-2.fc32.x86_64\n - ghostscript-tools-fonts-0:9.50-1.fc32.x86_64\n - libhandy-0:0.0.13-2.fc32.armv7hl\n - libidn-0:1.35-7.fc32.aarch64\n - exiv2-libs-0:0.27.2-2.fc32.s390x\n - poppler-qt5-0:0.84.0-2.fc32.s390x\n - boost-filesystem-0:1.69.0-14.fc32.armv7hl\n - libidn-devel-0:1.35-7.fc32.aarch64\n - SDL-static-0:1.2.15-43.fc32.armv7hl\n - wxGTK3-gl-0:3.0.4-13.fc32.s390x\n - libpeas-loader-python3-0:1.26.0-1.fc32.aarch64\n - boost-locale-0:1.69.0-14.fc32.i686\n - boost-atomic-0:1.69.0-14.fc32.i686\n - libpeas-gtk-0:1.26.0-1.fc32.aarch64\n - atkmm-devel-0:2.24.3-4.fc32.s390x\n - wxBase3-devel-0:3.0.4-13.fc32.aarch64\n - libgdata-0:0.17.12-1.fc32.s390x\n - boost-static-0:1.69.0-14.fc32.aarch64\n - gnome-online-accounts-devel-0:3.36.0-1.fc32.x86_64\n - poppler-qt-devel-0:0.84.0-2.fc32.s390x\n - glibmm24-devel-0:2.64.2-1.fc32.ppc64le\n - libgweather-0:3.36.0-1.fc32.i686\n - gnome-desktop3-devel-0:3.36.1-1.fc32.ppc64le\n - urw-base35-c059-fonts-0:20170801-14.fc32.noarch\n - jbig2dec-devel-0:0.17-4.fc32.ppc64le\n - pangomm-0:2.42.1-1.fc32.aarch64\n - poppler-utils-0:0.84.0-2.fc32.ppc64le\n - libpaper-0:1.1.24-26.fc32.ppc64le\n - libpaper-0:1.1.24-26.fc32.i686\n - liboauth-devel-0:1.0.3-14.fc32.armv7hl\n - gtkmm30-0:3.24.2-2.fc32.x86_64\n - openblas-openmp-0:0.3.9-1.fc32.i686\n - evolution-data-server-perl-0:3.36.1-1.fc32.ppc64le\n - boost-container-0:1.69.0-14.fc32.aarch64\n - boost-math-0:1.69.0-14.fc32.armv7hl\n - exiv2-libs-0:0.27.2-2.fc32.x86_64\n - openblas-serial-0:0.3.9-1.fc32.i686\n - libpeas-0:1.26.0-1.fc32.ppc64le\n - poppler-qt-0:0.84.0-2.fc32.ppc64le\n - exiv2-libs-0:0.27.2-2.fc32.i686\n - libfontenc-0:1.1.3-12.fc32.i686\n - liboauth-0:1.0.3-14.fc32.ppc64le\n - libfontenc-0:1.1.3-12.fc32.aarch64\n - libdazzle-0:3.36.0-1.fc32.aarch64\n - gd-progs-0:2.3.0-1.fc32.armv7hl\n - libwmf-0:0.2.12-3.fc32.armv7hl\n - libijs-devel-0:0.35-11.fc32.x86_64\n - wxGTK3-devel-0:3.0.4-13.fc32.i686\n - SDL_image-devel-0:1.2.12-23.fc32.s390x\n - poppler-0:0.84.0-2.fc32.aarch64\n - boost-0:1.69.0-14.fc32.ppc64le\n - wxGTK3-gl-0:3.0.4-13.fc32.armv7hl\n - flatpak-rpm-macros-0:32-2.fc32.ppc64le\n - libical-glib-0:3.0.8-1.fc32.x86_64\n - jbig2dec-devel-0:0.17-4.fc32.x86_64\n - openjpeg2-tools-0:2.3.1-6.fc32.x86_64\n - libsigc++20-devel-0:2.10.3-1.fc32.x86_64\n - startup-notification-0:0.12-19.fc32.s390x\n - libijs-devel-0:0.35-11.fc32.armv7hl\n - boost-devel-0:1.69.0-14.fc32.aarch64\n - SDL_image-0:1.2.12-23.fc32.aarch64\n - ghostscript-core-0:9.50-1.fc32.s390x\n - SDL_image-0:1.2.12-23.fc32.i686\n - libpeas-devel-0:1.26.0-1.fc32.aarch64\n - libical-devel-0:3.0.8-1.fc32.armv7hl\n - evolution-data-server-tests-0:3.36.1-1.fc32.i686\n - boost-thread-0:1.69.0-14.fc32.ppc64le\n - atkmm-devel-0:2.24.3-4.fc32.i686\n - jbig2dec-0:0.17-4.fc32.x86_64\n - boost-random-0:1.69.0-14.fc32.x86_64\n - poppler-qt5-devel-0:0.84.0-2.fc32.ppc64le\n - libsigc++20-0:2.10.3-1.fc32.x86_64\n - SDL-devel-0:1.2.15-43.fc32.ppc64le\n - evolution-data-server-tests-0:3.36.1-1.fc32.s390x\n - openblas-threads-0:0.3.9-1.fc32.aarch64\n - libpeas-gtk-0:1.26.0-1.fc32.s390x\n - libgs-0:9.50-1.fc32.armv7hl\n - glibmm24-devel-0:2.64.2-1.fc32.s390x\n - SDL_image-0:1.2.12-23.fc32.armv7hl\n - boost-graph-0:1.69.0-14.fc32.i686\n - libpeas-loader-python3-0:1.26.0-1.fc32.i686\n - compat-wxGTK3-gtk2-0:3.0.4-13.fc32.s390x\n - boost-python3-devel-0:1.69.0-14.fc32.ppc64le\n - poppler-glib-0:0.84.0-2.fc32.ppc64le\n - SDL-static-0:1.2.15-43.fc32.ppc64le\n - libmspack-devel-0:0.10.1-0.3.alpha.fc32.x86_64\n - gnome-desktop3-0:3.36.1-1.fc32.ppc64le\n - boost-doc-0:1.69.0-14.fc32.s390x\n - ghostscript-gtk-0:9.50-1.fc32.aarch64\n - ghostscript-core-0:9.50-1.fc32.armv7hl\n - boost-stacktrace-0:1.69.0-14.fc32.i686\n - boost-math-0:1.69.0-14.fc32.s390x\n - poppler-glib-doc-0:0.84.0-2.fc32.noarch\n - ghostscript-0:9.50-1.fc32.armv7hl\n - dbus-glib-devel-0:0.110-7.fc32.aarch64\n - adobe-mappings-cmap-0:20171205-7.fc32.noarch\n - libmspack-0:0.10.1-0.3.alpha.fc32.x86_64\n - libgweather-devel-0:3.36.0-1.fc32.armv7hl\n - gnome-online-accounts-devel-0:3.36.0-1.fc32.ppc64le\n - boost-log-0:1.69.0-14.fc32.aarch64\n - pangomm-0:2.42.1-1.fc32.ppc64le\n - boost-filesystem-0:1.69.0-14.fc32.x86_64\n - ghostscript-gtk-0:9.50-1.fc32.x86_64\n - urw-base35-fonts-devel-0:20170801-14.fc32.noarch\n - geocode-glib-devel-0:3.26.2-1.fc32.i686\n - libdazzle-0:3.36.0-1.fc32.x86_64\n - atkmm-devel-0:2.24.3-4.fc32.armv7hl\n - libgs-devel-0:9.50-1.fc32.x86_64\n - compat-wxGTK3-gtk2-0:3.0.4-13.fc32.i686\n - boost-type_erasure-0:1.69.0-14.fc32.x86_64\n - wxBase3-0:3.0.4-13.fc32.ppc64le\n - openblas-serial-0:0.3.9-1.fc32.ppc64le\n - openblas-openmp-0:0.3.9-1.fc32.armv7hl\n - adobe-mappings-cmap-deprecated-0:20171205-7.fc32.noarch\n - libgs-devel-0:9.50-1.fc32.i686\n - gtkmm30-0:3.24.2-2.fc32.ppc64le\n - boost-chrono-0:1.69.0-14.fc32.s390x\n - openblas-openmp64_-0:0.3.9-1.fc32.ppc64le\n - evolution-data-server-0:3.36.1-1.fc32.s390x\n - boost-doc-0:1.69.0-14.fc32.armv7hl\n - boost-devel-0:1.69.0-14.fc32.ppc64le\n - boost-atomic-0:1.69.0-14.fc32.s390x\n - libpeas-loader-python3-0:1.26.0-1.fc32.s390x\n - dbus-glib-0:0.110-7.fc32.i686\n - boost-test-0:1.69.0-14.fc32.i686\n - compat-wxGTK3-gtk2-devel-0:3.0.4-13.fc32.ppc64le\n - boost-doc-0:1.69.0-14.fc32.i686\n - openblas-threads64_-0:0.3.9-1.fc32.ppc64le\n - gtksourceview3-devel-0:3.24.11-3.fc32.armv7hl\n - flatpak-runtime-config-0:32-1.fc32.armv7hl\n - boost-static-0:1.69.0-14.fc32.ppc64le\n - flatpak-runtime-config-0:32-1.fc32.x86_64\n - libwmf-0:0.2.12-3.fc32.aarch64\n - ghostscript-x11-0:9.50-1.fc32.ppc64le\n - libijs-devel-0:0.35-11.fc32.aarch64\n - boost-context-0:1.69.0-14.fc32.ppc64le\n - dbus-glib-0:0.110-7.fc32.x86_64\n - libwmf-devel-0:0.2.12-3.fc32.aarch64\n - xorg-x11-font-utils-1:7.5-44.fc32.ppc64le\n - wxGTK3-devel-0:3.0.4-13.fc32.ppc64le\n - poppler-qt-devel-0:0.84.0-2.fc32.i686\n - openblas-threads-0:0.3.9-1.fc32.armv7hl\n - gnome-desktop3-devel-0:3.36.1-1.fc32.x86_64\n - gtkmm30-devel-0:3.24.2-2.fc32.x86_64\n - OpenEXR-doc-0:2.3.0-5.fc32.ppc64le\n - boost-system-0:1.69.0-14.fc32.i686\n - ghostscript-tools-fonts-0:9.50-1.fc32.aarch64\n - OpenEXR-0:2.3.0-5.fc32.armv7hl\n - poppler-devel-0:0.84.0-2.fc32.ppc64le\n - ghostscript-gtk-0:9.50-1.fc32.i686\n - boost-random-0:1.69.0-14.fc32.armv7hl\n - libdazzle-0:3.36.0-1.fc32.ppc64le\n - glew-devel-0:2.1.0-6.fc32.i686\n - boost-stacktrace-0:1.69.0-14.fc32.x86_64\n - libgweather-devel-0:3.36.0-1.fc32.s390x\n - SDL-0:1.2.15-43.fc32.ppc64le\n - libpeas-0:1.26.0-1.fc32.i686\n - dbus-glib-devel-0:0.110-7.fc32.ppc64le\n - polkit-libs-0:0.116-7.fc32.x86_64\n - SDL_image-0:1.2.12-23.fc32.s390x\n - wxBase3-devel-0:3.0.4-13.fc32.ppc64le\n - boost-wave-0:1.69.0-14.fc32.i686\n - ghostscript-tools-printing-0:9.50-1.fc32.x86_64\n - libGLEW-0:2.1.0-6.fc32.s390x\n - gnome-online-accounts-0:3.36.0-1.fc32.x86_64\n - boost-stacktrace-0:1.69.0-14.fc32.armv7hl\n - libwmf-lite-0:0.2.12-3.fc32.armv7hl\n - libwmf-0:0.2.12-3.fc32.i686\n - startup-notification-devel-0:0.12-19.fc32.aarch64\n - boost-test-0:1.69.0-14.fc32.aarch64\n - libpeas-devel-0:1.26.0-1.fc32.armv7hl\n - boost-fiber-0:1.69.0-14.fc32.armv7hl\n - openblas-serial-0:0.3.9-1.fc32.aarch64\n - jbig2dec-0:0.17-4.fc32.ppc64le\n - wxBase3-devel-0:3.0.4-13.fc32.s390x\n - dbus-glib-0:0.110-7.fc32.ppc64le\n - wxGTK3-0:3.0.4-13.fc32.i686\n - ghostscript-tools-printing-0:9.50-1.fc32.s390x\n - ghostscript-0:9.50-1.fc32.x86_64\n - libdazzle-devel-0:3.36.0-1.fc32.armv7hl\n - gnome-desktop3-devel-0:3.36.1-1.fc32.aarch64\n - ilmbase-devel-0:2.3.0-4.fc32.i686\n - libical-glib-0:3.0.8-1.fc32.i686\n - ghostscript-doc-0:9.50-1.fc32.noarch\n - atkmm-0:2.24.3-4.fc32.x86_64\n - wxGTK3-0:3.0.4-13.fc32.ppc64le\n - boost-doc-0:1.69.0-14.fc32.x86_64\n - openblas-serial64_-0:0.3.9-1.fc32.x86_64\n - libimagequant-0:2.12.6-2.fc32.s390x\n - atkmm-0:2.24.3-4.fc32.armv7hl\n - libwmf-devel-0:0.2.12-3.fc32.i686\n - libsigc++20-0:2.10.3-1.fc32.armv7hl\n - wxGTK3-media-0:3.0.4-13.fc32.armv7hl\n - boost-locale-0:1.69.0-14.fc32.aarch64\n - poppler-qt-devel-0:0.84.0-2.fc32.aarch64\n - pangomm-doc-0:2.42.1-1.fc32.noarch\n - poppler-qt5-0:0.84.0-2.fc32.armv7hl\n - cairomm-devel-0:1.12.0-12.fc32.armv7hl\n - wxGTK3-0:3.0.4-13.fc32.aarch64\n - openblas-openmp64-0:0.3.9-1.fc32.x86_64\n - SDL_image-0:1.2.12-23.fc32.x86_64\n - libmspack-0:0.10.1-0.3.alpha.fc32.ppc64le\n - compat-wxGTK3-gtk2-media-0:3.0.4-13.fc32.s390x\n - gsl-devel-0:2.6-2.fc32.aarch64\n - libwmf-lite-0:0.2.12-3.fc32.i686\n - openblas-openmp-0:0.3.9-1.fc32.ppc64le\n - boost-0:1.69.0-14.fc32.s390x\n - boost-system-0:1.69.0-14.fc32.x86_64\n - boost-stacktrace-0:1.69.0-14.fc32.s390x\n - polkit-libs-0:0.116-7.fc32.armv7hl\n - glibmm24-0:2.64.2-1.fc32.i686\n - boost-program-options-0:1.69.0-14.fc32.x86_64\n - gd-progs-0:2.3.0-1.fc32.x86_64\n - libmspack-devel-0:0.10.1-0.3.alpha.fc32.i686\n - openblas-openmp64_-0:0.3.9-1.fc32.aarch64\n - libpeas-devel-0:1.26.0-1.fc32.i686\n - geocode-glib-0:3.26.2-1.fc32.i686\n - evolution-data-server-devel-0:3.36.1-1.fc32.ppc64le\n - boost-regex-0:1.69.0-14.fc32.armv7hl\n - boost-system-0:1.69.0-14.fc32.ppc64le\n - boost-examples-0:1.69.0-14.fc32.x86_64\n - boost-system-0:1.69.0-14.fc32.aarch64\n - urw-base35-d050000l-fonts-0:20170801-14.fc32.noarch\n - compat-wxGTK3-gtk2-devel-0:3.0.4-13.fc32.aarch64\n - gtkmm30-0:3.24.2-2.fc32.i686\n - gtkmm30-devel-0:3.24.2-2.fc32.aarch64\n - boost-program-options-0:1.69.0-14.fc32.i686\n - openblas-openmp64_-0:0.3.9-1.fc32.s390x\n - poppler-cpp-devel-0:0.84.0-2.fc32.armv7hl\n - compat-wxGTK3-gtk2-devel-0:3.0.4-13.fc32.s390x\n - urw-base35-standard-symbols-ps-fonts-0:20170801-14.fc32.noarch\n - poppler-cpp-0:0.84.0-2.fc32.x86_64\n - compat-wxGTK3-gtk2-gl-0:3.0.4-13.fc32.aarch64\n - libwmf-devel-0:0.2.12-3.fc32.armv7hl\n - boost-random-0:1.69.0-14.fc32.aarch64\n - gspell-devel-0:1.8.3-2.fc32.s390x\n - boost-container-0:1.69.0-14.fc32.i686\n - poppler-glib-devel-0:0.84.0-2.fc32.x86_64\n - gnome-desktop3-tests-0:3.36.1-1.fc32.s390x\n - libgdata-devel-0:0.17.12-1.fc32.ppc64le\n - libgweather-devel-0:3.36.0-1.fc32.i686\n - boost-examples-0:1.69.0-14.fc32.armv7hl\n - jbig2dec-libs-0:0.17-4.fc32.armv7hl\n - gtkmm30-0:3.24.2-2.fc32.aarch64\n - flatpak-rpm-macros-0:32-2.fc32.x86_64\n - boost-locale-0:1.69.0-14.fc32.ppc64le\n - evolution-data-server-devel-0:3.36.1-1.fc32.s390x\n - boost-fiber-0:1.69.0-14.fc32.ppc64le\n - gtkmm30-0:3.24.2-2.fc32.s390x\n - evolution-data-server-devel-0:3.36.1-1.fc32.x86_64\n - openblas-serial64_-0:0.3.9-1.fc32.ppc64le\n - flatpak-runtime-config-0:32-1.fc32.s390x\n - gd-progs-0:2.3.0-1.fc32.aarch64\n - poppler-glib-0:0.84.0-2.fc32.s390x\n - openblas-openmp-0:0.3.9-1.fc32.x86_64\n - exiv2-libs-0:0.27.2-2.fc32.aarch64\n - gsl-devel-0:2.6-2.fc32.ppc64le\n - cairomm-devel-0:1.12.0-12.fc32.x86_64\n - glew-devel-0:2.1.0-6.fc32.aarch64\n - openjpeg2-devel-0:2.3.1-6.fc32.i686\n - ghostscript-tools-printing-0:9.50-1.fc32.i686\n - boost-serialization-0:1.69.0-14.fc32.s390x\n - openblas-openmp64-0:0.3.9-1.fc32.s390x\n - libfontenc-devel-0:1.1.3-12.fc32.armv7hl\n - gspell-devel-0:1.8.3-2.fc32.i686\n - libGLEW-0:2.1.0-6.fc32.aarch64\n - gnome-desktop3-tests-0:3.36.1-1.fc32.i686\n - ghostscript-tools-fonts-0:9.50-1.fc32.ppc64le\n - polkit-devel-0:0.116-7.fc32.armv7hl\n - libpaper-devel-0:1.1.24-26.fc32.ppc64le\n - gtksourceview3-tests-0:3.24.11-3.fc32.i686\n - ghostscript-x11-0:9.50-1.fc32.aarch64\n - boost-python3-devel-0:1.69.0-14.fc32.s390x\n - glew-0:2.1.0-6.fc32.x86_64\n - dbus-glib-0:0.110-7.fc32.armv7hl\n - openjpeg2-tools-0:2.3.1-6.fc32.aarch64\n - ilmbase-0:2.3.0-4.fc32.aarch64\n - openblas-Rblas-0:0.3.9-1.fc32.i686\n - wxGTK3-devel-0:3.0.4-13.fc32.x86_64\n - libical-devel-0:3.0.8-1.fc32.i686\n - boost-python3-0:1.69.0-14.fc32.i686\n - geocode-glib-0:3.26.2-1.fc32.aarch64\n - boost-coroutine-0:1.69.0-14.fc32.i686\n - boost-iostreams-0:1.69.0-14.fc32.ppc64le\n - boost-coroutine-0:1.69.0-14.fc32.x86_64\n - ghostscript-x11-0:9.50-1.fc32.i686\n - pangomm-devel-0:2.42.1-1.fc32.i686\n - ghostscript-tools-fonts-0:9.50-1.fc32.i686\n - libical-glib-0:3.0.8-1.fc32.s390x\n - compat-wxGTK3-gtk2-media-0:3.0.4-13.fc32.i686\n - wxGTK3-0:3.0.4-13.fc32.x86_64\n - gd-0:2.3.0-1.fc32.i686\n - boost-contract-0:1.69.0-14.fc32.s390x\n - openblas-devel-0:0.3.9-1.fc32.x86_64\n - boost-type_erasure-0:1.69.0-14.fc32.i686\n - boost-chrono-0:1.69.0-14.fc32.aarch64\n - gtkmm30-devel-0:3.24.2-2.fc32.i686\n - gnome-desktop3-tests-0:3.36.1-1.fc32.ppc64le\n - boost-contract-0:1.69.0-14.fc32.x86_64\n - boost-numpy3-0:1.69.0-14.fc32.armv7hl\n - gspell-devel-0:1.8.3-2.fc32.ppc64le\n - exiv2-devel-0:0.27.2-2.fc32.s390x\n - libhandy-devel-0:0.0.13-2.fc32.ppc64le\n - libsigc++20-doc-0:2.10.3-1.fc32.noarch\n - gnome-desktop3-0:3.36.1-1.fc32.i686\n - urw-base35-fonts-0:20170801-14.fc32.noarch\n - boost-iostreams-0:1.69.0-14.fc32.i686\n - wxGTK3-gl-0:3.0.4-13.fc32.aarch64\n - boost-fiber-0:1.69.0-14.fc32.aarch64\n - exiv2-doc-0:0.27.2-2.fc32.noarch\n - gnome-online-accounts-devel-0:3.36.0-1.fc32.i686\n - boost-program-options-0:1.69.0-14.fc32.armv7hl\n - boost-jam-0:1.69.0-14.fc32.aarch64\n - libfontenc-0:1.1.3-12.fc32.armv7hl\n - SDL-static-0:1.2.15-43.fc32.x86_64\n - boost-timer-0:1.69.0-14.fc32.ppc64le\n - gsl-0:2.6-2.fc32.aarch64\n - gtksourceview3-0:3.24.11-3.fc32.ppc64le\n - boost-chrono-0:1.69.0-14.fc32.armv7hl\n - boost-program-options-0:1.69.0-14.fc32.aarch64\n - poppler-qt-0:0.84.0-2.fc32.s390x\n - polkit-docs-0:0.116-7.fc32.noarch\n - evolution-data-server-0:3.36.1-1.fc32.armv7hl\n - wxGTK3-0:3.0.4-13.fc32.armv7hl\n - urw-base35-nimbus-sans-fonts-0:20170801-14.fc32.noarch\n - libsigc++20-0:2.10.3-1.fc32.ppc64le\n - boost-static-0:1.69.0-14.fc32.s390x\n - poppler-cpp-devel-0:0.84.0-2.fc32.i686\n - poppler-glib-0:0.84.0-2.fc32.x86_64\n - gtksourceview3-devel-0:3.24.11-3.fc32.aarch64\n - SDL-0:1.2.15-43.fc32.aarch64\n - openblas-serial64-0:0.3.9-1.fc32.s390x\n - gtksourceview3-0:3.24.11-3.fc32.x86_64\n - exiv2-0:0.27.2-2.fc32.aarch64\n - gtksourceview3-devel-0:3.24.11-3.fc32.x86_64\n - libpeas-0:1.26.0-1.fc32.armv7hl\n - boost-locale-0:1.69.0-14.fc32.x86_64\n - libidn-devel-0:1.35-7.fc32.ppc64le\n - boost-wave-0:1.69.0-14.fc32.armv7hl\n - boost-stacktrace-0:1.69.0-14.fc32.ppc64le\n - glibmm24-0:2.64.2-1.fc32.s390x\n - libpeas-gtk-0:1.26.0-1.fc32.armv7hl\n - urw-base35-bookman-fonts-0:20170801-14.fc32.noarch\n - urw-base35-p052-fonts-0:20170801-14.fc32.noarch\n - boost-context-0:1.69.0-14.fc32.x86_64\n - libpaper-devel-0:1.1.24-26.fc32.armv7hl\n - OpenEXR-devel-0:2.3.0-5.fc32.armv7hl\n - libGLEW-0:2.1.0-6.fc32.armv7hl\n - xorg-x11-font-utils-1:7.5-44.fc32.s390x\n - poppler-utils-0:0.84.0-2.fc32.aarch64\n - ghostscript-gtk-0:9.50-1.fc32.ppc64le\n - boost-thread-0:1.69.0-14.fc32.x86_64\n - ghostscript-tools-dvipdf-0:9.50-1.fc32.i686\n - google-droid-fonts-all-0:20200215-3.fc32.noarch\n - wxGTK3-media-0:3.0.4-13.fc32.i686\n - glew-0:2.1.0-6.fc32.armv7hl\n - boost-random-0:1.69.0-14.fc32.i686\n - boost-log-0:1.69.0-14.fc32.s390x\n - evolution-data-server-0:3.36.1-1.fc32.x86_64\n - libdazzle-0:3.36.0-1.fc32.armv7hl\n - flatpak-rpm-macros-0:32-2.fc32.aarch64\n - libmspack-devel-0:0.10.1-0.3.alpha.fc32.s390x\n - exiv2-libs-0:0.27.2-2.fc32.ppc64le\n - boost-filesystem-0:1.69.0-14.fc32.ppc64le\n - openblas-static-0:0.3.9-1.fc32.x86_64\n - OpenEXR-0:2.3.0-5.fc32.s390x\n - libpeas-0:1.26.0-1.fc32.s390x\n - poppler-cpp-0:0.84.0-2.fc32.aarch64\n - liboauth-0:1.0.3-14.fc32.x86_64\n - poppler-utils-0:0.84.0-2.fc32.armv7hl\n - boost-iostreams-0:1.69.0-14.fc32.aarch64\n - poppler-cpp-devel-0:0.84.0-2.fc32.aarch64\n - openblas-threads-0:0.3.9-1.fc32.ppc64le\n - boost-doc-0:1.69.0-14.fc32.ppc64le\n - boost-python3-devel-0:1.69.0-14.fc32.x86_64\n - poppler-utils-0:0.84.0-2.fc32.x86_64\n - libdazzle-devel-0:3.36.0-1.fc32.i686\n - wxGTK3-devel-0:3.0.4-13.fc32.armv7hl\n - libimagequant-devel-0:2.12.6-2.fc32.i686\n - boost-iostreams-0:1.69.0-14.fc32.x86_64\n - openjpeg2-0:2.3.1-6.fc32.armv7hl\n - libgs-devel-0:9.50-1.fc32.aarch64\n - openblas-serial-0:0.3.9-1.fc32.s390x\n - OpenEXR-libs-0:2.3.0-5.fc32.ppc64le\n - boost-container-0:1.69.0-14.fc32.armv7hl\n - boost-container-0:1.69.0-14.fc32.s390x\n - glibmm24-0:2.64.2-1.fc32.armv7hl\n - glew-0:2.1.0-6.fc32.s390x\n - gnome-desktop3-devel-0:3.36.1-1.fc32.i686\n - boost-serialization-0:1.69.0-14.fc32.i686\n - openblas-threads-0:0.3.9-1.fc32.s390x\n - boost-log-0:1.69.0-14.fc32.armv7hl\n - boost-examples-0:1.69.0-14.fc32.s390x\n - ghostscript-tools-dvipdf-0:9.50-1.fc32.armv7hl\n - gd-0:2.3.0-1.fc32.x86_64\n - libical-glib-0:3.0.8-1.fc32.armv7hl\n - libijs-0:0.35-11.fc32.i686\n - evolution-data-server-devel-0:3.36.1-1.fc32.armv7hl\n - libdazzle-devel-0:3.36.0-1.fc32.aarch64\n - flatpak-runtime-config-0:32-1.fc32.ppc64le\n - boost-wave-0:1.69.0-14.fc32.s390x\n - cairomm-0:1.12.0-12.fc32.ppc64le\n - openjpeg2-0:2.3.1-6.fc32.x86_64\n - libmspack-devel-0:0.10.1-0.3.alpha.fc32.ppc64le\n - libical-glib-devel-0:3.0.8-1.fc32.i686\n - libimagequant-devel-0:2.12.6-2.fc32.armv7hl\n - boost-regex-0:1.69.0-14.fc32.s390x\n - ghostscript-core-0:9.50-1.fc32.aarch64\n - gsl-devel-0:2.6-2.fc32.x86_64\n - polkit-libs-0:0.116-7.fc32.aarch64\n - libimagequant-0:2.12.6-2.fc32.i686\n - libgs-0:9.50-1.fc32.x86_64\n - gnome-desktop3-devel-0:3.36.1-1.fc32.s390x\n - boost-python3-0:1.69.0-14.fc32.x86_64\n - boost-doctools-0:1.69.0-14.fc32.aarch64\n - libdazzle-0:3.36.0-1.fc32.i686\n - gtkmm30-doc-0:3.24.2-2.fc32.noarch\n - OpenEXR-doc-0:2.3.0-5.fc32.i686\n - boost-static-0:1.69.0-14.fc32.x86_64\n - libhandy-0:0.0.13-2.fc32.i686\n - OpenEXR-0:2.3.0-5.fc32.x86_64\n - evolution-data-server-tests-0:3.36.1-1.fc32.ppc64le\n - boost-coroutine-0:1.69.0-14.fc32.armv7hl\n - libgweather-devel-0:3.36.0-1.fc32.ppc64le\n - boost-0:1.69.0-14.fc32.x86_64\n - atkmm-0:2.24.3-4.fc32.s390x\n - poppler-cpp-0:0.84.0-2.fc32.armv7hl\n - libical-glib-devel-0:3.0.8-1.fc32.armv7hl\n - ghostscript-0:9.50-1.fc32.s390x\n - geocode-glib-0:3.26.2-1.fc32.armv7hl\n - compat-wxGTK3-gtk2-gl-0:3.0.4-13.fc32.x86_64\n - ghostscript-gtk-0:9.50-1.fc32.s390x\n - wxGTK3-media-0:3.0.4-13.fc32.x86_64\n - boost-numpy3-0:1.69.0-14.fc32.ppc64le\n - atkmm-0:2.24.3-4.fc32.aarch64\n - libpaper-devel-0:1.1.24-26.fc32.i686\n - evolution-data-server-devel-0:3.36.1-1.fc32.i686\n - ghostscript-0:9.50-1.fc32.aarch64\n - boost-devel-0:1.69.0-14.fc32.i686\n - cairomm-0:1.12.0-12.fc32.s390x\n - libgdata-devel-0:0.17.12-1.fc32.s390x\n - boost-test-0:1.69.0-14.fc32.x86_64\n - poppler-glib-devel-0:0.84.0-2.fc32.armv7hl\n - ghostscript-x11-0:9.50-1.fc32.s390x\n - boost-doc-0:1.69.0-14.fc32.aarch64\n - poppler-qt5-0:0.84.0-2.fc32.ppc64le\n - gd-progs-0:2.3.0-1.fc32.s390x\n - libijs-devel-0:0.35-11.fc32.i686\n - liboauth-0:1.0.3-14.fc32.i686\n - poppler-0:0.84.0-2.fc32.x86_64\n - libpaper-0:1.1.24-26.fc32.armv7hl\n - gspell-doc-0:1.8.3-2.fc32.noarch\n - atkmm-devel-0:2.24.3-4.fc32.aarch64\n - ghostscript-tools-dvipdf-0:9.50-1.fc32.x86_64\n - libpeas-devel-0:1.26.0-1.fc32.ppc64le\n - boost-date-time-0:1.69.0-14.fc32.s390x\n - polkit-devel-0:0.116-7.fc32.aarch64\n - boost-regex-0:1.69.0-14.fc32.x86_64\n - exiv2-devel-0:0.27.2-2.fc32.x86_64\n - SDL-devel-0:1.2.15-43.fc32.aarch64\n - boost-filesystem-0:1.69.0-14.fc32.aarch64\n - flatpak-runtime-config-0:32-1.fc32.aarch64\n - libical-glib-doc-0:3.0.8-1.fc32.noarch\n - poppler-qt5-devel-0:0.84.0-2.fc32.aarch64\n - libpeas-loader-python3-0:1.26.0-1.fc32.x86_64\n - libimagequant-0:2.12.6-2.fc32.ppc64le\n - boost-jam-0:1.69.0-14.fc32.x86_64\n - gsl-devel-0:2.6-2.fc32.armv7hl\n - boost-chrono-0:1.69.0-14.fc32.x86_64\n - boost-serialization-0:1.69.0-14.fc32.x86_64\n - ilmbase-0:2.3.0-4.fc32.ppc64le\n - polkit-libs-0:0.116-7.fc32.i686\n - boost-regex-0:1.69.0-14.fc32.i686\n - boost-container-0:1.69.0-14.fc32.ppc64le\n - jbig2dec-libs-0:0.17-4.fc32.i686\n - boost-system-0:1.69.0-14.fc32.s390x\n - libpaper-0:1.1.24-26.fc32.aarch64\n - libgweather-0:3.36.0-1.fc32.ppc64le\n - openblas-serial64-0:0.3.9-1.fc32.x86_64\n - libical-glib-0:3.0.8-1.fc32.aarch64\n - gspell-0:1.8.3-2.fc32.i686\n - libical-devel-0:3.0.8-1.fc32.ppc64le\n - openblas-static-0:0.3.9-1.fc32.aarch64\n - libpeas-gtk-0:1.26.0-1.fc32.x86_64\n - glew-0:2.1.0-6.fc32.aarch64\n - ilmbase-0:2.3.0-4.fc32.armv7hl\n - libijs-0:0.35-11.fc32.armv7hl\n - libgdata-0:0.17.12-1.fc32.i686\n - atkmm-devel-0:2.24.3-4.fc32.x86_64\n - gtksourceview3-devel-0:3.24.11-3.fc32.ppc64le\n - OpenEXR-0:2.3.0-5.fc32.aarch64\n - libwmf-0:0.2.12-3.fc32.s390x\n - evolution-data-server-perl-0:3.36.1-1.fc32.i686\n - libmspack-0:0.10.1-0.3.alpha.fc32.s390x\n - libmspack-devel-0:0.10.1-0.3.alpha.fc32.aarch64\n - libgs-0:9.50-1.fc32.i686\n - adobe-mappings-pdf-devel-0:20180407-5.fc32.noarch\n - libpeas-devel-0:1.26.0-1.fc32.s390x\n - libwmf-lite-0:0.2.12-3.fc32.s390x\n - boost-type_erasure-0:1.69.0-14.fc32.aarch64\n - libimagequant-0:2.12.6-2.fc32.armv7hl\n - startup-notification-devel-0:0.12-19.fc32.ppc64le\n - liboauth-devel-0:1.0.3-14.fc32.s390x\n - openblas-openmp64-0:0.3.9-1.fc32.aarch64\n - libsigc++20-devel-0:2.10.3-1.fc32.ppc64le\n - dbus-glib-devel-0:0.110-7.fc32.armv7hl\n - boost-date-time-0:1.69.0-14.fc32.aarch64\n - SDL_image-devel-0:1.2.12-23.fc32.i686\n - poppler-qt-0:0.84.0-2.fc32.i686\n - atkmm-devel-0:2.24.3-4.fc32.ppc64le\n - libidn-0:1.35-7.fc32.i686\n - libhandy-devel-0:0.0.13-2.fc32.i686\n - poppler-qt5-0:0.84.0-2.fc32.aarch64\n - jbig2dec-0:0.17-4.fc32.i686\n - gnome-desktop3-tests-0:3.36.1-1.fc32.armv7hl\n - poppler-cpp-0:0.84.0-2.fc32.s390x\n - gspell-devel-0:1.8.3-2.fc32.armv7hl\n - OpenEXR-doc-0:2.3.0-5.fc32.armv7hl\n - poppler-glib-devel-0:0.84.0-2.fc32.i686\n - boost-thread-0:1.69.0-14.fc32.armv7hl\n - polkit-libs-0:0.116-7.fc32.ppc64le\n - SDL_image-devel-0:1.2.12-23.fc32.armv7hl\n - poppler-devel-0:0.84.0-2.fc32.aarch64\n - libidn-java-0:1.35-7.fc32.noarch\n - boost-context-0:1.69.0-14.fc32.i686\n - gd-devel-0:2.3.0-1.fc32.x86_64\n - boost-graph-0:1.69.0-14.fc32.armv7hl\n - boost-python3-0:1.69.0-14.fc32.aarch64\n - boost-jam-0:1.69.0-14.fc32.ppc64le\n - gd-progs-0:2.3.0-1.fc32.ppc64le\n - evolution-data-server-0:3.36.1-1.fc32.i686\n - cairomm-devel-0:1.12.0-12.fc32.ppc64le\n - boost-math-0:1.69.0-14.fc32.ppc64le\n - compat-wxGTK3-gtk2-media-0:3.0.4-13.fc32.ppc64le\n - libmspack-devel-0:0.10.1-0.3.alpha.fc32.armv7hl\n - glew-0:2.1.0-6.fc32.i686\n - jbig2dec-0:0.17-4.fc32.armv7hl\n - OpenEXR-doc-0:2.3.0-5.fc32.s390x\n - libGLEW-0:2.1.0-6.fc32.x86_64\n - cairomm-devel-0:1.12.0-12.fc32.i686\n - openjpeg2-0:2.3.1-6.fc32.s390x\n - boost-build-0:1.69.0-14.fc32.noarch\n - geocode-glib-devel-0:3.26.2-1.fc32.x86_64\n - boost-date-time-0:1.69.0-14.fc32.x86_64\n - evolution-data-server-perl-0:3.36.1-1.fc32.s390x\n - OpenEXR-devel-0:2.3.0-5.fc32.s390x\n - google-droid-serif-fonts-0:20200215-3.fc32.noarch\n - openblas-0:0.3.9-1.fc32.i686\n - exiv2-devel-0:0.27.2-2.fc32.armv7hl\n - gd-devel-0:2.3.0-1.fc32.ppc64le\n - ghostscript-x11-0:9.50-1.fc32.armv7hl\n - openblas-serial64_-0:0.3.9-1.fc32.s390x\n - ilmbase-devel-0:2.3.0-4.fc32.armv7hl\n - compat-wxGTK3-gtk2-0:3.0.4-13.fc32.x86_64\n - boost-date-time-0:1.69.0-14.fc32.armv7hl\n - poppler-glib-0:0.84.0-2.fc32.aarch64\n - libhandy-devel-0:0.0.13-2.fc32.armv7hl\n - boost-context-0:1.69.0-14.fc32.aarch64\n - boost-timer-0:1.69.0-14.fc32.x86_64\n - boost-doctools-0:1.69.0-14.fc32.x86_64\n - boost-atomic-0:1.69.0-14.fc32.armv7hl\n - jbig2dec-0:0.17-4.fc32.aarch64\n - startup-notification-0:0.12-19.fc32.aarch64\n - wxGTK3-gl-0:3.0.4-13.fc32.i686\n - libgs-devel-0:9.50-1.fc32.armv7hl\n - boost-graph-0:1.69.0-14.fc32.ppc64le\n - openblas-static-0:0.3.9-1.fc32.i686\n - boost-doctools-0:1.69.0-14.fc32.ppc64le\n - boost-type_erasure-0:1.69.0-14.fc32.armv7hl\n - gtkmm30-devel-0:3.24.2-2.fc32.ppc64le\n - boost-type_erasure-0:1.69.0-14.fc32.ppc64le\n - compat-wxGTK3-gtk2-gl-0:3.0.4-13.fc32.s390x\n - libgs-devel-0:9.50-1.fc32.ppc64le\n - openblas-0:0.3.9-1.fc32.ppc64le\n - boost-random-0:1.69.0-14.fc32.s390x\n - SDL-devel-0:1.2.15-43.fc32.i686\n - openblas-0:0.3.9-1.fc32.aarch64\n - polkit-devel-0:0.116-7.fc32.i686\n - gnome-desktop3-0:3.36.1-1.fc32.armv7hl\n - poppler-qt-0:0.84.0-2.fc32.x86_64\n - gd-0:2.3.0-1.fc32.s390x\n - poppler-qt5-devel-0:0.84.0-2.fc32.i686\n - pangomm-devel-0:2.42.1-1.fc32.s390x\n - boost-fiber-0:1.69.0-14.fc32.i686\n - evolution-data-server-perl-0:3.36.1-1.fc32.x86_64\n - wxGTK3-docs-0:3.0.4-13.fc32.noarch\n - libidn-0:1.35-7.fc32.s390x\n - jbig2dec-devel-0:0.17-4.fc32.s390x\n - boost-random-0:1.69.0-14.fc32.ppc64le\n dependencies:\n - buildrequires:\n flatpak-common: [f32]\n flatpak-runtime: [f32]\n platform: [f32]\n requires:\n flatpak-common: [f32]\n flatpak-runtime: [f32]\n platform: [f32]\n profiles:\n default:\n rpms:\n - 0ad\n components:\n rpms:\n 0ad:\n rationale: Application package\n repository: git+https://src.fedoraproject.org/rpms/0ad\n cache: https://src.fedoraproject.org/repo/pkgs/0ad\n ref: f32\n buildorder: 10\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n 0ad-data:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/0ad-data\n cache: https://src.fedoraproject.org/repo/pkgs/0ad-data\n ref: f32\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n dejavu-fonts:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/dejavu-fonts\n cache: https://src.fedoraproject.org/repo/pkgs/dejavu-fonts\n ref: f32\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n enet:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/enet\n cache: https://src.fedoraproject.org/repo/pkgs/enet\n ref: f32\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n gloox:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/gloox\n cache: https://src.fedoraproject.org/repo/pkgs/gloox\n ref: f32\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n libsodium:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/libsodium\n cache: https://src.fedoraproject.org/repo/pkgs/libsodium\n ref: f32\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n miniupnpc:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/miniupnpc\n cache: https://src.fedoraproject.org/repo/pkgs/miniupnpc\n ref: f32\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n nvidia-texture-tools:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/nvidia-texture-tools\n cache: https://src.fedoraproject.org/repo/pkgs/nvidia-texture-tools\n ref: f32\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n...", "runtime_deps": [ { "dependency": "platform", "stream": "f32" }, { "dependency": "flatpak-runtime", "stream": "f32" }, { "dependency": "flatpak-common", "stream": "f32" } ], "build_deps": [ { "dependency": "platform", "stream": "f32" }, { "dependency": "flatpak-runtime", "stream": "f32" }, { "dependency": "flatpak-common", "stream": "f32" } ], "active": true, "rpms": [ "0ad-0:0.0.23b-13.module_f32+8568+7182d393.aarch64.rpm", "0ad-0:0.0.23b-13.module_f32+8568+7182d393.armv7hl.rpm", "0ad-0:0.0.23b-13.module_f32+8568+7182d393.i686.rpm", "0ad-0:0.0.23b-13.module_f32+8568+7182d393.ppc64le.rpm", "0ad-0:0.0.23b-13.module_f32+8568+7182d393.src.rpm", "0ad-0:0.0.23b-13.module_f32+8568+7182d393.x86_64.rpm", "0ad-data-0:0.0.23b-4.module_f32+8568+7182d393.noarch.rpm", "0ad-data-0:0.0.23b-4.module_f32+8568+7182d393.src.rpm", "0ad-debuginfo-0:0.0.23b-13.module_f32+8568+7182d393.aarch64.rpm", "0ad-debuginfo-0:0.0.23b-13.module_f32+8568+7182d393.armv7hl.rpm", "0ad-debuginfo-0:0.0.23b-13.module_f32+8568+7182d393.i686.rpm", "0ad-debuginfo-0:0.0.23b-13.module_f32+8568+7182d393.ppc64le.rpm", "0ad-debuginfo-0:0.0.23b-13.module_f32+8568+7182d393.x86_64.rpm", "0ad-debugsource-0:0.0.23b-13.module_f32+8568+7182d393.aarch64.rpm", "0ad-debugsource-0:0.0.23b-13.module_f32+8568+7182d393.armv7hl.rpm", "0ad-debugsource-0:0.0.23b-13.module_f32+8568+7182d393.i686.rpm", "0ad-debugsource-0:0.0.23b-13.module_f32+8568+7182d393.ppc64le.rpm", "0ad-debugsource-0:0.0.23b-13.module_f32+8568+7182d393.x86_64.rpm", "compat-f32-dejavu-sans-fonts-0:2.37-7.module_f32+8568+7182d393.noarch.rpm", "compat-f32-dejavu-sans-mono-fonts-0:2.37-7.module_f32+8568+7182d393.noarch.rpm", "compat-f32-dejavu-serif-fonts-0:2.37-7.module_f32+8568+7182d393.noarch.rpm", "dejavu-fonts-0:2.37-7.module_f32+8568+7182d393.src.rpm", "dejavu-fonts-all-0:2.37-7.module_f32+8568+7182d393.noarch.rpm", "dejavu-fonts-doc-0:2.37-7.module_f32+8568+7182d393.noarch.rpm", "dejavu-lgc-fonts-all-0:2.37-7.module_f32+8568+7182d393.noarch.rpm", "dejavu-lgc-sans-fonts-0:2.37-7.module_f32+8568+7182d393.noarch.rpm", "dejavu-lgc-sans-mono-fonts-0:2.37-7.module_f32+8568+7182d393.noarch.rpm", "dejavu-lgc-serif-fonts-0:2.37-7.module_f32+8568+7182d393.noarch.rpm", "dejavu-sans-fonts-0:2.37-7.module_f32+8568+7182d393.noarch.rpm", "dejavu-sans-mono-fonts-0:2.37-7.module_f32+8568+7182d393.noarch.rpm", "dejavu-serif-fonts-0:2.37-7.module_f32+8568+7182d393.noarch.rpm", "enet-0:1.3.14-3.module_f32+8568+7182d393.aarch64.rpm", "enet-0:1.3.14-3.module_f32+8568+7182d393.armv7hl.rpm", "enet-0:1.3.14-3.module_f32+8568+7182d393.i686.rpm", "enet-0:1.3.14-3.module_f32+8568+7182d393.ppc64le.rpm", "enet-0:1.3.14-3.module_f32+8568+7182d393.s390x.rpm", "enet-0:1.3.14-3.module_f32+8568+7182d393.src.rpm", "enet-0:1.3.14-3.module_f32+8568+7182d393.x86_64.rpm", "enet-debuginfo-0:1.3.14-3.module_f32+8568+7182d393.aarch64.rpm", "enet-debuginfo-0:1.3.14-3.module_f32+8568+7182d393.armv7hl.rpm", "enet-debuginfo-0:1.3.14-3.module_f32+8568+7182d393.i686.rpm", "enet-debuginfo-0:1.3.14-3.module_f32+8568+7182d393.ppc64le.rpm", "enet-debuginfo-0:1.3.14-3.module_f32+8568+7182d393.s390x.rpm", "enet-debuginfo-0:1.3.14-3.module_f32+8568+7182d393.x86_64.rpm", "enet-debugsource-0:1.3.14-3.module_f32+8568+7182d393.aarch64.rpm", "enet-debugsource-0:1.3.14-3.module_f32+8568+7182d393.armv7hl.rpm", "enet-debugsource-0:1.3.14-3.module_f32+8568+7182d393.i686.rpm", "enet-debugsource-0:1.3.14-3.module_f32+8568+7182d393.ppc64le.rpm", "enet-debugsource-0:1.3.14-3.module_f32+8568+7182d393.s390x.rpm", "enet-debugsource-0:1.3.14-3.module_f32+8568+7182d393.x86_64.rpm", "enet-devel-0:1.3.14-3.module_f32+8568+7182d393.aarch64.rpm", "enet-devel-0:1.3.14-3.module_f32+8568+7182d393.armv7hl.rpm", "enet-devel-0:1.3.14-3.module_f32+8568+7182d393.i686.rpm", "enet-devel-0:1.3.14-3.module_f32+8568+7182d393.ppc64le.rpm", "enet-devel-0:1.3.14-3.module_f32+8568+7182d393.s390x.rpm", "enet-devel-0:1.3.14-3.module_f32+8568+7182d393.x86_64.rpm", "gloox-1:1.0.14-11.module_f32+8568+7182d393.aarch64.rpm", "gloox-1:1.0.14-11.module_f32+8568+7182d393.armv7hl.rpm", "gloox-1:1.0.14-11.module_f32+8568+7182d393.i686.rpm", "gloox-1:1.0.14-11.module_f32+8568+7182d393.ppc64le.rpm", "gloox-1:1.0.14-11.module_f32+8568+7182d393.s390x.rpm", "gloox-1:1.0.14-11.module_f32+8568+7182d393.src.rpm", "gloox-1:1.0.14-11.module_f32+8568+7182d393.x86_64.rpm", "gloox-debuginfo-1:1.0.14-11.module_f32+8568+7182d393.aarch64.rpm", "gloox-debuginfo-1:1.0.14-11.module_f32+8568+7182d393.armv7hl.rpm", "gloox-debuginfo-1:1.0.14-11.module_f32+8568+7182d393.i686.rpm", "gloox-debuginfo-1:1.0.14-11.module_f32+8568+7182d393.ppc64le.rpm", "gloox-debuginfo-1:1.0.14-11.module_f32+8568+7182d393.s390x.rpm", "gloox-debuginfo-1:1.0.14-11.module_f32+8568+7182d393.x86_64.rpm", "gloox-debugsource-1:1.0.14-11.module_f32+8568+7182d393.aarch64.rpm", "gloox-debugsource-1:1.0.14-11.module_f32+8568+7182d393.armv7hl.rpm", "gloox-debugsource-1:1.0.14-11.module_f32+8568+7182d393.i686.rpm", "gloox-debugsource-1:1.0.14-11.module_f32+8568+7182d393.ppc64le.rpm", "gloox-debugsource-1:1.0.14-11.module_f32+8568+7182d393.s390x.rpm", "gloox-debugsource-1:1.0.14-11.module_f32+8568+7182d393.x86_64.rpm", "gloox-devel-1:1.0.14-11.module_f32+8568+7182d393.aarch64.rpm", "gloox-devel-1:1.0.14-11.module_f32+8568+7182d393.armv7hl.rpm", "gloox-devel-1:1.0.14-11.module_f32+8568+7182d393.i686.rpm", "gloox-devel-1:1.0.14-11.module_f32+8568+7182d393.ppc64le.rpm", "gloox-devel-1:1.0.14-11.module_f32+8568+7182d393.s390x.rpm", "gloox-devel-1:1.0.14-11.module_f32+8568+7182d393.x86_64.rpm", "libsodium-0:1.0.18-3.module_f32+8568+7182d393.aarch64.rpm", "libsodium-0:1.0.18-3.module_f32+8568+7182d393.armv7hl.rpm", "libsodium-0:1.0.18-3.module_f32+8568+7182d393.i686.rpm", "libsodium-0:1.0.18-3.module_f32+8568+7182d393.ppc64le.rpm", "libsodium-0:1.0.18-3.module_f32+8568+7182d393.s390x.rpm", "libsodium-0:1.0.18-3.module_f32+8568+7182d393.src.rpm", "libsodium-0:1.0.18-3.module_f32+8568+7182d393.x86_64.rpm", "libsodium-debuginfo-0:1.0.18-3.module_f32+8568+7182d393.aarch64.rpm", "libsodium-debuginfo-0:1.0.18-3.module_f32+8568+7182d393.armv7hl.rpm", "libsodium-debuginfo-0:1.0.18-3.module_f32+8568+7182d393.i686.rpm", "libsodium-debuginfo-0:1.0.18-3.module_f32+8568+7182d393.ppc64le.rpm", "libsodium-debuginfo-0:1.0.18-3.module_f32+8568+7182d393.s390x.rpm", "libsodium-debuginfo-0:1.0.18-3.module_f32+8568+7182d393.x86_64.rpm", "libsodium-debugsource-0:1.0.18-3.module_f32+8568+7182d393.aarch64.rpm", "libsodium-debugsource-0:1.0.18-3.module_f32+8568+7182d393.armv7hl.rpm", "libsodium-debugsource-0:1.0.18-3.module_f32+8568+7182d393.i686.rpm", "libsodium-debugsource-0:1.0.18-3.module_f32+8568+7182d393.ppc64le.rpm", "libsodium-debugsource-0:1.0.18-3.module_f32+8568+7182d393.s390x.rpm", "libsodium-debugsource-0:1.0.18-3.module_f32+8568+7182d393.x86_64.rpm", "libsodium-devel-0:1.0.18-3.module_f32+8568+7182d393.aarch64.rpm", "libsodium-devel-0:1.0.18-3.module_f32+8568+7182d393.armv7hl.rpm", "libsodium-devel-0:1.0.18-3.module_f32+8568+7182d393.i686.rpm", "libsodium-devel-0:1.0.18-3.module_f32+8568+7182d393.ppc64le.rpm", "libsodium-devel-0:1.0.18-3.module_f32+8568+7182d393.s390x.rpm", "libsodium-devel-0:1.0.18-3.module_f32+8568+7182d393.x86_64.rpm", "libsodium-static-0:1.0.18-3.module_f32+8568+7182d393.aarch64.rpm", "libsodium-static-0:1.0.18-3.module_f32+8568+7182d393.armv7hl.rpm", "libsodium-static-0:1.0.18-3.module_f32+8568+7182d393.i686.rpm", "libsodium-static-0:1.0.18-3.module_f32+8568+7182d393.ppc64le.rpm", "libsodium-static-0:1.0.18-3.module_f32+8568+7182d393.s390x.rpm", "libsodium-static-0:1.0.18-3.module_f32+8568+7182d393.x86_64.rpm", "miniupnpc-0:2.1-5.module_f32+8568+7182d393.aarch64.rpm", "miniupnpc-0:2.1-5.module_f32+8568+7182d393.armv7hl.rpm", "miniupnpc-0:2.1-5.module_f32+8568+7182d393.i686.rpm", "miniupnpc-0:2.1-5.module_f32+8568+7182d393.ppc64le.rpm", "miniupnpc-0:2.1-5.module_f32+8568+7182d393.s390x.rpm", "miniupnpc-0:2.1-5.module_f32+8568+7182d393.src.rpm", "miniupnpc-0:2.1-5.module_f32+8568+7182d393.x86_64.rpm", "miniupnpc-debuginfo-0:2.1-5.module_f32+8568+7182d393.aarch64.rpm", "miniupnpc-debuginfo-0:2.1-5.module_f32+8568+7182d393.armv7hl.rpm", "miniupnpc-debuginfo-0:2.1-5.module_f32+8568+7182d393.i686.rpm", "miniupnpc-debuginfo-0:2.1-5.module_f32+8568+7182d393.ppc64le.rpm", "miniupnpc-debuginfo-0:2.1-5.module_f32+8568+7182d393.s390x.rpm", "miniupnpc-debuginfo-0:2.1-5.module_f32+8568+7182d393.x86_64.rpm", "miniupnpc-debugsource-0:2.1-5.module_f32+8568+7182d393.aarch64.rpm", "miniupnpc-debugsource-0:2.1-5.module_f32+8568+7182d393.armv7hl.rpm", "miniupnpc-debugsource-0:2.1-5.module_f32+8568+7182d393.i686.rpm", "miniupnpc-debugsource-0:2.1-5.module_f32+8568+7182d393.ppc64le.rpm", "miniupnpc-debugsource-0:2.1-5.module_f32+8568+7182d393.s390x.rpm", "miniupnpc-debugsource-0:2.1-5.module_f32+8568+7182d393.x86_64.rpm", "miniupnpc-devel-0:2.1-5.module_f32+8568+7182d393.aarch64.rpm", "miniupnpc-devel-0:2.1-5.module_f32+8568+7182d393.armv7hl.rpm", "miniupnpc-devel-0:2.1-5.module_f32+8568+7182d393.i686.rpm", "miniupnpc-devel-0:2.1-5.module_f32+8568+7182d393.ppc64le.rpm", "miniupnpc-devel-0:2.1-5.module_f32+8568+7182d393.s390x.rpm", "miniupnpc-devel-0:2.1-5.module_f32+8568+7182d393.x86_64.rpm", "nvidia-texture-tools-0:2.0.8-22.module_f32+8568+7182d393.aarch64.rpm", "nvidia-texture-tools-0:2.0.8-22.module_f32+8568+7182d393.armv7hl.rpm", "nvidia-texture-tools-0:2.0.8-22.module_f32+8568+7182d393.i686.rpm", "nvidia-texture-tools-0:2.0.8-22.module_f32+8568+7182d393.ppc64le.rpm", "nvidia-texture-tools-0:2.0.8-22.module_f32+8568+7182d393.s390x.rpm", "nvidia-texture-tools-0:2.0.8-22.module_f32+8568+7182d393.src.rpm", "nvidia-texture-tools-0:2.0.8-22.module_f32+8568+7182d393.x86_64.rpm", "nvidia-texture-tools-debuginfo-0:2.0.8-22.module_f32+8568+7182d393.aarch64.rpm", "nvidia-texture-tools-debuginfo-0:2.0.8-22.module_f32+8568+7182d393.armv7hl.rpm", "nvidia-texture-tools-debuginfo-0:2.0.8-22.module_f32+8568+7182d393.i686.rpm", "nvidia-texture-tools-debuginfo-0:2.0.8-22.module_f32+8568+7182d393.ppc64le.rpm", "nvidia-texture-tools-debuginfo-0:2.0.8-22.module_f32+8568+7182d393.s390x.rpm", "nvidia-texture-tools-debuginfo-0:2.0.8-22.module_f32+8568+7182d393.x86_64.rpm", "nvidia-texture-tools-debugsource-0:2.0.8-22.module_f32+8568+7182d393.aarch64.rpm", "nvidia-texture-tools-debugsource-0:2.0.8-22.module_f32+8568+7182d393.armv7hl.rpm", "nvidia-texture-tools-debugsource-0:2.0.8-22.module_f32+8568+7182d393.i686.rpm", "nvidia-texture-tools-debugsource-0:2.0.8-22.module_f32+8568+7182d393.ppc64le.rpm", "nvidia-texture-tools-debugsource-0:2.0.8-22.module_f32+8568+7182d393.s390x.rpm", "nvidia-texture-tools-debugsource-0:2.0.8-22.module_f32+8568+7182d393.x86_64.rpm", "nvidia-texture-tools-devel-0:2.0.8-22.module_f32+8568+7182d393.aarch64.rpm", "nvidia-texture-tools-devel-0:2.0.8-22.module_f32+8568+7182d393.armv7hl.rpm", "nvidia-texture-tools-devel-0:2.0.8-22.module_f32+8568+7182d393.i686.rpm", "nvidia-texture-tools-devel-0:2.0.8-22.module_f32+8568+7182d393.ppc64le.rpm", "nvidia-texture-tools-devel-0:2.0.8-22.module_f32+8568+7182d393.s390x.rpm", "nvidia-texture-tools-devel-0:2.0.8-22.module_f32+8568+7182d393.x86_64.rpm", "python3-miniupnpc-0:2.1-5.module_f32+8568+7182d393.aarch64.rpm", "python3-miniupnpc-0:2.1-5.module_f32+8568+7182d393.armv7hl.rpm", "python3-miniupnpc-0:2.1-5.module_f32+8568+7182d393.i686.rpm", "python3-miniupnpc-0:2.1-5.module_f32+8568+7182d393.ppc64le.rpm", "python3-miniupnpc-0:2.1-5.module_f32+8568+7182d393.s390x.rpm", "python3-miniupnpc-0:2.1-5.module_f32+8568+7182d393.x86_64.rpm", "python3-miniupnpc-debuginfo-0:2.1-5.module_f32+8568+7182d393.aarch64.rpm", "python3-miniupnpc-debuginfo-0:2.1-5.module_f32+8568+7182d393.armv7hl.rpm", "python3-miniupnpc-debuginfo-0:2.1-5.module_f32+8568+7182d393.i686.rpm", "python3-miniupnpc-debuginfo-0:2.1-5.module_f32+8568+7182d393.ppc64le.rpm", "python3-miniupnpc-debuginfo-0:2.1-5.module_f32+8568+7182d393.s390x.rpm", "python3-miniupnpc-debuginfo-0:2.1-5.module_f32+8568+7182d393.x86_64.rpm" ] }, { "variant_id": "0ad", "variant_uid": "0ad:master:3220200523074436:01239000", "variant_name": "0ad", "variant_type": "module", "variant_version": "master", "variant_release": "3220200523074436", "variant_context": "01239000", "koji_tag": "module-0ad-master-3220200523074436-01239000", "modulemd": "---\ndocument: modulemd\nversion: 2\ndata:\n name: 0ad\n stream: master\n version: 3220200523074436\n context: 01239000\n summary: Cross-Platform RTS Game of Ancient Warfare\n description: >-\n 0 A.D. (pronounced \"zero ey-dee\") is a free, open-source, cross-platform real-time\n strategy (RTS) game of ancient warfare. In short, it is a historically-based war/economy\n game that allows players to relive or rewrite the history of Western civilizations,\n focusing on the years between 500 B.C. and 500 A.D. The project is highly ambitious,\n involving state-of-the-art 3D graphics, detailed artwork, sound, and a flexible\n and powerful custom-built game engine.\n\n The game has been in development by Wildfire Games (WFG), a group of volunteer,\n hobbyist game developers, since 2001.\n license:\n module:\n - MIT\n xmd:\n mbs:\n buildrequires:\n flatpak-common:\n context: caf21102\n filtered_rpms: []\n koji_tag: module-flatpak-common-f32-3220200518173809-caf21102\n ref: f09e2e4592e35b51210c864b59a1605a43a60438\n stream: f32\n version: 3220200518173809\n flatpak-runtime:\n context: 43bbeeef\n filtered_rpms: []\n koji_tag: module-flatpak-runtime-f32-3220200514143325-43bbeeef\n ref: 43d99c4af2ecb4768a9aeb4265ae28b6d7db922d\n stream: f32\n version: 3220200514143325\n platform:\n context: 00000000\n filtered_rpms: []\n koji_tag: module-f32-build\n ref: f32\n stream: f32\n stream_collision_modules: \n ursine_rpms: \n version: 1\n commit: 57e408abc95c18c0c80b16c5dee94867b28291fc\n mse: TRUE\n rpms:\n 0ad:\n ref: 67e2fa2f0b66e9aeb6256fe22df151efde41de8f\n 0ad-data:\n ref: 14c296b56fbd11ca08dff847f7e19d72e18d3b2a\n dejavu-fonts:\n ref: 18a66b561c3a6aeb892ac4aa3fd5689742ba18ae\n enet:\n ref: bdd09027a8a28cafd337e6ebea3e0430a4d9b670\n gloox:\n ref: 0fa3b4a91c0e070daeccbe9b2967d1d3c5d45af3\n libsodium:\n ref: 9f8789f4cdd61562ef99960441dbc4b1c39c7a0e\n miniupnpc:\n ref: c2b104bea5c9351730410ef3a291fcadaf98bda6\n nvidia-texture-tools:\n ref: dfbbbe8a14d038036fc311f239a88912715a211b\n scmurl: https://src.fedoraproject.org/flatpaks/0ad.git?#57e408abc95c18c0c80b16c5dee94867b28291fc\n ursine_rpms:\n - libfontenc-devel-0:1.1.3-12.fc32.aarch64\n - gnome-online-accounts-0:3.36.0-1.fc32.armv7hl\n - OpenEXR-doc-0:2.3.0-5.fc32.x86_64\n - gnome-online-accounts-devel-0:3.36.0-1.fc32.s390x\n - libgdata-0:0.17.12-1.fc32.x86_64\n - openblas-devel-0:0.3.9-2.fc32.x86_64\n - poppler-0:0.84.0-2.fc32.s390x\n - compat-wxGTK3-gtk2-media-0:3.0.4-13.fc32.x86_64\n - libhandy-devel-0:0.0.13-2.fc32.x86_64\n - libdazzle-devel-0:3.36.0-1.fc32.s390x\n - openblas-threads-0:0.3.9-2.fc32.aarch64\n - glew-devel-0:2.1.0-6.fc32.armv7hl\n - poppler-qt-0:0.84.0-2.fc32.aarch64\n - evolution-data-server-0:3.36.2-1.fc32.armv7hl\n - libfontenc-0:1.1.3-12.fc32.x86_64\n - gtksourceview3-tests-0:3.24.11-3.fc32.x86_64\n - boost-doc-0:1.69.0-18.fc32.x86_64\n - ghostscript-tools-dvipdf-0:9.52-1.fc32.x86_64\n - compat-wxGTK3-gtk2-gl-0:3.0.4-13.fc32.ppc64le\n - libsigc++20-devel-0:2.10.3-1.fc32.aarch64\n - libfontenc-devel-0:1.1.3-12.fc32.x86_64\n - evolution-data-server-devel-0:3.36.2-1.fc32.ppc64le\n - SDL-static-0:1.2.15-43.fc32.i686\n - glew-devel-0:2.1.0-6.fc32.s390x\n - xorg-x11-font-utils-1:7.5-44.fc32.x86_64\n - gspell-0:1.8.3-2.fc32.armv7hl\n - OpenEXR-devel-0:2.3.0-5.fc32.aarch64\n - gnome-desktop3-tests-0:3.36.2-1.fc32.ppc64le\n - boost-random-0:1.69.0-18.fc32.ppc64le\n - gnome-desktop3-devel-0:3.36.2-1.fc32.i686\n - cairomm-0:1.12.0-12.fc32.i686\n - jbig2dec-libs-0:0.17-4.fc32.x86_64\n - openblas-devel-0:0.3.9-2.fc32.aarch64\n - ghostscript-0:9.52-1.fc32.armv7hl\n - polkit-0:0.116-7.fc32.s390x\n - poppler-qt-devel-0:0.84.0-2.fc32.ppc64le\n - gsl-devel-0:2.6-2.fc32.i686\n - libidn-0:1.35-7.fc32.ppc64le\n - gspell-devel-0:1.8.3-2.fc32.x86_64\n - glibmm24-0:2.64.2-1.fc32.aarch64\n - glibmm24-devel-0:2.64.2-1.fc32.s390x\n - openjpeg2-tools-0:2.3.1-6.fc32.armv7hl\n - poppler-cpp-0:0.84.0-2.fc32.ppc64le\n - boost-type_erasure-0:1.69.0-18.fc32.ppc64le\n - boost-regex-0:1.69.0-18.fc32.i686\n - liboauth-0:1.0.3-14.fc32.aarch64\n - geocode-glib-devel-0:3.26.2-1.fc32.armv7hl\n - openblas-threads-0:0.3.9-2.fc32.i686\n - boost-regex-0:1.69.0-18.fc32.aarch64\n - libfontenc-devel-0:1.1.3-12.fc32.s390x\n - exiv2-0:0.27.2-2.fc32.armv7hl\n - wxGTK3-0:3.0.4-13.fc32.s390x\n - glibmm24-0:2.64.2-1.fc32.ppc64le\n - boost-program-options-0:1.69.0-18.fc32.ppc64le\n - libpeas-0:1.26.0-1.fc32.x86_64\n - OpenEXR-devel-0:2.3.0-5.fc32.i686\n - libdazzle-devel-0:3.36.0-1.fc32.x86_64\n - SDL_image-devel-0:1.2.12-23.fc32.aarch64\n - gtksourceview3-0:3.24.11-3.fc32.i686\n - wxGTK3-webview-0:3.0.4-13.fc32.ppc64le\n - libdazzle-devel-0:3.36.0-1.fc32.ppc64le\n - ilmbase-0:2.3.0-4.fc32.i686\n - libijs-0:0.35-11.fc32.x86_64\n - gsl-0:2.6-2.fc32.armv7hl\n - boost-jam-0:1.69.0-18.fc32.ppc64le\n - boost-system-0:1.69.0-18.fc32.i686\n - evolution-data-server-0:3.36.2-1.fc32.i686\n - jbig2dec-libs-0:0.17-4.fc32.aarch64\n - libgdata-devel-0:0.17.12-1.fc32.i686\n - poppler-devel-0:0.84.0-2.fc32.x86_64\n - libimagequant-devel-0:2.12.6-2.fc32.x86_64\n - poppler-qt5-devel-0:0.84.0-2.fc32.s390x\n - SDL-devel-0:1.2.15-43.fc32.s390x\n - libgdata-devel-0:0.17.12-1.fc32.armv7hl\n - libgdata-0:0.17.12-1.fc32.ppc64le\n - libimagequant-0:2.12.6-2.fc32.x86_64\n - startup-notification-devel-0:0.12-19.fc32.s390x\n - openblas-threads64_-0:0.3.9-2.fc32.ppc64le\n - boost-regex-0:1.69.0-18.fc32.armv7hl\n - openblas-devel-0:0.3.9-2.fc32.ppc64le\n - libidn-0:1.35-7.fc32.x86_64\n - libpaper-devel-0:1.1.24-26.fc32.s390x\n - ilmbase-devel-0:2.3.0-4.fc32.s390x\n - libpeas-loader-python3-0:1.26.0-1.fc32.ppc64le\n - wxBase3-devel-0:3.0.4-13.fc32.x86_64\n - libsigc++20-0:2.10.3-1.fc32.i686\n - libwmf-lite-0:0.2.12-3.fc32.aarch64\n - gtkmm30-devel-0:3.24.2-2.fc32.aarch64\n - gtkmm30-0:3.24.2-2.fc32.x86_64\n - liboauth-0:1.0.3-14.fc32.s390x\n - libsigc++20-0:2.10.3-1.fc32.aarch64\n - libgweather-0:3.36.0-1.fc32.x86_64\n - poppler-devel-0:0.84.0-2.fc32.i686\n - geocode-glib-devel-0:3.26.2-1.fc32.s390x\n - boost-doctools-0:1.69.0-18.fc32.s390x\n - gspell-0:1.8.3-2.fc32.x86_64\n - libpaper-0:1.1.24-26.fc32.x86_64\n - geocode-glib-0:3.26.2-1.fc32.s390x\n - boost-serialization-0:1.69.0-18.fc32.i686\n - wxGTK3-media-0:3.0.4-13.fc32.aarch64\n - boost-atomic-0:1.69.0-18.fc32.aarch64\n - gtksourceview3-0:3.24.11-3.fc32.aarch64\n - openblas-0:0.3.9-2.fc32.armv7hl\n - libical-0:3.0.8-1.fc32.x86_64\n - pangomm-devel-0:2.42.1-1.fc32.ppc64le\n - gnome-desktop3-tests-0:3.36.2-1.fc32.x86_64\n - libwmf-0:0.2.12-3.fc32.x86_64\n - gnome-desktop3-devel-0:3.36.2-1.fc32.armv7hl\n - exiv2-0:0.27.2-2.fc32.i686\n - boost-doc-0:1.69.0-18.fc32.s390x\n - libsigc++20-devel-0:2.10.3-1.fc32.i686\n - libimagequant-devel-0:2.12.6-2.fc32.s390x\n - jbig2dec-libs-0:0.17-4.fc32.s390x\n - exiv2-devel-0:0.27.2-2.fc32.ppc64le\n - boost-locale-0:1.69.0-18.fc32.x86_64\n - compat-wxGTK3-gtk2-gl-0:3.0.4-13.fc32.i686\n - ghostscript-0:9.52-1.fc32.x86_64\n - OpenEXR-doc-0:2.3.0-5.fc32.ppc64le\n - gtkmm30-devel-0:3.24.2-2.fc32.s390x\n - openjpeg2-0:2.3.1-6.fc32.ppc64le\n - wxBase3-0:3.0.4-13.fc32.armv7hl\n - boost-coroutine-0:1.69.0-18.fc32.aarch64\n - SDL_image-devel-0:1.2.12-23.fc32.ppc64le\n - poppler-cpp-devel-0:0.84.0-2.fc32.x86_64\n - pangomm-devel-0:2.42.1-1.fc32.x86_64\n - gtksourceview3-devel-0:3.24.11-3.fc32.i686\n - polkit-devel-0:0.116-7.fc32.x86_64\n - poppler-cpp-devel-0:0.84.0-2.fc32.s390x\n - atkmm-0:2.24.3-4.fc32.ppc64le\n - libijs-0:0.35-11.fc32.s390x\n - libgs-0:9.52-1.fc32.aarch64\n - boost-devel-0:1.69.0-18.fc32.aarch64\n - libgs-devel-0:9.52-1.fc32.s390x\n - boost-contract-0:1.69.0-18.fc32.x86_64\n - openblas-0:0.3.9-2.fc32.aarch64\n - SDL-static-0:1.2.15-43.fc32.s390x\n - opengl-games-utils-0:0.2-17.fc32.noarch\n - glibmm24-devel-0:2.64.2-1.fc32.x86_64\n - boost-doc-0:1.69.0-18.fc32.i686\n - ghostscript-x11-0:9.52-1.fc32.ppc64le\n - poppler-devel-0:0.84.0-2.fc32.s390x\n - libfontenc-0:1.1.3-12.fc32.s390x\n - ilmbase-devel-0:2.3.0-4.fc32.ppc64le\n - libgs-devel-0:9.52-1.fc32.i686\n - boost-serialization-0:1.69.0-18.fc32.aarch64\n - openblas-0:0.3.9-2.fc32.x86_64\n - gsl-0:2.6-2.fc32.ppc64le\n - poppler-0:0.84.0-2.fc32.i686\n - libical-0:3.0.8-1.fc32.aarch64\n - libijs-devel-0:0.35-11.fc32.ppc64le\n - compat-wxGTK3-gtk2-0:3.0.4-13.fc32.armv7hl\n - polkit-devel-0:0.116-7.fc32.s390x\n - boost-chrono-0:1.69.0-18.fc32.s390x\n - libical-glib-devel-0:3.0.8-1.fc32.aarch64\n - libgweather-0:3.36.0-1.fc32.ppc64le\n - ghostscript-tools-printing-0:9.52-1.fc32.aarch64\n - pangomm-0:2.42.1-1.fc32.x86_64\n - ghostscript-gtk-0:9.52-1.fc32.armv7hl\n - wxGTK3-webview-0:3.0.4-13.fc32.x86_64\n - openblas-threads64-0:0.3.9-2.fc32.s390x\n - gsl-0:2.6-2.fc32.x86_64\n - polkit-0:0.116-7.fc32.ppc64le\n - OpenEXR-devel-0:2.3.0-5.fc32.ppc64le\n - compat-wxGTK3-gtk2-media-0:3.0.4-13.fc32.ppc64le\n - poppler-data-0:0.4.9-5.fc32.noarch\n - boost-random-0:1.69.0-18.fc32.x86_64\n - openblas-devel-0:0.3.9-2.fc32.i686\n - boost-stacktrace-0:1.69.0-18.fc32.armv7hl\n - libidn-javadoc-0:1.35-7.fc32.noarch\n - libijs-devel-0:0.35-11.fc32.s390x\n - libpeas-gtk-0:1.26.0-1.fc32.ppc64le\n - OpenEXR-0:2.3.0-5.fc32.i686\n - libical-devel-0:3.0.8-1.fc32.x86_64\n - openblas-openmp64_-0:0.3.9-2.fc32.x86_64\n - libijs-devel-0:0.35-11.fc32.x86_64\n - boost-thread-0:1.69.0-18.fc32.i686\n - poppler-0:0.84.0-2.fc32.ppc64le\n - gd-0:2.3.0-1.fc32.armv7hl\n - SDL-0:1.2.15-43.fc32.i686\n - libical-glib-0:3.0.8-1.fc32.ppc64le\n - compat-wxGTK3-gtk2-devel-0:3.0.4-13.fc32.x86_64\n - boost-graph-0:1.69.0-18.fc32.s390x\n - libpaper-0:1.1.24-26.fc32.s390x\n - boost-iostreams-0:1.69.0-18.fc32.x86_64\n - libGLEW-0:2.1.0-6.fc32.i686\n - liboauth-0:1.0.3-14.fc32.armv7hl\n - libgdata-devel-0:0.17.12-1.fc32.aarch64\n - boost-type_erasure-0:1.69.0-18.fc32.x86_64\n - libijs-0:0.35-11.fc32.aarch64\n - boost-program-options-0:1.69.0-18.fc32.armv7hl\n - glibmm24-devel-0:2.64.2-1.fc32.armv7hl\n - poppler-cpp-devel-0:0.84.0-2.fc32.ppc64le\n - boost-type_erasure-0:1.69.0-18.fc32.aarch64\n - openblas-threads64_-0:0.3.9-2.fc32.s390x\n - boost-0:1.69.0-18.fc32.armv7hl\n - boost-coroutine-0:1.69.0-18.fc32.x86_64\n - openblas-openmp64-0:0.3.9-2.fc32.ppc64le\n - boost-python3-devel-0:1.69.0-18.fc32.aarch64\n - xorg-x11-font-utils-1:7.5-44.fc32.i686\n - compat-wxGTK3-gtk2-devel-0:3.0.4-13.fc32.i686\n - gspell-0:1.8.3-2.fc32.s390x\n - wxBase3-devel-0:3.0.4-13.fc32.armv7hl\n - gnome-desktop3-devel-0:3.36.2-1.fc32.ppc64le\n - libgs-0:9.52-1.fc32.x86_64\n - ghostscript-tools-fonts-0:9.52-1.fc32.aarch64\n - SDL-0:1.2.15-43.fc32.armv7hl\n - compat-wxGTK3-gtk2-media-0:3.0.4-13.fc32.armv7hl\n - polkit-devel-0:0.116-7.fc32.ppc64le\n - wxGTK3-gl-0:3.0.4-13.fc32.ppc64le\n - libidn-devel-0:1.35-7.fc32.armv7hl\n - boost-wave-0:1.69.0-18.fc32.armv7hl\n - urw-base35-fonts-legacy-0:20170801-14.fc32.noarch\n - atkmm-doc-0:2.24.3-4.fc32.noarch\n - jbig2dec-devel-0:0.17-4.fc32.armv7hl\n - openblas-static-0:0.3.9-2.fc32.s390x\n - openblas-Rblas-0:0.3.9-2.fc32.ppc64le\n - libidn-devel-0:1.35-7.fc32.i686\n - startup-notification-0:0.12-19.fc32.armv7hl\n - wxGTK3-webview-0:3.0.4-13.fc32.aarch64\n - libhandy-devel-0:0.0.13-2.fc32.aarch64\n - openblas-serial-0:0.3.9-2.fc32.ppc64le\n - boost-context-0:1.69.0-18.fc32.aarch64\n - ghostscript-core-0:9.52-1.fc32.i686\n - libgweather-0:3.36.0-1.fc32.s390x\n - ilmbase-devel-0:2.3.0-4.fc32.x86_64\n - urw-base35-z003-fonts-0:20170801-14.fc32.noarch\n - libhandy-0:0.0.13-2.fc32.s390x\n - geocode-glib-0:3.26.2-1.fc32.ppc64le\n - poppler-devel-0:0.84.0-2.fc32.armv7hl\n - boost-wave-0:1.69.0-18.fc32.x86_64\n - polkit-0:0.116-7.fc32.x86_64\n - gnome-online-accounts-0:3.36.0-1.fc32.s390x\n - liboauth-devel-0:1.0.3-14.fc32.aarch64\n - evolution-data-server-perl-0:3.36.2-1.fc32.aarch64\n - gnome-online-accounts-0:3.36.0-1.fc32.aarch64\n - wxGTK3-devel-0:3.0.4-13.fc32.aarch64\n - OpenEXR-0:2.3.0-5.fc32.ppc64le\n - boost-locale-0:1.69.0-18.fc32.s390x\n - ghostscript-tools-fonts-0:9.52-1.fc32.armv7hl\n - liboauth-devel-0:1.0.3-14.fc32.x86_64\n - boost-math-0:1.69.0-18.fc32.s390x\n - boost-test-0:1.69.0-18.fc32.s390x\n - poppler-utils-0:0.84.0-2.fc32.i686\n - OpenEXR-libs-0:2.3.0-5.fc32.x86_64\n - gtksourceview3-tests-0:3.24.11-3.fc32.aarch64\n - libgweather-devel-0:3.36.0-1.fc32.aarch64\n - evolution-data-server-tests-0:3.36.2-1.fc32.x86_64\n - adobe-mappings-pdf-0:20180407-5.fc32.noarch\n - compat-wxGTK3-gtk2-0:3.0.4-13.fc32.aarch64\n - poppler-qt5-devel-0:0.84.0-2.fc32.armv7hl\n - evolution-data-server-tests-0:3.36.2-1.fc32.i686\n - SDL_image-devel-0:1.2.12-23.fc32.x86_64\n - poppler-qt-0:0.84.0-2.fc32.ppc64le\n - boost-stacktrace-0:1.69.0-18.fc32.ppc64le\n - boost-static-0:1.69.0-18.fc32.x86_64\n - SDL-devel-0:1.2.15-43.fc32.armv7hl\n - polkit-0:0.116-7.fc32.armv7hl\n - libhandy-0:0.0.13-2.fc32.aarch64\n - boost-doctools-0:1.69.0-18.fc32.x86_64\n - libpaper-devel-0:1.1.24-26.fc32.aarch64\n - libwmf-lite-0:0.2.12-3.fc32.ppc64le\n - boost-iostreams-0:1.69.0-18.fc32.i686\n - gd-devel-0:2.3.0-1.fc32.s390x\n - boost-iostreams-0:1.69.0-18.fc32.aarch64\n - wxBase3-0:3.0.4-13.fc32.aarch64\n - wxBase3-0:3.0.4-13.fc32.x86_64\n - openjpeg2-devel-0:2.3.1-6.fc32.s390x\n - atkmm-devel-0:2.24.3-4.fc32.x86_64\n - boost-math-0:1.69.0-18.fc32.aarch64\n - libwmf-devel-0:0.2.12-3.fc32.s390x\n - libpeas-0:1.26.0-1.fc32.aarch64\n - SDL-0:1.2.15-43.fc32.x86_64\n - libical-devel-0:3.0.8-1.fc32.aarch64\n - libsigc++20-0:2.10.3-1.fc32.s390x\n - evolution-data-server-devel-0:3.36.2-1.fc32.i686\n - boost-log-0:1.69.0-18.fc32.aarch64\n - poppler-glib-devel-0:0.84.0-2.fc32.ppc64le\n - exiv2-devel-0:0.27.2-2.fc32.i686\n - wxGTK3-gl-0:3.0.4-13.fc32.x86_64\n - libwmf-devel-0:0.2.12-3.fc32.x86_64\n - ghostscript-tools-dvipdf-0:9.52-1.fc32.ppc64le\n - libical-glib-devel-0:3.0.8-1.fc32.ppc64le\n - poppler-glib-0:0.84.0-2.fc32.armv7hl\n - boost-iostreams-0:1.69.0-18.fc32.ppc64le\n - boost-jam-0:1.69.0-18.fc32.armv7hl\n - libidn-0:1.35-7.fc32.armv7hl\n - libical-0:3.0.8-1.fc32.i686\n - evolution-data-server-devel-0:3.36.2-1.fc32.x86_64\n - wxGTK3-webview-0:3.0.4-13.fc32.i686\n - gsl-devel-0:2.6-2.fc32.s390x\n - urw-base35-fonts-common-0:20170801-14.fc32.noarch\n - boost-jam-0:1.69.0-18.fc32.s390x\n - openblas-serial-0:0.3.9-2.fc32.aarch64\n - gtksourceview3-0:3.24.11-3.fc32.s390x\n - poppler-qt5-0:0.84.0-2.fc32.i686\n - libpaper-devel-0:1.1.24-26.fc32.ppc64le\n - poppler-qt-0:0.84.0-2.fc32.armv7hl\n - gtksourceview3-tests-0:3.24.11-3.fc32.ppc64le\n - wxBase3-devel-0:3.0.4-13.fc32.i686\n - compat-wxGTK3-gtk2-devel-0:3.0.4-13.fc32.armv7hl\n - boost-date-time-0:1.69.0-18.fc32.x86_64\n - libwmf-devel-0:0.2.12-3.fc32.ppc64le\n - wxGTK3-devel-0:3.0.4-13.fc32.ppc64le\n - openblas-serial-0:0.3.9-2.fc32.x86_64\n - pangomm-0:2.42.1-1.fc32.i686\n - libpaper-devel-0:1.1.24-26.fc32.x86_64\n - startup-notification-devel-0:0.12-19.fc32.x86_64\n - openblas-devel-0:0.3.9-2.fc32.armv7hl\n - ilmbase-devel-0:2.3.0-4.fc32.aarch64\n - boost-0:1.69.0-18.fc32.aarch64\n - openjpeg2-0:2.3.1-6.fc32.aarch64\n - OpenEXR-doc-0:2.3.0-5.fc32.aarch64\n - geocode-glib-devel-0:3.26.2-1.fc32.ppc64le\n - openblas-serial-0:0.3.9-2.fc32.i686\n - cairomm-0:1.12.0-12.fc32.aarch64\n - wxBase3-0:3.0.4-13.fc32.i686\n - boost-program-options-0:1.69.0-18.fc32.s390x\n - libgweather-devel-0:3.36.0-1.fc32.x86_64\n - boost-devel-0:1.69.0-18.fc32.x86_64\n - boost-context-0:1.69.0-18.fc32.armv7hl\n - openjpeg2-devel-docs-0:2.3.1-6.fc32.noarch\n - libpeas-loader-python3-0:1.26.0-1.fc32.armv7hl\n - xorg-x11-font-utils-1:7.5-44.fc32.armv7hl\n - atkmm-devel-0:2.24.3-4.fc32.aarch64\n - boost-graph-0:1.69.0-18.fc32.aarch64\n - gnome-desktop3-0:3.36.2-1.fc32.s390x\n - boost-system-0:1.69.0-18.fc32.ppc64le\n - gnome-online-accounts-devel-0:3.36.0-1.fc32.armv7hl\n - cairomm-doc-0:1.12.0-12.fc32.noarch\n - gspell-devel-0:1.8.3-2.fc32.aarch64\n - evolution-data-server-0:3.36.2-1.fc32.x86_64\n - ghostscript-core-0:9.52-1.fc32.s390x\n - google-droid-sans-mono-fonts-0:20200215-3.fc32.noarch\n - jbig2dec-devel-0:0.17-4.fc32.aarch64\n - ghostscript-x11-0:9.52-1.fc32.i686\n - ghostscript-x11-0:9.52-1.fc32.x86_64\n - openjpeg2-devel-0:2.3.1-6.fc32.x86_64\n - OpenEXR-libs-0:2.3.0-5.fc32.armv7hl\n - libical-devel-0:3.0.8-1.fc32.s390x\n - startup-notification-0:0.12-19.fc32.i686\n - OpenEXR-0:2.3.0-5.fc32.s390x\n - openblas-serial64_-0:0.3.9-2.fc32.x86_64\n - libimagequant-devel-0:2.12.6-2.fc32.ppc64le\n - libidn-devel-0:1.35-7.fc32.x86_64\n - openjpeg2-0:2.3.1-6.fc32.i686\n - cairomm-0:1.12.0-12.fc32.armv7hl\n - boost-timer-0:1.69.0-18.fc32.x86_64\n - boost-thread-0:1.69.0-18.fc32.armv7hl\n - openblas-serial64-0:0.3.9-2.fc32.ppc64le\n - evolution-data-server-tests-0:3.36.2-1.fc32.ppc64le\n - ilmbase-0:2.3.0-4.fc32.s390x\n - glew-0:2.1.0-6.fc32.ppc64le\n - glibmm24-doc-0:2.64.2-1.fc32.noarch\n - gtksourceview3-tests-0:3.24.11-3.fc32.s390x\n - gnome-desktop3-0:3.36.2-1.fc32.armv7hl\n - urw-base35-gothic-fonts-0:20170801-14.fc32.noarch\n - jbig2dec-0:0.17-4.fc32.armv7hl\n - glibmm24-0:2.64.2-1.fc32.x86_64\n - glew-devel-0:2.1.0-6.fc32.x86_64\n - libgweather-0:3.36.0-1.fc32.aarch64\n - openblas-serial64_-0:0.3.9-2.fc32.aarch64\n - OpenEXR-devel-0:2.3.0-5.fc32.x86_64\n - boost-fiber-0:1.69.0-18.fc32.armv7hl\n - boost-test-0:1.69.0-18.fc32.i686\n - geocode-glib-devel-0:3.26.2-1.fc32.aarch64\n - libdazzle-0:3.36.0-1.fc32.s390x\n - libwmf-lite-0:0.2.12-3.fc32.x86_64\n - libical-glib-devel-0:3.0.8-1.fc32.x86_64\n - poppler-0:0.84.0-2.fc32.armv7hl\n - openblas-static-0:0.3.9-2.fc32.armv7hl\n - pangomm-0:2.42.1-1.fc32.s390x\n - google-droid-serif-fonts-0:20200215-3.fc32.noarch\n - poppler-qt5-0:0.84.0-2.fc32.x86_64\n - gnome-desktop3-tests-0:3.36.2-1.fc32.s390x\n - gnome-desktop3-0:3.36.2-1.fc32.ppc64le\n - boost-graph-0:1.69.0-18.fc32.x86_64\n - poppler-qt5-devel-0:0.84.0-2.fc32.x86_64\n - gnome-desktop3-tests-0:3.36.2-1.fc32.armv7hl\n - OpenEXR-libs-0:2.3.0-5.fc32.s390x\n - SDL-devel-0:1.2.15-43.fc32.x86_64\n - exiv2-libs-0:0.27.2-2.fc32.armv7hl\n - google-droid-sans-fonts-0:20200215-3.fc32.noarch\n - openblas-openmp64-0:0.3.9-2.fc32.x86_64\n - gnome-online-accounts-0:3.36.0-1.fc32.i686\n - boost-stacktrace-0:1.69.0-18.fc32.aarch64\n - libhandy-devel-0:0.0.13-2.fc32.s390x\n - polkit-0:0.116-7.fc32.aarch64\n - exiv2-0:0.27.2-2.fc32.x86_64\n - flatpak-rpm-macros-0:32-2.fc32.s390x\n - poppler-cpp-0:0.84.0-2.fc32.i686\n - openjpeg2-devel-0:2.3.1-6.fc32.aarch64\n - poppler-qt5-devel-0:0.84.0-2.fc32.aarch64\n - evolution-data-server-perl-0:3.36.2-1.fc32.ppc64le\n - openblas-serial64_-0:0.3.9-2.fc32.ppc64le\n - gtkmm30-0:3.24.2-2.fc32.armv7hl\n - openblas-serial-0:0.3.9-2.fc32.armv7hl\n - polkit-0:0.116-7.fc32.i686\n - ghostscript-gtk-0:9.52-1.fc32.x86_64\n - libgdata-0:0.17.12-1.fc32.aarch64\n - boost-contract-0:1.69.0-18.fc32.armv7hl\n - libpeas-devel-0:1.26.0-1.fc32.x86_64\n - wxGTK3-devel-0:3.0.4-13.fc32.s390x\n - boost-doctools-0:1.69.0-18.fc32.ppc64le\n - boost-doctools-0:1.69.0-18.fc32.aarch64\n - gtksourceview3-0:3.24.11-3.fc32.armv7hl\n - openblas-openmp-0:0.3.9-2.fc32.x86_64\n - libical-0:3.0.8-1.fc32.s390x\n - gspell-0:1.8.3-2.fc32.ppc64le\n - wxBase3-0:3.0.4-13.fc32.s390x\n - libsigc++20-devel-0:2.10.3-1.fc32.s390x\n - openjpeg2-tools-0:2.3.1-6.fc32.s390x\n - libijs-doc-0:0.35-11.fc32.noarch\n - flatpak-runtime-config-0:32-1.fc32.i686\n - libical-0:3.0.8-1.fc32.ppc64le\n - boost-serialization-0:1.69.0-18.fc32.x86_64\n - openblas-Rblas-0:0.3.9-2.fc32.s390x\n - polkit-libs-0:0.116-7.fc32.s390x\n - libgdata-0:0.17.12-1.fc32.armv7hl\n - compat-wxGTK3-gtk2-media-0:3.0.4-13.fc32.aarch64\n - openblas-0:0.3.9-2.fc32.ppc64le\n - libpeas-loader-python3-0:1.26.0-1.fc32.x86_64\n - boost-date-time-0:1.69.0-18.fc32.s390x\n - glew-devel-0:2.1.0-6.fc32.ppc64le\n - gtkmm30-devel-0:3.24.2-2.fc32.armv7hl\n - gnome-desktop3-tests-0:3.36.2-1.fc32.i686\n - boost-container-0:1.69.0-18.fc32.s390x\n - gd-0:2.3.0-1.fc32.ppc64le\n - dbus-glib-devel-0:0.110-7.fc32.x86_64\n - geocode-glib-0:3.26.2-1.fc32.x86_64\n - jbig2dec-0:0.17-4.fc32.s390x\n - libmspack-0:0.10.1-0.3.alpha.fc32.aarch64\n - gsl-0:2.6-2.fc32.s390x\n - libimagequant-0:2.12.6-2.fc32.aarch64\n - startup-notification-0:0.12-19.fc32.ppc64le\n - dbus-glib-0:0.110-7.fc32.s390x\n - libGLEW-0:2.1.0-6.fc32.ppc64le\n - evolution-data-server-devel-0:3.36.2-1.fc32.armv7hl\n - boost-locale-0:1.69.0-18.fc32.armv7hl\n - libsigc++20-devel-0:2.10.3-1.fc32.armv7hl\n - cairomm-0:1.12.0-12.fc32.x86_64\n - atkmm-0:2.24.3-4.fc32.i686\n - poppler-glib-devel-0:0.84.0-2.fc32.aarch64\n - libfontenc-0:1.1.3-12.fc32.ppc64le\n - boost-python3-devel-0:1.69.0-18.fc32.i686\n - urw-base35-nimbus-mono-ps-fonts-0:20170801-14.fc32.noarch\n - boost-0:1.69.0-18.fc32.i686\n - openblas-openmp64-0:0.3.9-2.fc32.s390x\n - pangomm-devel-0:2.42.1-1.fc32.aarch64\n - OpenEXR-libs-0:2.3.0-5.fc32.aarch64\n - startup-notification-devel-0:0.12-19.fc32.i686\n - boost-timer-0:1.69.0-18.fc32.i686\n - gnome-online-accounts-0:3.36.0-1.fc32.ppc64le\n - boost-system-0:1.69.0-18.fc32.x86_64\n - adobe-mappings-cmap-devel-0:20171205-7.fc32.noarch\n - poppler-data-devel-0:0.4.9-5.fc32.noarch\n - libpeas-loader-python3-0:1.26.0-1.fc32.aarch64\n - boost-stacktrace-0:1.69.0-18.fc32.x86_64\n - boost-container-0:1.69.0-18.fc32.aarch64\n - boost-thread-0:1.69.0-18.fc32.aarch64\n - pangomm-0:2.42.1-1.fc32.armv7hl\n - poppler-utils-0:0.84.0-2.fc32.s390x\n - boost-coroutine-0:1.69.0-18.fc32.armv7hl\n - poppler-glib-0:0.84.0-2.fc32.i686\n - liboauth-devel-0:1.0.3-14.fc32.ppc64le\n - gd-devel-0:2.3.0-1.fc32.i686\n - libical-glib-devel-0:3.0.8-1.fc32.s390x\n - openblas-threads-0:0.3.9-2.fc32.x86_64\n - jbig2dec-libs-0:0.17-4.fc32.ppc64le\n - boost-test-0:1.69.0-18.fc32.x86_64\n - libidn-devel-0:1.35-7.fc32.s390x\n - ghostscript-0:9.52-1.fc32.aarch64\n - wxGTK3-webview-0:3.0.4-13.fc32.s390x\n - dbus-glib-0:0.110-7.fc32.aarch64\n - compat-wxGTK3-gtk2-gl-0:3.0.4-13.fc32.armv7hl\n - flatpak-rpm-macros-0:32-2.fc32.i686\n - pangomm-devel-0:2.42.1-1.fc32.armv7hl\n - libgs-0:9.52-1.fc32.armv7hl\n - wxGTK3-media-0:3.0.4-13.fc32.s390x\n - boost-date-time-0:1.69.0-18.fc32.i686\n - boost-chrono-0:1.69.0-18.fc32.armv7hl\n - glibmm24-devel-0:2.64.2-1.fc32.i686\n - openblas-serial64-0:0.3.9-2.fc32.x86_64\n - boost-numpy3-0:1.69.0-18.fc32.ppc64le\n - boost-stacktrace-0:1.69.0-18.fc32.i686\n - jbig2dec-devel-0:0.17-4.fc32.i686\n - libical-0:3.0.8-1.fc32.armv7hl\n - openblas-threads-0:0.3.9-2.fc32.s390x\n - gd-progs-0:2.3.0-1.fc32.i686\n - SDL_image-0:1.2.12-23.fc32.ppc64le\n - ghostscript-tools-printing-0:9.52-1.fc32.ppc64le\n - boost-chrono-0:1.69.0-18.fc32.x86_64\n - gsl-0:2.6-2.fc32.i686\n - liboauth-devel-0:1.0.3-14.fc32.i686\n - gtksourceview3-devel-0:3.24.11-3.fc32.s390x\n - libfontenc-devel-0:1.1.3-12.fc32.i686\n - gd-0:2.3.0-1.fc32.aarch64\n - libdazzle-0:3.36.0-1.fc32.aarch64\n - cairomm-devel-0:1.12.0-12.fc32.s390x\n - evolution-data-server-0:3.36.2-1.fc32.s390x\n - openjpeg2-devel-0:2.3.1-6.fc32.armv7hl\n - exiv2-0:0.27.2-2.fc32.ppc64le\n - ilmbase-0:2.3.0-4.fc32.x86_64\n - boost-graph-0:1.69.0-18.fc32.i686\n - boost-random-0:1.69.0-18.fc32.armv7hl\n - wxGTK3-webview-0:3.0.4-13.fc32.armv7hl\n - gtksourceview3-tests-0:3.24.11-3.fc32.armv7hl\n - openjpeg2-devel-0:2.3.1-6.fc32.ppc64le\n - polkit-devel-0:0.116-7.fc32.i686\n - flatpak-rpm-macros-0:32-2.fc32.armv7hl\n - gnome-online-accounts-devel-0:3.36.0-1.fc32.aarch64\n - gd-devel-0:2.3.0-1.fc32.armv7hl\n - openjpeg2-tools-0:2.3.1-6.fc32.ppc64le\n - gtksourceview3-devel-0:3.24.11-3.fc32.x86_64\n - urw-base35-p052-fonts-0:20170801-14.fc32.noarch\n - OpenEXR-libs-0:2.3.0-5.fc32.i686\n - wxGTK3-media-0:3.0.4-13.fc32.ppc64le\n - libijs-0:0.35-11.fc32.ppc64le\n - cairomm-devel-0:1.12.0-12.fc32.aarch64\n - startup-notification-0:0.12-19.fc32.x86_64\n - evolution-data-server-tests-0:3.36.2-1.fc32.armv7hl\n - SDL-0:1.2.15-43.fc32.s390x\n - libical-glib-0:3.0.8-1.fc32.s390x\n - poppler-qt-devel-0:0.84.0-2.fc32.armv7hl\n - libimagequant-devel-0:2.12.6-2.fc32.aarch64\n - exiv2-devel-0:0.27.2-2.fc32.x86_64\n - urw-base35-nimbus-roman-fonts-0:20170801-14.fc32.noarch\n - startup-notification-devel-0:0.12-19.fc32.armv7hl\n - boost-doc-0:1.69.0-18.fc32.aarch64\n - libmspack-0:0.10.1-0.3.alpha.fc32.i686\n - libpeas-gtk-0:1.26.0-1.fc32.i686\n - glibmm24-devel-0:2.64.2-1.fc32.aarch64\n - libhandy-0:0.0.13-2.fc32.x86_64\n - ghostscript-0:9.52-1.fc32.s390x\n - boost-filesystem-0:1.69.0-18.fc32.i686\n - boost-timer-0:1.69.0-18.fc32.ppc64le\n - libidn-0:1.35-7.fc32.aarch64\n - boost-system-0:1.69.0-18.fc32.aarch64\n - exiv2-libs-0:0.27.2-2.fc32.s390x\n - poppler-qt5-0:0.84.0-2.fc32.s390x\n - boost-jam-0:1.69.0-18.fc32.i686\n - boost-devel-0:1.69.0-18.fc32.armv7hl\n - boost-context-0:1.69.0-18.fc32.ppc64le\n - SDL-static-0:1.2.15-43.fc32.armv7hl\n - boost-thread-0:1.69.0-18.fc32.ppc64le\n - wxGTK3-gl-0:3.0.4-13.fc32.s390x\n - exiv2-devel-0:0.27.2-2.fc32.armv7hl\n - libpeas-gtk-0:1.26.0-1.fc32.aarch64\n - atkmm-devel-0:2.24.3-4.fc32.s390x\n - wxBase3-devel-0:3.0.4-13.fc32.aarch64\n - libgdata-0:0.17.12-1.fc32.s390x\n - gnome-online-accounts-devel-0:3.36.0-1.fc32.x86_64\n - poppler-qt-devel-0:0.84.0-2.fc32.s390x\n - glibmm24-devel-0:2.64.2-1.fc32.ppc64le\n - libgweather-0:3.36.0-1.fc32.i686\n - evolution-data-server-langpacks-0:3.36.2-1.fc32.noarch\n - urw-base35-c059-fonts-0:20170801-14.fc32.noarch\n - pangomm-0:2.42.1-1.fc32.aarch64\n - libpeas-devel-0:1.26.0-1.fc32.ppc64le\n - poppler-utils-0:0.84.0-2.fc32.ppc64le\n - libpaper-0:1.1.24-26.fc32.ppc64le\n - boost-math-0:1.69.0-18.fc32.ppc64le\n - liboauth-devel-0:1.0.3-14.fc32.armv7hl\n - boost-atomic-0:1.69.0-18.fc32.ppc64le\n - boost-python3-0:1.69.0-18.fc32.ppc64le\n - boost-filesystem-0:1.69.0-18.fc32.s390x\n - gnome-desktop3-devel-0:3.36.2-1.fc32.x86_64\n - poppler-qt5-0:0.84.0-2.fc32.aarch64\n - boost-devel-0:1.69.0-18.fc32.s390x\n - exiv2-libs-0:0.27.2-2.fc32.x86_64\n - libpeas-0:1.26.0-1.fc32.ppc64le\n - boost-math-0:1.69.0-18.fc32.i686\n - boost-locale-0:1.69.0-18.fc32.i686\n - exiv2-libs-0:0.27.2-2.fc32.i686\n - libfontenc-0:1.1.3-12.fc32.i686\n - boost-jam-0:1.69.0-18.fc32.x86_64\n - openblas-static-0:0.3.9-2.fc32.aarch64\n - liboauth-0:1.0.3-14.fc32.ppc64le\n - openblas-openmp64_-0:0.3.9-2.fc32.ppc64le\n - libfontenc-0:1.1.3-12.fc32.aarch64\n - openblas-serial64_-0:0.3.9-2.fc32.s390x\n - boost-doc-0:1.69.0-18.fc32.ppc64le\n - gd-progs-0:2.3.0-1.fc32.armv7hl\n - boost-container-0:1.69.0-18.fc32.x86_64\n - libwmf-0:0.2.12-3.fc32.armv7hl\n - boost-test-0:1.69.0-18.fc32.armv7hl\n - wxGTK3-devel-0:3.0.4-13.fc32.i686\n - SDL_image-devel-0:1.2.12-23.fc32.s390x\n - boost-atomic-0:1.69.0-18.fc32.i686\n - ghostscript-tools-fonts-0:9.52-1.fc32.s390x\n - boost-atomic-0:1.69.0-18.fc32.s390x\n - poppler-0:0.84.0-2.fc32.aarch64\n - openblas-threads64-0:0.3.9-2.fc32.x86_64\n - wxGTK3-gl-0:3.0.4-13.fc32.armv7hl\n - flatpak-rpm-macros-0:32-2.fc32.ppc64le\n - openblas-openmp-0:0.3.9-2.fc32.armv7hl\n - libical-glib-0:3.0.8-1.fc32.x86_64\n - jbig2dec-devel-0:0.17-4.fc32.x86_64\n - libgs-devel-0:9.52-1.fc32.ppc64le\n - openjpeg2-tools-0:2.3.1-6.fc32.x86_64\n - libsigc++20-devel-0:2.10.3-1.fc32.x86_64\n - startup-notification-0:0.12-19.fc32.s390x\n - adobe-mappings-cmap-deprecated-0:20171205-7.fc32.noarch\n - SDL_image-0:1.2.12-23.fc32.aarch64\n - SDL_image-0:1.2.12-23.fc32.i686\n - libpeas-devel-0:1.26.0-1.fc32.aarch64\n - libical-devel-0:3.0.8-1.fc32.armv7hl\n - ghostscript-x11-0:9.52-1.fc32.armv7hl\n - boost-log-0:1.69.0-18.fc32.armv7hl\n - libgs-0:9.52-1.fc32.i686\n - boost-jam-0:1.69.0-18.fc32.aarch64\n - jbig2dec-0:0.17-4.fc32.x86_64\n - gnome-desktop3-0:3.36.2-1.fc32.x86_64\n - poppler-qt5-devel-0:0.84.0-2.fc32.ppc64le\n - libsigc++20-0:2.10.3-1.fc32.x86_64\n - SDL-devel-0:1.2.15-43.fc32.ppc64le\n - libpeas-gtk-0:1.26.0-1.fc32.s390x\n - gnome-desktop3-0:3.36.2-1.fc32.i686\n - libhandy-0:0.0.13-2.fc32.ppc64le\n - SDL_image-0:1.2.12-23.fc32.armv7hl\n - libpeas-loader-python3-0:1.26.0-1.fc32.i686\n - compat-wxGTK3-gtk2-0:3.0.4-13.fc32.s390x\n - boost-date-time-0:1.69.0-18.fc32.armv7hl\n - boost-context-0:1.69.0-18.fc32.i686\n - poppler-glib-0:0.84.0-2.fc32.ppc64le\n - libmspack-devel-0:0.10.1-0.3.alpha.fc32.aarch64\n - libmspack-devel-0:0.10.1-0.3.alpha.fc32.x86_64\n - openblas-Rblas-0:0.3.9-2.fc32.i686\n - libpeas-devel-0:1.26.0-1.fc32.s390x\n - boost-serialization-0:1.69.0-18.fc32.ppc64le\n - poppler-glib-doc-0:0.84.0-2.fc32.noarch\n - openblas-Rblas-0:0.3.9-2.fc32.armv7hl\n - dbus-glib-devel-0:0.110-7.fc32.aarch64\n - adobe-mappings-cmap-0:20171205-7.fc32.noarch\n - libmspack-0:0.10.1-0.3.alpha.fc32.x86_64\n - gd-devel-0:2.3.0-1.fc32.aarch64\n - gnome-online-accounts-devel-0:3.36.0-1.fc32.ppc64le\n - pangomm-0:2.42.1-1.fc32.ppc64le\n - dbus-glib-devel-0:0.110-7.fc32.armv7hl\n - polkit-libs-0:0.116-7.fc32.aarch64\n - libgs-0:9.52-1.fc32.s390x\n - openblas-openmp64_-0:0.3.9-2.fc32.aarch64\n - urw-base35-fonts-devel-0:20170801-14.fc32.noarch\n - geocode-glib-devel-0:3.26.2-1.fc32.i686\n - libdazzle-0:3.36.0-1.fc32.x86_64\n - atkmm-devel-0:2.24.3-4.fc32.armv7hl\n - ghostscript-tools-fonts-0:9.52-1.fc32.i686\n - compat-wxGTK3-gtk2-0:3.0.4-13.fc32.i686\n - ghostscript-x11-0:9.52-1.fc32.s390x\n - wxBase3-0:3.0.4-13.fc32.ppc64le\n - ghostscript-tools-dvipdf-0:9.52-1.fc32.s390x\n - libijs-devel-0:0.35-11.fc32.armv7hl\n - openblas-0:0.3.9-2.fc32.s390x\n - gnome-desktop3-0:3.36.2-1.fc32.aarch64\n - ghostscript-tools-dvipdf-0:9.52-1.fc32.armv7hl\n - gtkmm30-0:3.24.2-2.fc32.ppc64le\n - jbig2dec-0:0.17-4.fc32.ppc64le\n - boost-system-0:1.69.0-18.fc32.armv7hl\n - libpeas-loader-python3-0:1.26.0-1.fc32.s390x\n - dbus-glib-0:0.110-7.fc32.i686\n - ghostscript-gtk-0:9.52-1.fc32.aarch64\n - compat-wxGTK3-gtk2-devel-0:3.0.4-13.fc32.ppc64le\n - gtksourceview3-devel-0:3.24.11-3.fc32.armv7hl\n - flatpak-runtime-config-0:32-1.fc32.x86_64\n - libwmf-0:0.2.12-3.fc32.aarch64\n - libijs-devel-0:0.35-11.fc32.aarch64\n - SDL-static-0:1.2.15-43.fc32.ppc64le\n - ghostscript-0:9.52-1.fc32.ppc64le\n - atkmm-0:2.24.3-4.fc32.armv7hl\n - dbus-glib-0:0.110-7.fc32.x86_64\n - libwmf-devel-0:0.2.12-3.fc32.aarch64\n - xorg-x11-font-utils-1:7.5-44.fc32.ppc64le\n - gtksourceview3-devel-0:3.24.11-3.fc32.aarch64\n - poppler-qt-devel-0:0.84.0-2.fc32.i686\n - urw-base35-d050000l-fonts-0:20170801-14.fc32.noarch\n - poppler-qt-devel-0:0.84.0-2.fc32.x86_64\n - gtkmm30-devel-0:3.24.2-2.fc32.x86_64\n - evolution-data-server-perl-0:3.36.2-1.fc32.s390x\n - openblas-serial64-0:0.3.9-2.fc32.aarch64\n - boost-numpy3-0:1.69.0-18.fc32.i686\n - openblas-openmp64-0:0.3.9-2.fc32.aarch64\n - boost-wave-0:1.69.0-18.fc32.i686\n - OpenEXR-0:2.3.0-5.fc32.armv7hl\n - libpeas-devel-0:1.26.0-1.fc32.i686\n - boost-stacktrace-0:1.69.0-18.fc32.s390x\n - openblas-static-0:0.3.9-2.fc32.x86_64\n - libdazzle-0:3.36.0-1.fc32.ppc64le\n - glew-devel-0:2.1.0-6.fc32.i686\n - libgweather-devel-0:3.36.0-1.fc32.s390x\n - atkmm-devel-0:2.24.3-4.fc32.ppc64le\n - libpeas-0:1.26.0-1.fc32.i686\n - dbus-glib-devel-0:0.110-7.fc32.ppc64le\n - evolution-data-server-devel-0:3.36.2-1.fc32.s390x\n - polkit-libs-0:0.116-7.fc32.x86_64\n - boost-numpy3-0:1.69.0-18.fc32.armv7hl\n - SDL_image-0:1.2.12-23.fc32.s390x\n - openblas-devel-0:0.3.9-2.fc32.s390x\n - wxBase3-devel-0:3.0.4-13.fc32.ppc64le\n - boost-regex-0:1.69.0-18.fc32.x86_64\n - boost-numpy3-0:1.69.0-18.fc32.s390x\n - libGLEW-0:2.1.0-6.fc32.s390x\n - gnome-online-accounts-0:3.36.0-1.fc32.x86_64\n - libgs-devel-0:9.52-1.fc32.x86_64\n - boost-python3-0:1.69.0-18.fc32.s390x\n - evolution-data-server-devel-0:3.36.2-1.fc32.aarch64\n - startup-notification-devel-0:0.12-19.fc32.aarch64\n - boost-regex-0:1.69.0-18.fc32.s390x\n - libpeas-devel-0:1.26.0-1.fc32.armv7hl\n - boost-static-0:1.69.0-18.fc32.armv7hl\n - wxBase3-devel-0:3.0.4-13.fc32.s390x\n - dbus-glib-0:0.110-7.fc32.ppc64le\n - wxGTK3-0:3.0.4-13.fc32.i686\n - libdazzle-devel-0:3.36.0-1.fc32.armv7hl\n - boost-numpy3-0:1.69.0-18.fc32.x86_64\n - ilmbase-devel-0:2.3.0-4.fc32.i686\n - libical-glib-0:3.0.8-1.fc32.i686\n - atkmm-0:2.24.3-4.fc32.x86_64\n - wxGTK3-0:3.0.4-13.fc32.ppc64le\n - boost-contract-0:1.69.0-18.fc32.i686\n - boost-python3-devel-0:1.69.0-18.fc32.s390x\n - libsigc++20-0:2.10.3-1.fc32.armv7hl\n - wxGTK3-media-0:3.0.4-13.fc32.armv7hl\n - ghostscript-tools-printing-0:9.52-1.fc32.i686\n - boost-locale-0:1.69.0-18.fc32.aarch64\n - ghostscript-doc-0:9.52-1.fc32.noarch\n - boost-chrono-0:1.69.0-18.fc32.i686\n - pangomm-doc-0:2.42.1-1.fc32.noarch\n - openblas-Rblas-0:0.3.9-2.fc32.x86_64\n - poppler-qt5-0:0.84.0-2.fc32.armv7hl\n - cairomm-devel-0:1.12.0-12.fc32.armv7hl\n - wxGTK3-0:3.0.4-13.fc32.aarch64\n - SDL_image-0:1.2.12-23.fc32.x86_64\n - boost-test-0:1.69.0-18.fc32.aarch64\n - libmspack-0:0.10.1-0.3.alpha.fc32.ppc64le\n - boost-static-0:1.69.0-18.fc32.s390x\n - compat-wxGTK3-gtk2-media-0:3.0.4-13.fc32.s390x\n - gsl-devel-0:2.6-2.fc32.aarch64\n - libwmf-lite-0:0.2.12-3.fc32.i686\n - boost-iostreams-0:1.69.0-18.fc32.s390x\n - polkit-libs-0:0.116-7.fc32.armv7hl\n - glibmm24-0:2.64.2-1.fc32.i686\n - boost-examples-0:1.69.0-18.fc32.aarch64\n - boost-random-0:1.69.0-18.fc32.i686\n - gd-progs-0:2.3.0-1.fc32.x86_64\n - libmspack-devel-0:0.10.1-0.3.alpha.fc32.i686\n - boost-iostreams-0:1.69.0-18.fc32.armv7hl\n - openblas-Rblas-0:0.3.9-2.fc32.aarch64\n - geocode-glib-0:3.26.2-1.fc32.i686\n - openblas-threads-0:0.3.9-2.fc32.ppc64le\n - compat-wxGTK3-gtk2-devel-0:3.0.4-13.fc32.aarch64\n - libgweather-0:3.36.0-1.fc32.armv7hl\n - libimagequant-0:2.12.6-2.fc32.s390x\n - poppler-cpp-devel-0:0.84.0-2.fc32.armv7hl\n - compat-wxGTK3-gtk2-devel-0:3.0.4-13.fc32.s390x\n - urw-base35-standard-symbols-ps-fonts-0:20170801-14.fc32.noarch\n - poppler-cpp-0:0.84.0-2.fc32.x86_64\n - compat-wxGTK3-gtk2-gl-0:3.0.4-13.fc32.aarch64\n - gd-devel-0:2.3.0-1.fc32.x86_64\n - gspell-devel-0:1.8.3-2.fc32.s390x\n - poppler-glib-devel-0:0.84.0-2.fc32.x86_64\n - exiv2-devel-0:0.27.2-2.fc32.aarch64\n - libgdata-devel-0:0.17.12-1.fc32.ppc64le\n - libgweather-devel-0:3.36.0-1.fc32.i686\n - jbig2dec-libs-0:0.17-4.fc32.armv7hl\n - gtkmm30-0:3.24.2-2.fc32.aarch64\n - flatpak-rpm-macros-0:32-2.fc32.x86_64\n - boost-static-0:1.69.0-18.fc32.ppc64le\n - gtkmm30-0:3.24.2-2.fc32.s390x\n - boost-python3-0:1.69.0-18.fc32.aarch64\n - gd-progs-0:2.3.0-1.fc32.aarch64\n - poppler-glib-0:0.84.0-2.fc32.s390x\n - libwmf-0:0.2.12-3.fc32.i686\n - exiv2-libs-0:0.27.2-2.fc32.aarch64\n - boost-0:1.69.0-18.fc32.s390x\n - gsl-devel-0:2.6-2.fc32.ppc64le\n - cairomm-devel-0:1.12.0-12.fc32.x86_64\n - glew-devel-0:2.1.0-6.fc32.aarch64\n - openjpeg2-devel-0:2.3.1-6.fc32.i686\n - ghostscript-tools-fonts-0:9.52-1.fc32.x86_64\n - boost-doc-0:1.69.0-18.fc32.armv7hl\n - boost-log-0:1.69.0-18.fc32.i686\n - libfontenc-devel-0:1.1.3-12.fc32.armv7hl\n - gspell-devel-0:1.8.3-2.fc32.i686\n - libmspack-0:0.10.1-0.3.alpha.fc32.armv7hl\n - boost-random-0:1.69.0-18.fc32.aarch64\n - libGLEW-0:2.1.0-6.fc32.aarch64\n - polkit-devel-0:0.116-7.fc32.armv7hl\n - gtksourceview3-tests-0:3.24.11-3.fc32.i686\n - boost-graph-0:1.69.0-18.fc32.armv7hl\n - poppler-devel-0:0.84.0-2.fc32.ppc64le\n - glew-0:2.1.0-6.fc32.x86_64\n - dbus-glib-0:0.110-7.fc32.armv7hl\n - openjpeg2-tools-0:2.3.1-6.fc32.aarch64\n - ilmbase-0:2.3.0-4.fc32.aarch64\n - boost-python3-devel-0:1.69.0-18.fc32.armv7hl\n - wxGTK3-devel-0:3.0.4-13.fc32.x86_64\n - openblas-serial64-0:0.3.9-2.fc32.s390x\n - libical-devel-0:3.0.8-1.fc32.i686\n - geocode-glib-0:3.26.2-1.fc32.aarch64\n - gnome-desktop3-tests-0:3.36.2-1.fc32.aarch64\n - boost-type_erasure-0:1.69.0-18.fc32.s390x\n - pangomm-devel-0:2.42.1-1.fc32.i686\n - boost-doctools-0:1.69.0-18.fc32.armv7hl\n - openblas-openmp-0:0.3.9-2.fc32.aarch64\n - compat-wxGTK3-gtk2-media-0:3.0.4-13.fc32.i686\n - wxGTK3-0:3.0.4-13.fc32.x86_64\n - boost-examples-0:1.69.0-18.fc32.s390x\n - gd-0:2.3.0-1.fc32.i686\n - openblas-static-0:0.3.9-2.fc32.ppc64le\n - evolution-data-server-tests-0:3.36.2-1.fc32.s390x\n - gtkmm30-devel-0:3.24.2-2.fc32.i686\n - boost-timer-0:1.69.0-18.fc32.s390x\n - openblas-openmp-0:0.3.9-2.fc32.i686\n - gspell-devel-0:1.8.3-2.fc32.ppc64le\n - boost-python3-devel-0:1.69.0-18.fc32.ppc64le\n - libsigc++20-doc-0:2.10.3-1.fc32.noarch\n - urw-base35-fonts-0:20170801-14.fc32.noarch\n - flatpak-runtime-config-0:32-1.fc32.armv7hl\n - wxGTK3-gl-0:3.0.4-13.fc32.aarch64\n - boost-static-0:1.69.0-18.fc32.aarch64\n - boost-program-options-0:1.69.0-18.fc32.aarch64\n - boost-math-0:1.69.0-18.fc32.x86_64\n - exiv2-doc-0:0.27.2-2.fc32.noarch\n - boost-0:1.69.0-18.fc32.x86_64\n - gnome-online-accounts-devel-0:3.36.0-1.fc32.i686\n - libdazzle-0:3.36.0-1.fc32.i686\n - boost-numpy3-0:1.69.0-18.fc32.aarch64\n - ghostscript-tools-printing-0:9.52-1.fc32.x86_64\n - libfontenc-0:1.1.3-12.fc32.armv7hl\n - SDL-static-0:1.2.15-43.fc32.x86_64\n - poppler-qt-devel-0:0.84.0-2.fc32.aarch64\n - boost-filesystem-0:1.69.0-18.fc32.ppc64le\n - gsl-0:2.6-2.fc32.aarch64\n - gtksourceview3-0:3.24.11-3.fc32.ppc64le\n - boost-graph-0:1.69.0-18.fc32.ppc64le\n - libical-glib-devel-0:3.0.8-1.fc32.armv7hl\n - polkit-docs-0:0.116-7.fc32.noarch\n - boost-wave-0:1.69.0-18.fc32.ppc64le\n - wxGTK3-0:3.0.4-13.fc32.armv7hl\n - urw-base35-nimbus-sans-fonts-0:20170801-14.fc32.noarch\n - libsigc++20-0:2.10.3-1.fc32.ppc64le\n - ghostscript-0:9.52-1.fc32.i686\n - poppler-cpp-devel-0:0.84.0-2.fc32.i686\n - boost-contract-0:1.69.0-18.fc32.aarch64\n - poppler-glib-0:0.84.0-2.fc32.x86_64\n - flatpak-runtime-config-0:32-1.fc32.s390x\n - SDL-0:1.2.15-43.fc32.aarch64\n - boost-atomic-0:1.69.0-18.fc32.x86_64\n - gtksourceview3-0:3.24.11-3.fc32.x86_64\n - exiv2-0:0.27.2-2.fc32.aarch64\n - boost-contract-0:1.69.0-18.fc32.ppc64le\n - boost-wave-0:1.69.0-18.fc32.aarch64\n - evolution-data-server-0:3.36.2-1.fc32.ppc64le\n - boost-examples-0:1.69.0-18.fc32.armv7hl\n - dbus-glib-devel-0:0.110-7.fc32.i686\n - libpeas-0:1.26.0-1.fc32.armv7hl\n - boost-contract-0:1.69.0-18.fc32.s390x\n - libidn-devel-0:1.35-7.fc32.ppc64le\n - glibmm24-0:2.64.2-1.fc32.s390x\n - libpeas-gtk-0:1.26.0-1.fc32.armv7hl\n - libgs-0:9.52-1.fc32.ppc64le\n - urw-base35-bookman-fonts-0:20170801-14.fc32.noarch\n - gnome-desktop3-devel-0:3.36.2-1.fc32.aarch64\n - libpaper-devel-0:1.1.24-26.fc32.armv7hl\n - OpenEXR-devel-0:2.3.0-5.fc32.armv7hl\n - libGLEW-0:2.1.0-6.fc32.armv7hl\n - xorg-x11-font-utils-1:7.5-44.fc32.s390x\n - poppler-utils-0:0.84.0-2.fc32.aarch64\n - evolution-data-server-0:3.36.2-1.fc32.aarch64\n - google-droid-fonts-all-0:20200215-3.fc32.noarch\n - boost-log-0:1.69.0-18.fc32.s390x\n - OpenEXR-devel-0:2.3.0-5.fc32.s390x\n - wxGTK3-media-0:3.0.4-13.fc32.i686\n - glew-0:2.1.0-6.fc32.armv7hl\n - boost-container-0:1.69.0-18.fc32.ppc64le\n - boost-python3-devel-0:1.69.0-18.fc32.x86_64\n - openblas-threads64_-0:0.3.9-2.fc32.aarch64\n - libdazzle-0:3.36.0-1.fc32.armv7hl\n - boost-fiber-0:1.69.0-18.fc32.i686\n - flatpak-rpm-macros-0:32-2.fc32.aarch64\n - libmspack-devel-0:0.10.1-0.3.alpha.fc32.s390x\n - exiv2-libs-0:0.27.2-2.fc32.ppc64le\n - poppler-0:0.84.0-2.fc32.x86_64\n - libpeas-0:1.26.0-1.fc32.s390x\n - poppler-cpp-0:0.84.0-2.fc32.aarch64\n - liboauth-0:1.0.3-14.fc32.x86_64\n - poppler-utils-0:0.84.0-2.fc32.armv7hl\n - poppler-cpp-devel-0:0.84.0-2.fc32.aarch64\n - poppler-utils-0:0.84.0-2.fc32.x86_64\n - libdazzle-devel-0:3.36.0-1.fc32.i686\n - wxGTK3-devel-0:3.0.4-13.fc32.armv7hl\n - libimagequant-devel-0:2.12.6-2.fc32.i686\n - openjpeg2-0:2.3.1-6.fc32.armv7hl\n - OpenEXR-doc-0:2.3.0-5.fc32.armv7hl\n - ghostscript-core-0:9.52-1.fc32.ppc64le\n - OpenEXR-libs-0:2.3.0-5.fc32.ppc64le\n - libwmf-lite-0:0.2.12-3.fc32.armv7hl\n - glibmm24-0:2.64.2-1.fc32.armv7hl\n - glew-0:2.1.0-6.fc32.s390x\n - exiv2-0:0.27.2-2.fc32.s390x\n - boost-program-options-0:1.69.0-18.fc32.i686\n - gd-0:2.3.0-1.fc32.x86_64\n - libical-glib-0:3.0.8-1.fc32.armv7hl\n - libijs-0:0.35-11.fc32.i686\n - libdazzle-devel-0:3.36.0-1.fc32.aarch64\n - flatpak-runtime-config-0:32-1.fc32.ppc64le\n - cairomm-0:1.12.0-12.fc32.ppc64le\n - openjpeg2-0:2.3.1-6.fc32.x86_64\n - openblas-threads64_-0:0.3.9-2.fc32.x86_64\n - libmspack-devel-0:0.10.1-0.3.alpha.fc32.ppc64le\n - ghostscript-gtk-0:9.52-1.fc32.i686\n - ghostscript-tools-printing-0:9.52-1.fc32.s390x\n - libical-glib-devel-0:3.0.8-1.fc32.i686\n - libimagequant-devel-0:2.12.6-2.fc32.armv7hl\n - gsl-devel-0:2.6-2.fc32.x86_64\n - SDL-static-0:1.2.15-43.fc32.aarch64\n - libimagequant-0:2.12.6-2.fc32.i686\n - libwmf-0:0.2.12-3.fc32.ppc64le\n - exiv2-devel-0:0.27.2-2.fc32.s390x\n - boost-python3-0:1.69.0-18.fc32.x86_64\n - ghostscript-tools-printing-0:9.52-1.fc32.armv7hl\n - boost-fiber-0:1.69.0-18.fc32.x86_64\n - gtkmm30-doc-0:3.24.2-2.fc32.noarch\n - OpenEXR-doc-0:2.3.0-5.fc32.i686\n - boost-build-0:1.69.0-18.fc32.noarch\n - libhandy-0:0.0.13-2.fc32.i686\n - OpenEXR-0:2.3.0-5.fc32.x86_64\n - openblas-openmp-0:0.3.9-2.fc32.s390x\n - libgweather-devel-0:3.36.0-1.fc32.ppc64le\n - gnome-desktop3-devel-0:3.36.2-1.fc32.s390x\n - atkmm-0:2.24.3-4.fc32.s390x\n - poppler-cpp-0:0.84.0-2.fc32.armv7hl\n - geocode-glib-0:3.26.2-1.fc32.armv7hl\n - boost-coroutine-0:1.69.0-18.fc32.ppc64le\n - compat-wxGTK3-gtk2-gl-0:3.0.4-13.fc32.x86_64\n - cairomm-devel-0:1.12.0-12.fc32.ppc64le\n - libgs-devel-0:9.52-1.fc32.armv7hl\n - wxGTK3-media-0:3.0.4-13.fc32.x86_64\n - boost-filesystem-0:1.69.0-18.fc32.aarch64\n - boost-type_erasure-0:1.69.0-18.fc32.i686\n - atkmm-0:2.24.3-4.fc32.aarch64\n - boost-serialization-0:1.69.0-18.fc32.s390x\n - libpaper-devel-0:1.1.24-26.fc32.i686\n - libgweather-devel-0:3.36.0-1.fc32.armv7hl\n - cairomm-0:1.12.0-12.fc32.s390x\n - libgdata-devel-0:0.17.12-1.fc32.s390x\n - boost-type_erasure-0:1.69.0-18.fc32.armv7hl\n - poppler-glib-devel-0:0.84.0-2.fc32.armv7hl\n - openjpeg2-tools-0:2.3.1-6.fc32.i686\n - boost-date-time-0:1.69.0-18.fc32.ppc64le\n - boost-filesystem-0:1.69.0-18.fc32.x86_64\n - boost-chrono-0:1.69.0-18.fc32.ppc64le\n - gd-progs-0:2.3.0-1.fc32.s390x\n - openblas-threads-0:0.3.9-2.fc32.armv7hl\n - libijs-devel-0:0.35-11.fc32.i686\n - liboauth-0:1.0.3-14.fc32.i686\n - libpaper-0:1.1.24-26.fc32.armv7hl\n - gspell-doc-0:1.8.3-2.fc32.noarch\n - openblas-static-0:0.3.9-2.fc32.i686\n - boost-python3-0:1.69.0-18.fc32.i686\n - boost-examples-0:1.69.0-18.fc32.i686\n - polkit-devel-0:0.116-7.fc32.aarch64\n - poppler-glib-devel-0:0.84.0-2.fc32.s390x\n - ghostscript-tools-fonts-0:9.52-1.fc32.ppc64le\n - boost-wave-0:1.69.0-18.fc32.s390x\n - compat-wxGTK3-gtk2-0:3.0.4-13.fc32.ppc64le\n - SDL-devel-0:1.2.15-43.fc32.aarch64\n - flatpak-runtime-config-0:32-1.fc32.aarch64\n - libical-glib-doc-0:3.0.8-1.fc32.noarch\n - boost-filesystem-0:1.69.0-18.fc32.armv7hl\n - boost-context-0:1.69.0-18.fc32.x86_64\n - dbus-glib-devel-0:0.110-7.fc32.s390x\n - libimagequant-0:2.12.6-2.fc32.ppc64le\n - openblas-serial-0:0.3.9-2.fc32.s390x\n - ghostscript-core-0:9.52-1.fc32.x86_64\n - gsl-devel-0:2.6-2.fc32.armv7hl\n - boost-date-time-0:1.69.0-18.fc32.aarch64\n - ghostscript-tools-dvipdf-0:9.52-1.fc32.aarch64\n - evolution-data-server-perl-0:3.36.2-1.fc32.armv7hl\n - libpaper-0:1.1.24-26.fc32.i686\n - atkmm-devel-0:2.24.3-4.fc32.i686\n - boost-serialization-0:1.69.0-18.fc32.armv7hl\n - gspell-0:1.8.3-2.fc32.aarch64\n - ilmbase-0:2.3.0-4.fc32.ppc64le\n - polkit-libs-0:0.116-7.fc32.i686\n - evolution-data-server-tests-0:3.36.2-1.fc32.aarch64\n - jbig2dec-libs-0:0.17-4.fc32.i686\n - ghostscript-tools-dvipdf-0:9.52-1.fc32.i686\n - ghostscript-core-0:9.52-1.fc32.armv7hl\n - libical-glib-0:3.0.8-1.fc32.aarch64\n - gspell-0:1.8.3-2.fc32.i686\n - libical-devel-0:3.0.8-1.fc32.ppc64le\n - boost-log-0:1.69.0-18.fc32.ppc64le\n - boost-examples-0:1.69.0-18.fc32.x86_64\n - libpeas-gtk-0:1.26.0-1.fc32.x86_64\n - glew-0:2.1.0-6.fc32.aarch64\n - ilmbase-0:2.3.0-4.fc32.armv7hl\n - libijs-0:0.35-11.fc32.armv7hl\n - openblas-openmp-0:0.3.9-2.fc32.ppc64le\n - libgdata-0:0.17.12-1.fc32.i686\n - ghostscript-core-0:9.52-1.fc32.aarch64\n - boost-coroutine-0:1.69.0-18.fc32.i686\n - libwmf-devel-0:0.2.12-3.fc32.i686\n - gtkmm30-0:3.24.2-2.fc32.i686\n - boost-thread-0:1.69.0-18.fc32.s390x\n - boost-python3-0:1.69.0-18.fc32.armv7hl\n - gtksourceview3-devel-0:3.24.11-3.fc32.ppc64le\n - OpenEXR-0:2.3.0-5.fc32.aarch64\n - evolution-data-server-perl-0:3.36.2-1.fc32.i686\n - libwmf-0:0.2.12-3.fc32.s390x\n - boost-container-0:1.69.0-18.fc32.armv7hl\n - boost-chrono-0:1.69.0-18.fc32.aarch64\n - libmspack-0:0.10.1-0.3.alpha.fc32.s390x\n - openblas-threads64-0:0.3.9-2.fc32.aarch64\n - adobe-mappings-pdf-devel-0:20180407-5.fc32.noarch\n - openblas-threads64-0:0.3.9-2.fc32.ppc64le\n - libwmf-lite-0:0.2.12-3.fc32.s390x\n - wxGTK3-i18n-0:3.0.4-13.fc32.noarch\n - libhandy-0:0.0.13-2.fc32.armv7hl\n - startup-notification-devel-0:0.12-19.fc32.ppc64le\n - liboauth-devel-0:1.0.3-14.fc32.s390x\n - libsigc++20-devel-0:2.10.3-1.fc32.ppc64le\n - ghostscript-gtk-0:9.52-1.fc32.s390x\n - boost-timer-0:1.69.0-18.fc32.armv7hl\n - SDL_image-devel-0:1.2.12-23.fc32.i686\n - poppler-qt-0:0.84.0-2.fc32.i686\n - SDL-0:1.2.15-43.fc32.ppc64le\n - libidn-0:1.35-7.fc32.i686\n - libhandy-devel-0:0.0.13-2.fc32.i686\n - boost-devel-0:1.69.0-18.fc32.i686\n - jbig2dec-0:0.17-4.fc32.i686\n - poppler-cpp-0:0.84.0-2.fc32.s390x\n - gspell-devel-0:1.8.3-2.fc32.armv7hl\n - jbig2dec-devel-0:0.17-4.fc32.ppc64le\n - poppler-glib-devel-0:0.84.0-2.fc32.i686\n - libfontenc-devel-0:1.1.3-12.fc32.ppc64le\n - polkit-libs-0:0.116-7.fc32.ppc64le\n - SDL_image-devel-0:1.2.12-23.fc32.armv7hl\n - poppler-devel-0:0.84.0-2.fc32.aarch64\n - libidn-java-0:1.35-7.fc32.noarch\n - boost-math-0:1.69.0-18.fc32.armv7hl\n - libwmf-devel-0:0.2.12-3.fc32.armv7hl\n - boost-timer-0:1.69.0-18.fc32.aarch64\n - gd-progs-0:2.3.0-1.fc32.ppc64le\n - boost-system-0:1.69.0-18.fc32.s390x\n - libidn-devel-0:1.35-7.fc32.aarch64\n - xorg-x11-font-utils-1:7.5-44.fc32.aarch64\n - libgdata-devel-0:0.17.12-1.fc32.x86_64\n - boost-0:1.69.0-18.fc32.ppc64le\n - libmspack-devel-0:0.10.1-0.3.alpha.fc32.armv7hl\n - glew-0:2.1.0-6.fc32.i686\n - OpenEXR-doc-0:2.3.0-5.fc32.s390x\n - libGLEW-0:2.1.0-6.fc32.x86_64\n - cairomm-devel-0:1.12.0-12.fc32.i686\n - boost-random-0:1.69.0-18.fc32.s390x\n - boost-regex-0:1.69.0-18.fc32.ppc64le\n - boost-container-0:1.69.0-18.fc32.i686\n - poppler-qt5-0:0.84.0-2.fc32.ppc64le\n - openjpeg2-0:2.3.1-6.fc32.s390x\n - poppler-qt-0:0.84.0-2.fc32.s390x\n - boost-test-0:1.69.0-18.fc32.ppc64le\n - boost-devel-0:1.69.0-18.fc32.ppc64le\n - geocode-glib-devel-0:3.26.2-1.fc32.x86_64\n - ghostscript-gtk-0:9.52-1.fc32.ppc64le\n - boost-program-options-0:1.69.0-18.fc32.x86_64\n - gd-devel-0:2.3.0-1.fc32.ppc64le\n - ilmbase-devel-0:2.3.0-4.fc32.armv7hl\n - compat-wxGTK3-gtk2-0:3.0.4-13.fc32.x86_64\n - libhandy-devel-0:0.0.13-2.fc32.ppc64le\n - poppler-glib-0:0.84.0-2.fc32.aarch64\n - libhandy-devel-0:0.0.13-2.fc32.armv7hl\n - boost-fiber-0:1.69.0-18.fc32.ppc64le\n - openblas-0:0.3.9-2.fc32.i686\n - boost-examples-0:1.69.0-18.fc32.ppc64le\n - openblas-openmp64_-0:0.3.9-2.fc32.s390x\n - boost-thread-0:1.69.0-18.fc32.x86_64\n - jbig2dec-0:0.17-4.fc32.aarch64\n - startup-notification-0:0.12-19.fc32.aarch64\n - wxGTK3-gl-0:3.0.4-13.fc32.i686\n - gtkmm30-devel-0:3.24.2-2.fc32.ppc64le\n - compat-wxGTK3-gtk2-gl-0:3.0.4-13.fc32.s390x\n - libpaper-0:1.1.24-26.fc32.aarch64\n - SDL-devel-0:1.2.15-43.fc32.i686\n - libgs-devel-0:9.52-1.fc32.aarch64\n - evolution-data-server-perl-0:3.36.2-1.fc32.x86_64\n - libimagequant-0:2.12.6-2.fc32.armv7hl\n - boost-atomic-0:1.69.0-18.fc32.armv7hl\n - ghostscript-x11-0:9.52-1.fc32.aarch64\n - poppler-qt-0:0.84.0-2.fc32.x86_64\n - boost-fiber-0:1.69.0-18.fc32.aarch64\n - boost-log-0:1.69.0-18.fc32.x86_64\n - boost-locale-0:1.69.0-18.fc32.ppc64le\n - gd-0:2.3.0-1.fc32.s390x\n - poppler-qt5-devel-0:0.84.0-2.fc32.i686\n - boost-static-0:1.69.0-18.fc32.i686\n - jbig2dec-devel-0:0.17-4.fc32.s390x\n - wxGTK3-docs-0:3.0.4-13.fc32.noarch\n - libidn-0:1.35-7.fc32.s390x\n - pangomm-devel-0:2.42.1-1.fc32.s390x\n - boost-doctools-0:1.69.0-18.fc32.i686\n dependencies:\n - buildrequires:\n flatpak-common: [f32]\n flatpak-runtime: [f32]\n platform: [f32]\n requires:\n flatpak-common: [f32]\n flatpak-runtime: [f32]\n platform: [f32]\n profiles:\n default:\n rpms:\n - 0ad\n components:\n rpms:\n 0ad:\n rationale: Application package\n repository: git+https://src.fedoraproject.org/rpms/0ad\n cache: https://src.fedoraproject.org/repo/pkgs/0ad\n ref: f32\n buildorder: 10\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n 0ad-data:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/0ad-data\n cache: https://src.fedoraproject.org/repo/pkgs/0ad-data\n ref: f32\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n dejavu-fonts:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/dejavu-fonts\n cache: https://src.fedoraproject.org/repo/pkgs/dejavu-fonts\n ref: f32\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n enet:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/enet\n cache: https://src.fedoraproject.org/repo/pkgs/enet\n ref: f32\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n gloox:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/gloox\n cache: https://src.fedoraproject.org/repo/pkgs/gloox\n ref: f32\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n libsodium:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/libsodium\n cache: https://src.fedoraproject.org/repo/pkgs/libsodium\n ref: f32\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n miniupnpc:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/miniupnpc\n cache: https://src.fedoraproject.org/repo/pkgs/miniupnpc\n ref: f32\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n nvidia-texture-tools:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/nvidia-texture-tools\n cache: https://src.fedoraproject.org/repo/pkgs/nvidia-texture-tools\n ref: f32\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n...", "runtime_deps": [ { "dependency": "platform", "stream": "f32" }, { "dependency": "flatpak-runtime", "stream": "f32" }, { "dependency": "flatpak-common", "stream": "f32" } ], "build_deps": [ { "dependency": "platform", "stream": "f32" }, { "dependency": "flatpak-runtime", "stream": "f32" }, { "dependency": "flatpak-common", "stream": "f32" } ], "active": true, "rpms": [ "0ad-0:0.0.23b-15.module_f32+8970+7accee7b.aarch64.rpm", "0ad-0:0.0.23b-15.module_f32+8970+7accee7b.armv7hl.rpm", "0ad-0:0.0.23b-15.module_f32+8970+7accee7b.i686.rpm", "0ad-0:0.0.23b-15.module_f32+8970+7accee7b.ppc64le.rpm", "0ad-0:0.0.23b-15.module_f32+8970+7accee7b.src.rpm", "0ad-0:0.0.23b-15.module_f32+8970+7accee7b.x86_64.rpm", "0ad-data-0:0.0.23b-4.module_f32+8568+7182d393.noarch.rpm", "0ad-data-0:0.0.23b-4.module_f32+8568+7182d393.src.rpm", "0ad-debuginfo-0:0.0.23b-15.module_f32+8970+7accee7b.aarch64.rpm", "0ad-debuginfo-0:0.0.23b-15.module_f32+8970+7accee7b.armv7hl.rpm", "0ad-debuginfo-0:0.0.23b-15.module_f32+8970+7accee7b.i686.rpm", "0ad-debuginfo-0:0.0.23b-15.module_f32+8970+7accee7b.ppc64le.rpm", "0ad-debuginfo-0:0.0.23b-15.module_f32+8970+7accee7b.x86_64.rpm", "0ad-debugsource-0:0.0.23b-15.module_f32+8970+7accee7b.aarch64.rpm", "0ad-debugsource-0:0.0.23b-15.module_f32+8970+7accee7b.armv7hl.rpm", "0ad-debugsource-0:0.0.23b-15.module_f32+8970+7accee7b.i686.rpm", "0ad-debugsource-0:0.0.23b-15.module_f32+8970+7accee7b.ppc64le.rpm", "0ad-debugsource-0:0.0.23b-15.module_f32+8970+7accee7b.x86_64.rpm", "compat-f32-dejavu-sans-fonts-0:2.37-7.module_f32+8568+7182d393.noarch.rpm", "compat-f32-dejavu-sans-mono-fonts-0:2.37-7.module_f32+8568+7182d393.noarch.rpm", "compat-f32-dejavu-serif-fonts-0:2.37-7.module_f32+8568+7182d393.noarch.rpm", "dejavu-fonts-0:2.37-7.module_f32+8568+7182d393.src.rpm", "dejavu-fonts-all-0:2.37-7.module_f32+8568+7182d393.noarch.rpm", "dejavu-fonts-doc-0:2.37-7.module_f32+8568+7182d393.noarch.rpm", "dejavu-lgc-fonts-all-0:2.37-7.module_f32+8568+7182d393.noarch.rpm", "dejavu-lgc-sans-fonts-0:2.37-7.module_f32+8568+7182d393.noarch.rpm", "dejavu-lgc-sans-mono-fonts-0:2.37-7.module_f32+8568+7182d393.noarch.rpm", "dejavu-lgc-serif-fonts-0:2.37-7.module_f32+8568+7182d393.noarch.rpm", "dejavu-sans-fonts-0:2.37-7.module_f32+8568+7182d393.noarch.rpm", "dejavu-sans-mono-fonts-0:2.37-7.module_f32+8568+7182d393.noarch.rpm", "dejavu-serif-fonts-0:2.37-7.module_f32+8568+7182d393.noarch.rpm", "enet-0:1.3.14-3.module_f32+8568+7182d393.aarch64.rpm", "enet-0:1.3.14-3.module_f32+8568+7182d393.armv7hl.rpm", "enet-0:1.3.14-3.module_f32+8568+7182d393.i686.rpm", "enet-0:1.3.14-3.module_f32+8568+7182d393.ppc64le.rpm", "enet-0:1.3.14-3.module_f32+8568+7182d393.s390x.rpm", "enet-0:1.3.14-3.module_f32+8568+7182d393.src.rpm", "enet-0:1.3.14-3.module_f32+8568+7182d393.x86_64.rpm", "enet-debuginfo-0:1.3.14-3.module_f32+8568+7182d393.aarch64.rpm", "enet-debuginfo-0:1.3.14-3.module_f32+8568+7182d393.armv7hl.rpm", "enet-debuginfo-0:1.3.14-3.module_f32+8568+7182d393.i686.rpm", "enet-debuginfo-0:1.3.14-3.module_f32+8568+7182d393.ppc64le.rpm", "enet-debuginfo-0:1.3.14-3.module_f32+8568+7182d393.s390x.rpm", "enet-debuginfo-0:1.3.14-3.module_f32+8568+7182d393.x86_64.rpm", "enet-debugsource-0:1.3.14-3.module_f32+8568+7182d393.aarch64.rpm", "enet-debugsource-0:1.3.14-3.module_f32+8568+7182d393.armv7hl.rpm", "enet-debugsource-0:1.3.14-3.module_f32+8568+7182d393.i686.rpm", "enet-debugsource-0:1.3.14-3.module_f32+8568+7182d393.ppc64le.rpm", "enet-debugsource-0:1.3.14-3.module_f32+8568+7182d393.s390x.rpm", "enet-debugsource-0:1.3.14-3.module_f32+8568+7182d393.x86_64.rpm", "enet-devel-0:1.3.14-3.module_f32+8568+7182d393.aarch64.rpm", "enet-devel-0:1.3.14-3.module_f32+8568+7182d393.armv7hl.rpm", "enet-devel-0:1.3.14-3.module_f32+8568+7182d393.i686.rpm", "enet-devel-0:1.3.14-3.module_f32+8568+7182d393.ppc64le.rpm", "enet-devel-0:1.3.14-3.module_f32+8568+7182d393.s390x.rpm", "enet-devel-0:1.3.14-3.module_f32+8568+7182d393.x86_64.rpm", "gloox-1:1.0.23-1.module_f32+8970+7accee7b.aarch64.rpm", "gloox-1:1.0.23-1.module_f32+8970+7accee7b.armv7hl.rpm", "gloox-1:1.0.23-1.module_f32+8970+7accee7b.i686.rpm", "gloox-1:1.0.23-1.module_f32+8970+7accee7b.ppc64le.rpm", "gloox-1:1.0.23-1.module_f32+8970+7accee7b.s390x.rpm", "gloox-1:1.0.23-1.module_f32+8970+7accee7b.src.rpm", "gloox-1:1.0.23-1.module_f32+8970+7accee7b.x86_64.rpm", "gloox-debuginfo-1:1.0.23-1.module_f32+8970+7accee7b.aarch64.rpm", "gloox-debuginfo-1:1.0.23-1.module_f32+8970+7accee7b.armv7hl.rpm", "gloox-debuginfo-1:1.0.23-1.module_f32+8970+7accee7b.i686.rpm", "gloox-debuginfo-1:1.0.23-1.module_f32+8970+7accee7b.ppc64le.rpm", "gloox-debuginfo-1:1.0.23-1.module_f32+8970+7accee7b.s390x.rpm", "gloox-debuginfo-1:1.0.23-1.module_f32+8970+7accee7b.x86_64.rpm", "gloox-debugsource-1:1.0.23-1.module_f32+8970+7accee7b.aarch64.rpm", "gloox-debugsource-1:1.0.23-1.module_f32+8970+7accee7b.armv7hl.rpm", "gloox-debugsource-1:1.0.23-1.module_f32+8970+7accee7b.i686.rpm", "gloox-debugsource-1:1.0.23-1.module_f32+8970+7accee7b.ppc64le.rpm", "gloox-debugsource-1:1.0.23-1.module_f32+8970+7accee7b.s390x.rpm", "gloox-debugsource-1:1.0.23-1.module_f32+8970+7accee7b.x86_64.rpm", "gloox-devel-1:1.0.23-1.module_f32+8970+7accee7b.aarch64.rpm", "gloox-devel-1:1.0.23-1.module_f32+8970+7accee7b.armv7hl.rpm", "gloox-devel-1:1.0.23-1.module_f32+8970+7accee7b.i686.rpm", "gloox-devel-1:1.0.23-1.module_f32+8970+7accee7b.ppc64le.rpm", "gloox-devel-1:1.0.23-1.module_f32+8970+7accee7b.s390x.rpm", "gloox-devel-1:1.0.23-1.module_f32+8970+7accee7b.x86_64.rpm", "libsodium-0:1.0.18-3.module_f32+8568+7182d393.aarch64.rpm", "libsodium-0:1.0.18-3.module_f32+8568+7182d393.armv7hl.rpm", "libsodium-0:1.0.18-3.module_f32+8568+7182d393.i686.rpm", "libsodium-0:1.0.18-3.module_f32+8568+7182d393.ppc64le.rpm", "libsodium-0:1.0.18-3.module_f32+8568+7182d393.s390x.rpm", "libsodium-0:1.0.18-3.module_f32+8568+7182d393.src.rpm", "libsodium-0:1.0.18-3.module_f32+8568+7182d393.x86_64.rpm", "libsodium-debuginfo-0:1.0.18-3.module_f32+8568+7182d393.aarch64.rpm", "libsodium-debuginfo-0:1.0.18-3.module_f32+8568+7182d393.armv7hl.rpm", "libsodium-debuginfo-0:1.0.18-3.module_f32+8568+7182d393.i686.rpm", "libsodium-debuginfo-0:1.0.18-3.module_f32+8568+7182d393.ppc64le.rpm", "libsodium-debuginfo-0:1.0.18-3.module_f32+8568+7182d393.s390x.rpm", "libsodium-debuginfo-0:1.0.18-3.module_f32+8568+7182d393.x86_64.rpm", "libsodium-debugsource-0:1.0.18-3.module_f32+8568+7182d393.aarch64.rpm", "libsodium-debugsource-0:1.0.18-3.module_f32+8568+7182d393.armv7hl.rpm", "libsodium-debugsource-0:1.0.18-3.module_f32+8568+7182d393.i686.rpm", "libsodium-debugsource-0:1.0.18-3.module_f32+8568+7182d393.ppc64le.rpm", "libsodium-debugsource-0:1.0.18-3.module_f32+8568+7182d393.s390x.rpm", "libsodium-debugsource-0:1.0.18-3.module_f32+8568+7182d393.x86_64.rpm", "libsodium-devel-0:1.0.18-3.module_f32+8568+7182d393.aarch64.rpm", "libsodium-devel-0:1.0.18-3.module_f32+8568+7182d393.armv7hl.rpm", "libsodium-devel-0:1.0.18-3.module_f32+8568+7182d393.i686.rpm", "libsodium-devel-0:1.0.18-3.module_f32+8568+7182d393.ppc64le.rpm", "libsodium-devel-0:1.0.18-3.module_f32+8568+7182d393.s390x.rpm", "libsodium-devel-0:1.0.18-3.module_f32+8568+7182d393.x86_64.rpm", "libsodium-static-0:1.0.18-3.module_f32+8568+7182d393.aarch64.rpm", "libsodium-static-0:1.0.18-3.module_f32+8568+7182d393.armv7hl.rpm", "libsodium-static-0:1.0.18-3.module_f32+8568+7182d393.i686.rpm", "libsodium-static-0:1.0.18-3.module_f32+8568+7182d393.ppc64le.rpm", "libsodium-static-0:1.0.18-3.module_f32+8568+7182d393.s390x.rpm", "libsodium-static-0:1.0.18-3.module_f32+8568+7182d393.x86_64.rpm", "miniupnpc-0:2.1-5.module_f32+8568+7182d393.aarch64.rpm", "miniupnpc-0:2.1-5.module_f32+8568+7182d393.armv7hl.rpm", "miniupnpc-0:2.1-5.module_f32+8568+7182d393.i686.rpm", "miniupnpc-0:2.1-5.module_f32+8568+7182d393.ppc64le.rpm", "miniupnpc-0:2.1-5.module_f32+8568+7182d393.s390x.rpm", "miniupnpc-0:2.1-5.module_f32+8568+7182d393.src.rpm", "miniupnpc-0:2.1-5.module_f32+8568+7182d393.x86_64.rpm", "miniupnpc-debuginfo-0:2.1-5.module_f32+8568+7182d393.aarch64.rpm", "miniupnpc-debuginfo-0:2.1-5.module_f32+8568+7182d393.armv7hl.rpm", "miniupnpc-debuginfo-0:2.1-5.module_f32+8568+7182d393.i686.rpm", "miniupnpc-debuginfo-0:2.1-5.module_f32+8568+7182d393.ppc64le.rpm", "miniupnpc-debuginfo-0:2.1-5.module_f32+8568+7182d393.s390x.rpm", "miniupnpc-debuginfo-0:2.1-5.module_f32+8568+7182d393.x86_64.rpm", "miniupnpc-debugsource-0:2.1-5.module_f32+8568+7182d393.aarch64.rpm", "miniupnpc-debugsource-0:2.1-5.module_f32+8568+7182d393.armv7hl.rpm", "miniupnpc-debugsource-0:2.1-5.module_f32+8568+7182d393.i686.rpm", "miniupnpc-debugsource-0:2.1-5.module_f32+8568+7182d393.ppc64le.rpm", "miniupnpc-debugsource-0:2.1-5.module_f32+8568+7182d393.s390x.rpm", "miniupnpc-debugsource-0:2.1-5.module_f32+8568+7182d393.x86_64.rpm", "miniupnpc-devel-0:2.1-5.module_f32+8568+7182d393.aarch64.rpm", "miniupnpc-devel-0:2.1-5.module_f32+8568+7182d393.armv7hl.rpm", "miniupnpc-devel-0:2.1-5.module_f32+8568+7182d393.i686.rpm", "miniupnpc-devel-0:2.1-5.module_f32+8568+7182d393.ppc64le.rpm", "miniupnpc-devel-0:2.1-5.module_f32+8568+7182d393.s390x.rpm", "miniupnpc-devel-0:2.1-5.module_f32+8568+7182d393.x86_64.rpm", "nvidia-texture-tools-0:2.0.8-22.module_f32+8568+7182d393.aarch64.rpm", "nvidia-texture-tools-0:2.0.8-22.module_f32+8568+7182d393.armv7hl.rpm", "nvidia-texture-tools-0:2.0.8-22.module_f32+8568+7182d393.i686.rpm", "nvidia-texture-tools-0:2.0.8-22.module_f32+8568+7182d393.ppc64le.rpm", "nvidia-texture-tools-0:2.0.8-22.module_f32+8568+7182d393.s390x.rpm", "nvidia-texture-tools-0:2.0.8-22.module_f32+8568+7182d393.src.rpm", "nvidia-texture-tools-0:2.0.8-22.module_f32+8568+7182d393.x86_64.rpm", "nvidia-texture-tools-debuginfo-0:2.0.8-22.module_f32+8568+7182d393.aarch64.rpm", "nvidia-texture-tools-debuginfo-0:2.0.8-22.module_f32+8568+7182d393.armv7hl.rpm", "nvidia-texture-tools-debuginfo-0:2.0.8-22.module_f32+8568+7182d393.i686.rpm", "nvidia-texture-tools-debuginfo-0:2.0.8-22.module_f32+8568+7182d393.ppc64le.rpm", "nvidia-texture-tools-debuginfo-0:2.0.8-22.module_f32+8568+7182d393.s390x.rpm", "nvidia-texture-tools-debuginfo-0:2.0.8-22.module_f32+8568+7182d393.x86_64.rpm", "nvidia-texture-tools-debugsource-0:2.0.8-22.module_f32+8568+7182d393.aarch64.rpm", "nvidia-texture-tools-debugsource-0:2.0.8-22.module_f32+8568+7182d393.armv7hl.rpm", "nvidia-texture-tools-debugsource-0:2.0.8-22.module_f32+8568+7182d393.i686.rpm", "nvidia-texture-tools-debugsource-0:2.0.8-22.module_f32+8568+7182d393.ppc64le.rpm", "nvidia-texture-tools-debugsource-0:2.0.8-22.module_f32+8568+7182d393.s390x.rpm", "nvidia-texture-tools-debugsource-0:2.0.8-22.module_f32+8568+7182d393.x86_64.rpm", "nvidia-texture-tools-devel-0:2.0.8-22.module_f32+8568+7182d393.aarch64.rpm", "nvidia-texture-tools-devel-0:2.0.8-22.module_f32+8568+7182d393.armv7hl.rpm", "nvidia-texture-tools-devel-0:2.0.8-22.module_f32+8568+7182d393.i686.rpm", "nvidia-texture-tools-devel-0:2.0.8-22.module_f32+8568+7182d393.ppc64le.rpm", "nvidia-texture-tools-devel-0:2.0.8-22.module_f32+8568+7182d393.s390x.rpm", "nvidia-texture-tools-devel-0:2.0.8-22.module_f32+8568+7182d393.x86_64.rpm", "python3-miniupnpc-0:2.1-5.module_f32+8568+7182d393.aarch64.rpm", "python3-miniupnpc-0:2.1-5.module_f32+8568+7182d393.armv7hl.rpm", "python3-miniupnpc-0:2.1-5.module_f32+8568+7182d393.i686.rpm", "python3-miniupnpc-0:2.1-5.module_f32+8568+7182d393.ppc64le.rpm", "python3-miniupnpc-0:2.1-5.module_f32+8568+7182d393.s390x.rpm", "python3-miniupnpc-0:2.1-5.module_f32+8568+7182d393.x86_64.rpm", "python3-miniupnpc-debuginfo-0:2.1-5.module_f32+8568+7182d393.aarch64.rpm", "python3-miniupnpc-debuginfo-0:2.1-5.module_f32+8568+7182d393.armv7hl.rpm", "python3-miniupnpc-debuginfo-0:2.1-5.module_f32+8568+7182d393.i686.rpm", "python3-miniupnpc-debuginfo-0:2.1-5.module_f32+8568+7182d393.ppc64le.rpm", "python3-miniupnpc-debuginfo-0:2.1-5.module_f32+8568+7182d393.s390x.rpm", "python3-miniupnpc-debuginfo-0:2.1-5.module_f32+8568+7182d393.x86_64.rpm" ] }, { "variant_id": "0ad", "variant_uid": "0ad:master:3220200604091941:01239000", "variant_name": "0ad", "variant_type": "module", "variant_version": "master", "variant_release": "3220200604091941", "variant_context": "01239000", "koji_tag": "module-0ad-master-3220200604091941-01239000", "modulemd": "---\ndocument: modulemd\nversion: 2\ndata:\n name: 0ad\n stream: master\n version: 3220200604091941\n context: 01239000\n summary: Cross-Platform RTS Game of Ancient Warfare\n description: >-\n 0 A.D. (pronounced \"zero ey-dee\") is a free, open-source, cross-platform real-time\n strategy (RTS) game of ancient warfare. In short, it is a historically-based war/economy\n game that allows players to relive or rewrite the history of Western civilizations,\n focusing on the years between 500 B.C. and 500 A.D. The project is highly ambitious,\n involving state-of-the-art 3D graphics, detailed artwork, sound, and a flexible\n and powerful custom-built game engine.\n\n The game has been in development by Wildfire Games (WFG), a group of volunteer,\n hobbyist game developers, since 2001.\n license:\n module:\n - MIT\n xmd:\n mbs:\n buildrequires:\n flatpak-common:\n context: caf21102\n filtered_rpms: []\n koji_tag: module-flatpak-common-f32-3220200602164321-caf21102\n ref: 9c2de8dba7a2572ad56db0879102abfdacf65035\n stream: f32\n version: 3220200602164321\n flatpak-runtime:\n context: 43bbeeef\n filtered_rpms: []\n koji_tag: module-flatpak-runtime-f32-3220200525135552-43bbeeef\n ref: fd5ef0df845fd7764c2746f73fc9d4799a669775\n stream: f32\n version: 3220200525135552\n platform:\n context: 00000000\n filtered_rpms: []\n koji_tag: module-f32-build\n ref: f32\n stream: f32\n stream_collision_modules: \n ursine_rpms: \n version: 1\n commit: 051f21ab99658d80095e38d0e9c71dbd7e737669\n mse: TRUE\n rpms:\n 0ad:\n ref: 1bcd36a6b3e3c78a8f6ebeae62d9118c6b86334f\n 0ad-data:\n ref: 14c296b56fbd11ca08dff847f7e19d72e18d3b2a\n dejavu-fonts:\n ref: 18a66b561c3a6aeb892ac4aa3fd5689742ba18ae\n enet:\n ref: bdd09027a8a28cafd337e6ebea3e0430a4d9b670\n gloox:\n ref: 0fa3b4a91c0e070daeccbe9b2967d1d3c5d45af3\n libsodium:\n ref: 9f8789f4cdd61562ef99960441dbc4b1c39c7a0e\n miniupnpc:\n ref: c2b104bea5c9351730410ef3a291fcadaf98bda6\n nvidia-texture-tools:\n ref: dfbbbe8a14d038036fc311f239a88912715a211b\n scmurl: https://src.fedoraproject.org/flatpaks/0ad.git?#051f21ab99658d80095e38d0e9c71dbd7e737669\n ursine_rpms:\n - libfontenc-devel-0:1.1.3-12.fc32.aarch64\n - gnome-online-accounts-0:3.36.0-1.fc32.armv7hl\n - libgs-devel-0:9.52-2.fc32.ppc64le\n - libijs-0:0.35-11.fc32.i686\n - gnome-online-accounts-devel-0:3.36.0-1.fc32.s390x\n - libgdata-0:0.17.12-1.fc32.x86_64\n - openblas-devel-0:0.3.9-2.fc32.x86_64\n - poppler-0:0.84.0-2.fc32.s390x\n - compat-wxGTK3-gtk2-media-0:3.0.4-13.fc32.x86_64\n - libdazzle-devel-0:3.36.0-1.fc32.s390x\n - openblas-threads-0:0.3.9-2.fc32.aarch64\n - glew-devel-0:2.1.0-6.fc32.armv7hl\n - poppler-qt-0:0.84.0-2.fc32.aarch64\n - evolution-data-server-0:3.36.2-1.fc32.armv7hl\n - libfontenc-0:1.1.3-12.fc32.x86_64\n - gtksourceview3-tests-0:3.24.11-3.fc32.x86_64\n - ghostscript-tools-printing-0:9.52-2.fc32.s390x\n - boost-doc-0:1.69.0-18.fc32.x86_64\n - compat-wxGTK3-gtk2-gl-0:3.0.4-13.fc32.ppc64le\n - libsigc++20-devel-0:2.10.3-1.fc32.aarch64\n - libfontenc-devel-0:1.1.3-12.fc32.x86_64\n - polkit-0:0.116-7.fc32.ppc64le\n - SDL-static-0:1.2.15-43.fc32.i686\n - glew-devel-0:2.1.0-6.fc32.s390x\n - xorg-x11-font-utils-1:7.5-44.fc32.x86_64\n - gspell-0:1.8.3-2.fc32.armv7hl\n - OpenEXR-devel-0:2.3.0-5.fc32.aarch64\n - gspell-devel-0:1.8.3-2.fc32.armv7hl\n - gnome-desktop3-tests-0:3.36.2-1.fc32.ppc64le\n - boost-random-0:1.69.0-18.fc32.ppc64le\n - gnome-desktop3-devel-0:3.36.2-1.fc32.i686\n - cairomm-0:1.12.0-12.fc32.i686\n - jbig2dec-libs-0:0.17-4.fc32.x86_64\n - openblas-devel-0:0.3.9-2.fc32.aarch64\n - openblas-Rblas-0:0.3.9-2.fc32.aarch64\n - libpeas-0:1.26.0-1.fc32.s390x\n - urw-base35-c059-fonts-0:20170801-14.fc32.noarch\n - polkit-0:0.116-7.fc32.s390x\n - poppler-qt-devel-0:0.84.0-2.fc32.ppc64le\n - gsl-devel-0:2.6-2.fc32.i686\n - libidn-0:1.35-7.fc32.ppc64le\n - ghostscript-0:9.52-2.fc32.ppc64le\n - gspell-devel-0:1.8.3-2.fc32.x86_64\n - glibmm24-0:2.64.2-1.fc32.aarch64\n - poppler-qt5-devel-0:0.84.0-2.fc32.x86_64\n - openjpeg2-tools-0:2.3.1-6.fc32.armv7hl\n - poppler-cpp-0:0.84.0-2.fc32.ppc64le\n - boost-type_erasure-0:1.69.0-18.fc32.ppc64le\n - boost-regex-0:1.69.0-18.fc32.i686\n - liboauth-0:1.0.3-14.fc32.aarch64\n - geocode-glib-devel-0:3.26.2-1.fc32.armv7hl\n - openblas-threads-0:0.3.9-2.fc32.i686\n - boost-regex-0:1.69.0-18.fc32.aarch64\n - libfontenc-devel-0:1.1.3-12.fc32.s390x\n - exiv2-0:0.27.2-2.fc32.armv7hl\n - wxGTK3-0:3.0.4-13.fc32.s390x\n - glibmm24-0:2.64.2-1.fc32.ppc64le\n - boost-program-options-0:1.69.0-18.fc32.ppc64le\n - libpeas-0:1.26.0-1.fc32.x86_64\n - OpenEXR-devel-0:2.3.0-5.fc32.i686\n - libdazzle-devel-0:3.36.0-1.fc32.x86_64\n - SDL_image-devel-0:1.2.12-23.fc32.aarch64\n - gtksourceview3-0:3.24.11-3.fc32.i686\n - wxGTK3-webview-0:3.0.4-13.fc32.ppc64le\n - libdazzle-devel-0:3.36.0-1.fc32.ppc64le\n - ilmbase-0:2.3.0-4.fc32.i686\n - libijs-0:0.35-11.fc32.x86_64\n - gsl-0:2.6-2.fc32.armv7hl\n - boost-jam-0:1.69.0-18.fc32.ppc64le\n - boost-system-0:1.69.0-18.fc32.i686\n - evolution-data-server-0:3.36.2-1.fc32.i686\n - cairomm-0:1.12.0-12.fc32.x86_64\n - libgdata-devel-0:0.17.12-1.fc32.i686\n - poppler-devel-0:0.84.0-2.fc32.x86_64\n - libimagequant-devel-0:2.12.6-2.fc32.x86_64\n - poppler-qt5-devel-0:0.84.0-2.fc32.s390x\n - SDL-devel-0:1.2.15-43.fc32.s390x\n - libgdata-devel-0:0.17.12-1.fc32.armv7hl\n - ghostscript-tools-printing-0:9.52-2.fc32.ppc64le\n - libgdata-0:0.17.12-1.fc32.ppc64le\n - libimagequant-0:2.12.6-2.fc32.x86_64\n - startup-notification-devel-0:0.12-19.fc32.s390x\n - openblas-threads64_-0:0.3.9-2.fc32.ppc64le\n - boost-regex-0:1.69.0-18.fc32.armv7hl\n - openblas-devel-0:0.3.9-2.fc32.ppc64le\n - libgs-devel-0:9.52-2.fc32.aarch64\n - libpaper-devel-0:1.1.24-26.fc32.s390x\n - ilmbase-devel-0:2.3.0-4.fc32.s390x\n - libpeas-loader-python3-0:1.26.0-1.fc32.ppc64le\n - wxBase3-devel-0:3.0.4-13.fc32.x86_64\n - boost-python3-0:1.69.0-18.fc32.armv7hl\n - libsigc++20-0:2.10.3-1.fc32.i686\n - libwmf-lite-0:0.2.12-3.fc32.aarch64\n - libhandy-0:0.0.13-4.fc32.aarch64\n - gtkmm30-devel-0:3.24.2-2.fc32.aarch64\n - gtkmm30-0:3.24.2-2.fc32.x86_64\n - liboauth-0:1.0.3-14.fc32.s390x\n - libsigc++20-0:2.10.3-1.fc32.aarch64\n - libgweather-0:3.36.0-1.fc32.x86_64\n - poppler-devel-0:0.84.0-2.fc32.i686\n - geocode-glib-devel-0:3.26.2-1.fc32.s390x\n - ghostscript-core-0:9.52-2.fc32.armv7hl\n - boost-doctools-0:1.69.0-18.fc32.s390x\n - gspell-0:1.8.3-2.fc32.x86_64\n - libhandy-devel-0:0.0.13-4.fc32.aarch64\n - libpaper-0:1.1.24-26.fc32.x86_64\n - geocode-glib-0:3.26.2-1.fc32.s390x\n - boost-serialization-0:1.69.0-18.fc32.i686\n - wxGTK3-media-0:3.0.4-13.fc32.aarch64\n - boost-atomic-0:1.69.0-18.fc32.aarch64\n - gtksourceview3-0:3.24.11-3.fc32.aarch64\n - openblas-0:0.3.9-2.fc32.armv7hl\n - libical-glib-0:3.0.8-1.fc32.s390x\n - libical-0:3.0.8-1.fc32.x86_64\n - pangomm-devel-0:2.42.1-1.fc32.ppc64le\n - libgs-0:9.52-2.fc32.i686\n - gnome-desktop3-tests-0:3.36.2-1.fc32.x86_64\n - libwmf-0:0.2.12-3.fc32.x86_64\n - gnome-desktop3-devel-0:3.36.2-1.fc32.armv7hl\n - ghostscript-tools-fonts-0:9.52-2.fc32.s390x\n - exiv2-0:0.27.2-2.fc32.i686\n - boost-doc-0:1.69.0-18.fc32.s390x\n - libsigc++20-devel-0:2.10.3-1.fc32.i686\n - libimagequant-devel-0:2.12.6-2.fc32.s390x\n - jbig2dec-libs-0:0.17-4.fc32.s390x\n - ghostscript-core-0:9.52-2.fc32.i686\n - exiv2-devel-0:0.27.2-2.fc32.ppc64le\n - boost-locale-0:1.69.0-18.fc32.x86_64\n - compat-wxGTK3-gtk2-gl-0:3.0.4-13.fc32.i686\n - exiv2-devel-0:0.27.2-2.fc32.aarch64\n - OpenEXR-doc-0:2.3.0-5.fc32.ppc64le\n - gtkmm30-devel-0:3.24.2-2.fc32.s390x\n - openjpeg2-0:2.3.1-6.fc32.ppc64le\n - wxBase3-0:3.0.4-13.fc32.armv7hl\n - boost-coroutine-0:1.69.0-18.fc32.aarch64\n - SDL_image-devel-0:1.2.12-23.fc32.ppc64le\n - poppler-cpp-devel-0:0.84.0-2.fc32.x86_64\n - pangomm-devel-0:2.42.1-1.fc32.x86_64\n - gtksourceview3-devel-0:3.24.11-3.fc32.i686\n - polkit-devel-0:0.116-7.fc32.x86_64\n - poppler-cpp-devel-0:0.84.0-2.fc32.s390x\n - atkmm-0:2.24.3-4.fc32.ppc64le\n - libijs-0:0.35-11.fc32.s390x\n - boost-devel-0:1.69.0-18.fc32.aarch64\n - boost-contract-0:1.69.0-18.fc32.x86_64\n - openblas-0:0.3.9-2.fc32.aarch64\n - SDL-static-0:1.2.15-43.fc32.s390x\n - libgweather-devel-0:3.36.0-1.fc32.ppc64le\n - glibmm24-devel-0:2.64.2-1.fc32.x86_64\n - boost-doc-0:1.69.0-18.fc32.i686\n - evolution-data-server-perl-0:3.36.2-1.fc32.ppc64le\n - libfontenc-0:1.1.3-12.fc32.s390x\n - ilmbase-devel-0:2.3.0-4.fc32.ppc64le\n - boost-serialization-0:1.69.0-18.fc32.aarch64\n - openblas-0:0.3.9-2.fc32.x86_64\n - gsl-0:2.6-2.fc32.ppc64le\n - poppler-0:0.84.0-2.fc32.i686\n - libical-0:3.0.8-1.fc32.aarch64\n - libijs-devel-0:0.35-11.fc32.ppc64le\n - compat-wxGTK3-gtk2-0:3.0.4-13.fc32.armv7hl\n - polkit-devel-0:0.116-7.fc32.s390x\n - boost-chrono-0:1.69.0-18.fc32.s390x\n - libical-glib-devel-0:3.0.8-1.fc32.aarch64\n - libgweather-0:3.36.0-1.fc32.ppc64le\n - pangomm-0:2.42.1-1.fc32.x86_64\n - wxGTK3-webview-0:3.0.4-13.fc32.x86_64\n - openblas-threads64-0:0.3.9-2.fc32.s390x\n - gsl-0:2.6-2.fc32.x86_64\n - evolution-data-server-devel-0:3.36.2-1.fc32.ppc64le\n - OpenEXR-devel-0:2.3.0-5.fc32.ppc64le\n - compat-wxGTK3-gtk2-media-0:3.0.4-13.fc32.ppc64le\n - poppler-data-0:0.4.9-5.fc32.noarch\n - boost-random-0:1.69.0-18.fc32.x86_64\n - openblas-devel-0:0.3.9-2.fc32.i686\n - boost-stacktrace-0:1.69.0-18.fc32.armv7hl\n - libidn-javadoc-0:1.35-7.fc32.noarch\n - libijs-devel-0:0.35-11.fc32.s390x\n - libpeas-gtk-0:1.26.0-1.fc32.ppc64le\n - OpenEXR-0:2.3.0-5.fc32.i686\n - libical-devel-0:3.0.8-1.fc32.x86_64\n - openblas-openmp64_-0:0.3.9-2.fc32.x86_64\n - boost-test-0:1.69.0-18.fc32.armv7hl\n - boost-thread-0:1.69.0-18.fc32.i686\n - poppler-0:0.84.0-2.fc32.ppc64le\n - gd-0:2.3.0-1.fc32.armv7hl\n - SDL-0:1.2.15-43.fc32.i686\n - libical-glib-0:3.0.8-1.fc32.ppc64le\n - compat-wxGTK3-gtk2-devel-0:3.0.4-13.fc32.x86_64\n - boost-graph-0:1.69.0-18.fc32.s390x\n - libpaper-0:1.1.24-26.fc32.s390x\n - boost-iostreams-0:1.69.0-18.fc32.x86_64\n - libGLEW-0:2.1.0-6.fc32.i686\n - liboauth-0:1.0.3-14.fc32.armv7hl\n - libgdata-devel-0:0.17.12-1.fc32.aarch64\n - boost-type_erasure-0:1.69.0-18.fc32.x86_64\n - libijs-0:0.35-11.fc32.aarch64\n - boost-program-options-0:1.69.0-18.fc32.armv7hl\n - glibmm24-devel-0:2.64.2-1.fc32.armv7hl\n - libgs-0:9.52-2.fc32.ppc64le\n - poppler-cpp-devel-0:0.84.0-2.fc32.ppc64le\n - boost-type_erasure-0:1.69.0-18.fc32.aarch64\n - openblas-threads64_-0:0.3.9-2.fc32.s390x\n - boost-0:1.69.0-18.fc32.armv7hl\n - boost-coroutine-0:1.69.0-18.fc32.x86_64\n - openblas-openmp64-0:0.3.9-2.fc32.ppc64le\n - boost-python3-devel-0:1.69.0-18.fc32.aarch64\n - xorg-x11-font-utils-1:7.5-44.fc32.i686\n - compat-wxGTK3-gtk2-devel-0:3.0.4-13.fc32.i686\n - gspell-0:1.8.3-2.fc32.s390x\n - wxBase3-devel-0:3.0.4-13.fc32.armv7hl\n - gnome-desktop3-devel-0:3.36.2-1.fc32.ppc64le\n - libgs-0:9.52-2.fc32.x86_64\n - compat-wxGTK3-gtk2-media-0:3.0.4-13.fc32.armv7hl\n - polkit-devel-0:0.116-7.fc32.ppc64le\n - wxGTK3-gl-0:3.0.4-13.fc32.ppc64le\n - libidn-devel-0:1.35-7.fc32.armv7hl\n - boost-wave-0:1.69.0-18.fc32.armv7hl\n - urw-base35-fonts-legacy-0:20170801-14.fc32.noarch\n - atkmm-doc-0:2.24.3-4.fc32.noarch\n - jbig2dec-devel-0:0.17-4.fc32.armv7hl\n - openblas-static-0:0.3.9-2.fc32.s390x\n - openblas-Rblas-0:0.3.9-2.fc32.ppc64le\n - libidn-devel-0:1.35-7.fc32.i686\n - startup-notification-0:0.12-19.fc32.armv7hl\n - wxGTK3-webview-0:3.0.4-13.fc32.aarch64\n - libical-0:3.0.8-1.fc32.s390x\n - boost-locale-0:1.69.0-18.fc32.s390x\n - libgweather-0:3.36.0-1.fc32.s390x\n - ilmbase-devel-0:2.3.0-4.fc32.x86_64\n - urw-base35-z003-fonts-0:20170801-14.fc32.noarch\n - geocode-glib-0:3.26.2-1.fc32.ppc64le\n - poppler-devel-0:0.84.0-2.fc32.armv7hl\n - boost-wave-0:1.69.0-18.fc32.x86_64\n - ghostscript-x11-0:9.52-2.fc32.aarch64\n - polkit-0:0.116-7.fc32.x86_64\n - gnome-online-accounts-0:3.36.0-1.fc32.s390x\n - liboauth-devel-0:1.0.3-14.fc32.aarch64\n - evolution-data-server-perl-0:3.36.2-1.fc32.aarch64\n - gnome-online-accounts-0:3.36.0-1.fc32.aarch64\n - wxGTK3-devel-0:3.0.4-13.fc32.aarch64\n - OpenEXR-0:2.3.0-5.fc32.ppc64le\n - liboauth-devel-0:1.0.3-14.fc32.x86_64\n - boost-math-0:1.69.0-18.fc32.s390x\n - boost-test-0:1.69.0-18.fc32.s390x\n - poppler-utils-0:0.84.0-2.fc32.i686\n - OpenEXR-libs-0:2.3.0-5.fc32.x86_64\n - gtksourceview3-tests-0:3.24.11-3.fc32.aarch64\n - gnome-desktop3-tests-0:3.36.2-1.fc32.armv7hl\n - evolution-data-server-tests-0:3.36.2-1.fc32.x86_64\n - adobe-mappings-pdf-0:20180407-5.fc32.noarch\n - compat-wxGTK3-gtk2-0:3.0.4-13.fc32.aarch64\n - poppler-qt5-devel-0:0.84.0-2.fc32.armv7hl\n - evolution-data-server-tests-0:3.36.2-1.fc32.i686\n - SDL_image-devel-0:1.2.12-23.fc32.x86_64\n - boost-stacktrace-0:1.69.0-18.fc32.ppc64le\n - boost-static-0:1.69.0-18.fc32.x86_64\n - SDL-devel-0:1.2.15-43.fc32.armv7hl\n - polkit-0:0.116-7.fc32.armv7hl\n - boost-doctools-0:1.69.0-18.fc32.x86_64\n - libpaper-devel-0:1.1.24-26.fc32.aarch64\n - ghostscript-tools-dvipdf-0:9.52-2.fc32.armv7hl\n - libwmf-lite-0:0.2.12-3.fc32.ppc64le\n - boost-iostreams-0:1.69.0-18.fc32.i686\n - gd-devel-0:2.3.0-1.fc32.s390x\n - boost-iostreams-0:1.69.0-18.fc32.aarch64\n - wxBase3-0:3.0.4-13.fc32.aarch64\n - wxBase3-0:3.0.4-13.fc32.x86_64\n - openjpeg2-devel-0:2.3.1-6.fc32.s390x\n - atkmm-devel-0:2.24.3-4.fc32.x86_64\n - boost-math-0:1.69.0-18.fc32.aarch64\n - libwmf-devel-0:0.2.12-3.fc32.s390x\n - libpeas-0:1.26.0-1.fc32.aarch64\n - SDL-0:1.2.15-43.fc32.x86_64\n - libical-devel-0:3.0.8-1.fc32.aarch64\n - libsigc++20-0:2.10.3-1.fc32.s390x\n - evolution-data-server-devel-0:3.36.2-1.fc32.i686\n - boost-log-0:1.69.0-18.fc32.aarch64\n - poppler-glib-devel-0:0.84.0-2.fc32.ppc64le\n - exiv2-devel-0:0.27.2-2.fc32.i686\n - wxGTK3-gl-0:3.0.4-13.fc32.x86_64\n - libwmf-devel-0:0.2.12-3.fc32.x86_64\n - libical-glib-devel-0:3.0.8-1.fc32.ppc64le\n - boost-filesystem-0:1.69.0-18.fc32.s390x\n - boost-iostreams-0:1.69.0-18.fc32.ppc64le\n - boost-jam-0:1.69.0-18.fc32.armv7hl\n - libidn-0:1.35-7.fc32.armv7hl\n - libical-0:3.0.8-1.fc32.i686\n - evolution-data-server-devel-0:3.36.2-1.fc32.x86_64\n - wxGTK3-webview-0:3.0.4-13.fc32.i686\n - gsl-devel-0:2.6-2.fc32.s390x\n - urw-base35-fonts-common-0:20170801-14.fc32.noarch\n - boost-jam-0:1.69.0-18.fc32.s390x\n - openblas-serial-0:0.3.9-2.fc32.aarch64\n - gtksourceview3-0:3.24.11-3.fc32.s390x\n - poppler-qt5-0:0.84.0-2.fc32.i686\n - libpaper-devel-0:1.1.24-26.fc32.ppc64le\n - poppler-qt-0:0.84.0-2.fc32.armv7hl\n - gtksourceview3-tests-0:3.24.11-3.fc32.ppc64le\n - wxBase3-devel-0:3.0.4-13.fc32.i686\n - compat-wxGTK3-gtk2-devel-0:3.0.4-13.fc32.armv7hl\n - boost-date-time-0:1.69.0-18.fc32.x86_64\n - libwmf-devel-0:0.2.12-3.fc32.ppc64le\n - wxGTK3-devel-0:3.0.4-13.fc32.ppc64le\n - openblas-serial-0:0.3.9-2.fc32.x86_64\n - pangomm-0:2.42.1-1.fc32.i686\n - libpaper-devel-0:1.1.24-26.fc32.x86_64\n - startup-notification-devel-0:0.12-19.fc32.x86_64\n - openblas-devel-0:0.3.9-2.fc32.armv7hl\n - ilmbase-devel-0:2.3.0-4.fc32.aarch64\n - libwmf-0:0.2.12-3.fc32.i686\n - openjpeg2-0:2.3.1-6.fc32.aarch64\n - OpenEXR-doc-0:2.3.0-5.fc32.aarch64\n - geocode-glib-devel-0:3.26.2-1.fc32.ppc64le\n - cairomm-0:1.12.0-12.fc32.aarch64\n - wxBase3-0:3.0.4-13.fc32.i686\n - boost-program-options-0:1.69.0-18.fc32.s390x\n - libgweather-devel-0:3.36.0-1.fc32.x86_64\n - boost-devel-0:1.69.0-18.fc32.x86_64\n - boost-context-0:1.69.0-18.fc32.armv7hl\n - openjpeg2-devel-docs-0:2.3.1-6.fc32.noarch\n - libpeas-loader-python3-0:1.26.0-1.fc32.armv7hl\n - xorg-x11-font-utils-1:7.5-44.fc32.armv7hl\n - boost-graph-0:1.69.0-18.fc32.aarch64\n - gnome-desktop3-0:3.36.2-1.fc32.s390x\n - boost-system-0:1.69.0-18.fc32.ppc64le\n - gnome-online-accounts-devel-0:3.36.0-1.fc32.armv7hl\n - cairomm-doc-0:1.12.0-12.fc32.noarch\n - gspell-devel-0:1.8.3-2.fc32.aarch64\n - evolution-data-server-0:3.36.2-1.fc32.x86_64\n - libhandy-0:0.0.13-4.fc32.x86_64\n - boost-devel-0:1.69.0-18.fc32.i686\n - poppler-cpp-devel-0:0.84.0-2.fc32.i686\n - jbig2dec-devel-0:0.17-4.fc32.aarch64\n - openjpeg2-devel-0:2.3.1-6.fc32.x86_64\n - OpenEXR-libs-0:2.3.0-5.fc32.armv7hl\n - libical-devel-0:3.0.8-1.fc32.s390x\n - gspell-doc-0:1.8.3-2.fc32.noarch\n - OpenEXR-0:2.3.0-5.fc32.s390x\n - openblas-serial64_-0:0.3.9-2.fc32.x86_64\n - libimagequant-devel-0:2.12.6-2.fc32.ppc64le\n - libidn-devel-0:1.35-7.fc32.x86_64\n - openjpeg2-0:2.3.1-6.fc32.i686\n - cairomm-0:1.12.0-12.fc32.armv7hl\n - boost-timer-0:1.69.0-18.fc32.x86_64\n - ghostscript-core-0:9.52-2.fc32.aarch64\n - boost-thread-0:1.69.0-18.fc32.armv7hl\n - ghostscript-tools-fonts-0:9.52-2.fc32.ppc64le\n - openblas-serial64-0:0.3.9-2.fc32.ppc64le\n - evolution-data-server-tests-0:3.36.2-1.fc32.ppc64le\n - ilmbase-0:2.3.0-4.fc32.s390x\n - glew-0:2.1.0-6.fc32.ppc64le\n - glibmm24-doc-0:2.64.2-1.fc32.noarch\n - gtksourceview3-tests-0:3.24.11-3.fc32.s390x\n - gnome-desktop3-0:3.36.2-1.fc32.armv7hl\n - urw-base35-gothic-fonts-0:20170801-14.fc32.noarch\n - jbig2dec-0:0.17-4.fc32.armv7hl\n - glibmm24-0:2.64.2-1.fc32.x86_64\n - glew-devel-0:2.1.0-6.fc32.x86_64\n - libgweather-0:3.36.0-1.fc32.aarch64\n - ghostscript-0:9.52-2.fc32.i686\n - ghostscript-gtk-0:9.52-2.fc32.ppc64le\n - openblas-serial64_-0:0.3.9-2.fc32.aarch64\n - OpenEXR-devel-0:2.3.0-5.fc32.x86_64\n - boost-fiber-0:1.69.0-18.fc32.armv7hl\n - boost-test-0:1.69.0-18.fc32.i686\n - geocode-glib-devel-0:3.26.2-1.fc32.aarch64\n - ghostscript-0:9.52-2.fc32.aarch64\n - libwmf-lite-0:0.2.12-3.fc32.x86_64\n - libical-glib-devel-0:3.0.8-1.fc32.x86_64\n - wxGTK3-docs-0:3.0.4-13.fc32.noarch\n - openblas-static-0:0.3.9-2.fc32.armv7hl\n - pangomm-0:2.42.1-1.fc32.s390x\n - google-droid-serif-fonts-0:20200215-3.fc32.noarch\n - poppler-qt5-0:0.84.0-2.fc32.x86_64\n - gnome-desktop3-tests-0:3.36.2-1.fc32.s390x\n - gnome-desktop3-0:3.36.2-1.fc32.ppc64le\n - boost-graph-0:1.69.0-18.fc32.x86_64\n - glibmm24-devel-0:2.64.2-1.fc32.s390x\n - libgweather-devel-0:3.36.0-1.fc32.aarch64\n - OpenEXR-libs-0:2.3.0-5.fc32.s390x\n - SDL-devel-0:1.2.15-43.fc32.x86_64\n - exiv2-libs-0:0.27.2-2.fc32.armv7hl\n - google-droid-sans-fonts-0:20200215-3.fc32.noarch\n - openblas-openmp64-0:0.3.9-2.fc32.x86_64\n - gnome-online-accounts-0:3.36.0-1.fc32.i686\n - boost-stacktrace-0:1.69.0-18.fc32.aarch64\n - ghostscript-0:9.52-2.fc32.armv7hl\n - polkit-0:0.116-7.fc32.aarch64\n - libgs-0:9.52-2.fc32.aarch64\n - exiv2-0:0.27.2-2.fc32.x86_64\n - flatpak-rpm-macros-0:32-2.fc32.s390x\n - poppler-cpp-0:0.84.0-2.fc32.i686\n - openjpeg2-devel-0:2.3.1-6.fc32.aarch64\n - poppler-qt5-devel-0:0.84.0-2.fc32.aarch64\n - poppler-devel-0:0.84.0-2.fc32.s390x\n - openblas-serial64_-0:0.3.9-2.fc32.ppc64le\n - gtkmm30-0:3.24.2-2.fc32.armv7hl\n - openblas-serial-0:0.3.9-2.fc32.armv7hl\n - polkit-0:0.116-7.fc32.i686\n - libgdata-0:0.17.12-1.fc32.aarch64\n - boost-contract-0:1.69.0-18.fc32.armv7hl\n - libpeas-devel-0:1.26.0-1.fc32.x86_64\n - wxGTK3-devel-0:3.0.4-13.fc32.s390x\n - ghostscript-tools-fonts-0:9.52-2.fc32.x86_64\n - boost-doctools-0:1.69.0-18.fc32.ppc64le\n - boost-doctools-0:1.69.0-18.fc32.aarch64\n - gtksourceview3-0:3.24.11-3.fc32.armv7hl\n - openblas-openmp-0:0.3.9-2.fc32.x86_64\n - openblas-serial-0:0.3.9-2.fc32.ppc64le\n - gspell-0:1.8.3-2.fc32.ppc64le\n - wxBase3-0:3.0.4-13.fc32.s390x\n - libsigc++20-devel-0:2.10.3-1.fc32.s390x\n - openjpeg2-tools-0:2.3.1-6.fc32.s390x\n - libijs-doc-0:0.35-11.fc32.noarch\n - flatpak-runtime-config-0:32-1.fc32.i686\n - libical-0:3.0.8-1.fc32.ppc64le\n - libhandy-devel-0:0.0.13-4.fc32.s390x\n - boost-serialization-0:1.69.0-18.fc32.x86_64\n - openblas-Rblas-0:0.3.9-2.fc32.s390x\n - polkit-libs-0:0.116-7.fc32.s390x\n - libgdata-0:0.17.12-1.fc32.armv7hl\n - compat-wxGTK3-gtk2-media-0:3.0.4-13.fc32.aarch64\n - openblas-0:0.3.9-2.fc32.ppc64le\n - openblas-threads64-0:0.3.9-2.fc32.aarch64\n - dbus-glib-devel-0:0.110-7.fc32.s390x\n - boost-date-time-0:1.69.0-18.fc32.s390x\n - glew-devel-0:2.1.0-6.fc32.ppc64le\n - gtkmm30-devel-0:3.24.2-2.fc32.armv7hl\n - gnome-desktop3-tests-0:3.36.2-1.fc32.i686\n - boost-container-0:1.69.0-18.fc32.s390x\n - gd-0:2.3.0-1.fc32.ppc64le\n - dbus-glib-devel-0:0.110-7.fc32.x86_64\n - geocode-glib-0:3.26.2-1.fc32.x86_64\n - jbig2dec-0:0.17-4.fc32.s390x\n - libmspack-0:0.10.1-0.3.alpha.fc32.aarch64\n - gsl-0:2.6-2.fc32.s390x\n - libGLEW-0:2.1.0-6.fc32.ppc64le\n - libimagequant-0:2.12.6-2.fc32.aarch64\n - startup-notification-0:0.12-19.fc32.ppc64le\n - dbus-glib-0:0.110-7.fc32.s390x\n - ghostscript-x11-0:9.52-2.fc32.s390x\n - evolution-data-server-devel-0:3.36.2-1.fc32.armv7hl\n - boost-locale-0:1.69.0-18.fc32.armv7hl\n - libsigc++20-devel-0:2.10.3-1.fc32.armv7hl\n - jbig2dec-libs-0:0.17-4.fc32.aarch64\n - atkmm-0:2.24.3-4.fc32.i686\n - poppler-glib-devel-0:0.84.0-2.fc32.aarch64\n - libfontenc-0:1.1.3-12.fc32.ppc64le\n - boost-python3-devel-0:1.69.0-18.fc32.i686\n - urw-base35-nimbus-mono-ps-fonts-0:20170801-14.fc32.noarch\n - boost-0:1.69.0-18.fc32.i686\n - openblas-openmp64-0:0.3.9-2.fc32.s390x\n - pangomm-devel-0:2.42.1-1.fc32.aarch64\n - OpenEXR-libs-0:2.3.0-5.fc32.aarch64\n - startup-notification-devel-0:0.12-19.fc32.i686\n - boost-timer-0:1.69.0-18.fc32.i686\n - gnome-online-accounts-0:3.36.0-1.fc32.ppc64le\n - boost-system-0:1.69.0-18.fc32.x86_64\n - adobe-mappings-cmap-devel-0:20171205-7.fc32.noarch\n - poppler-data-devel-0:0.4.9-5.fc32.noarch\n - libpeas-loader-python3-0:1.26.0-1.fc32.aarch64\n - boost-context-0:1.69.0-18.fc32.aarch64\n - boost-container-0:1.69.0-18.fc32.aarch64\n - boost-thread-0:1.69.0-18.fc32.aarch64\n - pangomm-0:2.42.1-1.fc32.armv7hl\n - poppler-utils-0:0.84.0-2.fc32.s390x\n - boost-coroutine-0:1.69.0-18.fc32.armv7hl\n - poppler-glib-0:0.84.0-2.fc32.i686\n - liboauth-devel-0:1.0.3-14.fc32.ppc64le\n - gd-devel-0:2.3.0-1.fc32.i686\n - libical-glib-devel-0:3.0.8-1.fc32.s390x\n - openblas-threads-0:0.3.9-2.fc32.x86_64\n - jbig2dec-libs-0:0.17-4.fc32.ppc64le\n - boost-test-0:1.69.0-18.fc32.x86_64\n - libidn-devel-0:1.35-7.fc32.s390x\n - wxGTK3-webview-0:3.0.4-13.fc32.s390x\n - dbus-glib-0:0.110-7.fc32.aarch64\n - compat-wxGTK3-gtk2-gl-0:3.0.4-13.fc32.armv7hl\n - flatpak-rpm-macros-0:32-2.fc32.i686\n - pangomm-devel-0:2.42.1-1.fc32.armv7hl\n - wxGTK3-media-0:3.0.4-13.fc32.s390x\n - boost-date-time-0:1.69.0-18.fc32.i686\n - boost-chrono-0:1.69.0-18.fc32.armv7hl\n - glibmm24-devel-0:2.64.2-1.fc32.i686\n - gd-devel-0:2.3.0-1.fc32.aarch64\n - boost-numpy3-0:1.69.0-18.fc32.ppc64le\n - boost-stacktrace-0:1.69.0-18.fc32.i686\n - jbig2dec-devel-0:0.17-4.fc32.i686\n - libical-0:3.0.8-1.fc32.armv7hl\n - openblas-threads-0:0.3.9-2.fc32.s390x\n - gd-progs-0:2.3.0-1.fc32.i686\n - SDL_image-0:1.2.12-23.fc32.ppc64le\n - libhandy-0:0.0.13-4.fc32.s390x\n - boost-chrono-0:1.69.0-18.fc32.x86_64\n - gsl-0:2.6-2.fc32.i686\n - liboauth-devel-0:1.0.3-14.fc32.i686\n - gtksourceview3-devel-0:3.24.11-3.fc32.s390x\n - libfontenc-devel-0:1.1.3-12.fc32.i686\n - gd-0:2.3.0-1.fc32.aarch64\n - libdazzle-0:3.36.0-1.fc32.aarch64\n - cairomm-devel-0:1.12.0-12.fc32.s390x\n - libmspack-0:0.10.1-0.3.alpha.fc32.armv7hl\n - openjpeg2-devel-0:2.3.1-6.fc32.armv7hl\n - exiv2-0:0.27.2-2.fc32.ppc64le\n - ilmbase-0:2.3.0-4.fc32.x86_64\n - boost-graph-0:1.69.0-18.fc32.i686\n - boost-random-0:1.69.0-18.fc32.armv7hl\n - wxGTK3-webview-0:3.0.4-13.fc32.armv7hl\n - gtksourceview3-tests-0:3.24.11-3.fc32.armv7hl\n - openjpeg2-devel-0:2.3.1-6.fc32.ppc64le\n - SDL-static-0:1.2.15-43.fc32.x86_64\n - gnome-online-accounts-devel-0:3.36.0-1.fc32.aarch64\n - gd-devel-0:2.3.0-1.fc32.armv7hl\n - openjpeg2-tools-0:2.3.1-6.fc32.ppc64le\n - dbus-glib-devel-0:0.110-7.fc32.i686\n - urw-base35-p052-fonts-0:20170801-14.fc32.noarch\n - OpenEXR-libs-0:2.3.0-5.fc32.i686\n - wxGTK3-media-0:3.0.4-13.fc32.ppc64le\n - libijs-0:0.35-11.fc32.ppc64le\n - cairomm-devel-0:1.12.0-12.fc32.aarch64\n - startup-notification-0:0.12-19.fc32.x86_64\n - evolution-data-server-tests-0:3.36.2-1.fc32.armv7hl\n - SDL-0:1.2.15-43.fc32.s390x\n - ghostscript-tools-printing-0:9.52-2.fc32.armv7hl\n - poppler-qt-devel-0:0.84.0-2.fc32.armv7hl\n - ghostscript-core-0:9.52-2.fc32.ppc64le\n - libimagequant-devel-0:2.12.6-2.fc32.aarch64\n - exiv2-devel-0:0.27.2-2.fc32.x86_64\n - urw-base35-nimbus-roman-fonts-0:20170801-14.fc32.noarch\n - startup-notification-devel-0:0.12-19.fc32.armv7hl\n - boost-doc-0:1.69.0-18.fc32.aarch64\n - libmspack-0:0.10.1-0.3.alpha.fc32.i686\n - libpeas-gtk-0:1.26.0-1.fc32.i686\n - glibmm24-devel-0:2.64.2-1.fc32.aarch64\n - libidn-0:1.35-7.fc32.x86_64\n - boost-filesystem-0:1.69.0-18.fc32.i686\n - boost-timer-0:1.69.0-18.fc32.ppc64le\n - boost-examples-0:1.69.0-18.fc32.x86_64\n - boost-system-0:1.69.0-18.fc32.aarch64\n - exiv2-libs-0:0.27.2-2.fc32.s390x\n - poppler-qt5-0:0.84.0-2.fc32.s390x\n - boost-jam-0:1.69.0-18.fc32.i686\n - libidn-devel-0:1.35-7.fc32.aarch64\n - boost-context-0:1.69.0-18.fc32.ppc64le\n - SDL-static-0:1.2.15-43.fc32.armv7hl\n - boost-thread-0:1.69.0-18.fc32.ppc64le\n - wxGTK3-gl-0:3.0.4-13.fc32.s390x\n - exiv2-devel-0:0.27.2-2.fc32.armv7hl\n - libpeas-gtk-0:1.26.0-1.fc32.aarch64\n - atkmm-devel-0:2.24.3-4.fc32.s390x\n - wxBase3-devel-0:3.0.4-13.fc32.aarch64\n - libgdata-0:0.17.12-1.fc32.s390x\n - gnome-online-accounts-devel-0:3.36.0-1.fc32.x86_64\n - ilmbase-0:2.3.0-4.fc32.armv7hl\n - poppler-qt-devel-0:0.84.0-2.fc32.s390x\n - glibmm24-devel-0:2.64.2-1.fc32.ppc64le\n - libgweather-0:3.36.0-1.fc32.i686\n - evolution-data-server-langpacks-0:3.36.2-1.fc32.noarch\n - libhandy-0:0.0.13-4.fc32.ppc64le\n - boost-stacktrace-0:1.69.0-18.fc32.x86_64\n - pangomm-0:2.42.1-1.fc32.aarch64\n - boost-locale-0:1.69.0-18.fc32.i686\n - poppler-utils-0:0.84.0-2.fc32.ppc64le\n - libpaper-0:1.1.24-26.fc32.ppc64le\n - boost-math-0:1.69.0-18.fc32.ppc64le\n - liboauth-devel-0:1.0.3-14.fc32.armv7hl\n - ghostscript-tools-dvipdf-0:9.52-2.fc32.x86_64\n - boost-atomic-0:1.69.0-18.fc32.ppc64le\n - ghostscript-x11-0:9.52-2.fc32.ppc64le\n - boost-python3-0:1.69.0-18.fc32.ppc64le\n - poppler-glib-0:0.84.0-2.fc32.armv7hl\n - gnome-desktop3-devel-0:3.36.2-1.fc32.x86_64\n - boost-devel-0:1.69.0-18.fc32.s390x\n - exiv2-libs-0:0.27.2-2.fc32.x86_64\n - libical-glib-doc-0:3.0.8-1.fc32.noarch\n - libpeas-0:1.26.0-1.fc32.ppc64le\n - boost-math-0:1.69.0-18.fc32.i686\n - poppler-qt-0:0.84.0-2.fc32.ppc64le\n - exiv2-libs-0:0.27.2-2.fc32.i686\n - libfontenc-0:1.1.3-12.fc32.i686\n - boost-jam-0:1.69.0-18.fc32.x86_64\n - openblas-static-0:0.3.9-2.fc32.aarch64\n - liboauth-0:1.0.3-14.fc32.ppc64le\n - openblas-openmp64_-0:0.3.9-2.fc32.ppc64le\n - libfontenc-0:1.1.3-12.fc32.aarch64\n - openblas-serial64_-0:0.3.9-2.fc32.s390x\n - boost-doc-0:1.69.0-18.fc32.ppc64le\n - gd-progs-0:2.3.0-1.fc32.armv7hl\n - boost-container-0:1.69.0-18.fc32.x86_64\n - libwmf-0:0.2.12-3.fc32.armv7hl\n - libijs-devel-0:0.35-11.fc32.x86_64\n - wxGTK3-devel-0:3.0.4-13.fc32.i686\n - SDL_image-devel-0:1.2.12-23.fc32.s390x\n - boost-atomic-0:1.69.0-18.fc32.i686\n - boost-atomic-0:1.69.0-18.fc32.s390x\n - poppler-0:0.84.0-2.fc32.aarch64\n - openblas-threads64-0:0.3.9-2.fc32.x86_64\n - wxGTK3-gl-0:3.0.4-13.fc32.armv7hl\n - flatpak-rpm-macros-0:32-2.fc32.ppc64le\n - openblas-openmp-0:0.3.9-2.fc32.armv7hl\n - libical-glib-0:3.0.8-1.fc32.x86_64\n - jbig2dec-devel-0:0.17-4.fc32.x86_64\n - openjpeg2-tools-0:2.3.1-6.fc32.x86_64\n - libsigc++20-devel-0:2.10.3-1.fc32.x86_64\n - startup-notification-0:0.12-19.fc32.s390x\n - boost-numpy3-0:1.69.0-18.fc32.x86_64\n - adobe-mappings-cmap-deprecated-0:20171205-7.fc32.noarch\n - SDL_image-0:1.2.12-23.fc32.aarch64\n - SDL_image-0:1.2.12-23.fc32.i686\n - libpeas-devel-0:1.26.0-1.fc32.aarch64\n - libical-devel-0:3.0.8-1.fc32.armv7hl\n - boost-log-0:1.69.0-18.fc32.armv7hl\n - boost-jam-0:1.69.0-18.fc32.aarch64\n - jbig2dec-0:0.17-4.fc32.x86_64\n - gnome-desktop3-0:3.36.2-1.fc32.x86_64\n - poppler-qt5-devel-0:0.84.0-2.fc32.ppc64le\n - libsigc++20-0:2.10.3-1.fc32.x86_64\n - SDL-devel-0:1.2.15-43.fc32.ppc64le\n - libpeas-gtk-0:1.26.0-1.fc32.s390x\n - ghostscript-core-0:9.52-2.fc32.x86_64\n - gnome-desktop3-0:3.36.2-1.fc32.i686\n - SDL_image-0:1.2.12-23.fc32.armv7hl\n - libpeas-loader-python3-0:1.26.0-1.fc32.i686\n - compat-wxGTK3-gtk2-0:3.0.4-13.fc32.s390x\n - boost-date-time-0:1.69.0-18.fc32.armv7hl\n - boost-context-0:1.69.0-18.fc32.i686\n - poppler-glib-0:0.84.0-2.fc32.ppc64le\n - SDL-static-0:1.2.15-43.fc32.ppc64le\n - libmspack-devel-0:0.10.1-0.3.alpha.fc32.x86_64\n - openblas-Rblas-0:0.3.9-2.fc32.i686\n - openblas-threads64-0:0.3.9-2.fc32.ppc64le\n - boost-serialization-0:1.69.0-18.fc32.ppc64le\n - poppler-glib-doc-0:0.84.0-2.fc32.noarch\n - openblas-Rblas-0:0.3.9-2.fc32.armv7hl\n - dbus-glib-devel-0:0.110-7.fc32.aarch64\n - adobe-mappings-cmap-0:20171205-7.fc32.noarch\n - libmspack-0:0.10.1-0.3.alpha.fc32.x86_64\n - libgweather-devel-0:3.36.0-1.fc32.armv7hl\n - gnome-online-accounts-devel-0:3.36.0-1.fc32.ppc64le\n - pangomm-0:2.42.1-1.fc32.ppc64le\n - polkit-libs-0:0.116-7.fc32.aarch64\n - openblas-openmp64_-0:0.3.9-2.fc32.aarch64\n - urw-base35-fonts-devel-0:20170801-14.fc32.noarch\n - boost-graph-0:1.69.0-18.fc32.armv7hl\n - libdazzle-0:3.36.0-1.fc32.x86_64\n - atkmm-devel-0:2.24.3-4.fc32.armv7hl\n - compat-wxGTK3-gtk2-0:3.0.4-13.fc32.i686\n - wxBase3-0:3.0.4-13.fc32.ppc64le\n - libijs-devel-0:0.35-11.fc32.armv7hl\n - openblas-0:0.3.9-2.fc32.s390x\n - gnome-desktop3-0:3.36.2-1.fc32.aarch64\n - gtkmm30-0:3.24.2-2.fc32.ppc64le\n - jbig2dec-0:0.17-4.fc32.ppc64le\n - boost-system-0:1.69.0-18.fc32.armv7hl\n - libpeas-loader-python3-0:1.26.0-1.fc32.s390x\n - dbus-glib-0:0.110-7.fc32.i686\n - compat-wxGTK3-gtk2-devel-0:3.0.4-13.fc32.ppc64le\n - gtksourceview3-devel-0:3.24.11-3.fc32.armv7hl\n - flatpak-runtime-config-0:32-1.fc32.x86_64\n - libwmf-0:0.2.12-3.fc32.aarch64\n - libijs-devel-0:0.35-11.fc32.aarch64\n - ghostscript-doc-0:9.52-2.fc32.noarch\n - atkmm-0:2.24.3-4.fc32.armv7hl\n - ghostscript-tools-printing-0:9.52-2.fc32.x86_64\n - dbus-glib-0:0.110-7.fc32.x86_64\n - libwmf-devel-0:0.2.12-3.fc32.aarch64\n - xorg-x11-font-utils-1:7.5-44.fc32.ppc64le\n - gtksourceview3-devel-0:3.24.11-3.fc32.aarch64\n - poppler-qt-devel-0:0.84.0-2.fc32.i686\n - urw-base35-d050000l-fonts-0:20170801-14.fc32.noarch\n - poppler-qt-devel-0:0.84.0-2.fc32.x86_64\n - gtkmm30-devel-0:3.24.2-2.fc32.x86_64\n - evolution-data-server-perl-0:3.36.2-1.fc32.s390x\n - openblas-serial64-0:0.3.9-2.fc32.aarch64\n - boost-numpy3-0:1.69.0-18.fc32.i686\n - openblas-openmp64-0:0.3.9-2.fc32.aarch64\n - boost-wave-0:1.69.0-18.fc32.i686\n - OpenEXR-0:2.3.0-5.fc32.armv7hl\n - boost-stacktrace-0:1.69.0-18.fc32.s390x\n - openblas-static-0:0.3.9-2.fc32.x86_64\n - libdazzle-0:3.36.0-1.fc32.ppc64le\n - glew-devel-0:2.1.0-6.fc32.i686\n - libgweather-devel-0:3.36.0-1.fc32.s390x\n - atkmm-devel-0:2.24.3-4.fc32.ppc64le\n - libpeas-0:1.26.0-1.fc32.i686\n - dbus-glib-devel-0:0.110-7.fc32.ppc64le\n - evolution-data-server-devel-0:3.36.2-1.fc32.s390x\n - polkit-libs-0:0.116-7.fc32.x86_64\n - boost-numpy3-0:1.69.0-18.fc32.armv7hl\n - SDL_image-0:1.2.12-23.fc32.s390x\n - openblas-devel-0:0.3.9-2.fc32.s390x\n - wxBase3-devel-0:3.0.4-13.fc32.ppc64le\n - boost-numpy3-0:1.69.0-18.fc32.s390x\n - libGLEW-0:2.1.0-6.fc32.s390x\n - gnome-online-accounts-0:3.36.0-1.fc32.x86_64\n - boost-python3-0:1.69.0-18.fc32.s390x\n - evolution-data-server-devel-0:3.36.2-1.fc32.aarch64\n - openblas-serial64-0:0.3.9-2.fc32.x86_64\n - geocode-glib-devel-0:3.26.2-1.fc32.i686\n - startup-notification-devel-0:0.12-19.fc32.aarch64\n - boost-regex-0:1.69.0-18.fc32.s390x\n - boost-timer-0:1.69.0-18.fc32.armv7hl\n - libpeas-devel-0:1.26.0-1.fc32.armv7hl\n - boost-static-0:1.69.0-18.fc32.armv7hl\n - wxBase3-devel-0:3.0.4-13.fc32.s390x\n - dbus-glib-0:0.110-7.fc32.ppc64le\n - wxGTK3-0:3.0.4-13.fc32.i686\n - libdazzle-devel-0:3.36.0-1.fc32.armv7hl\n - libpeas-devel-0:1.26.0-1.fc32.ppc64le\n - ilmbase-devel-0:2.3.0-4.fc32.i686\n - libical-glib-0:3.0.8-1.fc32.i686\n - atkmm-0:2.24.3-4.fc32.x86_64\n - wxGTK3-0:3.0.4-13.fc32.ppc64le\n - boost-contract-0:1.69.0-18.fc32.i686\n - libwmf-devel-0:0.2.12-3.fc32.i686\n - libsigc++20-0:2.10.3-1.fc32.armv7hl\n - wxGTK3-media-0:3.0.4-13.fc32.armv7hl\n - libhandy-0:0.0.13-4.fc32.armv7hl\n - boost-locale-0:1.69.0-18.fc32.aarch64\n - boost-chrono-0:1.69.0-18.fc32.i686\n - pangomm-doc-0:2.42.1-1.fc32.noarch\n - openblas-Rblas-0:0.3.9-2.fc32.x86_64\n - poppler-qt5-0:0.84.0-2.fc32.armv7hl\n - cairomm-devel-0:1.12.0-12.fc32.armv7hl\n - wxGTK3-0:3.0.4-13.fc32.aarch64\n - SDL_image-0:1.2.12-23.fc32.x86_64\n - boost-test-0:1.69.0-18.fc32.aarch64\n - libmspack-0:0.10.1-0.3.alpha.fc32.ppc64le\n - ghostscript-0:9.52-2.fc32.x86_64\n - compat-wxGTK3-gtk2-media-0:3.0.4-13.fc32.s390x\n - gsl-devel-0:2.6-2.fc32.aarch64\n - libhandy-devel-0:0.0.13-4.fc32.x86_64\n - libwmf-lite-0:0.2.12-3.fc32.i686\n - boost-iostreams-0:1.69.0-18.fc32.s390x\n - polkit-libs-0:0.116-7.fc32.armv7hl\n - glibmm24-0:2.64.2-1.fc32.i686\n - boost-examples-0:1.69.0-18.fc32.aarch64\n - boost-random-0:1.69.0-18.fc32.i686\n - gd-progs-0:2.3.0-1.fc32.x86_64\n - libmspack-devel-0:0.10.1-0.3.alpha.fc32.i686\n - boost-iostreams-0:1.69.0-18.fc32.armv7hl\n - libpeas-devel-0:1.26.0-1.fc32.i686\n - geocode-glib-0:3.26.2-1.fc32.i686\n - openblas-threads-0:0.3.9-2.fc32.ppc64le\n - libgs-devel-0:9.52-2.fc32.armv7hl\n - compat-wxGTK3-gtk2-devel-0:3.0.4-13.fc32.aarch64\n - libgweather-0:3.36.0-1.fc32.armv7hl\n - ghostscript-tools-dvipdf-0:9.52-2.fc32.aarch64\n - libimagequant-0:2.12.6-2.fc32.s390x\n - poppler-cpp-devel-0:0.84.0-2.fc32.armv7hl\n - compat-wxGTK3-gtk2-devel-0:3.0.4-13.fc32.s390x\n - urw-base35-standard-symbols-ps-fonts-0:20170801-14.fc32.noarch\n - poppler-cpp-0:0.84.0-2.fc32.x86_64\n - libhandy-devel-0:0.0.13-4.fc32.i686\n - compat-wxGTK3-gtk2-gl-0:3.0.4-13.fc32.aarch64\n - gd-devel-0:2.3.0-1.fc32.x86_64\n - gspell-devel-0:1.8.3-2.fc32.s390x\n - ghostscript-gtk-0:9.52-2.fc32.aarch64\n - poppler-glib-devel-0:0.84.0-2.fc32.x86_64\n - libgdata-devel-0:0.17.12-1.fc32.ppc64le\n - ghostscript-tools-printing-0:9.52-2.fc32.i686\n - libgweather-devel-0:3.36.0-1.fc32.i686\n - jbig2dec-libs-0:0.17-4.fc32.armv7hl\n - gtkmm30-0:3.24.2-2.fc32.aarch64\n - flatpak-rpm-macros-0:32-2.fc32.x86_64\n - boost-static-0:1.69.0-18.fc32.ppc64le\n - gtkmm30-0:3.24.2-2.fc32.s390x\n - boost-python3-0:1.69.0-18.fc32.aarch64\n - libgs-0:9.52-2.fc32.armv7hl\n - gd-progs-0:2.3.0-1.fc32.aarch64\n - poppler-glib-0:0.84.0-2.fc32.s390x\n - boost-0:1.69.0-18.fc32.aarch64\n - exiv2-libs-0:0.27.2-2.fc32.aarch64\n - boost-0:1.69.0-18.fc32.s390x\n - gsl-devel-0:2.6-2.fc32.ppc64le\n - cairomm-devel-0:1.12.0-12.fc32.x86_64\n - glew-devel-0:2.1.0-6.fc32.aarch64\n - openjpeg2-devel-0:2.3.1-6.fc32.i686\n - boost-doc-0:1.69.0-18.fc32.armv7hl\n - ghostscript-0:9.52-2.fc32.s390x\n - boost-log-0:1.69.0-18.fc32.i686\n - libfontenc-devel-0:1.1.3-12.fc32.armv7hl\n - gspell-devel-0:1.8.3-2.fc32.i686\n - evolution-data-server-0:3.36.2-1.fc32.s390x\n - boost-random-0:1.69.0-18.fc32.aarch64\n - libGLEW-0:2.1.0-6.fc32.aarch64\n - polkit-devel-0:0.116-7.fc32.armv7hl\n - gtksourceview3-tests-0:3.24.11-3.fc32.i686\n - poppler-devel-0:0.84.0-2.fc32.ppc64le\n - glew-0:2.1.0-6.fc32.x86_64\n - dbus-glib-0:0.110-7.fc32.armv7hl\n - openjpeg2-tools-0:2.3.1-6.fc32.aarch64\n - ilmbase-0:2.3.0-4.fc32.aarch64\n - boost-python3-devel-0:1.69.0-18.fc32.armv7hl\n - wxGTK3-devel-0:3.0.4-13.fc32.x86_64\n - openblas-serial64-0:0.3.9-2.fc32.s390x\n - libical-devel-0:3.0.8-1.fc32.i686\n - geocode-glib-0:3.26.2-1.fc32.aarch64\n - ghostscript-gtk-0:9.52-2.fc32.s390x\n - gnome-desktop3-tests-0:3.36.2-1.fc32.aarch64\n - boost-type_erasure-0:1.69.0-18.fc32.s390x\n - pangomm-devel-0:2.42.1-1.fc32.i686\n - boost-doctools-0:1.69.0-18.fc32.armv7hl\n - openblas-openmp-0:0.3.9-2.fc32.aarch64\n - compat-wxGTK3-gtk2-media-0:3.0.4-13.fc32.i686\n - wxGTK3-0:3.0.4-13.fc32.x86_64\n - boost-examples-0:1.69.0-18.fc32.s390x\n - ghostscript-x11-0:9.52-2.fc32.x86_64\n - gd-0:2.3.0-1.fc32.i686\n - openblas-static-0:0.3.9-2.fc32.ppc64le\n - evolution-data-server-tests-0:3.36.2-1.fc32.s390x\n - gtkmm30-devel-0:3.24.2-2.fc32.i686\n - ghostscript-tools-fonts-0:9.52-2.fc32.i686\n - boost-timer-0:1.69.0-18.fc32.s390x\n - openblas-openmp-0:0.3.9-2.fc32.i686\n - gspell-devel-0:1.8.3-2.fc32.ppc64le\n - boost-python3-devel-0:1.69.0-18.fc32.ppc64le\n - ghostscript-tools-fonts-0:9.52-2.fc32.armv7hl\n - libsigc++20-doc-0:2.10.3-1.fc32.noarch\n - urw-base35-fonts-0:20170801-14.fc32.noarch\n - flatpak-runtime-config-0:32-1.fc32.armv7hl\n - wxGTK3-gl-0:3.0.4-13.fc32.aarch64\n - boost-static-0:1.69.0-18.fc32.aarch64\n - boost-program-options-0:1.69.0-18.fc32.aarch64\n - ghostscript-tools-dvipdf-0:9.52-2.fc32.s390x\n - boost-math-0:1.69.0-18.fc32.x86_64\n - exiv2-doc-0:0.27.2-2.fc32.noarch\n - boost-0:1.69.0-18.fc32.x86_64\n - gnome-online-accounts-devel-0:3.36.0-1.fc32.i686\n - libdazzle-0:3.36.0-1.fc32.i686\n - libfontenc-0:1.1.3-12.fc32.armv7hl\n - flatpak-rpm-macros-0:32-2.fc32.armv7hl\n - poppler-qt-devel-0:0.84.0-2.fc32.aarch64\n - boost-filesystem-0:1.69.0-18.fc32.ppc64le\n - gsl-0:2.6-2.fc32.aarch64\n - gtksourceview3-0:3.24.11-3.fc32.ppc64le\n - boost-graph-0:1.69.0-18.fc32.ppc64le\n - libical-glib-devel-0:3.0.8-1.fc32.armv7hl\n - polkit-docs-0:0.116-7.fc32.noarch\n - boost-wave-0:1.69.0-18.fc32.ppc64le\n - wxGTK3-0:3.0.4-13.fc32.armv7hl\n - urw-base35-nimbus-sans-fonts-0:20170801-14.fc32.noarch\n - libsigc++20-0:2.10.3-1.fc32.ppc64le\n - ghostscript-gtk-0:9.52-2.fc32.i686\n - libhandy-0:0.0.13-4.fc32.i686\n - google-droid-sans-mono-fonts-0:20200215-3.fc32.noarch\n - boost-contract-0:1.69.0-18.fc32.aarch64\n - poppler-glib-0:0.84.0-2.fc32.x86_64\n - flatpak-runtime-config-0:32-1.fc32.s390x\n - SDL-0:1.2.15-43.fc32.aarch64\n - boost-atomic-0:1.69.0-18.fc32.x86_64\n - gtksourceview3-0:3.24.11-3.fc32.x86_64\n - exiv2-0:0.27.2-2.fc32.aarch64\n - boost-contract-0:1.69.0-18.fc32.ppc64le\n - boost-wave-0:1.69.0-18.fc32.aarch64\n - evolution-data-server-0:3.36.2-1.fc32.ppc64le\n - boost-examples-0:1.69.0-18.fc32.armv7hl\n - gtksourceview3-devel-0:3.24.11-3.fc32.x86_64\n - libpeas-0:1.26.0-1.fc32.armv7hl\n - boost-contract-0:1.69.0-18.fc32.s390x\n - libidn-devel-0:1.35-7.fc32.ppc64le\n - glibmm24-0:2.64.2-1.fc32.s390x\n - libpeas-gtk-0:1.26.0-1.fc32.armv7hl\n - urw-base35-bookman-fonts-0:20170801-14.fc32.noarch\n - gnome-desktop3-devel-0:3.36.2-1.fc32.aarch64\n - libpaper-devel-0:1.1.24-26.fc32.armv7hl\n - OpenEXR-devel-0:2.3.0-5.fc32.armv7hl\n - libGLEW-0:2.1.0-6.fc32.armv7hl\n - xorg-x11-font-utils-1:7.5-44.fc32.s390x\n - poppler-utils-0:0.84.0-2.fc32.aarch64\n - evolution-data-server-0:3.36.2-1.fc32.aarch64\n - google-droid-fonts-all-0:20200215-3.fc32.noarch\n - boost-log-0:1.69.0-18.fc32.s390x\n - wxGTK3-media-0:3.0.4-13.fc32.i686\n - glew-0:2.1.0-6.fc32.armv7hl\n - boost-container-0:1.69.0-18.fc32.ppc64le\n - boost-python3-devel-0:1.69.0-18.fc32.x86_64\n - openblas-threads64_-0:0.3.9-2.fc32.aarch64\n - libdazzle-0:3.36.0-1.fc32.armv7hl\n - boost-fiber-0:1.69.0-18.fc32.i686\n - flatpak-rpm-macros-0:32-2.fc32.aarch64\n - libmspack-devel-0:0.10.1-0.3.alpha.fc32.s390x\n - exiv2-libs-0:0.27.2-2.fc32.ppc64le\n - poppler-0:0.84.0-2.fc32.x86_64\n - atkmm-devel-0:2.24.3-4.fc32.aarch64\n - poppler-cpp-0:0.84.0-2.fc32.aarch64\n - liboauth-0:1.0.3-14.fc32.x86_64\n - poppler-utils-0:0.84.0-2.fc32.armv7hl\n - poppler-cpp-devel-0:0.84.0-2.fc32.aarch64\n - poppler-utils-0:0.84.0-2.fc32.x86_64\n - libdazzle-devel-0:3.36.0-1.fc32.i686\n - wxGTK3-devel-0:3.0.4-13.fc32.armv7hl\n - libimagequant-devel-0:2.12.6-2.fc32.i686\n - libgs-devel-0:9.52-2.fc32.x86_64\n - openjpeg2-0:2.3.1-6.fc32.armv7hl\n - OpenEXR-doc-0:2.3.0-5.fc32.armv7hl\n - ghostscript-tools-dvipdf-0:9.52-2.fc32.ppc64le\n - OpenEXR-libs-0:2.3.0-5.fc32.ppc64le\n - libwmf-lite-0:0.2.12-3.fc32.armv7hl\n - glibmm24-0:2.64.2-1.fc32.armv7hl\n - glew-0:2.1.0-6.fc32.s390x\n - exiv2-0:0.27.2-2.fc32.s390x\n - boost-program-options-0:1.69.0-18.fc32.i686\n - libgs-devel-0:9.52-2.fc32.s390x\n - gd-0:2.3.0-1.fc32.x86_64\n - libical-glib-0:3.0.8-1.fc32.armv7hl\n - OpenEXR-doc-0:2.3.0-5.fc32.x86_64\n - libdazzle-devel-0:3.36.0-1.fc32.aarch64\n - flatpak-runtime-config-0:32-1.fc32.ppc64le\n - cairomm-0:1.12.0-12.fc32.ppc64le\n - openjpeg2-0:2.3.1-6.fc32.x86_64\n - openblas-threads64_-0:0.3.9-2.fc32.x86_64\n - libmspack-devel-0:0.10.1-0.3.alpha.fc32.ppc64le\n - libical-glib-devel-0:3.0.8-1.fc32.i686\n - libimagequant-devel-0:2.12.6-2.fc32.armv7hl\n - gsl-devel-0:2.6-2.fc32.x86_64\n - SDL-static-0:1.2.15-43.fc32.aarch64\n - libimagequant-0:2.12.6-2.fc32.i686\n - libwmf-0:0.2.12-3.fc32.ppc64le\n - exiv2-devel-0:0.27.2-2.fc32.s390x\n - boost-python3-0:1.69.0-18.fc32.x86_64\n - ghostscript-x11-0:9.52-2.fc32.i686\n - boost-fiber-0:1.69.0-18.fc32.x86_64\n - gtkmm30-doc-0:3.24.2-2.fc32.noarch\n - OpenEXR-doc-0:2.3.0-5.fc32.i686\n - boost-build-0:1.69.0-18.fc32.noarch\n - boost-chrono-0:1.69.0-18.fc32.ppc64le\n - OpenEXR-0:2.3.0-5.fc32.x86_64\n - openblas-openmp-0:0.3.9-2.fc32.s390x\n - opengl-games-utils-0:0.2-17.fc32.noarch\n - gnome-desktop3-devel-0:3.36.2-1.fc32.s390x\n - atkmm-0:2.24.3-4.fc32.s390x\n - poppler-cpp-0:0.84.0-2.fc32.armv7hl\n - geocode-glib-0:3.26.2-1.fc32.armv7hl\n - boost-coroutine-0:1.69.0-18.fc32.ppc64le\n - compat-wxGTK3-gtk2-gl-0:3.0.4-13.fc32.x86_64\n - cairomm-devel-0:1.12.0-12.fc32.ppc64le\n - wxGTK3-media-0:3.0.4-13.fc32.x86_64\n - boost-filesystem-0:1.69.0-18.fc32.aarch64\n - jbig2dec-0:0.17-4.fc32.aarch64\n - boost-type_erasure-0:1.69.0-18.fc32.i686\n - atkmm-0:2.24.3-4.fc32.aarch64\n - boost-serialization-0:1.69.0-18.fc32.s390x\n - libpaper-devel-0:1.1.24-26.fc32.i686\n - wxGTK3-gl-0:3.0.4-13.fc32.i686\n - ghostscript-tools-printing-0:9.52-2.fc32.aarch64\n - cairomm-0:1.12.0-12.fc32.s390x\n - libgdata-devel-0:0.17.12-1.fc32.s390x\n - boost-type_erasure-0:1.69.0-18.fc32.armv7hl\n - poppler-glib-devel-0:0.84.0-2.fc32.armv7hl\n - openjpeg2-tools-0:2.3.1-6.fc32.i686\n - boost-date-time-0:1.69.0-18.fc32.ppc64le\n - boost-filesystem-0:1.69.0-18.fc32.x86_64\n - poppler-qt5-0:0.84.0-2.fc32.ppc64le\n - gd-progs-0:2.3.0-1.fc32.s390x\n - openblas-threads-0:0.3.9-2.fc32.armv7hl\n - libijs-devel-0:0.35-11.fc32.i686\n - liboauth-0:1.0.3-14.fc32.i686\n - libpaper-0:1.1.24-26.fc32.armv7hl\n - startup-notification-0:0.12-19.fc32.i686\n - openblas-static-0:0.3.9-2.fc32.i686\n - boost-python3-0:1.69.0-18.fc32.i686\n - boost-examples-0:1.69.0-18.fc32.i686\n - polkit-devel-0:0.116-7.fc32.aarch64\n - poppler-glib-devel-0:0.84.0-2.fc32.s390x\n - boost-wave-0:1.69.0-18.fc32.s390x\n - compat-wxGTK3-gtk2-0:3.0.4-13.fc32.ppc64le\n - SDL-devel-0:1.2.15-43.fc32.aarch64\n - flatpak-runtime-config-0:32-1.fc32.aarch64\n - libgs-devel-0:9.52-2.fc32.i686\n - boost-filesystem-0:1.69.0-18.fc32.armv7hl\n - boost-context-0:1.69.0-18.fc32.x86_64\n - libpeas-loader-python3-0:1.26.0-1.fc32.x86_64\n - libimagequant-0:2.12.6-2.fc32.ppc64le\n - openblas-serial-0:0.3.9-2.fc32.s390x\n - gsl-devel-0:2.6-2.fc32.armv7hl\n - boost-date-time-0:1.69.0-18.fc32.aarch64\n - evolution-data-server-perl-0:3.36.2-1.fc32.armv7hl\n - libpaper-0:1.1.24-26.fc32.i686\n - atkmm-devel-0:2.24.3-4.fc32.i686\n - boost-serialization-0:1.69.0-18.fc32.armv7hl\n - gspell-0:1.8.3-2.fc32.aarch64\n - ilmbase-0:2.3.0-4.fc32.ppc64le\n - polkit-libs-0:0.116-7.fc32.i686\n - evolution-data-server-tests-0:3.36.2-1.fc32.aarch64\n - jbig2dec-libs-0:0.17-4.fc32.i686\n - libical-glib-0:3.0.8-1.fc32.aarch64\n - libhandy-devel-0:0.0.13-4.fc32.armv7hl\n - gspell-0:1.8.3-2.fc32.i686\n - libical-devel-0:3.0.8-1.fc32.ppc64le\n - boost-log-0:1.69.0-18.fc32.ppc64le\n - ghostscript-gtk-0:9.52-2.fc32.x86_64\n - ghostscript-x11-0:9.52-2.fc32.armv7hl\n - libidn-0:1.35-7.fc32.aarch64\n - libpeas-gtk-0:1.26.0-1.fc32.x86_64\n - ghostscript-tools-fonts-0:9.52-2.fc32.aarch64\n - glew-0:2.1.0-6.fc32.aarch64\n - ghostscript-core-0:9.52-2.fc32.s390x\n - libijs-0:0.35-11.fc32.armv7hl\n - openblas-openmp-0:0.3.9-2.fc32.ppc64le\n - libgdata-0:0.17.12-1.fc32.i686\n - boost-coroutine-0:1.69.0-18.fc32.i686\n - boost-python3-devel-0:1.69.0-18.fc32.s390x\n - gtkmm30-0:3.24.2-2.fc32.i686\n - boost-thread-0:1.69.0-18.fc32.s390x\n - boost-numpy3-0:1.69.0-18.fc32.aarch64\n - gtksourceview3-devel-0:3.24.11-3.fc32.ppc64le\n - OpenEXR-0:2.3.0-5.fc32.aarch64\n - evolution-data-server-perl-0:3.36.2-1.fc32.i686\n - libwmf-0:0.2.12-3.fc32.s390x\n - boost-chrono-0:1.69.0-18.fc32.aarch64\n - libmspack-0:0.10.1-0.3.alpha.fc32.s390x\n - libmspack-devel-0:0.10.1-0.3.alpha.fc32.aarch64\n - adobe-mappings-pdf-devel-0:20180407-5.fc32.noarch\n - libpeas-devel-0:1.26.0-1.fc32.s390x\n - libwmf-lite-0:0.2.12-3.fc32.s390x\n - wxGTK3-i18n-0:3.0.4-13.fc32.noarch\n - polkit-devel-0:0.116-7.fc32.i686\n - startup-notification-devel-0:0.12-19.fc32.ppc64le\n - liboauth-devel-0:1.0.3-14.fc32.s390x\n - libsigc++20-devel-0:2.10.3-1.fc32.ppc64le\n - dbus-glib-devel-0:0.110-7.fc32.armv7hl\n - openblas-serial-0:0.3.9-2.fc32.i686\n - SDL_image-devel-0:1.2.12-23.fc32.i686\n - poppler-qt-0:0.84.0-2.fc32.i686\n - SDL-0:1.2.15-43.fc32.ppc64le\n - libidn-0:1.35-7.fc32.i686\n - boost-regex-0:1.69.0-18.fc32.x86_64\n - poppler-qt5-0:0.84.0-2.fc32.aarch64\n - jbig2dec-0:0.17-4.fc32.i686\n - poppler-cpp-0:0.84.0-2.fc32.s390x\n - SDL-0:1.2.15-43.fc32.armv7hl\n - jbig2dec-devel-0:0.17-4.fc32.ppc64le\n - poppler-glib-devel-0:0.84.0-2.fc32.i686\n - libfontenc-devel-0:1.1.3-12.fc32.ppc64le\n - polkit-libs-0:0.116-7.fc32.ppc64le\n - SDL_image-devel-0:1.2.12-23.fc32.armv7hl\n - poppler-devel-0:0.84.0-2.fc32.aarch64\n - libidn-java-0:1.35-7.fc32.noarch\n - boost-math-0:1.69.0-18.fc32.armv7hl\n - ghostscript-tools-dvipdf-0:9.52-2.fc32.i686\n - libwmf-devel-0:0.2.12-3.fc32.armv7hl\n - boost-timer-0:1.69.0-18.fc32.aarch64\n - gd-progs-0:2.3.0-1.fc32.ppc64le\n - ghostscript-gtk-0:9.52-2.fc32.armv7hl\n - boost-system-0:1.69.0-18.fc32.s390x\n - boost-devel-0:1.69.0-18.fc32.armv7hl\n - xorg-x11-font-utils-1:7.5-44.fc32.aarch64\n - libgdata-devel-0:0.17.12-1.fc32.x86_64\n - boost-0:1.69.0-18.fc32.ppc64le\n - libmspack-devel-0:0.10.1-0.3.alpha.fc32.armv7hl\n - glew-0:2.1.0-6.fc32.i686\n - OpenEXR-doc-0:2.3.0-5.fc32.s390x\n - libGLEW-0:2.1.0-6.fc32.x86_64\n - cairomm-devel-0:1.12.0-12.fc32.i686\n - boost-random-0:1.69.0-18.fc32.s390x\n - boost-regex-0:1.69.0-18.fc32.ppc64le\n - boost-container-0:1.69.0-18.fc32.i686\n - openjpeg2-0:2.3.1-6.fc32.s390x\n - poppler-qt-0:0.84.0-2.fc32.s390x\n - boost-test-0:1.69.0-18.fc32.ppc64le\n - boost-devel-0:1.69.0-18.fc32.ppc64le\n - geocode-glib-devel-0:3.26.2-1.fc32.x86_64\n - OpenEXR-devel-0:2.3.0-5.fc32.s390x\n - boost-program-options-0:1.69.0-18.fc32.x86_64\n - gd-devel-0:2.3.0-1.fc32.ppc64le\n - ilmbase-devel-0:2.3.0-4.fc32.armv7hl\n - compat-wxGTK3-gtk2-0:3.0.4-13.fc32.x86_64\n - poppler-glib-0:0.84.0-2.fc32.aarch64\n - boost-fiber-0:1.69.0-18.fc32.ppc64le\n - openblas-0:0.3.9-2.fc32.i686\n - boost-examples-0:1.69.0-18.fc32.ppc64le\n - openblas-openmp64_-0:0.3.9-2.fc32.s390x\n - boost-thread-0:1.69.0-18.fc32.x86_64\n - boost-static-0:1.69.0-18.fc32.s390x\n - startup-notification-0:0.12-19.fc32.aarch64\n - libhandy-devel-0:0.0.13-4.fc32.ppc64le\n - gtkmm30-devel-0:3.24.2-2.fc32.ppc64le\n - compat-wxGTK3-gtk2-gl-0:3.0.4-13.fc32.s390x\n - libdazzle-0:3.36.0-1.fc32.s390x\n - libpaper-0:1.1.24-26.fc32.aarch64\n - SDL-devel-0:1.2.15-43.fc32.i686\n - boost-container-0:1.69.0-18.fc32.armv7hl\n - evolution-data-server-perl-0:3.36.2-1.fc32.x86_64\n - libimagequant-0:2.12.6-2.fc32.armv7hl\n - boost-atomic-0:1.69.0-18.fc32.armv7hl\n - libgs-0:9.52-2.fc32.s390x\n - poppler-qt-0:0.84.0-2.fc32.x86_64\n - boost-fiber-0:1.69.0-18.fc32.aarch64\n - boost-log-0:1.69.0-18.fc32.x86_64\n - boost-locale-0:1.69.0-18.fc32.ppc64le\n - gd-0:2.3.0-1.fc32.s390x\n - poppler-qt5-devel-0:0.84.0-2.fc32.i686\n - boost-static-0:1.69.0-18.fc32.i686\n - jbig2dec-devel-0:0.17-4.fc32.s390x\n - poppler-0:0.84.0-2.fc32.armv7hl\n - libidn-0:1.35-7.fc32.s390x\n - pangomm-devel-0:2.42.1-1.fc32.s390x\n - boost-doctools-0:1.69.0-18.fc32.i686\n dependencies:\n - buildrequires:\n flatpak-common: [f32]\n flatpak-runtime: [f32]\n platform: [f32]\n requires:\n flatpak-common: [f32]\n flatpak-runtime: [f32]\n platform: [f32]\n profiles:\n default:\n rpms:\n - 0ad\n components:\n rpms:\n 0ad:\n rationale: Application package\n repository: git+https://src.fedoraproject.org/rpms/0ad\n cache: https://src.fedoraproject.org/repo/pkgs/0ad\n ref: f32\n buildorder: 10\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n 0ad-data:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/0ad-data\n cache: https://src.fedoraproject.org/repo/pkgs/0ad-data\n ref: f32\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n dejavu-fonts:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/dejavu-fonts\n cache: https://src.fedoraproject.org/repo/pkgs/dejavu-fonts\n ref: f32\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n enet:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/enet\n cache: https://src.fedoraproject.org/repo/pkgs/enet\n ref: f32\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n gloox:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/gloox\n cache: https://src.fedoraproject.org/repo/pkgs/gloox\n ref: f32\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n libsodium:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/libsodium\n cache: https://src.fedoraproject.org/repo/pkgs/libsodium\n ref: f32\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n miniupnpc:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/miniupnpc\n cache: https://src.fedoraproject.org/repo/pkgs/miniupnpc\n ref: f32\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n nvidia-texture-tools:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/nvidia-texture-tools\n cache: https://src.fedoraproject.org/repo/pkgs/nvidia-texture-tools\n ref: f32\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n...", "runtime_deps": [ { "dependency": "platform", "stream": "f32" }, { "dependency": "flatpak-runtime", "stream": "f32" }, { "dependency": "flatpak-common", "stream": "f32" } ], "build_deps": [ { "dependency": "platform", "stream": "f32" }, { "dependency": "flatpak-runtime", "stream": "f32" }, { "dependency": "flatpak-common", "stream": "f32" } ], "active": true, "rpms": [ "0ad-0:0.0.23b-17.module_f32+9033+577abfa4.aarch64.rpm", "0ad-0:0.0.23b-17.module_f32+9033+577abfa4.armv7hl.rpm", "0ad-0:0.0.23b-17.module_f32+9033+577abfa4.i686.rpm", "0ad-0:0.0.23b-17.module_f32+9033+577abfa4.ppc64le.rpm", "0ad-0:0.0.23b-17.module_f32+9033+577abfa4.src.rpm", "0ad-0:0.0.23b-17.module_f32+9033+577abfa4.x86_64.rpm", "0ad-data-0:0.0.23b-4.module_f32+8568+7182d393.noarch.rpm", "0ad-data-0:0.0.23b-4.module_f32+8568+7182d393.src.rpm", "0ad-debuginfo-0:0.0.23b-17.module_f32+9033+577abfa4.aarch64.rpm", "0ad-debuginfo-0:0.0.23b-17.module_f32+9033+577abfa4.armv7hl.rpm", "0ad-debuginfo-0:0.0.23b-17.module_f32+9033+577abfa4.i686.rpm", "0ad-debuginfo-0:0.0.23b-17.module_f32+9033+577abfa4.ppc64le.rpm", "0ad-debuginfo-0:0.0.23b-17.module_f32+9033+577abfa4.x86_64.rpm", "0ad-debugsource-0:0.0.23b-17.module_f32+9033+577abfa4.aarch64.rpm", "0ad-debugsource-0:0.0.23b-17.module_f32+9033+577abfa4.armv7hl.rpm", "0ad-debugsource-0:0.0.23b-17.module_f32+9033+577abfa4.i686.rpm", "0ad-debugsource-0:0.0.23b-17.module_f32+9033+577abfa4.ppc64le.rpm", "0ad-debugsource-0:0.0.23b-17.module_f32+9033+577abfa4.x86_64.rpm", "compat-f32-dejavu-sans-fonts-0:2.37-7.module_f32+8568+7182d393.noarch.rpm", "compat-f32-dejavu-sans-mono-fonts-0:2.37-7.module_f32+8568+7182d393.noarch.rpm", "compat-f32-dejavu-serif-fonts-0:2.37-7.module_f32+8568+7182d393.noarch.rpm", "dejavu-fonts-0:2.37-7.module_f32+8568+7182d393.src.rpm", "dejavu-fonts-all-0:2.37-7.module_f32+8568+7182d393.noarch.rpm", "dejavu-fonts-doc-0:2.37-7.module_f32+8568+7182d393.noarch.rpm", "dejavu-lgc-fonts-all-0:2.37-7.module_f32+8568+7182d393.noarch.rpm", "dejavu-lgc-sans-fonts-0:2.37-7.module_f32+8568+7182d393.noarch.rpm", "dejavu-lgc-sans-mono-fonts-0:2.37-7.module_f32+8568+7182d393.noarch.rpm", "dejavu-lgc-serif-fonts-0:2.37-7.module_f32+8568+7182d393.noarch.rpm", "dejavu-sans-fonts-0:2.37-7.module_f32+8568+7182d393.noarch.rpm", "dejavu-sans-mono-fonts-0:2.37-7.module_f32+8568+7182d393.noarch.rpm", "dejavu-serif-fonts-0:2.37-7.module_f32+8568+7182d393.noarch.rpm", "enet-0:1.3.14-3.module_f32+8568+7182d393.aarch64.rpm", "enet-0:1.3.14-3.module_f32+8568+7182d393.armv7hl.rpm", "enet-0:1.3.14-3.module_f32+8568+7182d393.i686.rpm", "enet-0:1.3.14-3.module_f32+8568+7182d393.ppc64le.rpm", "enet-0:1.3.14-3.module_f32+8568+7182d393.s390x.rpm", "enet-0:1.3.14-3.module_f32+8568+7182d393.src.rpm", "enet-0:1.3.14-3.module_f32+8568+7182d393.x86_64.rpm", "enet-debuginfo-0:1.3.14-3.module_f32+8568+7182d393.aarch64.rpm", "enet-debuginfo-0:1.3.14-3.module_f32+8568+7182d393.armv7hl.rpm", "enet-debuginfo-0:1.3.14-3.module_f32+8568+7182d393.i686.rpm", "enet-debuginfo-0:1.3.14-3.module_f32+8568+7182d393.ppc64le.rpm", "enet-debuginfo-0:1.3.14-3.module_f32+8568+7182d393.s390x.rpm", "enet-debuginfo-0:1.3.14-3.module_f32+8568+7182d393.x86_64.rpm", "enet-debugsource-0:1.3.14-3.module_f32+8568+7182d393.aarch64.rpm", "enet-debugsource-0:1.3.14-3.module_f32+8568+7182d393.armv7hl.rpm", "enet-debugsource-0:1.3.14-3.module_f32+8568+7182d393.i686.rpm", "enet-debugsource-0:1.3.14-3.module_f32+8568+7182d393.ppc64le.rpm", "enet-debugsource-0:1.3.14-3.module_f32+8568+7182d393.s390x.rpm", "enet-debugsource-0:1.3.14-3.module_f32+8568+7182d393.x86_64.rpm", "enet-devel-0:1.3.14-3.module_f32+8568+7182d393.aarch64.rpm", "enet-devel-0:1.3.14-3.module_f32+8568+7182d393.armv7hl.rpm", "enet-devel-0:1.3.14-3.module_f32+8568+7182d393.i686.rpm", "enet-devel-0:1.3.14-3.module_f32+8568+7182d393.ppc64le.rpm", "enet-devel-0:1.3.14-3.module_f32+8568+7182d393.s390x.rpm", "enet-devel-0:1.3.14-3.module_f32+8568+7182d393.x86_64.rpm", "gloox-1:1.0.23-1.module_f32+8970+7accee7b.aarch64.rpm", "gloox-1:1.0.23-1.module_f32+8970+7accee7b.armv7hl.rpm", "gloox-1:1.0.23-1.module_f32+8970+7accee7b.i686.rpm", "gloox-1:1.0.23-1.module_f32+8970+7accee7b.ppc64le.rpm", "gloox-1:1.0.23-1.module_f32+8970+7accee7b.s390x.rpm", "gloox-1:1.0.23-1.module_f32+8970+7accee7b.src.rpm", "gloox-1:1.0.23-1.module_f32+8970+7accee7b.x86_64.rpm", "gloox-debuginfo-1:1.0.23-1.module_f32+8970+7accee7b.aarch64.rpm", "gloox-debuginfo-1:1.0.23-1.module_f32+8970+7accee7b.armv7hl.rpm", "gloox-debuginfo-1:1.0.23-1.module_f32+8970+7accee7b.i686.rpm", "gloox-debuginfo-1:1.0.23-1.module_f32+8970+7accee7b.ppc64le.rpm", "gloox-debuginfo-1:1.0.23-1.module_f32+8970+7accee7b.s390x.rpm", "gloox-debuginfo-1:1.0.23-1.module_f32+8970+7accee7b.x86_64.rpm", "gloox-debugsource-1:1.0.23-1.module_f32+8970+7accee7b.aarch64.rpm", "gloox-debugsource-1:1.0.23-1.module_f32+8970+7accee7b.armv7hl.rpm", "gloox-debugsource-1:1.0.23-1.module_f32+8970+7accee7b.i686.rpm", "gloox-debugsource-1:1.0.23-1.module_f32+8970+7accee7b.ppc64le.rpm", "gloox-debugsource-1:1.0.23-1.module_f32+8970+7accee7b.s390x.rpm", "gloox-debugsource-1:1.0.23-1.module_f32+8970+7accee7b.x86_64.rpm", "gloox-devel-1:1.0.23-1.module_f32+8970+7accee7b.aarch64.rpm", "gloox-devel-1:1.0.23-1.module_f32+8970+7accee7b.armv7hl.rpm", "gloox-devel-1:1.0.23-1.module_f32+8970+7accee7b.i686.rpm", "gloox-devel-1:1.0.23-1.module_f32+8970+7accee7b.ppc64le.rpm", "gloox-devel-1:1.0.23-1.module_f32+8970+7accee7b.s390x.rpm", "gloox-devel-1:1.0.23-1.module_f32+8970+7accee7b.x86_64.rpm", "libsodium-0:1.0.18-3.module_f32+8568+7182d393.aarch64.rpm", "libsodium-0:1.0.18-3.module_f32+8568+7182d393.armv7hl.rpm", "libsodium-0:1.0.18-3.module_f32+8568+7182d393.i686.rpm", "libsodium-0:1.0.18-3.module_f32+8568+7182d393.ppc64le.rpm", "libsodium-0:1.0.18-3.module_f32+8568+7182d393.s390x.rpm", "libsodium-0:1.0.18-3.module_f32+8568+7182d393.src.rpm", "libsodium-0:1.0.18-3.module_f32+8568+7182d393.x86_64.rpm", "libsodium-debuginfo-0:1.0.18-3.module_f32+8568+7182d393.aarch64.rpm", "libsodium-debuginfo-0:1.0.18-3.module_f32+8568+7182d393.armv7hl.rpm", "libsodium-debuginfo-0:1.0.18-3.module_f32+8568+7182d393.i686.rpm", "libsodium-debuginfo-0:1.0.18-3.module_f32+8568+7182d393.ppc64le.rpm", "libsodium-debuginfo-0:1.0.18-3.module_f32+8568+7182d393.s390x.rpm", "libsodium-debuginfo-0:1.0.18-3.module_f32+8568+7182d393.x86_64.rpm", "libsodium-debugsource-0:1.0.18-3.module_f32+8568+7182d393.aarch64.rpm", "libsodium-debugsource-0:1.0.18-3.module_f32+8568+7182d393.armv7hl.rpm", "libsodium-debugsource-0:1.0.18-3.module_f32+8568+7182d393.i686.rpm", "libsodium-debugsource-0:1.0.18-3.module_f32+8568+7182d393.ppc64le.rpm", "libsodium-debugsource-0:1.0.18-3.module_f32+8568+7182d393.s390x.rpm", "libsodium-debugsource-0:1.0.18-3.module_f32+8568+7182d393.x86_64.rpm", "libsodium-devel-0:1.0.18-3.module_f32+8568+7182d393.aarch64.rpm", "libsodium-devel-0:1.0.18-3.module_f32+8568+7182d393.armv7hl.rpm", "libsodium-devel-0:1.0.18-3.module_f32+8568+7182d393.i686.rpm", "libsodium-devel-0:1.0.18-3.module_f32+8568+7182d393.ppc64le.rpm", "libsodium-devel-0:1.0.18-3.module_f32+8568+7182d393.s390x.rpm", "libsodium-devel-0:1.0.18-3.module_f32+8568+7182d393.x86_64.rpm", "libsodium-static-0:1.0.18-3.module_f32+8568+7182d393.aarch64.rpm", "libsodium-static-0:1.0.18-3.module_f32+8568+7182d393.armv7hl.rpm", "libsodium-static-0:1.0.18-3.module_f32+8568+7182d393.i686.rpm", "libsodium-static-0:1.0.18-3.module_f32+8568+7182d393.ppc64le.rpm", "libsodium-static-0:1.0.18-3.module_f32+8568+7182d393.s390x.rpm", "libsodium-static-0:1.0.18-3.module_f32+8568+7182d393.x86_64.rpm", "miniupnpc-0:2.1-5.module_f32+8568+7182d393.aarch64.rpm", "miniupnpc-0:2.1-5.module_f32+8568+7182d393.armv7hl.rpm", "miniupnpc-0:2.1-5.module_f32+8568+7182d393.i686.rpm", "miniupnpc-0:2.1-5.module_f32+8568+7182d393.ppc64le.rpm", "miniupnpc-0:2.1-5.module_f32+8568+7182d393.s390x.rpm", "miniupnpc-0:2.1-5.module_f32+8568+7182d393.src.rpm", "miniupnpc-0:2.1-5.module_f32+8568+7182d393.x86_64.rpm", "miniupnpc-debuginfo-0:2.1-5.module_f32+8568+7182d393.aarch64.rpm", "miniupnpc-debuginfo-0:2.1-5.module_f32+8568+7182d393.armv7hl.rpm", "miniupnpc-debuginfo-0:2.1-5.module_f32+8568+7182d393.i686.rpm", "miniupnpc-debuginfo-0:2.1-5.module_f32+8568+7182d393.ppc64le.rpm", "miniupnpc-debuginfo-0:2.1-5.module_f32+8568+7182d393.s390x.rpm", "miniupnpc-debuginfo-0:2.1-5.module_f32+8568+7182d393.x86_64.rpm", "miniupnpc-debugsource-0:2.1-5.module_f32+8568+7182d393.aarch64.rpm", "miniupnpc-debugsource-0:2.1-5.module_f32+8568+7182d393.armv7hl.rpm", "miniupnpc-debugsource-0:2.1-5.module_f32+8568+7182d393.i686.rpm", "miniupnpc-debugsource-0:2.1-5.module_f32+8568+7182d393.ppc64le.rpm", "miniupnpc-debugsource-0:2.1-5.module_f32+8568+7182d393.s390x.rpm", "miniupnpc-debugsource-0:2.1-5.module_f32+8568+7182d393.x86_64.rpm", "miniupnpc-devel-0:2.1-5.module_f32+8568+7182d393.aarch64.rpm", "miniupnpc-devel-0:2.1-5.module_f32+8568+7182d393.armv7hl.rpm", "miniupnpc-devel-0:2.1-5.module_f32+8568+7182d393.i686.rpm", "miniupnpc-devel-0:2.1-5.module_f32+8568+7182d393.ppc64le.rpm", "miniupnpc-devel-0:2.1-5.module_f32+8568+7182d393.s390x.rpm", "miniupnpc-devel-0:2.1-5.module_f32+8568+7182d393.x86_64.rpm", "nvidia-texture-tools-0:2.0.8-22.module_f32+8568+7182d393.aarch64.rpm", "nvidia-texture-tools-0:2.0.8-22.module_f32+8568+7182d393.armv7hl.rpm", "nvidia-texture-tools-0:2.0.8-22.module_f32+8568+7182d393.i686.rpm", "nvidia-texture-tools-0:2.0.8-22.module_f32+8568+7182d393.ppc64le.rpm", "nvidia-texture-tools-0:2.0.8-22.module_f32+8568+7182d393.s390x.rpm", "nvidia-texture-tools-0:2.0.8-22.module_f32+8568+7182d393.src.rpm", "nvidia-texture-tools-0:2.0.8-22.module_f32+8568+7182d393.x86_64.rpm", "nvidia-texture-tools-debuginfo-0:2.0.8-22.module_f32+8568+7182d393.aarch64.rpm", "nvidia-texture-tools-debuginfo-0:2.0.8-22.module_f32+8568+7182d393.armv7hl.rpm", "nvidia-texture-tools-debuginfo-0:2.0.8-22.module_f32+8568+7182d393.i686.rpm", "nvidia-texture-tools-debuginfo-0:2.0.8-22.module_f32+8568+7182d393.ppc64le.rpm", "nvidia-texture-tools-debuginfo-0:2.0.8-22.module_f32+8568+7182d393.s390x.rpm", "nvidia-texture-tools-debuginfo-0:2.0.8-22.module_f32+8568+7182d393.x86_64.rpm", "nvidia-texture-tools-debugsource-0:2.0.8-22.module_f32+8568+7182d393.aarch64.rpm", "nvidia-texture-tools-debugsource-0:2.0.8-22.module_f32+8568+7182d393.armv7hl.rpm", "nvidia-texture-tools-debugsource-0:2.0.8-22.module_f32+8568+7182d393.i686.rpm", "nvidia-texture-tools-debugsource-0:2.0.8-22.module_f32+8568+7182d393.ppc64le.rpm", "nvidia-texture-tools-debugsource-0:2.0.8-22.module_f32+8568+7182d393.s390x.rpm", "nvidia-texture-tools-debugsource-0:2.0.8-22.module_f32+8568+7182d393.x86_64.rpm", "nvidia-texture-tools-devel-0:2.0.8-22.module_f32+8568+7182d393.aarch64.rpm", "nvidia-texture-tools-devel-0:2.0.8-22.module_f32+8568+7182d393.armv7hl.rpm", "nvidia-texture-tools-devel-0:2.0.8-22.module_f32+8568+7182d393.i686.rpm", "nvidia-texture-tools-devel-0:2.0.8-22.module_f32+8568+7182d393.ppc64le.rpm", "nvidia-texture-tools-devel-0:2.0.8-22.module_f32+8568+7182d393.s390x.rpm", "nvidia-texture-tools-devel-0:2.0.8-22.module_f32+8568+7182d393.x86_64.rpm", "python3-miniupnpc-0:2.1-5.module_f32+8568+7182d393.aarch64.rpm", "python3-miniupnpc-0:2.1-5.module_f32+8568+7182d393.armv7hl.rpm", "python3-miniupnpc-0:2.1-5.module_f32+8568+7182d393.i686.rpm", "python3-miniupnpc-0:2.1-5.module_f32+8568+7182d393.ppc64le.rpm", "python3-miniupnpc-0:2.1-5.module_f32+8568+7182d393.s390x.rpm", "python3-miniupnpc-0:2.1-5.module_f32+8568+7182d393.x86_64.rpm", "python3-miniupnpc-debuginfo-0:2.1-5.module_f32+8568+7182d393.aarch64.rpm", "python3-miniupnpc-debuginfo-0:2.1-5.module_f32+8568+7182d393.armv7hl.rpm", "python3-miniupnpc-debuginfo-0:2.1-5.module_f32+8568+7182d393.i686.rpm", "python3-miniupnpc-debuginfo-0:2.1-5.module_f32+8568+7182d393.ppc64le.rpm", "python3-miniupnpc-debuginfo-0:2.1-5.module_f32+8568+7182d393.s390x.rpm", "python3-miniupnpc-debuginfo-0:2.1-5.module_f32+8568+7182d393.x86_64.rpm" ] }, { "variant_id": "0ad", "variant_uid": "0ad:master:3220200731212417:01239000", "variant_name": "0ad", "variant_type": "module", "variant_version": "master", "variant_release": "3220200731212417", "variant_context": "01239000", "koji_tag": "module-0ad-master-3220200731212417-01239000", "modulemd": "---\ndocument: modulemd\nversion: 2\ndata:\n name: 0ad\n stream: master\n version: 3220200731212417\n context: 01239000\n summary: Cross-Platform RTS Game of Ancient Warfare\n description: >-\n 0 A.D. (pronounced \"zero ey-dee\") is a free, open-source, cross-platform real-time\n strategy (RTS) game of ancient warfare. In short, it is a historically-based war/economy\n game that allows players to relive or rewrite the history of Western civilizations,\n focusing on the years between 500 B.C. and 500 A.D. The project is highly ambitious,\n involving state-of-the-art 3D graphics, detailed artwork, sound, and a flexible\n and powerful custom-built game engine.\n\n The game has been in development by Wildfire Games (WFG), a group of volunteer,\n hobbyist game developers, since 2001.\n license:\n module:\n - MIT\n xmd:\n mbs:\n buildrequires:\n flatpak-common:\n context: caf21102\n filtered_rpms: []\n koji_tag: module-flatpak-common-f32-3220200731112910-caf21102\n ref: b93b86fa76bd62719a207cce5599c9eef3487809\n stream: f32\n version: 3220200731112910\n flatpak-runtime:\n context: 43bbeeef\n filtered_rpms: []\n koji_tag: module-flatpak-runtime-f32-3220200730202519-43bbeeef\n ref: f9345de378779bb9cb89ddce2e18cbee922bbd06\n stream: f32\n version: 3220200730202519\n platform:\n context: 00000000\n filtered_rpms: []\n koji_tag: module-f32-build\n ref: f32\n stream: f32\n stream_collision_modules: \n ursine_rpms: \n version: 1\n commit: 82e55b718eb6e8ebdb7c20b54e006347bef02373\n mse: TRUE\n rpms:\n 0ad:\n ref: 1bcd36a6b3e3c78a8f6ebeae62d9118c6b86334f\n 0ad-data:\n ref: 14c296b56fbd11ca08dff847f7e19d72e18d3b2a\n dejavu-fonts:\n ref: 9003c9b610074c43b08257fff4d5c100f00f8ce4\n enet:\n ref: bdd09027a8a28cafd337e6ebea3e0430a4d9b670\n gloox:\n ref: 0fa3b4a91c0e070daeccbe9b2967d1d3c5d45af3\n libsodium:\n ref: 9f8789f4cdd61562ef99960441dbc4b1c39c7a0e\n miniupnpc:\n ref: c2b104bea5c9351730410ef3a291fcadaf98bda6\n nvidia-texture-tools:\n ref: dfbbbe8a14d038036fc311f239a88912715a211b\n scmurl: https://src.fedoraproject.org/flatpaks/0ad.git?#82e55b718eb6e8ebdb7c20b54e006347bef02373\n ursine_rpms:\n - libfontenc-devel-0:1.1.3-12.fc32.aarch64\n - openblas-Rblas-0:0.3.9-3.fc32.x86_64\n - gnome-online-accounts-0:3.36.0-1.fc32.armv7hl\n - jbig2dec-devel-0:0.18-1.fc32.ppc64le\n - ghostscript-0:9.52-7.fc32.i686\n - OpenEXR-doc-0:2.3.0-5.fc32.x86_64\n - gnome-online-accounts-devel-0:3.36.0-1.fc32.s390x\n - libgdata-0:0.17.12-1.fc32.x86_64\n - poppler-0:0.84.0-2.fc32.s390x\n - gd-progs-0:2.3.0-2.fc32.aarch64\n - compat-wxGTK3-gtk2-media-0:3.0.4-13.fc32.x86_64\n - libdazzle-devel-0:3.36.0-1.fc32.s390x\n - gnome-desktop3-tests-0:3.36.4-1.fc32.s390x\n - glew-devel-0:2.1.0-6.fc32.armv7hl\n - poppler-qt-0:0.84.0-2.fc32.aarch64\n - gnome-desktop3-devel-0:3.36.4-1.fc32.x86_64\n - geocode-glib-devel-0:3.26.2-1.fc32.s390x\n - libfontenc-0:1.1.3-12.fc32.x86_64\n - pangomm-0:2.42.1-1.fc32.s390x\n - gtksourceview3-tests-0:3.24.11-3.fc32.x86_64\n - boost-doc-0:1.69.0-18.fc32.x86_64\n - jbig2dec-0:0.18-1.fc32.i686\n - compat-wxGTK3-gtk2-gl-0:3.0.4-13.fc32.ppc64le\n - libsigc++20-devel-0:2.10.3-1.fc32.aarch64\n - libfontenc-devel-0:1.1.3-12.fc32.x86_64\n - evolution-data-server-devel-0:3.36.4-1.fc32.x86_64\n - SDL-static-0:1.2.15-43.fc32.i686\n - glew-devel-0:2.1.0-6.fc32.s390x\n - jbig2dec-0:0.18-1.fc32.armv7hl\n - xorg-x11-font-utils-1:7.5-44.fc32.x86_64\n - gspell-0:1.8.3-2.fc32.armv7hl\n - OpenEXR-devel-0:2.3.0-5.fc32.aarch64\n - gspell-devel-0:1.8.3-2.fc32.armv7hl\n - libgs-0:9.52-7.fc32.aarch64\n - boost-random-0:1.69.0-18.fc32.ppc64le\n - cairomm-0:1.12.0-12.fc32.i686\n - urw-base35-c059-fonts-0:20170801-14.fc32.noarch\n - ghostscript-tools-dvipdf-0:9.52-7.fc32.armv7hl\n - polkit-0:0.116-7.fc32.s390x\n - poppler-qt-devel-0:0.84.0-2.fc32.ppc64le\n - gsl-devel-0:2.6-2.fc32.i686\n - libidn-0:1.35-7.fc32.ppc64le\n - gspell-devel-0:1.8.3-2.fc32.x86_64\n - ghostscript-core-0:9.52-7.fc32.aarch64\n - glibmm24-0:2.64.2-1.fc32.aarch64\n - glibmm24-devel-0:2.64.2-1.fc32.s390x\n - openjpeg2-tools-0:2.3.1-6.fc32.armv7hl\n - poppler-cpp-0:0.84.0-2.fc32.ppc64le\n - boost-type_erasure-0:1.69.0-18.fc32.ppc64le\n - boost-regex-0:1.69.0-18.fc32.i686\n - liboauth-0:1.0.3-14.fc32.aarch64\n - ghostscript-x11-0:9.52-7.fc32.x86_64\n - geocode-glib-devel-0:3.26.2-1.fc32.armv7hl\n - boost-regex-0:1.69.0-18.fc32.aarch64\n - libfontenc-devel-0:1.1.3-12.fc32.s390x\n - exiv2-0:0.27.2-2.fc32.armv7hl\n - wxGTK3-0:3.0.4-13.fc32.s390x\n - glibmm24-0:2.64.2-1.fc32.ppc64le\n - boost-program-options-0:1.69.0-18.fc32.ppc64le\n - libpeas-0:1.26.0-1.fc32.x86_64\n - OpenEXR-devel-0:2.3.0-5.fc32.i686\n - ghostscript-core-0:9.52-7.fc32.x86_64\n - libdazzle-devel-0:3.36.0-1.fc32.x86_64\n - SDL_image-devel-0:1.2.12-23.fc32.aarch64\n - gtksourceview3-0:3.24.11-3.fc32.i686\n - wxGTK3-webview-0:3.0.4-13.fc32.ppc64le\n - libdazzle-devel-0:3.36.0-1.fc32.ppc64le\n - ilmbase-0:2.3.0-4.fc32.i686\n - libijs-0:0.35-11.fc32.x86_64\n - jbig2dec-devel-0:0.18-1.fc32.x86_64\n - gsl-0:2.6-2.fc32.armv7hl\n - boost-jam-0:1.69.0-18.fc32.ppc64le\n - boost-system-0:1.69.0-18.fc32.i686\n - openblas-openmp64-0:0.3.9-3.fc32.ppc64le\n - gd-devel-0:2.3.0-2.fc32.aarch64\n - cairomm-0:1.12.0-12.fc32.x86_64\n - libgdata-devel-0:0.17.12-1.fc32.i686\n - poppler-devel-0:0.84.0-2.fc32.x86_64\n - libimagequant-devel-0:2.12.6-2.fc32.x86_64\n - poppler-qt5-devel-0:0.84.0-2.fc32.s390x\n - SDL-devel-0:1.2.15-43.fc32.s390x\n - libgdata-devel-0:0.17.12-1.fc32.armv7hl\n - evolution-data-server-devel-0:3.36.4-1.fc32.s390x\n - evolution-data-server-0:3.36.4-1.fc32.ppc64le\n - libgdata-0:0.17.12-1.fc32.ppc64le\n - libimagequant-0:2.12.6-2.fc32.x86_64\n - evolution-data-server-perl-0:3.36.4-1.fc32.ppc64le\n - openblas-Rblas-0:0.3.9-3.fc32.ppc64le\n - boost-regex-0:1.69.0-18.fc32.armv7hl\n - evolution-data-server-perl-0:3.36.4-1.fc32.aarch64\n - libidn-0:1.35-7.fc32.x86_64\n - boost-context-0:1.69.0-18.fc32.ppc64le\n - libpeas-loader-python3-0:1.26.0-1.fc32.ppc64le\n - wxBase3-devel-0:3.0.4-13.fc32.x86_64\n - libsigc++20-0:2.10.3-1.fc32.i686\n - ghostscript-doc-0:9.52-7.fc32.noarch\n - libwmf-lite-0:0.2.12-3.fc32.aarch64\n - libgweather-0:3.36.1-1.fc32.i686\n - libhandy-0:0.0.13-4.fc32.aarch64\n - gtkmm30-0:3.24.2-2.fc32.x86_64\n - liboauth-0:1.0.3-14.fc32.s390x\n - libsigc++20-0:2.10.3-1.fc32.aarch64\n - poppler-devel-0:0.84.0-2.fc32.i686\n - boost-doctools-0:1.69.0-18.fc32.s390x\n - gspell-0:1.8.3-2.fc32.x86_64\n - libhandy-devel-0:0.0.13-4.fc32.aarch64\n - libpaper-0:1.1.24-26.fc32.x86_64\n - boost-serialization-0:1.69.0-18.fc32.i686\n - wxGTK3-media-0:3.0.4-13.fc32.aarch64\n - boost-atomic-0:1.69.0-18.fc32.aarch64\n - evolution-data-server-devel-0:3.36.4-1.fc32.i686\n - libical-0:3.0.8-1.fc32.x86_64\n - pangomm-devel-0:2.42.1-1.fc32.ppc64le\n - gd-0:2.3.0-2.fc32.aarch64\n - libwmf-0:0.2.12-3.fc32.x86_64\n - exiv2-0:0.27.2-2.fc32.i686\n - boost-doc-0:1.69.0-18.fc32.s390x\n - ghostscript-core-0:9.52-7.fc32.ppc64le\n - ghostscript-tools-dvipdf-0:9.52-7.fc32.aarch64\n - libimagequant-devel-0:2.12.6-2.fc32.s390x\n - ghostscript-tools-fonts-0:9.52-7.fc32.aarch64\n - libgs-0:9.52-7.fc32.armv7hl\n - exiv2-devel-0:0.27.2-2.fc32.ppc64le\n - boost-locale-0:1.69.0-18.fc32.x86_64\n - compat-wxGTK3-gtk2-gl-0:3.0.4-13.fc32.i686\n - exiv2-devel-0:0.27.2-2.fc32.aarch64\n - OpenEXR-doc-0:2.3.0-5.fc32.ppc64le\n - gtkmm30-devel-0:3.24.2-2.fc32.s390x\n - openjpeg2-0:2.3.1-6.fc32.ppc64le\n - ghostscript-tools-fonts-0:9.52-7.fc32.x86_64\n - wxBase3-0:3.0.4-13.fc32.armv7hl\n - boost-coroutine-0:1.69.0-18.fc32.aarch64\n - SDL_image-devel-0:1.2.12-23.fc32.ppc64le\n - poppler-cpp-devel-0:0.84.0-2.fc32.x86_64\n - pangomm-devel-0:2.42.1-1.fc32.x86_64\n - gtksourceview3-devel-0:3.24.11-3.fc32.i686\n - polkit-devel-0:0.116-7.fc32.x86_64\n - poppler-cpp-devel-0:0.84.0-2.fc32.s390x\n - atkmm-0:2.24.3-4.fc32.ppc64le\n - openblas-threads64-0:0.3.9-3.fc32.x86_64\n - libijs-0:0.35-11.fc32.s390x\n - openblas-serial-0:0.3.9-3.fc32.i686\n - ghostscript-gtk-0:9.52-7.fc32.ppc64le\n - boost-devel-0:1.69.0-18.fc32.aarch64\n - openblas-openmp64_-0:0.3.9-3.fc32.aarch64\n - boost-contract-0:1.69.0-18.fc32.x86_64\n - SDL-static-0:1.2.15-43.fc32.s390x\n - ghostscript-tools-dvipdf-0:9.52-7.fc32.i686\n - glibmm24-devel-0:2.64.2-1.fc32.x86_64\n - boost-doc-0:1.69.0-18.fc32.i686\n - poppler-devel-0:0.84.0-2.fc32.s390x\n - libfontenc-0:1.1.3-12.fc32.s390x\n - ghostscript-gtk-0:9.52-7.fc32.x86_64\n - ilmbase-devel-0:2.3.0-4.fc32.ppc64le\n - boost-doc-0:1.69.0-18.fc32.ppc64le\n - boost-serialization-0:1.69.0-18.fc32.aarch64\n - gsl-0:2.6-2.fc32.ppc64le\n - poppler-0:0.84.0-2.fc32.i686\n - libical-0:3.0.8-1.fc32.aarch64\n - libgs-0:9.52-7.fc32.s390x\n - boost-program-options-0:1.69.0-18.fc32.aarch64\n - ghostscript-tools-printing-0:9.52-7.fc32.s390x\n - gd-0:2.3.0-2.fc32.i686\n - compat-wxGTK3-gtk2-0:3.0.4-13.fc32.armv7hl\n - polkit-devel-0:0.116-7.fc32.s390x\n - boost-chrono-0:1.69.0-18.fc32.s390x\n - libical-glib-devel-0:3.0.8-1.fc32.aarch64\n - ghostscript-gtk-0:9.52-7.fc32.i686\n - pangomm-0:2.42.1-1.fc32.x86_64\n - gnome-desktop3-tests-0:3.36.4-1.fc32.armv7hl\n - wxGTK3-webview-0:3.0.4-13.fc32.x86_64\n - gsl-0:2.6-2.fc32.x86_64\n - polkit-0:0.116-7.fc32.ppc64le\n - OpenEXR-devel-0:2.3.0-5.fc32.ppc64le\n - gnome-desktop3-0:3.36.4-1.fc32.i686\n - libgdata-devel-0:0.17.12-1.fc32.x86_64\n - geocode-glib-0:3.26.2-1.fc32.armv7hl\n - boost-random-0:1.69.0-18.fc32.x86_64\n - boost-stacktrace-0:1.69.0-18.fc32.armv7hl\n - libidn-javadoc-0:1.35-7.fc32.noarch\n - libijs-devel-0:0.35-11.fc32.s390x\n - libpeas-gtk-0:1.26.0-1.fc32.ppc64le\n - OpenEXR-0:2.3.0-5.fc32.i686\n - libical-devel-0:3.0.8-1.fc32.x86_64\n - boost-test-0:1.69.0-18.fc32.armv7hl\n - boost-thread-0:1.69.0-18.fc32.i686\n - poppler-0:0.84.0-2.fc32.ppc64le\n - SDL-0:1.2.15-43.fc32.i686\n - gd-progs-0:2.3.0-2.fc32.s390x\n - compat-wxGTK3-gtk2-devel-0:3.0.4-13.fc32.x86_64\n - boost-graph-0:1.69.0-18.fc32.s390x\n - libpaper-0:1.1.24-26.fc32.s390x\n - boost-iostreams-0:1.69.0-18.fc32.x86_64\n - libGLEW-0:2.1.0-6.fc32.i686\n - liboauth-0:1.0.3-14.fc32.armv7hl\n - libgdata-devel-0:0.17.12-1.fc32.aarch64\n - boost-type_erasure-0:1.69.0-18.fc32.x86_64\n - libijs-0:0.35-11.fc32.aarch64\n - boost-program-options-0:1.69.0-18.fc32.armv7hl\n - glibmm24-devel-0:2.64.2-1.fc32.armv7hl\n - poppler-cpp-devel-0:0.84.0-2.fc32.ppc64le\n - boost-type_erasure-0:1.69.0-18.fc32.aarch64\n - libpaper-devel-0:1.1.24-26.fc32.s390x\n - boost-0:1.69.0-18.fc32.armv7hl\n - openblas-serial64-0:0.3.9-3.fc32.ppc64le\n - boost-coroutine-0:1.69.0-18.fc32.x86_64\n - boost-python3-devel-0:1.69.0-18.fc32.aarch64\n - xorg-x11-font-utils-1:7.5-44.fc32.i686\n - compat-wxGTK3-gtk2-devel-0:3.0.4-13.fc32.i686\n - gspell-0:1.8.3-2.fc32.s390x\n - wxBase3-devel-0:3.0.4-13.fc32.armv7hl\n - ghostscript-0:9.52-7.fc32.armv7hl\n - openblas-Rblas-0:0.3.9-3.fc32.aarch64\n - compat-wxGTK3-gtk2-media-0:3.0.4-13.fc32.armv7hl\n - polkit-devel-0:0.116-7.fc32.ppc64le\n - openblas-openmp64_-0:0.3.9-3.fc32.x86_64\n - wxGTK3-devel-0:3.0.4-13.fc32.ppc64le\n - boost-doctools-0:1.69.0-18.fc32.aarch64\n - wxGTK3-gl-0:3.0.4-13.fc32.ppc64le\n - libidn-devel-0:1.35-7.fc32.armv7hl\n - ghostscript-tools-fonts-0:9.52-7.fc32.armv7hl\n - boost-wave-0:1.69.0-18.fc32.armv7hl\n - urw-base35-fonts-legacy-0:20170801-14.fc32.noarch\n - atkmm-doc-0:2.24.3-4.fc32.noarch\n - libidn-devel-0:1.35-7.fc32.i686\n - startup-notification-0:0.12-19.fc32.armv7hl\n - wxGTK3-webview-0:3.0.4-13.fc32.aarch64\n - gnome-desktop3-tests-0:3.36.4-1.fc32.i686\n - openblas-openmp64-0:0.3.9-3.fc32.aarch64\n - boost-locale-0:1.69.0-18.fc32.s390x\n - openblas-0:0.3.9-3.fc32.i686\n - gnome-desktop3-0:3.36.4-1.fc32.ppc64le\n - openblas-serial64_-0:0.3.9-3.fc32.x86_64\n - urw-base35-z003-fonts-0:20170801-14.fc32.noarch\n - geocode-glib-0:3.26.2-1.fc32.ppc64le\n - poppler-devel-0:0.84.0-2.fc32.armv7hl\n - boost-wave-0:1.69.0-18.fc32.x86_64\n - openblas-Rblas-0:0.3.9-3.fc32.s390x\n - polkit-0:0.116-7.fc32.x86_64\n - gnome-online-accounts-0:3.36.0-1.fc32.s390x\n - liboauth-devel-0:1.0.3-14.fc32.aarch64\n - gnome-online-accounts-0:3.36.0-1.fc32.aarch64\n - wxBase3-0:3.0.4-13.fc32.s390x\n - wxGTK3-devel-0:3.0.4-13.fc32.aarch64\n - OpenEXR-0:2.3.0-5.fc32.ppc64le\n - ghostscript-gtk-0:9.52-7.fc32.armv7hl\n - evolution-data-server-tests-0:3.36.4-1.fc32.x86_64\n - libgs-devel-0:9.52-7.fc32.i686\n - openblas-0:0.3.9-3.fc32.armv7hl\n - boost-math-0:1.69.0-18.fc32.s390x\n - gd-devel-0:2.3.0-2.fc32.ppc64le\n - boost-test-0:1.69.0-18.fc32.s390x\n - poppler-utils-0:0.84.0-2.fc32.i686\n - OpenEXR-libs-0:2.3.0-5.fc32.x86_64\n - gtksourceview3-tests-0:3.24.11-3.fc32.aarch64\n - gd-devel-0:2.3.0-2.fc32.armv7hl\n - adobe-mappings-pdf-0:20180407-5.fc32.noarch\n - compat-wxGTK3-gtk2-0:3.0.4-13.fc32.aarch64\n - poppler-qt5-devel-0:0.84.0-2.fc32.armv7hl\n - SDL_image-devel-0:1.2.12-23.fc32.x86_64\n - poppler-qt-0:0.84.0-2.fc32.ppc64le\n - boost-stacktrace-0:1.69.0-18.fc32.ppc64le\n - boost-static-0:1.69.0-18.fc32.x86_64\n - SDL-devel-0:1.2.15-43.fc32.armv7hl\n - polkit-0:0.116-7.fc32.armv7hl\n - ghostscript-tools-printing-0:9.52-7.fc32.x86_64\n - boost-doctools-0:1.69.0-18.fc32.x86_64\n - openblas-serial-0:0.3.9-3.fc32.armv7hl\n - libpaper-devel-0:1.1.24-26.fc32.aarch64\n - libwmf-lite-0:0.2.12-3.fc32.ppc64le\n - boost-iostreams-0:1.69.0-18.fc32.i686\n - openblas-serial64-0:0.3.9-3.fc32.aarch64\n - boost-iostreams-0:1.69.0-18.fc32.aarch64\n - wxBase3-0:3.0.4-13.fc32.aarch64\n - wxBase3-0:3.0.4-13.fc32.x86_64\n - openblas-threads-0:0.3.9-3.fc32.i686\n - openjpeg2-devel-0:2.3.1-6.fc32.s390x\n - ghostscript-core-0:9.52-7.fc32.s390x\n - libgweather-0:3.36.1-1.fc32.armv7hl\n - boost-math-0:1.69.0-18.fc32.aarch64\n - libwmf-devel-0:0.2.12-3.fc32.s390x\n - libpeas-0:1.26.0-1.fc32.aarch64\n - SDL-0:1.2.15-43.fc32.x86_64\n - libical-devel-0:3.0.8-1.fc32.aarch64\n - libsigc++20-0:2.10.3-1.fc32.s390x\n - boost-log-0:1.69.0-18.fc32.aarch64\n - poppler-glib-devel-0:0.84.0-2.fc32.ppc64le\n - exiv2-devel-0:0.27.2-2.fc32.i686\n - wxGTK3-gl-0:3.0.4-13.fc32.x86_64\n - libwmf-devel-0:0.2.12-3.fc32.x86_64\n - libical-glib-devel-0:3.0.8-1.fc32.ppc64le\n - boost-filesystem-0:1.69.0-18.fc32.s390x\n - boost-iostreams-0:1.69.0-18.fc32.ppc64le\n - boost-jam-0:1.69.0-18.fc32.armv7hl\n - openblas-threads-0:0.3.9-3.fc32.s390x\n - libical-0:3.0.8-1.fc32.i686\n - wxGTK3-webview-0:3.0.4-13.fc32.i686\n - gsl-devel-0:2.6-2.fc32.s390x\n - urw-base35-fonts-common-0:20170801-14.fc32.noarch\n - boost-jam-0:1.69.0-18.fc32.s390x\n - gnome-desktop3-tests-0:3.36.4-1.fc32.x86_64\n - gnome-desktop3-tests-0:3.36.4-1.fc32.aarch64\n - gtksourceview3-0:3.24.11-3.fc32.s390x\n - poppler-qt5-0:0.84.0-2.fc32.i686\n - libpaper-devel-0:1.1.24-26.fc32.ppc64le\n - poppler-qt-0:0.84.0-2.fc32.armv7hl\n - gtksourceview3-tests-0:3.24.11-3.fc32.ppc64le\n - wxBase3-devel-0:3.0.4-13.fc32.i686\n - compat-wxGTK3-gtk2-devel-0:3.0.4-13.fc32.armv7hl\n - boost-date-time-0:1.69.0-18.fc32.x86_64\n - libwmf-devel-0:0.2.12-3.fc32.ppc64le\n - geocode-glib-0:3.26.2-1.fc32.s390x\n - pangomm-0:2.42.1-1.fc32.i686\n - libpaper-devel-0:1.1.24-26.fc32.x86_64\n - startup-notification-devel-0:0.12-19.fc32.x86_64\n - ilmbase-devel-0:2.3.0-4.fc32.aarch64\n - boost-0:1.69.0-18.fc32.aarch64\n - openjpeg2-0:2.3.1-6.fc32.aarch64\n - OpenEXR-doc-0:2.3.0-5.fc32.aarch64\n - geocode-glib-devel-0:3.26.2-1.fc32.ppc64le\n - libgweather-devel-0:3.36.1-1.fc32.aarch64\n - gd-0:2.3.0-2.fc32.ppc64le\n - libpeas-devel-0:1.26.0-1.fc32.i686\n - openblas-serial-0:0.3.9-3.fc32.x86_64\n - boost-program-options-0:1.69.0-18.fc32.s390x\n - libijs-devel-0:0.35-11.fc32.i686\n - boost-devel-0:1.69.0-18.fc32.x86_64\n - boost-context-0:1.69.0-18.fc32.armv7hl\n - openjpeg2-devel-docs-0:2.3.1-6.fc32.noarch\n - libpeas-loader-python3-0:1.26.0-1.fc32.armv7hl\n - evolution-data-server-perl-0:3.36.4-1.fc32.armv7hl\n - boost-graph-0:1.69.0-18.fc32.aarch64\n - boost-system-0:1.69.0-18.fc32.ppc64le\n - gnome-online-accounts-devel-0:3.36.0-1.fc32.armv7hl\n - gd-0:2.3.0-2.fc32.armv7hl\n - gspell-devel-0:1.8.3-2.fc32.aarch64\n - libsigc++20-0:2.10.3-1.fc32.x86_64\n - poppler-cpp-devel-0:0.84.0-2.fc32.i686\n - openjpeg2-devel-0:2.3.1-6.fc32.x86_64\n - OpenEXR-libs-0:2.3.0-5.fc32.armv7hl\n - boost-container-0:1.69.0-18.fc32.ppc64le\n - startup-notification-0:0.12-19.fc32.i686\n - OpenEXR-0:2.3.0-5.fc32.s390x\n - libimagequant-devel-0:2.12.6-2.fc32.ppc64le\n - libidn-devel-0:1.35-7.fc32.x86_64\n - openjpeg2-0:2.3.1-6.fc32.i686\n - cairomm-0:1.12.0-12.fc32.armv7hl\n - boost-timer-0:1.69.0-18.fc32.x86_64\n - boost-thread-0:1.69.0-18.fc32.armv7hl\n - liboauth-devel-0:1.0.3-14.fc32.x86_64\n - boost-wave-0:1.69.0-18.fc32.s390x\n - ilmbase-0:2.3.0-4.fc32.s390x\n - glew-0:2.1.0-6.fc32.ppc64le\n - glibmm24-doc-0:2.64.2-1.fc32.noarch\n - gtksourceview3-tests-0:3.24.11-3.fc32.s390x\n - urw-base35-gothic-fonts-0:20170801-14.fc32.noarch\n - dbus-glib-devel-0:0.110-7.fc32.x86_64\n - ghostscript-x11-0:9.52-7.fc32.s390x\n - glibmm24-0:2.64.2-1.fc32.x86_64\n - glew-devel-0:2.1.0-6.fc32.x86_64\n - OpenEXR-devel-0:2.3.0-5.fc32.x86_64\n - boost-fiber-0:1.69.0-18.fc32.armv7hl\n - boost-test-0:1.69.0-18.fc32.i686\n - geocode-glib-devel-0:3.26.2-1.fc32.aarch64\n - libdazzle-0:3.36.0-1.fc32.s390x\n - libwmf-lite-0:0.2.12-3.fc32.x86_64\n - libical-glib-devel-0:3.0.8-1.fc32.x86_64\n - poppler-0:0.84.0-2.fc32.armv7hl\n - gnome-desktop3-tests-0:3.36.4-1.fc32.ppc64le\n - google-droid-serif-fonts-0:20200215-3.fc32.noarch\n - gd-devel-0:2.3.0-2.fc32.x86_64\n - poppler-qt5-0:0.84.0-2.fc32.x86_64\n - boost-graph-0:1.69.0-18.fc32.x86_64\n - poppler-qt5-devel-0:0.84.0-2.fc32.x86_64\n - openblas-static-0:0.3.9-3.fc32.ppc64le\n - OpenEXR-libs-0:2.3.0-5.fc32.s390x\n - gd-progs-0:2.3.0-2.fc32.x86_64\n - SDL-devel-0:1.2.15-43.fc32.x86_64\n - exiv2-libs-0:0.27.2-2.fc32.armv7hl\n - google-droid-sans-fonts-0:20200215-3.fc32.noarch\n - gnome-online-accounts-0:3.36.0-1.fc32.i686\n - boost-stacktrace-0:1.69.0-18.fc32.aarch64\n - polkit-0:0.116-7.fc32.aarch64\n - gd-progs-0:2.3.0-2.fc32.armv7hl\n - libgs-devel-0:9.52-7.fc32.aarch64\n - exiv2-0:0.27.2-2.fc32.x86_64\n - flatpak-rpm-macros-0:32-2.fc32.s390x\n - poppler-cpp-0:0.84.0-2.fc32.i686\n - openjpeg2-devel-0:2.3.1-6.fc32.aarch64\n - poppler-qt5-devel-0:0.84.0-2.fc32.aarch64\n - evolution-data-server-devel-0:3.36.4-1.fc32.armv7hl\n - gtkmm30-0:3.24.2-2.fc32.armv7hl\n - polkit-0:0.116-7.fc32.i686\n - libgdata-0:0.17.12-1.fc32.aarch64\n - boost-contract-0:1.69.0-18.fc32.armv7hl\n - libpeas-devel-0:1.26.0-1.fc32.x86_64\n - wxGTK3-devel-0:3.0.4-13.fc32.s390x\n - openblas-0:0.3.9-3.fc32.s390x\n - ghostscript-gtk-0:9.52-7.fc32.s390x\n - boost-doctools-0:1.69.0-18.fc32.ppc64le\n - ghostscript-tools-printing-0:9.52-7.fc32.aarch64\n - gtksourceview3-0:3.24.11-3.fc32.armv7hl\n - libical-0:3.0.8-1.fc32.s390x\n - gspell-0:1.8.3-2.fc32.ppc64le\n - openblas-threads64_-0:0.3.9-3.fc32.x86_64\n - libsigc++20-devel-0:2.10.3-1.fc32.s390x\n - openjpeg2-tools-0:2.3.1-6.fc32.s390x\n - libijs-doc-0:0.35-11.fc32.noarch\n - flatpak-runtime-config-0:32-1.fc32.i686\n - libical-0:3.0.8-1.fc32.ppc64le\n - libhandy-devel-0:0.0.13-4.fc32.s390x\n - boost-serialization-0:1.69.0-18.fc32.x86_64\n - polkit-libs-0:0.116-7.fc32.s390x\n - libgdata-0:0.17.12-1.fc32.armv7hl\n - compat-wxGTK3-gtk2-media-0:3.0.4-13.fc32.aarch64\n - libpeas-loader-python3-0:1.26.0-1.fc32.x86_64\n - libgs-devel-0:9.52-7.fc32.x86_64\n - boost-date-time-0:1.69.0-18.fc32.s390x\n - ghostscript-tools-dvipdf-0:9.52-7.fc32.ppc64le\n - glew-devel-0:2.1.0-6.fc32.ppc64le\n - gtkmm30-devel-0:3.24.2-2.fc32.armv7hl\n - boost-container-0:1.69.0-18.fc32.s390x\n - evolution-data-server-perl-0:3.36.4-1.fc32.x86_64\n - poppler-glib-devel-0:0.84.0-2.fc32.s390x\n - geocode-glib-0:3.26.2-1.fc32.x86_64\n - libmspack-0:0.10.1-0.3.alpha.fc32.aarch64\n - gsl-0:2.6-2.fc32.s390x\n - libimagequant-0:2.12.6-2.fc32.aarch64\n - startup-notification-0:0.12-19.fc32.ppc64le\n - libgweather-devel-0:3.36.1-1.fc32.x86_64\n - dbus-glib-0:0.110-7.fc32.s390x\n - libGLEW-0:2.1.0-6.fc32.ppc64le\n - boost-locale-0:1.69.0-18.fc32.armv7hl\n - libsigc++20-devel-0:2.10.3-1.fc32.armv7hl\n - atkmm-0:2.24.3-4.fc32.i686\n - poppler-glib-devel-0:0.84.0-2.fc32.aarch64\n - libfontenc-0:1.1.3-12.fc32.ppc64le\n - boost-python3-devel-0:1.69.0-18.fc32.i686\n - urw-base35-nimbus-mono-ps-fonts-0:20170801-14.fc32.noarch\n - libgs-0:9.52-7.fc32.x86_64\n - boost-0:1.69.0-18.fc32.i686\n - openblas-Rblas-0:0.3.9-3.fc32.i686\n - evolution-data-server-perl-0:3.36.4-1.fc32.i686\n - pangomm-devel-0:2.42.1-1.fc32.aarch64\n - OpenEXR-libs-0:2.3.0-5.fc32.aarch64\n - startup-notification-devel-0:0.12-19.fc32.i686\n - boost-timer-0:1.69.0-18.fc32.i686\n - gnome-online-accounts-0:3.36.0-1.fc32.ppc64le\n - boost-system-0:1.69.0-18.fc32.x86_64\n - adobe-mappings-cmap-devel-0:20171205-7.fc32.noarch\n - poppler-data-devel-0:0.4.9-5.fc32.noarch\n - libpeas-loader-python3-0:1.26.0-1.fc32.aarch64\n - openblas-openmp-0:0.3.9-3.fc32.armv7hl\n - boost-context-0:1.69.0-18.fc32.aarch64\n - boost-container-0:1.69.0-18.fc32.aarch64\n - boost-thread-0:1.69.0-18.fc32.aarch64\n - pangomm-0:2.42.1-1.fc32.armv7hl\n - poppler-utils-0:0.84.0-2.fc32.s390x\n - boost-coroutine-0:1.69.0-18.fc32.armv7hl\n - poppler-glib-0:0.84.0-2.fc32.i686\n - liboauth-devel-0:1.0.3-14.fc32.ppc64le\n - libical-glib-devel-0:3.0.8-1.fc32.s390x\n - jbig2dec-devel-0:0.18-1.fc32.i686\n - openblas-threads-0:0.3.9-3.fc32.ppc64le\n - ghostscript-tools-printing-0:9.52-7.fc32.armv7hl\n - boost-test-0:1.69.0-18.fc32.x86_64\n - libidn-devel-0:1.35-7.fc32.s390x\n - wxGTK3-webview-0:3.0.4-13.fc32.s390x\n - dbus-glib-0:0.110-7.fc32.aarch64\n - compat-wxGTK3-gtk2-gl-0:3.0.4-13.fc32.armv7hl\n - flatpak-rpm-macros-0:32-2.fc32.i686\n - jbig2dec-libs-0:0.18-1.fc32.s390x\n - pangomm-devel-0:2.42.1-1.fc32.armv7hl\n - wxGTK3-media-0:3.0.4-13.fc32.s390x\n - boost-date-time-0:1.69.0-18.fc32.i686\n - boost-chrono-0:1.69.0-18.fc32.armv7hl\n - jbig2dec-0:0.18-1.fc32.aarch64\n - glibmm24-devel-0:2.64.2-1.fc32.i686\n - boost-numpy3-0:1.69.0-18.fc32.ppc64le\n - boost-stacktrace-0:1.69.0-18.fc32.i686\n - openblas-openmp64_-0:0.3.9-3.fc32.s390x\n - libical-0:3.0.8-1.fc32.armv7hl\n - SDL_image-0:1.2.12-23.fc32.ppc64le\n - libhandy-0:0.0.13-4.fc32.s390x\n - boost-chrono-0:1.69.0-18.fc32.x86_64\n - gsl-0:2.6-2.fc32.i686\n - liboauth-devel-0:1.0.3-14.fc32.i686\n - gtksourceview3-devel-0:3.24.11-3.fc32.s390x\n - libfontenc-devel-0:1.1.3-12.fc32.i686\n - libgweather-devel-0:3.36.1-1.fc32.ppc64le\n - cairomm-devel-0:1.12.0-12.fc32.s390x\n - libmspack-0:0.10.1-0.3.alpha.fc32.armv7hl\n - openjpeg2-devel-0:2.3.1-6.fc32.armv7hl\n - exiv2-0:0.27.2-2.fc32.ppc64le\n - ilmbase-0:2.3.0-4.fc32.x86_64\n - boost-graph-0:1.69.0-18.fc32.i686\n - boost-random-0:1.69.0-18.fc32.armv7hl\n - wxGTK3-webview-0:3.0.4-13.fc32.armv7hl\n - jbig2dec-devel-0:0.18-1.fc32.aarch64\n - gtksourceview3-tests-0:3.24.11-3.fc32.armv7hl\n - jbig2dec-devel-0:0.18-1.fc32.s390x\n - gnome-desktop3-devel-0:3.36.4-1.fc32.i686\n - openjpeg2-devel-0:2.3.1-6.fc32.ppc64le\n - startup-notification-devel-0:0.12-19.fc32.s390x\n - flatpak-rpm-macros-0:32-2.fc32.armv7hl\n - gnome-online-accounts-devel-0:3.36.0-1.fc32.aarch64\n - openblas-devel-0:0.3.9-3.fc32.armv7hl\n - openjpeg2-tools-0:2.3.1-6.fc32.ppc64le\n - dbus-glib-devel-0:0.110-7.fc32.i686\n - urw-base35-p052-fonts-0:20170801-14.fc32.noarch\n - OpenEXR-libs-0:2.3.0-5.fc32.i686\n - wxGTK3-media-0:3.0.4-13.fc32.ppc64le\n - libgs-devel-0:9.52-7.fc32.ppc64le\n - ghostscript-x11-0:9.52-7.fc32.i686\n - libijs-0:0.35-11.fc32.ppc64le\n - cairomm-devel-0:1.12.0-12.fc32.aarch64\n - startup-notification-0:0.12-19.fc32.x86_64\n - jbig2dec-0:0.18-1.fc32.ppc64le\n - SDL-0:1.2.15-43.fc32.s390x\n - poppler-qt-devel-0:0.84.0-2.fc32.armv7hl\n - libimagequant-devel-0:2.12.6-2.fc32.aarch64\n - exiv2-devel-0:0.27.2-2.fc32.x86_64\n - urw-base35-nimbus-roman-fonts-0:20170801-14.fc32.noarch\n - openblas-devel-0:0.3.9-3.fc32.i686\n - startup-notification-devel-0:0.12-19.fc32.armv7hl\n - boost-doc-0:1.69.0-18.fc32.aarch64\n - libmspack-0:0.10.1-0.3.alpha.fc32.i686\n - libpeas-gtk-0:1.26.0-1.fc32.i686\n - glibmm24-devel-0:2.64.2-1.fc32.aarch64\n - boost-container-0:1.69.0-18.fc32.i686\n - boost-filesystem-0:1.69.0-18.fc32.i686\n - boost-timer-0:1.69.0-18.fc32.ppc64le\n - evolution-data-server-devel-0:3.36.4-1.fc32.ppc64le\n - libidn-0:1.35-7.fc32.aarch64\n - boost-system-0:1.69.0-18.fc32.aarch64\n - exiv2-libs-0:0.27.2-2.fc32.s390x\n - openblas-openmp-0:0.3.9-3.fc32.ppc64le\n - evolution-data-server-perl-0:3.36.4-1.fc32.s390x\n - boost-jam-0:1.69.0-18.fc32.i686\n - boost-devel-0:1.69.0-18.fc32.armv7hl\n - ilmbase-devel-0:2.3.0-4.fc32.s390x\n - SDL-static-0:1.2.15-43.fc32.armv7hl\n - boost-thread-0:1.69.0-18.fc32.ppc64le\n - wxGTK3-gl-0:3.0.4-13.fc32.s390x\n - exiv2-devel-0:0.27.2-2.fc32.armv7hl\n - openblas-threads64-0:0.3.9-3.fc32.ppc64le\n - libpeas-gtk-0:1.26.0-1.fc32.aarch64\n - atkmm-devel-0:2.24.3-4.fc32.s390x\n - openblas-static-0:0.3.9-3.fc32.aarch64\n - libgdata-0:0.17.12-1.fc32.s390x\n - jbig2dec-libs-0:0.18-1.fc32.ppc64le\n - gnome-online-accounts-devel-0:3.36.0-1.fc32.x86_64\n - evolution-data-server-tests-0:3.36.4-1.fc32.ppc64le\n - poppler-qt-devel-0:0.84.0-2.fc32.s390x\n - glibmm24-devel-0:2.64.2-1.fc32.ppc64le\n - libijs-0:0.35-11.fc32.armv7hl\n - gd-devel-0:2.3.0-2.fc32.s390x\n - libhandy-0:0.0.13-4.fc32.ppc64le\n - boost-stacktrace-0:1.69.0-18.fc32.x86_64\n - pangomm-0:2.42.1-1.fc32.aarch64\n - libpeas-devel-0:1.26.0-1.fc32.ppc64le\n - poppler-utils-0:0.84.0-2.fc32.ppc64le\n - libpaper-0:1.1.24-26.fc32.ppc64le\n - boost-math-0:1.69.0-18.fc32.ppc64le\n - liboauth-devel-0:1.0.3-14.fc32.armv7hl\n - boost-atomic-0:1.69.0-18.fc32.ppc64le\n - boost-python3-0:1.69.0-18.fc32.ppc64le\n - gd-devel-0:2.3.0-2.fc32.i686\n - poppler-glib-0:0.84.0-2.fc32.armv7hl\n - poppler-qt5-0:0.84.0-2.fc32.aarch64\n - boost-devel-0:1.69.0-18.fc32.s390x\n - exiv2-libs-0:0.27.2-2.fc32.x86_64\n - libpeas-0:1.26.0-1.fc32.ppc64le\n - boost-math-0:1.69.0-18.fc32.i686\n - boost-locale-0:1.69.0-18.fc32.i686\n - exiv2-libs-0:0.27.2-2.fc32.i686\n - libfontenc-0:1.1.3-12.fc32.i686\n - boost-jam-0:1.69.0-18.fc32.x86_64\n - liboauth-0:1.0.3-14.fc32.ppc64le\n - boost-graph-0:1.69.0-18.fc32.armv7hl\n - libfontenc-0:1.1.3-12.fc32.aarch64\n - libdazzle-0:3.36.0-1.fc32.aarch64\n - gtkmm30-0:3.24.2-2.fc32.i686\n - boost-container-0:1.69.0-18.fc32.x86_64\n - libwmf-0:0.2.12-3.fc32.armv7hl\n - libijs-devel-0:0.35-11.fc32.x86_64\n - wxGTK3-devel-0:3.0.4-13.fc32.i686\n - libidn-0:1.35-7.fc32.armv7hl\n - SDL_image-devel-0:1.2.12-23.fc32.s390x\n - boost-atomic-0:1.69.0-18.fc32.i686\n - boost-atomic-0:1.69.0-18.fc32.s390x\n - poppler-0:0.84.0-2.fc32.aarch64\n - boost-numpy3-0:1.69.0-18.fc32.aarch64\n - boost-random-0:1.69.0-18.fc32.aarch64\n - wxGTK3-gl-0:3.0.4-13.fc32.armv7hl\n - flatpak-rpm-macros-0:32-2.fc32.ppc64le\n - libical-glib-0:3.0.8-1.fc32.x86_64\n - jbig2dec-devel-0:0.18-1.fc32.armv7hl\n - gtksourceview3-devel-0:3.24.11-3.fc32.ppc64le\n - gd-progs-0:2.3.0-2.fc32.i686\n - openjpeg2-tools-0:2.3.1-6.fc32.x86_64\n - libsigc++20-devel-0:2.10.3-1.fc32.x86_64\n - startup-notification-0:0.12-19.fc32.s390x\n - adobe-mappings-cmap-deprecated-0:20171205-7.fc32.noarch\n - SDL_image-0:1.2.12-23.fc32.aarch64\n - SDL_image-0:1.2.12-23.fc32.i686\n - libpeas-devel-0:1.26.0-1.fc32.aarch64\n - libical-devel-0:3.0.8-1.fc32.armv7hl\n - boost-log-0:1.69.0-18.fc32.armv7hl\n - boost-jam-0:1.69.0-18.fc32.aarch64\n - openblas-threads-0:0.3.9-3.fc32.armv7hl\n - poppler-qt5-devel-0:0.84.0-2.fc32.ppc64le\n - openblas-openmp64_-0:0.3.9-3.fc32.ppc64le\n - SDL-devel-0:1.2.15-43.fc32.ppc64le\n - libpeas-gtk-0:1.26.0-1.fc32.s390x\n - ghostscript-x11-0:9.52-7.fc32.ppc64le\n - boost-contract-0:1.69.0-18.fc32.ppc64le\n - openblas-devel-0:0.3.9-3.fc32.s390x\n - SDL_image-0:1.2.12-23.fc32.armv7hl\n - urw-base35-bookman-fonts-0:20170801-14.fc32.noarch\n - libpeas-loader-python3-0:1.26.0-1.fc32.i686\n - compat-wxGTK3-gtk2-0:3.0.4-13.fc32.s390x\n - ilmbase-devel-0:2.3.0-4.fc32.x86_64\n - boost-date-time-0:1.69.0-18.fc32.armv7hl\n - boost-context-0:1.69.0-18.fc32.i686\n - poppler-glib-0:0.84.0-2.fc32.ppc64le\n - SDL-static-0:1.2.15-43.fc32.ppc64le\n - openblas-devel-0:0.3.9-3.fc32.ppc64le\n - boost-serialization-0:1.69.0-18.fc32.ppc64le\n - evolution-data-server-tests-0:3.36.4-1.fc32.aarch64\n - poppler-glib-doc-0:0.84.0-2.fc32.noarch\n - dbus-glib-devel-0:0.110-7.fc32.aarch64\n - adobe-mappings-cmap-0:20171205-7.fc32.noarch\n - libmspack-0:0.10.1-0.3.alpha.fc32.x86_64\n - gnome-online-accounts-devel-0:3.36.0-1.fc32.ppc64le\n - pangomm-0:2.42.1-1.fc32.ppc64le\n - polkit-libs-0:0.116-7.fc32.aarch64\n - evolution-data-server-0:3.36.4-1.fc32.s390x\n - gd-0:2.3.0-2.fc32.x86_64\n - urw-base35-fonts-devel-0:20170801-14.fc32.noarch\n - evolution-data-server-0:3.36.4-1.fc32.i686\n - libdazzle-0:3.36.0-1.fc32.x86_64\n - atkmm-devel-0:2.24.3-4.fc32.armv7hl\n - compat-wxGTK3-gtk2-0:3.0.4-13.fc32.i686\n - wxBase3-0:3.0.4-13.fc32.ppc64le\n - ghostscript-gtk-0:9.52-7.fc32.aarch64\n - liboauth-devel-0:1.0.3-14.fc32.s390x\n - jbig2dec-libs-0:0.18-1.fc32.aarch64\n - libijs-devel-0:0.35-11.fc32.armv7hl\n - libgweather-devel-0:3.36.1-1.fc32.s390x\n - gtkmm30-0:3.24.2-2.fc32.ppc64le\n - boost-system-0:1.69.0-18.fc32.armv7hl\n - libpeas-loader-python3-0:1.26.0-1.fc32.s390x\n - dbus-glib-0:0.110-7.fc32.i686\n - compat-wxGTK3-gtk2-devel-0:3.0.4-13.fc32.ppc64le\n - gtksourceview3-devel-0:3.24.11-3.fc32.armv7hl\n - flatpak-runtime-config-0:32-1.fc32.x86_64\n - libwmf-0:0.2.12-3.fc32.aarch64\n - libijs-devel-0:0.35-11.fc32.aarch64\n - atkmm-0:2.24.3-4.fc32.armv7hl\n - dbus-glib-0:0.110-7.fc32.x86_64\n - libwmf-devel-0:0.2.12-3.fc32.aarch64\n - gtksourceview3-0:3.24.11-3.fc32.aarch64\n - gtksourceview3-devel-0:3.24.11-3.fc32.aarch64\n - libijs-devel-0:0.35-11.fc32.ppc64le\n - poppler-qt-devel-0:0.84.0-2.fc32.i686\n - urw-base35-d050000l-fonts-0:20170801-14.fc32.noarch\n - poppler-qt-devel-0:0.84.0-2.fc32.x86_64\n - gtkmm30-devel-0:3.24.2-2.fc32.x86_64\n - boost-numpy3-0:1.69.0-18.fc32.i686\n - boost-wave-0:1.69.0-18.fc32.i686\n - OpenEXR-0:2.3.0-5.fc32.armv7hl\n - boost-stacktrace-0:1.69.0-18.fc32.s390x\n - evolution-data-server-0:3.36.4-1.fc32.armv7hl\n - libdazzle-0:3.36.0-1.fc32.ppc64le\n - glew-devel-0:2.1.0-6.fc32.i686\n - ghostscript-tools-printing-0:9.52-7.fc32.ppc64le\n - gd-progs-0:2.3.0-2.fc32.ppc64le\n - openblas-threads-0:0.3.9-3.fc32.aarch64\n - libpeas-0:1.26.0-1.fc32.i686\n - dbus-glib-devel-0:0.110-7.fc32.ppc64le\n - ghostscript-0:9.52-7.fc32.ppc64le\n - polkit-libs-0:0.116-7.fc32.x86_64\n - boost-numpy3-0:1.69.0-18.fc32.armv7hl\n - SDL_image-0:1.2.12-23.fc32.s390x\n - boost-contract-0:1.69.0-18.fc32.s390x\n - wxBase3-devel-0:3.0.4-13.fc32.ppc64le\n - boost-numpy3-0:1.69.0-18.fc32.s390x\n - openblas-serial-0:0.3.9-3.fc32.ppc64le\n - gnome-online-accounts-0:3.36.0-1.fc32.x86_64\n - boost-python3-0:1.69.0-18.fc32.s390x\n - libwmf-lite-0:0.2.12-3.fc32.armv7hl\n - geocode-glib-devel-0:3.26.2-1.fc32.i686\n - startup-notification-devel-0:0.12-19.fc32.aarch64\n - boost-regex-0:1.69.0-18.fc32.s390x\n - libpeas-devel-0:1.26.0-1.fc32.armv7hl\n - boost-static-0:1.69.0-18.fc32.armv7hl\n - wxBase3-devel-0:3.0.4-13.fc32.s390x\n - dbus-glib-0:0.110-7.fc32.ppc64le\n - openblas-0:0.3.9-3.fc32.aarch64\n - openblas-serial64_-0:0.3.9-3.fc32.ppc64le\n - wxGTK3-0:3.0.4-13.fc32.i686\n - libgs-devel-0:9.52-7.fc32.s390x\n - libdazzle-devel-0:3.36.0-1.fc32.armv7hl\n - boost-numpy3-0:1.69.0-18.fc32.x86_64\n - ilmbase-devel-0:2.3.0-4.fc32.i686\n - ghostscript-core-0:9.52-7.fc32.armv7hl\n - atkmm-0:2.24.3-4.fc32.x86_64\n - wxGTK3-0:3.0.4-13.fc32.ppc64le\n - boost-contract-0:1.69.0-18.fc32.i686\n - boost-python3-devel-0:1.69.0-18.fc32.s390x\n - boost-chrono-0:1.69.0-18.fc32.aarch64\n - wxGTK3-media-0:3.0.4-13.fc32.armv7hl\n - libhandy-0:0.0.13-4.fc32.armv7hl\n - boost-locale-0:1.69.0-18.fc32.aarch64\n - boost-chrono-0:1.69.0-18.fc32.i686\n - pangomm-doc-0:2.42.1-1.fc32.noarch\n - poppler-qt5-0:0.84.0-2.fc32.armv7hl\n - cairomm-devel-0:1.12.0-12.fc32.armv7hl\n - wxGTK3-0:3.0.4-13.fc32.aarch64\n - ghostscript-tools-fonts-0:9.52-7.fc32.ppc64le\n - libmspack-devel-0:0.10.1-0.3.alpha.fc32.x86_64\n - boost-test-0:1.69.0-18.fc32.aarch64\n - libmspack-0:0.10.1-0.3.alpha.fc32.ppc64le\n - boost-static-0:1.69.0-18.fc32.s390x\n - compat-wxGTK3-gtk2-media-0:3.0.4-13.fc32.s390x\n - gsl-devel-0:2.6-2.fc32.aarch64\n - openblas-threads64_-0:0.3.9-3.fc32.aarch64\n - libhandy-devel-0:0.0.13-4.fc32.x86_64\n - libwmf-lite-0:0.2.12-3.fc32.i686\n - libsigc++20-devel-0:2.10.3-1.fc32.i686\n - openblas-threads64_-0:0.3.9-3.fc32.s390x\n - xorg-x11-font-utils-1:7.5-44.fc32.ppc64le\n - boost-iostreams-0:1.69.0-18.fc32.s390x\n - openblas-serial64-0:0.3.9-3.fc32.s390x\n - gnome-desktop3-0:3.36.4-1.fc32.x86_64\n - polkit-libs-0:0.116-7.fc32.armv7hl\n - glibmm24-0:2.64.2-1.fc32.i686\n - boost-examples-0:1.69.0-18.fc32.aarch64\n - boost-random-0:1.69.0-18.fc32.i686\n - libmspack-devel-0:0.10.1-0.3.alpha.fc32.i686\n - boost-iostreams-0:1.69.0-18.fc32.armv7hl\n - cairomm-0:1.12.0-12.fc32.aarch64\n - polkit-libs-0:0.116-7.fc32.ppc64le\n - wxBase3-0:3.0.4-13.fc32.i686\n - compat-wxGTK3-gtk2-devel-0:3.0.4-13.fc32.aarch64\n - libgweather-0:3.36.1-1.fc32.aarch64\n - gtkmm30-devel-0:3.24.2-2.fc32.aarch64\n - ghostscript-core-0:9.52-7.fc32.i686\n - jbig2dec-0:0.18-1.fc32.x86_64\n - poppler-cpp-devel-0:0.84.0-2.fc32.armv7hl\n - compat-wxGTK3-gtk2-devel-0:3.0.4-13.fc32.s390x\n - urw-base35-standard-symbols-ps-fonts-0:20170801-14.fc32.noarch\n - poppler-cpp-0:0.84.0-2.fc32.x86_64\n - gd-0:2.3.0-2.fc32.s390x\n - libhandy-devel-0:0.0.13-4.fc32.i686\n - compat-wxGTK3-gtk2-gl-0:3.0.4-13.fc32.aarch64\n - gspell-devel-0:1.8.3-2.fc32.s390x\n - poppler-glib-devel-0:0.84.0-2.fc32.x86_64\n - libgdata-devel-0:0.17.12-1.fc32.ppc64le\n - gtkmm30-0:3.24.2-2.fc32.aarch64\n - flatpak-rpm-macros-0:32-2.fc32.x86_64\n - boost-timer-0:1.69.0-18.fc32.aarch64\n - boost-static-0:1.69.0-18.fc32.ppc64le\n - gtkmm30-0:3.24.2-2.fc32.s390x\n - boost-python3-0:1.69.0-18.fc32.aarch64\n - openblas-0:0.3.9-3.fc32.ppc64le\n - poppler-glib-0:0.84.0-2.fc32.s390x\n - libwmf-0:0.2.12-3.fc32.i686\n - exiv2-libs-0:0.27.2-2.fc32.aarch64\n - boost-0:1.69.0-18.fc32.s390x\n - gsl-devel-0:2.6-2.fc32.ppc64le\n - cairomm-devel-0:1.12.0-12.fc32.x86_64\n - glew-devel-0:2.1.0-6.fc32.aarch64\n - ghostscript-0:9.52-7.fc32.x86_64\n - openjpeg2-devel-0:2.3.1-6.fc32.i686\n - boost-doc-0:1.69.0-18.fc32.armv7hl\n - boost-log-0:1.69.0-18.fc32.i686\n - libfontenc-devel-0:1.1.3-12.fc32.armv7hl\n - gspell-devel-0:1.8.3-2.fc32.i686\n - boost-examples-0:1.69.0-18.fc32.ppc64le\n - ghostscript-tools-fonts-0:9.52-7.fc32.i686\n - libGLEW-0:2.1.0-6.fc32.aarch64\n - openblas-threads64-0:0.3.9-3.fc32.s390x\n - openblas-static-0:0.3.9-3.fc32.x86_64\n - polkit-devel-0:0.116-7.fc32.armv7hl\n - jbig2dec-libs-0:0.18-1.fc32.x86_64\n - openblas-static-0:0.3.9-3.fc32.i686\n - gtksourceview3-tests-0:3.24.11-3.fc32.i686\n - poppler-devel-0:0.84.0-2.fc32.ppc64le\n - openblas-static-0:0.3.9-3.fc32.s390x\n - glew-0:2.1.0-6.fc32.x86_64\n - dbus-glib-0:0.110-7.fc32.armv7hl\n - openjpeg2-tools-0:2.3.1-6.fc32.aarch64\n - ilmbase-0:2.3.0-4.fc32.aarch64\n - boost-python3-devel-0:1.69.0-18.fc32.armv7hl\n - evolution-data-server-tests-0:3.36.4-1.fc32.armv7hl\n - wxGTK3-devel-0:3.0.4-13.fc32.x86_64\n - libical-devel-0:3.0.8-1.fc32.i686\n - xorg-x11-font-utils-1:7.5-44.fc32.armv7hl\n - ghostscript-tools-dvipdf-0:9.52-7.fc32.s390x\n - geocode-glib-0:3.26.2-1.fc32.aarch64\n - boost-type_erasure-0:1.69.0-18.fc32.s390x\n - pangomm-devel-0:2.42.1-1.fc32.i686\n - boost-doctools-0:1.69.0-18.fc32.armv7hl\n - openblas-serial-0:0.3.9-3.fc32.aarch64\n - libical-glib-0:3.0.8-1.fc32.s390x\n - compat-wxGTK3-gtk2-media-0:3.0.4-13.fc32.i686\n - wxGTK3-0:3.0.4-13.fc32.x86_64\n - boost-examples-0:1.69.0-18.fc32.s390x\n - jbig2dec-0:0.18-1.fc32.s390x\n - cairomm-doc-0:1.12.0-12.fc32.noarch\n - gtkmm30-devel-0:3.24.2-2.fc32.i686\n - ghostscript-x11-0:9.52-7.fc32.armv7hl\n - boost-timer-0:1.69.0-18.fc32.s390x\n - gspell-devel-0:1.8.3-2.fc32.ppc64le\n - openblas-0:0.3.9-3.fc32.x86_64\n - boost-python3-devel-0:1.69.0-18.fc32.ppc64le\n - libical-glib-0:3.0.8-1.fc32.ppc64le\n - exiv2-devel-0:0.27.2-2.fc32.s390x\n - libsigc++20-doc-0:2.10.3-1.fc32.noarch\n - urw-base35-fonts-0:20170801-14.fc32.noarch\n - flatpak-runtime-config-0:32-1.fc32.armv7hl\n - wxGTK3-gl-0:3.0.4-13.fc32.aarch64\n - boost-static-0:1.69.0-18.fc32.aarch64\n - libhandy-0:0.0.13-4.fc32.x86_64\n - boost-math-0:1.69.0-18.fc32.x86_64\n - exiv2-doc-0:0.27.2-2.fc32.noarch\n - boost-0:1.69.0-18.fc32.x86_64\n - gnome-online-accounts-devel-0:3.36.0-1.fc32.i686\n - libdazzle-0:3.36.0-1.fc32.i686\n - libgweather-0:3.36.1-1.fc32.ppc64le\n - libfontenc-0:1.1.3-12.fc32.armv7hl\n - SDL-static-0:1.2.15-43.fc32.x86_64\n - poppler-qt-devel-0:0.84.0-2.fc32.aarch64\n - boost-filesystem-0:1.69.0-18.fc32.ppc64le\n - gsl-0:2.6-2.fc32.aarch64\n - gtksourceview3-0:3.24.11-3.fc32.ppc64le\n - boost-graph-0:1.69.0-18.fc32.ppc64le\n - libical-glib-devel-0:3.0.8-1.fc32.armv7hl\n - polkit-docs-0:0.116-7.fc32.noarch\n - boost-wave-0:1.69.0-18.fc32.ppc64le\n - wxGTK3-0:3.0.4-13.fc32.armv7hl\n - urw-base35-nimbus-sans-fonts-0:20170801-14.fc32.noarch\n - libsigc++20-0:2.10.3-1.fc32.ppc64le\n - openblas-devel-0:0.3.9-3.fc32.aarch64\n - libhandy-0:0.0.13-4.fc32.i686\n - google-droid-sans-mono-fonts-0:20200215-3.fc32.noarch\n - poppler-glib-0:0.84.0-2.fc32.x86_64\n - flatpak-runtime-config-0:32-1.fc32.s390x\n - SDL-0:1.2.15-43.fc32.aarch64\n - boost-atomic-0:1.69.0-18.fc32.x86_64\n - gtksourceview3-0:3.24.11-3.fc32.x86_64\n - exiv2-0:0.27.2-2.fc32.aarch64\n - boost-wave-0:1.69.0-18.fc32.aarch64\n - boost-examples-0:1.69.0-18.fc32.armv7hl\n - gtksourceview3-devel-0:3.24.11-3.fc32.x86_64\n - libpeas-0:1.26.0-1.fc32.armv7hl\n - libidn-devel-0:1.35-7.fc32.ppc64le\n - ghostscript-tools-fonts-0:9.52-7.fc32.s390x\n - glibmm24-0:2.64.2-1.fc32.s390x\n - libpeas-gtk-0:1.26.0-1.fc32.armv7hl\n - libGLEW-0:2.1.0-6.fc32.armv7hl\n - jbig2dec-libs-0:0.18-1.fc32.i686\n - libpaper-devel-0:1.1.24-26.fc32.armv7hl\n - OpenEXR-devel-0:2.3.0-5.fc32.armv7hl\n - libgweather-0:3.36.1-1.fc32.s390x\n - xorg-x11-font-utils-1:7.5-44.fc32.s390x\n - poppler-utils-0:0.84.0-2.fc32.aarch64\n - gnome-desktop3-0:3.36.4-1.fc32.aarch64\n - google-droid-fonts-all-0:20200215-3.fc32.noarch\n - boost-log-0:1.69.0-18.fc32.s390x\n - wxGTK3-media-0:3.0.4-13.fc32.i686\n - evolution-data-server-tests-0:3.36.4-1.fc32.i686\n - glew-0:2.1.0-6.fc32.armv7hl\n - libsigc++20-0:2.10.3-1.fc32.armv7hl\n - libical-devel-0:3.0.8-1.fc32.s390x\n - boost-python3-devel-0:1.69.0-18.fc32.x86_64\n - libdazzle-0:3.36.0-1.fc32.armv7hl\n - boost-fiber-0:1.69.0-18.fc32.i686\n - flatpak-rpm-macros-0:32-2.fc32.aarch64\n - libmspack-devel-0:0.10.1-0.3.alpha.fc32.s390x\n - exiv2-libs-0:0.27.2-2.fc32.ppc64le\n - evolution-data-server-devel-0:3.36.4-1.fc32.aarch64\n - libpeas-0:1.26.0-1.fc32.s390x\n - libGLEW-0:2.1.0-6.fc32.s390x\n - liboauth-0:1.0.3-14.fc32.x86_64\n - poppler-utils-0:0.84.0-2.fc32.armv7hl\n - poppler-cpp-devel-0:0.84.0-2.fc32.aarch64\n - poppler-utils-0:0.84.0-2.fc32.x86_64\n - libdazzle-devel-0:3.36.0-1.fc32.i686\n - wxGTK3-devel-0:3.0.4-13.fc32.armv7hl\n - libimagequant-devel-0:2.12.6-2.fc32.i686\n - openjpeg2-0:2.3.1-6.fc32.armv7hl\n - OpenEXR-doc-0:2.3.0-5.fc32.armv7hl\n - openblas-openmp-0:0.3.9-3.fc32.aarch64\n - OpenEXR-libs-0:2.3.0-5.fc32.ppc64le\n - glibmm24-0:2.64.2-1.fc32.armv7hl\n - libgweather-devel-0:3.36.1-1.fc32.i686\n - glew-0:2.1.0-6.fc32.s390x\n - exiv2-0:0.27.2-2.fc32.s390x\n - boost-program-options-0:1.69.0-18.fc32.i686\n - openblas-threads64_-0:0.3.9-3.fc32.ppc64le\n - libical-glib-0:3.0.8-1.fc32.armv7hl\n - libijs-0:0.35-11.fc32.i686\n - libdazzle-devel-0:3.36.0-1.fc32.aarch64\n - flatpak-runtime-config-0:32-1.fc32.ppc64le\n - cairomm-0:1.12.0-12.fc32.ppc64le\n - openjpeg2-0:2.3.1-6.fc32.x86_64\n - libmspack-devel-0:0.10.1-0.3.alpha.fc32.ppc64le\n - libical-glib-devel-0:3.0.8-1.fc32.i686\n - libimagequant-devel-0:2.12.6-2.fc32.armv7hl\n - gsl-devel-0:2.6-2.fc32.x86_64\n - SDL-static-0:1.2.15-43.fc32.aarch64\n - libimagequant-0:2.12.6-2.fc32.i686\n - libwmf-0:0.2.12-3.fc32.ppc64le\n - openblas-Rblas-0:0.3.9-3.fc32.armv7hl\n - boost-python3-0:1.69.0-18.fc32.x86_64\n - boost-fiber-0:1.69.0-18.fc32.x86_64\n - gtkmm30-doc-0:3.24.2-2.fc32.noarch\n - OpenEXR-doc-0:2.3.0-5.fc32.i686\n - boost-build-0:1.69.0-18.fc32.noarch\n - boost-chrono-0:1.69.0-18.fc32.ppc64le\n - libgweather-0:3.36.1-1.fc32.x86_64\n - evolution-data-server-tests-0:3.36.4-1.fc32.s390x\n - OpenEXR-0:2.3.0-5.fc32.x86_64\n - opengl-games-utils-0:0.2-17.fc32.noarch\n - atkmm-0:2.24.3-4.fc32.s390x\n - poppler-cpp-0:0.84.0-2.fc32.armv7hl\n - atkmm-devel-0:2.24.3-4.fc32.ppc64le\n - poppler-data-0:0.4.9-5.fc32.noarch\n - boost-coroutine-0:1.69.0-18.fc32.ppc64le\n - compat-wxGTK3-gtk2-gl-0:3.0.4-13.fc32.x86_64\n - cairomm-devel-0:1.12.0-12.fc32.ppc64le\n - wxGTK3-media-0:3.0.4-13.fc32.x86_64\n - boost-filesystem-0:1.69.0-18.fc32.aarch64\n - boost-type_erasure-0:1.69.0-18.fc32.i686\n - atkmm-0:2.24.3-4.fc32.aarch64\n - boost-serialization-0:1.69.0-18.fc32.s390x\n - libpaper-devel-0:1.1.24-26.fc32.i686\n - libhandy-devel-0:0.0.13-4.fc32.ppc64le\n - cairomm-0:1.12.0-12.fc32.s390x\n - libgdata-devel-0:0.17.12-1.fc32.s390x\n - openblas-openmp64-0:0.3.9-3.fc32.s390x\n - boost-type_erasure-0:1.69.0-18.fc32.armv7hl\n - poppler-glib-devel-0:0.84.0-2.fc32.armv7hl\n - openjpeg2-tools-0:2.3.1-6.fc32.i686\n - boost-date-time-0:1.69.0-18.fc32.ppc64le\n - boost-filesystem-0:1.69.0-18.fc32.x86_64\n - poppler-qt5-0:0.84.0-2.fc32.ppc64le\n - libgweather-devel-0:3.36.1-1.fc32.armv7hl\n - gnome-desktop3-devel-0:3.36.4-1.fc32.ppc64le\n - ghostscript-tools-dvipdf-0:9.52-7.fc32.x86_64\n - liboauth-0:1.0.3-14.fc32.i686\n - poppler-0:0.84.0-2.fc32.x86_64\n - libpaper-0:1.1.24-26.fc32.armv7hl\n - gnome-desktop3-0:3.36.4-1.fc32.s390x\n - gspell-doc-0:1.8.3-2.fc32.noarch\n - atkmm-devel-0:2.24.3-4.fc32.aarch64\n - boost-python3-0:1.69.0-18.fc32.i686\n - boost-examples-0:1.69.0-18.fc32.i686\n - ghostscript-x11-0:9.52-7.fc32.aarch64\n - polkit-devel-0:0.116-7.fc32.aarch64\n - libical-glib-0:3.0.8-1.fc32.i686\n - ghostscript-tools-printing-0:9.52-7.fc32.i686\n - compat-wxGTK3-gtk2-0:3.0.4-13.fc32.ppc64le\n - SDL-devel-0:1.2.15-43.fc32.aarch64\n - ghostscript-0:9.52-7.fc32.aarch64\n - flatpak-runtime-config-0:32-1.fc32.aarch64\n - libical-glib-doc-0:3.0.8-1.fc32.noarch\n - boost-filesystem-0:1.69.0-18.fc32.armv7hl\n - boost-context-0:1.69.0-18.fc32.x86_64\n - evolution-data-server-0:3.36.4-1.fc32.x86_64\n - dbus-glib-devel-0:0.110-7.fc32.s390x\n - libimagequant-0:2.12.6-2.fc32.ppc64le\n - gsl-devel-0:2.6-2.fc32.armv7hl\n - boost-date-time-0:1.69.0-18.fc32.aarch64\n - libpaper-0:1.1.24-26.fc32.i686\n - atkmm-devel-0:2.24.3-4.fc32.i686\n - boost-serialization-0:1.69.0-18.fc32.armv7hl\n - gspell-0:1.8.3-2.fc32.aarch64\n - ilmbase-0:2.3.0-4.fc32.ppc64le\n - polkit-libs-0:0.116-7.fc32.i686\n - openblas-threads64-0:0.3.9-3.fc32.aarch64\n - openblas-serial64_-0:0.3.9-3.fc32.aarch64\n - libical-glib-0:3.0.8-1.fc32.aarch64\n - libhandy-devel-0:0.0.13-4.fc32.armv7hl\n - gspell-0:1.8.3-2.fc32.i686\n - libical-devel-0:3.0.8-1.fc32.ppc64le\n - boost-log-0:1.69.0-18.fc32.ppc64le\n - boost-examples-0:1.69.0-18.fc32.x86_64\n - libpeas-gtk-0:1.26.0-1.fc32.x86_64\n - glew-0:2.1.0-6.fc32.aarch64\n - ilmbase-0:2.3.0-4.fc32.armv7hl\n - libimagequant-0:2.12.6-2.fc32.s390x\n - libgdata-0:0.17.12-1.fc32.i686\n - boost-coroutine-0:1.69.0-18.fc32.i686\n - libwmf-devel-0:0.2.12-3.fc32.i686\n - openblas-threads-0:0.3.9-3.fc32.x86_64\n - atkmm-devel-0:2.24.3-4.fc32.x86_64\n - boost-thread-0:1.69.0-18.fc32.s390x\n - boost-python3-0:1.69.0-18.fc32.armv7hl\n - boost-contract-0:1.69.0-18.fc32.aarch64\n - OpenEXR-0:2.3.0-5.fc32.aarch64\n - gnome-desktop3-0:3.36.4-1.fc32.armv7hl\n - libwmf-0:0.2.12-3.fc32.s390x\n - gnome-desktop3-devel-0:3.36.4-1.fc32.s390x\n - libmspack-0:0.10.1-0.3.alpha.fc32.s390x\n - libmspack-devel-0:0.10.1-0.3.alpha.fc32.aarch64\n - adobe-mappings-pdf-devel-0:20180407-5.fc32.noarch\n - libpeas-devel-0:1.26.0-1.fc32.s390x\n - libwmf-lite-0:0.2.12-3.fc32.s390x\n - wxGTK3-i18n-0:3.0.4-13.fc32.noarch\n - openblas-serial64-0:0.3.9-3.fc32.x86_64\n - libimagequant-0:2.12.6-2.fc32.armv7hl\n - startup-notification-devel-0:0.12-19.fc32.ppc64le\n - libgs-devel-0:9.52-7.fc32.armv7hl\n - openblas-openmp64-0:0.3.9-3.fc32.x86_64\n - evolution-data-server-0:3.36.4-1.fc32.aarch64\n - libsigc++20-devel-0:2.10.3-1.fc32.ppc64le\n - dbus-glib-devel-0:0.110-7.fc32.armv7hl\n - boost-timer-0:1.69.0-18.fc32.armv7hl\n - SDL_image-devel-0:1.2.12-23.fc32.i686\n - gnome-desktop3-devel-0:3.36.4-1.fc32.aarch64\n - poppler-qt-0:0.84.0-2.fc32.i686\n - SDL-0:1.2.15-43.fc32.ppc64le\n - libidn-0:1.35-7.fc32.i686\n - boost-regex-0:1.69.0-18.fc32.x86_64\n - libgs-0:9.52-7.fc32.i686\n - boost-devel-0:1.69.0-18.fc32.i686\n - openblas-serial-0:0.3.9-3.fc32.s390x\n - poppler-cpp-0:0.84.0-2.fc32.s390x\n - poppler-qt5-0:0.84.0-2.fc32.s390x\n - SDL-0:1.2.15-43.fc32.armv7hl\n - poppler-glib-devel-0:0.84.0-2.fc32.i686\n - libfontenc-devel-0:1.1.3-12.fc32.ppc64le\n - geocode-glib-0:3.26.2-1.fc32.i686\n - SDL_image-devel-0:1.2.12-23.fc32.armv7hl\n - poppler-devel-0:0.84.0-2.fc32.aarch64\n - evolution-data-server-langpacks-0:3.36.4-1.fc32.noarch\n - libidn-java-0:1.35-7.fc32.noarch\n - boost-math-0:1.69.0-18.fc32.armv7hl\n - libwmf-devel-0:0.2.12-3.fc32.armv7hl\n - libgs-0:9.52-7.fc32.ppc64le\n - boost-system-0:1.69.0-18.fc32.s390x\n - libidn-devel-0:1.35-7.fc32.aarch64\n - xorg-x11-font-utils-1:7.5-44.fc32.aarch64\n - compat-wxGTK3-gtk2-media-0:3.0.4-13.fc32.ppc64le\n - boost-0:1.69.0-18.fc32.ppc64le\n - libmspack-devel-0:0.10.1-0.3.alpha.fc32.armv7hl\n - glew-0:2.1.0-6.fc32.i686\n - OpenEXR-doc-0:2.3.0-5.fc32.s390x\n - libGLEW-0:2.1.0-6.fc32.x86_64\n - cairomm-devel-0:1.12.0-12.fc32.i686\n - boost-random-0:1.69.0-18.fc32.s390x\n - boost-regex-0:1.69.0-18.fc32.ppc64le\n - jbig2dec-libs-0:0.18-1.fc32.armv7hl\n - openjpeg2-0:2.3.1-6.fc32.s390x\n - poppler-qt-0:0.84.0-2.fc32.s390x\n - boost-test-0:1.69.0-18.fc32.ppc64le\n - boost-devel-0:1.69.0-18.fc32.ppc64le\n - geocode-glib-devel-0:3.26.2-1.fc32.x86_64\n - OpenEXR-devel-0:2.3.0-5.fc32.s390x\n - openblas-openmp-0:0.3.9-3.fc32.i686\n - poppler-cpp-0:0.84.0-2.fc32.aarch64\n - boost-program-options-0:1.69.0-18.fc32.x86_64\n - openblas-static-0:0.3.9-3.fc32.armv7hl\n - ilmbase-devel-0:2.3.0-4.fc32.armv7hl\n - compat-wxGTK3-gtk2-0:3.0.4-13.fc32.x86_64\n - SDL_image-0:1.2.12-23.fc32.x86_64\n - poppler-glib-0:0.84.0-2.fc32.aarch64\n - openblas-openmp-0:0.3.9-3.fc32.s390x\n - boost-fiber-0:1.69.0-18.fc32.ppc64le\n - boost-thread-0:1.69.0-18.fc32.x86_64\n - startup-notification-0:0.12-19.fc32.aarch64\n - wxGTK3-gl-0:3.0.4-13.fc32.i686\n - gtkmm30-devel-0:3.24.2-2.fc32.ppc64le\n - compat-wxGTK3-gtk2-gl-0:3.0.4-13.fc32.s390x\n - openblas-devel-0:0.3.9-3.fc32.x86_64\n - gnome-desktop3-devel-0:3.36.4-1.fc32.armv7hl\n - libpaper-0:1.1.24-26.fc32.aarch64\n - SDL-devel-0:1.2.15-43.fc32.i686\n - boost-container-0:1.69.0-18.fc32.armv7hl\n - polkit-devel-0:0.116-7.fc32.i686\n - boost-atomic-0:1.69.0-18.fc32.armv7hl\n - wxBase3-devel-0:3.0.4-13.fc32.aarch64\n - ghostscript-0:9.52-7.fc32.s390x\n - openblas-openmp-0:0.3.9-3.fc32.x86_64\n - poppler-qt-0:0.84.0-2.fc32.x86_64\n - boost-fiber-0:1.69.0-18.fc32.aarch64\n - boost-log-0:1.69.0-18.fc32.x86_64\n - boost-locale-0:1.69.0-18.fc32.ppc64le\n - openblas-serial64_-0:0.3.9-3.fc32.s390x\n - poppler-qt5-devel-0:0.84.0-2.fc32.i686\n - boost-static-0:1.69.0-18.fc32.i686\n - wxGTK3-docs-0:3.0.4-13.fc32.noarch\n - libidn-0:1.35-7.fc32.s390x\n - pangomm-devel-0:2.42.1-1.fc32.s390x\n - boost-doctools-0:1.69.0-18.fc32.i686\n dependencies:\n - buildrequires:\n flatpak-common: [f32]\n flatpak-runtime: [f32]\n platform: [f32]\n requires:\n flatpak-common: [f32]\n flatpak-runtime: [f32]\n platform: [f32]\n profiles:\n default:\n rpms:\n - 0ad\n components:\n rpms:\n 0ad:\n rationale: Application package\n repository: git+https://src.fedoraproject.org/rpms/0ad\n cache: https://src.fedoraproject.org/repo/pkgs/0ad\n ref: f32\n buildorder: 10\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n 0ad-data:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/0ad-data\n cache: https://src.fedoraproject.org/repo/pkgs/0ad-data\n ref: f32\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n dejavu-fonts:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/dejavu-fonts\n cache: https://src.fedoraproject.org/repo/pkgs/dejavu-fonts\n ref: f32\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n enet:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/enet\n cache: https://src.fedoraproject.org/repo/pkgs/enet\n ref: f32\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n gloox:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/gloox\n cache: https://src.fedoraproject.org/repo/pkgs/gloox\n ref: f32\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n libsodium:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/libsodium\n cache: https://src.fedoraproject.org/repo/pkgs/libsodium\n ref: f32\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n miniupnpc:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/miniupnpc\n cache: https://src.fedoraproject.org/repo/pkgs/miniupnpc\n ref: f32\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n nvidia-texture-tools:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/nvidia-texture-tools\n cache: https://src.fedoraproject.org/repo/pkgs/nvidia-texture-tools\n ref: f32\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n...", "runtime_deps": [ { "dependency": "platform", "stream": "f32" }, { "dependency": "flatpak-runtime", "stream": "f32" }, { "dependency": "flatpak-common", "stream": "f32" } ], "build_deps": [ { "dependency": "platform", "stream": "f32" }, { "dependency": "flatpak-runtime", "stream": "f32" }, { "dependency": "flatpak-common", "stream": "f32" } ], "active": true, "rpms": [ "0ad-0:0.0.23b-17.module_f32+9033+577abfa4.aarch64.rpm", "0ad-0:0.0.23b-17.module_f32+9033+577abfa4.armv7hl.rpm", "0ad-0:0.0.23b-17.module_f32+9033+577abfa4.i686.rpm", "0ad-0:0.0.23b-17.module_f32+9033+577abfa4.ppc64le.rpm", "0ad-0:0.0.23b-17.module_f32+9033+577abfa4.src.rpm", "0ad-0:0.0.23b-17.module_f32+9033+577abfa4.x86_64.rpm", "0ad-data-0:0.0.23b-4.module_f32+8568+7182d393.noarch.rpm", "0ad-data-0:0.0.23b-4.module_f32+8568+7182d393.src.rpm", "0ad-debuginfo-0:0.0.23b-17.module_f32+9033+577abfa4.aarch64.rpm", "0ad-debuginfo-0:0.0.23b-17.module_f32+9033+577abfa4.armv7hl.rpm", "0ad-debuginfo-0:0.0.23b-17.module_f32+9033+577abfa4.i686.rpm", "0ad-debuginfo-0:0.0.23b-17.module_f32+9033+577abfa4.ppc64le.rpm", "0ad-debuginfo-0:0.0.23b-17.module_f32+9033+577abfa4.x86_64.rpm", "0ad-debugsource-0:0.0.23b-17.module_f32+9033+577abfa4.aarch64.rpm", "0ad-debugsource-0:0.0.23b-17.module_f32+9033+577abfa4.armv7hl.rpm", "0ad-debugsource-0:0.0.23b-17.module_f32+9033+577abfa4.i686.rpm", "0ad-debugsource-0:0.0.23b-17.module_f32+9033+577abfa4.ppc64le.rpm", "0ad-debugsource-0:0.0.23b-17.module_f32+9033+577abfa4.x86_64.rpm", "compat-f32-dejavu-sans-fonts-0:2.37-7.module_f32+8568+7182d393.noarch.rpm", "compat-f32-dejavu-sans-mono-fonts-0:2.37-7.module_f32+8568+7182d393.noarch.rpm", "compat-f32-dejavu-serif-fonts-0:2.37-7.module_f32+8568+7182d393.noarch.rpm", "dejavu-fonts-0:2.37-7.module_f32+8568+7182d393.src.rpm", "dejavu-fonts-all-0:2.37-7.module_f32+8568+7182d393.noarch.rpm", "dejavu-fonts-doc-0:2.37-7.module_f32+8568+7182d393.noarch.rpm", "dejavu-lgc-fonts-all-0:2.37-7.module_f32+8568+7182d393.noarch.rpm", "dejavu-lgc-sans-fonts-0:2.37-7.module_f32+8568+7182d393.noarch.rpm", "dejavu-lgc-sans-mono-fonts-0:2.37-7.module_f32+8568+7182d393.noarch.rpm", "dejavu-lgc-serif-fonts-0:2.37-7.module_f32+8568+7182d393.noarch.rpm", "dejavu-sans-fonts-0:2.37-7.module_f32+8568+7182d393.noarch.rpm", "dejavu-sans-mono-fonts-0:2.37-7.module_f32+8568+7182d393.noarch.rpm", "dejavu-serif-fonts-0:2.37-7.module_f32+8568+7182d393.noarch.rpm", "enet-0:1.3.14-3.module_f32+8568+7182d393.aarch64.rpm", "enet-0:1.3.14-3.module_f32+8568+7182d393.armv7hl.rpm", "enet-0:1.3.14-3.module_f32+8568+7182d393.i686.rpm", "enet-0:1.3.14-3.module_f32+8568+7182d393.ppc64le.rpm", "enet-0:1.3.14-3.module_f32+8568+7182d393.s390x.rpm", "enet-0:1.3.14-3.module_f32+8568+7182d393.src.rpm", "enet-0:1.3.14-3.module_f32+8568+7182d393.x86_64.rpm", "enet-debuginfo-0:1.3.14-3.module_f32+8568+7182d393.aarch64.rpm", "enet-debuginfo-0:1.3.14-3.module_f32+8568+7182d393.armv7hl.rpm", "enet-debuginfo-0:1.3.14-3.module_f32+8568+7182d393.i686.rpm", "enet-debuginfo-0:1.3.14-3.module_f32+8568+7182d393.ppc64le.rpm", "enet-debuginfo-0:1.3.14-3.module_f32+8568+7182d393.s390x.rpm", "enet-debuginfo-0:1.3.14-3.module_f32+8568+7182d393.x86_64.rpm", "enet-debugsource-0:1.3.14-3.module_f32+8568+7182d393.aarch64.rpm", "enet-debugsource-0:1.3.14-3.module_f32+8568+7182d393.armv7hl.rpm", "enet-debugsource-0:1.3.14-3.module_f32+8568+7182d393.i686.rpm", "enet-debugsource-0:1.3.14-3.module_f32+8568+7182d393.ppc64le.rpm", "enet-debugsource-0:1.3.14-3.module_f32+8568+7182d393.s390x.rpm", "enet-debugsource-0:1.3.14-3.module_f32+8568+7182d393.x86_64.rpm", "enet-devel-0:1.3.14-3.module_f32+8568+7182d393.aarch64.rpm", "enet-devel-0:1.3.14-3.module_f32+8568+7182d393.armv7hl.rpm", "enet-devel-0:1.3.14-3.module_f32+8568+7182d393.i686.rpm", "enet-devel-0:1.3.14-3.module_f32+8568+7182d393.ppc64le.rpm", "enet-devel-0:1.3.14-3.module_f32+8568+7182d393.s390x.rpm", "enet-devel-0:1.3.14-3.module_f32+8568+7182d393.x86_64.rpm", "gloox-1:1.0.23-1.module_f32+8970+7accee7b.aarch64.rpm", "gloox-1:1.0.23-1.module_f32+8970+7accee7b.armv7hl.rpm", "gloox-1:1.0.23-1.module_f32+8970+7accee7b.i686.rpm", "gloox-1:1.0.23-1.module_f32+8970+7accee7b.ppc64le.rpm", "gloox-1:1.0.23-1.module_f32+8970+7accee7b.s390x.rpm", "gloox-1:1.0.23-1.module_f32+8970+7accee7b.src.rpm", "gloox-1:1.0.23-1.module_f32+8970+7accee7b.x86_64.rpm", "gloox-debuginfo-1:1.0.23-1.module_f32+8970+7accee7b.aarch64.rpm", "gloox-debuginfo-1:1.0.23-1.module_f32+8970+7accee7b.armv7hl.rpm", "gloox-debuginfo-1:1.0.23-1.module_f32+8970+7accee7b.i686.rpm", "gloox-debuginfo-1:1.0.23-1.module_f32+8970+7accee7b.ppc64le.rpm", "gloox-debuginfo-1:1.0.23-1.module_f32+8970+7accee7b.s390x.rpm", "gloox-debuginfo-1:1.0.23-1.module_f32+8970+7accee7b.x86_64.rpm", "gloox-debugsource-1:1.0.23-1.module_f32+8970+7accee7b.aarch64.rpm", "gloox-debugsource-1:1.0.23-1.module_f32+8970+7accee7b.armv7hl.rpm", "gloox-debugsource-1:1.0.23-1.module_f32+8970+7accee7b.i686.rpm", "gloox-debugsource-1:1.0.23-1.module_f32+8970+7accee7b.ppc64le.rpm", "gloox-debugsource-1:1.0.23-1.module_f32+8970+7accee7b.s390x.rpm", "gloox-debugsource-1:1.0.23-1.module_f32+8970+7accee7b.x86_64.rpm", "gloox-devel-1:1.0.23-1.module_f32+8970+7accee7b.aarch64.rpm", "gloox-devel-1:1.0.23-1.module_f32+8970+7accee7b.armv7hl.rpm", "gloox-devel-1:1.0.23-1.module_f32+8970+7accee7b.i686.rpm", "gloox-devel-1:1.0.23-1.module_f32+8970+7accee7b.ppc64le.rpm", "gloox-devel-1:1.0.23-1.module_f32+8970+7accee7b.s390x.rpm", "gloox-devel-1:1.0.23-1.module_f32+8970+7accee7b.x86_64.rpm", "libsodium-0:1.0.18-3.module_f32+8568+7182d393.aarch64.rpm", "libsodium-0:1.0.18-3.module_f32+8568+7182d393.armv7hl.rpm", "libsodium-0:1.0.18-3.module_f32+8568+7182d393.i686.rpm", "libsodium-0:1.0.18-3.module_f32+8568+7182d393.ppc64le.rpm", "libsodium-0:1.0.18-3.module_f32+8568+7182d393.s390x.rpm", "libsodium-0:1.0.18-3.module_f32+8568+7182d393.src.rpm", "libsodium-0:1.0.18-3.module_f32+8568+7182d393.x86_64.rpm", "libsodium-debuginfo-0:1.0.18-3.module_f32+8568+7182d393.aarch64.rpm", "libsodium-debuginfo-0:1.0.18-3.module_f32+8568+7182d393.armv7hl.rpm", "libsodium-debuginfo-0:1.0.18-3.module_f32+8568+7182d393.i686.rpm", "libsodium-debuginfo-0:1.0.18-3.module_f32+8568+7182d393.ppc64le.rpm", "libsodium-debuginfo-0:1.0.18-3.module_f32+8568+7182d393.s390x.rpm", "libsodium-debuginfo-0:1.0.18-3.module_f32+8568+7182d393.x86_64.rpm", "libsodium-debugsource-0:1.0.18-3.module_f32+8568+7182d393.aarch64.rpm", "libsodium-debugsource-0:1.0.18-3.module_f32+8568+7182d393.armv7hl.rpm", "libsodium-debugsource-0:1.0.18-3.module_f32+8568+7182d393.i686.rpm", "libsodium-debugsource-0:1.0.18-3.module_f32+8568+7182d393.ppc64le.rpm", "libsodium-debugsource-0:1.0.18-3.module_f32+8568+7182d393.s390x.rpm", "libsodium-debugsource-0:1.0.18-3.module_f32+8568+7182d393.x86_64.rpm", "libsodium-devel-0:1.0.18-3.module_f32+8568+7182d393.aarch64.rpm", "libsodium-devel-0:1.0.18-3.module_f32+8568+7182d393.armv7hl.rpm", "libsodium-devel-0:1.0.18-3.module_f32+8568+7182d393.i686.rpm", "libsodium-devel-0:1.0.18-3.module_f32+8568+7182d393.ppc64le.rpm", "libsodium-devel-0:1.0.18-3.module_f32+8568+7182d393.s390x.rpm", "libsodium-devel-0:1.0.18-3.module_f32+8568+7182d393.x86_64.rpm", "libsodium-static-0:1.0.18-3.module_f32+8568+7182d393.aarch64.rpm", "libsodium-static-0:1.0.18-3.module_f32+8568+7182d393.armv7hl.rpm", "libsodium-static-0:1.0.18-3.module_f32+8568+7182d393.i686.rpm", "libsodium-static-0:1.0.18-3.module_f32+8568+7182d393.ppc64le.rpm", "libsodium-static-0:1.0.18-3.module_f32+8568+7182d393.s390x.rpm", "libsodium-static-0:1.0.18-3.module_f32+8568+7182d393.x86_64.rpm", "miniupnpc-0:2.1-5.module_f32+8568+7182d393.aarch64.rpm", "miniupnpc-0:2.1-5.module_f32+8568+7182d393.armv7hl.rpm", "miniupnpc-0:2.1-5.module_f32+8568+7182d393.i686.rpm", "miniupnpc-0:2.1-5.module_f32+8568+7182d393.ppc64le.rpm", "miniupnpc-0:2.1-5.module_f32+8568+7182d393.s390x.rpm", "miniupnpc-0:2.1-5.module_f32+8568+7182d393.src.rpm", "miniupnpc-0:2.1-5.module_f32+8568+7182d393.x86_64.rpm", "miniupnpc-debuginfo-0:2.1-5.module_f32+8568+7182d393.aarch64.rpm", "miniupnpc-debuginfo-0:2.1-5.module_f32+8568+7182d393.armv7hl.rpm", "miniupnpc-debuginfo-0:2.1-5.module_f32+8568+7182d393.i686.rpm", "miniupnpc-debuginfo-0:2.1-5.module_f32+8568+7182d393.ppc64le.rpm", "miniupnpc-debuginfo-0:2.1-5.module_f32+8568+7182d393.s390x.rpm", "miniupnpc-debuginfo-0:2.1-5.module_f32+8568+7182d393.x86_64.rpm", "miniupnpc-debugsource-0:2.1-5.module_f32+8568+7182d393.aarch64.rpm", "miniupnpc-debugsource-0:2.1-5.module_f32+8568+7182d393.armv7hl.rpm", "miniupnpc-debugsource-0:2.1-5.module_f32+8568+7182d393.i686.rpm", "miniupnpc-debugsource-0:2.1-5.module_f32+8568+7182d393.ppc64le.rpm", "miniupnpc-debugsource-0:2.1-5.module_f32+8568+7182d393.s390x.rpm", "miniupnpc-debugsource-0:2.1-5.module_f32+8568+7182d393.x86_64.rpm", "miniupnpc-devel-0:2.1-5.module_f32+8568+7182d393.aarch64.rpm", "miniupnpc-devel-0:2.1-5.module_f32+8568+7182d393.armv7hl.rpm", "miniupnpc-devel-0:2.1-5.module_f32+8568+7182d393.i686.rpm", "miniupnpc-devel-0:2.1-5.module_f32+8568+7182d393.ppc64le.rpm", "miniupnpc-devel-0:2.1-5.module_f32+8568+7182d393.s390x.rpm", "miniupnpc-devel-0:2.1-5.module_f32+8568+7182d393.x86_64.rpm", "nvidia-texture-tools-0:2.0.8-22.module_f32+8568+7182d393.aarch64.rpm", "nvidia-texture-tools-0:2.0.8-22.module_f32+8568+7182d393.armv7hl.rpm", "nvidia-texture-tools-0:2.0.8-22.module_f32+8568+7182d393.i686.rpm", "nvidia-texture-tools-0:2.0.8-22.module_f32+8568+7182d393.ppc64le.rpm", "nvidia-texture-tools-0:2.0.8-22.module_f32+8568+7182d393.s390x.rpm", "nvidia-texture-tools-0:2.0.8-22.module_f32+8568+7182d393.src.rpm", "nvidia-texture-tools-0:2.0.8-22.module_f32+8568+7182d393.x86_64.rpm", "nvidia-texture-tools-debuginfo-0:2.0.8-22.module_f32+8568+7182d393.aarch64.rpm", "nvidia-texture-tools-debuginfo-0:2.0.8-22.module_f32+8568+7182d393.armv7hl.rpm", "nvidia-texture-tools-debuginfo-0:2.0.8-22.module_f32+8568+7182d393.i686.rpm", "nvidia-texture-tools-debuginfo-0:2.0.8-22.module_f32+8568+7182d393.ppc64le.rpm", "nvidia-texture-tools-debuginfo-0:2.0.8-22.module_f32+8568+7182d393.s390x.rpm", "nvidia-texture-tools-debuginfo-0:2.0.8-22.module_f32+8568+7182d393.x86_64.rpm", "nvidia-texture-tools-debugsource-0:2.0.8-22.module_f32+8568+7182d393.aarch64.rpm", "nvidia-texture-tools-debugsource-0:2.0.8-22.module_f32+8568+7182d393.armv7hl.rpm", "nvidia-texture-tools-debugsource-0:2.0.8-22.module_f32+8568+7182d393.i686.rpm", "nvidia-texture-tools-debugsource-0:2.0.8-22.module_f32+8568+7182d393.ppc64le.rpm", "nvidia-texture-tools-debugsource-0:2.0.8-22.module_f32+8568+7182d393.s390x.rpm", "nvidia-texture-tools-debugsource-0:2.0.8-22.module_f32+8568+7182d393.x86_64.rpm", "nvidia-texture-tools-devel-0:2.0.8-22.module_f32+8568+7182d393.aarch64.rpm", "nvidia-texture-tools-devel-0:2.0.8-22.module_f32+8568+7182d393.armv7hl.rpm", "nvidia-texture-tools-devel-0:2.0.8-22.module_f32+8568+7182d393.i686.rpm", "nvidia-texture-tools-devel-0:2.0.8-22.module_f32+8568+7182d393.ppc64le.rpm", "nvidia-texture-tools-devel-0:2.0.8-22.module_f32+8568+7182d393.s390x.rpm", "nvidia-texture-tools-devel-0:2.0.8-22.module_f32+8568+7182d393.x86_64.rpm", "python3-miniupnpc-0:2.1-5.module_f32+8568+7182d393.aarch64.rpm", "python3-miniupnpc-0:2.1-5.module_f32+8568+7182d393.armv7hl.rpm", "python3-miniupnpc-0:2.1-5.module_f32+8568+7182d393.i686.rpm", "python3-miniupnpc-0:2.1-5.module_f32+8568+7182d393.ppc64le.rpm", "python3-miniupnpc-0:2.1-5.module_f32+8568+7182d393.s390x.rpm", "python3-miniupnpc-0:2.1-5.module_f32+8568+7182d393.x86_64.rpm", "python3-miniupnpc-debuginfo-0:2.1-5.module_f32+8568+7182d393.aarch64.rpm", "python3-miniupnpc-debuginfo-0:2.1-5.module_f32+8568+7182d393.armv7hl.rpm", "python3-miniupnpc-debuginfo-0:2.1-5.module_f32+8568+7182d393.i686.rpm", "python3-miniupnpc-debuginfo-0:2.1-5.module_f32+8568+7182d393.ppc64le.rpm", "python3-miniupnpc-debuginfo-0:2.1-5.module_f32+8568+7182d393.s390x.rpm", "python3-miniupnpc-debuginfo-0:2.1-5.module_f32+8568+7182d393.x86_64.rpm" ] }, { "variant_id": "0ad", "variant_uid": "0ad:master:3320201018173917:50ef3cd5", "variant_name": "0ad", "variant_type": "module", "variant_version": "master", "variant_release": "3320201018173917", "variant_context": "50ef3cd5", "koji_tag": "module-0ad-master-3320201018173917-50ef3cd5", "modulemd": "---\ndocument: modulemd\nversion: 2\ndata:\n name: 0ad\n stream: master\n version: 3320201018173917\n context: 50ef3cd5\n summary: Cross-Platform RTS Game of Ancient Warfare\n description: >-\n 0 A.D. (pronounced \"zero ey-dee\") is a free, open-source, cross-platform real-time\n strategy (RTS) game of ancient warfare. In short, it is a historically-based war/economy\n game that allows players to relive or rewrite the history of Western civilizations,\n focusing on the years between 500 B.C. and 500 A.D. The project is highly ambitious,\n involving state-of-the-art 3D graphics, detailed artwork, sound, and a flexible\n and powerful custom-built game engine.\n\n The game has been in development by Wildfire Games (WFG), a group of volunteer,\n hobbyist game developers, since 2001.\n license:\n module:\n - MIT\n xmd:\n mbs:\n buildrequires:\n flatpak-common:\n context: fb2b2a51\n filtered_rpms: []\n koji_tag: module-flatpak-common-f33-3320201018174010-fb2b2a51\n ref: 7b1c804759502d92da0b2b89f5268cd38b0d765f\n stream: f33\n version: 3320201018174010\n flatpak-runtime:\n context: 601d93de\n filtered_rpms: []\n koji_tag: module-flatpak-runtime-f33-3320201014073228-601d93de\n ref: 6af6cee480ac077ec5db0ad43b05b740d80c4f8f\n stream: f33\n version: 3320201014073228\n platform:\n context: 00000000\n filtered_rpms: []\n koji_tag: module-f33-build\n ref: f33\n stream: f33\n stream_collision_modules: \n ursine_rpms: \n version: 1\n commit: 673cd5554558cd05b7c2ee0bc50636b1e74c6f13\n mse: TRUE\n rpms:\n 0ad:\n ref: d7d922c47721d6e3a4270331f8104fc785c57d11\n 0ad-data:\n ref: bba7011f6ffb028a33ac32cf8e35bd5c54d7cc3e\n dejavu-fonts:\n ref: b475f5b4c29a82b95c84df5d31ba8757710d5b5d\n enet:\n ref: da594f9bd429ecb41396a25091d693e41b40cfbc\n gloox:\n ref: 6881cacaa26d9ae3dc9d24585b36b2c52ee43434\n libsodium:\n ref: 1442a683d44b7a4186db95ffbfba0c747fae833f\n miniupnpc:\n ref: a79ccd1c8b4f894a771198f0d6fa69ed75a67961\n nvidia-texture-tools:\n ref: d585118e66aff16c45d557655b5fa01fd10c7df4\n scmurl: https://src.fedoraproject.org/flatpaks/0ad.git?#673cd5554558cd05b7c2ee0bc50636b1e74c6f13\n ursine_rpms:\n - poppler-0:0.90.0-6.fc33.x86_64\n - gsound-0:1.0.2-12.fc33.x86_64\n - ilmbase-0:2.3.0-5.fc33.ppc64le\n - boost-stacktrace-0:1.73.0-7.fc33.ppc64le\n - OpenEXR-doc-0:2.3.0-6.fc33.i686\n - libgweather-devel-0:3.36.1-3.fc33.aarch64\n - boost-atomic-0:1.73.0-7.fc33.i686\n - boost-contract-0:1.73.0-7.fc33.i686\n - libical-glib-devel-0:3.0.8-5.fc33.i686\n - pangomm-doc-0:2.42.1-2.fc33.noarch\n - libwmf-0:0.2.12-4.fc33.aarch64\n - openblas-0:0.3.10-6.fc33.s390x\n - libwmf-devel-0:0.2.12-4.fc33.armv7hl\n - libpaper-0:1.1.24-28.fc33.aarch64\n - gtksourceview3-tests-0:3.24.11-4.fc33.i686\n - libpaper-devel-0:1.1.24-28.fc33.ppc64le\n - protobuf-static-0:3.12.4-1.fc33.s390x\n - polkit-0:0.117-2.fc33.armv7hl\n - ghostscript-gtk-0:9.53.1-2.fc33.ppc64le\n - geocode-glib-0:3.26.2-2.fc33.s390x\n - exiv2-devel-0:0.27.3-4.fc33.ppc64le\n - boost-b2-0:1.73.0-7.fc33.armv7hl\n - exiv2-devel-0:0.27.3-4.fc33.aarch64\n - boost-serialization-0:1.73.0-7.fc33.s390x\n - libpeas-gtk-0:1.28.0-1.fc33.s390x\n - jbig2dec-0:0.19-2.fc33.armv7hl\n - boost-examples-0:1.73.0-7.fc33.aarch64\n - OpenEXR-0:2.3.0-6.fc33.x86_64\n - openjpeg2-tools-0:2.3.1-7.fc33.i686\n - boost-graph-0:1.73.0-7.fc33.x86_64\n - boost-graph-0:1.73.0-7.fc33.armv7hl\n - poppler-qt5-0:0.90.0-6.fc33.armv7hl\n - gsl-devel-0:2.6-3.fc33.aarch64\n - protobuf-lite-static-0:3.12.4-1.fc33.x86_64\n - gtkmm30-0:3.24.2-3.fc33.ppc64le\n - urw-base35-d050000l-fonts-0:20170801-16.fc33.noarch\n - boost-context-0:1.73.0-7.fc33.aarch64\n - openblas-threads64-0:0.3.10-6.fc33.aarch64\n - openblas-openmp64_-0:0.3.10-6.fc33.ppc64le\n - wxGTK3-0:3.0.5.1-2.fc33.ppc64le\n - wxGTK3-devel-0:3.0.5.1-2.fc33.ppc64le\n - atkmm-devel-0:2.24.3-6.fc33.x86_64\n - boost-system-0:1.73.0-7.fc33.armv7hl\n - poppler-qt5-0:0.90.0-6.fc33.i686\n - liboauth-devel-0:1.0.3-15.fc33.armv7hl\n - gsound-0:1.0.2-12.fc33.i686\n - tk-devel-1:8.6.10-5.fc33.x86_64\n - libGLEW-0:2.1.0-8.fc33.aarch64\n - protobuf-0:3.12.4-1.fc33.aarch64\n - polkit-libs-0:0.117-2.fc33.aarch64\n - libwmf-0:0.2.12-4.fc33.s390x\n - poppler-qt-0:0.90.0-6.fc33.aarch64\n - urw-base35-fonts-legacy-0:20170801-16.fc33.noarch\n - gnome-desktop3-tests-0:3.38.1-1.fc33.x86_64\n - evolution-data-server-perl-0:3.38.1-1.fc33.armv7hl\n - urw-base35-nimbus-roman-fonts-0:20170801-16.fc33.noarch\n - gd-progs-0:2.3.0-3.fc33.i686\n - openjpeg2-devel-0:2.3.1-7.fc33.s390x\n - gtksourceview3-0:3.24.11-4.fc33.i686\n - gd-devel-0:2.3.0-3.fc33.i686\n - libpeas-devel-0:1.28.0-1.fc33.x86_64\n - protobuf-java-util-0:3.12.4-1.fc33.noarch\n - boost-0:1.73.0-7.fc33.s390x\n - libidn-devel-0:1.36-1.fc33.i686\n - libical-glib-devel-0:3.0.8-5.fc33.aarch64\n - glew-devel-0:2.1.0-8.fc33.i686\n - openjpeg2-tools-0:2.3.1-7.fc33.armv7hl\n - openblas-openmp-0:0.3.10-6.fc33.s390x\n - glew-0:2.1.0-8.fc33.aarch64\n - boost-filesystem-0:1.73.0-7.fc33.s390x\n - wxBase3-devel-0:3.0.5.1-2.fc33.aarch64\n - openblas-threads64_-0:0.3.10-6.fc33.ppc64le\n - exiv2-libs-0:0.27.3-4.fc33.ppc64le\n - OpenEXR-doc-0:2.3.0-6.fc33.s390x\n - evolution-data-server-0:3.38.1-1.fc33.ppc64le\n - pangomm-devel-0:2.42.1-2.fc33.x86_64\n - OpenEXR-doc-0:2.3.0-6.fc33.aarch64\n - libgs-0:9.53.1-2.fc33.i686\n - boost-graph-0:1.73.0-7.fc33.i686\n - adobe-mappings-pdf-devel-0:20180407-7.fc33.noarch\n - poppler-qt5-0:0.90.0-6.fc33.s390x\n - SDL-0:1.2.15-45.fc33.aarch64\n - poppler-cpp-0:0.90.0-6.fc33.s390x\n - glew-0:2.1.0-8.fc33.ppc64le\n - glibmm24-0:2.64.2-4.fc33.i686\n - boost-type_erasure-0:1.73.0-7.fc33.armv7hl\n - libwmf-devel-0:0.2.12-4.fc33.ppc64le\n - poppler-qt5-devel-0:0.90.0-6.fc33.aarch64\n - openjpeg2-0:2.3.1-7.fc33.armv7hl\n - polkit-libs-0:0.117-2.fc33.s390x\n - xorg-x11-font-utils-1:7.5-45.fc33.armv7hl\n - gtksourceview3-tests-0:3.24.11-4.fc33.s390x\n - wxBase3-0:3.0.5.1-2.fc33.s390x\n - boost-b2-0:1.73.0-7.fc33.aarch64\n - pangomm-devel-0:2.42.1-2.fc33.armv7hl\n - jbig2dec-0:0.19-2.fc33.aarch64\n - ghostscript-x11-0:9.53.1-2.fc33.x86_64\n - protobuf-compiler-0:3.12.4-1.fc33.ppc64le\n - boost-container-0:1.73.0-7.fc33.i686\n - boost-program-options-0:1.73.0-7.fc33.i686\n - wxBase3-devel-0:3.0.5.1-2.fc33.ppc64le\n - openblas-serial64-0:0.3.10-6.fc33.ppc64le\n - polkit-0:0.117-2.fc33.x86_64\n - SDL-devel-0:1.2.15-45.fc33.i686\n - gsl-devel-0:2.6-3.fc33.i686\n - SDL-devel-0:1.2.15-45.fc33.x86_64\n - gsl-devel-0:2.6-3.fc33.armv7hl\n - poppler-utils-0:0.90.0-6.fc33.armv7hl\n - geocode-glib-devel-0:3.26.2-2.fc33.s390x\n - boost-type_erasure-0:1.73.0-7.fc33.aarch64\n - gsound-devel-0:1.0.2-12.fc33.s390x\n - python2.7-0:2.7.18-6.fc33.x86_64\n - OpenEXR-devel-0:2.3.0-6.fc33.armv7hl\n - ilmbase-0:2.3.0-5.fc33.i686\n - libgdata-0:0.17.13-1.fc33.x86_64\n - startup-notification-devel-0:0.12-20.fc33.x86_64\n - tcl-devel-1:8.6.10-5.fc33.s390x\n - openjpeg2-0:2.3.1-7.fc33.i686\n - libwmf-0:0.2.12-4.fc33.x86_64\n - boost-graph-0:1.73.0-7.fc33.s390x\n - openblas-serial64_-0:0.3.10-6.fc33.aarch64\n - openblas-devel-0:0.3.10-6.fc33.s390x\n - SDL-0:1.2.15-45.fc33.armv7hl\n - ghostscript-tools-dvipdf-0:9.53.1-2.fc33.s390x\n - openblas-threads-0:0.3.10-6.fc33.x86_64\n - pangomm-devel-0:2.42.1-2.fc33.aarch64\n - openjpeg2-devel-0:2.3.1-7.fc33.i686\n - libimagequant-0:2.12.6-3.fc33.x86_64\n - poppler-qt-devel-0:0.90.0-6.fc33.aarch64\n - openblas-openmp-0:0.3.10-6.fc33.ppc64le\n - protobuf-0:3.12.4-1.fc33.s390x\n - libphonenumber-devel-0:8.12.7-1.fc33.x86_64\n - wxGTK3-0:3.0.5.1-2.fc33.aarch64\n - wxGTK3-media-0:3.0.5.1-2.fc33.x86_64\n - libijs-devel-0:0.35-12.fc33.aarch64\n - libhandy1-0:1.0.0-2.fc33.armv7hl\n - tix-devel-1:8.4.3-29.fc33.armv7hl\n - poppler-glib-0:0.90.0-6.fc33.x86_64\n - boost-context-0:1.73.0-7.fc33.i686\n - poppler-glib-devel-0:0.90.0-6.fc33.x86_64\n - libgdata-devel-0:0.17.13-1.fc33.i686\n - libgs-0:9.53.1-2.fc33.x86_64\n - polkit-0:0.117-2.fc33.aarch64\n - dbus-glib-devel-0:0.110-7.fc32.s390x\n - protobuf-static-0:3.12.4-1.fc33.aarch64\n - wxGTK3-media-0:3.0.5.1-2.fc33.s390x\n - gtkmm30-0:3.24.2-3.fc33.aarch64\n - gtkmm30-doc-0:3.24.2-3.fc33.noarch\n - boost-nowide-0:1.73.0-7.fc33.i686\n - poppler-devel-0:0.90.0-6.fc33.ppc64le\n - protobuf-lite-devel-0:3.12.4-1.fc33.armv7hl\n - openblas-devel-0:0.3.10-6.fc33.ppc64le\n - liboauth-0:1.0.3-15.fc33.aarch64\n - ghostscript-core-0:9.53.1-2.fc33.s390x\n - OpenEXR-0:2.3.0-6.fc33.s390x\n - evolution-data-server-perl-0:3.38.1-1.fc33.s390x\n - boost-graph-0:1.73.0-7.fc33.aarch64\n - libfontenc-devel-0:1.1.3-13.fc33.s390x\n - boost-math-0:1.73.0-7.fc33.x86_64\n - boost-serialization-0:1.73.0-7.fc33.i686\n - openblas-threads64-0:0.3.10-6.fc33.x86_64\n - boost-devel-0:1.73.0-7.fc33.aarch64\n - evolution-data-server-devel-0:3.38.1-1.fc33.x86_64\n - boost-log-0:1.73.0-7.fc33.x86_64\n - libimagequant-devel-0:2.12.6-3.fc33.ppc64le\n - xorg-x11-font-utils-1:7.5-45.fc33.i686\n - boost-numpy3-0:1.73.0-7.fc33.i686\n - tk-devel-1:8.6.10-5.fc33.i686\n - boost-doc-0:1.73.0-7.fc33.i686\n - gsound-0:1.0.2-12.fc33.armv7hl\n - boost-python3-0:1.73.0-7.fc33.aarch64\n - libdazzle-0:3.38.0-1.fc33.s390x\n - geocode-glib-devel-0:3.26.2-2.fc33.ppc64le\n - openblas-openmp64_-0:0.3.10-6.fc33.x86_64\n - openjpeg2-tools-0:2.3.1-7.fc33.s390x\n - libgs-0:9.53.1-2.fc33.s390x\n - urw-base35-fonts-0:20170801-16.fc33.noarch\n - compat-wxGTK3-gtk2-gl-0:3.0.5.1-2.fc33.ppc64le\n - compat-wxGTK3-gtk2-media-0:3.0.5.1-2.fc33.aarch64\n - tk-devel-1:8.6.10-5.fc33.armv7hl\n - libphonenumber-devel-0:8.12.7-1.fc33.armv7hl\n - boost-test-0:1.73.0-7.fc33.ppc64le\n - wxGTK3-gl-0:3.0.5.1-2.fc33.armv7hl\n - libgweather-0:3.36.1-3.fc33.ppc64le\n - tix-devel-1:8.4.3-29.fc33.x86_64\n - tix-doc-1:8.4.3-29.fc33.x86_64\n - libraqm-devel-0:0.7.0-6.fc33.aarch64\n - protobuf-devel-0:3.12.4-1.fc33.x86_64\n - atkmm-devel-0:2.24.3-6.fc33.ppc64le\n - libgs-0:9.53.1-2.fc33.armv7hl\n - ghostscript-core-0:9.53.1-2.fc33.aarch64\n - protobuf-0:3.12.4-1.fc33.armv7hl\n - tix-doc-1:8.4.3-29.fc33.armv7hl\n - gd-progs-0:2.3.0-3.fc33.x86_64\n - SDL-devel-0:1.2.15-45.fc33.s390x\n - gd-devel-0:2.3.0-3.fc33.s390x\n - glibmm24-0:2.64.2-4.fc33.aarch64\n - boost-timer-0:1.73.0-7.fc33.ppc64le\n - libical-glib-0:3.0.8-5.fc33.ppc64le\n - evolution-data-server-perl-0:3.38.1-1.fc33.ppc64le\n - boost-devel-0:1.73.0-7.fc33.armv7hl\n - tix-devel-1:8.4.3-29.fc33.s390x\n - openblas-threads-0:0.3.10-6.fc33.ppc64le\n - compat-wxGTK3-gtk2-0:3.0.5.1-2.fc33.s390x\n - libimagequant-0:2.12.6-3.fc33.armv7hl\n - boost-python3-0:1.73.0-7.fc33.x86_64\n - tcl-devel-1:8.6.10-5.fc33.armv7hl\n - poppler-cpp-devel-0:0.90.0-6.fc33.aarch64\n - gsl-0:2.6-3.fc33.ppc64le\n - boost-serialization-0:1.73.0-7.fc33.aarch64\n - SDL_image-0:1.2.12-25.fc33.x86_64\n - flatpak-rpm-macros-0:33-2.fc33.i686\n - geocode-glib-0:3.26.2-2.fc33.i686\n - openblas-serial-0:0.3.10-6.fc33.ppc64le\n - libimagequant-0:2.12.6-3.fc33.s390x\n - ghostscript-tools-printing-0:9.53.1-2.fc33.aarch64\n - wxGTK3-0:3.0.5.1-2.fc33.x86_64\n - python2.7-0:2.7.18-6.fc33.armv7hl\n - wxBase3-0:3.0.5.1-2.fc33.ppc64le\n - libmspack-0:0.10.1-0.4.alpha.fc33.ppc64le\n - ghostscript-tools-dvipdf-0:9.53.1-2.fc33.armv7hl\n - libmspack-0:0.10.1-0.4.alpha.fc33.x86_64\n - SDL_image-0:1.2.12-25.fc33.i686\n - polkit-devel-0:0.117-2.fc33.s390x\n - urw-base35-z003-fonts-0:20170801-16.fc33.noarch\n - glew-devel-0:2.1.0-8.fc33.ppc64le\n - boost-build-0:1.73.0-7.fc33.noarch\n - SDL-static-0:1.2.15-45.fc33.armv7hl\n - polkit-devel-0:0.117-2.fc33.aarch64\n - libfontenc-devel-0:1.1.3-13.fc33.armv7hl\n - boost-b2-0:1.73.0-7.fc33.i686\n - jbig2dec-0:0.19-2.fc33.i686\n - boost-doc-0:1.73.0-7.fc33.aarch64\n - glew-devel-0:2.1.0-8.fc33.x86_64\n - evolution-data-server-devel-0:3.38.1-1.fc33.i686\n - geocode-glib-devel-0:3.26.2-2.fc33.aarch64\n - poppler-utils-0:0.90.0-6.fc33.s390x\n - openblas-devel-0:0.3.10-6.fc33.aarch64\n - boost-context-0:1.73.0-7.fc33.x86_64\n - libdazzle-devel-0:3.38.0-1.fc33.ppc64le\n - libmspack-devel-0:0.10.1-0.4.alpha.fc33.aarch64\n - startup-notification-devel-0:0.12-20.fc33.armv7hl\n - startup-notification-0:0.12-20.fc33.x86_64\n - boost-math-0:1.73.0-7.fc33.armv7hl\n - boost-test-0:1.73.0-7.fc33.aarch64\n - libical-glib-devel-0:3.0.8-5.fc33.armv7hl\n - wxGTK3-devel-0:3.0.5.1-2.fc33.aarch64\n - libical-glib-devel-0:3.0.8-5.fc33.ppc64le\n - boost-type_erasure-0:1.73.0-7.fc33.x86_64\n - SDL_image-devel-0:1.2.12-25.fc33.s390x\n - protobuf-devel-0:3.12.4-1.fc33.i686\n - protobuf-devel-0:3.12.4-1.fc33.aarch64\n - cairomm-0:1.12.0-13.fc33.armv7hl\n - boost-nowide-0:1.73.0-7.fc33.x86_64\n - boost-0:1.73.0-7.fc33.x86_64\n - libdazzle-devel-0:3.38.0-1.fc33.aarch64\n - libpeas-0:1.28.0-1.fc33.aarch64\n - gnome-desktop3-0:3.38.1-1.fc33.x86_64\n - boost-date-time-0:1.73.0-7.fc33.i686\n - gnome-online-accounts-devel-0:3.37.90-1.fc33.ppc64le\n - gspell-0:1.8.4-1.fc33.ppc64le\n - boost-iostreams-0:1.73.0-7.fc33.i686\n - gd-0:2.3.0-3.fc33.i686\n - OpenEXR-devel-0:2.3.0-6.fc33.x86_64\n - OpenEXR-devel-0:2.3.0-6.fc33.aarch64\n - OpenEXR-libs-0:2.3.0-6.fc33.s390x\n - ghostscript-tools-fonts-0:9.53.1-2.fc33.ppc64le\n - atkmm-devel-0:2.24.3-6.fc33.i686\n - boost-log-0:1.73.0-7.fc33.armv7hl\n - wxGTK3-media-0:3.0.5.1-2.fc33.i686\n - protobuf-devel-0:3.12.4-1.fc33.ppc64le\n - gtksourceview3-tests-0:3.24.11-4.fc33.x86_64\n - boost-stacktrace-0:1.73.0-7.fc33.i686\n - atkmm-0:2.24.3-6.fc33.i686\n - libical-0:3.0.8-5.fc33.s390x\n - libidn-0:1.36-1.fc33.i686\n - boost-date-time-0:1.73.0-7.fc33.s390x\n - compat-wxGTK3-gtk2-gl-0:3.0.5.1-2.fc33.x86_64\n - libidn-devel-0:1.36-1.fc33.armv7hl\n - tix-1:8.4.3-29.fc33.armv7hl\n - libwmf-devel-0:0.2.12-4.fc33.i686\n - libmspack-0:0.10.1-0.4.alpha.fc33.aarch64\n - tk-1:8.6.10-5.fc33.s390x\n - boost-fiber-0:1.73.0-7.fc33.aarch64\n - boost-graph-0:1.73.0-7.fc33.ppc64le\n - libijs-0:0.35-12.fc33.i686\n - libdazzle-0:3.38.0-1.fc33.i686\n - polkit-0:0.117-2.fc33.ppc64le\n - libgweather-devel-0:3.36.1-3.fc33.ppc64le\n - libhandy1-devel-0:1.0.0-2.fc33.ppc64le\n - openblas-openmp-0:0.3.10-6.fc33.x86_64\n - gd-devel-0:2.3.0-3.fc33.x86_64\n - boost-fiber-0:1.73.0-7.fc33.x86_64\n - cairomm-0:1.12.0-13.fc33.i686\n - protobuf-lite-0:3.12.4-1.fc33.x86_64\n - libidn-0:1.36-1.fc33.ppc64le\n - libpeas-0:1.28.0-1.fc33.armv7hl\n - ghostscript-x11-0:9.53.1-2.fc33.s390x\n - wxBase3-devel-0:3.0.5.1-2.fc33.s390x\n - openblas-serial-0:0.3.10-6.fc33.aarch64\n - jbig2dec-devel-0:0.19-2.fc33.aarch64\n - protobuf-java-0:3.12.4-1.fc33.noarch\n - wxGTK3-devel-0:3.0.5.1-2.fc33.x86_64\n - polkit-devel-0:0.117-2.fc33.x86_64\n - opengl-games-utils-0:0.2-18.fc33.noarch\n - compat-wxGTK3-gtk2-devel-0:3.0.5.1-2.fc33.x86_64\n - boost-doctools-0:1.73.0-7.fc33.i686\n - libijs-devel-0:0.35-12.fc33.x86_64\n - gspell-0:1.8.4-1.fc33.i686\n - ghostscript-x11-0:9.53.1-2.fc33.i686\n - ghostscript-tools-dvipdf-0:9.53.1-2.fc33.aarch64\n - boost-math-0:1.73.0-7.fc33.s390x\n - poppler-cpp-devel-0:0.90.0-6.fc33.i686\n - boost-doctools-0:1.73.0-7.fc33.aarch64\n - poppler-0:0.90.0-6.fc33.i686\n - poppler-0:0.90.0-6.fc33.armv7hl\n - boost-numpy3-0:1.73.0-7.fc33.x86_64\n - libpaper-devel-0:1.1.24-28.fc33.aarch64\n - boost-wave-0:1.73.0-7.fc33.i686\n - tcl-1:8.6.10-5.fc33.x86_64\n - gnome-online-accounts-devel-0:3.37.90-1.fc33.i686\n - compat-wxGTK3-gtk2-devel-0:3.0.5.1-2.fc33.i686\n - openblas-devel-0:0.3.10-6.fc33.x86_64\n - poppler-0:0.90.0-6.fc33.ppc64le\n - boost-serialization-0:1.73.0-7.fc33.x86_64\n - gsl-0:2.6-3.fc33.i686\n - OpenEXR-doc-0:2.3.0-6.fc33.armv7hl\n - SDL-0:1.2.15-45.fc33.x86_64\n - protobuf-compiler-0:3.12.4-1.fc33.aarch64\n - boost-context-0:1.73.0-7.fc33.armv7hl\n - poppler-qt5-devel-0:0.90.0-6.fc33.i686\n - gnome-desktop3-devel-0:3.38.1-1.fc33.s390x\n - compat-wxGTK3-gtk2-devel-0:3.0.5.1-2.fc33.armv7hl\n - gd-0:2.3.0-3.fc33.s390x\n - liboauth-devel-0:1.0.3-15.fc33.ppc64le\n - cairomm-0:1.12.0-13.fc33.ppc64le\n - ghostscript-0:9.53.1-2.fc33.ppc64le\n - libraqm-0:0.7.0-6.fc33.x86_64\n - compat-wxGTK3-gtk2-media-0:3.0.5.1-2.fc33.s390x\n - openblas-static-0:0.3.10-6.fc33.armv7hl\n - startup-notification-devel-0:0.12-20.fc33.ppc64le\n - boost-0:1.73.0-7.fc33.ppc64le\n - pangomm-0:2.42.1-2.fc33.armv7hl\n - startup-notification-0:0.12-20.fc33.ppc64le\n - libijs-doc-0:0.35-12.fc33.noarch\n - openjpeg2-0:2.3.1-7.fc33.aarch64\n - evolution-data-server-tests-0:3.38.1-1.fc33.i686\n - libmspack-devel-0:0.10.1-0.4.alpha.fc33.x86_64\n - boost-wave-0:1.73.0-7.fc33.aarch64\n - gtksourceview3-0:3.24.11-4.fc33.armv7hl\n - tix-doc-1:8.4.3-29.fc33.i686\n - gspell-0:1.8.4-1.fc33.x86_64\n - poppler-glib-devel-0:0.90.0-6.fc33.armv7hl\n - SDL_image-0:1.2.12-25.fc33.aarch64\n - protobuf-lite-devel-0:3.12.4-1.fc33.i686\n - boost-test-0:1.73.0-7.fc33.s390x\n - boost-chrono-0:1.73.0-7.fc33.armv7hl\n - libpeas-0:1.28.0-1.fc33.x86_64\n - protobuf-javalite-0:3.12.4-1.fc33.noarch\n - poppler-cpp-devel-0:0.90.0-6.fc33.ppc64le\n - libwmf-lite-0:0.2.12-4.fc33.x86_64\n - gspell-0:1.8.4-1.fc33.aarch64\n - libical-devel-0:3.0.8-5.fc33.s390x\n - geocode-glib-devel-0:3.26.2-2.fc33.i686\n - wxGTK3-gl-0:3.0.5.1-2.fc33.s390x\n - openblas-threads64-0:0.3.10-6.fc33.s390x\n - gnome-online-accounts-0:3.37.90-1.fc33.ppc64le\n - libpaper-0:1.1.24-28.fc33.armv7hl\n - openblas-openmp64-0:0.3.10-6.fc33.aarch64\n - pangomm-devel-0:2.42.1-2.fc33.ppc64le\n - glibmm24-doc-0:2.64.2-4.fc33.noarch\n - glibmm24-0:2.64.2-4.fc33.ppc64le\n - tix-1:8.4.3-29.fc33.x86_64\n - wxGTK3-webview-0:3.0.5.1-2.fc33.ppc64le\n - libdazzle-0:3.38.0-1.fc33.aarch64\n - libical-glib-devel-0:3.0.8-5.fc33.x86_64\n - tcl-devel-1:8.6.10-5.fc33.ppc64le\n - protobuf-lite-devel-0:3.12.4-1.fc33.aarch64\n - libical-glib-0:3.0.8-5.fc33.aarch64\n - gnome-online-accounts-0:3.37.90-1.fc33.x86_64\n - boost-timer-0:1.73.0-7.fc33.x86_64\n - gsound-devel-0:1.0.2-12.fc33.aarch64\n - boost-container-0:1.73.0-7.fc33.armv7hl\n - libphonenumber-devel-0:8.12.7-1.fc33.aarch64\n - tcl-1:8.6.10-5.fc33.i686\n - ghostscript-doc-0:9.53.1-2.fc33.noarch\n - libraqm-0:0.7.0-6.fc33.armv7hl\n - jbig2dec-0:0.19-2.fc33.ppc64le\n - libpeas-0:1.28.0-1.fc33.s390x\n - gd-0:2.3.0-3.fc33.aarch64\n - compat-wxGTK3-gtk2-gl-0:3.0.5.1-2.fc33.i686\n - libgdata-0:0.17.13-1.fc33.s390x\n - wxGTK3-media-0:3.0.5.1-2.fc33.aarch64\n - tix-devel-1:8.4.3-29.fc33.aarch64\n - python2.7-0:2.7.18-6.fc33.i686\n - flatpak-runtime-config-0:33-1.fc33.ppc64le\n - libimagequant-devel-0:2.12.6-3.fc33.armv7hl\n - boost-nowide-0:1.73.0-7.fc33.aarch64\n - ghostscript-core-0:9.53.1-2.fc33.i686\n - evolution-data-server-devel-0:3.38.1-1.fc33.armv7hl\n - openjpeg2-tools-0:2.3.1-7.fc33.ppc64le\n - boost-b2-0:1.73.0-7.fc33.ppc64le\n - boost-fiber-0:1.73.0-7.fc33.armv7hl\n - gtksourceview3-devel-0:3.24.11-4.fc33.aarch64\n - boost-python3-0:1.73.0-7.fc33.s390x\n - cairomm-0:1.12.0-13.fc33.aarch64\n - boost-locale-0:1.73.0-7.fc33.i686\n - libmspack-0:0.10.1-0.4.alpha.fc33.i686\n - OpenEXR-devel-0:2.3.0-6.fc33.s390x\n - cairomm-devel-0:1.12.0-13.fc33.i686\n - libical-glib-doc-0:3.0.8-5.fc33.noarch\n - boost-fiber-0:1.73.0-7.fc33.ppc64le\n - urw-base35-nimbus-sans-fonts-0:20170801-16.fc33.noarch\n - gspell-devel-0:1.8.4-1.fc33.s390x\n - ghostscript-tools-printing-0:9.53.1-2.fc33.s390x\n - openblas-serial-0:0.3.10-6.fc33.i686\n - compat-wxGTK3-gtk2-media-0:3.0.5.1-2.fc33.i686\n - libpaper-devel-0:1.1.24-28.fc33.s390x\n - polkit-libs-0:0.117-2.fc33.ppc64le\n - gsound-0:1.0.2-12.fc33.s390x\n - libidn-devel-0:1.36-1.fc33.ppc64le\n - boost-chrono-0:1.73.0-7.fc33.x86_64\n - openblas-static-0:0.3.10-6.fc33.ppc64le\n - dbus-glib-0:0.110-7.fc32.armv7hl\n - gd-0:2.3.0-3.fc33.ppc64le\n - libgdata-devel-0:0.17.13-1.fc33.x86_64\n - urw-base35-p052-fonts-0:20170801-16.fc33.noarch\n - boost-timer-0:1.73.0-7.fc33.aarch64\n - boost-locale-0:1.73.0-7.fc33.x86_64\n - jbig2dec-devel-0:0.19-2.fc33.i686\n - polkit-0:0.117-2.fc33.i686\n - libfontenc-devel-0:1.1.3-13.fc33.x86_64\n - gnome-desktop3-devel-0:3.38.1-1.fc33.ppc64le\n - SDL-devel-0:1.2.15-45.fc33.ppc64le\n - openblas-serial-0:0.3.10-6.fc33.x86_64\n - atkmm-devel-0:2.24.3-6.fc33.armv7hl\n - poppler-glib-devel-0:0.90.0-6.fc33.ppc64le\n - pangomm-0:2.42.1-2.fc33.aarch64\n - gsl-0:2.6-3.fc33.x86_64\n - openjpeg2-devel-0:2.3.1-7.fc33.ppc64le\n - dbus-glib-devel-0:0.110-7.fc32.x86_64\n - openblas-serial64_-0:0.3.10-6.fc33.x86_64\n - libdazzle-devel-0:3.38.0-1.fc33.i686\n - boost-stacktrace-0:1.73.0-7.fc33.s390x\n - exiv2-0:0.27.3-4.fc33.armv7hl\n - poppler-cpp-0:0.90.0-6.fc33.aarch64\n - libphonenumber-devel-0:8.12.7-1.fc33.i686\n - gsound-devel-0:1.0.2-12.fc33.x86_64\n - compat-wxGTK3-gtk2-media-0:3.0.5.1-2.fc33.x86_64\n - libpeas-gtk-0:1.28.0-1.fc33.armv7hl\n - libpaper-0:1.1.24-28.fc33.s390x\n - openblas-threads64-0:0.3.10-6.fc33.ppc64le\n - libijs-0:0.35-12.fc33.ppc64le\n - glibmm24-devel-0:2.64.2-4.fc33.aarch64\n - libgs-devel-0:9.53.1-2.fc33.ppc64le\n - libijs-devel-0:0.35-12.fc33.ppc64le\n - poppler-cpp-devel-0:0.90.0-6.fc33.x86_64\n - gsl-devel-0:2.6-3.fc33.x86_64\n - dbus-glib-0:0.110-7.fc32.s390x\n - flatpak-runtime-config-0:33-1.fc33.s390x\n - openblas-static-0:0.3.10-6.fc33.x86_64\n - gsound-devel-0:1.0.2-12.fc33.i686\n - compat-wxGTK3-gtk2-0:3.0.5.1-2.fc33.armv7hl\n - boost-regex-0:1.73.0-7.fc33.x86_64\n - gnome-desktop3-tests-0:3.38.1-1.fc33.s390x\n - exiv2-doc-0:0.27.3-4.fc33.noarch\n - openblas-serial64-0:0.3.10-6.fc33.aarch64\n - exiv2-devel-0:0.27.3-4.fc33.armv7hl\n - gd-progs-0:2.3.0-3.fc33.s390x\n - poppler-glib-devel-0:0.90.0-6.fc33.i686\n - startup-notification-devel-0:0.12-20.fc33.i686\n - poppler-qt-devel-0:0.90.0-6.fc33.armv7hl\n - ghostscript-tools-printing-0:9.53.1-2.fc33.x86_64\n - evolution-data-server-tests-0:3.38.1-1.fc33.x86_64\n - libmspack-devel-0:0.10.1-0.4.alpha.fc33.s390x\n - libgs-0:9.53.1-2.fc33.aarch64\n - tk-1:8.6.10-5.fc33.i686\n - openblas-openmp-0:0.3.10-6.fc33.i686\n - wxBase3-0:3.0.5.1-2.fc33.aarch64\n - compat-wxGTK3-gtk2-devel-0:3.0.5.1-2.fc33.s390x\n - poppler-qt5-0:0.90.0-6.fc33.aarch64\n - liboauth-0:1.0.3-15.fc33.ppc64le\n - libphonenumber-0:8.12.7-1.fc33.x86_64\n - openblas-serial64_-0:0.3.10-6.fc33.ppc64le\n - SDL-static-0:1.2.15-45.fc33.x86_64\n - exiv2-0:0.27.3-4.fc33.aarch64\n - boost-python3-0:1.73.0-7.fc33.ppc64le\n - boost-program-options-0:1.73.0-7.fc33.s390x\n - google-droid-sans-fonts-0:20200215-8.fc33.noarch\n - boost-doctools-0:1.73.0-7.fc33.armv7hl\n - boost-contract-0:1.73.0-7.fc33.aarch64\n - jbig2dec-0:0.19-2.fc33.s390x\n - boost-b2-0:1.73.0-7.fc33.s390x\n - boost-date-time-0:1.73.0-7.fc33.ppc64le\n - libgdata-0:0.17.13-1.fc33.i686\n - poppler-qt5-devel-0:0.90.0-6.fc33.ppc64le\n - protobuf-lite-0:3.12.4-1.fc33.armv7hl\n - glibmm24-0:2.64.2-4.fc33.s390x\n - flatpak-rpm-macros-0:33-2.fc33.aarch64\n - dbus-glib-0:0.110-7.fc32.aarch64\n - OpenEXR-libs-0:2.3.0-6.fc33.i686\n - libsigc++20-0:2.10.4-1.fc33.armv7hl\n - protobuf-javadoc-0:3.12.4-1.fc33.noarch\n - gsound-devel-0:1.0.2-12.fc33.ppc64le\n - libpeas-loader-python3-0:1.28.0-1.fc33.x86_64\n - xorg-x11-font-utils-1:7.5-45.fc33.aarch64\n - libwmf-0:0.2.12-4.fc33.i686\n - gnome-desktop3-devel-0:3.38.1-1.fc33.x86_64\n - wxGTK3-webview-0:3.0.5.1-2.fc33.i686\n - ilmbase-devel-0:2.3.0-5.fc33.s390x\n - evolution-data-server-0:3.38.1-1.fc33.armv7hl\n - libfontenc-devel-0:1.1.3-13.fc33.i686\n - boost-thread-0:1.73.0-7.fc33.s390x\n - poppler-glib-0:0.90.0-6.fc33.i686\n - boost-coroutine-0:1.73.0-7.fc33.i686\n - libsigc++20-0:2.10.4-1.fc33.i686\n - gsl-devel-0:2.6-3.fc33.s390x\n - libphonenumber-devel-0:8.12.7-1.fc33.ppc64le\n - tcl-1:8.6.10-5.fc33.s390x\n - boost-numpy3-0:1.73.0-7.fc33.armv7hl\n - exiv2-devel-0:0.27.3-4.fc33.x86_64\n - boost-system-0:1.73.0-7.fc33.s390x\n - evolution-data-server-tests-0:3.38.1-1.fc33.ppc64le\n - libsigc++20-devel-0:2.10.4-1.fc33.aarch64\n - boost-atomic-0:1.73.0-7.fc33.armv7hl\n - gspell-0:1.8.4-1.fc33.s390x\n - protobuf-0:3.12.4-1.fc33.ppc64le\n - ghostscript-tools-printing-0:9.53.1-2.fc33.armv7hl\n - ilmbase-devel-0:2.3.0-5.fc33.armv7hl\n - boost-contract-0:1.73.0-7.fc33.s390x\n - tix-devel-1:8.4.3-29.fc33.i686\n - libgweather-devel-0:3.36.1-3.fc33.s390x\n - libdazzle-0:3.38.0-1.fc33.armv7hl\n - OpenEXR-libs-0:2.3.0-6.fc33.armv7hl\n - poppler-qt5-devel-0:0.90.0-6.fc33.s390x\n - boost-wave-0:1.73.0-7.fc33.x86_64\n - poppler-0:0.90.0-6.fc33.s390x\n - libgdata-0:0.17.13-1.fc33.armv7hl\n - libhandy1-devel-0:1.0.0-2.fc33.x86_64\n - openjpeg2-devel-docs-0:2.3.1-7.fc33.noarch\n - openblas-static-0:0.3.10-6.fc33.i686\n - xorg-x11-font-utils-1:7.5-45.fc33.s390x\n - poppler-qt-devel-0:0.90.0-6.fc33.s390x\n - dbus-glib-devel-0:0.110-7.fc32.i686\n - atkmm-devel-0:2.24.3-6.fc33.s390x\n - libgs-devel-0:9.53.1-2.fc33.x86_64\n - libpaper-0:1.1.24-28.fc33.ppc64le\n - libimagequant-devel-0:2.12.6-3.fc33.aarch64\n - exiv2-devel-0:0.27.3-4.fc33.i686\n - boost-random-0:1.73.0-7.fc33.ppc64le\n - libgweather-devel-0:3.36.1-3.fc33.x86_64\n - tix-1:8.4.3-29.fc33.ppc64le\n - boost-filesystem-0:1.73.0-7.fc33.aarch64\n - dbus-glib-devel-0:0.110-7.fc32.armv7hl\n - libical-devel-0:3.0.8-5.fc33.armv7hl\n - poppler-qt5-0:0.90.0-6.fc33.ppc64le\n - compat-wxGTK3-gtk2-gl-0:3.0.5.1-2.fc33.aarch64\n - gnome-desktop3-0:3.38.1-1.fc33.armv7hl\n - boost-examples-0:1.73.0-7.fc33.x86_64\n - boost-serialization-0:1.73.0-7.fc33.armv7hl\n - boost-examples-0:1.73.0-7.fc33.i686\n - libijs-devel-0:0.35-12.fc33.s390x\n - libgdata-devel-0:0.17.13-1.fc33.s390x\n - wxGTK3-0:3.0.5.1-2.fc33.s390x\n - openjpeg2-0:2.3.1-7.fc33.ppc64le\n - openblas-openmp-0:0.3.10-6.fc33.armv7hl\n - libwmf-devel-0:0.2.12-4.fc33.x86_64\n - gnome-desktop3-tests-0:3.38.1-1.fc33.armv7hl\n - compat-wxGTK3-gtk2-0:3.0.5.1-2.fc33.i686\n - boost-timer-0:1.73.0-7.fc33.i686\n - openblas-devel-0:0.3.10-6.fc33.i686\n - glew-0:2.1.0-8.fc33.i686\n - gtksourceview3-0:3.24.11-4.fc33.ppc64le\n - boost-log-0:1.73.0-7.fc33.aarch64\n - geocode-glib-0:3.26.2-2.fc33.aarch64\n - compat-wxGTK3-gtk2-devel-0:3.0.5.1-2.fc33.aarch64\n - libical-glib-0:3.0.8-5.fc33.i686\n - poppler-qt-0:0.90.0-6.fc33.s390x\n - atkmm-0:2.24.3-6.fc33.armv7hl\n - polkit-libs-0:0.117-2.fc33.i686\n - wxBase3-0:3.0.5.1-2.fc33.i686\n - boost-system-0:1.73.0-7.fc33.x86_64\n - ilmbase-devel-0:2.3.0-5.fc33.x86_64\n - evolution-data-server-0:3.38.1-1.fc33.s390x\n - tcl-devel-1:8.6.10-5.fc33.x86_64\n - startup-notification-0:0.12-20.fc33.aarch64\n - atkmm-devel-0:2.24.3-6.fc33.aarch64\n - gsl-0:2.6-3.fc33.aarch64\n - libsigc++20-devel-0:2.10.4-1.fc33.armv7hl\n - adobe-mappings-cmap-0:20171205-9.fc33.noarch\n - libgdata-devel-0:0.17.13-1.fc33.aarch64\n - SDL_image-devel-0:1.2.12-25.fc33.x86_64\n - SDL-static-0:1.2.15-45.fc33.aarch64\n - boost-chrono-0:1.73.0-7.fc33.s390x\n - poppler-glib-devel-0:0.90.0-6.fc33.aarch64\n - exiv2-devel-0:0.27.3-4.fc33.s390x\n - gnome-online-accounts-devel-0:3.37.90-1.fc33.armv7hl\n - poppler-glib-doc-0:0.90.0-6.fc33.noarch\n - libmspack-devel-0:0.10.1-0.4.alpha.fc33.armv7hl\n - libraqm-0:0.7.0-6.fc33.aarch64\n - OpenEXR-0:2.3.0-6.fc33.aarch64\n - evolution-data-server-perl-0:3.38.1-1.fc33.i686\n - ghostscript-tools-fonts-0:9.53.1-2.fc33.armv7hl\n - gnome-desktop3-tests-0:3.38.1-1.fc33.ppc64le\n - libwmf-lite-0:0.2.12-4.fc33.s390x\n - gtkmm30-devel-0:3.24.2-3.fc33.ppc64le\n - cairomm-0:1.12.0-13.fc33.s390x\n - libical-glib-devel-0:3.0.8-5.fc33.s390x\n - libpeas-devel-0:1.28.0-1.fc33.ppc64le\n - boost-type_erasure-0:1.73.0-7.fc33.i686\n - gsl-0:2.6-3.fc33.armv7hl\n - jbig2dec-devel-0:0.19-2.fc33.x86_64\n - boost-coroutine-0:1.73.0-7.fc33.x86_64\n - boost-regex-0:1.73.0-7.fc33.i686\n - libgs-devel-0:9.53.1-2.fc33.armv7hl\n - libwmf-devel-0:0.2.12-4.fc33.s390x\n - protobuf-compiler-0:3.12.4-1.fc33.s390x\n - xorg-x11-font-utils-1:7.5-45.fc33.x86_64\n - gtksourceview3-devel-0:3.24.11-4.fc33.s390x\n - boost-static-0:1.73.0-7.fc33.aarch64\n - boost-doctools-0:1.73.0-7.fc33.ppc64le\n - libphonenumber-0:8.12.7-1.fc33.aarch64\n - ghostscript-tools-printing-0:9.53.1-2.fc33.i686\n - jbig2dec-libs-0:0.19-2.fc33.s390x\n - boost-math-0:1.73.0-7.fc33.i686\n - libical-glib-0:3.0.8-5.fc33.s390x\n - jbig2dec-libs-0:0.19-2.fc33.armv7hl\n - libical-glib-0:3.0.8-5.fc33.x86_64\n - libhandy1-0:1.0.0-2.fc33.x86_64\n - boost-filesystem-0:1.73.0-7.fc33.i686\n - poppler-qt5-devel-0:0.90.0-6.fc33.x86_64\n - ilmbase-0:2.3.0-5.fc33.x86_64\n - libfontenc-devel-0:1.1.3-13.fc33.aarch64\n - tcl-devel-1:8.6.10-5.fc33.i686\n - poppler-glib-devel-0:0.90.0-6.fc33.s390x\n - ghostscript-0:9.53.1-2.fc33.i686\n - libgweather-0:3.36.1-3.fc33.x86_64\n - glibmm24-0:2.64.2-4.fc33.armv7hl\n - libpeas-devel-0:1.28.0-1.fc33.s390x\n - libgdata-0:0.17.13-1.fc33.ppc64le\n - boost-regex-0:1.73.0-7.fc33.aarch64\n - gnome-online-accounts-0:3.37.90-1.fc33.aarch64\n - google-droid-serif-fonts-0:20200215-8.fc33.noarch\n - libhandy1-devel-0:1.0.0-2.fc33.aarch64\n - boost-stacktrace-0:1.73.0-7.fc33.armv7hl\n - gtkmm30-devel-0:3.24.2-3.fc33.i686\n - exiv2-libs-0:0.27.3-4.fc33.aarch64\n - ghostscript-tools-dvipdf-0:9.53.1-2.fc33.ppc64le\n - atkmm-0:2.24.3-6.fc33.s390x\n - openjpeg2-tools-0:2.3.1-7.fc33.aarch64\n - tix-doc-1:8.4.3-29.fc33.ppc64le\n - boost-date-time-0:1.73.0-7.fc33.armv7hl\n - wxGTK3-webview-0:3.0.5.1-2.fc33.x86_64\n - boost-contract-0:1.73.0-7.fc33.armv7hl\n - libical-devel-0:3.0.8-5.fc33.aarch64\n - libsigc++20-0:2.10.4-1.fc33.x86_64\n - exiv2-0:0.27.3-4.fc33.x86_64\n - flatpak-runtime-config-0:33-1.fc33.aarch64\n - protobuf-lite-0:3.12.4-1.fc33.aarch64\n - wxBase3-devel-0:3.0.5.1-2.fc33.x86_64\n - openjpeg2-0:2.3.1-7.fc33.x86_64\n - pangomm-0:2.42.1-2.fc33.i686\n - openjpeg2-devel-0:2.3.1-7.fc33.armv7hl\n - SDL_image-devel-0:1.2.12-25.fc33.aarch64\n - tix-doc-1:8.4.3-29.fc33.aarch64\n - boost-type_erasure-0:1.73.0-7.fc33.ppc64le\n - ilmbase-0:2.3.0-5.fc33.armv7hl\n - openblas-0:0.3.10-6.fc33.armv7hl\n - libimagequant-0:2.12.6-3.fc33.ppc64le\n - tcl-doc-1:8.6.10-5.fc33.noarch\n - boost-program-options-0:1.73.0-7.fc33.aarch64\n - boost-atomic-0:1.73.0-7.fc33.x86_64\n - ilmbase-devel-0:2.3.0-5.fc33.aarch64\n - gtksourceview3-tests-0:3.24.11-4.fc33.armv7hl\n - OpenEXR-libs-0:2.3.0-6.fc33.aarch64\n - poppler-qt-0:0.90.0-6.fc33.x86_64\n - exiv2-libs-0:0.27.3-4.fc33.i686\n - protobuf-lite-static-0:3.12.4-1.fc33.s390x\n - libijs-0:0.35-12.fc33.aarch64\n - libpaper-devel-0:1.1.24-28.fc33.armv7hl\n - exiv2-0:0.27.3-4.fc33.ppc64le\n - boost-python3-0:1.73.0-7.fc33.i686\n - openblas-serial64_-0:0.3.10-6.fc33.s390x\n - boost-doc-0:1.73.0-7.fc33.s390x\n - dbus-glib-devel-0:0.110-7.fc32.aarch64\n - libpeas-0:1.28.0-1.fc33.i686\n - boost-random-0:1.73.0-7.fc33.armv7hl\n - ghostscript-0:9.53.1-2.fc33.armv7hl\n - libsigc++20-devel-0:2.10.4-1.fc33.s390x\n - boost-devel-0:1.73.0-7.fc33.s390x\n - python3-protobuf-0:3.12.4-1.fc33.noarch\n - flatpak-rpm-macros-0:33-2.fc33.ppc64le\n - boost-thread-0:1.73.0-7.fc33.armv7hl\n - boost-container-0:1.73.0-7.fc33.s390x\n - protobuf-lite-static-0:3.12.4-1.fc33.armv7hl\n - tix-devel-1:8.4.3-29.fc33.ppc64le\n - pangomm-devel-0:2.42.1-2.fc33.s390x\n - startup-notification-0:0.12-20.fc33.s390x\n - libpeas-loader-python3-0:1.28.0-1.fc33.aarch64\n - libpeas-loader-python3-0:1.28.0-1.fc33.s390x\n - ilmbase-devel-0:2.3.0-5.fc33.ppc64le\n - boost-random-0:1.73.0-7.fc33.aarch64\n - OpenEXR-devel-0:2.3.0-6.fc33.ppc64le\n - SDL_image-0:1.2.12-25.fc33.armv7hl\n - poppler-data-0:0.4.9-6.fc33.noarch\n - poppler-utils-0:0.90.0-6.fc33.x86_64\n - poppler-devel-0:0.90.0-6.fc33.s390x\n - libGLEW-0:2.1.0-8.fc33.s390x\n - liboauth-devel-0:1.0.3-15.fc33.x86_64\n - boost-test-0:1.73.0-7.fc33.armv7hl\n - boost-wave-0:1.73.0-7.fc33.ppc64le\n - urw-base35-c059-fonts-0:20170801-16.fc33.noarch\n - compat-wxGTK3-gtk2-0:3.0.5.1-2.fc33.x86_64\n - gd-devel-0:2.3.0-3.fc33.aarch64\n - SDL-static-0:1.2.15-45.fc33.s390x\n - protobuf-lite-0:3.12.4-1.fc33.s390x\n - wxGTK3-gl-0:3.0.5.1-2.fc33.x86_64\n - geocode-glib-devel-0:3.26.2-2.fc33.armv7hl\n - libraqm-devel-0:0.7.0-6.fc33.ppc64le\n - dbus-glib-0:0.110-7.fc32.i686\n - exiv2-libs-0:0.27.3-4.fc33.s390x\n - OpenEXR-devel-0:2.3.0-6.fc33.i686\n - gtkmm30-devel-0:3.24.2-3.fc33.x86_64\n - protobuf-static-0:3.12.4-1.fc33.x86_64\n - libgweather-devel-0:3.36.1-3.fc33.i686\n - wxGTK3-devel-0:3.0.5.1-2.fc33.armv7hl\n - libpaper-0:1.1.24-28.fc33.i686\n - poppler-qt-0:0.90.0-6.fc33.armv7hl\n - glibmm24-devel-0:2.64.2-4.fc33.i686\n - boost-atomic-0:1.73.0-7.fc33.ppc64le\n - poppler-qt-devel-0:0.90.0-6.fc33.x86_64\n - jbig2dec-0:0.19-2.fc33.x86_64\n - libsigc++20-doc-0:2.10.4-1.fc33.noarch\n - geocode-glib-0:3.26.2-2.fc33.armv7hl\n - atkmm-0:2.24.3-6.fc33.x86_64\n - dbus-glib-0:0.110-7.fc32.x86_64\n - protobuf-devel-0:3.12.4-1.fc33.armv7hl\n - libidn-devel-0:1.36-1.fc33.x86_64\n - boost-doctools-0:1.73.0-7.fc33.s390x\n - gtksourceview3-0:3.24.11-4.fc33.aarch64\n - boost-system-0:1.73.0-7.fc33.ppc64le\n - openblas-openmp64_-0:0.3.10-6.fc33.aarch64\n - protobuf-lite-devel-0:3.12.4-1.fc33.s390x\n - OpenEXR-0:2.3.0-6.fc33.ppc64le\n - libhandy1-devel-0:1.0.0-2.fc33.s390x\n - evolution-data-server-tests-0:3.38.1-1.fc33.s390x\n - libraqm-0:0.7.0-6.fc33.i686\n - gsl-0:2.6-3.fc33.s390x\n - openjpeg2-tools-0:2.3.1-7.fc33.x86_64\n - OpenEXR-0:2.3.0-6.fc33.armv7hl\n - libijs-0:0.35-12.fc33.x86_64\n - pangomm-0:2.42.1-2.fc33.ppc64le\n - SDL_image-devel-0:1.2.12-25.fc33.armv7hl\n - boost-coroutine-0:1.73.0-7.fc33.s390x\n - ghostscript-gtk-0:9.53.1-2.fc33.armv7hl\n - libical-0:3.0.8-5.fc33.aarch64\n - dbus-glib-devel-0:0.110-7.fc32.ppc64le\n - wxBase3-0:3.0.5.1-2.fc33.armv7hl\n - evolution-data-server-devel-0:3.38.1-1.fc33.ppc64le\n - libijs-devel-0:0.35-12.fc33.i686\n - boost-doc-0:1.73.0-7.fc33.ppc64le\n - wxGTK3-gl-0:3.0.5.1-2.fc33.i686\n - libpaper-0:1.1.24-28.fc33.x86_64\n - adobe-mappings-pdf-0:20180407-7.fc33.noarch\n - libpeas-devel-0:1.28.0-1.fc33.aarch64\n - boost-log-0:1.73.0-7.fc33.i686\n - boost-system-0:1.73.0-7.fc33.aarch64\n - openblas-openmp-0:0.3.10-6.fc33.aarch64\n - boost-regex-0:1.73.0-7.fc33.s390x\n - geocode-glib-0:3.26.2-2.fc33.x86_64\n - openblas-threads64_-0:0.3.10-6.fc33.aarch64\n - boost-test-0:1.73.0-7.fc33.x86_64\n - poppler-glib-0:0.90.0-6.fc33.s390x\n - boost-filesystem-0:1.73.0-7.fc33.ppc64le\n - wxBase3-devel-0:3.0.5.1-2.fc33.armv7hl\n - boost-chrono-0:1.73.0-7.fc33.ppc64le\n - dbus-glib-0:0.110-7.fc32.ppc64le\n - openblas-serial-0:0.3.10-6.fc33.s390x\n - libraqm-devel-0:0.7.0-6.fc33.s390x\n - openblas-threads-0:0.3.10-6.fc33.aarch64\n - boost-b2-0:1.73.0-7.fc33.x86_64\n - libidn-java-0:1.36-1.fc33.noarch\n - libgweather-0:3.36.1-3.fc33.i686\n - tk-devel-1:8.6.10-5.fc33.ppc64le\n - boost-container-0:1.73.0-7.fc33.x86_64\n - libraqm-0:0.7.0-6.fc33.ppc64le\n - python2.7-0:2.7.18-6.fc33.aarch64\n - wxGTK3-devel-0:3.0.5.1-2.fc33.i686\n - libwmf-lite-0:0.2.12-4.fc33.i686\n - glew-devel-0:2.1.0-8.fc33.armv7hl\n - boost-examples-0:1.73.0-7.fc33.armv7hl\n - libimagequant-devel-0:2.12.6-3.fc33.i686\n - gnome-desktop3-tests-0:3.38.1-1.fc33.i686\n - openblas-static-0:0.3.10-6.fc33.aarch64\n - wxGTK3-devel-0:3.0.5.1-2.fc33.s390x\n - exiv2-libs-0:0.27.3-4.fc33.x86_64\n - boost-doc-0:1.73.0-7.fc33.x86_64\n - ghostscript-tools-dvipdf-0:9.53.1-2.fc33.x86_64\n - libwmf-lite-0:0.2.12-4.fc33.ppc64le\n - libpeas-loader-python3-0:1.28.0-1.fc33.armv7hl\n - gspell-devel-0:1.8.4-1.fc33.x86_64\n - wxGTK3-i18n-0:3.0.5.1-2.fc33.noarch\n - protobuf-lite-static-0:3.12.4-1.fc33.aarch64\n - tk-1:8.6.10-5.fc33.aarch64\n - boost-math-0:1.73.0-7.fc33.ppc64le\n - boost-devel-0:1.73.0-7.fc33.i686\n - protobuf-devel-0:3.12.4-1.fc33.s390x\n - glew-devel-0:2.1.0-8.fc33.aarch64\n - openblas-openmp64-0:0.3.10-6.fc33.s390x\n - evolution-data-server-perl-0:3.38.1-1.fc33.x86_64\n - libical-0:3.0.8-5.fc33.ppc64le\n - gtksourceview3-devel-0:3.24.11-4.fc33.armv7hl\n - boost-iostreams-0:1.73.0-7.fc33.x86_64\n - boost-context-0:1.73.0-7.fc33.ppc64le\n - gnome-desktop3-devel-0:3.38.1-1.fc33.aarch64\n - poppler-devel-0:0.90.0-6.fc33.aarch64\n - OpenEXR-0:2.3.0-6.fc33.i686\n - gtksourceview3-0:3.24.11-4.fc33.s390x\n - polkit-devel-0:0.117-2.fc33.armv7hl\n - cairomm-devel-0:1.12.0-13.fc33.s390x\n - libhandy1-devel-0:1.0.0-2.fc33.i686\n - libdazzle-0:3.38.0-1.fc33.x86_64\n - libGLEW-0:2.1.0-8.fc33.i686\n - openblas-static-0:0.3.10-6.fc33.s390x\n - glibmm24-devel-0:2.64.2-4.fc33.ppc64le\n - flatpak-runtime-config-0:33-1.fc33.armv7hl\n - evolution-data-server-langpacks-0:3.38.1-1.fc33.noarch\n - libimagequant-devel-0:2.12.6-3.fc33.s390x\n - gspell-devel-0:1.8.4-1.fc33.armv7hl\n - gnome-desktop3-devel-0:3.38.1-1.fc33.armv7hl\n - boost-iostreams-0:1.73.0-7.fc33.ppc64le\n - poppler-utils-0:0.90.0-6.fc33.aarch64\n - polkit-0:0.117-2.fc33.s390x\n - compat-wxGTK3-gtk2-media-0:3.0.5.1-2.fc33.ppc64le\n - libraqm-devel-0:0.7.0-6.fc33.i686\n - openblas-0:0.3.10-6.fc33.aarch64\n - libphonenumber-0:8.12.7-1.fc33.i686\n - urw-base35-nimbus-mono-ps-fonts-0:20170801-16.fc33.noarch\n - libimagequant-devel-0:2.12.6-3.fc33.x86_64\n - libmspack-devel-0:0.10.1-0.4.alpha.fc33.i686\n - boost-devel-0:1.73.0-7.fc33.x86_64\n - poppler-devel-0:0.90.0-6.fc33.x86_64\n - pangomm-0:2.42.1-2.fc33.x86_64\n - gtksourceview3-devel-0:3.24.11-4.fc33.x86_64\n - evolution-data-server-devel-0:3.38.1-1.fc33.s390x\n - boost-random-0:1.73.0-7.fc33.x86_64\n - boost-random-0:1.73.0-7.fc33.s390x\n - libidn-javadoc-0:1.36-1.fc33.noarch\n - boost-regex-0:1.73.0-7.fc33.ppc64le\n - libwmf-devel-0:0.2.12-4.fc33.aarch64\n - libidn-0:1.36-1.fc33.aarch64\n - openblas-devel-0:0.3.10-6.fc33.armv7hl\n - libsigc++20-0:2.10.4-1.fc33.ppc64le\n - libhandy1-0:1.0.0-2.fc33.i686\n - wxGTK3-media-0:3.0.5.1-2.fc33.ppc64le\n - gd-progs-0:2.3.0-3.fc33.armv7hl\n - gsl-devel-0:2.6-3.fc33.ppc64le\n - libhandy1-0:1.0.0-2.fc33.ppc64le\n - poppler-cpp-devel-0:0.90.0-6.fc33.s390x\n - boost-devel-0:1.73.0-7.fc33.ppc64le\n - boost-random-0:1.73.0-7.fc33.i686\n - boost-type_erasure-0:1.73.0-7.fc33.s390x\n - jbig2dec-libs-0:0.19-2.fc33.x86_64\n - protobuf-lite-devel-0:3.12.4-1.fc33.x86_64\n - protobuf-vim-0:3.12.4-1.fc33.noarch\n - boost-filesystem-0:1.73.0-7.fc33.x86_64\n - tk-1:8.6.10-5.fc33.ppc64le\n - libimagequant-0:2.12.6-3.fc33.aarch64\n - evolution-data-server-0:3.38.1-1.fc33.aarch64\n - libraqm-devel-0:0.7.0-6.fc33.x86_64\n - tcl-1:8.6.10-5.fc33.armv7hl\n - protobuf-lite-static-0:3.12.4-1.fc33.ppc64le\n - openjpeg2-devel-0:2.3.1-7.fc33.x86_64\n - poppler-cpp-devel-0:0.90.0-6.fc33.armv7hl\n - compat-wxGTK3-gtk2-devel-0:3.0.5.1-2.fc33.ppc64le\n - gtksourceview3-devel-0:3.24.11-4.fc33.i686\n - openblas-threads-0:0.3.10-6.fc33.armv7hl\n - boost-contract-0:1.73.0-7.fc33.ppc64le\n - libhandy1-0:1.0.0-2.fc33.aarch64\n - glew-devel-0:2.1.0-8.fc33.s390x\n - ghostscript-gtk-0:9.53.1-2.fc33.i686\n - gspell-devel-0:1.8.4-1.fc33.i686\n - libwmf-0:0.2.12-4.fc33.armv7hl\n - libfontenc-0:1.1.3-13.fc33.i686\n - exiv2-0:0.27.3-4.fc33.s390x\n - SDL_image-0:1.2.12-25.fc33.s390x\n - SDL-0:1.2.15-45.fc33.s390x\n - urw-base35-gothic-fonts-0:20170801-16.fc33.noarch\n - cairomm-devel-0:1.12.0-13.fc33.aarch64\n - glibmm24-devel-0:2.64.2-4.fc33.s390x\n - flatpak-rpm-macros-0:33-2.fc33.x86_64\n - libdazzle-0:3.38.0-1.fc33.ppc64le\n - libical-devel-0:3.0.8-5.fc33.ppc64le\n - openblas-0:0.3.10-6.fc33.x86_64\n - boost-wave-0:1.73.0-7.fc33.armv7hl\n - boost-0:1.73.0-7.fc33.armv7hl\n - pangomm-0:2.42.1-2.fc33.s390x\n - boost-stacktrace-0:1.73.0-7.fc33.aarch64\n - boost-nowide-0:1.73.0-7.fc33.s390x\n - gspell-doc-0:1.8.4-1.fc33.noarch\n - boost-iostreams-0:1.73.0-7.fc33.s390x\n - libsigc++20-devel-0:2.10.4-1.fc33.x86_64\n - liboauth-0:1.0.3-15.fc33.x86_64\n - openblas-serial64-0:0.3.10-6.fc33.x86_64\n - protobuf-lite-devel-0:3.12.4-1.fc33.ppc64le\n - libgweather-0:3.36.1-3.fc33.s390x\n - libidn-0:1.36-1.fc33.x86_64\n - liboauth-0:1.0.3-15.fc33.i686\n - libdazzle-devel-0:3.38.0-1.fc33.x86_64\n - gtksourceview3-devel-0:3.24.11-4.fc33.ppc64le\n - ghostscript-gtk-0:9.53.1-2.fc33.x86_64\n - compat-wxGTK3-gtk2-0:3.0.5.1-2.fc33.ppc64le\n - cairomm-doc-0:1.12.0-13.fc33.noarch\n - protobuf-static-0:3.12.4-1.fc33.i686\n - boost-0:1.73.0-7.fc33.aarch64\n - boost-doctools-0:1.73.0-7.fc33.x86_64\n - cairomm-0:1.12.0-13.fc33.x86_64\n - libpeas-loader-python3-0:1.28.0-1.fc33.ppc64le\n - boost-program-options-0:1.73.0-7.fc33.armv7hl\n - libfontenc-0:1.1.3-13.fc33.armv7hl\n - poppler-devel-0:0.90.0-6.fc33.i686\n - boost-locale-0:1.73.0-7.fc33.aarch64\n - libwmf-lite-0:0.2.12-4.fc33.aarch64\n - tcl-1:8.6.10-5.fc33.ppc64le\n - wxGTK3-docs-0:3.0.5.1-2.fc33.noarch\n - gtkmm30-devel-0:3.24.2-3.fc33.aarch64\n - libidn-0:1.36-1.fc33.s390x\n - libhandy1-0:1.0.0-2.fc33.s390x\n - cairomm-devel-0:1.12.0-13.fc33.ppc64le\n - gtkmm30-0:3.24.2-3.fc33.s390x\n - wxGTK3-gl-0:3.0.5.1-2.fc33.ppc64le\n - exiv2-libs-0:0.27.3-4.fc33.armv7hl\n - liboauth-devel-0:1.0.3-15.fc33.i686\n - polkit-libs-0:0.117-2.fc33.x86_64\n - gtkmm30-0:3.24.2-3.fc33.armv7hl\n - poppler-utils-0:0.90.0-6.fc33.ppc64le\n - cairomm-devel-0:1.12.0-13.fc33.x86_64\n - ghostscript-tools-dvipdf-0:9.53.1-2.fc33.i686\n - glibmm24-devel-0:2.64.2-4.fc33.x86_64\n - protobuf-compiler-0:3.12.4-1.fc33.x86_64\n - exiv2-0:0.27.3-4.fc33.i686\n - compat-wxGTK3-gtk2-0:3.0.5.1-2.fc33.aarch64\n - libsigc++20-devel-0:2.10.4-1.fc33.i686\n - ghostscript-tools-fonts-0:9.53.1-2.fc33.i686\n - startup-notification-0:0.12-20.fc33.armv7hl\n - ghostscript-gtk-0:9.53.1-2.fc33.s390x\n - tix-1:8.4.3-29.fc33.i686\n - poppler-glib-0:0.90.0-6.fc33.armv7hl\n - wxGTK3-webview-0:3.0.5.1-2.fc33.armv7hl\n - boost-log-0:1.73.0-7.fc33.s390x\n - libical-devel-0:3.0.8-5.fc33.x86_64\n - libraqm-docs-0:0.7.0-6.fc33.noarch\n - libmspack-0:0.10.1-0.4.alpha.fc33.s390x\n - atkmm-doc-0:2.24.3-6.fc33.noarch\n - boost-doc-0:1.73.0-7.fc33.armv7hl\n - boost-coroutine-0:1.73.0-7.fc33.aarch64\n - boost-python3-0:1.73.0-7.fc33.armv7hl\n - libgdata-devel-0:0.17.13-1.fc33.ppc64le\n - polkit-docs-0:0.117-2.fc33.noarch\n - boost-static-0:1.73.0-7.fc33.i686\n - gspell-devel-0:1.8.4-1.fc33.aarch64\n - SDL-devel-0:1.2.15-45.fc33.aarch64\n - gnome-online-accounts-devel-0:3.37.90-1.fc33.s390x\n - libGLEW-0:2.1.0-8.fc33.ppc64le\n - boost-iostreams-0:1.73.0-7.fc33.aarch64\n - ghostscript-tools-printing-0:9.53.1-2.fc33.ppc64le\n - liboauth-devel-0:1.0.3-15.fc33.aarch64\n - wxGTK3-webview-0:3.0.5.1-2.fc33.aarch64\n - ghostscript-x11-0:9.53.1-2.fc33.armv7hl\n - ghostscript-tools-fonts-0:9.53.1-2.fc33.s390x\n - cairomm-devel-0:1.12.0-13.fc33.armv7hl\n - protobuf-bom-0:3.12.4-1.fc33.noarch\n - python2.7-0:2.7.18-6.fc33.ppc64le\n - tix-doc-1:8.4.3-29.fc33.s390x\n - libmspack-devel-0:0.10.1-0.4.alpha.fc33.ppc64le\n - libfontenc-devel-0:1.1.3-13.fc33.ppc64le\n - poppler-devel-0:0.90.0-6.fc33.armv7hl\n - libgs-0:9.53.1-2.fc33.ppc64le\n - libfontenc-0:1.1.3-13.fc33.s390x\n - boost-static-0:1.73.0-7.fc33.s390x\n - openblas-openmp64-0:0.3.10-6.fc33.ppc64le\n - libpeas-gtk-0:1.28.0-1.fc33.x86_64\n - libpeas-loader-python3-0:1.28.0-1.fc33.i686\n - libical-0:3.0.8-5.fc33.x86_64\n - gnome-desktop3-0:3.38.1-1.fc33.aarch64\n - libijs-0:0.35-12.fc33.s390x\n - boost-system-0:1.73.0-7.fc33.i686\n - gtkmm30-devel-0:3.24.2-3.fc33.s390x\n - gspell-0:1.8.4-1.fc33.armv7hl\n - ghostscript-gtk-0:9.53.1-2.fc33.aarch64\n - compat-wxGTK3-gtk2-gl-0:3.0.5.1-2.fc33.armv7hl\n - ghostscript-core-0:9.53.1-2.fc33.x86_64\n - geocode-glib-devel-0:3.26.2-2.fc33.x86_64\n - libgdata-0:0.17.13-1.fc33.aarch64\n - boost-chrono-0:1.73.0-7.fc33.i686\n - boost-program-options-0:1.73.0-7.fc33.x86_64\n - boost-numpy3-0:1.73.0-7.fc33.aarch64\n - protobuf-lite-static-0:3.12.4-1.fc33.i686\n - libhandy1-devel-0:1.0.0-2.fc33.armv7hl\n - tk-devel-1:8.6.10-5.fc33.aarch64\n - libfontenc-0:1.1.3-13.fc33.ppc64le\n - protobuf-parent-0:3.12.4-1.fc33.noarch\n - adobe-mappings-cmap-devel-0:20171205-9.fc33.noarch\n - tix-1:8.4.3-29.fc33.aarch64\n - evolution-data-server-tests-0:3.38.1-1.fc33.armv7hl\n - SDL_image-devel-0:1.2.12-25.fc33.i686\n - libphonenumber-0:8.12.7-1.fc33.armv7hl\n - libphonenumber-0:8.12.7-1.fc33.s390x\n - libpeas-gtk-0:1.28.0-1.fc33.aarch64\n - boost-numpy3-0:1.73.0-7.fc33.ppc64le\n - libsigc++20-devel-0:2.10.4-1.fc33.ppc64le\n - jbig2dec-devel-0:0.19-2.fc33.s390x\n - ghostscript-core-0:9.53.1-2.fc33.armv7hl\n - boost-container-0:1.73.0-7.fc33.ppc64le\n - poppler-utils-0:0.90.0-6.fc33.i686\n - libsigc++20-0:2.10.4-1.fc33.s390x\n - libgweather-0:3.36.1-3.fc33.armv7hl\n - poppler-cpp-0:0.90.0-6.fc33.i686\n - poppler-data-devel-0:0.4.9-6.fc33.noarch\n - libidn-0:1.36-1.fc33.armv7hl\n - openblas-serial-0:0.3.10-6.fc33.armv7hl\n - libwmf-lite-0:0.2.12-4.fc33.armv7hl\n - urw-base35-fonts-devel-0:20170801-16.fc33.noarch\n - protobuf-compiler-0:3.12.4-1.fc33.i686\n - boost-thread-0:1.73.0-7.fc33.i686\n - libijs-devel-0:0.35-12.fc33.armv7hl\n - gnome-online-accounts-0:3.37.90-1.fc33.i686\n - tk-1:8.6.10-5.fc33.x86_64\n - boost-wave-0:1.73.0-7.fc33.s390x\n - gnome-desktop3-devel-0:3.38.1-1.fc33.i686\n - libical-0:3.0.8-5.fc33.i686\n - gspell-devel-0:1.8.4-1.fc33.ppc64le\n - libsigc++20-0:2.10.4-1.fc33.aarch64\n - libgs-devel-0:9.53.1-2.fc33.s390x\n - boost-static-0:1.73.0-7.fc33.armv7hl\n - wxGTK3-webview-0:3.0.5.1-2.fc33.s390x\n - liboauth-0:1.0.3-15.fc33.armv7hl\n - gtkmm30-0:3.24.2-3.fc33.i686\n - protobuf-static-0:3.12.4-1.fc33.ppc64le\n - boost-0:1.73.0-7.fc33.i686\n - gtkmm30-0:3.24.2-3.fc33.x86_64\n - libical-devel-0:3.0.8-5.fc33.i686\n - libpeas-gtk-0:1.28.0-1.fc33.ppc64le\n - boost-math-0:1.73.0-7.fc33.aarch64\n - atkmm-0:2.24.3-6.fc33.ppc64le\n - poppler-cpp-0:0.90.0-6.fc33.ppc64le\n - libgs-devel-0:9.53.1-2.fc33.i686\n - openjpeg2-devel-0:2.3.1-7.fc33.aarch64\n - compat-wxGTK3-gtk2-gl-0:3.0.5.1-2.fc33.s390x\n - urw-base35-standard-symbols-ps-fonts-0:20170801-16.fc33.noarch\n - boost-numpy3-0:1.73.0-7.fc33.s390x\n - poppler-qt-devel-0:0.90.0-6.fc33.ppc64le\n - SDL-static-0:1.2.15-45.fc33.ppc64le\n - libical-0:3.0.8-5.fc33.armv7hl\n - libidn-devel-0:1.36-1.fc33.aarch64\n - boost-timer-0:1.73.0-7.fc33.armv7hl\n - libdazzle-devel-0:3.38.0-1.fc33.armv7hl\n - atkmm-0:2.24.3-6.fc33.aarch64\n - boost-iostreams-0:1.73.0-7.fc33.armv7hl\n - wxGTK3-0:3.0.5.1-2.fc33.armv7hl\n - gnome-desktop3-0:3.38.1-1.fc33.s390x\n - protobuf-0:3.12.4-1.fc33.x86_64\n - protobuf-lite-0:3.12.4-1.fc33.ppc64le\n - openblas-threads64_-0:0.3.10-6.fc33.x86_64\n - compat-wxGTK3-gtk2-media-0:3.0.5.1-2.fc33.armv7hl\n - boost-coroutine-0:1.73.0-7.fc33.ppc64le\n - google-droid-fonts-all-0:20200215-8.fc33.noarch\n - libpeas-devel-0:1.28.0-1.fc33.armv7hl\n - libGLEW-0:2.1.0-8.fc33.armv7hl\n - libphonenumber-devel-0:8.12.7-1.fc33.s390x\n - openblas-threads-0:0.3.10-6.fc33.s390x\n - libimagequant-0:2.12.6-3.fc33.i686\n - libpeas-gtk-0:1.28.0-1.fc33.i686\n - libmspack-0:0.10.1-0.4.alpha.fc33.armv7hl\n - flatpak-rpm-macros-0:33-2.fc33.armv7hl\n - libical-glib-0:3.0.8-5.fc33.armv7hl\n - boost-thread-0:1.73.0-7.fc33.x86_64\n - poppler-glib-0:0.90.0-6.fc33.aarch64\n - gd-devel-0:2.3.0-3.fc33.armv7hl\n - OpenEXR-doc-0:2.3.0-6.fc33.ppc64le\n - liboauth-0:1.0.3-15.fc33.s390x\n - SDL-devel-0:1.2.15-45.fc33.armv7hl\n - ghostscript-x11-0:9.53.1-2.fc33.aarch64\n - SDL_image-devel-0:1.2.12-25.fc33.ppc64le\n - OpenEXR-libs-0:2.3.0-6.fc33.ppc64le\n - gnome-online-accounts-0:3.37.90-1.fc33.armv7hl\n - boost-timer-0:1.73.0-7.fc33.s390x\n - wxBase3-devel-0:3.0.5.1-2.fc33.i686\n - boost-fiber-0:1.73.0-7.fc33.s390x\n - boost-test-0:1.73.0-7.fc33.i686\n - python2-setuptools-0:41.2.0-3.fc33.noarch\n - poppler-qt-0:0.90.0-6.fc33.ppc64le\n - boost-stacktrace-0:1.73.0-7.fc33.x86_64\n - evolution-data-server-devel-0:3.38.1-1.fc33.aarch64\n - tk-1:8.6.10-5.fc33.armv7hl\n - libphonenumber-0:8.12.7-1.fc33.ppc64le\n - tix-1:8.4.3-29.fc33.s390x\n - libgs-devel-0:9.53.1-2.fc33.aarch64\n - ghostscript-core-0:9.53.1-2.fc33.ppc64le\n - libdazzle-devel-0:3.38.0-1.fc33.s390x\n - polkit-libs-0:0.117-2.fc33.armv7hl\n - openjpeg2-0:2.3.1-7.fc33.s390x\n - gtksourceview3-tests-0:3.24.11-4.fc33.ppc64le\n - boost-log-0:1.73.0-7.fc33.ppc64le\n - poppler-qt-0:0.90.0-6.fc33.i686\n - google-droid-sans-mono-fonts-0:20200215-8.fc33.noarch\n - libgweather-0:3.36.1-3.fc33.aarch64\n - gd-0:2.3.0-3.fc33.x86_64\n - boost-chrono-0:1.73.0-7.fc33.aarch64\n - boost-locale-0:1.73.0-7.fc33.s390x\n - boost-nowide-0:1.73.0-7.fc33.ppc64le\n - boost-examples-0:1.73.0-7.fc33.ppc64le\n - jbig2dec-libs-0:0.19-2.fc33.aarch64\n - glew-0:2.1.0-8.fc33.armv7hl\n - protobuf-0:3.12.4-1.fc33.i686\n - evolution-data-server-0:3.38.1-1.fc33.x86_64\n - SDL-0:1.2.15-45.fc33.i686\n - boost-date-time-0:1.73.0-7.fc33.x86_64\n - gnome-desktop3-0:3.38.1-1.fc33.i686\n - openblas-openmp64-0:0.3.10-6.fc33.x86_64\n - polkit-devel-0:0.117-2.fc33.i686\n - boost-locale-0:1.73.0-7.fc33.ppc64le\n - libpeas-0:1.28.0-1.fc33.ppc64le\n - boost-serialization-0:1.73.0-7.fc33.ppc64le\n - jbig2dec-devel-0:0.19-2.fc33.armv7hl\n - evolution-data-server-tests-0:3.38.1-1.fc33.aarch64\n - tk-devel-1:8.6.10-5.fc33.s390x\n - startup-notification-devel-0:0.12-20.fc33.aarch64\n - libijs-0:0.35-12.fc33.armv7hl\n - ilmbase-0:2.3.0-5.fc33.s390x\n - gd-progs-0:2.3.0-3.fc33.ppc64le\n - libpaper-devel-0:1.1.24-28.fc33.i686\n - evolution-data-server-0:3.38.1-1.fc33.i686\n - gnome-desktop3-tests-0:3.38.1-1.fc33.aarch64\n - boost-fiber-0:1.73.0-7.fc33.i686\n - gd-0:2.3.0-3.fc33.armv7hl\n - openblas-0:0.3.10-6.fc33.i686\n - libraqm-devel-0:0.7.0-6.fc33.armv7hl\n - openblas-threads-0:0.3.10-6.fc33.i686\n - boost-thread-0:1.73.0-7.fc33.aarch64\n - boost-date-time-0:1.73.0-7.fc33.aarch64\n - boost-context-0:1.73.0-7.fc33.s390x\n - libgdata-devel-0:0.17.13-1.fc33.armv7hl\n - tcl-1:8.6.10-5.fc33.aarch64\n - libfontenc-0:1.1.3-13.fc33.aarch64\n - wxGTK3-0:3.0.5.1-2.fc33.i686\n - gnome-online-accounts-0:3.37.90-1.fc33.s390x\n - OpenEXR-libs-0:2.3.0-6.fc33.x86_64\n - openblas-threads64_-0:0.3.10-6.fc33.s390x\n - ghostscript-0:9.53.1-2.fc33.aarch64\n - glibmm24-devel-0:2.64.2-4.fc33.armv7hl\n - gsound-0:1.0.2-12.fc33.ppc64le\n - ghostscript-x11-0:9.53.1-2.fc33.ppc64le\n - flatpak-runtime-config-0:33-1.fc33.i686\n - startup-notification-0:0.12-20.fc33.i686\n - gd-devel-0:2.3.0-3.fc33.ppc64le\n - gtkmm30-devel-0:3.24.2-3.fc33.armv7hl\n - boost-container-0:1.73.0-7.fc33.aarch64\n - libfontenc-0:1.1.3-13.fc33.x86_64\n - libwmf-0:0.2.12-4.fc33.ppc64le\n - glew-0:2.1.0-8.fc33.s390x\n - boost-contract-0:1.73.0-7.fc33.x86_64\n - boost-program-options-0:1.73.0-7.fc33.ppc64le\n - gnome-online-accounts-devel-0:3.37.90-1.fc33.x86_64\n - SDL-static-0:1.2.15-45.fc33.i686\n - gnome-online-accounts-devel-0:3.37.90-1.fc33.aarch64\n - protobuf-static-0:3.12.4-1.fc33.armv7hl\n - poppler-cpp-0:0.90.0-6.fc33.armv7hl\n - adobe-mappings-cmap-deprecated-0:20171205-9.fc33.noarch\n - poppler-qt5-devel-0:0.90.0-6.fc33.armv7hl\n - libpaper-devel-0:1.1.24-28.fc33.x86_64\n - wxGTK3-gl-0:3.0.5.1-2.fc33.aarch64\n - openblas-openmp64_-0:0.3.10-6.fc33.s390x\n - libpeas-devel-0:1.28.0-1.fc33.i686\n - evolution-data-server-perl-0:3.38.1-1.fc33.aarch64\n - geocode-glib-0:3.26.2-2.fc33.ppc64le\n - ghostscript-tools-fonts-0:9.53.1-2.fc33.aarch64\n - ghostscript-tools-fonts-0:9.53.1-2.fc33.x86_64\n - poppler-qt-devel-0:0.90.0-6.fc33.i686\n - gsound-0:1.0.2-12.fc33.aarch64\n - poppler-glib-0:0.90.0-6.fc33.ppc64le\n - jbig2dec-devel-0:0.19-2.fc33.ppc64le\n - flatpak-rpm-macros-0:33-2.fc33.s390x\n - flatpak-runtime-config-0:33-1.fc33.x86_64\n - gsound-devel-0:1.0.2-12.fc33.armv7hl\n - ilmbase-0:2.3.0-5.fc33.aarch64\n - wxBase3-0:3.0.5.1-2.fc33.x86_64\n - OpenEXR-doc-0:2.3.0-6.fc33.x86_64\n - libGLEW-0:2.1.0-8.fc33.x86_64\n - liboauth-devel-0:1.0.3-15.fc33.s390x\n - ghostscript-0:9.53.1-2.fc33.x86_64\n - urw-base35-bookman-fonts-0:20170801-16.fc33.noarch\n - libgweather-devel-0:3.36.1-3.fc33.armv7hl\n - boost-examples-0:1.73.0-7.fc33.s390x\n - libraqm-0:0.7.0-6.fc33.s390x\n - tcl-devel-1:8.6.10-5.fc33.aarch64\n - pangomm-devel-0:2.42.1-2.fc33.i686\n - urw-base35-fonts-common-0:20170801-16.fc33.noarch\n - boost-nowide-0:1.73.0-7.fc33.armv7hl\n - boost-filesystem-0:1.73.0-7.fc33.armv7hl\n - libidn-devel-0:1.36-1.fc33.s390x\n - boost-atomic-0:1.73.0-7.fc33.s390x\n - startup-notification-devel-0:0.12-20.fc33.s390x\n - gnome-desktop3-0:3.38.1-1.fc33.ppc64le\n - wxGTK3-media-0:3.0.5.1-2.fc33.armv7hl\n - boost-static-0:1.73.0-7.fc33.x86_64\n - glibmm24-0:2.64.2-4.fc33.x86_64\n - boost-coroutine-0:1.73.0-7.fc33.armv7hl\n - boost-atomic-0:1.73.0-7.fc33.aarch64\n - jbig2dec-libs-0:0.19-2.fc33.i686\n - gtksourceview3-0:3.24.11-4.fc33.x86_64\n - boost-thread-0:1.73.0-7.fc33.ppc64le\n - ghostscript-0:9.53.1-2.fc33.s390x\n - xorg-x11-font-utils-1:7.5-45.fc33.ppc64le\n - poppler-0:0.90.0-6.fc33.aarch64\n - poppler-cpp-0:0.90.0-6.fc33.x86_64\n - glew-0:2.1.0-8.fc33.x86_64\n - boost-static-0:1.73.0-7.fc33.ppc64le\n - SDL-0:1.2.15-45.fc33.ppc64le\n - jbig2dec-libs-0:0.19-2.fc33.ppc64le\n - boost-locale-0:1.73.0-7.fc33.armv7hl\n - polkit-devel-0:0.117-2.fc33.ppc64le\n - python2.7-0:2.7.18-6.fc33.s390x\n - protobuf-lite-0:3.12.4-1.fc33.i686\n - gtksourceview3-tests-0:3.24.11-4.fc33.aarch64\n - openblas-0:0.3.10-6.fc33.ppc64le\n - protobuf-compiler-0:3.12.4-1.fc33.armv7hl\n - gd-progs-0:2.3.0-3.fc33.aarch64\n - poppler-qt5-0:0.90.0-6.fc33.x86_64\n - boost-regex-0:1.73.0-7.fc33.armv7hl\n - SDL_image-0:1.2.12-25.fc33.ppc64le\n - openblas-serial64-0:0.3.10-6.fc33.s390x\n - ilmbase-devel-0:2.3.0-5.fc33.i686\n dependencies:\n - buildrequires:\n flatpak-common: [f33]\n flatpak-runtime: [f33]\n platform: [f33]\n requires:\n flatpak-common: [f33]\n flatpak-runtime: [f33]\n platform: [f33]\n profiles:\n default:\n rpms:\n - 0ad\n components:\n rpms:\n 0ad:\n rationale: Application package\n repository: git+https://src.fedoraproject.org/rpms/0ad\n cache: https://src.fedoraproject.org/repo/pkgs/0ad\n ref: f33\n buildorder: 10\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n 0ad-data:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/0ad-data\n cache: https://src.fedoraproject.org/repo/pkgs/0ad-data\n ref: f33\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n dejavu-fonts:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/dejavu-fonts\n cache: https://src.fedoraproject.org/repo/pkgs/dejavu-fonts\n ref: f33\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n enet:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/enet\n cache: https://src.fedoraproject.org/repo/pkgs/enet\n ref: f33\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n gloox:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/gloox\n cache: https://src.fedoraproject.org/repo/pkgs/gloox\n ref: f33\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n libsodium:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/libsodium\n cache: https://src.fedoraproject.org/repo/pkgs/libsodium\n ref: f33\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n miniupnpc:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/miniupnpc\n cache: https://src.fedoraproject.org/repo/pkgs/miniupnpc\n ref: f33\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n nvidia-texture-tools:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/nvidia-texture-tools\n cache: https://src.fedoraproject.org/repo/pkgs/nvidia-texture-tools\n ref: f33\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n...", "runtime_deps": [ { "dependency": "flatpak-runtime", "stream": "f33" }, { "dependency": "platform", "stream": "f33" }, { "dependency": "flatpak-common", "stream": "f33" } ], "build_deps": [ { "dependency": "flatpak-runtime", "stream": "f33" }, { "dependency": "platform", "stream": "f33" }, { "dependency": "flatpak-common", "stream": "f33" } ], "active": false, "rpms": [] }, { "variant_id": "0ad", "variant_uid": "0ad:master:3320201019121517:50ef3cd5", "variant_name": "0ad", "variant_type": "module", "variant_version": "master", "variant_release": "3320201019121517", "variant_context": "50ef3cd5", "koji_tag": "module-0ad-master-3320201019121517-50ef3cd5", "modulemd": "---\ndocument: modulemd\nversion: 2\ndata:\n name: 0ad\n stream: master\n version: 3320201019121517\n context: 50ef3cd5\n summary: Cross-Platform RTS Game of Ancient Warfare\n description: >-\n 0 A.D. (pronounced \"zero ey-dee\") is a free, open-source, cross-platform real-time\n strategy (RTS) game of ancient warfare. In short, it is a historically-based war/economy\n game that allows players to relive or rewrite the history of Western civilizations,\n focusing on the years between 500 B.C. and 500 A.D. The project is highly ambitious,\n involving state-of-the-art 3D graphics, detailed artwork, sound, and a flexible\n and powerful custom-built game engine.\n\n The game has been in development by Wildfire Games (WFG), a group of volunteer,\n hobbyist game developers, since 2001.\n license:\n module:\n - MIT\n xmd:\n mbs:\n buildrequires:\n flatpak-common:\n context: fb2b2a51\n filtered_rpms: []\n koji_tag: module-flatpak-common-f33-3320201018174010-fb2b2a51\n ref: 7b1c804759502d92da0b2b89f5268cd38b0d765f\n stream: f33\n version: 3320201018174010\n flatpak-runtime:\n context: 601d93de\n filtered_rpms: []\n koji_tag: module-flatpak-runtime-f33-3320201014073228-601d93de\n ref: 6af6cee480ac077ec5db0ad43b05b740d80c4f8f\n stream: f33\n version: 3320201014073228\n platform:\n context: 00000000\n filtered_rpms: []\n koji_tag: module-f33-build\n ref: f33\n stream: f33\n stream_collision_modules: \n ursine_rpms: \n version: 1\n commit: 75a23a929b63a2d6ea5956d3ed3137ffcb4f952e\n mse: TRUE\n rpms:\n 0ad:\n ref: d7d922c47721d6e3a4270331f8104fc785c57d11\n 0ad-data:\n ref: bba7011f6ffb028a33ac32cf8e35bd5c54d7cc3e\n dejavu-fonts:\n ref: b475f5b4c29a82b95c84df5d31ba8757710d5b5d\n enet:\n ref: da594f9bd429ecb41396a25091d693e41b40cfbc\n gloox:\n ref: 6881cacaa26d9ae3dc9d24585b36b2c52ee43434\n libsodium:\n ref: 1442a683d44b7a4186db95ffbfba0c747fae833f\n miniupnpc:\n ref: a79ccd1c8b4f894a771198f0d6fa69ed75a67961\n nvidia-texture-tools:\n ref: 9b49b083415e5581cc1b19ad89d0e4a50da66b41\n scmurl: https://src.fedoraproject.org/flatpaks/0ad.git?#75a23a929b63a2d6ea5956d3ed3137ffcb4f952e\n ursine_rpms:\n - poppler-0:0.90.0-6.fc33.x86_64\n - gsound-0:1.0.2-12.fc33.x86_64\n - ilmbase-0:2.3.0-5.fc33.ppc64le\n - boost-stacktrace-0:1.73.0-7.fc33.ppc64le\n - OpenEXR-doc-0:2.3.0-6.fc33.i686\n - libgweather-devel-0:3.36.1-3.fc33.aarch64\n - boost-atomic-0:1.73.0-7.fc33.i686\n - boost-contract-0:1.73.0-7.fc33.i686\n - libical-glib-devel-0:3.0.8-5.fc33.i686\n - pangomm-doc-0:2.42.1-2.fc33.noarch\n - libwmf-0:0.2.12-4.fc33.aarch64\n - openblas-0:0.3.10-6.fc33.s390x\n - libwmf-devel-0:0.2.12-4.fc33.armv7hl\n - libpaper-0:1.1.24-28.fc33.aarch64\n - gtksourceview3-tests-0:3.24.11-4.fc33.i686\n - libpaper-devel-0:1.1.24-28.fc33.ppc64le\n - protobuf-static-0:3.12.4-1.fc33.s390x\n - polkit-0:0.117-2.fc33.armv7hl\n - ghostscript-gtk-0:9.53.1-2.fc33.ppc64le\n - geocode-glib-0:3.26.2-2.fc33.s390x\n - exiv2-devel-0:0.27.3-4.fc33.ppc64le\n - boost-b2-0:1.73.0-7.fc33.armv7hl\n - exiv2-devel-0:0.27.3-4.fc33.aarch64\n - boost-serialization-0:1.73.0-7.fc33.s390x\n - libpeas-gtk-0:1.28.0-1.fc33.s390x\n - jbig2dec-0:0.19-2.fc33.armv7hl\n - boost-examples-0:1.73.0-7.fc33.aarch64\n - OpenEXR-0:2.3.0-6.fc33.x86_64\n - openjpeg2-tools-0:2.3.1-7.fc33.i686\n - boost-graph-0:1.73.0-7.fc33.x86_64\n - boost-graph-0:1.73.0-7.fc33.armv7hl\n - poppler-qt5-0:0.90.0-6.fc33.armv7hl\n - gsl-devel-0:2.6-3.fc33.aarch64\n - protobuf-lite-static-0:3.12.4-1.fc33.x86_64\n - gtkmm30-0:3.24.2-3.fc33.ppc64le\n - urw-base35-d050000l-fonts-0:20170801-16.fc33.noarch\n - boost-context-0:1.73.0-7.fc33.aarch64\n - openblas-threads64-0:0.3.10-6.fc33.aarch64\n - openblas-openmp64_-0:0.3.10-6.fc33.ppc64le\n - wxGTK3-0:3.0.5.1-2.fc33.ppc64le\n - wxGTK3-devel-0:3.0.5.1-2.fc33.ppc64le\n - atkmm-devel-0:2.24.3-6.fc33.x86_64\n - boost-system-0:1.73.0-7.fc33.armv7hl\n - poppler-qt5-0:0.90.0-6.fc33.i686\n - liboauth-devel-0:1.0.3-15.fc33.armv7hl\n - gsound-0:1.0.2-12.fc33.i686\n - tk-devel-1:8.6.10-5.fc33.x86_64\n - libGLEW-0:2.1.0-8.fc33.aarch64\n - protobuf-0:3.12.4-1.fc33.aarch64\n - polkit-libs-0:0.117-2.fc33.aarch64\n - libwmf-0:0.2.12-4.fc33.s390x\n - poppler-qt-0:0.90.0-6.fc33.aarch64\n - urw-base35-fonts-legacy-0:20170801-16.fc33.noarch\n - gnome-desktop3-tests-0:3.38.1-1.fc33.x86_64\n - evolution-data-server-perl-0:3.38.1-1.fc33.armv7hl\n - urw-base35-nimbus-roman-fonts-0:20170801-16.fc33.noarch\n - gd-progs-0:2.3.0-3.fc33.i686\n - openjpeg2-devel-0:2.3.1-7.fc33.s390x\n - gtksourceview3-0:3.24.11-4.fc33.i686\n - gd-devel-0:2.3.0-3.fc33.i686\n - libpeas-devel-0:1.28.0-1.fc33.x86_64\n - protobuf-java-util-0:3.12.4-1.fc33.noarch\n - boost-0:1.73.0-7.fc33.s390x\n - libidn-devel-0:1.36-1.fc33.i686\n - libical-glib-devel-0:3.0.8-5.fc33.aarch64\n - glew-devel-0:2.1.0-8.fc33.i686\n - openjpeg2-tools-0:2.3.1-7.fc33.armv7hl\n - openblas-openmp-0:0.3.10-6.fc33.s390x\n - glew-0:2.1.0-8.fc33.aarch64\n - boost-filesystem-0:1.73.0-7.fc33.s390x\n - wxBase3-devel-0:3.0.5.1-2.fc33.aarch64\n - openblas-threads64_-0:0.3.10-6.fc33.ppc64le\n - exiv2-libs-0:0.27.3-4.fc33.ppc64le\n - OpenEXR-doc-0:2.3.0-6.fc33.s390x\n - evolution-data-server-0:3.38.1-1.fc33.ppc64le\n - pangomm-devel-0:2.42.1-2.fc33.x86_64\n - OpenEXR-doc-0:2.3.0-6.fc33.aarch64\n - libgs-0:9.53.1-2.fc33.i686\n - boost-graph-0:1.73.0-7.fc33.i686\n - adobe-mappings-pdf-devel-0:20180407-7.fc33.noarch\n - poppler-qt5-0:0.90.0-6.fc33.s390x\n - SDL-0:1.2.15-45.fc33.aarch64\n - poppler-cpp-0:0.90.0-6.fc33.s390x\n - glew-0:2.1.0-8.fc33.ppc64le\n - glibmm24-0:2.64.2-4.fc33.i686\n - boost-type_erasure-0:1.73.0-7.fc33.armv7hl\n - libwmf-devel-0:0.2.12-4.fc33.ppc64le\n - poppler-qt5-devel-0:0.90.0-6.fc33.aarch64\n - openjpeg2-0:2.3.1-7.fc33.armv7hl\n - polkit-libs-0:0.117-2.fc33.s390x\n - xorg-x11-font-utils-1:7.5-45.fc33.armv7hl\n - gtksourceview3-tests-0:3.24.11-4.fc33.s390x\n - wxBase3-0:3.0.5.1-2.fc33.s390x\n - boost-b2-0:1.73.0-7.fc33.aarch64\n - pangomm-devel-0:2.42.1-2.fc33.armv7hl\n - jbig2dec-0:0.19-2.fc33.aarch64\n - ghostscript-x11-0:9.53.1-2.fc33.x86_64\n - protobuf-compiler-0:3.12.4-1.fc33.ppc64le\n - boost-container-0:1.73.0-7.fc33.i686\n - boost-program-options-0:1.73.0-7.fc33.i686\n - wxBase3-devel-0:3.0.5.1-2.fc33.ppc64le\n - openblas-serial64-0:0.3.10-6.fc33.ppc64le\n - polkit-0:0.117-2.fc33.x86_64\n - SDL-devel-0:1.2.15-45.fc33.i686\n - gsl-devel-0:2.6-3.fc33.i686\n - SDL-devel-0:1.2.15-45.fc33.x86_64\n - gsl-devel-0:2.6-3.fc33.armv7hl\n - poppler-utils-0:0.90.0-6.fc33.armv7hl\n - geocode-glib-devel-0:3.26.2-2.fc33.s390x\n - boost-type_erasure-0:1.73.0-7.fc33.aarch64\n - gsound-devel-0:1.0.2-12.fc33.s390x\n - python2.7-0:2.7.18-6.fc33.x86_64\n - OpenEXR-devel-0:2.3.0-6.fc33.armv7hl\n - ilmbase-0:2.3.0-5.fc33.i686\n - libgdata-0:0.17.13-1.fc33.x86_64\n - startup-notification-devel-0:0.12-20.fc33.x86_64\n - tcl-devel-1:8.6.10-5.fc33.s390x\n - openjpeg2-0:2.3.1-7.fc33.i686\n - libwmf-0:0.2.12-4.fc33.x86_64\n - boost-graph-0:1.73.0-7.fc33.s390x\n - openblas-serial64_-0:0.3.10-6.fc33.aarch64\n - openblas-devel-0:0.3.10-6.fc33.s390x\n - SDL-0:1.2.15-45.fc33.armv7hl\n - ghostscript-tools-dvipdf-0:9.53.1-2.fc33.s390x\n - openblas-threads-0:0.3.10-6.fc33.x86_64\n - pangomm-devel-0:2.42.1-2.fc33.aarch64\n - openjpeg2-devel-0:2.3.1-7.fc33.i686\n - libimagequant-0:2.12.6-3.fc33.x86_64\n - poppler-qt-devel-0:0.90.0-6.fc33.aarch64\n - openblas-openmp-0:0.3.10-6.fc33.ppc64le\n - protobuf-0:3.12.4-1.fc33.s390x\n - libphonenumber-devel-0:8.12.7-1.fc33.x86_64\n - wxGTK3-0:3.0.5.1-2.fc33.aarch64\n - wxGTK3-media-0:3.0.5.1-2.fc33.x86_64\n - libijs-devel-0:0.35-12.fc33.aarch64\n - libhandy1-0:1.0.0-2.fc33.armv7hl\n - tix-devel-1:8.4.3-29.fc33.armv7hl\n - poppler-glib-0:0.90.0-6.fc33.x86_64\n - boost-context-0:1.73.0-7.fc33.i686\n - poppler-glib-devel-0:0.90.0-6.fc33.x86_64\n - libgdata-devel-0:0.17.13-1.fc33.i686\n - libgs-0:9.53.1-2.fc33.x86_64\n - polkit-0:0.117-2.fc33.aarch64\n - dbus-glib-devel-0:0.110-7.fc32.s390x\n - protobuf-static-0:3.12.4-1.fc33.aarch64\n - wxGTK3-media-0:3.0.5.1-2.fc33.s390x\n - gtkmm30-0:3.24.2-3.fc33.aarch64\n - gtkmm30-doc-0:3.24.2-3.fc33.noarch\n - boost-nowide-0:1.73.0-7.fc33.i686\n - poppler-devel-0:0.90.0-6.fc33.ppc64le\n - protobuf-lite-devel-0:3.12.4-1.fc33.armv7hl\n - openblas-devel-0:0.3.10-6.fc33.ppc64le\n - liboauth-0:1.0.3-15.fc33.aarch64\n - ghostscript-core-0:9.53.1-2.fc33.s390x\n - OpenEXR-0:2.3.0-6.fc33.s390x\n - evolution-data-server-perl-0:3.38.1-1.fc33.s390x\n - boost-graph-0:1.73.0-7.fc33.aarch64\n - libfontenc-devel-0:1.1.3-13.fc33.s390x\n - boost-math-0:1.73.0-7.fc33.x86_64\n - boost-serialization-0:1.73.0-7.fc33.i686\n - openblas-threads64-0:0.3.10-6.fc33.x86_64\n - boost-devel-0:1.73.0-7.fc33.aarch64\n - evolution-data-server-devel-0:3.38.1-1.fc33.x86_64\n - boost-log-0:1.73.0-7.fc33.x86_64\n - libimagequant-devel-0:2.12.6-3.fc33.ppc64le\n - xorg-x11-font-utils-1:7.5-45.fc33.i686\n - boost-numpy3-0:1.73.0-7.fc33.i686\n - tk-devel-1:8.6.10-5.fc33.i686\n - boost-doc-0:1.73.0-7.fc33.i686\n - gsound-0:1.0.2-12.fc33.armv7hl\n - boost-python3-0:1.73.0-7.fc33.aarch64\n - libdazzle-0:3.38.0-1.fc33.s390x\n - geocode-glib-devel-0:3.26.2-2.fc33.ppc64le\n - openblas-openmp64_-0:0.3.10-6.fc33.x86_64\n - openjpeg2-tools-0:2.3.1-7.fc33.s390x\n - libgs-0:9.53.1-2.fc33.s390x\n - urw-base35-fonts-0:20170801-16.fc33.noarch\n - compat-wxGTK3-gtk2-gl-0:3.0.5.1-2.fc33.ppc64le\n - compat-wxGTK3-gtk2-media-0:3.0.5.1-2.fc33.aarch64\n - tk-devel-1:8.6.10-5.fc33.armv7hl\n - libphonenumber-devel-0:8.12.7-1.fc33.armv7hl\n - boost-test-0:1.73.0-7.fc33.ppc64le\n - wxGTK3-gl-0:3.0.5.1-2.fc33.armv7hl\n - libgweather-0:3.36.1-3.fc33.ppc64le\n - tix-devel-1:8.4.3-29.fc33.x86_64\n - tix-doc-1:8.4.3-29.fc33.x86_64\n - libraqm-devel-0:0.7.0-6.fc33.aarch64\n - protobuf-devel-0:3.12.4-1.fc33.x86_64\n - atkmm-devel-0:2.24.3-6.fc33.ppc64le\n - libgs-0:9.53.1-2.fc33.armv7hl\n - ghostscript-core-0:9.53.1-2.fc33.aarch64\n - protobuf-0:3.12.4-1.fc33.armv7hl\n - tix-doc-1:8.4.3-29.fc33.armv7hl\n - gd-progs-0:2.3.0-3.fc33.x86_64\n - SDL-devel-0:1.2.15-45.fc33.s390x\n - gd-devel-0:2.3.0-3.fc33.s390x\n - glibmm24-0:2.64.2-4.fc33.aarch64\n - boost-timer-0:1.73.0-7.fc33.ppc64le\n - libical-glib-0:3.0.8-5.fc33.ppc64le\n - evolution-data-server-perl-0:3.38.1-1.fc33.ppc64le\n - boost-devel-0:1.73.0-7.fc33.armv7hl\n - tix-devel-1:8.4.3-29.fc33.s390x\n - openblas-threads-0:0.3.10-6.fc33.ppc64le\n - compat-wxGTK3-gtk2-0:3.0.5.1-2.fc33.s390x\n - libimagequant-0:2.12.6-3.fc33.armv7hl\n - boost-python3-0:1.73.0-7.fc33.x86_64\n - tcl-devel-1:8.6.10-5.fc33.armv7hl\n - poppler-cpp-devel-0:0.90.0-6.fc33.aarch64\n - gsl-0:2.6-3.fc33.ppc64le\n - boost-serialization-0:1.73.0-7.fc33.aarch64\n - SDL_image-0:1.2.12-25.fc33.x86_64\n - flatpak-rpm-macros-0:33-2.fc33.i686\n - geocode-glib-0:3.26.2-2.fc33.i686\n - openblas-serial-0:0.3.10-6.fc33.ppc64le\n - libimagequant-0:2.12.6-3.fc33.s390x\n - ghostscript-tools-printing-0:9.53.1-2.fc33.aarch64\n - wxGTK3-0:3.0.5.1-2.fc33.x86_64\n - python2.7-0:2.7.18-6.fc33.armv7hl\n - wxBase3-0:3.0.5.1-2.fc33.ppc64le\n - libmspack-0:0.10.1-0.4.alpha.fc33.ppc64le\n - ghostscript-tools-dvipdf-0:9.53.1-2.fc33.armv7hl\n - libmspack-0:0.10.1-0.4.alpha.fc33.x86_64\n - SDL_image-0:1.2.12-25.fc33.i686\n - polkit-devel-0:0.117-2.fc33.s390x\n - urw-base35-z003-fonts-0:20170801-16.fc33.noarch\n - glew-devel-0:2.1.0-8.fc33.ppc64le\n - boost-build-0:1.73.0-7.fc33.noarch\n - SDL-static-0:1.2.15-45.fc33.armv7hl\n - polkit-devel-0:0.117-2.fc33.aarch64\n - libfontenc-devel-0:1.1.3-13.fc33.armv7hl\n - boost-b2-0:1.73.0-7.fc33.i686\n - jbig2dec-0:0.19-2.fc33.i686\n - boost-doc-0:1.73.0-7.fc33.aarch64\n - glew-devel-0:2.1.0-8.fc33.x86_64\n - evolution-data-server-devel-0:3.38.1-1.fc33.i686\n - geocode-glib-devel-0:3.26.2-2.fc33.aarch64\n - poppler-utils-0:0.90.0-6.fc33.s390x\n - openblas-devel-0:0.3.10-6.fc33.aarch64\n - boost-context-0:1.73.0-7.fc33.x86_64\n - libdazzle-devel-0:3.38.0-1.fc33.ppc64le\n - libmspack-devel-0:0.10.1-0.4.alpha.fc33.aarch64\n - startup-notification-devel-0:0.12-20.fc33.armv7hl\n - startup-notification-0:0.12-20.fc33.x86_64\n - boost-math-0:1.73.0-7.fc33.armv7hl\n - boost-test-0:1.73.0-7.fc33.aarch64\n - libical-glib-devel-0:3.0.8-5.fc33.armv7hl\n - wxGTK3-devel-0:3.0.5.1-2.fc33.aarch64\n - libical-glib-devel-0:3.0.8-5.fc33.ppc64le\n - boost-type_erasure-0:1.73.0-7.fc33.x86_64\n - SDL_image-devel-0:1.2.12-25.fc33.s390x\n - protobuf-devel-0:3.12.4-1.fc33.i686\n - protobuf-devel-0:3.12.4-1.fc33.aarch64\n - cairomm-0:1.12.0-13.fc33.armv7hl\n - boost-nowide-0:1.73.0-7.fc33.x86_64\n - boost-0:1.73.0-7.fc33.x86_64\n - libdazzle-devel-0:3.38.0-1.fc33.aarch64\n - libpeas-0:1.28.0-1.fc33.aarch64\n - gnome-desktop3-0:3.38.1-1.fc33.x86_64\n - boost-date-time-0:1.73.0-7.fc33.i686\n - gnome-online-accounts-devel-0:3.37.90-1.fc33.ppc64le\n - gspell-0:1.8.4-1.fc33.ppc64le\n - boost-iostreams-0:1.73.0-7.fc33.i686\n - gd-0:2.3.0-3.fc33.i686\n - OpenEXR-devel-0:2.3.0-6.fc33.x86_64\n - OpenEXR-devel-0:2.3.0-6.fc33.aarch64\n - OpenEXR-libs-0:2.3.0-6.fc33.s390x\n - ghostscript-tools-fonts-0:9.53.1-2.fc33.ppc64le\n - atkmm-devel-0:2.24.3-6.fc33.i686\n - boost-log-0:1.73.0-7.fc33.armv7hl\n - wxGTK3-media-0:3.0.5.1-2.fc33.i686\n - protobuf-devel-0:3.12.4-1.fc33.ppc64le\n - gtksourceview3-tests-0:3.24.11-4.fc33.x86_64\n - boost-stacktrace-0:1.73.0-7.fc33.i686\n - atkmm-0:2.24.3-6.fc33.i686\n - libical-0:3.0.8-5.fc33.s390x\n - libidn-0:1.36-1.fc33.i686\n - boost-date-time-0:1.73.0-7.fc33.s390x\n - compat-wxGTK3-gtk2-gl-0:3.0.5.1-2.fc33.x86_64\n - libidn-devel-0:1.36-1.fc33.armv7hl\n - tix-1:8.4.3-29.fc33.armv7hl\n - libwmf-devel-0:0.2.12-4.fc33.i686\n - libmspack-0:0.10.1-0.4.alpha.fc33.aarch64\n - tk-1:8.6.10-5.fc33.s390x\n - boost-fiber-0:1.73.0-7.fc33.aarch64\n - boost-graph-0:1.73.0-7.fc33.ppc64le\n - libijs-0:0.35-12.fc33.i686\n - libdazzle-0:3.38.0-1.fc33.i686\n - polkit-0:0.117-2.fc33.ppc64le\n - libgweather-devel-0:3.36.1-3.fc33.ppc64le\n - libhandy1-devel-0:1.0.0-2.fc33.ppc64le\n - openblas-openmp-0:0.3.10-6.fc33.x86_64\n - gd-devel-0:2.3.0-3.fc33.x86_64\n - boost-fiber-0:1.73.0-7.fc33.x86_64\n - cairomm-0:1.12.0-13.fc33.i686\n - protobuf-lite-0:3.12.4-1.fc33.x86_64\n - libidn-0:1.36-1.fc33.ppc64le\n - libpeas-0:1.28.0-1.fc33.armv7hl\n - ghostscript-x11-0:9.53.1-2.fc33.s390x\n - wxBase3-devel-0:3.0.5.1-2.fc33.s390x\n - openblas-serial-0:0.3.10-6.fc33.aarch64\n - jbig2dec-devel-0:0.19-2.fc33.aarch64\n - protobuf-java-0:3.12.4-1.fc33.noarch\n - wxGTK3-devel-0:3.0.5.1-2.fc33.x86_64\n - polkit-devel-0:0.117-2.fc33.x86_64\n - opengl-games-utils-0:0.2-18.fc33.noarch\n - compat-wxGTK3-gtk2-devel-0:3.0.5.1-2.fc33.x86_64\n - boost-doctools-0:1.73.0-7.fc33.i686\n - libijs-devel-0:0.35-12.fc33.x86_64\n - gspell-0:1.8.4-1.fc33.i686\n - ghostscript-x11-0:9.53.1-2.fc33.i686\n - ghostscript-tools-dvipdf-0:9.53.1-2.fc33.aarch64\n - boost-math-0:1.73.0-7.fc33.s390x\n - poppler-cpp-devel-0:0.90.0-6.fc33.i686\n - boost-doctools-0:1.73.0-7.fc33.aarch64\n - poppler-0:0.90.0-6.fc33.i686\n - poppler-0:0.90.0-6.fc33.armv7hl\n - boost-numpy3-0:1.73.0-7.fc33.x86_64\n - libpaper-devel-0:1.1.24-28.fc33.aarch64\n - boost-wave-0:1.73.0-7.fc33.i686\n - tcl-1:8.6.10-5.fc33.x86_64\n - gnome-online-accounts-devel-0:3.37.90-1.fc33.i686\n - compat-wxGTK3-gtk2-devel-0:3.0.5.1-2.fc33.i686\n - openblas-devel-0:0.3.10-6.fc33.x86_64\n - poppler-0:0.90.0-6.fc33.ppc64le\n - boost-serialization-0:1.73.0-7.fc33.x86_64\n - gsl-0:2.6-3.fc33.i686\n - OpenEXR-doc-0:2.3.0-6.fc33.armv7hl\n - SDL-0:1.2.15-45.fc33.x86_64\n - protobuf-compiler-0:3.12.4-1.fc33.aarch64\n - boost-context-0:1.73.0-7.fc33.armv7hl\n - poppler-qt5-devel-0:0.90.0-6.fc33.i686\n - gnome-desktop3-devel-0:3.38.1-1.fc33.s390x\n - compat-wxGTK3-gtk2-devel-0:3.0.5.1-2.fc33.armv7hl\n - gd-0:2.3.0-3.fc33.s390x\n - liboauth-devel-0:1.0.3-15.fc33.ppc64le\n - cairomm-0:1.12.0-13.fc33.ppc64le\n - ghostscript-0:9.53.1-2.fc33.ppc64le\n - libraqm-0:0.7.0-6.fc33.x86_64\n - compat-wxGTK3-gtk2-media-0:3.0.5.1-2.fc33.s390x\n - openblas-static-0:0.3.10-6.fc33.armv7hl\n - startup-notification-devel-0:0.12-20.fc33.ppc64le\n - boost-0:1.73.0-7.fc33.ppc64le\n - pangomm-0:2.42.1-2.fc33.armv7hl\n - startup-notification-0:0.12-20.fc33.ppc64le\n - libijs-doc-0:0.35-12.fc33.noarch\n - openjpeg2-0:2.3.1-7.fc33.aarch64\n - evolution-data-server-tests-0:3.38.1-1.fc33.i686\n - libmspack-devel-0:0.10.1-0.4.alpha.fc33.x86_64\n - boost-wave-0:1.73.0-7.fc33.aarch64\n - gtksourceview3-0:3.24.11-4.fc33.armv7hl\n - tix-doc-1:8.4.3-29.fc33.i686\n - gspell-0:1.8.4-1.fc33.x86_64\n - poppler-glib-devel-0:0.90.0-6.fc33.armv7hl\n - SDL_image-0:1.2.12-25.fc33.aarch64\n - protobuf-lite-devel-0:3.12.4-1.fc33.i686\n - boost-test-0:1.73.0-7.fc33.s390x\n - boost-chrono-0:1.73.0-7.fc33.armv7hl\n - libpeas-0:1.28.0-1.fc33.x86_64\n - protobuf-javalite-0:3.12.4-1.fc33.noarch\n - poppler-cpp-devel-0:0.90.0-6.fc33.ppc64le\n - libwmf-lite-0:0.2.12-4.fc33.x86_64\n - gspell-0:1.8.4-1.fc33.aarch64\n - libical-devel-0:3.0.8-5.fc33.s390x\n - geocode-glib-devel-0:3.26.2-2.fc33.i686\n - wxGTK3-gl-0:3.0.5.1-2.fc33.s390x\n - openblas-threads64-0:0.3.10-6.fc33.s390x\n - gnome-online-accounts-0:3.37.90-1.fc33.ppc64le\n - libpaper-0:1.1.24-28.fc33.armv7hl\n - openblas-openmp64-0:0.3.10-6.fc33.aarch64\n - pangomm-devel-0:2.42.1-2.fc33.ppc64le\n - glibmm24-doc-0:2.64.2-4.fc33.noarch\n - glibmm24-0:2.64.2-4.fc33.ppc64le\n - tix-1:8.4.3-29.fc33.x86_64\n - wxGTK3-webview-0:3.0.5.1-2.fc33.ppc64le\n - libdazzle-0:3.38.0-1.fc33.aarch64\n - libical-glib-devel-0:3.0.8-5.fc33.x86_64\n - tcl-devel-1:8.6.10-5.fc33.ppc64le\n - protobuf-lite-devel-0:3.12.4-1.fc33.aarch64\n - libical-glib-0:3.0.8-5.fc33.aarch64\n - gnome-online-accounts-0:3.37.90-1.fc33.x86_64\n - boost-timer-0:1.73.0-7.fc33.x86_64\n - gsound-devel-0:1.0.2-12.fc33.aarch64\n - boost-container-0:1.73.0-7.fc33.armv7hl\n - libphonenumber-devel-0:8.12.7-1.fc33.aarch64\n - tcl-1:8.6.10-5.fc33.i686\n - ghostscript-doc-0:9.53.1-2.fc33.noarch\n - libraqm-0:0.7.0-6.fc33.armv7hl\n - jbig2dec-0:0.19-2.fc33.ppc64le\n - libpeas-0:1.28.0-1.fc33.s390x\n - gd-0:2.3.0-3.fc33.aarch64\n - compat-wxGTK3-gtk2-gl-0:3.0.5.1-2.fc33.i686\n - libgdata-0:0.17.13-1.fc33.s390x\n - wxGTK3-media-0:3.0.5.1-2.fc33.aarch64\n - tix-devel-1:8.4.3-29.fc33.aarch64\n - python2.7-0:2.7.18-6.fc33.i686\n - flatpak-runtime-config-0:33-1.fc33.ppc64le\n - libimagequant-devel-0:2.12.6-3.fc33.armv7hl\n - boost-nowide-0:1.73.0-7.fc33.aarch64\n - ghostscript-core-0:9.53.1-2.fc33.i686\n - evolution-data-server-devel-0:3.38.1-1.fc33.armv7hl\n - openjpeg2-tools-0:2.3.1-7.fc33.ppc64le\n - boost-b2-0:1.73.0-7.fc33.ppc64le\n - boost-fiber-0:1.73.0-7.fc33.armv7hl\n - gtksourceview3-devel-0:3.24.11-4.fc33.aarch64\n - boost-python3-0:1.73.0-7.fc33.s390x\n - cairomm-0:1.12.0-13.fc33.aarch64\n - boost-locale-0:1.73.0-7.fc33.i686\n - libmspack-0:0.10.1-0.4.alpha.fc33.i686\n - OpenEXR-devel-0:2.3.0-6.fc33.s390x\n - cairomm-devel-0:1.12.0-13.fc33.i686\n - libical-glib-doc-0:3.0.8-5.fc33.noarch\n - boost-fiber-0:1.73.0-7.fc33.ppc64le\n - urw-base35-nimbus-sans-fonts-0:20170801-16.fc33.noarch\n - gspell-devel-0:1.8.4-1.fc33.s390x\n - ghostscript-tools-printing-0:9.53.1-2.fc33.s390x\n - openblas-serial-0:0.3.10-6.fc33.i686\n - compat-wxGTK3-gtk2-media-0:3.0.5.1-2.fc33.i686\n - libpaper-devel-0:1.1.24-28.fc33.s390x\n - polkit-libs-0:0.117-2.fc33.ppc64le\n - gsound-0:1.0.2-12.fc33.s390x\n - libidn-devel-0:1.36-1.fc33.ppc64le\n - boost-chrono-0:1.73.0-7.fc33.x86_64\n - openblas-static-0:0.3.10-6.fc33.ppc64le\n - dbus-glib-0:0.110-7.fc32.armv7hl\n - gd-0:2.3.0-3.fc33.ppc64le\n - libgdata-devel-0:0.17.13-1.fc33.x86_64\n - urw-base35-p052-fonts-0:20170801-16.fc33.noarch\n - boost-timer-0:1.73.0-7.fc33.aarch64\n - boost-locale-0:1.73.0-7.fc33.x86_64\n - jbig2dec-devel-0:0.19-2.fc33.i686\n - polkit-0:0.117-2.fc33.i686\n - libfontenc-devel-0:1.1.3-13.fc33.x86_64\n - gnome-desktop3-devel-0:3.38.1-1.fc33.ppc64le\n - SDL-devel-0:1.2.15-45.fc33.ppc64le\n - openblas-serial-0:0.3.10-6.fc33.x86_64\n - atkmm-devel-0:2.24.3-6.fc33.armv7hl\n - poppler-glib-devel-0:0.90.0-6.fc33.ppc64le\n - pangomm-0:2.42.1-2.fc33.aarch64\n - gsl-0:2.6-3.fc33.x86_64\n - openjpeg2-devel-0:2.3.1-7.fc33.ppc64le\n - dbus-glib-devel-0:0.110-7.fc32.x86_64\n - openblas-serial64_-0:0.3.10-6.fc33.x86_64\n - libdazzle-devel-0:3.38.0-1.fc33.i686\n - boost-stacktrace-0:1.73.0-7.fc33.s390x\n - exiv2-0:0.27.3-4.fc33.armv7hl\n - poppler-cpp-0:0.90.0-6.fc33.aarch64\n - libphonenumber-devel-0:8.12.7-1.fc33.i686\n - gsound-devel-0:1.0.2-12.fc33.x86_64\n - compat-wxGTK3-gtk2-media-0:3.0.5.1-2.fc33.x86_64\n - libpeas-gtk-0:1.28.0-1.fc33.armv7hl\n - libpaper-0:1.1.24-28.fc33.s390x\n - openblas-threads64-0:0.3.10-6.fc33.ppc64le\n - libijs-0:0.35-12.fc33.ppc64le\n - glibmm24-devel-0:2.64.2-4.fc33.aarch64\n - libgs-devel-0:9.53.1-2.fc33.ppc64le\n - libijs-devel-0:0.35-12.fc33.ppc64le\n - poppler-cpp-devel-0:0.90.0-6.fc33.x86_64\n - gsl-devel-0:2.6-3.fc33.x86_64\n - dbus-glib-0:0.110-7.fc32.s390x\n - flatpak-runtime-config-0:33-1.fc33.s390x\n - openblas-static-0:0.3.10-6.fc33.x86_64\n - gsound-devel-0:1.0.2-12.fc33.i686\n - compat-wxGTK3-gtk2-0:3.0.5.1-2.fc33.armv7hl\n - boost-regex-0:1.73.0-7.fc33.x86_64\n - gnome-desktop3-tests-0:3.38.1-1.fc33.s390x\n - exiv2-doc-0:0.27.3-4.fc33.noarch\n - openblas-serial64-0:0.3.10-6.fc33.aarch64\n - exiv2-devel-0:0.27.3-4.fc33.armv7hl\n - gd-progs-0:2.3.0-3.fc33.s390x\n - poppler-glib-devel-0:0.90.0-6.fc33.i686\n - startup-notification-devel-0:0.12-20.fc33.i686\n - poppler-qt-devel-0:0.90.0-6.fc33.armv7hl\n - ghostscript-tools-printing-0:9.53.1-2.fc33.x86_64\n - evolution-data-server-tests-0:3.38.1-1.fc33.x86_64\n - libmspack-devel-0:0.10.1-0.4.alpha.fc33.s390x\n - libgs-0:9.53.1-2.fc33.aarch64\n - tk-1:8.6.10-5.fc33.i686\n - openblas-openmp-0:0.3.10-6.fc33.i686\n - wxBase3-0:3.0.5.1-2.fc33.aarch64\n - compat-wxGTK3-gtk2-devel-0:3.0.5.1-2.fc33.s390x\n - poppler-qt5-0:0.90.0-6.fc33.aarch64\n - liboauth-0:1.0.3-15.fc33.ppc64le\n - libphonenumber-0:8.12.7-1.fc33.x86_64\n - openblas-serial64_-0:0.3.10-6.fc33.ppc64le\n - SDL-static-0:1.2.15-45.fc33.x86_64\n - exiv2-0:0.27.3-4.fc33.aarch64\n - boost-python3-0:1.73.0-7.fc33.ppc64le\n - boost-program-options-0:1.73.0-7.fc33.s390x\n - google-droid-sans-fonts-0:20200215-8.fc33.noarch\n - boost-doctools-0:1.73.0-7.fc33.armv7hl\n - boost-contract-0:1.73.0-7.fc33.aarch64\n - jbig2dec-0:0.19-2.fc33.s390x\n - boost-b2-0:1.73.0-7.fc33.s390x\n - boost-date-time-0:1.73.0-7.fc33.ppc64le\n - libgdata-0:0.17.13-1.fc33.i686\n - poppler-qt5-devel-0:0.90.0-6.fc33.ppc64le\n - protobuf-lite-0:3.12.4-1.fc33.armv7hl\n - glibmm24-0:2.64.2-4.fc33.s390x\n - flatpak-rpm-macros-0:33-2.fc33.aarch64\n - dbus-glib-0:0.110-7.fc32.aarch64\n - OpenEXR-libs-0:2.3.0-6.fc33.i686\n - libsigc++20-0:2.10.4-1.fc33.armv7hl\n - protobuf-javadoc-0:3.12.4-1.fc33.noarch\n - gsound-devel-0:1.0.2-12.fc33.ppc64le\n - libpeas-loader-python3-0:1.28.0-1.fc33.x86_64\n - xorg-x11-font-utils-1:7.5-45.fc33.aarch64\n - libwmf-0:0.2.12-4.fc33.i686\n - gnome-desktop3-devel-0:3.38.1-1.fc33.x86_64\n - wxGTK3-webview-0:3.0.5.1-2.fc33.i686\n - ilmbase-devel-0:2.3.0-5.fc33.s390x\n - evolution-data-server-0:3.38.1-1.fc33.armv7hl\n - libfontenc-devel-0:1.1.3-13.fc33.i686\n - boost-thread-0:1.73.0-7.fc33.s390x\n - poppler-glib-0:0.90.0-6.fc33.i686\n - boost-coroutine-0:1.73.0-7.fc33.i686\n - libsigc++20-0:2.10.4-1.fc33.i686\n - gsl-devel-0:2.6-3.fc33.s390x\n - libphonenumber-devel-0:8.12.7-1.fc33.ppc64le\n - tcl-1:8.6.10-5.fc33.s390x\n - boost-numpy3-0:1.73.0-7.fc33.armv7hl\n - exiv2-devel-0:0.27.3-4.fc33.x86_64\n - boost-system-0:1.73.0-7.fc33.s390x\n - evolution-data-server-tests-0:3.38.1-1.fc33.ppc64le\n - libsigc++20-devel-0:2.10.4-1.fc33.aarch64\n - boost-atomic-0:1.73.0-7.fc33.armv7hl\n - gspell-0:1.8.4-1.fc33.s390x\n - protobuf-0:3.12.4-1.fc33.ppc64le\n - ghostscript-tools-printing-0:9.53.1-2.fc33.armv7hl\n - ilmbase-devel-0:2.3.0-5.fc33.armv7hl\n - boost-contract-0:1.73.0-7.fc33.s390x\n - tix-devel-1:8.4.3-29.fc33.i686\n - libgweather-devel-0:3.36.1-3.fc33.s390x\n - libdazzle-0:3.38.0-1.fc33.armv7hl\n - OpenEXR-libs-0:2.3.0-6.fc33.armv7hl\n - poppler-qt5-devel-0:0.90.0-6.fc33.s390x\n - boost-wave-0:1.73.0-7.fc33.x86_64\n - poppler-0:0.90.0-6.fc33.s390x\n - libgdata-0:0.17.13-1.fc33.armv7hl\n - libhandy1-devel-0:1.0.0-2.fc33.x86_64\n - openjpeg2-devel-docs-0:2.3.1-7.fc33.noarch\n - openblas-static-0:0.3.10-6.fc33.i686\n - xorg-x11-font-utils-1:7.5-45.fc33.s390x\n - poppler-qt-devel-0:0.90.0-6.fc33.s390x\n - dbus-glib-devel-0:0.110-7.fc32.i686\n - atkmm-devel-0:2.24.3-6.fc33.s390x\n - libgs-devel-0:9.53.1-2.fc33.x86_64\n - libpaper-0:1.1.24-28.fc33.ppc64le\n - libimagequant-devel-0:2.12.6-3.fc33.aarch64\n - exiv2-devel-0:0.27.3-4.fc33.i686\n - boost-random-0:1.73.0-7.fc33.ppc64le\n - libgweather-devel-0:3.36.1-3.fc33.x86_64\n - tix-1:8.4.3-29.fc33.ppc64le\n - boost-filesystem-0:1.73.0-7.fc33.aarch64\n - dbus-glib-devel-0:0.110-7.fc32.armv7hl\n - libical-devel-0:3.0.8-5.fc33.armv7hl\n - poppler-qt5-0:0.90.0-6.fc33.ppc64le\n - compat-wxGTK3-gtk2-gl-0:3.0.5.1-2.fc33.aarch64\n - gnome-desktop3-0:3.38.1-1.fc33.armv7hl\n - boost-examples-0:1.73.0-7.fc33.x86_64\n - boost-serialization-0:1.73.0-7.fc33.armv7hl\n - boost-examples-0:1.73.0-7.fc33.i686\n - libijs-devel-0:0.35-12.fc33.s390x\n - libgdata-devel-0:0.17.13-1.fc33.s390x\n - wxGTK3-0:3.0.5.1-2.fc33.s390x\n - openjpeg2-0:2.3.1-7.fc33.ppc64le\n - openblas-openmp-0:0.3.10-6.fc33.armv7hl\n - libwmf-devel-0:0.2.12-4.fc33.x86_64\n - gnome-desktop3-tests-0:3.38.1-1.fc33.armv7hl\n - compat-wxGTK3-gtk2-0:3.0.5.1-2.fc33.i686\n - boost-timer-0:1.73.0-7.fc33.i686\n - openblas-devel-0:0.3.10-6.fc33.i686\n - glew-0:2.1.0-8.fc33.i686\n - gtksourceview3-0:3.24.11-4.fc33.ppc64le\n - boost-log-0:1.73.0-7.fc33.aarch64\n - geocode-glib-0:3.26.2-2.fc33.aarch64\n - compat-wxGTK3-gtk2-devel-0:3.0.5.1-2.fc33.aarch64\n - libical-glib-0:3.0.8-5.fc33.i686\n - poppler-qt-0:0.90.0-6.fc33.s390x\n - atkmm-0:2.24.3-6.fc33.armv7hl\n - polkit-libs-0:0.117-2.fc33.i686\n - wxBase3-0:3.0.5.1-2.fc33.i686\n - boost-system-0:1.73.0-7.fc33.x86_64\n - ilmbase-devel-0:2.3.0-5.fc33.x86_64\n - evolution-data-server-0:3.38.1-1.fc33.s390x\n - tcl-devel-1:8.6.10-5.fc33.x86_64\n - startup-notification-0:0.12-20.fc33.aarch64\n - atkmm-devel-0:2.24.3-6.fc33.aarch64\n - gsl-0:2.6-3.fc33.aarch64\n - libsigc++20-devel-0:2.10.4-1.fc33.armv7hl\n - adobe-mappings-cmap-0:20171205-9.fc33.noarch\n - libgdata-devel-0:0.17.13-1.fc33.aarch64\n - SDL_image-devel-0:1.2.12-25.fc33.x86_64\n - SDL-static-0:1.2.15-45.fc33.aarch64\n - boost-chrono-0:1.73.0-7.fc33.s390x\n - poppler-glib-devel-0:0.90.0-6.fc33.aarch64\n - exiv2-devel-0:0.27.3-4.fc33.s390x\n - gnome-online-accounts-devel-0:3.37.90-1.fc33.armv7hl\n - poppler-glib-doc-0:0.90.0-6.fc33.noarch\n - libmspack-devel-0:0.10.1-0.4.alpha.fc33.armv7hl\n - libraqm-0:0.7.0-6.fc33.aarch64\n - OpenEXR-0:2.3.0-6.fc33.aarch64\n - evolution-data-server-perl-0:3.38.1-1.fc33.i686\n - ghostscript-tools-fonts-0:9.53.1-2.fc33.armv7hl\n - gnome-desktop3-tests-0:3.38.1-1.fc33.ppc64le\n - libwmf-lite-0:0.2.12-4.fc33.s390x\n - gtkmm30-devel-0:3.24.2-3.fc33.ppc64le\n - cairomm-0:1.12.0-13.fc33.s390x\n - libical-glib-devel-0:3.0.8-5.fc33.s390x\n - libpeas-devel-0:1.28.0-1.fc33.ppc64le\n - boost-type_erasure-0:1.73.0-7.fc33.i686\n - gsl-0:2.6-3.fc33.armv7hl\n - jbig2dec-devel-0:0.19-2.fc33.x86_64\n - boost-coroutine-0:1.73.0-7.fc33.x86_64\n - boost-regex-0:1.73.0-7.fc33.i686\n - libgs-devel-0:9.53.1-2.fc33.armv7hl\n - libwmf-devel-0:0.2.12-4.fc33.s390x\n - protobuf-compiler-0:3.12.4-1.fc33.s390x\n - xorg-x11-font-utils-1:7.5-45.fc33.x86_64\n - gtksourceview3-devel-0:3.24.11-4.fc33.s390x\n - boost-static-0:1.73.0-7.fc33.aarch64\n - boost-doctools-0:1.73.0-7.fc33.ppc64le\n - libphonenumber-0:8.12.7-1.fc33.aarch64\n - ghostscript-tools-printing-0:9.53.1-2.fc33.i686\n - jbig2dec-libs-0:0.19-2.fc33.s390x\n - boost-math-0:1.73.0-7.fc33.i686\n - libical-glib-0:3.0.8-5.fc33.s390x\n - jbig2dec-libs-0:0.19-2.fc33.armv7hl\n - libical-glib-0:3.0.8-5.fc33.x86_64\n - libhandy1-0:1.0.0-2.fc33.x86_64\n - boost-filesystem-0:1.73.0-7.fc33.i686\n - poppler-qt5-devel-0:0.90.0-6.fc33.x86_64\n - ilmbase-0:2.3.0-5.fc33.x86_64\n - libfontenc-devel-0:1.1.3-13.fc33.aarch64\n - tcl-devel-1:8.6.10-5.fc33.i686\n - poppler-glib-devel-0:0.90.0-6.fc33.s390x\n - ghostscript-0:9.53.1-2.fc33.i686\n - libgweather-0:3.36.1-3.fc33.x86_64\n - glibmm24-0:2.64.2-4.fc33.armv7hl\n - libpeas-devel-0:1.28.0-1.fc33.s390x\n - libgdata-0:0.17.13-1.fc33.ppc64le\n - boost-regex-0:1.73.0-7.fc33.aarch64\n - gnome-online-accounts-0:3.37.90-1.fc33.aarch64\n - google-droid-serif-fonts-0:20200215-8.fc33.noarch\n - libhandy1-devel-0:1.0.0-2.fc33.aarch64\n - boost-stacktrace-0:1.73.0-7.fc33.armv7hl\n - gtkmm30-devel-0:3.24.2-3.fc33.i686\n - exiv2-libs-0:0.27.3-4.fc33.aarch64\n - ghostscript-tools-dvipdf-0:9.53.1-2.fc33.ppc64le\n - atkmm-0:2.24.3-6.fc33.s390x\n - openjpeg2-tools-0:2.3.1-7.fc33.aarch64\n - tix-doc-1:8.4.3-29.fc33.ppc64le\n - boost-date-time-0:1.73.0-7.fc33.armv7hl\n - wxGTK3-webview-0:3.0.5.1-2.fc33.x86_64\n - boost-contract-0:1.73.0-7.fc33.armv7hl\n - libical-devel-0:3.0.8-5.fc33.aarch64\n - libsigc++20-0:2.10.4-1.fc33.x86_64\n - exiv2-0:0.27.3-4.fc33.x86_64\n - flatpak-runtime-config-0:33-1.fc33.aarch64\n - protobuf-lite-0:3.12.4-1.fc33.aarch64\n - wxBase3-devel-0:3.0.5.1-2.fc33.x86_64\n - openjpeg2-0:2.3.1-7.fc33.x86_64\n - pangomm-0:2.42.1-2.fc33.i686\n - openjpeg2-devel-0:2.3.1-7.fc33.armv7hl\n - SDL_image-devel-0:1.2.12-25.fc33.aarch64\n - tix-doc-1:8.4.3-29.fc33.aarch64\n - boost-type_erasure-0:1.73.0-7.fc33.ppc64le\n - ilmbase-0:2.3.0-5.fc33.armv7hl\n - openblas-0:0.3.10-6.fc33.armv7hl\n - libimagequant-0:2.12.6-3.fc33.ppc64le\n - tcl-doc-1:8.6.10-5.fc33.noarch\n - boost-program-options-0:1.73.0-7.fc33.aarch64\n - boost-atomic-0:1.73.0-7.fc33.x86_64\n - ilmbase-devel-0:2.3.0-5.fc33.aarch64\n - gtksourceview3-tests-0:3.24.11-4.fc33.armv7hl\n - OpenEXR-libs-0:2.3.0-6.fc33.aarch64\n - poppler-qt-0:0.90.0-6.fc33.x86_64\n - exiv2-libs-0:0.27.3-4.fc33.i686\n - protobuf-lite-static-0:3.12.4-1.fc33.s390x\n - libijs-0:0.35-12.fc33.aarch64\n - libpaper-devel-0:1.1.24-28.fc33.armv7hl\n - exiv2-0:0.27.3-4.fc33.ppc64le\n - boost-python3-0:1.73.0-7.fc33.i686\n - openblas-serial64_-0:0.3.10-6.fc33.s390x\n - boost-doc-0:1.73.0-7.fc33.s390x\n - dbus-glib-devel-0:0.110-7.fc32.aarch64\n - libpeas-0:1.28.0-1.fc33.i686\n - boost-random-0:1.73.0-7.fc33.armv7hl\n - ghostscript-0:9.53.1-2.fc33.armv7hl\n - libsigc++20-devel-0:2.10.4-1.fc33.s390x\n - boost-devel-0:1.73.0-7.fc33.s390x\n - python3-protobuf-0:3.12.4-1.fc33.noarch\n - flatpak-rpm-macros-0:33-2.fc33.ppc64le\n - boost-thread-0:1.73.0-7.fc33.armv7hl\n - boost-container-0:1.73.0-7.fc33.s390x\n - protobuf-lite-static-0:3.12.4-1.fc33.armv7hl\n - tix-devel-1:8.4.3-29.fc33.ppc64le\n - pangomm-devel-0:2.42.1-2.fc33.s390x\n - startup-notification-0:0.12-20.fc33.s390x\n - libpeas-loader-python3-0:1.28.0-1.fc33.aarch64\n - libpeas-loader-python3-0:1.28.0-1.fc33.s390x\n - ilmbase-devel-0:2.3.0-5.fc33.ppc64le\n - boost-random-0:1.73.0-7.fc33.aarch64\n - OpenEXR-devel-0:2.3.0-6.fc33.ppc64le\n - SDL_image-0:1.2.12-25.fc33.armv7hl\n - poppler-data-0:0.4.9-6.fc33.noarch\n - poppler-utils-0:0.90.0-6.fc33.x86_64\n - poppler-devel-0:0.90.0-6.fc33.s390x\n - libGLEW-0:2.1.0-8.fc33.s390x\n - liboauth-devel-0:1.0.3-15.fc33.x86_64\n - boost-test-0:1.73.0-7.fc33.armv7hl\n - boost-wave-0:1.73.0-7.fc33.ppc64le\n - urw-base35-c059-fonts-0:20170801-16.fc33.noarch\n - compat-wxGTK3-gtk2-0:3.0.5.1-2.fc33.x86_64\n - gd-devel-0:2.3.0-3.fc33.aarch64\n - SDL-static-0:1.2.15-45.fc33.s390x\n - protobuf-lite-0:3.12.4-1.fc33.s390x\n - wxGTK3-gl-0:3.0.5.1-2.fc33.x86_64\n - geocode-glib-devel-0:3.26.2-2.fc33.armv7hl\n - libraqm-devel-0:0.7.0-6.fc33.ppc64le\n - dbus-glib-0:0.110-7.fc32.i686\n - exiv2-libs-0:0.27.3-4.fc33.s390x\n - OpenEXR-devel-0:2.3.0-6.fc33.i686\n - gtkmm30-devel-0:3.24.2-3.fc33.x86_64\n - protobuf-static-0:3.12.4-1.fc33.x86_64\n - libgweather-devel-0:3.36.1-3.fc33.i686\n - wxGTK3-devel-0:3.0.5.1-2.fc33.armv7hl\n - libpaper-0:1.1.24-28.fc33.i686\n - poppler-qt-0:0.90.0-6.fc33.armv7hl\n - glibmm24-devel-0:2.64.2-4.fc33.i686\n - boost-atomic-0:1.73.0-7.fc33.ppc64le\n - poppler-qt-devel-0:0.90.0-6.fc33.x86_64\n - jbig2dec-0:0.19-2.fc33.x86_64\n - libsigc++20-doc-0:2.10.4-1.fc33.noarch\n - geocode-glib-0:3.26.2-2.fc33.armv7hl\n - atkmm-0:2.24.3-6.fc33.x86_64\n - dbus-glib-0:0.110-7.fc32.x86_64\n - protobuf-devel-0:3.12.4-1.fc33.armv7hl\n - libidn-devel-0:1.36-1.fc33.x86_64\n - boost-doctools-0:1.73.0-7.fc33.s390x\n - gtksourceview3-0:3.24.11-4.fc33.aarch64\n - boost-system-0:1.73.0-7.fc33.ppc64le\n - openblas-openmp64_-0:0.3.10-6.fc33.aarch64\n - protobuf-lite-devel-0:3.12.4-1.fc33.s390x\n - OpenEXR-0:2.3.0-6.fc33.ppc64le\n - libhandy1-devel-0:1.0.0-2.fc33.s390x\n - evolution-data-server-tests-0:3.38.1-1.fc33.s390x\n - libraqm-0:0.7.0-6.fc33.i686\n - gsl-0:2.6-3.fc33.s390x\n - openjpeg2-tools-0:2.3.1-7.fc33.x86_64\n - OpenEXR-0:2.3.0-6.fc33.armv7hl\n - libijs-0:0.35-12.fc33.x86_64\n - pangomm-0:2.42.1-2.fc33.ppc64le\n - SDL_image-devel-0:1.2.12-25.fc33.armv7hl\n - boost-coroutine-0:1.73.0-7.fc33.s390x\n - ghostscript-gtk-0:9.53.1-2.fc33.armv7hl\n - libical-0:3.0.8-5.fc33.aarch64\n - dbus-glib-devel-0:0.110-7.fc32.ppc64le\n - wxBase3-0:3.0.5.1-2.fc33.armv7hl\n - evolution-data-server-devel-0:3.38.1-1.fc33.ppc64le\n - libijs-devel-0:0.35-12.fc33.i686\n - boost-doc-0:1.73.0-7.fc33.ppc64le\n - wxGTK3-gl-0:3.0.5.1-2.fc33.i686\n - libpaper-0:1.1.24-28.fc33.x86_64\n - adobe-mappings-pdf-0:20180407-7.fc33.noarch\n - libpeas-devel-0:1.28.0-1.fc33.aarch64\n - boost-log-0:1.73.0-7.fc33.i686\n - boost-system-0:1.73.0-7.fc33.aarch64\n - openblas-openmp-0:0.3.10-6.fc33.aarch64\n - boost-regex-0:1.73.0-7.fc33.s390x\n - geocode-glib-0:3.26.2-2.fc33.x86_64\n - openblas-threads64_-0:0.3.10-6.fc33.aarch64\n - boost-test-0:1.73.0-7.fc33.x86_64\n - poppler-glib-0:0.90.0-6.fc33.s390x\n - boost-filesystem-0:1.73.0-7.fc33.ppc64le\n - wxBase3-devel-0:3.0.5.1-2.fc33.armv7hl\n - boost-chrono-0:1.73.0-7.fc33.ppc64le\n - dbus-glib-0:0.110-7.fc32.ppc64le\n - openblas-serial-0:0.3.10-6.fc33.s390x\n - libraqm-devel-0:0.7.0-6.fc33.s390x\n - openblas-threads-0:0.3.10-6.fc33.aarch64\n - boost-b2-0:1.73.0-7.fc33.x86_64\n - libidn-java-0:1.36-1.fc33.noarch\n - libgweather-0:3.36.1-3.fc33.i686\n - tk-devel-1:8.6.10-5.fc33.ppc64le\n - boost-container-0:1.73.0-7.fc33.x86_64\n - libraqm-0:0.7.0-6.fc33.ppc64le\n - python2.7-0:2.7.18-6.fc33.aarch64\n - wxGTK3-devel-0:3.0.5.1-2.fc33.i686\n - libwmf-lite-0:0.2.12-4.fc33.i686\n - glew-devel-0:2.1.0-8.fc33.armv7hl\n - boost-examples-0:1.73.0-7.fc33.armv7hl\n - libimagequant-devel-0:2.12.6-3.fc33.i686\n - gnome-desktop3-tests-0:3.38.1-1.fc33.i686\n - openblas-static-0:0.3.10-6.fc33.aarch64\n - wxGTK3-devel-0:3.0.5.1-2.fc33.s390x\n - exiv2-libs-0:0.27.3-4.fc33.x86_64\n - boost-doc-0:1.73.0-7.fc33.x86_64\n - ghostscript-tools-dvipdf-0:9.53.1-2.fc33.x86_64\n - libwmf-lite-0:0.2.12-4.fc33.ppc64le\n - libpeas-loader-python3-0:1.28.0-1.fc33.armv7hl\n - gspell-devel-0:1.8.4-1.fc33.x86_64\n - wxGTK3-i18n-0:3.0.5.1-2.fc33.noarch\n - protobuf-lite-static-0:3.12.4-1.fc33.aarch64\n - tk-1:8.6.10-5.fc33.aarch64\n - boost-math-0:1.73.0-7.fc33.ppc64le\n - boost-devel-0:1.73.0-7.fc33.i686\n - protobuf-devel-0:3.12.4-1.fc33.s390x\n - glew-devel-0:2.1.0-8.fc33.aarch64\n - openblas-openmp64-0:0.3.10-6.fc33.s390x\n - evolution-data-server-perl-0:3.38.1-1.fc33.x86_64\n - libical-0:3.0.8-5.fc33.ppc64le\n - gtksourceview3-devel-0:3.24.11-4.fc33.armv7hl\n - boost-iostreams-0:1.73.0-7.fc33.x86_64\n - boost-context-0:1.73.0-7.fc33.ppc64le\n - gnome-desktop3-devel-0:3.38.1-1.fc33.aarch64\n - poppler-devel-0:0.90.0-6.fc33.aarch64\n - OpenEXR-0:2.3.0-6.fc33.i686\n - gtksourceview3-0:3.24.11-4.fc33.s390x\n - polkit-devel-0:0.117-2.fc33.armv7hl\n - cairomm-devel-0:1.12.0-13.fc33.s390x\n - libhandy1-devel-0:1.0.0-2.fc33.i686\n - libdazzle-0:3.38.0-1.fc33.x86_64\n - libGLEW-0:2.1.0-8.fc33.i686\n - openblas-static-0:0.3.10-6.fc33.s390x\n - glibmm24-devel-0:2.64.2-4.fc33.ppc64le\n - flatpak-runtime-config-0:33-1.fc33.armv7hl\n - evolution-data-server-langpacks-0:3.38.1-1.fc33.noarch\n - libimagequant-devel-0:2.12.6-3.fc33.s390x\n - gspell-devel-0:1.8.4-1.fc33.armv7hl\n - gnome-desktop3-devel-0:3.38.1-1.fc33.armv7hl\n - boost-iostreams-0:1.73.0-7.fc33.ppc64le\n - poppler-utils-0:0.90.0-6.fc33.aarch64\n - polkit-0:0.117-2.fc33.s390x\n - compat-wxGTK3-gtk2-media-0:3.0.5.1-2.fc33.ppc64le\n - libraqm-devel-0:0.7.0-6.fc33.i686\n - openblas-0:0.3.10-6.fc33.aarch64\n - libphonenumber-0:8.12.7-1.fc33.i686\n - urw-base35-nimbus-mono-ps-fonts-0:20170801-16.fc33.noarch\n - libimagequant-devel-0:2.12.6-3.fc33.x86_64\n - libmspack-devel-0:0.10.1-0.4.alpha.fc33.i686\n - boost-devel-0:1.73.0-7.fc33.x86_64\n - poppler-devel-0:0.90.0-6.fc33.x86_64\n - pangomm-0:2.42.1-2.fc33.x86_64\n - gtksourceview3-devel-0:3.24.11-4.fc33.x86_64\n - evolution-data-server-devel-0:3.38.1-1.fc33.s390x\n - boost-random-0:1.73.0-7.fc33.x86_64\n - boost-random-0:1.73.0-7.fc33.s390x\n - libidn-javadoc-0:1.36-1.fc33.noarch\n - boost-regex-0:1.73.0-7.fc33.ppc64le\n - libwmf-devel-0:0.2.12-4.fc33.aarch64\n - libidn-0:1.36-1.fc33.aarch64\n - openblas-devel-0:0.3.10-6.fc33.armv7hl\n - libsigc++20-0:2.10.4-1.fc33.ppc64le\n - libhandy1-0:1.0.0-2.fc33.i686\n - wxGTK3-media-0:3.0.5.1-2.fc33.ppc64le\n - gd-progs-0:2.3.0-3.fc33.armv7hl\n - gsl-devel-0:2.6-3.fc33.ppc64le\n - libhandy1-0:1.0.0-2.fc33.ppc64le\n - poppler-cpp-devel-0:0.90.0-6.fc33.s390x\n - boost-devel-0:1.73.0-7.fc33.ppc64le\n - boost-random-0:1.73.0-7.fc33.i686\n - boost-type_erasure-0:1.73.0-7.fc33.s390x\n - jbig2dec-libs-0:0.19-2.fc33.x86_64\n - protobuf-lite-devel-0:3.12.4-1.fc33.x86_64\n - protobuf-vim-0:3.12.4-1.fc33.noarch\n - boost-filesystem-0:1.73.0-7.fc33.x86_64\n - tk-1:8.6.10-5.fc33.ppc64le\n - libimagequant-0:2.12.6-3.fc33.aarch64\n - evolution-data-server-0:3.38.1-1.fc33.aarch64\n - libraqm-devel-0:0.7.0-6.fc33.x86_64\n - tcl-1:8.6.10-5.fc33.armv7hl\n - protobuf-lite-static-0:3.12.4-1.fc33.ppc64le\n - openjpeg2-devel-0:2.3.1-7.fc33.x86_64\n - poppler-cpp-devel-0:0.90.0-6.fc33.armv7hl\n - compat-wxGTK3-gtk2-devel-0:3.0.5.1-2.fc33.ppc64le\n - gtksourceview3-devel-0:3.24.11-4.fc33.i686\n - openblas-threads-0:0.3.10-6.fc33.armv7hl\n - boost-contract-0:1.73.0-7.fc33.ppc64le\n - libhandy1-0:1.0.0-2.fc33.aarch64\n - glew-devel-0:2.1.0-8.fc33.s390x\n - ghostscript-gtk-0:9.53.1-2.fc33.i686\n - gspell-devel-0:1.8.4-1.fc33.i686\n - libwmf-0:0.2.12-4.fc33.armv7hl\n - libfontenc-0:1.1.3-13.fc33.i686\n - exiv2-0:0.27.3-4.fc33.s390x\n - SDL_image-0:1.2.12-25.fc33.s390x\n - SDL-0:1.2.15-45.fc33.s390x\n - urw-base35-gothic-fonts-0:20170801-16.fc33.noarch\n - cairomm-devel-0:1.12.0-13.fc33.aarch64\n - glibmm24-devel-0:2.64.2-4.fc33.s390x\n - flatpak-rpm-macros-0:33-2.fc33.x86_64\n - libdazzle-0:3.38.0-1.fc33.ppc64le\n - libical-devel-0:3.0.8-5.fc33.ppc64le\n - openblas-0:0.3.10-6.fc33.x86_64\n - boost-wave-0:1.73.0-7.fc33.armv7hl\n - boost-0:1.73.0-7.fc33.armv7hl\n - pangomm-0:2.42.1-2.fc33.s390x\n - boost-stacktrace-0:1.73.0-7.fc33.aarch64\n - boost-nowide-0:1.73.0-7.fc33.s390x\n - gspell-doc-0:1.8.4-1.fc33.noarch\n - boost-iostreams-0:1.73.0-7.fc33.s390x\n - libsigc++20-devel-0:2.10.4-1.fc33.x86_64\n - liboauth-0:1.0.3-15.fc33.x86_64\n - openblas-serial64-0:0.3.10-6.fc33.x86_64\n - protobuf-lite-devel-0:3.12.4-1.fc33.ppc64le\n - libgweather-0:3.36.1-3.fc33.s390x\n - libidn-0:1.36-1.fc33.x86_64\n - liboauth-0:1.0.3-15.fc33.i686\n - libdazzle-devel-0:3.38.0-1.fc33.x86_64\n - gtksourceview3-devel-0:3.24.11-4.fc33.ppc64le\n - ghostscript-gtk-0:9.53.1-2.fc33.x86_64\n - compat-wxGTK3-gtk2-0:3.0.5.1-2.fc33.ppc64le\n - cairomm-doc-0:1.12.0-13.fc33.noarch\n - protobuf-static-0:3.12.4-1.fc33.i686\n - boost-0:1.73.0-7.fc33.aarch64\n - boost-doctools-0:1.73.0-7.fc33.x86_64\n - cairomm-0:1.12.0-13.fc33.x86_64\n - libpeas-loader-python3-0:1.28.0-1.fc33.ppc64le\n - boost-program-options-0:1.73.0-7.fc33.armv7hl\n - libfontenc-0:1.1.3-13.fc33.armv7hl\n - poppler-devel-0:0.90.0-6.fc33.i686\n - boost-locale-0:1.73.0-7.fc33.aarch64\n - libwmf-lite-0:0.2.12-4.fc33.aarch64\n - tcl-1:8.6.10-5.fc33.ppc64le\n - wxGTK3-docs-0:3.0.5.1-2.fc33.noarch\n - gtkmm30-devel-0:3.24.2-3.fc33.aarch64\n - libidn-0:1.36-1.fc33.s390x\n - libhandy1-0:1.0.0-2.fc33.s390x\n - cairomm-devel-0:1.12.0-13.fc33.ppc64le\n - gtkmm30-0:3.24.2-3.fc33.s390x\n - wxGTK3-gl-0:3.0.5.1-2.fc33.ppc64le\n - exiv2-libs-0:0.27.3-4.fc33.armv7hl\n - liboauth-devel-0:1.0.3-15.fc33.i686\n - polkit-libs-0:0.117-2.fc33.x86_64\n - gtkmm30-0:3.24.2-3.fc33.armv7hl\n - poppler-utils-0:0.90.0-6.fc33.ppc64le\n - cairomm-devel-0:1.12.0-13.fc33.x86_64\n - ghostscript-tools-dvipdf-0:9.53.1-2.fc33.i686\n - glibmm24-devel-0:2.64.2-4.fc33.x86_64\n - protobuf-compiler-0:3.12.4-1.fc33.x86_64\n - exiv2-0:0.27.3-4.fc33.i686\n - compat-wxGTK3-gtk2-0:3.0.5.1-2.fc33.aarch64\n - libsigc++20-devel-0:2.10.4-1.fc33.i686\n - ghostscript-tools-fonts-0:9.53.1-2.fc33.i686\n - startup-notification-0:0.12-20.fc33.armv7hl\n - ghostscript-gtk-0:9.53.1-2.fc33.s390x\n - tix-1:8.4.3-29.fc33.i686\n - poppler-glib-0:0.90.0-6.fc33.armv7hl\n - wxGTK3-webview-0:3.0.5.1-2.fc33.armv7hl\n - boost-log-0:1.73.0-7.fc33.s390x\n - libical-devel-0:3.0.8-5.fc33.x86_64\n - libraqm-docs-0:0.7.0-6.fc33.noarch\n - libmspack-0:0.10.1-0.4.alpha.fc33.s390x\n - atkmm-doc-0:2.24.3-6.fc33.noarch\n - boost-doc-0:1.73.0-7.fc33.armv7hl\n - boost-coroutine-0:1.73.0-7.fc33.aarch64\n - boost-python3-0:1.73.0-7.fc33.armv7hl\n - libgdata-devel-0:0.17.13-1.fc33.ppc64le\n - polkit-docs-0:0.117-2.fc33.noarch\n - boost-static-0:1.73.0-7.fc33.i686\n - gspell-devel-0:1.8.4-1.fc33.aarch64\n - SDL-devel-0:1.2.15-45.fc33.aarch64\n - gnome-online-accounts-devel-0:3.37.90-1.fc33.s390x\n - libGLEW-0:2.1.0-8.fc33.ppc64le\n - boost-iostreams-0:1.73.0-7.fc33.aarch64\n - ghostscript-tools-printing-0:9.53.1-2.fc33.ppc64le\n - liboauth-devel-0:1.0.3-15.fc33.aarch64\n - wxGTK3-webview-0:3.0.5.1-2.fc33.aarch64\n - ghostscript-x11-0:9.53.1-2.fc33.armv7hl\n - ghostscript-tools-fonts-0:9.53.1-2.fc33.s390x\n - cairomm-devel-0:1.12.0-13.fc33.armv7hl\n - protobuf-bom-0:3.12.4-1.fc33.noarch\n - python2.7-0:2.7.18-6.fc33.ppc64le\n - tix-doc-1:8.4.3-29.fc33.s390x\n - libmspack-devel-0:0.10.1-0.4.alpha.fc33.ppc64le\n - libfontenc-devel-0:1.1.3-13.fc33.ppc64le\n - poppler-devel-0:0.90.0-6.fc33.armv7hl\n - libgs-0:9.53.1-2.fc33.ppc64le\n - libfontenc-0:1.1.3-13.fc33.s390x\n - boost-static-0:1.73.0-7.fc33.s390x\n - openblas-openmp64-0:0.3.10-6.fc33.ppc64le\n - libpeas-gtk-0:1.28.0-1.fc33.x86_64\n - libpeas-loader-python3-0:1.28.0-1.fc33.i686\n - libical-0:3.0.8-5.fc33.x86_64\n - gnome-desktop3-0:3.38.1-1.fc33.aarch64\n - libijs-0:0.35-12.fc33.s390x\n - boost-system-0:1.73.0-7.fc33.i686\n - gtkmm30-devel-0:3.24.2-3.fc33.s390x\n - gspell-0:1.8.4-1.fc33.armv7hl\n - ghostscript-gtk-0:9.53.1-2.fc33.aarch64\n - compat-wxGTK3-gtk2-gl-0:3.0.5.1-2.fc33.armv7hl\n - ghostscript-core-0:9.53.1-2.fc33.x86_64\n - geocode-glib-devel-0:3.26.2-2.fc33.x86_64\n - libgdata-0:0.17.13-1.fc33.aarch64\n - boost-chrono-0:1.73.0-7.fc33.i686\n - boost-program-options-0:1.73.0-7.fc33.x86_64\n - boost-numpy3-0:1.73.0-7.fc33.aarch64\n - protobuf-lite-static-0:3.12.4-1.fc33.i686\n - libhandy1-devel-0:1.0.0-2.fc33.armv7hl\n - tk-devel-1:8.6.10-5.fc33.aarch64\n - libfontenc-0:1.1.3-13.fc33.ppc64le\n - protobuf-parent-0:3.12.4-1.fc33.noarch\n - adobe-mappings-cmap-devel-0:20171205-9.fc33.noarch\n - tix-1:8.4.3-29.fc33.aarch64\n - evolution-data-server-tests-0:3.38.1-1.fc33.armv7hl\n - SDL_image-devel-0:1.2.12-25.fc33.i686\n - libphonenumber-0:8.12.7-1.fc33.armv7hl\n - libphonenumber-0:8.12.7-1.fc33.s390x\n - libpeas-gtk-0:1.28.0-1.fc33.aarch64\n - boost-numpy3-0:1.73.0-7.fc33.ppc64le\n - libsigc++20-devel-0:2.10.4-1.fc33.ppc64le\n - jbig2dec-devel-0:0.19-2.fc33.s390x\n - ghostscript-core-0:9.53.1-2.fc33.armv7hl\n - boost-container-0:1.73.0-7.fc33.ppc64le\n - poppler-utils-0:0.90.0-6.fc33.i686\n - libsigc++20-0:2.10.4-1.fc33.s390x\n - libgweather-0:3.36.1-3.fc33.armv7hl\n - poppler-cpp-0:0.90.0-6.fc33.i686\n - poppler-data-devel-0:0.4.9-6.fc33.noarch\n - libidn-0:1.36-1.fc33.armv7hl\n - openblas-serial-0:0.3.10-6.fc33.armv7hl\n - libwmf-lite-0:0.2.12-4.fc33.armv7hl\n - urw-base35-fonts-devel-0:20170801-16.fc33.noarch\n - protobuf-compiler-0:3.12.4-1.fc33.i686\n - boost-thread-0:1.73.0-7.fc33.i686\n - libijs-devel-0:0.35-12.fc33.armv7hl\n - gnome-online-accounts-0:3.37.90-1.fc33.i686\n - tk-1:8.6.10-5.fc33.x86_64\n - boost-wave-0:1.73.0-7.fc33.s390x\n - gnome-desktop3-devel-0:3.38.1-1.fc33.i686\n - libical-0:3.0.8-5.fc33.i686\n - gspell-devel-0:1.8.4-1.fc33.ppc64le\n - libsigc++20-0:2.10.4-1.fc33.aarch64\n - libgs-devel-0:9.53.1-2.fc33.s390x\n - boost-static-0:1.73.0-7.fc33.armv7hl\n - wxGTK3-webview-0:3.0.5.1-2.fc33.s390x\n - liboauth-0:1.0.3-15.fc33.armv7hl\n - gtkmm30-0:3.24.2-3.fc33.i686\n - protobuf-static-0:3.12.4-1.fc33.ppc64le\n - boost-0:1.73.0-7.fc33.i686\n - gtkmm30-0:3.24.2-3.fc33.x86_64\n - libical-devel-0:3.0.8-5.fc33.i686\n - libpeas-gtk-0:1.28.0-1.fc33.ppc64le\n - boost-math-0:1.73.0-7.fc33.aarch64\n - atkmm-0:2.24.3-6.fc33.ppc64le\n - poppler-cpp-0:0.90.0-6.fc33.ppc64le\n - libgs-devel-0:9.53.1-2.fc33.i686\n - openjpeg2-devel-0:2.3.1-7.fc33.aarch64\n - compat-wxGTK3-gtk2-gl-0:3.0.5.1-2.fc33.s390x\n - urw-base35-standard-symbols-ps-fonts-0:20170801-16.fc33.noarch\n - boost-numpy3-0:1.73.0-7.fc33.s390x\n - poppler-qt-devel-0:0.90.0-6.fc33.ppc64le\n - SDL-static-0:1.2.15-45.fc33.ppc64le\n - libical-0:3.0.8-5.fc33.armv7hl\n - libidn-devel-0:1.36-1.fc33.aarch64\n - boost-timer-0:1.73.0-7.fc33.armv7hl\n - libdazzle-devel-0:3.38.0-1.fc33.armv7hl\n - atkmm-0:2.24.3-6.fc33.aarch64\n - boost-iostreams-0:1.73.0-7.fc33.armv7hl\n - wxGTK3-0:3.0.5.1-2.fc33.armv7hl\n - gnome-desktop3-0:3.38.1-1.fc33.s390x\n - protobuf-0:3.12.4-1.fc33.x86_64\n - protobuf-lite-0:3.12.4-1.fc33.ppc64le\n - openblas-threads64_-0:0.3.10-6.fc33.x86_64\n - compat-wxGTK3-gtk2-media-0:3.0.5.1-2.fc33.armv7hl\n - boost-coroutine-0:1.73.0-7.fc33.ppc64le\n - google-droid-fonts-all-0:20200215-8.fc33.noarch\n - libpeas-devel-0:1.28.0-1.fc33.armv7hl\n - libGLEW-0:2.1.0-8.fc33.armv7hl\n - libphonenumber-devel-0:8.12.7-1.fc33.s390x\n - openblas-threads-0:0.3.10-6.fc33.s390x\n - libimagequant-0:2.12.6-3.fc33.i686\n - libpeas-gtk-0:1.28.0-1.fc33.i686\n - libmspack-0:0.10.1-0.4.alpha.fc33.armv7hl\n - flatpak-rpm-macros-0:33-2.fc33.armv7hl\n - libical-glib-0:3.0.8-5.fc33.armv7hl\n - boost-thread-0:1.73.0-7.fc33.x86_64\n - poppler-glib-0:0.90.0-6.fc33.aarch64\n - gd-devel-0:2.3.0-3.fc33.armv7hl\n - OpenEXR-doc-0:2.3.0-6.fc33.ppc64le\n - liboauth-0:1.0.3-15.fc33.s390x\n - SDL-devel-0:1.2.15-45.fc33.armv7hl\n - ghostscript-x11-0:9.53.1-2.fc33.aarch64\n - SDL_image-devel-0:1.2.12-25.fc33.ppc64le\n - OpenEXR-libs-0:2.3.0-6.fc33.ppc64le\n - gnome-online-accounts-0:3.37.90-1.fc33.armv7hl\n - boost-timer-0:1.73.0-7.fc33.s390x\n - wxBase3-devel-0:3.0.5.1-2.fc33.i686\n - boost-fiber-0:1.73.0-7.fc33.s390x\n - boost-test-0:1.73.0-7.fc33.i686\n - python2-setuptools-0:41.2.0-3.fc33.noarch\n - poppler-qt-0:0.90.0-6.fc33.ppc64le\n - boost-stacktrace-0:1.73.0-7.fc33.x86_64\n - evolution-data-server-devel-0:3.38.1-1.fc33.aarch64\n - tk-1:8.6.10-5.fc33.armv7hl\n - libphonenumber-0:8.12.7-1.fc33.ppc64le\n - tix-1:8.4.3-29.fc33.s390x\n - libgs-devel-0:9.53.1-2.fc33.aarch64\n - ghostscript-core-0:9.53.1-2.fc33.ppc64le\n - libdazzle-devel-0:3.38.0-1.fc33.s390x\n - polkit-libs-0:0.117-2.fc33.armv7hl\n - openjpeg2-0:2.3.1-7.fc33.s390x\n - gtksourceview3-tests-0:3.24.11-4.fc33.ppc64le\n - boost-log-0:1.73.0-7.fc33.ppc64le\n - poppler-qt-0:0.90.0-6.fc33.i686\n - google-droid-sans-mono-fonts-0:20200215-8.fc33.noarch\n - libgweather-0:3.36.1-3.fc33.aarch64\n - gd-0:2.3.0-3.fc33.x86_64\n - boost-chrono-0:1.73.0-7.fc33.aarch64\n - boost-locale-0:1.73.0-7.fc33.s390x\n - boost-nowide-0:1.73.0-7.fc33.ppc64le\n - boost-examples-0:1.73.0-7.fc33.ppc64le\n - jbig2dec-libs-0:0.19-2.fc33.aarch64\n - glew-0:2.1.0-8.fc33.armv7hl\n - protobuf-0:3.12.4-1.fc33.i686\n - evolution-data-server-0:3.38.1-1.fc33.x86_64\n - SDL-0:1.2.15-45.fc33.i686\n - boost-date-time-0:1.73.0-7.fc33.x86_64\n - gnome-desktop3-0:3.38.1-1.fc33.i686\n - openblas-openmp64-0:0.3.10-6.fc33.x86_64\n - polkit-devel-0:0.117-2.fc33.i686\n - boost-locale-0:1.73.0-7.fc33.ppc64le\n - libpeas-0:1.28.0-1.fc33.ppc64le\n - boost-serialization-0:1.73.0-7.fc33.ppc64le\n - jbig2dec-devel-0:0.19-2.fc33.armv7hl\n - evolution-data-server-tests-0:3.38.1-1.fc33.aarch64\n - tk-devel-1:8.6.10-5.fc33.s390x\n - startup-notification-devel-0:0.12-20.fc33.aarch64\n - libijs-0:0.35-12.fc33.armv7hl\n - ilmbase-0:2.3.0-5.fc33.s390x\n - gd-progs-0:2.3.0-3.fc33.ppc64le\n - libpaper-devel-0:1.1.24-28.fc33.i686\n - evolution-data-server-0:3.38.1-1.fc33.i686\n - gnome-desktop3-tests-0:3.38.1-1.fc33.aarch64\n - boost-fiber-0:1.73.0-7.fc33.i686\n - gd-0:2.3.0-3.fc33.armv7hl\n - openblas-0:0.3.10-6.fc33.i686\n - libraqm-devel-0:0.7.0-6.fc33.armv7hl\n - openblas-threads-0:0.3.10-6.fc33.i686\n - boost-thread-0:1.73.0-7.fc33.aarch64\n - boost-date-time-0:1.73.0-7.fc33.aarch64\n - boost-context-0:1.73.0-7.fc33.s390x\n - libgdata-devel-0:0.17.13-1.fc33.armv7hl\n - tcl-1:8.6.10-5.fc33.aarch64\n - libfontenc-0:1.1.3-13.fc33.aarch64\n - wxGTK3-0:3.0.5.1-2.fc33.i686\n - gnome-online-accounts-0:3.37.90-1.fc33.s390x\n - OpenEXR-libs-0:2.3.0-6.fc33.x86_64\n - openblas-threads64_-0:0.3.10-6.fc33.s390x\n - ghostscript-0:9.53.1-2.fc33.aarch64\n - glibmm24-devel-0:2.64.2-4.fc33.armv7hl\n - gsound-0:1.0.2-12.fc33.ppc64le\n - ghostscript-x11-0:9.53.1-2.fc33.ppc64le\n - flatpak-runtime-config-0:33-1.fc33.i686\n - startup-notification-0:0.12-20.fc33.i686\n - gd-devel-0:2.3.0-3.fc33.ppc64le\n - gtkmm30-devel-0:3.24.2-3.fc33.armv7hl\n - boost-container-0:1.73.0-7.fc33.aarch64\n - libfontenc-0:1.1.3-13.fc33.x86_64\n - libwmf-0:0.2.12-4.fc33.ppc64le\n - glew-0:2.1.0-8.fc33.s390x\n - boost-contract-0:1.73.0-7.fc33.x86_64\n - boost-program-options-0:1.73.0-7.fc33.ppc64le\n - gnome-online-accounts-devel-0:3.37.90-1.fc33.x86_64\n - SDL-static-0:1.2.15-45.fc33.i686\n - gnome-online-accounts-devel-0:3.37.90-1.fc33.aarch64\n - protobuf-static-0:3.12.4-1.fc33.armv7hl\n - poppler-cpp-0:0.90.0-6.fc33.armv7hl\n - adobe-mappings-cmap-deprecated-0:20171205-9.fc33.noarch\n - poppler-qt5-devel-0:0.90.0-6.fc33.armv7hl\n - libpaper-devel-0:1.1.24-28.fc33.x86_64\n - wxGTK3-gl-0:3.0.5.1-2.fc33.aarch64\n - openblas-openmp64_-0:0.3.10-6.fc33.s390x\n - libpeas-devel-0:1.28.0-1.fc33.i686\n - evolution-data-server-perl-0:3.38.1-1.fc33.aarch64\n - geocode-glib-0:3.26.2-2.fc33.ppc64le\n - ghostscript-tools-fonts-0:9.53.1-2.fc33.aarch64\n - ghostscript-tools-fonts-0:9.53.1-2.fc33.x86_64\n - poppler-qt-devel-0:0.90.0-6.fc33.i686\n - gsound-0:1.0.2-12.fc33.aarch64\n - poppler-glib-0:0.90.0-6.fc33.ppc64le\n - jbig2dec-devel-0:0.19-2.fc33.ppc64le\n - flatpak-rpm-macros-0:33-2.fc33.s390x\n - flatpak-runtime-config-0:33-1.fc33.x86_64\n - gsound-devel-0:1.0.2-12.fc33.armv7hl\n - ilmbase-0:2.3.0-5.fc33.aarch64\n - wxBase3-0:3.0.5.1-2.fc33.x86_64\n - OpenEXR-doc-0:2.3.0-6.fc33.x86_64\n - libGLEW-0:2.1.0-8.fc33.x86_64\n - liboauth-devel-0:1.0.3-15.fc33.s390x\n - ghostscript-0:9.53.1-2.fc33.x86_64\n - urw-base35-bookman-fonts-0:20170801-16.fc33.noarch\n - libgweather-devel-0:3.36.1-3.fc33.armv7hl\n - boost-examples-0:1.73.0-7.fc33.s390x\n - libraqm-0:0.7.0-6.fc33.s390x\n - tcl-devel-1:8.6.10-5.fc33.aarch64\n - pangomm-devel-0:2.42.1-2.fc33.i686\n - urw-base35-fonts-common-0:20170801-16.fc33.noarch\n - boost-nowide-0:1.73.0-7.fc33.armv7hl\n - boost-filesystem-0:1.73.0-7.fc33.armv7hl\n - libidn-devel-0:1.36-1.fc33.s390x\n - boost-atomic-0:1.73.0-7.fc33.s390x\n - startup-notification-devel-0:0.12-20.fc33.s390x\n - gnome-desktop3-0:3.38.1-1.fc33.ppc64le\n - wxGTK3-media-0:3.0.5.1-2.fc33.armv7hl\n - boost-static-0:1.73.0-7.fc33.x86_64\n - glibmm24-0:2.64.2-4.fc33.x86_64\n - boost-coroutine-0:1.73.0-7.fc33.armv7hl\n - boost-atomic-0:1.73.0-7.fc33.aarch64\n - jbig2dec-libs-0:0.19-2.fc33.i686\n - gtksourceview3-0:3.24.11-4.fc33.x86_64\n - boost-thread-0:1.73.0-7.fc33.ppc64le\n - ghostscript-0:9.53.1-2.fc33.s390x\n - xorg-x11-font-utils-1:7.5-45.fc33.ppc64le\n - poppler-0:0.90.0-6.fc33.aarch64\n - poppler-cpp-0:0.90.0-6.fc33.x86_64\n - glew-0:2.1.0-8.fc33.x86_64\n - boost-static-0:1.73.0-7.fc33.ppc64le\n - SDL-0:1.2.15-45.fc33.ppc64le\n - jbig2dec-libs-0:0.19-2.fc33.ppc64le\n - boost-locale-0:1.73.0-7.fc33.armv7hl\n - polkit-devel-0:0.117-2.fc33.ppc64le\n - python2.7-0:2.7.18-6.fc33.s390x\n - protobuf-lite-0:3.12.4-1.fc33.i686\n - gtksourceview3-tests-0:3.24.11-4.fc33.aarch64\n - openblas-0:0.3.10-6.fc33.ppc64le\n - protobuf-compiler-0:3.12.4-1.fc33.armv7hl\n - gd-progs-0:2.3.0-3.fc33.aarch64\n - poppler-qt5-0:0.90.0-6.fc33.x86_64\n - boost-regex-0:1.73.0-7.fc33.armv7hl\n - SDL_image-0:1.2.12-25.fc33.ppc64le\n - openblas-serial64-0:0.3.10-6.fc33.s390x\n - ilmbase-devel-0:2.3.0-5.fc33.i686\n dependencies:\n - buildrequires:\n flatpak-common: [f33]\n flatpak-runtime: [f33]\n platform: [f33]\n requires:\n flatpak-common: [f33]\n flatpak-runtime: [f33]\n platform: [f33]\n profiles:\n default:\n rpms:\n - 0ad\n components:\n rpms:\n 0ad:\n rationale: Application package\n repository: git+https://src.fedoraproject.org/rpms/0ad\n cache: https://src.fedoraproject.org/repo/pkgs/0ad\n ref: f33\n buildorder: 10\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n 0ad-data:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/0ad-data\n cache: https://src.fedoraproject.org/repo/pkgs/0ad-data\n ref: f33\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n dejavu-fonts:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/dejavu-fonts\n cache: https://src.fedoraproject.org/repo/pkgs/dejavu-fonts\n ref: f33\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n enet:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/enet\n cache: https://src.fedoraproject.org/repo/pkgs/enet\n ref: f33\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n gloox:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/gloox\n cache: https://src.fedoraproject.org/repo/pkgs/gloox\n ref: f33\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n libsodium:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/libsodium\n cache: https://src.fedoraproject.org/repo/pkgs/libsodium\n ref: f33\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n miniupnpc:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/miniupnpc\n cache: https://src.fedoraproject.org/repo/pkgs/miniupnpc\n ref: f33\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n nvidia-texture-tools:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/nvidia-texture-tools\n cache: https://src.fedoraproject.org/repo/pkgs/nvidia-texture-tools\n ref: f33\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n...", "runtime_deps": [ { "dependency": "flatpak-runtime", "stream": "f33" }, { "dependency": "platform", "stream": "f33" }, { "dependency": "flatpak-common", "stream": "f33" } ], "build_deps": [ { "dependency": "flatpak-runtime", "stream": "f33" }, { "dependency": "platform", "stream": "f33" }, { "dependency": "flatpak-common", "stream": "f33" } ], "active": true, "rpms": [ "0ad-0:0.0.23b-21.module_f33+10410+d6497ab0.aarch64.rpm", "0ad-0:0.0.23b-21.module_f33+10410+d6497ab0.armv7hl.rpm", "0ad-0:0.0.23b-21.module_f33+10410+d6497ab0.i686.rpm", "0ad-0:0.0.23b-21.module_f33+10410+d6497ab0.ppc64le.rpm", "0ad-0:0.0.23b-21.module_f33+10410+d6497ab0.src.rpm", "0ad-0:0.0.23b-21.module_f33+10410+d6497ab0.x86_64.rpm", "0ad-data-0:0.0.23b-5.module_f33+10410+d6497ab0.noarch.rpm", "0ad-data-0:0.0.23b-5.module_f33+10410+d6497ab0.src.rpm", "0ad-debuginfo-0:0.0.23b-21.module_f33+10410+d6497ab0.aarch64.rpm", "0ad-debuginfo-0:0.0.23b-21.module_f33+10410+d6497ab0.armv7hl.rpm", "0ad-debuginfo-0:0.0.23b-21.module_f33+10410+d6497ab0.i686.rpm", "0ad-debuginfo-0:0.0.23b-21.module_f33+10410+d6497ab0.ppc64le.rpm", "0ad-debuginfo-0:0.0.23b-21.module_f33+10410+d6497ab0.x86_64.rpm", "0ad-debugsource-0:0.0.23b-21.module_f33+10410+d6497ab0.aarch64.rpm", "0ad-debugsource-0:0.0.23b-21.module_f33+10410+d6497ab0.armv7hl.rpm", "0ad-debugsource-0:0.0.23b-21.module_f33+10410+d6497ab0.i686.rpm", "0ad-debugsource-0:0.0.23b-21.module_f33+10410+d6497ab0.ppc64le.rpm", "0ad-debugsource-0:0.0.23b-21.module_f33+10410+d6497ab0.x86_64.rpm", "dejavu-fonts-0:2.37-15.module_f33+10410+d6497ab0.src.rpm", "dejavu-fonts-all-0:2.37-15.module_f33+10410+d6497ab0.noarch.rpm", "dejavu-fonts-doc-0:2.37-15.module_f33+10410+d6497ab0.noarch.rpm", "dejavu-lgc-fonts-all-0:2.37-15.module_f33+10410+d6497ab0.noarch.rpm", "dejavu-lgc-sans-fonts-0:2.37-15.module_f33+10410+d6497ab0.noarch.rpm", "dejavu-lgc-sans-mono-fonts-0:2.37-15.module_f33+10410+d6497ab0.noarch.rpm", "dejavu-lgc-serif-fonts-0:2.37-15.module_f33+10410+d6497ab0.noarch.rpm", "dejavu-sans-fonts-0:2.37-15.module_f33+10410+d6497ab0.noarch.rpm", "dejavu-sans-mono-fonts-0:2.37-15.module_f33+10410+d6497ab0.noarch.rpm", "dejavu-serif-fonts-0:2.37-15.module_f33+10410+d6497ab0.noarch.rpm", "enet-0:1.3.16-1.module_f33+10410+d6497ab0.aarch64.rpm", "enet-0:1.3.16-1.module_f33+10410+d6497ab0.armv7hl.rpm", "enet-0:1.3.16-1.module_f33+10410+d6497ab0.i686.rpm", "enet-0:1.3.16-1.module_f33+10410+d6497ab0.ppc64le.rpm", "enet-0:1.3.16-1.module_f33+10410+d6497ab0.s390x.rpm", "enet-0:1.3.16-1.module_f33+10410+d6497ab0.src.rpm", "enet-0:1.3.16-1.module_f33+10410+d6497ab0.x86_64.rpm", "enet-debuginfo-0:1.3.16-1.module_f33+10410+d6497ab0.aarch64.rpm", "enet-debuginfo-0:1.3.16-1.module_f33+10410+d6497ab0.armv7hl.rpm", "enet-debuginfo-0:1.3.16-1.module_f33+10410+d6497ab0.i686.rpm", "enet-debuginfo-0:1.3.16-1.module_f33+10410+d6497ab0.ppc64le.rpm", "enet-debuginfo-0:1.3.16-1.module_f33+10410+d6497ab0.s390x.rpm", "enet-debuginfo-0:1.3.16-1.module_f33+10410+d6497ab0.x86_64.rpm", "enet-debugsource-0:1.3.16-1.module_f33+10410+d6497ab0.aarch64.rpm", "enet-debugsource-0:1.3.16-1.module_f33+10410+d6497ab0.armv7hl.rpm", "enet-debugsource-0:1.3.16-1.module_f33+10410+d6497ab0.i686.rpm", "enet-debugsource-0:1.3.16-1.module_f33+10410+d6497ab0.ppc64le.rpm", "enet-debugsource-0:1.3.16-1.module_f33+10410+d6497ab0.s390x.rpm", "enet-debugsource-0:1.3.16-1.module_f33+10410+d6497ab0.x86_64.rpm", "enet-devel-0:1.3.16-1.module_f33+10410+d6497ab0.aarch64.rpm", "enet-devel-0:1.3.16-1.module_f33+10410+d6497ab0.armv7hl.rpm", "enet-devel-0:1.3.16-1.module_f33+10410+d6497ab0.i686.rpm", "enet-devel-0:1.3.16-1.module_f33+10410+d6497ab0.ppc64le.rpm", "enet-devel-0:1.3.16-1.module_f33+10410+d6497ab0.s390x.rpm", "enet-devel-0:1.3.16-1.module_f33+10410+d6497ab0.x86_64.rpm", "gloox-1:1.0.23-3.module_f33+10410+d6497ab0.aarch64.rpm", "gloox-1:1.0.23-3.module_f33+10410+d6497ab0.armv7hl.rpm", "gloox-1:1.0.23-3.module_f33+10410+d6497ab0.i686.rpm", "gloox-1:1.0.23-3.module_f33+10410+d6497ab0.ppc64le.rpm", "gloox-1:1.0.23-3.module_f33+10410+d6497ab0.s390x.rpm", "gloox-1:1.0.23-3.module_f33+10410+d6497ab0.src.rpm", "gloox-1:1.0.23-3.module_f33+10410+d6497ab0.x86_64.rpm", "gloox-debuginfo-1:1.0.23-3.module_f33+10410+d6497ab0.aarch64.rpm", "gloox-debuginfo-1:1.0.23-3.module_f33+10410+d6497ab0.armv7hl.rpm", "gloox-debuginfo-1:1.0.23-3.module_f33+10410+d6497ab0.i686.rpm", "gloox-debuginfo-1:1.0.23-3.module_f33+10410+d6497ab0.ppc64le.rpm", "gloox-debuginfo-1:1.0.23-3.module_f33+10410+d6497ab0.s390x.rpm", "gloox-debuginfo-1:1.0.23-3.module_f33+10410+d6497ab0.x86_64.rpm", "gloox-debugsource-1:1.0.23-3.module_f33+10410+d6497ab0.aarch64.rpm", "gloox-debugsource-1:1.0.23-3.module_f33+10410+d6497ab0.armv7hl.rpm", "gloox-debugsource-1:1.0.23-3.module_f33+10410+d6497ab0.i686.rpm", "gloox-debugsource-1:1.0.23-3.module_f33+10410+d6497ab0.ppc64le.rpm", "gloox-debugsource-1:1.0.23-3.module_f33+10410+d6497ab0.s390x.rpm", "gloox-debugsource-1:1.0.23-3.module_f33+10410+d6497ab0.x86_64.rpm", "gloox-devel-1:1.0.23-3.module_f33+10410+d6497ab0.aarch64.rpm", "gloox-devel-1:1.0.23-3.module_f33+10410+d6497ab0.armv7hl.rpm", "gloox-devel-1:1.0.23-3.module_f33+10410+d6497ab0.i686.rpm", "gloox-devel-1:1.0.23-3.module_f33+10410+d6497ab0.ppc64le.rpm", "gloox-devel-1:1.0.23-3.module_f33+10410+d6497ab0.s390x.rpm", "gloox-devel-1:1.0.23-3.module_f33+10410+d6497ab0.x86_64.rpm", "libsodium-0:1.0.18-6.module_f33+10410+d6497ab0.aarch64.rpm", "libsodium-0:1.0.18-6.module_f33+10410+d6497ab0.armv7hl.rpm", "libsodium-0:1.0.18-6.module_f33+10410+d6497ab0.i686.rpm", "libsodium-0:1.0.18-6.module_f33+10410+d6497ab0.ppc64le.rpm", "libsodium-0:1.0.18-6.module_f33+10410+d6497ab0.s390x.rpm", "libsodium-0:1.0.18-6.module_f33+10410+d6497ab0.src.rpm", "libsodium-0:1.0.18-6.module_f33+10410+d6497ab0.x86_64.rpm", "libsodium-debuginfo-0:1.0.18-6.module_f33+10410+d6497ab0.aarch64.rpm", "libsodium-debuginfo-0:1.0.18-6.module_f33+10410+d6497ab0.armv7hl.rpm", "libsodium-debuginfo-0:1.0.18-6.module_f33+10410+d6497ab0.i686.rpm", "libsodium-debuginfo-0:1.0.18-6.module_f33+10410+d6497ab0.ppc64le.rpm", "libsodium-debuginfo-0:1.0.18-6.module_f33+10410+d6497ab0.s390x.rpm", "libsodium-debuginfo-0:1.0.18-6.module_f33+10410+d6497ab0.x86_64.rpm", "libsodium-debugsource-0:1.0.18-6.module_f33+10410+d6497ab0.aarch64.rpm", "libsodium-debugsource-0:1.0.18-6.module_f33+10410+d6497ab0.armv7hl.rpm", "libsodium-debugsource-0:1.0.18-6.module_f33+10410+d6497ab0.i686.rpm", "libsodium-debugsource-0:1.0.18-6.module_f33+10410+d6497ab0.ppc64le.rpm", "libsodium-debugsource-0:1.0.18-6.module_f33+10410+d6497ab0.s390x.rpm", "libsodium-debugsource-0:1.0.18-6.module_f33+10410+d6497ab0.x86_64.rpm", "libsodium-devel-0:1.0.18-6.module_f33+10410+d6497ab0.aarch64.rpm", "libsodium-devel-0:1.0.18-6.module_f33+10410+d6497ab0.armv7hl.rpm", "libsodium-devel-0:1.0.18-6.module_f33+10410+d6497ab0.i686.rpm", "libsodium-devel-0:1.0.18-6.module_f33+10410+d6497ab0.ppc64le.rpm", "libsodium-devel-0:1.0.18-6.module_f33+10410+d6497ab0.s390x.rpm", "libsodium-devel-0:1.0.18-6.module_f33+10410+d6497ab0.x86_64.rpm", "libsodium-static-0:1.0.18-6.module_f33+10410+d6497ab0.aarch64.rpm", "libsodium-static-0:1.0.18-6.module_f33+10410+d6497ab0.armv7hl.rpm", "libsodium-static-0:1.0.18-6.module_f33+10410+d6497ab0.i686.rpm", "libsodium-static-0:1.0.18-6.module_f33+10410+d6497ab0.ppc64le.rpm", "libsodium-static-0:1.0.18-6.module_f33+10410+d6497ab0.s390x.rpm", "libsodium-static-0:1.0.18-6.module_f33+10410+d6497ab0.x86_64.rpm", "miniupnpc-0:2.1-7.module_f33+10410+d6497ab0.aarch64.rpm", "miniupnpc-0:2.1-7.module_f33+10410+d6497ab0.armv7hl.rpm", "miniupnpc-0:2.1-7.module_f33+10410+d6497ab0.i686.rpm", "miniupnpc-0:2.1-7.module_f33+10410+d6497ab0.ppc64le.rpm", "miniupnpc-0:2.1-7.module_f33+10410+d6497ab0.s390x.rpm", "miniupnpc-0:2.1-7.module_f33+10410+d6497ab0.src.rpm", "miniupnpc-0:2.1-7.module_f33+10410+d6497ab0.x86_64.rpm", "miniupnpc-debuginfo-0:2.1-7.module_f33+10410+d6497ab0.aarch64.rpm", "miniupnpc-debuginfo-0:2.1-7.module_f33+10410+d6497ab0.armv7hl.rpm", "miniupnpc-debuginfo-0:2.1-7.module_f33+10410+d6497ab0.i686.rpm", "miniupnpc-debuginfo-0:2.1-7.module_f33+10410+d6497ab0.ppc64le.rpm", "miniupnpc-debuginfo-0:2.1-7.module_f33+10410+d6497ab0.s390x.rpm", "miniupnpc-debuginfo-0:2.1-7.module_f33+10410+d6497ab0.x86_64.rpm", "miniupnpc-debugsource-0:2.1-7.module_f33+10410+d6497ab0.aarch64.rpm", "miniupnpc-debugsource-0:2.1-7.module_f33+10410+d6497ab0.armv7hl.rpm", "miniupnpc-debugsource-0:2.1-7.module_f33+10410+d6497ab0.i686.rpm", "miniupnpc-debugsource-0:2.1-7.module_f33+10410+d6497ab0.ppc64le.rpm", "miniupnpc-debugsource-0:2.1-7.module_f33+10410+d6497ab0.s390x.rpm", "miniupnpc-debugsource-0:2.1-7.module_f33+10410+d6497ab0.x86_64.rpm", "miniupnpc-devel-0:2.1-7.module_f33+10410+d6497ab0.aarch64.rpm", "miniupnpc-devel-0:2.1-7.module_f33+10410+d6497ab0.armv7hl.rpm", "miniupnpc-devel-0:2.1-7.module_f33+10410+d6497ab0.i686.rpm", "miniupnpc-devel-0:2.1-7.module_f33+10410+d6497ab0.ppc64le.rpm", "miniupnpc-devel-0:2.1-7.module_f33+10410+d6497ab0.s390x.rpm", "miniupnpc-devel-0:2.1-7.module_f33+10410+d6497ab0.x86_64.rpm", "nvidia-texture-tools-0:2.0.8-25.module_f33+10410+d6497ab0.aarch64.rpm", "nvidia-texture-tools-0:2.0.8-25.module_f33+10410+d6497ab0.armv7hl.rpm", "nvidia-texture-tools-0:2.0.8-25.module_f33+10410+d6497ab0.i686.rpm", "nvidia-texture-tools-0:2.0.8-25.module_f33+10410+d6497ab0.ppc64le.rpm", "nvidia-texture-tools-0:2.0.8-25.module_f33+10410+d6497ab0.s390x.rpm", "nvidia-texture-tools-0:2.0.8-25.module_f33+10410+d6497ab0.src.rpm", "nvidia-texture-tools-0:2.0.8-25.module_f33+10410+d6497ab0.x86_64.rpm", "nvidia-texture-tools-debuginfo-0:2.0.8-25.module_f33+10410+d6497ab0.aarch64.rpm", "nvidia-texture-tools-debuginfo-0:2.0.8-25.module_f33+10410+d6497ab0.armv7hl.rpm", "nvidia-texture-tools-debuginfo-0:2.0.8-25.module_f33+10410+d6497ab0.i686.rpm", "nvidia-texture-tools-debuginfo-0:2.0.8-25.module_f33+10410+d6497ab0.ppc64le.rpm", "nvidia-texture-tools-debuginfo-0:2.0.8-25.module_f33+10410+d6497ab0.s390x.rpm", "nvidia-texture-tools-debuginfo-0:2.0.8-25.module_f33+10410+d6497ab0.x86_64.rpm", "nvidia-texture-tools-debugsource-0:2.0.8-25.module_f33+10410+d6497ab0.aarch64.rpm", "nvidia-texture-tools-debugsource-0:2.0.8-25.module_f33+10410+d6497ab0.armv7hl.rpm", "nvidia-texture-tools-debugsource-0:2.0.8-25.module_f33+10410+d6497ab0.i686.rpm", "nvidia-texture-tools-debugsource-0:2.0.8-25.module_f33+10410+d6497ab0.ppc64le.rpm", "nvidia-texture-tools-debugsource-0:2.0.8-25.module_f33+10410+d6497ab0.s390x.rpm", "nvidia-texture-tools-debugsource-0:2.0.8-25.module_f33+10410+d6497ab0.x86_64.rpm", "nvidia-texture-tools-devel-0:2.0.8-25.module_f33+10410+d6497ab0.aarch64.rpm", "nvidia-texture-tools-devel-0:2.0.8-25.module_f33+10410+d6497ab0.armv7hl.rpm", "nvidia-texture-tools-devel-0:2.0.8-25.module_f33+10410+d6497ab0.i686.rpm", "nvidia-texture-tools-devel-0:2.0.8-25.module_f33+10410+d6497ab0.ppc64le.rpm", "nvidia-texture-tools-devel-0:2.0.8-25.module_f33+10410+d6497ab0.s390x.rpm", "nvidia-texture-tools-devel-0:2.0.8-25.module_f33+10410+d6497ab0.x86_64.rpm", "python3-miniupnpc-0:2.1-7.module_f33+10410+d6497ab0.aarch64.rpm", "python3-miniupnpc-0:2.1-7.module_f33+10410+d6497ab0.armv7hl.rpm", "python3-miniupnpc-0:2.1-7.module_f33+10410+d6497ab0.i686.rpm", "python3-miniupnpc-0:2.1-7.module_f33+10410+d6497ab0.ppc64le.rpm", "python3-miniupnpc-0:2.1-7.module_f33+10410+d6497ab0.s390x.rpm", "python3-miniupnpc-0:2.1-7.module_f33+10410+d6497ab0.x86_64.rpm", "python3-miniupnpc-debuginfo-0:2.1-7.module_f33+10410+d6497ab0.aarch64.rpm", "python3-miniupnpc-debuginfo-0:2.1-7.module_f33+10410+d6497ab0.armv7hl.rpm", "python3-miniupnpc-debuginfo-0:2.1-7.module_f33+10410+d6497ab0.i686.rpm", "python3-miniupnpc-debuginfo-0:2.1-7.module_f33+10410+d6497ab0.ppc64le.rpm", "python3-miniupnpc-debuginfo-0:2.1-7.module_f33+10410+d6497ab0.s390x.rpm", "python3-miniupnpc-debuginfo-0:2.1-7.module_f33+10410+d6497ab0.x86_64.rpm" ] }, { "variant_id": "0ad", "variant_uid": "0ad:stable:3320210227080407:50ef3cd5", "variant_name": "0ad", "variant_type": "module", "variant_version": "stable", "variant_release": "3320210227080407", "variant_context": "50ef3cd5", "koji_tag": "module-0ad-stable-3320210227080407-50ef3cd5", "modulemd": "---\ndocument: modulemd\nversion: 2\ndata:\n name: 0ad\n stream: \"stable\"\n version: 3320210227080407\n context: 50ef3cd5\n summary: Cross-Platform RTS Game of Ancient Warfare\n description: >-\n 0 A.D. (pronounced \"zero ey-dee\") is a free, open-source, cross-platform real-time\n strategy (RTS) game of ancient warfare. In short, it is a historically-based war/economy\n game that allows players to relive or rewrite the history of Western civilizations,\n focusing on the years between 500 B.C. and 500 A.D. The project is highly ambitious,\n involving state-of-the-art 3D graphics, detailed artwork, sound, and a flexible\n and powerful custom-built game engine.\n\n The game has been in development by Wildfire Games (WFG), a group of volunteer,\n hobbyist game developers, since 2001.\n license:\n module:\n - MIT\n xmd:\n mbs:\n buildrequires:\n flatpak-common:\n context: fb2b2a51\n filtered_rpms: []\n koji_tag: module-flatpak-common-f33-3320210219170848-fb2b2a51\n ref: eaa3bbc44c6a79cb20f406f4df2a82d125e35afd\n stream: f33\n version: 3320210219170848\n flatpak-runtime:\n context: 601d93de\n filtered_rpms: []\n koji_tag: module-flatpak-runtime-f33-3320210224151549-601d93de\n ref: b401de31856623102158250206300da0e943d06e\n stream: f33\n version: 3320210224151549\n platform:\n context: 00000000\n filtered_rpms: []\n koji_tag: module-f33-build\n ref: f33\n stream: f33\n stream_collision_modules: \n ursine_rpms: \n version: 1\n commit: 5629a251ec2d606dc570994cb01cb02a178f6687\n mse: TRUE\n rpms:\n 0ad:\n ref: 28c8b79f673992b2b3e67f031ae0afc7c5aaa26c\n 0ad-data:\n ref: 33fe072a696aef3000553b03a6b0b11832ed2fad\n dejavu-fonts:\n ref: b475f5b4c29a82b95c84df5d31ba8757710d5b5d\n enet:\n ref: da594f9bd429ecb41396a25091d693e41b40cfbc\n gloox:\n ref: 6881cacaa26d9ae3dc9d24585b36b2c52ee43434\n libsodium:\n ref: 1442a683d44b7a4186db95ffbfba0c747fae833f\n miniupnpc:\n ref: 43aa4048718cddbf572520e8b3cc7f26747c076b\n nvidia-texture-tools:\n ref: 9f338bb34655deab4027c5d93e6fd1655d97a602\n scmurl: https://src.fedoraproject.org/flatpaks/0ad.git?#5629a251ec2d606dc570994cb01cb02a178f6687\n ursine_rpms:\n - gsound-0:1.0.2-12.fc33.x86_64\n - boost-filesystem-0:1.73.0-9.fc33.s390x\n - boost-test-0:1.73.0-9.fc33.ppc64le\n - ilmbase-0:2.3.0-5.fc33.ppc64le\n - boost-graph-0:1.73.0-9.fc33.s390x\n - OpenEXR-doc-0:2.3.0-6.fc33.i686\n - libgweather-devel-0:3.36.1-3.fc33.aarch64\n - libhandy1-0:1.0.3-1.fc33.x86_64\n - boost-timer-0:1.73.0-9.fc33.ppc64le\n - ghostscript-tools-dvipdf-0:9.53.3-4.fc33.i686\n - boost-contract-0:1.73.0-9.fc33.aarch64\n - urw-base35-fonts-common-0:20200910-2.fc33.noarch\n - atkmm-0:2.28.1-1.fc33.x86_64\n - openblas-threads-0:0.3.12-1.fc33.i686\n - OpenEXR-doc-0:2.3.0-6.fc33.s390x\n - flexiblas-blis-openmp64-0:3.0.4-1.fc33.aarch64\n - boost-type_erasure-0:1.73.0-9.fc33.armv7hl\n - gtksourceview3-tests-0:3.24.11-4.fc33.i686\n - boost-python3-0:1.73.0-9.fc33.ppc64le\n - protobuf-static-0:3.12.4-1.fc33.s390x\n - polkit-0:0.117-2.fc33.armv7hl\n - SDL-devel-0:1.2.15-45.fc33.i686\n - geocode-glib-0:3.26.2-2.fc33.s390x\n - flexiblas-blis-threads-0:3.0.4-1.fc33.aarch64\n - exiv2-devel-0:0.27.3-4.fc33.ppc64le\n - exiv2-devel-0:0.27.3-4.fc33.aarch64\n - OpenEXR-0:2.3.0-6.fc33.armv7hl\n - polkit-0:0.117-2.fc33.aarch64\n - flexiblas-blis-threads-0:3.0.4-1.fc33.i686\n - libpeas-gtk-0:1.28.0-1.fc33.s390x\n - openblas-static-0:0.3.12-1.fc33.i686\n - libgweather-0:3.36.1-3.fc33.ppc64le\n - jbig2dec-0:0.19-2.fc33.armv7hl\n - poppler-cpp-devel-0:0.90.0-6.fc33.aarch64\n - openjpeg2-tools-0:2.3.1-10.fc33.ppc64le\n - libhandy1-devel-0:1.0.3-1.fc33.s390x\n - gtkmm30-doc-0:3.24.3-1.fc33.noarch\n - boost-filesystem-0:1.73.0-9.fc33.x86_64\n - glibmm24-devel-0:2.64.5-3.fc33.aarch64\n - poppler-qt5-0:0.90.0-6.fc33.armv7hl\n - gsl-devel-0:2.6-3.fc33.aarch64\n - protobuf-lite-static-0:3.12.4-1.fc33.x86_64\n - libpaper-0:1.1.28-1.fc33.x86_64\n - flexiblas-openblas-serial-0:3.0.4-1.fc33.s390x\n - geocode-glib-devel-0:3.26.2-2.fc33.aarch64\n - evolution-data-server-0:3.38.4-1.fc33.i686\n - wxGTK3-0:3.0.5.1-2.fc33.ppc64le\n - boost-0:1.73.0-9.fc33.s390x\n - wxGTK3-devel-0:3.0.5.1-2.fc33.ppc64le\n - boost-doctools-0:1.73.0-9.fc33.s390x\n - boost-type_erasure-0:1.73.0-9.fc33.ppc64le\n - urw-base35-p052-fonts-0:20200910-2.fc33.noarch\n - poppler-qt5-0:0.90.0-6.fc33.i686\n - liboauth-devel-0:1.0.3-15.fc33.armv7hl\n - gsound-0:1.0.2-12.fc33.i686\n - flexiblas-openblas-threads-0:3.0.4-1.fc33.armv7hl\n - suitesparse64_-0:5.4.0-5.fc33.ppc64le\n - tk-devel-1:8.6.10-5.fc33.x86_64\n - libGLEW-0:2.1.0-8.fc33.aarch64\n - protobuf-0:3.12.4-1.fc33.aarch64\n - polkit-libs-0:0.117-2.fc33.aarch64\n - OpenEXR-0:2.3.0-6.fc33.i686\n - libwmf-0:0.2.12-4.fc33.s390x\n - boost-atomic-0:1.73.0-9.fc33.armv7hl\n - libwmf-devel-0:0.2.12-4.fc33.aarch64\n - poppler-qt-0:0.90.0-6.fc33.aarch64\n - tk-1:8.6.10-5.fc33.x86_64\n - boost-program-options-0:1.73.0-9.fc33.x86_64\n - flexiblas-0:3.0.4-1.fc33.s390x\n - gd-progs-0:2.3.0-3.fc33.i686\n - libphonenumber-devel-0:8.12.11-1.fc33.aarch64\n - tbb-doc-0:2020.3-2.fc33.aarch64\n - boost-graph-0:1.73.0-9.fc33.aarch64\n - gnome-desktop3-devel-0:3.38.4-1.fc33.x86_64\n - suitesparse64_-static-0:5.4.0-5.fc33.ppc64le\n - evolution-data-server-tests-0:3.38.4-1.fc33.ppc64le\n - atkmm-devel-0:2.28.1-1.fc33.s390x\n - tix-doc-1:8.4.3-29.fc33.armv7hl\n - gd-devel-0:2.3.0-3.fc33.i686\n - openjpeg2-devel-0:2.3.1-10.fc33.armv7hl\n - libsigc++20-devel-0:2.10.6-1.fc33.i686\n - boost-test-0:1.73.0-9.fc33.aarch64\n - boost-program-options-0:1.73.0-9.fc33.aarch64\n - libidn-devel-0:1.36-1.fc33.i686\n - flexiblas-netlib-0:3.0.4-1.fc33.x86_64\n - libical-0:3.0.9-1.fc33.aarch64\n - glew-devel-0:2.1.0-8.fc33.i686\n - openjpeg2-tools-0:2.3.1-10.fc33.aarch64\n - libhandy1-0:1.0.3-1.fc33.ppc64le\n - libwmf-0:0.2.12-4.fc33.aarch64\n - boost-examples-0:1.73.0-9.fc33.aarch64\n - boost-random-0:1.73.0-9.fc33.armv7hl\n - wxBase3-devel-0:3.0.5.1-2.fc33.aarch64\n - libidn-0:1.36-1.fc33.armv7hl\n - libgs-0:9.53.3-4.fc33.s390x\n - libwmf-devel-0:0.2.12-4.fc33.armv7hl\n - python2.7-0:2.7.18-8.fc33.x86_64\n - evolution-data-server-devel-0:3.38.4-1.fc33.s390x\n - openblas-serial-0:0.3.12-1.fc33.aarch64\n - libpaper-0:1.1.28-1.fc33.armv7hl\n - OpenEXR-doc-0:2.3.0-6.fc33.aarch64\n - suitesparse-static-0:5.4.0-5.fc33.armv7hl\n - python2.7-0:2.7.18-8.fc33.i686\n - tbb-doc-0:2020.3-2.fc33.ppc64le\n - libimagequant-devel-0:2.12.6-3.fc33.x86_64\n - adobe-mappings-pdf-devel-0:20180407-7.fc33.noarch\n - boost-filesystem-0:1.73.0-9.fc33.aarch64\n - poppler-qt5-0:0.90.0-6.fc33.s390x\n - libgs-0:9.53.3-4.fc33.aarch64\n - SDL-0:1.2.15-45.fc33.aarch64\n - poppler-cpp-0:0.90.0-6.fc33.s390x\n - boost-devel-0:1.73.0-9.fc33.x86_64\n - libgs-0:9.53.3-4.fc33.ppc64le\n - boost-serialization-0:1.73.0-9.fc33.ppc64le\n - openblas-threads64_-0:0.3.12-1.fc33.x86_64\n - poppler-qt5-devel-0:0.90.0-6.fc33.aarch64\n - polkit-libs-0:0.117-2.fc33.s390x\n - gtksourceview3-tests-0:3.24.11-4.fc33.s390x\n - wxBase3-0:3.0.5.1-2.fc33.s390x\n - libical-glib-devel-0:3.0.9-1.fc33.ppc64le\n - boost-graph-0:1.73.0-9.fc33.ppc64le\n - openblas-0:0.3.12-1.fc33.armv7hl\n - jbig2dec-0:0.19-2.fc33.aarch64\n - boost-static-0:1.73.0-9.fc33.aarch64\n - boost-context-0:1.73.0-9.fc33.armv7hl\n - gtkmm30-devel-0:3.24.3-1.fc33.aarch64\n - gnome-online-accounts-0:3.38.0-1.fc33.x86_64\n - wxBase3-devel-0:3.0.5.1-2.fc33.ppc64le\n - dbus-glib-0:0.110-10.fc33.armv7hl\n - flexiblas-openblas-openmp64-0:3.0.4-1.fc33.s390x\n - OpenEXR-0:2.3.0-6.fc33.x86_64\n - polkit-0:0.117-2.fc33.x86_64\n - gsl-devel-0:2.6-3.fc33.i686\n - openblas-threads64_-0:0.3.12-1.fc33.s390x\n - SDL-devel-0:1.2.15-45.fc33.x86_64\n - gsl-devel-0:2.6-3.fc33.armv7hl\n - boost-math-0:1.73.0-9.fc33.i686\n - poppler-utils-0:0.90.0-6.fc33.armv7hl\n - geocode-glib-devel-0:3.26.2-2.fc33.s390x\n - glibmm24-devel-0:2.64.5-3.fc33.ppc64le\n - boost-thread-0:1.73.0-9.fc33.x86_64\n - suitesparse64_-0:5.4.0-5.fc33.aarch64\n - gsound-devel-0:1.0.2-12.fc33.s390x\n - xorg-x11-font-utils-1:7.5-47.fc33.s390x\n - OpenEXR-devel-0:2.3.0-6.fc33.armv7hl\n - ilmbase-0:2.3.0-5.fc33.i686\n - openblas-serial-0:0.3.12-1.fc33.ppc64le\n - evolution-data-server-0:3.38.4-1.fc33.s390x\n - libgdata-0:0.17.13-1.fc33.x86_64\n - tcl-devel-1:8.6.10-5.fc33.s390x\n - flexiblas-blis-threads64-0:3.0.4-1.fc33.ppc64le\n - openblas-openmp64-0:0.3.12-1.fc33.s390x\n - flexiblas-openblas-openmp-0:3.0.4-1.fc33.s390x\n - libwmf-0:0.2.12-4.fc33.x86_64\n - cairomm-devel-0:1.12.2-4.fc33.x86_64\n - jbig2dec-libs-0:0.19-2.fc33.s390x\n - SDL-0:1.2.15-45.fc33.armv7hl\n - boost-atomic-0:1.73.0-9.fc33.ppc64le\n - libpeas-loader-python3-0:1.28.0-1.fc33.ppc64le\n - boost-regex-0:1.73.0-9.fc33.ppc64le\n - ghostscript-0:9.53.3-4.fc33.i686\n - urw-base35-gothic-fonts-0:20200910-2.fc33.noarch\n - urw-base35-nimbus-roman-fonts-0:20200910-2.fc33.noarch\n - libimagequant-0:2.12.6-3.fc33.x86_64\n - python3-tbb-0:2020.3-2.fc33.aarch64\n - glibmm24-0:2.64.5-3.fc33.aarch64\n - ghostscript-tools-dvipdf-0:9.53.3-4.fc33.ppc64le\n - protobuf-0:3.12.4-1.fc33.s390x\n - wxGTK3-0:3.0.5.1-2.fc33.aarch64\n - wxGTK3-media-0:3.0.5.1-2.fc33.x86_64\n - flexiblas-openblas-threads-0:3.0.4-1.fc33.x86_64\n - flexiblas-blis-openmp-0:3.0.4-1.fc33.armv7hl\n - tix-devel-1:8.4.3-29.fc33.armv7hl\n - poppler-glib-0:0.90.0-6.fc33.x86_64\n - flexiblas-blis-threads64-0:3.0.4-1.fc33.aarch64\n - poppler-glib-devel-0:0.90.0-6.fc33.x86_64\n - libgdata-devel-0:0.17.13-1.fc33.i686\n - openblas-serial64-0:0.3.12-1.fc33.x86_64\n - boost-wave-0:1.73.0-9.fc33.ppc64le\n - boost-chrono-0:1.73.0-9.fc33.aarch64\n - flexiblas-netlib-0:3.0.4-1.fc33.aarch64\n - boost-devel-0:1.73.0-9.fc33.armv7hl\n - boost-nowide-0:1.73.0-9.fc33.s390x\n - boost-random-0:1.73.0-9.fc33.x86_64\n - ghostscript-tools-printing-0:9.53.3-4.fc33.aarch64\n - wxGTK3-media-0:3.0.5.1-2.fc33.s390x\n - evolution-data-server-devel-0:3.38.4-1.fc33.ppc64le\n - boost-regex-0:1.73.0-9.fc33.aarch64\n - libpaper-0:1.1.28-1.fc33.ppc64le\n - poppler-devel-0:0.90.0-6.fc33.ppc64le\n - boost-system-0:1.73.0-9.fc33.ppc64le\n - protobuf-lite-devel-0:3.12.4-1.fc33.armv7hl\n - ghostscript-tools-fonts-0:9.53.3-4.fc33.i686\n - liboauth-0:1.0.3-15.fc33.aarch64\n - flexiblas-devel-0:3.0.4-1.fc33.armv7hl\n - flexiblas-netlib64-0:3.0.4-1.fc33.aarch64\n - openblas-devel-0:0.3.12-1.fc33.x86_64\n - libfontenc-devel-0:1.1.3-13.fc33.s390x\n - poppler-qt-0:0.90.0-6.fc33.i686\n - urw-base35-fonts-legacy-0:20200910-2.fc33.noarch\n - flexiblas-0:3.0.4-1.fc33.aarch64\n - ilmbase-0:2.3.0-5.fc33.x86_64\n - boost-program-options-0:1.73.0-9.fc33.ppc64le\n - tk-devel-1:8.6.10-5.fc33.i686\n - dbus-glib-devel-0:0.110-10.fc33.i686\n - openblas-threads64_-0:0.3.12-1.fc33.ppc64le\n - gtkmm30-devel-0:3.24.3-1.fc33.x86_64\n - cairomm-devel-0:1.12.2-4.fc33.s390x\n - ghostscript-0:9.53.3-4.fc33.aarch64\n - boost-python3-0:1.73.0-9.fc33.s390x\n - flexiblas-openblas-openmp-0:3.0.4-1.fc33.armv7hl\n - boost-iostreams-0:1.73.0-9.fc33.armv7hl\n - libical-0:3.0.9-1.fc33.ppc64le\n - libdazzle-0:3.38.0-1.fc33.s390x\n - geocode-glib-devel-0:3.26.2-2.fc33.ppc64le\n - boost-context-0:1.73.0-9.fc33.s390x\n - tbb-0:2020.3-2.fc33.i686\n - openblas-openmp-0:0.3.12-1.fc33.aarch64\n - boost-date-time-0:1.73.0-9.fc33.s390x\n - compat-wxGTK3-gtk2-gl-0:3.0.5.1-2.fc33.ppc64le\n - compat-wxGTK3-gtk2-media-0:3.0.5.1-2.fc33.aarch64\n - tk-devel-1:8.6.10-5.fc33.armv7hl\n - boost-container-0:1.73.0-9.fc33.x86_64\n - pangomm-doc-0:2.42.2-1.fc33.noarch\n - wxGTK3-gl-0:3.0.5.1-2.fc33.armv7hl\n - boost-date-time-0:1.73.0-9.fc33.x86_64\n - tix-devel-1:8.4.3-29.fc33.x86_64\n - tix-doc-1:8.4.3-29.fc33.x86_64\n - libraqm-devel-0:0.7.0-6.fc33.aarch64\n - libhandy1-0:1.0.3-1.fc33.aarch64\n - protobuf-devel-0:3.12.4-1.fc33.x86_64\n - suitesparse-static-0:5.4.0-5.fc33.i686\n - protobuf-0:3.12.4-1.fc33.armv7hl\n - flexiblas-openblas-openmp64-0:3.0.4-1.fc33.aarch64\n - gtksourceview3-0:3.24.11-4.fc33.i686\n - gd-progs-0:2.3.0-3.fc33.x86_64\n - SDL-devel-0:1.2.15-45.fc33.s390x\n - flexiblas-openblas-serial-0:3.0.4-1.fc33.ppc64le\n - gd-devel-0:2.3.0-3.fc33.s390x\n - xorg-x11-font-utils-1:7.5-47.fc33.i686\n - boost-date-time-0:1.73.0-9.fc33.i686\n - suitesparse-devel-0:5.4.0-5.fc33.s390x\n - tix-devel-1:8.4.3-29.fc33.s390x\n - ghostscript-doc-0:9.53.3-4.fc33.noarch\n - tbb-0:2020.3-2.fc33.aarch64\n - boost-log-0:1.73.0-9.fc33.s390x\n - glibmm24-devel-0:2.64.5-3.fc33.x86_64\n - boost-iostreams-0:1.73.0-9.fc33.i686\n - gnome-desktop3-devel-0:3.38.4-1.fc33.ppc64le\n - flexiblas-hook-profile64-0:3.0.4-1.fc33.aarch64\n - openblas-threads-0:0.3.12-1.fc33.x86_64\n - boost-math-0:1.73.0-9.fc33.armv7hl\n - compat-wxGTK3-gtk2-0:3.0.5.1-2.fc33.s390x\n - libimagequant-0:2.12.6-3.fc33.armv7hl\n - ghostscript-x11-0:9.53.3-4.fc33.s390x\n - gsl-0:2.6-3.fc33.ppc64le\n - flexiblas-openblas-openmp64-0:3.0.4-1.fc33.ppc64le\n - boost-date-time-0:1.73.0-9.fc33.armv7hl\n - flexiblas-hook-profile-0:3.0.4-1.fc33.aarch64\n - ghostscript-tools-fonts-0:9.53.3-4.fc33.armv7hl\n - boost-devel-0:1.73.0-9.fc33.s390x\n - flatpak-rpm-macros-0:33-2.fc33.i686\n - geocode-glib-0:3.26.2-2.fc33.i686\n - libimagequant-0:2.12.6-3.fc33.s390x\n - wxGTK3-0:3.0.5.1-2.fc33.x86_64\n - suitesparse-0:5.4.0-5.fc33.aarch64\n - libical-glib-devel-0:3.0.9-1.fc33.x86_64\n - boost-atomic-0:1.73.0-9.fc33.s390x\n - boost-nowide-0:1.73.0-9.fc33.armv7hl\n - boost-program-options-0:1.73.0-9.fc33.i686\n - wxBase3-0:3.0.5.1-2.fc33.ppc64le\n - suitesparse64-devel-0:5.4.0-5.fc33.ppc64le\n - libmspack-0:0.10.1-0.4.alpha.fc33.ppc64le\n - gnome-online-accounts-devel-0:3.38.0-1.fc33.ppc64le\n - libdazzle-devel-0:3.38.0-1.fc33.armv7hl\n - libmspack-0:0.10.1-0.4.alpha.fc33.x86_64\n - SDL_image-0:1.2.12-25.fc33.i686\n - boost-fiber-0:1.73.0-9.fc33.s390x\n - libpaper-0:1.1.28-1.fc33.aarch64\n - polkit-devel-0:0.117-2.fc33.s390x\n - suitesparse64-0:5.4.0-5.fc33.ppc64le\n - glew-devel-0:2.1.0-8.fc33.ppc64le\n - libhandy1-devel-0:1.0.3-1.fc33.ppc64le\n - polkit-devel-0:0.117-2.fc33.aarch64\n - libfontenc-devel-0:1.1.3-13.fc33.armv7hl\n - jbig2dec-0:0.19-2.fc33.i686\n - tbb-devel-0:2020.3-2.fc33.ppc64le\n - suitesparse64_-static-0:5.4.0-5.fc33.s390x\n - glew-devel-0:2.1.0-8.fc33.x86_64\n - dbus-glib-0:0.110-10.fc33.i686\n - flexiblas-openblas-threads-0:3.0.4-1.fc33.aarch64\n - openblas-openmp64_-0:0.3.12-1.fc33.s390x\n - atkmm-doc-0:2.28.1-1.fc33.noarch\n - flexiblas-blis-openmp-0:3.0.4-1.fc33.i686\n - poppler-utils-0:0.90.0-6.fc33.s390x\n - ghostscript-x11-0:9.53.3-4.fc33.i686\n - tbb-0:2020.3-2.fc33.s390x\n - flexiblas-atlas-0:3.0.4-1.fc33.ppc64le\n - libdazzle-devel-0:3.38.0-1.fc33.ppc64le\n - flexiblas-atlas-0:3.0.4-1.fc33.x86_64\n - openblas-openmp-0:0.3.12-1.fc33.s390x\n - ghostscript-x11-0:9.53.3-4.fc33.aarch64\n - python2.7-0:2.7.18-8.fc33.armv7hl\n - suitesparse64-static-0:5.4.0-5.fc33.aarch64\n - boost-build-0:1.73.0-9.fc33.noarch\n - libmspack-devel-0:0.10.1-0.4.alpha.fc33.aarch64\n - startup-notification-devel-0:0.12-20.fc33.armv7hl\n - boost-chrono-0:1.73.0-9.fc33.x86_64\n - suitesparse-devel-0:5.4.0-5.fc33.x86_64\n - gnome-online-accounts-0:3.38.0-1.fc33.ppc64le\n - startup-notification-0:0.12-20.fc33.x86_64\n - wxGTK3-devel-0:3.0.5.1-2.fc33.aarch64\n - libsigc++20-0:2.10.6-1.fc33.x86_64\n - xorg-x11-font-utils-1:7.5-47.fc33.armv7hl\n - boost-doc-0:1.73.0-9.fc33.armv7hl\n - SDL_image-devel-0:1.2.12-25.fc33.s390x\n - boost-0:1.73.0-9.fc33.x86_64\n - libical-devel-0:3.0.9-1.fc33.armv7hl\n - protobuf-devel-0:3.12.4-1.fc33.i686\n - libsigc++20-devel-0:2.10.6-1.fc33.ppc64le\n - libphonenumber-devel-0:8.12.11-1.fc33.ppc64le\n - SDL_image-devel-0:1.2.12-25.fc33.aarch64\n - libdazzle-devel-0:3.38.0-1.fc33.aarch64\n - libpeas-0:1.28.0-1.fc33.aarch64\n - gnome-online-accounts-0:3.38.0-1.fc33.aarch64\n - gtkmm30-0:3.24.3-1.fc33.x86_64\n - gspell-0:1.8.4-1.fc33.ppc64le\n - tk-1:8.6.10-5.fc33.i686\n - evolution-data-server-perl-0:3.38.4-1.fc33.ppc64le\n - gd-0:2.3.0-3.fc33.i686\n - OpenEXR-devel-0:2.3.0-6.fc33.x86_64\n - OpenEXR-devel-0:2.3.0-6.fc33.aarch64\n - libgs-devel-0:9.53.3-4.fc33.ppc64le\n - openblas-openmp64_-0:0.3.12-1.fc33.aarch64\n - OpenEXR-libs-0:2.3.0-6.fc33.s390x\n - libphonenumber-devel-0:8.12.11-1.fc33.x86_64\n - boost-fiber-0:1.73.0-9.fc33.armv7hl\n - wxGTK3-media-0:3.0.5.1-2.fc33.i686\n - protobuf-devel-0:3.12.4-1.fc33.ppc64le\n - gtksourceview3-tests-0:3.24.11-4.fc33.x86_64\n - protobuf-bom-0:3.12.4-1.fc33.noarch\n - libsigc++20-0:2.10.6-1.fc33.ppc64le\n - flexiblas-netlib64-0:3.0.4-1.fc33.ppc64le\n - boost-thread-0:1.73.0-9.fc33.i686\n - compat-wxGTK3-gtk2-media-0:3.0.5.1-2.fc33.armv7hl\n - compat-wxGTK3-gtk2-gl-0:3.0.5.1-2.fc33.x86_64\n - libidn-devel-0:1.36-1.fc33.armv7hl\n - flexiblas-blis-serial64-0:3.0.4-1.fc33.ppc64le\n - libphonenumber-devel-0:8.12.11-1.fc33.armv7hl\n - ghostscript-x11-0:9.53.3-4.fc33.ppc64le\n - libwmf-devel-0:0.2.12-4.fc33.i686\n - libsigc++20-devel-0:2.10.6-1.fc33.armv7hl\n - libmspack-0:0.10.1-0.4.alpha.fc33.aarch64\n - tk-1:8.6.10-5.fc33.s390x\n - libijs-0:0.35-12.fc33.i686\n - libdazzle-0:3.38.0-1.fc33.i686\n - gnome-online-accounts-devel-0:3.38.0-1.fc33.x86_64\n - polkit-0:0.117-2.fc33.ppc64le\n - libgweather-devel-0:3.36.1-3.fc33.ppc64le\n - evolution-data-server-devel-0:3.38.4-1.fc33.aarch64\n - OpenEXR-devel-0:2.3.0-6.fc33.i686\n - openblas-0:0.3.12-1.fc33.ppc64le\n - gd-devel-0:2.3.0-3.fc33.x86_64\n - boost-b2-0:1.73.0-9.fc33.s390x\n - gnome-desktop3-0:3.38.4-1.fc33.s390x\n - libidn-0:1.36-1.fc33.ppc64le\n - libpeas-0:1.28.0-1.fc33.armv7hl\n - libgdata-devel-0:0.17.13-1.fc33.x86_64\n - openjpeg2-tools-0:2.3.1-10.fc33.x86_64\n - libpaper-devel-0:1.1.28-1.fc33.ppc64le\n - evolution-data-server-0:3.38.4-1.fc33.ppc64le\n - wxBase3-devel-0:3.0.5.1-2.fc33.s390x\n - jbig2dec-devel-0:0.19-2.fc33.aarch64\n - protobuf-java-0:3.12.4-1.fc33.noarch\n - flexiblas-blis-threads-0:3.0.4-1.fc33.armv7hl\n - polkit-devel-0:0.117-2.fc33.x86_64\n - opengl-games-utils-0:0.2-18.fc33.noarch\n - compat-wxGTK3-gtk2-devel-0:3.0.5.1-2.fc33.x86_64\n - libijs-devel-0:0.35-12.fc33.x86_64\n - boost-0:1.73.0-9.fc33.ppc64le\n - gspell-0:1.8.4-1.fc33.i686\n - suitesparse64_-static-0:5.4.0-5.fc33.x86_64\n - boost-atomic-0:1.73.0-9.fc33.i686\n - poppler-cpp-devel-0:0.90.0-6.fc33.i686\n - suitesparse64-static-0:5.4.0-5.fc33.x86_64\n - poppler-0:0.90.0-6.fc33.i686\n - glibmm24-devel-0:2.64.5-3.fc33.i686\n - gnome-desktop3-0:3.38.4-1.fc33.armv7hl\n - gnome-online-accounts-devel-0:3.38.0-1.fc33.i686\n - boost-numpy3-0:1.73.0-9.fc33.aarch64\n - tcl-1:8.6.10-5.fc33.x86_64\n - flexiblas-0:3.0.4-1.fc33.ppc64le\n - compat-wxGTK3-gtk2-devel-0:3.0.5.1-2.fc33.i686\n - openblas-openmp64_-0:0.3.12-1.fc33.x86_64\n - boost-math-0:1.73.0-9.fc33.x86_64\n - boost-iostreams-0:1.73.0-9.fc33.aarch64\n - poppler-0:0.90.0-6.fc33.ppc64le\n - gsl-0:2.6-3.fc33.i686\n - OpenEXR-doc-0:2.3.0-6.fc33.armv7hl\n - SDL-0:1.2.15-45.fc33.x86_64\n - protobuf-compiler-0:3.12.4-1.fc33.aarch64\n - suitesparse-0:5.4.0-5.fc33.armv7hl\n - poppler-qt5-devel-0:0.90.0-6.fc33.i686\n - dbus-glib-devel-0:0.110-10.fc33.s390x\n - libpaper-0:1.1.28-1.fc33.i686\n - compat-wxGTK3-gtk2-devel-0:3.0.5.1-2.fc33.armv7hl\n - gd-0:2.3.0-3.fc33.s390x\n - atkmm-0:2.28.1-1.fc33.aarch64\n - liboauth-devel-0:1.0.3-15.fc33.ppc64le\n - suitesparse-0:5.4.0-5.fc33.ppc64le\n - libraqm-0:0.7.0-6.fc33.x86_64\n - compat-wxGTK3-gtk2-media-0:3.0.5.1-2.fc33.s390x\n - flexiblas-0:3.0.4-1.fc33.x86_64\n - flexiblas-devel-0:3.0.4-1.fc33.i686\n - startup-notification-devel-0:0.12-20.fc33.ppc64le\n - suitesparse-static-0:5.4.0-5.fc33.ppc64le\n - gtkmm30-devel-0:3.24.3-1.fc33.s390x\n - openblas-openmp64_-0:0.3.12-1.fc33.ppc64le\n - startup-notification-0:0.12-20.fc33.ppc64le\n - suitesparse-static-0:5.4.0-5.fc33.x86_64\n - python3-tbb-0:2020.3-2.fc33.i686\n - boost-contract-0:1.73.0-9.fc33.ppc64le\n - flexiblas-blis-openmp-0:3.0.4-1.fc33.x86_64\n - cairomm-doc-0:1.12.2-4.fc33.noarch\n - ghostscript-gtk-0:9.53.3-4.fc33.x86_64\n - flexiblas-openblas-openmp-0:3.0.4-1.fc33.i686\n - libmspack-devel-0:0.10.1-0.4.alpha.fc33.x86_64\n - suitesparse64_-0:5.4.0-5.fc33.x86_64\n - gtksourceview3-0:3.24.11-4.fc33.armv7hl\n - tix-doc-1:8.4.3-29.fc33.i686\n - boost-thread-0:1.73.0-9.fc33.aarch64\n - gspell-0:1.8.4-1.fc33.x86_64\n - poppler-glib-devel-0:0.90.0-6.fc33.armv7hl\n - boost-examples-0:1.73.0-9.fc33.x86_64\n - boost-static-0:1.73.0-9.fc33.i686\n - gnome-desktop3-devel-0:3.38.4-1.fc33.i686\n - libical-glib-doc-0:3.0.9-1.fc33.noarch\n - SDL_image-0:1.2.12-25.fc33.aarch64\n - protobuf-lite-devel-0:3.12.4-1.fc33.i686\n - gd-devel-0:2.3.0-3.fc33.ppc64le\n - protobuf-javalite-0:3.12.4-1.fc33.noarch\n - poppler-cpp-devel-0:0.90.0-6.fc33.ppc64le\n - libwmf-lite-0:0.2.12-4.fc33.x86_64\n - gspell-0:1.8.4-1.fc33.aarch64\n - dbus-glib-0:0.110-10.fc33.s390x\n - geocode-glib-devel-0:3.26.2-2.fc33.i686\n - wxGTK3-gl-0:3.0.5.1-2.fc33.s390x\n - libpaper-devel-0:1.1.28-1.fc33.i686\n - libdazzle-devel-0:3.38.0-1.fc33.i686\n - startup-notification-devel-0:0.12-20.fc33.x86_64\n - libsigc++20-doc-0:2.10.6-1.fc33.noarch\n - flexiblas-netlib64-0:3.0.4-1.fc33.x86_64\n - atkmm-0:2.28.1-1.fc33.armv7hl\n - tix-1:8.4.3-29.fc33.x86_64\n - wxGTK3-webview-0:3.0.5.1-2.fc33.ppc64le\n - libdazzle-0:3.38.0-1.fc33.aarch64\n - suitesparse-0:5.4.0-5.fc33.s390x\n - tcl-devel-1:8.6.10-5.fc33.ppc64le\n - boost-wave-0:1.73.0-9.fc33.i686\n - gd-devel-0:2.3.0-3.fc33.armv7hl\n - gsound-devel-0:1.0.2-12.fc33.aarch64\n - boost-locale-0:1.73.0-9.fc33.x86_64\n - libraqm-0:0.7.0-6.fc33.armv7hl\n - jbig2dec-0:0.19-2.fc33.ppc64le\n - boost-python3-0:1.73.0-9.fc33.x86_64\n - boost-program-options-0:1.73.0-9.fc33.s390x\n - libpeas-0:1.28.0-1.fc33.s390x\n - gd-0:2.3.0-3.fc33.aarch64\n - gnome-online-accounts-0:3.38.0-1.fc33.s390x\n - boost-math-0:1.73.0-9.fc33.ppc64le\n - libgdata-0:0.17.13-1.fc33.s390x\n - boost-container-0:1.73.0-9.fc33.ppc64le\n - wxGTK3-media-0:3.0.5.1-2.fc33.aarch64\n - tix-devel-1:8.4.3-29.fc33.aarch64\n - openblas-0:0.3.12-1.fc33.x86_64\n - ghostscript-core-0:9.53.3-4.fc33.s390x\n - flatpak-runtime-config-0:33-1.fc33.ppc64le\n - libimagequant-devel-0:2.12.6-3.fc33.armv7hl\n - ilmbase-0:2.3.0-5.fc33.armv7hl\n - openblas-static-0:0.3.12-1.fc33.s390x\n - flexiblas-hook-profile-0:3.0.4-1.fc33.i686\n - flexiblas-openblas-openmp-0:3.0.4-1.fc33.x86_64\n - gtkmm30-devel-0:3.24.3-1.fc33.armv7hl\n - boost-nowide-0:1.73.0-9.fc33.x86_64\n - openjpeg2-devel-0:2.3.1-10.fc33.aarch64\n - libimagequant-0:2.12.6-3.fc33.ppc64le\n - libical-glib-0:3.0.9-1.fc33.i686\n - gtksourceview3-devel-0:3.24.11-4.fc33.aarch64\n - suitesparse-static-0:5.4.0-5.fc33.aarch64\n - libpeas-gtk-0:1.28.0-1.fc33.armv7hl\n - python3-tbb-0:2020.3-2.fc33.ppc64le\n - libmspack-0:0.10.1-0.4.alpha.fc33.i686\n - libhandy1-devel-0:1.0.3-1.fc33.armv7hl\n - boost-container-0:1.73.0-9.fc33.i686\n - openjpeg2-tools-0:2.3.1-10.fc33.s390x\n - OpenEXR-devel-0:2.3.0-6.fc33.s390x\n - gspell-devel-0:1.8.4-1.fc33.s390x\n - pangomm-0:2.42.2-1.fc33.s390x\n - compat-wxGTK3-gtk2-media-0:3.0.5.1-2.fc33.i686\n - libgdata-devel-0:0.17.13-1.fc33.aarch64\n - polkit-libs-0:0.117-2.fc33.ppc64le\n - cairomm-devel-0:1.12.2-4.fc33.armv7hl\n - libidn-devel-0:1.36-1.fc33.ppc64le\n - pangomm-devel-0:2.42.2-1.fc33.armv7hl\n - boost-locale-0:1.73.0-9.fc33.armv7hl\n - libhandy1-devel-0:1.0.3-1.fc33.x86_64\n - gd-0:2.3.0-3.fc33.ppc64le\n - libhandy1-0:1.0.3-1.fc33.armv7hl\n - gnome-online-accounts-0:3.38.0-1.fc33.i686\n - suitesparse64-0:5.4.0-5.fc33.x86_64\n - jbig2dec-devel-0:0.19-2.fc33.i686\n - ghostscript-tools-printing-0:9.53.3-4.fc33.ppc64le\n - polkit-0:0.117-2.fc33.i686\n - libfontenc-devel-0:1.1.3-13.fc33.x86_64\n - dbus-glib-0:0.110-10.fc33.ppc64le\n - geocode-glib-devel-0:3.26.2-2.fc33.armv7hl\n - poppler-glib-devel-0:0.90.0-6.fc33.ppc64le\n - gsl-0:2.6-3.fc33.x86_64\n - libwmf-0:0.2.12-4.fc33.armv7hl\n - suitesparse64_-devel-0:5.4.0-5.fc33.x86_64\n - cairomm-devel-0:1.12.2-4.fc33.aarch64\n - suitesparse64_-devel-0:5.4.0-5.fc33.s390x\n - openblas-openmp-0:0.3.12-1.fc33.armv7hl\n - exiv2-0:0.27.3-4.fc33.armv7hl\n - poppler-cpp-0:0.90.0-6.fc33.aarch64\n - boost-test-0:1.73.0-9.fc33.x86_64\n - boost-examples-0:1.73.0-9.fc33.armv7hl\n - gsound-devel-0:1.0.2-12.fc33.x86_64\n - boost-contract-0:1.73.0-9.fc33.x86_64\n - compat-wxGTK3-gtk2-media-0:3.0.5.1-2.fc33.x86_64\n - cairomm-0:1.12.2-4.fc33.i686\n - libijs-0:0.35-12.fc33.ppc64le\n - boost-doctools-0:1.73.0-9.fc33.armv7hl\n - libijs-devel-0:0.35-12.fc33.ppc64le\n - poppler-cpp-devel-0:0.90.0-6.fc33.x86_64\n - gsl-devel-0:2.6-3.fc33.x86_64\n - flatpak-runtime-config-0:33-1.fc33.s390x\n - flexiblas-blis-openmp64-0:3.0.4-1.fc33.s390x\n - libical-glib-devel-0:3.0.9-1.fc33.s390x\n - gsound-devel-0:1.0.2-12.fc33.i686\n - exiv2-devel-0:0.27.3-4.fc33.armv7hl\n - suitesparse-doc-0:5.4.0-5.fc33.noarch\n - boost-graph-0:1.73.0-9.fc33.x86_64\n - boost-static-0:1.73.0-9.fc33.ppc64le\n - libical-0:3.0.9-1.fc33.x86_64\n - openblas-devel-0:0.3.12-1.fc33.i686\n - exiv2-doc-0:0.27.3-4.fc33.noarch\n - compat-wxGTK3-gtk2-0:3.0.5.1-2.fc33.armv7hl\n - gd-progs-0:2.3.0-3.fc33.s390x\n - poppler-glib-devel-0:0.90.0-6.fc33.i686\n - libical-glib-devel-0:3.0.9-1.fc33.i686\n - ghostscript-0:9.53.3-4.fc33.x86_64\n - startup-notification-devel-0:0.12-20.fc33.i686\n - poppler-qt-devel-0:0.90.0-6.fc33.armv7hl\n - boost-test-0:1.73.0-9.fc33.s390x\n - libpeas-devel-0:1.28.0-1.fc33.x86_64\n - libdazzle-0:3.38.0-1.fc33.ppc64le\n - libijs-devel-0:0.35-12.fc33.s390x\n - protobuf-devel-0:3.12.4-1.fc33.aarch64\n - boost-context-0:1.73.0-9.fc33.aarch64\n - compat-wxGTK3-gtk2-devel-0:3.0.5.1-2.fc33.s390x\n - protobuf-java-util-0:3.12.4-1.fc33.noarch\n - SDL-static-0:1.2.15-45.fc33.x86_64\n - exiv2-0:0.27.3-4.fc33.aarch64\n - boost-filesystem-0:1.73.0-9.fc33.i686\n - google-droid-sans-fonts-0:20200215-8.fc33.noarch\n - openblas-openmp64-0:0.3.12-1.fc33.aarch64\n - flexiblas-netlib-0:3.0.4-1.fc33.ppc64le\n - suitesparse-0:5.4.0-5.fc33.i686\n - libical-devel-0:3.0.9-1.fc33.i686\n - jbig2dec-0:0.19-2.fc33.s390x\n - flexiblas-netlib64-0:3.0.4-1.fc33.s390x\n - boost-stacktrace-0:1.73.0-9.fc33.ppc64le\n - libgdata-0:0.17.13-1.fc33.i686\n - poppler-qt5-devel-0:0.90.0-6.fc33.ppc64le\n - protobuf-lite-0:3.12.4-1.fc33.armv7hl\n - flatpak-rpm-macros-0:33-2.fc33.aarch64\n - boost-coroutine-0:1.73.0-9.fc33.ppc64le\n - evolution-data-server-perl-0:3.38.4-1.fc33.armv7hl\n - boost-system-0:1.73.0-9.fc33.x86_64\n - boost-atomic-0:1.73.0-9.fc33.aarch64\n - flexiblas-openblas-serial-0:3.0.4-1.fc33.aarch64\n - OpenEXR-libs-0:2.3.0-6.fc33.i686\n - protobuf-javadoc-0:3.12.4-1.fc33.noarch\n - gsound-devel-0:1.0.2-12.fc33.ppc64le\n - libpeas-loader-python3-0:1.28.0-1.fc33.x86_64\n - boost-wave-0:1.73.0-9.fc33.aarch64\n - libwmf-0:0.2.12-4.fc33.i686\n - boost-coroutine-0:1.73.0-9.fc33.x86_64\n - libhandy1-devel-0:1.0.3-1.fc33.aarch64\n - wxGTK3-webview-0:3.0.5.1-2.fc33.i686\n - ilmbase-devel-0:2.3.0-5.fc33.s390x\n - boost-chrono-0:1.73.0-9.fc33.s390x\n - ghostscript-x11-0:9.53.3-4.fc33.armv7hl\n - libfontenc-devel-0:1.1.3-13.fc33.i686\n - poppler-glib-0:0.90.0-6.fc33.i686\n - gsl-devel-0:2.6-3.fc33.s390x\n - openblas-openmp-0:0.3.12-1.fc33.i686\n - boost-contract-0:1.73.0-9.fc33.s390x\n - tcl-1:8.6.10-5.fc33.s390x\n - glibmm24-devel-0:2.64.5-3.fc33.s390x\n - glew-0:2.1.0-8.fc33.aarch64\n - boost-container-0:1.73.0-9.fc33.armv7hl\n - exiv2-devel-0:0.27.3-4.fc33.x86_64\n - boost-doc-0:1.73.0-9.fc33.aarch64\n - gnome-online-accounts-0:3.38.0-1.fc33.armv7hl\n - flexiblas-blis-openmp-0:3.0.4-1.fc33.ppc64le\n - flexiblas-devel-0:3.0.4-1.fc33.ppc64le\n - gspell-0:1.8.4-1.fc33.s390x\n - protobuf-0:3.12.4-1.fc33.ppc64le\n - boost-fiber-0:1.73.0-9.fc33.i686\n - urw-base35-z003-fonts-0:20200910-2.fc33.noarch\n - ilmbase-devel-0:2.3.0-5.fc33.armv7hl\n - boost-stacktrace-0:1.73.0-9.fc33.i686\n - tix-devel-1:8.4.3-29.fc33.i686\n - libgweather-devel-0:3.36.1-3.fc33.s390x\n - flexiblas-devel-0:3.0.4-1.fc33.s390x\n - OpenEXR-libs-0:2.3.0-6.fc33.armv7hl\n - poppler-qt5-devel-0:0.90.0-6.fc33.s390x\n - openjpeg2-0:2.3.1-10.fc33.armv7hl\n - evolution-data-server-perl-0:3.38.4-1.fc33.x86_64\n - openjpeg2-devel-0:2.3.1-10.fc33.x86_64\n - libgdata-0:0.17.13-1.fc33.armv7hl\n - openblas-openmp64-0:0.3.12-1.fc33.x86_64\n - boost-doc-0:1.73.0-9.fc33.ppc64le\n - flexiblas-netlib-0:3.0.4-1.fc33.s390x\n - poppler-qt-devel-0:0.90.0-6.fc33.s390x\n - boost-wave-0:1.73.0-9.fc33.armv7hl\n - boost-wave-0:1.73.0-9.fc33.x86_64\n - boost-date-time-0:1.73.0-9.fc33.aarch64\n - libimagequant-devel-0:2.12.6-3.fc33.aarch64\n - exiv2-devel-0:0.27.3-4.fc33.i686\n - geocode-glib-devel-0:3.26.2-2.fc33.x86_64\n - libgweather-devel-0:3.36.1-3.fc33.x86_64\n - tix-1:8.4.3-29.fc33.ppc64le\n - tbb-0:2020.3-2.fc33.armv7hl\n - pangomm-devel-0:2.42.2-1.fc33.i686\n - poppler-qt5-0:0.90.0-6.fc33.ppc64le\n - libphonenumber-0:8.12.11-1.fc33.armv7hl\n - compat-wxGTK3-gtk2-gl-0:3.0.5.1-2.fc33.aarch64\n - flexiblas-hook-profile64-0:3.0.4-1.fc33.ppc64le\n - boost-iostreams-0:1.73.0-9.fc33.s390x\n - suitesparse64_-static-0:5.4.0-5.fc33.aarch64\n - gnome-desktop3-tests-0:3.38.4-1.fc33.x86_64\n - boost-b2-0:1.73.0-9.fc33.x86_64\n - wxGTK3-0:3.0.5.1-2.fc33.s390x\n - libgweather-0:3.36.1-3.fc33.s390x\n - openjpeg2-tools-0:2.3.1-10.fc33.armv7hl\n - boost-thread-0:1.73.0-9.fc33.ppc64le\n - libwmf-devel-0:0.2.12-4.fc33.x86_64\n - tix-devel-1:8.4.3-29.fc33.ppc64le\n - evolution-data-server-0:3.38.4-1.fc33.aarch64\n - compat-wxGTK3-gtk2-0:3.0.5.1-2.fc33.i686\n - glew-0:2.1.0-8.fc33.i686\n - gtksourceview3-0:3.24.11-4.fc33.ppc64le\n - geocode-glib-0:3.26.2-2.fc33.aarch64\n - compat-wxGTK3-gtk2-devel-0:3.0.5.1-2.fc33.aarch64\n - flexiblas-openblas-openmp64-0:3.0.4-1.fc33.x86_64\n - flexiblas-blis-serial-0:3.0.4-1.fc33.aarch64\n - poppler-qt-0:0.90.0-6.fc33.s390x\n - polkit-libs-0:0.117-2.fc33.i686\n - wxBase3-0:3.0.5.1-2.fc33.i686\n - gnome-desktop3-devel-0:3.38.4-1.fc33.aarch64\n - ilmbase-devel-0:2.3.0-5.fc33.x86_64\n - flexiblas-0:3.0.4-1.fc33.i686\n - ghostscript-gtk-0:9.53.3-4.fc33.aarch64\n - tcl-devel-1:8.6.10-5.fc33.x86_64\n - ghostscript-tools-printing-0:9.53.3-4.fc33.x86_64\n - gsl-0:2.6-3.fc33.aarch64\n - atkmm-devel-0:2.28.1-1.fc33.armv7hl\n - adobe-mappings-cmap-0:20171205-9.fc33.noarch\n - libhandy1-0:1.0.3-1.fc33.s390x\n - SDL_image-devel-0:1.2.12-25.fc33.x86_64\n - SDL-static-0:1.2.15-45.fc33.aarch64\n - poppler-glib-devel-0:0.90.0-6.fc33.aarch64\n - exiv2-devel-0:0.27.3-4.fc33.s390x\n - boost-locale-0:1.73.0-9.fc33.ppc64le\n - poppler-glib-doc-0:0.90.0-6.fc33.noarch\n - libmspack-devel-0:0.10.1-0.4.alpha.fc33.armv7hl\n - compat-wxGTK3-gtk2-0:3.0.5.1-2.fc33.ppc64le\n - OpenEXR-0:2.3.0-6.fc33.aarch64\n - gnome-online-accounts-devel-0:3.38.0-1.fc33.armv7hl\n - atkmm-devel-0:2.28.1-1.fc33.i686\n - liboauth-0:1.0.3-15.fc33.ppc64le\n - libwmf-lite-0:0.2.12-4.fc33.s390x\n - glibmm24-0:2.64.5-3.fc33.armv7hl\n - boost-stacktrace-0:1.73.0-9.fc33.s390x\n - libpeas-devel-0:1.28.0-1.fc33.ppc64le\n - google-droid-serif-fonts-0:20200215-8.fc33.noarch\n - gsl-0:2.6-3.fc33.armv7hl\n - poppler-data-0:0.4.9-6.fc33.noarch\n - libical-devel-0:3.0.9-1.fc33.x86_64\n - glibmm24-0:2.64.5-3.fc33.ppc64le\n - libwmf-devel-0:0.2.12-4.fc33.s390x\n - protobuf-compiler-0:3.12.4-1.fc33.s390x\n - libical-0:3.0.9-1.fc33.i686\n - boost-context-0:1.73.0-9.fc33.i686\n - flexiblas-blis-threads-0:3.0.4-1.fc33.x86_64\n - libsigc++20-0:2.10.6-1.fc33.armv7hl\n - boost-iostreams-0:1.73.0-9.fc33.x86_64\n - evolution-data-server-tests-0:3.38.4-1.fc33.aarch64\n - ghostscript-0:9.53.3-4.fc33.ppc64le\n - xorg-x11-font-utils-1:7.5-47.fc33.x86_64\n - jbig2dec-libs-0:0.19-2.fc33.armv7hl\n - flatpak-rpm-macros-0:33-2.fc33.s390x\n - ghostscript-tools-fonts-0:9.53.3-4.fc33.x86_64\n - gnome-desktop3-devel-0:3.38.4-1.fc33.armv7hl\n - boost-random-0:1.73.0-9.fc33.aarch64\n - poppler-qt5-devel-0:0.90.0-6.fc33.x86_64\n - urw-base35-nimbus-mono-ps-fonts-0:20200910-2.fc33.noarch\n - libimagequant-devel-0:2.12.6-3.fc33.ppc64le\n - libwmf-devel-0:0.2.12-4.fc33.ppc64le\n - flexiblas-atlas-0:3.0.4-1.fc33.aarch64\n - libfontenc-devel-0:1.1.3-13.fc33.aarch64\n - tcl-devel-1:8.6.10-5.fc33.i686\n - poppler-glib-devel-0:0.90.0-6.fc33.s390x\n - openblas-openmp-0:0.3.12-1.fc33.x86_64\n - libgweather-0:3.36.1-3.fc33.x86_64\n - flexiblas-blis-serial64-0:3.0.4-1.fc33.x86_64\n - libpeas-devel-0:1.28.0-1.fc33.s390x\n - libgdata-0:0.17.13-1.fc33.ppc64le\n - openblas-devel-0:0.3.12-1.fc33.aarch64\n - glibmm24-0:2.64.5-3.fc33.s390x\n - tix-1:8.4.3-29.fc33.armv7hl\n - boost-contract-0:1.73.0-9.fc33.i686\n - urw-base35-bookman-fonts-0:20200910-2.fc33.noarch\n - gnome-desktop3-0:3.38.4-1.fc33.i686\n - ghostscript-x11-0:9.53.3-4.fc33.x86_64\n - exiv2-libs-0:0.27.3-4.fc33.aarch64\n - pangomm-0:2.42.2-1.fc33.armv7hl\n - boost-doctools-0:1.73.0-9.fc33.x86_64\n - boost-stacktrace-0:1.73.0-9.fc33.aarch64\n - tix-doc-1:8.4.3-29.fc33.ppc64le\n - wxGTK3-webview-0:3.0.5.1-2.fc33.x86_64\n - exiv2-0:0.27.3-4.fc33.x86_64\n - tbb-0:2020.3-2.fc33.ppc64le\n - boost-serialization-0:1.73.0-9.fc33.armv7hl\n - protobuf-lite-0:3.12.4-1.fc33.aarch64\n - libpaper-devel-0:1.1.28-1.fc33.s390x\n - wxBase3-devel-0:3.0.5.1-2.fc33.x86_64\n - openblas-0:0.3.12-1.fc33.s390x\n - openblas-devel-0:0.3.12-1.fc33.ppc64le\n - boost-numpy3-0:1.73.0-9.fc33.armv7hl\n - gd-devel-0:2.3.0-3.fc33.aarch64\n - flexiblas-netlib-0:3.0.4-1.fc33.armv7hl\n - tix-doc-1:8.4.3-29.fc33.aarch64\n - openblas-threads64-0:0.3.12-1.fc33.aarch64\n - libical-0:3.0.9-1.fc33.s390x\n - ghostscript-core-0:9.53.3-4.fc33.i686\n - glibmm24-devel-0:2.64.5-3.fc33.armv7hl\n - ghostscript-tools-printing-0:9.53.3-4.fc33.i686\n - tcl-doc-1:8.6.10-5.fc33.noarch\n - boost-doctools-0:1.73.0-9.fc33.i686\n - boost-fiber-0:1.73.0-9.fc33.aarch64\n - wxGTK3-docs-0:3.0.5.1-2.fc33.noarch\n - flexiblas-openblas-openmp-0:3.0.4-1.fc33.ppc64le\n - boost-system-0:1.73.0-9.fc33.s390x\n - ilmbase-devel-0:2.3.0-5.fc33.aarch64\n - boost-regex-0:1.73.0-9.fc33.s390x\n - gtksourceview3-tests-0:3.24.11-4.fc33.armv7hl\n - OpenEXR-libs-0:2.3.0-6.fc33.aarch64\n - poppler-qt-0:0.90.0-6.fc33.x86_64\n - exiv2-libs-0:0.27.3-4.fc33.i686\n - openblas-static-0:0.3.12-1.fc33.ppc64le\n - protobuf-lite-static-0:3.12.4-1.fc33.s390x\n - libijs-0:0.35-12.fc33.aarch64\n - boost-log-0:1.73.0-9.fc33.i686\n - exiv2-0:0.27.3-4.fc33.ppc64le\n - openblas-openmp64-0:0.3.12-1.fc33.ppc64le\n - libgs-devel-0:9.53.3-4.fc33.aarch64\n - ghostscript-tools-dvipdf-0:9.53.3-4.fc33.s390x\n - libpeas-0:1.28.0-1.fc33.i686\n - openjpeg2-devel-0:2.3.1-10.fc33.s390x\n - boost-devel-0:1.73.0-9.fc33.i686\n - gnome-desktop3-0:3.38.4-1.fc33.ppc64le\n - tbb-doc-0:2020.3-2.fc33.s390x\n - python3-protobuf-0:3.12.4-1.fc33.noarch\n - flatpak-rpm-macros-0:33-2.fc33.ppc64le\n - protobuf-lite-static-0:3.12.4-1.fc33.armv7hl\n - openblas-openmp-0:0.3.12-1.fc33.ppc64le\n - boost-devel-0:1.73.0-9.fc33.ppc64le\n - suitesparse-0:5.4.0-5.fc33.x86_64\n - startup-notification-0:0.12-20.fc33.s390x\n - libpeas-loader-python3-0:1.28.0-1.fc33.aarch64\n - libpeas-loader-python3-0:1.28.0-1.fc33.s390x\n - libphonenumber-0:8.12.11-1.fc33.s390x\n - libical-devel-0:3.0.9-1.fc33.ppc64le\n - OpenEXR-devel-0:2.3.0-6.fc33.ppc64le\n - SDL_image-0:1.2.12-25.fc33.armv7hl\n - tbb-doc-0:2020.3-2.fc33.i686\n - jbig2dec-devel-0:0.19-2.fc33.x86_64\n - poppler-utils-0:0.90.0-6.fc33.x86_64\n - pangomm-devel-0:2.42.2-1.fc33.s390x\n - flexiblas-devel-0:3.0.4-1.fc33.aarch64\n - libGLEW-0:2.1.0-8.fc33.s390x\n - wxGTK3-gl-0:3.0.5.1-2.fc33.ppc64le\n - liboauth-devel-0:1.0.3-15.fc33.x86_64\n - exiv2-libs-0:0.27.3-4.fc33.armv7hl\n - compat-wxGTK3-gtk2-0:3.0.5.1-2.fc33.x86_64\n - pangomm-devel-0:2.42.2-1.fc33.aarch64\n - python2.7-0:2.7.18-8.fc33.ppc64le\n - evolution-data-server-tests-0:3.38.4-1.fc33.x86_64\n - SDL-static-0:1.2.15-45.fc33.s390x\n - evolution-data-server-tests-0:3.38.4-1.fc33.armv7hl\n - protobuf-lite-0:3.12.4-1.fc33.s390x\n - wxGTK3-gl-0:3.0.5.1-2.fc33.x86_64\n - libraqm-devel-0:0.7.0-6.fc33.ppc64le\n - flexiblas-openblas-threads64-0:3.0.4-1.fc33.s390x\n - exiv2-libs-0:0.27.3-4.fc33.s390x\n - protobuf-static-0:3.12.4-1.fc33.x86_64\n - flexiblas-hook-profile-0:3.0.4-1.fc33.s390x\n - libpaper-0:1.1.28-1.fc33.s390x\n - libgweather-devel-0:3.36.1-3.fc33.i686\n - boost-python3-0:1.73.0-9.fc33.aarch64\n - wxGTK3-devel-0:3.0.5.1-2.fc33.armv7hl\n - flexiblas-hook-profile64-0:3.0.4-1.fc33.x86_64\n - openjpeg2-devel-docs-0:2.3.1-10.fc33.noarch\n - suitesparse64-0:5.4.0-5.fc33.aarch64\n - gnome-desktop3-devel-0:3.38.4-1.fc33.s390x\n - libphonenumber-devel-0:8.12.11-1.fc33.i686\n - poppler-qt-devel-0:0.90.0-6.fc33.x86_64\n - flexiblas-blis-serial-0:3.0.4-1.fc33.s390x\n - jbig2dec-0:0.19-2.fc33.x86_64\n - geocode-glib-0:3.26.2-2.fc33.armv7hl\n - protobuf-devel-0:3.12.4-1.fc33.armv7hl\n - libidn-devel-0:1.36-1.fc33.x86_64\n - flexiblas-blis-serial-0:3.0.4-1.fc33.x86_64\n - libsigc++20-devel-0:2.10.6-1.fc33.x86_64\n - protobuf-lite-0:3.12.4-1.fc33.x86_64\n - gnome-online-accounts-devel-0:3.38.0-1.fc33.s390x\n - boost-coroutine-0:1.73.0-9.fc33.aarch64\n - gtksourceview3-0:3.24.11-4.fc33.aarch64\n - gtkmm30-devel-0:3.24.3-1.fc33.ppc64le\n - openblas-devel-0:0.3.12-1.fc33.armv7hl\n - boost-thread-0:1.73.0-9.fc33.s390x\n - tbb-devel-0:2020.3-2.fc33.armv7hl\n - protobuf-lite-devel-0:3.12.4-1.fc33.s390x\n - OpenEXR-0:2.3.0-6.fc33.ppc64le\n - libgdata-devel-0:0.17.13-1.fc33.ppc64le\n - libraqm-0:0.7.0-6.fc33.i686\n - boost-container-0:1.73.0-9.fc33.aarch64\n - gsl-0:2.6-3.fc33.s390x\n - boost-numpy3-0:1.73.0-9.fc33.i686\n - boost-0:1.73.0-9.fc33.aarch64\n - openblas-static-0:0.3.12-1.fc33.armv7hl\n - gsound-0:1.0.2-12.fc33.armv7hl\n - SDL_image-devel-0:1.2.12-25.fc33.armv7hl\n - dbus-glib-devel-0:0.110-10.fc33.armv7hl\n - flexiblas-openblas-threads-0:3.0.4-1.fc33.ppc64le\n - suitesparse64-static-0:5.4.0-5.fc33.s390x\n - SDL-static-0:1.2.15-45.fc33.i686\n - tbb-0:2020.3-2.fc33.x86_64\n - wxBase3-0:3.0.5.1-2.fc33.armv7hl\n - flexiblas-blis-openmp64-0:3.0.4-1.fc33.x86_64\n - libijs-devel-0:0.35-12.fc33.i686\n - wxGTK3-gl-0:3.0.5.1-2.fc33.i686\n - openblas-serial64-0:0.3.12-1.fc33.aarch64\n - adobe-mappings-pdf-0:20180407-7.fc33.noarch\n - boost-serialization-0:1.73.0-9.fc33.x86_64\n - libpeas-devel-0:1.28.0-1.fc33.aarch64\n - suitesparse-devel-0:5.4.0-5.fc33.aarch64\n - compat-wxGTK3-gtk2-0:3.0.5.1-2.fc33.aarch64\n - boost-locale-0:1.73.0-9.fc33.i686\n - boost-log-0:1.73.0-9.fc33.aarch64\n - boost-regex-0:1.73.0-9.fc33.i686\n - suitesparse64_-devel-0:5.4.0-5.fc33.aarch64\n - geocode-glib-0:3.26.2-2.fc33.x86_64\n - cairomm-0:1.12.2-4.fc33.aarch64\n - poppler-glib-0:0.90.0-6.fc33.s390x\n - boost-doc-0:1.73.0-9.fc33.i686\n - dbus-glib-devel-0:0.110-10.fc33.x86_64\n - libphonenumber-0:8.12.11-1.fc33.ppc64le\n - urw-base35-fonts-0:20200910-2.fc33.noarch\n - wxBase3-devel-0:3.0.5.1-2.fc33.armv7hl\n - flexiblas-blis-threads-0:3.0.4-1.fc33.s390x\n - evolution-data-server-devel-0:3.38.4-1.fc33.i686\n - boost-0:1.73.0-9.fc33.i686\n - libraqm-devel-0:0.7.0-6.fc33.s390x\n - openblas-threads64-0:0.3.12-1.fc33.x86_64\n - libidn-java-0:1.36-1.fc33.noarch\n - ghostscript-tools-fonts-0:9.53.3-4.fc33.aarch64\n - boost-container-0:1.73.0-9.fc33.s390x\n - urw-base35-nimbus-sans-fonts-0:20200910-2.fc33.noarch\n - libraqm-0:0.7.0-6.fc33.ppc64le\n - boost-atomic-0:1.73.0-9.fc33.x86_64\n - wxGTK3-devel-0:3.0.5.1-2.fc33.i686\n - dbus-glib-0:0.110-10.fc33.x86_64\n - libwmf-lite-0:0.2.12-4.fc33.i686\n - wxGTK3-devel-0:3.0.5.1-2.fc33.x86_64\n - glew-devel-0:2.1.0-8.fc33.armv7hl\n - evolution-data-server-tests-0:3.38.4-1.fc33.i686\n - libimagequant-devel-0:2.12.6-3.fc33.i686\n - tk-devel-1:8.6.10-5.fc33.s390x\n - flexiblas-hook-profile64-0:3.0.4-1.fc33.s390x\n - tbb-devel-0:2020.3-2.fc33.s390x\n - wxGTK3-devel-0:3.0.5.1-2.fc33.s390x\n - exiv2-libs-0:0.27.3-4.fc33.x86_64\n - tix-1:8.4.3-29.fc33.i686\n - flexiblas-blis-serial-0:3.0.4-1.fc33.i686\n - libwmf-lite-0:0.2.12-4.fc33.ppc64le\n - openblas-devel-0:0.3.12-1.fc33.s390x\n - libpeas-loader-python3-0:1.28.0-1.fc33.armv7hl\n - gspell-devel-0:1.8.4-1.fc33.x86_64\n - wxGTK3-i18n-0:3.0.5.1-2.fc33.noarch\n - protobuf-lite-static-0:3.12.4-1.fc33.aarch64\n - tbb-doc-0:2020.3-2.fc33.x86_64\n - tk-1:8.6.10-5.fc33.aarch64\n - protobuf-compiler-0:3.12.4-1.fc33.armv7hl\n - openblas-serial-0:0.3.12-1.fc33.x86_64\n - gd-progs-0:2.3.0-3.fc33.ppc64le\n - protobuf-devel-0:3.12.4-1.fc33.s390x\n - glew-devel-0:2.1.0-8.fc33.aarch64\n - gtkmm30-0:3.24.3-1.fc33.armv7hl\n - wxGTK3-webview-0:3.0.5.1-2.fc33.armv7hl\n - gtksourceview3-devel-0:3.24.11-4.fc33.armv7hl\n - flatpak-rpm-macros-0:33-2.fc33.x86_64\n - boost-timer-0:1.73.0-9.fc33.x86_64\n - poppler-devel-0:0.90.0-6.fc33.aarch64\n - boost-stacktrace-0:1.73.0-9.fc33.armv7hl\n - boost-chrono-0:1.73.0-9.fc33.ppc64le\n - gtksourceview3-0:3.24.11-4.fc33.s390x\n - polkit-devel-0:0.117-2.fc33.armv7hl\n - boost-system-0:1.73.0-9.fc33.armv7hl\n - boost-random-0:1.73.0-9.fc33.ppc64le\n - openblas-threads64-0:0.3.12-1.fc33.s390x\n - libGLEW-0:2.1.0-8.fc33.i686\n - libraqm-docs-0:0.7.0-6.fc33.noarch\n - flatpak-runtime-config-0:33-1.fc33.armv7hl\n - boost-type_erasure-0:1.73.0-9.fc33.s390x\n - libimagequant-devel-0:2.12.6-3.fc33.s390x\n - libical-glib-0:3.0.9-1.fc33.ppc64le\n - openblas-serial64_-0:0.3.12-1.fc33.ppc64le\n - gspell-devel-0:1.8.4-1.fc33.armv7hl\n - openblas-threads-0:0.3.12-1.fc33.armv7hl\n - openblas-serial64-0:0.3.12-1.fc33.ppc64le\n - libical-glib-devel-0:3.0.9-1.fc33.armv7hl\n - poppler-utils-0:0.90.0-6.fc33.aarch64\n - suitesparse64-0:5.4.0-5.fc33.s390x\n - polkit-0:0.117-2.fc33.s390x\n - compat-wxGTK3-gtk2-media-0:3.0.5.1-2.fc33.ppc64le\n - libraqm-devel-0:0.7.0-6.fc33.i686\n - boost-fiber-0:1.73.0-9.fc33.ppc64le\n - suitesparse-devel-0:5.4.0-5.fc33.i686\n - gtkmm30-0:3.24.3-1.fc33.s390x\n - boost-b2-0:1.73.0-9.fc33.armv7hl\n - libmspack-devel-0:0.10.1-0.4.alpha.fc33.i686\n - poppler-devel-0:0.90.0-6.fc33.x86_64\n - gtksourceview3-devel-0:3.24.11-4.fc33.x86_64\n - boost-timer-0:1.73.0-9.fc33.s390x\n - gtkmm30-devel-0:3.24.3-1.fc33.i686\n - openblas-static-0:0.3.12-1.fc33.aarch64\n - libphonenumber-0:8.12.11-1.fc33.x86_64\n - libidn-javadoc-0:1.36-1.fc33.noarch\n - ghostscript-gtk-0:9.53.3-4.fc33.ppc64le\n - ghostscript-tools-dvipdf-0:9.53.3-4.fc33.armv7hl\n - poppler-devel-0:0.90.0-6.fc33.s390x\n - python3-tbb-0:2020.3-2.fc33.s390x\n - libidn-0:1.36-1.fc33.aarch64\n - dbus-glib-0:0.110-10.fc33.aarch64\n - libidn-0:1.36-1.fc33.i686\n - python2.7-0:2.7.18-8.fc33.aarch64\n - openblas-serial64_-0:0.3.12-1.fc33.aarch64\n - wxGTK3-media-0:3.0.5.1-2.fc33.ppc64le\n - flexiblas-openblas-serial-0:3.0.4-1.fc33.x86_64\n - gd-progs-0:2.3.0-3.fc33.armv7hl\n - gsl-devel-0:2.6-3.fc33.ppc64le\n - poppler-cpp-devel-0:0.90.0-6.fc33.s390x\n - suitesparse64_-devel-0:5.4.0-5.fc33.ppc64le\n - evolution-data-server-langpacks-0:3.38.4-1.fc33.noarch\n - jbig2dec-libs-0:0.19-2.fc33.x86_64\n - protobuf-lite-devel-0:3.12.4-1.fc33.x86_64\n - libsigc++20-0:2.10.6-1.fc33.i686\n - protobuf-vim-0:3.12.4-1.fc33.noarch\n - tk-1:8.6.10-5.fc33.ppc64le\n - poppler-0:0.90.0-6.fc33.armv7hl\n - libimagequant-0:2.12.6-3.fc33.aarch64\n - boost-regex-0:1.73.0-9.fc33.x86_64\n - libraqm-devel-0:0.7.0-6.fc33.x86_64\n - boost-timer-0:1.73.0-9.fc33.armv7hl\n - libfontenc-0:1.1.3-13.fc33.aarch64\n - tcl-1:8.6.10-5.fc33.armv7hl\n - cairomm-0:1.12.2-4.fc33.armv7hl\n - boost-doctools-0:1.73.0-9.fc33.ppc64le\n - protobuf-lite-static-0:3.12.4-1.fc33.ppc64le\n - poppler-cpp-devel-0:0.90.0-6.fc33.armv7hl\n - cairomm-devel-0:1.12.2-4.fc33.i686\n - compat-wxGTK3-gtk2-devel-0:3.0.5.1-2.fc33.ppc64le\n - gtksourceview3-devel-0:3.24.11-4.fc33.i686\n - boost-system-0:1.73.0-9.fc33.i686\n - flexiblas-openblas-serial64-0:3.0.4-1.fc33.s390x\n - libical-glib-0:3.0.9-1.fc33.s390x\n - boost-serialization-0:1.73.0-9.fc33.i686\n - gnome-desktop3-tests-0:3.38.4-1.fc33.s390x\n - glew-devel-0:2.1.0-8.fc33.s390x\n - flexiblas-openblas-threads64-0:3.0.4-1.fc33.x86_64\n - gnome-desktop3-tests-0:3.38.4-1.fc33.ppc64le\n - suitesparse-devel-0:5.4.0-5.fc33.armv7hl\n - gspell-devel-0:1.8.4-1.fc33.i686\n - flexiblas-blis-openmp-0:3.0.4-1.fc33.s390x\n - tix-doc-1:8.4.3-29.fc33.s390x\n - libfontenc-0:1.1.3-13.fc33.i686\n - exiv2-0:0.27.3-4.fc33.s390x\n - SDL_image-0:1.2.12-25.fc33.s390x\n - SDL-0:1.2.15-45.fc33.s390x\n - polkit-docs-0:0.117-2.fc33.noarch\n - libmspack-devel-0:0.10.1-0.4.alpha.fc33.s390x\n - gtkmm30-0:3.24.3-1.fc33.i686\n - poppler-qt5-0:0.90.0-6.fc33.aarch64\n - libdazzle-0:3.38.0-1.fc33.x86_64\n - boost-chrono-0:1.73.0-9.fc33.armv7hl\n - boost-math-0:1.73.0-9.fc33.aarch64\n - ghostscript-0:9.53.3-4.fc33.s390x\n - flexiblas-openblas-serial-0:3.0.4-1.fc33.armv7hl\n - gspell-devel-0:1.8.4-1.fc33.aarch64\n - poppler-qt-0:0.90.0-6.fc33.armv7hl\n - libdazzle-0:3.38.0-1.fc33.armv7hl\n - libhandy1-devel-0:1.0.3-1.fc33.i686\n - poppler-qt5-devel-0:0.90.0-6.fc33.armv7hl\n - gspell-doc-0:1.8.4-1.fc33.noarch\n - flexiblas-blis-openmp64-0:3.0.4-1.fc33.ppc64le\n - liboauth-0:1.0.3-15.fc33.x86_64\n - openjpeg2-0:2.3.1-10.fc33.s390x\n - libgs-0:9.53.3-4.fc33.armv7hl\n - protobuf-lite-devel-0:3.12.4-1.fc33.ppc64le\n - ghostscript-tools-dvipdf-0:9.53.3-4.fc33.x86_64\n - libidn-0:1.36-1.fc33.x86_64\n - liboauth-0:1.0.3-15.fc33.i686\n - libsigc++20-devel-0:2.10.6-1.fc33.s390x\n - boost-type_erasure-0:1.73.0-9.fc33.i686\n - libdazzle-devel-0:3.38.0-1.fc33.x86_64\n - gtksourceview3-devel-0:3.24.11-4.fc33.ppc64le\n - startup-notification-0:0.12-20.fc33.aarch64\n - openjpeg2-0:2.3.1-10.fc33.i686\n - libraqm-0:0.7.0-6.fc33.aarch64\n - libsigc++20-0:2.10.6-1.fc33.aarch64\n - protobuf-static-0:3.12.4-1.fc33.i686\n - boost-filesystem-0:1.73.0-9.fc33.ppc64le\n - cairomm-0:1.12.2-4.fc33.ppc64le\n - atkmm-devel-0:2.28.1-1.fc33.x86_64\n - libfontenc-0:1.1.3-13.fc33.armv7hl\n - boost-nowide-0:1.73.0-9.fc33.i686\n - openblas-threads64-0:0.3.12-1.fc33.ppc64le\n - pangomm-devel-0:2.42.2-1.fc33.x86_64\n - libwmf-lite-0:0.2.12-4.fc33.aarch64\n - atkmm-devel-0:2.28.1-1.fc33.ppc64le\n - openblas-serial64_-0:0.3.12-1.fc33.s390x\n - atkmm-0:2.28.1-1.fc33.i686\n - libidn-0:1.36-1.fc33.s390x\n - poppler-0:0.90.0-6.fc33.s390x\n - boost-date-time-0:1.73.0-9.fc33.ppc64le\n - python3-tbb-0:2020.3-2.fc33.x86_64\n - boost-locale-0:1.73.0-9.fc33.aarch64\n - flexiblas-atlas-0:3.0.4-1.fc33.armv7hl\n - liboauth-devel-0:1.0.3-15.fc33.i686\n - libgs-0:9.53.3-4.fc33.x86_64\n - suitesparse64_-0:5.4.0-5.fc33.s390x\n - polkit-libs-0:0.117-2.fc33.x86_64\n - openblas-threads-0:0.3.12-1.fc33.aarch64\n - boost-coroutine-0:1.73.0-9.fc33.armv7hl\n - tix-1:8.4.3-29.fc33.s390x\n - libphonenumber-0:8.12.11-1.fc33.aarch64\n - gsound-0:1.0.2-12.fc33.aarch64\n - exiv2-0:0.27.3-4.fc33.i686\n - boost-fiber-0:1.73.0-9.fc33.x86_64\n - openjpeg2-0:2.3.1-10.fc33.ppc64le\n - xorg-x11-font-utils-1:7.5-47.fc33.ppc64le\n - boost-regex-0:1.73.0-9.fc33.armv7hl\n - startup-notification-0:0.12-20.fc33.armv7hl\n - compat-wxGTK3-gtk2-gl-0:3.0.5.1-2.fc33.i686\n - libical-glib-0:3.0.9-1.fc33.aarch64\n - poppler-glib-0:0.90.0-6.fc33.armv7hl\n - flexiblas-openblas-serial64-0:3.0.4-1.fc33.aarch64\n - poppler-utils-0:0.90.0-6.fc33.ppc64le\n - poppler-qt-devel-0:0.90.0-6.fc33.aarch64\n - boost-wave-0:1.73.0-9.fc33.s390x\n - libmspack-0:0.10.1-0.4.alpha.fc33.s390x\n - tbb-devel-0:2020.3-2.fc33.i686\n - boost-examples-0:1.73.0-9.fc33.i686\n - evolution-data-server-0:3.38.4-1.fc33.x86_64\n - openblas-serial64-0:0.3.12-1.fc33.s390x\n - libical-glib-0:3.0.9-1.fc33.x86_64\n - boost-doc-0:1.73.0-9.fc33.x86_64\n - pangomm-devel-0:2.42.2-1.fc33.ppc64le\n - poppler-devel-0:0.90.0-6.fc33.i686\n - SDL-devel-0:1.2.15-45.fc33.aarch64\n - flexiblas-netlib-0:3.0.4-1.fc33.i686\n - libGLEW-0:2.1.0-8.fc33.ppc64le\n - ghostscript-gtk-0:9.53.3-4.fc33.i686\n - ghostscript-gtk-0:9.53.3-4.fc33.armv7hl\n - suitesparse-static-0:5.4.0-5.fc33.s390x\n - liboauth-devel-0:1.0.3-15.fc33.aarch64\n - wxGTK3-webview-0:3.0.5.1-2.fc33.aarch64\n - boost-static-0:1.73.0-9.fc33.s390x\n - boost-type_erasure-0:1.73.0-9.fc33.aarch64\n - libmspack-devel-0:0.10.1-0.4.alpha.fc33.ppc64le\n - openblas-threads-0:0.3.12-1.fc33.s390x\n - libical-devel-0:3.0.9-1.fc33.aarch64\n - libfontenc-devel-0:1.1.3-13.fc33.ppc64le\n - poppler-devel-0:0.90.0-6.fc33.armv7hl\n - poppler-0:0.90.0-6.fc33.x86_64\n - evolution-data-server-0:3.38.4-1.fc33.armv7hl\n - libfontenc-0:1.1.3-13.fc33.s390x\n - flexiblas-blis-openmp-0:3.0.4-1.fc33.aarch64\n - flexiblas-openblas-threads-0:3.0.4-1.fc33.s390x\n - libpeas-gtk-0:1.28.0-1.fc33.x86_64\n - gnome-desktop3-tests-0:3.38.4-1.fc33.armv7hl\n - urw-base35-standard-symbols-ps-fonts-0:20200910-2.fc33.noarch\n - cairomm-0:1.12.2-4.fc33.x86_64\n - libpeas-loader-python3-0:1.28.0-1.fc33.i686\n - libpaper-devel-0:1.1.28-1.fc33.armv7hl\n - libijs-0:0.35-12.fc33.s390x\n - ghostscript-0:9.53.3-4.fc33.armv7hl\n - libpaper-devel-0:1.1.28-1.fc33.x86_64\n - boost-program-options-0:1.73.0-9.fc33.armv7hl\n - compat-wxGTK3-gtk2-gl-0:3.0.5.1-2.fc33.armv7hl\n - boost-examples-0:1.73.0-9.fc33.ppc64le\n - boost-b2-0:1.73.0-9.fc33.aarch64\n - boost-serialization-0:1.73.0-9.fc33.s390x\n - boost-system-0:1.73.0-9.fc33.aarch64\n - urw-base35-fonts-devel-0:20200910-2.fc33.noarch\n - libgdata-0:0.17.13-1.fc33.aarch64\n - boost-context-0:1.73.0-9.fc33.ppc64le\n - protobuf-static-0:3.12.4-1.fc33.armv7hl\n - protobuf-compiler-0:3.12.4-1.fc33.ppc64le\n - openblas-0:0.3.12-1.fc33.i686\n - protobuf-lite-static-0:3.12.4-1.fc33.i686\n - dbus-glib-devel-0:0.110-10.fc33.aarch64\n - tk-devel-1:8.6.10-5.fc33.aarch64\n - libfontenc-0:1.1.3-13.fc33.ppc64le\n - xorg-x11-font-utils-1:7.5-47.fc33.aarch64\n - flexiblas-devel-0:3.0.4-1.fc33.x86_64\n - protobuf-parent-0:3.12.4-1.fc33.noarch\n - adobe-mappings-cmap-devel-0:20171205-9.fc33.noarch\n - tix-1:8.4.3-29.fc33.aarch64\n - pangomm-0:2.42.2-1.fc33.aarch64\n - SDL_image-devel-0:1.2.12-25.fc33.i686\n - gtkmm30-0:3.24.3-1.fc33.aarch64\n - ghostscript-tools-printing-0:9.53.3-4.fc33.s390x\n - boost-python3-0:1.73.0-9.fc33.armv7hl\n - libpeas-gtk-0:1.28.0-1.fc33.aarch64\n - libical-devel-0:3.0.9-1.fc33.s390x\n - ghostscript-core-0:9.53.3-4.fc33.armv7hl\n - jbig2dec-devel-0:0.19-2.fc33.s390x\n - gnome-online-accounts-devel-0:3.38.0-1.fc33.aarch64\n - poppler-utils-0:0.90.0-6.fc33.i686\n - libgweather-0:3.36.1-3.fc33.armv7hl\n - boost-static-0:1.73.0-9.fc33.x86_64\n - poppler-cpp-0:0.90.0-6.fc33.i686\n - libgs-devel-0:9.53.3-4.fc33.armv7hl\n - poppler-data-devel-0:0.4.9-6.fc33.noarch\n - gnome-desktop3-tests-0:3.38.4-1.fc33.aarch64\n - boost-devel-0:1.73.0-9.fc33.aarch64\n - flexiblas-blis-serial64-0:3.0.4-1.fc33.aarch64\n - urw-base35-d050000l-fonts-0:20200910-2.fc33.noarch\n - libwmf-lite-0:0.2.12-4.fc33.armv7hl\n - gtkmm30-0:3.24.3-1.fc33.ppc64le\n - protobuf-compiler-0:3.12.4-1.fc33.i686\n - libijs-devel-0:0.35-12.fc33.armv7hl\n - flexiblas-hook-profile-0:3.0.4-1.fc33.x86_64\n - flexiblas-0:3.0.4-1.fc33.armv7hl\n - gspell-0:1.8.4-1.fc33.armv7hl\n - python2.7-0:2.7.18-8.fc33.s390x\n - libijs-0:0.35-12.fc33.x86_64\n - ilmbase-devel-0:2.3.0-5.fc33.ppc64le\n - tbb-doc-0:2020.3-2.fc33.armv7hl\n - libgs-0:9.53.3-4.fc33.i686\n - gspell-devel-0:1.8.4-1.fc33.ppc64le\n - gsound-0:1.0.2-12.fc33.s390x\n - boost-coroutine-0:1.73.0-9.fc33.i686\n - boost-context-0:1.73.0-9.fc33.x86_64\n - boost-log-0:1.73.0-9.fc33.ppc64le\n - cairomm-0:1.12.2-4.fc33.s390x\n - wxGTK3-webview-0:3.0.5.1-2.fc33.s390x\n - boost-numpy3-0:1.73.0-9.fc33.x86_64\n - liboauth-0:1.0.3-15.fc33.armv7hl\n - protobuf-static-0:3.12.4-1.fc33.ppc64le\n - glibmm24-doc-0:2.64.5-3.fc33.noarch\n - boost-contract-0:1.73.0-9.fc33.armv7hl\n - openblas-serial-0:0.3.12-1.fc33.s390x\n - libijs-devel-0:0.35-12.fc33.aarch64\n - suitesparse64-static-0:5.4.0-5.fc33.ppc64le\n - flexiblas-blis-serial64-0:3.0.4-1.fc33.s390x\n - libpeas-gtk-0:1.28.0-1.fc33.ppc64le\n - poppler-cpp-0:0.90.0-6.fc33.ppc64le\n - libgdata-devel-0:0.17.13-1.fc33.s390x\n - glibmm24-0:2.64.5-3.fc33.i686\n - flexiblas-openblas-serial-0:3.0.4-1.fc33.i686\n - boost-serialization-0:1.73.0-9.fc33.aarch64\n - boost-doctools-0:1.73.0-9.fc33.aarch64\n - flexiblas-openblas-threads64-0:3.0.4-1.fc33.ppc64le\n - compat-wxGTK3-gtk2-gl-0:3.0.5.1-2.fc33.s390x\n - protobuf-static-0:3.12.4-1.fc33.aarch64\n - flexiblas-openblas-threads64-0:3.0.4-1.fc33.aarch64\n - poppler-qt-devel-0:0.90.0-6.fc33.ppc64le\n - SDL-static-0:1.2.15-45.fc33.ppc64le\n - libidn-devel-0:1.36-1.fc33.aarch64\n - tcl-devel-1:8.6.10-5.fc33.armv7hl\n - boost-math-0:1.73.0-9.fc33.s390x\n - libsigc++20-devel-0:2.10.6-1.fc33.aarch64\n - boost-graph-0:1.73.0-9.fc33.i686\n - boost-b2-0:1.73.0-9.fc33.ppc64le\n - boost-locale-0:1.73.0-9.fc33.s390x\n - flexiblas-hook-profile-0:3.0.4-1.fc33.ppc64le\n - openjpeg2-0:2.3.1-10.fc33.x86_64\n - wxGTK3-0:3.0.5.1-2.fc33.armv7hl\n - atkmm-devel-0:2.28.1-1.fc33.aarch64\n - protobuf-0:3.12.4-1.fc33.x86_64\n - protobuf-lite-0:3.12.4-1.fc33.ppc64le\n - flexiblas-openblas-openmp-0:3.0.4-1.fc33.aarch64\n - tbb-devel-0:2020.3-2.fc33.aarch64\n - evolution-data-server-perl-0:3.38.4-1.fc33.aarch64\n - google-droid-fonts-all-0:20200215-8.fc33.noarch\n - libijs-doc-0:0.35-12.fc33.noarch\n - pangomm-0:2.42.2-1.fc33.i686\n - libpeas-devel-0:1.28.0-1.fc33.armv7hl\n - libGLEW-0:2.1.0-8.fc33.armv7hl\n - openjpeg2-devel-0:2.3.1-10.fc33.ppc64le\n - libphonenumber-0:8.12.11-1.fc33.i686\n - flexiblas-blis-serial-0:3.0.4-1.fc33.armv7hl\n - libimagequant-0:2.12.6-3.fc33.i686\n - boost-thread-0:1.73.0-9.fc33.armv7hl\n - libpeas-gtk-0:1.28.0-1.fc33.i686\n - libmspack-0:0.10.1-0.4.alpha.fc33.armv7hl\n - libgweather-0:3.36.1-3.fc33.i686\n - poppler-glib-0:0.90.0-6.fc33.aarch64\n - protobuf-lite-devel-0:3.12.4-1.fc33.aarch64\n - OpenEXR-doc-0:2.3.0-6.fc33.ppc64le\n - tcl-1:8.6.10-5.fc33.i686\n - libical-0:3.0.9-1.fc33.armv7hl\n - SDL-devel-0:1.2.15-45.fc33.armv7hl\n - SDL_image-devel-0:1.2.12-25.fc33.ppc64le\n - OpenEXR-libs-0:2.3.0-6.fc33.ppc64le\n - ghostscript-tools-dvipdf-0:9.53.3-4.fc33.aarch64\n - flexiblas-openblas-serial64-0:3.0.4-1.fc33.x86_64\n - suitesparse-devel-0:5.4.0-5.fc33.ppc64le\n - boost-log-0:1.73.0-9.fc33.armv7hl\n - wxBase3-devel-0:3.0.5.1-2.fc33.i686\n - SDL-devel-0:1.2.15-45.fc33.ppc64le\n - python2-setuptools-0:41.2.0-3.fc33.noarch\n - libical-glib-0:3.0.9-1.fc33.armv7hl\n - poppler-qt-0:0.90.0-6.fc33.ppc64le\n - boost-filesystem-0:1.73.0-9.fc33.armv7hl\n - OpenEXR-0:2.3.0-6.fc33.s390x\n - boost-stacktrace-0:1.73.0-9.fc33.x86_64\n - tk-1:8.6.10-5.fc33.armv7hl\n - boost-type_erasure-0:1.73.0-9.fc33.x86_64\n - wxBase3-0:3.0.5.1-2.fc33.aarch64\n - gnome-desktop3-0:3.38.4-1.fc33.aarch64\n - libical-glib-devel-0:3.0.9-1.fc33.aarch64\n - openblas-serial64_-0:0.3.12-1.fc33.x86_64\n - flexiblas-blis-threads-0:3.0.4-1.fc33.ppc64le\n - evolution-data-server-perl-0:3.38.4-1.fc33.i686\n - atkmm-0:2.28.1-1.fc33.s390x\n - boost-graph-0:1.73.0-9.fc33.armv7hl\n - flexiblas-blis-threads64-0:3.0.4-1.fc33.s390x\n - libdazzle-devel-0:3.38.0-1.fc33.s390x\n - gnome-desktop3-0:3.38.4-1.fc33.x86_64\n - gnome-desktop3-tests-0:3.38.4-1.fc33.i686\n - gtksourceview3-tests-0:3.24.11-4.fc33.ppc64le\n - google-droid-sans-mono-fonts-0:20200215-8.fc33.noarch\n - libgweather-0:3.36.1-3.fc33.aarch64\n - boost-timer-0:1.73.0-9.fc33.aarch64\n - gd-0:2.3.0-3.fc33.x86_64\n - dbus-glib-devel-0:0.110-10.fc33.ppc64le\n - python3-tbb-0:2020.3-2.fc33.armv7hl\n - jbig2dec-libs-0:0.19-2.fc33.aarch64\n - libhandy1-0:1.0.3-1.fc33.i686\n - glew-0:2.1.0-8.fc33.armv7hl\n - protobuf-0:3.12.4-1.fc33.i686\n - gtksourceview3-devel-0:3.24.11-4.fc33.s390x\n - SDL-0:1.2.15-45.fc33.i686\n - libphonenumber-devel-0:8.12.11-1.fc33.s390x\n - liboauth-0:1.0.3-15.fc33.s390x\n - polkit-devel-0:0.117-2.fc33.i686\n - libpeas-0:1.28.0-1.fc33.ppc64le\n - tbb-devel-0:2020.3-2.fc33.x86_64\n - flatpak-runtime-config-0:33-1.fc33.aarch64\n - suitesparse64-devel-0:5.4.0-5.fc33.x86_64\n - jbig2dec-devel-0:0.19-2.fc33.armv7hl\n - cairomm-devel-0:1.12.2-4.fc33.ppc64le\n - openblas-threads64_-0:0.3.12-1.fc33.aarch64\n - startup-notification-devel-0:0.12-20.fc33.aarch64\n - libijs-0:0.35-12.fc33.armv7hl\n - boost-random-0:1.73.0-9.fc33.s390x\n - ilmbase-0:2.3.0-5.fc33.s390x\n - SDL-static-0:1.2.15-45.fc33.armv7hl\n - openjpeg2-tools-0:2.3.1-10.fc33.i686\n - polkit-libs-0:0.117-2.fc33.armv7hl\n - openjpeg2-devel-0:2.3.1-10.fc33.i686\n - suitesparse64-devel-0:5.4.0-5.fc33.aarch64\n - flexiblas-atlas-0:3.0.4-1.fc33.s390x\n - openblas-serial-0:0.3.12-1.fc33.i686\n - gd-0:2.3.0-3.fc33.armv7hl\n - libpaper-devel-0:1.1.28-1.fc33.aarch64\n - libsigc++20-0:2.10.6-1.fc33.s390x\n - libraqm-devel-0:0.7.0-6.fc33.armv7hl\n - ghostscript-tools-fonts-0:9.53.3-4.fc33.ppc64le\n - libgdata-devel-0:0.17.13-1.fc33.armv7hl\n - flexiblas-atlas-0:3.0.4-1.fc33.i686\n - tcl-1:8.6.10-5.fc33.aarch64\n - boost-timer-0:1.73.0-9.fc33.i686\n - wxGTK3-0:3.0.5.1-2.fc33.i686\n - tk-devel-1:8.6.10-5.fc33.ppc64le\n - OpenEXR-libs-0:2.3.0-6.fc33.x86_64\n - boost-0:1.73.0-9.fc33.armv7hl\n - gsound-0:1.0.2-12.fc33.ppc64le\n - ghostscript-core-0:9.53.3-4.fc33.ppc64le\n - SDL-0:1.2.15-45.fc33.ppc64le\n - libgs-devel-0:9.53.3-4.fc33.x86_64\n - flatpak-runtime-config-0:33-1.fc33.i686\n - startup-notification-0:0.12-20.fc33.i686\n - libpeas-0:1.28.0-1.fc33.x86_64\n - libfontenc-0:1.1.3-13.fc33.x86_64\n - flexiblas-openblas-serial64-0:3.0.4-1.fc33.ppc64le\n - libwmf-0:0.2.12-4.fc33.ppc64le\n - boost-static-0:1.73.0-9.fc33.armv7hl\n - glew-0:2.1.0-8.fc33.s390x\n - evolution-data-server-tests-0:3.38.4-1.fc33.s390x\n - flexiblas-openblas-threads-0:3.0.4-1.fc33.i686\n - boost-numpy3-0:1.73.0-9.fc33.s390x\n - boost-python3-0:1.73.0-9.fc33.i686\n - boost-doc-0:1.73.0-9.fc33.s390x\n - boost-coroutine-0:1.73.0-9.fc33.s390x\n - boost-test-0:1.73.0-9.fc33.armv7hl\n - evolution-data-server-devel-0:3.38.4-1.fc33.x86_64\n - exiv2-libs-0:0.27.3-4.fc33.ppc64le\n - ghostscript-core-0:9.53.3-4.fc33.aarch64\n - glibmm24-0:2.64.5-3.fc33.x86_64\n - SDL_image-0:1.2.12-25.fc33.x86_64\n - openblas-threads-0:0.3.12-1.fc33.ppc64le\n - openblas-serial-0:0.3.12-1.fc33.armv7hl\n - poppler-cpp-0:0.90.0-6.fc33.armv7hl\n - adobe-mappings-cmap-deprecated-0:20171205-9.fc33.noarch\n - ghostscript-tools-printing-0:9.53.3-4.fc33.armv7hl\n - pangomm-0:2.42.2-1.fc33.x86_64\n - boost-iostreams-0:1.73.0-9.fc33.ppc64le\n - wxGTK3-gl-0:3.0.5.1-2.fc33.aarch64\n - libpeas-devel-0:1.28.0-1.fc33.i686\n - geocode-glib-0:3.26.2-2.fc33.ppc64le\n - tcl-1:8.6.10-5.fc33.ppc64le\n - suitesparse64-devel-0:5.4.0-5.fc33.s390x\n - poppler-qt-devel-0:0.90.0-6.fc33.i686\n - protobuf-compiler-0:3.12.4-1.fc33.x86_64\n - evolution-data-server-perl-0:3.38.4-1.fc33.s390x\n - ghostscript-gtk-0:9.53.3-4.fc33.s390x\n - boost-test-0:1.73.0-9.fc33.i686\n - poppler-glib-0:0.90.0-6.fc33.ppc64le\n - jbig2dec-devel-0:0.19-2.fc33.ppc64le\n - boost-examples-0:1.73.0-9.fc33.s390x\n - glew-0:2.1.0-8.fc33.ppc64le\n - boost-numpy3-0:1.73.0-9.fc33.ppc64le\n - flatpak-runtime-config-0:33-1.fc33.x86_64\n - libgs-devel-0:9.53.3-4.fc33.i686\n - boost-log-0:1.73.0-9.fc33.x86_64\n - gsound-devel-0:1.0.2-12.fc33.armv7hl\n - ilmbase-0:2.3.0-5.fc33.aarch64\n - wxBase3-0:3.0.5.1-2.fc33.x86_64\n - OpenEXR-doc-0:2.3.0-6.fc33.x86_64\n - libGLEW-0:2.1.0-8.fc33.x86_64\n - liboauth-devel-0:1.0.3-15.fc33.s390x\n - urw-base35-c059-fonts-0:20200910-2.fc33.noarch\n - libgweather-devel-0:3.36.1-3.fc33.armv7hl\n - boost-chrono-0:1.73.0-9.fc33.i686\n - evolution-data-server-devel-0:3.38.4-1.fc33.armv7hl\n - libraqm-0:0.7.0-6.fc33.s390x\n - gd-progs-0:2.3.0-3.fc33.aarch64\n - boost-random-0:1.73.0-9.fc33.i686\n - boost-nowide-0:1.73.0-9.fc33.ppc64le\n - libidn-devel-0:1.36-1.fc33.s390x\n - flatpak-rpm-macros-0:33-2.fc33.armv7hl\n - startup-notification-devel-0:0.12-20.fc33.s390x\n - wxGTK3-media-0:3.0.5.1-2.fc33.armv7hl\n - ghostscript-tools-fonts-0:9.53.3-4.fc33.s390x\n - libgs-devel-0:9.53.3-4.fc33.s390x\n - openblas-0:0.3.12-1.fc33.aarch64\n - boost-b2-0:1.73.0-9.fc33.i686\n - jbig2dec-libs-0:0.19-2.fc33.i686\n - gtksourceview3-0:3.24.11-4.fc33.x86_64\n - atkmm-0:2.28.1-1.fc33.ppc64le\n - flexiblas-hook-profile-0:3.0.4-1.fc33.armv7hl\n - ghostscript-core-0:9.53.3-4.fc33.x86_64\n - poppler-0:0.90.0-6.fc33.aarch64\n - poppler-cpp-0:0.90.0-6.fc33.x86_64\n - glew-0:2.1.0-8.fc33.x86_64\n - openjpeg2-0:2.3.1-10.fc33.aarch64\n - jbig2dec-libs-0:0.19-2.fc33.ppc64le\n - boost-nowide-0:1.73.0-9.fc33.aarch64\n - polkit-devel-0:0.117-2.fc33.ppc64le\n - protobuf-lite-0:3.12.4-1.fc33.i686\n - gtksourceview3-tests-0:3.24.11-4.fc33.aarch64\n - pangomm-0:2.42.2-1.fc33.ppc64le\n - flexiblas-blis-threads64-0:3.0.4-1.fc33.x86_64\n - tcl-devel-1:8.6.10-5.fc33.aarch64\n - flexiblas-blis-serial-0:3.0.4-1.fc33.ppc64le\n - poppler-qt5-0:0.90.0-6.fc33.x86_64\n - openblas-static-0:0.3.12-1.fc33.x86_64\n - SDL_image-0:1.2.12-25.fc33.ppc64le\n - ilmbase-devel-0:2.3.0-5.fc33.i686\n dependencies:\n - buildrequires:\n flatpak-common: [f33]\n flatpak-runtime: [f33]\n platform: [f33]\n requires:\n flatpak-common: [f33]\n flatpak-runtime: [f33]\n platform: [f33]\n profiles:\n default:\n rpms:\n - 0ad\n components:\n rpms:\n 0ad:\n rationale: Application package\n repository: git+https://src.fedoraproject.org/rpms/0ad\n cache: https://src.fedoraproject.org/repo/pkgs/0ad\n ref: f33\n buildorder: 10\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n 0ad-data:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/0ad-data\n cache: https://src.fedoraproject.org/repo/pkgs/0ad-data\n ref: f33\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n dejavu-fonts:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/dejavu-fonts\n cache: https://src.fedoraproject.org/repo/pkgs/dejavu-fonts\n ref: f33\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n enet:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/enet\n cache: https://src.fedoraproject.org/repo/pkgs/enet\n ref: f33\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n gloox:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/gloox\n cache: https://src.fedoraproject.org/repo/pkgs/gloox\n ref: f33\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n libsodium:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/libsodium\n cache: https://src.fedoraproject.org/repo/pkgs/libsodium\n ref: f33\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n miniupnpc:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/miniupnpc\n cache: https://src.fedoraproject.org/repo/pkgs/miniupnpc\n ref: f33\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n nvidia-texture-tools:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/nvidia-texture-tools\n cache: https://src.fedoraproject.org/repo/pkgs/nvidia-texture-tools\n ref: f33\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n...", "runtime_deps": [ { "dependency": "flatpak-runtime", "stream": "f33" }, { "dependency": "platform", "stream": "f33" }, { "dependency": "flatpak-common", "stream": "f33" } ], "build_deps": [ { "dependency": "flatpak-runtime", "stream": "f33" }, { "dependency": "platform", "stream": "f33" }, { "dependency": "flatpak-common", "stream": "f33" } ], "active": false, "rpms": [] }, { "variant_id": "0ad", "variant_uid": "0ad:stable:3320210302110546:50ef3cd5", "variant_name": "0ad", "variant_type": "module", "variant_version": "stable", "variant_release": "3320210302110546", "variant_context": "50ef3cd5", "koji_tag": "module-0ad-stable-3320210302110546-50ef3cd5", "modulemd": "---\ndocument: modulemd\nversion: 2\ndata:\n name: 0ad\n stream: \"stable\"\n version: 3320210302110546\n context: 50ef3cd5\n summary: Cross-Platform RTS Game of Ancient Warfare\n description: >-\n 0 A.D. (pronounced \"zero ey-dee\") is a free, open-source, cross-platform real-time\n strategy (RTS) game of ancient warfare. In short, it is a historically-based war/economy\n game that allows players to relive or rewrite the history of Western civilizations,\n focusing on the years between 500 B.C. and 500 A.D. The project is highly ambitious,\n involving state-of-the-art 3D graphics, detailed artwork, sound, and a flexible\n and powerful custom-built game engine.\n\n The game has been in development by Wildfire Games (WFG), a group of volunteer,\n hobbyist game developers, since 2001.\n license:\n module:\n - MIT\n xmd:\n mbs:\n buildrequires:\n flatpak-common:\n context: fb2b2a51\n filtered_rpms: []\n koji_tag: module-flatpak-common-f33-3320210219170848-fb2b2a51\n ref: eaa3bbc44c6a79cb20f406f4df2a82d125e35afd\n stream: f33\n version: 3320210219170848\n flatpak-runtime:\n context: 601d93de\n filtered_rpms: []\n koji_tag: module-flatpak-runtime-f33-3320210224151549-601d93de\n ref: b401de31856623102158250206300da0e943d06e\n stream: f33\n version: 3320210224151549\n platform:\n context: 00000000\n filtered_rpms: []\n koji_tag: module-f33-build\n ref: f33\n stream: f33\n stream_collision_modules: \n ursine_rpms: \n version: 1\n commit: 30ed8234a22613f7dc7a86eaf96a33abb1dd98fc\n mse: TRUE\n rpms:\n 0ad:\n ref: 71447f440795252a47c0caf21042f3ed9a9c5f65\n 0ad-data:\n ref: 33fe072a696aef3000553b03a6b0b11832ed2fad\n dejavu-fonts:\n ref: b475f5b4c29a82b95c84df5d31ba8757710d5b5d\n enet:\n ref: da594f9bd429ecb41396a25091d693e41b40cfbc\n gloox:\n ref: 6881cacaa26d9ae3dc9d24585b36b2c52ee43434\n libsodium:\n ref: 1442a683d44b7a4186db95ffbfba0c747fae833f\n miniupnpc:\n ref: 43aa4048718cddbf572520e8b3cc7f26747c076b\n nvidia-texture-tools:\n ref: 9f338bb34655deab4027c5d93e6fd1655d97a602\n scmurl: https://src.fedoraproject.org/flatpaks/0ad.git?#30ed8234a22613f7dc7a86eaf96a33abb1dd98fc\n ursine_rpms:\n - gsound-0:1.0.2-12.fc33.x86_64\n - boost-filesystem-0:1.73.0-9.fc33.s390x\n - boost-test-0:1.73.0-9.fc33.ppc64le\n - ilmbase-0:2.3.0-5.fc33.ppc64le\n - boost-graph-0:1.73.0-9.fc33.s390x\n - OpenEXR-doc-0:2.3.0-6.fc33.i686\n - libgweather-devel-0:3.36.1-3.fc33.aarch64\n - libhandy1-0:1.0.3-1.fc33.x86_64\n - boost-timer-0:1.73.0-9.fc33.ppc64le\n - ghostscript-tools-dvipdf-0:9.53.3-4.fc33.i686\n - boost-contract-0:1.73.0-9.fc33.aarch64\n - urw-base35-fonts-common-0:20200910-2.fc33.noarch\n - atkmm-0:2.28.1-1.fc33.x86_64\n - openblas-threads-0:0.3.12-1.fc33.i686\n - OpenEXR-doc-0:2.3.0-6.fc33.s390x\n - flexiblas-blis-openmp64-0:3.0.4-1.fc33.aarch64\n - boost-type_erasure-0:1.73.0-9.fc33.armv7hl\n - gtksourceview3-tests-0:3.24.11-4.fc33.i686\n - boost-python3-0:1.73.0-9.fc33.ppc64le\n - protobuf-static-0:3.12.4-1.fc33.s390x\n - polkit-0:0.117-2.fc33.armv7hl\n - SDL-devel-0:1.2.15-45.fc33.i686\n - geocode-glib-0:3.26.2-2.fc33.s390x\n - flexiblas-blis-threads-0:3.0.4-1.fc33.aarch64\n - exiv2-devel-0:0.27.3-4.fc33.ppc64le\n - exiv2-devel-0:0.27.3-4.fc33.aarch64\n - OpenEXR-0:2.3.0-6.fc33.armv7hl\n - polkit-0:0.117-2.fc33.aarch64\n - flexiblas-blis-threads-0:3.0.4-1.fc33.i686\n - libpeas-gtk-0:1.28.0-1.fc33.s390x\n - openblas-static-0:0.3.12-1.fc33.i686\n - libgweather-0:3.36.1-3.fc33.ppc64le\n - jbig2dec-0:0.19-2.fc33.armv7hl\n - poppler-cpp-devel-0:0.90.0-6.fc33.aarch64\n - openjpeg2-tools-0:2.3.1-10.fc33.ppc64le\n - libhandy1-devel-0:1.0.3-1.fc33.s390x\n - gtkmm30-doc-0:3.24.3-1.fc33.noarch\n - boost-filesystem-0:1.73.0-9.fc33.x86_64\n - glibmm24-devel-0:2.64.5-3.fc33.aarch64\n - poppler-qt5-0:0.90.0-6.fc33.armv7hl\n - gsl-devel-0:2.6-3.fc33.aarch64\n - protobuf-lite-static-0:3.12.4-1.fc33.x86_64\n - libpaper-0:1.1.28-1.fc33.x86_64\n - flexiblas-openblas-serial-0:3.0.4-1.fc33.s390x\n - geocode-glib-devel-0:3.26.2-2.fc33.aarch64\n - evolution-data-server-0:3.38.4-1.fc33.i686\n - wxGTK3-0:3.0.5.1-2.fc33.ppc64le\n - boost-0:1.73.0-9.fc33.s390x\n - wxGTK3-devel-0:3.0.5.1-2.fc33.ppc64le\n - boost-doctools-0:1.73.0-9.fc33.s390x\n - boost-type_erasure-0:1.73.0-9.fc33.ppc64le\n - urw-base35-p052-fonts-0:20200910-2.fc33.noarch\n - poppler-qt5-0:0.90.0-6.fc33.i686\n - liboauth-devel-0:1.0.3-15.fc33.armv7hl\n - gsound-0:1.0.2-12.fc33.i686\n - flexiblas-openblas-threads-0:3.0.4-1.fc33.armv7hl\n - suitesparse64_-0:5.4.0-5.fc33.ppc64le\n - tk-devel-1:8.6.10-5.fc33.x86_64\n - libGLEW-0:2.1.0-8.fc33.aarch64\n - protobuf-0:3.12.4-1.fc33.aarch64\n - polkit-libs-0:0.117-2.fc33.aarch64\n - OpenEXR-0:2.3.0-6.fc33.i686\n - libwmf-0:0.2.12-4.fc33.s390x\n - boost-atomic-0:1.73.0-9.fc33.armv7hl\n - libwmf-devel-0:0.2.12-4.fc33.aarch64\n - poppler-qt-0:0.90.0-6.fc33.aarch64\n - tk-1:8.6.10-5.fc33.x86_64\n - boost-program-options-0:1.73.0-9.fc33.x86_64\n - flexiblas-0:3.0.4-1.fc33.s390x\n - gd-progs-0:2.3.0-3.fc33.i686\n - libphonenumber-devel-0:8.12.11-1.fc33.aarch64\n - tbb-doc-0:2020.3-2.fc33.aarch64\n - boost-graph-0:1.73.0-9.fc33.aarch64\n - gnome-desktop3-devel-0:3.38.4-1.fc33.x86_64\n - suitesparse64_-static-0:5.4.0-5.fc33.ppc64le\n - evolution-data-server-tests-0:3.38.4-1.fc33.ppc64le\n - atkmm-devel-0:2.28.1-1.fc33.s390x\n - tix-doc-1:8.4.3-29.fc33.armv7hl\n - gd-devel-0:2.3.0-3.fc33.i686\n - openjpeg2-devel-0:2.3.1-10.fc33.armv7hl\n - libsigc++20-devel-0:2.10.6-1.fc33.i686\n - boost-test-0:1.73.0-9.fc33.aarch64\n - boost-program-options-0:1.73.0-9.fc33.aarch64\n - libidn-devel-0:1.36-1.fc33.i686\n - flexiblas-netlib-0:3.0.4-1.fc33.x86_64\n - libical-0:3.0.9-1.fc33.aarch64\n - glew-devel-0:2.1.0-8.fc33.i686\n - openjpeg2-tools-0:2.3.1-10.fc33.aarch64\n - libhandy1-0:1.0.3-1.fc33.ppc64le\n - libwmf-0:0.2.12-4.fc33.aarch64\n - boost-examples-0:1.73.0-9.fc33.aarch64\n - boost-random-0:1.73.0-9.fc33.armv7hl\n - wxBase3-devel-0:3.0.5.1-2.fc33.aarch64\n - libidn-0:1.36-1.fc33.armv7hl\n - libgs-0:9.53.3-4.fc33.s390x\n - libwmf-devel-0:0.2.12-4.fc33.armv7hl\n - python2.7-0:2.7.18-8.fc33.x86_64\n - evolution-data-server-devel-0:3.38.4-1.fc33.s390x\n - openblas-serial-0:0.3.12-1.fc33.aarch64\n - libpaper-0:1.1.28-1.fc33.armv7hl\n - OpenEXR-doc-0:2.3.0-6.fc33.aarch64\n - suitesparse-static-0:5.4.0-5.fc33.armv7hl\n - python2.7-0:2.7.18-8.fc33.i686\n - tbb-doc-0:2020.3-2.fc33.ppc64le\n - libimagequant-devel-0:2.12.6-3.fc33.x86_64\n - adobe-mappings-pdf-devel-0:20180407-7.fc33.noarch\n - boost-filesystem-0:1.73.0-9.fc33.aarch64\n - poppler-qt5-0:0.90.0-6.fc33.s390x\n - libgs-0:9.53.3-4.fc33.aarch64\n - SDL-0:1.2.15-45.fc33.aarch64\n - poppler-cpp-0:0.90.0-6.fc33.s390x\n - boost-devel-0:1.73.0-9.fc33.x86_64\n - libgs-0:9.53.3-4.fc33.ppc64le\n - boost-serialization-0:1.73.0-9.fc33.ppc64le\n - openblas-threads64_-0:0.3.12-1.fc33.x86_64\n - poppler-qt5-devel-0:0.90.0-6.fc33.aarch64\n - polkit-libs-0:0.117-2.fc33.s390x\n - gtksourceview3-tests-0:3.24.11-4.fc33.s390x\n - wxBase3-0:3.0.5.1-2.fc33.s390x\n - libical-glib-devel-0:3.0.9-1.fc33.ppc64le\n - boost-graph-0:1.73.0-9.fc33.ppc64le\n - openblas-0:0.3.12-1.fc33.armv7hl\n - jbig2dec-0:0.19-2.fc33.aarch64\n - boost-static-0:1.73.0-9.fc33.aarch64\n - boost-context-0:1.73.0-9.fc33.armv7hl\n - gtkmm30-devel-0:3.24.3-1.fc33.aarch64\n - gnome-online-accounts-0:3.38.0-1.fc33.x86_64\n - wxBase3-devel-0:3.0.5.1-2.fc33.ppc64le\n - dbus-glib-0:0.110-10.fc33.armv7hl\n - flexiblas-openblas-openmp64-0:3.0.4-1.fc33.s390x\n - OpenEXR-0:2.3.0-6.fc33.x86_64\n - polkit-0:0.117-2.fc33.x86_64\n - gsl-devel-0:2.6-3.fc33.i686\n - openblas-threads64_-0:0.3.12-1.fc33.s390x\n - SDL-devel-0:1.2.15-45.fc33.x86_64\n - gsl-devel-0:2.6-3.fc33.armv7hl\n - boost-math-0:1.73.0-9.fc33.i686\n - poppler-utils-0:0.90.0-6.fc33.armv7hl\n - geocode-glib-devel-0:3.26.2-2.fc33.s390x\n - glibmm24-devel-0:2.64.5-3.fc33.ppc64le\n - boost-thread-0:1.73.0-9.fc33.x86_64\n - suitesparse64_-0:5.4.0-5.fc33.aarch64\n - gsound-devel-0:1.0.2-12.fc33.s390x\n - xorg-x11-font-utils-1:7.5-47.fc33.s390x\n - OpenEXR-devel-0:2.3.0-6.fc33.armv7hl\n - ilmbase-0:2.3.0-5.fc33.i686\n - openblas-serial-0:0.3.12-1.fc33.ppc64le\n - evolution-data-server-0:3.38.4-1.fc33.s390x\n - libgdata-0:0.17.13-1.fc33.x86_64\n - tcl-devel-1:8.6.10-5.fc33.s390x\n - flexiblas-blis-threads64-0:3.0.4-1.fc33.ppc64le\n - openblas-openmp64-0:0.3.12-1.fc33.s390x\n - flexiblas-openblas-openmp-0:3.0.4-1.fc33.s390x\n - libwmf-0:0.2.12-4.fc33.x86_64\n - cairomm-devel-0:1.12.2-4.fc33.x86_64\n - jbig2dec-libs-0:0.19-2.fc33.s390x\n - SDL-0:1.2.15-45.fc33.armv7hl\n - boost-atomic-0:1.73.0-9.fc33.ppc64le\n - libpeas-loader-python3-0:1.28.0-1.fc33.ppc64le\n - boost-regex-0:1.73.0-9.fc33.ppc64le\n - ghostscript-0:9.53.3-4.fc33.i686\n - urw-base35-gothic-fonts-0:20200910-2.fc33.noarch\n - urw-base35-nimbus-roman-fonts-0:20200910-2.fc33.noarch\n - libimagequant-0:2.12.6-3.fc33.x86_64\n - python3-tbb-0:2020.3-2.fc33.aarch64\n - glibmm24-0:2.64.5-3.fc33.aarch64\n - ghostscript-tools-dvipdf-0:9.53.3-4.fc33.ppc64le\n - protobuf-0:3.12.4-1.fc33.s390x\n - wxGTK3-0:3.0.5.1-2.fc33.aarch64\n - wxGTK3-media-0:3.0.5.1-2.fc33.x86_64\n - flexiblas-openblas-threads-0:3.0.4-1.fc33.x86_64\n - flexiblas-blis-openmp-0:3.0.4-1.fc33.armv7hl\n - tix-devel-1:8.4.3-29.fc33.armv7hl\n - poppler-glib-0:0.90.0-6.fc33.x86_64\n - flexiblas-blis-threads64-0:3.0.4-1.fc33.aarch64\n - poppler-glib-devel-0:0.90.0-6.fc33.x86_64\n - libgdata-devel-0:0.17.13-1.fc33.i686\n - openblas-serial64-0:0.3.12-1.fc33.x86_64\n - boost-wave-0:1.73.0-9.fc33.ppc64le\n - boost-chrono-0:1.73.0-9.fc33.aarch64\n - flexiblas-netlib-0:3.0.4-1.fc33.aarch64\n - boost-devel-0:1.73.0-9.fc33.armv7hl\n - boost-nowide-0:1.73.0-9.fc33.s390x\n - boost-random-0:1.73.0-9.fc33.x86_64\n - ghostscript-tools-printing-0:9.53.3-4.fc33.aarch64\n - wxGTK3-media-0:3.0.5.1-2.fc33.s390x\n - evolution-data-server-devel-0:3.38.4-1.fc33.ppc64le\n - boost-regex-0:1.73.0-9.fc33.aarch64\n - libpaper-0:1.1.28-1.fc33.ppc64le\n - poppler-devel-0:0.90.0-6.fc33.ppc64le\n - boost-system-0:1.73.0-9.fc33.ppc64le\n - protobuf-lite-devel-0:3.12.4-1.fc33.armv7hl\n - ghostscript-tools-fonts-0:9.53.3-4.fc33.i686\n - liboauth-0:1.0.3-15.fc33.aarch64\n - flexiblas-devel-0:3.0.4-1.fc33.armv7hl\n - flexiblas-netlib64-0:3.0.4-1.fc33.aarch64\n - openblas-devel-0:0.3.12-1.fc33.x86_64\n - libfontenc-devel-0:1.1.3-13.fc33.s390x\n - poppler-qt-0:0.90.0-6.fc33.i686\n - urw-base35-fonts-legacy-0:20200910-2.fc33.noarch\n - flexiblas-0:3.0.4-1.fc33.aarch64\n - ilmbase-0:2.3.0-5.fc33.x86_64\n - boost-program-options-0:1.73.0-9.fc33.ppc64le\n - tk-devel-1:8.6.10-5.fc33.i686\n - dbus-glib-devel-0:0.110-10.fc33.i686\n - openblas-threads64_-0:0.3.12-1.fc33.ppc64le\n - gtkmm30-devel-0:3.24.3-1.fc33.x86_64\n - cairomm-devel-0:1.12.2-4.fc33.s390x\n - ghostscript-0:9.53.3-4.fc33.aarch64\n - boost-python3-0:1.73.0-9.fc33.s390x\n - flexiblas-openblas-openmp-0:3.0.4-1.fc33.armv7hl\n - boost-iostreams-0:1.73.0-9.fc33.armv7hl\n - libical-0:3.0.9-1.fc33.ppc64le\n - libdazzle-0:3.38.0-1.fc33.s390x\n - geocode-glib-devel-0:3.26.2-2.fc33.ppc64le\n - boost-context-0:1.73.0-9.fc33.s390x\n - tbb-0:2020.3-2.fc33.i686\n - openblas-openmp-0:0.3.12-1.fc33.aarch64\n - boost-date-time-0:1.73.0-9.fc33.s390x\n - compat-wxGTK3-gtk2-gl-0:3.0.5.1-2.fc33.ppc64le\n - compat-wxGTK3-gtk2-media-0:3.0.5.1-2.fc33.aarch64\n - tk-devel-1:8.6.10-5.fc33.armv7hl\n - boost-container-0:1.73.0-9.fc33.x86_64\n - pangomm-doc-0:2.42.2-1.fc33.noarch\n - wxGTK3-gl-0:3.0.5.1-2.fc33.armv7hl\n - boost-date-time-0:1.73.0-9.fc33.x86_64\n - tix-devel-1:8.4.3-29.fc33.x86_64\n - tix-doc-1:8.4.3-29.fc33.x86_64\n - libraqm-devel-0:0.7.0-6.fc33.aarch64\n - libhandy1-0:1.0.3-1.fc33.aarch64\n - protobuf-devel-0:3.12.4-1.fc33.x86_64\n - suitesparse-static-0:5.4.0-5.fc33.i686\n - protobuf-0:3.12.4-1.fc33.armv7hl\n - flexiblas-openblas-openmp64-0:3.0.4-1.fc33.aarch64\n - gtksourceview3-0:3.24.11-4.fc33.i686\n - gd-progs-0:2.3.0-3.fc33.x86_64\n - SDL-devel-0:1.2.15-45.fc33.s390x\n - flexiblas-openblas-serial-0:3.0.4-1.fc33.ppc64le\n - gd-devel-0:2.3.0-3.fc33.s390x\n - xorg-x11-font-utils-1:7.5-47.fc33.i686\n - boost-date-time-0:1.73.0-9.fc33.i686\n - suitesparse-devel-0:5.4.0-5.fc33.s390x\n - tix-devel-1:8.4.3-29.fc33.s390x\n - ghostscript-doc-0:9.53.3-4.fc33.noarch\n - tbb-0:2020.3-2.fc33.aarch64\n - boost-log-0:1.73.0-9.fc33.s390x\n - glibmm24-devel-0:2.64.5-3.fc33.x86_64\n - boost-iostreams-0:1.73.0-9.fc33.i686\n - gnome-desktop3-devel-0:3.38.4-1.fc33.ppc64le\n - flexiblas-hook-profile64-0:3.0.4-1.fc33.aarch64\n - openblas-threads-0:0.3.12-1.fc33.x86_64\n - boost-math-0:1.73.0-9.fc33.armv7hl\n - compat-wxGTK3-gtk2-0:3.0.5.1-2.fc33.s390x\n - libimagequant-0:2.12.6-3.fc33.armv7hl\n - ghostscript-x11-0:9.53.3-4.fc33.s390x\n - gsl-0:2.6-3.fc33.ppc64le\n - flexiblas-openblas-openmp64-0:3.0.4-1.fc33.ppc64le\n - boost-date-time-0:1.73.0-9.fc33.armv7hl\n - flexiblas-hook-profile-0:3.0.4-1.fc33.aarch64\n - ghostscript-tools-fonts-0:9.53.3-4.fc33.armv7hl\n - boost-devel-0:1.73.0-9.fc33.s390x\n - flatpak-rpm-macros-0:33-2.fc33.i686\n - geocode-glib-0:3.26.2-2.fc33.i686\n - libimagequant-0:2.12.6-3.fc33.s390x\n - wxGTK3-0:3.0.5.1-2.fc33.x86_64\n - suitesparse-0:5.4.0-5.fc33.aarch64\n - libical-glib-devel-0:3.0.9-1.fc33.x86_64\n - boost-atomic-0:1.73.0-9.fc33.s390x\n - boost-nowide-0:1.73.0-9.fc33.armv7hl\n - boost-program-options-0:1.73.0-9.fc33.i686\n - wxBase3-0:3.0.5.1-2.fc33.ppc64le\n - suitesparse64-devel-0:5.4.0-5.fc33.ppc64le\n - libmspack-0:0.10.1-0.4.alpha.fc33.ppc64le\n - gnome-online-accounts-devel-0:3.38.0-1.fc33.ppc64le\n - libdazzle-devel-0:3.38.0-1.fc33.armv7hl\n - libmspack-0:0.10.1-0.4.alpha.fc33.x86_64\n - SDL_image-0:1.2.12-25.fc33.i686\n - boost-fiber-0:1.73.0-9.fc33.s390x\n - libpaper-0:1.1.28-1.fc33.aarch64\n - polkit-devel-0:0.117-2.fc33.s390x\n - suitesparse64-0:5.4.0-5.fc33.ppc64le\n - glew-devel-0:2.1.0-8.fc33.ppc64le\n - libhandy1-devel-0:1.0.3-1.fc33.ppc64le\n - polkit-devel-0:0.117-2.fc33.aarch64\n - libfontenc-devel-0:1.1.3-13.fc33.armv7hl\n - jbig2dec-0:0.19-2.fc33.i686\n - tbb-devel-0:2020.3-2.fc33.ppc64le\n - suitesparse64_-static-0:5.4.0-5.fc33.s390x\n - glew-devel-0:2.1.0-8.fc33.x86_64\n - dbus-glib-0:0.110-10.fc33.i686\n - flexiblas-openblas-threads-0:3.0.4-1.fc33.aarch64\n - openblas-openmp64_-0:0.3.12-1.fc33.s390x\n - atkmm-doc-0:2.28.1-1.fc33.noarch\n - flexiblas-blis-openmp-0:3.0.4-1.fc33.i686\n - poppler-utils-0:0.90.0-6.fc33.s390x\n - ghostscript-x11-0:9.53.3-4.fc33.i686\n - tbb-0:2020.3-2.fc33.s390x\n - flexiblas-atlas-0:3.0.4-1.fc33.ppc64le\n - libdazzle-devel-0:3.38.0-1.fc33.ppc64le\n - flexiblas-atlas-0:3.0.4-1.fc33.x86_64\n - openblas-openmp-0:0.3.12-1.fc33.s390x\n - ghostscript-x11-0:9.53.3-4.fc33.aarch64\n - python2.7-0:2.7.18-8.fc33.armv7hl\n - suitesparse64-static-0:5.4.0-5.fc33.aarch64\n - boost-build-0:1.73.0-9.fc33.noarch\n - libmspack-devel-0:0.10.1-0.4.alpha.fc33.aarch64\n - startup-notification-devel-0:0.12-20.fc33.armv7hl\n - boost-chrono-0:1.73.0-9.fc33.x86_64\n - suitesparse-devel-0:5.4.0-5.fc33.x86_64\n - gnome-online-accounts-0:3.38.0-1.fc33.ppc64le\n - startup-notification-0:0.12-20.fc33.x86_64\n - wxGTK3-devel-0:3.0.5.1-2.fc33.aarch64\n - libsigc++20-0:2.10.6-1.fc33.x86_64\n - xorg-x11-font-utils-1:7.5-47.fc33.armv7hl\n - boost-doc-0:1.73.0-9.fc33.armv7hl\n - SDL_image-devel-0:1.2.12-25.fc33.s390x\n - boost-0:1.73.0-9.fc33.x86_64\n - libical-devel-0:3.0.9-1.fc33.armv7hl\n - protobuf-devel-0:3.12.4-1.fc33.i686\n - libsigc++20-devel-0:2.10.6-1.fc33.ppc64le\n - libphonenumber-devel-0:8.12.11-1.fc33.ppc64le\n - SDL_image-devel-0:1.2.12-25.fc33.aarch64\n - libdazzle-devel-0:3.38.0-1.fc33.aarch64\n - libpeas-0:1.28.0-1.fc33.aarch64\n - gnome-online-accounts-0:3.38.0-1.fc33.aarch64\n - gtkmm30-0:3.24.3-1.fc33.x86_64\n - gspell-0:1.8.4-1.fc33.ppc64le\n - tk-1:8.6.10-5.fc33.i686\n - evolution-data-server-perl-0:3.38.4-1.fc33.ppc64le\n - gd-0:2.3.0-3.fc33.i686\n - OpenEXR-devel-0:2.3.0-6.fc33.x86_64\n - OpenEXR-devel-0:2.3.0-6.fc33.aarch64\n - libgs-devel-0:9.53.3-4.fc33.ppc64le\n - openblas-openmp64_-0:0.3.12-1.fc33.aarch64\n - OpenEXR-libs-0:2.3.0-6.fc33.s390x\n - libphonenumber-devel-0:8.12.11-1.fc33.x86_64\n - boost-fiber-0:1.73.0-9.fc33.armv7hl\n - wxGTK3-media-0:3.0.5.1-2.fc33.i686\n - protobuf-devel-0:3.12.4-1.fc33.ppc64le\n - gtksourceview3-tests-0:3.24.11-4.fc33.x86_64\n - protobuf-bom-0:3.12.4-1.fc33.noarch\n - libsigc++20-0:2.10.6-1.fc33.ppc64le\n - flexiblas-netlib64-0:3.0.4-1.fc33.ppc64le\n - boost-thread-0:1.73.0-9.fc33.i686\n - compat-wxGTK3-gtk2-media-0:3.0.5.1-2.fc33.armv7hl\n - compat-wxGTK3-gtk2-gl-0:3.0.5.1-2.fc33.x86_64\n - libidn-devel-0:1.36-1.fc33.armv7hl\n - flexiblas-blis-serial64-0:3.0.4-1.fc33.ppc64le\n - libphonenumber-devel-0:8.12.11-1.fc33.armv7hl\n - ghostscript-x11-0:9.53.3-4.fc33.ppc64le\n - libwmf-devel-0:0.2.12-4.fc33.i686\n - libsigc++20-devel-0:2.10.6-1.fc33.armv7hl\n - libmspack-0:0.10.1-0.4.alpha.fc33.aarch64\n - tk-1:8.6.10-5.fc33.s390x\n - libijs-0:0.35-12.fc33.i686\n - libdazzle-0:3.38.0-1.fc33.i686\n - gnome-online-accounts-devel-0:3.38.0-1.fc33.x86_64\n - polkit-0:0.117-2.fc33.ppc64le\n - libgweather-devel-0:3.36.1-3.fc33.ppc64le\n - evolution-data-server-devel-0:3.38.4-1.fc33.aarch64\n - OpenEXR-devel-0:2.3.0-6.fc33.i686\n - openblas-0:0.3.12-1.fc33.ppc64le\n - gd-devel-0:2.3.0-3.fc33.x86_64\n - boost-b2-0:1.73.0-9.fc33.s390x\n - gnome-desktop3-0:3.38.4-1.fc33.s390x\n - libidn-0:1.36-1.fc33.ppc64le\n - libpeas-0:1.28.0-1.fc33.armv7hl\n - libgdata-devel-0:0.17.13-1.fc33.x86_64\n - openjpeg2-tools-0:2.3.1-10.fc33.x86_64\n - libpaper-devel-0:1.1.28-1.fc33.ppc64le\n - evolution-data-server-0:3.38.4-1.fc33.ppc64le\n - wxBase3-devel-0:3.0.5.1-2.fc33.s390x\n - jbig2dec-devel-0:0.19-2.fc33.aarch64\n - protobuf-java-0:3.12.4-1.fc33.noarch\n - flexiblas-blis-threads-0:3.0.4-1.fc33.armv7hl\n - polkit-devel-0:0.117-2.fc33.x86_64\n - opengl-games-utils-0:0.2-18.fc33.noarch\n - compat-wxGTK3-gtk2-devel-0:3.0.5.1-2.fc33.x86_64\n - libijs-devel-0:0.35-12.fc33.x86_64\n - boost-0:1.73.0-9.fc33.ppc64le\n - gspell-0:1.8.4-1.fc33.i686\n - suitesparse64_-static-0:5.4.0-5.fc33.x86_64\n - boost-atomic-0:1.73.0-9.fc33.i686\n - poppler-cpp-devel-0:0.90.0-6.fc33.i686\n - suitesparse64-static-0:5.4.0-5.fc33.x86_64\n - poppler-0:0.90.0-6.fc33.i686\n - glibmm24-devel-0:2.64.5-3.fc33.i686\n - gnome-desktop3-0:3.38.4-1.fc33.armv7hl\n - gnome-online-accounts-devel-0:3.38.0-1.fc33.i686\n - boost-numpy3-0:1.73.0-9.fc33.aarch64\n - tcl-1:8.6.10-5.fc33.x86_64\n - flexiblas-0:3.0.4-1.fc33.ppc64le\n - compat-wxGTK3-gtk2-devel-0:3.0.5.1-2.fc33.i686\n - openblas-openmp64_-0:0.3.12-1.fc33.x86_64\n - boost-math-0:1.73.0-9.fc33.x86_64\n - boost-iostreams-0:1.73.0-9.fc33.aarch64\n - poppler-0:0.90.0-6.fc33.ppc64le\n - gsl-0:2.6-3.fc33.i686\n - OpenEXR-doc-0:2.3.0-6.fc33.armv7hl\n - SDL-0:1.2.15-45.fc33.x86_64\n - protobuf-compiler-0:3.12.4-1.fc33.aarch64\n - suitesparse-0:5.4.0-5.fc33.armv7hl\n - poppler-qt5-devel-0:0.90.0-6.fc33.i686\n - dbus-glib-devel-0:0.110-10.fc33.s390x\n - libpaper-0:1.1.28-1.fc33.i686\n - compat-wxGTK3-gtk2-devel-0:3.0.5.1-2.fc33.armv7hl\n - gd-0:2.3.0-3.fc33.s390x\n - atkmm-0:2.28.1-1.fc33.aarch64\n - liboauth-devel-0:1.0.3-15.fc33.ppc64le\n - suitesparse-0:5.4.0-5.fc33.ppc64le\n - libraqm-0:0.7.0-6.fc33.x86_64\n - compat-wxGTK3-gtk2-media-0:3.0.5.1-2.fc33.s390x\n - flexiblas-0:3.0.4-1.fc33.x86_64\n - flexiblas-devel-0:3.0.4-1.fc33.i686\n - startup-notification-devel-0:0.12-20.fc33.ppc64le\n - suitesparse-static-0:5.4.0-5.fc33.ppc64le\n - gtkmm30-devel-0:3.24.3-1.fc33.s390x\n - openblas-openmp64_-0:0.3.12-1.fc33.ppc64le\n - startup-notification-0:0.12-20.fc33.ppc64le\n - suitesparse-static-0:5.4.0-5.fc33.x86_64\n - python3-tbb-0:2020.3-2.fc33.i686\n - boost-contract-0:1.73.0-9.fc33.ppc64le\n - flexiblas-blis-openmp-0:3.0.4-1.fc33.x86_64\n - cairomm-doc-0:1.12.2-4.fc33.noarch\n - ghostscript-gtk-0:9.53.3-4.fc33.x86_64\n - flexiblas-openblas-openmp-0:3.0.4-1.fc33.i686\n - libmspack-devel-0:0.10.1-0.4.alpha.fc33.x86_64\n - suitesparse64_-0:5.4.0-5.fc33.x86_64\n - gtksourceview3-0:3.24.11-4.fc33.armv7hl\n - tix-doc-1:8.4.3-29.fc33.i686\n - boost-thread-0:1.73.0-9.fc33.aarch64\n - gspell-0:1.8.4-1.fc33.x86_64\n - poppler-glib-devel-0:0.90.0-6.fc33.armv7hl\n - boost-examples-0:1.73.0-9.fc33.x86_64\n - boost-static-0:1.73.0-9.fc33.i686\n - gnome-desktop3-devel-0:3.38.4-1.fc33.i686\n - libical-glib-doc-0:3.0.9-1.fc33.noarch\n - SDL_image-0:1.2.12-25.fc33.aarch64\n - protobuf-lite-devel-0:3.12.4-1.fc33.i686\n - gd-devel-0:2.3.0-3.fc33.ppc64le\n - protobuf-javalite-0:3.12.4-1.fc33.noarch\n - poppler-cpp-devel-0:0.90.0-6.fc33.ppc64le\n - libwmf-lite-0:0.2.12-4.fc33.x86_64\n - gspell-0:1.8.4-1.fc33.aarch64\n - dbus-glib-0:0.110-10.fc33.s390x\n - geocode-glib-devel-0:3.26.2-2.fc33.i686\n - wxGTK3-gl-0:3.0.5.1-2.fc33.s390x\n - libpaper-devel-0:1.1.28-1.fc33.i686\n - libdazzle-devel-0:3.38.0-1.fc33.i686\n - startup-notification-devel-0:0.12-20.fc33.x86_64\n - libsigc++20-doc-0:2.10.6-1.fc33.noarch\n - flexiblas-netlib64-0:3.0.4-1.fc33.x86_64\n - atkmm-0:2.28.1-1.fc33.armv7hl\n - tix-1:8.4.3-29.fc33.x86_64\n - wxGTK3-webview-0:3.0.5.1-2.fc33.ppc64le\n - libdazzle-0:3.38.0-1.fc33.aarch64\n - suitesparse-0:5.4.0-5.fc33.s390x\n - tcl-devel-1:8.6.10-5.fc33.ppc64le\n - boost-wave-0:1.73.0-9.fc33.i686\n - gd-devel-0:2.3.0-3.fc33.armv7hl\n - gsound-devel-0:1.0.2-12.fc33.aarch64\n - boost-locale-0:1.73.0-9.fc33.x86_64\n - libraqm-0:0.7.0-6.fc33.armv7hl\n - jbig2dec-0:0.19-2.fc33.ppc64le\n - boost-python3-0:1.73.0-9.fc33.x86_64\n - boost-program-options-0:1.73.0-9.fc33.s390x\n - libpeas-0:1.28.0-1.fc33.s390x\n - gd-0:2.3.0-3.fc33.aarch64\n - gnome-online-accounts-0:3.38.0-1.fc33.s390x\n - boost-math-0:1.73.0-9.fc33.ppc64le\n - libgdata-0:0.17.13-1.fc33.s390x\n - boost-container-0:1.73.0-9.fc33.ppc64le\n - wxGTK3-media-0:3.0.5.1-2.fc33.aarch64\n - tix-devel-1:8.4.3-29.fc33.aarch64\n - openblas-0:0.3.12-1.fc33.x86_64\n - ghostscript-core-0:9.53.3-4.fc33.s390x\n - flatpak-runtime-config-0:33-1.fc33.ppc64le\n - libimagequant-devel-0:2.12.6-3.fc33.armv7hl\n - ilmbase-0:2.3.0-5.fc33.armv7hl\n - openblas-static-0:0.3.12-1.fc33.s390x\n - flexiblas-hook-profile-0:3.0.4-1.fc33.i686\n - flexiblas-openblas-openmp-0:3.0.4-1.fc33.x86_64\n - gtkmm30-devel-0:3.24.3-1.fc33.armv7hl\n - boost-nowide-0:1.73.0-9.fc33.x86_64\n - openjpeg2-devel-0:2.3.1-10.fc33.aarch64\n - libimagequant-0:2.12.6-3.fc33.ppc64le\n - libical-glib-0:3.0.9-1.fc33.i686\n - gtksourceview3-devel-0:3.24.11-4.fc33.aarch64\n - suitesparse-static-0:5.4.0-5.fc33.aarch64\n - libpeas-gtk-0:1.28.0-1.fc33.armv7hl\n - python3-tbb-0:2020.3-2.fc33.ppc64le\n - libmspack-0:0.10.1-0.4.alpha.fc33.i686\n - libhandy1-devel-0:1.0.3-1.fc33.armv7hl\n - boost-container-0:1.73.0-9.fc33.i686\n - openjpeg2-tools-0:2.3.1-10.fc33.s390x\n - OpenEXR-devel-0:2.3.0-6.fc33.s390x\n - gspell-devel-0:1.8.4-1.fc33.s390x\n - pangomm-0:2.42.2-1.fc33.s390x\n - compat-wxGTK3-gtk2-media-0:3.0.5.1-2.fc33.i686\n - libgdata-devel-0:0.17.13-1.fc33.aarch64\n - polkit-libs-0:0.117-2.fc33.ppc64le\n - cairomm-devel-0:1.12.2-4.fc33.armv7hl\n - libidn-devel-0:1.36-1.fc33.ppc64le\n - pangomm-devel-0:2.42.2-1.fc33.armv7hl\n - boost-locale-0:1.73.0-9.fc33.armv7hl\n - libhandy1-devel-0:1.0.3-1.fc33.x86_64\n - gd-0:2.3.0-3.fc33.ppc64le\n - libhandy1-0:1.0.3-1.fc33.armv7hl\n - gnome-online-accounts-0:3.38.0-1.fc33.i686\n - suitesparse64-0:5.4.0-5.fc33.x86_64\n - jbig2dec-devel-0:0.19-2.fc33.i686\n - ghostscript-tools-printing-0:9.53.3-4.fc33.ppc64le\n - polkit-0:0.117-2.fc33.i686\n - libfontenc-devel-0:1.1.3-13.fc33.x86_64\n - dbus-glib-0:0.110-10.fc33.ppc64le\n - geocode-glib-devel-0:3.26.2-2.fc33.armv7hl\n - poppler-glib-devel-0:0.90.0-6.fc33.ppc64le\n - gsl-0:2.6-3.fc33.x86_64\n - libwmf-0:0.2.12-4.fc33.armv7hl\n - suitesparse64_-devel-0:5.4.0-5.fc33.x86_64\n - cairomm-devel-0:1.12.2-4.fc33.aarch64\n - suitesparse64_-devel-0:5.4.0-5.fc33.s390x\n - openblas-openmp-0:0.3.12-1.fc33.armv7hl\n - exiv2-0:0.27.3-4.fc33.armv7hl\n - poppler-cpp-0:0.90.0-6.fc33.aarch64\n - boost-test-0:1.73.0-9.fc33.x86_64\n - boost-examples-0:1.73.0-9.fc33.armv7hl\n - gsound-devel-0:1.0.2-12.fc33.x86_64\n - boost-contract-0:1.73.0-9.fc33.x86_64\n - compat-wxGTK3-gtk2-media-0:3.0.5.1-2.fc33.x86_64\n - cairomm-0:1.12.2-4.fc33.i686\n - libijs-0:0.35-12.fc33.ppc64le\n - boost-doctools-0:1.73.0-9.fc33.armv7hl\n - libijs-devel-0:0.35-12.fc33.ppc64le\n - poppler-cpp-devel-0:0.90.0-6.fc33.x86_64\n - gsl-devel-0:2.6-3.fc33.x86_64\n - flatpak-runtime-config-0:33-1.fc33.s390x\n - flexiblas-blis-openmp64-0:3.0.4-1.fc33.s390x\n - libical-glib-devel-0:3.0.9-1.fc33.s390x\n - gsound-devel-0:1.0.2-12.fc33.i686\n - exiv2-devel-0:0.27.3-4.fc33.armv7hl\n - suitesparse-doc-0:5.4.0-5.fc33.noarch\n - boost-graph-0:1.73.0-9.fc33.x86_64\n - boost-static-0:1.73.0-9.fc33.ppc64le\n - libical-0:3.0.9-1.fc33.x86_64\n - openblas-devel-0:0.3.12-1.fc33.i686\n - exiv2-doc-0:0.27.3-4.fc33.noarch\n - compat-wxGTK3-gtk2-0:3.0.5.1-2.fc33.armv7hl\n - gd-progs-0:2.3.0-3.fc33.s390x\n - poppler-glib-devel-0:0.90.0-6.fc33.i686\n - libical-glib-devel-0:3.0.9-1.fc33.i686\n - ghostscript-0:9.53.3-4.fc33.x86_64\n - startup-notification-devel-0:0.12-20.fc33.i686\n - poppler-qt-devel-0:0.90.0-6.fc33.armv7hl\n - boost-test-0:1.73.0-9.fc33.s390x\n - libpeas-devel-0:1.28.0-1.fc33.x86_64\n - libdazzle-0:3.38.0-1.fc33.ppc64le\n - libijs-devel-0:0.35-12.fc33.s390x\n - protobuf-devel-0:3.12.4-1.fc33.aarch64\n - boost-context-0:1.73.0-9.fc33.aarch64\n - compat-wxGTK3-gtk2-devel-0:3.0.5.1-2.fc33.s390x\n - protobuf-java-util-0:3.12.4-1.fc33.noarch\n - SDL-static-0:1.2.15-45.fc33.x86_64\n - exiv2-0:0.27.3-4.fc33.aarch64\n - boost-filesystem-0:1.73.0-9.fc33.i686\n - google-droid-sans-fonts-0:20200215-8.fc33.noarch\n - openblas-openmp64-0:0.3.12-1.fc33.aarch64\n - flexiblas-netlib-0:3.0.4-1.fc33.ppc64le\n - suitesparse-0:5.4.0-5.fc33.i686\n - libical-devel-0:3.0.9-1.fc33.i686\n - jbig2dec-0:0.19-2.fc33.s390x\n - flexiblas-netlib64-0:3.0.4-1.fc33.s390x\n - boost-stacktrace-0:1.73.0-9.fc33.ppc64le\n - libgdata-0:0.17.13-1.fc33.i686\n - poppler-qt5-devel-0:0.90.0-6.fc33.ppc64le\n - protobuf-lite-0:3.12.4-1.fc33.armv7hl\n - flatpak-rpm-macros-0:33-2.fc33.aarch64\n - boost-coroutine-0:1.73.0-9.fc33.ppc64le\n - evolution-data-server-perl-0:3.38.4-1.fc33.armv7hl\n - boost-system-0:1.73.0-9.fc33.x86_64\n - boost-atomic-0:1.73.0-9.fc33.aarch64\n - flexiblas-openblas-serial-0:3.0.4-1.fc33.aarch64\n - OpenEXR-libs-0:2.3.0-6.fc33.i686\n - protobuf-javadoc-0:3.12.4-1.fc33.noarch\n - gsound-devel-0:1.0.2-12.fc33.ppc64le\n - libpeas-loader-python3-0:1.28.0-1.fc33.x86_64\n - boost-wave-0:1.73.0-9.fc33.aarch64\n - libwmf-0:0.2.12-4.fc33.i686\n - boost-coroutine-0:1.73.0-9.fc33.x86_64\n - libhandy1-devel-0:1.0.3-1.fc33.aarch64\n - wxGTK3-webview-0:3.0.5.1-2.fc33.i686\n - ilmbase-devel-0:2.3.0-5.fc33.s390x\n - boost-chrono-0:1.73.0-9.fc33.s390x\n - ghostscript-x11-0:9.53.3-4.fc33.armv7hl\n - libfontenc-devel-0:1.1.3-13.fc33.i686\n - poppler-glib-0:0.90.0-6.fc33.i686\n - gsl-devel-0:2.6-3.fc33.s390x\n - openblas-openmp-0:0.3.12-1.fc33.i686\n - boost-contract-0:1.73.0-9.fc33.s390x\n - tcl-1:8.6.10-5.fc33.s390x\n - glibmm24-devel-0:2.64.5-3.fc33.s390x\n - glew-0:2.1.0-8.fc33.aarch64\n - boost-container-0:1.73.0-9.fc33.armv7hl\n - exiv2-devel-0:0.27.3-4.fc33.x86_64\n - boost-doc-0:1.73.0-9.fc33.aarch64\n - gnome-online-accounts-0:3.38.0-1.fc33.armv7hl\n - flexiblas-blis-openmp-0:3.0.4-1.fc33.ppc64le\n - flexiblas-devel-0:3.0.4-1.fc33.ppc64le\n - gspell-0:1.8.4-1.fc33.s390x\n - protobuf-0:3.12.4-1.fc33.ppc64le\n - boost-fiber-0:1.73.0-9.fc33.i686\n - urw-base35-z003-fonts-0:20200910-2.fc33.noarch\n - ilmbase-devel-0:2.3.0-5.fc33.armv7hl\n - boost-stacktrace-0:1.73.0-9.fc33.i686\n - tix-devel-1:8.4.3-29.fc33.i686\n - libgweather-devel-0:3.36.1-3.fc33.s390x\n - flexiblas-devel-0:3.0.4-1.fc33.s390x\n - OpenEXR-libs-0:2.3.0-6.fc33.armv7hl\n - poppler-qt5-devel-0:0.90.0-6.fc33.s390x\n - openjpeg2-0:2.3.1-10.fc33.armv7hl\n - evolution-data-server-perl-0:3.38.4-1.fc33.x86_64\n - openjpeg2-devel-0:2.3.1-10.fc33.x86_64\n - libgdata-0:0.17.13-1.fc33.armv7hl\n - openblas-openmp64-0:0.3.12-1.fc33.x86_64\n - boost-doc-0:1.73.0-9.fc33.ppc64le\n - flexiblas-netlib-0:3.0.4-1.fc33.s390x\n - poppler-qt-devel-0:0.90.0-6.fc33.s390x\n - boost-wave-0:1.73.0-9.fc33.armv7hl\n - boost-wave-0:1.73.0-9.fc33.x86_64\n - boost-date-time-0:1.73.0-9.fc33.aarch64\n - libimagequant-devel-0:2.12.6-3.fc33.aarch64\n - exiv2-devel-0:0.27.3-4.fc33.i686\n - geocode-glib-devel-0:3.26.2-2.fc33.x86_64\n - libgweather-devel-0:3.36.1-3.fc33.x86_64\n - tix-1:8.4.3-29.fc33.ppc64le\n - tbb-0:2020.3-2.fc33.armv7hl\n - pangomm-devel-0:2.42.2-1.fc33.i686\n - poppler-qt5-0:0.90.0-6.fc33.ppc64le\n - libphonenumber-0:8.12.11-1.fc33.armv7hl\n - compat-wxGTK3-gtk2-gl-0:3.0.5.1-2.fc33.aarch64\n - flexiblas-hook-profile64-0:3.0.4-1.fc33.ppc64le\n - boost-iostreams-0:1.73.0-9.fc33.s390x\n - suitesparse64_-static-0:5.4.0-5.fc33.aarch64\n - gnome-desktop3-tests-0:3.38.4-1.fc33.x86_64\n - boost-b2-0:1.73.0-9.fc33.x86_64\n - wxGTK3-0:3.0.5.1-2.fc33.s390x\n - libgweather-0:3.36.1-3.fc33.s390x\n - openjpeg2-tools-0:2.3.1-10.fc33.armv7hl\n - boost-thread-0:1.73.0-9.fc33.ppc64le\n - libwmf-devel-0:0.2.12-4.fc33.x86_64\n - tix-devel-1:8.4.3-29.fc33.ppc64le\n - evolution-data-server-0:3.38.4-1.fc33.aarch64\n - compat-wxGTK3-gtk2-0:3.0.5.1-2.fc33.i686\n - glew-0:2.1.0-8.fc33.i686\n - gtksourceview3-0:3.24.11-4.fc33.ppc64le\n - geocode-glib-0:3.26.2-2.fc33.aarch64\n - compat-wxGTK3-gtk2-devel-0:3.0.5.1-2.fc33.aarch64\n - flexiblas-openblas-openmp64-0:3.0.4-1.fc33.x86_64\n - flexiblas-blis-serial-0:3.0.4-1.fc33.aarch64\n - poppler-qt-0:0.90.0-6.fc33.s390x\n - polkit-libs-0:0.117-2.fc33.i686\n - wxBase3-0:3.0.5.1-2.fc33.i686\n - gnome-desktop3-devel-0:3.38.4-1.fc33.aarch64\n - ilmbase-devel-0:2.3.0-5.fc33.x86_64\n - flexiblas-0:3.0.4-1.fc33.i686\n - ghostscript-gtk-0:9.53.3-4.fc33.aarch64\n - tcl-devel-1:8.6.10-5.fc33.x86_64\n - ghostscript-tools-printing-0:9.53.3-4.fc33.x86_64\n - gsl-0:2.6-3.fc33.aarch64\n - atkmm-devel-0:2.28.1-1.fc33.armv7hl\n - adobe-mappings-cmap-0:20171205-9.fc33.noarch\n - libhandy1-0:1.0.3-1.fc33.s390x\n - SDL_image-devel-0:1.2.12-25.fc33.x86_64\n - SDL-static-0:1.2.15-45.fc33.aarch64\n - poppler-glib-devel-0:0.90.0-6.fc33.aarch64\n - exiv2-devel-0:0.27.3-4.fc33.s390x\n - boost-locale-0:1.73.0-9.fc33.ppc64le\n - poppler-glib-doc-0:0.90.0-6.fc33.noarch\n - libmspack-devel-0:0.10.1-0.4.alpha.fc33.armv7hl\n - compat-wxGTK3-gtk2-0:3.0.5.1-2.fc33.ppc64le\n - OpenEXR-0:2.3.0-6.fc33.aarch64\n - gnome-online-accounts-devel-0:3.38.0-1.fc33.armv7hl\n - atkmm-devel-0:2.28.1-1.fc33.i686\n - liboauth-0:1.0.3-15.fc33.ppc64le\n - libwmf-lite-0:0.2.12-4.fc33.s390x\n - glibmm24-0:2.64.5-3.fc33.armv7hl\n - boost-stacktrace-0:1.73.0-9.fc33.s390x\n - libpeas-devel-0:1.28.0-1.fc33.ppc64le\n - google-droid-serif-fonts-0:20200215-8.fc33.noarch\n - gsl-0:2.6-3.fc33.armv7hl\n - poppler-data-0:0.4.9-6.fc33.noarch\n - libical-devel-0:3.0.9-1.fc33.x86_64\n - glibmm24-0:2.64.5-3.fc33.ppc64le\n - libwmf-devel-0:0.2.12-4.fc33.s390x\n - protobuf-compiler-0:3.12.4-1.fc33.s390x\n - libical-0:3.0.9-1.fc33.i686\n - boost-context-0:1.73.0-9.fc33.i686\n - flexiblas-blis-threads-0:3.0.4-1.fc33.x86_64\n - libsigc++20-0:2.10.6-1.fc33.armv7hl\n - boost-iostreams-0:1.73.0-9.fc33.x86_64\n - evolution-data-server-tests-0:3.38.4-1.fc33.aarch64\n - ghostscript-0:9.53.3-4.fc33.ppc64le\n - xorg-x11-font-utils-1:7.5-47.fc33.x86_64\n - jbig2dec-libs-0:0.19-2.fc33.armv7hl\n - flatpak-rpm-macros-0:33-2.fc33.s390x\n - ghostscript-tools-fonts-0:9.53.3-4.fc33.x86_64\n - gnome-desktop3-devel-0:3.38.4-1.fc33.armv7hl\n - boost-random-0:1.73.0-9.fc33.aarch64\n - poppler-qt5-devel-0:0.90.0-6.fc33.x86_64\n - urw-base35-nimbus-mono-ps-fonts-0:20200910-2.fc33.noarch\n - libimagequant-devel-0:2.12.6-3.fc33.ppc64le\n - libwmf-devel-0:0.2.12-4.fc33.ppc64le\n - flexiblas-atlas-0:3.0.4-1.fc33.aarch64\n - libfontenc-devel-0:1.1.3-13.fc33.aarch64\n - tcl-devel-1:8.6.10-5.fc33.i686\n - poppler-glib-devel-0:0.90.0-6.fc33.s390x\n - openblas-openmp-0:0.3.12-1.fc33.x86_64\n - libgweather-0:3.36.1-3.fc33.x86_64\n - flexiblas-blis-serial64-0:3.0.4-1.fc33.x86_64\n - libpeas-devel-0:1.28.0-1.fc33.s390x\n - libgdata-0:0.17.13-1.fc33.ppc64le\n - openblas-devel-0:0.3.12-1.fc33.aarch64\n - glibmm24-0:2.64.5-3.fc33.s390x\n - tix-1:8.4.3-29.fc33.armv7hl\n - boost-contract-0:1.73.0-9.fc33.i686\n - urw-base35-bookman-fonts-0:20200910-2.fc33.noarch\n - gnome-desktop3-0:3.38.4-1.fc33.i686\n - ghostscript-x11-0:9.53.3-4.fc33.x86_64\n - exiv2-libs-0:0.27.3-4.fc33.aarch64\n - pangomm-0:2.42.2-1.fc33.armv7hl\n - boost-doctools-0:1.73.0-9.fc33.x86_64\n - boost-stacktrace-0:1.73.0-9.fc33.aarch64\n - tix-doc-1:8.4.3-29.fc33.ppc64le\n - wxGTK3-webview-0:3.0.5.1-2.fc33.x86_64\n - exiv2-0:0.27.3-4.fc33.x86_64\n - tbb-0:2020.3-2.fc33.ppc64le\n - boost-serialization-0:1.73.0-9.fc33.armv7hl\n - protobuf-lite-0:3.12.4-1.fc33.aarch64\n - libpaper-devel-0:1.1.28-1.fc33.s390x\n - wxBase3-devel-0:3.0.5.1-2.fc33.x86_64\n - openblas-0:0.3.12-1.fc33.s390x\n - openblas-devel-0:0.3.12-1.fc33.ppc64le\n - boost-numpy3-0:1.73.0-9.fc33.armv7hl\n - gd-devel-0:2.3.0-3.fc33.aarch64\n - flexiblas-netlib-0:3.0.4-1.fc33.armv7hl\n - tix-doc-1:8.4.3-29.fc33.aarch64\n - openblas-threads64-0:0.3.12-1.fc33.aarch64\n - libical-0:3.0.9-1.fc33.s390x\n - ghostscript-core-0:9.53.3-4.fc33.i686\n - glibmm24-devel-0:2.64.5-3.fc33.armv7hl\n - ghostscript-tools-printing-0:9.53.3-4.fc33.i686\n - tcl-doc-1:8.6.10-5.fc33.noarch\n - boost-doctools-0:1.73.0-9.fc33.i686\n - boost-fiber-0:1.73.0-9.fc33.aarch64\n - wxGTK3-docs-0:3.0.5.1-2.fc33.noarch\n - flexiblas-openblas-openmp-0:3.0.4-1.fc33.ppc64le\n - boost-system-0:1.73.0-9.fc33.s390x\n - ilmbase-devel-0:2.3.0-5.fc33.aarch64\n - boost-regex-0:1.73.0-9.fc33.s390x\n - gtksourceview3-tests-0:3.24.11-4.fc33.armv7hl\n - OpenEXR-libs-0:2.3.0-6.fc33.aarch64\n - poppler-qt-0:0.90.0-6.fc33.x86_64\n - exiv2-libs-0:0.27.3-4.fc33.i686\n - openblas-static-0:0.3.12-1.fc33.ppc64le\n - protobuf-lite-static-0:3.12.4-1.fc33.s390x\n - libijs-0:0.35-12.fc33.aarch64\n - boost-log-0:1.73.0-9.fc33.i686\n - exiv2-0:0.27.3-4.fc33.ppc64le\n - openblas-openmp64-0:0.3.12-1.fc33.ppc64le\n - libgs-devel-0:9.53.3-4.fc33.aarch64\n - ghostscript-tools-dvipdf-0:9.53.3-4.fc33.s390x\n - libpeas-0:1.28.0-1.fc33.i686\n - openjpeg2-devel-0:2.3.1-10.fc33.s390x\n - boost-devel-0:1.73.0-9.fc33.i686\n - gnome-desktop3-0:3.38.4-1.fc33.ppc64le\n - tbb-doc-0:2020.3-2.fc33.s390x\n - python3-protobuf-0:3.12.4-1.fc33.noarch\n - flatpak-rpm-macros-0:33-2.fc33.ppc64le\n - protobuf-lite-static-0:3.12.4-1.fc33.armv7hl\n - openblas-openmp-0:0.3.12-1.fc33.ppc64le\n - boost-devel-0:1.73.0-9.fc33.ppc64le\n - suitesparse-0:5.4.0-5.fc33.x86_64\n - startup-notification-0:0.12-20.fc33.s390x\n - libpeas-loader-python3-0:1.28.0-1.fc33.aarch64\n - libpeas-loader-python3-0:1.28.0-1.fc33.s390x\n - libphonenumber-0:8.12.11-1.fc33.s390x\n - libical-devel-0:3.0.9-1.fc33.ppc64le\n - OpenEXR-devel-0:2.3.0-6.fc33.ppc64le\n - SDL_image-0:1.2.12-25.fc33.armv7hl\n - tbb-doc-0:2020.3-2.fc33.i686\n - jbig2dec-devel-0:0.19-2.fc33.x86_64\n - poppler-utils-0:0.90.0-6.fc33.x86_64\n - pangomm-devel-0:2.42.2-1.fc33.s390x\n - flexiblas-devel-0:3.0.4-1.fc33.aarch64\n - libGLEW-0:2.1.0-8.fc33.s390x\n - wxGTK3-gl-0:3.0.5.1-2.fc33.ppc64le\n - liboauth-devel-0:1.0.3-15.fc33.x86_64\n - exiv2-libs-0:0.27.3-4.fc33.armv7hl\n - compat-wxGTK3-gtk2-0:3.0.5.1-2.fc33.x86_64\n - pangomm-devel-0:2.42.2-1.fc33.aarch64\n - python2.7-0:2.7.18-8.fc33.ppc64le\n - evolution-data-server-tests-0:3.38.4-1.fc33.x86_64\n - SDL-static-0:1.2.15-45.fc33.s390x\n - evolution-data-server-tests-0:3.38.4-1.fc33.armv7hl\n - protobuf-lite-0:3.12.4-1.fc33.s390x\n - wxGTK3-gl-0:3.0.5.1-2.fc33.x86_64\n - libraqm-devel-0:0.7.0-6.fc33.ppc64le\n - flexiblas-openblas-threads64-0:3.0.4-1.fc33.s390x\n - exiv2-libs-0:0.27.3-4.fc33.s390x\n - protobuf-static-0:3.12.4-1.fc33.x86_64\n - flexiblas-hook-profile-0:3.0.4-1.fc33.s390x\n - libpaper-0:1.1.28-1.fc33.s390x\n - libgweather-devel-0:3.36.1-3.fc33.i686\n - boost-python3-0:1.73.0-9.fc33.aarch64\n - wxGTK3-devel-0:3.0.5.1-2.fc33.armv7hl\n - flexiblas-hook-profile64-0:3.0.4-1.fc33.x86_64\n - openjpeg2-devel-docs-0:2.3.1-10.fc33.noarch\n - suitesparse64-0:5.4.0-5.fc33.aarch64\n - gnome-desktop3-devel-0:3.38.4-1.fc33.s390x\n - libphonenumber-devel-0:8.12.11-1.fc33.i686\n - poppler-qt-devel-0:0.90.0-6.fc33.x86_64\n - flexiblas-blis-serial-0:3.0.4-1.fc33.s390x\n - jbig2dec-0:0.19-2.fc33.x86_64\n - geocode-glib-0:3.26.2-2.fc33.armv7hl\n - protobuf-devel-0:3.12.4-1.fc33.armv7hl\n - libidn-devel-0:1.36-1.fc33.x86_64\n - flexiblas-blis-serial-0:3.0.4-1.fc33.x86_64\n - libsigc++20-devel-0:2.10.6-1.fc33.x86_64\n - protobuf-lite-0:3.12.4-1.fc33.x86_64\n - gnome-online-accounts-devel-0:3.38.0-1.fc33.s390x\n - boost-coroutine-0:1.73.0-9.fc33.aarch64\n - gtksourceview3-0:3.24.11-4.fc33.aarch64\n - gtkmm30-devel-0:3.24.3-1.fc33.ppc64le\n - openblas-devel-0:0.3.12-1.fc33.armv7hl\n - boost-thread-0:1.73.0-9.fc33.s390x\n - tbb-devel-0:2020.3-2.fc33.armv7hl\n - protobuf-lite-devel-0:3.12.4-1.fc33.s390x\n - OpenEXR-0:2.3.0-6.fc33.ppc64le\n - libgdata-devel-0:0.17.13-1.fc33.ppc64le\n - libraqm-0:0.7.0-6.fc33.i686\n - boost-container-0:1.73.0-9.fc33.aarch64\n - gsl-0:2.6-3.fc33.s390x\n - boost-numpy3-0:1.73.0-9.fc33.i686\n - boost-0:1.73.0-9.fc33.aarch64\n - openblas-static-0:0.3.12-1.fc33.armv7hl\n - gsound-0:1.0.2-12.fc33.armv7hl\n - SDL_image-devel-0:1.2.12-25.fc33.armv7hl\n - dbus-glib-devel-0:0.110-10.fc33.armv7hl\n - flexiblas-openblas-threads-0:3.0.4-1.fc33.ppc64le\n - suitesparse64-static-0:5.4.0-5.fc33.s390x\n - SDL-static-0:1.2.15-45.fc33.i686\n - tbb-0:2020.3-2.fc33.x86_64\n - wxBase3-0:3.0.5.1-2.fc33.armv7hl\n - flexiblas-blis-openmp64-0:3.0.4-1.fc33.x86_64\n - libijs-devel-0:0.35-12.fc33.i686\n - wxGTK3-gl-0:3.0.5.1-2.fc33.i686\n - openblas-serial64-0:0.3.12-1.fc33.aarch64\n - adobe-mappings-pdf-0:20180407-7.fc33.noarch\n - boost-serialization-0:1.73.0-9.fc33.x86_64\n - libpeas-devel-0:1.28.0-1.fc33.aarch64\n - suitesparse-devel-0:5.4.0-5.fc33.aarch64\n - compat-wxGTK3-gtk2-0:3.0.5.1-2.fc33.aarch64\n - boost-locale-0:1.73.0-9.fc33.i686\n - boost-log-0:1.73.0-9.fc33.aarch64\n - boost-regex-0:1.73.0-9.fc33.i686\n - suitesparse64_-devel-0:5.4.0-5.fc33.aarch64\n - geocode-glib-0:3.26.2-2.fc33.x86_64\n - cairomm-0:1.12.2-4.fc33.aarch64\n - poppler-glib-0:0.90.0-6.fc33.s390x\n - boost-doc-0:1.73.0-9.fc33.i686\n - dbus-glib-devel-0:0.110-10.fc33.x86_64\n - libphonenumber-0:8.12.11-1.fc33.ppc64le\n - urw-base35-fonts-0:20200910-2.fc33.noarch\n - wxBase3-devel-0:3.0.5.1-2.fc33.armv7hl\n - flexiblas-blis-threads-0:3.0.4-1.fc33.s390x\n - evolution-data-server-devel-0:3.38.4-1.fc33.i686\n - boost-0:1.73.0-9.fc33.i686\n - libraqm-devel-0:0.7.0-6.fc33.s390x\n - openblas-threads64-0:0.3.12-1.fc33.x86_64\n - libidn-java-0:1.36-1.fc33.noarch\n - ghostscript-tools-fonts-0:9.53.3-4.fc33.aarch64\n - boost-container-0:1.73.0-9.fc33.s390x\n - urw-base35-nimbus-sans-fonts-0:20200910-2.fc33.noarch\n - libraqm-0:0.7.0-6.fc33.ppc64le\n - boost-atomic-0:1.73.0-9.fc33.x86_64\n - wxGTK3-devel-0:3.0.5.1-2.fc33.i686\n - dbus-glib-0:0.110-10.fc33.x86_64\n - libwmf-lite-0:0.2.12-4.fc33.i686\n - wxGTK3-devel-0:3.0.5.1-2.fc33.x86_64\n - glew-devel-0:2.1.0-8.fc33.armv7hl\n - evolution-data-server-tests-0:3.38.4-1.fc33.i686\n - libimagequant-devel-0:2.12.6-3.fc33.i686\n - tk-devel-1:8.6.10-5.fc33.s390x\n - flexiblas-hook-profile64-0:3.0.4-1.fc33.s390x\n - tbb-devel-0:2020.3-2.fc33.s390x\n - wxGTK3-devel-0:3.0.5.1-2.fc33.s390x\n - exiv2-libs-0:0.27.3-4.fc33.x86_64\n - tix-1:8.4.3-29.fc33.i686\n - flexiblas-blis-serial-0:3.0.4-1.fc33.i686\n - libwmf-lite-0:0.2.12-4.fc33.ppc64le\n - openblas-devel-0:0.3.12-1.fc33.s390x\n - libpeas-loader-python3-0:1.28.0-1.fc33.armv7hl\n - gspell-devel-0:1.8.4-1.fc33.x86_64\n - wxGTK3-i18n-0:3.0.5.1-2.fc33.noarch\n - protobuf-lite-static-0:3.12.4-1.fc33.aarch64\n - tbb-doc-0:2020.3-2.fc33.x86_64\n - tk-1:8.6.10-5.fc33.aarch64\n - protobuf-compiler-0:3.12.4-1.fc33.armv7hl\n - openblas-serial-0:0.3.12-1.fc33.x86_64\n - gd-progs-0:2.3.0-3.fc33.ppc64le\n - protobuf-devel-0:3.12.4-1.fc33.s390x\n - glew-devel-0:2.1.0-8.fc33.aarch64\n - gtkmm30-0:3.24.3-1.fc33.armv7hl\n - wxGTK3-webview-0:3.0.5.1-2.fc33.armv7hl\n - gtksourceview3-devel-0:3.24.11-4.fc33.armv7hl\n - flatpak-rpm-macros-0:33-2.fc33.x86_64\n - boost-timer-0:1.73.0-9.fc33.x86_64\n - poppler-devel-0:0.90.0-6.fc33.aarch64\n - boost-stacktrace-0:1.73.0-9.fc33.armv7hl\n - boost-chrono-0:1.73.0-9.fc33.ppc64le\n - gtksourceview3-0:3.24.11-4.fc33.s390x\n - polkit-devel-0:0.117-2.fc33.armv7hl\n - boost-system-0:1.73.0-9.fc33.armv7hl\n - boost-random-0:1.73.0-9.fc33.ppc64le\n - openblas-threads64-0:0.3.12-1.fc33.s390x\n - libGLEW-0:2.1.0-8.fc33.i686\n - libraqm-docs-0:0.7.0-6.fc33.noarch\n - flatpak-runtime-config-0:33-1.fc33.armv7hl\n - boost-type_erasure-0:1.73.0-9.fc33.s390x\n - libimagequant-devel-0:2.12.6-3.fc33.s390x\n - libical-glib-0:3.0.9-1.fc33.ppc64le\n - openblas-serial64_-0:0.3.12-1.fc33.ppc64le\n - gspell-devel-0:1.8.4-1.fc33.armv7hl\n - openblas-threads-0:0.3.12-1.fc33.armv7hl\n - openblas-serial64-0:0.3.12-1.fc33.ppc64le\n - libical-glib-devel-0:3.0.9-1.fc33.armv7hl\n - poppler-utils-0:0.90.0-6.fc33.aarch64\n - suitesparse64-0:5.4.0-5.fc33.s390x\n - polkit-0:0.117-2.fc33.s390x\n - compat-wxGTK3-gtk2-media-0:3.0.5.1-2.fc33.ppc64le\n - libraqm-devel-0:0.7.0-6.fc33.i686\n - boost-fiber-0:1.73.0-9.fc33.ppc64le\n - suitesparse-devel-0:5.4.0-5.fc33.i686\n - gtkmm30-0:3.24.3-1.fc33.s390x\n - boost-b2-0:1.73.0-9.fc33.armv7hl\n - libmspack-devel-0:0.10.1-0.4.alpha.fc33.i686\n - poppler-devel-0:0.90.0-6.fc33.x86_64\n - gtksourceview3-devel-0:3.24.11-4.fc33.x86_64\n - boost-timer-0:1.73.0-9.fc33.s390x\n - gtkmm30-devel-0:3.24.3-1.fc33.i686\n - openblas-static-0:0.3.12-1.fc33.aarch64\n - libphonenumber-0:8.12.11-1.fc33.x86_64\n - libidn-javadoc-0:1.36-1.fc33.noarch\n - ghostscript-gtk-0:9.53.3-4.fc33.ppc64le\n - ghostscript-tools-dvipdf-0:9.53.3-4.fc33.armv7hl\n - poppler-devel-0:0.90.0-6.fc33.s390x\n - python3-tbb-0:2020.3-2.fc33.s390x\n - libidn-0:1.36-1.fc33.aarch64\n - dbus-glib-0:0.110-10.fc33.aarch64\n - libidn-0:1.36-1.fc33.i686\n - python2.7-0:2.7.18-8.fc33.aarch64\n - openblas-serial64_-0:0.3.12-1.fc33.aarch64\n - wxGTK3-media-0:3.0.5.1-2.fc33.ppc64le\n - flexiblas-openblas-serial-0:3.0.4-1.fc33.x86_64\n - gd-progs-0:2.3.0-3.fc33.armv7hl\n - gsl-devel-0:2.6-3.fc33.ppc64le\n - poppler-cpp-devel-0:0.90.0-6.fc33.s390x\n - suitesparse64_-devel-0:5.4.0-5.fc33.ppc64le\n - evolution-data-server-langpacks-0:3.38.4-1.fc33.noarch\n - jbig2dec-libs-0:0.19-2.fc33.x86_64\n - protobuf-lite-devel-0:3.12.4-1.fc33.x86_64\n - libsigc++20-0:2.10.6-1.fc33.i686\n - protobuf-vim-0:3.12.4-1.fc33.noarch\n - tk-1:8.6.10-5.fc33.ppc64le\n - poppler-0:0.90.0-6.fc33.armv7hl\n - libimagequant-0:2.12.6-3.fc33.aarch64\n - boost-regex-0:1.73.0-9.fc33.x86_64\n - libraqm-devel-0:0.7.0-6.fc33.x86_64\n - boost-timer-0:1.73.0-9.fc33.armv7hl\n - libfontenc-0:1.1.3-13.fc33.aarch64\n - tcl-1:8.6.10-5.fc33.armv7hl\n - cairomm-0:1.12.2-4.fc33.armv7hl\n - boost-doctools-0:1.73.0-9.fc33.ppc64le\n - protobuf-lite-static-0:3.12.4-1.fc33.ppc64le\n - poppler-cpp-devel-0:0.90.0-6.fc33.armv7hl\n - cairomm-devel-0:1.12.2-4.fc33.i686\n - compat-wxGTK3-gtk2-devel-0:3.0.5.1-2.fc33.ppc64le\n - gtksourceview3-devel-0:3.24.11-4.fc33.i686\n - boost-system-0:1.73.0-9.fc33.i686\n - flexiblas-openblas-serial64-0:3.0.4-1.fc33.s390x\n - libical-glib-0:3.0.9-1.fc33.s390x\n - boost-serialization-0:1.73.0-9.fc33.i686\n - gnome-desktop3-tests-0:3.38.4-1.fc33.s390x\n - glew-devel-0:2.1.0-8.fc33.s390x\n - flexiblas-openblas-threads64-0:3.0.4-1.fc33.x86_64\n - gnome-desktop3-tests-0:3.38.4-1.fc33.ppc64le\n - suitesparse-devel-0:5.4.0-5.fc33.armv7hl\n - gspell-devel-0:1.8.4-1.fc33.i686\n - flexiblas-blis-openmp-0:3.0.4-1.fc33.s390x\n - tix-doc-1:8.4.3-29.fc33.s390x\n - libfontenc-0:1.1.3-13.fc33.i686\n - exiv2-0:0.27.3-4.fc33.s390x\n - SDL_image-0:1.2.12-25.fc33.s390x\n - SDL-0:1.2.15-45.fc33.s390x\n - polkit-docs-0:0.117-2.fc33.noarch\n - libmspack-devel-0:0.10.1-0.4.alpha.fc33.s390x\n - gtkmm30-0:3.24.3-1.fc33.i686\n - poppler-qt5-0:0.90.0-6.fc33.aarch64\n - libdazzle-0:3.38.0-1.fc33.x86_64\n - boost-chrono-0:1.73.0-9.fc33.armv7hl\n - boost-math-0:1.73.0-9.fc33.aarch64\n - ghostscript-0:9.53.3-4.fc33.s390x\n - flexiblas-openblas-serial-0:3.0.4-1.fc33.armv7hl\n - gspell-devel-0:1.8.4-1.fc33.aarch64\n - poppler-qt-0:0.90.0-6.fc33.armv7hl\n - libdazzle-0:3.38.0-1.fc33.armv7hl\n - libhandy1-devel-0:1.0.3-1.fc33.i686\n - poppler-qt5-devel-0:0.90.0-6.fc33.armv7hl\n - gspell-doc-0:1.8.4-1.fc33.noarch\n - flexiblas-blis-openmp64-0:3.0.4-1.fc33.ppc64le\n - liboauth-0:1.0.3-15.fc33.x86_64\n - openjpeg2-0:2.3.1-10.fc33.s390x\n - libgs-0:9.53.3-4.fc33.armv7hl\n - protobuf-lite-devel-0:3.12.4-1.fc33.ppc64le\n - ghostscript-tools-dvipdf-0:9.53.3-4.fc33.x86_64\n - libidn-0:1.36-1.fc33.x86_64\n - liboauth-0:1.0.3-15.fc33.i686\n - libsigc++20-devel-0:2.10.6-1.fc33.s390x\n - boost-type_erasure-0:1.73.0-9.fc33.i686\n - libdazzle-devel-0:3.38.0-1.fc33.x86_64\n - gtksourceview3-devel-0:3.24.11-4.fc33.ppc64le\n - startup-notification-0:0.12-20.fc33.aarch64\n - openjpeg2-0:2.3.1-10.fc33.i686\n - libraqm-0:0.7.0-6.fc33.aarch64\n - libsigc++20-0:2.10.6-1.fc33.aarch64\n - protobuf-static-0:3.12.4-1.fc33.i686\n - boost-filesystem-0:1.73.0-9.fc33.ppc64le\n - cairomm-0:1.12.2-4.fc33.ppc64le\n - atkmm-devel-0:2.28.1-1.fc33.x86_64\n - libfontenc-0:1.1.3-13.fc33.armv7hl\n - boost-nowide-0:1.73.0-9.fc33.i686\n - openblas-threads64-0:0.3.12-1.fc33.ppc64le\n - pangomm-devel-0:2.42.2-1.fc33.x86_64\n - libwmf-lite-0:0.2.12-4.fc33.aarch64\n - atkmm-devel-0:2.28.1-1.fc33.ppc64le\n - openblas-serial64_-0:0.3.12-1.fc33.s390x\n - atkmm-0:2.28.1-1.fc33.i686\n - libidn-0:1.36-1.fc33.s390x\n - poppler-0:0.90.0-6.fc33.s390x\n - boost-date-time-0:1.73.0-9.fc33.ppc64le\n - python3-tbb-0:2020.3-2.fc33.x86_64\n - boost-locale-0:1.73.0-9.fc33.aarch64\n - flexiblas-atlas-0:3.0.4-1.fc33.armv7hl\n - liboauth-devel-0:1.0.3-15.fc33.i686\n - libgs-0:9.53.3-4.fc33.x86_64\n - suitesparse64_-0:5.4.0-5.fc33.s390x\n - polkit-libs-0:0.117-2.fc33.x86_64\n - openblas-threads-0:0.3.12-1.fc33.aarch64\n - boost-coroutine-0:1.73.0-9.fc33.armv7hl\n - tix-1:8.4.3-29.fc33.s390x\n - libphonenumber-0:8.12.11-1.fc33.aarch64\n - gsound-0:1.0.2-12.fc33.aarch64\n - exiv2-0:0.27.3-4.fc33.i686\n - boost-fiber-0:1.73.0-9.fc33.x86_64\n - openjpeg2-0:2.3.1-10.fc33.ppc64le\n - xorg-x11-font-utils-1:7.5-47.fc33.ppc64le\n - boost-regex-0:1.73.0-9.fc33.armv7hl\n - startup-notification-0:0.12-20.fc33.armv7hl\n - compat-wxGTK3-gtk2-gl-0:3.0.5.1-2.fc33.i686\n - libical-glib-0:3.0.9-1.fc33.aarch64\n - poppler-glib-0:0.90.0-6.fc33.armv7hl\n - flexiblas-openblas-serial64-0:3.0.4-1.fc33.aarch64\n - poppler-utils-0:0.90.0-6.fc33.ppc64le\n - poppler-qt-devel-0:0.90.0-6.fc33.aarch64\n - boost-wave-0:1.73.0-9.fc33.s390x\n - libmspack-0:0.10.1-0.4.alpha.fc33.s390x\n - tbb-devel-0:2020.3-2.fc33.i686\n - boost-examples-0:1.73.0-9.fc33.i686\n - evolution-data-server-0:3.38.4-1.fc33.x86_64\n - openblas-serial64-0:0.3.12-1.fc33.s390x\n - libical-glib-0:3.0.9-1.fc33.x86_64\n - boost-doc-0:1.73.0-9.fc33.x86_64\n - pangomm-devel-0:2.42.2-1.fc33.ppc64le\n - poppler-devel-0:0.90.0-6.fc33.i686\n - SDL-devel-0:1.2.15-45.fc33.aarch64\n - flexiblas-netlib-0:3.0.4-1.fc33.i686\n - libGLEW-0:2.1.0-8.fc33.ppc64le\n - ghostscript-gtk-0:9.53.3-4.fc33.i686\n - ghostscript-gtk-0:9.53.3-4.fc33.armv7hl\n - suitesparse-static-0:5.4.0-5.fc33.s390x\n - liboauth-devel-0:1.0.3-15.fc33.aarch64\n - wxGTK3-webview-0:3.0.5.1-2.fc33.aarch64\n - boost-static-0:1.73.0-9.fc33.s390x\n - boost-type_erasure-0:1.73.0-9.fc33.aarch64\n - libmspack-devel-0:0.10.1-0.4.alpha.fc33.ppc64le\n - openblas-threads-0:0.3.12-1.fc33.s390x\n - libical-devel-0:3.0.9-1.fc33.aarch64\n - libfontenc-devel-0:1.1.3-13.fc33.ppc64le\n - poppler-devel-0:0.90.0-6.fc33.armv7hl\n - poppler-0:0.90.0-6.fc33.x86_64\n - evolution-data-server-0:3.38.4-1.fc33.armv7hl\n - libfontenc-0:1.1.3-13.fc33.s390x\n - flexiblas-blis-openmp-0:3.0.4-1.fc33.aarch64\n - flexiblas-openblas-threads-0:3.0.4-1.fc33.s390x\n - libpeas-gtk-0:1.28.0-1.fc33.x86_64\n - gnome-desktop3-tests-0:3.38.4-1.fc33.armv7hl\n - urw-base35-standard-symbols-ps-fonts-0:20200910-2.fc33.noarch\n - cairomm-0:1.12.2-4.fc33.x86_64\n - libpeas-loader-python3-0:1.28.0-1.fc33.i686\n - libpaper-devel-0:1.1.28-1.fc33.armv7hl\n - libijs-0:0.35-12.fc33.s390x\n - ghostscript-0:9.53.3-4.fc33.armv7hl\n - libpaper-devel-0:1.1.28-1.fc33.x86_64\n - boost-program-options-0:1.73.0-9.fc33.armv7hl\n - compat-wxGTK3-gtk2-gl-0:3.0.5.1-2.fc33.armv7hl\n - boost-examples-0:1.73.0-9.fc33.ppc64le\n - boost-b2-0:1.73.0-9.fc33.aarch64\n - boost-serialization-0:1.73.0-9.fc33.s390x\n - boost-system-0:1.73.0-9.fc33.aarch64\n - urw-base35-fonts-devel-0:20200910-2.fc33.noarch\n - libgdata-0:0.17.13-1.fc33.aarch64\n - boost-context-0:1.73.0-9.fc33.ppc64le\n - protobuf-static-0:3.12.4-1.fc33.armv7hl\n - protobuf-compiler-0:3.12.4-1.fc33.ppc64le\n - openblas-0:0.3.12-1.fc33.i686\n - protobuf-lite-static-0:3.12.4-1.fc33.i686\n - dbus-glib-devel-0:0.110-10.fc33.aarch64\n - tk-devel-1:8.6.10-5.fc33.aarch64\n - libfontenc-0:1.1.3-13.fc33.ppc64le\n - xorg-x11-font-utils-1:7.5-47.fc33.aarch64\n - flexiblas-devel-0:3.0.4-1.fc33.x86_64\n - protobuf-parent-0:3.12.4-1.fc33.noarch\n - adobe-mappings-cmap-devel-0:20171205-9.fc33.noarch\n - tix-1:8.4.3-29.fc33.aarch64\n - pangomm-0:2.42.2-1.fc33.aarch64\n - SDL_image-devel-0:1.2.12-25.fc33.i686\n - gtkmm30-0:3.24.3-1.fc33.aarch64\n - ghostscript-tools-printing-0:9.53.3-4.fc33.s390x\n - boost-python3-0:1.73.0-9.fc33.armv7hl\n - libpeas-gtk-0:1.28.0-1.fc33.aarch64\n - libical-devel-0:3.0.9-1.fc33.s390x\n - ghostscript-core-0:9.53.3-4.fc33.armv7hl\n - jbig2dec-devel-0:0.19-2.fc33.s390x\n - gnome-online-accounts-devel-0:3.38.0-1.fc33.aarch64\n - poppler-utils-0:0.90.0-6.fc33.i686\n - libgweather-0:3.36.1-3.fc33.armv7hl\n - boost-static-0:1.73.0-9.fc33.x86_64\n - poppler-cpp-0:0.90.0-6.fc33.i686\n - libgs-devel-0:9.53.3-4.fc33.armv7hl\n - poppler-data-devel-0:0.4.9-6.fc33.noarch\n - gnome-desktop3-tests-0:3.38.4-1.fc33.aarch64\n - boost-devel-0:1.73.0-9.fc33.aarch64\n - flexiblas-blis-serial64-0:3.0.4-1.fc33.aarch64\n - urw-base35-d050000l-fonts-0:20200910-2.fc33.noarch\n - libwmf-lite-0:0.2.12-4.fc33.armv7hl\n - gtkmm30-0:3.24.3-1.fc33.ppc64le\n - protobuf-compiler-0:3.12.4-1.fc33.i686\n - libijs-devel-0:0.35-12.fc33.armv7hl\n - flexiblas-hook-profile-0:3.0.4-1.fc33.x86_64\n - flexiblas-0:3.0.4-1.fc33.armv7hl\n - gspell-0:1.8.4-1.fc33.armv7hl\n - python2.7-0:2.7.18-8.fc33.s390x\n - libijs-0:0.35-12.fc33.x86_64\n - ilmbase-devel-0:2.3.0-5.fc33.ppc64le\n - tbb-doc-0:2020.3-2.fc33.armv7hl\n - libgs-0:9.53.3-4.fc33.i686\n - gspell-devel-0:1.8.4-1.fc33.ppc64le\n - gsound-0:1.0.2-12.fc33.s390x\n - boost-coroutine-0:1.73.0-9.fc33.i686\n - boost-context-0:1.73.0-9.fc33.x86_64\n - boost-log-0:1.73.0-9.fc33.ppc64le\n - cairomm-0:1.12.2-4.fc33.s390x\n - wxGTK3-webview-0:3.0.5.1-2.fc33.s390x\n - boost-numpy3-0:1.73.0-9.fc33.x86_64\n - liboauth-0:1.0.3-15.fc33.armv7hl\n - protobuf-static-0:3.12.4-1.fc33.ppc64le\n - glibmm24-doc-0:2.64.5-3.fc33.noarch\n - boost-contract-0:1.73.0-9.fc33.armv7hl\n - openblas-serial-0:0.3.12-1.fc33.s390x\n - libijs-devel-0:0.35-12.fc33.aarch64\n - suitesparse64-static-0:5.4.0-5.fc33.ppc64le\n - flexiblas-blis-serial64-0:3.0.4-1.fc33.s390x\n - libpeas-gtk-0:1.28.0-1.fc33.ppc64le\n - poppler-cpp-0:0.90.0-6.fc33.ppc64le\n - libgdata-devel-0:0.17.13-1.fc33.s390x\n - glibmm24-0:2.64.5-3.fc33.i686\n - flexiblas-openblas-serial-0:3.0.4-1.fc33.i686\n - boost-serialization-0:1.73.0-9.fc33.aarch64\n - boost-doctools-0:1.73.0-9.fc33.aarch64\n - flexiblas-openblas-threads64-0:3.0.4-1.fc33.ppc64le\n - compat-wxGTK3-gtk2-gl-0:3.0.5.1-2.fc33.s390x\n - protobuf-static-0:3.12.4-1.fc33.aarch64\n - flexiblas-openblas-threads64-0:3.0.4-1.fc33.aarch64\n - poppler-qt-devel-0:0.90.0-6.fc33.ppc64le\n - SDL-static-0:1.2.15-45.fc33.ppc64le\n - libidn-devel-0:1.36-1.fc33.aarch64\n - tcl-devel-1:8.6.10-5.fc33.armv7hl\n - boost-math-0:1.73.0-9.fc33.s390x\n - libsigc++20-devel-0:2.10.6-1.fc33.aarch64\n - boost-graph-0:1.73.0-9.fc33.i686\n - boost-b2-0:1.73.0-9.fc33.ppc64le\n - boost-locale-0:1.73.0-9.fc33.s390x\n - flexiblas-hook-profile-0:3.0.4-1.fc33.ppc64le\n - openjpeg2-0:2.3.1-10.fc33.x86_64\n - wxGTK3-0:3.0.5.1-2.fc33.armv7hl\n - atkmm-devel-0:2.28.1-1.fc33.aarch64\n - protobuf-0:3.12.4-1.fc33.x86_64\n - protobuf-lite-0:3.12.4-1.fc33.ppc64le\n - flexiblas-openblas-openmp-0:3.0.4-1.fc33.aarch64\n - tbb-devel-0:2020.3-2.fc33.aarch64\n - evolution-data-server-perl-0:3.38.4-1.fc33.aarch64\n - google-droid-fonts-all-0:20200215-8.fc33.noarch\n - libijs-doc-0:0.35-12.fc33.noarch\n - pangomm-0:2.42.2-1.fc33.i686\n - libpeas-devel-0:1.28.0-1.fc33.armv7hl\n - libGLEW-0:2.1.0-8.fc33.armv7hl\n - openjpeg2-devel-0:2.3.1-10.fc33.ppc64le\n - libphonenumber-0:8.12.11-1.fc33.i686\n - flexiblas-blis-serial-0:3.0.4-1.fc33.armv7hl\n - libimagequant-0:2.12.6-3.fc33.i686\n - boost-thread-0:1.73.0-9.fc33.armv7hl\n - libpeas-gtk-0:1.28.0-1.fc33.i686\n - libmspack-0:0.10.1-0.4.alpha.fc33.armv7hl\n - libgweather-0:3.36.1-3.fc33.i686\n - poppler-glib-0:0.90.0-6.fc33.aarch64\n - protobuf-lite-devel-0:3.12.4-1.fc33.aarch64\n - OpenEXR-doc-0:2.3.0-6.fc33.ppc64le\n - tcl-1:8.6.10-5.fc33.i686\n - libical-0:3.0.9-1.fc33.armv7hl\n - SDL-devel-0:1.2.15-45.fc33.armv7hl\n - SDL_image-devel-0:1.2.12-25.fc33.ppc64le\n - OpenEXR-libs-0:2.3.0-6.fc33.ppc64le\n - ghostscript-tools-dvipdf-0:9.53.3-4.fc33.aarch64\n - flexiblas-openblas-serial64-0:3.0.4-1.fc33.x86_64\n - suitesparse-devel-0:5.4.0-5.fc33.ppc64le\n - boost-log-0:1.73.0-9.fc33.armv7hl\n - wxBase3-devel-0:3.0.5.1-2.fc33.i686\n - SDL-devel-0:1.2.15-45.fc33.ppc64le\n - python2-setuptools-0:41.2.0-3.fc33.noarch\n - libical-glib-0:3.0.9-1.fc33.armv7hl\n - poppler-qt-0:0.90.0-6.fc33.ppc64le\n - boost-filesystem-0:1.73.0-9.fc33.armv7hl\n - OpenEXR-0:2.3.0-6.fc33.s390x\n - boost-stacktrace-0:1.73.0-9.fc33.x86_64\n - tk-1:8.6.10-5.fc33.armv7hl\n - boost-type_erasure-0:1.73.0-9.fc33.x86_64\n - wxBase3-0:3.0.5.1-2.fc33.aarch64\n - gnome-desktop3-0:3.38.4-1.fc33.aarch64\n - libical-glib-devel-0:3.0.9-1.fc33.aarch64\n - openblas-serial64_-0:0.3.12-1.fc33.x86_64\n - flexiblas-blis-threads-0:3.0.4-1.fc33.ppc64le\n - evolution-data-server-perl-0:3.38.4-1.fc33.i686\n - atkmm-0:2.28.1-1.fc33.s390x\n - boost-graph-0:1.73.0-9.fc33.armv7hl\n - flexiblas-blis-threads64-0:3.0.4-1.fc33.s390x\n - libdazzle-devel-0:3.38.0-1.fc33.s390x\n - gnome-desktop3-0:3.38.4-1.fc33.x86_64\n - gnome-desktop3-tests-0:3.38.4-1.fc33.i686\n - gtksourceview3-tests-0:3.24.11-4.fc33.ppc64le\n - google-droid-sans-mono-fonts-0:20200215-8.fc33.noarch\n - libgweather-0:3.36.1-3.fc33.aarch64\n - boost-timer-0:1.73.0-9.fc33.aarch64\n - gd-0:2.3.0-3.fc33.x86_64\n - dbus-glib-devel-0:0.110-10.fc33.ppc64le\n - python3-tbb-0:2020.3-2.fc33.armv7hl\n - jbig2dec-libs-0:0.19-2.fc33.aarch64\n - libhandy1-0:1.0.3-1.fc33.i686\n - glew-0:2.1.0-8.fc33.armv7hl\n - protobuf-0:3.12.4-1.fc33.i686\n - gtksourceview3-devel-0:3.24.11-4.fc33.s390x\n - SDL-0:1.2.15-45.fc33.i686\n - libphonenumber-devel-0:8.12.11-1.fc33.s390x\n - liboauth-0:1.0.3-15.fc33.s390x\n - polkit-devel-0:0.117-2.fc33.i686\n - libpeas-0:1.28.0-1.fc33.ppc64le\n - tbb-devel-0:2020.3-2.fc33.x86_64\n - flatpak-runtime-config-0:33-1.fc33.aarch64\n - suitesparse64-devel-0:5.4.0-5.fc33.x86_64\n - jbig2dec-devel-0:0.19-2.fc33.armv7hl\n - cairomm-devel-0:1.12.2-4.fc33.ppc64le\n - openblas-threads64_-0:0.3.12-1.fc33.aarch64\n - startup-notification-devel-0:0.12-20.fc33.aarch64\n - libijs-0:0.35-12.fc33.armv7hl\n - boost-random-0:1.73.0-9.fc33.s390x\n - ilmbase-0:2.3.0-5.fc33.s390x\n - SDL-static-0:1.2.15-45.fc33.armv7hl\n - openjpeg2-tools-0:2.3.1-10.fc33.i686\n - polkit-libs-0:0.117-2.fc33.armv7hl\n - openjpeg2-devel-0:2.3.1-10.fc33.i686\n - suitesparse64-devel-0:5.4.0-5.fc33.aarch64\n - flexiblas-atlas-0:3.0.4-1.fc33.s390x\n - openblas-serial-0:0.3.12-1.fc33.i686\n - gd-0:2.3.0-3.fc33.armv7hl\n - libpaper-devel-0:1.1.28-1.fc33.aarch64\n - libsigc++20-0:2.10.6-1.fc33.s390x\n - libraqm-devel-0:0.7.0-6.fc33.armv7hl\n - ghostscript-tools-fonts-0:9.53.3-4.fc33.ppc64le\n - libgdata-devel-0:0.17.13-1.fc33.armv7hl\n - flexiblas-atlas-0:3.0.4-1.fc33.i686\n - tcl-1:8.6.10-5.fc33.aarch64\n - boost-timer-0:1.73.0-9.fc33.i686\n - wxGTK3-0:3.0.5.1-2.fc33.i686\n - tk-devel-1:8.6.10-5.fc33.ppc64le\n - OpenEXR-libs-0:2.3.0-6.fc33.x86_64\n - boost-0:1.73.0-9.fc33.armv7hl\n - gsound-0:1.0.2-12.fc33.ppc64le\n - ghostscript-core-0:9.53.3-4.fc33.ppc64le\n - SDL-0:1.2.15-45.fc33.ppc64le\n - libgs-devel-0:9.53.3-4.fc33.x86_64\n - flatpak-runtime-config-0:33-1.fc33.i686\n - startup-notification-0:0.12-20.fc33.i686\n - libpeas-0:1.28.0-1.fc33.x86_64\n - libfontenc-0:1.1.3-13.fc33.x86_64\n - flexiblas-openblas-serial64-0:3.0.4-1.fc33.ppc64le\n - libwmf-0:0.2.12-4.fc33.ppc64le\n - boost-static-0:1.73.0-9.fc33.armv7hl\n - glew-0:2.1.0-8.fc33.s390x\n - evolution-data-server-tests-0:3.38.4-1.fc33.s390x\n - flexiblas-openblas-threads-0:3.0.4-1.fc33.i686\n - boost-numpy3-0:1.73.0-9.fc33.s390x\n - boost-python3-0:1.73.0-9.fc33.i686\n - boost-doc-0:1.73.0-9.fc33.s390x\n - boost-coroutine-0:1.73.0-9.fc33.s390x\n - boost-test-0:1.73.0-9.fc33.armv7hl\n - evolution-data-server-devel-0:3.38.4-1.fc33.x86_64\n - exiv2-libs-0:0.27.3-4.fc33.ppc64le\n - ghostscript-core-0:9.53.3-4.fc33.aarch64\n - glibmm24-0:2.64.5-3.fc33.x86_64\n - SDL_image-0:1.2.12-25.fc33.x86_64\n - openblas-threads-0:0.3.12-1.fc33.ppc64le\n - openblas-serial-0:0.3.12-1.fc33.armv7hl\n - poppler-cpp-0:0.90.0-6.fc33.armv7hl\n - adobe-mappings-cmap-deprecated-0:20171205-9.fc33.noarch\n - ghostscript-tools-printing-0:9.53.3-4.fc33.armv7hl\n - pangomm-0:2.42.2-1.fc33.x86_64\n - boost-iostreams-0:1.73.0-9.fc33.ppc64le\n - wxGTK3-gl-0:3.0.5.1-2.fc33.aarch64\n - libpeas-devel-0:1.28.0-1.fc33.i686\n - geocode-glib-0:3.26.2-2.fc33.ppc64le\n - tcl-1:8.6.10-5.fc33.ppc64le\n - suitesparse64-devel-0:5.4.0-5.fc33.s390x\n - poppler-qt-devel-0:0.90.0-6.fc33.i686\n - protobuf-compiler-0:3.12.4-1.fc33.x86_64\n - evolution-data-server-perl-0:3.38.4-1.fc33.s390x\n - ghostscript-gtk-0:9.53.3-4.fc33.s390x\n - boost-test-0:1.73.0-9.fc33.i686\n - poppler-glib-0:0.90.0-6.fc33.ppc64le\n - jbig2dec-devel-0:0.19-2.fc33.ppc64le\n - boost-examples-0:1.73.0-9.fc33.s390x\n - glew-0:2.1.0-8.fc33.ppc64le\n - boost-numpy3-0:1.73.0-9.fc33.ppc64le\n - flatpak-runtime-config-0:33-1.fc33.x86_64\n - libgs-devel-0:9.53.3-4.fc33.i686\n - boost-log-0:1.73.0-9.fc33.x86_64\n - gsound-devel-0:1.0.2-12.fc33.armv7hl\n - ilmbase-0:2.3.0-5.fc33.aarch64\n - wxBase3-0:3.0.5.1-2.fc33.x86_64\n - OpenEXR-doc-0:2.3.0-6.fc33.x86_64\n - libGLEW-0:2.1.0-8.fc33.x86_64\n - liboauth-devel-0:1.0.3-15.fc33.s390x\n - urw-base35-c059-fonts-0:20200910-2.fc33.noarch\n - libgweather-devel-0:3.36.1-3.fc33.armv7hl\n - boost-chrono-0:1.73.0-9.fc33.i686\n - evolution-data-server-devel-0:3.38.4-1.fc33.armv7hl\n - libraqm-0:0.7.0-6.fc33.s390x\n - gd-progs-0:2.3.0-3.fc33.aarch64\n - boost-random-0:1.73.0-9.fc33.i686\n - boost-nowide-0:1.73.0-9.fc33.ppc64le\n - libidn-devel-0:1.36-1.fc33.s390x\n - flatpak-rpm-macros-0:33-2.fc33.armv7hl\n - startup-notification-devel-0:0.12-20.fc33.s390x\n - wxGTK3-media-0:3.0.5.1-2.fc33.armv7hl\n - ghostscript-tools-fonts-0:9.53.3-4.fc33.s390x\n - libgs-devel-0:9.53.3-4.fc33.s390x\n - openblas-0:0.3.12-1.fc33.aarch64\n - boost-b2-0:1.73.0-9.fc33.i686\n - jbig2dec-libs-0:0.19-2.fc33.i686\n - gtksourceview3-0:3.24.11-4.fc33.x86_64\n - atkmm-0:2.28.1-1.fc33.ppc64le\n - flexiblas-hook-profile-0:3.0.4-1.fc33.armv7hl\n - ghostscript-core-0:9.53.3-4.fc33.x86_64\n - poppler-0:0.90.0-6.fc33.aarch64\n - poppler-cpp-0:0.90.0-6.fc33.x86_64\n - glew-0:2.1.0-8.fc33.x86_64\n - openjpeg2-0:2.3.1-10.fc33.aarch64\n - jbig2dec-libs-0:0.19-2.fc33.ppc64le\n - boost-nowide-0:1.73.0-9.fc33.aarch64\n - polkit-devel-0:0.117-2.fc33.ppc64le\n - protobuf-lite-0:3.12.4-1.fc33.i686\n - gtksourceview3-tests-0:3.24.11-4.fc33.aarch64\n - pangomm-0:2.42.2-1.fc33.ppc64le\n - flexiblas-blis-threads64-0:3.0.4-1.fc33.x86_64\n - tcl-devel-1:8.6.10-5.fc33.aarch64\n - flexiblas-blis-serial-0:3.0.4-1.fc33.ppc64le\n - poppler-qt5-0:0.90.0-6.fc33.x86_64\n - openblas-static-0:0.3.12-1.fc33.x86_64\n - SDL_image-0:1.2.12-25.fc33.ppc64le\n - ilmbase-devel-0:2.3.0-5.fc33.i686\n dependencies:\n - buildrequires:\n flatpak-common: [f33]\n flatpak-runtime: [f33]\n platform: [f33]\n requires:\n flatpak-common: [f33]\n flatpak-runtime: [f33]\n platform: [f33]\n profiles:\n default:\n rpms:\n - 0ad\n components:\n rpms:\n 0ad:\n rationale: Application package\n repository: git+https://src.fedoraproject.org/rpms/0ad\n cache: https://src.fedoraproject.org/repo/pkgs/0ad\n ref: f33\n buildorder: 10\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n 0ad-data:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/0ad-data\n cache: https://src.fedoraproject.org/repo/pkgs/0ad-data\n ref: f33\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n dejavu-fonts:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/dejavu-fonts\n cache: https://src.fedoraproject.org/repo/pkgs/dejavu-fonts\n ref: f33\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n enet:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/enet\n cache: https://src.fedoraproject.org/repo/pkgs/enet\n ref: f33\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n gloox:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/gloox\n cache: https://src.fedoraproject.org/repo/pkgs/gloox\n ref: f33\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n libsodium:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/libsodium\n cache: https://src.fedoraproject.org/repo/pkgs/libsodium\n ref: f33\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n miniupnpc:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/miniupnpc\n cache: https://src.fedoraproject.org/repo/pkgs/miniupnpc\n ref: f33\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n nvidia-texture-tools:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/nvidia-texture-tools\n cache: https://src.fedoraproject.org/repo/pkgs/nvidia-texture-tools\n ref: f33\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n...", "runtime_deps": [ { "dependency": "flatpak-runtime", "stream": "f33" }, { "dependency": "platform", "stream": "f33" }, { "dependency": "flatpak-common", "stream": "f33" } ], "build_deps": [ { "dependency": "flatpak-runtime", "stream": "f33" }, { "dependency": "platform", "stream": "f33" }, { "dependency": "flatpak-common", "stream": "f33" } ], "active": true, "rpms": [ "0ad-0:0.0.24b-2.module_f33+11568+40ff51bd.aarch64.rpm", "0ad-0:0.0.24b-2.module_f33+11568+40ff51bd.armv7hl.rpm", "0ad-0:0.0.24b-2.module_f33+11568+40ff51bd.i686.rpm", "0ad-0:0.0.24b-2.module_f33+11568+40ff51bd.ppc64le.rpm", "0ad-0:0.0.24b-2.module_f33+11568+40ff51bd.src.rpm", "0ad-0:0.0.24b-2.module_f33+11568+40ff51bd.x86_64.rpm", "0ad-data-0:0.0.24b-1.module_f33+11568+40ff51bd.noarch.rpm", "0ad-data-0:0.0.24b-1.module_f33+11568+40ff51bd.src.rpm", "0ad-debuginfo-0:0.0.24b-2.module_f33+11568+40ff51bd.aarch64.rpm", "0ad-debuginfo-0:0.0.24b-2.module_f33+11568+40ff51bd.armv7hl.rpm", "0ad-debuginfo-0:0.0.24b-2.module_f33+11568+40ff51bd.i686.rpm", "0ad-debuginfo-0:0.0.24b-2.module_f33+11568+40ff51bd.ppc64le.rpm", "0ad-debuginfo-0:0.0.24b-2.module_f33+11568+40ff51bd.x86_64.rpm", "0ad-debugsource-0:0.0.24b-2.module_f33+11568+40ff51bd.aarch64.rpm", "0ad-debugsource-0:0.0.24b-2.module_f33+11568+40ff51bd.armv7hl.rpm", "0ad-debugsource-0:0.0.24b-2.module_f33+11568+40ff51bd.i686.rpm", "0ad-debugsource-0:0.0.24b-2.module_f33+11568+40ff51bd.ppc64le.rpm", "0ad-debugsource-0:0.0.24b-2.module_f33+11568+40ff51bd.x86_64.rpm", "dejavu-fonts-0:2.37-15.module_f33+11568+40ff51bd.src.rpm", "dejavu-fonts-all-0:2.37-15.module_f33+11568+40ff51bd.noarch.rpm", "dejavu-fonts-doc-0:2.37-15.module_f33+11568+40ff51bd.noarch.rpm", "dejavu-lgc-fonts-all-0:2.37-15.module_f33+11568+40ff51bd.noarch.rpm", "dejavu-lgc-sans-fonts-0:2.37-15.module_f33+11568+40ff51bd.noarch.rpm", "dejavu-lgc-sans-mono-fonts-0:2.37-15.module_f33+11568+40ff51bd.noarch.rpm", "dejavu-lgc-serif-fonts-0:2.37-15.module_f33+11568+40ff51bd.noarch.rpm", "dejavu-sans-fonts-0:2.37-15.module_f33+11568+40ff51bd.noarch.rpm", "dejavu-sans-mono-fonts-0:2.37-15.module_f33+11568+40ff51bd.noarch.rpm", "dejavu-serif-fonts-0:2.37-15.module_f33+11568+40ff51bd.noarch.rpm", "enet-0:1.3.16-1.module_f33+11568+40ff51bd.aarch64.rpm", "enet-0:1.3.16-1.module_f33+11568+40ff51bd.armv7hl.rpm", "enet-0:1.3.16-1.module_f33+11568+40ff51bd.i686.rpm", "enet-0:1.3.16-1.module_f33+11568+40ff51bd.ppc64le.rpm", "enet-0:1.3.16-1.module_f33+11568+40ff51bd.s390x.rpm", "enet-0:1.3.16-1.module_f33+11568+40ff51bd.src.rpm", "enet-0:1.3.16-1.module_f33+11568+40ff51bd.x86_64.rpm", "enet-debuginfo-0:1.3.16-1.module_f33+11568+40ff51bd.aarch64.rpm", "enet-debuginfo-0:1.3.16-1.module_f33+11568+40ff51bd.armv7hl.rpm", "enet-debuginfo-0:1.3.16-1.module_f33+11568+40ff51bd.i686.rpm", "enet-debuginfo-0:1.3.16-1.module_f33+11568+40ff51bd.ppc64le.rpm", "enet-debuginfo-0:1.3.16-1.module_f33+11568+40ff51bd.s390x.rpm", "enet-debuginfo-0:1.3.16-1.module_f33+11568+40ff51bd.x86_64.rpm", "enet-debugsource-0:1.3.16-1.module_f33+11568+40ff51bd.aarch64.rpm", "enet-debugsource-0:1.3.16-1.module_f33+11568+40ff51bd.armv7hl.rpm", "enet-debugsource-0:1.3.16-1.module_f33+11568+40ff51bd.i686.rpm", "enet-debugsource-0:1.3.16-1.module_f33+11568+40ff51bd.ppc64le.rpm", "enet-debugsource-0:1.3.16-1.module_f33+11568+40ff51bd.s390x.rpm", "enet-debugsource-0:1.3.16-1.module_f33+11568+40ff51bd.x86_64.rpm", "enet-devel-0:1.3.16-1.module_f33+11568+40ff51bd.aarch64.rpm", "enet-devel-0:1.3.16-1.module_f33+11568+40ff51bd.armv7hl.rpm", "enet-devel-0:1.3.16-1.module_f33+11568+40ff51bd.i686.rpm", "enet-devel-0:1.3.16-1.module_f33+11568+40ff51bd.ppc64le.rpm", "enet-devel-0:1.3.16-1.module_f33+11568+40ff51bd.s390x.rpm", "enet-devel-0:1.3.16-1.module_f33+11568+40ff51bd.x86_64.rpm", "gloox-1:1.0.23-3.module_f33+11568+40ff51bd.aarch64.rpm", "gloox-1:1.0.23-3.module_f33+11568+40ff51bd.armv7hl.rpm", "gloox-1:1.0.23-3.module_f33+11568+40ff51bd.i686.rpm", "gloox-1:1.0.23-3.module_f33+11568+40ff51bd.ppc64le.rpm", "gloox-1:1.0.23-3.module_f33+11568+40ff51bd.s390x.rpm", "gloox-1:1.0.23-3.module_f33+11568+40ff51bd.src.rpm", "gloox-1:1.0.23-3.module_f33+11568+40ff51bd.x86_64.rpm", "gloox-debuginfo-1:1.0.23-3.module_f33+11568+40ff51bd.aarch64.rpm", "gloox-debuginfo-1:1.0.23-3.module_f33+11568+40ff51bd.armv7hl.rpm", "gloox-debuginfo-1:1.0.23-3.module_f33+11568+40ff51bd.i686.rpm", "gloox-debuginfo-1:1.0.23-3.module_f33+11568+40ff51bd.ppc64le.rpm", "gloox-debuginfo-1:1.0.23-3.module_f33+11568+40ff51bd.s390x.rpm", "gloox-debuginfo-1:1.0.23-3.module_f33+11568+40ff51bd.x86_64.rpm", "gloox-debugsource-1:1.0.23-3.module_f33+11568+40ff51bd.aarch64.rpm", "gloox-debugsource-1:1.0.23-3.module_f33+11568+40ff51bd.armv7hl.rpm", "gloox-debugsource-1:1.0.23-3.module_f33+11568+40ff51bd.i686.rpm", "gloox-debugsource-1:1.0.23-3.module_f33+11568+40ff51bd.ppc64le.rpm", "gloox-debugsource-1:1.0.23-3.module_f33+11568+40ff51bd.s390x.rpm", "gloox-debugsource-1:1.0.23-3.module_f33+11568+40ff51bd.x86_64.rpm", "gloox-devel-1:1.0.23-3.module_f33+11568+40ff51bd.aarch64.rpm", "gloox-devel-1:1.0.23-3.module_f33+11568+40ff51bd.armv7hl.rpm", "gloox-devel-1:1.0.23-3.module_f33+11568+40ff51bd.i686.rpm", "gloox-devel-1:1.0.23-3.module_f33+11568+40ff51bd.ppc64le.rpm", "gloox-devel-1:1.0.23-3.module_f33+11568+40ff51bd.s390x.rpm", "gloox-devel-1:1.0.23-3.module_f33+11568+40ff51bd.x86_64.rpm", "libsodium-0:1.0.18-6.module_f33+11568+40ff51bd.aarch64.rpm", "libsodium-0:1.0.18-6.module_f33+11568+40ff51bd.armv7hl.rpm", "libsodium-0:1.0.18-6.module_f33+11568+40ff51bd.i686.rpm", "libsodium-0:1.0.18-6.module_f33+11568+40ff51bd.ppc64le.rpm", "libsodium-0:1.0.18-6.module_f33+11568+40ff51bd.s390x.rpm", "libsodium-0:1.0.18-6.module_f33+11568+40ff51bd.src.rpm", "libsodium-0:1.0.18-6.module_f33+11568+40ff51bd.x86_64.rpm", "libsodium-debuginfo-0:1.0.18-6.module_f33+11568+40ff51bd.aarch64.rpm", "libsodium-debuginfo-0:1.0.18-6.module_f33+11568+40ff51bd.armv7hl.rpm", "libsodium-debuginfo-0:1.0.18-6.module_f33+11568+40ff51bd.i686.rpm", "libsodium-debuginfo-0:1.0.18-6.module_f33+11568+40ff51bd.ppc64le.rpm", "libsodium-debuginfo-0:1.0.18-6.module_f33+11568+40ff51bd.s390x.rpm", "libsodium-debuginfo-0:1.0.18-6.module_f33+11568+40ff51bd.x86_64.rpm", "libsodium-debugsource-0:1.0.18-6.module_f33+11568+40ff51bd.aarch64.rpm", "libsodium-debugsource-0:1.0.18-6.module_f33+11568+40ff51bd.armv7hl.rpm", "libsodium-debugsource-0:1.0.18-6.module_f33+11568+40ff51bd.i686.rpm", "libsodium-debugsource-0:1.0.18-6.module_f33+11568+40ff51bd.ppc64le.rpm", "libsodium-debugsource-0:1.0.18-6.module_f33+11568+40ff51bd.s390x.rpm", "libsodium-debugsource-0:1.0.18-6.module_f33+11568+40ff51bd.x86_64.rpm", "libsodium-devel-0:1.0.18-6.module_f33+11568+40ff51bd.aarch64.rpm", "libsodium-devel-0:1.0.18-6.module_f33+11568+40ff51bd.armv7hl.rpm", "libsodium-devel-0:1.0.18-6.module_f33+11568+40ff51bd.i686.rpm", "libsodium-devel-0:1.0.18-6.module_f33+11568+40ff51bd.ppc64le.rpm", "libsodium-devel-0:1.0.18-6.module_f33+11568+40ff51bd.s390x.rpm", "libsodium-devel-0:1.0.18-6.module_f33+11568+40ff51bd.x86_64.rpm", "libsodium-static-0:1.0.18-6.module_f33+11568+40ff51bd.aarch64.rpm", "libsodium-static-0:1.0.18-6.module_f33+11568+40ff51bd.armv7hl.rpm", "libsodium-static-0:1.0.18-6.module_f33+11568+40ff51bd.i686.rpm", "libsodium-static-0:1.0.18-6.module_f33+11568+40ff51bd.ppc64le.rpm", "libsodium-static-0:1.0.18-6.module_f33+11568+40ff51bd.s390x.rpm", "libsodium-static-0:1.0.18-6.module_f33+11568+40ff51bd.x86_64.rpm", "miniupnpc-0:2.2.0-1.module_f33+11568+40ff51bd.aarch64.rpm", "miniupnpc-0:2.2.0-1.module_f33+11568+40ff51bd.armv7hl.rpm", "miniupnpc-0:2.2.0-1.module_f33+11568+40ff51bd.i686.rpm", "miniupnpc-0:2.2.0-1.module_f33+11568+40ff51bd.ppc64le.rpm", "miniupnpc-0:2.2.0-1.module_f33+11568+40ff51bd.s390x.rpm", "miniupnpc-0:2.2.0-1.module_f33+11568+40ff51bd.src.rpm", "miniupnpc-0:2.2.0-1.module_f33+11568+40ff51bd.x86_64.rpm", "miniupnpc-debuginfo-0:2.2.0-1.module_f33+11568+40ff51bd.aarch64.rpm", "miniupnpc-debuginfo-0:2.2.0-1.module_f33+11568+40ff51bd.armv7hl.rpm", "miniupnpc-debuginfo-0:2.2.0-1.module_f33+11568+40ff51bd.i686.rpm", "miniupnpc-debuginfo-0:2.2.0-1.module_f33+11568+40ff51bd.ppc64le.rpm", "miniupnpc-debuginfo-0:2.2.0-1.module_f33+11568+40ff51bd.s390x.rpm", "miniupnpc-debuginfo-0:2.2.0-1.module_f33+11568+40ff51bd.x86_64.rpm", "miniupnpc-debugsource-0:2.2.0-1.module_f33+11568+40ff51bd.aarch64.rpm", "miniupnpc-debugsource-0:2.2.0-1.module_f33+11568+40ff51bd.armv7hl.rpm", "miniupnpc-debugsource-0:2.2.0-1.module_f33+11568+40ff51bd.i686.rpm", "miniupnpc-debugsource-0:2.2.0-1.module_f33+11568+40ff51bd.ppc64le.rpm", "miniupnpc-debugsource-0:2.2.0-1.module_f33+11568+40ff51bd.s390x.rpm", "miniupnpc-debugsource-0:2.2.0-1.module_f33+11568+40ff51bd.x86_64.rpm", "miniupnpc-devel-0:2.2.0-1.module_f33+11568+40ff51bd.aarch64.rpm", "miniupnpc-devel-0:2.2.0-1.module_f33+11568+40ff51bd.armv7hl.rpm", "miniupnpc-devel-0:2.2.0-1.module_f33+11568+40ff51bd.i686.rpm", "miniupnpc-devel-0:2.2.0-1.module_f33+11568+40ff51bd.ppc64le.rpm", "miniupnpc-devel-0:2.2.0-1.module_f33+11568+40ff51bd.s390x.rpm", "miniupnpc-devel-0:2.2.0-1.module_f33+11568+40ff51bd.x86_64.rpm", "nvidia-texture-tools-0:2.1.2-1.module_f33+11568+40ff51bd.aarch64.rpm", "nvidia-texture-tools-0:2.1.2-1.module_f33+11568+40ff51bd.armv7hl.rpm", "nvidia-texture-tools-0:2.1.2-1.module_f33+11568+40ff51bd.i686.rpm", "nvidia-texture-tools-0:2.1.2-1.module_f33+11568+40ff51bd.ppc64le.rpm", "nvidia-texture-tools-0:2.1.2-1.module_f33+11568+40ff51bd.s390x.rpm", "nvidia-texture-tools-0:2.1.2-1.module_f33+11568+40ff51bd.src.rpm", "nvidia-texture-tools-0:2.1.2-1.module_f33+11568+40ff51bd.x86_64.rpm", "nvidia-texture-tools-debuginfo-0:2.1.2-1.module_f33+11568+40ff51bd.aarch64.rpm", "nvidia-texture-tools-debuginfo-0:2.1.2-1.module_f33+11568+40ff51bd.armv7hl.rpm", "nvidia-texture-tools-debuginfo-0:2.1.2-1.module_f33+11568+40ff51bd.i686.rpm", "nvidia-texture-tools-debuginfo-0:2.1.2-1.module_f33+11568+40ff51bd.ppc64le.rpm", "nvidia-texture-tools-debuginfo-0:2.1.2-1.module_f33+11568+40ff51bd.s390x.rpm", "nvidia-texture-tools-debuginfo-0:2.1.2-1.module_f33+11568+40ff51bd.x86_64.rpm", "nvidia-texture-tools-debugsource-0:2.1.2-1.module_f33+11568+40ff51bd.aarch64.rpm", "nvidia-texture-tools-debugsource-0:2.1.2-1.module_f33+11568+40ff51bd.armv7hl.rpm", "nvidia-texture-tools-debugsource-0:2.1.2-1.module_f33+11568+40ff51bd.i686.rpm", "nvidia-texture-tools-debugsource-0:2.1.2-1.module_f33+11568+40ff51bd.ppc64le.rpm", "nvidia-texture-tools-debugsource-0:2.1.2-1.module_f33+11568+40ff51bd.s390x.rpm", "nvidia-texture-tools-debugsource-0:2.1.2-1.module_f33+11568+40ff51bd.x86_64.rpm", "nvidia-texture-tools-devel-0:2.1.2-1.module_f33+11568+40ff51bd.aarch64.rpm", "nvidia-texture-tools-devel-0:2.1.2-1.module_f33+11568+40ff51bd.armv7hl.rpm", "nvidia-texture-tools-devel-0:2.1.2-1.module_f33+11568+40ff51bd.i686.rpm", "nvidia-texture-tools-devel-0:2.1.2-1.module_f33+11568+40ff51bd.ppc64le.rpm", "nvidia-texture-tools-devel-0:2.1.2-1.module_f33+11568+40ff51bd.s390x.rpm", "nvidia-texture-tools-devel-0:2.1.2-1.module_f33+11568+40ff51bd.x86_64.rpm", "python3-miniupnpc-0:2.2.0-1.module_f33+11568+40ff51bd.aarch64.rpm", "python3-miniupnpc-0:2.2.0-1.module_f33+11568+40ff51bd.armv7hl.rpm", "python3-miniupnpc-0:2.2.0-1.module_f33+11568+40ff51bd.i686.rpm", "python3-miniupnpc-0:2.2.0-1.module_f33+11568+40ff51bd.ppc64le.rpm", "python3-miniupnpc-0:2.2.0-1.module_f33+11568+40ff51bd.s390x.rpm", "python3-miniupnpc-0:2.2.0-1.module_f33+11568+40ff51bd.x86_64.rpm", "python3-miniupnpc-debuginfo-0:2.2.0-1.module_f33+11568+40ff51bd.aarch64.rpm", "python3-miniupnpc-debuginfo-0:2.2.0-1.module_f33+11568+40ff51bd.armv7hl.rpm", "python3-miniupnpc-debuginfo-0:2.2.0-1.module_f33+11568+40ff51bd.i686.rpm", "python3-miniupnpc-debuginfo-0:2.2.0-1.module_f33+11568+40ff51bd.ppc64le.rpm", "python3-miniupnpc-debuginfo-0:2.2.0-1.module_f33+11568+40ff51bd.s390x.rpm", "python3-miniupnpc-debuginfo-0:2.2.0-1.module_f33+11568+40ff51bd.x86_64.rpm" ] }, { "variant_id": "0ad", "variant_uid": "0ad:stable:3320210302145147:50ef3cd5", "variant_name": "0ad", "variant_type": "module", "variant_version": "stable", "variant_release": "3320210302145147", "variant_context": "50ef3cd5", "koji_tag": "module-0ad-stable-3320210302145147-50ef3cd5", "modulemd": "---\ndocument: modulemd\nversion: 2\ndata:\n name: 0ad\n stream: \"stable\"\n version: 3320210302145147\n context: 50ef3cd5\n summary: Cross-Platform RTS Game of Ancient Warfare\n description: >-\n 0 A.D. (pronounced \"zero ey-dee\") is a free, open-source, cross-platform real-time\n strategy (RTS) game of ancient warfare. In short, it is a historically-based war/economy\n game that allows players to relive or rewrite the history of Western civilizations,\n focusing on the years between 500 B.C. and 500 A.D. The project is highly ambitious,\n involving state-of-the-art 3D graphics, detailed artwork, sound, and a flexible\n and powerful custom-built game engine.\n\n The game has been in development by Wildfire Games (WFG), a group of volunteer,\n hobbyist game developers, since 2001.\n license:\n module:\n - MIT\n xmd:\n mbs:\n buildrequires:\n flatpak-common:\n context: fb2b2a51\n filtered_rpms: []\n koji_tag: module-flatpak-common-f33-3320210302121339-fb2b2a51\n ref: e6431a0662f0f390531bdd501ce0c822f26e3778\n stream: f33\n version: 3320210302121339\n flatpak-runtime:\n context: 601d93de\n filtered_rpms: []\n koji_tag: module-flatpak-runtime-f33-3320210224151549-601d93de\n ref: b401de31856623102158250206300da0e943d06e\n stream: f33\n version: 3320210224151549\n platform:\n context: 00000000\n filtered_rpms: []\n koji_tag: module-f33-build\n ref: f33\n stream: f33\n stream_collision_modules: \n ursine_rpms: \n version: 1\n commit: 5384529e6283f6e30d69f686c7c44d78e8fb1c4b\n mse: TRUE\n rpms:\n 0ad:\n ref: 71447f440795252a47c0caf21042f3ed9a9c5f65\n 0ad-data:\n ref: 33fe072a696aef3000553b03a6b0b11832ed2fad\n dejavu-fonts:\n ref: b475f5b4c29a82b95c84df5d31ba8757710d5b5d\n enet:\n ref: da594f9bd429ecb41396a25091d693e41b40cfbc\n fmt:\n ref: 3cae3a5825c21c508b013cda6e4e1b3ceedcc728\n gloox:\n ref: 6881cacaa26d9ae3dc9d24585b36b2c52ee43434\n libsodium:\n ref: 1442a683d44b7a4186db95ffbfba0c747fae833f\n miniupnpc:\n ref: 43aa4048718cddbf572520e8b3cc7f26747c076b\n nvidia-texture-tools:\n ref: 9f338bb34655deab4027c5d93e6fd1655d97a602\n scmurl: https://src.fedoraproject.org/flatpaks/0ad.git?#5384529e6283f6e30d69f686c7c44d78e8fb1c4b\n ursine_rpms:\n - gsound-0:1.0.2-12.fc33.x86_64\n - boost-filesystem-0:1.73.0-9.fc33.s390x\n - boost-test-0:1.73.0-9.fc33.ppc64le\n - ilmbase-0:2.3.0-5.fc33.ppc64le\n - boost-graph-0:1.73.0-9.fc33.s390x\n - OpenEXR-doc-0:2.3.0-6.fc33.i686\n - libgweather-devel-0:3.36.1-3.fc33.aarch64\n - libhandy1-0:1.0.3-1.fc33.x86_64\n - boost-timer-0:1.73.0-9.fc33.ppc64le\n - ghostscript-tools-dvipdf-0:9.53.3-4.fc33.i686\n - boost-contract-0:1.73.0-9.fc33.aarch64\n - libgs-devel-0:9.53.3-4.fc33.armv7hl\n - libwmf-0:0.2.12-4.fc33.aarch64\n - openblas-threads-0:0.3.12-1.fc33.i686\n - OpenEXR-doc-0:2.3.0-6.fc33.s390x\n - flexiblas-blis-openmp64-0:3.0.4-1.fc33.aarch64\n - boost-type_erasure-0:1.73.0-9.fc33.armv7hl\n - gtksourceview3-tests-0:3.24.11-4.fc33.i686\n - boost-python3-0:1.73.0-9.fc33.ppc64le\n - protobuf-static-0:3.12.4-1.fc33.s390x\n - polkit-0:0.117-2.fc33.armv7hl\n - SDL-devel-0:1.2.15-45.fc33.i686\n - geocode-glib-0:3.26.2-2.fc33.s390x\n - flexiblas-blis-threads-0:3.0.4-1.fc33.aarch64\n - exiv2-devel-0:0.27.3-4.fc33.ppc64le\n - exiv2-devel-0:0.27.3-4.fc33.aarch64\n - polkit-0:0.117-2.fc33.aarch64\n - flexiblas-blis-threads-0:3.0.4-1.fc33.i686\n - libpeas-gtk-0:1.28.0-1.fc33.s390x\n - openblas-static-0:0.3.12-1.fc33.i686\n - boost-date-time-0:1.73.0-9.fc33.x86_64\n - jbig2dec-0:0.19-2.fc33.armv7hl\n - poppler-cpp-devel-0:0.90.0-6.fc33.aarch64\n - openjpeg2-tools-0:2.3.1-10.fc33.ppc64le\n - libhandy1-devel-0:1.0.3-1.fc33.s390x\n - OpenEXR-0:2.3.0-6.fc33.x86_64\n - boost-filesystem-0:1.73.0-9.fc33.x86_64\n - poppler-qt5-0:0.90.0-6.fc33.armv7hl\n - gsl-devel-0:2.6-3.fc33.aarch64\n - protobuf-lite-static-0:3.12.4-1.fc33.x86_64\n - libpaper-0:1.1.28-1.fc33.x86_64\n - flexiblas-openblas-serial-0:3.0.4-1.fc33.s390x\n - geocode-glib-devel-0:3.26.2-2.fc33.aarch64\n - atkmm-devel-0:2.28.1-1.fc33.i686\n - wxGTK3-0:3.0.5.1-2.fc33.ppc64le\n - boost-0:1.73.0-9.fc33.s390x\n - wxGTK3-devel-0:3.0.5.1-2.fc33.ppc64le\n - boost-type_erasure-0:1.73.0-9.fc33.ppc64le\n - urw-base35-p052-fonts-0:20200910-2.fc33.noarch\n - poppler-qt5-0:0.90.0-6.fc33.i686\n - liboauth-devel-0:1.0.3-15.fc33.armv7hl\n - gsound-0:1.0.2-12.fc33.i686\n - flexiblas-openblas-threads-0:3.0.4-1.fc33.armv7hl\n - boost-doc-0:1.73.0-9.fc33.x86_64\n - tk-devel-1:8.6.10-5.fc33.x86_64\n - libGLEW-0:2.1.0-8.fc33.aarch64\n - protobuf-0:3.12.4-1.fc33.aarch64\n - polkit-libs-0:0.117-2.fc33.aarch64\n - libwmf-0:0.2.12-4.fc33.s390x\n - boost-atomic-0:1.73.0-9.fc33.armv7hl\n - poppler-qt-0:0.90.0-6.fc33.aarch64\n - boost-program-options-0:1.73.0-9.fc33.x86_64\n - flexiblas-0:3.0.4-1.fc33.s390x\n - gd-progs-0:2.3.0-3.fc33.i686\n - libphonenumber-devel-0:8.12.11-1.fc33.aarch64\n - tbb-doc-0:2020.3-2.fc33.aarch64\n - gnome-desktop3-devel-0:3.38.4-1.fc33.x86_64\n - suitesparse64_-static-0:5.4.0-5.fc33.ppc64le\n - evolution-data-server-tests-0:3.38.4-1.fc33.ppc64le\n - atkmm-devel-0:2.28.1-1.fc33.s390x\n - gtksourceview3-0:3.24.11-4.fc33.i686\n - gd-devel-0:2.3.0-3.fc33.i686\n - openjpeg2-devel-0:2.3.1-10.fc33.armv7hl\n - libsigc++20-devel-0:2.10.6-1.fc33.i686\n - boost-test-0:1.73.0-9.fc33.aarch64\n - SDL-devel-0:1.2.15-45.fc33.s390x\n - libidn-devel-0:1.36-1.fc33.i686\n - flexiblas-netlib-0:3.0.4-1.fc33.x86_64\n - libical-0:3.0.9-1.fc33.aarch64\n - glew-devel-0:2.1.0-8.fc33.i686\n - openjpeg2-tools-0:2.3.1-10.fc33.aarch64\n - libhandy1-0:1.0.3-1.fc33.ppc64le\n - atkmm-0:2.28.1-1.fc33.x86_64\n - boost-examples-0:1.73.0-9.fc33.aarch64\n - boost-random-0:1.73.0-9.fc33.armv7hl\n - wxBase3-devel-0:3.0.5.1-2.fc33.aarch64\n - libgs-0:9.53.3-4.fc33.s390x\n - libwmf-devel-0:0.2.12-4.fc33.armv7hl\n - python2.7-0:2.7.18-8.fc33.x86_64\n - evolution-data-server-devel-0:3.38.4-1.fc33.s390x\n - openblas-serial-0:0.3.12-1.fc33.aarch64\n - libpaper-0:1.1.28-1.fc33.armv7hl\n - OpenEXR-doc-0:2.3.0-6.fc33.aarch64\n - suitesparse-static-0:5.4.0-5.fc33.armv7hl\n - python2.7-0:2.7.18-8.fc33.i686\n - tbb-doc-0:2020.3-2.fc33.ppc64le\n - adobe-mappings-pdf-devel-0:20180407-7.fc33.noarch\n - boost-filesystem-0:1.73.0-9.fc33.aarch64\n - poppler-qt5-0:0.90.0-6.fc33.s390x\n - libgs-0:9.53.3-4.fc33.aarch64\n - SDL-0:1.2.15-45.fc33.aarch64\n - poppler-cpp-0:0.90.0-6.fc33.s390x\n - boost-devel-0:1.73.0-9.fc33.x86_64\n - libgs-0:9.53.3-4.fc33.ppc64le\n - libwmf-devel-0:0.2.12-4.fc33.ppc64le\n - openblas-threads64_-0:0.3.12-1.fc33.x86_64\n - poppler-qt5-devel-0:0.90.0-6.fc33.aarch64\n - polkit-libs-0:0.117-2.fc33.s390x\n - gtksourceview3-tests-0:3.24.11-4.fc33.s390x\n - wxBase3-0:3.0.5.1-2.fc33.s390x\n - libical-glib-devel-0:3.0.9-1.fc33.ppc64le\n - boost-graph-0:1.73.0-9.fc33.ppc64le\n - openblas-0:0.3.12-1.fc33.armv7hl\n - boost-system-0:1.73.0-9.fc33.aarch64\n - jbig2dec-0:0.19-2.fc33.aarch64\n - boost-static-0:1.73.0-9.fc33.aarch64\n - tbb-0:2020.3-2.fc33.aarch64\n - gtkmm30-devel-0:3.24.3-1.fc33.aarch64\n - gnome-online-accounts-0:3.38.0-1.fc33.x86_64\n - wxBase3-devel-0:3.0.5.1-2.fc33.ppc64le\n - dbus-glib-0:0.110-10.fc33.armv7hl\n - flexiblas-openblas-openmp64-0:3.0.4-1.fc33.s390x\n - polkit-0:0.117-2.fc33.x86_64\n - gsl-devel-0:2.6-3.fc33.i686\n - openblas-threads64_-0:0.3.12-1.fc33.s390x\n - SDL-devel-0:1.2.15-45.fc33.x86_64\n - gsl-devel-0:2.6-3.fc33.armv7hl\n - boost-math-0:1.73.0-9.fc33.i686\n - poppler-utils-0:0.90.0-6.fc33.armv7hl\n - geocode-glib-devel-0:3.26.2-2.fc33.s390x\n - glibmm24-devel-0:2.64.5-3.fc33.ppc64le\n - boost-thread-0:1.73.0-9.fc33.x86_64\n - suitesparse64_-0:5.4.0-5.fc33.aarch64\n - gsound-devel-0:1.0.2-12.fc33.s390x\n - xorg-x11-font-utils-1:7.5-47.fc33.s390x\n - OpenEXR-devel-0:2.3.0-6.fc33.armv7hl\n - ilmbase-0:2.3.0-5.fc33.i686\n - openblas-serial-0:0.3.12-1.fc33.ppc64le\n - evolution-data-server-0:3.38.4-1.fc33.s390x\n - libgdata-0:0.17.13-1.fc33.x86_64\n - tcl-devel-1:8.6.10-5.fc33.s390x\n - flexiblas-blis-threads64-0:3.0.4-1.fc33.ppc64le\n - openblas-openmp64-0:0.3.12-1.fc33.s390x\n - flexiblas-openblas-openmp-0:3.0.4-1.fc33.s390x\n - libwmf-0:0.2.12-4.fc33.x86_64\n - cairomm-devel-0:1.12.2-4.fc33.x86_64\n - evolution-data-server-tests-0:3.38.4-1.fc33.aarch64\n - SDL-0:1.2.15-45.fc33.armv7hl\n - boost-atomic-0:1.73.0-9.fc33.ppc64le\n - libpeas-loader-python3-0:1.28.0-1.fc33.ppc64le\n - boost-regex-0:1.73.0-9.fc33.ppc64le\n - openblas-serial64_-0:0.3.12-1.fc33.ppc64le\n - urw-base35-nimbus-roman-fonts-0:20200910-2.fc33.noarch\n - libimagequant-0:2.12.6-3.fc33.x86_64\n - python3-tbb-0:2020.3-2.fc33.aarch64\n - flexiblas-openblas-openmp-0:3.0.4-1.fc33.x86_64\n - ghostscript-tools-dvipdf-0:9.53.3-4.fc33.ppc64le\n - protobuf-0:3.12.4-1.fc33.s390x\n - wxGTK3-0:3.0.5.1-2.fc33.aarch64\n - wxGTK3-media-0:3.0.5.1-2.fc33.x86_64\n - flexiblas-openblas-threads-0:3.0.4-1.fc33.x86_64\n - flexiblas-blis-openmp-0:3.0.4-1.fc33.armv7hl\n - tix-devel-1:8.4.3-29.fc33.armv7hl\n - poppler-glib-0:0.90.0-6.fc33.x86_64\n - flexiblas-blis-threads64-0:3.0.4-1.fc33.aarch64\n - poppler-glib-devel-0:0.90.0-6.fc33.x86_64\n - libgdata-devel-0:0.17.13-1.fc33.i686\n - openblas-serial64-0:0.3.12-1.fc33.ppc64le\n - boost-wave-0:1.73.0-9.fc33.ppc64le\n - boost-chrono-0:1.73.0-9.fc33.aarch64\n - flexiblas-netlib-0:3.0.4-1.fc33.aarch64\n - boost-devel-0:1.73.0-9.fc33.armv7hl\n - boost-nowide-0:1.73.0-9.fc33.s390x\n - boost-random-0:1.73.0-9.fc33.x86_64\n - ghostscript-tools-printing-0:9.53.3-4.fc33.aarch64\n - wxGTK3-media-0:3.0.5.1-2.fc33.s390x\n - wxGTK3-0:3.0.5.1-2.fc33.armv7hl\n - boost-regex-0:1.73.0-9.fc33.aarch64\n - libpaper-0:1.1.28-1.fc33.ppc64le\n - poppler-devel-0:0.90.0-6.fc33.ppc64le\n - boost-system-0:1.73.0-9.fc33.ppc64le\n - protobuf-lite-devel-0:3.12.4-1.fc33.armv7hl\n - ghostscript-tools-fonts-0:9.53.3-4.fc33.i686\n - liboauth-0:1.0.3-15.fc33.aarch64\n - flexiblas-devel-0:3.0.4-1.fc33.armv7hl\n - flexiblas-netlib64-0:3.0.4-1.fc33.aarch64\n - openblas-devel-0:0.3.12-1.fc33.x86_64\n - libfontenc-devel-0:1.1.3-13.fc33.s390x\n - poppler-qt-0:0.90.0-6.fc33.i686\n - urw-base35-fonts-legacy-0:20200910-2.fc33.noarch\n - flexiblas-0:3.0.4-1.fc33.aarch64\n - libimagequant-devel-0:2.12.6-3.fc33.ppc64le\n - boost-program-options-0:1.73.0-9.fc33.ppc64le\n - tk-devel-1:8.6.10-5.fc33.i686\n - dbus-glib-devel-0:0.110-10.fc33.i686\n - openblas-threads64_-0:0.3.12-1.fc33.ppc64le\n - gtkmm30-devel-0:3.24.3-1.fc33.x86_64\n - cairomm-devel-0:1.12.2-4.fc33.s390x\n - ghostscript-0:9.53.3-4.fc33.aarch64\n - boost-python3-0:1.73.0-9.fc33.s390x\n - flexiblas-openblas-openmp-0:3.0.4-1.fc33.armv7hl\n - boost-iostreams-0:1.73.0-9.fc33.armv7hl\n - libical-0:3.0.9-1.fc33.ppc64le\n - libdazzle-0:3.38.0-1.fc33.s390x\n - geocode-glib-devel-0:3.26.2-2.fc33.ppc64le\n - boost-context-0:1.73.0-9.fc33.s390x\n - tbb-0:2020.3-2.fc33.i686\n - openblas-openmp-0:0.3.12-1.fc33.aarch64\n - boost-date-time-0:1.73.0-9.fc33.s390x\n - compat-wxGTK3-gtk2-gl-0:3.0.5.1-2.fc33.ppc64le\n - compat-wxGTK3-gtk2-media-0:3.0.5.1-2.fc33.aarch64\n - tk-devel-1:8.6.10-5.fc33.armv7hl\n - boost-container-0:1.73.0-9.fc33.x86_64\n - pangomm-doc-0:2.42.2-1.fc33.noarch\n - wxGTK3-gl-0:3.0.5.1-2.fc33.armv7hl\n - libgweather-0:3.36.1-3.fc33.ppc64le\n - tix-devel-1:8.4.3-29.fc33.x86_64\n - tix-doc-1:8.4.3-29.fc33.x86_64\n - libraqm-devel-0:0.7.0-6.fc33.aarch64\n - python3-tbb-0:2020.3-2.fc33.ppc64le\n - protobuf-devel-0:3.12.4-1.fc33.x86_64\n - suitesparse-static-0:5.4.0-5.fc33.i686\n - protobuf-0:3.12.4-1.fc33.armv7hl\n - flexiblas-openblas-openmp64-0:3.0.4-1.fc33.aarch64\n - tix-doc-1:8.4.3-29.fc33.armv7hl\n - gd-progs-0:2.3.0-3.fc33.x86_64\n - boost-program-options-0:1.73.0-9.fc33.aarch64\n - flexiblas-openblas-serial-0:3.0.4-1.fc33.ppc64le\n - gd-devel-0:2.3.0-3.fc33.s390x\n - xorg-x11-font-utils-1:7.5-47.fc33.i686\n - boost-date-time-0:1.73.0-9.fc33.i686\n - suitesparse-devel-0:5.4.0-5.fc33.s390x\n - boost-serialization-0:1.73.0-9.fc33.ppc64le\n - tix-devel-1:8.4.3-29.fc33.s390x\n - ghostscript-doc-0:9.53.3-4.fc33.noarch\n - boost-context-0:1.73.0-9.fc33.armv7hl\n - boost-container-0:1.73.0-9.fc33.i686\n - glibmm24-devel-0:2.64.5-3.fc33.x86_64\n - boost-iostreams-0:1.73.0-9.fc33.i686\n - gnome-desktop3-devel-0:3.38.4-1.fc33.ppc64le\n - flexiblas-hook-profile64-0:3.0.4-1.fc33.aarch64\n - openblas-threads-0:0.3.12-1.fc33.x86_64\n - boost-math-0:1.73.0-9.fc33.armv7hl\n - compat-wxGTK3-gtk2-0:3.0.5.1-2.fc33.s390x\n - libimagequant-0:2.12.6-3.fc33.armv7hl\n - ghostscript-x11-0:9.53.3-4.fc33.s390x\n - gsl-0:2.6-3.fc33.ppc64le\n - flexiblas-openblas-openmp64-0:3.0.4-1.fc33.ppc64le\n - boost-date-time-0:1.73.0-9.fc33.armv7hl\n - flexiblas-hook-profile-0:3.0.4-1.fc33.aarch64\n - ghostscript-tools-fonts-0:9.53.3-4.fc33.armv7hl\n - boost-devel-0:1.73.0-9.fc33.s390x\n - flatpak-rpm-macros-0:33-2.fc33.i686\n - geocode-glib-0:3.26.2-2.fc33.i686\n - libimagequant-0:2.12.6-3.fc33.s390x\n - wxGTK3-0:3.0.5.1-2.fc33.x86_64\n - suitesparse-0:5.4.0-5.fc33.aarch64\n - libical-glib-devel-0:3.0.9-1.fc33.x86_64\n - boost-atomic-0:1.73.0-9.fc33.s390x\n - boost-nowide-0:1.73.0-9.fc33.armv7hl\n - boost-program-options-0:1.73.0-9.fc33.i686\n - wxBase3-0:3.0.5.1-2.fc33.ppc64le\n - suitesparse64-devel-0:5.4.0-5.fc33.ppc64le\n - libmspack-0:0.10.1-0.4.alpha.fc33.ppc64le\n - gnome-online-accounts-devel-0:3.38.0-1.fc33.ppc64le\n - libdazzle-devel-0:3.38.0-1.fc33.armv7hl\n - libwmf-lite-0:0.2.12-4.fc33.s390x\n - libmspack-0:0.10.1-0.4.alpha.fc33.x86_64\n - SDL_image-0:1.2.12-25.fc33.i686\n - boost-fiber-0:1.73.0-9.fc33.s390x\n - libpaper-0:1.1.28-1.fc33.aarch64\n - poppler-glib-0:0.90.0-6.fc33.ppc64le\n - polkit-devel-0:0.117-2.fc33.s390x\n - suitesparse64-0:5.4.0-5.fc33.ppc64le\n - glew-devel-0:2.1.0-8.fc33.ppc64le\n - gtksourceview3-devel-0:3.24.11-4.fc33.x86_64\n - polkit-devel-0:0.117-2.fc33.aarch64\n - libfontenc-devel-0:1.1.3-13.fc33.armv7hl\n - jbig2dec-0:0.19-2.fc33.i686\n - libraqm-0:0.7.0-6.fc33.s390x\n - tbb-devel-0:2020.3-2.fc33.ppc64le\n - suitesparse64_-static-0:5.4.0-5.fc33.s390x\n - poppler-0:0.90.0-6.fc33.ppc64le\n - dbus-glib-0:0.110-10.fc33.i686\n - flexiblas-openblas-threads-0:3.0.4-1.fc33.aarch64\n - openblas-openmp64_-0:0.3.12-1.fc33.s390x\n - atkmm-doc-0:2.28.1-1.fc33.noarch\n - flexiblas-blis-openmp-0:3.0.4-1.fc33.i686\n - poppler-utils-0:0.90.0-6.fc33.s390x\n - ghostscript-x11-0:9.53.3-4.fc33.i686\n - tbb-0:2020.3-2.fc33.s390x\n - libdazzle-devel-0:3.38.0-1.fc33.ppc64le\n - flexiblas-atlas-0:3.0.4-1.fc33.x86_64\n - openblas-openmp-0:0.3.12-1.fc33.s390x\n - suitesparse64-static-0:5.4.0-5.fc33.aarch64\n - boost-build-0:1.73.0-9.fc33.noarch\n - urw-base35-bookman-fonts-0:20200910-2.fc33.noarch\n - startup-notification-devel-0:0.12-20.fc33.armv7hl\n - polkit-libs-0:0.117-2.fc33.ppc64le\n - suitesparse-devel-0:5.4.0-5.fc33.x86_64\n - gnome-online-accounts-0:3.38.0-1.fc33.ppc64le\n - startup-notification-0:0.12-20.fc33.x86_64\n - wxGTK3-devel-0:3.0.5.1-2.fc33.aarch64\n - libsigc++20-0:2.10.6-1.fc33.x86_64\n - xorg-x11-font-utils-1:7.5-47.fc33.armv7hl\n - boost-doc-0:1.73.0-9.fc33.armv7hl\n - SDL_image-devel-0:1.2.12-25.fc33.s390x\n - boost-0:1.73.0-9.fc33.x86_64\n - libical-devel-0:3.0.9-1.fc33.armv7hl\n - ghostscript-gtk-0:9.53.3-4.fc33.ppc64le\n - protobuf-devel-0:3.12.4-1.fc33.i686\n - libsigc++20-devel-0:2.10.6-1.fc33.ppc64le\n - libphonenumber-devel-0:8.12.11-1.fc33.ppc64le\n - poppler-devel-0:0.90.0-6.fc33.s390x\n - libdazzle-devel-0:3.38.0-1.fc33.aarch64\n - libpeas-0:1.28.0-1.fc33.aarch64\n - gnome-online-accounts-0:3.38.0-1.fc33.aarch64\n - gtkmm30-0:3.24.3-1.fc33.x86_64\n - gspell-0:1.8.4-1.fc33.ppc64le\n - tk-1:8.6.10-5.fc33.i686\n - evolution-data-server-perl-0:3.38.4-1.fc33.ppc64le\n - gd-0:2.3.0-3.fc33.i686\n - flexiblas-hook-profile64-0:3.0.4-1.fc33.ppc64le\n - OpenEXR-devel-0:2.3.0-6.fc33.aarch64\n - libgs-devel-0:9.53.3-4.fc33.ppc64le\n - openblas-openmp64_-0:0.3.12-1.fc33.aarch64\n - OpenEXR-libs-0:2.3.0-6.fc33.s390x\n - libphonenumber-devel-0:8.12.11-1.fc33.x86_64\n - boost-fiber-0:1.73.0-9.fc33.armv7hl\n - wxGTK3-media-0:3.0.5.1-2.fc33.i686\n - protobuf-devel-0:3.12.4-1.fc33.ppc64le\n - SDL_image-0:1.2.12-25.fc33.x86_64\n - protobuf-bom-0:3.12.4-1.fc33.noarch\n - tbb-devel-0:2020.3-2.fc33.aarch64\n - flexiblas-netlib64-0:3.0.4-1.fc33.ppc64le\n - boost-thread-0:1.73.0-9.fc33.i686\n - evolution-data-server-perl-0:3.38.4-1.fc33.aarch64\n - compat-wxGTK3-gtk2-gl-0:3.0.5.1-2.fc33.x86_64\n - libidn-devel-0:1.36-1.fc33.armv7hl\n - flexiblas-blis-serial64-0:3.0.4-1.fc33.ppc64le\n - libphonenumber-devel-0:8.12.11-1.fc33.armv7hl\n - ghostscript-x11-0:9.53.3-4.fc33.ppc64le\n - libwmf-devel-0:0.2.12-4.fc33.i686\n - libsigc++20-devel-0:2.10.6-1.fc33.armv7hl\n - libmspack-0:0.10.1-0.4.alpha.fc33.aarch64\n - tk-1:8.6.10-5.fc33.s390x\n - liboauth-0:1.0.3-15.fc33.x86_64\n - libijs-0:0.35-12.fc33.i686\n - libdazzle-0:3.38.0-1.fc33.i686\n - gnome-online-accounts-devel-0:3.38.0-1.fc33.x86_64\n - tbb-doc-0:2020.3-2.fc33.i686\n - libgweather-devel-0:3.36.1-3.fc33.ppc64le\n - evolution-data-server-devel-0:3.38.4-1.fc33.aarch64\n - OpenEXR-devel-0:2.3.0-6.fc33.i686\n - openblas-0:0.3.12-1.fc33.ppc64le\n - gd-devel-0:2.3.0-3.fc33.x86_64\n - boost-b2-0:1.73.0-9.fc33.s390x\n - gnome-desktop3-0:3.38.4-1.fc33.s390x\n - libidn-0:1.36-1.fc33.ppc64le\n - libpeas-0:1.28.0-1.fc33.armv7hl\n - gnome-online-accounts-0:3.38.0-1.fc33.i686\n - openjpeg2-tools-0:2.3.1-10.fc33.x86_64\n - libpaper-devel-0:1.1.28-1.fc33.ppc64le\n - evolution-data-server-0:3.38.4-1.fc33.ppc64le\n - wxBase3-devel-0:3.0.5.1-2.fc33.s390x\n - jbig2dec-devel-0:0.19-2.fc33.aarch64\n - protobuf-java-0:3.12.4-1.fc33.noarch\n - wxGTK3-devel-0:3.0.5.1-2.fc33.x86_64\n - polkit-devel-0:0.117-2.fc33.x86_64\n - opengl-games-utils-0:0.2-18.fc33.noarch\n - compat-wxGTK3-gtk2-devel-0:3.0.5.1-2.fc33.x86_64\n - libijs-devel-0:0.35-12.fc33.x86_64\n - boost-0:1.73.0-9.fc33.ppc64le\n - gspell-0:1.8.4-1.fc33.i686\n - suitesparse64_-static-0:5.4.0-5.fc33.x86_64\n - boost-atomic-0:1.73.0-9.fc33.i686\n - poppler-cpp-devel-0:0.90.0-6.fc33.i686\n - suitesparse64-static-0:5.4.0-5.fc33.x86_64\n - poppler-0:0.90.0-6.fc33.i686\n - poppler-0:0.90.0-6.fc33.armv7hl\n - boost-stacktrace-0:1.73.0-9.fc33.armv7hl\n - gnome-desktop3-tests-0:3.38.4-1.fc33.s390x\n - gnome-online-accounts-devel-0:3.38.0-1.fc33.i686\n - boost-numpy3-0:1.73.0-9.fc33.aarch64\n - tcl-1:8.6.10-5.fc33.x86_64\n - flexiblas-0:3.0.4-1.fc33.ppc64le\n - compat-wxGTK3-gtk2-devel-0:3.0.5.1-2.fc33.i686\n - openblas-openmp64_-0:0.3.12-1.fc33.x86_64\n - boost-math-0:1.73.0-9.fc33.x86_64\n - boost-iostreams-0:1.73.0-9.fc33.aarch64\n - glew-devel-0:2.1.0-8.fc33.x86_64\n - gsl-0:2.6-3.fc33.i686\n - OpenEXR-doc-0:2.3.0-6.fc33.armv7hl\n - SDL-0:1.2.15-45.fc33.x86_64\n - protobuf-compiler-0:3.12.4-1.fc33.aarch64\n - suitesparse-0:5.4.0-5.fc33.armv7hl\n - poppler-qt5-devel-0:0.90.0-6.fc33.i686\n - dbus-glib-devel-0:0.110-10.fc33.s390x\n - libpaper-0:1.1.28-1.fc33.i686\n - compat-wxGTK3-gtk2-devel-0:3.0.5.1-2.fc33.armv7hl\n - gd-0:2.3.0-3.fc33.s390x\n - atkmm-0:2.28.1-1.fc33.aarch64\n - liboauth-devel-0:1.0.3-15.fc33.ppc64le\n - suitesparse-0:5.4.0-5.fc33.ppc64le\n - libraqm-0:0.7.0-6.fc33.x86_64\n - compat-wxGTK3-gtk2-media-0:3.0.5.1-2.fc33.s390x\n - flexiblas-0:3.0.4-1.fc33.x86_64\n - flexiblas-devel-0:3.0.4-1.fc33.i686\n - startup-notification-devel-0:0.12-20.fc33.ppc64le\n - suitesparse-static-0:5.4.0-5.fc33.ppc64le\n - gtkmm30-devel-0:3.24.3-1.fc33.s390x\n - openblas-openmp64_-0:0.3.12-1.fc33.ppc64le\n - startup-notification-0:0.12-20.fc33.ppc64le\n - suitesparse-static-0:5.4.0-5.fc33.x86_64\n - python3-tbb-0:2020.3-2.fc33.i686\n - boost-contract-0:1.73.0-9.fc33.ppc64le\n - flexiblas-blis-openmp-0:3.0.4-1.fc33.x86_64\n - cairomm-doc-0:1.12.2-4.fc33.noarch\n - ghostscript-gtk-0:9.53.3-4.fc33.x86_64\n - flexiblas-openblas-openmp-0:3.0.4-1.fc33.i686\n - protobuf-compiler-0:3.12.4-1.fc33.x86_64\n - libmspack-devel-0:0.10.1-0.4.alpha.fc33.x86_64\n - suitesparse64_-0:5.4.0-5.fc33.x86_64\n - gtksourceview3-0:3.24.11-4.fc33.armv7hl\n - tix-doc-1:8.4.3-29.fc33.i686\n - boost-thread-0:1.73.0-9.fc33.aarch64\n - gspell-0:1.8.4-1.fc33.x86_64\n - poppler-glib-devel-0:0.90.0-6.fc33.armv7hl\n - boost-examples-0:1.73.0-9.fc33.x86_64\n - boost-static-0:1.73.0-9.fc33.i686\n - gnome-desktop3-devel-0:3.38.4-1.fc33.i686\n - libical-glib-doc-0:3.0.9-1.fc33.noarch\n - SDL_image-0:1.2.12-25.fc33.aarch64\n - protobuf-lite-devel-0:3.12.4-1.fc33.i686\n - gd-devel-0:2.3.0-3.fc33.ppc64le\n - protobuf-javalite-0:3.12.4-1.fc33.noarch\n - poppler-cpp-devel-0:0.90.0-6.fc33.ppc64le\n - libwmf-lite-0:0.2.12-4.fc33.x86_64\n - gspell-0:1.8.4-1.fc33.aarch64\n - dbus-glib-0:0.110-10.fc33.s390x\n - geocode-glib-devel-0:3.26.2-2.fc33.i686\n - libpaper-devel-0:1.1.28-1.fc33.i686\n - suitesparse64_-devel-0:5.4.0-5.fc33.s390x\n - startup-notification-devel-0:0.12-20.fc33.x86_64\n - libsigc++20-doc-0:2.10.6-1.fc33.noarch\n - flexiblas-netlib64-0:3.0.4-1.fc33.x86_64\n - atkmm-0:2.28.1-1.fc33.armv7hl\n - tix-1:8.4.3-29.fc33.x86_64\n - wxGTK3-webview-0:3.0.5.1-2.fc33.ppc64le\n - libdazzle-0:3.38.0-1.fc33.aarch64\n - suitesparse-0:5.4.0-5.fc33.s390x\n - tcl-devel-1:8.6.10-5.fc33.ppc64le\n - boost-wave-0:1.73.0-9.fc33.i686\n - protobuf-lite-devel-0:3.12.4-1.fc33.aarch64\n - gsound-devel-0:1.0.2-12.fc33.aarch64\n - boost-locale-0:1.73.0-9.fc33.x86_64\n - libraqm-0:0.7.0-6.fc33.armv7hl\n - jbig2dec-0:0.19-2.fc33.ppc64le\n - boost-python3-0:1.73.0-9.fc33.x86_64\n - boost-program-options-0:1.73.0-9.fc33.s390x\n - libpeas-0:1.28.0-1.fc33.s390x\n - gd-0:2.3.0-3.fc33.aarch64\n - boost-examples-0:1.73.0-9.fc33.armv7hl\n - boost-math-0:1.73.0-9.fc33.ppc64le\n - libgdata-0:0.17.13-1.fc33.s390x\n - boost-container-0:1.73.0-9.fc33.ppc64le\n - wxGTK3-media-0:3.0.5.1-2.fc33.aarch64\n - tix-devel-1:8.4.3-29.fc33.aarch64\n - openblas-0:0.3.12-1.fc33.x86_64\n - ghostscript-core-0:9.53.3-4.fc33.s390x\n - flatpak-runtime-config-0:33-1.fc33.ppc64le\n - libimagequant-devel-0:2.12.6-3.fc33.armv7hl\n - libical-0:3.0.9-1.fc33.s390x\n - openblas-static-0:0.3.12-1.fc33.s390x\n - flexiblas-hook-profile-0:3.0.4-1.fc33.i686\n - glibmm24-0:2.64.5-3.fc33.aarch64\n - gtkmm30-devel-0:3.24.3-1.fc33.armv7hl\n - boost-nowide-0:1.73.0-9.fc33.x86_64\n - openjpeg2-devel-0:2.3.1-10.fc33.aarch64\n - libimagequant-0:2.12.6-3.fc33.ppc64le\n - libical-glib-0:3.0.9-1.fc33.i686\n - gtksourceview3-devel-0:3.24.11-4.fc33.aarch64\n - suitesparse-static-0:5.4.0-5.fc33.aarch64\n - libpeas-gtk-0:1.28.0-1.fc33.armv7hl\n - libhandy1-0:1.0.3-1.fc33.aarch64\n - libmspack-0:0.10.1-0.4.alpha.fc33.i686\n - libhandy1-devel-0:1.0.3-1.fc33.armv7hl\n - boost-log-0:1.73.0-9.fc33.s390x\n - openjpeg2-tools-0:2.3.1-10.fc33.s390x\n - OpenEXR-devel-0:2.3.0-6.fc33.s390x\n - gspell-devel-0:1.8.4-1.fc33.s390x\n - pangomm-0:2.42.2-1.fc33.s390x\n - compat-wxGTK3-gtk2-media-0:3.0.5.1-2.fc33.i686\n - flexiblas-openblas-openmp-0:3.0.4-1.fc33.aarch64\n - boost-chrono-0:1.73.0-9.fc33.x86_64\n - cairomm-devel-0:1.12.2-4.fc33.armv7hl\n - libidn-devel-0:1.36-1.fc33.ppc64le\n - pangomm-devel-0:2.42.2-1.fc33.armv7hl\n - boost-locale-0:1.73.0-9.fc33.armv7hl\n - libhandy1-devel-0:1.0.3-1.fc33.x86_64\n - gd-0:2.3.0-3.fc33.ppc64le\n - libhandy1-0:1.0.3-1.fc33.armv7hl\n - libgdata-devel-0:0.17.13-1.fc33.x86_64\n - tix-1:8.4.3-29.fc33.i686\n - jbig2dec-devel-0:0.19-2.fc33.i686\n - ghostscript-tools-printing-0:9.53.3-4.fc33.ppc64le\n - polkit-0:0.117-2.fc33.i686\n - libfontenc-devel-0:1.1.3-13.fc33.x86_64\n - dbus-glib-0:0.110-10.fc33.ppc64le\n - geocode-glib-devel-0:3.26.2-2.fc33.armv7hl\n - poppler-glib-devel-0:0.90.0-6.fc33.ppc64le\n - gsl-0:2.6-3.fc33.x86_64\n - tix-doc-1:8.4.3-29.fc33.s390x\n - suitesparse64_-devel-0:5.4.0-5.fc33.x86_64\n - cairomm-devel-0:1.12.2-4.fc33.aarch64\n - libdazzle-devel-0:3.38.0-1.fc33.i686\n - openblas-openmp-0:0.3.12-1.fc33.armv7hl\n - exiv2-0:0.27.3-4.fc33.armv7hl\n - poppler-cpp-0:0.90.0-6.fc33.aarch64\n - boost-test-0:1.73.0-9.fc33.x86_64\n - boost-static-0:1.73.0-9.fc33.s390x\n - gnome-online-accounts-0:3.38.0-1.fc33.s390x\n - gsound-devel-0:1.0.2-12.fc33.x86_64\n - boost-contract-0:1.73.0-9.fc33.x86_64\n - compat-wxGTK3-gtk2-media-0:3.0.5.1-2.fc33.x86_64\n - cairomm-0:1.12.2-4.fc33.i686\n - libijs-0:0.35-12.fc33.ppc64le\n - boost-doctools-0:1.73.0-9.fc33.armv7hl\n - libfontenc-0:1.1.3-13.fc33.aarch64\n - libijs-devel-0:0.35-12.fc33.ppc64le\n - poppler-cpp-devel-0:0.90.0-6.fc33.x86_64\n - gsl-devel-0:2.6-3.fc33.x86_64\n - flatpak-runtime-config-0:33-1.fc33.s390x\n - flexiblas-blis-openmp64-0:3.0.4-1.fc33.s390x\n - libical-glib-devel-0:3.0.9-1.fc33.s390x\n - gsound-devel-0:1.0.2-12.fc33.i686\n - compat-wxGTK3-gtk2-0:3.0.5.1-2.fc33.armv7hl\n - suitesparse-doc-0:5.4.0-5.fc33.noarch\n - boost-graph-0:1.73.0-9.fc33.x86_64\n - boost-static-0:1.73.0-9.fc33.ppc64le\n - libical-0:3.0.9-1.fc33.x86_64\n - openblas-devel-0:0.3.12-1.fc33.i686\n - boost-atomic-0:1.73.0-9.fc33.aarch64\n - exiv2-devel-0:0.27.3-4.fc33.armv7hl\n - gd-progs-0:2.3.0-3.fc33.s390x\n - poppler-glib-devel-0:0.90.0-6.fc33.i686\n - libical-glib-devel-0:3.0.9-1.fc33.i686\n - ghostscript-0:9.53.3-4.fc33.x86_64\n - startup-notification-devel-0:0.12-20.fc33.i686\n - poppler-qt-devel-0:0.90.0-6.fc33.armv7hl\n - boost-test-0:1.73.0-9.fc33.s390x\n - libpeas-devel-0:1.28.0-1.fc33.x86_64\n - libmspack-devel-0:0.10.1-0.4.alpha.fc33.s390x\n - libijs-devel-0:0.35-12.fc33.s390x\n - protobuf-devel-0:3.12.4-1.fc33.aarch64\n - boost-context-0:1.73.0-9.fc33.aarch64\n - compat-wxGTK3-gtk2-devel-0:3.0.5.1-2.fc33.s390x\n - protobuf-java-util-0:3.12.4-1.fc33.noarch\n - SDL-static-0:1.2.15-45.fc33.x86_64\n - exiv2-0:0.27.3-4.fc33.aarch64\n - boost-filesystem-0:1.73.0-9.fc33.i686\n - google-droid-sans-fonts-0:20200215-8.fc33.noarch\n - openblas-openmp64-0:0.3.12-1.fc33.aarch64\n - flexiblas-netlib-0:3.0.4-1.fc33.ppc64le\n - libical-devel-0:3.0.9-1.fc33.i686\n - jbig2dec-0:0.19-2.fc33.s390x\n - flexiblas-netlib64-0:3.0.4-1.fc33.s390x\n - boost-stacktrace-0:1.73.0-9.fc33.ppc64le\n - libgdata-0:0.17.13-1.fc33.i686\n - poppler-qt5-devel-0:0.90.0-6.fc33.ppc64le\n - protobuf-lite-0:3.12.4-1.fc33.armv7hl\n - flatpak-rpm-macros-0:33-2.fc33.aarch64\n - boost-coroutine-0:1.73.0-9.fc33.ppc64le\n - evolution-data-server-perl-0:3.38.4-1.fc33.armv7hl\n - boost-system-0:1.73.0-9.fc33.x86_64\n - exiv2-doc-0:0.27.3-4.fc33.noarch\n - flexiblas-openblas-serial-0:3.0.4-1.fc33.aarch64\n - OpenEXR-libs-0:2.3.0-6.fc33.i686\n - protobuf-javadoc-0:3.12.4-1.fc33.noarch\n - gsound-devel-0:1.0.2-12.fc33.ppc64le\n - libpeas-loader-python3-0:1.28.0-1.fc33.x86_64\n - boost-wave-0:1.73.0-9.fc33.aarch64\n - libwmf-0:0.2.12-4.fc33.i686\n - boost-coroutine-0:1.73.0-9.fc33.x86_64\n - dbus-glib-0:0.110-10.fc33.x86_64\n - wxGTK3-webview-0:3.0.5.1-2.fc33.i686\n - ilmbase-devel-0:2.3.0-5.fc33.s390x\n - boost-chrono-0:1.73.0-9.fc33.s390x\n - SDL-devel-0:1.2.15-45.fc33.aarch64\n - ghostscript-x11-0:9.53.3-4.fc33.armv7hl\n - libfontenc-devel-0:1.1.3-13.fc33.i686\n - poppler-glib-0:0.90.0-6.fc33.i686\n - gsl-devel-0:2.6-3.fc33.s390x\n - openblas-openmp-0:0.3.12-1.fc33.i686\n - boost-contract-0:1.73.0-9.fc33.s390x\n - tcl-1:8.6.10-5.fc33.s390x\n - glibmm24-devel-0:2.64.5-3.fc33.s390x\n - glew-0:2.1.0-8.fc33.aarch64\n - boost-container-0:1.73.0-9.fc33.armv7hl\n - exiv2-devel-0:0.27.3-4.fc33.x86_64\n - flexiblas-hook-profile-0:3.0.4-1.fc33.ppc64le\n - gnome-online-accounts-0:3.38.0-1.fc33.armv7hl\n - flexiblas-blis-openmp-0:3.0.4-1.fc33.ppc64le\n - gspell-0:1.8.4-1.fc33.s390x\n - protobuf-0:3.12.4-1.fc33.ppc64le\n - boost-fiber-0:1.73.0-9.fc33.i686\n - urw-base35-z003-fonts-0:20200910-2.fc33.noarch\n - ilmbase-devel-0:2.3.0-5.fc33.armv7hl\n - boost-stacktrace-0:1.73.0-9.fc33.i686\n - ghostscript-0:9.53.3-4.fc33.s390x\n - libgweather-devel-0:3.36.1-3.fc33.s390x\n - libdazzle-0:3.38.0-1.fc33.armv7hl\n - OpenEXR-libs-0:2.3.0-6.fc33.armv7hl\n - poppler-qt5-devel-0:0.90.0-6.fc33.s390x\n - openjpeg2-0:2.3.1-10.fc33.armv7hl\n - evolution-data-server-perl-0:3.38.4-1.fc33.x86_64\n - openjpeg2-devel-0:2.3.1-10.fc33.x86_64\n - libgdata-0:0.17.13-1.fc33.armv7hl\n - openblas-openmp64-0:0.3.12-1.fc33.x86_64\n - boost-doc-0:1.73.0-9.fc33.ppc64le\n - flexiblas-netlib-0:3.0.4-1.fc33.s390x\n - poppler-qt-devel-0:0.90.0-6.fc33.s390x\n - boost-wave-0:1.73.0-9.fc33.armv7hl\n - boost-wave-0:1.73.0-9.fc33.x86_64\n - boost-date-time-0:1.73.0-9.fc33.aarch64\n - gtksourceview3-tests-0:3.24.11-4.fc33.ppc64le\n - exiv2-devel-0:0.27.3-4.fc33.i686\n - geocode-glib-devel-0:3.26.2-2.fc33.x86_64\n - libgweather-devel-0:3.36.1-3.fc33.x86_64\n - tix-1:8.4.3-29.fc33.ppc64le\n - tbb-doc-0:2020.3-2.fc33.s390x\n - boost-chrono-0:1.73.0-9.fc33.armv7hl\n - tbb-0:2020.3-2.fc33.armv7hl\n - pangomm-devel-0:2.42.2-1.fc33.i686\n - poppler-qt5-0:0.90.0-6.fc33.ppc64le\n - libphonenumber-0:8.12.11-1.fc33.armv7hl\n - compat-wxGTK3-gtk2-gl-0:3.0.5.1-2.fc33.aarch64\n - OpenEXR-devel-0:2.3.0-6.fc33.x86_64\n - boost-iostreams-0:1.73.0-9.fc33.s390x\n - suitesparse64_-static-0:5.4.0-5.fc33.aarch64\n - gnome-desktop3-tests-0:3.38.4-1.fc33.x86_64\n - boost-b2-0:1.73.0-9.fc33.x86_64\n - wxGTK3-0:3.0.5.1-2.fc33.s390x\n - ghostscript-tools-dvipdf-0:9.53.3-4.fc33.x86_64\n - openjpeg2-tools-0:2.3.1-10.fc33.armv7hl\n - boost-thread-0:1.73.0-9.fc33.ppc64le\n - libwmf-devel-0:0.2.12-4.fc33.x86_64\n - suitesparse-0:5.4.0-5.fc33.x86_64\n - evolution-data-server-0:3.38.4-1.fc33.aarch64\n - compat-wxGTK3-gtk2-0:3.0.5.1-2.fc33.i686\n - glew-0:2.1.0-8.fc33.i686\n - gtksourceview3-0:3.24.11-4.fc33.ppc64le\n - geocode-glib-0:3.26.2-2.fc33.aarch64\n - compat-wxGTK3-gtk2-devel-0:3.0.5.1-2.fc33.aarch64\n - flexiblas-openblas-openmp64-0:3.0.4-1.fc33.x86_64\n - flexiblas-blis-serial-0:3.0.4-1.fc33.aarch64\n - poppler-qt-0:0.90.0-6.fc33.s390x\n - boost-container-0:1.73.0-9.fc33.s390x\n - polkit-libs-0:0.117-2.fc33.i686\n - wxBase3-0:3.0.5.1-2.fc33.i686\n - gnome-desktop3-devel-0:3.38.4-1.fc33.aarch64\n - ilmbase-devel-0:2.3.0-5.fc33.x86_64\n - gtksourceview3-devel-0:3.24.11-4.fc33.ppc64le\n - ghostscript-gtk-0:9.53.3-4.fc33.aarch64\n - tcl-devel-1:8.6.10-5.fc33.x86_64\n - ghostscript-tools-printing-0:9.53.3-4.fc33.x86_64\n - gsl-0:2.6-3.fc33.aarch64\n - atkmm-devel-0:2.28.1-1.fc33.armv7hl\n - boost-log-0:1.73.0-9.fc33.ppc64le\n - libgdata-devel-0:0.17.13-1.fc33.aarch64\n - libhandy1-0:1.0.3-1.fc33.s390x\n - SDL_image-devel-0:1.2.12-25.fc33.x86_64\n - SDL-static-0:1.2.15-45.fc33.aarch64\n - poppler-glib-devel-0:0.90.0-6.fc33.aarch64\n - exiv2-devel-0:0.27.3-4.fc33.s390x\n - boost-locale-0:1.73.0-9.fc33.ppc64le\n - poppler-glib-doc-0:0.90.0-6.fc33.noarch\n - libmspack-devel-0:0.10.1-0.4.alpha.fc33.armv7hl\n - compat-wxGTK3-gtk2-0:3.0.5.1-2.fc33.ppc64le\n - OpenEXR-0:2.3.0-6.fc33.aarch64\n - gnome-online-accounts-devel-0:3.38.0-1.fc33.armv7hl\n - evolution-data-server-0:3.38.4-1.fc33.i686\n - liboauth-0:1.0.3-15.fc33.ppc64le\n - flexiblas-devel-0:3.0.4-1.fc33.ppc64le\n - glibmm24-0:2.64.5-3.fc33.armv7hl\n - boost-stacktrace-0:1.73.0-9.fc33.s390x\n - libpeas-devel-0:1.28.0-1.fc33.ppc64le\n - google-droid-serif-fonts-0:20200215-8.fc33.noarch\n - gsl-0:2.6-3.fc33.armv7hl\n - jbig2dec-devel-0:0.19-2.fc33.x86_64\n - libical-devel-0:3.0.9-1.fc33.x86_64\n - glibmm24-0:2.64.5-3.fc33.ppc64le\n - libwmf-devel-0:0.2.12-4.fc33.s390x\n - protobuf-compiler-0:3.12.4-1.fc33.s390x\n - gtksourceview3-devel-0:3.24.11-4.fc33.s390x\n - boost-context-0:1.73.0-9.fc33.i686\n - flexiblas-blis-threads-0:3.0.4-1.fc33.x86_64\n - libsigc++20-0:2.10.6-1.fc33.armv7hl\n - boost-iostreams-0:1.73.0-9.fc33.x86_64\n - jbig2dec-libs-0:0.19-2.fc33.s390x\n - ghostscript-0:9.53.3-4.fc33.ppc64le\n - xorg-x11-font-utils-1:7.5-47.fc33.x86_64\n - jbig2dec-libs-0:0.19-2.fc33.armv7hl\n - flatpak-rpm-macros-0:33-2.fc33.s390x\n - ghostscript-tools-fonts-0:9.53.3-4.fc33.x86_64\n - gnome-desktop3-devel-0:3.38.4-1.fc33.armv7hl\n - boost-random-0:1.73.0-9.fc33.aarch64\n - poppler-qt5-devel-0:0.90.0-6.fc33.x86_64\n - urw-base35-nimbus-mono-ps-fonts-0:20200910-2.fc33.noarch\n - ilmbase-0:2.3.0-5.fc33.x86_64\n - flexiblas-atlas-0:3.0.4-1.fc33.aarch64\n - libfontenc-devel-0:1.1.3-13.fc33.aarch64\n - tcl-devel-1:8.6.10-5.fc33.i686\n - poppler-glib-devel-0:0.90.0-6.fc33.s390x\n - openblas-openmp-0:0.3.12-1.fc33.x86_64\n - libgweather-0:3.36.1-3.fc33.x86_64\n - flexiblas-blis-serial64-0:3.0.4-1.fc33.x86_64\n - libpeas-devel-0:1.28.0-1.fc33.s390x\n - libgdata-0:0.17.13-1.fc33.ppc64le\n - openblas-devel-0:0.3.12-1.fc33.aarch64\n - glibmm24-0:2.64.5-3.fc33.s390x\n - tix-1:8.4.3-29.fc33.armv7hl\n - boost-contract-0:1.73.0-9.fc33.i686\n - libmspack-devel-0:0.10.1-0.4.alpha.fc33.aarch64\n - gnome-desktop3-0:3.38.4-1.fc33.i686\n - ghostscript-x11-0:9.53.3-4.fc33.x86_64\n - exiv2-libs-0:0.27.3-4.fc33.aarch64\n - pangomm-0:2.42.2-1.fc33.armv7hl\n - boost-doctools-0:1.73.0-9.fc33.x86_64\n - boost-stacktrace-0:1.73.0-9.fc33.aarch64\n - tix-doc-1:8.4.3-29.fc33.ppc64le\n - gtkmm30-doc-0:3.24.3-1.fc33.noarch\n - compat-wxGTK3-gtk2-0:3.0.5.1-2.fc33.x86_64\n - exiv2-0:0.27.3-4.fc33.x86_64\n - tbb-0:2020.3-2.fc33.ppc64le\n - boost-serialization-0:1.73.0-9.fc33.armv7hl\n - protobuf-lite-0:3.12.4-1.fc33.aarch64\n - libpaper-devel-0:1.1.28-1.fc33.s390x\n - wxBase3-devel-0:3.0.5.1-2.fc33.x86_64\n - openblas-0:0.3.12-1.fc33.s390x\n - openblas-devel-0:0.3.12-1.fc33.ppc64le\n - boost-numpy3-0:1.73.0-9.fc33.armv7hl\n - python2.7-0:2.7.18-8.fc33.ppc64le\n - flexiblas-netlib-0:3.0.4-1.fc33.armv7hl\n - SDL_image-devel-0:1.2.12-25.fc33.aarch64\n - tix-doc-1:8.4.3-29.fc33.aarch64\n - evolution-data-server-tests-0:3.38.4-1.fc33.x86_64\n - ilmbase-0:2.3.0-5.fc33.armv7hl\n - ghostscript-core-0:9.53.3-4.fc33.i686\n - glibmm24-devel-0:2.64.5-3.fc33.armv7hl\n - atkmm-devel-0:2.28.1-1.fc33.ppc64le\n - tcl-doc-1:8.6.10-5.fc33.noarch\n - boost-doctools-0:1.73.0-9.fc33.i686\n - boost-fiber-0:1.73.0-9.fc33.aarch64\n - atkmm-0:2.28.1-1.fc33.i686\n - flexiblas-openblas-openmp-0:3.0.4-1.fc33.ppc64le\n - boost-system-0:1.73.0-9.fc33.s390x\n - ilmbase-devel-0:2.3.0-5.fc33.aarch64\n - boost-regex-0:1.73.0-9.fc33.s390x\n - gtksourceview3-tests-0:3.24.11-4.fc33.armv7hl\n - OpenEXR-libs-0:2.3.0-6.fc33.aarch64\n - poppler-qt-0:0.90.0-6.fc33.x86_64\n - exiv2-libs-0:0.27.3-4.fc33.i686\n - openblas-static-0:0.3.12-1.fc33.ppc64le\n - protobuf-lite-static-0:3.12.4-1.fc33.s390x\n - libijs-0:0.35-12.fc33.aarch64\n - boost-log-0:1.73.0-9.fc33.i686\n - gtksourceview3-tests-0:3.24.11-4.fc33.x86_64\n - exiv2-0:0.27.3-4.fc33.ppc64le\n - ilmbase-0:2.3.0-5.fc33.s390x\n - libgs-devel-0:9.53.3-4.fc33.aarch64\n - ghostscript-tools-dvipdf-0:9.53.3-4.fc33.s390x\n - libpeas-0:1.28.0-1.fc33.i686\n - openjpeg2-devel-0:2.3.1-10.fc33.s390x\n - boost-devel-0:1.73.0-9.fc33.i686\n - gnome-desktop3-0:3.38.4-1.fc33.ppc64le\n - glibmm24-devel-0:2.64.5-3.fc33.aarch64\n - python3-protobuf-0:3.12.4-1.fc33.noarch\n - flatpak-rpm-macros-0:33-2.fc33.ppc64le\n - protobuf-lite-static-0:3.12.4-1.fc33.armv7hl\n - openblas-openmp-0:0.3.12-1.fc33.ppc64le\n - boost-devel-0:1.73.0-9.fc33.ppc64le\n - tix-devel-1:8.4.3-29.fc33.ppc64le\n - startup-notification-0:0.12-20.fc33.s390x\n - libpeas-loader-python3-0:1.28.0-1.fc33.aarch64\n - libpeas-loader-python3-0:1.28.0-1.fc33.s390x\n - libphonenumber-0:8.12.11-1.fc33.s390x\n - libical-devel-0:3.0.9-1.fc33.ppc64le\n - OpenEXR-devel-0:2.3.0-6.fc33.ppc64le\n - SDL_image-0:1.2.12-25.fc33.armv7hl\n - polkit-0:0.117-2.fc33.ppc64le\n - poppler-data-0:0.4.9-6.fc33.noarch\n - poppler-utils-0:0.90.0-6.fc33.x86_64\n - pangomm-devel-0:2.42.2-1.fc33.s390x\n - flexiblas-devel-0:3.0.4-1.fc33.aarch64\n - libGLEW-0:2.1.0-8.fc33.s390x\n - wxGTK3-gl-0:3.0.5.1-2.fc33.ppc64le\n - liboauth-devel-0:1.0.3-15.fc33.x86_64\n - exiv2-libs-0:0.27.3-4.fc33.armv7hl\n - wxGTK3-webview-0:3.0.5.1-2.fc33.x86_64\n - pangomm-devel-0:2.42.2-1.fc33.aarch64\n - gd-devel-0:2.3.0-3.fc33.aarch64\n - openblas-threads64-0:0.3.12-1.fc33.aarch64\n - SDL-static-0:1.2.15-45.fc33.s390x\n - evolution-data-server-tests-0:3.38.4-1.fc33.armv7hl\n - protobuf-lite-0:3.12.4-1.fc33.s390x\n - wxGTK3-gl-0:3.0.5.1-2.fc33.x86_64\n - libraqm-devel-0:0.7.0-6.fc33.ppc64le\n - flexiblas-openblas-threads64-0:3.0.4-1.fc33.s390x\n - exiv2-libs-0:0.27.3-4.fc33.s390x\n - protobuf-static-0:3.12.4-1.fc33.x86_64\n - flexiblas-hook-profile-0:3.0.4-1.fc33.s390x\n - libpaper-0:1.1.28-1.fc33.s390x\n - libgweather-devel-0:3.36.1-3.fc33.i686\n - boost-python3-0:1.73.0-9.fc33.aarch64\n - wxGTK3-devel-0:3.0.5.1-2.fc33.armv7hl\n - flexiblas-hook-profile64-0:3.0.4-1.fc33.x86_64\n - openjpeg2-devel-docs-0:2.3.1-10.fc33.noarch\n - suitesparse64-0:5.4.0-5.fc33.aarch64\n - gnome-desktop3-devel-0:3.38.4-1.fc33.s390x\n - libphonenumber-devel-0:8.12.11-1.fc33.i686\n - poppler-qt-devel-0:0.90.0-6.fc33.x86_64\n - flexiblas-blis-serial-0:3.0.4-1.fc33.s390x\n - jbig2dec-0:0.19-2.fc33.x86_64\n - geocode-glib-0:3.26.2-2.fc33.armv7hl\n - protobuf-devel-0:3.12.4-1.fc33.armv7hl\n - libidn-devel-0:1.36-1.fc33.x86_64\n - flexiblas-blis-serial-0:3.0.4-1.fc33.x86_64\n - libsigc++20-devel-0:2.10.6-1.fc33.x86_64\n - protobuf-lite-0:3.12.4-1.fc33.x86_64\n - gnome-online-accounts-devel-0:3.38.0-1.fc33.s390x\n - boost-coroutine-0:1.73.0-9.fc33.aarch64\n - gtksourceview3-0:3.24.11-4.fc33.aarch64\n - gtkmm30-devel-0:3.24.3-1.fc33.ppc64le\n - openblas-devel-0:0.3.12-1.fc33.armv7hl\n - boost-thread-0:1.73.0-9.fc33.s390x\n - tbb-devel-0:2020.3-2.fc33.armv7hl\n - protobuf-lite-devel-0:3.12.4-1.fc33.s390x\n - OpenEXR-0:2.3.0-6.fc33.ppc64le\n - libraqm-0:0.7.0-6.fc33.i686\n - boost-container-0:1.73.0-9.fc33.aarch64\n - gsl-0:2.6-3.fc33.s390x\n - boost-numpy3-0:1.73.0-9.fc33.i686\n - boost-0:1.73.0-9.fc33.aarch64\n - libijs-0:0.35-12.fc33.x86_64\n - SDL_image-devel-0:1.2.12-25.fc33.armv7hl\n - dbus-glib-devel-0:0.110-10.fc33.armv7hl\n - flexiblas-openblas-threads-0:3.0.4-1.fc33.ppc64le\n - suitesparse64-static-0:5.4.0-5.fc33.s390x\n - SDL-static-0:1.2.15-45.fc33.i686\n - tbb-0:2020.3-2.fc33.x86_64\n - wxBase3-0:3.0.5.1-2.fc33.armv7hl\n - flexiblas-blis-openmp64-0:3.0.4-1.fc33.x86_64\n - libijs-devel-0:0.35-12.fc33.i686\n - wxGTK3-gl-0:3.0.5.1-2.fc33.i686\n - openblas-serial64-0:0.3.12-1.fc33.aarch64\n - adobe-mappings-pdf-0:20180407-7.fc33.noarch\n - boost-serialization-0:1.73.0-9.fc33.x86_64\n - libpeas-devel-0:1.28.0-1.fc33.aarch64\n - suitesparse-devel-0:5.4.0-5.fc33.aarch64\n - compat-wxGTK3-gtk2-0:3.0.5.1-2.fc33.aarch64\n - boost-locale-0:1.73.0-9.fc33.i686\n - boost-log-0:1.73.0-9.fc33.aarch64\n - boost-regex-0:1.73.0-9.fc33.i686\n - suitesparse64_-devel-0:5.4.0-5.fc33.aarch64\n - geocode-glib-0:3.26.2-2.fc33.x86_64\n - cairomm-0:1.12.2-4.fc33.aarch64\n - poppler-glib-0:0.90.0-6.fc33.s390x\n - boost-doc-0:1.73.0-9.fc33.i686\n - dbus-glib-devel-0:0.110-10.fc33.x86_64\n - libphonenumber-0:8.12.11-1.fc33.ppc64le\n - urw-base35-fonts-0:20200910-2.fc33.noarch\n - wxBase3-devel-0:3.0.5.1-2.fc33.armv7hl\n - flexiblas-blis-threads-0:3.0.4-1.fc33.s390x\n - evolution-data-server-devel-0:3.38.4-1.fc33.i686\n - boost-0:1.73.0-9.fc33.i686\n - libraqm-devel-0:0.7.0-6.fc33.s390x\n - openblas-threads64-0:0.3.12-1.fc33.x86_64\n - libidn-java-0:1.36-1.fc33.noarch\n - ghostscript-tools-fonts-0:9.53.3-4.fc33.aarch64\n - libgweather-0:3.36.1-3.fc33.i686\n - urw-base35-nimbus-sans-fonts-0:20200910-2.fc33.noarch\n - libraqm-0:0.7.0-6.fc33.ppc64le\n - boost-atomic-0:1.73.0-9.fc33.x86_64\n - wxGTK3-devel-0:3.0.5.1-2.fc33.i686\n - libhandy1-devel-0:1.0.3-1.fc33.aarch64\n - gd-0:2.3.0-3.fc33.x86_64\n - flexiblas-blis-threads-0:3.0.4-1.fc33.armv7hl\n - glew-devel-0:2.1.0-8.fc33.armv7hl\n - evolution-data-server-tests-0:3.38.4-1.fc33.i686\n - libimagequant-devel-0:2.12.6-3.fc33.i686\n - tk-devel-1:8.6.10-5.fc33.s390x\n - flexiblas-hook-profile64-0:3.0.4-1.fc33.s390x\n - tbb-devel-0:2020.3-2.fc33.s390x\n - wxGTK3-devel-0:3.0.5.1-2.fc33.s390x\n - exiv2-libs-0:0.27.3-4.fc33.x86_64\n - compat-wxGTK3-gtk2-gl-0:3.0.5.1-2.fc33.i686\n - flexiblas-blis-serial-0:3.0.4-1.fc33.i686\n - libwmf-lite-0:0.2.12-4.fc33.ppc64le\n - openblas-devel-0:0.3.12-1.fc33.s390x\n - libpeas-loader-python3-0:1.28.0-1.fc33.armv7hl\n - wxGTK3-i18n-0:3.0.5.1-2.fc33.noarch\n - protobuf-lite-static-0:3.12.4-1.fc33.aarch64\n - tbb-doc-0:2020.3-2.fc33.x86_64\n - tk-1:8.6.10-5.fc33.aarch64\n - protobuf-compiler-0:3.12.4-1.fc33.armv7hl\n - openblas-serial-0:0.3.12-1.fc33.x86_64\n - protobuf-devel-0:3.12.4-1.fc33.s390x\n - glew-devel-0:2.1.0-8.fc33.aarch64\n - gtkmm30-0:3.24.3-1.fc33.armv7hl\n - wxGTK3-webview-0:3.0.5.1-2.fc33.armv7hl\n - tcl-1:8.6.10-5.fc33.i686\n - gtksourceview3-devel-0:3.24.11-4.fc33.armv7hl\n - flatpak-rpm-macros-0:33-2.fc33.x86_64\n - boost-timer-0:1.73.0-9.fc33.x86_64\n - poppler-devel-0:0.90.0-6.fc33.aarch64\n - OpenEXR-0:2.3.0-6.fc33.i686\n - boost-chrono-0:1.73.0-9.fc33.ppc64le\n - gtksourceview3-0:3.24.11-4.fc33.s390x\n - polkit-devel-0:0.117-2.fc33.armv7hl\n - boost-program-options-0:1.73.0-9.fc33.armv7hl\n - boost-system-0:1.73.0-9.fc33.armv7hl\n - boost-random-0:1.73.0-9.fc33.ppc64le\n - flexiblas-openblas-serial64-0:3.0.4-1.fc33.ppc64le\n - libGLEW-0:2.1.0-8.fc33.i686\n - boost-wave-0:1.73.0-9.fc33.s390x\n - gspell-devel-0:1.8.4-1.fc33.i686\n - flatpak-runtime-config-0:33-1.fc33.armv7hl\n - boost-type_erasure-0:1.73.0-9.fc33.s390x\n - libimagequant-devel-0:2.12.6-3.fc33.s390x\n - libical-glib-0:3.0.9-1.fc33.ppc64le\n - ghostscript-0:9.53.3-4.fc33.i686\n - gspell-devel-0:1.8.4-1.fc33.armv7hl\n - openblas-threads-0:0.3.12-1.fc33.armv7hl\n - openblas-serial64-0:0.3.12-1.fc33.x86_64\n - libical-glib-devel-0:3.0.9-1.fc33.armv7hl\n - poppler-utils-0:0.90.0-6.fc33.aarch64\n - polkit-0:0.117-2.fc33.s390x\n - compat-wxGTK3-gtk2-media-0:3.0.5.1-2.fc33.ppc64le\n - libraqm-devel-0:0.7.0-6.fc33.i686\n - polkit-libs-0:0.117-2.fc33.armv7hl\n - boost-fiber-0:1.73.0-9.fc33.ppc64le\n - suitesparse-devel-0:5.4.0-5.fc33.i686\n - gtkmm30-0:3.24.3-1.fc33.s390x\n - boost-b2-0:1.73.0-9.fc33.armv7hl\n - libmspack-devel-0:0.10.1-0.4.alpha.fc33.i686\n - poppler-devel-0:0.90.0-6.fc33.x86_64\n - libhandy1-devel-0:1.0.3-1.fc33.ppc64le\n - boost-timer-0:1.73.0-9.fc33.s390x\n - gtkmm30-devel-0:3.24.3-1.fc33.i686\n - openblas-static-0:0.3.12-1.fc33.aarch64\n - libphonenumber-0:8.12.11-1.fc33.x86_64\n - libidn-javadoc-0:1.36-1.fc33.noarch\n - libimagequant-devel-0:2.12.6-3.fc33.x86_64\n - ghostscript-tools-dvipdf-0:9.53.3-4.fc33.armv7hl\n - libwmf-devel-0:0.2.12-4.fc33.aarch64\n - python3-tbb-0:2020.3-2.fc33.s390x\n - dbus-glib-0:0.110-10.fc33.aarch64\n - libidn-0:1.36-1.fc33.i686\n - python2.7-0:2.7.18-8.fc33.aarch64\n - openblas-serial64_-0:0.3.12-1.fc33.aarch64\n - wxGTK3-media-0:3.0.5.1-2.fc33.ppc64le\n - flexiblas-openblas-serial-0:3.0.4-1.fc33.x86_64\n - gd-progs-0:2.3.0-3.fc33.armv7hl\n - gsl-devel-0:2.6-3.fc33.ppc64le\n - poppler-cpp-devel-0:0.90.0-6.fc33.s390x\n - suitesparse64_-devel-0:5.4.0-5.fc33.ppc64le\n - evolution-data-server-langpacks-0:3.38.4-1.fc33.noarch\n - jbig2dec-libs-0:0.19-2.fc33.x86_64\n - protobuf-lite-devel-0:3.12.4-1.fc33.x86_64\n - libsigc++20-0:2.10.6-1.fc33.i686\n - protobuf-vim-0:3.12.4-1.fc33.noarch\n - tk-1:8.6.10-5.fc33.ppc64le\n - glibmm24-devel-0:2.64.5-3.fc33.i686\n - libimagequant-0:2.12.6-3.fc33.aarch64\n - boost-regex-0:1.73.0-9.fc33.x86_64\n - libraqm-devel-0:0.7.0-6.fc33.x86_64\n - boost-timer-0:1.73.0-9.fc33.armv7hl\n - boost-timer-0:1.73.0-9.fc33.i686\n - tcl-1:8.6.10-5.fc33.armv7hl\n - cairomm-0:1.12.2-4.fc33.armv7hl\n - boost-doctools-0:1.73.0-9.fc33.ppc64le\n - protobuf-lite-static-0:3.12.4-1.fc33.ppc64le\n - poppler-cpp-devel-0:0.90.0-6.fc33.armv7hl\n - cairomm-devel-0:1.12.2-4.fc33.i686\n - compat-wxGTK3-gtk2-devel-0:3.0.5.1-2.fc33.ppc64le\n - gtksourceview3-devel-0:3.24.11-4.fc33.i686\n - boost-system-0:1.73.0-9.fc33.i686\n - flexiblas-openblas-serial64-0:3.0.4-1.fc33.s390x\n - libical-glib-0:3.0.9-1.fc33.s390x\n - boost-serialization-0:1.73.0-9.fc33.i686\n - gnome-desktop3-0:3.38.4-1.fc33.armv7hl\n - glew-devel-0:2.1.0-8.fc33.s390x\n - flexiblas-openblas-threads64-0:3.0.4-1.fc33.x86_64\n - gnome-desktop3-tests-0:3.38.4-1.fc33.ppc64le\n - suitesparse-devel-0:5.4.0-5.fc33.armv7hl\n - suitesparse64-0:5.4.0-5.fc33.x86_64\n - flexiblas-blis-openmp-0:3.0.4-1.fc33.s390x\n - libwmf-0:0.2.12-4.fc33.armv7hl\n - libfontenc-0:1.1.3-13.fc33.i686\n - exiv2-0:0.27.3-4.fc33.s390x\n - SDL_image-0:1.2.12-25.fc33.s390x\n - SDL-0:1.2.15-45.fc33.s390x\n - polkit-docs-0:0.117-2.fc33.noarch\n - libdazzle-0:3.38.0-1.fc33.ppc64le\n - gtkmm30-0:3.24.3-1.fc33.i686\n - poppler-qt5-0:0.90.0-6.fc33.aarch64\n - poppler-cpp-0:0.90.0-6.fc33.armv7hl\n - suitesparse-0:5.4.0-5.fc33.i686\n - boost-math-0:1.73.0-9.fc33.aarch64\n - tix-devel-1:8.4.3-29.fc33.i686\n - flexiblas-openblas-serial-0:3.0.4-1.fc33.armv7hl\n - gspell-devel-0:1.8.4-1.fc33.aarch64\n - poppler-qt-0:0.90.0-6.fc33.armv7hl\n - flexiblas-devel-0:3.0.4-1.fc33.s390x\n - libhandy1-devel-0:1.0.3-1.fc33.i686\n - poppler-qt5-devel-0:0.90.0-6.fc33.armv7hl\n - gspell-doc-0:1.8.4-1.fc33.noarch\n - flexiblas-blis-openmp64-0:3.0.4-1.fc33.ppc64le\n - OpenEXR-0:2.3.0-6.fc33.armv7hl\n - openjpeg2-0:2.3.1-10.fc33.s390x\n - libgs-0:9.53.3-4.fc33.armv7hl\n - openblas-static-0:0.3.12-1.fc33.armv7hl\n - protobuf-lite-devel-0:3.12.4-1.fc33.ppc64le\n - libgweather-0:3.36.1-3.fc33.s390x\n - libidn-0:1.36-1.fc33.x86_64\n - liboauth-0:1.0.3-15.fc33.i686\n - libgs-devel-0:9.53.3-4.fc33.s390x\n - boost-type_erasure-0:1.73.0-9.fc33.i686\n - libdazzle-devel-0:3.38.0-1.fc33.x86_64\n - flexiblas-0:3.0.4-1.fc33.i686\n - startup-notification-0:0.12-20.fc33.aarch64\n - openjpeg2-0:2.3.1-10.fc33.i686\n - libraqm-0:0.7.0-6.fc33.aarch64\n - libsigc++20-0:2.10.6-1.fc33.aarch64\n - protobuf-static-0:3.12.4-1.fc33.i686\n - boost-filesystem-0:1.73.0-9.fc33.ppc64le\n - adobe-mappings-cmap-0:20171205-9.fc33.noarch\n - cairomm-0:1.12.2-4.fc33.ppc64le\n - atkmm-devel-0:2.28.1-1.fc33.x86_64\n - libfontenc-0:1.1.3-13.fc33.armv7hl\n - boost-nowide-0:1.73.0-9.fc33.i686\n - openblas-threads64-0:0.3.12-1.fc33.ppc64le\n - pangomm-devel-0:2.42.2-1.fc33.x86_64\n - libwmf-lite-0:0.2.12-4.fc33.aarch64\n - ghostscript-tools-printing-0:9.53.3-4.fc33.i686\n - openblas-serial64_-0:0.3.12-1.fc33.s390x\n - wxGTK3-docs-0:3.0.5.1-2.fc33.noarch\n - libidn-0:1.36-1.fc33.s390x\n - poppler-0:0.90.0-6.fc33.s390x\n - boost-date-time-0:1.73.0-9.fc33.ppc64le\n - python3-tbb-0:2020.3-2.fc33.x86_64\n - boost-locale-0:1.73.0-9.fc33.aarch64\n - flexiblas-atlas-0:3.0.4-1.fc33.armv7hl\n - liboauth-devel-0:1.0.3-15.fc33.i686\n - libgs-0:9.53.3-4.fc33.x86_64\n - ghostscript-x11-0:9.53.3-4.fc33.aarch64\n - polkit-libs-0:0.117-2.fc33.x86_64\n - openblas-threads-0:0.3.12-1.fc33.aarch64\n - boost-coroutine-0:1.73.0-9.fc33.armv7hl\n - tix-1:8.4.3-29.fc33.s390x\n - libphonenumber-0:8.12.11-1.fc33.aarch64\n - gsound-0:1.0.2-12.fc33.aarch64\n - exiv2-0:0.27.3-4.fc33.i686\n - boost-fiber-0:1.73.0-9.fc33.x86_64\n - openjpeg2-0:2.3.1-10.fc33.ppc64le\n - xorg-x11-font-utils-1:7.5-47.fc33.ppc64le\n - boost-regex-0:1.73.0-9.fc33.armv7hl\n - startup-notification-0:0.12-20.fc33.armv7hl\n - urw-base35-gothic-fonts-0:20200910-2.fc33.noarch\n - libical-glib-0:3.0.9-1.fc33.aarch64\n - poppler-glib-0:0.90.0-6.fc33.armv7hl\n - flexiblas-openblas-serial64-0:3.0.4-1.fc33.aarch64\n - poppler-utils-0:0.90.0-6.fc33.ppc64le\n - poppler-qt-devel-0:0.90.0-6.fc33.aarch64\n - libraqm-docs-0:0.7.0-6.fc33.noarch\n - libmspack-0:0.10.1-0.4.alpha.fc33.s390x\n - tbb-devel-0:2020.3-2.fc33.i686\n - boost-doc-0:1.73.0-9.fc33.aarch64\n - boost-examples-0:1.73.0-9.fc33.i686\n - evolution-data-server-0:3.38.4-1.fc33.x86_64\n - openblas-serial64-0:0.3.12-1.fc33.s390x\n - libical-glib-0:3.0.9-1.fc33.x86_64\n - libgdata-devel-0:0.17.13-1.fc33.ppc64le\n - pangomm-devel-0:2.42.2-1.fc33.ppc64le\n - poppler-devel-0:0.90.0-6.fc33.i686\n - gspell-devel-0:1.8.4-1.fc33.x86_64\n - flexiblas-netlib-0:3.0.4-1.fc33.i686\n - libGLEW-0:2.1.0-8.fc33.ppc64le\n - ghostscript-gtk-0:9.53.3-4.fc33.i686\n - ghostscript-gtk-0:9.53.3-4.fc33.armv7hl\n - suitesparse-static-0:5.4.0-5.fc33.s390x\n - liboauth-devel-0:1.0.3-15.fc33.aarch64\n - wxGTK3-webview-0:3.0.5.1-2.fc33.aarch64\n - suitesparse64_-0:5.4.0-5.fc33.s390x\n - boost-type_erasure-0:1.73.0-9.fc33.aarch64\n - libmspack-devel-0:0.10.1-0.4.alpha.fc33.ppc64le\n - openblas-threads-0:0.3.12-1.fc33.s390x\n - libical-devel-0:3.0.9-1.fc33.aarch64\n - libfontenc-devel-0:1.1.3-13.fc33.ppc64le\n - poppler-devel-0:0.90.0-6.fc33.armv7hl\n - poppler-0:0.90.0-6.fc33.x86_64\n - evolution-data-server-0:3.38.4-1.fc33.armv7hl\n - boost-doctools-0:1.73.0-9.fc33.aarch64\n - flexiblas-blis-openmp-0:3.0.4-1.fc33.aarch64\n - flexiblas-openblas-threads-0:3.0.4-1.fc33.s390x\n - libpeas-gtk-0:1.28.0-1.fc33.x86_64\n - libimagequant-devel-0:2.12.6-3.fc33.aarch64\n - urw-base35-standard-symbols-ps-fonts-0:20200910-2.fc33.noarch\n - cairomm-0:1.12.2-4.fc33.x86_64\n - libpeas-loader-python3-0:1.28.0-1.fc33.i686\n - libpaper-devel-0:1.1.28-1.fc33.armv7hl\n - libijs-0:0.35-12.fc33.s390x\n - ghostscript-0:9.53.3-4.fc33.armv7hl\n - libpaper-devel-0:1.1.28-1.fc33.x86_64\n - gspell-0:1.8.4-1.fc33.armv7hl\n - compat-wxGTK3-gtk2-gl-0:3.0.5.1-2.fc33.armv7hl\n - boost-examples-0:1.73.0-9.fc33.ppc64le\n - ilmbase-devel-0:2.3.0-5.fc33.i686\n - boost-b2-0:1.73.0-9.fc33.aarch64\n - boost-serialization-0:1.73.0-9.fc33.s390x\n - boost-doctools-0:1.73.0-9.fc33.s390x\n - urw-base35-fonts-devel-0:20200910-2.fc33.noarch\n - libgdata-0:0.17.13-1.fc33.aarch64\n - boost-context-0:1.73.0-9.fc33.ppc64le\n - protobuf-static-0:3.12.4-1.fc33.armv7hl\n - protobuf-compiler-0:3.12.4-1.fc33.ppc64le\n - openblas-0:0.3.12-1.fc33.i686\n - protobuf-lite-static-0:3.12.4-1.fc33.i686\n - dbus-glib-devel-0:0.110-10.fc33.aarch64\n - tk-devel-1:8.6.10-5.fc33.aarch64\n - libfontenc-0:1.1.3-13.fc33.ppc64le\n - xorg-x11-font-utils-1:7.5-47.fc33.aarch64\n - flexiblas-devel-0:3.0.4-1.fc33.x86_64\n - wxGTK3-0:3.0.5.1-2.fc33.i686\n - adobe-mappings-cmap-devel-0:20171205-9.fc33.noarch\n - tix-1:8.4.3-29.fc33.aarch64\n - pangomm-0:2.42.2-1.fc33.aarch64\n - SDL_image-devel-0:1.2.12-25.fc33.i686\n - gtkmm30-0:3.24.3-1.fc33.aarch64\n - ghostscript-tools-printing-0:9.53.3-4.fc33.s390x\n - boost-python3-0:1.73.0-9.fc33.armv7hl\n - libpeas-gtk-0:1.28.0-1.fc33.aarch64\n - libical-devel-0:3.0.9-1.fc33.s390x\n - ghostscript-core-0:9.53.3-4.fc33.armv7hl\n - jbig2dec-devel-0:0.19-2.fc33.s390x\n - gnome-online-accounts-devel-0:3.38.0-1.fc33.aarch64\n - poppler-utils-0:0.90.0-6.fc33.i686\n - libgweather-0:3.36.1-3.fc33.armv7hl\n - boost-static-0:1.73.0-9.fc33.x86_64\n - poppler-cpp-0:0.90.0-6.fc33.i686\n - urw-base35-fonts-common-0:20200910-2.fc33.noarch\n - poppler-data-devel-0:0.4.9-6.fc33.noarch\n - libidn-0:1.36-1.fc33.armv7hl\n - boost-devel-0:1.73.0-9.fc33.aarch64\n - flexiblas-blis-serial64-0:3.0.4-1.fc33.aarch64\n - urw-base35-d050000l-fonts-0:20200910-2.fc33.noarch\n - libwmf-lite-0:0.2.12-4.fc33.armv7hl\n - gtkmm30-0:3.24.3-1.fc33.ppc64le\n - protobuf-compiler-0:3.12.4-1.fc33.i686\n - libijs-devel-0:0.35-12.fc33.armv7hl\n - flexiblas-hook-profile-0:3.0.4-1.fc33.x86_64\n - flexiblas-0:3.0.4-1.fc33.armv7hl\n - tk-1:8.6.10-5.fc33.x86_64\n - python2.7-0:2.7.18-8.fc33.s390x\n - ilmbase-devel-0:2.3.0-5.fc33.ppc64le\n - tbb-doc-0:2020.3-2.fc33.armv7hl\n - libgs-0:9.53.3-4.fc33.i686\n - gspell-devel-0:1.8.4-1.fc33.ppc64le\n - gsound-0:1.0.2-12.fc33.s390x\n - boost-coroutine-0:1.73.0-9.fc33.i686\n - boost-context-0:1.73.0-9.fc33.x86_64\n - cairomm-0:1.12.2-4.fc33.s390x\n - wxGTK3-webview-0:3.0.5.1-2.fc33.s390x\n - boost-numpy3-0:1.73.0-9.fc33.x86_64\n - liboauth-0:1.0.3-15.fc33.armv7hl\n - protobuf-static-0:3.12.4-1.fc33.ppc64le\n - glibmm24-doc-0:2.64.5-3.fc33.noarch\n - boost-contract-0:1.73.0-9.fc33.armv7hl\n - openblas-serial-0:0.3.12-1.fc33.s390x\n - libijs-devel-0:0.35-12.fc33.aarch64\n - suitesparse64-static-0:5.4.0-5.fc33.ppc64le\n - flexiblas-blis-serial64-0:3.0.4-1.fc33.s390x\n - libpeas-gtk-0:1.28.0-1.fc33.ppc64le\n - poppler-cpp-0:0.90.0-6.fc33.ppc64le\n - libgdata-devel-0:0.17.13-1.fc33.s390x\n - glibmm24-0:2.64.5-3.fc33.i686\n - flexiblas-openblas-serial-0:3.0.4-1.fc33.i686\n - boost-serialization-0:1.73.0-9.fc33.aarch64\n - flexiblas-openblas-threads64-0:3.0.4-1.fc33.ppc64le\n - libfontenc-0:1.1.3-13.fc33.s390x\n - compat-wxGTK3-gtk2-gl-0:3.0.5.1-2.fc33.s390x\n - protobuf-static-0:3.12.4-1.fc33.aarch64\n - flexiblas-openblas-threads64-0:3.0.4-1.fc33.aarch64\n - poppler-qt-devel-0:0.90.0-6.fc33.ppc64le\n - SDL-static-0:1.2.15-45.fc33.ppc64le\n - libidn-devel-0:1.36-1.fc33.aarch64\n - tcl-devel-1:8.6.10-5.fc33.armv7hl\n - boost-math-0:1.73.0-9.fc33.s390x\n - boost-random-0:1.73.0-9.fc33.s390x\n - boost-graph-0:1.73.0-9.fc33.i686\n - boost-b2-0:1.73.0-9.fc33.ppc64le\n - boost-locale-0:1.73.0-9.fc33.s390x\n - openjpeg2-0:2.3.1-10.fc33.x86_64\n - evolution-data-server-devel-0:3.38.4-1.fc33.ppc64le\n - atkmm-devel-0:2.28.1-1.fc33.aarch64\n - protobuf-0:3.12.4-1.fc33.x86_64\n - protobuf-lite-0:3.12.4-1.fc33.ppc64le\n - libsigc++20-0:2.10.6-1.fc33.ppc64le\n - compat-wxGTK3-gtk2-media-0:3.0.5.1-2.fc33.armv7hl\n - google-droid-fonts-all-0:20200215-8.fc33.noarch\n - libijs-doc-0:0.35-12.fc33.noarch\n - pangomm-0:2.42.2-1.fc33.i686\n - libpeas-devel-0:1.28.0-1.fc33.armv7hl\n - libGLEW-0:2.1.0-8.fc33.armv7hl\n - openjpeg2-devel-0:2.3.1-10.fc33.ppc64le\n - libphonenumber-0:8.12.11-1.fc33.i686\n - flexiblas-blis-serial-0:3.0.4-1.fc33.armv7hl\n - libimagequant-0:2.12.6-3.fc33.i686\n - boost-thread-0:1.73.0-9.fc33.armv7hl\n - libpeas-gtk-0:1.28.0-1.fc33.i686\n - libmspack-0:0.10.1-0.4.alpha.fc33.armv7hl\n - wxGTK3-gl-0:3.0.5.1-2.fc33.s390x\n - poppler-glib-0:0.90.0-6.fc33.aarch64\n - gd-devel-0:2.3.0-3.fc33.armv7hl\n - OpenEXR-doc-0:2.3.0-6.fc33.ppc64le\n - liboauth-0:1.0.3-15.fc33.s390x\n - libical-0:3.0.9-1.fc33.armv7hl\n - SDL-devel-0:1.2.15-45.fc33.armv7hl\n - gnome-desktop3-tests-0:3.38.4-1.fc33.aarch64\n - SDL_image-devel-0:1.2.12-25.fc33.ppc64le\n - OpenEXR-libs-0:2.3.0-6.fc33.ppc64le\n - ghostscript-tools-dvipdf-0:9.53.3-4.fc33.aarch64\n - flexiblas-openblas-serial64-0:3.0.4-1.fc33.x86_64\n - suitesparse-devel-0:5.4.0-5.fc33.ppc64le\n - boost-log-0:1.73.0-9.fc33.armv7hl\n - wxBase3-devel-0:3.0.5.1-2.fc33.i686\n - SDL-devel-0:1.2.15-45.fc33.ppc64le\n - python2-setuptools-0:41.2.0-3.fc33.noarch\n - libical-glib-0:3.0.9-1.fc33.armv7hl\n - poppler-qt-0:0.90.0-6.fc33.ppc64le\n - boost-filesystem-0:1.73.0-9.fc33.armv7hl\n - OpenEXR-0:2.3.0-6.fc33.s390x\n - boost-stacktrace-0:1.73.0-9.fc33.x86_64\n - tk-1:8.6.10-5.fc33.armv7hl\n - boost-type_erasure-0:1.73.0-9.fc33.x86_64\n - wxBase3-0:3.0.5.1-2.fc33.aarch64\n - gnome-desktop3-0:3.38.4-1.fc33.aarch64\n - libical-glib-devel-0:3.0.9-1.fc33.aarch64\n - openblas-serial64_-0:0.3.12-1.fc33.x86_64\n - flexiblas-blis-threads-0:3.0.4-1.fc33.ppc64le\n - evolution-data-server-perl-0:3.38.4-1.fc33.i686\n - atkmm-0:2.28.1-1.fc33.s390x\n - boost-graph-0:1.73.0-9.fc33.armv7hl\n - flexiblas-blis-threads64-0:3.0.4-1.fc33.s390x\n - libdazzle-devel-0:3.38.0-1.fc33.s390x\n - gnome-desktop3-0:3.38.4-1.fc33.x86_64\n - gnome-desktop3-tests-0:3.38.4-1.fc33.i686\n - google-droid-sans-mono-fonts-0:20200215-8.fc33.noarch\n - libgweather-0:3.36.1-3.fc33.aarch64\n - boost-timer-0:1.73.0-9.fc33.aarch64\n - libwmf-lite-0:0.2.12-4.fc33.i686\n - dbus-glib-devel-0:0.110-10.fc33.ppc64le\n - python3-tbb-0:2020.3-2.fc33.armv7hl\n - jbig2dec-libs-0:0.19-2.fc33.aarch64\n - libhandy1-0:1.0.3-1.fc33.i686\n - glew-0:2.1.0-8.fc33.armv7hl\n - protobuf-0:3.12.4-1.fc33.i686\n - libical-0:3.0.9-1.fc33.i686\n - SDL-0:1.2.15-45.fc33.i686\n - libphonenumber-devel-0:8.12.11-1.fc33.s390x\n - suitesparse64_-0:5.4.0-5.fc33.ppc64le\n - polkit-devel-0:0.117-2.fc33.i686\n - libpeas-0:1.28.0-1.fc33.ppc64le\n - tbb-devel-0:2020.3-2.fc33.x86_64\n - flatpak-runtime-config-0:33-1.fc33.aarch64\n - suitesparse64-devel-0:5.4.0-5.fc33.x86_64\n - jbig2dec-devel-0:0.19-2.fc33.armv7hl\n - cairomm-devel-0:1.12.2-4.fc33.ppc64le\n - openblas-threads64_-0:0.3.12-1.fc33.aarch64\n - startup-notification-devel-0:0.12-20.fc33.aarch64\n - libijs-0:0.35-12.fc33.armv7hl\n - openblas-openmp64-0:0.3.12-1.fc33.ppc64le\n - SDL-static-0:1.2.15-45.fc33.armv7hl\n - openjpeg2-tools-0:2.3.1-10.fc33.i686\n - gd-progs-0:2.3.0-3.fc33.ppc64le\n - openjpeg2-devel-0:2.3.1-10.fc33.i686\n - suitesparse64-devel-0:5.4.0-5.fc33.aarch64\n - flexiblas-atlas-0:3.0.4-1.fc33.s390x\n - gnome-desktop3-tests-0:3.38.4-1.fc33.armv7hl\n - openblas-serial-0:0.3.12-1.fc33.i686\n - gd-0:2.3.0-3.fc33.armv7hl\n - libpaper-devel-0:1.1.28-1.fc33.aarch64\n - libsigc++20-0:2.10.6-1.fc33.s390x\n - libraqm-devel-0:0.7.0-6.fc33.armv7hl\n - ghostscript-tools-fonts-0:9.53.3-4.fc33.ppc64le\n - libgdata-devel-0:0.17.13-1.fc33.armv7hl\n - flexiblas-atlas-0:3.0.4-1.fc33.i686\n - tcl-1:8.6.10-5.fc33.aarch64\n - libsigc++20-devel-0:2.10.6-1.fc33.aarch64\n - boost-graph-0:1.73.0-9.fc33.aarch64\n - protobuf-parent-0:3.12.4-1.fc33.noarch\n - tk-devel-1:8.6.10-5.fc33.ppc64le\n - OpenEXR-libs-0:2.3.0-6.fc33.x86_64\n - boost-0:1.73.0-9.fc33.armv7hl\n - gsound-0:1.0.2-12.fc33.ppc64le\n - ghostscript-core-0:9.53.3-4.fc33.ppc64le\n - openjpeg2-0:2.3.1-10.fc33.aarch64\n - libgs-devel-0:9.53.3-4.fc33.x86_64\n - flatpak-runtime-config-0:33-1.fc33.i686\n - startup-notification-0:0.12-20.fc33.i686\n - libpeas-0:1.28.0-1.fc33.x86_64\n - libfontenc-0:1.1.3-13.fc33.x86_64\n - openblas-threads64-0:0.3.12-1.fc33.s390x\n - libwmf-0:0.2.12-4.fc33.ppc64le\n - boost-static-0:1.73.0-9.fc33.armv7hl\n - glew-0:2.1.0-8.fc33.s390x\n - evolution-data-server-tests-0:3.38.4-1.fc33.s390x\n - flexiblas-openblas-threads-0:3.0.4-1.fc33.i686\n - boost-numpy3-0:1.73.0-9.fc33.s390x\n - boost-python3-0:1.73.0-9.fc33.i686\n - boost-doc-0:1.73.0-9.fc33.s390x\n - boost-coroutine-0:1.73.0-9.fc33.s390x\n - boost-test-0:1.73.0-9.fc33.armv7hl\n - evolution-data-server-devel-0:3.38.4-1.fc33.x86_64\n - exiv2-libs-0:0.27.3-4.fc33.ppc64le\n - ghostscript-core-0:9.53.3-4.fc33.aarch64\n - glibmm24-0:2.64.5-3.fc33.x86_64\n - gsound-0:1.0.2-12.fc33.armv7hl\n - openblas-threads-0:0.3.12-1.fc33.ppc64le\n - openblas-serial-0:0.3.12-1.fc33.armv7hl\n - libdazzle-0:3.38.0-1.fc33.x86_64\n - adobe-mappings-cmap-deprecated-0:20171205-9.fc33.noarch\n - ghostscript-tools-printing-0:9.53.3-4.fc33.armv7hl\n - pangomm-0:2.42.2-1.fc33.x86_64\n - boost-iostreams-0:1.73.0-9.fc33.ppc64le\n - wxGTK3-gl-0:3.0.5.1-2.fc33.aarch64\n - libpeas-devel-0:1.28.0-1.fc33.i686\n - geocode-glib-0:3.26.2-2.fc33.ppc64le\n - tcl-1:8.6.10-5.fc33.ppc64le\n - suitesparse64-devel-0:5.4.0-5.fc33.s390x\n - poppler-qt-devel-0:0.90.0-6.fc33.i686\n - python2.7-0:2.7.18-8.fc33.armv7hl\n - evolution-data-server-perl-0:3.38.4-1.fc33.s390x\n - ghostscript-gtk-0:9.53.3-4.fc33.s390x\n - boost-test-0:1.73.0-9.fc33.i686\n - libidn-0:1.36-1.fc33.aarch64\n - jbig2dec-devel-0:0.19-2.fc33.ppc64le\n - boost-examples-0:1.73.0-9.fc33.s390x\n - glew-0:2.1.0-8.fc33.ppc64le\n - boost-numpy3-0:1.73.0-9.fc33.ppc64le\n - flatpak-runtime-config-0:33-1.fc33.x86_64\n - libgs-devel-0:9.53.3-4.fc33.i686\n - boost-log-0:1.73.0-9.fc33.x86_64\n - gsound-devel-0:1.0.2-12.fc33.armv7hl\n - ilmbase-0:2.3.0-5.fc33.aarch64\n - wxBase3-0:3.0.5.1-2.fc33.x86_64\n - OpenEXR-doc-0:2.3.0-6.fc33.x86_64\n - libGLEW-0:2.1.0-8.fc33.x86_64\n - liboauth-devel-0:1.0.3-15.fc33.s390x\n - urw-base35-c059-fonts-0:20200910-2.fc33.noarch\n - libgweather-devel-0:3.36.1-3.fc33.armv7hl\n - boost-chrono-0:1.73.0-9.fc33.i686\n - evolution-data-server-devel-0:3.38.4-1.fc33.armv7hl\n - suitesparse64-0:5.4.0-5.fc33.s390x\n - tcl-devel-1:8.6.10-5.fc33.aarch64\n - boost-random-0:1.73.0-9.fc33.i686\n - boost-nowide-0:1.73.0-9.fc33.ppc64le\n - libidn-devel-0:1.36-1.fc33.s390x\n - flatpak-rpm-macros-0:33-2.fc33.armv7hl\n - startup-notification-devel-0:0.12-20.fc33.s390x\n - wxGTK3-media-0:3.0.5.1-2.fc33.armv7hl\n - ghostscript-tools-fonts-0:9.53.3-4.fc33.s390x\n - libsigc++20-devel-0:2.10.6-1.fc33.s390x\n - openblas-0:0.3.12-1.fc33.aarch64\n - boost-b2-0:1.73.0-9.fc33.i686\n - jbig2dec-libs-0:0.19-2.fc33.i686\n - gtksourceview3-0:3.24.11-4.fc33.x86_64\n - atkmm-0:2.28.1-1.fc33.ppc64le\n - flexiblas-hook-profile-0:3.0.4-1.fc33.armv7hl\n - ghostscript-core-0:9.53.3-4.fc33.x86_64\n - poppler-0:0.90.0-6.fc33.aarch64\n - poppler-cpp-0:0.90.0-6.fc33.x86_64\n - glew-0:2.1.0-8.fc33.x86_64\n - SDL-0:1.2.15-45.fc33.ppc64le\n - jbig2dec-libs-0:0.19-2.fc33.ppc64le\n - boost-nowide-0:1.73.0-9.fc33.aarch64\n - polkit-devel-0:0.117-2.fc33.ppc64le\n - protobuf-lite-0:3.12.4-1.fc33.i686\n - gtksourceview3-tests-0:3.24.11-4.fc33.aarch64\n - pangomm-0:2.42.2-1.fc33.ppc64le\n - flexiblas-blis-threads64-0:3.0.4-1.fc33.x86_64\n - gd-progs-0:2.3.0-3.fc33.aarch64\n - flexiblas-blis-serial-0:3.0.4-1.fc33.ppc64le\n - poppler-qt5-0:0.90.0-6.fc33.x86_64\n - openblas-static-0:0.3.12-1.fc33.x86_64\n - SDL_image-0:1.2.12-25.fc33.ppc64le\n - flexiblas-atlas-0:3.0.4-1.fc33.ppc64le\n dependencies:\n - buildrequires:\n flatpak-common: [f33]\n flatpak-runtime: [f33]\n platform: [f33]\n requires:\n flatpak-common: [f33]\n flatpak-runtime: [f33]\n platform: [f33]\n profiles:\n default:\n rpms:\n - 0ad\n components:\n rpms:\n 0ad:\n rationale: Application package\n repository: git+https://src.fedoraproject.org/rpms/0ad\n cache: https://src.fedoraproject.org/repo/pkgs/0ad\n ref: f33\n buildorder: 10\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n 0ad-data:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/0ad-data\n cache: https://src.fedoraproject.org/repo/pkgs/0ad-data\n ref: f33\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n dejavu-fonts:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/dejavu-fonts\n cache: https://src.fedoraproject.org/repo/pkgs/dejavu-fonts\n ref: f33\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n enet:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/enet\n cache: https://src.fedoraproject.org/repo/pkgs/enet\n ref: f33\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n fmt:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/fmt\n cache: https://src.fedoraproject.org/repo/pkgs/fmt\n ref: f33\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n gloox:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/gloox\n cache: https://src.fedoraproject.org/repo/pkgs/gloox\n ref: f33\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n libsodium:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/libsodium\n cache: https://src.fedoraproject.org/repo/pkgs/libsodium\n ref: f33\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n miniupnpc:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/miniupnpc\n cache: https://src.fedoraproject.org/repo/pkgs/miniupnpc\n ref: f33\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n nvidia-texture-tools:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/nvidia-texture-tools\n cache: https://src.fedoraproject.org/repo/pkgs/nvidia-texture-tools\n ref: f33\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n...", "runtime_deps": [ { "dependency": "flatpak-runtime", "stream": "f33" }, { "dependency": "platform", "stream": "f33" }, { "dependency": "flatpak-common", "stream": "f33" } ], "build_deps": [ { "dependency": "flatpak-runtime", "stream": "f33" }, { "dependency": "platform", "stream": "f33" }, { "dependency": "flatpak-common", "stream": "f33" } ], "active": true, "rpms": [ "0ad-0:0.0.24b-2.module_f33+11568+40ff51bd.aarch64.rpm", "0ad-0:0.0.24b-2.module_f33+11568+40ff51bd.armv7hl.rpm", "0ad-0:0.0.24b-2.module_f33+11568+40ff51bd.i686.rpm", "0ad-0:0.0.24b-2.module_f33+11568+40ff51bd.ppc64le.rpm", "0ad-0:0.0.24b-2.module_f33+11568+40ff51bd.src.rpm", "0ad-0:0.0.24b-2.module_f33+11568+40ff51bd.x86_64.rpm", "0ad-data-0:0.0.24b-1.module_f33+11568+40ff51bd.noarch.rpm", "0ad-data-0:0.0.24b-1.module_f33+11568+40ff51bd.src.rpm", "0ad-debuginfo-0:0.0.24b-2.module_f33+11568+40ff51bd.aarch64.rpm", "0ad-debuginfo-0:0.0.24b-2.module_f33+11568+40ff51bd.armv7hl.rpm", "0ad-debuginfo-0:0.0.24b-2.module_f33+11568+40ff51bd.i686.rpm", "0ad-debuginfo-0:0.0.24b-2.module_f33+11568+40ff51bd.ppc64le.rpm", "0ad-debuginfo-0:0.0.24b-2.module_f33+11568+40ff51bd.x86_64.rpm", "0ad-debugsource-0:0.0.24b-2.module_f33+11568+40ff51bd.aarch64.rpm", "0ad-debugsource-0:0.0.24b-2.module_f33+11568+40ff51bd.armv7hl.rpm", "0ad-debugsource-0:0.0.24b-2.module_f33+11568+40ff51bd.i686.rpm", "0ad-debugsource-0:0.0.24b-2.module_f33+11568+40ff51bd.ppc64le.rpm", "0ad-debugsource-0:0.0.24b-2.module_f33+11568+40ff51bd.x86_64.rpm", "dejavu-fonts-0:2.37-15.module_f33+11568+40ff51bd.src.rpm", "dejavu-fonts-all-0:2.37-15.module_f33+11568+40ff51bd.noarch.rpm", "dejavu-fonts-doc-0:2.37-15.module_f33+11568+40ff51bd.noarch.rpm", "dejavu-lgc-fonts-all-0:2.37-15.module_f33+11568+40ff51bd.noarch.rpm", "dejavu-lgc-sans-fonts-0:2.37-15.module_f33+11568+40ff51bd.noarch.rpm", "dejavu-lgc-sans-mono-fonts-0:2.37-15.module_f33+11568+40ff51bd.noarch.rpm", "dejavu-lgc-serif-fonts-0:2.37-15.module_f33+11568+40ff51bd.noarch.rpm", "dejavu-sans-fonts-0:2.37-15.module_f33+11568+40ff51bd.noarch.rpm", "dejavu-sans-mono-fonts-0:2.37-15.module_f33+11568+40ff51bd.noarch.rpm", "dejavu-serif-fonts-0:2.37-15.module_f33+11568+40ff51bd.noarch.rpm", "enet-0:1.3.16-1.module_f33+11568+40ff51bd.aarch64.rpm", "enet-0:1.3.16-1.module_f33+11568+40ff51bd.armv7hl.rpm", "enet-0:1.3.16-1.module_f33+11568+40ff51bd.i686.rpm", "enet-0:1.3.16-1.module_f33+11568+40ff51bd.ppc64le.rpm", "enet-0:1.3.16-1.module_f33+11568+40ff51bd.s390x.rpm", "enet-0:1.3.16-1.module_f33+11568+40ff51bd.src.rpm", "enet-0:1.3.16-1.module_f33+11568+40ff51bd.x86_64.rpm", "enet-debuginfo-0:1.3.16-1.module_f33+11568+40ff51bd.aarch64.rpm", "enet-debuginfo-0:1.3.16-1.module_f33+11568+40ff51bd.armv7hl.rpm", "enet-debuginfo-0:1.3.16-1.module_f33+11568+40ff51bd.i686.rpm", "enet-debuginfo-0:1.3.16-1.module_f33+11568+40ff51bd.ppc64le.rpm", "enet-debuginfo-0:1.3.16-1.module_f33+11568+40ff51bd.s390x.rpm", "enet-debuginfo-0:1.3.16-1.module_f33+11568+40ff51bd.x86_64.rpm", "enet-debugsource-0:1.3.16-1.module_f33+11568+40ff51bd.aarch64.rpm", "enet-debugsource-0:1.3.16-1.module_f33+11568+40ff51bd.armv7hl.rpm", "enet-debugsource-0:1.3.16-1.module_f33+11568+40ff51bd.i686.rpm", "enet-debugsource-0:1.3.16-1.module_f33+11568+40ff51bd.ppc64le.rpm", "enet-debugsource-0:1.3.16-1.module_f33+11568+40ff51bd.s390x.rpm", "enet-debugsource-0:1.3.16-1.module_f33+11568+40ff51bd.x86_64.rpm", "enet-devel-0:1.3.16-1.module_f33+11568+40ff51bd.aarch64.rpm", "enet-devel-0:1.3.16-1.module_f33+11568+40ff51bd.armv7hl.rpm", "enet-devel-0:1.3.16-1.module_f33+11568+40ff51bd.i686.rpm", "enet-devel-0:1.3.16-1.module_f33+11568+40ff51bd.ppc64le.rpm", "enet-devel-0:1.3.16-1.module_f33+11568+40ff51bd.s390x.rpm", "enet-devel-0:1.3.16-1.module_f33+11568+40ff51bd.x86_64.rpm", "fmt-0:7.0.3-1.module_f33+11576+f6f88f3b.aarch64.rpm", "fmt-0:7.0.3-1.module_f33+11576+f6f88f3b.armv7hl.rpm", "fmt-0:7.0.3-1.module_f33+11576+f6f88f3b.i686.rpm", "fmt-0:7.0.3-1.module_f33+11576+f6f88f3b.ppc64le.rpm", "fmt-0:7.0.3-1.module_f33+11576+f6f88f3b.s390x.rpm", "fmt-0:7.0.3-1.module_f33+11576+f6f88f3b.src.rpm", "fmt-0:7.0.3-1.module_f33+11576+f6f88f3b.x86_64.rpm", "fmt-debuginfo-0:7.0.3-1.module_f33+11576+f6f88f3b.aarch64.rpm", "fmt-debuginfo-0:7.0.3-1.module_f33+11576+f6f88f3b.armv7hl.rpm", "fmt-debuginfo-0:7.0.3-1.module_f33+11576+f6f88f3b.i686.rpm", "fmt-debuginfo-0:7.0.3-1.module_f33+11576+f6f88f3b.ppc64le.rpm", "fmt-debuginfo-0:7.0.3-1.module_f33+11576+f6f88f3b.s390x.rpm", "fmt-debuginfo-0:7.0.3-1.module_f33+11576+f6f88f3b.x86_64.rpm", "fmt-debugsource-0:7.0.3-1.module_f33+11576+f6f88f3b.aarch64.rpm", "fmt-debugsource-0:7.0.3-1.module_f33+11576+f6f88f3b.armv7hl.rpm", "fmt-debugsource-0:7.0.3-1.module_f33+11576+f6f88f3b.i686.rpm", "fmt-debugsource-0:7.0.3-1.module_f33+11576+f6f88f3b.ppc64le.rpm", "fmt-debugsource-0:7.0.3-1.module_f33+11576+f6f88f3b.s390x.rpm", "fmt-debugsource-0:7.0.3-1.module_f33+11576+f6f88f3b.x86_64.rpm", "fmt-devel-0:7.0.3-1.module_f33+11576+f6f88f3b.aarch64.rpm", "fmt-devel-0:7.0.3-1.module_f33+11576+f6f88f3b.armv7hl.rpm", "fmt-devel-0:7.0.3-1.module_f33+11576+f6f88f3b.i686.rpm", "fmt-devel-0:7.0.3-1.module_f33+11576+f6f88f3b.ppc64le.rpm", "fmt-devel-0:7.0.3-1.module_f33+11576+f6f88f3b.s390x.rpm", "fmt-devel-0:7.0.3-1.module_f33+11576+f6f88f3b.x86_64.rpm", "gloox-1:1.0.23-3.module_f33+11568+40ff51bd.aarch64.rpm", "gloox-1:1.0.23-3.module_f33+11568+40ff51bd.armv7hl.rpm", "gloox-1:1.0.23-3.module_f33+11568+40ff51bd.i686.rpm", "gloox-1:1.0.23-3.module_f33+11568+40ff51bd.ppc64le.rpm", "gloox-1:1.0.23-3.module_f33+11568+40ff51bd.s390x.rpm", "gloox-1:1.0.23-3.module_f33+11568+40ff51bd.src.rpm", "gloox-1:1.0.23-3.module_f33+11568+40ff51bd.x86_64.rpm", "gloox-debuginfo-1:1.0.23-3.module_f33+11568+40ff51bd.aarch64.rpm", "gloox-debuginfo-1:1.0.23-3.module_f33+11568+40ff51bd.armv7hl.rpm", "gloox-debuginfo-1:1.0.23-3.module_f33+11568+40ff51bd.i686.rpm", "gloox-debuginfo-1:1.0.23-3.module_f33+11568+40ff51bd.ppc64le.rpm", "gloox-debuginfo-1:1.0.23-3.module_f33+11568+40ff51bd.s390x.rpm", "gloox-debuginfo-1:1.0.23-3.module_f33+11568+40ff51bd.x86_64.rpm", "gloox-debugsource-1:1.0.23-3.module_f33+11568+40ff51bd.aarch64.rpm", "gloox-debugsource-1:1.0.23-3.module_f33+11568+40ff51bd.armv7hl.rpm", "gloox-debugsource-1:1.0.23-3.module_f33+11568+40ff51bd.i686.rpm", "gloox-debugsource-1:1.0.23-3.module_f33+11568+40ff51bd.ppc64le.rpm", "gloox-debugsource-1:1.0.23-3.module_f33+11568+40ff51bd.s390x.rpm", "gloox-debugsource-1:1.0.23-3.module_f33+11568+40ff51bd.x86_64.rpm", "gloox-devel-1:1.0.23-3.module_f33+11568+40ff51bd.aarch64.rpm", "gloox-devel-1:1.0.23-3.module_f33+11568+40ff51bd.armv7hl.rpm", "gloox-devel-1:1.0.23-3.module_f33+11568+40ff51bd.i686.rpm", "gloox-devel-1:1.0.23-3.module_f33+11568+40ff51bd.ppc64le.rpm", "gloox-devel-1:1.0.23-3.module_f33+11568+40ff51bd.s390x.rpm", "gloox-devel-1:1.0.23-3.module_f33+11568+40ff51bd.x86_64.rpm", "libsodium-0:1.0.18-6.module_f33+11568+40ff51bd.aarch64.rpm", "libsodium-0:1.0.18-6.module_f33+11568+40ff51bd.armv7hl.rpm", "libsodium-0:1.0.18-6.module_f33+11568+40ff51bd.i686.rpm", "libsodium-0:1.0.18-6.module_f33+11568+40ff51bd.ppc64le.rpm", "libsodium-0:1.0.18-6.module_f33+11568+40ff51bd.s390x.rpm", "libsodium-0:1.0.18-6.module_f33+11568+40ff51bd.src.rpm", "libsodium-0:1.0.18-6.module_f33+11568+40ff51bd.x86_64.rpm", "libsodium-debuginfo-0:1.0.18-6.module_f33+11568+40ff51bd.aarch64.rpm", "libsodium-debuginfo-0:1.0.18-6.module_f33+11568+40ff51bd.armv7hl.rpm", "libsodium-debuginfo-0:1.0.18-6.module_f33+11568+40ff51bd.i686.rpm", "libsodium-debuginfo-0:1.0.18-6.module_f33+11568+40ff51bd.ppc64le.rpm", "libsodium-debuginfo-0:1.0.18-6.module_f33+11568+40ff51bd.s390x.rpm", "libsodium-debuginfo-0:1.0.18-6.module_f33+11568+40ff51bd.x86_64.rpm", "libsodium-debugsource-0:1.0.18-6.module_f33+11568+40ff51bd.aarch64.rpm", "libsodium-debugsource-0:1.0.18-6.module_f33+11568+40ff51bd.armv7hl.rpm", "libsodium-debugsource-0:1.0.18-6.module_f33+11568+40ff51bd.i686.rpm", "libsodium-debugsource-0:1.0.18-6.module_f33+11568+40ff51bd.ppc64le.rpm", "libsodium-debugsource-0:1.0.18-6.module_f33+11568+40ff51bd.s390x.rpm", "libsodium-debugsource-0:1.0.18-6.module_f33+11568+40ff51bd.x86_64.rpm", "libsodium-devel-0:1.0.18-6.module_f33+11568+40ff51bd.aarch64.rpm", "libsodium-devel-0:1.0.18-6.module_f33+11568+40ff51bd.armv7hl.rpm", "libsodium-devel-0:1.0.18-6.module_f33+11568+40ff51bd.i686.rpm", "libsodium-devel-0:1.0.18-6.module_f33+11568+40ff51bd.ppc64le.rpm", "libsodium-devel-0:1.0.18-6.module_f33+11568+40ff51bd.s390x.rpm", "libsodium-devel-0:1.0.18-6.module_f33+11568+40ff51bd.x86_64.rpm", "libsodium-static-0:1.0.18-6.module_f33+11568+40ff51bd.aarch64.rpm", "libsodium-static-0:1.0.18-6.module_f33+11568+40ff51bd.armv7hl.rpm", "libsodium-static-0:1.0.18-6.module_f33+11568+40ff51bd.i686.rpm", "libsodium-static-0:1.0.18-6.module_f33+11568+40ff51bd.ppc64le.rpm", "libsodium-static-0:1.0.18-6.module_f33+11568+40ff51bd.s390x.rpm", "libsodium-static-0:1.0.18-6.module_f33+11568+40ff51bd.x86_64.rpm", "miniupnpc-0:2.2.0-1.module_f33+11568+40ff51bd.aarch64.rpm", "miniupnpc-0:2.2.0-1.module_f33+11568+40ff51bd.armv7hl.rpm", "miniupnpc-0:2.2.0-1.module_f33+11568+40ff51bd.i686.rpm", "miniupnpc-0:2.2.0-1.module_f33+11568+40ff51bd.ppc64le.rpm", "miniupnpc-0:2.2.0-1.module_f33+11568+40ff51bd.s390x.rpm", "miniupnpc-0:2.2.0-1.module_f33+11568+40ff51bd.src.rpm", "miniupnpc-0:2.2.0-1.module_f33+11568+40ff51bd.x86_64.rpm", "miniupnpc-debuginfo-0:2.2.0-1.module_f33+11568+40ff51bd.aarch64.rpm", "miniupnpc-debuginfo-0:2.2.0-1.module_f33+11568+40ff51bd.armv7hl.rpm", "miniupnpc-debuginfo-0:2.2.0-1.module_f33+11568+40ff51bd.i686.rpm", "miniupnpc-debuginfo-0:2.2.0-1.module_f33+11568+40ff51bd.ppc64le.rpm", "miniupnpc-debuginfo-0:2.2.0-1.module_f33+11568+40ff51bd.s390x.rpm", "miniupnpc-debuginfo-0:2.2.0-1.module_f33+11568+40ff51bd.x86_64.rpm", "miniupnpc-debugsource-0:2.2.0-1.module_f33+11568+40ff51bd.aarch64.rpm", "miniupnpc-debugsource-0:2.2.0-1.module_f33+11568+40ff51bd.armv7hl.rpm", "miniupnpc-debugsource-0:2.2.0-1.module_f33+11568+40ff51bd.i686.rpm", "miniupnpc-debugsource-0:2.2.0-1.module_f33+11568+40ff51bd.ppc64le.rpm", "miniupnpc-debugsource-0:2.2.0-1.module_f33+11568+40ff51bd.s390x.rpm", "miniupnpc-debugsource-0:2.2.0-1.module_f33+11568+40ff51bd.x86_64.rpm", "miniupnpc-devel-0:2.2.0-1.module_f33+11568+40ff51bd.aarch64.rpm", "miniupnpc-devel-0:2.2.0-1.module_f33+11568+40ff51bd.armv7hl.rpm", "miniupnpc-devel-0:2.2.0-1.module_f33+11568+40ff51bd.i686.rpm", "miniupnpc-devel-0:2.2.0-1.module_f33+11568+40ff51bd.ppc64le.rpm", "miniupnpc-devel-0:2.2.0-1.module_f33+11568+40ff51bd.s390x.rpm", "miniupnpc-devel-0:2.2.0-1.module_f33+11568+40ff51bd.x86_64.rpm", "nvidia-texture-tools-0:2.1.2-1.module_f33+11568+40ff51bd.aarch64.rpm", "nvidia-texture-tools-0:2.1.2-1.module_f33+11568+40ff51bd.armv7hl.rpm", "nvidia-texture-tools-0:2.1.2-1.module_f33+11568+40ff51bd.i686.rpm", "nvidia-texture-tools-0:2.1.2-1.module_f33+11568+40ff51bd.ppc64le.rpm", "nvidia-texture-tools-0:2.1.2-1.module_f33+11568+40ff51bd.s390x.rpm", "nvidia-texture-tools-0:2.1.2-1.module_f33+11568+40ff51bd.src.rpm", "nvidia-texture-tools-0:2.1.2-1.module_f33+11568+40ff51bd.x86_64.rpm", "nvidia-texture-tools-debuginfo-0:2.1.2-1.module_f33+11568+40ff51bd.aarch64.rpm", "nvidia-texture-tools-debuginfo-0:2.1.2-1.module_f33+11568+40ff51bd.armv7hl.rpm", "nvidia-texture-tools-debuginfo-0:2.1.2-1.module_f33+11568+40ff51bd.i686.rpm", "nvidia-texture-tools-debuginfo-0:2.1.2-1.module_f33+11568+40ff51bd.ppc64le.rpm", "nvidia-texture-tools-debuginfo-0:2.1.2-1.module_f33+11568+40ff51bd.s390x.rpm", "nvidia-texture-tools-debuginfo-0:2.1.2-1.module_f33+11568+40ff51bd.x86_64.rpm", "nvidia-texture-tools-debugsource-0:2.1.2-1.module_f33+11568+40ff51bd.aarch64.rpm", "nvidia-texture-tools-debugsource-0:2.1.2-1.module_f33+11568+40ff51bd.armv7hl.rpm", "nvidia-texture-tools-debugsource-0:2.1.2-1.module_f33+11568+40ff51bd.i686.rpm", "nvidia-texture-tools-debugsource-0:2.1.2-1.module_f33+11568+40ff51bd.ppc64le.rpm", "nvidia-texture-tools-debugsource-0:2.1.2-1.module_f33+11568+40ff51bd.s390x.rpm", "nvidia-texture-tools-debugsource-0:2.1.2-1.module_f33+11568+40ff51bd.x86_64.rpm", "nvidia-texture-tools-devel-0:2.1.2-1.module_f33+11568+40ff51bd.aarch64.rpm", "nvidia-texture-tools-devel-0:2.1.2-1.module_f33+11568+40ff51bd.armv7hl.rpm", "nvidia-texture-tools-devel-0:2.1.2-1.module_f33+11568+40ff51bd.i686.rpm", "nvidia-texture-tools-devel-0:2.1.2-1.module_f33+11568+40ff51bd.ppc64le.rpm", "nvidia-texture-tools-devel-0:2.1.2-1.module_f33+11568+40ff51bd.s390x.rpm", "nvidia-texture-tools-devel-0:2.1.2-1.module_f33+11568+40ff51bd.x86_64.rpm", "python3-miniupnpc-0:2.2.0-1.module_f33+11568+40ff51bd.aarch64.rpm", "python3-miniupnpc-0:2.2.0-1.module_f33+11568+40ff51bd.armv7hl.rpm", "python3-miniupnpc-0:2.2.0-1.module_f33+11568+40ff51bd.i686.rpm", "python3-miniupnpc-0:2.2.0-1.module_f33+11568+40ff51bd.ppc64le.rpm", "python3-miniupnpc-0:2.2.0-1.module_f33+11568+40ff51bd.s390x.rpm", "python3-miniupnpc-0:2.2.0-1.module_f33+11568+40ff51bd.x86_64.rpm", "python3-miniupnpc-debuginfo-0:2.2.0-1.module_f33+11568+40ff51bd.aarch64.rpm", "python3-miniupnpc-debuginfo-0:2.2.0-1.module_f33+11568+40ff51bd.armv7hl.rpm", "python3-miniupnpc-debuginfo-0:2.2.0-1.module_f33+11568+40ff51bd.i686.rpm", "python3-miniupnpc-debuginfo-0:2.2.0-1.module_f33+11568+40ff51bd.ppc64le.rpm", "python3-miniupnpc-debuginfo-0:2.2.0-1.module_f33+11568+40ff51bd.s390x.rpm", "python3-miniupnpc-debuginfo-0:2.2.0-1.module_f33+11568+40ff51bd.x86_64.rpm" ] }, { "variant_id": "0ad", "variant_uid": "0ad:stable:3420210401150310:dab6ca4c", "variant_name": "0ad", "variant_type": "module", "variant_version": "stable", "variant_release": "3420210401150310", "variant_context": "dab6ca4c", "koji_tag": "module-0ad-stable-3420210401150310-dab6ca4c", "modulemd": "---\ndocument: modulemd\nversion: 2\ndata:\n name: 0ad\n stream: \"stable\"\n version: 3420210401150310\n context: dab6ca4c\n summary: Cross-Platform RTS Game of Ancient Warfare\n description: >-\n 0 A.D. (pronounced \"zero ey-dee\") is a free, open-source, cross-platform real-time\n strategy (RTS) game of ancient warfare. In short, it is a historically-based war/economy\n game that allows players to relive or rewrite the history of Western civilizations,\n focusing on the years between 500 B.C. and 500 A.D. The project is highly ambitious,\n involving state-of-the-art 3D graphics, detailed artwork, sound, and a flexible\n and powerful custom-built game engine.\n\n The game has been in development by Wildfire Games (WFG), a group of volunteer,\n hobbyist game developers, since 2001.\n license:\n module:\n - MIT\n xmd:\n mbs:\n buildrequires:\n flatpak-common:\n context: b08b4b44\n filtered_rpms: []\n koji_tag: module-flatpak-common-f34-3420210331192843-b08b4b44\n ref: 173a076959ceeb14315067cbfba7a33bf0b7cb14\n stream: f34\n version: 3420210331192843\n flatpak-runtime:\n context: 058368ca\n filtered_rpms: []\n koji_tag: module-flatpak-runtime-f34-3420210327202553-058368ca\n ref: 9a3b525dad79913139ead19d2b745a8ef295f82b\n stream: f34\n version: 3420210327202553\n platform:\n context: 00000000\n filtered_rpms: []\n koji_tag: module-f34-build\n ref: f34\n stream: f34\n stream_collision_modules: \n ursine_rpms: \n version: 1\n commit: 5d6020e777b7aea551a5aea703be4f9cb8689fc6\n mse: TRUE\n rpms:\n 0ad:\n ref: 71447f440795252a47c0caf21042f3ed9a9c5f65\n 0ad-data:\n ref: 33fe072a696aef3000553b03a6b0b11832ed2fad\n enet:\n ref: 503cd5a66cea6bcc37e0b484a3ed22f686197483\n fmt:\n ref: d0fa8ffd231f701f9ad6858b95a41242fae7be61\n gloox:\n ref: e95488bf505afda0ccb412ee367246d237016182\n libsodium:\n ref: a005ebe672dff8d6e83cf72af085b72810a895e6\n miniupnpc:\n ref: b3bcb24e59929b084c6c187951e1c1e173814abf\n nvidia-texture-tools:\n ref: 9f338bb34655deab4027c5d93e6fd1655d97a602\n scmurl: https://src.fedoraproject.org/flatpaks/0ad.git?#5d6020e777b7aea551a5aea703be4f9cb8689fc6\n ursine_rpms:\n - python3-protobuf-0:3.14.0-2.fc34.noarch\n - dbus-glib-0:0.110-11.fc34.i686\n - SDL-devel-0:1.2.15-46.fc34.ppc64le\n - liboauth-devel-0:1.0.3-16.fc34.armv7hl\n - flexiblas-blis-threads64-0:3.0.4-3.fc34.s390x\n - gd-0:2.3.2-1.fc34.i686\n - gnome-online-accounts-devel-0:3.39.92-1.fc34.x86_64\n - compat-wxGTK3-gtk2-devel-0:3.0.5.1-3.fc34.armv7hl\n - startup-notification-0:0.12-21.fc34.i686\n - libraqm-0:0.7.0-7.fc34.aarch64\n - glew-0:2.1.0-9.fc34.armv7hl\n - SDL_image-0:1.2.12-26.fc34.armv7hl\n - wxBase3-0:3.0.5.1-3.fc34.ppc64le\n - evolution-data-server-langpacks-0:3.40.0-3.fc34.noarch\n - libimagequant-devel-0:2.14.1-1.fc34.x86_64\n - boost-date-time-0:1.75.0-3.fc34.armv7hl\n - flexiblas-netlib64-0:3.0.4-3.fc34.aarch64\n - flexiblas-openblas-threads-0:3.0.4-3.fc34.ppc64le\n - poppler-0:21.01.0-5.fc34.x86_64\n - flexiblas-openblas-threads-0:3.0.4-3.fc34.i686\n - gspell-devel-0:1.9.1-1.fc34.x86_64\n - poppler-qt5-devel-0:21.01.0-5.fc34.x86_64\n - openjpeg2-devel-0:2.4.0-2.fc34.armv7hl\n - evolution-data-server-perl-0:3.40.0-3.fc34.s390x\n - protobuf-lite-0:3.14.0-2.fc34.armv7hl\n - libpeas-loader-python3-0:1.30.0-1.fc34.ppc64le\n - boost-date-time-0:1.75.0-3.fc34.i686\n - poppler-qt5-devel-0:21.01.0-5.fc34.i686\n - atkmm-0:2.28.1-2.fc34.s390x\n - libical-devel-0:3.0.9-2.fc34.ppc64le\n - python2.7-0:2.7.18-9.fc34.x86_64\n - boost-numpy3-0:1.75.0-3.fc34.s390x\n - poppler-glib-0:21.01.0-5.fc34.armv7hl\n - protobuf-devel-0:3.14.0-2.fc34.x86_64\n - wxGTK3-devel-0:3.0.5.1-3.fc34.x86_64\n - boost-type_erasure-0:1.75.0-3.fc34.x86_64\n - wxBase3-0:3.0.5.1-3.fc34.i686\n - urw-base35-nimbus-sans-fonts-0:20200910-4.fc34.noarch\n - boost-doc-0:1.75.0-3.fc34.armv7hl\n - libical-glib-devel-0:3.0.9-2.fc34.armv7hl\n - jbig2dec-0:0.19-4.fc34.s390x\n - gtkmm30-0:3.24.4-1.fc34.s390x\n - boost-serialization-0:1.75.0-3.fc34.s390x\n - libpeas-loader-python3-0:1.30.0-1.fc34.x86_64\n - wxBase3-devel-0:3.0.5.1-3.fc34.x86_64\n - suitesparse64_-static-0:5.4.0-6.fc34.ppc64le\n - flexiblas-atlas-0:3.0.4-3.fc34.s390x\n - flexiblas-blis-openmp64-0:3.0.4-3.fc34.x86_64\n - boost-contract-0:1.75.0-3.fc34.s390x\n - compat-wxGTK3-gtk2-gl-0:3.0.5.1-3.fc34.x86_64\n - polkit-0:0.117-3.fc34.x86_64\n - boost-filesystem-0:1.75.0-3.fc34.x86_64\n - gsl-0:2.6-4.fc34.x86_64\n - poppler-glib-devel-0:21.01.0-5.fc34.x86_64\n - boost-devel-0:1.75.0-3.fc34.i686\n - boost-nowide-0:1.75.0-3.fc34.ppc64le\n - evolution-data-server-tests-0:3.40.0-3.fc34.ppc64le\n - suitesparse64-devel-0:5.4.0-6.fc34.x86_64\n - boost-doctools-0:1.75.0-3.fc34.i686\n - boost-doctools-0:1.75.0-3.fc34.aarch64\n - boost-devel-0:1.75.0-3.fc34.armv7hl\n - boost-fiber-0:1.75.0-3.fc34.x86_64\n - boost-coroutine-0:1.75.0-3.fc34.i686\n - libmspack-devel-0:0.10.1-0.5.alpha.fc34.s390x\n - evolution-data-server-0:3.40.0-3.fc34.armv7hl\n - boost-log-0:1.75.0-3.fc34.ppc64le\n - libsigc++20-devel-0:2.10.6-2.fc34.i686\n - boost-python3-0:1.75.0-3.fc34.armv7hl\n - gsl-devel-0:2.6-4.fc34.ppc64le\n - boost-math-0:1.75.0-3.fc34.armv7hl\n - boost-chrono-0:1.75.0-3.fc34.aarch64\n - libijs-0:0.35-13.fc34.x86_64\n - libical-glib-doc-0:3.0.9-2.fc34.noarch\n - liboauth-devel-0:1.0.3-16.fc34.x86_64\n - suitesparse-devel-0:5.4.0-6.fc34.armv7hl\n - poppler-utils-0:21.01.0-5.fc34.armv7hl\n - libpeas-0:1.30.0-1.fc34.aarch64\n - libidn-devel-0:1.36-2.fc34.i686\n - libsigc++20-0:2.10.6-2.fc34.i686\n - boost-examples-0:1.75.0-3.fc34.ppc64le\n - liboauth-0:1.0.3-16.fc34.ppc64le\n - libdazzle-0:3.40.0-1.fc34.ppc64le\n - gnome-desktop3-0:40.0-1.fc34.s390x\n - cairomm-devel-0:1.14.2-8.fc34.armv7hl\n - protobuf-0:3.14.0-2.fc34.aarch64\n - boost-date-time-0:1.75.0-3.fc34.ppc64le\n - gsound-devel-0:1.0.2-13.fc34.s390x\n - poppler-cpp-0:21.01.0-5.fc34.aarch64\n - boost-wave-0:1.75.0-3.fc34.ppc64le\n - libwmf-devel-0:0.2.12-5.fc34.s390x\n - boost-thread-0:1.75.0-3.fc34.x86_64\n - boost-program-options-0:1.75.0-3.fc34.x86_64\n - polkit-0:0.117-3.fc34.ppc64le\n - ilmbase-0:2.3.0-6.fc34.aarch64\n - boost-type_erasure-0:1.75.0-3.fc34.s390x\n - atkmm-0:2.28.1-2.fc34.armv7hl\n - boost-date-time-0:1.75.0-3.fc34.x86_64\n - ghostscript-x11-0:9.53.3-5.fc34.armv7hl\n - poppler-devel-0:21.01.0-5.fc34.s390x\n - ghostscript-x11-0:9.53.3-5.fc34.s390x\n - boost-test-0:1.75.0-3.fc34.x86_64\n - openblas-openmp-0:0.3.12-2.fc34.s390x\n - flexiblas-devel-0:3.0.4-3.fc34.ppc64le\n - flexiblas-blis-threads64-0:3.0.4-3.fc34.x86_64\n - libpaper-devel-0:1.1.28-2.fc34.x86_64\n - flexiblas-openblas-serial64-0:3.0.4-3.fc34.s390x\n - boost-test-0:1.75.0-3.fc34.i686\n - flexiblas-blis-serial-0:3.0.4-3.fc34.x86_64\n - gspell-0:1.9.1-1.fc34.i686\n - poppler-devel-0:21.01.0-5.fc34.i686\n - compat-wxGTK3-gtk2-media-0:3.0.5.1-3.fc34.x86_64\n - exiv2-devel-0:0.27.3-5.fc34.x86_64\n - gsl-0:2.6-4.fc34.armv7hl\n - dbus-glib-0:0.110-11.fc34.x86_64\n - polkit-0:0.117-3.fc34.s390x\n - libpaper-devel-0:1.1.28-2.fc34.s390x\n - tbb-devel-0:2020.3-5.fc34.x86_64\n - protobuf-0:3.14.0-2.fc34.x86_64\n - openblas-serial64_-0:0.3.12-2.fc34.s390x\n - exiv2-0:0.27.3-5.fc34.ppc64le\n - wxGTK3-gl-0:3.0.5.1-3.fc34.i686\n - poppler-glib-0:21.01.0-5.fc34.ppc64le\n - libgdata-devel-0:0.18.1-1.fc34.x86_64\n - dbus-glib-devel-0:0.110-11.fc34.x86_64\n - openblas-devel-0:0.3.12-2.fc34.aarch64\n - libmspack-0:0.10.1-0.5.alpha.fc34.aarch64\n - flexiblas-blis-openmp-0:3.0.4-3.fc34.i686\n - openblas-openmp64-0:0.3.12-2.fc34.ppc64le\n - wxGTK3-gl-0:3.0.5.1-3.fc34.x86_64\n - libdazzle-devel-0:3.40.0-1.fc34.aarch64\n - exiv2-0:0.27.3-5.fc34.armv7hl\n - libgweather-devel-0:40.0-1.fc34.x86_64\n - boost-log-0:1.75.0-3.fc34.i686\n - geocode-glib-devel-0:3.26.2-3.fc34.x86_64\n - pangomm-devel-0:2.42.2-3.fc34.s390x\n - compat-wxGTK3-gtk2-devel-0:3.0.5.1-3.fc34.i686\n - boost-type_erasure-0:1.75.0-3.fc34.i686\n - urw-base35-p052-fonts-0:20200910-4.fc34.noarch\n - suitesparse64_-static-0:5.4.0-6.fc34.x86_64\n - liboauth-devel-0:1.0.3-16.fc34.s390x\n - boost-wave-0:1.75.0-3.fc34.i686\n - boost-random-0:1.75.0-3.fc34.aarch64\n - gnome-desktop3-devel-0:40.0-1.fc34.armv7hl\n - libfontenc-0:1.1.3-15.fc34.x86_64\n - protobuf-lite-0:3.14.0-2.fc34.s390x\n - openjpeg2-0:2.4.0-2.fc34.armv7hl\n - urw-base35-standard-symbols-ps-fonts-0:20200910-4.fc34.noarch\n - suitesparse-devel-0:5.4.0-6.fc34.s390x\n - startup-notification-devel-0:0.12-21.fc34.aarch64\n - SDL-0:1.2.15-46.fc34.ppc64le\n - libical-glib-devel-0:3.0.9-2.fc34.x86_64\n - evolution-data-server-perl-0:3.40.0-3.fc34.x86_64\n - openblas-devel-0:0.3.12-2.fc34.i686\n - cairomm-0:1.14.2-8.fc34.s390x\n - OpenEXR-doc-0:2.3.0-8.fc34.aarch64\n - urw-base35-z003-fonts-0:20200910-4.fc34.noarch\n - libfontenc-devel-0:1.1.3-15.fc34.aarch64\n - boost-doctools-0:1.75.0-3.fc34.ppc64le\n - evolution-data-server-perl-0:3.40.0-3.fc34.armv7hl\n - poppler-glib-0:21.01.0-5.fc34.i686\n - OpenEXR-0:2.3.0-8.fc34.x86_64\n - flexiblas-netlib-0:3.0.4-3.fc34.aarch64\n - boost-random-0:1.75.0-3.fc34.x86_64\n - boost-coroutine-0:1.75.0-3.fc34.x86_64\n - boost-iostreams-0:1.75.0-3.fc34.ppc64le\n - protobuf-0:3.14.0-2.fc34.ppc64le\n - wxGTK3-devel-0:3.0.5.1-3.fc34.armv7hl\n - glew-0:2.1.0-9.fc34.x86_64\n - flexiblas-openblas-serial-0:3.0.4-3.fc34.aarch64\n - OpenEXR-libs-0:2.3.0-8.fc34.aarch64\n - protobuf-static-0:3.14.0-2.fc34.ppc64le\n - ilmbase-devel-0:2.3.0-6.fc34.aarch64\n - SDL-devel-0:1.2.15-46.fc34.i686\n - pangomm-0:2.42.2-3.fc34.armv7hl\n - tbb-0:2020.3-5.fc34.armv7hl\n - dbus-glib-0:0.110-11.fc34.ppc64le\n - libidn-0:1.36-2.fc34.i686\n - boost-examples-0:1.75.0-3.fc34.i686\n - dbus-glib-devel-0:0.110-11.fc34.i686\n - libical-devel-0:3.0.9-2.fc34.s390x\n - glew-devel-0:2.1.0-9.fc34.i686\n - poppler-utils-0:21.01.0-5.fc34.ppc64le\n - urw-base35-fonts-devel-0:20200910-4.fc34.noarch\n - flexiblas-netlib64-0:3.0.4-3.fc34.x86_64\n - boost-contract-0:1.75.0-3.fc34.x86_64\n - libimagequant-0:2.14.1-1.fc34.x86_64\n - exiv2-0:0.27.3-5.fc34.i686\n - openjpeg2-devel-0:2.4.0-2.fc34.ppc64le\n - flexiblas-atlas-0:3.0.4-3.fc34.x86_64\n - gspell-devel-0:1.9.1-1.fc34.armv7hl\n - suitesparse64-0:5.4.0-6.fc34.s390x\n - libmspack-0:0.10.1-0.5.alpha.fc34.ppc64le\n - gnome-desktop3-0:40.0-1.fc34.armv7hl\n - adobe-mappings-cmap-0:20171205-10.fc34.noarch\n - libgdata-0:0.18.1-1.fc34.armv7hl\n - poppler-devel-0:21.01.0-5.fc34.aarch64\n - openblas-threads64_-0:0.3.12-2.fc34.ppc64le\n - jbig2dec-0:0.19-4.fc34.x86_64\n - boost-devel-0:1.75.0-3.fc34.x86_64\n - python3-tbb-0:2020.3-5.fc34.s390x\n - tbb-doc-0:2020.3-5.fc34.armv7hl\n - liboauth-0:1.0.3-16.fc34.aarch64\n - ghostscript-x11-0:9.53.3-5.fc34.ppc64le\n - flexiblas-hook-profile64-0:3.0.4-3.fc34.ppc64le\n - gd-devel-0:2.3.2-1.fc34.ppc64le\n - liboauth-devel-0:1.0.3-16.fc34.i686\n - wxGTK3-media-0:3.0.5.1-3.fc34.aarch64\n - poppler-qt5-devel-0:21.01.0-5.fc34.aarch64\n - libGLEW-0:2.1.0-9.fc34.aarch64\n - gtksourceview3-0:3.24.11-5.fc34.ppc64le\n - cairomm-0:1.14.2-8.fc34.ppc64le\n - libgweather-0:40.0-1.fc34.ppc64le\n - boost-test-0:1.75.0-3.fc34.ppc64le\n - gnome-desktop3-0:40.0-1.fc34.x86_64\n - libgdata-devel-0:0.18.1-1.fc34.aarch64\n - libsigc++20-0:2.10.6-2.fc34.armv7hl\n - boost-nowide-0:1.75.0-3.fc34.aarch64\n - boost-static-0:1.75.0-3.fc34.x86_64\n - SDL_image-0:1.2.12-26.fc34.aarch64\n - boost-python3-0:1.75.0-3.fc34.s390x\n - boost-random-0:1.75.0-3.fc34.i686\n - exiv2-libs-0:0.27.3-5.fc34.aarch64\n - ghostscript-x11-0:9.53.3-5.fc34.x86_64\n - boost-examples-0:1.75.0-3.fc34.s390x\n - protobuf-lite-static-0:3.14.0-2.fc34.aarch64\n - boost-filesystem-0:1.75.0-3.fc34.armv7hl\n - libraqm-0:0.7.0-7.fc34.s390x\n - wxBase3-devel-0:3.0.5.1-3.fc34.ppc64le\n - boost-examples-0:1.75.0-3.fc34.x86_64\n - libwmf-lite-0:0.2.12-5.fc34.aarch64\n - gspell-doc-0:1.9.1-1.fc34.noarch\n - atkmm-0:2.28.1-2.fc34.i686\n - boost-b2-0:1.75.0-3.fc34.s390x\n - flexiblas-netlib-0:3.0.4-3.fc34.s390x\n - gtksourceview3-tests-0:3.24.11-5.fc34.s390x\n - libgs-devel-0:9.53.3-5.fc34.x86_64\n - openblas-serial-0:0.3.12-2.fc34.ppc64le\n - libimagequant-0:2.14.1-1.fc34.ppc64le\n - OpenEXR-doc-0:2.3.0-8.fc34.x86_64\n - flexiblas-blis-serial64-0:3.0.4-3.fc34.x86_64\n - boost-graph-0:1.75.0-3.fc34.ppc64le\n - jbig2dec-0:0.19-4.fc34.armv7hl\n - flexiblas-hook-profile-0:3.0.4-3.fc34.aarch64\n - evolution-data-server-0:3.40.0-3.fc34.aarch64\n - poppler-glib-devel-0:21.01.0-5.fc34.aarch64\n - suitesparse-static-0:5.4.0-6.fc34.aarch64\n - polkit-0:0.117-3.fc34.i686\n - compat-wxGTK3-gtk2-0:3.0.5.1-3.fc34.x86_64\n - libraqm-devel-0:0.7.0-7.fc34.aarch64\n - libical-devel-0:3.0.9-2.fc34.i686\n - wxBase3-devel-0:3.0.5.1-3.fc34.i686\n - SDL_image-devel-0:1.2.12-26.fc34.s390x\n - dbus-glib-0:0.110-11.fc34.aarch64\n - wxGTK3-webview-0:3.0.5.1-3.fc34.i686\n - boost-stacktrace-0:1.75.0-3.fc34.x86_64\n - cairomm-0:1.14.2-8.fc34.armv7hl\n - boost-json-0:1.75.0-3.fc34.x86_64\n - OpenEXR-0:2.3.0-8.fc34.i686\n - flatpak-rpm-macros-0:33-3.fc34.x86_64\n - protobuf-compiler-0:3.14.0-2.fc34.armv7hl\n - ghostscript-tools-fonts-0:9.53.3-5.fc34.i686\n - compat-wxGTK3-gtk2-devel-0:3.0.5.1-3.fc34.x86_64\n - boost-0:1.75.0-3.fc34.armv7hl\n - SDL-0:1.2.15-46.fc34.i686\n - gtksourceview3-devel-0:3.24.11-5.fc34.ppc64le\n - ghostscript-tools-printing-0:9.53.3-5.fc34.s390x\n - wxGTK3-media-0:3.0.5.1-3.fc34.ppc64le\n - python3-tbb-0:2020.3-5.fc34.ppc64le\n - libdazzle-0:3.40.0-1.fc34.s390x\n - ilmbase-0:2.3.0-6.fc34.i686\n - libphonenumber-devel-0:8.12.11-4.fc34.i686\n - evolution-data-server-devel-0:3.40.0-3.fc34.x86_64\n - protobuf-devel-0:3.14.0-2.fc34.ppc64le\n - poppler-glib-devel-0:21.01.0-5.fc34.armv7hl\n - atkmm-devel-0:2.28.1-2.fc34.armv7hl\n - gtkmm30-0:3.24.4-1.fc34.x86_64\n - poppler-devel-0:21.01.0-5.fc34.x86_64\n - gnome-online-accounts-0:3.39.92-1.fc34.armv7hl\n - libgweather-0:40.0-1.fc34.armv7hl\n - SDL-static-0:1.2.15-46.fc34.armv7hl\n - libwmf-0:0.2.12-5.fc34.armv7hl\n - boost-type_erasure-0:1.75.0-3.fc34.armv7hl\n - libfontenc-devel-0:1.1.3-15.fc34.ppc64le\n - boost-locale-0:1.75.0-3.fc34.x86_64\n - openblas-static-0:0.3.12-2.fc34.s390x\n - libpaper-0:1.1.28-2.fc34.x86_64\n - jbig2dec-libs-0:0.19-4.fc34.s390x\n - libdazzle-devel-0:3.40.0-1.fc34.ppc64le\n - exiv2-libs-0:0.27.3-5.fc34.s390x\n - OpenEXR-doc-0:2.3.0-8.fc34.s390x\n - libgs-devel-0:9.53.3-5.fc34.armv7hl\n - openblas-threads64_-0:0.3.12-2.fc34.s390x\n - ghostscript-0:9.53.3-5.fc34.s390x\n - flexiblas-hook-profile-0:3.0.4-3.fc34.s390x\n - protobuf-devel-0:3.14.0-2.fc34.aarch64\n - protobuf-static-0:3.14.0-2.fc34.s390x\n - poppler-0:21.01.0-5.fc34.s390x\n - libwmf-devel-0:0.2.12-5.fc34.armv7hl\n - ghostscript-core-0:9.53.3-5.fc34.aarch64\n - ghostscript-0:9.53.3-5.fc34.x86_64\n - glibmm24-devel-0:2.64.5-4.fc34.aarch64\n - ghostscript-tools-printing-0:9.53.3-5.fc34.ppc64le\n - gnome-online-accounts-devel-0:3.39.92-1.fc34.armv7hl\n - cairomm-devel-0:1.14.2-8.fc34.ppc64le\n - poppler-0:21.01.0-5.fc34.i686\n - libimagequant-devel-0:2.14.1-1.fc34.i686\n - flexiblas-blis-serial-0:3.0.4-3.fc34.i686\n - gsl-0:2.6-4.fc34.aarch64\n - polkit-devel-0:0.117-3.fc34.i686\n - flexiblas-blis-threads-0:3.0.4-3.fc34.x86_64\n - boost-python3-0:1.75.0-3.fc34.aarch64\n - gtkmm30-0:3.24.4-1.fc34.ppc64le\n - glew-0:2.1.0-9.fc34.i686\n - boost-0:1.75.0-3.fc34.ppc64le\n - pangomm-0:2.42.2-3.fc34.i686\n - libfontenc-devel-0:1.1.3-15.fc34.i686\n - libical-glib-0:3.0.9-2.fc34.x86_64\n - gspell-0:1.9.1-1.fc34.ppc64le\n - libsigc++20-doc-0:2.10.6-2.fc34.noarch\n - libgweather-0:40.0-1.fc34.s390x\n - gsound-devel-0:1.0.2-13.fc34.i686\n - boost-system-0:1.75.0-3.fc34.aarch64\n - poppler-cpp-devel-0:21.01.0-5.fc34.i686\n - protobuf-devel-0:3.14.0-2.fc34.s390x\n - gnome-desktop3-devel-0:40.0-1.fc34.i686\n - libwmf-lite-0:0.2.12-5.fc34.armv7hl\n - flexiblas-blis-openmp-0:3.0.4-3.fc34.x86_64\n - libical-0:3.0.9-2.fc34.s390x\n - tbb-doc-0:2020.3-5.fc34.i686\n - libidn-0:1.36-2.fc34.ppc64le\n - openblas-threads64-0:0.3.12-2.fc34.ppc64le\n - protobuf-lite-devel-0:3.14.0-2.fc34.s390x\n - libmspack-devel-0:0.10.1-0.5.alpha.fc34.aarch64\n - poppler-glib-devel-0:21.01.0-5.fc34.i686\n - libphonenumber-devel-0:8.12.11-4.fc34.ppc64le\n - gsound-0:1.0.2-13.fc34.armv7hl\n - boost-doc-0:1.75.0-3.fc34.s390x\n - gsound-devel-0:1.0.2-13.fc34.x86_64\n - wxGTK3-i18n-0:3.0.5.1-3.fc34.noarch\n - dbus-glib-devel-0:0.110-11.fc34.ppc64le\n - gd-devel-0:2.3.2-1.fc34.aarch64\n - flexiblas-openblas-threads-0:3.0.4-3.fc34.x86_64\n - geocode-glib-0:3.26.2-3.fc34.armv7hl\n - SDL-0:1.2.15-46.fc34.x86_64\n - wxGTK3-gl-0:3.0.5.1-3.fc34.armv7hl\n - glibmm24-0:2.64.5-4.fc34.armv7hl\n - ghostscript-core-0:9.53.3-5.fc34.x86_64\n - compat-wxGTK3-gtk2-devel-0:3.0.5.1-3.fc34.aarch64\n - boost-program-options-0:1.75.0-3.fc34.s390x\n - wxGTK3-gl-0:3.0.5.1-3.fc34.s390x\n - gtksourceview3-0:3.24.11-5.fc34.i686\n - libGLEW-0:2.1.0-9.fc34.armv7hl\n - pangomm-0:2.42.2-3.fc34.x86_64\n - wxBase3-0:3.0.5.1-3.fc34.x86_64\n - ghostscript-core-0:9.53.3-5.fc34.ppc64le\n - suitesparse64-devel-0:5.4.0-6.fc34.s390x\n - flexiblas-0:3.0.4-3.fc34.s390x\n - openblas-threads-0:0.3.12-2.fc34.x86_64\n - gtkmm30-devel-0:3.24.4-1.fc34.armv7hl\n - suitesparse-static-0:5.4.0-6.fc34.x86_64\n - boost-thread-0:1.75.0-3.fc34.armv7hl\n - boost-numpy3-0:1.75.0-3.fc34.i686\n - ghostscript-tools-fonts-0:9.53.3-5.fc34.x86_64\n - libidn-0:1.36-2.fc34.armv7hl\n - libdazzle-0:3.40.0-1.fc34.x86_64\n - libphonenumber-devel-0:8.12.11-4.fc34.s390x\n - jbig2dec-devel-0:0.19-4.fc34.x86_64\n - boost-locale-0:1.75.0-3.fc34.s390x\n - glew-devel-0:2.1.0-9.fc34.armv7hl\n - wxGTK3-devel-0:3.0.5.1-3.fc34.ppc64le\n - wxGTK3-0:3.0.5.1-3.fc34.s390x\n - evolution-data-server-tests-0:3.40.0-3.fc34.i686\n - ghostscript-gtk-0:9.53.3-5.fc34.i686\n - boost-atomic-0:1.75.0-3.fc34.ppc64le\n - polkit-devel-0:0.117-3.fc34.s390x\n - evolution-data-server-tests-0:3.40.0-3.fc34.x86_64\n - ghostscript-doc-0:9.53.3-5.fc34.noarch\n - wxGTK3-media-0:3.0.5.1-3.fc34.x86_64\n - libical-devel-0:3.0.9-2.fc34.armv7hl\n - libgs-0:9.53.3-5.fc34.armv7hl\n - libidn-java-0:1.36-2.fc34.noarch\n - SDL-0:1.2.15-46.fc34.aarch64\n - gd-0:2.3.2-1.fc34.ppc64le\n - libgweather-0:40.0-1.fc34.aarch64\n - jbig2dec-devel-0:0.19-4.fc34.i686\n - boost-type_erasure-0:1.75.0-3.fc34.aarch64\n - glew-0:2.1.0-9.fc34.s390x\n - libgweather-0:40.0-1.fc34.i686\n - openblas-openmp64-0:0.3.12-2.fc34.aarch64\n - flexiblas-devel-0:3.0.4-3.fc34.aarch64\n - flexiblas-blis-serial-0:3.0.4-3.fc34.s390x\n - boost-atomic-0:1.75.0-3.fc34.aarch64\n - poppler-glib-0:21.01.0-5.fc34.x86_64\n - libpaper-0:1.1.28-2.fc34.ppc64le\n - protobuf-static-0:3.14.0-2.fc34.armv7hl\n - libimagequant-devel-0:2.14.1-1.fc34.s390x\n - gnome-desktop3-tests-0:40.0-1.fc34.x86_64\n - boost-locale-0:1.75.0-3.fc34.armv7hl\n - suitesparse-0:5.4.0-6.fc34.x86_64\n - boost-nowide-0:1.75.0-3.fc34.i686\n - protobuf-compiler-0:3.14.0-2.fc34.aarch64\n - libpeas-gtk-0:1.30.0-1.fc34.i686\n - gnome-online-accounts-0:3.39.92-1.fc34.s390x\n - gnome-online-accounts-devel-0:3.39.92-1.fc34.aarch64\n - boost-numpy3-0:1.75.0-3.fc34.armv7hl\n - tbb-0:2020.3-5.fc34.ppc64le\n - boost-iostreams-0:1.75.0-3.fc34.i686\n - libphonenumber-devel-0:8.12.11-4.fc34.x86_64\n - python2-setuptools-0:41.2.0-4.fc34.noarch\n - flexiblas-0:3.0.4-3.fc34.aarch64\n - poppler-devel-0:21.01.0-5.fc34.ppc64le\n - flexiblas-netlib64-0:3.0.4-3.fc34.ppc64le\n - xorg-x11-font-utils-1:7.5-51.fc34.ppc64le\n - libidn-javadoc-0:1.36-2.fc34.noarch\n - gd-progs-0:2.3.2-1.fc34.i686\n - compat-wxGTK3-gtk2-0:3.0.5.1-3.fc34.armv7hl\n - libphonenumber-0:8.12.11-4.fc34.s390x\n - gtksourceview3-0:3.24.11-5.fc34.x86_64\n - protobuf-java-util-0:3.14.0-2.fc34.noarch\n - gspell-devel-0:1.9.1-1.fc34.i686\n - gsound-0:1.0.2-13.fc34.i686\n - boost-timer-0:1.75.0-3.fc34.armv7hl\n - OpenEXR-devel-0:2.3.0-8.fc34.i686\n - poppler-qt5-0:21.01.0-5.fc34.x86_64\n - libpeas-gtk-0:1.30.0-1.fc34.ppc64le\n - boost-fiber-0:1.75.0-3.fc34.s390x\n - libsigc++20-devel-0:2.10.6-2.fc34.aarch64\n - suitesparse64_-0:5.4.0-6.fc34.ppc64le\n - poppler-cpp-0:21.01.0-5.fc34.armv7hl\n - libidn-devel-0:1.36-2.fc34.aarch64\n - libidn-devel-0:1.36-2.fc34.s390x\n - boost-coroutine-0:1.75.0-3.fc34.ppc64le\n - geocode-glib-devel-0:3.26.2-3.fc34.i686\n - protobuf-parent-0:3.14.0-2.fc34.noarch\n - libgweather-devel-0:40.0-1.fc34.i686\n - OpenEXR-devel-0:2.3.0-8.fc34.armv7hl\n - libidn-0:1.36-2.fc34.s390x\n - boost-serialization-0:1.75.0-3.fc34.i686\n - suitesparse64_-static-0:5.4.0-6.fc34.s390x\n - flexiblas-openblas-openmp-0:3.0.4-3.fc34.i686\n - gnome-online-accounts-0:3.39.92-1.fc34.ppc64le\n - boost-date-time-0:1.75.0-3.fc34.aarch64\n - libical-glib-0:3.0.9-2.fc34.ppc64le\n - libwmf-devel-0:0.2.12-5.fc34.x86_64\n - boost-system-0:1.75.0-3.fc34.s390x\n - flexiblas-devel-0:3.0.4-3.fc34.x86_64\n - protobuf-static-0:3.14.0-2.fc34.i686\n - flexiblas-openblas-serial-0:3.0.4-3.fc34.x86_64\n - glibmm24-0:2.64.5-4.fc34.aarch64\n - gtksourceview3-0:3.24.11-5.fc34.armv7hl\n - libraqm-0:0.7.0-7.fc34.armv7hl\n - wxGTK3-0:3.0.5.1-3.fc34.ppc64le\n - libfontenc-0:1.1.3-15.fc34.s390x\n - polkit-libs-0:0.117-3.fc34.armv7hl\n - glew-devel-0:2.1.0-9.fc34.ppc64le\n - libgweather-devel-0:40.0-1.fc34.ppc64le\n - libmspack-0:0.10.1-0.5.alpha.fc34.s390x\n - glibmm24-devel-0:2.64.5-4.fc34.x86_64\n - ghostscript-gtk-0:9.53.3-5.fc34.x86_64\n - boost-system-0:1.75.0-3.fc34.i686\n - geocode-glib-devel-0:3.26.2-3.fc34.ppc64le\n - protobuf-0:3.14.0-2.fc34.armv7hl\n - SDL_image-0:1.2.12-26.fc34.s390x\n - polkit-libs-0:0.117-3.fc34.i686\n - libgs-devel-0:9.53.3-5.fc34.i686\n - glibmm24-0:2.64.5-4.fc34.x86_64\n - flexiblas-netlib-0:3.0.4-3.fc34.i686\n - openblas-openmp-0:0.3.12-2.fc34.x86_64\n - openblas-openmp64_-0:0.3.12-2.fc34.ppc64le\n - libwmf-lite-0:0.2.12-5.fc34.s390x\n - boost-chrono-0:1.75.0-3.fc34.armv7hl\n - gnome-online-accounts-devel-0:3.39.92-1.fc34.i686\n - cairomm-devel-0:1.14.2-8.fc34.aarch64\n - libGLEW-0:2.1.0-9.fc34.x86_64\n - libpaper-devel-0:1.1.28-2.fc34.i686\n - SDL-devel-0:1.2.15-46.fc34.s390x\n - suitesparse64-0:5.4.0-6.fc34.ppc64le\n - compat-wxGTK3-gtk2-media-0:3.0.5.1-3.fc34.i686\n - evolution-data-server-perl-0:3.40.0-3.fc34.i686\n - flexiblas-blis-openmp64-0:3.0.4-3.fc34.s390x\n - protobuf-compiler-0:3.14.0-2.fc34.ppc64le\n - boost-stacktrace-0:1.75.0-3.fc34.armv7hl\n - libpaper-devel-0:1.1.28-2.fc34.ppc64le\n - poppler-glib-0:21.01.0-5.fc34.aarch64\n - protobuf-static-0:3.14.0-2.fc34.aarch64\n - libijs-devel-0:0.35-13.fc34.i686\n - boost-json-0:1.75.0-3.fc34.armv7hl\n - ghostscript-core-0:9.53.3-5.fc34.i686\n - flexiblas-devel-0:3.0.4-3.fc34.armv7hl\n - boost-static-0:1.75.0-3.fc34.s390x\n - libsigc++20-0:2.10.6-2.fc34.aarch64\n - exiv2-0:0.27.3-5.fc34.s390x\n - flexiblas-blis-threads-0:3.0.4-3.fc34.ppc64le\n - polkit-libs-0:0.117-3.fc34.aarch64\n - flexiblas-hook-profile-0:3.0.4-3.fc34.ppc64le\n - SDL-devel-0:1.2.15-46.fc34.armv7hl\n - flexiblas-atlas-0:3.0.4-3.fc34.i686\n - libphonenumber-devel-0:8.12.11-4.fc34.aarch64\n - dbus-glib-devel-0:0.110-11.fc34.s390x\n - flexiblas-openblas-threads64-0:3.0.4-3.fc34.s390x\n - boost-program-options-0:1.75.0-3.fc34.i686\n - atkmm-devel-0:2.28.1-2.fc34.x86_64\n - polkit-docs-0:0.117-3.fc34.noarch\n - atkmm-0:2.28.1-2.fc34.ppc64le\n - flexiblas-openblas-threads64-0:3.0.4-3.fc34.ppc64le\n - libwmf-0:0.2.12-5.fc34.aarch64\n - openjpeg2-0:2.4.0-2.fc34.aarch64\n - boost-regex-0:1.75.0-3.fc34.armv7hl\n - ilmbase-devel-0:2.3.0-6.fc34.s390x\n - flexiblas-blis-serial64-0:3.0.4-3.fc34.ppc64le\n - libical-glib-devel-0:3.0.9-2.fc34.aarch64\n - exiv2-devel-0:0.27.3-5.fc34.ppc64le\n - wxGTK3-devel-0:3.0.5.1-3.fc34.i686\n - SDL_image-devel-0:1.2.12-26.fc34.armv7hl\n - libphonenumber-0:8.12.11-4.fc34.ppc64le\n - openjpeg2-devel-0:2.4.0-2.fc34.i686\n - gtkmm30-devel-0:3.24.4-1.fc34.ppc64le\n - evolution-data-server-tests-0:3.40.0-3.fc34.armv7hl\n - boost-coroutine-0:1.75.0-3.fc34.aarch64\n - boost-fiber-0:1.75.0-3.fc34.ppc64le\n - boost-graph-0:1.75.0-3.fc34.s390x\n - suitesparse64_-devel-0:5.4.0-6.fc34.aarch64\n - boost-nowide-0:1.75.0-3.fc34.armv7hl\n - flexiblas-blis-threads64-0:3.0.4-3.fc34.aarch64\n - libidn-devel-0:1.36-2.fc34.armv7hl\n - flexiblas-blis-serial64-0:3.0.4-3.fc34.s390x\n - wxGTK3-webview-0:3.0.5.1-3.fc34.armv7hl\n - cairomm-devel-0:1.14.2-8.fc34.x86_64\n - libsigc++20-devel-0:2.10.6-2.fc34.armv7hl\n - ghostscript-tools-fonts-0:9.53.3-5.fc34.aarch64\n - openblas-openmp64_-0:0.3.12-2.fc34.aarch64\n - suitesparse-devel-0:5.4.0-6.fc34.ppc64le\n - poppler-glib-0:21.01.0-5.fc34.s390x\n - flexiblas-netlib-0:3.0.4-3.fc34.armv7hl\n - gd-progs-0:2.3.2-1.fc34.x86_64\n - poppler-qt5-0:21.01.0-5.fc34.aarch64\n - openblas-serial64_-0:0.3.12-2.fc34.x86_64\n - poppler-utils-0:21.01.0-5.fc34.i686\n - ilmbase-0:2.3.0-6.fc34.ppc64le\n - OpenEXR-doc-0:2.3.0-8.fc34.armv7hl\n - SDL-static-0:1.2.15-46.fc34.s390x\n - compat-wxGTK3-gtk2-media-0:3.0.5.1-3.fc34.s390x\n - gtkmm30-devel-0:3.24.4-1.fc34.x86_64\n - cairomm-devel-0:1.14.2-8.fc34.s390x\n - ghostscript-gtk-0:9.53.3-5.fc34.ppc64le\n - gnome-desktop3-tests-0:40.0-1.fc34.ppc64le\n - boost-b2-0:1.75.0-3.fc34.ppc64le\n - OpenEXR-0:2.3.0-8.fc34.aarch64\n - poppler-qt5-0:21.01.0-5.fc34.i686\n - SDL-static-0:1.2.15-46.fc34.x86_64\n - pangomm-0:2.42.2-3.fc34.ppc64le\n - cairomm-devel-0:1.14.2-8.fc34.i686\n - openblas-0:0.3.12-2.fc34.armv7hl\n - libgweather-devel-0:40.0-1.fc34.aarch64\n - geocode-glib-devel-0:3.26.2-3.fc34.aarch64\n - wxGTK3-gl-0:3.0.5.1-3.fc34.aarch64\n - openblas-devel-0:0.3.12-2.fc34.x86_64\n - ghostscript-0:9.53.3-5.fc34.i686\n - exiv2-libs-0:0.27.3-5.fc34.i686\n - libijs-devel-0:0.35-13.fc34.s390x\n - libfontenc-0:1.1.3-15.fc34.armv7hl\n - startup-notification-0:0.12-21.fc34.aarch64\n - tbb-devel-0:2020.3-5.fc34.i686\n - flexiblas-openblas-openmp-0:3.0.4-3.fc34.armv7hl\n - gd-0:2.3.2-1.fc34.aarch64\n - jbig2dec-libs-0:0.19-4.fc34.armv7hl\n - gd-progs-0:2.3.2-1.fc34.ppc64le\n - ghostscript-x11-0:9.53.3-5.fc34.i686\n - boost-serialization-0:1.75.0-3.fc34.aarch64\n - libfontenc-0:1.1.3-15.fc34.i686\n - poppler-cpp-0:21.01.0-5.fc34.x86_64\n - boost-context-0:1.75.0-3.fc34.s390x\n - wxBase3-0:3.0.5.1-3.fc34.armv7hl\n - suitesparse-static-0:5.4.0-6.fc34.ppc64le\n - libdazzle-devel-0:3.40.0-1.fc34.armv7hl\n - boost-doc-0:1.75.0-3.fc34.aarch64\n - xorg-x11-font-utils-1:7.5-51.fc34.i686\n - poppler-qt5-0:21.01.0-5.fc34.ppc64le\n - flexiblas-openblas-threads-0:3.0.4-3.fc34.armv7hl\n - startup-notification-devel-0:0.12-21.fc34.armv7hl\n - boost-system-0:1.75.0-3.fc34.armv7hl\n - flexiblas-openblas-openmp-0:3.0.4-3.fc34.x86_64\n - flexiblas-blis-threads64-0:3.0.4-3.fc34.ppc64le\n - openblas-serial-0:0.3.12-2.fc34.s390x\n - tbb-doc-0:2020.3-5.fc34.aarch64\n - flexiblas-blis-threads-0:3.0.4-3.fc34.i686\n - gnome-desktop3-devel-0:40.0-1.fc34.s390x\n - suitesparse-0:5.4.0-6.fc34.ppc64le\n - wxGTK3-0:3.0.5.1-3.fc34.armv7hl\n - flexiblas-devel-0:3.0.4-3.fc34.i686\n - gnome-desktop3-devel-0:40.0-1.fc34.x86_64\n - dbus-glib-devel-0:0.110-11.fc34.aarch64\n - libgs-0:9.53.3-5.fc34.ppc64le\n - protobuf-lite-static-0:3.14.0-2.fc34.i686\n - xorg-x11-font-utils-1:7.5-51.fc34.s390x\n - startup-notification-0:0.12-21.fc34.armv7hl\n - flexiblas-blis-serial-0:3.0.4-3.fc34.ppc64le\n - libical-glib-0:3.0.9-2.fc34.s390x\n - tbb-devel-0:2020.3-5.fc34.aarch64\n - ghostscript-core-0:9.53.3-5.fc34.armv7hl\n - SDL_image-0:1.2.12-26.fc34.ppc64le\n - flexiblas-hook-profile64-0:3.0.4-3.fc34.aarch64\n - flexiblas-blis-openmp-0:3.0.4-3.fc34.armv7hl\n - poppler-cpp-0:21.01.0-5.fc34.i686\n - openjpeg2-0:2.4.0-2.fc34.s390x\n - glew-0:2.1.0-9.fc34.ppc64le\n - suitesparse64-static-0:5.4.0-6.fc34.s390x\n - gtksourceview3-devel-0:3.24.11-5.fc34.i686\n - boost-b2-0:1.75.0-3.fc34.i686\n - openblas-static-0:0.3.12-2.fc34.i686\n - polkit-devel-0:0.117-3.fc34.armv7hl\n - libGLEW-0:2.1.0-9.fc34.s390x\n - glew-devel-0:2.1.0-9.fc34.aarch64\n - gsound-0:1.0.2-13.fc34.x86_64\n - gnome-desktop3-tests-0:40.0-1.fc34.s390x\n - compat-wxGTK3-gtk2-0:3.0.5.1-3.fc34.aarch64\n - protobuf-lite-0:3.14.0-2.fc34.i686\n - ghostscript-tools-fonts-0:9.53.3-5.fc34.s390x\n - libijs-devel-0:0.35-13.fc34.armv7hl\n - boost-thread-0:1.75.0-3.fc34.aarch64\n - libgs-0:9.53.3-5.fc34.aarch64\n - wxGTK3-webview-0:3.0.5.1-3.fc34.ppc64le\n - flexiblas-atlas-0:3.0.4-3.fc34.aarch64\n - boost-container-0:1.75.0-3.fc34.x86_64\n - gtksourceview3-devel-0:3.24.11-5.fc34.s390x\n - wxGTK3-devel-0:3.0.5.1-3.fc34.aarch64\n - poppler-cpp-0:21.01.0-5.fc34.s390x\n - libgdata-0:0.18.1-1.fc34.aarch64\n - SDL_image-devel-0:1.2.12-26.fc34.i686\n - compat-wxGTK3-gtk2-0:3.0.5.1-3.fc34.ppc64le\n - protobuf-static-0:3.14.0-2.fc34.x86_64\n - google-droid-sans-mono-fonts-0:20200215-9.fc34.noarch\n - exiv2-devel-0:0.27.3-5.fc34.aarch64\n - python2.7-0:2.7.18-9.fc34.armv7hl\n - tbb-doc-0:2020.3-5.fc34.ppc64le\n - boost-type_erasure-0:1.75.0-3.fc34.ppc64le\n - libpeas-devel-0:1.30.0-1.fc34.armv7hl\n - openjpeg2-devel-0:2.4.0-2.fc34.x86_64\n - liboauth-0:1.0.3-16.fc34.s390x\n - boost-regex-0:1.75.0-3.fc34.s390x\n - libimagequant-0:2.14.1-1.fc34.i686\n - evolution-data-server-0:3.40.0-3.fc34.i686\n - libGLEW-0:2.1.0-9.fc34.ppc64le\n - pangomm-devel-0:2.42.2-3.fc34.i686\n - poppler-qt5-devel-0:21.01.0-5.fc34.ppc64le\n - boost-math-0:1.75.0-3.fc34.ppc64le\n - boost-chrono-0:1.75.0-3.fc34.x86_64\n - protobuf-lite-0:3.14.0-2.fc34.ppc64le\n - libpaper-devel-0:1.1.28-2.fc34.armv7hl\n - libgdata-devel-0:0.18.1-1.fc34.i686\n - boost-log-0:1.75.0-3.fc34.armv7hl\n - boost-log-0:1.75.0-3.fc34.x86_64\n - flexiblas-blis-openmp64-0:3.0.4-3.fc34.aarch64\n - openblas-0:0.3.12-2.fc34.s390x\n - evolution-data-server-perl-0:3.40.0-3.fc34.aarch64\n - flexiblas-openblas-openmp64-0:3.0.4-3.fc34.ppc64le\n - openblas-devel-0:0.3.12-2.fc34.armv7hl\n - libical-glib-devel-0:3.0.9-2.fc34.ppc64le\n - opengl-games-utils-0:0.2-19.fc34.noarch\n - cairomm-0:1.14.2-8.fc34.i686\n - libraqm-devel-0:0.7.0-7.fc34.s390x\n - libfontenc-0:1.1.3-15.fc34.aarch64\n - libwmf-0:0.2.12-5.fc34.ppc64le\n - libgdata-0:0.18.1-1.fc34.s390x\n - flexiblas-blis-serial-0:3.0.4-3.fc34.aarch64\n - SDL_image-0:1.2.12-26.fc34.i686\n - gnome-desktop3-0:40.0-1.fc34.i686\n - libgs-0:9.53.3-5.fc34.s390x\n - boost-log-0:1.75.0-3.fc34.aarch64\n - ghostscript-tools-printing-0:9.53.3-5.fc34.x86_64\n - boost-atomic-0:1.75.0-3.fc34.armv7hl\n - protobuf-0:3.14.0-2.fc34.s390x\n - libsigc++20-0:2.10.6-2.fc34.x86_64\n - libdazzle-devel-0:3.40.0-1.fc34.i686\n - openblas-serial64_-0:0.3.12-2.fc34.aarch64\n - suitesparse64-devel-0:5.4.0-6.fc34.ppc64le\n - boost-stacktrace-0:1.75.0-3.fc34.i686\n - poppler-glib-devel-0:21.01.0-5.fc34.s390x\n - evolution-data-server-0:3.40.0-3.fc34.ppc64le\n - boost-math-0:1.75.0-3.fc34.i686\n - libimagequant-0:2.14.1-1.fc34.s390x\n - flexiblas-blis-threads-0:3.0.4-3.fc34.aarch64\n - suitesparse-0:5.4.0-6.fc34.s390x\n - boost-filesystem-0:1.75.0-3.fc34.aarch64\n - suitesparse-devel-0:5.4.0-6.fc34.i686\n - OpenEXR-0:2.3.0-8.fc34.s390x\n - liboauth-0:1.0.3-16.fc34.armv7hl\n - gd-devel-0:2.3.2-1.fc34.armv7hl\n - boost-devel-0:1.75.0-3.fc34.ppc64le\n - ilmbase-0:2.3.0-6.fc34.x86_64\n - boost-stacktrace-0:1.75.0-3.fc34.s390x\n - suitesparse-doc-0:5.4.0-6.fc34.noarch\n - boost-numpy3-0:1.75.0-3.fc34.aarch64\n - boost-python3-0:1.75.0-3.fc34.x86_64\n - SDL-static-0:1.2.15-46.fc34.aarch64\n - compat-wxGTK3-gtk2-devel-0:3.0.5.1-3.fc34.ppc64le\n - glibmm24-devel-0:2.64.5-4.fc34.i686\n - gsl-0:2.6-4.fc34.i686\n - compat-wxGTK3-gtk2-gl-0:3.0.5.1-3.fc34.i686\n - protobuf-vim-0:3.14.0-2.fc34.noarch\n - libraqm-0:0.7.0-7.fc34.i686\n - openjpeg2-0:2.4.0-2.fc34.ppc64le\n - boost-filesystem-0:1.75.0-3.fc34.ppc64le\n - boost-contract-0:1.75.0-3.fc34.ppc64le\n - poppler-qt5-0:21.01.0-5.fc34.s390x\n - flexiblas-0:3.0.4-3.fc34.i686\n - gsl-devel-0:2.6-4.fc34.x86_64\n - protobuf-0:3.14.0-2.fc34.i686\n - protobuf-lite-static-0:3.14.0-2.fc34.armv7hl\n - boost-locale-0:1.75.0-3.fc34.aarch64\n - boost-python3-0:1.75.0-3.fc34.i686\n - startup-notification-devel-0:0.12-21.fc34.s390x\n - boost-doctools-0:1.75.0-3.fc34.s390x\n - adobe-mappings-cmap-deprecated-0:20171205-10.fc34.noarch\n - geocode-glib-0:3.26.2-3.fc34.i686\n - geocode-glib-devel-0:3.26.2-3.fc34.s390x\n - flatpak-rpm-macros-0:33-3.fc34.s390x\n - libwmf-devel-0:0.2.12-5.fc34.ppc64le\n - gtksourceview3-devel-0:3.24.11-5.fc34.aarch64\n - libgweather-devel-0:40.0-1.fc34.s390x\n - libfontenc-0:1.1.3-15.fc34.ppc64le\n - SDL-0:1.2.15-46.fc34.s390x\n - boost-examples-0:1.75.0-3.fc34.aarch64\n - libpeas-loader-python3-0:1.30.0-1.fc34.armv7hl\n - flexiblas-devel-0:3.0.4-3.fc34.s390x\n - gsound-0:1.0.2-13.fc34.aarch64\n - suitesparse64_-0:5.4.0-6.fc34.aarch64\n - evolution-data-server-0:3.40.0-3.fc34.x86_64\n - boost-0:1.75.0-3.fc34.s390x\n - python3-tbb-0:2020.3-5.fc34.x86_64\n - flexiblas-openblas-serial-0:3.0.4-3.fc34.ppc64le\n - wxBase3-devel-0:3.0.5.1-3.fc34.s390x\n - gtksourceview3-devel-0:3.24.11-5.fc34.x86_64\n - libidn-0:1.36-2.fc34.x86_64\n - libgdata-devel-0:0.18.1-1.fc34.ppc64le\n - gtksourceview3-tests-0:3.24.11-5.fc34.aarch64\n - tbb-0:2020.3-5.fc34.i686\n - boost-atomic-0:1.75.0-3.fc34.i686\n - OpenEXR-0:2.3.0-8.fc34.ppc64le\n - flexiblas-blis-openmp-0:3.0.4-3.fc34.s390x\n - poppler-0:21.01.0-5.fc34.aarch64\n - protobuf-lite-0:3.14.0-2.fc34.x86_64\n - libical-devel-0:3.0.9-2.fc34.x86_64\n - openblas-threads64-0:0.3.12-2.fc34.x86_64\n - boost-contract-0:1.75.0-3.fc34.armv7hl\n - openblas-serial64-0:0.3.12-2.fc34.s390x\n - OpenEXR-libs-0:2.3.0-8.fc34.armv7hl\n - boost-thread-0:1.75.0-3.fc34.ppc64le\n - ilmbase-devel-0:2.3.0-6.fc34.armv7hl\n - boost-wave-0:1.75.0-3.fc34.aarch64\n - gnome-online-accounts-devel-0:3.39.92-1.fc34.ppc64le\n - openblas-serial-0:0.3.12-2.fc34.i686\n - polkit-libs-0:0.117-3.fc34.x86_64\n - flexiblas-0:3.0.4-3.fc34.ppc64le\n - ghostscript-tools-printing-0:9.53.3-5.fc34.i686\n - gnome-desktop3-0:40.0-1.fc34.aarch64\n - urw-base35-d050000l-fonts-0:20200910-4.fc34.noarch\n - boost-context-0:1.75.0-3.fc34.armv7hl\n - libmspack-devel-0:0.10.1-0.5.alpha.fc34.x86_64\n - protobuf-lite-static-0:3.14.0-2.fc34.s390x\n - evolution-data-server-devel-0:3.40.0-3.fc34.i686\n - urw-base35-nimbus-mono-ps-fonts-0:20200910-4.fc34.noarch\n - tbb-doc-0:2020.3-5.fc34.s390x\n - pangomm-0:2.42.2-3.fc34.aarch64\n - gnome-desktop3-0:40.0-1.fc34.ppc64le\n - gnome-desktop3-devel-0:40.0-1.fc34.ppc64le\n - protobuf-lite-static-0:3.14.0-2.fc34.x86_64\n - flexiblas-openblas-serial-0:3.0.4-3.fc34.i686\n - libpeas-devel-0:1.30.0-1.fc34.i686\n - gsl-0:2.6-4.fc34.s390x\n - adobe-mappings-pdf-devel-0:20180407-8.fc34.noarch\n - libical-glib-devel-0:3.0.9-2.fc34.i686\n - openblas-openmp-0:0.3.12-2.fc34.armv7hl\n - libwmf-0:0.2.12-5.fc34.i686\n - python2.7-0:2.7.18-9.fc34.i686\n - SDL_image-devel-0:1.2.12-26.fc34.x86_64\n - jbig2dec-libs-0:0.19-4.fc34.i686\n - libgdata-0:0.18.1-1.fc34.x86_64\n - libical-0:3.0.9-2.fc34.aarch64\n - boost-iostreams-0:1.75.0-3.fc34.s390x\n - OpenEXR-doc-0:2.3.0-8.fc34.i686\n - gspell-devel-0:1.9.1-1.fc34.aarch64\n - OpenEXR-devel-0:2.3.0-8.fc34.aarch64\n - openjpeg2-tools-0:2.4.0-2.fc34.armv7hl\n - jbig2dec-devel-0:0.19-4.fc34.s390x\n - wxGTK3-webview-0:3.0.5.1-3.fc34.aarch64\n - jbig2dec-libs-0:0.19-4.fc34.aarch64\n - flatpak-rpm-macros-0:33-3.fc34.i686\n - evolution-data-server-perl-0:3.40.0-3.fc34.ppc64le\n - boost-regex-0:1.75.0-3.fc34.ppc64le\n - boost-devel-0:1.75.0-3.fc34.aarch64\n - libical-glib-0:3.0.9-2.fc34.i686\n - SDL-devel-0:1.2.15-46.fc34.aarch64\n - compat-wxGTK3-gtk2-gl-0:3.0.5.1-3.fc34.aarch64\n - gtksourceview3-0:3.24.11-5.fc34.s390x\n - urw-base35-nimbus-roman-fonts-0:20200910-4.fc34.noarch\n - libical-0:3.0.9-2.fc34.ppc64le\n - boost-filesystem-0:1.75.0-3.fc34.i686\n - libmspack-0:0.10.1-0.5.alpha.fc34.x86_64\n - glibmm24-0:2.64.5-4.fc34.ppc64le\n - gd-progs-0:2.3.2-1.fc34.s390x\n - gtksourceview3-tests-0:3.24.11-5.fc34.i686\n - ilmbase-0:2.3.0-6.fc34.armv7hl\n - libsigc++20-0:2.10.6-2.fc34.ppc64le\n - atkmm-doc-0:2.28.1-2.fc34.noarch\n - jbig2dec-libs-0:0.19-4.fc34.ppc64le\n - boost-system-0:1.75.0-3.fc34.ppc64le\n - exiv2-libs-0:0.27.3-5.fc34.armv7hl\n - boost-date-time-0:1.75.0-3.fc34.s390x\n - flexiblas-hook-profile-0:3.0.4-3.fc34.x86_64\n - xorg-x11-font-utils-1:7.5-51.fc34.armv7hl\n - libgs-devel-0:9.53.3-5.fc34.aarch64\n - libgweather-0:40.0-1.fc34.x86_64\n - gtksourceview3-tests-0:3.24.11-5.fc34.ppc64le\n - urw-base35-fonts-common-0:20200910-4.fc34.noarch\n - libpeas-0:1.30.0-1.fc34.s390x\n - libmspack-devel-0:0.10.1-0.5.alpha.fc34.ppc64le\n - adobe-mappings-pdf-0:20180407-8.fc34.noarch\n - geocode-glib-0:3.26.2-3.fc34.x86_64\n - boost-0:1.75.0-3.fc34.x86_64\n - flexiblas-hook-profile64-0:3.0.4-3.fc34.s390x\n - poppler-0:21.01.0-5.fc34.ppc64le\n - gnome-desktop3-devel-0:40.0-1.fc34.aarch64\n - libraqm-0:0.7.0-7.fc34.ppc64le\n - boost-doc-0:1.75.0-3.fc34.x86_64\n - boost-devel-0:1.75.0-3.fc34.s390x\n - boost-thread-0:1.75.0-3.fc34.i686\n - exiv2-doc-0:0.27.3-5.fc34.noarch\n - gsound-devel-0:1.0.2-13.fc34.ppc64le\n - boost-b2-0:1.75.0-3.fc34.armv7hl\n - boost-program-options-0:1.75.0-3.fc34.ppc64le\n - pangomm-devel-0:2.42.2-3.fc34.armv7hl\n - compat-wxGTK3-gtk2-0:3.0.5.1-3.fc34.i686\n - openblas-static-0:0.3.12-2.fc34.x86_64\n - libraqm-docs-0:0.7.0-7.fc34.noarch\n - openjpeg2-tools-0:2.4.0-2.fc34.aarch64\n - libijs-doc-0:0.35-13.fc34.noarch\n - flexiblas-openblas-openmp-0:3.0.4-3.fc34.s390x\n - urw-base35-fonts-0:20200910-4.fc34.noarch\n - protobuf-devel-0:3.14.0-2.fc34.armv7hl\n - wxGTK3-0:3.0.5.1-3.fc34.x86_64\n - flatpak-rpm-macros-0:33-3.fc34.ppc64le\n - protobuf-javalite-0:3.14.0-2.fc34.noarch\n - ghostscript-tools-fonts-0:9.53.3-5.fc34.armv7hl\n - flexiblas-netlib64-0:3.0.4-3.fc34.s390x\n - libgs-0:9.53.3-5.fc34.x86_64\n - jbig2dec-devel-0:0.19-4.fc34.armv7hl\n - gtksourceview3-0:3.24.11-5.fc34.aarch64\n - OpenEXR-devel-0:2.3.0-8.fc34.s390x\n - boost-serialization-0:1.75.0-3.fc34.x86_64\n - ilmbase-0:2.3.0-6.fc34.s390x\n - jbig2dec-0:0.19-4.fc34.ppc64le\n - libfontenc-devel-0:1.1.3-15.fc34.s390x\n - libpeas-gtk-0:1.30.0-1.fc34.x86_64\n - openblas-0:0.3.12-2.fc34.i686\n - gd-devel-0:2.3.2-1.fc34.i686\n - openblas-serial-0:0.3.12-2.fc34.armv7hl\n - exiv2-0:0.27.3-5.fc34.aarch64\n - gnome-online-accounts-0:3.39.92-1.fc34.aarch64\n - boost-timer-0:1.75.0-3.fc34.aarch64\n - evolution-data-server-devel-0:3.40.0-3.fc34.aarch64\n - boost-static-0:1.75.0-3.fc34.i686\n - boost-timer-0:1.75.0-3.fc34.s390x\n - openjpeg2-tools-0:2.4.0-2.fc34.i686\n - libijs-devel-0:0.35-13.fc34.aarch64\n - openblas-threads64_-0:0.3.12-2.fc34.aarch64\n - SDL_image-0:1.2.12-26.fc34.x86_64\n - libical-devel-0:3.0.9-2.fc34.aarch64\n - libphonenumber-0:8.12.11-4.fc34.x86_64\n - wxGTK3-0:3.0.5.1-3.fc34.aarch64\n - boost-chrono-0:1.75.0-3.fc34.s390x\n - boost-static-0:1.75.0-3.fc34.armv7hl\n - SDL-static-0:1.2.15-46.fc34.ppc64le\n - boost-build-0:1.75.0-3.fc34.noarch\n - libpeas-gtk-0:1.30.0-1.fc34.aarch64\n - ghostscript-0:9.53.3-5.fc34.armv7hl\n - ghostscript-tools-dvipdf-0:9.53.3-5.fc34.x86_64\n - gsl-0:2.6-4.fc34.ppc64le\n - boost-system-0:1.75.0-3.fc34.x86_64\n - openblas-threads-0:0.3.12-2.fc34.i686\n - libijs-0:0.35-13.fc34.s390x\n - tbb-devel-0:2020.3-5.fc34.ppc64le\n - dbus-glib-devel-0:0.110-11.fc34.armv7hl\n - libraqm-devel-0:0.7.0-7.fc34.x86_64\n - boost-wave-0:1.75.0-3.fc34.armv7hl\n - libdazzle-devel-0:3.40.0-1.fc34.s390x\n - boost-math-0:1.75.0-3.fc34.s390x\n - flexiblas-hook-profile64-0:3.0.4-3.fc34.x86_64\n - suitesparse-0:5.4.0-6.fc34.aarch64\n - gtkmm30-0:3.24.4-1.fc34.aarch64\n - urw-base35-fonts-legacy-0:20200910-4.fc34.noarch\n - glibmm24-0:2.64.5-4.fc34.s390x\n - libical-glib-devel-0:3.0.9-2.fc34.s390x\n - libraqm-devel-0:0.7.0-7.fc34.ppc64le\n - google-droid-sans-fonts-0:20200215-9.fc34.noarch\n - ghostscript-tools-dvipdf-0:9.53.3-5.fc34.aarch64\n - boost-json-0:1.75.0-3.fc34.i686\n - gd-0:2.3.2-1.fc34.s390x\n - polkit-devel-0:0.117-3.fc34.x86_64\n - flexiblas-openblas-openmp-0:3.0.4-3.fc34.aarch64\n - openjpeg2-devel-docs-0:2.4.0-2.fc34.noarch\n - boost-b2-0:1.75.0-3.fc34.x86_64\n - gtksourceview3-tests-0:3.24.11-5.fc34.armv7hl\n - geocode-glib-0:3.26.2-3.fc34.s390x\n - openblas-openmp64_-0:0.3.12-2.fc34.s390x\n - polkit-devel-0:0.117-3.fc34.aarch64\n - compat-wxGTK3-gtk2-gl-0:3.0.5.1-3.fc34.ppc64le\n - poppler-cpp-devel-0:21.01.0-5.fc34.aarch64\n - protobuf-compiler-0:3.14.0-2.fc34.i686\n - libpaper-devel-0:1.1.28-2.fc34.aarch64\n - libidn-devel-0:1.36-2.fc34.x86_64\n - openblas-openmp-0:0.3.12-2.fc34.ppc64le\n - flexiblas-hook-profile-0:3.0.4-3.fc34.i686\n - libsigc++20-devel-0:2.10.6-2.fc34.x86_64\n - libgs-devel-0:9.53.3-5.fc34.s390x\n - openblas-serial-0:0.3.12-2.fc34.aarch64\n - jbig2dec-0:0.19-4.fc34.i686\n - glibmm24-devel-0:2.64.5-4.fc34.ppc64le\n - libsigc++20-devel-0:2.10.6-2.fc34.s390x\n - wxBase3-devel-0:3.0.5.1-3.fc34.aarch64\n - gspell-0:1.9.1-1.fc34.aarch64\n - tbb-doc-0:2020.3-5.fc34.x86_64\n - evolution-data-server-devel-0:3.40.0-3.fc34.s390x\n - poppler-qt5-devel-0:21.01.0-5.fc34.s390x\n - xorg-x11-font-utils-1:7.5-51.fc34.x86_64\n - python3-tbb-0:2020.3-5.fc34.aarch64\n - flexiblas-atlas-0:3.0.4-3.fc34.armv7hl\n - protobuf-java-0:3.14.0-2.fc34.noarch\n - gd-devel-0:2.3.2-1.fc34.x86_64\n - libpeas-devel-0:1.30.0-1.fc34.ppc64le\n - boost-wave-0:1.75.0-3.fc34.x86_64\n - boost-graph-0:1.75.0-3.fc34.x86_64\n - tbb-0:2020.3-5.fc34.x86_64\n - boost-thread-0:1.75.0-3.fc34.s390x\n - gtkmm30-0:3.24.4-1.fc34.armv7hl\n - OpenEXR-libs-0:2.3.0-8.fc34.i686\n - ilmbase-devel-0:2.3.0-6.fc34.i686\n - exiv2-libs-0:0.27.3-5.fc34.ppc64le\n - boost-coroutine-0:1.75.0-3.fc34.armv7hl\n - boost-wave-0:1.75.0-3.fc34.s390x\n - boost-test-0:1.75.0-3.fc34.aarch64\n - gd-0:2.3.2-1.fc34.armv7hl\n - ghostscript-0:9.53.3-5.fc34.ppc64le\n - exiv2-libs-0:0.27.3-5.fc34.x86_64\n - openblas-devel-0:0.3.12-2.fc34.s390x\n - poppler-devel-0:21.01.0-5.fc34.armv7hl\n - gtkmm30-devel-0:3.24.4-1.fc34.aarch64\n - gspell-0:1.9.1-1.fc34.x86_64\n - protobuf-lite-devel-0:3.14.0-2.fc34.armv7hl\n - libphonenumber-0:8.12.11-4.fc34.i686\n - flexiblas-blis-threads-0:3.0.4-3.fc34.s390x\n - boost-numpy3-0:1.75.0-3.fc34.x86_64\n - flexiblas-openblas-threads-0:3.0.4-3.fc34.s390x\n - evolution-data-server-tests-0:3.40.0-3.fc34.aarch64\n - cairomm-doc-0:1.14.2-8.fc34.noarch\n - libwmf-lite-0:0.2.12-5.fc34.ppc64le\n - boost-numpy3-0:1.75.0-3.fc34.ppc64le\n - libphonenumber-0:8.12.11-4.fc34.aarch64\n - boost-regex-0:1.75.0-3.fc34.x86_64\n - glew-0:2.1.0-9.fc34.aarch64\n - gtksourceview3-tests-0:3.24.11-5.fc34.x86_64\n - flexiblas-0:3.0.4-3.fc34.armv7hl\n - atkmm-0:2.28.1-2.fc34.x86_64\n - boost-chrono-0:1.75.0-3.fc34.i686\n - gsound-devel-0:1.0.2-13.fc34.armv7hl\n - openblas-openmp64-0:0.3.12-2.fc34.s390x\n - OpenEXR-libs-0:2.3.0-8.fc34.s390x\n - wxBase3-0:3.0.5.1-3.fc34.s390x\n - gnome-online-accounts-0:3.39.92-1.fc34.x86_64\n - gsl-devel-0:2.6-4.fc34.i686\n - glew-devel-0:2.1.0-9.fc34.s390x\n - libijs-0:0.35-13.fc34.armv7hl\n - libical-glib-0:3.0.9-2.fc34.armv7hl\n - suitesparse64_-static-0:5.4.0-6.fc34.aarch64\n - gsl-devel-0:2.6-4.fc34.s390x\n - ghostscript-tools-dvipdf-0:9.53.3-5.fc34.armv7hl\n - openblas-0:0.3.12-2.fc34.ppc64le\n - libidn-0:1.36-2.fc34.aarch64\n - boost-graph-0:1.75.0-3.fc34.armv7hl\n - suitesparse64_-devel-0:5.4.0-6.fc34.ppc64le\n - pangomm-devel-0:2.42.2-3.fc34.ppc64le\n - wxBase3-0:3.0.5.1-3.fc34.aarch64\n - protobuf-javadoc-0:3.14.0-2.fc34.noarch\n - dbus-glib-0:0.110-11.fc34.s390x\n - flexiblas-openblas-serial-0:3.0.4-3.fc34.armv7hl\n - startup-notification-devel-0:0.12-21.fc34.x86_64\n - poppler-glib-devel-0:21.01.0-5.fc34.ppc64le\n - libGLEW-0:2.1.0-9.fc34.i686\n - poppler-cpp-0:21.01.0-5.fc34.ppc64le\n - boost-json-0:1.75.0-3.fc34.ppc64le\n - libimagequant-devel-0:2.14.1-1.fc34.aarch64\n - flexiblas-openblas-threads-0:3.0.4-3.fc34.aarch64\n - libpaper-0:1.1.28-2.fc34.aarch64\n - libfontenc-devel-0:1.1.3-15.fc34.armv7hl\n - geocode-glib-0:3.26.2-3.fc34.ppc64le\n - SDL_image-devel-0:1.2.12-26.fc34.ppc64le\n - poppler-glib-doc-0:21.01.0-5.fc34.noarch\n - boost-container-0:1.75.0-3.fc34.armv7hl\n - libimagequant-devel-0:2.14.1-1.fc34.ppc64le\n - openblas-threads-0:0.3.12-2.fc34.s390x\n - libdazzle-0:3.40.0-1.fc34.armv7hl\n - gtkmm30-0:3.24.4-1.fc34.i686\n - libphonenumber-devel-0:8.12.11-4.fc34.armv7hl\n - boost-timer-0:1.75.0-3.fc34.x86_64\n - boost-contract-0:1.75.0-3.fc34.aarch64\n - evolution-data-server-devel-0:3.40.0-3.fc34.ppc64le\n - boost-b2-0:1.75.0-3.fc34.aarch64\n - wxGTK3-0:3.0.5.1-3.fc34.i686\n - libpeas-0:1.30.0-1.fc34.armv7hl\n - openblas-static-0:0.3.12-2.fc34.armv7hl\n - gnome-desktop3-tests-0:40.0-1.fc34.aarch64\n - openblas-devel-0:0.3.12-2.fc34.ppc64le\n - suitesparse64_-devel-0:5.4.0-6.fc34.x86_64\n - cairomm-0:1.14.2-8.fc34.x86_64\n - flexiblas-blis-openmp64-0:3.0.4-3.fc34.ppc64le\n - boost-locale-0:1.75.0-3.fc34.i686\n - ghostscript-x11-0:9.53.3-5.fc34.aarch64\n - startup-notification-0:0.12-21.fc34.s390x\n - suitesparse-static-0:5.4.0-6.fc34.i686\n - gnome-online-accounts-0:3.39.92-1.fc34.i686\n - gd-devel-0:2.3.2-1.fc34.s390x\n - openjpeg2-0:2.4.0-2.fc34.i686\n - OpenEXR-libs-0:2.3.0-8.fc34.ppc64le\n - startup-notification-devel-0:0.12-21.fc34.ppc64le\n - libpaper-0:1.1.28-2.fc34.s390x\n - pangomm-0:2.42.2-3.fc34.s390x\n - glibmm24-devel-0:2.64.5-4.fc34.s390x\n - libmspack-devel-0:0.10.1-0.5.alpha.fc34.i686\n - OpenEXR-libs-0:2.3.0-8.fc34.x86_64\n - ilmbase-devel-0:2.3.0-6.fc34.x86_64\n - libpaper-0:1.1.28-2.fc34.armv7hl\n - protobuf-compiler-0:3.14.0-2.fc34.s390x\n - libijs-0:0.35-13.fc34.i686\n - gnome-desktop3-tests-0:40.0-1.fc34.i686\n - flexiblas-openblas-serial-0:3.0.4-3.fc34.s390x\n - libical-0:3.0.9-2.fc34.i686\n - flexiblas-openblas-threads64-0:3.0.4-3.fc34.x86_64\n - boost-fiber-0:1.75.0-3.fc34.armv7hl\n - gspell-devel-0:1.9.1-1.fc34.ppc64le\n - boost-static-0:1.75.0-3.fc34.ppc64le\n - boost-doc-0:1.75.0-3.fc34.i686\n - flexiblas-netlib-0:3.0.4-3.fc34.ppc64le\n - openblas-threads-0:0.3.12-2.fc34.armv7hl\n - flexiblas-netlib-0:3.0.4-3.fc34.x86_64\n - gspell-0:1.9.1-1.fc34.armv7hl\n - boost-math-0:1.75.0-3.fc34.x86_64\n - tbb-0:2020.3-5.fc34.aarch64\n - startup-notification-0:0.12-21.fc34.x86_64\n - glew-devel-0:2.1.0-9.fc34.x86_64\n - poppler-cpp-devel-0:21.01.0-5.fc34.x86_64\n - atkmm-0:2.28.1-2.fc34.aarch64\n - libgdata-0:0.18.1-1.fc34.i686\n - libgs-devel-0:9.53.3-5.fc34.ppc64le\n - libraqm-devel-0:0.7.0-7.fc34.armv7hl\n - boost-atomic-0:1.75.0-3.fc34.x86_64\n - ilmbase-devel-0:2.3.0-6.fc34.ppc64le\n - boost-regex-0:1.75.0-3.fc34.i686\n - wxGTK3-media-0:3.0.5.1-3.fc34.armv7hl\n - boost-chrono-0:1.75.0-3.fc34.ppc64le\n - suitesparse64_-0:5.4.0-6.fc34.s390x\n - exiv2-devel-0:0.27.3-5.fc34.i686\n - poppler-data-devel-0:0.4.9-7.fc34.noarch\n - compat-wxGTK3-gtk2-devel-0:3.0.5.1-3.fc34.s390x\n - flexiblas-openblas-serial64-0:3.0.4-3.fc34.x86_64\n - flexiblas-openblas-openmp64-0:3.0.4-3.fc34.aarch64\n - protobuf-lite-0:3.14.0-2.fc34.aarch64\n - libijs-devel-0:0.35-13.fc34.ppc64le\n - boost-0:1.75.0-3.fc34.i686\n - tbb-devel-0:2020.3-5.fc34.s390x\n - libmspack-0:0.10.1-0.5.alpha.fc34.i686\n - boost-fiber-0:1.75.0-3.fc34.i686\n - libwmf-lite-0:0.2.12-5.fc34.x86_64\n - suitesparse64-0:5.4.0-6.fc34.aarch64\n - boost-serialization-0:1.75.0-3.fc34.ppc64le\n - boost-container-0:1.75.0-3.fc34.i686\n - boost-coroutine-0:1.75.0-3.fc34.s390x\n - jbig2dec-devel-0:0.19-4.fc34.aarch64\n - flexiblas-openblas-serial64-0:3.0.4-3.fc34.ppc64le\n - libpeas-0:1.30.0-1.fc34.x86_64\n - suitesparse-static-0:5.4.0-6.fc34.armv7hl\n - atkmm-devel-0:2.28.1-2.fc34.s390x\n - boost-nowide-0:1.75.0-3.fc34.s390x\n - SDL_image-devel-0:1.2.12-26.fc34.aarch64\n - wxGTK3-docs-0:3.0.5.1-3.fc34.noarch\n - boost-python3-0:1.75.0-3.fc34.ppc64le\n - urw-base35-c059-fonts-0:20200910-4.fc34.noarch\n - gd-progs-0:2.3.2-1.fc34.armv7hl\n - exiv2-devel-0:0.27.3-5.fc34.armv7hl\n - polkit-libs-0:0.117-3.fc34.ppc64le\n - python2.7-0:2.7.18-9.fc34.ppc64le\n - boost-timer-0:1.75.0-3.fc34.i686\n - compat-wxGTK3-gtk2-gl-0:3.0.5.1-3.fc34.s390x\n - libijs-0:0.35-13.fc34.ppc64le\n - boost-log-0:1.75.0-3.fc34.s390x\n - suitesparse64-static-0:5.4.0-6.fc34.ppc64le\n - libwmf-0:0.2.12-5.fc34.x86_64\n - poppler-utils-0:21.01.0-5.fc34.aarch64\n - evolution-data-server-0:3.40.0-3.fc34.s390x\n - openblas-threads64_-0:0.3.12-2.fc34.x86_64\n - ghostscript-tools-dvipdf-0:9.53.3-5.fc34.i686\n - poppler-data-0:0.4.9-7.fc34.noarch\n - boost-random-0:1.75.0-3.fc34.s390x\n - boost-test-0:1.75.0-3.fc34.s390x\n - openjpeg2-tools-0:2.4.0-2.fc34.ppc64le\n - OpenEXR-devel-0:2.3.0-8.fc34.x86_64\n - ghostscript-tools-fonts-0:9.53.3-5.fc34.ppc64le\n - gspell-0:1.9.1-1.fc34.s390x\n - boost-program-options-0:1.75.0-3.fc34.armv7hl\n - poppler-cpp-devel-0:21.01.0-5.fc34.armv7hl\n - atkmm-devel-0:2.28.1-2.fc34.aarch64\n - openblas-threads-0:0.3.12-2.fc34.aarch64\n - jbig2dec-libs-0:0.19-4.fc34.x86_64\n - openblas-threads64-0:0.3.12-2.fc34.aarch64\n - tbb-devel-0:2020.3-5.fc34.armv7hl\n - geocode-glib-0:3.26.2-3.fc34.aarch64\n - boost-context-0:1.75.0-3.fc34.i686\n - libdazzle-0:3.40.0-1.fc34.aarch64\n - SDL-devel-0:1.2.15-46.fc34.x86_64\n - evolution-data-server-devel-0:3.40.0-3.fc34.armv7hl\n - gnome-desktop3-tests-0:40.0-1.fc34.armv7hl\n - compat-wxGTK3-gtk2-media-0:3.0.5.1-3.fc34.ppc64le\n - boost-fiber-0:1.75.0-3.fc34.aarch64\n - boost-random-0:1.75.0-3.fc34.ppc64le\n - gsound-0:1.0.2-13.fc34.ppc64le\n - suitesparse-0:5.4.0-6.fc34.i686\n - wxGTK3-gl-0:3.0.5.1-3.fc34.ppc64le\n - urw-base35-bookman-fonts-0:20200910-4.fc34.noarch\n - libpeas-gtk-0:1.30.0-1.fc34.s390x\n - boost-static-0:1.75.0-3.fc34.aarch64\n - boost-doctools-0:1.75.0-3.fc34.x86_64\n - libijs-devel-0:0.35-13.fc34.x86_64\n - boost-container-0:1.75.0-3.fc34.aarch64\n - libpeas-loader-python3-0:1.30.0-1.fc34.s390x\n - openblas-serial-0:0.3.12-2.fc34.x86_64\n - polkit-devel-0:0.117-3.fc34.ppc64le\n - boost-stacktrace-0:1.75.0-3.fc34.ppc64le\n - flexiblas-blis-openmp-0:3.0.4-3.fc34.aarch64\n - openblas-openmp-0:0.3.12-2.fc34.i686\n - liboauth-devel-0:1.0.3-16.fc34.ppc64le\n - compat-wxGTK3-gtk2-0:3.0.5.1-3.fc34.s390x\n - flexiblas-blis-serial64-0:3.0.4-3.fc34.aarch64\n - polkit-0:0.117-3.fc34.aarch64\n - boost-doc-0:1.75.0-3.fc34.ppc64le\n - ghostscript-core-0:9.53.3-5.fc34.s390x\n - libmspack-devel-0:0.10.1-0.5.alpha.fc34.armv7hl\n - SDL-static-0:1.2.15-46.fc34.i686\n - OpenEXR-doc-0:2.3.0-8.fc34.ppc64le\n - suitesparse64-devel-0:5.4.0-6.fc34.aarch64\n - urw-base35-gothic-fonts-0:20200910-4.fc34.noarch\n - boost-graph-0:1.75.0-3.fc34.aarch64\n - google-droid-serif-fonts-0:20200215-9.fc34.noarch\n - ghostscript-gtk-0:9.53.3-5.fc34.s390x\n - openblas-serial64-0:0.3.12-2.fc34.ppc64le\n - adobe-mappings-cmap-devel-0:20171205-10.fc34.noarch\n - openblas-0:0.3.12-2.fc34.aarch64\n - poppler-utils-0:21.01.0-5.fc34.x86_64\n - flexiblas-blis-openmp-0:3.0.4-3.fc34.ppc64le\n - libpeas-devel-0:1.30.0-1.fc34.s390x\n - flexiblas-blis-threads-0:3.0.4-3.fc34.armv7hl\n - gtkmm30-devel-0:3.24.4-1.fc34.s390x\n - wxGTK3-webview-0:3.0.5.1-3.fc34.s390x\n - polkit-0:0.117-3.fc34.armv7hl\n - gtkmm30-doc-0:3.24.4-1.fc34.noarch\n - boost-contract-0:1.75.0-3.fc34.i686\n - tbb-0:2020.3-5.fc34.s390x\n - openblas-threads-0:0.3.12-2.fc34.ppc64le\n - protobuf-lite-devel-0:3.14.0-2.fc34.aarch64\n - libsigc++20-devel-0:2.10.6-2.fc34.ppc64le\n - libidn-devel-0:1.36-2.fc34.ppc64le\n - poppler-cpp-devel-0:21.01.0-5.fc34.ppc64le\n - gsl-devel-0:2.6-4.fc34.armv7hl\n - python2.7-0:2.7.18-9.fc34.s390x\n - glibmm24-devel-0:2.64.5-4.fc34.armv7hl\n - gtksourceview3-devel-0:3.24.11-5.fc34.armv7hl\n - boost-json-0:1.75.0-3.fc34.s390x\n - libimagequant-0:2.14.1-1.fc34.armv7hl\n - google-droid-fonts-all-0:20200215-9.fc34.noarch\n - openjpeg2-devel-0:2.4.0-2.fc34.s390x\n - boost-context-0:1.75.0-3.fc34.x86_64\n - libical-glib-0:3.0.9-2.fc34.aarch64\n - boost-random-0:1.75.0-3.fc34.armv7hl\n - libraqm-0:0.7.0-7.fc34.x86_64\n - openjpeg2-0:2.4.0-2.fc34.x86_64\n - gd-0:2.3.2-1.fc34.x86_64\n - glibmm24-doc-0:2.64.5-4.fc34.noarch\n - libwmf-devel-0:0.2.12-5.fc34.aarch64\n - flexiblas-atlas-0:3.0.4-3.fc34.ppc64le\n - openjpeg2-tools-0:2.4.0-2.fc34.x86_64\n - boost-iostreams-0:1.75.0-3.fc34.aarch64\n - libwmf-0:0.2.12-5.fc34.s390x\n - ghostscript-gtk-0:9.53.3-5.fc34.armv7hl\n - cairomm-0:1.14.2-8.fc34.aarch64\n - protobuf-lite-devel-0:3.14.0-2.fc34.ppc64le\n - libpeas-loader-python3-0:1.30.0-1.fc34.i686\n - gnome-online-accounts-devel-0:3.39.92-1.fc34.s390x\n - libpeas-gtk-0:1.30.0-1.fc34.armv7hl\n - poppler-qt5-devel-0:21.01.0-5.fc34.armv7hl\n - compat-wxGTK3-gtk2-media-0:3.0.5.1-3.fc34.armv7hl\n - pangomm-devel-0:2.42.2-3.fc34.aarch64\n - gsound-devel-0:1.0.2-13.fc34.aarch64\n - atkmm-devel-0:2.28.1-2.fc34.i686\n - openblas-serial64_-0:0.3.12-2.fc34.ppc64le\n - boost-json-0:1.75.0-3.fc34.aarch64\n - compat-wxGTK3-gtk2-gl-0:3.0.5.1-3.fc34.armv7hl\n - libwmf-lite-0:0.2.12-5.fc34.i686\n - openblas-threads64-0:0.3.12-2.fc34.s390x\n - wxGTK3-devel-0:3.0.5.1-3.fc34.s390x\n - openblas-openmp-0:0.3.12-2.fc34.aarch64\n - boost-container-0:1.75.0-3.fc34.ppc64le\n - dbus-glib-0:0.110-11.fc34.armv7hl\n - libpeas-loader-python3-0:1.30.0-1.fc34.aarch64\n - libgdata-devel-0:0.18.1-1.fc34.s390x\n - openblas-0:0.3.12-2.fc34.x86_64\n - boost-nowide-0:1.75.0-3.fc34.x86_64\n - wxGTK3-media-0:3.0.5.1-3.fc34.s390x\n - protobuf-devel-0:3.14.0-2.fc34.i686\n - libdazzle-devel-0:3.40.0-1.fc34.x86_64\n - liboauth-0:1.0.3-16.fc34.x86_64\n - openjpeg2-devel-0:2.4.0-2.fc34.aarch64\n - flexiblas-openblas-openmp64-0:3.0.4-3.fc34.s390x\n - suitesparse64-0:5.4.0-6.fc34.x86_64\n - flexiblas-0:3.0.4-3.fc34.x86_64\n - flexiblas-blis-serial-0:3.0.4-3.fc34.armv7hl\n - libpeas-devel-0:1.30.0-1.fc34.aarch64\n - python2.7-0:2.7.18-9.fc34.aarch64\n - poppler-0:21.01.0-5.fc34.armv7hl\n - liboauth-devel-0:1.0.3-16.fc34.aarch64\n - openblas-serial64-0:0.3.12-2.fc34.aarch64\n - openblas-openmp64_-0:0.3.12-2.fc34.x86_64\n - boost-timer-0:1.75.0-3.fc34.ppc64le\n - flatpak-rpm-macros-0:33-3.fc34.aarch64\n - boost-filesystem-0:1.75.0-3.fc34.s390x\n - boost-container-0:1.75.0-3.fc34.s390x\n - ghostscript-tools-printing-0:9.53.3-5.fc34.aarch64\n - boost-graph-0:1.75.0-3.fc34.i686\n - startup-notification-devel-0:0.12-21.fc34.i686\n - openblas-openmp64-0:0.3.12-2.fc34.x86_64\n - protobuf-lite-devel-0:3.14.0-2.fc34.x86_64\n - poppler-cpp-devel-0:21.01.0-5.fc34.s390x\n - OpenEXR-devel-0:2.3.0-8.fc34.ppc64le\n - boost-doctools-0:1.75.0-3.fc34.armv7hl\n - libgdata-devel-0:0.18.1-1.fc34.armv7hl\n - protobuf-lite-devel-0:3.14.0-2.fc34.i686\n - libdazzle-0:3.40.0-1.fc34.i686\n - boost-regex-0:1.75.0-3.fc34.aarch64\n - boost-locale-0:1.75.0-3.fc34.ppc64le\n - libpeas-0:1.30.0-1.fc34.ppc64le\n - gd-progs-0:2.3.2-1.fc34.aarch64\n - boost-context-0:1.75.0-3.fc34.aarch64\n - ghostscript-tools-dvipdf-0:9.53.3-5.fc34.ppc64le\n - suitesparse64-static-0:5.4.0-6.fc34.aarch64\n - wxBase3-devel-0:3.0.5.1-3.fc34.armv7hl\n - xorg-x11-font-utils-1:7.5-51.fc34.aarch64\n - exiv2-devel-0:0.27.3-5.fc34.s390x\n - flatpak-rpm-macros-0:33-3.fc34.armv7hl\n - suitesparse64_-0:5.4.0-6.fc34.x86_64\n - boost-examples-0:1.75.0-3.fc34.armv7hl\n - libimagequant-devel-0:2.14.1-1.fc34.armv7hl\n - libpaper-0:1.1.28-2.fc34.i686\n - libphonenumber-0:8.12.11-4.fc34.armv7hl\n - openblas-serial64-0:0.3.12-2.fc34.x86_64\n - gspell-devel-0:1.9.1-1.fc34.s390x\n - suitesparse64-static-0:5.4.0-6.fc34.x86_64\n - suitesparse64_-devel-0:5.4.0-6.fc34.s390x\n - poppler-utils-0:21.01.0-5.fc34.s390x\n - ghostscript-gtk-0:9.53.3-5.fc34.aarch64\n - python3-tbb-0:2020.3-5.fc34.armv7hl\n - SDL-0:1.2.15-46.fc34.armv7hl\n - libpeas-0:1.30.0-1.fc34.i686\n - boost-math-0:1.75.0-3.fc34.aarch64\n - boost-atomic-0:1.75.0-3.fc34.s390x\n - libgdata-0:0.18.1-1.fc34.ppc64le\n - libsigc++20-0:2.10.6-2.fc34.s390x\n - ghostscript-tools-dvipdf-0:9.53.3-5.fc34.s390x\n - gtkmm30-devel-0:3.24.4-1.fc34.i686\n - jbig2dec-0:0.19-4.fc34.aarch64\n - glibmm24-0:2.64.5-4.fc34.i686\n - protobuf-bom-0:3.14.0-2.fc34.noarch\n - boost-test-0:1.75.0-3.fc34.armv7hl\n - exiv2-0:0.27.3-5.fc34.x86_64\n - libijs-0:0.35-13.fc34.aarch64\n - openjpeg2-tools-0:2.4.0-2.fc34.s390x\n - flexiblas-hook-profile-0:3.0.4-3.fc34.armv7hl\n - boost-program-options-0:1.75.0-3.fc34.aarch64\n - libical-0:3.0.9-2.fc34.armv7hl\n - libical-0:3.0.9-2.fc34.x86_64\n - suitesparse-static-0:5.4.0-6.fc34.s390x\n - suitesparse-devel-0:5.4.0-6.fc34.aarch64\n - suitesparse-0:5.4.0-6.fc34.armv7hl\n - ghostscript-0:9.53.3-5.fc34.aarch64\n - OpenEXR-0:2.3.0-8.fc34.armv7hl\n - jbig2dec-devel-0:0.19-4.fc34.ppc64le\n - pangomm-doc-0:2.42.2-3.fc34.noarch\n - boost-0:1.75.0-3.fc34.aarch64\n - suitesparse-devel-0:5.4.0-6.fc34.x86_64\n - protobuf-compiler-0:3.14.0-2.fc34.x86_64\n - protobuf-lite-static-0:3.14.0-2.fc34.ppc64le\n - flexiblas-openblas-openmp-0:3.0.4-3.fc34.ppc64le\n - boost-iostreams-0:1.75.0-3.fc34.x86_64\n - libgs-0:9.53.3-5.fc34.i686\n - flexiblas-openblas-threads64-0:3.0.4-3.fc34.aarch64\n - flexiblas-openblas-openmp64-0:3.0.4-3.fc34.x86_64\n - polkit-libs-0:0.117-3.fc34.s390x\n - libwmf-devel-0:0.2.12-5.fc34.i686\n - openblas-static-0:0.3.12-2.fc34.aarch64\n - pangomm-devel-0:2.42.2-3.fc34.x86_64\n - flexiblas-openblas-serial64-0:3.0.4-3.fc34.aarch64\n - libfontenc-devel-0:1.1.3-15.fc34.x86_64\n - python3-tbb-0:2020.3-5.fc34.i686\n - libpeas-devel-0:1.30.0-1.fc34.x86_64\n - wxGTK3-webview-0:3.0.5.1-3.fc34.x86_64\n - boost-context-0:1.75.0-3.fc34.ppc64le\n - poppler-qt5-0:21.01.0-5.fc34.armv7hl\n - gsl-devel-0:2.6-4.fc34.aarch64\n - compat-wxGTK3-gtk2-media-0:3.0.5.1-3.fc34.aarch64\n - libraqm-devel-0:0.7.0-7.fc34.i686\n - ghostscript-tools-printing-0:9.53.3-5.fc34.armv7hl\n - gsound-0:1.0.2-13.fc34.s390x\n - openblas-static-0:0.3.12-2.fc34.ppc64le\n - libgweather-devel-0:40.0-1.fc34.armv7hl\n - boost-iostreams-0:1.75.0-3.fc34.armv7hl\n - boost-stacktrace-0:1.75.0-3.fc34.aarch64\n - geocode-glib-devel-0:3.26.2-3.fc34.armv7hl\n - libmspack-0:0.10.1-0.5.alpha.fc34.armv7hl\n - wxGTK3-media-0:3.0.5.1-3.fc34.i686\n - startup-notification-0:0.12-21.fc34.ppc64le\n - liboauth-0:1.0.3-16.fc34.i686\n - libimagequant-0:2.14.1-1.fc34.aarch64\n - boost-serialization-0:1.75.0-3.fc34.armv7hl\n - atkmm-devel-0:2.28.1-2.fc34.ppc64le\n - evolution-data-server-tests-0:3.40.0-3.fc34.s390x\n dependencies:\n - buildrequires:\n flatpak-common: [f34]\n flatpak-runtime: [f34]\n platform: [f34]\n requires:\n flatpak-common: [f34]\n flatpak-runtime: [f34]\n platform: [f34]\n profiles:\n default:\n rpms:\n - 0ad\n components:\n rpms:\n 0ad:\n rationale: Application package\n repository: git+https://src.fedoraproject.org/rpms/0ad\n cache: https://src.fedoraproject.org/repo/pkgs/0ad\n ref: f34\n buildorder: 10\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n 0ad-data:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/0ad-data\n cache: https://src.fedoraproject.org/repo/pkgs/0ad-data\n ref: f34\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n enet:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/enet\n cache: https://src.fedoraproject.org/repo/pkgs/enet\n ref: f34\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n fmt:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/fmt\n cache: https://src.fedoraproject.org/repo/pkgs/fmt\n ref: f34\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n gloox:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/gloox\n cache: https://src.fedoraproject.org/repo/pkgs/gloox\n ref: f34\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n libsodium:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/libsodium\n cache: https://src.fedoraproject.org/repo/pkgs/libsodium\n ref: f34\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n miniupnpc:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/miniupnpc\n cache: https://src.fedoraproject.org/repo/pkgs/miniupnpc\n ref: f34\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n nvidia-texture-tools:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/nvidia-texture-tools\n cache: https://src.fedoraproject.org/repo/pkgs/nvidia-texture-tools\n ref: f34\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n...", "runtime_deps": [ { "dependency": "flatpak-runtime", "stream": "f34" }, { "dependency": "platform", "stream": "f34" }, { "dependency": "flatpak-common", "stream": "f34" } ], "build_deps": [ { "dependency": "flatpak-runtime", "stream": "f34" }, { "dependency": "platform", "stream": "f34" }, { "dependency": "flatpak-common", "stream": "f34" } ], "active": false, "rpms": [] }, { "variant_id": "0ad", "variant_uid": "0ad:stable:3420210808201622:dab6ca4c", "variant_name": "0ad", "variant_type": "module", "variant_version": "stable", "variant_release": "3420210808201622", "variant_context": "dab6ca4c", "koji_tag": "module-0ad-stable-3420210808201622-dab6ca4c", "modulemd": "---\ndocument: modulemd\nversion: 2\ndata:\n name: 0ad\n stream: \"stable\"\n version: 3420210808201622\n context: dab6ca4c\n summary: Cross-Platform RTS Game of Ancient Warfare\n description: >-\n 0 A.D. (pronounced \"zero ey-dee\") is a free, open-source, cross-platform real-time\n strategy (RTS) game of ancient warfare. In short, it is a historically-based war/economy\n game that allows players to relive or rewrite the history of Western civilizations,\n focusing on the years between 500 B.C. and 500 A.D. The project is highly ambitious,\n involving state-of-the-art 3D graphics, detailed artwork, sound, and a flexible\n and powerful custom-built game engine.\n\n The game has been in development by Wildfire Games (WFG), a group of volunteer,\n hobbyist game developers, since 2001.\n license:\n module:\n - MIT\n xmd:\n mbs:\n buildrequires:\n flatpak-common:\n context: b08b4b44\n filtered_rpms: []\n koji_tag: module-flatpak-common-f34-3420210804081906-b08b4b44\n ref: 08f9d6ec7b42f271401058a712f56124ccbffee7\n stream: f34\n version: 3420210804081906\n flatpak-runtime:\n context: 058368ca\n filtered_rpms: []\n koji_tag: module-flatpak-runtime-f34-3420210804142404-058368ca\n ref: 0e182862f00e201b0e7ea4eccfd2fb8cabd5f9ab\n stream: f34\n version: 3420210804142404\n platform:\n context: 00000000\n filtered_rpms: []\n koji_tag: module-f34-build\n ref: f34\n stream: f34\n stream_collision_modules: \n ursine_rpms: \n version: 1\n commit: ef827a8b1924215642d8fefe53e87c360e755641\n mse: TRUE\n rpms:\n 0ad:\n ref: 9a47898f89ae259897c51673441ca1a9dd0117cb\n 0ad-data:\n ref: b51a1d193501a8343bd9d99a5ed5113b828e7838\n enet:\n ref: 503cd5a66cea6bcc37e0b484a3ed22f686197483\n fmt:\n ref: fc812efdd4bc0bc1e5d09c64e35a30d4f0eb820d\n gloox:\n ref: e95488bf505afda0ccb412ee367246d237016182\n libsodium:\n ref: a005ebe672dff8d6e83cf72af085b72810a895e6\n miniupnpc:\n ref: b3bcb24e59929b084c6c187951e1c1e173814abf\n nvidia-texture-tools:\n ref: 9f338bb34655deab4027c5d93e6fd1655d97a602\n scmurl: https://src.fedoraproject.org/flatpaks/0ad.git?#ef827a8b1924215642d8fefe53e87c360e755641\n ursine_rpms:\n - pangomm-devel-0:2.46.1-1.fc34.armv7hl\n - dbus-glib-0:0.110-11.fc34.i686\n - SDL-devel-0:1.2.15-46.fc34.ppc64le\n - liboauth-devel-0:1.0.3-16.fc34.armv7hl\n - flexiblas-blis-threads64-0:3.0.4-3.fc34.s390x\n - openblas-static-0:0.3.17-1.fc34.aarch64\n - boost-type_erasure-0:1.75.0-4.fc34.x86_64\n - libpeas-0:1.30.0-3.fc34.armv7hl\n - boost-numpy3-0:1.75.0-4.fc34.aarch64\n - libraqm-0:0.7.0-7.fc34.aarch64\n - glew-0:2.1.0-9.fc34.armv7hl\n - SDL_image-0:1.2.12-26.fc34.armv7hl\n - boost-atomic-0:1.75.0-4.fc34.x86_64\n - protobuf-compiler-0:3.14.0-3.fc34.x86_64\n - urw-base35-standard-symbols-ps-fonts-0:20200910-5.fc34.noarch\n - libimagequant-devel-0:2.14.1-1.fc34.x86_64\n - flexiblas-netlib64-0:3.0.4-3.fc34.aarch64\n - flexiblas-openblas-threads-0:3.0.4-3.fc34.ppc64le\n - flexiblas-openblas-threads-0:3.0.4-3.fc34.i686\n - gspell-devel-0:1.9.1-1.fc34.x86_64\n - openexr-libs-0:2.5.5-1.fc34.armv7hl\n - boost-program-options-0:1.75.0-4.fc34.armv7hl\n - glibmm24-devel-0:2.66.1-1.fc34.i686\n - tbb-devel-0:2020.3-7.fc34.ppc64le\n - boost-thread-0:1.75.0-4.fc34.aarch64\n - libgs-devel-0:9.53.3-6.fc34.i686\n - ghostscript-x11-0:9.53.3-6.fc34.armv7hl\n - openjpeg2-0:2.4.0-3.fc34.s390x\n - exiv2-0:0.27.3-7.fc34.aarch64\n - adobe-mappings-pdf-devel-0:20180407-8.fc34.noarch\n - boost-chrono-0:1.75.0-4.fc34.i686\n - dbus-glib-devel-0:0.110-11.fc34.armv7hl\n - gtksourceview3-tests-0:3.24.11-5.fc34.s390x\n - libraqm-devel-0:0.7.0-7.fc34.x86_64\n - boost-atomic-0:1.75.0-4.fc34.s390x\n - openjpeg2-0:2.4.0-3.fc34.x86_64\n - suitesparse64_-static-0:5.4.0-6.fc34.ppc64le\n - compat-wxGTK3-gtk2-media-0:3.0.5.1-4.fc34.s390x\n - flexiblas-atlas-0:3.0.4-3.fc34.s390x\n - protobuf-devel-0:3.14.0-3.fc34.s390x\n - flexiblas-blis-openmp64-0:3.0.4-3.fc34.x86_64\n - wxGTK3-devel-0:3.0.5.1-4.fc34.s390x\n - gsl-0:2.6-4.fc34.x86_64\n - urw-base35-nimbus-mono-ps-fonts-0:20200910-5.fc34.noarch\n - libphonenumber-0:8.12.11-5.fc34.i686\n - libfontenc-0:1.1.3-15.fc34.aarch64\n - boost-examples-0:1.75.0-4.fc34.i686\n - wxBase3-0:3.0.5.1-4.fc34.s390x\n - gnome-desktop3-devel-0:40.3-1.fc34.s390x\n - boost-container-0:1.75.0-4.fc34.i686\n - compat-wxGTK3-gtk2-0:3.0.5.1-4.fc34.armv7hl\n - gd-0:2.3.2-2.fc34.s390x\n - SDL-0:1.2.15-46.fc34.x86_64\n - boost-fiber-0:1.75.0-4.fc34.armv7hl\n - boost-container-0:1.75.0-4.fc34.x86_64\n - openblas-serial-0:0.3.17-1.fc34.i686\n - gspell-0:1.9.1-1.fc34.aarch64\n - poppler-glib-devel-0:21.01.0-7.fc34.s390x\n - boost-test-0:1.75.0-4.fc34.armv7hl\n - protobuf-devel-0:3.14.0-3.fc34.ppc64le\n - openblas-openmp-0:0.3.17-1.fc34.x86_64\n - gsl-devel-0:2.6-4.fc34.ppc64le\n - evolution-data-server-tests-0:3.40.3-1.fc34.s390x\n - exiv2-libs-0:0.27.3-7.fc34.s390x\n - libijs-0:0.35-13.fc34.x86_64\n - libraqm-devel-0:0.7.0-7.fc34.ppc64le\n - liboauth-devel-0:1.0.3-16.fc34.x86_64\n - suitesparse-devel-0:5.4.0-6.fc34.armv7hl\n - suitesparse64_-0:5.4.0-6.fc34.x86_64\n - polkit-0:0.117-3.fc34.1.armv7hl\n - openblas-threads64-0:0.3.17-1.fc34.ppc64le\n - openblas-openmp64_-0:0.3.17-1.fc34.x86_64\n - liboauth-0:1.0.3-16.fc34.ppc64le\n - ghostscript-tools-printing-0:9.53.3-6.fc34.ppc64le\n - libdazzle-0:3.40.0-1.fc34.ppc64le\n - openblas-threads-0:0.3.17-1.fc34.armv7hl\n - openblas-static-0:0.3.17-1.fc34.ppc64le\n - boost-type_erasure-0:1.75.0-4.fc34.i686\n - protobuf-0:3.14.0-3.fc34.armv7hl\n - exiv2-libs-0:0.27.3-7.fc34.ppc64le\n - cairomm-devel-0:1.14.2-8.fc34.armv7hl\n - boost-numpy3-0:1.75.0-4.fc34.s390x\n - gsound-devel-0:1.0.2-13.fc34.s390x\n - boost-contract-0:1.75.0-4.fc34.armv7hl\n - boost-graph-0:1.75.0-4.fc34.s390x\n - openblas-0:0.3.17-1.fc34.s390x\n - libwmf-devel-0:0.2.12-5.fc34.s390x\n - openblas-devel-0:0.3.17-1.fc34.ppc64le\n - boost-chrono-0:1.75.0-4.fc34.armv7hl\n - libfontenc-0:1.1.3-15.fc34.i686\n - boost-date-time-0:1.75.0-4.fc34.armv7hl\n - urw-base35-nimbus-roman-fonts-0:20200910-5.fc34.noarch\n - libphonenumber-0:8.12.11-5.fc34.ppc64le\n - ghostscript-0:9.53.3-6.fc34.i686\n - tbb-0:2020.3-7.fc34.s390x\n - openjpeg2-devel-0:2.4.0-3.fc34.s390x\n - openblas-openmp64_-0:0.3.17-1.fc34.s390x\n - libical-devel-0:3.0.10-1.fc34.x86_64\n - libpaper-devel-0:1.1.28-2.fc34.x86_64\n - flexiblas-openblas-serial64-0:3.0.4-3.fc34.s390x\n - python3-tbb-0:2020.3-7.fc34.armv7hl\n - glibmm24-0:2.66.1-1.fc34.aarch64\n - flexiblas-blis-serial-0:3.0.4-3.fc34.x86_64\n - gsound-0:1.0.2-13.fc34.ppc64le\n - glibmm24-0:2.66.1-1.fc34.i686\n - boost-devel-0:1.75.0-4.fc34.armv7hl\n - exiv2-doc-0:0.27.3-7.fc34.noarch\n - gsl-0:2.6-4.fc34.armv7hl\n - dbus-glib-0:0.110-11.fc34.x86_64\n - libpaper-devel-0:1.1.28-2.fc34.s390x\n - protobuf-static-0:3.14.0-3.fc34.ppc64le\n - ghostscript-tools-dvipdf-0:9.53.3-6.fc34.ppc64le\n - wxGTK3-gl-0:3.0.5.1-4.fc34.x86_64\n - libgdata-devel-0:0.18.1-1.fc34.x86_64\n - dbus-glib-devel-0:0.110-11.fc34.x86_64\n - openblas-openmp-0:0.3.17-1.fc34.aarch64\n - libmspack-0:0.10.1-0.5.alpha.fc34.aarch64\n - ghostscript-tools-printing-0:9.53.3-6.fc34.i686\n - flexiblas-blis-openmp-0:3.0.4-3.fc34.i686\n - boost-devel-0:1.75.0-4.fc34.x86_64\n - libdazzle-devel-0:3.40.0-1.fc34.aarch64\n - suitesparse64-devel-0:5.4.0-6.fc34.ppc64le\n - gnome-desktop3-0:40.3-1.fc34.ppc64le\n - boost-serialization-0:1.75.0-4.fc34.armv7hl\n - boost-iostreams-0:1.75.0-4.fc34.aarch64\n - boost-json-0:1.75.0-4.fc34.i686\n - libgweather-devel-0:40.0-1.fc34.x86_64\n - geocode-glib-devel-0:3.26.2-3.fc34.x86_64\n - boost-type_erasure-0:1.75.0-4.fc34.aarch64\n - suitesparse64_-static-0:5.4.0-6.fc34.x86_64\n - liboauth-devel-0:1.0.3-16.fc34.s390x\n - ghostscript-x11-0:9.53.3-6.fc34.s390x\n - gsl-0:2.6-4.fc34.ppc64le\n - SDL_image-0:1.2.12-26.fc34.x86_64\n - libfontenc-0:1.1.3-15.fc34.x86_64\n - poppler-glib-0:21.01.0-7.fc34.ppc64le\n - libical-0:3.0.10-1.fc34.aarch64\n - suitesparse-devel-0:5.4.0-6.fc34.s390x\n - poppler-devel-0:21.01.0-7.fc34.x86_64\n - polkit-libs-0:0.117-3.fc34.1.s390x\n - compat-wxGTK3-gtk2-media-0:3.0.5.1-4.fc34.ppc64le\n - gd-progs-0:2.3.2-2.fc34.ppc64le\n - cairomm-0:1.14.2-8.fc34.s390x\n - poppler-glib-0:21.01.0-7.fc34.s390x\n - openblas-serial64-0:0.3.17-1.fc34.s390x\n - polkit-devel-0:0.117-3.fc34.1.x86_64\n - boost-python3-0:1.75.0-4.fc34.ppc64le\n - pangomm-devel-0:2.46.1-1.fc34.s390x\n - boost-type_erasure-0:1.75.0-4.fc34.ppc64le\n - flexiblas-netlib-0:3.0.4-3.fc34.aarch64\n - openjpeg2-tools-0:2.4.0-3.fc34.s390x\n - glibmm24-0:2.66.1-1.fc34.x86_64\n - boost-random-0:1.75.0-4.fc34.i686\n - libgs-devel-0:9.53.3-6.fc34.ppc64le\n - gnome-desktop3-devel-0:40.3-1.fc34.ppc64le\n - ghostscript-0:9.53.3-6.fc34.aarch64\n - evolution-data-server-0:3.40.3-1.fc34.x86_64\n - boost-context-0:1.75.0-4.fc34.aarch64\n - gnome-desktop3-devel-0:40.3-1.fc34.i686\n - exiv2-devel-0:0.27.3-7.fc34.s390x\n - boost-test-0:1.75.0-4.fc34.aarch64\n - poppler-qt5-0:21.01.0-7.fc34.i686\n - boost-devel-0:1.75.0-4.fc34.ppc64le\n - libidn-0:1.36-2.fc34.i686\n - libical-devel-0:3.0.10-1.fc34.ppc64le\n - dbus-glib-devel-0:0.110-11.fc34.i686\n - protobuf-0:3.14.0-3.fc34.x86_64\n - poppler-0:21.01.0-7.fc34.aarch64\n - boost-b2-0:1.75.0-4.fc34.armv7hl\n - ghostscript-core-0:9.53.3-6.fc34.ppc64le\n - libpeas-devel-0:1.30.0-3.fc34.ppc64le\n - boost-serialization-0:1.75.0-4.fc34.x86_64\n - openblas-threads-0:0.3.17-1.fc34.i686\n - boost-examples-0:1.75.0-4.fc34.ppc64le\n - boost-coroutine-0:1.75.0-4.fc34.x86_64\n - gspell-devel-0:1.9.1-1.fc34.armv7hl\n - openexr-0:2.5.5-1.fc34.armv7hl\n - suitesparse64-0:5.4.0-6.fc34.s390x\n - libmspack-0:0.10.1-0.5.alpha.fc34.ppc64le\n - libphonenumber-devel-0:8.12.11-5.fc34.x86_64\n - openblas-threads-0:0.3.17-1.fc34.aarch64\n - gtkmm30-0:3.24.5-1.fc34.i686\n - adobe-mappings-cmap-0:20171205-10.fc34.noarch\n - libgdata-0:0.18.1-1.fc34.armv7hl\n - poppler-qt5-devel-0:21.01.0-7.fc34.armv7hl\n - jbig2dec-0:0.19-4.fc34.x86_64\n - ghostscript-0:9.53.3-6.fc34.s390x\n - evolution-data-server-perl-0:3.40.3-1.fc34.i686\n - ghostscript-tools-printing-0:9.53.3-6.fc34.aarch64\n - liboauth-0:1.0.3-16.fc34.aarch64\n - gnome-online-accounts-devel-0:3.40.0-1.fc34.armv7hl\n - libdazzle-devel-0:3.40.0-1.fc34.x86_64\n - poppler-glib-devel-0:21.01.0-7.fc34.armv7hl\n - protobuf-lite-devel-0:3.14.0-3.fc34.s390x\n - wxGTK3-0:3.0.5.1-4.fc34.ppc64le\n - wxGTK3-gl-0:3.0.5.1-4.fc34.armv7hl\n - boost-coroutine-0:1.75.0-4.fc34.i686\n - boost-filesystem-0:1.75.0-4.fc34.armv7hl\n - python2.7-0:2.7.18-11.fc34.ppc64le\n - gtksourceview3-0:3.24.11-5.fc34.ppc64le\n - libgweather-0:40.0-1.fc34.ppc64le\n - gd-progs-0:2.3.2-2.fc34.aarch64\n - openblas-static-0:0.3.17-1.fc34.s390x\n - boost-static-0:1.75.0-4.fc34.armv7hl\n - libical-0:3.0.10-1.fc34.x86_64\n - suitesparse64-devel-0:5.4.0-6.fc34.x86_64\n - gd-0:2.3.2-2.fc34.i686\n - libgdata-devel-0:0.18.1-1.fc34.aarch64\n - wxBase3-0:3.0.5.1-4.fc34.i686\n - boost-chrono-0:1.75.0-4.fc34.s390x\n - openexr-devel-0:2.5.5-1.fc34.i686\n - boost-program-options-0:1.75.0-4.fc34.s390x\n - boost-static-0:1.75.0-4.fc34.i686\n - libraqm-0:0.7.0-7.fc34.s390x\n - openblas-threads-0:0.3.17-1.fc34.s390x\n - boost-devel-0:1.75.0-4.fc34.i686\n - ghostscript-gtk-0:9.53.3-6.fc34.aarch64\n - suitesparse64-devel-0:5.4.0-6.fc34.aarch64\n - libwmf-lite-0:0.2.12-5.fc34.aarch64\n - boost-json-0:1.75.0-4.fc34.armv7hl\n - gspell-doc-0:1.9.1-1.fc34.noarch\n - flexiblas-netlib-0:3.0.4-3.fc34.s390x\n - jbig2dec-0:0.19-4.fc34.s390x\n - protobuf-lite-static-0:3.14.0-3.fc34.i686\n - protobuf-lite-0:3.14.0-3.fc34.i686\n - protobuf-devel-0:3.14.0-3.fc34.x86_64\n - libimagequant-0:2.14.1-1.fc34.ppc64le\n - gtkmm30-devel-0:3.24.5-1.fc34.x86_64\n - jbig2dec-0:0.19-4.fc34.armv7hl\n - SDL-0:1.2.15-46.fc34.ppc64le\n - boost-doc-0:1.75.0-4.fc34.s390x\n - gtkmm30-devel-0:3.24.5-1.fc34.ppc64le\n - dbus-glib-0:0.110-11.fc34.armv7hl\n - flexiblas-openblas-serial-0:3.0.4-3.fc34.aarch64\n - libraqm-devel-0:0.7.0-7.fc34.aarch64\n - boost-fiber-0:1.75.0-4.fc34.s390x\n - SDL_image-devel-0:1.2.12-26.fc34.s390x\n - dbus-glib-0:0.110-11.fc34.aarch64\n - evolution-data-server-0:3.40.3-1.fc34.armv7hl\n - cairomm-0:1.14.2-8.fc34.armv7hl\n - compat-wxGTK3-gtk2-gl-0:3.0.5.1-4.fc34.i686\n - libsigc++20-0:2.10.7-1.fc34.aarch64\n - flatpak-rpm-macros-0:33-3.fc34.x86_64\n - libgs-0:9.53.3-6.fc34.aarch64\n - ghostscript-tools-dvipdf-0:9.53.3-6.fc34.s390x\n - libgs-0:9.53.3-6.fc34.x86_64\n - poppler-glib-0:21.01.0-7.fc34.armv7hl\n - openexr-devel-0:2.5.5-1.fc34.x86_64\n - boost-thread-0:1.75.0-4.fc34.x86_64\n - boost-fiber-0:1.75.0-4.fc34.x86_64\n - tbb-devel-0:2020.3-7.fc34.i686\n - SDL-0:1.2.15-46.fc34.i686\n - SDL-devel-0:1.2.15-46.fc34.s390x\n - gtksourceview3-devel-0:3.24.11-5.fc34.ppc64le\n - gtkmm30-0:3.24.5-1.fc34.aarch64\n - openblas-devel-0:0.3.17-1.fc34.i686\n - atkmm-devel-0:2.28.2-1.fc34.s390x\n - openjpeg2-tools-0:2.4.0-3.fc34.armv7hl\n - libsigc++20-devel-0:2.10.7-1.fc34.ppc64le\n - libpeas-loader-python3-0:1.30.0-3.fc34.aarch64\n - libdazzle-0:3.40.0-1.fc34.s390x\n - openexr-devel-0:2.5.5-1.fc34.ppc64le\n - geocode-glib-0:3.26.2-3.fc34.armv7hl\n - flexiblas-blis-openmp64-0:3.0.4-3.fc34.s390x\n - evolution-data-server-tests-0:3.40.3-1.fc34.aarch64\n - openblas-openmp64-0:0.3.17-1.fc34.s390x\n - boost-test-0:1.75.0-4.fc34.s390x\n - wxBase3-0:3.0.5.1-4.fc34.armv7hl\n - evolution-data-server-0:3.40.3-1.fc34.ppc64le\n - boost-timer-0:1.75.0-4.fc34.ppc64le\n - SDL-static-0:1.2.15-46.fc34.armv7hl\n - libwmf-0:0.2.12-5.fc34.armv7hl\n - libfontenc-devel-0:1.1.3-15.fc34.ppc64le\n - libpaper-0:1.1.28-2.fc34.x86_64\n - jbig2dec-libs-0:0.19-4.fc34.s390x\n - libphonenumber-devel-0:8.12.11-5.fc34.i686\n - libdazzle-devel-0:3.40.0-1.fc34.ppc64le\n - gd-0:2.3.2-2.fc34.armv7hl\n - ghostscript-core-0:9.53.3-6.fc34.x86_64\n - flexiblas-hook-profile-0:3.0.4-3.fc34.s390x\n - libwmf-devel-0:0.2.12-5.fc34.armv7hl\n - exiv2-devel-0:0.27.3-7.fc34.aarch64\n - exiv2-0:0.27.3-7.fc34.s390x\n - protobuf-0:3.14.0-3.fc34.s390x\n - pangomm-devel-0:2.46.1-1.fc34.ppc64le\n - cairomm-devel-0:1.14.2-8.fc34.x86_64\n - libimagequant-devel-0:2.14.1-1.fc34.i686\n - flexiblas-blis-serial-0:3.0.4-3.fc34.i686\n - gsl-0:2.6-4.fc34.aarch64\n - boost-filesystem-0:1.75.0-4.fc34.ppc64le\n - flexiblas-blis-threads-0:3.0.4-3.fc34.x86_64\n - boost-iostreams-0:1.75.0-4.fc34.i686\n - glew-0:2.1.0-9.fc34.i686\n - boost-container-0:1.75.0-4.fc34.s390x\n - boost-stacktrace-0:1.75.0-4.fc34.x86_64\n - ghostscript-core-0:9.53.3-6.fc34.armv7hl\n - boost-locale-0:1.75.0-4.fc34.s390x\n - gsound-0:1.0.2-13.fc34.x86_64\n - libfontenc-devel-0:1.1.3-15.fc34.i686\n - pangomm-0:2.46.1-1.fc34.s390x\n - libical-0:3.0.10-1.fc34.armv7hl\n - gspell-0:1.9.1-1.fc34.ppc64le\n - boost-date-time-0:1.75.0-4.fc34.s390x\n - libgweather-0:40.0-1.fc34.s390x\n - boost-0:1.75.0-4.fc34.aarch64\n - gnome-desktop3-0:40.3-1.fc34.i686\n - libsigc++20-0:2.10.7-1.fc34.s390x\n - polkit-libs-0:0.117-3.fc34.1.armv7hl\n - boost-json-0:1.75.0-4.fc34.aarch64\n - libwmf-lite-0:0.2.12-5.fc34.armv7hl\n - flexiblas-blis-openmp-0:3.0.4-3.fc34.x86_64\n - python3-openexr-0:2.5.5-1.fc34.aarch64\n - libmspack-devel-0:0.10.1-0.5.alpha.fc34.aarch64\n - gsound-0:1.0.2-13.fc34.armv7hl\n - gnome-desktop3-devel-0:40.3-1.fc34.x86_64\n - gsound-devel-0:1.0.2-13.fc34.x86_64\n - tbb-0:2020.3-7.fc34.ppc64le\n - protobuf-compiler-0:3.14.0-3.fc34.i686\n - ghostscript-tools-printing-0:9.53.3-6.fc34.x86_64\n - dbus-glib-devel-0:0.110-11.fc34.ppc64le\n - openexr-0:2.5.5-1.fc34.i686\n - openblas-openmp64-0:0.3.17-1.fc34.aarch64\n - atkmm-devel-0:2.28.2-1.fc34.x86_64\n - tbb-0:2020.3-7.fc34.x86_64\n - flexiblas-openblas-threads-0:3.0.4-3.fc34.x86_64\n - python2.7-0:2.7.18-11.fc34.i686\n - boost-python3-0:1.75.0-4.fc34.aarch64\n - libGLEW-0:2.1.0-9.fc34.armv7hl\n - evolution-data-server-perl-0:3.40.3-1.fc34.x86_64\n - boost-numpy3-0:1.75.0-4.fc34.x86_64\n - libpeas-loader-python3-0:1.30.0-3.fc34.x86_64\n - boost-contract-0:1.75.0-4.fc34.s390x\n - flexiblas-0:3.0.4-3.fc34.s390x\n - flexiblas-blis-serial64-0:3.0.4-3.fc34.x86_64\n - poppler-utils-0:21.01.0-7.fc34.armv7hl\n - exiv2-libs-0:0.27.3-7.fc34.aarch64\n - openblas-devel-0:0.3.17-1.fc34.s390x\n - flexiblas-blis-threads-0:3.0.4-3.fc34.ppc64le\n - gd-progs-0:2.3.2-2.fc34.s390x\n - gtkmm30-devel-0:3.24.5-1.fc34.s390x\n - libidn-0:1.36-2.fc34.armv7hl\n - libdazzle-0:3.40.0-1.fc34.x86_64\n - libgs-devel-0:9.53.3-6.fc34.x86_64\n - urw-base35-z003-fonts-0:20200910-5.fc34.noarch\n - openjpeg2-tools-0:2.4.0-3.fc34.aarch64\n - geocode-glib-devel-0:3.26.2-3.fc34.s390x\n - gnome-desktop3-0:40.3-1.fc34.s390x\n - gnome-online-accounts-0:3.40.0-1.fc34.i686\n - gnome-desktop3-tests-0:40.3-1.fc34.i686\n - flexiblas-0:3.0.4-3.fc34.armv7hl\n - glew-devel-0:2.1.0-9.fc34.armv7hl\n - ghostscript-doc-0:9.53.3-6.fc34.noarch\n - boost-b2-0:1.75.0-4.fc34.aarch64\n - poppler-0:21.01.0-7.fc34.x86_64\n - boost-iostreams-0:1.75.0-4.fc34.s390x\n - libphonenumber-devel-0:8.12.11-5.fc34.armv7hl\n - boost-math-0:1.75.0-4.fc34.aarch64\n - suitesparse64-devel-0:5.4.0-6.fc34.s390x\n - tbb-devel-0:2020.3-7.fc34.armv7hl\n - boost-nowide-0:1.75.0-4.fc34.s390x\n - libwmf-devel-0:0.2.12-5.fc34.ppc64le\n - SDL-0:1.2.15-46.fc34.aarch64\n - libgweather-0:40.0-1.fc34.aarch64\n - evolution-data-server-perl-0:3.40.3-1.fc34.armv7hl\n - jbig2dec-devel-0:0.19-4.fc34.i686\n - boost-graph-0:1.75.0-4.fc34.armv7hl\n - glew-0:2.1.0-9.fc34.s390x\n - libgweather-0:40.0-1.fc34.i686\n - boost-python3-0:1.75.0-4.fc34.i686\n - openblas-0:0.3.17-1.fc34.ppc64le\n - flexiblas-devel-0:3.0.4-3.fc34.aarch64\n - boost-regex-0:1.75.0-4.fc34.ppc64le\n - wxGTK3-0:3.0.5.1-4.fc34.i686\n - libpeas-0:1.30.0-3.fc34.aarch64\n - boost-atomic-0:1.75.0-4.fc34.ppc64le\n - libgweather-0:40.0-1.fc34.armv7hl\n - libpaper-0:1.1.28-2.fc34.ppc64le\n - openblas-0:0.3.17-1.fc34.x86_64\n - libimagequant-devel-0:2.14.1-1.fc34.s390x\n - gd-progs-0:2.3.2-2.fc34.x86_64\n - suitesparse-0:5.4.0-6.fc34.x86_64\n - openblas-serial64_-0:0.3.17-1.fc34.x86_64\n - flexiblas-blis-threads-0:3.0.4-3.fc34.armv7hl\n - openblas-threads-0:0.3.17-1.fc34.x86_64\n - boost-json-0:1.75.0-4.fc34.ppc64le\n - boost-locale-0:1.75.0-4.fc34.armv7hl\n - libical-0:3.0.10-1.fc34.i686\n - boost-thread-0:1.75.0-4.fc34.ppc64le\n - boost-timer-0:1.75.0-4.fc34.x86_64\n - boost-log-0:1.75.0-4.fc34.i686\n - protobuf-lite-0:3.14.0-3.fc34.armv7hl\n - boost-context-0:1.75.0-4.fc34.armv7hl\n - python2-setuptools-0:41.2.0-4.fc34.noarch\n - flexiblas-0:3.0.4-3.fc34.aarch64\n - openblas-threads64-0:0.3.17-1.fc34.aarch64\n - gtkmm30-doc-0:3.24.5-1.fc34.noarch\n - flexiblas-netlib64-0:3.0.4-3.fc34.ppc64le\n - dbus-glib-0:0.110-11.fc34.ppc64le\n - flexiblas-blis-threads-0:3.0.4-3.fc34.s390x\n - libidn-javadoc-0:1.36-2.fc34.noarch\n - boost-coroutine-0:1.75.0-4.fc34.ppc64le\n - gtkmm30-devel-0:3.24.5-1.fc34.aarch64\n - boost-fiber-0:1.75.0-4.fc34.ppc64le\n - libpeas-loader-python3-0:1.30.0-3.fc34.armv7hl\n - gspell-devel-0:1.9.1-1.fc34.i686\n - openblas-threads-0:0.3.17-1.fc34.ppc64le\n - boost-program-options-0:1.75.0-4.fc34.ppc64le\n - suitesparse64_-0:5.4.0-6.fc34.ppc64le\n - boost-numpy3-0:1.75.0-4.fc34.ppc64le\n - libidn-devel-0:1.36-2.fc34.aarch64\n - boost-coroutine-0:1.75.0-4.fc34.aarch64\n - libidn-devel-0:1.36-2.fc34.s390x\n - libgdata-devel-0:0.18.1-1.fc34.i686\n - libgweather-devel-0:40.0-1.fc34.i686\n - poppler-utils-0:21.01.0-7.fc34.s390x\n - libidn-0:1.36-2.fc34.s390x\n - wxGTK3-gl-0:3.0.5.1-4.fc34.aarch64\n - ghostscript-tools-fonts-0:9.53.3-6.fc34.i686\n - suitesparse64_-static-0:5.4.0-6.fc34.s390x\n - flexiblas-openblas-openmp-0:3.0.4-3.fc34.i686\n - boost-doc-0:1.75.0-4.fc34.x86_64\n - boost-nowide-0:1.75.0-4.fc34.i686\n - wxGTK3-media-0:3.0.5.1-4.fc34.x86_64\n - tbb-0:2020.3-7.fc34.aarch64\n - libmspack-devel-0:0.10.1-0.5.alpha.fc34.s390x\n - boost-system-0:1.75.0-4.fc34.armv7hl\n - poppler-devel-0:21.01.0-7.fc34.armv7hl\n - libwmf-devel-0:0.2.12-5.fc34.x86_64\n - boost-type_erasure-0:1.75.0-4.fc34.s390x\n - flexiblas-devel-0:3.0.4-3.fc34.x86_64\n - pangomm-devel-0:2.46.1-1.fc34.aarch64\n - wxGTK3-media-0:3.0.5.1-4.fc34.aarch64\n - ghostscript-tools-dvipdf-0:9.53.3-6.fc34.i686\n - libsigc++20-0:2.10.7-1.fc34.armv7hl\n - libical-glib-doc-0:3.0.10-1.fc34.noarch\n - python2.7-0:2.7.18-11.fc34.armv7hl\n - gtksourceview3-0:3.24.11-5.fc34.armv7hl\n - openblas-static-0:0.3.17-1.fc34.i686\n - libraqm-0:0.7.0-7.fc34.armv7hl\n - libfontenc-0:1.1.3-15.fc34.s390x\n - glew-devel-0:2.1.0-9.fc34.ppc64le\n - libgweather-devel-0:40.0-1.fc34.ppc64le\n - wxGTK3-webview-0:3.0.5.1-4.fc34.aarch64\n - libmspack-0:0.10.1-0.5.alpha.fc34.s390x\n - geocode-glib-devel-0:3.26.2-3.fc34.ppc64le\n - exiv2-devel-0:0.27.3-7.fc34.x86_64\n - polkit-devel-0:0.117-3.fc34.1.armv7hl\n - SDL_image-0:1.2.12-26.fc34.s390x\n - boost-filesystem-0:1.75.0-4.fc34.aarch64\n - flexiblas-netlib-0:3.0.4-3.fc34.i686\n - libwmf-lite-0:0.2.12-5.fc34.s390x\n - openexr-0:2.5.5-1.fc34.aarch64\n - boost-graph-0:1.75.0-4.fc34.ppc64le\n - cairomm-devel-0:1.14.2-8.fc34.aarch64\n - compat-wxGTK3-gtk2-devel-0:3.0.5.1-4.fc34.aarch64\n - libGLEW-0:2.1.0-9.fc34.x86_64\n - poppler-cpp-0:21.01.0-7.fc34.i686\n - libpaper-devel-0:1.1.28-2.fc34.i686\n - pangomm-0:2.46.1-1.fc34.i686\n - suitesparse64-0:5.4.0-6.fc34.ppc64le\n - boost-thread-0:1.75.0-4.fc34.s390x\n - openblas-openmp-0:0.3.17-1.fc34.ppc64le\n - poppler-qt5-0:21.01.0-7.fc34.armv7hl\n - libgdata-devel-0:0.18.1-1.fc34.ppc64le\n - libpaper-devel-0:1.1.28-2.fc34.ppc64le\n - boost-serialization-0:1.75.0-4.fc34.aarch64\n - boost-locale-0:1.75.0-4.fc34.aarch64\n - boost-log-0:1.75.0-4.fc34.s390x\n - boost-atomic-0:1.75.0-4.fc34.aarch64\n - boost-examples-0:1.75.0-4.fc34.x86_64\n - pangomm-devel-0:2.46.1-1.fc34.i686\n - openblas-openmp-0:0.3.17-1.fc34.s390x\n - openexr-libs-0:2.5.5-1.fc34.aarch64\n - libijs-devel-0:0.35-13.fc34.i686\n - ghostscript-core-0:9.53.3-6.fc34.aarch64\n - flexiblas-devel-0:3.0.4-3.fc34.armv7hl\n - poppler-qt5-0:21.01.0-7.fc34.x86_64\n - suitesparse-static-0:5.4.0-6.fc34.x86_64\n - python3-openexr-0:2.5.5-1.fc34.ppc64le\n - compat-wxGTK3-gtk2-media-0:3.0.5.1-4.fc34.x86_64\n - poppler-glib-doc-0:21.01.0-7.fc34.noarch\n - protobuf-java-0:3.14.0-3.fc34.noarch\n - flexiblas-hook-profile-0:3.0.4-3.fc34.ppc64le\n - boost-regex-0:1.75.0-4.fc34.s390x\n - openexr-libs-0:2.5.5-1.fc34.s390x\n - boost-stacktrace-0:1.75.0-4.fc34.i686\n - boost-log-0:1.75.0-4.fc34.x86_64\n - protobuf-lite-devel-0:3.14.0-3.fc34.x86_64\n - flexiblas-atlas-0:3.0.4-3.fc34.i686\n - flexiblas-blis-threads-0:3.0.4-3.fc34.aarch64\n - dbus-glib-devel-0:0.110-11.fc34.s390x\n - protobuf-devel-0:3.14.0-3.fc34.aarch64\n - flexiblas-openblas-threads64-0:3.0.4-3.fc34.s390x\n - pangomm-0:2.46.1-1.fc34.armv7hl\n - gsound-0:1.0.2-13.fc34.i686\n - openblas-threads64_-0:0.3.17-1.fc34.x86_64\n - boost-contract-0:1.75.0-4.fc34.i686\n - boost-test-0:1.75.0-4.fc34.ppc64le\n - protobuf-vim-0:3.14.0-3.fc34.noarch\n - libwmf-0:0.2.12-5.fc34.aarch64\n - boost-chrono-0:1.75.0-4.fc34.ppc64le\n - flexiblas-blis-serial64-0:3.0.4-3.fc34.ppc64le\n - ghostscript-tools-dvipdf-0:9.53.3-6.fc34.aarch64\n - atkmm-0:2.28.2-1.fc34.ppc64le\n - boost-serialization-0:1.75.0-4.fc34.i686\n - SDL_image-devel-0:1.2.12-26.fc34.armv7hl\n - glibmm24-0:2.66.1-1.fc34.ppc64le\n - protobuf-static-0:3.14.0-3.fc34.x86_64\n - flexiblas-openblas-openmp-0:3.0.4-3.fc34.armv7hl\n - ghostscript-tools-fonts-0:9.53.3-6.fc34.s390x\n - openjpeg2-0:2.4.0-3.fc34.armv7hl\n - suitesparse64_-devel-0:5.4.0-6.fc34.aarch64\n - evolution-data-server-devel-0:3.40.3-1.fc34.aarch64\n - compat-wxGTK3-gtk2-gl-0:3.0.5.1-4.fc34.x86_64\n - libphonenumber-0:8.12.11-5.fc34.x86_64\n - flexiblas-blis-threads64-0:3.0.4-3.fc34.aarch64\n - boost-json-0:1.75.0-4.fc34.s390x\n - libidn-devel-0:1.36-2.fc34.armv7hl\n - poppler-glib-0:21.01.0-7.fc34.aarch64\n - flexiblas-blis-serial64-0:3.0.4-3.fc34.s390x\n - openexr-devel-0:2.5.5-1.fc34.s390x\n - protobuf-static-0:3.14.0-3.fc34.i686\n - wxGTK3-0:3.0.5.1-4.fc34.aarch64\n - atkmm-devel-0:2.28.2-1.fc34.armv7hl\n - suitesparse-devel-0:5.4.0-6.fc34.ppc64le\n - python3-tbb-0:2020.3-7.fc34.x86_64\n - boost-nowide-0:1.75.0-4.fc34.ppc64le\n - flexiblas-netlib-0:3.0.4-3.fc34.armv7hl\n - compat-wxGTK3-gtk2-0:3.0.5.1-4.fc34.x86_64\n - boost-regex-0:1.75.0-4.fc34.aarch64\n - urw-base35-nimbus-sans-fonts-0:20200910-5.fc34.noarch\n - polkit-libs-0:0.117-3.fc34.1.ppc64le\n - SDL-static-0:1.2.15-46.fc34.s390x\n - openexr-libs-0:2.5.5-1.fc34.ppc64le\n - boost-graph-0:1.75.0-4.fc34.aarch64\n - cairomm-devel-0:1.14.2-8.fc34.s390x\n - protobuf-lite-devel-0:3.14.0-3.fc34.ppc64le\n - SDL-static-0:1.2.15-46.fc34.x86_64\n - cairomm-devel-0:1.14.2-8.fc34.i686\n - libgweather-devel-0:40.0-1.fc34.aarch64\n - gnome-desktop3-devel-0:40.3-1.fc34.aarch64\n - libgs-0:9.53.3-6.fc34.armv7hl\n - geocode-glib-devel-0:3.26.2-3.fc34.aarch64\n - openblas-threads64_-0:0.3.17-1.fc34.s390x\n - gtksourceview3-tests-0:3.24.11-5.fc34.i686\n - poppler-devel-0:21.01.0-7.fc34.s390x\n - suitesparse64_-static-0:5.4.0-6.fc34.aarch64\n - poppler-glib-devel-0:21.01.0-7.fc34.i686\n - wxGTK3-devel-0:3.0.5.1-4.fc34.ppc64le\n - jbig2dec-libs-0:0.19-4.fc34.armv7hl\n - polkit-devel-0:0.117-3.fc34.1.aarch64\n - gd-devel-0:2.3.2-2.fc34.i686\n - libpeas-devel-0:1.30.0-3.fc34.s390x\n - poppler-cpp-devel-0:21.01.0-7.fc34.armv7hl\n - cairomm-devel-0:1.14.2-8.fc34.ppc64le\n - protobuf-lite-static-0:3.14.0-3.fc34.armv7hl\n - google-droid-sans-fonts-0:20200215-9.fc34.noarch\n - boost-math-0:1.75.0-4.fc34.armv7hl\n - tbb-doc-0:2020.3-7.fc34.s390x\n - suitesparse-static-0:5.4.0-6.fc34.ppc64le\n - libdazzle-devel-0:3.40.0-1.fc34.armv7hl\n - libpeas-gtk-0:1.30.0-3.fc34.x86_64\n - evolution-data-server-devel-0:3.40.3-1.fc34.i686\n - libical-0:3.0.10-1.fc34.ppc64le\n - flexiblas-hook-profile-0:3.0.4-3.fc34.aarch64\n - jbig2dec-0:0.19-4.fc34.i686\n - boost-program-options-0:1.75.0-4.fc34.aarch64\n - wxGTK3-gl-0:3.0.5.1-4.fc34.ppc64le\n - flexiblas-openblas-threads-0:3.0.4-3.fc34.armv7hl\n - libwmf-0:0.2.12-5.fc34.s390x\n - ghostscript-tools-printing-0:9.53.3-6.fc34.s390x\n - glibmm24-devel-0:2.66.1-1.fc34.ppc64le\n - boost-atomic-0:1.75.0-4.fc34.i686\n - flexiblas-blis-threads-0:3.0.4-3.fc34.i686\n - suitesparse-0:5.4.0-6.fc34.ppc64le\n - boost-doctools-0:1.75.0-4.fc34.ppc64le\n - libimagequant-devel-0:2.14.1-1.fc34.aarch64\n - polkit-devel-0:0.117-3.fc34.1.ppc64le\n - boost-contract-0:1.75.0-4.fc34.x86_64\n - gnome-online-accounts-devel-0:3.40.0-1.fc34.s390x\n - boost-contract-0:1.75.0-4.fc34.aarch64\n - boost-0:1.75.0-4.fc34.i686\n - flexiblas-openblas-threads64-0:3.0.4-3.fc34.ppc64le\n - flexiblas-blis-serial-0:3.0.4-3.fc34.ppc64le\n - libpeas-0:1.30.0-3.fc34.x86_64\n - libical-0:3.0.10-1.fc34.s390x\n - dbus-glib-0:0.110-11.fc34.s390x\n - glibmm24-devel-0:2.66.1-1.fc34.aarch64\n - SDL_image-0:1.2.12-26.fc34.ppc64le\n - protobuf-devel-0:3.14.0-3.fc34.armv7hl\n - flexiblas-hook-profile64-0:3.0.4-3.fc34.aarch64\n - boost-graph-0:1.75.0-4.fc34.i686\n - flexiblas-openblas-serial-0:3.0.4-3.fc34.armv7hl\n - poppler-devel-0:21.01.0-7.fc34.ppc64le\n - glew-0:2.1.0-9.fc34.ppc64le\n - gd-devel-0:2.3.2-2.fc34.ppc64le\n - suitesparse64-static-0:5.4.0-6.fc34.s390x\n - gtksourceview3-devel-0:3.24.11-5.fc34.i686\n - boost-iostreams-0:1.75.0-4.fc34.armv7hl\n - glibmm24-devel-0:2.66.1-1.fc34.x86_64\n - boost-b2-0:1.75.0-4.fc34.s390x\n - libGLEW-0:2.1.0-9.fc34.s390x\n - glew-devel-0:2.1.0-9.fc34.aarch64\n - libpeas-gtk-0:1.30.0-3.fc34.s390x\n - python3-openexr-0:2.5.5-1.fc34.s390x\n - geocode-glib-0:3.26.2-3.fc34.x86_64\n - libijs-devel-0:0.35-13.fc34.armv7hl\n - liboauth-devel-0:1.0.3-16.fc34.ppc64le\n - libpeas-gtk-0:1.30.0-3.fc34.ppc64le\n - libGLEW-0:2.1.0-9.fc34.i686\n - boost-locale-0:1.75.0-4.fc34.i686\n - flexiblas-atlas-0:3.0.4-3.fc34.aarch64\n - wxBase3-0:3.0.5.1-4.fc34.ppc64le\n - gtksourceview3-devel-0:3.24.11-5.fc34.s390x\n - poppler-utils-0:21.01.0-7.fc34.i686\n - boost-context-0:1.75.0-4.fc34.s390x\n - poppler-utils-0:21.01.0-7.fc34.x86_64\n - SDL_image-devel-0:1.2.12-26.fc34.i686\n - boost-regex-0:1.75.0-4.fc34.i686\n - python3-openexr-0:2.5.5-1.fc34.i686\n - exiv2-libs-0:0.27.3-7.fc34.x86_64\n - flexiblas-blis-threads64-0:3.0.4-3.fc34.x86_64\n - google-droid-sans-mono-fonts-0:20200215-9.fc34.noarch\n - flexiblas-openblas-threads-0:3.0.4-3.fc34.aarch64\n - protobuf-lite-0:3.14.0-3.fc34.ppc64le\n - libsigc++20-0:2.10.7-1.fc34.i686\n - liboauth-0:1.0.3-16.fc34.s390x\n - libimagequant-0:2.14.1-1.fc34.i686\n - boost-system-0:1.75.0-4.fc34.s390x\n - evolution-data-server-devel-0:3.40.3-1.fc34.s390x\n - evolution-data-server-tests-0:3.40.3-1.fc34.ppc64le\n - libGLEW-0:2.1.0-9.fc34.ppc64le\n - boost-static-0:1.75.0-4.fc34.x86_64\n - poppler-0:21.01.0-7.fc34.armv7hl\n - suitesparse-devel-0:5.4.0-6.fc34.aarch64\n - wxGTK3-devel-0:3.0.5.1-4.fc34.i686\n - libpaper-devel-0:1.1.28-2.fc34.armv7hl\n - geocode-glib-devel-0:3.26.2-3.fc34.i686\n - boost-random-0:1.75.0-4.fc34.s390x\n - libgs-devel-0:9.53.3-6.fc34.armv7hl\n - flexiblas-openblas-serial64-0:3.0.4-3.fc34.aarch64\n - urw-base35-fonts-legacy-0:20200910-5.fc34.noarch\n - boost-b2-0:1.75.0-4.fc34.x86_64\n - python3-tbb-0:2020.3-7.fc34.s390x\n - flexiblas-openblas-openmp64-0:3.0.4-3.fc34.ppc64le\n - gd-0:2.3.2-2.fc34.ppc64le\n - flexiblas-openblas-openmp64-0:3.0.4-3.fc34.aarch64\n - boost-wave-0:1.75.0-4.fc34.ppc64le\n - protobuf-lite-devel-0:3.14.0-3.fc34.aarch64\n - gd-devel-0:2.3.2-2.fc34.x86_64\n - opengl-games-utils-0:0.2-19.fc34.noarch\n - gtkmm30-0:3.24.5-1.fc34.s390x\n - openblas-0:0.3.17-1.fc34.armv7hl\n - cairomm-0:1.14.2-8.fc34.i686\n - libraqm-devel-0:0.7.0-7.fc34.s390x\n - flexiblas-openblas-openmp64-0:3.0.4-3.fc34.s390x\n - poppler-qt5-devel-0:21.01.0-7.fc34.s390x\n - libpeas-gtk-0:1.30.0-3.fc34.armv7hl\n - boost-examples-0:1.75.0-4.fc34.aarch64\n - boost-thread-0:1.75.0-4.fc34.armv7hl\n - libwmf-0:0.2.12-5.fc34.ppc64le\n - libgdata-0:0.18.1-1.fc34.s390x\n - flexiblas-blis-serial-0:3.0.4-3.fc34.aarch64\n - openblas-devel-0:0.3.17-1.fc34.armv7hl\n - SDL_image-0:1.2.12-26.fc34.i686\n - ghostscript-tools-dvipdf-0:9.53.3-6.fc34.x86_64\n - libfontenc-devel-0:1.1.3-15.fc34.aarch64\n - gspell-0:1.9.1-1.fc34.i686\n - poppler-cpp-devel-0:21.01.0-7.fc34.ppc64le\n - poppler-glib-0:21.01.0-7.fc34.i686\n - poppler-cpp-devel-0:21.01.0-7.fc34.x86_64\n - poppler-glib-devel-0:21.01.0-7.fc34.aarch64\n - evolution-data-server-tests-0:3.40.3-1.fc34.i686\n - gnome-online-accounts-devel-0:3.40.0-1.fc34.ppc64le\n - gd-0:2.3.2-2.fc34.x86_64\n - libdazzle-devel-0:3.40.0-1.fc34.i686\n - boost-system-0:1.75.0-4.fc34.x86_64\n - wxBase3-devel-0:3.0.5.1-4.fc34.aarch64\n - openblas-openmp-0:0.3.17-1.fc34.armv7hl\n - wxGTK3-media-0:3.0.5.1-4.fc34.ppc64le\n - boost-wave-0:1.75.0-4.fc34.aarch64\n - libimagequant-0:2.14.1-1.fc34.s390x\n - python3-tbb-0:2020.3-7.fc34.ppc64le\n - libimagequant-0:2.14.1-1.fc34.x86_64\n - suitesparse-0:5.4.0-6.fc34.s390x\n - suitesparse-devel-0:5.4.0-6.fc34.i686\n - boost-regex-0:1.75.0-4.fc34.x86_64\n - liboauth-0:1.0.3-16.fc34.armv7hl\n - protobuf-0:3.14.0-3.fc34.i686\n - boost-system-0:1.75.0-4.fc34.i686\n - poppler-cpp-0:21.01.0-7.fc34.x86_64\n - libgweather-0:40.0-1.fc34.x86_64\n - suitesparse-doc-0:5.4.0-6.fc34.noarch\n - boost-log-0:1.75.0-4.fc34.armv7hl\n - boost-date-time-0:1.75.0-4.fc34.aarch64\n - poppler-0:21.01.0-7.fc34.s390x\n - SDL-static-0:1.2.15-46.fc34.aarch64\n - evolution-data-server-devel-0:3.40.3-1.fc34.ppc64le\n - exiv2-devel-0:0.27.3-7.fc34.i686\n - gsl-0:2.6-4.fc34.i686\n - libical-devel-0:3.0.10-1.fc34.s390x\n - atkmm-0:2.28.2-1.fc34.armv7hl\n - wxGTK3-media-0:3.0.5.1-4.fc34.armv7hl\n - libraqm-0:0.7.0-7.fc34.i686\n - flexiblas-0:3.0.4-3.fc34.i686\n - gsl-devel-0:2.6-4.fc34.x86_64\n - libijs-devel-0:0.35-13.fc34.ppc64le\n - compat-wxGTK3-gtk2-media-0:3.0.5.1-4.fc34.i686\n - wxGTK3-devel-0:3.0.5.1-4.fc34.aarch64\n - boost-coroutine-0:1.75.0-4.fc34.armv7hl\n - boost-container-0:1.75.0-4.fc34.aarch64\n - openjpeg2-tools-0:2.4.0-3.fc34.ppc64le\n - adobe-mappings-cmap-deprecated-0:20171205-10.fc34.noarch\n - libsigc++20-devel-0:2.10.7-1.fc34.aarch64\n - geocode-glib-0:3.26.2-3.fc34.i686\n - gnome-desktop3-tests-0:40.3-1.fc34.aarch64\n - flatpak-rpm-macros-0:33-3.fc34.s390x\n - libidn-java-0:1.36-2.fc34.noarch\n - openblas-openmp-0:0.3.17-1.fc34.i686\n - gtksourceview3-devel-0:3.24.11-5.fc34.aarch64\n - libgweather-devel-0:40.0-1.fc34.s390x\n - libfontenc-0:1.1.3-15.fc34.ppc64le\n - SDL-0:1.2.15-46.fc34.s390x\n - polkit-libs-0:0.117-3.fc34.1.aarch64\n - python2.7-0:2.7.18-11.fc34.x86_64\n - flexiblas-devel-0:3.0.4-3.fc34.s390x\n - gsound-0:1.0.2-13.fc34.aarch64\n - gtksourceview3-0:3.24.11-5.fc34.x86_64\n - protobuf-compiler-0:3.14.0-3.fc34.armv7hl\n - boost-static-0:1.75.0-4.fc34.aarch64\n - gnome-online-accounts-0:3.40.0-1.fc34.armv7hl\n - wxGTK3-i18n-0:3.0.5.1-4.fc34.noarch\n - flexiblas-openblas-serial-0:3.0.4-3.fc34.ppc64le\n - boost-devel-0:1.75.0-4.fc34.s390x\n - gtksourceview3-devel-0:3.24.11-5.fc34.x86_64\n - libidn-0:1.36-2.fc34.x86_64\n - libpeas-loader-python3-0:1.30.0-3.fc34.s390x\n - pangomm-0:2.46.1-1.fc34.ppc64le\n - gtksourceview3-tests-0:3.24.11-5.fc34.aarch64\n - boost-json-0:1.75.0-4.fc34.x86_64\n - SDL-devel-0:1.2.15-46.fc34.armv7hl\n - ghostscript-x11-0:9.53.3-6.fc34.x86_64\n - ghostscript-tools-fonts-0:9.53.3-6.fc34.armv7hl\n - gd-progs-0:2.3.2-2.fc34.armv7hl\n - flexiblas-blis-openmp-0:3.0.4-3.fc34.s390x\n - libpeas-0:1.30.0-3.fc34.ppc64le\n - tbb-devel-0:2020.3-7.fc34.x86_64\n - suitesparse-static-0:5.4.0-6.fc34.aarch64\n - openexr-0:2.5.5-1.fc34.ppc64le\n - flexiblas-0:3.0.4-3.fc34.ppc64le\n - flexiblas-openblas-openmp-0:3.0.4-3.fc34.x86_64\n - openjpeg2-0:2.4.0-3.fc34.ppc64le\n - libmspack-devel-0:0.10.1-0.5.alpha.fc34.x86_64\n - openblas-serial64_-0:0.3.17-1.fc34.ppc64le\n - tbb-doc-0:2020.3-7.fc34.i686\n - poppler-qt5-devel-0:21.01.0-7.fc34.x86_64\n - openblas-serial-0:0.3.17-1.fc34.aarch64\n - boost-random-0:1.75.0-4.fc34.armv7hl\n - protobuf-lite-static-0:3.14.0-3.fc34.s390x\n - gtkmm30-devel-0:3.24.5-1.fc34.armv7hl\n - gtkmm30-0:3.24.5-1.fc34.x86_64\n - wxGTK3-webview-0:3.0.5.1-4.fc34.armv7hl\n - boost-date-time-0:1.75.0-4.fc34.x86_64\n - evolution-data-server-devel-0:3.40.3-1.fc34.x86_64\n - flexiblas-openblas-serial-0:3.0.4-3.fc34.i686\n - evolution-data-server-devel-0:3.40.3-1.fc34.armv7hl\n - gsl-0:2.6-4.fc34.s390x\n - wxBase3-0:3.0.5.1-4.fc34.aarch64\n - gnome-online-accounts-devel-0:3.40.0-1.fc34.aarch64\n - libwmf-0:0.2.12-5.fc34.i686\n - boost-b2-0:1.75.0-4.fc34.ppc64le\n - boost-timer-0:1.75.0-4.fc34.armv7hl\n - SDL_image-devel-0:1.2.12-26.fc34.x86_64\n - jbig2dec-libs-0:0.19-4.fc34.i686\n - libgdata-0:0.18.1-1.fc34.x86_64\n - openjpeg2-0:2.4.0-3.fc34.aarch64\n - ghostscript-tools-fonts-0:9.53.3-6.fc34.aarch64\n - python3-tbb-0:2020.3-7.fc34.aarch64\n - jbig2dec-devel-0:0.19-4.fc34.s390x\n - jbig2dec-libs-0:0.19-4.fc34.aarch64\n - flatpak-rpm-macros-0:33-3.fc34.i686\n - boost-doc-0:1.75.0-4.fc34.ppc64le\n - ghostscript-gtk-0:9.53.3-6.fc34.ppc64le\n - ghostscript-core-0:9.53.3-6.fc34.i686\n - SDL-devel-0:1.2.15-46.fc34.aarch64\n - libgdata-devel-0:0.18.1-1.fc34.armv7hl\n - python3-openexr-0:2.5.5-1.fc34.armv7hl\n - python2.7-0:2.7.18-11.fc34.s390x\n - gtksourceview3-0:3.24.11-5.fc34.s390x\n - boost-random-0:1.75.0-4.fc34.x86_64\n - evolution-data-server-perl-0:3.40.3-1.fc34.s390x\n - gnome-desktop3-tests-0:40.3-1.fc34.s390x\n - libmspack-0:0.10.1-0.5.alpha.fc34.x86_64\n - python3-tbb-0:2020.3-7.fc34.i686\n - libijs-devel-0:0.35-13.fc34.s390x\n - libpeas-loader-python3-0:1.30.0-3.fc34.ppc64le\n - jbig2dec-libs-0:0.19-4.fc34.ppc64le\n - openblas-serial-0:0.3.17-1.fc34.s390x\n - boost-doc-0:1.75.0-4.fc34.i686\n - protobuf-lite-0:3.14.0-3.fc34.aarch64\n - openblas-serial64-0:0.3.17-1.fc34.x86_64\n - urw-base35-c059-fonts-0:20200910-5.fc34.noarch\n - protobuf-compiler-0:3.14.0-3.fc34.aarch64\n - flexiblas-hook-profile-0:3.0.4-3.fc34.x86_64\n - boost-build-0:1.75.0-4.fc34.noarch\n - pangomm-doc-0:2.46.1-1.fc34.noarch\n - evolution-data-server-0:3.40.3-1.fc34.aarch64\n - boost-0:1.75.0-4.fc34.x86_64\n - gtksourceview3-tests-0:3.24.11-5.fc34.ppc64le\n - wxGTK3-devel-0:3.0.5.1-4.fc34.armv7hl\n - libmspack-devel-0:0.10.1-0.5.alpha.fc34.ppc64le\n - boost-static-0:1.75.0-4.fc34.s390x\n - libsigc++20-devel-0:2.10.7-1.fc34.i686\n - ghostscript-tools-fonts-0:9.53.3-6.fc34.x86_64\n - libsigc++20-devel-0:2.10.7-1.fc34.armv7hl\n - boost-chrono-0:1.75.0-4.fc34.x86_64\n - libraqm-0:0.7.0-7.fc34.ppc64le\n - poppler-cpp-devel-0:21.01.0-7.fc34.aarch64\n - libical-glib-devel-0:3.0.10-1.fc34.armv7hl\n - gsound-devel-0:1.0.2-13.fc34.ppc64le\n - atkmm-devel-0:2.28.2-1.fc34.aarch64\n - libpeas-devel-0:1.30.0-3.fc34.i686\n - libraqm-docs-0:0.7.0-7.fc34.noarch\n - libphonenumber-devel-0:8.12.11-5.fc34.aarch64\n - gtkmm30-devel-0:3.24.5-1.fc34.i686\n - libijs-doc-0:0.35-13.fc34.noarch\n - flexiblas-openblas-openmp-0:3.0.4-3.fc34.s390x\n - openblas-serial-0:0.3.17-1.fc34.x86_64\n - openblas-0:0.3.17-1.fc34.aarch64\n - flexiblas-openblas-serial64-0:3.0.4-3.fc34.ppc64le\n - boost-fiber-0:1.75.0-4.fc34.i686\n - poppler-qt5-0:21.01.0-7.fc34.ppc64le\n - flexiblas-blis-openmp-0:3.0.4-3.fc34.armv7hl\n - protobuf-static-0:3.14.0-3.fc34.s390x\n - boost-contract-0:1.75.0-4.fc34.ppc64le\n - polkit-0:0.117-3.fc34.1.aarch64\n - gnome-desktop3-0:40.3-1.fc34.aarch64\n - python2.7-0:2.7.18-11.fc34.aarch64\n - jbig2dec-devel-0:0.19-4.fc34.armv7hl\n - gtksourceview3-0:3.24.11-5.fc34.aarch64\n - gd-devel-0:2.3.2-2.fc34.s390x\n - wxBase3-devel-0:3.0.5.1-4.fc34.armv7hl\n - tbb-0:2020.3-7.fc34.i686\n - wxGTK3-webview-0:3.0.5.1-4.fc34.i686\n - boost-locale-0:1.75.0-4.fc34.ppc64le\n - compat-wxGTK3-gtk2-0:3.0.5.1-4.fc34.aarch64\n - jbig2dec-0:0.19-4.fc34.ppc64le\n - libfontenc-devel-0:1.1.3-15.fc34.s390x\n - ghostscript-gtk-0:9.53.3-6.fc34.s390x\n - libsigc++20-0:2.10.7-1.fc34.ppc64le\n - wxGTK3-gl-0:3.0.5.1-4.fc34.i686\n - protobuf-javalite-0:3.14.0-3.fc34.noarch\n - glibmm24-devel-0:2.66.1-1.fc34.armv7hl\n - openexr-0:2.5.5-1.fc34.s390x\n - openexr-devel-0:2.5.5-1.fc34.aarch64\n - polkit-0:0.117-3.fc34.1.i686\n - boost-doc-0:1.75.0-4.fc34.armv7hl\n - protobuf-devel-0:3.14.0-3.fc34.i686\n - poppler-cpp-devel-0:21.01.0-7.fc34.s390x\n - openjpeg2-tools-0:2.4.0-3.fc34.x86_64\n - boost-examples-0:1.75.0-4.fc34.s390x\n - protobuf-compiler-0:3.14.0-3.fc34.ppc64le\n - evolution-data-server-perl-0:3.40.3-1.fc34.aarch64\n - libijs-devel-0:0.35-13.fc34.aarch64\n - boost-stacktrace-0:1.75.0-4.fc34.s390x\n - tbb-devel-0:2020.3-7.fc34.aarch64\n - openexr-0:2.5.5-1.fc34.x86_64\n - boost-locale-0:1.75.0-4.fc34.x86_64\n - compat-wxGTK3-gtk2-devel-0:3.0.5.1-4.fc34.armv7hl\n - SDL-static-0:1.2.15-46.fc34.ppc64le\n - wxBase3-0:3.0.5.1-4.fc34.x86_64\n - boost-serialization-0:1.75.0-4.fc34.ppc64le\n - libical-glib-devel-0:3.0.10-1.fc34.i686\n - libijs-0:0.35-13.fc34.s390x\n - polkit-0:0.117-3.fc34.1.s390x\n - boost-math-0:1.75.0-4.fc34.i686\n - urw-base35-bookman-fonts-0:20200910-5.fc34.noarch\n - libdazzle-devel-0:3.40.0-1.fc34.s390x\n - boost-program-options-0:1.75.0-4.fc34.i686\n - flexiblas-hook-profile64-0:3.0.4-3.fc34.x86_64\n - suitesparse-0:5.4.0-6.fc34.aarch64\n - libgs-0:9.53.3-6.fc34.ppc64le\n - protobuf-lite-0:3.14.0-3.fc34.s390x\n - boost-iostreams-0:1.75.0-4.fc34.x86_64\n - protobuf-static-0:3.14.0-3.fc34.armv7hl\n - flexiblas-openblas-openmp-0:3.0.4-3.fc34.aarch64\n - openexr-devel-0:2.5.5-1.fc34.armv7hl\n - openblas-serial64-0:0.3.17-1.fc34.aarch64\n - geocode-glib-0:3.26.2-3.fc34.s390x\n - ghostscript-tools-dvipdf-0:9.53.3-6.fc34.armv7hl\n - ghostscript-x11-0:9.53.3-6.fc34.ppc64le\n - tbb-doc-0:2020.3-7.fc34.armv7hl\n - atkmm-doc-0:2.28.2-1.fc34.noarch\n - libgs-0:9.53.3-6.fc34.i686\n - libpaper-devel-0:1.1.28-2.fc34.aarch64\n - pangomm-0:2.46.1-1.fc34.x86_64\n - libpeas-gtk-0:1.30.0-3.fc34.i686\n - wxGTK3-0:3.0.5.1-4.fc34.x86_64\n - openblas-static-0:0.3.17-1.fc34.armv7hl\n - libidn-devel-0:1.36-2.fc34.x86_64\n - boost-graph-0:1.75.0-4.fc34.x86_64\n - flexiblas-hook-profile-0:3.0.4-3.fc34.i686\n - libphonenumber-devel-0:8.12.11-5.fc34.ppc64le\n - protobuf-javadoc-0:3.14.0-3.fc34.noarch\n - libpeas-gtk-0:1.30.0-3.fc34.aarch64\n - gnome-online-accounts-0:3.40.0-1.fc34.ppc64le\n - ghostscript-gtk-0:9.53.3-6.fc34.i686\n - exiv2-devel-0:0.27.3-7.fc34.ppc64le\n - compat-wxGTK3-gtk2-gl-0:3.0.5.1-4.fc34.s390x\n - wxGTK3-0:3.0.5.1-4.fc34.armv7hl\n - compat-wxGTK3-gtk2-devel-0:3.0.5.1-4.fc34.x86_64\n - protobuf-0:3.14.0-3.fc34.ppc64le\n - openexr-libs-0:2.5.5-1.fc34.x86_64\n - flexiblas-atlas-0:3.0.4-3.fc34.armv7hl\n - compat-wxGTK3-gtk2-media-0:3.0.5.1-4.fc34.aarch64\n - openblas-0:0.3.17-1.fc34.i686\n - compat-wxGTK3-gtk2-gl-0:3.0.5.1-4.fc34.armv7hl\n - boost-0:1.75.0-4.fc34.ppc64le\n - libical-glib-devel-0:3.0.10-1.fc34.s390x\n - protobuf-lite-static-0:3.14.0-3.fc34.x86_64\n - gsound-devel-0:1.0.2-13.fc34.i686\n - openblas-serial64_-0:0.3.17-1.fc34.aarch64\n - gd-progs-0:2.3.2-2.fc34.i686\n - jbig2dec-devel-0:0.19-4.fc34.x86_64\n - boost-system-0:1.75.0-4.fc34.aarch64\n - boost-log-0:1.75.0-4.fc34.ppc64le\n - boost-devel-0:1.75.0-4.fc34.aarch64\n - libpeas-0:1.30.0-3.fc34.i686\n - libical-glib-0:3.0.10-1.fc34.armv7hl\n - ghostscript-gtk-0:9.53.3-6.fc34.x86_64\n - protobuf-bom-0:3.14.0-3.fc34.noarch\n - gspell-0:1.9.1-1.fc34.x86_64\n - pangomm-devel-0:2.46.1-1.fc34.x86_64\n - poppler-utils-0:21.01.0-7.fc34.ppc64le\n - boost-wave-0:1.75.0-4.fc34.i686\n - flexiblas-blis-threads64-0:3.0.4-3.fc34.ppc64le\n - flexiblas-openblas-threads-0:3.0.4-3.fc34.s390x\n - evolution-data-server-0:3.40.3-1.fc34.s390x\n - adobe-mappings-pdf-0:20180407-8.fc34.noarch\n - compat-wxGTK3-gtk2-devel-0:3.0.5.1-4.fc34.i686\n - cairomm-doc-0:1.14.2-8.fc34.noarch\n - libwmf-lite-0:0.2.12-5.fc34.ppc64le\n - gnome-online-accounts-devel-0:3.40.0-1.fc34.i686\n - gnome-online-accounts-0:3.40.0-1.fc34.s390x\n - libgs-devel-0:9.53.3-6.fc34.aarch64\n - glew-0:2.1.0-9.fc34.aarch64\n - boost-thread-0:1.75.0-4.fc34.i686\n - gtksourceview3-tests-0:3.24.11-5.fc34.x86_64\n - tbb-doc-0:2020.3-7.fc34.x86_64\n - gnome-desktop3-0:40.3-1.fc34.armv7hl\n - boost-static-0:1.75.0-4.fc34.ppc64le\n - cairomm-0:1.14.2-8.fc34.ppc64le\n - gsound-devel-0:1.0.2-13.fc34.armv7hl\n - wxBase3-devel-0:3.0.5.1-4.fc34.x86_64\n - boost-doc-0:1.75.0-4.fc34.aarch64\n - boost-chrono-0:1.75.0-4.fc34.aarch64\n - gsl-devel-0:2.6-4.fc34.i686\n - glew-devel-0:2.1.0-9.fc34.s390x\n - libijs-0:0.35-13.fc34.armv7hl\n - boost-coroutine-0:1.75.0-4.fc34.s390x\n - compat-wxGTK3-gtk2-0:3.0.5.1-4.fc34.i686\n - polkit-devel-0:0.117-3.fc34.1.i686\n - libfontenc-0:1.1.3-15.fc34.armv7hl\n - boost-math-0:1.75.0-4.fc34.x86_64\n - atkmm-0:2.28.2-1.fc34.x86_64\n - suitesparse-devel-0:5.4.0-6.fc34.x86_64\n - libidn-0:1.36-2.fc34.aarch64\n - suitesparse64_-devel-0:5.4.0-6.fc34.ppc64le\n - openblas-openmp64-0:0.3.17-1.fc34.x86_64\n - exiv2-0:0.27.3-7.fc34.x86_64\n - compat-wxGTK3-gtk2-devel-0:3.0.5.1-4.fc34.ppc64le\n - tbb-doc-0:2020.3-7.fc34.ppc64le\n - poppler-qt5-0:21.01.0-7.fc34.aarch64\n - poppler-cpp-0:21.01.0-7.fc34.aarch64\n - protobuf-lite-static-0:3.14.0-3.fc34.ppc64le\n - boost-numpy3-0:1.75.0-4.fc34.armv7hl\n - flexiblas-devel-0:3.0.4-3.fc34.i686\n - flexiblas-hook-profile64-0:3.0.4-3.fc34.s390x\n - libpaper-0:1.1.28-2.fc34.aarch64\n - libfontenc-devel-0:1.1.3-15.fc34.armv7hl\n - geocode-glib-0:3.26.2-3.fc34.ppc64le\n - SDL_image-devel-0:1.2.12-26.fc34.ppc64le\n - boost-stacktrace-0:1.75.0-4.fc34.armv7hl\n - dbus-glib-devel-0:0.110-11.fc34.aarch64\n - libimagequant-devel-0:2.14.1-1.fc34.ppc64le\n - boost-container-0:1.75.0-4.fc34.ppc64le\n - openjpeg2-devel-0:2.4.0-3.fc34.i686\n - libdazzle-0:3.40.0-1.fc34.armv7hl\n - ghostscript-tools-fonts-0:9.53.3-6.fc34.ppc64le\n - openblas-serial64_-0:0.3.17-1.fc34.s390x\n - glew-0:2.1.0-9.fc34.x86_64\n - openblas-openmp64_-0:0.3.17-1.fc34.ppc64le\n - compat-wxGTK3-gtk2-0:3.0.5.1-4.fc34.s390x\n - pangomm-0:2.46.1-1.fc34.aarch64\n - wxGTK3-webview-0:3.0.5.1-4.fc34.s390x\n - libsigc++20-doc-0:2.10.7-1.fc34.noarch\n - urw-base35-d050000l-fonts-0:20200910-5.fc34.noarch\n - boost-doctools-0:1.75.0-4.fc34.aarch64\n - glibmm24-doc-0:2.66.1-1.fc34.noarch\n - gnome-online-accounts-0:3.40.0-1.fc34.aarch64\n - gnome-desktop3-tests-0:40.3-1.fc34.x86_64\n - ghostscript-0:9.53.3-6.fc34.x86_64\n - suitesparse64_-devel-0:5.4.0-6.fc34.x86_64\n - cairomm-0:1.14.2-8.fc34.x86_64\n - flexiblas-blis-openmp64-0:3.0.4-3.fc34.ppc64le\n - libphonenumber-0:8.12.11-5.fc34.s390x\n - evolution-data-server-perl-0:3.40.3-1.fc34.ppc64le\n - suitesparse-static-0:5.4.0-6.fc34.i686\n - openblas-openmp64-0:0.3.17-1.fc34.ppc64le\n - openjpeg2-tools-0:2.4.0-3.fc34.i686\n - SDL_image-devel-0:1.2.12-26.fc34.aarch64\n - libpaper-0:1.1.28-2.fc34.s390x\n - gnome-desktop3-devel-0:40.3-1.fc34.armv7hl\n - SDL-devel-0:1.2.15-46.fc34.i686\n - gspell-devel-0:1.9.1-1.fc34.aarch64\n - libmspack-devel-0:0.10.1-0.5.alpha.fc34.i686\n - libpaper-0:1.1.28-2.fc34.armv7hl\n - libpeas-0:1.30.0-3.fc34.s390x\n - libijs-0:0.35-13.fc34.i686\n - flexiblas-openblas-serial-0:3.0.4-3.fc34.s390x\n - poppler-devel-0:21.01.0-7.fc34.aarch64\n - poppler-glib-0:21.01.0-7.fc34.x86_64\n - flexiblas-openblas-threads64-0:3.0.4-3.fc34.x86_64\n - libical-glib-0:3.0.10-1.fc34.ppc64le\n - gspell-devel-0:1.9.1-1.fc34.ppc64le\n - openblas-threads64_-0:0.3.17-1.fc34.aarch64\n - poppler-cpp-devel-0:21.01.0-7.fc34.i686\n - polkit-libs-0:0.117-3.fc34.1.x86_64\n - poppler-qt5-devel-0:21.01.0-7.fc34.i686\n - flexiblas-netlib-0:3.0.4-3.fc34.ppc64le\n - libphonenumber-devel-0:8.12.11-5.fc34.s390x\n - libphonenumber-0:8.12.11-5.fc34.armv7hl\n - compat-wxGTK3-gtk2-gl-0:3.0.5.1-4.fc34.aarch64\n - libical-glib-0:3.0.10-1.fc34.s390x\n - flexiblas-netlib-0:3.0.4-3.fc34.x86_64\n - gspell-0:1.9.1-1.fc34.armv7hl\n - wxBase3-devel-0:3.0.5.1-4.fc34.i686\n - boost-nowide-0:1.75.0-4.fc34.armv7hl\n - glew-devel-0:2.1.0-9.fc34.x86_64\n - libgdata-0:0.18.1-1.fc34.i686\n - libraqm-devel-0:0.7.0-7.fc34.armv7hl\n - boost-context-0:1.75.0-4.fc34.i686\n - gd-devel-0:2.3.2-2.fc34.aarch64\n - poppler-cpp-0:21.01.0-7.fc34.s390x\n - wxBase3-devel-0:3.0.5.1-4.fc34.s390x\n - exiv2-0:0.27.3-7.fc34.armv7hl\n - suitesparse64_-0:5.4.0-6.fc34.s390x\n - poppler-data-devel-0:0.4.9-7.fc34.noarch\n - boost-context-0:1.75.0-4.fc34.ppc64le\n - flexiblas-openblas-serial64-0:3.0.4-3.fc34.x86_64\n - boost-test-0:1.75.0-4.fc34.i686\n - openblas-devel-0:0.3.17-1.fc34.aarch64\n - boost-timer-0:1.75.0-4.fc34.i686\n - libmspack-0:0.10.1-0.5.alpha.fc34.i686\n - libGLEW-0:2.1.0-9.fc34.aarch64\n - libwmf-lite-0:0.2.12-5.fc34.x86_64\n - suitesparse64-0:5.4.0-6.fc34.aarch64\n - atkmm-devel-0:2.28.2-1.fc34.i686\n - wxGTK3-gl-0:3.0.5.1-4.fc34.s390x\n - libmspack-devel-0:0.10.1-0.5.alpha.fc34.armv7hl\n - jbig2dec-devel-0:0.19-4.fc34.aarch64\n - flatpak-rpm-macros-0:33-3.fc34.ppc64le\n - boost-date-time-0:1.75.0-4.fc34.ppc64le\n - suitesparse-static-0:5.4.0-6.fc34.armv7hl\n - boost-system-0:1.75.0-4.fc34.ppc64le\n - openblas-static-0:0.3.17-1.fc34.x86_64\n - suitesparse-static-0:5.4.0-6.fc34.s390x\n - ghostscript-x11-0:9.53.3-6.fc34.i686\n - boost-doctools-0:1.75.0-4.fc34.i686\n - boost-nowide-0:1.75.0-4.fc34.x86_64\n - urw-base35-fonts-0:20200910-5.fc34.noarch\n - ghostscript-core-0:9.53.3-6.fc34.s390x\n - protobuf-0:3.14.0-3.fc34.aarch64\n - flexiblas-blis-serial-0:3.0.4-3.fc34.s390x\n - boost-timer-0:1.75.0-4.fc34.aarch64\n - boost-serialization-0:1.75.0-4.fc34.s390x\n - libijs-0:0.35-13.fc34.ppc64le\n - boost-filesystem-0:1.75.0-4.fc34.s390x\n - boost-python3-0:1.75.0-4.fc34.armv7hl\n - suitesparse64-static-0:5.4.0-6.fc34.ppc64le\n - gnome-desktop3-0:40.3-1.fc34.x86_64\n - libwmf-0:0.2.12-5.fc34.x86_64\n - gnome-online-accounts-devel-0:3.40.0-1.fc34.x86_64\n - openjpeg2-devel-docs-0:2.4.0-3.fc34.noarch\n - glew-devel-0:2.1.0-9.fc34.i686\n - poppler-data-0:0.4.9-7.fc34.noarch\n - flexiblas-netlib64-0:3.0.4-3.fc34.s390x\n - atkmm-0:2.28.2-1.fc34.i686\n - protobuf-lite-devel-0:3.14.0-3.fc34.i686\n - libical-devel-0:3.0.10-1.fc34.i686\n - libpeas-devel-0:1.30.0-3.fc34.aarch64\n - python3-protobuf-0:3.14.0-3.fc34.noarch\n - poppler-glib-devel-0:21.01.0-7.fc34.x86_64\n - boost-python3-0:1.75.0-4.fc34.x86_64\n - jbig2dec-libs-0:0.19-4.fc34.x86_64\n - boost-filesystem-0:1.75.0-4.fc34.x86_64\n - gtksourceview3-0:3.24.11-5.fc34.i686\n - geocode-glib-0:3.26.2-3.fc34.aarch64\n - boost-0:1.75.0-4.fc34.armv7hl\n - libdazzle-0:3.40.0-1.fc34.aarch64\n - wxGTK3-webview-0:3.0.5.1-4.fc34.ppc64le\n - SDL-devel-0:1.2.15-46.fc34.x86_64\n - boost-log-0:1.75.0-4.fc34.aarch64\n - ghostscript-0:9.53.3-6.fc34.armv7hl\n - boost-wave-0:1.75.0-4.fc34.x86_64\n - boost-fiber-0:1.75.0-4.fc34.aarch64\n - flexiblas-devel-0:3.0.4-3.fc34.ppc64le\n - compat-wxGTK3-gtk2-gl-0:3.0.5.1-4.fc34.ppc64le\n - suitesparse-0:5.4.0-6.fc34.i686\n - openblas-serial-0:0.3.17-1.fc34.ppc64le\n - libgs-0:9.53.3-6.fc34.s390x\n - libical-glib-devel-0:3.0.10-1.fc34.ppc64le\n - openjpeg2-devel-0:2.4.0-3.fc34.aarch64\n - boost-examples-0:1.75.0-4.fc34.armv7hl\n - libijs-devel-0:0.35-13.fc34.x86_64\n - libical-glib-0:3.0.10-1.fc34.x86_64\n - boost-iostreams-0:1.75.0-4.fc34.ppc64le\n - flexiblas-blis-openmp-0:3.0.4-3.fc34.aarch64\n - tbb-doc-0:2020.3-7.fc34.aarch64\n - poppler-cpp-0:21.01.0-7.fc34.ppc64le\n - gnome-desktop3-tests-0:40.3-1.fc34.armv7hl\n - flexiblas-blis-serial64-0:3.0.4-3.fc34.aarch64\n - SDL-static-0:1.2.15-46.fc34.i686\n - atkmm-devel-0:2.28.2-1.fc34.ppc64le\n - boost-atomic-0:1.75.0-4.fc34.armv7hl\n - libical-devel-0:3.0.10-1.fc34.armv7hl\n - google-droid-serif-fonts-0:20200215-9.fc34.noarch\n - protobuf-static-0:3.14.0-3.fc34.aarch64\n - gtkmm30-0:3.24.5-1.fc34.armv7hl\n - suitesparse64_-0:5.4.0-6.fc34.aarch64\n - adobe-mappings-cmap-devel-0:20171205-10.fc34.noarch\n - flexiblas-blis-openmp-0:3.0.4-3.fc34.ppc64le\n - boost-stacktrace-0:1.75.0-4.fc34.ppc64le\n - boost-program-options-0:1.75.0-4.fc34.x86_64\n - libpeas-devel-0:1.30.0-3.fc34.armv7hl\n - python3-openexr-0:2.5.5-1.fc34.x86_64\n - libidn-devel-0:1.36-2.fc34.i686\n - libpeas-loader-python3-0:1.30.0-3.fc34.i686\n - libidn-0:1.36-2.fc34.ppc64le\n - libsigc++20-0:2.10.7-1.fc34.x86_64\n - openblas-threads64_-0:0.3.17-1.fc34.ppc64le\n - libidn-devel-0:1.36-2.fc34.ppc64le\n - gsl-devel-0:2.6-4.fc34.armv7hl\n - libpeas-devel-0:1.30.0-3.fc34.x86_64\n - exiv2-devel-0:0.27.3-7.fc34.armv7hl\n - gd-0:2.3.2-2.fc34.aarch64\n - exiv2-0:0.27.3-7.fc34.ppc64le\n - boost-b2-0:1.75.0-4.fc34.i686\n - libimagequant-0:2.14.1-1.fc34.armv7hl\n - poppler-devel-0:21.01.0-7.fc34.i686\n - google-droid-fonts-all-0:20200215-9.fc34.noarch\n - boost-stacktrace-0:1.75.0-4.fc34.aarch64\n - boost-type_erasure-0:1.75.0-4.fc34.armv7hl\n - glibmm24-0:2.66.1-1.fc34.s390x\n - libraqm-0:0.7.0-7.fc34.x86_64\n - boost-container-0:1.75.0-4.fc34.armv7hl\n - evolution-data-server-0:3.40.3-1.fc34.i686\n - evolution-data-server-tests-0:3.40.3-1.fc34.armv7hl\n - flexiblas-openblas-serial-0:3.0.4-3.fc34.x86_64\n - boost-math-0:1.75.0-4.fc34.ppc64le\n - boost-nowide-0:1.75.0-4.fc34.aarch64\n - libwmf-devel-0:0.2.12-5.fc34.aarch64\n - flexiblas-atlas-0:3.0.4-3.fc34.ppc64le\n - openblas-openmp64_-0:0.3.17-1.fc34.aarch64\n - boost-filesystem-0:1.75.0-4.fc34.i686\n - gtksourceview3-tests-0:3.24.11-5.fc34.armv7hl\n - polkit-0:0.117-3.fc34.1.ppc64le\n - cairomm-0:1.14.2-8.fc34.aarch64\n - boost-wave-0:1.75.0-4.fc34.armv7hl\n - protobuf-compiler-0:3.14.0-3.fc34.s390x\n - polkit-0:0.117-3.fc34.1.x86_64\n - protobuf-lite-static-0:3.14.0-3.fc34.aarch64\n - libphonenumber-0:8.12.11-5.fc34.aarch64\n - libsigc++20-devel-0:2.10.7-1.fc34.x86_64\n - boost-doctools-0:1.75.0-4.fc34.armv7hl\n - gsound-devel-0:1.0.2-13.fc34.aarch64\n - openjpeg2-devel-0:2.4.0-3.fc34.x86_64\n - libwmf-lite-0:0.2.12-5.fc34.i686\n - libical-glib-devel-0:3.0.10-1.fc34.aarch64\n - polkit-devel-0:0.117-3.fc34.1.s390x\n - ghostscript-0:9.53.3-6.fc34.ppc64le\n - boost-random-0:1.75.0-4.fc34.ppc64le\n - atkmm-0:2.28.2-1.fc34.aarch64\n - poppler-qt5-devel-0:21.01.0-7.fc34.aarch64\n - openexr-libs-0:2.5.5-1.fc34.i686\n - wxGTK3-webview-0:3.0.5.1-4.fc34.x86_64\n - libgdata-devel-0:0.18.1-1.fc34.s390x\n - libgdata-0:0.18.1-1.fc34.aarch64\n - jbig2dec-devel-0:0.19-4.fc34.ppc64le\n - liboauth-0:1.0.3-16.fc34.x86_64\n - compat-wxGTK3-gtk2-media-0:3.0.5.1-4.fc34.armv7hl\n - suitesparse64-0:5.4.0-6.fc34.x86_64\n - compat-wxGTK3-gtk2-devel-0:3.0.5.1-4.fc34.s390x\n - flexiblas-hook-profile64-0:3.0.4-3.fc34.ppc64le\n - boost-timer-0:1.75.0-4.fc34.s390x\n - flexiblas-0:3.0.4-3.fc34.x86_64\n - libimagequant-devel-0:2.14.1-1.fc34.armv7hl\n - flexiblas-blis-serial-0:3.0.4-3.fc34.armv7hl\n - wxGTK3-devel-0:3.0.5.1-4.fc34.x86_64\n - protobuf-java-util-0:3.14.0-3.fc34.noarch\n - liboauth-devel-0:1.0.3-16.fc34.aarch64\n - urw-base35-gothic-fonts-0:20200910-5.fc34.noarch\n - flatpak-rpm-macros-0:33-3.fc34.aarch64\n - gnome-online-accounts-0:3.40.0-1.fc34.x86_64\n - compat-wxGTK3-gtk2-0:3.0.5.1-4.fc34.ppc64le\n - flexiblas-netlib64-0:3.0.4-3.fc34.x86_64\n - poppler-cpp-0:21.01.0-7.fc34.armv7hl\n - tbb-0:2020.3-7.fc34.armv7hl\n - ghostscript-tools-printing-0:9.53.3-6.fc34.armv7hl\n - glibmm24-devel-0:2.66.1-1.fc34.s390x\n - libical-glib-0:3.0.10-1.fc34.aarch64\n - boost-date-time-0:1.75.0-4.fc34.i686\n - boost-context-0:1.75.0-4.fc34.x86_64\n - libdazzle-0:3.40.0-1.fc34.i686\n - ghostscript-gtk-0:9.53.3-6.fc34.armv7hl\n - gnome-desktop3-tests-0:40.3-1.fc34.ppc64le\n - wxGTK3-0:3.0.5.1-4.fc34.s390x\n - libical-glib-0:3.0.10-1.fc34.i686\n - liboauth-devel-0:1.0.3-16.fc34.i686\n - suitesparse64-static-0:5.4.0-6.fc34.aarch64\n - urw-base35-p052-fonts-0:20200910-5.fc34.noarch\n - boost-test-0:1.75.0-4.fc34.x86_64\n - evolution-data-server-tests-0:3.40.3-1.fc34.x86_64\n - flatpak-rpm-macros-0:33-3.fc34.armv7hl\n - boost-wave-0:1.75.0-4.fc34.s390x\n - poppler-qt5-0:21.01.0-7.fc34.s390x\n - libpaper-0:1.1.28-2.fc34.i686\n - libsigc++20-devel-0:2.10.7-1.fc34.s390x\n - openblas-threads64-0:0.3.17-1.fc34.x86_64\n - openjpeg2-devel-0:2.4.0-3.fc34.ppc64le\n - gspell-devel-0:1.9.1-1.fc34.s390x\n - openjpeg2-devel-0:2.4.0-3.fc34.armv7hl\n - suitesparse64-static-0:5.4.0-6.fc34.x86_64\n - gtksourceview3-devel-0:3.24.11-5.fc34.armv7hl\n - wxGTK3-media-0:3.0.5.1-4.fc34.s390x\n - poppler-0:21.01.0-7.fc34.i686\n - suitesparse64_-devel-0:5.4.0-6.fc34.s390x\n - gtkmm30-0:3.24.5-1.fc34.ppc64le\n - wxGTK3-media-0:3.0.5.1-4.fc34.i686\n - SDL-0:1.2.15-46.fc34.armv7hl\n - urw-base35-fonts-devel-0:20200910-5.fc34.noarch\n - atkmm-0:2.28.2-1.fc34.s390x\n - poppler-qt5-devel-0:21.01.0-7.fc34.ppc64le\n - libgdata-0:0.18.1-1.fc34.ppc64le\n - gsl-devel-0:2.6-4.fc34.s390x\n - openblas-devel-0:0.3.17-1.fc34.x86_64\n - protobuf-parent-0:3.14.0-3.fc34.noarch\n - boost-python3-0:1.75.0-4.fc34.s390x\n - boost-0:1.75.0-4.fc34.s390x\n - glibmm24-0:2.66.1-1.fc34.armv7hl\n - jbig2dec-0:0.19-4.fc34.aarch64\n - openjpeg2-0:2.4.0-3.fc34.i686\n - urw-base35-fonts-common-0:20200910-5.fc34.noarch\n - poppler-glib-devel-0:21.01.0-7.fc34.ppc64le\n - exiv2-libs-0:0.27.3-7.fc34.armv7hl\n - libijs-0:0.35-13.fc34.aarch64\n - poppler-0:21.01.0-7.fc34.ppc64le\n - flexiblas-hook-profile-0:3.0.4-3.fc34.armv7hl\n - tbb-devel-0:2020.3-7.fc34.s390x\n - boost-doctools-0:1.75.0-4.fc34.x86_64\n - exiv2-0:0.27.3-7.fc34.i686\n - flexiblas-atlas-0:3.0.4-3.fc34.x86_64\n - wxGTK3-docs-0:3.0.5.1-4.fc34.noarch\n - gd-devel-0:2.3.2-2.fc34.armv7hl\n - suitesparse-0:5.4.0-6.fc34.armv7hl\n - exiv2-libs-0:0.27.3-7.fc34.i686\n - openblas-serial-0:0.3.17-1.fc34.armv7hl\n - libgs-devel-0:9.53.3-6.fc34.s390x\n - boost-doctools-0:1.75.0-4.fc34.s390x\n - polkit-docs-0:0.117-3.fc34.1.noarch\n - flexiblas-openblas-openmp-0:3.0.4-3.fc34.ppc64le\n - boost-math-0:1.75.0-4.fc34.s390x\n - flexiblas-openblas-threads64-0:3.0.4-3.fc34.aarch64\n - flexiblas-openblas-openmp64-0:3.0.4-3.fc34.x86_64\n - openblas-serial64-0:0.3.17-1.fc34.ppc64le\n - flexiblas-blis-openmp64-0:3.0.4-3.fc34.aarch64\n - libfontenc-devel-0:1.1.3-15.fc34.x86_64\n - poppler-utils-0:21.01.0-7.fc34.aarch64\n - evolution-data-server-langpacks-0:3.40.3-1.fc34.noarch\n - protobuf-lite-0:3.14.0-3.fc34.x86_64\n - boost-regex-0:1.75.0-4.fc34.armv7hl\n - boost-random-0:1.75.0-4.fc34.aarch64\n - gsl-devel-0:2.6-4.fc34.aarch64\n - libical-devel-0:3.0.10-1.fc34.aarch64\n - libraqm-devel-0:0.7.0-7.fc34.i686\n - wxBase3-devel-0:3.0.5.1-4.fc34.ppc64le\n - protobuf-lite-devel-0:3.14.0-3.fc34.armv7hl\n - polkit-libs-0:0.117-3.fc34.1.i686\n - gsound-0:1.0.2-13.fc34.s390x\n - libgweather-devel-0:40.0-1.fc34.armv7hl\n - libical-glib-devel-0:3.0.10-1.fc34.x86_64\n - openblas-threads64-0:0.3.17-1.fc34.s390x\n - geocode-glib-devel-0:3.26.2-3.fc34.armv7hl\n - libmspack-0:0.10.1-0.5.alpha.fc34.armv7hl\n - ghostscript-x11-0:9.53.3-6.fc34.aarch64\n - liboauth-0:1.0.3-16.fc34.i686\n - libimagequant-0:2.14.1-1.fc34.aarch64\n - gspell-0:1.9.1-1.fc34.s390x\n - libwmf-devel-0:0.2.12-5.fc34.i686\n - SDL_image-0:1.2.12-26.fc34.aarch64\n - boost-numpy3-0:1.75.0-4.fc34.i686\n dependencies:\n - buildrequires:\n flatpak-common: [f34]\n flatpak-runtime: [f34]\n platform: [f34]\n requires:\n flatpak-common: [f34]\n flatpak-runtime: [f34]\n platform: [f34]\n profiles:\n default:\n rpms:\n - 0ad\n components:\n rpms:\n 0ad:\n rationale: Application package\n repository: git+https://src.fedoraproject.org/rpms/0ad\n cache: https://src.fedoraproject.org/repo/pkgs/0ad\n ref: f34\n buildorder: 10\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n 0ad-data:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/0ad-data\n cache: https://src.fedoraproject.org/repo/pkgs/0ad-data\n ref: f34\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n enet:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/enet\n cache: https://src.fedoraproject.org/repo/pkgs/enet\n ref: f34\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n fmt:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/fmt\n cache: https://src.fedoraproject.org/repo/pkgs/fmt\n ref: f34\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n gloox:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/gloox\n cache: https://src.fedoraproject.org/repo/pkgs/gloox\n ref: f34\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n libsodium:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/libsodium\n cache: https://src.fedoraproject.org/repo/pkgs/libsodium\n ref: f34\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n miniupnpc:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/miniupnpc\n cache: https://src.fedoraproject.org/repo/pkgs/miniupnpc\n ref: f34\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n nvidia-texture-tools:\n rationale: Runtime dependency\n repository: git+https://src.fedoraproject.org/rpms/nvidia-texture-tools\n cache: https://src.fedoraproject.org/repo/pkgs/nvidia-texture-tools\n ref: f34\n arches: [aarch64, armv7hl, i686, ppc64le, s390x, x86_64]\n...", "runtime_deps": [ { "dependency": &quo{ "count": 16617, "next": "