Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ebrains-spack-builds
Manage
Activity
Members
Labels
Plan
Issues
38
Issue boards
Milestones
Wiki
Code
Merge requests
25
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
EBRAINS RI
Tech Hub
Platform
EBRAINS Software Distribution
ebrains-spack-builds
Commits
1c7e882c
Commit
1c7e882c
authored
2 years ago
by
Eleni Mathioulaki
Browse files
Options
Downloads
Patches
Plain Diff
fix urls/versions for biobb packages
parent
b2003273
No related branches found
Branches containing commit
No related tags found
3 merge requests
!299
create new experimental release
,
!298
update branch
,
!297
fix urls/versions for biobb packages
Pipeline
#21347
passed with stage
in 11 minutes and 28 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
packages/biobb-common/package.py
+6
-7
6 additions, 7 deletions
packages/biobb-common/package.py
packages/biobb-gromacs/package.py
+12
-4
12 additions, 4 deletions
packages/biobb-gromacs/package.py
with
18 additions
and
11 deletions
packages/biobb-common/package.py
+
6
−
7
View file @
1c7e882c
# Copyright 2013-202
1
Lawrence Livermore National Security, LLC and other
# Copyright 2013-202
3
Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
from
spack
import
*
class
BiobbCommon
(
PythonPackage
):
...
...
@@ -10,15 +11,12 @@ class BiobbCommon(PythonPackage):
# Homepage and download url
homepage
=
"
https://github.com/bioexcel/biobb_common
"
#url = "https://github.com/bioexcel/biobb_common/tarball/v3.7.0"
git
=
'
https://github.com/bioexcel/biobb_common.git
'
url
=
"
https://github.com/bioexcel/biobb_common/archive/refs/tags/v3.8.1.tar.gz
"
# FIXME: Add a list of GitHub accounts to
# notify when the package is updated.
# maintainers = ['github_user1', 'github_user2']
maintainers
=
[
'
dbeltran
'
]
# Versions
version
(
'
3.8.1
'
,
branch
=
'
master
'
)
version
(
'
3.8.1
'
,
sha256
=
'
b6c939c1445ea2f8282e491e0414cc15f4934466ca24ecd77e24cef2e7df49e4
'
)
# Dependencies
depends_on
(
'
py-setuptools
'
)
...
...
@@ -26,3 +24,4 @@ class BiobbCommon(PythonPackage):
depends_on
(
'
py-pyyaml
'
,
type
=
(
'
build
'
,
'
run
'
))
depends_on
(
'
py-requests
'
,
type
=
(
'
build
'
,
'
run
'
))
depends_on
(
'
py-biopython@1.78:1.80
'
,
type
=
(
'
build
'
,
'
run
'
))
This diff is collapsed.
Click to expand it.
packages/biobb-gromacs/package.py
+
12
−
4
View file @
1c7e882c
# Copyright 2013-2023 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
from
spack
import
*
class
BiobbGromacs
(
PythonPackage
):
...
...
@@ -6,12 +12,14 @@ class BiobbGromacs(PythonPackage):
# Homepage and download url
homepage
=
"
https://github.com/bioexcel/biobb_gromacs
"
git
=
'
https://github.com/bioexcel/biobb_gromacs.git
'
url
=
"
https://github.com/bioexcel/biobb_gromacs/archive/refs/tags/v3.8.1.tar.gz
"
maintainers
=
[
'
dbeltran
'
]
# Versions
version
(
'
3.8.
0
'
,
branch
=
'
master
'
)
version
(
'
3.8.
1
'
,
sha256
=
'
6da49b691b14a8bcf7ffca08c898fe9affd258ca2f8c7be4981df840a6907efa
'
)
# Dependencies
depends_on
(
'
python@3.8:
'
,
type
=
(
'
build
'
,
'
run
'
))
depends_on
(
'
biobb-common
'
)
depends_on
(
'
python@3.8:
'
,
type
=
(
'
build
'
,
'
run
'
))
depends_on
(
'
biobb-common
@3.8.1
'
,
type
=
(
'
build
'
,
'
run
'
),
when
=
'
@3.8.1
'
)
depends_on
(
'
gromacs
'
)
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment