Gentoo Archives: gentoo-commits

From: Jason Zaman <perfinion@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: xfce-extra/xfce4-alsa-plugin/
Date: Thu, 14 Jul 2016 04:30:25
Message-Id: 1468470475.9f8ea77498fedffdb1964ed9ccb1b2f134e453a2.perfinion@gentoo
1 commit: 9f8ea77498fedffdb1964ed9ccb1b2f134e453a2
2 Author: Jason Zaman <perfinion <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 14 04:27:55 2016 +0000
4 Commit: Jason Zaman <perfinion <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 14 04:27:55 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f8ea774
7
8 xfce-extra/xfce4-alsa-plugin: Initial commit, ebuild by me
9
10 Package-Manager: portage-2.2.28
11
12 xfce-extra/xfce4-alsa-plugin/Manifest | 1 +
13 xfce-extra/xfce4-alsa-plugin/metadata.xml | 11 +++++++
14 .../xfce4-alsa-plugin-0.1.1.ebuild | 34 ++++++++++++++++++++++
15 3 files changed, 46 insertions(+)
16
17 diff --git a/xfce-extra/xfce4-alsa-plugin/Manifest b/xfce-extra/xfce4-alsa-plugin/Manifest
18 new file mode 100644
19 index 0000000..367d82e
20 --- /dev/null
21 +++ b/xfce-extra/xfce4-alsa-plugin/Manifest
22 @@ -0,0 +1 @@
23 +DIST xfce4-alsa-plugin-0.1.1.tar.gz 126701 SHA256 38a6b5aeb1664a0bb7ee49cc8b77070f0219362784281b6b55ec8afdb88a2956 SHA512 05273467944a08dd87455fcf20da0292899ace7254afcd2eb141c8d3f10996ad8ee08c6e61abb0178f65d52b066b0804e05a579d0a7f7e65b46fe5c4fd744fd7 WHIRLPOOL 3402886fb90a81622ba1eddccd36a76daeddb0722a88bf23c9bbe9ec2ac97503f3e77abb70572ac0dcf36997ab1d23f2362c3286db7f4bdd30ff1a3f6fbfff21
24
25 diff --git a/xfce-extra/xfce4-alsa-plugin/metadata.xml b/xfce-extra/xfce4-alsa-plugin/metadata.xml
26 new file mode 100644
27 index 0000000..0838a77
28 --- /dev/null
29 +++ b/xfce-extra/xfce4-alsa-plugin/metadata.xml
30 @@ -0,0 +1,11 @@
31 +<?xml version="1.0" encoding="UTF-8"?>
32 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
33 +<pkgmetadata>
34 + <maintainer type="project">
35 + <email>xfce@g.o</email>
36 + <name>XFCE Team</name>
37 + </maintainer>
38 + <upstream>
39 + <remote-id type="github">equeim/xfce4-alsa-plugin</remote-id>
40 + </upstream>
41 +</pkgmetadata>
42
43 diff --git a/xfce-extra/xfce4-alsa-plugin/xfce4-alsa-plugin-0.1.1.ebuild b/xfce-extra/xfce4-alsa-plugin/xfce4-alsa-plugin-0.1.1.ebuild
44 new file mode 100644
45 index 0000000..d1b29c8
46 --- /dev/null
47 +++ b/xfce-extra/xfce4-alsa-plugin/xfce4-alsa-plugin-0.1.1.ebuild
48 @@ -0,0 +1,34 @@
49 +# Copyright 1999-2016 Gentoo Foundation
50 +# Distributed under the terms of the GNU General Public License v2
51 +# $Id$
52 +
53 +EAPI=6
54 +
55 +PYTHON_COMPAT=( python2_7 python3_4 python3_5 )
56 +PYTHON_REQ_USE='threads(+)' # required by waf
57 +
58 +inherit python-any-r1 vala waf-utils
59 +
60 +DESCRIPTION="Simple ALSA volume control for xfce4-panel"
61 +HOMEPAGE="https://github.com/equeim/xfce4-alsa-plugin"
62 +SRC_URI="https://github.com/equeim/${PN}/archive/0.1.1.tar.gz -> ${P}.tar.gz"
63 +
64 +LICENSE="GPL-3"
65 +SLOT="0"
66 +KEYWORDS="~amd64 ~x86"
67 +IUSE=""
68 +
69 +RDEPEND="media-libs/alsa-lib
70 + xfce-base/xfce4-panel
71 + x11-libs/gtk+:2"
72 +DEPEND="${RDEPEND}
73 + ${PYTHON_DEPS}
74 + dev-util/intltool
75 + dev-lang/vala"
76 +
77 +pkg_setup() { python-any-r1_pkg_setup; }
78 +
79 +src_prepare() {
80 + vala_src_prepare --ignore-use
81 + eapply_user
82 +}