Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.buildout
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
isaak yansane-sisk
slapos.buildout
Commits
9ec25920
Commit
9ec25920
authored
Nov 21, 2014
by
Kazuhiko Shiozaki
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
change the license to GPLv3+.
parent
6205b053
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
55 additions
and
4 deletions
+55
-4
slapos.extension.strip_/setup.py
slapos.extension.strip_/setup.py
+29
-4
slapos.extension.strip_/slapos/extension/strip/__init__.py
slapos.extension.strip_/slapos/extension/strip/__init__.py
+26
-0
No files found.
slapos.extension.strip_/setup.py
View file @
9ec25920
##############################################################################
#
# Copyright (c) 2014 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 advised 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, see <http://www.gnu.org/licenses/>.
#
##############################################################################
from
setuptools
import
setup
,
find_packages
import
os
...
...
@@ -21,15 +47,14 @@ setup(
),
classifiers
=
[
'Framework :: Buildout :: Extension'
,
'License :: OSI Approved ::
BSD License
'
,
'License :: OSI Approved ::
GNU General Public License v3 or later (GPLv3+)
'
,
'Programming Language :: Python'
,
'Topic :: Software Development :: Build Tools'
,
],
keywords
=
'buildout extension strip'
,
author
=
'Kazuhiko Shiozaki'
,
author_email
=
'kazuhiko@nexedi.com'
,
url
=
'http://git.erp5.org/gitweb/slapos.extension.strip'
,
license
=
'BSD'
,
url
=
'http://git.erp5.org/gitweb/slapos.buildout.git'
,
packages
=
find_packages
(
exclude
=
[
'ez_setup'
]),
namespace_packages
=
[
'slapos'
,
'slapos.extension'
],
include_package_data
=
True
,
...
...
@@ -37,7 +62,7 @@ setup(
install_requires
=
[
'zc.buildout'
,
],
entry_points
=
{
entry_points
=
{
'zc.buildout.unloadextension'
:
[
'default = slapos.extension.strip:finish'
,
],
...
...
slapos.extension.strip_/slapos/extension/strip/__init__.py
View file @
9ec25920
##############################################################################
#
# Copyright (c) 2014 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 advised 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, see <http://www.gnu.org/licenses/>.
#
##############################################################################
import
os
import
re
import
stat
...
...
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