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 918E01EBFCC for ; Thu, 7 Apr 2011 20:04:15 +0000 (UTC) Received: by vws18 with SMTP id 18so2728392vws.13 for ; Thu, 07 Apr 2011 13:04:15 -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 :in-reply-to:references; bh=1NTL8NNjqHEuSgk50iOOU8u3x19FZiqki4sWyKrCIHg=; b=Tj/lMO0CjBM2G5Yv0m4Y1pdlw0gGhnIExsx7F4wKUcflMldQm4Ru8mWxK9UYG+jvQv V3Vjym0GE/AZyXdEswMe5bT2wbFH+G4r8g9hSvdNq/ZrJ2SfFid+BypxBujIrSUSWx6p R5yuOnfD31rnnVMIJDgUBNKa5NJgh3qMUI+dA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; b=tB/Zh/N5DB63YkGvX2ttyMZTQkt6ksY7AMsN1jnWJNLQ585aJ9CqrzPmtBqHpN9pa8 sXNluVF5pvDmMbEzCL1SNzRuXEPq+dWpfd3V71zm0hZjP3N5SUja5bGAf4mQffZi2Lsz e4gBQIITOBjHb+wmi8VbYqnpeeP6b4PSnDd0s= Received: by 10.52.173.79 with SMTP id bi15mr1840095vdc.297.1302206655093; Thu, 07 Apr 2011 13:04:15 -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.13 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 07 Apr 2011 13:04:14 -0700 (PDT) From: Jeff Bilyk To: alpine-devel@lists.alpinelinux.org Cc: Jeff Bilyk Subject: [alpine-devel] [PATCH 2/4] main/perl-sys-hostname-long: moved from testing Date: Thu, 7 Apr 2011 20:03:49 +0000 Message-Id: <1302206631-1530-2-git-send-email-jbilyk@gmail.com> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1302206631-1530-1-git-send-email-jbilyk@gmail.com> References: <1302206631-1530-1-git-send-email-jbilyk@gmail.com> X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: --- main/perl-sys-hostname-long/APKBUILD | 33 +++++++++++++++++++++++++++++++ testing/perl-sys-hostname-long/APKBUILD | 33 ------------------------------- 2 files changed, 33 insertions(+), 33 deletions(-) create mode 100644 main/perl-sys-hostname-long/APKBUILD delete mode 100644 testing/perl-sys-hostname-long/APKBUILD diff --git a/main/perl-sys-hostname-long/APKBUILD b/main/perl-sys-hostname-long/APKBUILD new file mode 100644 index 0000000..4cda7c2 --- /dev/null +++ b/main/perl-sys-hostname-long/APKBUILD @@ -0,0 +1,33 @@ +# Contributor: Jeff Bilyk +# Maintainer: Leonardo Arena +pkgname=perl-sys-hostname-long +_realname=Sys-Hostname-Long +pkgver=1.4 +pkgrel=1 +pkgdesc="Perl Module to get full hostname" +url="http://search.cpan.org/~scott/" +arch="noarch" +license="GPL PerlArtistic" +depends="perl" +makedepends="perl-dev" +install= +subpackages="" +source="http://search.cpan.org/CPAN/authors/id/S/SC/SCOTT/$_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="a5b3c23754cbcff10e283d16c42ec3d3 Sys-Hostname-Long-1.4.tar.gz" diff --git a/testing/perl-sys-hostname-long/APKBUILD b/testing/perl-sys-hostname-long/APKBUILD deleted file mode 100644 index 4cda7c2..0000000 --- a/testing/perl-sys-hostname-long/APKBUILD +++ /dev/null @@ -1,33 +0,0 @@ -# Contributor: Jeff Bilyk -# Maintainer: Leonardo Arena -pkgname=perl-sys-hostname-long -_realname=Sys-Hostname-Long -pkgver=1.4 -pkgrel=1 -pkgdesc="Perl Module to get full hostname" -url="http://search.cpan.org/~scott/" -arch="noarch" -license="GPL PerlArtistic" -depends="perl" -makedepends="perl-dev" -install= -subpackages="" -source="http://search.cpan.org/CPAN/authors/id/S/SC/SCOTT/$_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="a5b3c23754cbcff10e283d16c42ec3d3 Sys-Hostname-Long-1.4.tar.gz" -- 1.7.4.1 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---