~alpine/devel

This thread contains a patchset. You're looking at the original emails, but you may wish to use the patch review UI. Review patch
5 3

[alpine-devel] [PATCH 1/3] testing/perl-dbi: new aport

Jeff Bilyk <jbilyk@gmail.com>
Details
Message ID
<1288539495-24243-1-git-send-email-jbilyk@gmail.com>
Sender timestamp
1288539493
DKIM signature
missing
Download raw message
Patch: +31 -0
new aport
---
 testing/perl-dbi/APKBUILD |   31 +++++++++++++++++++++++++++++++
 1 files changed, 31 insertions(+), 0 deletions(-)
 create mode 100644 testing/perl-dbi/APKBUILD

diff --git a/testing/perl-dbi/APKBUILD b/testing/perl-dbi/APKBUILD
new file mode 100644
index 0000000..4f141e3
--- /dev/null
+++ b/testing/perl-dbi/APKBUILD
@@ -0,0 +1,31 @@
# Contributor: Jeff Bilyk <jbilyk at gmail> 
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=perl-dbi
_realpkgname=DBI
pkgver=1.612
pkgrel=0
pkgdesc="Database independent interface for Perl"
url="http://search.cpan.org/dist/${_realpkgname}"
license="GPL PerlArtistic"
depends=
makedepends="perl perl-dev"
source="http://www.cpan.org/authors/id/T/TI/TIMB/${_realpkgname}-$pkgver.tar.gz"

_builddir="$srcdir"/${_realpkgname}-$pkgver

prepare() {
	return 0
}

build() {
	cd "$_builddir"
	perl Makefile.PL INSTALLDIRS=vendor
	make || return 1
}

package() {
	cd "$_builddir"
	make DESTDIR="$pkgdir" install
}

md5sums="a045d41b8056e549354ab2346fdfac86  DBI-1.612.tar.gz"
-- 
1.7.3.2



---
Unsubscribe:  alpine-devel+unsubscribe@lists.alpinelinux.org
Help:         alpine-devel+help@lists.alpinelinux.org
---

[alpine-devel] [PATCH 2/3] testing/perl-dbi: add doc subpkg

Jeff Bilyk <jbilyk@gmail.com>
Details
Message ID
<1288539495-24243-2-git-send-email-jbilyk@gmail.com>
In-Reply-To
<1288539495-24243-1-git-send-email-jbilyk@gmail.com> (view parent)
Sender timestamp
1288539494
DKIM signature
missing
Download raw message
Patch: +1 -0
testing/perl-dbi: add doc subpkg
---
 testing/perl-dbi/APKBUILD |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/testing/perl-dbi/APKBUILD b/testing/perl-dbi/APKBUILD
index 4f141e3..846a56f 100644
--- a/testing/perl-dbi/APKBUILD
+++ b/testing/perl-dbi/APKBUILD
@@ -9,6 +9,7 @@ url="http://search.cpan.org/dist/${_realpkgname}"
license="GPL PerlArtistic"
depends=
makedepends="perl perl-dev"
subpkgname="$pkgname-doc"
source="http://www.cpan.org/authors/id/T/TI/TIMB/${_realpkgname}-$pkgver.tar.gz"

_builddir="$srcdir"/${_realpkgname}-$pkgver
-- 
1.7.3.2



---
Unsubscribe:  alpine-devel+unsubscribe@lists.alpinelinux.org
Help:         alpine-devel+help@lists.alpinelinux.org
---

[alpine-devel] [PATCH 3/3] testing/perl-dbd-mysql: new aport

Jeff Bilyk <jbilyk@gmail.com>
Details
Message ID
<1288539495-24243-3-git-send-email-jbilyk@gmail.com>
In-Reply-To
<1288539495-24243-1-git-send-email-jbilyk@gmail.com> (view parent)
Sender timestamp
1288539495
DKIM signature
missing
Download raw message
Patch: +31 -0
testing/perl-dbd-mysql: new aport
---
 testing/perl-dbd-mysql/APKBUILD |   31 +++++++++++++++++++++++++++++++
 1 files changed, 31 insertions(+), 0 deletions(-)
 create mode 100644 testing/perl-dbd-mysql/APKBUILD

diff --git a/testing/perl-dbd-mysql/APKBUILD b/testing/perl-dbd-mysql/APKBUILD
new file mode 100644
index 0000000..0c93d57
--- /dev/null
+++ b/testing/perl-dbd-mysql/APKBUILD
@@ -0,0 +1,31 @@
# Contributor: Jeff Bilyk <jbilyk at gmail> 
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=perl-dbd-mysql
_realpkgname=DBD-mysql
pkgver=4.014
pkgrel=0
pkgdesc="Perl CPAN DBD::Mysql module"
url="http://search.cpan.org/dist/${_realpkgname}"
license="GPL PerlArtistic"
depends="libmysqlclient perl-dbi"
makedepends="perl perl-dev mysql-dev"
source="http://www.cpan.org/authors/id/C/CA/CAPTTOFU/${_realpkgname}-$pkgver.tar.gz"

_builddir="$srcdir"/${_realpkgname}-$pkgver

prepare() {
	return 0
}

build() {
	cd "$_builddir"
	perl Makefile.PL INSTALLDIRS=vendor
	make || return 1
}

package() {
	cd "$_builddir"
	make DESTDIR="$pkgdir" install
}

md5sums="74f118a4984e6a49f8ece28e68caf543  DBD-mysql-4.014.tar.gz"
-- 
1.7.3.2



---
Unsubscribe:  alpine-devel+unsubscribe@lists.alpinelinux.org
Help:         alpine-devel+help@lists.alpinelinux.org
---

Re: [alpine-devel] [PATCH 2/3] testing/perl-dbi: add doc subpkg

Leonardo Arena <rnalrd@gmail.com>
Details
Message ID
<AANLkTinF2xiA4i5oG-c53974beiytyfM7ThQo_EVJS8a@mail.gmail.com>
In-Reply-To
<1288539495-24243-2-git-send-email-jbilyk@gmail.com> (view parent)
Sender timestamp
1288599924
DKIM signature
missing
Download raw message
On Sun, Oct 31, 2010 at 4:38 PM, Jeff Bilyk <jbilyk@gmail.com> wrote:
> testing/perl-dbi: add doc subpkg
> ---
>  testing/perl-dbi/APKBUILD |    1 +
>  1 files changed, 1 insertions(+), 0 deletions(-)
>
> diff --git a/testing/perl-dbi/APKBUILD b/testing/perl-dbi/APKBUILD
> index 4f141e3..846a56f 100644
> --- a/testing/perl-dbi/APKBUILD
> +++ b/testing/perl-dbi/APKBUILD
> @@ -9,6 +9,7 @@ url="http://search.cpan.org/dist/${_realpkgname}"
>  license="GPL PerlArtistic"
>  depends=
>  makedepends="perl perl-dev"
> +subpkgname="$pkgname-doc"
>  source="http://www.cpan.org/authors/id/T/TI/TIMB/${_realpkgname}-$pkgver.tar.gz"
>
>  _builddir="$srcdir"/${_realpkgname}-$pkgver
> --
> 1.7.3.2
>

Applied with slight modifications. I usually take care of perl stuff.
I've also removed a pod file that create collision among perl modules.
Please let me know when you think it can be moved to main.

Thanks!

- leo


---
Unsubscribe:  alpine-devel+unsubscribe@lists.alpinelinux.org
Help:         alpine-devel+help@lists.alpinelinux.org
---

Re: [alpine-devel] [PATCH 3/3] testing/perl-dbd-mysql: new aport

Leonardo Arena <rnalrd@gmail.com>
Details
Message ID
<AANLkTikam40cOj7r=fC25z_9o3P2qKK_HLUsw_y_irAE@mail.gmail.com>
In-Reply-To
<1288539495-24243-3-git-send-email-jbilyk@gmail.com> (view parent)
Sender timestamp
1288600358
DKIM signature
missing
Download raw message
On Sun, Oct 31, 2010 at 4:38 PM, Jeff Bilyk <jbilyk@gmail.com> wrote:
> testing/perl-dbd-mysql: new aport
> ---
>  testing/perl-dbd-mysql/APKBUILD |   31 +++++++++++++++++++++++++++++++
>  1 files changed, 31 insertions(+), 0 deletions(-)
>  create mode 100644 testing/perl-dbd-mysql/APKBUILD
>
> diff --git a/testing/perl-dbd-mysql/APKBUILD b/testing/perl-dbd-mysql/APKBUILD
> new file mode 100644
> index 0000000..0c93d57
> --- /dev/null
> +++ b/testing/perl-dbd-mysql/APKBUILD
> @@ -0,0 +1,31 @@
> +# Contributor: Jeff Bilyk <jbilyk at gmail>
> +# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
> +pkgname=perl-dbd-mysql
> +_realpkgname=DBD-mysql
> +pkgver=4.014
> +pkgrel=0
> +pkgdesc="Perl CPAN DBD::Mysql module"
> +url="http://search.cpan.org/dist/${_realpkgname}"
> +license="GPL PerlArtistic"
> +depends="libmysqlclient perl-dbi"
> +makedepends="perl perl-dev mysql-dev"
> +source="http://www.cpan.org/authors/id/C/CA/CAPTTOFU/${_realpkgname}-$pkgver.tar.gz"
> +
> +_builddir="$srcdir"/${_realpkgname}-$pkgver
> +
> +prepare() {
> +       return 0
> +}
> +
> +build() {
> +       cd "$_builddir"
> +       perl Makefile.PL INSTALLDIRS=vendor
> +       make || return 1
> +}
> +
> +package() {
> +       cd "$_builddir"
> +       make DESTDIR="$pkgdir" install
> +}
> +
> +md5sums="74f118a4984e6a49f8ece28e68caf543  DBD-mysql-4.014.tar.gz"
> --
> 1.7.3.2
>

Applied adding zlib-dev as mdep and perl as dep.
Thanks!

-leo


---
Unsubscribe:  alpine-devel+unsubscribe@lists.alpinelinux.org
Help:         alpine-devel+help@lists.alpinelinux.org
---

Re: [alpine-devel] [PATCH 2/3] testing/perl-dbi: add doc subpkg

Natanael Copa <ncopa@alpinelinux.org>
Details
Message ID
<1288620472.16847.1.camel@ncopa-desktop.nor.wtbts.net>
In-Reply-To
<AANLkTinF2xiA4i5oG-c53974beiytyfM7ThQo_EVJS8a@mail.gmail.com> (view parent)
Sender timestamp
1288620472
DKIM signature
missing
Download raw message
On Mon, 2010-11-01 at 09:25 +0100, Leonardo Arena wrote:
> On Sun, Oct 31, 2010 at 4:38 PM, Jeff Bilyk <jbilyk@gmail.com> wrote:
> > testing/perl-dbi: add doc subpkg
> > ---
> >  testing/perl-dbi/APKBUILD |    1 +
> >  1 files changed, 1 insertions(+), 0 deletions(-)

> Applied with slight modifications. I usually take care of perl stuff.
> I've also removed a pod file that create collision among perl modules.
> Please let me know when you think it can be moved to main.

I ran a quick test on it. Good enough. Please move to main.

I assume we will want  perl-dbi drivers for postgres and sqlite too at
some point.

Thanks to both of you!

-nc



---
Unsubscribe:  alpine-devel+unsubscribe@lists.alpinelinux.org
Help:         alpine-devel+help@lists.alpinelinux.org
---
Reply to thread Export thread (mbox)