From cc8cc0e1b37d0dcc8a3c2691b110b76b42e37ee9 Mon Sep 17 00:00:00 2001 From: Mirko Lindner Date: Fri, 26 Mar 2010 15:30:34 +0100 Subject: [PATCH 1/4] bump vido ref Signed-off-by: Mirko Lindner --- vido/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vido/Makefile b/vido/Makefile index 9fd5c40..dd90438 100644 --- a/vido/Makefile +++ b/vido/Makefile @@ -8,8 +8,8 @@ include $(TOPDIR)/rules.mk PKG_NAME:=vido -PKG_VERSION:=20100222 -PKG_REV:=7a95279f5e36778faf6d2ef9b01136e054bb8660 +PKG_VERSION:=20100326 +PKG_REV:=c544a52e18c5aae130002d05aca62940ba744597 PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz From 177b066e32b58fecc569e3e82021313b1cda35e1 Mon Sep 17 00:00:00 2001 From: "M. Dietrich" Date: Sat, 27 Mar 2010 11:34:38 +0100 Subject: [PATCH 2/4] fix copyright line --- robots/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/robots/Makefile b/robots/Makefile index e841bc6..4649f7c 100644 --- a/robots/Makefile +++ b/robots/Makefile @@ -1,5 +1,9 @@ +# +# Copyright (C) 2010 emdete.de +# # This is free software, licensed under the GNU General Public License # v3. See /LICENSE for more information. +# include $(TOPDIR)/rules.mk PKG_NAME:=robots From 1f73a06438ecc7e5583d3cf70503b45036fe4f45 Mon Sep 17 00:00:00 2001 From: "M. Dietrich" Date: Sat, 27 Mar 2010 11:34:48 +0100 Subject: [PATCH 3/4] fix copyright line --- bwbasic/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bwbasic/Makefile b/bwbasic/Makefile index c4cf779..775d226 100644 --- a/bwbasic/Makefile +++ b/bwbasic/Makefile @@ -1,5 +1,9 @@ +# +# Copyright (C) 2010 emdete.de +# # This is free software, licensed under the GNU General Public License # v3. See /LICENSE for more information. +# include $(TOPDIR)/rules.mk PKG_NAME:=bwbasic From 2f90d87c3eceb357b2d3cacbda5a9f8d19654a2a Mon Sep 17 00:00:00 2001 From: "M. Dietrich" Date: Sat, 27 Mar 2010 11:35:19 +0100 Subject: [PATCH 4/4] add pyneo packages (non working) --- pyneod/Makefile | 49 +++++++++++++++++++++++++++++++++++++++++++ python-pyneo/Makefile | 48 ++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 97 insertions(+) create mode 100644 pyneod/Makefile create mode 100644 python-pyneo/Makefile diff --git a/pyneod/Makefile b/pyneod/Makefile new file mode 100644 index 0000000..3a1ddac --- /dev/null +++ b/pyneod/Makefile @@ -0,0 +1,49 @@ +# +# Copyright (C) 2010 pyneo.org +# +# This is free software, licensed under the GNU General Public License +# v3. See /LICENSE for more information. +# + +include $(TOPDIR)/rules.mk + +PKG_NAME:=pyneod +PKG_VERSION:=1.26 +PKG_RELEASE:=1 + +PKG_SOURCE:=pyneo-$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=http://git.pyneo.org/browse/cgit/pyneo/snapshot/ +PKG_MD5SUM:=48cc3fe7c29ac385107cee08786a4477 + +PKG_BUILD_DEPENDS:=python + +include $(INCLUDE_DIR)/package.mk +$(call include_mk, python-package.mk) + +define Package/pyneod + SUBMENU:=Python + SECTION:=lang + CATEGORY:=Languages + DEPENDS:=+python +python-pyneo + TITLE:=Base lib for pyneo suite + URL:=http://pyneo.org/ +endef + +define Package/pyneod/description + Pyneo is a software stack for mobile devices. +endef + +define PyPackage/pyneod/filespec ++|$(PYTHON_PKG_DIR)/pyneod +-|$(PYTHON_PKG_DIR)/pyneod/data/alsastates +endef + +define Build/Compile + $(if $(Build/Compile/PyMod),,@echo Python packaging code not found.; false) + $(call Build/Compile/PyMod,., \ + install --prefix="$(PKG_INSTALL_DIR)/usr", \ + ) +endef + +$(eval $(call PyPackage,pyneod)) +$(eval $(call BuildPackage,pyneod)) diff --git a/python-pyneo/Makefile b/python-pyneo/Makefile new file mode 100644 index 0000000..405f5b4 --- /dev/null +++ b/python-pyneo/Makefile @@ -0,0 +1,48 @@ +# +# Copyright (C) 2010 pyneo.org +# +# This is free software, licensed under the GNU General Public License +# v3. See /LICENSE for more information. +# +include $(TOPDIR)/rules.mk + +PKG_NAME:=python-pyneo +PKG_VERSION:=1.26 +PKG_RELEASE:=1 + +PKG_SOURCE:=pyneo-$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=http://git.pyneo.org/browse/cgit/pyneo/snapshot/ +PKG_MD5SUM:=48cc3fe7c29ac385107cee08786a4477 + +PKG_BUILD_DEPENDS:=python + +include $(INCLUDE_DIR)/package.mk +$(call include_mk, python-package.mk) + +define Package/python-pyneo + SUBMENU:=Python + SECTION:=lang + CATEGORY:=Languages + DEPENDS:=+python + TITLE:=Base lib for pyneo suite + URL:=http://pyneo.org/ +endef + +define Package/python-pyneo/description + Pyneo is a software stack for mobile devices. +endef + +define PyPackage/python-pyneo/filespec ++|$(PYTHON_PKG_DIR)/python-pyneo +-|$(PYTHON_PKG_DIR)/python-pyneo/data +endef + +define Build/Compile + $(if $(Build/Compile/PyMod),,@echo Python packaging code not found.; false) + $(call Build/Compile/PyMod,., \ + install --prefix="$(PKG_INSTALL_DIR)/usr", \ + ) +endef + +$(eval $(call PyPackage,python-pyneo)) +$(eval $(call BuildPackage,python-pyneo))