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 C4066DD1E5C for ; Fri, 29 Jan 2016 22:39:28 +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 2A661DCF371; Fri, 29 Jan 2016 22:39:28 +0000 (UTC) Received: from localhost (p5DC20FAD.dip0.t-ipconnect.de [93.194.15.173]) by lithium.8pit.net (OpenSMTPD) with ESMTPSA id 4ba649be TLS version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO; Fri, 29 Jan 2016 23:39:15 +0100 (CET) From: =?UTF-8?q?S=C3=B6ren=20Tempel?= To: alpine-aports@lists.alpinelinux.org Cc: rnalrd@alpinelinux.org Subject: [alpine-aports] [PATCH 3/4] main/perl-compress-raw-zlib: remove man pages Date: Fri, 29 Jan 2016 23:39:03 +0100 Message-Id: <1454107144-4285-3-git-send-email-soeren+git@soeren-tempel.net> X-Mailer: git-send-email 2.7.0 In-Reply-To: <1454107144-4285-1-git-send-email-soeren+git@soeren-tempel.net> References: <1454107144-4285-1-git-send-email-soeren+git@soeren-tempel.net> 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-compress-raw-zlib-doc should thus result in a conflict. --- main/perl-compress-raw-zlib/APKBUILD | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/main/perl-compress-raw-zlib/APKBUILD b/main/perl-compress-raw-zlib/APKBUILD index 398aa34..4fa9164 100644 --- a/main/perl-compress-raw-zlib/APKBUILD +++ b/main/perl-compress-raw-zlib/APKBUILD @@ -3,7 +3,7 @@ pkgname=perl-compress-raw-zlib _realname=Compress-Raw-Zlib pkgver=2.069 -pkgrel=0 +pkgrel=1 pkgdesc="Perl low-level interface to zlib compression library" url="http://search.cpan.org/dist/Compress-Raw-Zlib/" arch="all" @@ -11,11 +11,10 @@ license="GPL PerlArtistic" depends="perl" makedepends="perl-dev" install= -subpackages="$pkgname-doc" +subpackages="" source="http://search.cpan.org/CPAN/authors/id/P/PM/PMQS/${_realname}-${pkgver}.tar.gz" _builddir="$srcdir/$_realname-$pkgver" - build() { cd $_builddir PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor || return 1 @@ -28,6 +27,9 @@ package() { make DESTDIR="$pkgdir" install # creates file collision among perl modules find "$pkgdir" -name perllocal.pod -delete + + # man pages are already provided by perl-doc + rm -rf /usr/share/man || return 1 } md5sums="c1f99178e6e29b0037785afa6d8bbcff Compress-Raw-Zlib-2.069.tar.gz" -- 2.7.0 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---