]> pd.if.org Git - zpackage/commitdiff
add option to echo note after creating
authorNathan Wagner <nw@hydaspes.if.org>
Sun, 25 Nov 2018 06:29:02 +0000 (06:29 +0000)
committerNathan Wagner <nw@hydaspes.if.org>
Sun, 25 Nov 2018 06:29:41 +0000 (06:29 +0000)
zpm-install
zpm-note.c

index c52f0a34c4726b05dee6aa79517f5dd99f1a2138..0d2055af5b0ff82ae726f9a67e7af8c6c19695d4 100755 (executable)
@@ -139,7 +139,7 @@ for pkgid in $pkglist; do
                fi
        else
                if zpm script -f $pkgfile -Fql -p pre-install $pkgid; then
-                       zpm note -p $pkgid -m 'pre-install script not run'
+                       zpm note -e -p $pkgid -m 'pre-install script not run'
                fi
        fi
 
@@ -219,7 +219,7 @@ for pkgid in $pkglist; do
                zpm script -f $pkgfile -p post-install $pkgid $current
        else
                if zpm script -f $pkgfile -Fql -p post-install $pkgid; then
-                       zpm note -p $pkgid -m 'post-install script not run'
+                       zpm note -e -p $pkgid -m 'post-install script not run'
                fi
        fi
 
@@ -235,7 +235,7 @@ for pkgid in $pkglist; do
                zpm script -f $pkgfile -p configure $pkgid
        else
                if zpm script -f $pkgfile -Fql -p configure $pkgid; then
-                       zpm note -p $pkgid -m 'configure script not run'
+                       zpm note -e -p $pkgid -m 'configure script not run'
                fi
        fi
 
index 05ecda22c95901b3d4f46afd8068ddc2c58a1630..ced0d3fd525a19fbdc45ca6037f5b58462702bfb 100644 (file)
@@ -12,11 +12,15 @@ void usage(void) {
        fprintf(stderr, "zpm-note [-I] [-s <status> ...] [-S <status>] [package]\n");
 }
 
+void print_note(struct zpm_note *n) {
+       printf("%" PRId64 " %s %s\n", n->id, n->pkgid ? n->pkgid : "-", n->note);
+}
+
 int main(int ac, char **av){
        int opt;
        struct zpm pkg;
        char *dbfile;
-       int fail;
+       int fail, echo = 0;
 
        int select = 1;
 
@@ -38,6 +42,7 @@ int main(int ac, char **av){
         * -H hash
         * -a all
         * -m note message, otherwise EDITOR/vi to edit a text file
+        * -e echo note after creating
         * zpm note -p pkgid -P path -H hash -m 'foo'
         * zpm note -l
         * zpm note -D <n>
@@ -53,6 +58,7 @@ int main(int ac, char **av){
                        case 'm': n.note = optarg; break;
                        case 'n': n.id = strtoll(optarg, NULL, 10); break;
                        case 'l': list = 1; break;
+                       case 'e': echo = 1; break;
                        case 'D': delete = 1; break;
                        case 'A': ack = 1; break;
                        case 'a': select = 3; break;
@@ -75,15 +81,17 @@ int main(int ac, char **av){
        if (zpm_open(&pkg, dbfile)) {
                if (list) {
                        while (zpm_note(&pkg, &n, select)) {
-                               printf("%" PRId64 " %s %s\n", n.id,
-                                               n.pkgid ? n.pkgid : "-",
-                                               n.note);
+                               print_note(&n);
                                zpm_note_free(&n);
                        }
                } else if (n.note) {
                        n.id = zpm_note_add(&pkg, n.pkgid, n.path, n.hash, "%s", n.note);
                        if (n.id) {
-                               printf("%" PRId64 "\n", n.id);
+                               if (echo) {
+                                       print_note(&n);
+                               } else {
+                                       printf("%" PRId64 "\n", n.id);
+                               }
                        } else {
                                fprintf(stderr, "unable to create note\n");
                                pkg.error = 1;