The EUPS distrib facility (eups distrib ...) has support for packaging and
publishing binary builds in a package format called "tarballs". Unlike the
"eupspkg" (source) package format that was the sole DM published product
format, "tarballs" are inherently tied to the microarchitecture and ABI of a
platform. As there are currently multiple supported "stack" build platforms, a
means of coordinating multiple independent binary builds from identical sources
is needed both to ensure consistency of product versions across platforms and
This file contains hidden or 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
| git clone https://github.com/lsst-sqre/build-graph.git | |
| cd build-graph/ | |
| wget https://raw.githubusercontent.com/lsst/versiondb/master/manifests/b1780.txt | |
| virtualenv deps | |
| . deps/bin/activate | |
| pip install -r requirements.txt | |
| ./deps.py b1780.txt |
This file contains hidden or 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
| from sre_parse import Pattern, SubPattern, parse as sre_parse | |
| from sre_compile import compile as sre_compile | |
| from sre_constants import BRANCH, SUBPATTERN | |
| class Scanner(object): | |
| def __init__(self, tokens, flags=0): | |
| subpatterns = [] | |
| pat = Pattern() |
OlderNewer