diff options
author | 2012-07-20 20:00:17 +0000 | |
---|---|---|
committer | 2012-07-20 20:00:17 +0000 | |
commit | 1d8e753b2f468751ae0b3d36a02b0161e1413562 (patch) | |
tree | 77e0360f50a13247174afd1d8f293f18ef30a75c /app-text | |
parent | fix build with gcc-4.7 (bug #427376) (diff) | |
download | gentoo-2-1d8e753b2f468751ae0b3d36a02b0161e1413562.tar.gz gentoo-2-1d8e753b2f468751ae0b3d36a02b0161e1413562.tar.bz2 gentoo-2-1d8e753b2f468751ae0b3d36a02b0161e1413562.zip |
0.8.61 version bump.
(Portage version: 2.2.0_alpha120/cvs/Linux i686)
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/calibre/ChangeLog | 8 | ||||
-rw-r--r-- | app-text/calibre/calibre-0.8.61.ebuild (renamed from app-text/calibre/calibre-0.8.59.ebuild) | 11 |
2 files changed, 13 insertions, 6 deletions
diff --git a/app-text/calibre/ChangeLog b/app-text/calibre/ChangeLog index 22b386a82bde..8e032442cdb5 100644 --- a/app-text/calibre/ChangeLog +++ b/app-text/calibre/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-text/calibre # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/calibre/ChangeLog,v 1.215 2012/07/14 02:31:36 zmedico Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/calibre/ChangeLog,v 1.216 2012/07/20 20:00:17 zmedico Exp $ + +*calibre-0.8.61 (20 Jul 2012) + + 20 Jul 2012; Zac Medico <zmedico@gentoo.org> +calibre-0.8.61.ebuild, + -calibre-0.8.59.ebuild: + 0.8.61 version bump. *calibre-0.8.60 (14 Jul 2012) diff --git a/app-text/calibre/calibre-0.8.59.ebuild b/app-text/calibre/calibre-0.8.61.ebuild index a719ea97368f..226642ce3cfa 100644 --- a/app-text/calibre/calibre-0.8.59.ebuild +++ b/app-text/calibre/calibre-0.8.61.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/calibre/calibre-0.8.59.ebuild,v 1.1 2012/07/06 23:31:34 zmedico Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/calibre/calibre-0.8.61.ebuild,v 1.1 2012/07/20 20:00:17 zmedico Exp $ EAPI=4 PYTHON_DEPEND=2:2.7 @@ -63,12 +63,13 @@ src_prepare() { # Avoid sandbox violation in /usr/share/gnome/apps when linux.py # calls xdg-* (bug #258938). - sed -e "s:'xdg-desktop-menu', 'install':\\0, '--mode', 'user':" \ - -e "s:check_call(\\['xdg-desktop-menu', 'forceupdate'\\]):#\\0:" \ + sed -e "s|'xdg-desktop-menu', 'install'|\\0, '--mode', 'user'|" \ + -e "s|check_call(\\['xdg-desktop-menu', 'forceupdate'\\])|#\\0|" \ -e "s|\\(CurrentDir(tdir)\\), \\\\\$|\\1:|" \ -e "s|PreserveMIMEDefaults():||" \ - -e "s:xdg-icon-resource install:\\0 --mode user:" \ - -e "s:xdg-mime install:\\0 --mode user:" \ + -e "s|xdg-icon-resource install|\\0 --mode user|" \ + -e "s|cc(\\['xdg-desktop-menu', 'forceupdate'\\])|#\\0|" \ + -e "s|xdg-mime install|\\0 --mode user|" \ -i src/calibre/linux.py || die "sed failed to patch linux.py" # Disable unnecessary privilege dropping for bug #287067. |