hwoarang 15/01/31 13:34:01 Modified: ChangeLog Added: dispcalgui-2.6.0.0.ebuild Log: Version bump. Bug #532974 (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 09BF4F54C2BA7F3C!)
Revision Changes Path 1.25 media-gfx/dispcalgui/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/dispcalgui/ChangeLog?rev=1.25&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/dispcalgui/ChangeLog?rev=1.25&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/dispcalgui/ChangeLog?r1=1.24&r2=1.25 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/media-gfx/dispcalgui/ChangeLog,v retrieving revision 1.24 retrieving revision 1.25 diff -u -r1.24 -r1.25 --- ChangeLog 14 Sep 2014 09:38:58 -0000 1.24 +++ ChangeLog 31 Jan 2015 13:34:01 -0000 1.25 @@ -1,6 +1,11 @@ # ChangeLog for media-gfx/dispcalgui -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/dispcalgui/ChangeLog,v 1.24 2014/09/14 09:38:58 hwoarang Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/dispcalgui/ChangeLog,v 1.25 2015/01/31 13:34:01 hwoarang Exp $ + +*dispcalgui-2.6.0.0 (31 Jan 2015) + + 31 Jan 2015; Markos Chandras <[email protected]> +dispcalgui-2.6.0.0.ebuild: + Version bump. Bug #532974 *dispcalgui-2.5.0.0 (14 Sep 2014) 1.1 media-gfx/dispcalgui/dispcalgui-2.6.0.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/dispcalgui/dispcalgui-2.6.0.0.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/dispcalgui/dispcalgui-2.6.0.0.ebuild?rev=1.1&content-type=text/plain Index: dispcalgui-2.6.0.0.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-gfx/dispcalgui/dispcalgui-2.6.0.0.ebuild,v 1.1 2015/01/31 13:34:01 hwoarang Exp $ EAPI="5" PYTHON_COMPAT=( python2_7 ) inherit distutils-r1 fdo-mime eutils MY_PN="dispcalGUI" MY_P="${MY_PN}-${PV}" DESCRIPTION="Display Calibration and Characterization powered by Argyll CMS" HOMEPAGE="http://dispcalgui.hoech.net/" SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" DEPEND=">=media-gfx/argyllcms-1.1.0 dev-python/wxpython:2.8 >=x11-libs/libX11-1.3.3 >=x11-apps/xrandr-1.3.2 >=x11-libs/libXxf86vm-1.1.0 >=x11-proto/xineramaproto-1.2 >=x11-libs/libXinerama-1.1" RDEPEND="${DEPEND} >=dev-python/numpy-1.2.1" # Just in case someone renames the ebuild S=${WORKDIR}/${MY_P} DOCS=( README.html ) src_prepare() { # Prohibit setup from running xdg-* programs, resulting to sandbox violation cd "${S}/dispcalGUI" || die "Cannot cd to source directory." sed -e 's/if which(\"xdg-icon-resource\"):/if which(\"xdg-icon-resource-non-existant\"):/' \ -e 's/if which(\"xdg-desktop-menu\"):/if which(\"xdg-desktop-menu-non-existant\"):/' \ -i postinstall.py || die "sed'ing out the xdg-* setup functions failed" # Remove deprecated Encoding key from .desktop file cd "${S}" || die "Cannot cd to work directory." for offendingFile in $(grep -r -l "Encoding=UTF-8" .); do sed -e '/Encoding=UTF-8/d' -i "${offendingFile}" || \ die "removing deprecated Encoding key from .desktop files failed" done distutils-r1_src_prepare } src_install() { distutils-r1_src_install #remove udev files rm -rf "${D}"/etc/udev/rules.d } pkg_postinst() { # Run xdg-* programs the Gentoo way since we removed this functionality from the original package fdo-mime_mime_database_update fdo-mime_desktop_database_update } pkg_postrm() { # Run xdg-* programs the Gentoo way since we removed this functionality from the original package fdo-mime_mime_database_update fdo-mime_desktop_database_update }
