[arch-commits] Commit in hexer/repos (6 files)

Levente Polyak anthraxx at archlinux.org
Fri Dec 11 00:59:03 UTC 2015


    Date: Friday, December 11, 2015 @ 01:59:03
  Author: anthraxx
Revision: 152777

archrelease: copy trunk to community-i686, community-x86_64

Added:
  hexer/repos/community-i686/PKGBUILD
    (from rev 152776, hexer/trunk/PKGBUILD)
  hexer/repos/community-x86_64/PKGBUILD
    (from rev 152776, hexer/trunk/PKGBUILD)
Deleted:
  hexer/repos/community-i686/PKGBUILD
  hexer/repos/community-i686/fix-sig-sa_mask.patch
  hexer/repos/community-x86_64/PKGBUILD
  hexer/repos/community-x86_64/fix-sig-sa_mask.patch

----------------------------------------+
 /PKGBUILD                              |   68 +++++++++++++++++++++++++++++++
 community-i686/PKGBUILD                |   37 ----------------
 community-i686/fix-sig-sa_mask.patch   |   11 -----
 community-x86_64/PKGBUILD              |   37 ----------------
 community-x86_64/fix-sig-sa_mask.patch |   11 -----
 5 files changed, 68 insertions(+), 96 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2015-12-11 00:58:52 UTC (rev 152776)
+++ community-i686/PKGBUILD	2015-12-11 00:59:03 UTC (rev 152777)
@@ -1,37 +0,0 @@
-# Maintainer: Levente Polyak <levente[at]leventepolyak[dot]net>
-# Contributor: Magnus Therning <magnus at therning.org>
-# Contributor: Anton Bazhenov <anton.bazhenov at gmail>
-
-pkgname=hexer
-pkgver=0.1.8
-pkgrel=4
-pkgdesc="A multi buffer editor for binary files with vi-like interface"
-arch=('i686' 'x86_64')
-url="http://devel.ringlet.net/"
-license=('custom')
-depends=('ncurses')
-source=(${pkgname}-${pkgver}.tar.gz::http://devel.ringlet.net/editors/${pkgname}/${pkgname}-${pkgver}.tar.gz
-        fix-sig-sa_mask.patch)
-sha512sums=('c831b00f5ea201e38fc5bede991320b07f3e7c70043d53aed107f8bff8f102d2ecea3fb7f0d57dd7a079d8a5bbb0a84e01eca8a91723fdd76be2e066a8075df4'
-            '0ccaf8353fbe3aa5ac2c4c7ed1ebd9a5c4820533f383b6af29ec1b86a2d9e430b4996121600af8d1f0d068ac4f58cb971c6b881cdede710d560ba451554f044e')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  cp config.{linux,h}
-  sed -i "s|/usr/local|/usr|" Makefile
-  sed -i "s|/man/|/share/man/|" Makefile
-  patch -p0 < "${srcdir}/fix-sig-sa_mask.patch"
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  install -Dm 644 COPYRIGHT "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-# vim: ts=2 sw=2 et:

Copied: hexer/repos/community-i686/PKGBUILD (from rev 152776, hexer/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2015-12-11 00:59:03 UTC (rev 152777)
@@ -0,0 +1,34 @@
+# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
+# Contributor: Magnus Therning <magnus at therning.org>
+# Contributor: Anton Bazhenov <anton.bazhenov at gmail>
+
+pkgname=hexer
+pkgver=0.2.3
+pkgrel=1
+pkgdesc="A multi buffer editor for binary files with vi-like interface"
+url="http://devel.ringlet.net/"
+arch=('i686' 'x86_64')
+license=('custom')
+depends=('ncurses')
+source=(http://devel.ringlet.net/editors/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.asc})
+sha512sums=('752f9c32f96f145d39336060437a5438e66d175489bd06eb619f2f136fb24f65c6e883c59b7541a3b52ced0be4e2fe268670da048e1cab6d61e8119a35af13c1'
+            'SKIP')
+validpgpkeys=('2EE7A7A517FC124CF115C354651EEFB02527DF13') # Peter Pentchev <roam at ringlet.net>
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  cp config.{linux,h}
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" PREFIX=/usr MANDIR=/usr/share/man/man1 install
+  install -Dm 644 COPYRIGHT "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+# vim: ts=2 sw=2 et:

Deleted: community-i686/fix-sig-sa_mask.patch
===================================================================
--- community-i686/fix-sig-sa_mask.patch	2015-12-11 00:58:52 UTC (rev 152776)
+++ community-i686/fix-sig-sa_mask.patch	2015-12-11 00:59:03 UTC (rev 152777)
@@ -1,11 +0,0 @@
---- tio.c	2015-04-02 17:32:27.653607986 +0200
-+++ tio.c	2015-04-02 17:35:27.386616788 +0200
-@@ -816,7 +816,7 @@
- #ifdef SA_INTERRUPT
-     static struct sigaction act;
-     act.sa_handler = sigwinch_handler;
--    act.sa_mask = 0;
-+    sigemptyset(&act.sa_mask);
-     act.sa_flags = SA_INTERRUPT;
-     sigaction(SIGWINCH, &act, 0);
- #else

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2015-12-11 00:58:52 UTC (rev 152776)
+++ community-x86_64/PKGBUILD	2015-12-11 00:59:03 UTC (rev 152777)
@@ -1,37 +0,0 @@
-# Maintainer: Levente Polyak <levente[at]leventepolyak[dot]net>
-# Contributor: Magnus Therning <magnus at therning.org>
-# Contributor: Anton Bazhenov <anton.bazhenov at gmail>
-
-pkgname=hexer
-pkgver=0.1.8
-pkgrel=4
-pkgdesc="A multi buffer editor for binary files with vi-like interface"
-arch=('i686' 'x86_64')
-url="http://devel.ringlet.net/"
-license=('custom')
-depends=('ncurses')
-source=(${pkgname}-${pkgver}.tar.gz::http://devel.ringlet.net/editors/${pkgname}/${pkgname}-${pkgver}.tar.gz
-        fix-sig-sa_mask.patch)
-sha512sums=('c831b00f5ea201e38fc5bede991320b07f3e7c70043d53aed107f8bff8f102d2ecea3fb7f0d57dd7a079d8a5bbb0a84e01eca8a91723fdd76be2e066a8075df4'
-            '0ccaf8353fbe3aa5ac2c4c7ed1ebd9a5c4820533f383b6af29ec1b86a2d9e430b4996121600af8d1f0d068ac4f58cb971c6b881cdede710d560ba451554f044e')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  cp config.{linux,h}
-  sed -i "s|/usr/local|/usr|" Makefile
-  sed -i "s|/man/|/share/man/|" Makefile
-  patch -p0 < "${srcdir}/fix-sig-sa_mask.patch"
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  install -Dm 644 COPYRIGHT "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-# vim: ts=2 sw=2 et:

Copied: hexer/repos/community-x86_64/PKGBUILD (from rev 152776, hexer/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2015-12-11 00:59:03 UTC (rev 152777)
@@ -0,0 +1,34 @@
+# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
+# Contributor: Magnus Therning <magnus at therning.org>
+# Contributor: Anton Bazhenov <anton.bazhenov at gmail>
+
+pkgname=hexer
+pkgver=0.2.3
+pkgrel=1
+pkgdesc="A multi buffer editor for binary files with vi-like interface"
+url="http://devel.ringlet.net/"
+arch=('i686' 'x86_64')
+license=('custom')
+depends=('ncurses')
+source=(http://devel.ringlet.net/editors/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.asc})
+sha512sums=('752f9c32f96f145d39336060437a5438e66d175489bd06eb619f2f136fb24f65c6e883c59b7541a3b52ced0be4e2fe268670da048e1cab6d61e8119a35af13c1'
+            'SKIP')
+validpgpkeys=('2EE7A7A517FC124CF115C354651EEFB02527DF13') # Peter Pentchev <roam at ringlet.net>
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  cp config.{linux,h}
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" PREFIX=/usr MANDIR=/usr/share/man/man1 install
+  install -Dm 644 COPYRIGHT "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+# vim: ts=2 sw=2 et:

Deleted: community-x86_64/fix-sig-sa_mask.patch
===================================================================
--- community-x86_64/fix-sig-sa_mask.patch	2015-12-11 00:58:52 UTC (rev 152776)
+++ community-x86_64/fix-sig-sa_mask.patch	2015-12-11 00:59:03 UTC (rev 152777)
@@ -1,11 +0,0 @@
---- tio.c	2015-04-02 17:32:27.653607986 +0200
-+++ tio.c	2015-04-02 17:35:27.386616788 +0200
-@@ -816,7 +816,7 @@
- #ifdef SA_INTERRUPT
-     static struct sigaction act;
-     act.sa_handler = sigwinch_handler;
--    act.sa_mask = 0;
-+    sigemptyset(&act.sa_mask);
-     act.sa_flags = SA_INTERRUPT;
-     sigaction(SIGWINCH, &act, 0);
- #else



More information about the arch-commits mailing list