re: bump to 2.0.1

- bump to version 2.0.1
- change to use AUTORELEASE
- add ABI_VERSION
- refresh patches

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
This commit is contained in:
Sebastian Kemper 2021-12-07 00:13:33 +01:00
parent 5ee7928640
commit a93e411539
4 changed files with 11 additions and 10 deletions

View file

@ -9,12 +9,12 @@
include $(TOPDIR)/rules.mk include $(TOPDIR)/rules.mk
PKG_NAME:=re PKG_NAME:=re
PKG_VERSION:=1.0.0 PKG_VERSION:=2.0.1
PKG_RELEASE:=1 PKG_RELEASE:=$(AUTORELEASE)
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://codeload.github.com/baresip/re/tar.gz/v$(PKG_VERSION)? PKG_SOURCE_URL:=https://codeload.github.com/baresip/re/tar.gz/v$(PKG_VERSION)?
PKG_HASH:=bf0abfc511b7278462e7d54aaae39e7231b9f35423d5026c8210a322c7c8ef2f PKG_HASH:=43aa439b96aff75fe5768b9f9d49dea97042e42e7647df47b345465763e2f7ed
PKG_LICENSE:=BSD-3-Clause PKG_LICENSE:=BSD-3-Clause
PKG_LICENSE_FILES:=docs/COPYING PKG_LICENSE_FILES:=docs/COPYING
@ -32,6 +32,7 @@ define Package/libre
DEPENDS:=+libopenssl +zlib DEPENDS:=+libopenssl +zlib
TITLE:=Generic library for real-time communications with async IO support TITLE:=Generic library for real-time communications with async IO support
URL:=https://github.com/baresip/re URL:=https://github.com/baresip/re
ABI_VERSION:=1
endef endef
# re.mk is used for this and all related packages (rem, restund and baresip). # re.mk is used for this and all related packages (rem, restund and baresip).
@ -68,12 +69,12 @@ define Build/InstallDev
$(INSTALL_DIR) $(1)/usr/include $(INSTALL_DIR) $(1)/usr/include
$(CP) $(PKG_INSTALL_DIR)/usr/include/re $(1)/usr/include $(CP) $(PKG_INSTALL_DIR)/usr/include/re $(1)/usr/include
$(INSTALL_DIR) $(1)/usr/lib $(INSTALL_DIR) $(1)/usr/lib
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libre.{a,so} $(1)/usr/lib $(CP) $(PKG_INSTALL_DIR)/usr/lib/libre.{a,so*} $(1)/usr/lib
endef endef
define Package/libre/install define Package/libre/install
$(INSTALL_DIR) $(1)/usr/lib $(INSTALL_DIR) $(1)/usr/lib
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libre.so $(1)/usr/lib $(CP) $(PKG_INSTALL_DIR)/usr/lib/libre.so.$(ABI_VERSION)* $(1)/usr/lib
endef endef
$(eval $(call BuildPackage,libre)) $(eval $(call BuildPackage,libre))

View file

@ -1,6 +1,6 @@
--- a/src/dns/res.c --- a/src/dns/res.c
+++ b/src/dns/res.c +++ b/src/dns/res.c
@@ -25,7 +25,7 @@ int get_resolv_dns(char *domain, size_t @@ -26,7 +26,7 @@ int get_resolv_dns(char *domain, size_t
uint32_t i; uint32_t i;
int ret, err; int ret, err;
@ -9,7 +9,7 @@
ret = res_init(); ret = res_init();
state = _res; state = _res;
#else #else
@@ -56,7 +56,7 @@ int get_resolv_dns(char *domain, size_t @@ -76,7 +76,7 @@ int get_resolv_dns(char *domain, size_t
*n = i; *n = i;
out: out:

View file

@ -1,10 +1,10 @@
--- a/mk/re.mk --- a/mk/re.mk
+++ b/mk/re.mk +++ b/mk/re.mk
@@ -43,7 +43,6 @@ @@ -47,7 +47,6 @@
ifneq ($(RELEASE),) ifneq ($(RELEASE),)
CFLAGS += -DRELEASE CFLAGS += -DRELEASE
-OPT_SPEED=1 -OPT_SPEED=1
endif endif
ifneq ($(TRACE_ERR),)

View file

@ -1,6 +1,6 @@
--- a/mk/re.mk --- a/mk/re.mk
+++ b/mk/re.mk +++ b/mk/re.mk
@@ -439,11 +439,6 @@ endif @@ -412,11 +412,6 @@ endif
CFLAGS += -DARCH=\"$(ARCH)\" CFLAGS += -DARCH=\"$(ARCH)\"