-
Notifications
You must be signed in to change notification settings - Fork 3.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
perl-text-roman #47942
Closed
Closed
perl-text-roman #47942
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
8d737fe
perl-text-roman
Pombert-JF d2d0912
Merge branch 'master' into perl-text-roman
Pombert-JF 1bd412d
Merge branch 'master' into perl-text-roman
Pombert-JF 8082531
Update recipes/perl-text-roman/meta.yaml
Pombert-JF 24f9a2b
Update recipes/perl-text-roman/meta.yaml
Pombert-JF a68a8ff
+ test import
Pombert-JF c2c2da4
Delete recipes/syny directory
Pombert-JF File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#!/bin/bash | ||
|
||
# If it has Build.PL use that, otherwise use Makefile.PL | ||
if [ -f Build.PL ]; then | ||
perl Build.PL | ||
./Build | ||
./Build test | ||
# Make sure this goes in site | ||
./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 | ||
|
||
# Add more build steps here, if they are necessary. | ||
|
||
# See | ||
# http://docs.continuum.io/conda/build.html | ||
# for a list of environment variables that are set during the build process. |
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,30 @@ | ||
package: | ||
name: perl-text-roman | ||
version: "3.5" | ||
|
||
source: | ||
url: https://cpan.metacpan.org/authors/id/S/SY/SYP/Text-Roman-3.5.tar.gz | ||
md5: 1f6b09c0cc1f4425b565ff787a39fd83 | ||
|
||
build: | ||
noarch: generic | ||
number: 0 | ||
run_exports: '{{ pin_subpackage("perl-text-roman", max_pin="x") }}' | ||
|
||
requirements: | ||
build: | ||
- make | ||
host: | ||
- perl | ||
- perl-module-build | ||
run: | ||
- perl | ||
|
||
test: | ||
imports: | ||
- Text::Roman | ||
|
||
about: | ||
home: https://metacpan.org/pod/Text::Roman | ||
license: Artistic-1.0-Perl | ||
summary: 'converts between arabic and roman numerals' |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You need some tests:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added the following test based on the other Perl modules in bioconda.