Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
moodle_rebase10.1.2
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
Dmitry Blinov
moodle_rebase10.1.2
Commits
331f7a95
Commit
331f7a95
authored
May 26, 2011
by
Łukasz Nowak
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Merge slapos.lib.recipe into slapos.recipebox as slapos.recipe.librecipe
parent
9e33187d
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
6 additions
and
80 deletions
+6
-80
setup.py
setup.py
+6
-4
slapos/recipe/README.librecipe.txt
slapos/recipe/README.librecipe.txt
+0
-0
slapos/recipe/librecipe.py
slapos/recipe/librecipe.py
+0
-0
slapos/slapos.lib.recipe/CHANGES.txt
slapos/slapos.lib.recipe/CHANGES.txt
+0
-5
slapos/slapos.lib.recipe/setup.cfg
slapos/slapos.lib.recipe/setup.cfg
+0
-3
slapos/slapos.lib.recipe/setup.py
slapos/slapos.lib.recipe/setup.py
+0
-30
slapos/slapos.lib.recipe/src/slapos/__init__.py
slapos/slapos.lib.recipe/src/slapos/__init__.py
+0
-6
slapos/slapos.lib.recipe/src/slapos/lib/__init__.py
slapos/slapos.lib.recipe/src/slapos/lib/__init__.py
+0
-6
slapos/slapos.lib.recipe/src/slapos/lib/recipe/__init__.py
slapos/slapos.lib.recipe/src/slapos/lib/recipe/__init__.py
+0
-26
No files found.
setup.py
View file @
331f7a95
...
@@ -28,13 +28,15 @@ setup(name=name,
...
@@ -28,13 +28,15 @@ setup(name=name,
packages
=
find_packages
(),
packages
=
find_packages
(),
include_package_data
=
True
,
include_package_data
=
True
,
install_requires
=
[
install_requires
=
[
'setuptools'
,
# for namespace and internal usage
'zc.buildout'
,
# needed to play internally
'PyXML'
,
# for full blown python interpreter
'PyXML'
,
# for full blown python interpreter
'lxml'
,
# for full blown python interpreter
'lxml'
,
# for full blown python interpreter
'xml_marshaller'
,
# need to communication with slapgrid
'netaddr'
,
# to manipulate on IP addresses
'setuptools'
,
# namespaces
'slapos.lib.recipe'
,
# makes instantiation recipes simpler
'slapos.lib.recipe'
,
# makes instantiation recipes simpler
'zc.recipe.egg'
,
# allows to generate scripts
'slapos.slap'
,
# uses internally
'xml_marshaller'
,
# need to communication with slapgrid
'zc.buildout'
,
# plays with buildout
'zc.recipe.egg'
,
# for scripts generation
],
],
zip_safe
=
True
,
zip_safe
=
True
,
entry_points
=
{
entry_points
=
{
...
...
slapos/
slapos.lib.recipe/README
.txt
→
slapos/
recipe/README.librecipe
.txt
View file @
331f7a95
File moved
slapos/
slapos.lib.recipe/src/slapos/lib/recipe/BaseSlapR
ecipe.py
→
slapos/
recipe/libr
ecipe.py
View file @
331f7a95
File moved
slapos/slapos.lib.recipe/CHANGES.txt
deleted
100644 → 0
View file @
9e33187d
Changes
=======
1.0 (unreleased)
----------------
slapos/slapos.lib.recipe/setup.cfg
deleted
100644 → 0
View file @
9e33187d
[egg_info]
tag_build = .dev
tag_svn_revision = 1
slapos/slapos.lib.recipe/setup.py
deleted
100644 → 0
View file @
9e33187d
from
setuptools
import
setup
,
find_packages
version
=
'1.0'
name
=
'slapos.lib.recipe'
long_description
=
open
(
"README.txt"
).
read
()
+
"
\
n
"
+
\
open
(
"CHANGES.txt"
).
read
()
setup
(
name
=
name
,
version
=
version
,
description
=
"Library, helpers and superclass for SlapOS zc.buildout recipes"
,
long_description
=
long_description
,
classifiers
=
[
"Framework :: Buildout"
,
"Programming Language :: Python"
,
],
keywords
=
'slap librecipe'
,
license
=
'GPLv3'
,
namespace_packages
=
[
'slapos'
],
packages
=
find_packages
(
'src'
),
package_dir
=
{
''
:
'src'
},
include_package_data
=
True
,
install_requires
=
[
'netaddr'
,
# to manipulate on IP addresses
'setuptools'
,
# namespaces
'slapos.slap'
,
# uses internally
'zc.buildout'
,
# plays with buildout
'zc.recipe.egg'
,
# for scripts generation
],
zip_safe
=
True
,
)
slapos/slapos.lib.recipe/src/slapos/__init__.py
deleted
100644 → 0
View file @
9e33187d
# See http://peak.telecommunity.com/DevCenter/setuptools#namespace-packages
try
:
__import__
(
'pkg_resources'
).
declare_namespace
(
__name__
)
except
ImportError
:
from
pkgutil
import
extend_path
__path__
=
extend_path
(
__path__
,
__name__
)
slapos/slapos.lib.recipe/src/slapos/lib/__init__.py
deleted
100644 → 0
View file @
9e33187d
# See http://peak.telecommunity.com/DevCenter/setuptools#namespace-packages
try
:
__import__
(
'pkg_resources'
).
declare_namespace
(
__name__
)
except
ImportError
:
from
pkgutil
import
extend_path
__path__
=
extend_path
(
__path__
,
__name__
)
slapos/slapos.lib.recipe/src/slapos/lib/recipe/__init__.py
deleted
100644 → 0
View file @
9e33187d
##############################################################################
#
# 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.
#
##############################################################################
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