Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
slapos
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Rafael Monnerat
slapos
Commits
e6ed502c
Commit
e6ed502c
authored
May 26, 2011
by
Łukasz Nowak
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Merge slapos.recipe.siptester as slapos.recipebox:siptester
parent
5461eed6
Changes
13
Show whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
1 addition
and
75 deletions
+1
-75
setup.py
setup.py
+1
-0
slapos/recipe/README.siptester.txt
slapos/recipe/README.siptester.txt
+0
-0
slapos/recipe/siptester/__init__.py
slapos/recipe/siptester/__init__.py
+0
-0
slapos/recipe/siptester/template/init_caller.in
slapos/recipe/siptester/template/init_caller.in
+0
-0
slapos/recipe/siptester/template/init_receiver.in
slapos/recipe/siptester/template/init_receiver.in
+0
-0
slapos/recipe/siptester/template/pjsua_caller.conf.in
slapos/recipe/siptester/template/pjsua_caller.conf.in
+0
-0
slapos/recipe/siptester/template/pjsua_receiver.conf.in
slapos/recipe/siptester/template/pjsua_receiver.conf.in
+0
-0
slapos/slapos.recipe.siptester/CHANGES.txt
slapos/slapos.recipe.siptester/CHANGES.txt
+0
-18
slapos/slapos.recipe.siptester/MANIFEST.in
slapos/slapos.recipe.siptester/MANIFEST.in
+0
-4
slapos/slapos.recipe.siptester/setup.cfg
slapos/slapos.recipe.siptester/setup.cfg
+0
-3
slapos/slapos.recipe.siptester/setup.py
slapos/slapos.recipe.siptester/setup.py
+0
-38
slapos/slapos.recipe.siptester/src/slapos/__init__.py
slapos/slapos.recipe.siptester/src/slapos/__init__.py
+0
-6
slapos/slapos.recipe.siptester/src/slapos/recipe/__init__.py
slapos/slapos.recipe.siptester/src/slapos/recipe/__init__.py
+0
-6
No files found.
setup.py
View file @
e6ed502c
...
...
@@ -57,5 +57,6 @@ setup(name=name,
'nosqltestbed = slapos.recipe.nosqltestbed:NoSQLTestBed'
,
'proactive = slapos.recipe.proactive:Recipe'
,
'sheepdogtestbed = slapos.recipe.sheepdogtestbed:SheepDogTestBed'
,
'siptester = slapos.recipe.siptester:SipTesterRecipe'
,
]},
)
slapos/
slapos.recipe.siptester/README
.txt
→
slapos/
recipe/README.siptester
.txt
View file @
e6ed502c
File moved
slapos/
slapos.recipe.siptester/src/slapos/
recipe/siptester/__init__.py
→
slapos/recipe/siptester/__init__.py
View file @
e6ed502c
File moved
slapos/
slapos.recipe.siptester/src/slapos/
recipe/siptester/template/init_caller.in
→
slapos/recipe/siptester/template/init_caller.in
View file @
e6ed502c
File moved
slapos/
slapos.recipe.siptester/src/slapos/
recipe/siptester/template/init_receiver.in
→
slapos/recipe/siptester/template/init_receiver.in
View file @
e6ed502c
File moved
slapos/
slapos.recipe.siptester/src/slapos/
recipe/siptester/template/pjsua_caller.conf.in
→
slapos/recipe/siptester/template/pjsua_caller.conf.in
View file @
e6ed502c
File moved
slapos/
slapos.recipe.siptester/src/slapos/
recipe/siptester/template/pjsua_receiver.conf.in
→
slapos/recipe/siptester/template/pjsua_receiver.conf.in
View file @
e6ed502c
File moved
slapos/slapos.recipe.siptester/CHANGES.txt
deleted
100644 → 0
View file @
5461eed6
Changelog
=========
0.0.3 (2010-10-13)
----------------
- Use slapos.librecipe to simplify the recipe
0.0.2 (2010-10-13)
----------------
- Change erp5.recipe.siptesterinstance namespace to slapos.recipe.siptester
0.0.1 (2010-09-02)
----------------
- Initial version
[Romain Courteaud]
slapos/slapos.recipe.siptester/MANIFEST.in
deleted
100644 → 0
View file @
5461eed6
recursive-include src/erp5/recipe/siptesterinstance *.in
include README.txt
include CHANGES.txt
slapos/slapos.recipe.siptester/setup.cfg
deleted
100644 → 0
View file @
5461eed6
[egg_info]
tag_build = .dev
tag_svn_revision = 1
slapos/slapos.recipe.siptester/setup.py
deleted
100644 → 0
View file @
5461eed6
from
setuptools
import
setup
,
find_packages
import
os
name
=
"slapos.recipe.siptester"
version
=
'0.0.25'
def
read
(
*
rnames
):
return
open
(
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
*
rnames
)).
read
()
long_description
=
(
read
(
'README.txt'
)
+
'
\
n
'
+
read
(
'CHANGES.txt'
)
)
setup
(
name
=
name
,
version
=
version
,
author
=
'Romain Courteaud'
,
author_email
=
'romain@nexedi.com'
,
description
=
"zc.buildout recipe that instanciate a siptester"
,
long_description
=
long_description
,
license
=
"GPL2"
,
keywords
=
"siptester buildout"
,
classifiers
=
[
"Framework :: Buildout :: Recipe"
,
],
package_dir
=
{
''
:
'src'
},
packages
=
find_packages
(
'src'
),
namespace_packages
=
[
'slapos'
,
'slapos.recipe'
],
include_package_data
=
True
,
install_requires
=
[
'setuptools'
,
'slapos.lib.recipe'
],
entry_points
=
{
'zc.buildout'
:
[
'default = %s:CallerRecipe'
%
name
,
'caller = %s:CallerRecipe'
%
name
,
'receiver = %s:ReceiverRecipe'
%
name
,
]},
)
slapos/slapos.recipe.siptester/src/slapos/__init__.py
deleted
100644 → 0
View file @
5461eed6
# 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.recipe.siptester/src/slapos/recipe/__init__.py
deleted
100644 → 0
View file @
5461eed6
# 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__
)
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