- Fedorapackager requires Java 8 now.
- Allow users to clone multiple projects at once.
- Fix changelog parsing for Bodhi
- Make use of /etc/rpkg/fedpkg.conf
- Modified Fedora Packager Koji properties page
- Reduce logging noise.
- Enable rpmlint and rpm natures by default.
- Tagging is no longer used with Git.
- Shorter menu labels.
- Fixed JsonNull error when pushing bodhi update
- Eval NVRs when Bodhi updating
- Eval the name to not fail on sclized packages.
- Bodhi authenticate when pushing review fix.
- Bodhi dialog cleanup.
- Make perspective switch remember previous choice.
- Let the console name has the package (srpm) name in it.
- Remove expectation of the existance of an ssh key.
Wednesday, September 3, 2014
Eclipse Fedorapackager 0.5.0 release
Friday, February 24, 2012
RPM + OSGi automation: Step 1 completed
- Bundle-SymbolicName header is used for generating a virtual provide for the rpm the bundle is part of in the format Provides: osgi(bundle-symbolicName) = bundle-version . This is done for every OSGi bundle in the RPM so the number of these provides will be the same as the number of bundles in it. This provides generation was enabled early in the Fedora 17 development phase and will be available for use in the soon to be released Fedora 17. How will this improve the packager's life one may ask? - Do you know which package e.g. javax.servlet bundle is in? You don't have to anymore. Put Requires: osgi(javax.servlet) in your spec file is all you need. Or you can use yum to query for it `repoquery --whatprovides "osgi(javax.servlet)"`
- Require-Bundle headers are used for auto generating requires so people don't end up with dependencies not being installed. The format used is pretty much the same Requires: osgi(bundle-symbolicName). Few things needs mentioning here - optional requires are discarded because RPM(in Fedora) doesn't have the concept of soft-requires and versions are not added to the requires for a reason that will be explained later. The requires generator have just been enabled in Rawhide(future Fedora 18) and up to now it's showing no major problems with a pretty huge test case - the Eclipse SDK.
- having provides/requires for every package import/export is way too verbose and will polute the rpm metadata that much to make it hurt every user with unneeded time to download metadata
- we don't want multiple providers for the same package - we want a single, stable and well tested provider.
Tuesday, April 19, 2011
Maven and RPM - one problem less
Are you packaging Java software?
Does your package use Maven as a build system?
Have you wondered what package provides certain Maven artifact?
If you answered yes to at least one of the questions there is a good news for you:
Fedora's build system is going to automatically generate RPM Provides in a sensible way for Maven developers.
Now the details. Big thanks goes to the RPM developers for the new Dependency Generator which has made our work so much easier.
With just these 2 simple files maven.attr and maven.provwe get it to the state where every package that installs pom files according to Fedora Java Packaging Guidelineswill get provides added for every pom installed in the form mvn(groupId:artifactId)where groupId and artifactId are the same things you know from your Maven experience. Look at this recent maven2 rebuildfor example what will be generated for a package with many pom files installed.
It might look a small thing but I'm really looking for the day when I'll be able to write BuildRequires: mvn(org.apache.maven:maven-script-ant) and not having to guess whether this is part of maven package or maven-plugin-tools-ant or maven-shared-ant. And these days are near for rawhide when we get the critical mass of rebuilds done so the provides are in place.
This opens an enourmous opportunity for improving a number of things like:
* when you get a build failure in your maven build - you should be able to just write yum install mvn(groupId:artifactId) and have the package ready. Who knows we might even find someone to create a PackageKit extension in the way bash command-not-found is acting?
* tools like RPMStubby will be able to generate proper BuildRequires section without guessing how did the distribution renamed the package
* use your imagination
There is a possibility to add similar support for the requires generation but lets first do all the fixes/simplification this one gives us.
Happy packaging to all Java and Maven packagers!!!