[gentoo-commits] repo/gentoo:master commit in: sys-fs/ncdu/

2017-03-01 Thread Tobias Klausmann
commit: 59a0d73a928722b5ae2e2b4fed5880fe14af49f5
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Wed Mar  1 13:21:00 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Wed Mar  1 13:42:55 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59a0d73a

sys-fs/ncdu-1.12-r0: add alpha keyword

Gentoo-Bug: 611260

 sys-fs/ncdu/ncdu-1.12.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/ncdu/ncdu-1.12.ebuild b/sys-fs/ncdu/ncdu-1.12.ebuild
index c02155a4afe..80ee22a4abe 100644
--- a/sys-fs/ncdu/ncdu-1.12.ebuild
+++ b/sys-fs/ncdu/ncdu-1.12.ebuild
@@ -9,7 +9,7 @@ SRC_URI="http://dev.yorhel.nl/download/${P}.tar.gz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ppc ppc64 ~x86 ~amd64-linux ~x86-linux 
~x64-macos"
+KEYWORDS="alpha amd64 arm arm64 ppc ppc64 ~x86 ~amd64-linux ~x86-linux 
~x64-macos"
 
 RDEPEND="
sys-libs/ncurses:0=[unicode]



[gentoo-commits] repo/gentoo:master commit in: sys-fs/ncdu/

2017-02-12 Thread Michael Weber
commit: 4e184089c05d0fe1a44e8c0ef30a7a6795368c14
Author: Michael Weber  gentoo  org>
AuthorDate: Sun Feb 12 22:22:14 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Mon Feb 13 00:07:00 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e184089

sys-fs/ncdu: Add ~arm64 keyword.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 sys-fs/ncdu/ncdu-1.12.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-fs/ncdu/ncdu-1.12.ebuild b/sys-fs/ncdu/ncdu-1.12.ebuild
index d72d60f9de..d0b74dc9a6 100644
--- a/sys-fs/ncdu/ncdu-1.12.ebuild
+++ b/sys-fs/ncdu/ncdu-1.12.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -10,7 +10,7 @@ SRC_URI="http://dev.yorhel.nl/download/${P}.tar.gz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~x64-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~x64-macos"
 
 RDEPEND="
sys-libs/ncurses:0=[unicode]



[gentoo-commits] repo/gentoo:master commit in: sys-fs/ncdu/files/

2016-08-29 Thread Jeroen Roovers
commit: 61ffd52bc6a32bef40c8fe975cb6f3aafb34fd68
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Mon Aug 29 14:01:51 2016 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Mon Aug 29 14:01:51 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61ffd52b

sys-fs/ncdu: Drop obsolete patch.

Package-Manager: portage-2.3.0

 sys-fs/ncdu/files/ncdu-1.9-pkgconfig.patch | 39 --
 1 file changed, 39 deletions(-)

diff --git a/sys-fs/ncdu/files/ncdu-1.9-pkgconfig.patch 
b/sys-fs/ncdu/files/ncdu-1.9-pkgconfig.patch
deleted file mode 100644
index 0d180b3..
--- a/sys-fs/ncdu/files/ncdu-1.9-pkgconfig.patch
+++ /dev/null
@@ -1,39 +0,0 @@
- configure.in | 21 -
- 1 file changed, 12 insertions(+), 9 deletions(-)
-
-diff --git a/configure.in b/configure.in
-index f4a4a2d..1333234 100644
 a/configure.in
-+++ b/configure.in
-@@ -36,19 +36,22 @@ AC_ARG_WITH([ncursesw],
- AC_HELP_STRING([--with-ncursesw], [compile/link with wide-char 
ncurses library @<:@default@:>@]),
- [ncurses=ncursesw])
- if test "$ncurses" = "auto" -o "$ncurses" = "ncursesw"; then
--  AC_CHECK_LIB([ncursesw],
--   [initscr],
--   [LIBS="$LIBS -lncursesw"; ncurses=ncursesw],
--   [ncurses=ncurses])
-+  PKG_CHECK_MODULES([NCURSES], [ncursesw], [LIBS="$LIBS $NCURSES_LIBS"; 
ncurses=ncursesw],
-+[AC_CHECK_LIB([ncursesw],
-+ [initscr],
-+ [LIBS="$LIBS -lncursesw"; ncurses=ncursesw],
-+ [ncurses=ncurses])
-+])
- fi
- if test "$ncurses" = "ncurses"; then
--  AC_CHECK_LIB([ncurses],
--   [initscr],
--   [LIBS="$LIBS -lncurses"],
--   [AC_MSG_ERROR(ncurses library is required)])
-+  PKG_CHECK_MODULES([NCURSES], [ncurses], [LIBS="$LIBS $NCURSES_LIBS"],
-+[AC_CHECK_LIB([ncurses],
-+ [initscr],
-+ [LIBS="$LIBS -lncurses"],
-+ [AC_MSG_ERROR(ncurses library is required)])
-+])
- fi
- 
- 
- 
- AC_OUTPUT([Makefile])
--



[gentoo-commits] repo/gentoo:master commit in: sys-fs/ncdu/

2016-08-29 Thread Jeroen Roovers
commit: bb60eeff6209ce34ece2b18439fb3615924bd5dd
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Mon Aug 29 14:01:10 2016 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Mon Aug 29 14:01:10 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb60eeff

sys-fs/ncdu: Version bump.

Package-Manager: portage-2.3.0

 sys-fs/ncdu/Manifest |  1 +
 sys-fs/ncdu/ncdu-1.12.ebuild | 21 +
 2 files changed, 22 insertions(+)

diff --git a/sys-fs/ncdu/Manifest b/sys-fs/ncdu/Manifest
index d43b80f..1000a7b 100644
--- a/sys-fs/ncdu/Manifest
+++ b/sys-fs/ncdu/Manifest
@@ -1 +1,2 @@
 DIST ncdu-1.11.tar.gz 134093 SHA256 
d0aea772e47463c281007f279a9041252155a2b2349b18adb9055075e141bb7b SHA512 
4b9319900dd11da7c3bd2ba9a478c52b8280e3560b8b5b6610fc145c5d81d726715db69cd21bd400d75339a5bcf140bcafb3b4430075427a51b65763e81d8c48
 WHIRLPOOL 
a0ff88adde70ce7f95f9bf172dc0fd5001d5e909bc0db86258d9d2a5f4dba45e511247c71b784b74b73da3b16f695e2eba4d3e89ce445b241801067dac248608
+DIST ncdu-1.12.tar.gz 140596 SHA256 
820e4e4747a2a2ec7a2e9f06d2f5a353516362c22496a10a9834f871b877499a SHA512 
20620dd79d2af878442769e097f13806f64f23875dcb85ebccd573a3de43aba5663d496049b64015d13f9a79d624298032c008ef61dfb6f61d8b12902b8dca12
 WHIRLPOOL 
1ec3e97a9b0172cc312e5ee1b641c298d0cb1c20af031767ec8f87e387c9b2992c4fe60a02e49e9741133eb1c92daffb23024ccd4bd8124a5f0f472df59ad684

diff --git a/sys-fs/ncdu/ncdu-1.12.ebuild b/sys-fs/ncdu/ncdu-1.12.ebuild
new file mode 100644
index ..d72d60f
--- /dev/null
+++ b/sys-fs/ncdu/ncdu-1.12.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DESCRIPTION="NCurses Disk Usage"
+HOMEPAGE="http://dev.yorhel.nl/ncdu/;
+SRC_URI="http://dev.yorhel.nl/download/${P}.tar.gz;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~x64-macos"
+
+RDEPEND="
+   sys-libs/ncurses:0=[unicode]
+"
+DEPEND="
+   ${RDEPEND}
+   virtual/pkgconfig
+"



[gentoo-commits] repo/gentoo:master commit in: sys-fs/ncdu/

2016-03-23 Thread Mike Frysinger
commit: f69c8f994c40a02f817a1432dda39fbdc395e770
Author: Mike Frysinger  gentoo  org>
AuthorDate: Wed Mar 23 15:56:56 2016 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Wed Mar 23 16:03:28 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f69c8f99

sys-fs/ncdu: mark 1.11 alpha stable

 sys-fs/ncdu/ncdu-1.11.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/ncdu/ncdu-1.11.ebuild b/sys-fs/ncdu/ncdu-1.11.ebuild
index d62ad8f..24a4139 100644
--- a/sys-fs/ncdu/ncdu-1.11.ebuild
+++ b/sys-fs/ncdu/ncdu-1.11.ebuild
@@ -12,7 +12,7 @@ SRC_URI="http://dev.yorhel.nl/download/${P}.tar.gz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm ppc ppc64 x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="alpha amd64 arm ppc ppc64 x86 ~amd64-linux ~x86-linux ~x64-macos"
 
 RDEPEND="sys-libs/ncurses:0=[unicode]"
 DEPEND="${RDEPEND}



[gentoo-commits] repo/gentoo:master commit in: sys-fs/ncdu/

2015-09-01 Thread Markus Meier
commit: cc05dacad186d90df60bc3c51b8a82ece8fba70f
Author: Markus Meier  gentoo  org>
AuthorDate: Tue Sep  1 16:08:13 2015 +
Commit: Markus Meier  gentoo  org>
CommitDate: Tue Sep  1 16:08:13 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc05daca

sys-fs/ncdu: arm stable, bug #558036

Package-Manager: portage-2.2.20.1
RepoMan-Options: --include-arches="arm"

 sys-fs/ncdu/ncdu-1.11.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/ncdu/ncdu-1.11.ebuild b/sys-fs/ncdu/ncdu-1.11.ebuild
index f21b7ad..d62ad8f 100644
--- a/sys-fs/ncdu/ncdu-1.11.ebuild
+++ b/sys-fs/ncdu/ncdu-1.11.ebuild
@@ -12,7 +12,7 @@ SRC_URI="http://dev.yorhel.nl/download/${P}.tar.gz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm ppc ppc64 x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="amd64 arm ppc ppc64 x86 ~amd64-linux ~x86-linux ~x64-macos"
 
 RDEPEND="sys-libs/ncurses:0=[unicode]"
 DEPEND="${RDEPEND}



[gentoo-commits] repo/gentoo:master commit in: sys-fs/ncdu/

2015-08-16 Thread Justin Lecher
commit: 60ff9777063e465acd35febdb3656b7e7711c370
Author: Justin Lecher jlec AT gentoo DOT org
AuthorDate: Sun Aug 16 10:59:00 2015 +
Commit: Justin Lecher jlec AT gentoo DOT org
CommitDate: Sun Aug 16 10:59:09 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60ff9777

sys-fs/ncdu: Use slot operators for ncurses

Package-Manager: portage-2.2.20.1
Signed-off-by: Justin Lecher jlec AT gentoo.org

 sys-fs/ncdu/ncdu-1.11.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/ncdu/ncdu-1.11.ebuild b/sys-fs/ncdu/ncdu-1.11.ebuild
index 06611e6..c0a99b8 100644
--- a/sys-fs/ncdu/ncdu-1.11.ebuild
+++ b/sys-fs/ncdu/ncdu-1.11.ebuild
@@ -14,7 +14,7 @@ LICENSE=MIT
 SLOT=0
 KEYWORDS=amd64 ~arm ppc ppc64 x86 ~amd64-linux ~x86-linux ~x64-macos
 
-RDEPEND=sys-libs/ncurses[unicode]
+RDEPEND=sys-libs/ncurses:5=[unicode]
 DEPEND=${RDEPEND}
virtual/pkgconfig
 



<    1   2