-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix perl-image-size * Fix perl-aceperl * Add perl-cache-cache * Add perl-ipc-sharelite * Add perl-digest-sha1
- Loading branch information
Showing
11 changed files
with
210 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#!/bin/bash | ||
|
||
# If it has Build.PL use that, otherwise use Makefile.PL | ||
if [ -f Build.PL ]; then | ||
perl Build.PL | ||
perl ./Build | ||
perl ./Build test | ||
# Make sure this goes in site | ||
perl ./Build install --installdirs site | ||
elif [ -f Makefile.PL ]; then | ||
# Make sure this goes in site | ||
perl Makefile.PL INSTALLDIRS=site | ||
make | ||
make test | ||
make install | ||
else | ||
echo 'Unable to find Build.PL or Makefile.PL. You need to modify build.sh.' | ||
exit 1 | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
{% set name = "perl-cache-cache" %} | ||
{% set version = "1.08" %} | ||
{% set sha256 = "d2c7fd5dba5dd010b7d8923516890bb6ccf6b5f188ccb69f35cb0fd6c031d1e8" %} | ||
|
||
package: | ||
name: {{ name }} | ||
version: {{ version }} | ||
|
||
source: | ||
url: https://cpan.metacpan.org/authors/id/R/RJ/RJBS/Cache-Cache-1.08.tar.gz | ||
sha256: {{ sha256 }} | ||
|
||
build: | ||
number: 0 | ||
|
||
requirements: | ||
host: | ||
- perl | ||
- perl-digest-sha1 | ||
- perl-extutils-makemaker | ||
- perl-error | ||
- perl-storable | ||
- perl-ipc-sharelite | ||
|
||
run: | ||
- perl | ||
- perl-storable | ||
- perl-digest-sha1 | ||
- perl-error | ||
- perl-ipc-sharelite | ||
|
||
test: | ||
imports: | ||
- Cache::BaseCache | ||
- Cache::BaseCacheTester | ||
- Cache::Cache | ||
- Cache::CacheMetaData | ||
- Cache::CacheSizer | ||
- Cache::CacheTester | ||
- Cache::CacheUtils | ||
- Cache::FileBackend | ||
- Cache::FileCache | ||
- Cache::MemoryBackend | ||
- Cache::MemoryCache | ||
- Cache::NullCache | ||
- Cache::Object | ||
- Cache::SharedMemoryBackend | ||
- Cache::SharedMemoryCache | ||
- Cache::SizeAwareCache | ||
- Cache::SizeAwareCacheTester | ||
- Cache::SizeAwareFileCache | ||
- Cache::SizeAwareMemoryCache | ||
- Cache::SizeAwareSharedMemoryCache | ||
|
||
about: | ||
home: http://metacpan.org/pod/Cache::Cache | ||
license: unknown | ||
summary: 'extends Cache::SizeAwareMemoryCache' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#!/bin/bash | ||
|
||
# If it has Build.PL use that, otherwise use Makefile.PL | ||
if [ -f Build.PL ]; then | ||
perl Build.PL | ||
perl ./Build | ||
perl ./Build test | ||
# Make sure this goes in site | ||
perl ./Build install --installdirs site | ||
elif [ -f Makefile.PL ]; then | ||
# Make sure this goes in site | ||
perl Makefile.PL INSTALLDIRS=site | ||
make | ||
make test | ||
make install | ||
else | ||
echo 'Unable to find Build.PL or Makefile.PL. You need to modify build.sh.' | ||
exit 1 | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{% set name = "perl-digest-sha1" %} | ||
{% set version = "2.13" %} | ||
{% set sha256 = "68c1dac2187421f0eb7abf71452a06f190181b8fc4b28ededf5b90296fb943cc" %} | ||
|
||
package: | ||
name: {{ name }} | ||
version: {{ version }} | ||
|
||
source: | ||
url: https://cpan.metacpan.org/authors/id/G/GA/GAAS/Digest-SHA1-2.13.tar.gz | ||
sha256: {{ sha256 }} | ||
|
||
build: | ||
number: 0 | ||
|
||
requirements: | ||
build: | ||
- {{ compiler('cxx') }} | ||
|
||
host: | ||
- perl | ||
- perl-extutils-makemaker | ||
|
||
run: | ||
- perl | ||
|
||
test: | ||
imports: | ||
- Digest::SHA1 | ||
|
||
about: | ||
home: http://metacpan.org/pod/Digest::SHA1 | ||
license: perl_5 | ||
summary: 'Perl interface to the SHA-1 algorithm' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#!/bin/bash | ||
|
||
# If it has Build.PL use that, otherwise use Makefile.PL | ||
if [ -f Build.PL ]; then | ||
perl Build.PL | ||
perl ./Build | ||
perl ./Build test | ||
# Make sure this goes in site | ||
perl ./Build install --installdirs site | ||
elif [ -f Makefile.PL ]; then | ||
# Make sure this goes in site | ||
perl Makefile.PL INSTALLDIRS=site | ||
make | ||
make test | ||
make install | ||
else | ||
echo 'Unable to find Build.PL or Makefile.PL. You need to modify build.sh.' | ||
exit 1 | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{% set name = "perl-ipc-sharelite" %} | ||
{% set version = "0.17" %} | ||
{% set sha256 = "14d406b91da96d6521d0d1a82d22a306274765226b86b0a56e7ffddcf96ae7bf" %} | ||
|
||
package: | ||
name: {{ name }} | ||
version: {{ version }} | ||
|
||
source: | ||
url: https://cpan.metacpan.org/authors/id/A/AN/ANDYA/IPC-ShareLite-0.17.tar.gz | ||
sha256: {{ sha256 }} | ||
|
||
build: | ||
number: 0 | ||
|
||
requirements: | ||
build: | ||
- {{ compiler('cxx') }} | ||
|
||
host: | ||
- perl | ||
- perl-extutils-makemaker | ||
|
||
run: | ||
- perl | ||
|
||
test: | ||
imports: | ||
- IPC::ShareLite | ||
|
||
about: | ||
home: http://metacpan.org/pod/IPC::ShareLite | ||
license: perl_5 | ||
summary: 'Lightweight interface to shared memory' |