Skip to content

Commit

Permalink
Merge Official Source
Browse files Browse the repository at this point in the history
Signed-off-by: Tianling Shen <[email protected]>
  • Loading branch information
1715173329 committed Aug 6, 2023
2 parents 9222a61 + 8617ce7 commit 053fa3e
Show file tree
Hide file tree
Showing 7 changed files with 36 additions and 17 deletions.
11 changes: 6 additions & 5 deletions lang/python/python-certifi/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
include $(TOPDIR)/rules.mk

PKG_NAME:=python-certifi
PKG_VERSION:=2022.9.24
PKG_VERSION:=2023.7.22
PKG_RELEASE:=1

PKG_MAINTAINER:=Eneas U de Queiroz <[email protected]>
PKG_LICENSE:=MPL-2.0
PKG_LICENSE_FILES:=LICENSE

PYPI_NAME:=certifi
PKG_HASH:=0d9c601124e5a6ba9712dbc60d9c53c21e34f5f641fe83002317394311bdce14
PKG_HASH:=539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082

include ../pypi.mk
include $(INCLUDE_DIR)/package.mk
Expand All @@ -25,13 +25,14 @@ define Package/python3-certifi
SECTION:=lang
CATEGORY:=Languages
TITLE:=Python package for Mozilla's CA Bundle
URL:=http://certifi.io/
URL:=https://github.com/certifi/python-certifi
DEPENDS:=+python3-light +python3-urllib
endef

define Package/python3-certifi/description
Certifi is a carefully curated collection of Root Certificates for validating the
trustworthiness of SSL certificates while verifying the identity of TLS hosts.
Certifi provides Mozilla's carefully curated collection of Root
Certificates for validating the trustworthiness of SSL certificates
while verifying the identity of TLS hosts.
endef

$(eval $(call Py3Package,python3-certifi))
Expand Down
18 changes: 18 additions & 0 deletions lang/python/python-certifi/test.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#!/bin/sh

case "$1" in
*-src)
;;
python3-certifi)
BUNDLE=$(python3 -m certifi) || {
echo "Failed to run the certfi module script. Exit status=$?." >&2
echo "Output='$BUNDLE'" >&2
exit 1
}
ls -l "$BUNDLE"
;;
*)
echo "Unexpected package '$1'" >&2
exit 1
;;
esac
4 changes: 2 additions & 2 deletions net/haproxy/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
include $(TOPDIR)/rules.mk

PKG_NAME:=haproxy
PKG_VERSION:=2.8.0
PKG_VERSION:=2.8.1
PKG_RELEASE:=1

PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://www.haproxy.org/download/2.8/src
PKG_HASH:=61cdafb5db7e9174d0757b8e4bcde938352306fb7cc8ff2b5f55c26dd48a6cf7
PKG_HASH:=485552fcd9d5d5f41aad046f131fc0a7e849bef25a349a040750af0c6fc56807

PKG_MAINTAINER:=Thomas Heil <[email protected]>, \
Christian Lachner <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion net/haproxy/get-latest-patches.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/sh

CLONEURL=https://git.haproxy.org/git/haproxy-2.8.git
BASE_TAG=v2.8.0
BASE_TAG=v2.8.1
TMP_REPODIR=tmprepo
PATCHESDIR=patches

Expand Down
6 changes: 3 additions & 3 deletions utils/docker/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
include $(TOPDIR)/rules.mk

PKG_NAME:=docker
PKG_VERSION:=24.0.2
PKG_VERSION:=24.0.5
PKG_RELEASE:=1
PKG_LICENSE:=Apache-2.0
PKG_LICENSE_FILES:=LICENSE
Expand All @@ -10,8 +10,8 @@ PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_GIT_URL:=github.com/docker/cli
PKG_GIT_REF:=v$(PKG_VERSION)
PKG_SOURCE_URL:=https://codeload.$(PKG_GIT_URL)/tar.gz/$(PKG_GIT_REF)?
PKG_HASH:=632357aa58d7f5e16ce87dbd73641c5f65c25b6501e3917ac4f0ce553a01e0bc
PKG_GIT_SHORT_COMMIT:=cb74dfc # SHA1 used within the docker executables
PKG_HASH:=fa32b5f3c2f85fba9ef6e1b5099a4b608fa20af45ba71b3da2194e8728037eec
PKG_GIT_SHORT_COMMIT:=ced0996 # SHA1 used within the docker executables

PKG_MAINTAINER:=Gerard Ryan <[email protected]>

Expand Down
6 changes: 3 additions & 3 deletions utils/dockerd/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
include $(TOPDIR)/rules.mk

PKG_NAME:=dockerd
PKG_VERSION:=24.0.2
PKG_VERSION:=24.0.5
PKG_RELEASE:=1
PKG_LICENSE:=Apache-2.0
PKG_LICENSE_FILES:=LICENSE
Expand All @@ -10,8 +10,8 @@ PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_GIT_URL:=github.com/moby/moby
PKG_GIT_REF:=v$(PKG_VERSION)
PKG_SOURCE_URL:=https://codeload.$(PKG_GIT_URL)/tar.gz/$(PKG_GIT_REF)?
PKG_HASH:=f4bc7d7cc2ee3671371ae80fd624e61f0598e614b5c235012581f8ec1d593aa0
PKG_GIT_SHORT_COMMIT:=659604f # SHA1 used within the docker executables
PKG_HASH:=837d7d667fb64508bf6e53cb5915b4b5ef356599294ffdd5ca8678168230cb38
PKG_GIT_SHORT_COMMIT:=a61e2b4 # SHA1 used within the docker executables

PKG_MAINTAINER:=Gerard Ryan <[email protected]>

Expand Down
6 changes: 3 additions & 3 deletions utils/runc/Makefile
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
include $(TOPDIR)/rules.mk

PKG_NAME:=runc
PKG_VERSION:=1.1.7
PKG_RELEASE:=2
PKG_VERSION:=1.1.8
PKG_RELEASE:=1
PKG_LICENSE:=Apache-2.0
PKG_LICENSE_FILES:=LICENSE

PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://codeload.github.com/opencontainers/runc/tar.gz/v${PKG_VERSION}?
PKG_HASH:=f1885d6dfa188f8112328ac2355e5d67346174a2e2e795ec514a972bcbfcc2fa
PKG_HASH:=9076322ded5c7ae30471ea8a6a43e7c62fb357957592f5cb668abc2f7cb5e4bb

PKG_MAINTAINER:=Gerard Ryan <[email protected]>

Expand Down

0 comments on commit 053fa3e

Please sign in to comment.