X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org 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 4190EDC0189 for ; Wed, 26 Nov 2014 23:04:43 +0000 (UTC) Received: from [81.4.121.188] (port=50451 helo=localhost.localdomain) by apollo.thewebhostserver.com with esmtpsa (UNKNOWN:AES128-SHA256:128) (Exim 4.82) (envelope-from ) id 1XtldY-000nkJ-NP; Wed, 26 Nov 2014 23:04:40 +0000 From: Stuart Cardall To: alpine-devel@lists.alpinelinux.org Cc: Stuart Cardall Subject: [alpine-devel] [PATCH] testing/virtualbricks: new aport (Qemu / KVM GTK frontend) Date: Wed, 26 Nov 2014 23:04:32 +0000 Message-Id: <1417043072-18509-1-git-send-email-developer@it-offshore.co.uk> X-Mailer: git-send-email 2.1.3 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-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: A GTK frontend written in Python for Qemu / KVM. It's a nice small alternative to Virt-Manager. --- testing/virtualbricks/APKBUILD | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 testing/virtualbricks/APKBUILD diff --git a/testing/virtualbricks/APKBUILD b/testing/virtualbricks/APKBUILD new file mode 100644 index 0000000..38cc7e2 --- /dev/null +++ b/testing/virtualbricks/APKBUILD @@ -0,0 +1,39 @@ +# Contributor: Stuart Cardall +# Maintainer: Stuart Cardall +pkgname=virtualbricks +pkgver=1.0.1 +pkgrel=0 +pkgdesc="A GTK frontend for VDE and QEMU/KVM" +url="http://virtualbricks.eu | https://launchpad.net/virtualbrick" +arch="noarch" +license="GPL v2" +depends="python py-zope-interface py-twisted" +depends_dev="" +makedepends="python-dev gettext" +subpackages="$pkgname-lang" +source="https://launchpad.net/virtualbrick/1.x/$pkgver/+download/$pkgname-$pkgver.tar.gz" + +_builddir="$srcdir"/$pkgname-$pkgver +prepare() { + local i + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} + +build() { + cd "$_builddir" + python setup.py build || return 1 +} + +package() { + cd "$_builddir" + python setup.py install --prefix=/usr --root="$pkgdir" || return 1 +} + +md5sums="17ae7cddd0572f3f547ff348eadcf690 virtualbricks-1.0.1.tar.gz" +sha256sums="afed1e4b7932297e5aece861d24516a62a98e08212f510e13c4a0a4132fdd0bc virtualbricks-1.0.1.tar.gz" +sha512sums="90a4cd46058c3139a7bc1d8e15f19a20f020371acb55587df5f315e6f691b3358ea73b37b317a9c772c7cbc4cb968ae5a27ebfb59472085bcb5ad27c4db3c464 virtualbricks-1.0.1.tar.gz" -- 2.1.3 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---