File: update-readme.awk

package info (click to toggle)
mongrel2 1.12.0-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 5,976 kB
  • sloc: ansic: 39,083; python: 2,833; sql: 1,555; sh: 467; makefile: 360; asm: 189; yacc: 145; php: 73; awk: 28; sed: 5
file content (17 lines) | stat: -rw-r--r-- 431 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
BEGIN {
    repo = ENVIRON["REPO"];
    release_name = ENVIRON["RELEASE_NAME"];
    owner = ENVIRON["OWNER"]
    tar_name = repo "-" release_name ".tar.bz2";
}
/tar.bz2/ {
    printf("* [%s](https://github.com/%s/%s/releases/%s/download/%s)\n",tar_name,owner,repo,release_name,tar_name);
    next;
}

/is now [^ ]* as of/ {
    print repo " is now " release_name strftime(" as of *%a %b %d %Y*:",systime());
    next;
}

{ print }