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:
Lukáš Krupčík 2017-09-08 11:51:03 +02:00
parent 09256a1841
commit d1176531dd
5 changed files with 16382 additions and 0 deletions

Binary file not shown.

View 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 pylints 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'

7562
develop Normal file

File diff suppressed because it is too large Load Diff

8776
it4i Normal file

File diff suppressed because it is too large Load Diff

15
test.sh Executable file
View 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)