[arch-commits] Commit in perl-variable-magic/repos (4 files)

2017-08-26 Thread Evangelos Foutras
Date: Saturday, August 26, 2017 @ 11:00:26
  Author: foutrelis
Revision: 253761

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  perl-variable-magic/repos/community-staging-i686/
  perl-variable-magic/repos/community-staging-i686/PKGBUILD
(from rev 253760, perl-variable-magic/trunk/PKGBUILD)
  perl-variable-magic/repos/community-staging-x86_64/
  perl-variable-magic/repos/community-staging-x86_64/PKGBUILD
(from rev 253760, perl-variable-magic/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   55 
 community-staging-x86_64/PKGBUILD |   55 
 2 files changed, 110 insertions(+)

Copied: perl-variable-magic/repos/community-staging-i686/PKGBUILD (from rev 
253760, perl-variable-magic/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-08-26 11:00:26 UTC (rev 253761)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Maxwell Pray a.k.a. Synthead 
+# Contributor: Justin Davis 
+
+pkgname="perl-variable-magic"
+_cpanname="Variable-Magic"
+pkgver=0.61
+pkgrel=4
+pkgdesc="Associate user-defined magic to variables from Perl."
+arch=("i686" "x86_64")
+license=("PerlArtistic" "GPL")
+options=("!emptydirs")
+depends=("perl")
+url="http://search.cpan.org/dist/$_cpanname;
+source=("http://search.cpan.org/CPAN/authors/id/V/VP/VPIT/$_cpanname-$pkgver.tar.gz;)
+
+# Function to change to the working directory and set
+# environment variables to override undesired options.
+prepareEnvironment() {
+  cd "$srcdir/$_cpanname-$pkgver"
+  export \
+PERL_MM_USE_DEFAULT="1" \
+PERL_AUTOINSTALL="--skipdeps" \
+PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='${pkgdir//\'/\\\'}'" \
+PERL_MB_OPT="--installdirs vendor --destdir '${pkgdir//\'/\\\'}'" \
+MODULEBUILDRC="/dev/null"
+}
+sha256sums=('b8afe92e54c72a2ed2ca1b08ce90518b855734f7d33c454d0f66f2c1ccf8a6d7')
+
+build() {
+  prepareEnvironment
+  /usr/bin/perl Makefile.PL
+  make
+}
+
+check() {
+  prepareEnvironment
+  make test
+}
+
+package() {
+  prepareEnvironment
+  make install
+
+  # Remove "perllocal.pod" and ".packlist".
+  find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find "$pkgdir/usr/lib/perl5/" -name "*.so") ]]; then
+   _perlver_min=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]);')
+   _perlver_max=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]+1);')
+   depends+=("perl>=$_perlver_min" "perl<$_perlver_max")
+fi
+# template end;
+}

Copied: perl-variable-magic/repos/community-staging-x86_64/PKGBUILD (from rev 
253760, perl-variable-magic/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-08-26 11:00:26 UTC (rev 253761)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Maxwell Pray a.k.a. Synthead 
+# Contributor: Justin Davis 
+
+pkgname="perl-variable-magic"
+_cpanname="Variable-Magic"
+pkgver=0.61
+pkgrel=4
+pkgdesc="Associate user-defined magic to variables from Perl."
+arch=("i686" "x86_64")
+license=("PerlArtistic" "GPL")
+options=("!emptydirs")
+depends=("perl")
+url="http://search.cpan.org/dist/$_cpanname;
+source=("http://search.cpan.org/CPAN/authors/id/V/VP/VPIT/$_cpanname-$pkgver.tar.gz;)
+
+# Function to change to the working directory and set
+# environment variables to override undesired options.
+prepareEnvironment() {
+  cd "$srcdir/$_cpanname-$pkgver"
+  export \
+PERL_MM_USE_DEFAULT="1" \
+PERL_AUTOINSTALL="--skipdeps" \
+PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='${pkgdir//\'/\\\'}'" \
+PERL_MB_OPT="--installdirs vendor --destdir '${pkgdir//\'/\\\'}'" \
+MODULEBUILDRC="/dev/null"
+}
+sha256sums=('b8afe92e54c72a2ed2ca1b08ce90518b855734f7d33c454d0f66f2c1ccf8a6d7')
+
+build() {
+  prepareEnvironment
+  /usr/bin/perl Makefile.PL
+  make
+}
+
+check() {
+  prepareEnvironment
+  make test
+}
+
+package() {
+  prepareEnvironment
+  make install
+
+  # Remove "perllocal.pod" and ".packlist".
+  find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find "$pkgdir/usr/lib/perl5/" -name "*.so") ]]; then
+   _perlver_min=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]);')
+   _perlver_max=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]+1);')
+   depends+=("perl>=$_perlver_min" "perl<$_perlver_max")
+fi
+# template end;
+}


[arch-commits] Commit in perl-variable-magic/repos (4 files)

2017-08-24 Thread Evangelos Foutras
Date: Thursday, August 24, 2017 @ 13:17:19
  Author: foutrelis
Revision: 253234

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  perl-variable-magic/repos/community-staging-i686/
  perl-variable-magic/repos/community-staging-i686/PKGBUILD
(from rev 253233, perl-variable-magic/trunk/PKGBUILD)
  perl-variable-magic/repos/community-staging-x86_64/
  perl-variable-magic/repos/community-staging-x86_64/PKGBUILD
(from rev 253233, perl-variable-magic/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   55 
 community-staging-x86_64/PKGBUILD |   55 
 2 files changed, 110 insertions(+)

Copied: perl-variable-magic/repos/community-staging-i686/PKGBUILD (from rev 
253233, perl-variable-magic/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-08-24 13:17:19 UTC (rev 253234)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Maxwell Pray a.k.a. Synthead 
+# Contributor: Justin Davis 
+
+pkgname="perl-variable-magic"
+_cpanname="Variable-Magic"
+pkgver=0.61
+pkgrel=3
+pkgdesc="Associate user-defined magic to variables from Perl."
+arch=("i686" "x86_64")
+license=("PerlArtistic" "GPL")
+options=("!emptydirs")
+depends=("perl")
+url="http://search.cpan.org/dist/$_cpanname;
+source=("http://search.cpan.org/CPAN/authors/id/V/VP/VPIT/$_cpanname-$pkgver.tar.gz;)
+
+# Function to change to the working directory and set
+# environment variables to override undesired options.
+prepareEnvironment() {
+  cd "$srcdir/$_cpanname-$pkgver"
+  export \
+PERL_MM_USE_DEFAULT="1" \
+PERL_AUTOINSTALL="--skipdeps" \
+PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='${pkgdir//\'/\\\'}'" \
+PERL_MB_OPT="--installdirs vendor --destdir '${pkgdir//\'/\\\'}'" \
+MODULEBUILDRC="/dev/null"
+}
+sha256sums=('b8afe92e54c72a2ed2ca1b08ce90518b855734f7d33c454d0f66f2c1ccf8a6d7')
+
+build() {
+  prepareEnvironment
+  /usr/bin/perl Makefile.PL
+  make
+}
+
+check() {
+  prepareEnvironment
+  make test
+}
+
+package() {
+  prepareEnvironment
+  make install
+
+  # Remove "perllocal.pod" and ".packlist".
+  find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find "$pkgdir/usr/lib/perl5/" -name "*.so") ]]; then
+   _perlver_min=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]);')
+   _perlver_max=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]+1);')
+   depends+=("perl>=$_perlver_min" "perl<$_perlver_max")
+fi
+# template end;
+}

Copied: perl-variable-magic/repos/community-staging-x86_64/PKGBUILD (from rev 
253233, perl-variable-magic/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-08-24 13:17:19 UTC (rev 253234)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Maxwell Pray a.k.a. Synthead 
+# Contributor: Justin Davis 
+
+pkgname="perl-variable-magic"
+_cpanname="Variable-Magic"
+pkgver=0.61
+pkgrel=3
+pkgdesc="Associate user-defined magic to variables from Perl."
+arch=("i686" "x86_64")
+license=("PerlArtistic" "GPL")
+options=("!emptydirs")
+depends=("perl")
+url="http://search.cpan.org/dist/$_cpanname;
+source=("http://search.cpan.org/CPAN/authors/id/V/VP/VPIT/$_cpanname-$pkgver.tar.gz;)
+
+# Function to change to the working directory and set
+# environment variables to override undesired options.
+prepareEnvironment() {
+  cd "$srcdir/$_cpanname-$pkgver"
+  export \
+PERL_MM_USE_DEFAULT="1" \
+PERL_AUTOINSTALL="--skipdeps" \
+PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='${pkgdir//\'/\\\'}'" \
+PERL_MB_OPT="--installdirs vendor --destdir '${pkgdir//\'/\\\'}'" \
+MODULEBUILDRC="/dev/null"
+}
+sha256sums=('b8afe92e54c72a2ed2ca1b08ce90518b855734f7d33c454d0f66f2c1ccf8a6d7')
+
+build() {
+  prepareEnvironment
+  /usr/bin/perl Makefile.PL
+  make
+}
+
+check() {
+  prepareEnvironment
+  make test
+}
+
+package() {
+  prepareEnvironment
+  make install
+
+  # Remove "perllocal.pod" and ".packlist".
+  find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find "$pkgdir/usr/lib/perl5/" -name "*.so") ]]; then
+   _perlver_min=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]);')
+   _perlver_max=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]+1);')
+   depends+=("perl>=$_perlver_min" "perl<$_perlver_max")
+fi
+# template end;
+}


[arch-commits] Commit in perl-variable-magic/repos (4 files)

2017-06-01 Thread Evangelos Foutras
Date: Thursday, June 1, 2017 @ 09:05:40
  Author: foutrelis
Revision: 231941

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  perl-variable-magic/repos/community-staging-i686/
  perl-variable-magic/repos/community-staging-i686/PKGBUILD
(from rev 231938, perl-variable-magic/trunk/PKGBUILD)
  perl-variable-magic/repos/community-staging-x86_64/
  perl-variable-magic/repos/community-staging-x86_64/PKGBUILD
(from rev 231939, perl-variable-magic/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   55 
 community-staging-x86_64/PKGBUILD |   55 
 2 files changed, 110 insertions(+)

Copied: perl-variable-magic/repos/community-staging-i686/PKGBUILD (from rev 
231938, perl-variable-magic/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-06-01 09:05:40 UTC (rev 231941)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Maxwell Pray a.k.a. Synthead 
+# Contributor: Justin Davis 
+
+pkgname="perl-variable-magic"
+_cpanname="Variable-Magic"
+pkgver=0.61
+pkgrel=2
+pkgdesc="Associate user-defined magic to variables from Perl."
+arch=("i686" "x86_64")
+license=("PerlArtistic" "GPL")
+options=("!emptydirs")
+depends=("perl")
+url="http://search.cpan.org/dist/$_cpanname;
+source=("http://search.cpan.org/CPAN/authors/id/V/VP/VPIT/$_cpanname-$pkgver.tar.gz;)
+
+# Function to change to the working directory and set
+# environment variables to override undesired options.
+prepareEnvironment() {
+  cd "$srcdir/$_cpanname-$pkgver"
+  export \
+PERL_MM_USE_DEFAULT="1" \
+PERL_AUTOINSTALL="--skipdeps" \
+PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='${pkgdir//\'/\\\'}'" \
+PERL_MB_OPT="--installdirs vendor --destdir '${pkgdir//\'/\\\'}'" \
+MODULEBUILDRC="/dev/null"
+}
+sha256sums=('b8afe92e54c72a2ed2ca1b08ce90518b855734f7d33c454d0f66f2c1ccf8a6d7')
+
+build() {
+  prepareEnvironment
+  /usr/bin/perl Makefile.PL
+  make
+}
+
+check() {
+  prepareEnvironment
+  make test
+}
+
+package() {
+  prepareEnvironment
+  make install
+
+  # Remove "perllocal.pod" and ".packlist".
+  find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find "$pkgdir/usr/lib/perl5/" -name "*.so") ]]; then
+   _perlver_min=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]);')
+   _perlver_max=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]+1);')
+   depends+=("perl>=$_perlver_min" "perl<$_perlver_max")
+fi
+# template end;
+}

Copied: perl-variable-magic/repos/community-staging-x86_64/PKGBUILD (from rev 
231939, perl-variable-magic/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-06-01 09:05:40 UTC (rev 231941)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Maxwell Pray a.k.a. Synthead 
+# Contributor: Justin Davis 
+
+pkgname="perl-variable-magic"
+_cpanname="Variable-Magic"
+pkgver=0.61
+pkgrel=2
+pkgdesc="Associate user-defined magic to variables from Perl."
+arch=("i686" "x86_64")
+license=("PerlArtistic" "GPL")
+options=("!emptydirs")
+depends=("perl")
+url="http://search.cpan.org/dist/$_cpanname;
+source=("http://search.cpan.org/CPAN/authors/id/V/VP/VPIT/$_cpanname-$pkgver.tar.gz;)
+
+# Function to change to the working directory and set
+# environment variables to override undesired options.
+prepareEnvironment() {
+  cd "$srcdir/$_cpanname-$pkgver"
+  export \
+PERL_MM_USE_DEFAULT="1" \
+PERL_AUTOINSTALL="--skipdeps" \
+PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='${pkgdir//\'/\\\'}'" \
+PERL_MB_OPT="--installdirs vendor --destdir '${pkgdir//\'/\\\'}'" \
+MODULEBUILDRC="/dev/null"
+}
+sha256sums=('b8afe92e54c72a2ed2ca1b08ce90518b855734f7d33c454d0f66f2c1ccf8a6d7')
+
+build() {
+  prepareEnvironment
+  /usr/bin/perl Makefile.PL
+  make
+}
+
+check() {
+  prepareEnvironment
+  make test
+}
+
+package() {
+  prepareEnvironment
+  make install
+
+  # Remove "perllocal.pod" and ".packlist".
+  find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find "$pkgdir/usr/lib/perl5/" -name "*.so") ]]; then
+   _perlver_min=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]);')
+   _perlver_max=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]+1);')
+   depends+=("perl>=$_perlver_min" "perl<$_perlver_max")
+fi
+# template end;
+}


[arch-commits] Commit in perl-variable-magic/repos (4 files)

2017-01-30 Thread Sergej Pupykin
Date: Monday, January 30, 2017 @ 10:37:52
  Author: spupykin
Revision: 209457

archrelease: copy trunk to community-i686, community-x86_64

Added:
  perl-variable-magic/repos/community-i686/PKGBUILD
(from rev 209456, perl-variable-magic/trunk/PKGBUILD)
  perl-variable-magic/repos/community-x86_64/PKGBUILD
(from rev 209456, perl-variable-magic/trunk/PKGBUILD)
Deleted:
  perl-variable-magic/repos/community-i686/PKGBUILD
  perl-variable-magic/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  110 
 community-i686/PKGBUILD   |   55 --
 community-x86_64/PKGBUILD |   55 --
 3 files changed, 110 insertions(+), 110 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-01-30 10:37:36 UTC (rev 209456)
+++ community-i686/PKGBUILD 2017-01-30 10:37:52 UTC (rev 209457)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Maxwell Pray a.k.a. Synthead 
-# Contributor: Justin Davis 
-
-pkgname="perl-variable-magic"
-_cpanname="Variable-Magic"
-pkgver=0.60
-pkgrel=1
-pkgdesc="Associate user-defined magic to variables from Perl."
-arch=("i686" "x86_64")
-license=("PerlArtistic" "GPL")
-options=("!emptydirs")
-depends=("perl")
-url="http://search.cpan.org/dist/$_cpanname;
-source=("http://search.cpan.org/CPAN/authors/id/V/VP/VPIT/$_cpanname-$pkgver.tar.gz;)
-
-# Function to change to the working directory and set
-# environment variables to override undesired options.
-prepareEnvironment() {
-  cd "$srcdir/$_cpanname-$pkgver"
-  export \
-PERL_MM_USE_DEFAULT="1" \
-PERL_AUTOINSTALL="--skipdeps" \
-PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='${pkgdir//\'/\\\'}'" \
-PERL_MB_OPT="--installdirs vendor --destdir '${pkgdir//\'/\\\'}'" \
-MODULEBUILDRC="/dev/null"
-}
-md5sums=('ddc93efff919735e2f4e2306a4b3c81a')
-
-build() {
-  prepareEnvironment
-  /usr/bin/perl Makefile.PL
-  make
-}
-
-check() {
-  prepareEnvironment
-  make test
-}
-
-package() {
-  prepareEnvironment
-  make install
-
-  # Remove "perllocal.pod" and ".packlist".
-  find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
-# template start; name=perl-binary-module-dependency; version=1;
-if [[ $(find "$pkgdir/usr/lib/perl5/" -name "*.so") ]]; then
-   _perlver_min=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]);')
-   _perlver_max=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]+1);')
-   depends+=("perl>=$_perlver_min" "perl<$_perlver_max")
-fi
-# template end;
-}

Copied: perl-variable-magic/repos/community-i686/PKGBUILD (from rev 209456, 
perl-variable-magic/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-01-30 10:37:52 UTC (rev 209457)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Maxwell Pray a.k.a. Synthead 
+# Contributor: Justin Davis 
+
+pkgname="perl-variable-magic"
+_cpanname="Variable-Magic"
+pkgver=0.61
+pkgrel=1
+pkgdesc="Associate user-defined magic to variables from Perl."
+arch=("i686" "x86_64")
+license=("PerlArtistic" "GPL")
+options=("!emptydirs")
+depends=("perl")
+url="http://search.cpan.org/dist/$_cpanname;
+source=("http://search.cpan.org/CPAN/authors/id/V/VP/VPIT/$_cpanname-$pkgver.tar.gz;)
+
+# Function to change to the working directory and set
+# environment variables to override undesired options.
+prepareEnvironment() {
+  cd "$srcdir/$_cpanname-$pkgver"
+  export \
+PERL_MM_USE_DEFAULT="1" \
+PERL_AUTOINSTALL="--skipdeps" \
+PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='${pkgdir//\'/\\\'}'" \
+PERL_MB_OPT="--installdirs vendor --destdir '${pkgdir//\'/\\\'}'" \
+MODULEBUILDRC="/dev/null"
+}
+sha256sums=('b8afe92e54c72a2ed2ca1b08ce90518b855734f7d33c454d0f66f2c1ccf8a6d7')
+
+build() {
+  prepareEnvironment
+  /usr/bin/perl Makefile.PL
+  make
+}
+
+check() {
+  prepareEnvironment
+  make test
+}
+
+package() {
+  prepareEnvironment
+  make install
+
+  # Remove "perllocal.pod" and ".packlist".
+  find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find "$pkgdir/usr/lib/perl5/" -name "*.so") ]]; then
+   _perlver_min=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]);')
+   _perlver_max=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]+1);')
+   depends+=("perl>=$_perlver_min" "perl<$_perlver_max")
+fi
+# template end;
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-01-30 10:37:36 UTC (rev 209456)
+++ 

[arch-commits] Commit in perl-variable-magic/repos (4 files)

2016-10-10 Thread Sergej Pupykin
Date: Monday, October 10, 2016 @ 10:47:57
  Author: spupykin
Revision: 191850

archrelease: copy trunk to community-i686, community-x86_64

Added:
  perl-variable-magic/repos/community-i686/PKGBUILD
(from rev 191849, perl-variable-magic/trunk/PKGBUILD)
  perl-variable-magic/repos/community-x86_64/PKGBUILD
(from rev 191849, perl-variable-magic/trunk/PKGBUILD)
Deleted:
  perl-variable-magic/repos/community-i686/PKGBUILD
  perl-variable-magic/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  110 
 community-i686/PKGBUILD   |   55 --
 community-x86_64/PKGBUILD |   55 --
 3 files changed, 110 insertions(+), 110 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-10-10 10:47:40 UTC (rev 191849)
+++ community-i686/PKGBUILD 2016-10-10 10:47:57 UTC (rev 191850)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Maxwell Pray a.k.a. Synthead 
-# Contributor: Justin Davis 
-
-pkgname="perl-variable-magic"
-_cpanname="Variable-Magic"
-pkgver=0.59
-pkgrel=2
-pkgdesc="Associate user-defined magic to variables from Perl."
-arch=("i686" "x86_64")
-license=("PerlArtistic" "GPL")
-options=("!emptydirs")
-depends=("perl")
-url="http://search.cpan.org/dist/$_cpanname;
-source=("http://search.cpan.org/CPAN/authors/id/V/VP/VPIT/$_cpanname-$pkgver.tar.gz;)
-
-# Function to change to the working directory and set
-# environment variables to override undesired options.
-prepareEnvironment() {
-  cd "$srcdir/$_cpanname-$pkgver"
-  export \
-PERL_MM_USE_DEFAULT="1" \
-PERL_AUTOINSTALL="--skipdeps" \
-PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='${pkgdir//\'/\\\'}'" \
-PERL_MB_OPT="--installdirs vendor --destdir '${pkgdir//\'/\\\'}'" \
-MODULEBUILDRC="/dev/null"
-}
-md5sums=('f43b0182fe4b0f38bcdb69a4a838785e')
-
-build() {
-  prepareEnvironment
-  /usr/bin/perl Makefile.PL
-  make
-}
-
-check() {
-  prepareEnvironment
-  make test
-}
-
-package() {
-  prepareEnvironment
-  make install
-
-  # Remove "perllocal.pod" and ".packlist".
-  find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
-# template start; name=perl-binary-module-dependency; version=1;
-if [[ $(find "$pkgdir/usr/lib/perl5/" -name "*.so") ]]; then
-   _perlver_min=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]);')
-   _perlver_max=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]+1);')
-   depends+=("perl>=$_perlver_min" "perl<$_perlver_max")
-fi
-# template end;
-}

Copied: perl-variable-magic/repos/community-i686/PKGBUILD (from rev 191849, 
perl-variable-magic/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-10-10 10:47:57 UTC (rev 191850)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Maxwell Pray a.k.a. Synthead 
+# Contributor: Justin Davis 
+
+pkgname="perl-variable-magic"
+_cpanname="Variable-Magic"
+pkgver=0.60
+pkgrel=1
+pkgdesc="Associate user-defined magic to variables from Perl."
+arch=("i686" "x86_64")
+license=("PerlArtistic" "GPL")
+options=("!emptydirs")
+depends=("perl")
+url="http://search.cpan.org/dist/$_cpanname;
+source=("http://search.cpan.org/CPAN/authors/id/V/VP/VPIT/$_cpanname-$pkgver.tar.gz;)
+
+# Function to change to the working directory and set
+# environment variables to override undesired options.
+prepareEnvironment() {
+  cd "$srcdir/$_cpanname-$pkgver"
+  export \
+PERL_MM_USE_DEFAULT="1" \
+PERL_AUTOINSTALL="--skipdeps" \
+PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='${pkgdir//\'/\\\'}'" \
+PERL_MB_OPT="--installdirs vendor --destdir '${pkgdir//\'/\\\'}'" \
+MODULEBUILDRC="/dev/null"
+}
+md5sums=('ddc93efff919735e2f4e2306a4b3c81a')
+
+build() {
+  prepareEnvironment
+  /usr/bin/perl Makefile.PL
+  make
+}
+
+check() {
+  prepareEnvironment
+  make test
+}
+
+package() {
+  prepareEnvironment
+  make install
+
+  # Remove "perllocal.pod" and ".packlist".
+  find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find "$pkgdir/usr/lib/perl5/" -name "*.so") ]]; then
+   _perlver_min=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]);')
+   _perlver_max=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]+1);')
+   depends+=("perl>=$_perlver_min" "perl<$_perlver_max")
+fi
+# template end;
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-10-10 10:47:40 UTC (rev 191849)
+++ community-x86_64/PKGBUILD   2016-10-10 10:47:57 UTC (rev 

[arch-commits] Commit in perl-variable-magic/repos (4 files)

2016-05-10 Thread Sergej Pupykin
Date: Tuesday, May 10, 2016 @ 20:25:52
  Author: spupykin
Revision: 174655

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  perl-variable-magic/repos/community-staging-i686/
  perl-variable-magic/repos/community-staging-i686/PKGBUILD
(from rev 174654, perl-variable-magic/trunk/PKGBUILD)
  perl-variable-magic/repos/community-staging-x86_64/
  perl-variable-magic/repos/community-staging-x86_64/PKGBUILD
(from rev 174654, perl-variable-magic/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   55 
 community-staging-x86_64/PKGBUILD |   55 
 2 files changed, 110 insertions(+)

Copied: perl-variable-magic/repos/community-staging-i686/PKGBUILD (from rev 
174654, perl-variable-magic/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-05-10 18:25:52 UTC (rev 174655)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Maxwell Pray a.k.a. Synthead 
+# Contributor: Justin Davis 
+
+pkgname="perl-variable-magic"
+_cpanname="Variable-Magic"
+pkgver=0.59
+pkgrel=2
+pkgdesc="Associate user-defined magic to variables from Perl."
+arch=("i686" "x86_64")
+license=("PerlArtistic" "GPL")
+options=("!emptydirs")
+depends=("perl")
+url="http://search.cpan.org/dist/$_cpanname;
+source=("http://search.cpan.org/CPAN/authors/id/V/VP/VPIT/$_cpanname-$pkgver.tar.gz;)
+
+# Function to change to the working directory and set
+# environment variables to override undesired options.
+prepareEnvironment() {
+  cd "$srcdir/$_cpanname-$pkgver"
+  export \
+PERL_MM_USE_DEFAULT="1" \
+PERL_AUTOINSTALL="--skipdeps" \
+PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='${pkgdir//\'/\\\'}'" \
+PERL_MB_OPT="--installdirs vendor --destdir '${pkgdir//\'/\\\'}'" \
+MODULEBUILDRC="/dev/null"
+}
+md5sums=('f43b0182fe4b0f38bcdb69a4a838785e')
+
+build() {
+  prepareEnvironment
+  /usr/bin/perl Makefile.PL
+  make
+}
+
+check() {
+  prepareEnvironment
+  make test
+}
+
+package() {
+  prepareEnvironment
+  make install
+
+  # Remove "perllocal.pod" and ".packlist".
+  find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find "$pkgdir/usr/lib/perl5/" -name "*.so") ]]; then
+   _perlver_min=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]);')
+   _perlver_max=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]+1);')
+   depends+=("perl>=$_perlver_min" "perl<$_perlver_max")
+fi
+# template end;
+}

Copied: perl-variable-magic/repos/community-staging-x86_64/PKGBUILD (from rev 
174654, perl-variable-magic/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-05-10 18:25:52 UTC (rev 174655)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Maxwell Pray a.k.a. Synthead 
+# Contributor: Justin Davis 
+
+pkgname="perl-variable-magic"
+_cpanname="Variable-Magic"
+pkgver=0.59
+pkgrel=2
+pkgdesc="Associate user-defined magic to variables from Perl."
+arch=("i686" "x86_64")
+license=("PerlArtistic" "GPL")
+options=("!emptydirs")
+depends=("perl")
+url="http://search.cpan.org/dist/$_cpanname;
+source=("http://search.cpan.org/CPAN/authors/id/V/VP/VPIT/$_cpanname-$pkgver.tar.gz;)
+
+# Function to change to the working directory and set
+# environment variables to override undesired options.
+prepareEnvironment() {
+  cd "$srcdir/$_cpanname-$pkgver"
+  export \
+PERL_MM_USE_DEFAULT="1" \
+PERL_AUTOINSTALL="--skipdeps" \
+PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='${pkgdir//\'/\\\'}'" \
+PERL_MB_OPT="--installdirs vendor --destdir '${pkgdir//\'/\\\'}'" \
+MODULEBUILDRC="/dev/null"
+}
+md5sums=('f43b0182fe4b0f38bcdb69a4a838785e')
+
+build() {
+  prepareEnvironment
+  /usr/bin/perl Makefile.PL
+  make
+}
+
+check() {
+  prepareEnvironment
+  make test
+}
+
+package() {
+  prepareEnvironment
+  make install
+
+  # Remove "perllocal.pod" and ".packlist".
+  find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find "$pkgdir/usr/lib/perl5/" -name "*.so") ]]; then
+   _perlver_min=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]);')
+   _perlver_max=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]+1);')
+   depends+=("perl>=$_perlver_min" "perl<$_perlver_max")
+fi
+# template end;
+}


[arch-commits] Commit in perl-variable-magic/repos (4 files)

2016-03-12 Thread Sergej Pupykin
Date: Saturday, March 12, 2016 @ 12:15:55
  Author: spupykin
Revision: 166318

archrelease: copy trunk to community-i686, community-x86_64

Added:
  perl-variable-magic/repos/community-i686/PKGBUILD
(from rev 166317, perl-variable-magic/trunk/PKGBUILD)
  perl-variable-magic/repos/community-x86_64/PKGBUILD
(from rev 166317, perl-variable-magic/trunk/PKGBUILD)
Deleted:
  perl-variable-magic/repos/community-i686/PKGBUILD
  perl-variable-magic/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  110 
 community-i686/PKGBUILD   |   55 --
 community-x86_64/PKGBUILD |   55 --
 3 files changed, 110 insertions(+), 110 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-03-12 11:15:39 UTC (rev 166317)
+++ community-i686/PKGBUILD 2016-03-12 11:15:55 UTC (rev 166318)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Maxwell Pray a.k.a. Synthead 
-# Contributor: Justin Davis 
-
-pkgname="perl-variable-magic"
-_cpanname="Variable-Magic"
-pkgver=0.57
-pkgrel=1
-pkgdesc="Associate user-defined magic to variables from Perl."
-arch=("i686" "x86_64")
-license=("PerlArtistic" "GPL")
-options=("!emptydirs")
-depends=("perl")
-url="http://search.cpan.org/dist/$_cpanname;
-source=("http://search.cpan.org/CPAN/authors/id/V/VP/VPIT/$_cpanname-$pkgver.tar.gz;)
-
-# Function to change to the working directory and set
-# environment variables to override undesired options.
-prepareEnvironment() {
-  cd "$srcdir/$_cpanname-$pkgver"
-  export \
-PERL_MM_USE_DEFAULT="1" \
-PERL_AUTOINSTALL="--skipdeps" \
-PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='${pkgdir//\'/\\\'}'" \
-PERL_MB_OPT="--installdirs vendor --destdir '${pkgdir//\'/\\\'}'" \
-MODULEBUILDRC="/dev/null"
-}
-md5sums=('d208dd12d0835f518784f83f48a24e02')
-
-build() {
-  prepareEnvironment
-  /usr/bin/perl Makefile.PL
-  make
-}
-
-check() {
-  prepareEnvironment
-  make test
-}
-
-package() {
-  prepareEnvironment
-  make install
-
-  # Remove "perllocal.pod" and ".packlist".
-  find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
-# template start; name=perl-binary-module-dependency; version=1;
-if [[ $(find "$pkgdir/usr/lib/perl5/" -name "*.so") ]]; then
-   _perlver_min=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]);')
-   _perlver_max=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]+1);')
-   depends+=("perl>=$_perlver_min" "perl<$_perlver_max")
-fi
-# template end;
-}

Copied: perl-variable-magic/repos/community-i686/PKGBUILD (from rev 166317, 
perl-variable-magic/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-03-12 11:15:55 UTC (rev 166318)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Maxwell Pray a.k.a. Synthead 
+# Contributor: Justin Davis 
+
+pkgname="perl-variable-magic"
+_cpanname="Variable-Magic"
+pkgver=0.59
+pkgrel=1
+pkgdesc="Associate user-defined magic to variables from Perl."
+arch=("i686" "x86_64")
+license=("PerlArtistic" "GPL")
+options=("!emptydirs")
+depends=("perl")
+url="http://search.cpan.org/dist/$_cpanname;
+source=("http://search.cpan.org/CPAN/authors/id/V/VP/VPIT/$_cpanname-$pkgver.tar.gz;)
+
+# Function to change to the working directory and set
+# environment variables to override undesired options.
+prepareEnvironment() {
+  cd "$srcdir/$_cpanname-$pkgver"
+  export \
+PERL_MM_USE_DEFAULT="1" \
+PERL_AUTOINSTALL="--skipdeps" \
+PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='${pkgdir//\'/\\\'}'" \
+PERL_MB_OPT="--installdirs vendor --destdir '${pkgdir//\'/\\\'}'" \
+MODULEBUILDRC="/dev/null"
+}
+md5sums=('f43b0182fe4b0f38bcdb69a4a838785e')
+
+build() {
+  prepareEnvironment
+  /usr/bin/perl Makefile.PL
+  make
+}
+
+check() {
+  prepareEnvironment
+  make test
+}
+
+package() {
+  prepareEnvironment
+  make install
+
+  # Remove "perllocal.pod" and ".packlist".
+  find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find "$pkgdir/usr/lib/perl5/" -name "*.so") ]]; then
+   _perlver_min=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]);')
+   _perlver_max=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]+1);')
+   depends+=("perl>=$_perlver_min" "perl<$_perlver_max")
+fi
+# template end;
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-03-12 11:15:39 UTC (rev 166317)
+++ community-x86_64/PKGBUILD   2016-03-12 11:15:55 UTC (rev 

[arch-commits] Commit in perl-variable-magic/repos (4 files)

2015-06-02 Thread Sergej Pupykin
Date: Tuesday, June 2, 2015 @ 20:36:48
  Author: spupykin
Revision: 134637

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  perl-variable-magic/repos/community-staging-i686/
  perl-variable-magic/repos/community-staging-i686/PKGBUILD
(from rev 134636, perl-variable-magic/trunk/PKGBUILD)
  perl-variable-magic/repos/community-staging-x86_64/
  perl-variable-magic/repos/community-staging-x86_64/PKGBUILD
(from rev 134636, perl-variable-magic/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   55 
 community-staging-x86_64/PKGBUILD |   55 
 2 files changed, 110 insertions(+)

Copied: perl-variable-magic/repos/community-staging-i686/PKGBUILD (from rev 
134636, perl-variable-magic/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-06-02 18:36:48 UTC (rev 134637)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Sergej Pupykin arch+...@sergej.pp.ru
+# Maintainer: Maxwell Pray a.k.a. Synthead synth...@gmail.com
+# Contributor: Justin Davis jrc...@gmail.com
+
+pkgname=perl-variable-magic
+_cpanname=Variable-Magic
+pkgver=0.57
+pkgrel=1
+pkgdesc=Associate user-defined magic to variables from Perl.
+arch=(i686 x86_64)
+license=(PerlArtistic GPL)
+options=(!emptydirs)
+depends=(perl)
+url=http://search.cpan.org/dist/$_cpanname;
+source=(http://search.cpan.org/CPAN/authors/id/V/VP/VPIT/$_cpanname-$pkgver.tar.gz;)
+
+# Function to change to the working directory and set
+# environment variables to override undesired options.
+prepareEnvironment() {
+  cd $srcdir/$_cpanname-$pkgver
+  export \
+PERL_MM_USE_DEFAULT=1 \
+PERL_AUTOINSTALL=--skipdeps \
+PERL_MM_OPT=INSTALLDIRS=vendor DESTDIR='${pkgdir//\'/\\\'}' \
+PERL_MB_OPT=--installdirs vendor --destdir '${pkgdir//\'/\\\'}' \
+MODULEBUILDRC=/dev/null
+}
+md5sums=('d208dd12d0835f518784f83f48a24e02')
+
+build() {
+  prepareEnvironment
+  /usr/bin/perl Makefile.PL
+  make
+}
+
+check() {
+  prepareEnvironment
+  make test
+}
+
+package() {
+  prepareEnvironment
+  make install
+
+  # Remove perllocal.pod and .packlist.
+  find $pkgdir -name .packlist -o -name perllocal.pod -delete
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find $pkgdir/usr/lib/perl5/ -name *.so) ]]; then
+   _perlver_min=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]);')
+   _perlver_max=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]+1);')
+   depends+=(perl=$_perlver_min perl$_perlver_max)
+fi
+# template end;
+}

Copied: perl-variable-magic/repos/community-staging-x86_64/PKGBUILD (from rev 
134636, perl-variable-magic/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-06-02 18:36:48 UTC (rev 134637)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Sergej Pupykin arch+...@sergej.pp.ru
+# Maintainer: Maxwell Pray a.k.a. Synthead synth...@gmail.com
+# Contributor: Justin Davis jrc...@gmail.com
+
+pkgname=perl-variable-magic
+_cpanname=Variable-Magic
+pkgver=0.57
+pkgrel=1
+pkgdesc=Associate user-defined magic to variables from Perl.
+arch=(i686 x86_64)
+license=(PerlArtistic GPL)
+options=(!emptydirs)
+depends=(perl)
+url=http://search.cpan.org/dist/$_cpanname;
+source=(http://search.cpan.org/CPAN/authors/id/V/VP/VPIT/$_cpanname-$pkgver.tar.gz;)
+
+# Function to change to the working directory and set
+# environment variables to override undesired options.
+prepareEnvironment() {
+  cd $srcdir/$_cpanname-$pkgver
+  export \
+PERL_MM_USE_DEFAULT=1 \
+PERL_AUTOINSTALL=--skipdeps \
+PERL_MM_OPT=INSTALLDIRS=vendor DESTDIR='${pkgdir//\'/\\\'}' \
+PERL_MB_OPT=--installdirs vendor --destdir '${pkgdir//\'/\\\'}' \
+MODULEBUILDRC=/dev/null
+}
+md5sums=('d208dd12d0835f518784f83f48a24e02')
+
+build() {
+  prepareEnvironment
+  /usr/bin/perl Makefile.PL
+  make
+}
+
+check() {
+  prepareEnvironment
+  make test
+}
+
+package() {
+  prepareEnvironment
+  make install
+
+  # Remove perllocal.pod and .packlist.
+  find $pkgdir -name .packlist -o -name perllocal.pod -delete
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find $pkgdir/usr/lib/perl5/ -name *.so) ]]; then
+   _perlver_min=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]);')
+   _perlver_max=$(perl -e '$v = $^V-{version}; print 
$v-[0]...($v-[1]+1);')
+   depends+=(perl=$_perlver_min perl$_perlver_max)
+fi
+# template end;
+}


[arch-commits] Commit in perl-variable-magic/repos (4 files)

2015-03-28 Thread Sergej Pupykin
Date: Saturday, March 28, 2015 @ 13:05:21
  Author: spupykin
Revision: 130112

archrelease: copy trunk to community-i686, community-x86_64

Added:
  perl-variable-magic/repos/community-i686/PKGBUILD
(from rev 130111, perl-variable-magic/trunk/PKGBUILD)
  perl-variable-magic/repos/community-x86_64/PKGBUILD
(from rev 130111, perl-variable-magic/trunk/PKGBUILD)
Deleted:
  perl-variable-magic/repos/community-i686/PKGBUILD
  perl-variable-magic/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   98 
 community-i686/PKGBUILD   |   48 -
 community-x86_64/PKGBUILD |   48 -
 3 files changed, 98 insertions(+), 96 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-03-28 12:05:08 UTC (rev 130111)
+++ community-i686/PKGBUILD 2015-03-28 12:05:21 UTC (rev 130112)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin arch+...@sergej.pp.ru
-# Maintainer: Maxwell Pray a.k.a. Synthead synth...@gmail.com
-# Contributor: Justin Davis jrc...@gmail.com
-
-pkgname=perl-variable-magic
-_cpanname=Variable-Magic
-pkgver=0.54
-pkgrel=1
-pkgdesc=Associate user-defined magic to variables from Perl.
-arch=(i686 x86_64)
-license=(PerlArtistic GPL)
-options=(!emptydirs)
-depends=(perl=5.5.0)
-url=http://search.cpan.org/dist/$_cpanname;
-source=(http://search.cpan.org/CPAN/authors/id/V/VP/VPIT/$_cpanname-$pkgver.tar.gz;)
-sha1sums=('3f254afd1923f42585dd7c30fcc283165f2f178a')
-
-# Function to change to the working directory and set
-# environment variables to override undesired options.
-prepareEnvironment() {
-  cd $srcdir/$_cpanname-$pkgver
-  export \
-PERL_MM_USE_DEFAULT=1 \
-PERL_AUTOINSTALL=--skipdeps \
-PERL_MM_OPT=INSTALLDIRS=vendor DESTDIR='${pkgdir//\'/\\\'}' \
-PERL_MB_OPT=--installdirs vendor --destdir '${pkgdir//\'/\\\'}' \
-MODULEBUILDRC=/dev/null
-}
-
-build() {
-  prepareEnvironment
-  /usr/bin/perl Makefile.PL
-  make
-}
-
-check() {
-  prepareEnvironment
-  make test
-}
-
-package() {
-  prepareEnvironment
-  make install
-
-  # Remove perllocal.pod and .packlist.
-  find $pkgdir -name .packlist -o -name perllocal.pod -delete
-}

Copied: perl-variable-magic/repos/community-i686/PKGBUILD (from rev 130111, 
perl-variable-magic/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-03-28 12:05:21 UTC (rev 130112)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Sergej Pupykin arch+...@sergej.pp.ru
+# Maintainer: Maxwell Pray a.k.a. Synthead synth...@gmail.com
+# Contributor: Justin Davis jrc...@gmail.com
+
+pkgname=perl-variable-magic
+_cpanname=Variable-Magic
+pkgver=0.56
+pkgrel=1
+pkgdesc=Associate user-defined magic to variables from Perl.
+arch=(i686 x86_64)
+license=(PerlArtistic GPL)
+options=(!emptydirs)
+depends=(perl=5.5.0)
+url=http://search.cpan.org/dist/$_cpanname;
+source=(http://search.cpan.org/CPAN/authors/id/V/VP/VPIT/$_cpanname-$pkgver.tar.gz;)
+sha1sums=('3f254afd1923f42585dd7c30fcc283165f2f178a')
+
+# Function to change to the working directory and set
+# environment variables to override undesired options.
+prepareEnvironment() {
+  cd $srcdir/$_cpanname-$pkgver
+  export \
+PERL_MM_USE_DEFAULT=1 \
+PERL_AUTOINSTALL=--skipdeps \
+PERL_MM_OPT=INSTALLDIRS=vendor DESTDIR='${pkgdir//\'/\\\'}' \
+PERL_MB_OPT=--installdirs vendor --destdir '${pkgdir//\'/\\\'}' \
+MODULEBUILDRC=/dev/null
+}
+sha1sums=('a405133ed8f068e9ddc7be0f7734d2c8a1c05201')
+
+build() {
+  prepareEnvironment
+  /usr/bin/perl Makefile.PL
+  make
+}
+
+check() {
+  prepareEnvironment
+  make test
+}
+
+package() {
+  prepareEnvironment
+  make install
+
+  # Remove perllocal.pod and .packlist.
+  find $pkgdir -name .packlist -o -name perllocal.pod -delete
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-03-28 12:05:08 UTC (rev 130111)
+++ community-x86_64/PKGBUILD   2015-03-28 12:05:21 UTC (rev 130112)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin arch+...@sergej.pp.ru
-# Maintainer: Maxwell Pray a.k.a. Synthead synth...@gmail.com
-# Contributor: Justin Davis jrc...@gmail.com
-
-pkgname=perl-variable-magic
-_cpanname=Variable-Magic
-pkgver=0.54
-pkgrel=1
-pkgdesc=Associate user-defined magic to variables from Perl.
-arch=(i686 x86_64)
-license=(PerlArtistic GPL)
-options=(!emptydirs)
-depends=(perl=5.5.0)
-url=http://search.cpan.org/dist/$_cpanname;
-source=(http://search.cpan.org/CPAN/authors/id/V/VP/VPIT/$_cpanname-$pkgver.tar.gz;)
-sha1sums=('3f254afd1923f42585dd7c30fcc283165f2f178a')
-
-# Function to change to the working directory and set
-# environment variables to override undesired options.
-prepareEnvironment() {
-  cd 

[arch-commits] Commit in perl-variable-magic/repos (4 files)

2014-12-25 Thread Sergej Pupykin
Date: Thursday, December 25, 2014 @ 13:59:28
  Author: spupykin
Revision: 124548

archrelease: copy trunk to community-i686, community-x86_64

Added:
  perl-variable-magic/repos/community-i686/
  perl-variable-magic/repos/community-i686/PKGBUILD
(from rev 124547, perl-variable-magic/trunk/PKGBUILD)
  perl-variable-magic/repos/community-x86_64/
  perl-variable-magic/repos/community-x86_64/PKGBUILD
(from rev 124547, perl-variable-magic/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   48 
 community-x86_64/PKGBUILD |   48 
 2 files changed, 96 insertions(+)

Copied: perl-variable-magic/repos/community-i686/PKGBUILD (from rev 124547, 
perl-variable-magic/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-12-25 12:59:28 UTC (rev 124548)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Sergej Pupykin arch+...@sergej.pp.ru
+# Maintainer: Maxwell Pray a.k.a. Synthead synth...@gmail.com
+# Contributor: Justin Davis jrc...@gmail.com
+
+pkgname=perl-variable-magic
+_cpanname=Variable-Magic
+pkgver=0.54
+pkgrel=1
+pkgdesc=Associate user-defined magic to variables from Perl.
+arch=(i686 x86_64)
+license=(PerlArtistic GPL)
+options=(!emptydirs)
+depends=(perl=5.5.0)
+url=http://search.cpan.org/dist/$_cpanname;
+source=(http://search.cpan.org/CPAN/authors/id/V/VP/VPIT/$_cpanname-$pkgver.tar.gz;)
+sha1sums=('3f254afd1923f42585dd7c30fcc283165f2f178a')
+
+# Function to change to the working directory and set
+# environment variables to override undesired options.
+prepareEnvironment() {
+  cd $srcdir/$_cpanname-$pkgver
+  export \
+PERL_MM_USE_DEFAULT=1 \
+PERL_AUTOINSTALL=--skipdeps \
+PERL_MM_OPT=INSTALLDIRS=vendor DESTDIR='${pkgdir//\'/\\\'}' \
+PERL_MB_OPT=--installdirs vendor --destdir '${pkgdir//\'/\\\'}' \
+MODULEBUILDRC=/dev/null
+}
+
+build() {
+  prepareEnvironment
+  /usr/bin/perl Makefile.PL
+  make
+}
+
+check() {
+  prepareEnvironment
+  make test
+}
+
+package() {
+  prepareEnvironment
+  make install
+
+  # Remove perllocal.pod and .packlist.
+  find $pkgdir -name .packlist -o -name perllocal.pod -delete
+}

Copied: perl-variable-magic/repos/community-x86_64/PKGBUILD (from rev 124547, 
perl-variable-magic/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-12-25 12:59:28 UTC (rev 124548)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Sergej Pupykin arch+...@sergej.pp.ru
+# Maintainer: Maxwell Pray a.k.a. Synthead synth...@gmail.com
+# Contributor: Justin Davis jrc...@gmail.com
+
+pkgname=perl-variable-magic
+_cpanname=Variable-Magic
+pkgver=0.54
+pkgrel=1
+pkgdesc=Associate user-defined magic to variables from Perl.
+arch=(i686 x86_64)
+license=(PerlArtistic GPL)
+options=(!emptydirs)
+depends=(perl=5.5.0)
+url=http://search.cpan.org/dist/$_cpanname;
+source=(http://search.cpan.org/CPAN/authors/id/V/VP/VPIT/$_cpanname-$pkgver.tar.gz;)
+sha1sums=('3f254afd1923f42585dd7c30fcc283165f2f178a')
+
+# Function to change to the working directory and set
+# environment variables to override undesired options.
+prepareEnvironment() {
+  cd $srcdir/$_cpanname-$pkgver
+  export \
+PERL_MM_USE_DEFAULT=1 \
+PERL_AUTOINSTALL=--skipdeps \
+PERL_MM_OPT=INSTALLDIRS=vendor DESTDIR='${pkgdir//\'/\\\'}' \
+PERL_MB_OPT=--installdirs vendor --destdir '${pkgdir//\'/\\\'}' \
+MODULEBUILDRC=/dev/null
+}
+
+build() {
+  prepareEnvironment
+  /usr/bin/perl Makefile.PL
+  make
+}
+
+check() {
+  prepareEnvironment
+  make test
+}
+
+package() {
+  prepareEnvironment
+  make install
+
+  # Remove perllocal.pod and .packlist.
+  find $pkgdir -name .packlist -o -name perllocal.pod -delete
+}