X-Git-Url: http://git.ipfire.org/?p=ipfire-2.x.git;a=blobdiff_plain;f=lfs%2Fpython3-rsa;h=6a885d6021986b95a6645b7e61f1f6eca8281dc4;hp=7585eab5623285929968e63c0949cf01dc90bf6f;hb=HEAD;hpb=eee037b8902c3163850069f302479e7733966bd0 diff --git a/lfs/python3-rsa b/lfs/python3-rsa index 7585eab562..95c9c2f471 100644 --- a/lfs/python3-rsa +++ b/lfs/python3-rsa @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007-2018 IPFire Team # +# Copyright (C) 2007-2020 IPFire Team # # # # This program is free software: you can redistribute it and/or modify # # it under the terms of the GNU General Public License as published by # @@ -24,7 +24,8 @@ include Config -VER = 3.4.2 +VER = 4.9 +SUMMARY = Pure-Python RSA Implementation THISAPP = rsa-$(VER) DL_FILE = $(THISAPP).tar.gz @@ -32,9 +33,11 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = python3-rsa -PAK_VER = 1 +PAK_VER = 5 -DEPS = "python3" +DEPS = + +SERVICES = ############################################################################### # Top-level Rules @@ -44,7 +47,7 @@ objects = $(DL_FILE) $(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_MD5 = b315f47882c24030ee6b5aad628cccdb +$(DL_FILE)_BLAKE2 = 85d9c6e546cca5bde5f40c46f86eb6a462f0ab59697c4a5fc48541ca2a658fe5ba25f8a36322bf900aedf4a5ae77e5bef74cbd3533a22c3695b2c8c93b1f57c6 install : $(TARGET) @@ -52,13 +55,13 @@ check : $(patsubst %,$(DIR_CHK)/%,$(objects)) download :$(patsubst %,$(DIR_DL)/%,$(objects)) -md5 : $(subst %,%_MD5,$(objects)) +b2 : $(subst %,%_BLAKE2,$(objects)) -dist: +dist: @$(PAK) ############################################################################### -# Downloading, checking, md5sum +# Downloading, checking, b2sum ############################################################################### $(patsubst %,$(DIR_CHK)/%,$(objects)) : @@ -67,8 +70,8 @@ $(patsubst %,$(DIR_CHK)/%,$(objects)) : $(patsubst %,$(DIR_DL)/%,$(objects)) : @$(LOAD) -$(subst %,%_MD5,$(objects)) : - @$(MD5) +$(subst %,%_BLAKE2,$(objects)) : + @$(B2SUM) ############################################################################### # Installation Details