Package Details: bugseverywhere-git 2:1.5.r1671.4980830-3

Package Base: bugseverywhere-git
Description: A distributed bugtracker
Upstream URL: http://bugseverywhere.org/
Category: devel
Licenses: GPL
Submitter: None
Maintainer: Jonhoo
Last Packager: None
Votes: 9
First Submitted: 2010-07-01 11:50
Last Updated: 2014-02-05 21:34

Dependencies (2)

Required by (0)

Sources

Latest Comments

Comment by Jonhoo

2014-02-05 21:36

Done.

Comment by antony

2014-02-05 21:30

Also you need to add python2-docutils as a makedepends (it provides rst2man2).

Comment by Jonhoo

2014-02-05 10:44

Thanks for the suggestion! Added.

Comment by antony

2014-02-05 09:52

Adding

mkdir -p "$pkgdir/usr/share/zsh/site-functions"
cp misc/completion/be.zsh "$pkgdir/usr/share/zsh/site-functions/_be"

to package() should enable tab-completion for zsh. Probably something similar also works for bash (a completion script is also supplied for it).

Comment by masterkorp

2013-12-17 13:59

@Jonhoo,

Personally I stopped using this software, I will be orphaning it, please adopt away if you so desire.

Thanks,

Comment by Jonhoo

2013-12-16 15:02

Updated PKGBUILD here: http://jon.tsp.io/share/be-git.src.tar.gz
Removed dependencies only needed for HTML doc generation

Comment by big_gie

2012-10-11 14:18

You could also add an optional dependency for "community/python2-cherrypy" to allow using the included web interface. This one does not get installed (probably still alpha) but can be interesting.
Run it from the be source directory:
python2 interfaces/web/cfbe.py <path to git repo>
See http://docs.bugseverywhere.org/http.html

Comment by big_gie

2012-10-11 14:14

The line with "sed -i 's/^.*share\/man\/man1.*$//' setup.py" in the PKGBUILD breaks the build. It changes the setup.py from this:
[...]
if os.path.exists(man_path):
data_files.append(('share/man/man1', [man_path]))
[...]
to this:
[...]
if os.path.exists(man_path):
[...]
which breaks the "if" statement. Commenting out the offending line in the PKGBUILD allowed be to be built.

Should the sed line be removed or changed/fixed from the PKGBUILD??

Anonymous comment

2012-05-22 09:48

Orphaned, thanks for your interest. (ref: http://mailman.archlinux.org/pipermail/aur-general/2012-May/018975.html)

Anonymous comment

2012-05-22 09:47

Orphaned, thanks for your interest. (ref: http://mailman.archlinux.org/pipermail/aur-general/2012-May/018975.html)

Comment by masterkorp

2012-05-22 08:18

I would like to mainatainthis.

Comment by masterkorp

2012-05-22 08:18

Hello, i would like to maintains this.

Comment by rekado

2012-05-22 04:14

Yes, this only should have one makedepends: python2-numpydoc.
It will also need another sed line before the documentation is generated with `make sphinx`:

sed -i 's/sphinx-build/sphinx-build2/' doc/Makefile

Comment by lowfatcomputing

2012-04-07 15:03

python-numpydoc should be python2-numpydoc and python-sphinx can be removed because python2-numpy already depends on python2-sphinx.

Anonymous comment

2011-04-28 07:52

Update dependencies and bumped, thanks.

Comment by Schnouki

2011-03-24 09:32

This should depend on python2 rather than python. Bumped to 1.0.1, seems to work fine :)

Anonymous comment

2010-11-28 11:21

You can clean up the PKGBUILD by using the -i switch on sed instead of writing to tmp and then overwriting the original file with the temp file. I also changed python calls to "python2" to make it run with the new arch python packages and fixed some of the sed calls to work with the current be git. I haven't really tested this yet, just installed and ran "be help". Have fun: http://pastie.org/1329693

Anonymous comment

2010-09-28 17:22

Added dependency on ed (it has been removed from base-devel)

The issue with documentation building seems to be related to sphinx v1.* instead of 0.6.5 as used upstream; since it is not being installed anyway the new PKGBUILD no longer builds it.

Comment by BoySka

2010-09-13 21:18

I fixed it!
http://pastie.org/1156743

at line 46, sed disables sphinx to avoid errors

Comment by BoySka

2010-09-13 20:38

and docbook-to-man , too.

even with these, though, can't manage to makepkg.


Running Sphinx v1.0.1

Exception occurred:
File "/usr/lib/python2.6/site-packages/numpydoc/numpydoc.py", line 136, in get_directive
raise RuntimeError("No directive named '%s' found" % name)
RuntimeError: No directive named 'function' found

Comment by BoySka

2010-09-13 20:29

Missing makedepends: ed

Anonymous comment

2010-07-10 17:12

Dependency on python-yaml added in the PKGBUILD.

Anonymous comment

2010-07-10 12:39

You will need to install the package python-yaml from community, thanks for pointing out a missing dependency.

I will fix the PKGBUILD asap.

Comment by dwijnand

2010-07-10 09:13

I just installed this (after installing the required python-numpydoc from aur as from valhalla), and when running `be help` I get:

Traceback (most recent call last):
File "/usr/bin/be", line 24, in <module>
import libbe.ui.command_line
File "/usr/lib/python2.6/site-packages/libbe/ui/command_line.py", line 27, in <module>
import libbe.bugdir
File "/usr/lib/python2.6/site-packages/libbe/bugdir.py", line 39, in <module>
import libbe.storage.util.mapfile as mapfile
File "/usr/lib/python2.6/site-packages/libbe/storage/util/mapfile.py", line 29, in <module>
import yaml
ImportError: No module named yaml

Any ideas?