Changeset 0c5671f


Ignore:
Timestamp:
01/23/17 02:03:22 (8 years ago)
Author:
Edwin Eefting <edwin@datux.nl>
Branches:
gcc484, master, ntop, perl-5.22
Children:
13a1b25
Parents:
ebc5ae5
Message:

letsencrypt update and renamed to certbot

Location:
npl
Files:
15 added
16 deleted
5 edited
2 moved

Legend:

Unmodified
Added
Removed
  • npl/internetserver/dhcp_conf/dhcp_conf.build

    rebc5ae5 r0c5671f  
    1 1
     12
  • npl/internetserver/dhcp_conf/dhcp_conf.md5

    rebc5ae5 r0c5671f  
    1 fb8a4e0e1b1d7ab43e06b9aedbb9e8b7  ./dhcp_conf.pkg
     125d052d55580d7fe95617660452fc81a  ./dhcp_conf.pkg
    22fc10c46d9adf40310aedc60ff51a6f9c  ./dhcp_conf.SlackBuild
    3 ccb9051fa8ca1288e4b16097111d1145  ./dhcp_conf.SlackBuild.log.gz
     35aa1c83aef891e8407c2d345b48ee9b9  ./dhcp_conf.SlackBuild.log.gz
    44cfe8451799a11788e9597a85afe92a14  ./root/etc/dhcpd.conf.new
    55bc2a1645a1d85bd372a61eb274b9408a  ./root/etc/postinst.d/post.dhcp
  • npl/internetserver/dhcp_conf/root/etc/postinst.d/post.dhcp

    • Property mode changed from 100644 to 100755
  • npl/overig/certbot/certbot.SlackBuild

    rebc5ae5 r0c5671f  
    44# Please python_modulename for python modules.
    55
     6#wow..so many dependencies for certbot :(
     7#maybe use https://github.com/Neilpang/acme.sh instead?
     8
    69#DEP:python
    710#DEP:python_setuptools
     11#DEP:python_mock
     12#DEP:python_ZopeInterface
     13#DEP:python_ZopeComponent
     14#DEP:python_six
     15#DEP:python_requests
     16#DEP:python_pytz
     17#DEP:python_pyrfc3339
     18#DEP:python_pyOpenSSL
     19#DEP:python_cryptography
     20#DEP:python_funcsigs
     21#DEP:python_pyasn1
     22#DEP:python_ndg_httpsclient
     23#DEP:python_ipaddress
     24#DEP:python_enum34
     25#DEP:python_idna
     26#DEP:python_parsedatetime
     27#DEP:python_configobj
     28#DEP:python_configargparse
     29#DEP:python_ZopeEvent
    830
    931#######Essential package info.
     
    1537
    1638#Archive of the sourcefiles to unpack
    17 SRC_ARC=`ls *.tar.* *zip`
     39SRC_ARC=`ls *.tar.*`
    1840
    1941#Version of the sourcefiles
    2042VER=`echo $SRC_ARC| sed 's/.*-//g' | sed 's/\.tar\..*$//g'`
    21 #VER=master
    2243
    2344#Directory of the sourcefiles to build (after optional unpacking)
    2445SRC_DIR=`echo $SRC_ARC| sed 's/\.tar\..*$//g'`
    25 #SRC_DIR=letsencrypt-master
    2646
    2747#Architecture that the created binaries run on.
     
    3353#Uncomment the stuff that you dont want or need
    3454
     55#prevent automated downloads/installs by python setuptools
     56rm /etc/resolv.conf
     57
    3558#Unpack source
    3659#(uncomment if not needed)
     
    4063#patch -p1 -d $SRC_DIR < fluxkiosk.patch || exit 1
    4164
     65pushd $SRC_DIR/acme || exit 1
     66python setup.py install --root=/tmp/pkg || exit 1
     67python setup.py install || exit 1
     68popd
     69
    4270pushd $SRC_DIR || exit 1
    4371python setup.py install --root=/tmp/pkg || exit 1
    44 
    45 cd acme
    46 python setup.py install --root=/tmp/pkg || exit 1
    47 
     72python setup.py install || exit 1
    4873popd
    49 
    5074
    5175
Note: See TracChangeset for help on using the changeset viewer.