Hi Guys:
I want to build a module for my opensuse, it's kernel version is
3.4.11-2.16-xen
but I found I can't , module verison from obs buiding is
3.4.6_2.10-2.2
http://download.opensuse.org/repositories/home:/todaygood123/openSUSE_12.2/…
I don't know how to designate a kernel version in .spec file .
now My module.spec file :
Name: module_param
BuildRequires: %kernel_module_package_buildreqs
License: GPL
Group: System/Kernel
Summary: module param example
Version: 1
Release: 0
Source0: Makefile
Source1: module_param_test.c
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%kernel_module_package
%description
This kernel module provides support module example.
%prep
%setup -T -c %{name}-%{version}
echo "module_param_test.ko" > Module.supported
cp %{SOURCE0} .
cp %{SOURCE1} .
#%patch0 -p5
#%patch1 -p5
set -- *
mkdir source
mv "$@" source/
mkdir obj
%build
for flavor in %flavors_to_build; do
rm -rf obj/$flavor
cp -r source obj/$flavor
make -C %{kernel_source $flavor} modules M=$PWD/obj/$flavor
done
%install
export INSTALL_MOD_PATH=$RPM_BUILD_ROOT
export INSTALL_MOD_DIR=updates
for flavor in %flavors_to_build; do
make -C %{kernel_source $flavor} modules_install M=
$PWD/obj/$flavor
done
%clean
rm -rf %{buildroot}
%changelog
--
------------------------------
Jun Hu
DSE In Suse China.
------------------------------
--
To unsubscribe, e-mail: opensuse-buildservice+unsubscribe(a)opensuse.org
To contact the owner, e-mail: opensuse-buildservice+owner(a)opensuse.org
Hello,
I would like to suggest to change/improve the order of search results on
"software.opensuse.org". Not sure if this is the right list to do so...
Two example searches for
1) firefox:
http://software.opensuse.org/search?utf8=%E2%9C%93&q=firefox&search_devel=f…
and
2) thunderbird:
http://software.opensuse.org/search?utf8=%E2%9C%93&q=thunderbird&search_dev…
for OS12.2 with default search settings show some problems.
The "firefox" search displays a package called "firefox" as first
result. The package has a good description and also a nice screen shot.
For the average user, this may look like the package to go with (best
fit). But actually, it contains some unstable builds of the firefox
package from "home:..." repos, and not the official SuSE package.
Also, it only contains unstable builds, which are hidden by the default
search settings. Hence, the list of package to download is empty, unless
the "Show unstable packages" link is clicked.
The "thunderbird" search brings an "Import Wizard" as first result. The
official thunderbird package is also shown, but no screenshot and a very
short description.
I would suggest to
a) prioritize perfect matches for package title (i.e. do not show
"Import Filter" as first match when searching for the term "thunderbird"),
b) prioritize official (SuSE) packages (if available),
c) hide or move back packages that are available as unstable versions
_only_ (similar or identical to b).
Best regards,
J Brauchle
I wrote a simple service, which can automatically check PGP signatures
of files using gpg-offline .keyring file:
https://build.opensuse.org/package/show?package=obs-service-gpg-offline&pro…
It could be an alternative to %prep checks during the build process
using %gpg-offline macro.
This is a simple version and does not take any arguments. It checks
online for updates, but it does not fail if the signature is not found
in the public servers. Only failure of checks against embedded keyring
will fail. It would need further discussion, what to return if:
- Key server did not respond.
- The key is not found upstream.
- The key was revoked.
--
Best Regards / S pozdravem,
Stanislav Brabec
software developer
---------------------------------------------------------------------
SUSE LINUX, s. r. o. e-mail: sbrabec(a)suse.cz
Lihovarská 1060/12 tel: +49 911 7405384547
190 00 Praha 9 fax: +420 284 028 951
Czech Republic http://www.suse.cz/
--
To unsubscribe, e-mail: opensuse-buildservice+unsubscribe(a)opensuse.org
To contact the owner, e-mail: opensuse-buildservice+owner(a)opensuse.org
.
Hello,
I am thinking of buying a Fusion-io ioDrive SSD PCIe card [one of the
smaller capacity], for use in the Open Build Service (OBS)
I have not bought anything yet.
Some questions first:
1. Would a ioDrive SSD PCIe card work in one of the smaller build??
(x86_64) services.
2. I need a Name and work address to send the card {on purchase} ,to
some-one on the opensuse-buildservice team I suspect. {e.g Adrian Schröter
?}
3. I would like a second person to confirm the Name and work address to
send the card to.
Attaching a picture of the card.
Thanks Glenn
--
To unsubscribe, e-mail: opensuse-buildservice+unsubscribe(a)opensuse.org
To contact the owner, e-mail: opensuse-buildservice+owner(a)opensuse.org
Hi,
the https://api.opensuse.org/apidocs/ does not work for me. All I get is
<status code="not_found">
<summary>Page not found</summary>
<details/>
</status>
Did the documentation move somewhere?
Regards
Michal Vyskocil
Hi
I want try realize show translated package summary and description on
software.opensuse.org.
We have translated descriptions for openSUSE
http://svn.opensuse.org/viewvc/opensuse-i18n/trunk/packages/.
It showed in yast software management, but it didn't show on
software.opensuse.org.
I think it will be good feature and i have interest will make it.
But i think i need mentor, who can help me start and say me how make it
good.
Now i have some questions about how it will need implemented.
1 - How i can get translated string? It will be .mo files in source of
software.o.o like interface translation or i will need get translation
from any another source? I still no thoroughly understand architecture
of software.o.o.
2 - software.o.o shows descriptions from OBS? It is not descriptions
from spec file?
Thanks for help.
--
Andrey Gankov
openSUSE Member
Email: gankov(a)opensuse.org
--
To unsubscribe, e-mail: opensuse-buildservice+unsubscribe(a)opensuse.org
To contact the owner, e-mail: opensuse-buildservice+owner(a)opensuse.org
As per bnc#796901, could the ajorgensen account be deleted?
Thanks.
--
To unsubscribe, e-mail: opensuse-buildservice+unsubscribe(a)opensuse.org
To contact the owner, e-mail: opensuse-buildservice+owner(a)opensuse.org
Hi,
how do I undefine or redefine a macro that is defined in the "Macros:"
section of a prjconf?
Assuming I have project A that defines:
Macros:
%do_foo 1
and a project B that links project A (and thereby inherits the prjconf
of A), but I want to undefine %do_foo there (or define it to 0 at
least), but I fail.
just defining %do_foo 0 does not work (it stays at 1), similarly to
other tricks I was able to imagine (like adding %ifs or the like).
Thanks,
Dirk
--
To unsubscribe, e-mail: opensuse-buildservice+unsubscribe(a)opensuse.org
To contact the owner, e-mail: opensuse-buildservice+owner(a)opensuse.org
Hi all,
I'd like to know how I can programmatically determine whether a
project checked out via "osc co -e" is a linkpac or a branch.
If it's checked out unexpanded ("osc co -u") then it seems I can take
a guess by looking for
<patches>
<branch/>
</patches>
in the _link file, but I'm not sure this is correct and it's not even
possible when the sources are expanded, since then _link doesn't
exist. Suggestions?
Thanks,
Adam
--
To unsubscribe, e-mail: opensuse-buildservice+unsubscribe(a)opensuse.org
To contact the owner, e-mail: opensuse-buildservice+owner(a)opensuse.org
Hi,
I have set build targets for openSUSE 12.2 as well as 12.1. I am
getting a successfull build on 12.2 but build fails on 12.1. On
analyzing the build log, I see the error something to do with the
suse_update_desktop_file macro.
Build Log:
https://build.opensuse.org/package/live_build_log?arch=x86_64&package=onecl…
Spec File:
https://build.opensuse.org/package/view_file?expand=1&file=oneclickinstalle…
Shouldn't the same error occur for 12.2 as well?
Regards,.
Saurabh Sood
--
To unsubscribe, e-mail: opensuse-buildservice+unsubscribe(a)opensuse.org
To contact the owner, e-mail: opensuse-buildservice+owner(a)opensuse.org