mirror of
https://github.com/openwrt/packages.git
synced 2025-02-20 17:56:12 +00:00
afalg_engine: bump to 1.2.1
This adapts the package to semantic versioning. Added a simple Ci test script. Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
This commit is contained in:
@ -7,12 +7,12 @@
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=afalg_engine
|
||||
PKG_VERSION:=1.2.0-beta.1
|
||||
PKG_RELEASE:=5
|
||||
PKG_VERSION:=1.2.1
|
||||
PKG_RELEASE:=1
|
||||
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||
PKG_SOURCE_URL:=https://github.com/cotequeiroz/afalg_engine/archive/v$(PKG_VERSION)
|
||||
PKG_HASH:=6f0da98a3c12eaf50331ac7cd81f7b8800abf54b96fd73bd3e37cc50fd3d2ba8
|
||||
PKG_HASH:=3f0f6ee9ea7a5ea9c668ec16f8c492aa024a82dca78d0fbe30fd256f9da95d65
|
||||
|
||||
PKG_MAINTAINER:=Eneas U de Queiroz <cotequeiroz@gmail.com>
|
||||
PKG_LICENSE:=Apache-2.0
|
||||
|
16
libs/afalg_engine/test.sh
Normal file
16
libs/afalg_engine/test.sh
Normal file
@ -0,0 +1,16 @@
|
||||
#!/bin/sh
|
||||
|
||||
test_afalg_engine() {
|
||||
opkg install openssl-util
|
||||
openssl engine -t -c -v -pre DUMP_INFO afalg
|
||||
}
|
||||
|
||||
case "$1" in
|
||||
libopenssl-afalg_sync)
|
||||
test_afalg_engine
|
||||
;;
|
||||
*)
|
||||
echo "Unexpected package '$1'" >&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
Reference in New Issue
Block a user