* Greg Freemyer (greg.freemyer@gmail.com) [20120827 22:35]:
More typically, you would find the Factory version of a package, then from it find the devel version that is derived from it and branch that devel version to your home project.
David Haller once postet a nifty scrip snippet for that which I turned into a shell function to put into .bashrc: odp() { for pkg; do printf "%s $pkg\n" \ $(osc meta pkg openSUSE:Factory "$pkg" | \ sed -n '/devel/s/.*project="\([^"]\+\)".*/\1/p') done } I also modified it to have the data returned in a form you can directly copy per cut&paste. This makes it much easier to find the repository for a given package. I also added this alongside the above: omp() { osc maintainer -e $(odp $1); } to ease quering maintainer/bugowner from the command line. Philipp -- To unsubscribe, e-mail: opensuse-packaging+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse-packaging+owner@opensuse.org