Commit 58889ba773384901f004284174f90c0b7985ab63
1 parent
f76ed651
Exists in
master
and in
90 other branches
New repositories tree.
Showing
3 changed files
with
12 additions
and
9 deletions
Show diff stats
.gitignore
.mrconfig
@@ -6,14 +6,14 @@ checkout = git clone https://github.com/colab-community/colab.git --branch pypi | @@ -6,14 +6,14 @@ checkout = git clone https://github.com/colab-community/colab.git --branch pypi | ||
6 | [mailman-api] | 6 | [mailman-api] |
7 | checkout = git clone https://github.com/TracyWebTech/mailman-api.git | 7 | checkout = git clone https://github.com/TracyWebTech/mailman-api.git |
8 | 8 | ||
9 | -[simplejson] | 9 | +[mailman-api/simplejson] |
10 | checkout = git clone https://github.com/simplejson/simplejson.git | 10 | checkout = git clone https://github.com/simplejson/simplejson.git |
11 | 11 | ||
12 | -[bottle] | 12 | +[mailman-api/bottle] |
13 | checkout = git clone https://github.com/defnull/bottle.git | 13 | checkout = git clone https://github.com/defnull/bottle.git |
14 | 14 | ||
15 | -[paste] | 15 | +[mailman-api/paste] |
16 | checkout = hg clone http://bitbucket.org/ianb/paste | 16 | checkout = hg clone http://bitbucket.org/ianb/paste |
17 | 17 | ||
18 | -[six] | 18 | +[mailman-api/paste/six] |
19 | checkout = hg clone https://bitbucket.org/gutworth/six | 19 | checkout = hg clone https://bitbucket.org/gutworth/six |
build_setuptools_rpms.sh
@@ -4,22 +4,24 @@ | @@ -4,22 +4,24 @@ | ||
4 | mr checkout | 4 | mr checkout |
5 | 5 | ||
6 | # Copiando os arquivos de configuração editados | 6 | # Copiando os arquivos de configuração editados |
7 | -CONFIGS="bottle mailman-api" | 7 | +CONFIGS="mailman-api" |
8 | 8 | ||
9 | for cfg in $CONFIGS; do | 9 | for cfg in $CONFIGS; do |
10 | echo "Copying $cfg setup.cfg..."; | 10 | echo "Copying $cfg setup.cfg..."; |
11 | cp cfg/${cfg}_setup.cfg $cfg/setup.cfg | 11 | cp cfg/${cfg}_setup.cfg $cfg/setup.cfg |
12 | done | 12 | done |
13 | 13 | ||
14 | -# Criando os rpms | ||
15 | -DIRS="six simplejson paste bottle mailman-api" | 14 | +# Criando os rpms na pasta packages |
15 | +DIRS="mailman-api/paste/six mailman-api/paste mailman-api/bottle | ||
16 | + mailman-api/simplejson mailman-api" | ||
16 | 17 | ||
17 | mkdir -p packages | 18 | mkdir -p packages |
18 | 19 | ||
19 | for dir in $DIRS; do | 20 | for dir in $DIRS; do |
21 | + curdir=`pwd` | ||
20 | cd $dir; | 22 | cd $dir; |
21 | python setup.py bdist_rpm; | 23 | python setup.py bdist_rpm; |
22 | - cp dist/*.rpm ../packages; | ||
23 | - cd ..; | 24 | + cp dist/*.rpm $curdir/packages; |
25 | + cd $curdir; | ||
24 | done | 26 | done |
25 | 27 |