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 C871ADCE02F for ; Fri, 29 Jan 2016 22:39:25 +0000 (UTC) Received: from lithium.8pit.net (lithium.8pit.net [81.4.121.103]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 41E2CDC8E91; Fri, 29 Jan 2016 22:39:25 +0000 (UTC) Received: from localhost (p5DC20FAD.dip0.t-ipconnect.de [93.194.15.173]) by lithium.8pit.net (OpenSMTPD) with ESMTPSA id bd163962 TLS version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO; Fri, 29 Jan 2016 23:39:12 +0100 (CET) From: =?UTF-8?q?S=C3=B6ren=20Tempel?= To: alpine-aports@lists.alpinelinux.org Cc: rnalrd@alpinelinux.org Subject: [alpine-aports] [PATCH 1/4] testing/perl-test-simple: remove man pages Date: Fri, 29 Jan 2016 23:39:01 +0100 Message-Id: <1454107144-4285-1-git-send-email-soeren+git@soeren-tempel.net> X-Mailer: git-send-email 2.7.0 X-Virus-Scanned: ClamAV using ClamSMTP X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: They seem to be already provided by perl-doc. Installing perl-doc and perl-test-simple-doc should thus result in a conflict. --- testing/perl-test-simple/APKBUILD | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/testing/perl-test-simple/APKBUILD b/testing/perl-test-simple/APKBUILD index 64b42e5..6229b87 100644 --- a/testing/perl-test-simple/APKBUILD +++ b/testing/perl-test-simple/APKBUILD @@ -4,7 +4,7 @@ pkgname=perl-test-simple pkgver=1.001014 _pkgreal=Test-Simple-$pkgver -pkgrel=0 +pkgrel=1 pkgdesc="Basic utilities for writing tests." url="http://search.cpan.org/dist/Test-Simple/" arch="noarch" @@ -13,11 +13,10 @@ cpandepends="" cpanmakedepends="" depends="$cpandepends" makedepends="perl-dev $cpanmakedepends" -subpackages="$pkgname-doc" +subpackages="" source="http://search.cpan.org/CPAN/authors/id/E/EX/EXODIST/$_pkgreal.tar.gz" _builddir="$srcdir/$_pkgreal" - prepare() { cd "$_builddir" PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor @@ -32,6 +31,9 @@ package() { cd "$_builddir" make DESTDIR="$pkgdir" install || return 1 find "$pkgdir" \( -name perllocal.pod -o -name .packlist \) -delete + + # man pages are already provided by perl-doc + rm -rf "$pkgdir"/usr/share/man || return 1 } md5sums="db7f57fd595e3e1c93c972307a88fa6e Test-Simple-1.001014.tar.gz" -- 2.7.0 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---