-
-
Notifications
You must be signed in to change notification settings - Fork 5.1k
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
Adding 'cinemagoerng' and 'typedload' #28537
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
15d7d55
Add files via upload
HeavyTony2 11ccc3f
Update meta.yaml
HeavyTony2 a53500d
Create conda_build_config.yaml
HeavyTony2 215a16f
Merge branch 'main' into Cinemagoerng
ocefpaf 5042343
Delete recipes/typedload/conda_build_config.yaml
HeavyTony2 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 @@ | ||
python_min: '3.10' | ||
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,49 @@ | ||
{% set name = "cinemagoerng" %} | ||
{% set version = "0.4" %} | ||
|
||
package: | ||
name: {{ name|lower }} | ||
version: {{ version }} | ||
|
||
source: | ||
url: https://github.com/cinemagoer/cinemagoerng/archive/v{{ version }}.tar.gz | ||
sha256: 44e90d7c13e6bbcef81ed3ba1125228d8b7e5aede12e007d7b0ce967daa88018 | ||
|
||
build: | ||
entry_points: | ||
- cinemagoerng = cinemagoerng:cli.main | ||
noarch: python | ||
script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation | ||
number: 0 | ||
|
||
requirements: | ||
host: | ||
- python {{ python_min }} | ||
- setuptools | ||
- pip | ||
run: | ||
- python >={{ python_min }},<4.dev0 | ||
- typedload | ||
- lxml | ||
- jmespath | ||
|
||
test: | ||
imports: | ||
- cinemagoerng | ||
commands: | ||
- pip check | ||
- cinemagoerng --help | ||
requires: | ||
- pip | ||
- python {{ python_min }} | ||
|
||
about: | ||
summary: Retrieve data from the IMDb. | ||
license: GPL-2.0-or-later | ||
license_file: LICENSE.txt | ||
dev_url: https://github.com/cinemagoer/cinemagoerng | ||
home: https://github.com/cinemagoer/cinemagoerng | ||
|
||
extra: | ||
recipe-maintainers: | ||
- HeavyTony2 |
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,44 @@ | ||
{% set name = "typedload" %} | ||
{% set version = "2.37" %} | ||
|
||
package: | ||
name: {{ name|lower }} | ||
version: {{ version }} | ||
|
||
source: | ||
url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/typedload-{{ version }}.tar.gz | ||
sha256: 0cd60fb9fb2119e00643bc302ece6700da3146d145a6c45a39e2ec8151d740b1 | ||
|
||
build: | ||
noarch: python | ||
script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation | ||
number: 0 | ||
|
||
requirements: | ||
host: | ||
- python {{ python_min }} | ||
- setuptools | ||
- wheel | ||
- pip | ||
run: | ||
- python >={{ python_min }} | ||
|
||
test: | ||
imports: | ||
- typedload | ||
commands: | ||
- pip check | ||
requires: | ||
- pip | ||
- python {{ python_min }} | ||
|
||
about: | ||
home: https://ltworf.codeberg.page/typedload/ | ||
summary: Load and dump data from json-like format into typed data structures | ||
license: GPL-3.0-or-later | ||
license_file: LICENSE | ||
dev_url: https://codeberg.org/ltworf/typedload | ||
|
||
extra: | ||
recipe-maintainers: | ||
- HeavyTony2 |
Oops, something went wrong.
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.
I prefer to have this defined in the recipe itself, making it easier to remove/update when the time comes.