X-Original-To: alpine-aports@lists.alpinelinux.org Received: from vps892.directvps.nl (ikke.info [178.21.113.177]) by lists.alpinelinux.org (Postfix) with ESMTP id E1F79F85252 for ; Fri, 15 Mar 2019 20:10:15 +0000 (UTC) Received: by vps892.directvps.nl (Postfix, from userid 1008) id 1CE324400CE; Fri, 15 Mar 2019 21:10:15 +0100 (CET) Date: Fri, 15 Mar 2019 21:10:15 +0100 From: Kevin Daudt To: Drew DeVault Cc: alpine-aports@lists.alpinelinux.org Subject: Re: [alpine-aports] [PATCH 3/6] testing/syncplay: new aport Message-ID: <20190315201015.GB4397@alpha> References: <20180116002328.14193-1-sir@cmpwn.com> <20180116002328.14193-4-sir@cmpwn.com> X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20180116002328.14193-4-sir@cmpwn.com> User-Agent: Mutt/1.11.3 (2019-02-01) On Mon, Jan 15, 2018 at 07:23:25PM -0500, Drew DeVault wrote: > --- > testing/syncplay/APKBUILD | 23 +++++++++++++++++++++++ > 1 file changed, 23 insertions(+) > create mode 100644 testing/syncplay/APKBUILD > > diff --git a/testing/syncplay/APKBUILD b/testing/syncplay/APKBUILD > new file mode 100644 > index 0000000000..b135969bf9 > --- /dev/null > +++ b/testing/syncplay/APKBUILD > @@ -0,0 +1,23 @@ > +# Maintainer: Drew DeVault > +pkgname=syncplay > +pkgver=1.5.1 > +pkgrel=0 > +pkgdesc="Free software that synchronises media players so that faraway friends can watch videos together." > +url="http://syncplay.pl" > +arch="noarch" > +license="Apache-2" > +depends="python2 py-twisted py2-pyside" Does this support python3? Alpine prefers new aports not to rely on python2 anymore. > +source="$pkgname-$pkgver.tar.gz::https://github.com/Syncplay/syncplay/archive/v${pkgver}.tar.gz" > +builddir="$srcdir/$pkgname-$pkgver" > + > +package() { > + cd "$builddir" > + make DESTDIR="$pkgdir" install > +} > + > +check() { > + cd "$builddir" > + ./syncplayClient.py --version Just calling --version does not suffice for a check, policy is to run an actual test suite. > +} > + > +sha512sums="8d7f99132b49148003dcdc83b5afc3158ebd7ad0b8a161229f8f576e7683e3c432d09793db071239e6344490f6e08d01c9061a32556b5bce6dcd68823b47a0cf syncplay-1.5.1.tar.gz" > -- > 2.15.0 > > > > --- > Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org > Help: alpine-aports+help@lists.alpinelinux.org > --- > --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---