pytony
-
Posts
46 -
Joined
-
Last visited
-
Days Won
5
Community Answers
-
pytony's post in Another stupid ego -- kits -- local overlay question was marked as the answer
It looks like you have your /etc/portage/repos.conf symlinked to /var/git/meta-repo/repos.conf.
try:
rm /etc/portage/repos.conf rm /var/git/meta-repo/repos.conf/funtoo mkdir /etc/portage/repos.conf/ ln -s /var/git/meta-repo/repos.conf /etc/portage/repos.conf/funtoo for f in /var/git/meta-repo/repos.conf/*.conf; do mv "$f" /etc/portage/repos.conf/; done
-
pytony's post in Change to kits and python confusion was marked as the answer
`epro update` updates the contents of the file `/etc/portage/make.profile/parent`. This file contains profiles that determine default useflags, masks, make.conf, ... These profiles depend on the python-kit branch you use and profiles you set with epro.
`epro update` is indeed missing from documentation. You can file an issue on Jira about it.
-
pytony's post in How to find which repository a package comes from / show information in git log? was marked as the answer
I don't know if a tool that does the job exists, but the data is on http://ports.funtoo.org/packages.xml
curl -s http://ports.funtoo.org/packages.xml | xmllint --xpath "/packages/category[@name='dev-python']/package[@name='cryptography']/@repository" - -
pytony's post in Trouble about wireless. was marked as the answer
I guess it is to ensure they can't be loaded.
Maybe try
echo -e "blacklist bcma\nblacklist ssb\nblacklist mac80211" >> /etc/modprobe.d/blacklistNote: If this broadcom-sta does not solve your issue, don't forget to uninstall it and unblacklist bcma, ssb and mac80211. -
pytony's post in Error starting quodlibet/exfalso/operon was marked as the answer
Gtk has to be compiled with introspection enabled:
USE=introspection emerge -1 gtk+ python2.7 -c "from gi.repository import Gtk" Whether this works or not, please file a bug. This is only a temporary workaround.
PS : You should probably keep python3.3 as default python interpreter. If you installed a package "foo" on both python2.7 and python3.3, you can run "foo-3.3" or "foo-2.7" to run it on a specific python instance. But here, quodlibet is python 2.7 only anyway.
-
pytony's post in no python doc package? was marked as the answer
Just tested it, that's a bug. dev-lang/python-3.3.6-r1000 requires dev-python/python-docs:3.3 whereas latest slot/version available is dev-python/python-docs:3.0.
Please file a bug: https://bugs.funtoo.org/
Edit: I filed a bug: https://bugs.funtoo.org/browse/FL-2352
-
pytony's post in Using Keychain to unlock Mutt IMAP passwords was marked as the answer
Found what I missed thanks to rieper on IRC.
eval `keychain --agents ssh,gpg --eval id_rsa DEADBEEF BADCAFFE` in your ~/.bash_profile or ~/.zprofile
I think this should be documented in www.funtoo.org/Keychain
