public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: x11-apps/radeontop/
@ 2017-04-02 16:46 David Seifert
  0 siblings, 0 replies; 7+ messages in thread
From: David Seifert @ 2017-04-02 16:46 UTC (permalink / raw
  To: gentoo-commits

commit:     289861a4fadd0f50dfad75f0f30d8cef93331dbf
Author:     Alexander Tsoy <alexander <AT> tsoy <DOT> me>
AuthorDate: Fri Mar 24 18:13:28 2017 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Apr  2 16:46:14 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=289861a4

x11-apps/radeontop: kill video_cards_amdgpu USE flag

AMDGPU support requires no additional deps and we already have
sufficiently new version of libdrm in gentoo (>= 2.4.63). This
requirement for the newer libdrm version is the only reason why
upstream made amdgpu support optional.
Closes: https://github.com/gentoo/gentoo/pull/4286

 x11-apps/radeontop/radeontop-1.0.ebuild  | 4 ++--
 x11-apps/radeontop/radeontop-9999.ebuild | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/x11-apps/radeontop/radeontop-1.0.ebuild b/x11-apps/radeontop/radeontop-1.0.ebuild
index 44dc27fcece..9380ee04b30 100644
--- a/x11-apps/radeontop/radeontop-1.0.ebuild
+++ b/x11-apps/radeontop/radeontop-1.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/clbr/radeontop/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="nls video_cards_amdgpu"
+IUSE="nls"
 
 RDEPEND="
 	sys-libs/ncurses:0=
@@ -46,7 +46,7 @@ src_prepare() {
 src_configure() {
 	tc-export CC
 	export nls=$(usex nls 1 0)
-	export amdgpu=$(usex video_cards_amdgpu 1 0)
+	export amdgpu=1
 	export xcb=1
 	# Do not add -g or -s to CFLAGS
 	export plain=1

diff --git a/x11-apps/radeontop/radeontop-9999.ebuild b/x11-apps/radeontop/radeontop-9999.ebuild
index 5d334bccb1a..1898f2182a8 100644
--- a/x11-apps/radeontop/radeontop-9999.ebuild
+++ b/x11-apps/radeontop/radeontop-9999.ebuild
@@ -11,7 +11,7 @@ EGIT_REPO_URI="https://github.com/clbr/radeontop.git"
 
 SLOT="0"
 KEYWORDS=""
-IUSE="nls video_cards_amdgpu"
+IUSE="nls"
 
 RDEPEND="
 	sys-libs/ncurses:0=
@@ -31,7 +31,7 @@ DEPEND="${RDEPEND}
 src_configure() {
 	tc-export CC
 	export nls=$(usex nls 1 0)
-	export amdgpu=$(usex video_cards_amdgpu 1 0)
+	export amdgpu=1
 	export xcb=1
 	# Do not add -g or -s to CFLAGS
 	export plain=1


^ permalink raw reply related	[flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-apps/radeontop/
@ 2017-09-03  6:20 Michael Palimaka
  0 siblings, 0 replies; 7+ messages in thread
From: Michael Palimaka @ 2017-09-03  6:20 UTC (permalink / raw
  To: gentoo-commits

commit:     b1e79917b41f4b474b86e828ae2bd541d89077dc
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Sun Sep  3 06:20:32 2017 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Sun Sep  3 06:20:37 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1e79917

x11-apps/radeontop: fix multilib-strict violation

Gentoo-bug: 627942
Package-Manager: Portage-2.3.6, Repoman-2.3.3

 x11-apps/radeontop/{radeontop-1.0.ebuild => radeontop-1.0-r1.ebuild} | 3 ++-
 x11-apps/radeontop/radeontop-9999.ebuild                             | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/x11-apps/radeontop/radeontop-1.0.ebuild b/x11-apps/radeontop/radeontop-1.0-r1.ebuild
similarity index 96%
rename from x11-apps/radeontop/radeontop-1.0.ebuild
rename to x11-apps/radeontop/radeontop-1.0-r1.ebuild
index 9380ee04b30..dbe582980fc 100644
--- a/x11-apps/radeontop/radeontop-1.0.ebuild
+++ b/x11-apps/radeontop/radeontop-1.0-r1.ebuild
@@ -6,9 +6,9 @@ inherit toolchain-funcs
 
 DESCRIPTION="Utility to view Radeon GPU utilization"
 HOMEPAGE="https://github.com/clbr/radeontop"
-LICENSE="GPL-3"
 SRC_URI="https://github.com/clbr/radeontop/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
+LICENSE="GPL-3"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE="nls"
@@ -45,6 +45,7 @@ src_prepare() {
 
 src_configure() {
 	tc-export CC
+	export LIBDIR=$(get_libdir)
 	export nls=$(usex nls 1 0)
 	export amdgpu=1
 	export xcb=1

diff --git a/x11-apps/radeontop/radeontop-9999.ebuild b/x11-apps/radeontop/radeontop-9999.ebuild
index 1898f2182a8..4c1bafa1eb8 100644
--- a/x11-apps/radeontop/radeontop-9999.ebuild
+++ b/x11-apps/radeontop/radeontop-9999.ebuild
@@ -6,9 +6,9 @@ inherit toolchain-funcs git-r3
 
 DESCRIPTION="Utility to view Radeon GPU utilization"
 HOMEPAGE="https://github.com/clbr/radeontop"
-LICENSE="GPL-3"
 EGIT_REPO_URI="https://github.com/clbr/radeontop.git"
 
+LICENSE="GPL-3"
 SLOT="0"
 KEYWORDS=""
 IUSE="nls"
@@ -30,6 +30,7 @@ DEPEND="${RDEPEND}
 
 src_configure() {
 	tc-export CC
+	export LIBDIR=$(get_libdir)
 	export nls=$(usex nls 1 0)
 	export amdgpu=1
 	export xcb=1


^ permalink raw reply related	[flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-apps/radeontop/
@ 2017-03-16 19:13 David Seifert
  0 siblings, 0 replies; 7+ messages in thread
From: David Seifert @ 2017-03-16 19:13 UTC (permalink / raw
  To: gentoo-commits

commit:     ef799216444d0e60f6767260c182770f669611ed
Author:     Harri Nieminen <moikkis <AT> gmail <DOT> com>
AuthorDate: Sat Mar 11 09:38:56 2017 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Thu Mar 16 19:12:50 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef799216

x11-apps/radeontop: Bump to 1.0, sync live

Package-Manager: Portage-2.3.4, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4186

 x11-apps/radeontop/Manifest                        |  2 +-
 .../{radeontop-0.9.ebuild => radeontop-1.0.ebuild} | 31 +++++++++++++---------
 x11-apps/radeontop/radeontop-9999.ebuild           | 21 ++++++++-------
 3 files changed, 30 insertions(+), 24 deletions(-)

diff --git a/x11-apps/radeontop/Manifest b/x11-apps/radeontop/Manifest
index eb0840952d1..81916c7e4c1 100644
--- a/x11-apps/radeontop/Manifest
+++ b/x11-apps/radeontop/Manifest
@@ -1 +1 @@
-DIST radeontop-0.9.tar.gz 31186 SHA256 e78a56d1222c8a45f08f09409f178ddda83461085b012e5ba54b716e6c8dd61d SHA512 d219e000c3ed39e3022c8316a3412f423b363abafefb3d8d6e80fa2ac505084afaf4a18b3f6bba5918f29c1a659668e07c08d02a6fdbf9ef1764758350db449a WHIRLPOOL 744834650ae98fd87e34ca1511183a1c3a9e1b215b3a31e7872b8329f7bfd8d97df33a9425e47d2c6169412f8000b516f09526978fee4042016a76e8574f1cd6
+DIST radeontop-1.0.tar.gz 32677 SHA256 a997ea92f38a53d59db4d8e846aec4cc04cee8b79939e89d5eb9e31c57b468fc SHA512 bd7e8ecff962d8ac3072f3f1fa7a5d9981e2da28b38a1f234f6fe550511c3fbda2c1c6e9a6d1120bf99ef3ae621a91ff67c451eaf98dfa1264e9e6a59ae55e08 WHIRLPOOL 0813d44cf0801e7ace48704cf6f68d7a0d26cbb2dd6a4d47b2854c4ccbdce409dec45f4acc40678f7d1aca452989a90e7a886bc05cf8e62be5285ad97ae7b9ad

diff --git a/x11-apps/radeontop/radeontop-0.9.ebuild b/x11-apps/radeontop/radeontop-1.0.ebuild
similarity index 66%
rename from x11-apps/radeontop/radeontop-0.9.ebuild
rename to x11-apps/radeontop/radeontop-1.0.ebuild
index 1a3e1530557..7b81237a64b 100644
--- a/x11-apps/radeontop/radeontop-0.9.ebuild
+++ b/x11-apps/radeontop/radeontop-1.0.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
-inherit eutils toolchain-funcs
+EAPI=6
+inherit toolchain-funcs
 
 DESCRIPTION="Utility to view Radeon GPU utilization"
 HOMEPAGE="https://github.com/clbr/radeontop"
@@ -14,10 +14,14 @@ KEYWORDS="~amd64 ~x86"
 IUSE="nls"
 
 RDEPEND="
-	sys-libs/ncurses
-	x11-libs/libpciaccess
+	sys-libs/ncurses:0=
 	x11-libs/libdrm
-	nls? ( sys-libs/ncurses[unicode] virtual/libintl )
+	x11-libs/libpciaccess
+	x11-libs/libxcb
+	nls? (
+		sys-libs/ncurses:0=[unicode]
+		virtual/libintl
+	)
 "
 DEPEND="${RDEPEND}
 	virtual/pkgconfig
@@ -25,16 +29,16 @@ DEPEND="${RDEPEND}
 "
 
 src_prepare() {
-	epatch_user
+	default
 
-cat > include/version.h << EOF || die
-#ifndef VER_H
-#define VER_H
+	cat > include/version.h <<-EOF || die
+	#ifndef VER_H
+	#define VER_H
 
-#define VERSION "${PV}"
+	#define VERSION "${PV}"
 
-#endif
-EOF
+	#endif
+	EOF
 	>getver.sh || die
 	touch .git || die
 }
@@ -42,6 +46,7 @@ EOF
 src_configure() {
 	tc-export CC
 	export nls=$(usex nls 1 0)
+	export xcb=1
 	# Do not add -g or -s to CFLAGS
 	export plain=1
 }

diff --git a/x11-apps/radeontop/radeontop-9999.ebuild b/x11-apps/radeontop/radeontop-9999.ebuild
index 79d4bdc36db..e3919c9db7f 100644
--- a/x11-apps/radeontop/radeontop-9999.ebuild
+++ b/x11-apps/radeontop/radeontop-9999.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
-inherit eutils toolchain-funcs git-r3
+EAPI=6
+inherit toolchain-funcs git-r3
 
 DESCRIPTION="Utility to view Radeon GPU utilization"
 HOMEPAGE="https://github.com/clbr/radeontop"
@@ -14,23 +14,24 @@ KEYWORDS=""
 IUSE="nls"
 
 RDEPEND="
-	sys-libs/ncurses
-	x11-libs/libpciaccess
+	sys-libs/ncurses:0=
 	x11-libs/libdrm
-	nls? ( sys-libs/ncurses[unicode] virtual/libintl )
+	x11-libs/libpciaccess
+	x11-libs/libxcb
+	nls? (
+		sys-libs/ncurses:0=[unicode]
+		virtual/libintl
+	)
 "
 DEPEND="${RDEPEND}
 	virtual/pkgconfig
 	nls? ( sys-devel/gettext )
 "
 
-src_prepare() {
-	epatch_user
-}
-
 src_configure() {
 	tc-export CC
 	export nls=$(usex nls 1 0)
+	export xcb=1
 	# Do not add -g or -s to CFLAGS
 	export plain=1
 }


^ permalink raw reply related	[flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-apps/radeontop/
@ 2017-03-06  1:52 Göktürk Yüksek
  0 siblings, 0 replies; 7+ messages in thread
From: Göktürk Yüksek @ 2017-03-06  1:52 UTC (permalink / raw
  To: gentoo-commits

commit:     bf703d671c90d05774188fbc9f2bda564c2c5106
Author:     Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
AuthorDate: Mon Mar  6 01:48:38 2017 +0000
Commit:     Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
CommitDate: Mon Mar  6 01:52:06 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf703d67

x11-apps/radeontop: remove unresponsive proxied maintainer

Package-Manager: Portage-2.3.0, Repoman-2.3.1

 x11-apps/radeontop/metadata.xml | 8 +-------
 1 file changed, 1 insertion(+), 7 deletions(-)

diff --git a/x11-apps/radeontop/metadata.xml b/x11-apps/radeontop/metadata.xml
index 4ce225f5b76..0fad074d073 100644
--- a/x11-apps/radeontop/metadata.xml
+++ b/x11-apps/radeontop/metadata.xml
@@ -1,13 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<maintainer type="person">
-		<email>nikoli@gmx.us</email>
-	</maintainer>
-	<maintainer type="project">
-		<email>proxy-maint@gentoo.org</email>
-		<name>Proxy Maintainers</name>
-	</maintainer>
+<!-- maintainer-needed -->
 	<upstream>
 		<remote-id type="github">clbr/radeontop</remote-id>
 	</upstream>


^ permalink raw reply related	[flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-apps/radeontop/
@ 2016-03-13 15:09 Manuel Rüger
  0 siblings, 0 replies; 7+ messages in thread
From: Manuel Rüger @ 2016-03-13 15:09 UTC (permalink / raw
  To: gentoo-commits

commit:     fd4aba788aa7013c8f7aa56d9fa5d1d1753a31d2
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 13 15:06:11 2016 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Sun Mar 13 15:06:11 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd4aba78

x11-apps/radeontop: Remove old

Package-Manager: portage-2.2.28

 x11-apps/radeontop/Manifest             |  1 -
 x11-apps/radeontop/radeontop-0.8.ebuild | 48 ---------------------------------
 2 files changed, 49 deletions(-)

diff --git a/x11-apps/radeontop/Manifest b/x11-apps/radeontop/Manifest
index 91b15c4..eb08409 100644
--- a/x11-apps/radeontop/Manifest
+++ b/x11-apps/radeontop/Manifest
@@ -1,2 +1 @@
-DIST radeontop-0.8.tar.gz 29719 SHA256 4430e1aaca895d70ea496a9b14010d9d94cadd6269b28a66104af89ff29d8489 SHA512 8c711377a617cc071599ef2c3355bb1f5e68aa69e2999396272a93657c5ba448005e0829dea34666e88466c9fd7da2f58cf44ccd542be4d63a72b3ae3e1fc04a WHIRLPOOL 4c95e3aca57ad75d71f15969b91131eb7e4a73e686ca22cc2df8f2e946327ccc41d8dabc02930e3d2cdb292758887864ce4ab3e4a1c6bf799c934fe1df857665
 DIST radeontop-0.9.tar.gz 31186 SHA256 e78a56d1222c8a45f08f09409f178ddda83461085b012e5ba54b716e6c8dd61d SHA512 d219e000c3ed39e3022c8316a3412f423b363abafefb3d8d6e80fa2ac505084afaf4a18b3f6bba5918f29c1a659668e07c08d02a6fdbf9ef1764758350db449a WHIRLPOOL 744834650ae98fd87e34ca1511183a1c3a9e1b215b3a31e7872b8329f7bfd8d97df33a9425e47d2c6169412f8000b516f09526978fee4042016a76e8574f1cd6

diff --git a/x11-apps/radeontop/radeontop-0.8.ebuild b/x11-apps/radeontop/radeontop-0.8.ebuild
deleted file mode 100644
index fc899a0..0000000
--- a/x11-apps/radeontop/radeontop-0.8.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-inherit eutils toolchain-funcs
-
-DESCRIPTION="Utility to view Radeon GPU utilization"
-HOMEPAGE="https://github.com/clbr/radeontop"
-LICENSE="GPL-3"
-SRC_URI="https://github.com/clbr/radeontop/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="nls"
-
-RDEPEND="
-	sys-libs/ncurses
-	x11-libs/libpciaccess
-	x11-libs/libdrm
-	nls? ( sys-libs/ncurses[unicode] virtual/libintl )
-"
-DEPEND="${RDEPEND}
-	virtual/pkgconfig
-	nls? ( sys-devel/gettext )
-"
-
-src_prepare() {
-	epatch_user
-
-cat > include/version.h << EOF || die
-#ifndef VER_H
-#define VER_H
-
-#define VERSION "${PV}"
-
-#endif
-EOF
-	>getver.sh || die
-	touch .git || die
-}
-
-src_configure() {
-	tc-export CC
-	export nls=$(usex nls 1 0)
-	# Do not add -g or -s to CFLAGS
-	export plain=1
-}


^ permalink raw reply related	[flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-apps/radeontop/
@ 2015-09-11 21:57 Manuel Rüger
  0 siblings, 0 replies; 7+ messages in thread
From: Manuel Rüger @ 2015-09-11 21:57 UTC (permalink / raw
  To: gentoo-commits

commit:     274a728817deeb7a412b6147791ec1dd603a5834
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 11 21:56:20 2015 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Fri Sep 11 21:57:06 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=274a7288

x11-apps/radeontop: Remove old

Package-Manager: portage-2.2.20.1

 x11-apps/radeontop/Manifest                |  1 -
 x11-apps/radeontop/radeontop-0.7-r1.ebuild | 47 ------------------------------
 2 files changed, 48 deletions(-)

diff --git a/x11-apps/radeontop/Manifest b/x11-apps/radeontop/Manifest
index 810fef9..91b15c4 100644
--- a/x11-apps/radeontop/Manifest
+++ b/x11-apps/radeontop/Manifest
@@ -1,3 +1,2 @@
-DIST radeontop-0.7.tar.gz 28353 SHA256 57542644d95a05e321223b2137836cc300935d8615110ed134c2d83e3ff0058d SHA512 92d98c0849ebfabaa0b7086461e41c736020e4a9af1e5e31dc0d2e098496a6eebb878fd4a5694035a9bb48f33267e31802063e413becf8f9c2924355fdf60b81 WHIRLPOOL 045c1ee5a6dcc1c2fbe6ec86fabad9723938298685e37fa0efc6967ab621ac9087832a10b636424e8d9f1c8fdb5d403a64a1fe0a0bea79810ed7d5f751723a10
 DIST radeontop-0.8.tar.gz 29719 SHA256 4430e1aaca895d70ea496a9b14010d9d94cadd6269b28a66104af89ff29d8489 SHA512 8c711377a617cc071599ef2c3355bb1f5e68aa69e2999396272a93657c5ba448005e0829dea34666e88466c9fd7da2f58cf44ccd542be4d63a72b3ae3e1fc04a WHIRLPOOL 4c95e3aca57ad75d71f15969b91131eb7e4a73e686ca22cc2df8f2e946327ccc41d8dabc02930e3d2cdb292758887864ce4ab3e4a1c6bf799c934fe1df857665
 DIST radeontop-0.9.tar.gz 31186 SHA256 e78a56d1222c8a45f08f09409f178ddda83461085b012e5ba54b716e6c8dd61d SHA512 d219e000c3ed39e3022c8316a3412f423b363abafefb3d8d6e80fa2ac505084afaf4a18b3f6bba5918f29c1a659668e07c08d02a6fdbf9ef1764758350db449a WHIRLPOOL 744834650ae98fd87e34ca1511183a1c3a9e1b215b3a31e7872b8329f7bfd8d97df33a9425e47d2c6169412f8000b516f09526978fee4042016a76e8574f1cd6

diff --git a/x11-apps/radeontop/radeontop-0.7-r1.ebuild b/x11-apps/radeontop/radeontop-0.7-r1.ebuild
deleted file mode 100644
index b0f467c..0000000
--- a/x11-apps/radeontop/radeontop-0.7-r1.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-inherit eutils toolchain-funcs
-
-DESCRIPTION="Utility to view Radeon GPU utilization"
-HOMEPAGE="https://github.com/clbr/radeontop"
-LICENSE="GPL-3"
-SRC_URI="https://github.com/clbr/radeontop/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="nls"
-
-RDEPEND="
-	sys-libs/ncurses
-	x11-libs/libpciaccess
-	nls? ( sys-libs/ncurses[unicode] virtual/libintl )
-"
-DEPEND="${RDEPEND}
-	virtual/pkgconfig
-	nls? ( sys-devel/gettext )
-"
-
-src_prepare() {
-	epatch_user
-
-cat > include/version.h << EOF || die
-#ifndef VER_H
-#define VER_H
-
-#define VERSION "${PV}"
-
-#endif
-EOF
-	>getver.sh || die
-	touch .git || die
-}
-
-src_configure() {
-	tc-export CC
-	export nls=$(usex nls 1 0)
-	# Do not add -g or -s to CFLAGS
-	export plain=1
-}


^ permalink raw reply related	[flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-apps/radeontop/
@ 2015-09-11 21:57 Manuel Rüger
  0 siblings, 0 replies; 7+ messages in thread
From: Manuel Rüger @ 2015-09-11 21:57 UTC (permalink / raw
  To: gentoo-commits

commit:     0363eaa374845b5f7d4a6716dacdd8a89631f3de
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 11 21:55:55 2015 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Fri Sep 11 21:57:03 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0363eaa3

x11-apps/radeontop: Version bump

Package-Manager: portage-2.2.20.1

 x11-apps/radeontop/Manifest             |  1 +
 x11-apps/radeontop/radeontop-0.9.ebuild | 48 +++++++++++++++++++++++++++++++++
 2 files changed, 49 insertions(+)

diff --git a/x11-apps/radeontop/Manifest b/x11-apps/radeontop/Manifest
index 03d8e4d..810fef9 100644
--- a/x11-apps/radeontop/Manifest
+++ b/x11-apps/radeontop/Manifest
@@ -1,2 +1,3 @@
 DIST radeontop-0.7.tar.gz 28353 SHA256 57542644d95a05e321223b2137836cc300935d8615110ed134c2d83e3ff0058d SHA512 92d98c0849ebfabaa0b7086461e41c736020e4a9af1e5e31dc0d2e098496a6eebb878fd4a5694035a9bb48f33267e31802063e413becf8f9c2924355fdf60b81 WHIRLPOOL 045c1ee5a6dcc1c2fbe6ec86fabad9723938298685e37fa0efc6967ab621ac9087832a10b636424e8d9f1c8fdb5d403a64a1fe0a0bea79810ed7d5f751723a10
 DIST radeontop-0.8.tar.gz 29719 SHA256 4430e1aaca895d70ea496a9b14010d9d94cadd6269b28a66104af89ff29d8489 SHA512 8c711377a617cc071599ef2c3355bb1f5e68aa69e2999396272a93657c5ba448005e0829dea34666e88466c9fd7da2f58cf44ccd542be4d63a72b3ae3e1fc04a WHIRLPOOL 4c95e3aca57ad75d71f15969b91131eb7e4a73e686ca22cc2df8f2e946327ccc41d8dabc02930e3d2cdb292758887864ce4ab3e4a1c6bf799c934fe1df857665
+DIST radeontop-0.9.tar.gz 31186 SHA256 e78a56d1222c8a45f08f09409f178ddda83461085b012e5ba54b716e6c8dd61d SHA512 d219e000c3ed39e3022c8316a3412f423b363abafefb3d8d6e80fa2ac505084afaf4a18b3f6bba5918f29c1a659668e07c08d02a6fdbf9ef1764758350db449a WHIRLPOOL 744834650ae98fd87e34ca1511183a1c3a9e1b215b3a31e7872b8329f7bfd8d97df33a9425e47d2c6169412f8000b516f09526978fee4042016a76e8574f1cd6

diff --git a/x11-apps/radeontop/radeontop-0.9.ebuild b/x11-apps/radeontop/radeontop-0.9.ebuild
new file mode 100644
index 0000000..f5cabf7
--- /dev/null
+++ b/x11-apps/radeontop/radeontop-0.9.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit eutils toolchain-funcs
+
+DESCRIPTION="Utility to view Radeon GPU utilization"
+HOMEPAGE="https://github.com/clbr/radeontop"
+LICENSE="GPL-3"
+SRC_URI="https://github.com/clbr/radeontop/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="nls"
+
+RDEPEND="
+	sys-libs/ncurses
+	x11-libs/libpciaccess
+	x11-libs/libdrm
+	nls? ( sys-libs/ncurses[unicode] virtual/libintl )
+"
+DEPEND="${RDEPEND}
+	virtual/pkgconfig
+	nls? ( sys-devel/gettext )
+"
+
+src_prepare() {
+	epatch_user
+
+cat > include/version.h << EOF || die
+#ifndef VER_H
+#define VER_H
+
+#define VERSION "${PV}"
+
+#endif
+EOF
+	>getver.sh || die
+	touch .git || die
+}
+
+src_configure() {
+	tc-export CC
+	export nls=$(usex nls 1 0)
+	# Do not add -g or -s to CFLAGS
+	export plain=1
+}


^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2017-09-03  6:20 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-04-02 16:46 [gentoo-commits] repo/gentoo:master commit in: x11-apps/radeontop/ David Seifert
  -- strict thread matches above, loose matches on Subject: below --
2017-09-03  6:20 Michael Palimaka
2017-03-16 19:13 David Seifert
2017-03-06  1:52 Göktürk Yüksek
2016-03-13 15:09 Manuel Rüger
2015-09-11 21:57 Manuel Rüger
2015-09-11 21:57 Manuel Rüger

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox