Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.recipe.build
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jérome Perrin
slapos.recipe.build
Commits
c45a8d5d
Commit
c45a8d5d
authored
Nov 08, 2011
by
Alain Takoudjou
Committed by
Cédric de Saint Martin
Nov 08, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add slapos.recipe.downloadunpacked recipe
parent
5b9d5d64
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
116 additions
and
1 deletion
+116
-1
setup.py
setup.py
+2
-1
slapos/recipe/downloadunpacked.py
slapos/recipe/downloadunpacked.py
+114
-0
No files found.
setup.py
View file @
c45a8d5d
...
@@ -30,6 +30,7 @@ setup(name=name,
...
@@ -30,6 +30,7 @@ setup(name=name,
'zc.buildout'
:
[
'zc.buildout'
:
[
'default = slapos.recipe.build:Script'
,
'default = slapos.recipe.build:Script'
,
'cmmi = slapos.recipe.build:Cmmi'
,
'cmmi = slapos.recipe.build:Cmmi'
,
'download = slapos.recipe.download:Recipe'
'download = slapos.recipe.download:Recipe'
,
'download-unpacked = slapos.recipe.downloadunpacked:Recipe'
]},
]},
)
)
slapos/recipe/downloadunpacked.py
0 → 100644
View file @
c45a8d5d
##############################################################################
#
# Copyright (c) 2010 Vifib SARL and Contributors. All Rights Reserved.
#
# WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsibility of assessing all potential
# consequences resulting from its eventual inadequacies and bugs
# End users who are looking for a ready-to-use solution with commercial
# guarantees and support are strongly adviced to contract a Free Software
# Service Company
#
# This program is Free Software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 3
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
##############################################################################
import
os
import
logging
import
shutil
import
zc.buildout
import
tempfile
import
setuptools
TRUE_VALUES
=
(
'yes'
,
'true'
,
'1'
,
'on'
)
class
Recipe
:
def
calculate_base
(
self
,
extract_dir
):
log
=
logging
.
getLogger
(
self
.
name
)
# Move the contents of the package in to the correct destination
top_level_contents
=
os
.
listdir
(
extract_dir
)
if
self
.
options
[
'strip-top-level-dir'
].
strip
().
lower
()
in
TRUE_VALUES
:
if
len
(
top_level_contents
)
!=
1
:
log
.
error
(
'Unable to strip top level directory because there are more '
'than one element in the root of the package.'
)
raise
zc
.
buildout
.
UserError
(
'Invalid package contents'
)
base
=
os
.
path
.
join
(
extract_dir
,
top_level_contents
[
0
])
else
:
base
=
extract_dir
return
base
def
__init__
(
self
,
buildout
,
name
,
options
):
self
.
buildout
=
buildout
self
.
name
=
name
self
.
options
=
options
self
.
logger
=
logging
.
getLogger
(
self
.
name
)
if
'filename'
in
self
.
options
and
'destination'
in
self
.
options
:
raise
zc
.
buildout
.
UserError
(
'Parameters filename and destination are '
'exclusive.'
)
self
.
parts
=
None
self
.
destination
=
self
.
options
.
get
(
'destination'
,
None
)
if
self
.
destination
is
None
:
self
.
parts
=
os
.
path
.
join
(
self
.
buildout
[
'buildout'
][
'parts-directory'
],
self
.
name
)
self
.
destination
=
self
.
parts
# backward compatibility with other recipes -- expose location
options
[
'location'
]
=
os
.
path
.
join
(
self
.
buildout
[
'buildout'
][
'parts-directory'
],
self
.
name
)
options
[
'target'
]
=
self
.
destination
options
.
setdefault
(
'extract-directory'
,
''
)
def
install
(
self
):
if
self
.
parts
is
not
None
:
if
not
os
.
path
.
isdir
(
self
.
parts
):
os
.
mkdir
(
self
.
parts
)
download
=
zc
.
buildout
.
download
.
Download
(
self
.
buildout
[
'buildout'
],
hash_name
=
True
,
cache
=
self
.
buildout
[
'buildout'
].
get
(
'download-cache'
))
path
,
is_temp
=
download
(
self
.
options
[
'url'
],
md5sum
=
self
.
options
.
get
(
'md5sum'
))
extract_dir
=
tempfile
.
mkdtemp
(
self
.
name
)
self
.
logger
.
debug
(
'Created working directory %r'
%
extract_dir
)
setuptools
.
archive_util
.
unpack_archive
(
path
,
extract_dir
)
# Delete destination directory if exist
if
os
.
path
.
exists
(
self
.
destination
):
shutil
.
rmtree
(
self
.
destination
)
# Create destination directory
if
not
os
.
path
.
isdir
(
self
.
destination
):
os
.
makedirs
(
self
.
destination
)
base_dir
=
extract_dir
if
not
self
.
options
.
has_key
(
'strip-top-level-dir'
):
directories
=
os
.
listdir
(
extract_dir
)
if
len
(
directories
)
==
1
and
os
.
path
.
isdir
(
os
.
path
.
join
(
extract_dir
,
directories
[
0
])):
base_dir
=
os
.
path
.
join
(
extract_dir
,
directories
[
0
])
else
:
base_dir
=
self
.
calculate_base
(
extract_dir
)
extract_dir
=
os
.
path
.
join
(
base_dir
,
self
.
options
[
'extract-directory'
])
for
filename
in
os
.
listdir
(
extract_dir
):
dest
=
os
.
path
.
join
(
self
.
destination
,
filename
)
shutil
.
move
(
os
.
path
.
join
(
extract_dir
,
filename
),
dest
)
shutil
.
rmtree
(
extract_dir
)
self
.
logger
.
debug
(
'Downloaded %r and saved to %r.'
%
(
self
.
options
[
'url'
],
self
.
destination
))
if
self
.
parts
is
not
None
:
return
[
self
.
parts
]
else
:
return
[]
def
update
(
self
):
pass
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