diff options
author | champtar <champetier.etienne@gmail.com> | 2016-08-18 15:41:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-18 15:41:44 +0200 |
commit | b2c20d4f223bc097806b4a9a32c6869f53ce6b21 (patch) | |
tree | a2763d373452025fb7d13f2645c042bb9f38ad62 | |
parent | ae8668ae88110c687efe3ff0a42b0d5609f58e63 (diff) | |
parent | 823bdf5255e27ce78a74323091a6e779f81bd4e3 (diff) |
Merge pull request #3066 from hnyman/htop202
htop: update to 2.0.2
-rw-r--r-- | admin/htop/Makefile | 6 | ||||
-rw-r--r-- | admin/htop/patches/100-fix-libtool-version-check.patch | 11 |
2 files changed, 14 insertions, 3 deletions
diff --git a/admin/htop/Makefile b/admin/htop/Makefile index ac9c7d048..010f36dbf 100644 --- a/admin/htop/Makefile +++ b/admin/htop/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2007-2014 OpenWrt.org +# Copyright (C) 2007-2016 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -8,12 +8,12 @@ include $(TOPDIR)/rules.mk PKG_NAME:=htop -PKG_VERSION:=2.0.1 +PKG_VERSION:=2.0.2 PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=http://hisham.hm/htop/releases/$(PKG_VERSION)/ -PKG_MD5SUM:=f75fe92b4defaa80d99109830f34b5e2 +PKG_MD5SUM:=7d354d904bad591a931ad57e99fea84a PKG_LICENSE:=GPL-2.0 PKG_LICENSE_FILES:=COPYING diff --git a/admin/htop/patches/100-fix-libtool-version-check.patch b/admin/htop/patches/100-fix-libtool-version-check.patch new file mode 100644 index 000000000..c786213c1 --- /dev/null +++ b/admin/htop/patches/100-fix-libtool-version-check.patch @@ -0,0 +1,11 @@ +--- a/configure.ac ++++ b/configure.ac +@@ -2,7 +2,7 @@ + # Process this file with autoconf to produce a configure script. + + AC_PREREQ(2.65) +-LT_PREREQ([2.4.2]) ++LT_PREREQ([2.4.0]) + AC_INIT([htop],[2.0.2],[hisham@gobolinux.org]) + + SOURCE_DATE_EPOCH="${SOURCE_DATE_EPOCH:-$(date +%s)}" |