Kekun commented on issue #1988:
URL: https://github.com/apache/buildstream/issues/1988#issuecomment-2624332311
I wrote a custom bubble sort algorithm (well, copypasted it from somewhere
really) and I got the same result in 3.12 and 3.13, and a result different from
both. Here is what I have for the deps of `gobject-introspection-base.bst`.
### 3.12
```python
['components/flex.bst',
'public-stacks/runtime-minimal.bst',
'components/python3.bst',
'components/python3-setuptools.bst',
'components/bison.bst',
'components/gtk-doc.bst',
'components/python3-mako.bst',
'components/python3-markdown.bst',
'public-stacks/buildsystem-meson.bst',
'components/glib-stage1.bst']
```
### 3.13
```python
['components/flex.bst',
'public-stacks/runtime-minimal.bst',
'components/python3.bst',
'components/python3-setuptools.bst',
'components/bison.bst',
'components/python3-markdown.bst',
'public-stacks/buildsystem-meson.bst',
'components/glib-stage1.bst',
'components/gtk-doc.bst',
'components/python3-mako.bst']
```
### Bubble
```python
['components/flex.bst',
'public-stacks/runtime-minimal.bst',
'components/python3.bst',
'components/python3-setuptools.bst',
'components/bison.bst',
'public-stacks/buildsystem-meson.bst',
'components/glib-stage1.bst',
'components/gtk-doc.bst',
'components/python3-mako.bst',
'components/python3-markdown.bst']
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]