Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
51332b4c
Commit
51332b4c
authored
Jun 05, 2010
by
Hanno Schlichting
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Include checkversions
parent
2f1bd717
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
59 deletions
+16
-59
buildout.cfg
buildout.cfg
+14
-6
inst/checknew.py
inst/checknew.py
+0
-53
versions.cfg
versions.cfg
+2
-0
No files found.
buildout.cfg
View file @
51332b4c
[buildout]
[buildout]
extensions = buildout.dumppickedversions
develop = .
develop = .
parts =
parts =
test
test
scripts
scripts
zopepy
zopepy
docs
alltests
alltests
allpy
allpy
docs
checkversions
extends = versions.cfg
extends = versions.cfg
unzip = true
unzip = true
...
@@ -29,11 +32,6 @@ interpreter = zopepy
...
@@ -29,11 +32,6 @@ interpreter = zopepy
scripts = zopepy
scripts = zopepy
[docs]
recipe = zc.recipe.egg
eggs = sphinx
[alltests]
[alltests]
recipe = zc.recipe.testrunner
recipe = zc.recipe.testrunner
eggs =
eggs =
...
@@ -124,3 +122,13 @@ recipe = zc.recipe.egg
...
@@ -124,3 +122,13 @@ recipe = zc.recipe.egg
eggs = ${alltests:eggs}
eggs = ${alltests:eggs}
interpreter = allpy
interpreter = allpy
scripts = allpy
scripts = allpy
[docs]
recipe = zc.recipe.egg
eggs = Sphinx
[checkversions]
recipe = zc.recipe.egg
eggs = z3c.checkversions
inst/checknew.py
deleted
100644 → 0
View file @
2f1bd717
import
sys
def
main
():
import
pkg_resources
from
pkg_resources
import
parse_requirements
from
setuptools.package_index
import
PackageIndex
ws
=
pkg_resources
.
require
(
'Zope2'
)
pi
=
PackageIndex
()
names
=
[]
installed
=
[]
for
dist
in
ws
:
name
=
dist
.
project_name
if
name
not
in
names
:
names
.
append
(
name
)
installed
.
append
(
dict
(
dist
=
dist
,
name
=
name
,
req
=
parse_requirements
(
name
).
next
(),
))
def
_key
(
value
):
return
value
[
'name'
]
installed
.
sort
(
key
=
_key
)
upgrade
=
False
for
info
in
installed
:
print
(
"Checking for new version of %s."
%
info
[
'name'
])
new_dist
=
pi
.
obtain
(
info
[
'req'
])
if
new_dist
.
parsed_version
>
info
[
'dist'
].
parsed_version
:
upgrade
=
True
print
()
print
(
"Newer version for %s found. Installed: %s - found: %s"
%
(
info
[
'name'
],
info
[
'dist'
].
version
,
new_dist
.
version
))
print
(
"Newer version available at: %s"
%
new_dist
.
location
)
print
()
if
not
upgrade
:
print
(
"No updates have been found. All packages use current versions."
)
def
help
():
print
(
"Use this script via ./bin/zopepy inst/checknew.py."
)
if
__name__
==
'__main__'
:
args
=
sys
.
argv
[
1
:]
if
'--help'
in
args
:
help
()
else
:
main
()
versions.cfg
View file @
51332b4c
...
@@ -4,6 +4,7 @@ versions = versions
...
@@ -4,6 +4,7 @@ versions = versions
[versions]
[versions]
Zope2 =
Zope2 =
Acquisition = 2.13.3
Acquisition = 2.13.3
buildout.dumppickedversions = 0.4
ClientForm = 0.2.10
ClientForm = 0.2.10
DateTime = 2.12.2
DateTime = 2.12.2
distribute = 0.6.13
distribute = 0.6.13
...
@@ -28,6 +29,7 @@ Sphinx = 0.6.5
...
@@ -28,6 +29,7 @@ Sphinx = 0.6.5
tempstorage = 2.11.2
tempstorage = 2.11.2
ThreadLock = 2.13.0
ThreadLock = 2.13.0
transaction = 1.0.0
transaction = 1.0.0
z3c.checkversions = 0.2
zc.buildout = 1.4.3
zc.buildout = 1.4.3
zc.lockfile = 1.0.0
zc.lockfile = 1.0.0
zc.recipe.egg = 1.2.2
zc.recipe.egg = 1.2.2
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment