| | # Produce standard tools tarballs using linuxbrew |
---|
| | |
---|
| | # Customize the variables as desired |
---|
| | |
---|
| | # Software depot to archive releases |
---|
| | DEPOT = depot@slice.tundraware.com:/opt/depot/ |
---|
| | |
---|
| | # Where to store build tarballs |
---|
| | EXPORTDIR = /shared |
---|
| | |
---|
| |
---|
| | # Stuff we want pip to install |
---|
| | PIPMODULES = ansible pew pythonz-bd |
---|
| | |
---|
| | # Set of packages we want to include in the distribution tarball |
---|
| | MYTOOLS = bash-completion emacs file-formula git htop joe nmap screen socat the_silver_searcher tmux tree vim |
---|
| | MYTOOLS = bash-completion emacs file-formula git htop joe nmap screen socat source-highlight the_silver_searcher tmux tree vim |
---|
| | |
---|
| | |
---|
| | # ----------- Nothing below here should need changing ----------- # |
---|
| | |
---|
| |
---|
| | |
---|
| | |
---|
| | # Housekeeping |
---|
| | |
---|
| | push-release: |
---|
| | scp ${EXPORTDIR}/${TOOLS}-${DATESTAMP}.tar.gz ${DEPOT} |
---|
| | |
---|
| | tidyup: |
---|
| | ${BREW} config |
---|
| | ${BREW} prune |
---|
| | ${BREW} cleanup |
---|
| |
---|
| | |