Skip to content

Commit

Permalink
Remove dead tools and add package_overlap.py (#1001)
Browse files Browse the repository at this point in the history
  • Loading branch information
dominichofer authored Oct 1, 2024
1 parent 19b45f4 commit dce9307
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 79 deletions.
18 changes: 0 additions & 18 deletions .github/workflows/auto_create_PR.yml

This file was deleted.

16 changes: 0 additions & 16 deletions create_new_sysconfig.sh

This file was deleted.

25 changes: 0 additions & 25 deletions status.sh

This file was deleted.

20 changes: 0 additions & 20 deletions sysconfigs/copy_alps_env_files_from.sh

This file was deleted.

7 changes: 7 additions & 0 deletions tools/package_overlap.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import os

spack = set(os.listdir("./spack/var/spack/repos/builtin/packages"))
spack_c2sm = set(os.listdir("./repos/c2sm/packages"))

for folder in sorted(spack & spack_c2sm):
print(folder)

0 comments on commit dce9307

Please sign in to comment.