mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-16 03:38:05 +01:00
new file: a/astroid/.astroid-1.5.3-Python-2.7.13-base.eb.swp
new file: a/astroid/astroid-1.5.3-Python-2.7.13-base.eb new file: develop new file: it4i new file: test.sh
This commit is contained in:
parent
09256a1841
commit
d1176531dd
BIN
a/astroid/.astroid-1.5.3-Python-2.7.13-base.eb.swp
Normal file
BIN
a/astroid/.astroid-1.5.3-Python-2.7.13-base.eb.swp
Normal file
Binary file not shown.
29
a/astroid/astroid-1.5.3-Python-2.7.13-base.eb
Normal file
29
a/astroid/astroid-1.5.3-Python-2.7.13-base.eb
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
# IT4Innovations 2017
|
||||||
|
|
||||||
|
easyblock = 'PythonPackage'
|
||||||
|
|
||||||
|
name = 'astroid'
|
||||||
|
version = '1.5.3'
|
||||||
|
versionsuffix = '-Python-2.7.13-base'
|
||||||
|
github_account = 'PyCQA'
|
||||||
|
|
||||||
|
homepage = 'https://github.com/PyCQA/astroid'
|
||||||
|
description = """The aim of this module is to provide a common base representation of python
|
||||||
|
source code for projects such as pychecker, pyreverse, pylint… Well, actually the development of
|
||||||
|
this library is essentially governed by pylint’s needs. It used to be called logilab-astng."""
|
||||||
|
|
||||||
|
toolchain = {'name': 'dummy', 'version': ''}
|
||||||
|
|
||||||
|
source_urls = [GITHUB_SOURCE]
|
||||||
|
sources = [SOURCE_TAR_GZ]
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('Python', '2.7.13', '-base', True),
|
||||||
|
]
|
||||||
|
|
||||||
|
#sanity_check_paths = {
|
||||||
|
# 'files': [],
|
||||||
|
# 'dirs': ['lib/python%(pyshortver)s/site-packages/astroid'],
|
||||||
|
#}
|
||||||
|
|
||||||
|
moduleclass = 'lib'
|
15
test.sh
Executable file
15
test.sh
Executable file
@ -0,0 +1,15 @@
|
|||||||
|
# !/bin/bash
|
||||||
|
|
||||||
|
for a in `find /apps/easybuild/easyconfigs-develop/easybuild/easyconfigs/ -type f -name *.eb`; do md5sum $a | grep -v "__archive__" | sed 's| .||' | cut -d '/' -f 1,8 | tr "/" ";" | sed 's|apps||'; done > develop
|
||||||
|
|
||||||
|
for a in `find /apps/easybuild/easyconfigs-develop/easybuild/easyconfigs/ -type f -name *.eb`; do md5sum $a | sed 's| .||' | cut -d '/' -f 1,4 | tr "/" ";"; done > it4i
|
||||||
|
|
||||||
|
while read x; do
|
||||||
|
while read y; do
|
||||||
|
if [ "$x" = "$y" ]; then
|
||||||
|
echo "$x ... duplicate"
|
||||||
|
echo "$x" >> duplicate
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
done < <(cat it4i | cut -d ';' -f 1)
|
||||||
|
done < <(cat develop | cut -d ';' -f 1)
|
Loading…
x
Reference in New Issue
Block a user