Gentoo Archives: gentoo-commits

From: wizzleby@×××××.com
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/gentoo-guis:master commit in: profiles/, app-portage/kportagetray/
Date: Fri, 04 Feb 2011 04:03:42
Message-Id: 2d353718a74663e8bcfd290e04cf32dfcf90b033.wizzleby@gentoo
1 commit: 2d353718a74663e8bcfd290e04cf32dfcf90b033
2 Author: Locke Shinseiko <wizzleby <AT> gmail <DOT> com>
3 AuthorDate: Fri Feb 4 04:02:54 2011 +0000
4 Commit: Locke Shinseiko <wizzleby <AT> gmail <DOT> com>
5 CommitDate: Fri Feb 4 04:02:54 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gentoo-guis.git;a=commit;h=2d353718a74663e8bcfd290e04cf32dfcf90b033
7
8 [app-portage/kportagetray] Imported from kde overlay.
9 [profiles/categories] created with category app-portage in.
10
11 ---
12 app-portage/kportagetray/Manifest | 4 +
13 app-portage/kportagetray/kportagetray-0.2.4.ebuild | 64 ++++++++++++++++++++
14 app-portage/kportagetray/kportagetray-9999.ebuild | 64 ++++++++++++++++++++
15 app-portage/kportagetray/metadata.xml | 14 ++++
16 profiles/categories | 1 +
17 5 files changed, 147 insertions(+), 0 deletions(-)
18
19 diff --git a/app-portage/kportagetray/Manifest b/app-portage/kportagetray/Manifest
20 new file mode 100644
21 index 0000000..20b4351
22 --- /dev/null
23 +++ b/app-portage/kportagetray/Manifest
24 @@ -0,0 +1,4 @@
25 +DIST kportagetray-0.2.4.tar.bz2 132793 RMD160 34dad39689bd33480626a665193c065979bf0a91 SHA1 5787e64eb1b3aa7cf7274b428a3f727cb5b5e046 SHA256 a6cbb686e8fb38ff634718ddfc561680454db0d37c1dda2652d530b5e14cc404
26 +EBUILD kportagetray-0.2.4.ebuild 1126 RMD160 e4a11cc4b2b3de7796044daa484072e7421f91ec SHA1 a0a6ca95de45ea25ab57f00d2388994ed0ab472f SHA256 4a1af01d05b05ed2a0f8b7a5b9aba7012974eb4187e56ab1607c3d06e7bf20ff
27 +EBUILD kportagetray-9999.ebuild 1115 RMD160 88d55a450282a06584dec61804de222180808f18 SHA1 ee377e92121c424c6c35e25408840ea4761b3e4f SHA256 600a9a1fa38a362a285e53d7a6fff376f601ebc68b20a0978be5f336585a1396
28 +MISC metadata.xml 382 RMD160 607e915ba3f3d9d8ec572d773e5e4e75201fd5b1 SHA1 209ff6873ba99aded82ca0f30dc207cb63cbef6d SHA256 6b29a392e4890b88f4b6acec11d4f889041af6a805585e4c3b1c54d562d3eb5b
29
30 diff --git a/app-portage/kportagetray/kportagetray-0.2.4.ebuild b/app-portage/kportagetray/kportagetray-0.2.4.ebuild
31 new file mode 100644
32 index 0000000..efeb510
33 --- /dev/null
34 +++ b/app-portage/kportagetray/kportagetray-0.2.4.ebuild
35 @@ -0,0 +1,64 @@
36 +# Copyright 1999-2011 Gentoo Foundation
37 +# Distributed under the terms of the GNU General Public License v2
38 +# $Header: $
39 +
40 +EAPI=3
41 +
42 +SCM=""
43 +if [ "${PV%9999}" != "${PV}" ] ; then
44 + SCM=git
45 + EGIT_REPO_URI="git://gitorious.org/${PN}/${PN}.git"
46 +fi
47 +
48 +KDE_LINGUAS="pt_BR"
49 +PYTHON_DEPEND="2:2.6"
50 +
51 +inherit ${SCM} kde4-base python
52 +
53 +DESCRIPTION="Graphical application for Portage's daily tasks"
54 +HOMEPAGE="http://gitorious.org/kportagetray"
55 +
56 +if [ "${PV%9999}" != "${PV}" ] ; then # Live ebuild
57 + SRC_URI=""
58 +else
59 + SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
60 +fi
61 +
62 +LICENSE="GPL-3"
63 +KEYWORDS="~amd64 ~x86"
64 +SLOT="4"
65 +IUSE=""
66 +
67 +DEPEND="
68 + dev-python/PyQt4[svg,dbus]
69 + >=kde-base/pykde4-${KDE_MINIMAL}
70 +"
71 +RDEPEND="${DEPEND}
72 + app-portage/eix
73 + app-portage/genlop
74 + >=kde-base/kdesu-${KDE_MINIMAL}
75 + >=kde-base/knotify-${KDE_MINIMAL}
76 + >=kde-base/konsole-${KDE_MINIMAL}
77 +"
78 +
79 +pkg_setup() {
80 + python_set_active_version 2
81 + kde4-base_pkg_setup
82 +}
83 +
84 +src_unpack() {
85 + if [ "${PV%9999}" != "${PV}" ] ; then
86 + git_src_unpack
87 + else
88 + base_src_unpack
89 + fi
90 +}
91 +
92 +src_prepare() {
93 + python_convert_shebangs -r 2 .
94 + kde4-base_src_prepare
95 +}
96 +
97 +pkg_postinst() {
98 + kde4-base_pkg_postinst
99 +}
100
101 diff --git a/app-portage/kportagetray/kportagetray-9999.ebuild b/app-portage/kportagetray/kportagetray-9999.ebuild
102 new file mode 100644
103 index 0000000..8bc3563
104 --- /dev/null
105 +++ b/app-portage/kportagetray/kportagetray-9999.ebuild
106 @@ -0,0 +1,64 @@
107 +# Copyright 1999-2011 Gentoo Foundation
108 +# Distributed under the terms of the GNU General Public License v2
109 +# $Header: $
110 +
111 +EAPI=3
112 +
113 +SCM=""
114 +if [ "${PV%9999}" != "${PV}" ] ; then
115 + SCM=git
116 + EGIT_REPO_URI="git://gitorious.org/${PN}/${PN}.git"
117 +fi
118 +
119 +KDE_LINGUAS="pt_BR"
120 +PYTHON_DEPEND="2:2.6"
121 +
122 +inherit ${SCM} kde4-base python
123 +
124 +DESCRIPTION="Graphical application for Portage's daily tasks"
125 +HOMEPAGE="http://gitorious.org/kportagetray"
126 +
127 +if [ "${PV%9999}" != "${PV}" ] ; then # Live ebuild
128 + SRC_URI=""
129 +else
130 + SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
131 +fi
132 +
133 +LICENSE="GPL-3"
134 +KEYWORDS=""
135 +SLOT="4"
136 +IUSE=""
137 +
138 +DEPEND="
139 + dev-python/PyQt4[svg,dbus]
140 + >=kde-base/pykde4-${KDE_MINIMAL}
141 +"
142 +RDEPEND="${DEPEND}
143 + app-portage/eix
144 + app-portage/genlop
145 + >=kde-base/kdesu-${KDE_MINIMAL}
146 + >=kde-base/knotify-${KDE_MINIMAL}
147 + >=kde-base/konsole-${KDE_MINIMAL}
148 +"
149 +
150 +pkg_setup() {
151 + python_set_active_version 2
152 + kde4-base_pkg_setup
153 +}
154 +
155 +src_unpack() {
156 + if [ "${PV%9999}" != "${PV}" ] ; then
157 + git_src_unpack
158 + else
159 + base_src_unpack
160 + fi
161 +}
162 +
163 +src_prepare() {
164 + python_convert_shebangs -r 2 .
165 + kde4-base_src_prepare
166 +}
167 +
168 +pkg_postinst() {
169 + kde4-base_pkg_postinst
170 +}
171
172 diff --git a/app-portage/kportagetray/metadata.xml b/app-portage/kportagetray/metadata.xml
173 new file mode 100644
174 index 0000000..e897f67
175 --- /dev/null
176 +++ b/app-portage/kportagetray/metadata.xml
177 @@ -0,0 +1,14 @@
178 +<?xml version="1.0" encoding="UTF-8"?>
179 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
180 +<pkgmetadata>
181 + <herd>kde</herd>
182 + <maintainer>
183 + <email>wizzleby@×××××.com</email>
184 + <name>Locke Shinseiko (Wizzleby)</name>
185 + </maintainer>
186 + <maintainer>
187 + <email>ronisbr@×××××.com</email>
188 + <name>Ronan Arraes Jardim Chagas (Ronis_BR)</name>
189 + </maintainer>
190 +
191 +</pkgmetadata>
192
193 diff --git a/profiles/categories b/profiles/categories
194 new file mode 100644
195 index 0000000..6151b24
196 --- /dev/null
197 +++ b/profiles/categories
198 @@ -0,0 +1 @@
199 +app-portage