Gentoo Archives: gentoo-commits

From: Michael Weber <xmw@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-wm/xpra/
Date: Wed, 05 Apr 2017 00:03:30
Message-Id: 1491350601.a466b6addd7567d6e3cfc6dc3bd1a9bbe5ca4465.xmw@gentoo
1 commit: a466b6addd7567d6e3cfc6dc3bd1a9bbe5ca4465
2 Author: Michael Weber <xmw <AT> gentoo <DOT> org>
3 AuthorDate: Wed Apr 5 00:03:12 2017 +0000
4 Commit: Michael Weber <xmw <AT> gentoo <DOT> org>
5 CommitDate: Wed Apr 5 00:03:21 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a466b6ad
7
8 x11-wm/xpra: Version bump.
9
10 Package-Manager: Portage-2.3.5, Repoman-2.3.2
11
12 x11-wm/xpra/Manifest | 1 +
13 x11-wm/xpra/xpra-2.0.1.ebuild | 144 ++++++++++++++++++++++++++++++++++++++++++
14 2 files changed, 145 insertions(+)
15
16 diff --git a/x11-wm/xpra/Manifest b/x11-wm/xpra/Manifest
17 index 36ca3a59cc3..a8d0d9eee50 100644
18 --- a/x11-wm/xpra/Manifest
19 +++ b/x11-wm/xpra/Manifest
20 @@ -1,3 +1,4 @@
21 DIST xpra-1.0.3.tar.xz 1888908 SHA256 f83c5946f67fe26eee8b44fba0fa30bca9fbc7aa58ee66b903b7385c2d332166 SHA512 3b6371d478147a5d932df1c8428e9132831fcbf17e51f48fb384c30548efee9758c94a6781c255b5fe211c5040993f30b054aa33f3fced85484fcc9d2ca009a1 WHIRLPOOL 989db8ac2caa3a5a0e1294754cabe6bc8cadb087a6ffa24de3039c674126886a41ecab930c46700dccdf3adc738572e04652123c9523512c050ffdff3d295b02
22 DIST xpra-1.0.4.tar.xz 1890404 SHA256 c841940957761e60454eac44c955d174b3d864c853f28b387e784a6d85fc9924 SHA512 85dad598a167a7c9cbf2d0e7d4cde0b7c0fd75b5e1cc515ea78261f4a33d6d864863f98746f7537b202a08c7f225f002d9abbbb5c2773acd63e3a1b37c4d68d9 WHIRLPOOL e426a258b70dcb1dff9f39980fd74221ab5793ea4f8cea2b838dfcd40b152785ef7028219f0024ef4650bb9e6fae10e9d26c1b1e58f0b4efb481a7562f6ee4eb
23 +DIST xpra-2.0.1.tar.xz 1926292 SHA256 685553c0f7cdeadde3d5a7ba48f3cd9d0feaa755e0debbdf198355223c8bc287 SHA512 2f9a8f5f3c1980c822233c3b010511d7ac63983eff330222e7375257834dfd6c840fe4b4aba61b966fb3b14debfed05eb1cd724f502a7c7b7ee9fbc86becbac3 WHIRLPOOL e5ef03c29988fa5cf10bb83eb010ac0464a95c4511d7e7ec08349ee5a53f2391f69c95fd3b5d8bb19fe29dec29ec40a273dc35d992912722594972864bd983e4
24 DIST xpra-2.0.tar.xz 1925080 SHA256 ca9e9622a9d435f9591bf60baec50ea02ebad4e0c0017e1df43dfddd6616e807 SHA512 1f95ecf27c1ef37989c2152a1b2b838f5246a6e3711feaa2150d55b040a41ee0de1d475eb68900b974ee9f7b3f3cf143d53802420f31de60980658cd6da132c6 WHIRLPOOL 3f72416011e35513a0acd62980f49af286d2411446452a4a336746a94c813f7f0b316061fcb854efe377d7bc77152e5eb7930d7b3afb863ea30f9e01186e4efe
25
26 diff --git a/x11-wm/xpra/xpra-2.0.1.ebuild b/x11-wm/xpra/xpra-2.0.1.ebuild
27 new file mode 100644
28 index 00000000000..44f38c25618
29 --- /dev/null
30 +++ b/x11-wm/xpra/xpra-2.0.1.ebuild
31 @@ -0,0 +1,144 @@
32 +# Copyright 1999-2017 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=6
36 +
37 +# PyCObject_Check and PyCObject_AsVoidPtr vanished with python 3.3
38 +PYTHON_COMPAT=( python2_7 )
39 +inherit distutils-r1 eutils flag-o-matic user tmpfiles
40 +
41 +DESCRIPTION="X Persistent Remote Apps (xpra) and Partitioning WM (parti) based on wimpiggy"
42 +HOMEPAGE="http://xpra.org/ http://xpra.org/src/"
43 +SRC_URI="http://xpra.org/src/${P}.tar.xz"
44 +
45 +LICENSE="GPL-2 BSD"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
48 +IUSE="+client +clipboard csc cups dbus dec_avcodec2 enc_ffmpeg enc_x264 enc_x265 jpeg libav +lz4 lzo opengl pillow pulseaudio server sound test vpx webcam"
49 +
50 +REQUIRED_USE="${PYTHON_REQUIRED_USE}
51 + clipboard? ( || ( server client ) )
52 + cups? ( dbus )
53 + opengl? ( client )
54 + || ( client server )
55 + client? ( enc_x264? ( dec_avcodec2 ) enc_x265? ( dec_avcodec2 ) )"
56 +
57 +COMMON_DEPEND=""${PYTHON_DEPS}"
58 + dev-python/pygobject:2[${PYTHON_USEDEP}]
59 + dev-python/pygtk:2[${PYTHON_USEDEP}]
60 + x11-libs/gtk+:2
61 + x11-libs/libX11
62 + x11-libs/libXcomposite
63 + x11-libs/libXdamage
64 + x11-libs/libXfixes
65 + x11-libs/libXrandr
66 + x11-libs/libXtst
67 + csc? (
68 + !libav? ( >=media-video/ffmpeg-1.2.2:0= )
69 + libav? ( media-video/libav:0= )
70 + )
71 + dec_avcodec2? (
72 + !libav? ( >=media-video/ffmpeg-2:0= )
73 + libav? ( media-video/libav:0= )
74 + )
75 + enc_ffmpeg? (
76 + !libav? ( >=media-video/ffmpeg-3.2.2:0= )
77 + libav? ( media-video/libav:0= )
78 + )
79 + enc_x264? ( media-libs/x264
80 + !libav? ( >=media-video/ffmpeg-1.0.4:0= )
81 + libav? ( media-video/libav:0= )
82 + )
83 + enc_x265? ( media-libs/x265
84 + !libav? ( >=media-video/ffmpeg-2:0= )
85 + libav? ( media-video/libav:0= )
86 + jpeg? ( media-libs/libjpeg-turbo )
87 + opengl? ( dev-python/pygtkglext )
88 + pulseaudio? ( media-sound/pulseaudio )
89 + sound? ( media-libs/gstreamer:1.0
90 + media-libs/gst-plugins-base:1.0
91 + dev-python/gst-python:1.0 )
92 + vpx? ( media-libs/libvpx virtual/ffmpeg )
93 + )"
94 +
95 +RDEPEND="${COMMON_DEPEND}
96 + dev-python/ipython[${PYTHON_USEDEP}]
97 + dev-python/netifaces[${PYTHON_USEDEP}]
98 + dev-python/rencode[${PYTHON_USEDEP}]
99 + virtual/ssh
100 + x11-apps/xmodmap
101 + cups? ( dev-python/pycups[${PYTHON_USEDEP}] )
102 + dbus? ( dev-python/dbus-python[${PYTHON_USEDEP}] )
103 + lz4? ( dev-python/lz4[${PYTHON_USEDEP}] )
104 + lzo? ( >=dev-python/python-lzo-0.7.0[${PYTHON_USEDEP}] )
105 + opengl? (
106 + client? ( dev-python/pyopengl_accelerate[${PYTHON_USEDEP}] )
107 + )
108 + pillow? ( dev-python/pillow[${PYTHON_USEDEP}] )
109 + server? ( x11-base/xorg-server[-minimal,xvfb]
110 + x11-drivers/xf86-input-void
111 + )
112 + webcam? ( dev-python/numpy[${PYTHON_USEDEP}]
113 + media-libs/opencv[python]
114 + dev-python/pyinotify[${PYTHON_USEDEP}] )"
115 +DEPEND="${COMMON_DEPEND}
116 + virtual/pkgconfig
117 + >=dev-python/cython-0.16[${PYTHON_USEDEP}]"
118 +
119 +PATCHES=( "${FILESDIR}"/${PN}-0.13.1-ignore-gentoo-no-compile.patch
120 + "${FILESDIR}"/${PN}-0.17.4-deprecated-avcodec.patch
121 + "${FILESDIR}"/${PN}-2.0-suid-warning.patch )
122 +
123 +pkg_postinst() {
124 + enewgroup ${PN}
125 + tmpfiles_process /usr/lib/tmpfiles.d/xpra.conf
126 +}
127 +
128 +python_prepare_all() {
129 + sed -e "s:/var/run/xpra:${EROOT}run/xpra:" \
130 + -i tmpfiles.d/xpra.conf
131 +
132 + distutils-r1_python_prepare_all
133 +}
134 +
135 +python_configure_all() {
136 + sed -e "/'pulseaudio'/s:DEFAULT_PULSEAUDIO:$(usex pulseaudio True False):" \
137 + -i setup.py || die
138 +
139 + mydistutilsargs=(
140 + --without-PIC
141 + --without-Xdummy
142 + $(use_with client)
143 + $(use_with clipboard)
144 + $(use_with csc csc_swscale)
145 + --without-csc_libyuv
146 + $(use_with cups printing)
147 + --without-debug
148 + $(use_with dbus)
149 + $(use_with dec_avcodec2)
150 + $(use_with enc_ffmpeg)
151 + $(use_with enc_x264)
152 + $(use_with enc_x265)
153 + --with-gtk2
154 + --without-gtk3
155 + --without-html5
156 + $(use_with jpeg)
157 + --without-mdns
158 + --without-minify
159 + $(use_with opengl)
160 + $(use_with server shadow)
161 + $(use_with server)
162 + $(use_with sound)
163 + --with-strict
164 + $(use_with vpx)
165 + --with-warn
166 + $(use_with webcam)
167 + --with-x11
168 + )
169 +
170 + # see https://www.xpra.org/trac/ticket/1080
171 + # and http://trac.cython.org/ticket/395
172 + append-cflags -fno-strict-aliasing
173 +
174 + export XPRA_SOCKET_DIRS="${EROOT}run/xpra"
175 +}