8307da3dbd
This partially reverts changes done in commit 72cc44958e
("treewide:
mark selected packages nonshared") as it removes the nonshared flag, but
keeps the PKG_RELEASE as the PKG_RELEASE bump while adding nonshared
flag was incorrect.
Unmark uci, ubus, libubox, lua, libnl-tiny and libjson-c as nonshared
packages as this fix attempt didn't worked out. Currently the
imagebuilder is broken again:
openwrt-imagebuilder-21.02.0-rc3-ipq40xx-generic.Linux-x86_64$ make image PROFILE=avm_fritzbox-7530 PACKAGES=luci-ssl-openssl
...
Collected errors:
* pkg_hash_check_unresolved: cannot find dependency libiwinfo20210430 for luci-mod-status
* pkg_hash_fetch_best_installation_candidate: Packages for luci-mod-status found, but incompatible with the architectures configured
* pkg_hash_check_unresolved: cannot find dependency libiwinfo20210430 for rpcd-mod-iwinfo
* pkg_hash_fetch_best_installation_candidate: Packages for rpcd-mod-iwinfo found, but incompatible with the architectures configured
* satisfy_dependencies_for: Cannot satisfy the following dependencies for luci-ssl-openssl:
* libiwinfo20210430
* opkg_install_cmd: Cannot install package luci-ssl-openssl.
Everything because iwinfo's ABI was changed two times since rc3 release:
+IWINFO_ABI_VERSION:=20210430
+IWINFO_ABI_VERSION:=20210420
Since iwinfo is marked as nonshared, it wasn't built by phase2 builders, but
luci-mod-status was already updated 2 times since rc3 and was thus rebuilt by
phase2 builders:
d1d452ed2fb3 luci-mod-status: don't set '-' hostname when creating static lease
95b3633055c1 luci-mod-status: switch to html table for wlan channel analysis
So now luci-mod-status depends on libiwinfo20210430 but only
libiwinfo20210106 can be downloaded. This is first part of the fix, in
the upcoming commit Jo is going to remove nonshared flag from iwinfo
package as well.
References: https://lists.infradead.org/pipermail/openwrt-devel/2021-July/035736.html
References: https://lists.infradead.org/pipermail/openwrt-devel/2021-July/035741.html
Acked-by: Jo-Philipp Wich <jo@mein.io>
Reported-by: Nick Hainke <vincent@systemli.org>
Signed-off-by: Petr Štetiar <ynezz@true.cz>
88 lines
2.0 KiB
Makefile
88 lines
2.0 KiB
Makefile
#
|
|
# Copyright (C) 2008-2014 OpenWrt.org
|
|
# Copyright (C) 2016 LEDE project
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=uci
|
|
PKG_RELEASE:=6
|
|
|
|
PKG_SOURCE_URL=$(PROJECT_GIT)/project/uci.git
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_DATE=2021-04-14
|
|
PKG_SOURCE_VERSION:=4b3db1179747b6a6779029407984bacef851325c
|
|
PKG_MIRROR_HASH:=9d00b5056a0dd4094c7e19f1a0ecaffa90409f22ea28f164d0e36febd06e37d1
|
|
|
|
PKG_LICENSE:=LGPL-2.1
|
|
PKG_LICENSE_FILES:=
|
|
|
|
PKG_MAINTAINER:=Felix Fietkau <nbd@nbd.name>
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/cmake.mk
|
|
|
|
# set to 1 to enable debugging
|
|
DEBUG=
|
|
|
|
define Package/libuci
|
|
SECTION:=libs
|
|
CATEGORY:=Libraries
|
|
TITLE:=C library for the Unified Configuration Interface (UCI)
|
|
DEPENDS:=+libubox
|
|
ABI_VERSION:=20130104
|
|
endef
|
|
|
|
define Package/uci
|
|
SECTION:=base
|
|
CATEGORY:=Base system
|
|
DEPENDS:=+libuci
|
|
TITLE:=Utility for the Unified Configuration Interface (UCI)
|
|
endef
|
|
|
|
define Package/libuci-lua
|
|
SECTION=libs
|
|
CATEGORY=Libraries
|
|
DEPENDS:=+libuci +liblua
|
|
TITLE:=Lua plugin for UCI
|
|
endef
|
|
|
|
TARGET_CFLAGS += -I$(STAGING_DIR)/usr/include
|
|
TARGET_LDFLAGS += -L$(STAGING_DIR)/usr/lib
|
|
|
|
CMAKE_OPTIONS += \
|
|
-DLUAPATH=/usr/lib/lua \
|
|
$(if $(DEBUG),-DUCI_DEBUG=ON)
|
|
|
|
define Package/libuci/install
|
|
$(INSTALL_DIR) $(1)/lib
|
|
$(CP) $(PKG_BUILD_DIR)/libuci.so* $(1)/lib/
|
|
endef
|
|
|
|
define Package/libuci-lua/install
|
|
$(INSTALL_DIR) $(1)/usr/lib/lua
|
|
$(CP) $(PKG_BUILD_DIR)/lua/uci.so $(1)/usr/lib/lua/
|
|
endef
|
|
|
|
define Package/uci/install
|
|
$(INSTALL_DIR) $(1)/etc/uci-defaults
|
|
$(INSTALL_DIR) $(1)/sbin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/uci $(1)/sbin/
|
|
$(CP) ./files/* $(1)/
|
|
endef
|
|
|
|
define Build/InstallDev
|
|
$(INSTALL_DIR) $(1)/usr/include
|
|
$(CP) $(PKG_BUILD_DIR)/uci{,_config,_blob,map}.h $(1)/usr/include
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(CP) $(PKG_BUILD_DIR)/libuci.so* $(1)/usr/lib
|
|
$(CP) $(PKG_BUILD_DIR)/libucimap.a $(1)/usr/lib
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,libuci))
|
|
$(eval $(call BuildPackage,libuci-lua))
|
|
$(eval $(call BuildPackage,uci))
|