ignatenkobrain reported a new issue against the project: `releng` that you are following:
``
```python
#!/usr/bin/python3
import re
import sys
replace = False
out = []
with open(sys.argv[1], "r"):
for l in open(sys.argv[1], "r"):
out.append(l)
if l.startswith("%changelog"):
replace = True
continue
if not replace:
continue
if l.startswith("%"):
replace = False
continue
if l.startswith("*"):
# XXX: HACK
continue
out[-1] = re.sub(r"([^%])%([^% \n\d])", r"\1%%\2", l)
with open(sys.argv[1], "w") as f:
f.writelines(out)
```
This is something I've been using for automatic fix myself. I think we should either prohibit pushing this or have git-hook which would fix it automatically.
``
To reply, visit the link below or just reply to this email
https://pagure.io/releng/issue/7300
kellin opened a new pull-request against the project: `pungi-fedora` that you are following:
``
Let pungi make all comps files during compose
``
To reply, visit the link below or just reply to this email
https://pagure.io/pungi-fedora/pull-request/540
kellin opened a new pull-request against the project: `pungi-fedora` that you are following:
``
Make release-candidate.sh script more durable
``
To reply, visit the link below or just reply to this email
https://pagure.io/pungi-fedora/pull-request/433
ralph opened a new pull-request against the project: `releng` that you are following:
``
A SOP for adjusting EOLs on arbitrary branches.
``
To reply, visit the link below or just reply to this email
https://pagure.io/releng/pull-request/7119
walters opened a new pull-request against the project: `pungi-fedora` that you are following:
``
AH: Stop generating raw-xz images
``
To reply, visit the link below or just reply to this email
https://pagure.io/pungi-fedora/pull-request/381
grinnz reported a new issue against the project: `releng` that you are following:
``
The Cinnamon livemedia compose is missing several packages that are dependencies of the 'cinnamon' metapackage, despite including that package and others from the @cinnamon-desktop group as the kickstart has been unchanged. The issue seems to have started occurring after 2018-01-06, the earliest compose log that's still there is: https://kojipkgs.fedoraproject.org//packages/Fedora-Cinnamon-Live/Rawhide/2… and here is one from today: https://kojipkgs.fedoraproject.org//packages/Fedora-Cinnamon-Live/Rawhide/2…
These logs say "Downloading 1426 RPMs" or so, I don't have the logs from 2018-01-05 and earlier but the number is supposed to be around 1470. As the kickstart isn't doing anything except including the @cinnamon-desktop group itself, I'm not sure how to debug this further.
``
To reply, visit the link below or just reply to this email
https://pagure.io/releng/issue/7325
ignatenkobrain reported a new issue against the project: `releng` that you are following:
``
It would be very nice if you could set up automatic removal of all files except `dead.package` for repositories. Since `rpm-specs-latest.tar.xz` is not updated very often, I try to run grep on all git repositories, but unfortunately there are packages which are dead but still have spec file in there. I know that I could filter all such packages, but I think it would be better to clean them up anyway.
``
To reply, visit the link below or just reply to this email
https://pagure.io/releng/issue/7311
adamwill reported a new issue against the project: `releng` that you are following:
``
Going by fedmsg logs, there have been some very wrongly-formed attempts at update composes (my personal favourite is `Fedora-Modular-f27-updates-updates-Fedora-Modular-27-20171013.0`...), but most of them seem to have been cleaned up. There is still one that's clearly wrong, though, this one:
https://kojipkgs.fedoraproject.org/compose/updates/Fedora-Modular--updates-…
It was obviously meant to be `Fedora-Modular-27-updates-testing-20171031.0`, but somehow lost the release number. It'd make things cleaner if it got killed, I think.
(There's probably very little value in keeping *any* of those `Fedora-Modular-27-updates-testing` composes around, but I'll leave that to you to figure out).
@mohanboddu
``
To reply, visit the link below or just reply to this email
https://pagure.io/releng/issue/7268
vondruch reported a new issue against the project: `releng` that you are following:
``
I was wondering why rubygem-factory_girl is not build by Koschei \[[1]\] and I was told by @msimacek that the package is not properly tagged for F28:
~~~
$ koji list-tagged --inherit f28-build --latest | grep rubygem-factory_girl
~~~
Please note that the package was incorrectly unbolcked in #6904 and the unblocking was later fixed by #6982, so this still might be some outfall of this. Not sure ...
[1]: https://apps.fedoraproject.org/koschei/package/rubygem-factory_girl
``
To reply, visit the link below or just reply to this email
https://pagure.io/releng/issue/7212