Last active
August 29, 2015 14:02
-
-
Save hroncok/77577a6ad7f9a7118f9f to your computer and use it in GitHub Desktop.
dgroc config for Python 3
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
[main] | |
username = Miro Hrončok | |
email = [email protected] | |
copr_url = https://copr.fedoraproject.org/ | |
upload_command = scp %s [email protected]:public_html/SRPMS/ | |
upload_url = http://churchyard.fedorapeople.org/SRPMS/%s | |
[openscad-devel] | |
git_url = https://github.com/openscad/openscad.git | |
git_folder = ~/upstream/openscad-git/ | |
spec_file = ~/rpmbuild/fedora-scm/openscad/openscad.spec | |
[python3-nightly] | |
scm = hg | |
hg_url = http://hg.python.org/cpython | |
hg_folder = ~/upstream/python-hg/ | |
spec_file = ~/rpmbuild/fedora-scm/python3/python3.spec | |
patch_files = ~/rpmbuild/fedora-scm/python3/*.patch, ~/rpmbuild/fedora-scm/python3/*.stp, ~/rpmbuild/fedora-scm/python3/macros.*, ~/rpmbuild/fedora-scm/python3/*.sh, ~/rpmbuild/fedora-scm/python3/*.py, ~/rpmbuild/fedora-scm/python3/*35* | |
[python3-nightly-pip] | |
copr = python3-nightly | |
git_url = https://github.com/pypa/pip.git | |
git_folder = ~/upstream/python-pip-git | |
spec_file = ~/rpmbuild/fedora-scm/python-pip/python-pip.spec | |
patch_files = ~/rpmbuild/fedora-scm/python-pip/*.patch | |
[python3-nightly-setuptools] | |
copr = python3-nightly | |
scm = hg | |
hg_url = https://bitbucket.org/pypa/setuptools | |
hg_folder = ~/upstream/python-setuptools-hg | |
spec_file = ~/rpmbuild/fedora-scm/python-setuptools/python-setuptools.spec | |
patch_files = ~/rpmbuild/fedora-scm/python-setuptools/*.txt | |
[python3-nightly-wheel] | |
copr = python3-nightly | |
scm = hg | |
hg_url = https://bitbucket.org/pypa/wheel | |
hg_folder = ~/upstream/python-wheel-hg | |
spec_file = ~/rpmbuild/fedora-scm/python-wheel/python-wheel.spec |
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 | |
cd | |
for FEDREPO in rpmbuild/fedora-scm/*; do | |
echo $FEDREPO | |
cd $FEDREPO && git checkout nightly && git pull | |
cd | |
done | |
python dgroc/dgroc.py --debug --no-monitor | |
for FEDREPO in rpmbuild/fedora-scm/*; do | |
echo $FEDREPO | |
cd $FEDREPO && git commit -am"dgroc bump" && git push | |
cd | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment