Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Chaos calmer800 #22

Open
wants to merge 3 commits into
base: chaos_calmer
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package/system/rpcd/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ define Package/rpcd/default
SECTION:=utils
CATEGORY:=Base system
TITLE:=OpenWrt ubus RPC backend server
DEPENDS:=+libubus +libubox
DEPENDS:=+libubus +libubox +libblobmsg-json
endef

define Package/rpcd
Expand Down
10 changes: 5 additions & 5 deletions package/system/ubus/Makefile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
include $(TOPDIR)/rules.mk

PKG_NAME:=ubus
PKG_VERSION:=2015-05-25
PKG_VERSION:=2016-07-02
PKG_RELEASE=$(PKG_SOURCE_VERSION)

PKG_SOURCE_PROTO:=git
PKG_SOURCE_URL:=http://git.openwrt.org/project/ubus.git
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
PKG_SOURCE_VERSION:=f361bfa5fcb2daadf3b160583ce665024f8d108e
PKG_SOURCE_VERSION:=053be7df871e05478284235732f8b0608089512f
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz
PKG_MIRROR_MD5SUM:=
CMAKE_INSTALL:=1
Expand All @@ -31,21 +31,21 @@ define Package/ubusd
SECTION:=base
CATEGORY:=Base system
TITLE:=OpenWrt RPC daemon
DEPENDS:=+libubox
DEPENDS:=+libubox +libblobmsg-json
endef

define Package/libubus
SECTION:=libs
CATEGORY:=Libraries
DEPENDS:=+libubox
DEPENDS:=+libubox +libblobmsg-json
ABI_VERSION:=$(PKG_VERSION)
TITLE:=OpenWrt RPC client library
endef

define Package/libubus-lua
SECTION:=libs
CATEGORY:=Libraries
DEPENDS:=+libubus +liblua
DEPENDS:=+libubus +liblua +libblobmsg-json
TITLE:=Lua binding for the OpenWrt RPC client
endef

Expand Down