Done.
Search Criteria
Package Details: bugseverywhere-git 2:1.5.r1671.4980830-3
Package Actions
| Package Base: | bugseverywhere-git |
|---|---|
| Description: | A distributed bugtracker |
| Upstream URL: | http://bugseverywhere.org/ |
| Category: | devel |
| Licenses: | |
| Submitter: | None |
| Maintainer: | Jonhoo |
| Last Packager: | None |
| Votes: | 9 |
| First Submitted: | 2010-07-01 11:50 |
| Last Updated: | 2014-02-05 21:34 |
Latest Comments
Comment by Jonhoo
Comment by antony
Also you need to add python2-docutils as a makedepends (it provides rst2man2).
Comment by Jonhoo
Thanks for the suggestion! Added.
Comment by antony
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
@Jonhoo,
Personally I stopped using this software, I will be orphaning it, please adopt away if you so desire.
Thanks,
Comment by Jonhoo
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
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
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
Orphaned, thanks for your interest. (ref: http://mailman.archlinux.org/pipermail/aur-general/2012-May/018975.html)
Anonymous comment
Orphaned, thanks for your interest. (ref: http://mailman.archlinux.org/pipermail/aur-general/2012-May/018975.html)
Comment by masterkorp
I would like to mainatainthis.
Comment by masterkorp
Hello, i would like to maintains this.
Comment by rekado
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
python-numpydoc should be python2-numpydoc and python-sphinx can be removed because python2-numpy already depends on python2-sphinx.
Anonymous comment
Update dependencies and bumped, thanks.
Comment by Schnouki
This should depend on python2 rather than python. Bumped to 1.0.1, seems to work fine :)
Anonymous comment
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
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
I fixed it!
http://pastie.org/1156743
at line 46, sed disables sphinx to avoid errors
Comment by BoySka
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
Missing makedepends: ed
Anonymous comment
Dependency on python-yaml added in the PKGBUILD.
Anonymous comment
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
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?