Date: Wednesday, March 29, 2023 @ 13:30:29
  Author: spupykin
Revision: 1430283

archrelease: copy trunk to community-x86_64

Added:
  netwatch/repos/community-x86_64/PKGBUILD
    (from rev 1430282, netwatch/trunk/PKGBUILD)
  netwatch/repos/community-x86_64/format-security.patch
    (from rev 1430282, netwatch/trunk/format-security.patch)
Deleted:
  netwatch/repos/community-x86_64/PKGBUILD
  netwatch/repos/community-x86_64/format-security.patch

-----------------------+
 PKGBUILD              |   70 ++++++++++++++++++++++++------------------------
 format-security.patch |   42 ++++++++++++++--------------
 2 files changed, 56 insertions(+), 56 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD    2023-03-29 13:29:18 UTC (rev 1430282)
+++ PKGBUILD    2023-03-29 13:30:29 UTC (rev 1430283)
@@ -1,35 +0,0 @@
-# Maintainer: Sergej Pupykin <[email protected]>
-
-pkgname=netwatch
-pkgver=1.3.1_2
-pkgrel=3
-pkgdesc="monitor network connections"
-arch=(x86_64)
-url="http://www.slctech.org/~mackay/NETWATCH/netwatch.html";
-license=('GPL')
-options=(zipman)
-depends=(ncurses)
-source=(https://www.slctech.org/~mackay/NETWATCH/netwatch-${pkgver/_/-}.tgz
-        format-security.patch)
-sha256sums=('9374fa55a41a4addd8897f1ff10a3453c840bf28534f500e8661a614231cc161'
-            'cc7356f59127c16ed43f402cc588c59e8b017dceaacd5a5d9a10080b7b8eb59c')
-
-prepare() {
-  cd "$srcdir/$pkgname-${pkgver/_/-}"
-  sed -i 's|${CC-cc} |${CC-cc} -O2 |g' configure
-  patch -p1 -i ../format-security.patch # Fix format-security warnings
-}
-
-build() {
-  cd "$srcdir/$pkgname-${pkgver/_/-}"
-  export CFLAGS+=" -fcommon" # Fix build with GCC 10m
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-${pkgver/_/-}"
-  install -D -m0755 netwatch "$pkgdir"/usr/bin/netwatch
-  install -D -m0755 netresolv "$pkgdir"/usr/bin/netresolv
-  install -D -m0644 netwatch.1 "$pkgdir"/usr/share/man/man1/netwatch.1
-}

Copied: netwatch/repos/community-x86_64/PKGBUILD (from rev 1430282, 
netwatch/trunk/PKGBUILD)
===================================================================
--- PKGBUILD                            (rev 0)
+++ PKGBUILD    2023-03-29 13:30:29 UTC (rev 1430283)
@@ -0,0 +1,35 @@
+# Maintainer: Sergej Pupykin <[email protected]>
+
+pkgname=netwatch
+pkgver=1.3.1_2
+pkgrel=4
+pkgdesc="monitor network connections"
+arch=(x86_64)
+url="http://www.slctech.org/~mackay/NETWATCH/netwatch.html";
+license=('GPL')
+options=(zipman)
+depends=(ncurses)
+source=(https://p5n.pp.ru/~sergej/dl/2023/netwatch-${pkgver/_/-}.tar.xz
+        format-security.patch)
+sha256sums=('d8c14e2f942b5e8e864bdc1e13f3ba307f6455b332b2a907a5caeec4857062e6'
+            'cc7356f59127c16ed43f402cc588c59e8b017dceaacd5a5d9a10080b7b8eb59c')
+
+prepare() {
+  cd "$srcdir/$pkgname-${pkgver/_/-}"
+  sed -i 's|${CC-cc} |${CC-cc} -O2 |g' configure
+  patch -p1 -i ../format-security.patch # Fix format-security warnings
+}
+
+build() {
+  cd "$srcdir/$pkgname-${pkgver/_/-}"
+  export CFLAGS+=" -fcommon" # Fix build with GCC 10m
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-${pkgver/_/-}"
+  install -D -m0755 netwatch "$pkgdir"/usr/bin/netwatch
+  install -D -m0755 netresolv "$pkgdir"/usr/bin/netresolv
+  install -D -m0644 netwatch.1 "$pkgdir"/usr/share/man/man1/netwatch.1
+}

Deleted: format-security.patch
===================================================================
--- format-security.patch       2023-03-29 13:29:18 UTC (rev 1430282)
+++ format-security.patch       2023-03-29 13:30:29 UTC (rev 1430283)
@@ -1,21 +0,0 @@
-diff -ru netwatch-1.3.1-2.orig/dispdata.c netwatch-1.3.1-2/dispdata.c
---- netwatch-1.3.1-2.orig/dispdata.c   2022-03-11 21:56:12.752986724 +0100
-+++ netwatch-1.3.1-2/dispdata.c        2022-03-11 21:57:36.180151654 +0100
-@@ -1488,7 +1488,7 @@
-             fprintf (fpspeclog, "%s\n", ttt);
-           else
-             //!!mvprintw (yact, xleft, "%s",ttt);
--            mvprintw (yact, xleft, ttt);
-+            mvprintw (yact, xleft, "%s", ttt);
-           attron (col4);
-           if (current->update)
-           {
-@@ -1736,7 +1736,7 @@
-             fprintf (fpspeclog, "%s\n", ttt);
-           else
-             //!!mvprintw (yact, xright,"%s", ttt);
--            mvprintw (yact, xright, ttt);
-+            mvprintw (yact, xright, "%s", ttt);
-           attron (col4);
-           if (current->update)
-           {

Copied: netwatch/repos/community-x86_64/format-security.patch (from rev 
1430282, netwatch/trunk/format-security.patch)
===================================================================
--- format-security.patch                               (rev 0)
+++ format-security.patch       2023-03-29 13:30:29 UTC (rev 1430283)
@@ -0,0 +1,21 @@
+diff -ru netwatch-1.3.1-2.orig/dispdata.c netwatch-1.3.1-2/dispdata.c
+--- netwatch-1.3.1-2.orig/dispdata.c   2022-03-11 21:56:12.752986724 +0100
++++ netwatch-1.3.1-2/dispdata.c        2022-03-11 21:57:36.180151654 +0100
+@@ -1488,7 +1488,7 @@
+             fprintf (fpspeclog, "%s\n", ttt);
+           else
+             //!!mvprintw (yact, xleft, "%s",ttt);
+-            mvprintw (yact, xleft, ttt);
++            mvprintw (yact, xleft, "%s", ttt);
+           attron (col4);
+           if (current->update)
+           {
+@@ -1736,7 +1736,7 @@
+             fprintf (fpspeclog, "%s\n", ttt);
+           else
+             //!!mvprintw (yact, xright,"%s", ttt);
+-            mvprintw (yact, xright, ttt);
++            mvprintw (yact, xright, "%s", ttt);
+           attron (col4);
+           if (current->update)
+           {

Reply via email to