[arch-commits] Commit in signify/repos/community-x86_64 (4 files)

Levente Polyak anthraxx at archlinux.org
Sat Feb 8 11:19:50 UTC 2020


    Date: Saturday, February 8, 2020 @ 11:19:49
  Author: anthraxx
Revision: 563993

archrelease: copy trunk to community-x86_64

Added:
  signify/repos/community-x86_64/LICENSE
    (from rev 563992, signify/trunk/LICENSE)
  signify/repos/community-x86_64/PKGBUILD
    (from rev 563992, signify/trunk/PKGBUILD)
Deleted:
  signify/repos/community-x86_64/LICENSE
  signify/repos/community-x86_64/PKGBUILD

----------+
 LICENSE  |   22 +++++++--------
 PKGBUILD |   86 ++++++++++++++++++++++++++++++-------------------------------
 2 files changed, 54 insertions(+), 54 deletions(-)

Deleted: LICENSE
===================================================================
--- LICENSE	2020-02-08 11:19:43 UTC (rev 563992)
+++ LICENSE	2020-02-08 11:19:49 UTC (rev 563993)
@@ -1,11 +0,0 @@
-Permission to use, copy, modify, and distribute this software for any
-purpose with or without fee is hereby granted, provided that the above
-copyright notice and this permission notice appear in all copies.
-
-THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
-WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
-MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
-ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
-WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
-ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
-OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

Copied: signify/repos/community-x86_64/LICENSE (from rev 563992, signify/trunk/LICENSE)
===================================================================
--- LICENSE	                        (rev 0)
+++ LICENSE	2020-02-08 11:19:49 UTC (rev 563993)
@@ -0,0 +1,11 @@
+Permission to use, copy, modify, and distribute this software for any
+purpose with or without fee is hereby granted, provided that the above
+copyright notice and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2020-02-08 11:19:43 UTC (rev 563992)
+++ PKGBUILD	2020-02-08 11:19:49 UTC (rev 563993)
@@ -1,43 +0,0 @@
-# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
-# Contributor: Adrian Perez de Castro <aperez at igalia.com>
-
-pkgname=signify
-pkgver=27
-pkgrel=1
-pkgdesc='OpenBSD tool to signs and verify signatures on files'
-url='https://github.com/aperezdc/signify'
-arch=('x86_64')
-license=('BSD')
-depends=('glibc' 'libbsd>=0.8')
-source=(https://github.com/aperezdc/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz
-        LICENSE)
-sha512sums=('f9774d6f98fdf3cc085b714fbec0a11bd1ed56f3631c88ce64028bfc01430723b606026c6aa99f046dce147650cbfada99e702548279450d9487f52c17695b73'
-            'a587ef19d5481a81945475a2c1dde0fbf8022e0a28db06389c73df1b7118fb94399f5e4523b91df3d846707dcaffff482ae6e58902b6620bf7b2019a8e15efec')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  # using O_NOFOLLOW doesn't lock anything down here, swapping files
-  # without symlinks is still equally open to TOCTOU and it doesn't even
-  # matter here. lets prefere supporting symlinked target files.
-  sed -E 's/\| ?O_NOFOLLOW//g' -i ./*.c
-}
-
-build () {
-  cd ${pkgname}-${pkgver}
-  make PREFIX=/usr \
-    LTO=1 \
-    EXTRA_CFLAGS="${CFLAGS} ${CPPFLAGS}" \
-    EXTRA_LDFLAGS="${LDFLAGS}" \
-    GIT_TAG=''
-}
-
-package () {
-  cd ${pkgname}-${pkgver}
-  make PREFIX=/usr \
-    DESTDIR="${pkgdir}" \
-    GIT_TAG='' install
-  install -Dm 644 README.md CHANGELOG.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 "${srcdir}/LICENSE" -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: signify/repos/community-x86_64/PKGBUILD (from rev 563992, signify/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2020-02-08 11:19:49 UTC (rev 563993)
@@ -0,0 +1,43 @@
+# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
+# Contributor: Adrian Perez de Castro <aperez at igalia.com>
+
+pkgname=signify
+pkgver=28
+pkgrel=1
+pkgdesc='OpenBSD tool to signs and verify signatures on files'
+url='https://github.com/aperezdc/signify'
+arch=('x86_64')
+license=('BSD')
+depends=('glibc' 'libbsd>=0.8')
+source=(https://github.com/aperezdc/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz
+        LICENSE)
+sha512sums=('6fb740cc9002a4cfb2ef95147a4aca31c8162d6634a788b346895c1817b89838dd2dafdf41413b4b9ed173663af666bb25e3448d8a6787b51279cf2e03071177'
+            'a587ef19d5481a81945475a2c1dde0fbf8022e0a28db06389c73df1b7118fb94399f5e4523b91df3d846707dcaffff482ae6e58902b6620bf7b2019a8e15efec')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  # using O_NOFOLLOW doesn't lock anything down here, swapping files
+  # without symlinks is still equally open to TOCTOU and it doesn't even
+  # matter here. lets prefere supporting symlinked target files.
+  sed -E 's/\| ?O_NOFOLLOW//g' -i ./*.c
+}
+
+build () {
+  cd ${pkgname}-${pkgver}
+  make PREFIX=/usr \
+    LTO=1 \
+    EXTRA_CFLAGS="${CFLAGS} ${CPPFLAGS}" \
+    EXTRA_LDFLAGS="${LDFLAGS}" \
+    GIT_TAG=''
+}
+
+package () {
+  cd ${pkgname}-${pkgver}
+  make PREFIX=/usr \
+    DESTDIR="${pkgdir}" \
+    GIT_TAG='' install
+  install -Dm 644 README.md CHANGELOG.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 "${srcdir}/LICENSE" -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:



More information about the arch-commits mailing list