Skip to content

Instantly share code, notes, and snippets.

@hroncok
Last active August 29, 2015 14:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hroncok/77577a6ad7f9a7118f9f to your computer and use it in GitHub Desktop.
Save hroncok/77577a6ad7f9a7118f9f to your computer and use it in GitHub Desktop.
dgroc config for Python 3
[main]
username = Miro Hrončok
email = mhroncok@redhat.com
copr_url = https://copr.fedoraproject.org/
upload_command = scp %s churchyard@fedorapeople.org: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
#!/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