Taking inspiration from Fedora Review Service
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
import sys | |
import subprocess | |
labels = { | |
"effort/low": "Can be done in few hours", | |
"effort/medium": "Can be done in 1-2 days", | |
"effort/high": "Requires 3 or more days", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Print how many people were sponsored into the packager group | |
""" | |
import requests | |
import dateutil.parser | |
from requests.models import PreparedRequest | |
def prepare_url(page=1): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import time | |
import bugzilla | |
BODY_TEMPLATE = "Original {what}: {link}\n" "Opened: {date}\n" "Opened by: {user}" | |
DESCRIPTION_TEMPLATE = "\n\n{description}" | |
COMMENT_TEMPLATE = ( | |
"\n\n---\n\n#### {user}" | |
" commented at {date}:\n{comment}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Find out how many packages are added to Fedora every year and how many of them | |
are reviews using the `fedora-review` tool. | |
I suppose that this script is harsh on Bugzilla's load, please don't overuse it. | |
See http://frostyx.cz/posts/please-keep-fedora-review-alive | |
""" | |
import bugzilla |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Downloading https://download.copr-dev.fedorainfracloud.org/results/frostyx/custom-1-TEST1637859165084719615/srpm-builds/02903649/quick-package-0-0.fc34.src.rpm | |
https://download.copr-dev.fedorainfracloud.org/results/frostyx/custom-1-TEST1637859165084719615/srpm-builds/02903649/quick-package-0-0.fc34.src.rpm | |
Acquired lock "/var/lib/dist-git/cache/lookaside/pkgs/frostyx/custom-1-TEST1637859165084719615/quick-package/import.lock" | |
Acquired external semaphore "/var/lib/dist-git/cache/lookaside/pkgs/frostyx/custom-1-TEST1637859165084719615/quick-package/import.lock" | |
make sure repos exist: frostyx/custom-1-TEST1637859165084719615/quick-package | |
cmd: ['/usr/share/dist-git/mkbranch', 'master', 'frostyx/custom-1-TEST1637859165084719615/quick-package'], rc: 128, msg: IGNORING: Package module frostyx/custom-1-TEST1637859165084719615/quick-package already has a branch master | |
Branch already exists...continuing | |
repo_dir: /tmp/tmpde1ycluf | |
clone the pkg repository into repo_dir directory | |
Cloning /var/lib/dist-git/git/frostyx/cu |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
0xffffff (License: MIT) | |
a_a_n (License: MIT) | |
a_clockwork_ruby (License: MIT) | |
aasm-bang (License: MIT) | |
ab_tester (License: MIT) | |
abbey (License: MIT) | |
abcrunch (License: MIT) | |
abiquo-installer-tests (License: MIT) | |
abnormal (License: MIT) | |
abongo (License: MIT) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
""" | |
Deployment script for Fedora Packager Sponsors page | |
Upstream: https://github.com/FrostyX/fedora-sponsors | |
Instance: https://docs.pagure.org/fedora-sponsors/ | |
First authenticate to kerberos |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
This tool lists new packages in Copr, that are not yet available in Fedora. | |
It's main purpose is to help us pick new interesting projects for our Fedora | |
Magazine articles. See https://fedoramagazine.org/series/copr/ | |
""" | |
import os | |
import subprocess | |
import argparse | |
from datetime import date, timedelta |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
./scm2task.py --clone-url <URL> --chroot fedora-28-x86_64 > task.json | |
copr-rpmbuild --task-file task.json --chroot fedora-28-x86_64 |
NewerOlder