-
-
Notifications
You must be signed in to change notification settings - Fork 5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1514 from pmlandwehr/oslo.i18n
Added recipe for oslo.i18n
- Loading branch information
Showing
1 changed file
with
51 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
{%set name = "oslo.i18n" %} | ||
{%set version = "3.7.0" %} | ||
{%set compress_type = "tar.gz" %} | ||
{%set hash_type = "sha256" %} | ||
{%set hash_val = "f534a69013891b64320f5a9d444a4ae0e28d388b6b97f63ee5c7532292454287" %} | ||
{%set build_num = "0" %} | ||
|
||
package: | ||
name: {{ name }} | ||
version: {{ version }} | ||
|
||
source: | ||
fn: {{ name }}-{{ version }}.{{ compress_type }} | ||
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.{{ compress_type }} | ||
{{ hash_type }}: {{ hash_val }} | ||
|
||
build: | ||
number: {{ build_num }} | ||
script: python setup.py install --single-version-externally-managed --record=record.txt | ||
|
||
requirements: | ||
build: | ||
- python | ||
- setuptools | ||
- pbr >=1.8 | ||
|
||
run: | ||
- python | ||
- babel >=2.3.4 | ||
- six >=1.9.0 | ||
- fixtures | ||
|
||
test: | ||
imports: | ||
- oslo_i18n | ||
- oslo_i18n.log | ||
- oslo_i18n.fixture | ||
|
||
about: | ||
home: http://docs.openstack.org/developer/oslo.i18n/ | ||
license: Apache 2.0 | ||
# license_file: No MANIFEST.in included in distribution | ||
license_family: Apache | ||
summary: 'Utilities for working with internationalization (i18n) features, especially translation for text strings in an application or library.' | ||
doc_url: http://docs.openstack.org/developer/oslo.i18n/ | ||
dev_url: http://git.openstack.org/cgit/openstack/oslo.i18n | ||
|
||
extra: | ||
recipe-maintainers: | ||
- pmlandwehr | ||
- anguslees |