* [gentoo-commits] gentoo-x86 commit in net-im/skype: ChangeLog skype-4.0.0.7.ebuild
@ 2012-06-14 17:19 Samuli Suominen (ssuominen)
0 siblings, 0 replies; 3+ messages in thread
From: Samuli Suominen (ssuominen) @ 2012-06-14 17:19 UTC (permalink / raw
To: gentoo-commits
ssuominen 12/06/14 17:19:31
Modified: ChangeLog
Added: skype-4.0.0.7.ebuild
Log:
Version bump wrt #421115 by Justin Lecher. Print pkg_postinst() warning for media-libs/libv4l and LD_PRELOAD usage wrt #360815.
(Portage version: 2.2.0_alpha110/cvs/Linux x86_64)
Revision Changes Path
1.128 net-im/skype/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/skype/ChangeLog?rev=1.128&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/skype/ChangeLog?rev=1.128&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/skype/ChangeLog?r1=1.127&r2=1.128
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-im/skype/ChangeLog,v
retrieving revision 1.127
retrieving revision 1.128
diff -u -r1.127 -r1.128
--- ChangeLog 21 May 2012 21:11:49 -0000 1.127
+++ ChangeLog 14 Jun 2012 17:19:31 -0000 1.128
@@ -1,6 +1,12 @@
# ChangeLog for net-im/skype
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/skype/ChangeLog,v 1.127 2012/05/21 21:11:49 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/skype/ChangeLog,v 1.128 2012/06/14 17:19:31 ssuominen Exp $
+
+*skype-4.0.0.7 (14 Jun 2012)
+
+ 14 Jun 2012; Samuli Suominen <ssuominen@gentoo.org> +skype-4.0.0.7.ebuild:
+ Version bump wrt #421115 by Justin Lecher. Print pkg_postinst() message for
+ media-libs/libv4l and LD_PRELOAD usage wrt #360815.
21 May 2012; Samuli Suominen <ssuominen@gentoo.org> metadata.xml:
Maintain this package.
1.1 net-im/skype/skype-4.0.0.7.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/skype/skype-4.0.0.7.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/skype/skype-4.0.0.7.ebuild?rev=1.1&content-type=text/plain
Index: skype-4.0.0.7.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-im/skype/skype-4.0.0.7.ebuild,v 1.1 2012/06/14 17:19:31 ssuominen Exp $
EAPI=4
inherit eutils gnome2-utils qt4-r2 pax-utils unpacker
DESCRIPTION="An P2P Internet Telephony (VoiceIP) client"
HOMEPAGE="http://www.skype.com/"
SKYPE_URI="http://download.${PN}.com/linux"
SRC_URI="amd64? ( ${SKYPE_URI}/${PN}-debian_${PV}-1_amd64.deb )
x86? ( ${SKYPE_URI}/${PN}-debian_${PV}-1_i386.deb )"
LICENSE="${P}-copyright ${P}-third-party_attributions.txt"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="pax_kernel"
QA_PREBUILT=opt/bin/${PN}
RESTRICT="mirror strip" #299368
EMUL_X86_VER=20120127
RDEPEND="virtual/ttf-fonts
amd64? (
>=app-emulation/emul-linux-x86-qtlibs-${EMUL_X86_VER}
>=app-emulation/emul-linux-x86-soundlibs-${EMUL_X86_VER}
>=app-emulation/emul-linux-x86-xlibs-${EMUL_X86_VER}
)
x86? (
media-libs/alsa-lib
x11-libs/libX11
x11-libs/libXext
x11-libs/libXScrnSaver
x11-libs/libXv
x11-libs/qt-core:4
x11-libs/qt-dbus:4
x11-libs/qt-gui:4[accessibility,dbus]
)"
S=${WORKDIR}
src_compile() {
local langdir=usr/share/${PN}/lang
type -P lrelease >/dev/null && lrelease ${langdir}/*.ts
rm -f ${langdir}/*.ts
}
src_install() {
into /opt
dobin usr/bin/${PN}
fowners root:audio /opt/bin/${PN}
insinto /etc/dbus-1/system.d
doins etc/dbus-1/system.d/${PN}.conf
insinto /usr/share
doins -r usr/share/${PN}
dodoc usr/share/doc/${PN}/README
doicon -s 48 usr/share/icons/${PN}.png
make_desktop_entry ${PN} 'Skype VoIP' ${PN} 'Network;InstantMessaging;Telephony'
if use pax_kernel; then
pax-mark Cm "${ED}"/opt/bin/${PN} || die
eqawarn "You have set USE=pax_kernel meaning that you intend to run"
eqawarn "${PN} under a PaX enabled kernel. To do so, we must modify"
eqawarn "the ${PN} binary itself and this *may* lead to breakage! If"
eqawarn "you suspect that ${PN} is being broken by this modification,"
eqawarn "please open a bug."
fi
}
pkg_preinst() {
gnome2_icon_savelist
}
pkg_postinst() {
gnome2_icon_cache_update
# http://bugs.gentoo.org/360815
elog "For webcam support, see \"LD_PRELOAD\" section of \"README.lib\" document provided by"
elog "media-libs/libv4l"
use amd64 && elog "You can install app-emulation/emul-linux-x86-medialibs for 32bit media-libs/libv4l"
}
pkg_postrm() {
gnome2_icon_cache_update
}
^ permalink raw reply [flat|nested] 3+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-im/skype: ChangeLog skype-4.0.0.7.ebuild
@ 2012-06-14 17:35 Samuli Suominen (ssuominen)
0 siblings, 0 replies; 3+ messages in thread
From: Samuli Suominen (ssuominen) @ 2012-06-14 17:35 UTC (permalink / raw
To: gentoo-commits
ssuominen 12/06/14 17:35:16
Modified: ChangeLog skype-4.0.0.7.ebuild
Log:
Remove unused inherit qt4-r2. Thanks to "pesa" for noticing.
(Portage version: 2.2.0_alpha110/cvs/Linux x86_64)
Revision Changes Path
1.129 net-im/skype/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/skype/ChangeLog?rev=1.129&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/skype/ChangeLog?rev=1.129&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/skype/ChangeLog?r1=1.128&r2=1.129
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-im/skype/ChangeLog,v
retrieving revision 1.128
retrieving revision 1.129
diff -u -r1.128 -r1.129
--- ChangeLog 14 Jun 2012 17:19:31 -0000 1.128
+++ ChangeLog 14 Jun 2012 17:35:16 -0000 1.129
@@ -1,6 +1,9 @@
# ChangeLog for net-im/skype
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/skype/ChangeLog,v 1.128 2012/06/14 17:19:31 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/skype/ChangeLog,v 1.129 2012/06/14 17:35:16 ssuominen Exp $
+
+ 14 Jun 2012; Samuli Suominen <ssuominen@gentoo.org> skype-4.0.0.7.ebuild:
+ Remove unused inherit qt4-r2. Thanks to "pesa" for noticing.
*skype-4.0.0.7 (14 Jun 2012)
1.2 net-im/skype/skype-4.0.0.7.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/skype/skype-4.0.0.7.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/skype/skype-4.0.0.7.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/skype/skype-4.0.0.7.ebuild?r1=1.1&r2=1.2
Index: skype-4.0.0.7.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-im/skype/skype-4.0.0.7.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- skype-4.0.0.7.ebuild 14 Jun 2012 17:19:31 -0000 1.1
+++ skype-4.0.0.7.ebuild 14 Jun 2012 17:35:16 -0000 1.2
@@ -1,9 +1,9 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/skype/skype-4.0.0.7.ebuild,v 1.1 2012/06/14 17:19:31 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/skype/skype-4.0.0.7.ebuild,v 1.2 2012/06/14 17:35:16 ssuominen Exp $
EAPI=4
-inherit eutils gnome2-utils qt4-r2 pax-utils unpacker
+inherit eutils gnome2-utils pax-utils unpacker
DESCRIPTION="An P2P Internet Telephony (VoiceIP) client"
HOMEPAGE="http://www.skype.com/"
^ permalink raw reply [flat|nested] 3+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-im/skype: ChangeLog skype-4.0.0.7.ebuild
@ 2012-06-14 20:07 Samuli Suominen (ssuominen)
0 siblings, 0 replies; 3+ messages in thread
From: Samuli Suominen (ssuominen) @ 2012-06-14 20:07 UTC (permalink / raw
To: gentoo-commits
ssuominen 12/06/14 20:07:49
Modified: ChangeLog
Removed: skype-4.0.0.7.ebuild
Log:
old
(Portage version: 2.2.0_alpha110/cvs/Linux x86_64)
Revision Changes Path
1.131 net-im/skype/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/skype/ChangeLog?rev=1.131&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/skype/ChangeLog?rev=1.131&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/skype/ChangeLog?r1=1.130&r2=1.131
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-im/skype/ChangeLog,v
retrieving revision 1.130
retrieving revision 1.131
diff -u -r1.130 -r1.131
--- ChangeLog 14 Jun 2012 20:06:41 -0000 1.130
+++ ChangeLog 14 Jun 2012 20:07:49 -0000 1.131
@@ -1,6 +1,9 @@
# ChangeLog for net-im/skype
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/skype/ChangeLog,v 1.130 2012/06/14 20:06:41 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/skype/ChangeLog,v 1.131 2012/06/14 20:07:49 ssuominen Exp $
+
+ 14 Jun 2012; Samuli Suominen <ssuominen@gentoo.org> -skype-4.0.0.7.ebuild:
+ old
*skype-4.0.0.7-r1 (14 Jun 2012)
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2012-06-14 20:08 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-14 17:35 [gentoo-commits] gentoo-x86 commit in net-im/skype: ChangeLog skype-4.0.0.7.ebuild Samuli Suominen (ssuominen)
-- strict thread matches above, loose matches on Subject: below --
2012-06-14 20:07 Samuli Suominen (ssuominen)
2012-06-14 17:19 Samuli Suominen (ssuominen)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox