diff options
author | Josef Schlehofer <pepe.schlehofer@gmail.com> | 2020-07-20 15:47:31 +0200 |
---|---|---|
committer | Paul Spooren <mail@aparcar.org> | 2020-11-26 13:09:24 -1000 |
commit | 75063b941bd224ecc68412a97bf05ab797ecd19f (patch) | |
tree | cbf2d3dd06e5fbe3cafe91ba2a9ce7de49b74002 /package/libs/libiconv-full/Makefile | |
parent | 3f567d8452644dc5349addabbb8f0bff9d0bc2c0 (diff) | |
download | upstream-75063b941bd224ecc68412a97bf05ab797ecd19f.tar.gz upstream-75063b941bd224ecc68412a97bf05ab797ecd19f.tar.bz2 upstream-75063b941bd224ecc68412a97bf05ab797ecd19f.zip |
libiconv-full: update to version 1.16
- Removed following patches:
100-strip_charsets.patch - makes the full variant slim.
101-autotools.patch - this one fails to apply because it was backported
from newer versions for 1.11.1.
103-configure_ac_fix.patch - backported from newer versions
200-work-with-libtool2.patch - is not needed anymore, it is done
differently in upstream
300-fortify-source-compat.patch - these files are not there anymore
- TVHeadend requires working iconv library e.g. transliteration to ASCII
and this does not work with libiconv-full currently.
There is a simple test, which requires to install iconv package.
Before applying this update:
root@turris:/# echo ŽluťoučkýKůň | iconv -t ASCII//TRANSLIT//IGNORE
luoukK
After applying this update:
root@turris:~# echo ŽluťoučkýKůň | iconv -t ASCII//TRANSLIT//IGNORE
Zlutouck'yKun
- Makefile changes:
Use HTTPS for their website
Fixed deprecated SPDX License Identifier
Move PKG_MAINTAINER above PKG_LICENSE
Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
Tested-by: Rosen Penev <rosenp@gmail.com> [malta]
Diffstat (limited to 'package/libs/libiconv-full/Makefile')
-rw-r--r-- | package/libs/libiconv-full/Makefile | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/package/libs/libiconv-full/Makefile b/package/libs/libiconv-full/Makefile index b01db76d2a..85495fbf91 100644 --- a/package/libs/libiconv-full/Makefile +++ b/package/libs/libiconv-full/Makefile @@ -8,16 +8,16 @@ include $(TOPDIR)/rules.mk PKG_NAME:=libiconv-full -PKG_VERSION:=1.11.1 -PKG_RELEASE:=4 - -PKG_MAINTAINER:=Jo-Philipp Wich <jo@mein.io> +PKG_VERSION:=1.16 +PKG_RELEASE:=1 PKG_SOURCE:=libiconv-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=@GNU/libiconv -PKG_HASH:=e78c347a1a0cb15f2648519e9799151f4b4a934b61ad9ee7424478efe2b8257f +PKG_HASH:=e6a1b1b589654277ee790cce3734f07876ac4ccfaecbee8afa0b649cf529cc04 PKG_BUILD_DIR:=$(BUILD_DIR)/libiconv-$(PKG_VERSION) -PKG_LICENSE:=LGPL-2.0 + +PKG_MAINTAINER:=Jo-Philipp Wich <jo@mein.io> +PKG_LICENSE:=LGPL-2.1-or-later PKG_LICENSE_FILES:=COPYING.LIB PKG_FIXUP:=patch-libtool @@ -25,7 +25,7 @@ PKG_FIXUP:=patch-libtool include $(INCLUDE_DIR)/package.mk define Package/libiconv-full/Default - URL:=http://www.gnu.org/software/libiconv/ + URL:=https://www.gnu.org/software/libiconv/ TITLE:=Character set conversion endef |