Changeset 0c5671f for npl/overig/certbot
- Timestamp:
- 01/23/17 02:03:22 (8 years ago)
- Branches:
- gcc484, master, ntop, perl-5.22
- Children:
- 13a1b25
- Parents:
- ebc5ae5
- Location:
- npl/overig/certbot
- Files:
-
- 7 added
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
npl/overig/certbot/certbot.SlackBuild
rebc5ae5 r0c5671f 4 4 # Please python_modulename for python modules. 5 5 6 #wow..so many dependencies for certbot :( 7 #maybe use https://github.com/Neilpang/acme.sh instead? 8 6 9 #DEP:python 7 10 #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 8 30 9 31 #######Essential package info. … … 15 37 16 38 #Archive of the sourcefiles to unpack 17 SRC_ARC=`ls *.tar.* *zip`39 SRC_ARC=`ls *.tar.*` 18 40 19 41 #Version of the sourcefiles 20 42 VER=`echo $SRC_ARC| sed 's/.*-//g' | sed 's/\.tar\..*$//g'` 21 #VER=master22 43 23 44 #Directory of the sourcefiles to build (after optional unpacking) 24 45 SRC_DIR=`echo $SRC_ARC| sed 's/\.tar\..*$//g'` 25 #SRC_DIR=letsencrypt-master26 46 27 47 #Architecture that the created binaries run on. … … 33 53 #Uncomment the stuff that you dont want or need 34 54 55 #prevent automated downloads/installs by python setuptools 56 rm /etc/resolv.conf 57 35 58 #Unpack source 36 59 #(uncomment if not needed) … … 40 63 #patch -p1 -d $SRC_DIR < fluxkiosk.patch || exit 1 41 64 65 pushd $SRC_DIR/acme || exit 1 66 python setup.py install --root=/tmp/pkg || exit 1 67 python setup.py install || exit 1 68 popd 69 42 70 pushd $SRC_DIR || exit 1 43 71 python setup.py install --root=/tmp/pkg || exit 1 44 45 cd acme 46 python setup.py install --root=/tmp/pkg || exit 1 47 72 python setup.py install || exit 1 48 73 popd 49 50 74 51 75
Note: See TracChangeset
for help on using the changeset viewer.