[arch-commits] Commit in nawk/repos/extra-x86_64 (4 files)

Dave Reisner dreisner at archlinux.org
Thu Sep 27 10:29:13 UTC 2018


    Date: Thursday, September 27, 2018 @ 10:29:12
  Author: dreisner
Revision: 335471

archrelease: copy trunk to extra-x86_64

Added:
  nawk/repos/extra-x86_64/PKGBUILD
    (from rev 335470, nawk/trunk/PKGBUILD)
  nawk/repos/extra-x86_64/manpage-naming.patch
    (from rev 335470, nawk/trunk/manpage-naming.patch)
Deleted:
  nawk/repos/extra-x86_64/PKGBUILD
  nawk/repos/extra-x86_64/manpage-naming.patch

----------------------+
 PKGBUILD             |  111 ++++++++++++++++++++++++-------------------------
 manpage-naming.patch |   82 ++++++++++++++++++------------------
 2 files changed, 96 insertions(+), 97 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2018-09-27 10:28:54 UTC (rev 335470)
+++ PKGBUILD	2018-09-27 10:29:12 UTC (rev 335471)
@@ -1,56 +0,0 @@
-# $Id$
-# Maintainer: Dave Reisner <dreisner at archlinux.org>
-
-pkgname=nawk
-pkgver=20180824
-pkgrel=1
-pkgdesc="The one, true implementation of AWK"
-url="https://github.com/onetrueawk/awk"
-license=('custom')
-arch=('x86_64')
-options=('!makeflags')
-depends=('glibc')
-makedepends=('git')
-source=(git+https://github.com/onetrueawk/awk
-        'manpage-naming.patch')
-md5sums=('SKIP'
-         '5413692140f8366f8ae6bcecc9a40f2f')
-
-pkgver() {
-  cd awk
-
-  git --no-pager log --pretty='format:%ad' --date=format:%Y%m%d HEAD~..
-}
-
-prepare() {
-  cd awk
-
-  # awk -> nawk
-  patch -Np1 <"$srcdir"/manpage-naming.patch
-
-  bsdtar xf awktest.tar
-}
-
-check() {
-  cd awk
-
-  ./REGRESS
-}
-
-build() {
-  cd awk
-
-  # the final linking step doesn't honor LDFLAGS, so let's just throw it all
-  # together into CFLAGS.
-  make \
-    "CPPFLAGS=-DHAS_ISBLANK $CPPFLAGS" \
-    "CFLAGS=$CFLAGS $LDFLAGS"
-}
-
-package() {
-  cd awk
-
-  install -Dm755 a.out "$pkgdir/usr/bin/nawk"
-  install -Dm644 awk.1 "$pkgdir/usr/share/man/man1/nawk.1"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/nawk/LICENSE"
-}

Copied: nawk/repos/extra-x86_64/PKGBUILD (from rev 335470, nawk/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2018-09-27 10:29:12 UTC (rev 335471)
@@ -0,0 +1,55 @@
+# Maintainer: Dave Reisner <dreisner at archlinux.org>
+
+pkgname=nawk
+pkgver=20180827
+pkgrel=1
+pkgdesc="The one, true implementation of AWK"
+url="https://github.com/onetrueawk/awk"
+license=('custom')
+arch=('x86_64')
+options=('!makeflags')
+depends=('glibc')
+makedepends=('git')
+source=(git+https://github.com/onetrueawk/awk#tag=$pkgver
+        'manpage-naming.patch')
+md5sums=('SKIP'
+         '5413692140f8366f8ae6bcecc9a40f2f')
+
+pkgver() {
+  cd awk
+
+  git describe --tags
+}
+
+prepare() {
+  cd awk
+
+  # awk -> nawk
+  patch -Np1 <"$srcdir"/manpage-naming.patch
+
+  bsdtar xf awktest.tar
+}
+
+check() {
+  cd awk
+
+  ./REGRESS
+}
+
+build() {
+  cd awk
+
+  # the final linking step doesn't honor LDFLAGS, so let's just throw it all
+  # together into CFLAGS.
+  make \
+    "CPPFLAGS=-DHAS_ISBLANK $CPPFLAGS" \
+    "CFLAGS=$CFLAGS $LDFLAGS"
+}
+
+package() {
+  cd awk
+
+  install -Dm755 a.out "$pkgdir/usr/bin/nawk"
+  install -Dm644 awk.1 "$pkgdir/usr/share/man/man1/nawk.1"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/nawk/LICENSE"
+}

Deleted: manpage-naming.patch
===================================================================
--- manpage-naming.patch	2018-09-27 10:28:54 UTC (rev 335470)
+++ manpage-naming.patch	2018-09-27 10:29:12 UTC (rev 335471)
@@ -1,41 +0,0 @@
-diff --git a/awk.1 b/awk.1
-index 5830143..339271e 100644
---- a/awk.1
-+++ b/awk.1
-@@ -7,12 +7,12 @@
- .fi
- .ft 1
- ..
--.TH AWK 1
-+.TH NAWK 1
- .CT 1 files prog_other
- .SH NAME
--awk \- pattern-directed scanning and processing language
-+nawk \- pattern-directed scanning and processing language
- .SH SYNOPSIS
--.B awk
-+.B nawk
- [
- .BI \-F
- .I fs
-@@ -31,7 +31,7 @@ awk \- pattern-directed scanning and processing language
- .I file ...
- ]
- .SH DESCRIPTION
--.I Awk
-+.I Nawk
- scans each input
- .I file
- for lines that match any of a set of patterns specified literally in
-@@ -426,7 +426,7 @@ and
- do not combine with other patterns.
- They may appear multiple times in a program and execute
- in the order they are read by
--.IR awk .
-+.IR nawk .
- .PP
- Variable names with special meanings:
- .TF FILENAME
--- 
-2.18.0
-

Copied: nawk/repos/extra-x86_64/manpage-naming.patch (from rev 335470, nawk/trunk/manpage-naming.patch)
===================================================================
--- manpage-naming.patch	                        (rev 0)
+++ manpage-naming.patch	2018-09-27 10:29:12 UTC (rev 335471)
@@ -0,0 +1,41 @@
+diff --git a/awk.1 b/awk.1
+index 5830143..339271e 100644
+--- a/awk.1
++++ b/awk.1
+@@ -7,12 +7,12 @@
+ .fi
+ .ft 1
+ ..
+-.TH AWK 1
++.TH NAWK 1
+ .CT 1 files prog_other
+ .SH NAME
+-awk \- pattern-directed scanning and processing language
++nawk \- pattern-directed scanning and processing language
+ .SH SYNOPSIS
+-.B awk
++.B nawk
+ [
+ .BI \-F
+ .I fs
+@@ -31,7 +31,7 @@ awk \- pattern-directed scanning and processing language
+ .I file ...
+ ]
+ .SH DESCRIPTION
+-.I Awk
++.I Nawk
+ scans each input
+ .I file
+ for lines that match any of a set of patterns specified literally in
+@@ -426,7 +426,7 @@ and
+ do not combine with other patterns.
+ They may appear multiple times in a program and execute
+ in the order they are read by
+-.IR awk .
++.IR nawk .
+ .PP
+ Variable names with special meanings:
+ .TF FILENAME
+-- 
+2.18.0
+



More information about the arch-commits mailing list