libhttp-parser: Bump package version and update link to GitHub
authorTibor Dudlák <redacted>
Thu, 11 Jan 2018 08:58:14 +0000 (09:58 +0100)
committerTibor Dudlák <redacted>
Mon, 12 Feb 2018 21:54:50 +0000 (22:54 +0100)
Bumped package version.
There was an issue with .so file:
dependent package wanted lib.so.2.8 but there was
only lib.so.2.8.0 there so one more symlink added.
http-parser sources are owned by nodejs now.

Signed-off-by: Tibor Dudlák <redacted>
libs/libhttp-parser/Makefile

index 3667b2beb9ee7165419c2fa79b2b1266f0004458..94cf8a1d16d339e5d3a98831a2cf09fbe9577ad0 100644 (file)
@@ -8,16 +8,16 @@
 include $(TOPDIR)/rules.mk
 
 PKG_NAME:=libhttp-parser
-PKG_VERSION:=2.7.1
+PKG_VERSION:=2.8.0
 PKG_RELEASE=1
 PKG_MAINTAINER:=Ramanathan Sivagurunathan <ramzthecoder@gmail.com>
 PKG_LICENSE:=MIT
 PKG_LICENSE_FILES:=LICENSE-MIT
 
 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
-PKG_MIRROR_HASH:=20e6acc415ae8a47f39c6821685dbba09d99ff5079902fe1a0f580c2c88ae18a
+PKG_MIRROR_HASH:=83acea397da4cdb9192c27abbd53a9eb8e5a9e1bcea2873b499f7ccc0d68f518
 PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
-PKG_SOURCE_URL:=git://github.com/joyent/http-parser.git
+PKG_SOURCE_URL:=git://github.com/nodejs/http-parser.git
 PKG_SOURCE_PROTO:=git
 PKG_SOURCE_VERSION:=v$(PKG_VERSION)
 
@@ -28,7 +28,7 @@ define Package/libhttp-parser
   SECTION:=libs
   CATEGORY:=Libraries
   TITLE:=A library to parse http request and response
-  URL:=https://github.com/joyent/http-parser
+  URL:=https://github.com/nodejs/http-parser
 endef
 
 define Package/libhttp-parser/description
@@ -49,13 +49,17 @@ define Build/InstallDev
        $(INSTALL_DATA) $(PKG_BUILD_DIR)/http_parser.h $(1)/usr/include/
        $(INSTALL_DIR) $(1)/usr/lib
        $(INSTALL_DATA) $(PKG_BUILD_DIR)/libhttp_parser.so.* $(1)/usr/lib/
-       ( cd $(1)/usr/lib ; ln -s libhttp_parser.so.* libhttp_parser.so )
+       (       cd $(1)/usr/lib ; \
+               ln -s libhttp_parser.so.$(PKG_VERSION) libhttp_parser.so ; \
+               ln -s libhttp_parser.so.$(PKG_VERSION) libhttp_parser.so.2.8 )
 endef
 
 define Package/libhttp-parser/install
        $(INSTALL_DIR) $(1)/usr/lib
        $(CP) $(PKG_BUILD_DIR)/libhttp_parser.so.* $(1)/usr/lib/
-       ( cd $(1)/usr/lib ; ln -s libhttp_parser.so.* libhttp_parser.so )
+       (       cd $(1)/usr/lib ; \
+               ln -s libhttp_parser.so.$(PKG_VERSION) libhttp_parser.so ; \
+               ln -s libhttp_parser.so.$(PKG_VERSION) libhttp_parser.so.2.8 )
 endef
 
 $(eval $(call BuildPackage,libhttp-parser))
git clone https://git.99rst.org/PROJECT