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
Hi All,
I am trying to install my program on Mandriva but can't seem to add
the OBS repository.
It seems that the command urpmi.addmedia doesn't work with the
normal RPM PM. Someone on IRC mentioned that I could specify a
different type for the repository in my OBS raw config to
automatically generate a urpmi compatible repo. What do I put as the
type for my Mandriva repo to make it urpmi compatible?
Thanks,
Nick
--
Nick Peterson
Programmer @ Siepel Lab
Cell: (480) 600-2544
--
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
dolphin-emu from home:RedDwarf:NonFree, that uses the new tar_scm
source service, has been in "source update running" for more than an
hour.
Also, at least the tar_scm version I have installed from
openSUSE:Tools seems to have a typo that makes --filename not work.
Where it says
FILE="$FILENAME"
VERSION="$MYVERSION"
it should say
FILE="$MYFILENAME"
VERSION="$MYVERSION"
I would create a SR, but not sure what/where is upstream/devel project
for the source services.
--
To unsubscribe, e-mail: opensuse-buildservice+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-buildservice+help(a)opensuse.org
Hi all,
It seems that every time I build for Fedora:*, and the build host
doesn't like the gcc, it always drops an error:
checking how to run the C++ preprocessor... /lib/cpp
configure: error: in `/home/abuild/rpmbuild/BUILD/dependencies/tqtinterface':
configure: error: C++ preprocessor "/lib/cpp" fails sanity check
See `config.log' for more details.
Any way to override this or fix this? I can guarantee that this builds
on Fedora 14 x86_64 natively.
--
later, Robert Xu
--
To unsubscribe, e-mail: opensuse-buildservice+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-buildservice+help(a)opensuse.org
I have not used this feature in so long I have forgotten
how do you set up mandrivia, fedora so that one click
install works? Where is this documented?
When I tried it, it gave me a dialog that let me download
a ymp file. What do I do with this file?
--
Paul Elliott 1(512)837-1096
pelliott(a)BlackPatchPanel.com PMB 181, 11900 Metric Blvd Suite J
http://www.free.blackpatchpanel.com/pme/ Austin TX 78758-3117
Hi,
Please excuse the cross post.
You may have noticed that we have higher and higher build load on build.o.o.
While the new dispatcher algorithms are still good to prefer the "right" jobs,
it is still a sign that we may should cleanup.
My current plan is to remove all repositories in home projects, which have not been
touched this year. Not touched means, no source submission and no meta data has
been altered at all.
Additionally also all non-home projects, which have not been touch in last two years.
This will affect 5668 out of 15668 projects.
Why remove repos and not just disable the build ?
This will free disk space on our servers and also on all mirrors. As result
we can be mirrored more easily.
Will any source get lost ?
No.
How to enable it again ?
Just add the wanted repos again.
Which projects will get affected exactly ?
Find a full list here:
http://www.suse.de/~adrian/OBS-remove-list-candidates
There is a project which has not been touched, but the repos are still anyway important !
Just drop me a mail ....
Why not drop the entire project now that we have an undelete function ?
I thought about that, but currently the webui just says that the project does not exist.
It does not offer to undelete it, so that might be too agressive for now.
Why not drop people a mail and ask them to remove it ?
Way to many accounts have no valid email adress and past experience showed that people
are often not react when they lost interesst in their project.
May plan is to do the removal end of this week, except more discussion about this
is needed.
Just tell me your opinion, also when you support this ;)
thanks
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
Hello,
I was trying out multiple actions in one request and noticed that the
notifications contain only the last action.
I looked at the code and found this in /usr/lib/obs/server/BSNotify.pm
line 82 :
# FIXME: how to handle multiple actions in one request here ?
# right now the last one just wins ....
So here's a proposed fix : add an actions key in the reqinfo hash, that
contains an ordered list of hashes that contain the details of the actions.
The Data::Dumper of reqinfo produced by the attached patch looks like this :
$VAR1 = {
'when' => '2010-09-30T00:12:13',
'actions' => [
{
'sourcerevision' => '1',
'sourceproject' => 'Foo:Devel:Personal',
'deletepackage' => undef,
'targetproject' => 'Foo:Trunk',
'sourcepackage' => 'libfoo',
'type' => 'submit',
'targetpackage' => 'libfoo',
'deleteproject' => undef
},
{
'sourcerevision' => '1',
'sourceproject' => 'Foo:Devel:Personal',
'deletepackage' => undef,
'targetproject' => 'Foo:Trunk',
'sourcepackage' => 'bar',
'type' => 'submit',
'targetpackage' => 'bar',
'deleteproject' => undef
}
],
'author' => 'bob',
'description' => 'Test',
'state' => 'new',
'comment' => undef,
'who' => 'bob',
'sender' => 'bob',
'id' => 32,
'type' => ''
};
Is this change acceptable ? If so, I guess the notification plugins will
have to be changed to accommodate this.
Thanks,
Islam Amer