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 49064DC0394 for ; Mon, 9 Nov 2015 20:42:33 +0000 (UTC) Received: from mail-wm0-f53.google.com (mail-wm0-f53.google.com [74.125.82.53]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id EF59ADC00E9 for ; Mon, 9 Nov 2015 20:42:32 +0000 (UTC) Received: by wmnn186 with SMTP id n186so125552341wmn.1 for ; Mon, 09 Nov 2015 12:42:31 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kampka_net.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id; bh=jbrB4aCdks57a2TOtVP8FFZrorwO/QALpwVUXjZOl9U=; b=SObnShvErdYQ5kjyreUC+/vfTuDYk8jLZD9HfXY+bhh11UIqPI3/yvOUkzU0kpSuUN w04fBcyJFz2VUvoSE+w9tUWqVlu3X7/k1OwLVqcjx9vR6xWV09nWDWWbRaPfLZSFETre AIMmTO4cKj+9YaX5Jjt9cY/2tfdhQAALxeenYZr82RQ2oef2ZWwKkVoEIyN5lTl/OcjL xutZMmu3zNRe6nGnTTOq+XKtKdyN06LFI8ndgCdtMta/fsGmTKrr4uhOfC1nT/Y5h+1a 8yFcYyCydbXGfyo7w4MdGl1mnOtj1py5W81erJ9m3W6YBzcQ5/H+p+QaeRvl2emGNA7o X3sg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=jbrB4aCdks57a2TOtVP8FFZrorwO/QALpwVUXjZOl9U=; b=G853Gw4Q/w+t7xcmJ3JzzhK/YK7w/kBTligT+N5Ia/DkEjlhLzdiV9dKGq594jRmi8 OPnmqhPfHRldGvf/L57BDCVMBOHpIGkMlqkdQVw8UlBKD/3iZ68F8+MVV1fukK9k2sNh izq24KBcTweHHwupDQxf2YA9j2NXxIoCP6FN9VQ6O9BoQv0/nlaRmzE6plTC60A0Qp0w Gmjd+RqTcF4y2GSr82rIOD74zQh25U4G111lfqRaQ9eBUzQZvE5Je/bUjsi0J2utL3Ux qKOTnEbfkIEOerfmxSqAG1DUxPy6skGURgzzVi21tFqauh5/0msGAmPUx5HZWfK9picI 7YCA== X-Gm-Message-State: ALoCoQlSKwxljcYQW1dMFss5IbcHOzMTX84CoCNgkWZskh9Wq8Q3UFQ7XGtviBTRpyxBVksaLb4z X-Received: by 10.28.13.78 with SMTP id 75mr29426081wmn.24.1447101751371; Mon, 09 Nov 2015 12:42:31 -0800 (PST) Received: from localhost (pD955472A.dip0.t-ipconnect.de. [217.85.71.42]) by smtp.gmail.com with ESMTPSA id t126sm16101055wmd.18.2015.11.09.12.42.29 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 09 Nov 2015 12:42:30 -0800 (PST) From: Christian Kampka To: alpine-aports@lists.alpinelinux.org Cc: Christian Kampka Subject: [alpine-aports] [PATCH] main/bzr: move to community Date: Mon, 9 Nov 2015 21:42:27 +0100 Message-Id: <1447101747-31572-1-git-send-email-christian@kampka.net> X-Mailer: git-send-email 2.6.2 X-Virus-Scanned: ClamAV using ClamSMTP X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: bzr is essentially a discontinued and unmaintained project by it's previous sponsor, Canonical. There has been little development going on and no projects in main depend on it. Therefore, it should be safe to move it to community. --- community/bzr/APKBUILD | 33 +++++++++++++++++++++++++++++++++ main/bzr/APKBUILD | 33 --------------------------------- 2 files changed, 33 insertions(+), 33 deletions(-) create mode 100644 community/bzr/APKBUILD delete mode 100644 main/bzr/APKBUILD diff --git a/community/bzr/APKBUILD b/community/bzr/APKBUILD new file mode 100644 index 0000000..9c7ab94 --- /dev/null +++ b/community/bzr/APKBUILD @@ -0,0 +1,33 @@ +# Maintainer: William Pitcock +pkgname=bzr +pkgver=2.6.0 +pkgrel=2 +pkgdesc="A scalable distributed SCM tool" +url="http://bazaar.canonical.com/" +arch="all" +license="GPL2+" +depends="python" +makedepends="python-dev" +subpackages="$pkgname-doc" +source="http://launchpad.net/${pkgname}/${pkgver%.*}/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz" + +_builddir="$srcdir"/$pkgname-$pkgver +build() { + cd "$_builddir" + python setup.py build || return 1 +} + +package() { + cd "$_builddir" + python setup.py install --root="$pkgdir" || return 1 +} + +doc() { + mkdir -p "$subpkgdir"/usr/share + mv "$pkgdir"/usr/man "$subpkgdir"/usr/share + default_doc +} + +md5sums="28c86653d0df10d202c6b842deb0ea35 bzr-2.6.0.tar.gz" +sha256sums="0994797182eb828867eee81cccc79480bd2946c99304266bc427b902cf91dab0 bzr-2.6.0.tar.gz" +sha512sums="f40d4380a837321c2ed168d15b0b5d31e9de6df93c0f8f2fd9b16c9351524b0afac5b8744740f587e9704efeb4cc004cae7f35aed47f73b5c796cbe2526af980 bzr-2.6.0.tar.gz" diff --git a/main/bzr/APKBUILD b/main/bzr/APKBUILD deleted file mode 100644 index 9c7ab94..0000000 --- a/main/bzr/APKBUILD +++ /dev/null @@ -1,33 +0,0 @@ -# Maintainer: William Pitcock -pkgname=bzr -pkgver=2.6.0 -pkgrel=2 -pkgdesc="A scalable distributed SCM tool" -url="http://bazaar.canonical.com/" -arch="all" -license="GPL2+" -depends="python" -makedepends="python-dev" -subpackages="$pkgname-doc" -source="http://launchpad.net/${pkgname}/${pkgver%.*}/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz" - -_builddir="$srcdir"/$pkgname-$pkgver -build() { - cd "$_builddir" - python setup.py build || return 1 -} - -package() { - cd "$_builddir" - python setup.py install --root="$pkgdir" || return 1 -} - -doc() { - mkdir -p "$subpkgdir"/usr/share - mv "$pkgdir"/usr/man "$subpkgdir"/usr/share - default_doc -} - -md5sums="28c86653d0df10d202c6b842deb0ea35 bzr-2.6.0.tar.gz" -sha256sums="0994797182eb828867eee81cccc79480bd2946c99304266bc427b902cf91dab0 bzr-2.6.0.tar.gz" -sha512sums="f40d4380a837321c2ed168d15b0b5d31e9de6df93c0f8f2fd9b16c9351524b0afac5b8744740f587e9704efeb4cc004cae7f35aed47f73b5c796cbe2526af980 bzr-2.6.0.tar.gz" -- 2.6.2 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---