[ptxdist] [PATCH] tree: New package

2013-03-08 Thread Bernhard Walle
Signed-off-by: Bernhard Walle bernh...@bwalle.de
---
 rules/tree.in   |  9 +
 rules/tree.make | 59 +
 2 files changed, 68 insertions(+)
 create mode 100644 rules/tree.in
 create mode 100644 rules/tree.make

diff --git a/rules/tree.in b/rules/tree.in
new file mode 100644
index 000..d513f04
--- /dev/null
+++ b/rules/tree.in
@@ -0,0 +1,9 @@
+## SECTION=shell_and_console
+
+config TREE
+   tristate
+   prompt tree
+   select GCCLIBS_GCC_S
+   help
+ A directory listing program displaying a depth indented list of
+ files.
diff --git a/rules/tree.make b/rules/tree.make
new file mode 100644
index 000..997aabb
--- /dev/null
+++ b/rules/tree.make
@@ -0,0 +1,59 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2013 by Bernhard Walle bernh...@bwalle.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_TREE) += tree
+
+#
+# Paths and names
+#
+TREE_VERSION   := 1.6.0
+TREE_MD5   := 04e967a3f4108d50cde3b4b0e89e970a
+TREE   := tree-$(TREE_VERSION)
+TREE_SUFFIX:= tgz
+TREE_URL   := ftp://mama.indstate.edu/linux/tree/$(TREE).$(TREE_SUFFIX)
+TREE_SOURCE:= $(SRCDIR)/$(TREE).$(TREE_SUFFIX)
+TREE_DIR   := $(BUILDDIR)/$(TREE)
+TREE_LICENSE   := GPL
+
+# 
+# Compile
+# 
+
+TREE_MAKE_OPT  := \
+   $(CROSS_ENV_CC) \
+   $(CROSS_ENV_CPP) \
+   $(CROSS_ENV_AS)
+
+TREE_INSTALL_OPT := \
+   prefix=$(TREE_PKGDIR)/usr install
+
+# 
+# Target-Install
+# 
+
+$(STATEDIR)/tree.targetinstall:
+   @$(call targetinfo)
+
+   @$(call install_init, tree)
+   @$(call install_fixup, tree,PRIORITY,optional)
+   @$(call install_fixup, tree,SECTION,base)
+   @$(call install_fixup, tree,AUTHOR,Bernhard Walle 
bernh...@bwalle.de)
+   @$(call install_fixup, tree,DESCRIPTION,missing)
+
+   @$(call install_copy, tree, 0, 0, 0755, -, /usr/bin/tree)
+
+   @$(call install_finish, tree)
+
+   @$(call touch)
+
+# vim: syntax=make
-- 
1.8.1.5


-- 
ptxdist mailing list
ptxdist@pengutronix.de


Re: [ptxdist] [PATCH] tree: New package

2013-03-08 Thread Marc Kleine-Budde
On 03/08/2013 02:11 PM, Bernhard Walle wrote:
 Signed-off-by: Bernhard Walle bernh...@bwalle.de
 ---
  rules/tree.in   |  9 +
  rules/tree.make | 59 
 +
  2 files changed, 68 insertions(+)
  create mode 100644 rules/tree.in
  create mode 100644 rules/tree.make
 
 diff --git a/rules/tree.in b/rules/tree.in
 new file mode 100644
 index 000..d513f04
 --- /dev/null
 +++ b/rules/tree.in
 @@ -0,0 +1,9 @@
 +## SECTION=shell_and_console
 +
 +config TREE
 + tristate
 + prompt tree
 + select GCCLIBS_GCC_S
 + help
 +   A directory listing program displaying a depth indented list of
 +   files.
 diff --git a/rules/tree.make b/rules/tree.make
 new file mode 100644
 index 000..997aabb
 --- /dev/null
 +++ b/rules/tree.make
 @@ -0,0 +1,59 @@
 +# -*-makefile-*-
 +#
 +# Copyright (C) 2013 by Bernhard Walle bernh...@bwalle.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_TREE) += tree
 +
 +#
 +# Paths and names
 +#
 +TREE_VERSION := 1.6.0
 +TREE_MD5 := 04e967a3f4108d50cde3b4b0e89e970a
 +TREE := tree-$(TREE_VERSION)
 +TREE_SUFFIX  := tgz
 +TREE_URL := ftp://mama.indstate.edu/linux/tree/$(TREE).$(TREE_SUFFIX)

Is there a http URL? ftp makes stress behind some paranoid corporate
firewalls.

Looks good otherwise.

Marc

-- 
Pengutronix e.K.  | Marc Kleine-Budde   |
Industrial Linux Solutions| Phone: +49-231-2826-924 |
Vertretung West/Dortmund  | Fax:   +49-5121-206917- |
Amtsgericht Hildesheim, HRA 2686  | http://www.pengutronix.de   |



signature.asc
Description: OpenPGP digital signature
-- 
ptxdist mailing list
ptxdist@pengutronix.de


[ptxdist] [PATCH] tree: New package

2013-03-08 Thread Bernhard Walle
Signed-off-by: Bernhard Walle bernh...@bwalle.de
---
 rules/tree.in   |  9 +
 rules/tree.make | 59 +
 2 files changed, 68 insertions(+)
 create mode 100644 rules/tree.in
 create mode 100644 rules/tree.make

diff --git a/rules/tree.in b/rules/tree.in
new file mode 100644
index 000..d513f04
--- /dev/null
+++ b/rules/tree.in
@@ -0,0 +1,9 @@
+## SECTION=shell_and_console
+
+config TREE
+   tristate
+   prompt tree
+   select GCCLIBS_GCC_S
+   help
+ A directory listing program displaying a depth indented list of
+ files.
diff --git a/rules/tree.make b/rules/tree.make
new file mode 100644
index 000..d862938
--- /dev/null
+++ b/rules/tree.make
@@ -0,0 +1,59 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2013 by Bernhard Walle bernh...@bwalle.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_TREE) += tree
+
+#
+# Paths and names
+#
+TREE_VERSION   := 1.6.0
+TREE_MD5   := 04e967a3f4108d50cde3b4b0e89e970a
+TREE   := tree-$(TREE_VERSION)
+TREE_SUFFIX:= tgz
+TREE_URL   := 
http://mama.indstate.edu/users/ice/tree/src/$(TREE).$(TREE_SUFFIX)
+TREE_SOURCE:= $(SRCDIR)/$(TREE).$(TREE_SUFFIX)
+TREE_DIR   := $(BUILDDIR)/$(TREE)
+TREE_LICENSE   := GPL
+
+# 
+# Compile
+# 
+
+TREE_MAKE_OPT  := \
+   $(CROSS_ENV_CC) \
+   $(CROSS_ENV_CPP) \
+   $(CROSS_ENV_AS)
+
+TREE_INSTALL_OPT := \
+   prefix=$(TREE_PKGDIR)/usr install
+
+# 
+# Target-Install
+# 
+
+$(STATEDIR)/tree.targetinstall:
+   @$(call targetinfo)
+
+   @$(call install_init, tree)
+   @$(call install_fixup, tree,PRIORITY,optional)
+   @$(call install_fixup, tree,SECTION,base)
+   @$(call install_fixup, tree,AUTHOR,Bernhard Walle 
bernh...@bwalle.de)
+   @$(call install_fixup, tree,DESCRIPTION,missing)
+
+   @$(call install_copy, tree, 0, 0, 0755, -, /usr/bin/tree)
+
+   @$(call install_finish, tree)
+
+   @$(call touch)
+
+# vim: syntax=make
-- 
1.8.1.5


-- 
ptxdist mailing list
ptxdist@pengutronix.de


[ptxdist] [PATCH] wpa_supplicant: Update to 2.0

2013-03-08 Thread Bernhard Walle
Tested on an i.MX53 board with wext and cfg80211..

Signed-off-by: Bernhard Walle bernh...@bwalle.de
---
 rules/wpa_supplicant.make | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/rules/wpa_supplicant.make b/rules/wpa_supplicant.make
index 0607696..d007279 100644
--- a/rules/wpa_supplicant.make
+++ b/rules/wpa_supplicant.make
@@ -17,8 +17,8 @@ PACKAGES-$(PTXCONF_WPA_SUPPLICANT) += wpa_supplicant
 # Paths and names
 #
 WPA_SUPPLICANT_NAME:= wpa_supplicant
-WPA_SUPPLICANT_VERSION := 1.0
-WPA_SUPPLICANT_MD5 := 8650f6aa23646ef634402552d0669640
+WPA_SUPPLICANT_VERSION := 2.0
+WPA_SUPPLICANT_MD5 := 3be2ebfdcced52e00eda0afe2889839d
 WPA_SUPPLICANT := $(WPA_SUPPLICANT_NAME)-$(WPA_SUPPLICANT_VERSION)
 WPA_SUPPLICANT_SUFFIX  := tar.gz
 WPA_SUPPLICANT_URL := 
http://hostap.epitest.fi/releases/$(WPA_SUPPLICANT).$(WPA_SUPPLICANT_SUFFIX)
-- 
1.8.1.5


-- 
ptxdist mailing list
ptxdist@pengutronix.de