Skip to content

Commit

Permalink
Add mirror 'perl-canary-stability' at '6b46931'
Browse files Browse the repository at this point in the history
  • Loading branch information
udeved committed Jun 5, 2022
1 parent 1050f3d commit f64f7cf
Show file tree
Hide file tree
Showing 7 changed files with 97 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .braids.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,11 @@
"branch": "master",
"revision": "d5ebe9ee2332bb5c01d4ba837fdbfe536439a52a"
},
"perl-canary-stability": {
"url": "[email protected]:packagesPerl/perl-canary-stability.git",
"branch": "master",
"revision": "6b46931a75ee0268aab3b130dfb742853d1a49c8"
},
"python-aafigure": {
"url": "[email protected]:packagesPython/python-aafigure.git",
"branch": "master",
Expand Down
5 changes: 5 additions & 0 deletions perl-canary-stability/.artixlinux/agent.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
%YAML 1.2
---

label: master

15 changes: 15 additions & 0 deletions perl-canary-stability/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# ---> ArchLinuxPackages
*.tar
*.tar.*
*.jar
*.exe
*.msi
*.zip
*.tgz
*.log
*.log.*
*.sig

pkg/
src/

4 changes: 4 additions & 0 deletions perl-canary-stability/Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
@Library('artix-ci') import org.artixlinux.RepoPackage

PackagePipeline(new RepoPackage(this))

2 changes: 2 additions & 0 deletions perl-canary-stability/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# perl-canary-stability

33 changes: 33 additions & 0 deletions perl-canary-stability/trunk/PKGBUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Maintainer: Felix Yan <[email protected]>
# Contributor: Brian Bidulock <[email protected]>

pkgname=perl-canary-stability
_realname=Canary-Stability
pkgver=2013
pkgrel=5
pkgdesc="CPAN/Canary-Stability - canary to check perl compatability for schmorp's modules"
arch=('any')
license=('PerlArtistic' 'GPL')
options=('!emptydirs')
depends=('perl')
url="https://metacpan.org/release/${_realname}"
source=("https://cpan.metacpan.org/authors/id/M/ML/MLEHMANN/${_realname}-${pkgver}.tar.gz")
md5sums=('5368520547521b254317ea0e9b3d23ab')

build() {
cd "$srcdir/$_realname-$pkgver"
perl Makefile.PL INSTALLDIRS=vendor
make
}

check() {
cd "$srcdir/$_realname-$pkgver"
make test
}

package() {
cd "$srcdir/$_realname-$pkgver"
make install DESTDIR="$pkgdir"
}

# vim:set ts=2 sw=2 et:
33 changes: 33 additions & 0 deletions perl-canary-stability/x86_64/community/PKGBUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Maintainer: Felix Yan <[email protected]>
# Contributor: Brian Bidulock <[email protected]>

pkgname=perl-canary-stability
_realname=Canary-Stability
pkgver=2013
pkgrel=5
pkgdesc="CPAN/Canary-Stability - canary to check perl compatability for schmorp's modules"
arch=('any')
license=('PerlArtistic' 'GPL')
options=('!emptydirs')
depends=('perl')
url="https://metacpan.org/release/${_realname}"
source=("https://cpan.metacpan.org/authors/id/M/ML/MLEHMANN/${_realname}-${pkgver}.tar.gz")
md5sums=('5368520547521b254317ea0e9b3d23ab')

build() {
cd "$srcdir/$_realname-$pkgver"
perl Makefile.PL INSTALLDIRS=vendor
make
}

check() {
cd "$srcdir/$_realname-$pkgver"
make test
}

package() {
cd "$srcdir/$_realname-$pkgver"
make install DESTDIR="$pkgdir"
}

# vim:set ts=2 sw=2 et:

0 comments on commit f64f7cf

Please sign in to comment.