[opensuse-buildservice] java version: which BuildRequires?
Hi all I'm new to the Build Service, and fast I'm getting crazy :) My project must be compiled with a JVM >= 1.5, but I cannot guess how to label the required package: BuildRequires: java-1_5_0-gcj-compat-devel ? BuildRequires: java-1_5_0-sun-devel ? If I understood well, the package name depends on the target system (openSUSE_10.3 packages are different than openSUSE_Factory ones). java-1_5_0-sun-devel on openSuse10.3 does not work anymore. Any help is very welcome :) Ciao rob --------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-buildservice+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-buildservice+help@opensuse.org
Roberto Mannai schrieb:
Hi all I'm new to the Build Service, and fast I'm getting crazy :) My project must be compiled with a JVM >= 1.5, but I cannot guess how to label the required package:
BuildRequires: java-1_5_0-gcj-compat-devel ? BuildRequires: java-1_5_0-sun-devel ?
There is a macro which expands to the best package per system: BuildRequires: java-devel >= 1.5 Greetings
If I understood well, the package name depends on the target system (openSUSE_10.3 packages are different than openSUSE_Factory ones). java-1_5_0-sun-devel on openSuse10.3 does not work anymore.
Any help is very welcome :) Ciao rob --------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-buildservice+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-buildservice+help@opensuse.org
-- Thomas Schmidt (tschmidt [at] suse.de) SUSE Linux Products GmbH :: Research & Development :: Internal Tools "Don't Panic", Douglas Adams (1952 - 11.05.2001) --------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-buildservice+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-buildservice+help@opensuse.org
I got: expansion error nothing provides java-devel >= 1.5 Below is SPEC header: Name: codesounding Version: 1.4 Release: 1 License: GPL BuildRoot: %{_tmppath}/%{name}-%{version}-build Autoreqprov: on BuildRequires: unzip BuildRequires: update-alternatives BuildRequires: java-devel >= 1.5 BuildRequires: ant Requires: java >= 1.5.0 BuildArch: noarch Group: Dummy Summary: My Dummy Package URL: http://www.codesounding.org Source0: %{name}%{version}_src.zip Maybe must I delete the update-alternatives row? On Mon, Mar 17, 2008 at 2:48 PM, Thomas Schmidt <tschmidt@suse.de> wrote:
Roberto Mannai schrieb:
Hi all I'm new to the Build Service, and fast I'm getting crazy :) My project must be compiled with a JVM >= 1.5, but I cannot guess how to label the required package:
BuildRequires: java-1_5_0-gcj-compat-devel ? BuildRequires: java-1_5_0-sun-devel ?
There is a macro which expands to the best package per system:
BuildRequires: java-devel >= 1.5
Greetings
If I understood well, the package name depends on the target system (openSUSE_10.3 packages are different than openSUSE_Factory ones). java-1_5_0-sun-devel on openSuse10.3 does not work anymore.
Any help is very welcome :) Ciao rob --------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-buildservice+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-buildservice+help@opensuse.org
-- Thomas Schmidt (tschmidt [at] suse.de) SUSE Linux Products GmbH :: Research & Development :: Internal Tools "Don't Panic", Douglas Adams (1952 - 11.05.2001)
--------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-buildservice+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-buildservice+help@opensuse.org
Roberto Mannai schrieb:
I got: expansion error nothing provides java-devel >= 1.5
This is because openSUSE 10.3 only has gcj for java 1.4 in the OSS tree. You should use: openSUSE:10.3:NonFree/standard to be able to build java 1.5 code for 10.3. Greetings
Below is SPEC header: Name: codesounding Version: 1.4 Release: 1 License: GPL BuildRoot: %{_tmppath}/%{name}-%{version}-build Autoreqprov: on
BuildRequires: unzip BuildRequires: update-alternatives BuildRequires: java-devel >= 1.5
BuildRequires: ant Requires: java >= 1.5.0 BuildArch: noarch Group: Dummy Summary: My Dummy Package URL: http://www.codesounding.org Source0: %{name}%{version}_src.zip
Maybe must I delete the update-alternatives row?
On Mon, Mar 17, 2008 at 2:48 PM, Thomas Schmidt <tschmidt@suse.de> wrote:
Roberto Mannai schrieb:
Hi all I'm new to the Build Service, and fast I'm getting crazy :) My project must be compiled with a JVM >= 1.5, but I cannot guess how to label the required package:
BuildRequires: java-1_5_0-gcj-compat-devel ? BuildRequires: java-1_5_0-sun-devel ?
There is a macro which expands to the best package per system:
BuildRequires: java-devel >= 1.5
Greetings
If I understood well, the package name depends on the target system (openSUSE_10.3 packages are different than openSUSE_Factory ones). java-1_5_0-sun-devel on openSuse10.3 does not work anymore.
Any help is very welcome :) Ciao rob --------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-buildservice+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-buildservice+help@opensuse.org
-- Thomas Schmidt (tschmidt [at] suse.de) SUSE Linux Products GmbH :: Research & Development :: Internal Tools "Don't Panic", Douglas Adams (1952 - 11.05.2001)
--------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-buildservice+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-buildservice+help@opensuse.org
-- Thomas Schmidt (tschmidt [at] suse.de) SUSE Linux Products GmbH :: Research & Development :: Internal Tools "Don't Panic", Douglas Adams (1952 - 11.05.2001) --------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-buildservice+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-buildservice+help@opensuse.org
Thank you, now I've just scheduled a new build in a openSUSE:10.3:NonFree/standard repository. Generally speaking, how could you know the available packages names into a build repository ? I would guess, for example, that a search for "java-1_5_0" into webpin, having checked the "Suse Factory" radiobutton, should return the same packages I would expect as available into the "openSUSE:Factory/standard" BuildService repository (http://packages.opensuse-community.org/index.jsp?distro=SUSE_Factory&searchT...). Is this assumption correct? On Mon, Mar 17, 2008 at 3:02 PM, Thomas Schmidt <tschmidt@suse.de> wrote:
Roberto Mannai schrieb:
I got: expansion error nothing provides java-devel >= 1.5
This is because openSUSE 10.3 only has gcj for java 1.4 in the OSS tree. You should use: openSUSE:10.3:NonFree/standard to be able to build java 1.5 code for 10.3.
Greetings
Below is SPEC header: Name: codesounding Version: 1.4 Release: 1 License: GPL BuildRoot: %{_tmppath}/%{name}-%{version}-build Autoreqprov: on
BuildRequires: unzip BuildRequires: update-alternatives BuildRequires: java-devel >= 1.5
BuildRequires: ant Requires: java >= 1.5.0 BuildArch: noarch Group: Dummy Summary: My Dummy Package URL: http://www.codesounding.org Source0: %{name}%{version}_src.zip
Maybe must I delete the update-alternatives row?
On Mon, Mar 17, 2008 at 2:48 PM, Thomas Schmidt <tschmidt@suse.de> wrote:
Roberto Mannai schrieb:
Hi all I'm new to the Build Service, and fast I'm getting crazy :) My project must be compiled with a JVM >= 1.5, but I cannot guess how to label the required package:
BuildRequires: java-1_5_0-gcj-compat-devel ? BuildRequires: java-1_5_0-sun-devel ?
There is a macro which expands to the best package per system:
BuildRequires: java-devel >= 1.5
Greetings
If I understood well, the package name depends on the target system (openSUSE_10.3 packages are different than openSUSE_Factory ones). java-1_5_0-sun-devel on openSuse10.3 does not work anymore.
Any help is very welcome :) Ciao rob --------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-buildservice+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-buildservice+help@opensuse.org
-- Thomas Schmidt (tschmidt [at] suse.de) SUSE Linux Products GmbH :: Research & Development :: Internal Tools "Don't Panic", Douglas Adams (1952 - 11.05.2001)
--------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-buildservice+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-buildservice+help@opensuse.org
-- Thomas Schmidt (tschmidt [at] suse.de) SUSE Linux Products GmbH :: Research & Development :: Internal Tools "Don't Panic", Douglas Adams (1952 - 11.05.2001)
--------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-buildservice+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-buildservice+help@opensuse.org
Roberto Mannai schrieb:
Thank you, now I've just scheduled a new build in a openSUSE:10.3:NonFree/standard repository.
Generally speaking, how could you know the available packages names into a build repository ? I would guess, for example, that a search for "java-1_5_0" into webpin, having checked the "Suse Factory" radiobutton, should return the same packages I would expect as available into the "openSUSE:Factory/standard" BuildService repository (http://packages.opensuse-community.org/index.jsp?distro=SUSE_Factory&searchT...). Is this assumption correct?
Yes, I think so, but webpin seems only to search in the package name and description, so you can not find all the packages that have a Provides: java-devel = 1.5 for example. The only way I know to get a list of packages with a certain provides is for example: zgrep java-devel /path/to/primary.xml.gz Anyone knows a better way? Greetings
On Mon, Mar 17, 2008 at 3:02 PM, Thomas Schmidt <tschmidt@suse.de> wrote:
Roberto Mannai schrieb:
I got: expansion error nothing provides java-devel >= 1.5
This is because openSUSE 10.3 only has gcj for java 1.4 in the OSS tree. You should use: openSUSE:10.3:NonFree/standard to be able to build java 1.5 code for 10.3.
Greetings
Below is SPEC header: Name: codesounding Version: 1.4 Release: 1 License: GPL BuildRoot: %{_tmppath}/%{name}-%{version}-build Autoreqprov: on
BuildRequires: unzip BuildRequires: update-alternatives BuildRequires: java-devel >= 1.5
BuildRequires: ant Requires: java >= 1.5.0 BuildArch: noarch Group: Dummy Summary: My Dummy Package URL: http://www.codesounding.org Source0: %{name}%{version}_src.zip
Maybe must I delete the update-alternatives row?
On Mon, Mar 17, 2008 at 2:48 PM, Thomas Schmidt <tschmidt@suse.de> wrote:
Roberto Mannai schrieb:
Hi all I'm new to the Build Service, and fast I'm getting crazy :) My project must be compiled with a JVM >= 1.5, but I cannot guess how to label the required package:
BuildRequires: java-1_5_0-gcj-compat-devel ? BuildRequires: java-1_5_0-sun-devel ?
There is a macro which expands to the best package per system:
BuildRequires: java-devel >= 1.5
Greetings
If I understood well, the package name depends on the target system (openSUSE_10.3 packages are different than openSUSE_Factory ones). java-1_5_0-sun-devel on openSuse10.3 does not work anymore.
Any help is very welcome :) Ciao rob --------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-buildservice+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-buildservice+help@opensuse.org
-- Thomas Schmidt (tschmidt [at] suse.de) SUSE Linux Products GmbH :: Research & Development :: Internal Tools "Don't Panic", Douglas Adams (1952 - 11.05.2001)
--------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-buildservice+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-buildservice+help@opensuse.org
-- Thomas Schmidt (tschmidt [at] suse.de) SUSE Linux Products GmbH :: Research & Development :: Internal Tools "Don't Panic", Douglas Adams (1952 - 11.05.2001)
-- Thomas Schmidt (tschmidt [at] suse.de) SUSE Linux Products GmbH :: Research & Development :: Internal Tools "Don't Panic", Douglas Adams (1952 - 11.05.2001) --------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-buildservice+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-buildservice+help@opensuse.org
How could I access that primary.xml.gz file? I mean, where is a list of all target build repository packages? Into the build service do there is the following project: https://build.opensuse.org/project/show?project=openSUSE%3A10.3%3ANonFree But I cannot see any package listed into it. Maybe I should go into, for example, http://en.opensuse.org/Package_Repositories#Official_Repositories and get a suitable http://download.opensuse.org/update/10.3/repodata/primary.xml.gz ... I cannot understand this general situation: I need the jjack package.
From (http://packages.opensuse-community.org/index.jsp?distro=openSUSE_103&searchT...) il would seem it is available into openSuse10.3, but it isn't in the standard repo.
Until I run the build into OBS I'll never know if that package is available... Is it correct? How do you (all of you, in general) handle this situation? Thanks Roberto
The only way I know to get a list of packages with a certain provides is for example: zgrep java-devel /path/to/primary.xml.gz
Anyone knows a better way? Greetings
On Mon, Mar 17, 2008 at 3:02 PM, Thomas Schmidt <tschmidt@suse.de> wrote:
Roberto Mannai schrieb:
I got: expansion error nothing provides java-devel >= 1.5
This is because openSUSE 10.3 only has gcj for java 1.4 in the OSS tree. You should use: openSUSE:10.3:NonFree/standard to be able to build java 1.5 code for 10.3.
Greetings
Below is SPEC header: Name: codesounding Version: 1.4 Release: 1 License: GPL BuildRoot: %{_tmppath}/%{name}-%{version}-build Autoreqprov: on
BuildRequires: unzip BuildRequires: update-alternatives BuildRequires: java-devel >= 1.5
BuildRequires: ant Requires: java >= 1.5.0 BuildArch: noarch Group: Dummy Summary: My Dummy Package URL: http://www.codesounding.org Source0: %{name}%{version}_src.zip
Maybe must I delete the update-alternatives row?
On Mon, Mar 17, 2008 at 2:48 PM, Thomas Schmidt <tschmidt@suse.de> wrote:
Roberto Mannai schrieb:
Hi all I'm new to the Build Service, and fast I'm getting crazy :) My project must be compiled with a JVM >= 1.5, but I cannot guess how to label the required package:
BuildRequires: java-1_5_0-gcj-compat-devel ? BuildRequires: java-1_5_0-sun-devel ?
There is a macro which expands to the best package per system:
BuildRequires: java-devel >= 1.5
Greetings
If I understood well, the package name depends on the target system (openSUSE_10.3 packages are different than openSUSE_Factory ones). java-1_5_0-sun-devel on openSuse10.3 does not work anymore.
Any help is very welcome :) Ciao rob --------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-buildservice+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-buildservice+help@opensuse.org
-- Thomas Schmidt (tschmidt [at] suse.de) SUSE Linux Products GmbH :: Research & Development :: Internal Tools "Don't Panic", Douglas Adams (1952 - 11.05.2001)
--------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-buildservice+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-buildservice+help@opensuse.org
-- Thomas Schmidt (tschmidt [at] suse.de) SUSE Linux Products GmbH :: Research & Development :: Internal Tools "Don't Panic", Douglas Adams (1952 - 11.05.2001)
--
Thomas Schmidt (tschmidt [at] suse.de) SUSE Linux Products GmbH :: Research & Development :: Internal Tools "Don't Panic", Douglas Adams (1952 - 11.05.2001)
--------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-buildservice+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-buildservice+help@opensuse.org
Roberto Mannai schrieb:
How could I access that primary.xml.gz file? I mean, where is a list of all target build repository packages?
Into the build service do there is the following project: https://build.opensuse.org/project/show?project=openSUSE%3A10.3%3ANonFree But I cannot see any package listed into it.
Maybe I should go into, for example, http://en.opensuse.org/Package_Repositories#Official_Repositories and get a suitable http://download.opensuse.org/update/10.3/repodata/primary.xml.gz ...
I cannot understand this general situation: I need the jjack package. From (http://packages.opensuse-community.org/index.jsp?distro=openSUSE_103&searchT...) il would seem it is available into openSuse10.3, but it isn't in the standard repo.
In this case webpin says:
Results from http://packman.iu-bremen.de/suse/10.3 that means the package is available for 10.3 in the packman repo which is an external repository that the build service cannot build against.
What I was referring to with the primary.xml.gz file was how to search for specific RPM "Provides:". To search for packages that are available in the buildservice you can use this search: http://software.opensuse.org/search Greetings
Until I run the build into OBS I'll never know if that package is available... Is it correct? How do you (all of you, in general) handle this situation?
Thanks Roberto
The only way I know to get a list of packages with a certain provides is for example: zgrep java-devel /path/to/primary.xml.gz
Anyone knows a better way? Greetings
On Mon, Mar 17, 2008 at 3:02 PM, Thomas Schmidt <tschmidt@suse.de> wrote:
Roberto Mannai schrieb:
I got: expansion error nothing provides java-devel >= 1.5
This is because openSUSE 10.3 only has gcj for java 1.4 in the OSS tree. You should use: openSUSE:10.3:NonFree/standard to be able to build java 1.5 code for 10.3.
Greetings
Below is SPEC header: Name: codesounding Version: 1.4 Release: 1 License: GPL BuildRoot: %{_tmppath}/%{name}-%{version}-build Autoreqprov: on
BuildRequires: unzip BuildRequires: update-alternatives BuildRequires: java-devel >= 1.5
BuildRequires: ant Requires: java >= 1.5.0 BuildArch: noarch Group: Dummy Summary: My Dummy Package URL: http://www.codesounding.org Source0: %{name}%{version}_src.zip
Maybe must I delete the update-alternatives row?
On Mon, Mar 17, 2008 at 2:48 PM, Thomas Schmidt <tschmidt@suse.de> wrote:
Roberto Mannai schrieb:
> Hi all > I'm new to the Build Service, and fast I'm getting crazy :) My project > must be compiled with a JVM >= 1.5, but I cannot guess how to label > the required package: > > BuildRequires: java-1_5_0-gcj-compat-devel ? > BuildRequires: java-1_5_0-sun-devel ?
There is a macro which expands to the best package per system:
BuildRequires: java-devel >= 1.5
Greetings
> > If I understood well, the package name depends on the target system > (openSUSE_10.3 packages are different than openSUSE_Factory ones). > java-1_5_0-sun-devel on openSuse10.3 does not work anymore. > > Any help is very welcome :) > Ciao > rob > --------------------------------------------------------------------- > To unsubscribe, e-mail: opensuse-buildservice+unsubscribe@opensuse.org > For additional commands, e-mail: opensuse-buildservice+help@opensuse.org >
-- Thomas Schmidt (tschmidt [at] suse.de) SUSE Linux Products GmbH :: Research & Development :: Internal Tools "Don't Panic", Douglas Adams (1952 - 11.05.2001)
--------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-buildservice+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-buildservice+help@opensuse.org
-- Thomas Schmidt (tschmidt [at] suse.de) SUSE Linux Products GmbH :: Research & Development :: Internal Tools "Don't Panic", Douglas Adams (1952 - 11.05.2001)
--
Thomas Schmidt (tschmidt [at] suse.de) SUSE Linux Products GmbH :: Research & Development :: Internal Tools "Don't Panic", Douglas Adams (1952 - 11.05.2001)
-- Thomas Schmidt (tschmidt [at] suse.de) SUSE Linux Products GmbH :: Research & Development :: Internal Tools "Don't Panic", Douglas Adams (1952 - 11.05.2001) --------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-buildservice+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-buildservice+help@opensuse.org
In this case webpin says:
Results from http://packman.iu-bremen.de/suse/10.3 that means the package is available for 10.3 in the packman repo which is an external repository that the build service cannot build against.
What I was referring to with the primary.xml.gz file was how to search for specific RPM "Provides:". To search for packages that are available in the buildservice you can use this search: http://software.opensuse.org/search
Into http://software.opensuse.org/search there is only one "openSuse 10.3" list item - the standard one, I think. Could I also search into "openSUSE:10.3:NonFree/standard" OBS repo? Ciao --------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-buildservice+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-buildservice+help@opensuse.org
Roberto Mannai schrieb:
In this case webpin says:
Results from http://packman.iu-bremen.de/suse/10.3 that means the package is available for 10.3 in the packman repo which is an external repository that the build service cannot build against.
What I was referring to with the primary.xml.gz file was how to search for specific RPM "Provides:". To search for packages that are available in the buildservice you can use this search: http://software.opensuse.org/search
Into http://software.opensuse.org/search there is only one "openSuse 10.3" list item - the standard one, I think. Could I also search into "openSUSE:10.3:NonFree/standard" OBS repo?
Choosing "openSuse 10.3" should find packages from all projects that have a 10.3 build target. It seems to be a bug that the packages from "openSUSE:10.3:NonFree/standard" are not in the search index. I will ask the experts. Greetings -- Thomas Schmidt (tschmidt [at] suse.de) SUSE Linux Products GmbH :: Research & Development :: Internal Tools "Don't Panic", Douglas Adams (1952 - 11.05.2001) --------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-buildservice+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-buildservice+help@opensuse.org
I think you're correct; if I get this project: https://build.opensuse.org/package/show?package=columba&project=home%3Alumni... I can see it was published into "openSUSE_10.3_NonFree" repository. Indeed, when I search "columba" into "http://software.opensuse.org/search" I get 2 results one of which is "home:lumnis/openSUSE_10.3_NonFree". So no bug :) Thanks Roberto On Mon, Mar 17, 2008 at 5:01 PM, Thomas Schmidt <tschmidt@suse.de> wrote:
Choosing "openSuse 10.3" should find packages from all projects that have a 10.3 build target. It seems to be a bug that the packages from "openSUSE:10.3:NonFree/standard" are not in the search index. I will ask the experts. Greetings
--
Thomas Schmidt (tschmidt [at] suse.de) SUSE Linux Products GmbH :: Research & Development :: Internal Tools "Don't Panic", Douglas Adams (1952 - 11.05.2001)
--------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-buildservice+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-buildservice+help@opensuse.org
Thomas, Thanks very much for this tip! I've asked this very question on this list a solid half-dozen times over the last year, and never had a response. On my last attempt, I even had several others post follow-up queries to my original post - indicating that they too were interested in this topic, and they hoped I got an answer. Nothing. After a while, I just assumed that Java was so hated by folks on this list that they didn't care to answer any Java-related questions! :)
BuildRequires: java-devel >= 1.5
Thanks again, John --------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-buildservice+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-buildservice+help@opensuse.org
John Calcote schrieb:
Thomas,
Thanks very much for this tip! I've asked this very question on this list a solid half-dozen times over the last year, and never had a response. On my last attempt, I even had several others post follow-up queries to my original post - indicating that they too were interested in this topic, and they hoped I got an answer. Nothing.
After a while, I just assumed that Java was so hated by folks on this list that they didn't care to answer any Java-related questions! :)
Maybe we should give the page: http://en.opensuse.org/Java/Packaging/Cookbook some more love in regard to Java specific stuff. Greetings
BuildRequires: java-devel >= 1.5
Thanks again, John --------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-buildservice+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-buildservice+help@opensuse.org
-- Thomas Schmidt (tschmidt [at] suse.de) SUSE Linux Products GmbH :: Research & Development :: Internal Tools "Don't Panic", Douglas Adams (1952 - 11.05.2001) --------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-buildservice+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-buildservice+help@opensuse.org
Yes; by the way, the example presented there does not work anymore. See the BuildRequires: BuildRequires: update-alternatives, java-1_5_0-sun-devel
Maybe we should give the page: http://en.opensuse.org/Java/Packaging/Cookbook some more love in regard to Java specific stuff. Greetings
BuildRequires: java-devel >= 1.5
Thanks again, John --------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-buildservice+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-buildservice+help@opensuse.org
-- Thomas Schmidt (tschmidt [at] suse.de) SUSE Linux Products GmbH :: Research & Development :: Internal Tools "Don't Panic", Douglas Adams (1952 - 11.05.2001)
--------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-buildservice+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-buildservice+help@opensuse.org
--------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-buildservice+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-buildservice+help@opensuse.org
participants (3)
-
John Calcote
-
Roberto Mannai
-
Thomas Schmidt