X-Original-To: alpine-aports@mail.alpinelinux.org Delivered-To: alpine-aports@mail.alpinelinux.org Received: from mail.alpinelinux.org (dallas-a1.alpinelinux.org [127.0.0.1]) by mail.alpinelinux.org (Postfix) with ESMTP id C88BDDC0432 for ; Tue, 23 Jun 2015 19:45:09 +0000 (UTC) Received: from apollo.thewebhostserver.com (apollomail.thewebhostserver.com [46.23.65.248]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 76AA5DC00DF for ; Tue, 23 Jun 2015 19:45:03 +0000 (UTC) Received: from [81.4.121.188] (port=60666 helo=localhost.localdomain) by apollo.thewebhostserver.com with esmtpsa (TLSv1.2:AES128-SHA256:128) (Exim 4.85) (envelope-from ) id 1Z7U7w-003wYI-IM; Tue, 23 Jun 2015 20:45:00 +0100 From: Stuart Cardall To: alpine-aports@lists.alpinelinux.org Cc: Stuart Cardall Subject: [alpine-aports] [PATCH] testing/asciinema: add curl to depends Date: Tue, 23 Jun 2015 19:44:44 +0000 Message-Id: <1435088684-61955-1-git-send-email-developer@it-offshore.co.uk> X-Mailer: git-send-email 2.4.4 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - apollo.thewebhostserver.com X-AntiAbuse: Original Domain - lists.alpinelinux.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - it-offshore.co.uk X-Get-Message-Sender-Via: apollo.thewebhostserver.com: authenticated_id: developer@it-offshore.co.uk X-Source: X-Source-Args: X-Source-Dir: X-Virus-Scanned: ClamAV using ClamSMTP X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: adds curl as a depends. removed post-install message as a UTF environment is set now by default in /etc/profile. --- testing/asciinema/APKBUILD | 5 ++--- testing/asciinema/asciinema.post-install | 15 --------------- 2 files changed, 2 insertions(+), 18 deletions(-) delete mode 100644 testing/asciinema/asciinema.post-install diff --git a/testing/asciinema/APKBUILD b/testing/asciinema/APKBUILD index 25fcc91..25f9eb5 100644 --- a/testing/asciinema/APKBUILD +++ b/testing/asciinema/APKBUILD @@ -2,15 +2,14 @@ # Maintainer: Fabian Affolter pkgname=asciinema pkgver=1.1.1 -pkgrel=0 +pkgrel=1 pkgdesc="A Command line recorder for asciinema.org service" url="https://github.com/asciinema/asciinema/" arch="all" license="GPLv3" -depends="" +depends="curl" depends_dev="" makedepends="go python" -install="$pkgname.post-install" subpackages="$pkgname-doc" source="$pkgname-$pkgver.tar.gz::https://github.com/$pkgname/$pkgname/archive/v$pkgver.tar.gz" diff --git a/testing/asciinema/asciinema.post-install b/testing/asciinema/asciinema.post-install deleted file mode 100644 index f933ba9..0000000 --- a/testing/asciinema/asciinema.post-install +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh - -NORMAL="\033[1;0m" -STRONG="\033[1;1m" -GREEN="\033[1;32m" - -print_start() { - local prompt="${STRONG}${GREEN}$1 ${NORMAL}${STRONG}$2 ${STRONG}${GREEN}$3 ${NORMAL}" - printf "${prompt} %s" -} - -print_start "\nAdd" "'export LANG="en_US.UTF-8"'" "to /etc/profile or ~/.profile for asciinema to work.\n\n" - -exit 0 - -- 2.4.4 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---