mirror of
https://github.com/openwrt/packages.git
synced 2025-02-12 00:00:55 +00:00
Automatically compute and substitute current values for all $(AUTORELEASE) instances as this feature is deprecated and shouldn't be used. The following temporary change was made to the core: diff --git a/rules.mk b/rules.mk index 57d7995d4fa8..f16367de87a8 100644 --- a/rules.mk +++ b/rules.mk @@ -429,7 +429,7 @@ endef abi_version_str = $(subst -,,$(subst _,,$(subst .,,$(1)))) COMMITCOUNT = $(if $(DUMP),0,$(call commitcount)) -AUTORELEASE = $(if $(DUMP),0,$(call commitcount,1)) +AUTORELEASE = $(if $(DUMP),0,$(shell sed -i "s/\$$(AUTORELEASE)/$(call commitcount,1)/" $(CURDIR)/Makefile)) all: FORCE: ; And this command used to fix affected packages: for i in $(cd feeds/packages; git grep -l PKG_RELEASE:=.*AUTORELEASE | \ sed 's^.*/\([^/]*\)/Makefile^\1^';); do make package/$i/download done Signed-off-by: Paul Fertser <fercerpav@gmail.com>
82 lines
2.7 KiB
Makefile
82 lines
2.7 KiB
Makefile
#
|
|
# Copyright (C) 2007-2014 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=neon
|
|
PKG_VERSION:=0.32.4
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=https://notroj.github.io/neon
|
|
PKG_HASH:=b1e2120e4ae07df952c4a858731619733115c5f438965de4fab41d6bf7e7a508
|
|
|
|
PKG_MAINTAINER:=Federico Di Marco <fededim@gmail.com>
|
|
PKG_LICENSE:=LGPL-2.1-or-later
|
|
PKG_LICENSE_FILES:=src/COPYING.LIB
|
|
PKG_CPE_ID:=cpe:/a:webdav:neon
|
|
|
|
PKG_INSTALL:=1
|
|
PKG_BUILD_PARALLEL:=1
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/libneon
|
|
SECTION:=libs
|
|
CATEGORY:=Libraries
|
|
TITLE:=HTTP and WebDAV client library
|
|
URL:=https://notroj.github.io/neon/
|
|
DEPENDS:=+libopenssl +libexpat +zlib
|
|
endef
|
|
|
|
define Package/libneon/description
|
|
neon is an HTTP and WebDAV client library, with a C interface. Features:
|
|
|
|
- High-level wrappers for common HTTP and WebDAV operations (GET, MOVE, DELETE, etc)
|
|
- Low-level interface to the HTTP request/response engine, allowing the use of arbitrary HTTP methods, headers, etc.
|
|
- Authentication support including Basic and Digest support, along with GSSAPI-based Negotiate on Unix, and
|
|
SSPI-based Negotiate/NTLM on Win32
|
|
- SSL/TLS support using OpenSSL or GnuTLS; exposing an abstraction layer for verifying server certificates, handling client
|
|
certificates, and examining certificate properties. Smartcard-based client certificates are also supported via a
|
|
PKCS11 wrapper interface.
|
|
- Abstract interface to parsing XML using libxml2 or expat, and wrappers for simplifying handling XML HTTP response bodies
|
|
- WebDAV metadata support; wrappers for PROPFIND and PROPPATCH to simplify property manipulation.
|
|
endef
|
|
|
|
CONFIGURE_VARS += \
|
|
ne_cv_os_uname="Linux"
|
|
|
|
CONFIGURE_ARGS += \
|
|
--enable-shared \
|
|
--enable-static \
|
|
--with-expat \
|
|
--with-ssl="openssl" \
|
|
--without-egd \
|
|
--without-gssapi \
|
|
--without-libproxy
|
|
|
|
define Build/InstallDev
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/neon-config $(1)/usr/bin/
|
|
$(INSTALL_DIR) $(1)/usr/include
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/neon $(1)/usr/include/
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libneon.{a,so*} $(1)/usr/lib/
|
|
$(INSTALL_DIR) $(1)/usr/lib/pkgconfig
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/neon.pc $(1)/usr/lib/pkgconfig/
|
|
$(SED) 's,^\(prefix\|exec_prefix\)=.*,\1=$(STAGING_DIR)/usr,g' $(1)/usr/bin/neon-config
|
|
$(INSTALL_DIR) $(2)/bin
|
|
$(LN) ../../usr/bin/neon-config $(2)/bin/neon-config
|
|
endef
|
|
|
|
define Package/libneon/install
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libneon.so.* $(1)/usr/lib/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,libneon))
|