mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
From: "Uwe Kleine-König" <u.kleine-koenig@pengutronix.de>
To: ptxdist@pengutronix.de
Subject: [ptxdist] [PATCH] django: new package to provide Django 1.6.5
Date: Wed, 30 Jul 2014 20:12:35 +0200	[thread overview]
Message-ID: <1406743955-30185-1-git-send-email-u.kleine-koenig@pengutronix.de> (raw)

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
---
 rules/django.in   | 29 +++++++++++++++++
 rules/django.make | 93 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 122 insertions(+)
 create mode 100644 rules/django.in
 create mode 100644 rules/django.make

diff --git a/rules/django.in b/rules/django.in
new file mode 100644
index 000000000000..8b66702d4c67
--- /dev/null
+++ b/rules/django.in
@@ -0,0 +1,29 @@
+## SECTION=networking
+
+menuconfig DJANGO
+	tristate
+	select PYTHON
+	select PYTHON_SQLITE
+	select PYTHON_ZLIB
+	prompt "Django                        "
+	help
+	  Django is a high-level Python Web framework that encourages rapid
+	  development and clean, pragmatic design.
+
+if DJANGO
+
+menu "locales"
+
+	config DJANGO_LOCALE_DE
+		bool
+		prompt "de"
+
+	config DJANGO_LOCALE_EN
+		bool
+		prompt "en"
+
+	# add more if needed
+
+endmenu
+
+endif
diff --git a/rules/django.make b/rules/django.make
new file mode 100644
index 000000000000..256f7b8dab0a
--- /dev/null
+++ b/rules/django.make
@@ -0,0 +1,93 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2014 by Uwe Kleine-Koenig <u.kleine-koenig@pengutronix.de>
+#
+# See CREDITS for details about who has contributed to this project.
+#
+# For further information about the PTXdist project and license conditions
+# see the README file.
+#
+
+#
+# We provide this package
+#
+PACKAGES-$(PTXCONF_DJANGO) += django
+
+#
+# Paths and names
+#
+DJANGO_VERSION	:= 1.6.5
+DJANGO_MD5	:= e4c5b2d35ecb3807317713afa70a0c77
+DJANGO		:= Django-$(DJANGO_VERSION)
+DJANGO_SUFFIX	:= tar.gz
+DJANGO_URL	:= https://www.djangoproject.com/download/$(DJANGO_VERSION)/tarball/
+DJANGO_SOURCE	:= $(SRCDIR)/$(DJANGO).$(DJANGO_SUFFIX)
+DJANGO_DIR	:= $(BUILDDIR)/$(DJANGO)
+DJANGO_LICENSE	:= BSD
+
+# ----------------------------------------------------------------------------
+# Prepare
+# ----------------------------------------------------------------------------
+
+DJANGO_PATH		:= PATH=$(CROSS_PATH)
+DJANGO_CONF_TOOL	:= NO
+DJANGO_MAKE_ENV		:= $(CROSS_ENV)
+
+DJANGO_LOCALES-y :=
+DJANGO_LOCALES-$(PTXCONF_DJANGO_LOCALE_DE) += de
+DJANGO_LOCALES-$(PTXCONF_DJANGO_LOCALE_EN) += en
+
+# ----------------------------------------------------------------------------
+# Compile
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/django.compile:
+	@$(call targetinfo)
+	cd $(DJANGO_DIR) && \
+		$(DJANGO_PATH) $(DJANGO_MAKE_ENV) \
+		$(CROSS_PYTHON) setup.py build
+	@$(call touch)
+
+# ----------------------------------------------------------------------------
+# Install
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/django.install:
+	@$(call targetinfo)
+	cd $(DJANGO_DIR) && \
+		$(DJANGO_PATH) $(DJANGO_MAKE_ENV) \
+		$(CROSS_PYTHON) setup.py install --root=$(DJANGO_PKGDIR) --prefix=/usr -O2
+	@$(call touch)
+
+# ----------------------------------------------------------------------------
+# Target-Install
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/django.targetinstall:
+	@$(call targetinfo)
+
+	@$(call install_init, django)
+	@$(call install_fixup, django, PRIORITY, optional)
+	@$(call install_fixup, django, SECTION, base)
+	@$(call install_fixup, django, AUTHOR, "Robert Schwebel <r.schwebel@pengutronix.de>")
+	@$(call install_fixup, django, DESCRIPTION, missing)
+
+	# everything but locales
+	find "$(DJANGO_PKGDIR)" -type d -name locale -prune -o -type f -printf '/%P\n' | while read fn; do \
+		$(call install_copy, django, 0, 0, 0644, -, $$fn); \
+	done
+
+	# locales
+	find "$(DJANGO_PKGDIR)" -type d -name locale -printf '/%P\n' | while read localedir; do \
+		for locale in $(DJANGO_LOCALES-y); do \
+			find "$(DJANGO_PKGDIR)$$localedir/$$locale" -type f -printf "$$localedir/$$locale/%P\n" | while read fn; do \
+				$(call install_copy, django, 0, 0, 0644, -, $$fn); \
+			done; \
+		done; \
+	done
+
+	@$(call install_finish, django)
+
+	@$(call touch)
+
+# vim: syntax=make
-- 
2.0.1


-- 
ptxdist mailing list
ptxdist@pengutronix.de

             reply	other threads:[~2014-07-30 18:12 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-07-30 18:12 Uwe Kleine-König [this message]
2014-07-31  8:14 ` Michael Olbrich
2014-07-31  8:44   ` Uwe Kleine-König
2014-07-31  9:08     ` Michael Olbrich
2014-07-31  9:17       ` Uwe Kleine-König
2014-07-31  9:59         ` Michael Olbrich
2014-07-31 19:34           ` [ptxdist] [PATCH v2] " Uwe Kleine-König

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1406743955-30185-1-git-send-email-u.kleine-koenig@pengutronix.de \
    --to=u.kleine-koenig@pengutronix.de \
    --cc=ptxdist@pengutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox