[arch-commits] Commit in picocom/repos (8 files)

Sébastien Luttringer seblu at archlinux.org
Sun Oct 9 11:15:52 UTC 2016


    Date: Sunday, October 9, 2016 @ 11:15:51
  Author: seblu
Revision: 191687

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

Added:
  picocom/repos/community-i686/PKGBUILD
    (from rev 191686, picocom/trunk/PKGBUILD)
  picocom/repos/community-i686/picocom.install
    (from rev 191686, picocom/trunk/picocom.install)
  picocom/repos/community-x86_64/PKGBUILD
    (from rev 191686, picocom/trunk/PKGBUILD)
  picocom/repos/community-x86_64/picocom.install
    (from rev 191686, picocom/trunk/picocom.install)
Deleted:
  picocom/repos/community-i686/PKGBUILD
  picocom/repos/community-i686/picocom.install
  picocom/repos/community-x86_64/PKGBUILD
  picocom/repos/community-x86_64/picocom.install

----------------------------------+
 /PKGBUILD                        |   66 +++++++++++++++++++++++++++++++++++++
 /picocom.install                 |   34 +++++++++++++++++++
 community-i686/PKGBUILD          |   33 ------------------
 community-i686/picocom.install   |   17 ---------
 community-x86_64/PKGBUILD        |   33 ------------------
 community-x86_64/picocom.install |   17 ---------
 6 files changed, 100 insertions(+), 100 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2016-10-09 11:15:32 UTC (rev 191686)
+++ community-i686/PKGBUILD	2016-10-09 11:15:51 UTC (rev 191687)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-# Contributor: Jens Adam <jra at byte.cx>
-
-pkgname=picocom
-pkgver=2.1
-pkgrel=2
-pkgdesc='Minimal dumb-terminal emulation program, very much like minicom'
-url='https://github.com/npat-efault/picocom'
-license=('GPL2')
-arch=('i686' 'x86_64')
-depends=('glibc')
-install=$pkgname.install
-source=("$pkgname-$pkgver.tar.gz::https://github.com/npat-efault/picocom/archive/$pkgver.tar.gz")
-sha1sums=('ddcc98cdeefe1fa57b0349d86254932ae3b0edfe')
-
-build() {
-  cd $pkgname-$pkgver
-  make UUCP_LOCK_DIR=/run/lock/picocom
-}
-
-package() {
-  cd $pkgname-$pkgver
-  install -D -m 755 picocom "$pkgdir/usr/bin/picocom"
-  install -D -m 644 picocom.1 "$pkgdir/usr/share/man/man1/picocom.1"
-  # install tmpfiles for lock files
-  # http://lists.freedesktop.org/archives/systemd-devel/2011-March/001823.html
-  install -D -m 644 /dev/null "$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf"
-  echo "d /run/lock/$pkgname 0770 root uucp" \
-    > "$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: picocom/repos/community-i686/PKGBUILD (from rev 191686, picocom/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2016-10-09 11:15:51 UTC (rev 191687)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+# Contributor: Jens Adam <jra at byte.cx>
+
+pkgname=picocom
+pkgver=2.2
+pkgrel=1
+pkgdesc='Minimal dumb-terminal emulation program, very much like minicom'
+url='https://github.com/npat-efault/picocom'
+license=('GPL2')
+arch=('i686' 'x86_64')
+depends=('glibc')
+install=$pkgname.install
+source=("$pkgname-$pkgver.tar.gz::https://github.com/npat-efault/picocom/archive/$pkgver.tar.gz")
+sha1sums=('db13433be036833d686241e2b3b5412d7776b7c9')
+
+build() {
+  cd $pkgname-$pkgver
+  make UUCP_LOCK_DIR=/run/lock/picocom
+}
+
+package() {
+  cd $pkgname-$pkgver
+  install -D -m 755 picocom "$pkgdir/usr/bin/picocom"
+  install -D -m 644 picocom.1 "$pkgdir/usr/share/man/man1/picocom.1"
+  # install tmpfiles for lock files
+  # http://lists.freedesktop.org/archives/systemd-devel/2011-March/001823.html
+  install -D -m 644 /dev/null "$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf"
+  echo "d /run/lock/$pkgname 0770 root uucp" \
+    > "$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/picocom.install
===================================================================
--- community-i686/picocom.install	2016-10-09 11:15:32 UTC (rev 191686)
+++ community-i686/picocom.install	2016-10-09 11:15:51 UTC (rev 191687)
@@ -1,17 +0,0 @@
-# vim:set ts=2 sw=2 ft=sh et:
-
-## arg 1:  the new package version
-post_install() {
-  type -P systemd-tmpfiles >/dev/null && systemd-tmpfiles --create picocom.conf
-}
-
-# arg 1:  the new package version
-# arg 2:  the old package version
-post_upgrade() {
-  post_install "$1"
-}
-
-## arg 1:  the old package version
-pre_remove() {
- type -P systemd-tmpfiles >/dev/null && systemd-tmpfiles --clean --remove picocom.conf
-}

Copied: picocom/repos/community-i686/picocom.install (from rev 191686, picocom/trunk/picocom.install)
===================================================================
--- community-i686/picocom.install	                        (rev 0)
+++ community-i686/picocom.install	2016-10-09 11:15:51 UTC (rev 191687)
@@ -0,0 +1,17 @@
+# vim:set ts=2 sw=2 ft=sh et:
+
+## arg 1:  the new package version
+post_install() {
+  type -P systemd-tmpfiles >/dev/null && systemd-tmpfiles --create picocom.conf
+}
+
+# arg 1:  the new package version
+# arg 2:  the old package version
+post_upgrade() {
+  post_install "$1"
+}
+
+## arg 1:  the old package version
+pre_remove() {
+ type -P systemd-tmpfiles >/dev/null && systemd-tmpfiles --clean --remove picocom.conf
+}

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2016-10-09 11:15:32 UTC (rev 191686)
+++ community-x86_64/PKGBUILD	2016-10-09 11:15:51 UTC (rev 191687)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-# Contributor: Jens Adam <jra at byte.cx>
-
-pkgname=picocom
-pkgver=2.1
-pkgrel=2
-pkgdesc='Minimal dumb-terminal emulation program, very much like minicom'
-url='https://github.com/npat-efault/picocom'
-license=('GPL2')
-arch=('i686' 'x86_64')
-depends=('glibc')
-install=$pkgname.install
-source=("$pkgname-$pkgver.tar.gz::https://github.com/npat-efault/picocom/archive/$pkgver.tar.gz")
-sha1sums=('ddcc98cdeefe1fa57b0349d86254932ae3b0edfe')
-
-build() {
-  cd $pkgname-$pkgver
-  make UUCP_LOCK_DIR=/run/lock/picocom
-}
-
-package() {
-  cd $pkgname-$pkgver
-  install -D -m 755 picocom "$pkgdir/usr/bin/picocom"
-  install -D -m 644 picocom.1 "$pkgdir/usr/share/man/man1/picocom.1"
-  # install tmpfiles for lock files
-  # http://lists.freedesktop.org/archives/systemd-devel/2011-March/001823.html
-  install -D -m 644 /dev/null "$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf"
-  echo "d /run/lock/$pkgname 0770 root uucp" \
-    > "$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: picocom/repos/community-x86_64/PKGBUILD (from rev 191686, picocom/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2016-10-09 11:15:51 UTC (rev 191687)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+# Contributor: Jens Adam <jra at byte.cx>
+
+pkgname=picocom
+pkgver=2.2
+pkgrel=1
+pkgdesc='Minimal dumb-terminal emulation program, very much like minicom'
+url='https://github.com/npat-efault/picocom'
+license=('GPL2')
+arch=('i686' 'x86_64')
+depends=('glibc')
+install=$pkgname.install
+source=("$pkgname-$pkgver.tar.gz::https://github.com/npat-efault/picocom/archive/$pkgver.tar.gz")
+sha1sums=('db13433be036833d686241e2b3b5412d7776b7c9')
+
+build() {
+  cd $pkgname-$pkgver
+  make UUCP_LOCK_DIR=/run/lock/picocom
+}
+
+package() {
+  cd $pkgname-$pkgver
+  install -D -m 755 picocom "$pkgdir/usr/bin/picocom"
+  install -D -m 644 picocom.1 "$pkgdir/usr/share/man/man1/picocom.1"
+  # install tmpfiles for lock files
+  # http://lists.freedesktop.org/archives/systemd-devel/2011-March/001823.html
+  install -D -m 644 /dev/null "$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf"
+  echo "d /run/lock/$pkgname 0770 root uucp" \
+    > "$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/picocom.install
===================================================================
--- community-x86_64/picocom.install	2016-10-09 11:15:32 UTC (rev 191686)
+++ community-x86_64/picocom.install	2016-10-09 11:15:51 UTC (rev 191687)
@@ -1,17 +0,0 @@
-# vim:set ts=2 sw=2 ft=sh et:
-
-## arg 1:  the new package version
-post_install() {
-  type -P systemd-tmpfiles >/dev/null && systemd-tmpfiles --create picocom.conf
-}
-
-# arg 1:  the new package version
-# arg 2:  the old package version
-post_upgrade() {
-  post_install "$1"
-}
-
-## arg 1:  the old package version
-pre_remove() {
- type -P systemd-tmpfiles >/dev/null && systemd-tmpfiles --clean --remove picocom.conf
-}

Copied: picocom/repos/community-x86_64/picocom.install (from rev 191686, picocom/trunk/picocom.install)
===================================================================
--- community-x86_64/picocom.install	                        (rev 0)
+++ community-x86_64/picocom.install	2016-10-09 11:15:51 UTC (rev 191687)
@@ -0,0 +1,17 @@
+# vim:set ts=2 sw=2 ft=sh et:
+
+## arg 1:  the new package version
+post_install() {
+  type -P systemd-tmpfiles >/dev/null && systemd-tmpfiles --create picocom.conf
+}
+
+# arg 1:  the new package version
+# arg 2:  the old package version
+post_upgrade() {
+  post_install "$1"
+}
+
+## arg 1:  the old package version
+pre_remove() {
+ type -P systemd-tmpfiles >/dev/null && systemd-tmpfiles --clean --remove picocom.conf
+}



More information about the arch-commits mailing list