Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 304419 - Version bump x11-misc/zim-0.43
Summary: Version bump x11-misc/zim-0.43
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: High enhancement (vote)
Assignee: Desktop Misc. Team
URL:
Whiteboard:
Keywords: EBUILD
Depends on:
Blocks:
 
Reported: 2010-02-10 22:20 UTC by Matt
Modified: 2010-05-28 20:40 UTC (History)
1 user (show)

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Matt 2010-02-10 22:20:25 UTC
zim is a very useful tool in bringing the concept of a wiki to your local desktop

since the latest in-tree ebuild for it is already pretty old and besides that it fails and doesn't install fine for me

I'm requesting an updated / working ebuild

Many thanks in advance !

Reproducible: Always
Comment 1 Max Zhiltsov 2010-02-11 04:55:37 UTC
Here's the ebuild I made: http://github.com/disbeliever/disbeliever-overlay/blob/master/x11-misc/zim/zim-0.43.ebuild.

At least, it works for me.
Comment 2 Matt 2010-02-11 11:48:32 UTC
(In reply to comment #1)
> Here's the ebuild I made:
> http://github.com/disbeliever/disbeliever-overlay/blob/master/x11-misc/zim/zim-0.43.ebuild.
> 
> At least, it works for me.
> 

that ebuild works beautifully, it however has a little typo:

>PATCHES=( "${FILESDIR}/${P}-disaple-updates.patch" )
 
should read

>PATCHES=( "${FILESDIR}/${P}-disable-updates.patch" )

${P}-disable-updates.patch instead of ${P}-disaple-updates.patch

thanks a lot Max ! :)
Comment 3 Jacob Floyd 2010-03-02 04:31:49 UTC
Well, it looks like you've updated the ebuild in your overlay to zim-0.44
http://github.com/disbeliever/disbeliever-overlay/tree/master/x11-misc/zim/

For zim to work, python must be built with the "sqlite" use flag.

I added the PYTHON_USE_WITH variable, added python to inherit, and added pkg_setup as shown below. This will make sure that sqlite is required.

====snippet====
# $Header: $

PYTHON_USE_WITH="sqlite"
EAPI="2"

inherit eutils fdo-mime distutils python

NEED_PYTHON=2.5
====snippet====
PATCHES=( "${FILESDIR}/${P}-disaple-updates.patch" )

pkg_setup() {
    python_pkg_setup
}

src_unpack() {
====snippet====

Thanks,
-Jacob
Comment 4 Markos Chandras (RETIRED) gentoo-dev 2010-05-28 20:39:42 UTC
Bumped

Thank you both for the ebuild and the proposed fixes 

I really appreciate it