diff options
author | Zac Medico <zmedico@gentoo.org> | 2013-08-23 20:34:42 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2013-08-23 20:34:42 +0000 |
commit | 028de1c19040077c8ae72843363ad1a8deb6b8b9 (patch) | |
tree | e4c53e5cc0ec1e47db963de1d9bc1c6e0aecb834 /app-text | |
parent | alpha stable wrt bug #449608 (diff) | |
download | gentoo-2-028de1c19040077c8ae72843363ad1a8deb6b8b9.tar.gz gentoo-2-028de1c19040077c8ae72843363ad1a8deb6b8b9.tar.bz2 gentoo-2-028de1c19040077c8ae72843363ad1a8deb6b8b9.zip |
1.0 version bump.
(Portage version: 2.2.1/cvs/Linux i686, signed Manifest commit with key 0xFDE8EF85AE5719A3)
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/calibre/ChangeLog | 8 | ||||
-rw-r--r-- | app-text/calibre/calibre-1.0.ebuild (renamed from app-text/calibre/calibre-0.9.43.ebuild) | 8 |
2 files changed, 10 insertions, 6 deletions
diff --git a/app-text/calibre/ChangeLog b/app-text/calibre/ChangeLog index 8eb38253db7b..d151a18882da 100644 --- a/app-text/calibre/ChangeLog +++ b/app-text/calibre/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-text/calibre # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/calibre/ChangeLog,v 1.297 2013/08/17 18:14:07 zmedico Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/calibre/ChangeLog,v 1.298 2013/08/23 20:34:42 zmedico Exp $ + +*calibre-1.0 (23 Aug 2013) + + 23 Aug 2013; Zac Medico <zmedico@gentoo.org> +calibre-1.0.ebuild, + -calibre-0.9.43.ebuild: + 1.0 version bump. *calibre-0.9.44 (17 Aug 2013) diff --git a/app-text/calibre/calibre-0.9.43.ebuild b/app-text/calibre/calibre-1.0.ebuild index b1efda46916e..f136d5fe3cdd 100644 --- a/app-text/calibre/calibre-0.9.43.ebuild +++ b/app-text/calibre/calibre-1.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/calibre/calibre-0.9.43.ebuild,v 1.1 2013/08/10 18:10:57 zmedico Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/calibre/calibre-1.0.ebuild,v 1.1 2013/08/23 20:34:42 zmedico Exp $ EAPI=5 @@ -8,7 +8,8 @@ inherit eutils fdo-mime bash-completion-r1 multilib toolchain-funcs DESCRIPTION="Ebook management application." HOMEPAGE="http://calibre-ebook.com/" -SRC_URI="http://sourceforge.net/projects/calibre/files/${PV}/${P}.tar.xz" +[[ ${PV} == 1.0 ]] && MY_PV=${PV}.0 || MY_PV=${PV} +SRC_URI="http://sourceforge.net/projects/calibre/files/${MY_PV}/${PN}-${MY_PV}.tar.xz" # Restrict mirror due non-free prs500 fonts (bug #470212). RESTRICT="mirror" @@ -184,9 +185,6 @@ src_install() { mv "${HOME}"/.local/share/icons/* "${ED}"usr/share/icons/ || die "failed to install icon files" - sed -e 's:^Name=calibre %F$:Name=calibre:' \ - -e 's:^Exec=calibre$:Exec=calibre %F:' \ - -i "${HOME}"/.local/share/applications/calibre-gui.desktop || die domenu "${HOME}"/.local/share/applications/*.desktop || die "failed to install .desktop menu files" |