From 3b51cabe9c2a9b763bbd8d7f5fe1f8e28a3eb5e8 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Mon, 17 Oct 2016 16:36:56 -0400 Subject: Initial commit; OOB packages --- django/build.sh | 1 + django/meta.yaml | 43 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 44 insertions(+) create mode 100644 django/build.sh create mode 100644 django/meta.yaml (limited to 'django') diff --git a/django/build.sh b/django/build.sh new file mode 100644 index 0000000..5a5aeeb --- /dev/null +++ b/django/build.sh @@ -0,0 +1 @@ +$PYTHON setup.py install diff --git a/django/meta.yaml b/django/meta.yaml new file mode 100644 index 0000000..64baae1 --- /dev/null +++ b/django/meta.yaml @@ -0,0 +1,43 @@ +{% set name = 'django' %} +{% set version = '1.8.14' %} +{% set build = '0' %} + +package: + name: {{ name }} + version: {{ version }} + +source: + git_tag: {{ version }} + git_url: https://github.com/{{ name }}/{{ name }}.git + +build: + entry_points: + - django-admin = django.core.management:execute_from_command_line + - django-admin.py = django.core.management:execute_from_command_line + +requirements: + build: + - python + - setuptools + run: + - python + +test: + commands: + - django-admin --version + imports: + - django + - django.http + +about: + home: http://www.djangoproject.com/ + license: BSD + license_file: LICENSE + summary: Web framework that encourages rapid development + description: | + Django is a high-level Python Web framework that encourages rapid + development and clean, pragmatic design. Built by experienced developers, it + takes care of much of the hassle of Web development, so you can focus on + writing your app without needing to reinvent the wheel. + doc_url: https://docs.djangoproject.com/en/1.8/ + dev_url: https://github.com/{{ name }} -- cgit