diff options
author | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2014-12-27 07:51:34 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2014-12-27 07:51:34 +0100 |
commit | 92d7f6522617c947d635680d045f12a4ef77bcb4 (patch) | |
tree | c20dc2f36505542fdb19a2b9d1da1b33ad92fba8 /package/python3 | |
parent | 6a7c5ff345b197c1d5f0f845adb2bb0da9690075 (diff) |
convert checksum check to sha256
Rename the variable name to PKG_HASH and use a
256 Bit SHA checksum to verify the integrity of
distfiles. While there do some housekeeping and
remove old packages.
Diffstat (limited to 'package/python3')
-rw-r--r-- | package/python3/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/python3/Makefile b/package/python3/Makefile index e4b8d7d7f..39185b3ed 100644 --- a/package/python3/Makefile +++ b/package/python3/Makefile @@ -6,7 +6,7 @@ include ${ADK_TOPDIR}/rules.mk PKG_NAME:= python3 PKG_VERSION:= 3.4.0 PKG_RELEASE:= 1 -PKG_MD5SUM:= 77c22725e14af3d71022cbfdebff4903 +PKG_HASH:= f13686c0a2d45e7146759e9d5d1cbd8097a0606483c0cf7730e1e13f58b14cbe PKG_DESCR:= python scripting language (Version 3) PKG_SECTION:= dev/lang PKG_DEPENDS:= libpthread libffi @@ -45,7 +45,7 @@ PKGFD_MOD_SSL:= OpenSSL support PKGFB_MOD_SSL:= openssl PKGFS_MOD_SSL:= libopenssl -DISTFILES= Python-${PKG_VERSION}.tar.xz +DISTFILES:= Python-${PKG_VERSION}.tar.xz WRKDIST= ${WRKDIR}/Python-${PKG_VERSION} include ${ADK_TOPDIR}/mk/host.mk |