X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@lists.alpinelinux.org Received: from mail-vw0-f54.google.com (mail-vw0-f54.google.com [209.85.212.54]) by lists.alpinelinux.org (Postfix) with ESMTP id 971931EBFCC for ; Thu, 7 Apr 2011 20:04:08 +0000 (UTC) Received: by vws18 with SMTP id 18so2728248vws.13 for ; Thu, 07 Apr 2011 13:04:07 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:from:to:cc:subject:date:message-id:x-mailer; bh=KNcQ/fY35MuqP0WpltEvgvv/SKBlBefq2uuh7IvcUQ4=; b=CvVccYU3ohyGjnbpVujV1Obt9aEJPFDJE00PPwwO3VFymKyfDhInNsvqytMWAHt5yy wLftS9MQ+AYCImI0qSVaNGuLLAbLLG6JQQ56P9+hZ0QFf/8ahetMkPV26oLPpAMIr/vK I9er6XwLzbkRJUMDTbR0jWdLjE7ePrDAqdpcQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer; b=HV5/ALQu+gkZm9A9Zo6WCYUDNw7PcdaaTFKuF17OMQ1q9WRTzK3RQfoKUw1K7a17w/ O+GlD7iTwAonZU8r9ZiX/FF3HuevClTdtnEUEus4ynvOGQ9yzCUFY9SxNOM9rAvPV0G+ pFjfe2WqgMwJ0VcgoO7rQ1hYnmbCYiIo+L0Sc= Received: by 10.52.172.2 with SMTP id ay2mr1939774vdc.50.1302206647523; Thu, 07 Apr 2011 13:04:07 -0700 (PDT) Received: from localhost.localdomain (209.250.132.162.tor.pathcom.com [209.250.132.162]) by mx.google.com with ESMTPS id p29sm496453vcr.31.2011.04.07.13.04.04 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 07 Apr 2011 13:04:05 -0700 (PDT) From: Jeff Bilyk To: alpine-devel@lists.alpinelinux.org Cc: Jeff Bilyk Subject: [alpine-devel] [PATCH 1/4] main/perl-test-mockobject: moved from testing Date: Thu, 7 Apr 2011 20:03:48 +0000 Message-Id: <1302206631-1530-1-git-send-email-jbilyk@gmail.com> X-Mailer: git-send-email 1.7.4.1 X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: --- main/perl-test-mockobject/APKBUILD | 33 +++++++++++++++++++++++++++++++++ testing/perl-test-mockobject/APKBUILD | 33 --------------------------------- 2 files changed, 33 insertions(+), 33 deletions(-) create mode 100644 main/perl-test-mockobject/APKBUILD delete mode 100644 testing/perl-test-mockobject/APKBUILD diff --git a/main/perl-test-mockobject/APKBUILD b/main/perl-test-mockobject/APKBUILD new file mode 100644 index 0000000..1654150 --- /dev/null +++ b/main/perl-test-mockobject/APKBUILD @@ -0,0 +1,33 @@ +# Contributor: Jeff Bilyk +# Maintainer: Leonardo Arena +pkgname=perl-test-mockobject +_realname=Test-MockObject +pkgver=1.09 +pkgrel=1 +pkgdesc="Perl Mock part of an object or class" +url="http://search.cpan.org/~chromatic/" +arch="noarch" +license="GPL PerlArtistic" +depends="perl" +makedepends="perl-dev" +install= +subpackages="" +source="http://search.cpan.org/CPAN/authors/id/C/CH/CHROMATIC/$_realname-$pkgver.tar.gz" + +_builddir="$srcdir/$_realname-$pkgver" + +build() { + cd $_builddir + PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor || return 1 + make || return 1 +} + +package() { + cd $_builddir + make DESTDIR="$pkgdir" install + # creates file collision among perl modules + find "$pkgdir" -name perllocal.pod -delete + +} + +md5sums="3c9c2842d40fa8c389563c227804d7d8 Test-MockObject-1.09.tar.gz" diff --git a/testing/perl-test-mockobject/APKBUILD b/testing/perl-test-mockobject/APKBUILD deleted file mode 100644 index 1654150..0000000 --- a/testing/perl-test-mockobject/APKBUILD +++ /dev/null @@ -1,33 +0,0 @@ -# Contributor: Jeff Bilyk -# Maintainer: Leonardo Arena -pkgname=perl-test-mockobject -_realname=Test-MockObject -pkgver=1.09 -pkgrel=1 -pkgdesc="Perl Mock part of an object or class" -url="http://search.cpan.org/~chromatic/" -arch="noarch" -license="GPL PerlArtistic" -depends="perl" -makedepends="perl-dev" -install= -subpackages="" -source="http://search.cpan.org/CPAN/authors/id/C/CH/CHROMATIC/$_realname-$pkgver.tar.gz" - -_builddir="$srcdir/$_realname-$pkgver" - -build() { - cd $_builddir - PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor || return 1 - make || return 1 -} - -package() { - cd $_builddir - make DESTDIR="$pkgdir" install - # creates file collision among perl modules - find "$pkgdir" -name perllocal.pod -delete - -} - -md5sums="3c9c2842d40fa8c389563c227804d7d8 Test-MockObject-1.09.tar.gz" -- 1.7.4.1 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---