Hello,
is usual, openeSUSE 10.3 runs out of maintenance and I will remove all repos
building against it in OBS.
openSUSE:10.3 project has been moved to DISCONTINUED: namespace as announced a
while ago.
bye
adrian
--
Adrian Schroeter
SUSE Linux Products GmbH
email: adrian(a)suse.de
--
To unsubscribe, e-mail: opensuse-buildservice+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-buildservice+help(a)opensuse.org
What is the difference between Support and Keep?
Like, let's say I have a package FOO that I'd like to always be
installed in the build environment, *if* it is available. If it is not
available, block all other builds until it *is* available, but do not
block FOO itself. How do I do that?
Is there a way to configure a project with more than one repository
with different configurations (such as, when using repo A, substitute
foo for bar)?
--
Jon
--
To unsubscribe, e-mail: opensuse-buildservice+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-buildservice+help(a)opensuse.org
osc help lists commands alphabetically. Please, sort them by topic as
rpm, zypper, and similar tools do.
[Yes, svn also sorts alphabetically, but that list is not that huge.]
--
Karl Eichwalder
R&D / Documentation
SUSE LINUX Products GmbH, GF: Markus Rex, HRB 16746 (AG Nuernberg)
--
To unsubscribe, e-mail: opensuse-buildservice+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-buildservice+help(a)opensuse.org
I've noted a slightly old thread where somebody asked about how to use
obssigner or obssignd. However, the problem was that there wasn't any
documentation; and there wasn't any discussion on how to set up the signer.
I'd be more than willing to help document the process on the build service
wikis -- if only I knew how to set it up. I can't find any documentation on
how to configure obssigner.
I've uncommented:
our $sign = '/usr/bin/sign';
from BSConfig.pm
I've tried putting the following into my /etc/sign.conf:
### for build service host
server: <my_real_ip_address>
user: obsbuild(a)foo.com
allowuser: obsrun
#
### for sign server
#allow: <IP of your build service host>
allow: <my_real_ip_address>
#phrases: /root/.phrases
When I start /etc/init.d/obssignd, it starts without throwing an error.
After I start /etc/init.d/obssigner, there is a new logfile created in:
/srv/obs/log/signer.log
This logfile has the following contents:
Name "BSConfig::sign_project" used only once: possible typo at
/usr/lib/obs/server//bs_signer line 96.
starting build service signer
waiting for an event...
When I try to create a key (from a project I've checked out), I get:
~/src/obs/myproject$ osc signkey --create
Server returned an error: HTTP Error 404: Not Found
don't know how to create a key
I'm using the packages in OpenSUSE:Tools, for openSUSE 11.2.
The packages I have are:
obs-service-download_url-0.1-7.1.noarch
obs-utils-1.7.5-1.1.x86_64
obs-common-1.7.0-1.1.x86_64
obs-api-1.7.5-1.1.x86_64
obs-worker-1.7.5-1.1.x86_64
obs-server-1.7.2-18.8.x86_64
obs-signd-1.7.0-5.1.x86_64
obs-source_service-1.7.5-1.1.x86_64
obs-productconverter-1.7.5-1.1.x86_64
Any hints?
--
To unsubscribe, e-mail: opensuse-buildservice+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-buildservice+help(a)opensuse.org
The following changes since commit 2f48e6b96ab048e0ec431c4e1cba4a353f337fff:
handle missing package error correctly (2010-05-28 16:19:46 +0200)
are available in the git repository at:
git://dev.medozas.de/suse-build-service master
Jan Engelhardt (4):
bs_worker: force use of --target for SPARC
bsconfig: update relsync for sparc64
bs_sched: rectify SPARC architecture compatibility definitions
webui: remaining sparclets
Please inspect and apply if ok.
For p#1: While the use of --target has raised some concerns, it is
ultimately required for sparcv9 building right now, and as
openSUSE.org is not using that architecture at all, I guess I get
the say :-)
dist/sysconfig.obs-server | 2 +-
docs/api/api/obs.rng | 2 ++
src/backend/BSConfig.pm.template | 2 ++
src/backend/bs_dispatch | 4 ++--
src/backend/bs_worker | 7 +++++--
5 files changed, 12 insertions(+), 5 deletions(-)
--
To unsubscribe, e-mail: opensuse-buildservice+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-buildservice+help(a)opensuse.org
Hi all,
Usually, there is /srv/www/obs/webui/config/repositories.rb that
defines the list of default repos one can select.
I noticed that this file is removed in webui 2.0. Is this defined in
another place?
-- later, Robert Xu
Notice Changing Signatures? lol, I can't decide which one I like better. XD
Ever Tried Linux? :)
--
To unsubscribe, e-mail: opensuse-buildservice+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-buildservice+help(a)opensuse.org
Hi
I'm new to opensuse buildservice and i find it very practical and easy to use.
The package exim-mysql in the project server:mail doesn't build for newer distros.
I could fix the problem in my branch with a small patch.
How should i report that?
I already mailed the mainainer a week ago.
failed builds:
https://build.opensuse.org/package/show?package=exim-mysql&project=server%3…
succeded builds in my branch:
https://build.opensuse.org/package/show?package=exim-mysql&project=home%3Ac…
thanks and greetings
Christian Schweingruber
--
To unsubscribe, e-mail: opensuse-buildservice+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-buildservice+help(a)opensuse.org
Every time I upgrade (replace) bs_publish, I need to fix it with the
following issue:
gpgcheck=1
is *always* added.
IMO, it should only be added if the packages are actually signed.
The current code:
print FILE "gpgcheck=1\n";
if (!@$signargs) {
print FILE "gpgkey=$BSConfig::gpg_standard_key\n" if (
defined($BSConfig::gpg_standard_key) );
} else {
print FILE
"gpgkey=$BSConfig::repodownload/$prp_ext/repodata/repomd.xml.key\n";
}
I would change that to:
if (!@$signargs) {
if ( defined($BSConfig::gpg_standard_key) ) {
print FILE "gpgcheck=1\n";
print FILE "gpgkey=$BSConfig::gpg_standard_key\n";
}
} else {
print FILE "gpgcheck=1\n";
print FILE
"gpgkey=$BSConfig::repodownload/$prp_ext/repodata/repomd.xml.key\n";
}
--
Jon
--
To unsubscribe, e-mail: opensuse-buildservice+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-buildservice+help(a)opensuse.org