diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2014-10-13 07:47:56 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2014-10-13 07:48:16 +0000 |
commit | c9208f357ec2cd43ee44c5041816692d0f7476a0 (patch) | |
tree | a01626eb460b5f8e776bb23c3d5f53d1ba1b36c3 /main/file | |
parent | 551b1b08e1b91e7300125deb97f5a1e8f3b305d4 (diff) | |
download | aports-c9208f357ec2cd43ee44c5041816692d0f7476a0.tar.bz2 aports-c9208f357ec2cd43ee44c5041816692d0f7476a0.tar.xz |
main/file: upgrade to 5.20
Diffstat (limited to 'main/file')
-rw-r--r-- | main/file/APKBUILD | 14 | ||||
-rw-r--r-- | main/file/fix-regexp.patch | 18 |
2 files changed, 5 insertions, 27 deletions
diff --git a/main/file/APKBUILD b/main/file/APKBUILD index cede77ed1c..02afd0a530 100644 --- a/main/file/APKBUILD +++ b/main/file/APKBUILD @@ -1,14 +1,13 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=file -pkgver=5.19 -pkgrel=2 +pkgver=5.20 +pkgrel=0 pkgdesc="File type identification utility" url="http://www.darwinsys.com/file/" arch="all" license="BSD" depends="" source="ftp://ftp.astron.com/pub/file/file-$pkgver.tar.gz - fix-regexp.patch " subpackages="$pkgname-dev $pkgname-doc" @@ -41,9 +40,6 @@ package() { rm "$pkgdir"/usr/lib/*.la || return 1 } -md5sums="e3526f59023f3f7d1ffa4d541335edab file-5.19.tar.gz -b67b9314541cbf163f43687bff7d6008 fix-regexp.patch" -sha256sums="9484b3bbda1acc7b13a4f71031a85ce10c77bd0ffec7226741a219ef587e3a7c file-5.19.tar.gz -a366c128d43ad01675c5f10799ed8b9b6f74ca79a99efe656c3b3bb17153d7a3 fix-regexp.patch" -sha512sums="f897454f731b013634f38c02c927d7fb5d0660d5b1a81b7bf614da244558dd64ae44ab35ffc6a5e634a7f670ee287c0e87c70e44266c3123e0d1b73fa303c6ed file-5.19.tar.gz -af2fb7ccb85132c24a2fc4954cd8f51103a6726f53159b4afb1229cb4622e1418c1a8e1b1e748164afb533dde65ebaa531d69fc724cc9bb8edf3a379bc4e33f9 fix-regexp.patch" +md5sums="5d5e13eb3e0e13839da869a31790faf2 file-5.20.tar.gz" +sha256sums="5bc36bfbb83a009da25a7174848f1bc5824be03192a8fdce7f83dc897ed2d247 file-5.20.tar.gz" +sha512sums="ee3eff78c8776aa83cf2dfa66943359c488fb3d4b1458817fc39dcef8b16d536ad9fd5f138f37d785abe6f715d757b6729c8b9fc814f1016d164aa83f8511a5c file-5.20.tar.gz" diff --git a/main/file/fix-regexp.patch b/main/file/fix-regexp.patch deleted file mode 100644 index 5cd3a0ee40..0000000000 --- a/main/file/fix-regexp.patch +++ /dev/null @@ -1,18 +0,0 @@ -From 2a041a52c1eda4fb466bb39539a16b45e5cf31cc Mon Sep 17 00:00:00 2001 -From: Christos Zoulas <christos@zoulas.com> -Date: Tue, 23 Sep 2014 23:42:44 +0000 -Subject: [PATCH] PR/383: make regex use \x and not the non-ascii characters. - -diff --git a/magic/Magdir/windows b/magic/Magdir/windows -index dd1e55d..320cb0b 100644 ---- a/magic/Magdir/windows -+++ b/magic/Magdir/windows -@@ -160,7 +160,7 @@ - - # Windows *.INF *.INI files updated by Joerg Jenderek at Apr 2013 - # emtpy ,comment , section , unicode line --0 regex/s \\`(\r\n|;|[[]|\xFF\xFE) -+0 regex/s \\`(\\r\\n|;|[[]|\\xFF\\xFE) - # left bracket in section line - >&0 search/8192 [ - # http://en.wikipedia.org/wiki/Autorun.inf |