Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
synapse
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Timo Ley
synapse
Commits
4574b5a9
Commit
4574b5a9
authored
10 years ago
by
Mark Haines
Browse files
Options
Downloads
Patches
Plain Diff
Generate a list of dependencies from synapse/python_dependencies.py
parent
8c52e6e8
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
synapse/python_dependencies.py
+41
-0
41 additions, 0 deletions
synapse/python_dependencies.py
with
41 additions
and
0 deletions
synapse/python_dependencies.py
+
41
−
0
View file @
4574b5a9
...
@@ -18,6 +18,27 @@ REQUIREMENTS = {
...
@@ -18,6 +18,27 @@ REQUIREMENTS = {
"
pillow
"
:
[
"
PIL
"
],
"
pillow
"
:
[
"
PIL
"
],
}
}
def
github_link
(
project
,
version
,
egg
):
return
"
https://github.com/%s/tarball/%s/#egg=%s
"
%
(
project
,
version
,
egg
)
DEPENDENCY_LINKS
=
[
github_link
(
project
=
"
matrix-org/syutil
"
,
version
=
"
v0.0.2
"
,
egg
=
"
syutil-0.0.2
"
,
),
github_link
(
project
=
"
matrix-org/matrix-angular-sdk
"
,
version
=
"
v0.6.0
"
,
egg
=
"
matrix_angular_sdk-0.6.0
"
,
),
github_link
(
project
=
"
pyca/pynacl
"
,
version
=
"
d4d3175589b892f6ea7c22f466e0e223853516fa
"
,
egg
=
"
pynacl-0.3.0
"
,
)
]
class
MissingRequirementError
(
Exception
):
class
MissingRequirementError
(
Exception
):
pass
pass
...
@@ -78,3 +99,23 @@ def check_requirements():
...
@@ -78,3 +99,23 @@ def check_requirements():
"
Unexpected version of %r in %r. %r != %r
"
"
Unexpected version of %r in %r. %r != %r
"
%
(
dependency
,
file_path
,
version
,
required_version
)
%
(
dependency
,
file_path
,
version
,
required_version
)
)
)
def
list_requirements
():
result
=
[]
linked
=
[]
for
link
in
DEPENDENCY_LINKS
:
egg
=
link
.
split
(
"
#egg=
"
)[
1
]
linked
.
append
(
egg
.
split
(
'
-
'
)[
0
])
result
.
append
(
link
)
for
requirement
in
REQUIREMENTS
:
is_linked
=
False
for
link
in
linked
:
if
requirement
.
replace
(
'
-
'
,
'
_
'
).
startswith
(
link
):
is_linked
=
True
if
not
is_linked
:
result
.
append
(
requirement
)
return
result
if
__name__
==
"
__main__
"
:
import
sys
sys
.
stdout
.
writelines
(
req
+
"
\n
"
for
req
in
list_requirements
())
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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