[opensuse-packaging] search query.
Hello, Some questions: - Is it possible to download all the obs repos that have a kernel-vanilla spec file in a kernel-vanilla package The reason I ask is: I am looking for a specific kernel-vanilla version of 3.14x Have you some code to loop through all the projects:packages to do this. What osc command can be used to download the spec file - have you got an example. I know it would take a long time to loop through all package names. Thankyou Glenn -- To unsubscribe, e-mail: opensuse-packaging+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse-packaging+owner@opensuse.org
On Friday 2014-06-27 14:58, doiggl@velocitynet.com.au wrote:
- Is it possible to download all the obs repos that have a kernel-vanilla spec file in a kernel-vanilla package
The reason I ask is: I am looking for a specific kernel-vanilla version of 3.14x
Probably easier to download the git repo of kernel-source and then generate the particular version you are interested in. git://git.gitorious.org/opensuse/kernel-source -- To unsubscribe, e-mail: opensuse-packaging+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse-packaging+owner@opensuse.org
On 2014-06-27 22:58:50 +1000, doiggl@velocitynet.com.au wrote:
Hello, Some questions:
- Is it possible to download all the obs repos that have a kernel-vanilla spec file in a kernel-vanilla package
The reason I ask is: I am looking for a specific kernel-vanilla version of 3.14x
Have you some code to loop through all the projects:packages to do this. What osc command can be used to download the spec file - have you got an example.
You could do something like osc se kernel-vanilla --package | tail -n +4 | while read prj pkg; do osc cat "$prj/$pkg/kernel-vanilla.spec" > "${prj}_${pkg}_kernel-vanilla.spec" done to download all kernel-vanilla.spec files (if such a file exists in the package). Marcus -- To unsubscribe, e-mail: opensuse-packaging+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse-packaging+owner@opensuse.org
participants (3)
-
doiggl@velocitynet.com.au
-
Jan Engelhardt
-
Marcus Hüwe