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
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
Léo-Paul Géneau
slapos
Commits
3f4f2ff5
Commit
3f4f2ff5
authored
May 13, 2014
by
Kazuhiko Shiozaki
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
version up : stunnel 5.01.
also cleanup.
parent
ad1ef110
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
16 deletions
+2
-16
component/stunnel/buildout.cfg
component/stunnel/buildout.cfg
+2
-7
component/stunnel/stunnel-4-hooks.py
component/stunnel/stunnel-4-hooks.py
+0
-9
No files found.
component/stunnel/buildout.cfg
View file @
3f4f2ff5
...
...
@@ -5,14 +5,9 @@ parts =
stunnel
[stunnel]
<= stunnel-4
recipe = slapos.recipe.cmmi
[stunnel-4]
recipe = slapos.recipe.cmmi
url = https://www.stunnel.org/downloads/stunnel-5.00.tar.gz
md5sum = 4f00fd0faf99e3c9cf258a19dd83d14a
pre-configure-hook = ${:_profile_base_location_}/stunnel-4-hooks.py#5b099b386c34c5b8d0664c0292ba322a:pre_configure_hook
url = https://www.stunnel.org/downloads/stunnel-5.01.tar.gz
md5sum = 7b63266b6fa05da696729e245100da65
configure-options =
--enable-ipv6
--disable-libwrap
...
...
component/stunnel/stunnel-4-hooks.py
deleted
100644 → 0
View file @
ad1ef110
import
os
def
pre_configure_hook
(
options
,
buildout
):
# remove certificate generation
# based on Gentoo: http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/net-misc/stunnel/stunnel-4.33.ebuild
name
=
os
.
path
.
join
(
'tools'
,
'Makefile.in'
)
f
=
file
(
name
,
'r'
)
d
=
f
.
read
().
replace
(
'install-data-local:'
,
'do-not-run-this:'
)
f
.
close
()
file
(
name
,
'w'
).
write
(
d
)
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