Changeset 401


Ignore:
Timestamp:
Oct 2, 2018, 1:16:30 PM (5 years ago)
Author:
g7moreau
Message:
  • Add script to build Debian package
Location:
trunk
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Makefile

    r371 r401  
    99COMPDIR=/etc/bash_completion.d
    1010
    11 .PHONY: all install update sync upload stat help
     11.PHONY: all install update sync upload stat help pkg
    1212
    1313all:
     
    4747        cadaver --rcfile=cadaverrc
    4848
     49pkg: all
     50        ./make-package-debian
     51
    4952stat:
    5053        svn log|egrep '^r[[:digit:]]'|egrep -v '^r1[[:space:]]'|awk '{print $$3}'|sort|uniq -c                 |gnuplot -p -e 'set style fill solid 1.00 border 0; set style histogram; set style data histogram; set xtics rotate by 0; set style line 7 linetype 0 linecolor rgb "#222222"; set grid ytics linestyle 7; set xlabel "User contributor" font "bold"; set ylabel "Number of commit" font "bold"; plot "/dev/stdin" using 1:xticlabels(2) title "commit" linecolor rgb "#666666"'
     
    5861        @echo " * sync    : sync with official repository"
    5962        @echo " * upload  : upload on public dav forge space"
     63        @echo " * pkg     : build Debian package"
    6064        @echo " * stat    : svn stat with gnuplot graph"
  • trunk/cadaverrc

    r192 r401  
    22
    33mput *.html
     4mput LICENSE.txt
     5
     6mkdir download
     7cd download
     8mput klask_*_all.deb
    49
    510quit
  • trunk/klask

    r399 r401  
    1010use strict;
    1111use warnings;
    12 use version; our $VERSION = qv('0.7.7');
     12use version; our $VERSION = version->declare('0.7.7');
    1313
    1414use Readonly;
     
    2626use Text::Table; # libtext-table-perl http://blogs.perl.org/users/steven_haryanto/2014/07/benchmarking-several-ascii-table-generator-modules.html
    2727
    28 # apt-get install snmp fping libnet-cidr-lite-perl libnet-netmask-perl libnet-snmp-perl libnetaddr-ip-perl libyaml-perl
     28# apt-get install snmp libnet-cidr-lite-perl libnet-netmask-perl libnet-snmp-perl libnetaddr-ip-perl libyaml-perl
    2929# libcrypt-des-perl libcrypt-hcesha-perl libdigest-hmac-perl libtext-table-perl
    3030# arping net-tools fping bind9-host arpwatch
Note: See TracChangeset for help on using the changeset viewer.