<metapackage xmlns:os="http://opensuse.org/Standards/One_Click_Install" xmlns="http://opensuse.org/Standards/One_Click_Install">
  <group distversion="openSUSE Tumbleweed">
    <repositories>
      <repository recommended="true">
        <name>devel:kanku:perl</name>
        <summary>perl modules required for kanku</summary>
        <description>This project contains all the packages required for kanku by RPM based distributions </description>
        <url>https://download.opensuse.org/repositories/devel:/kanku:/perl/openSUSE_Factory_ARM/</url>
      </repository>
      <repository recommended="true">
        <name>openSUSE:Factory:ARM</name>
        <summary>openSUSE Factory ARM</summary>
        <description>This is a project clone to build entire openSUSE:Factory for the ARM architecture.
</description>
        <url>https://download.opensuse.org/repositories/openSUSE:/Factory:/ARM/standard/</url>
      </repository>
      <repository recommended="false">
        <name>openSUSE:Factory</name>
        <summary>The next openSUSE distribution</summary>
        <description>openSUSE Tumbleweed: The Bleeding Edge, Perfected.
Tumbleweed is the ultimate rolling release distribution, providing the latest software as it’s released, built upon a foundation of world-class stability and testing.

* Always Current: Get the newest kernel, IDEs, desktops, and applications automatically.

* Powerfully Stable: Experience the velocity of a rolling release without sacrificing the reliability you depend on.

* Engineered for Professionals: The top choice for Developers, Power Users, and openSUSE Contributors who need the best tools for the job.

If you demand the latest stable software, your choice is Tumbleweed.

Staging dashboard is located at: https://build.opensuse.org/staging_workflows/openSUSE:Factory 

List of known devel projects: https://build.opensuse.org/package/view_file/openSUSE:Factory:Staging/dashboard/devel_projects

Have a look at http://en.opensuse.org/Portal:Factory for more details.</description>
        <url>https://download.opensuse.org/repositories/openSUSE:/Factory/ports/</url>
      </repository>
    </repositories>
    <software>
      <item>
        <name>perl-PerlX-Maybe</name>
        <summary>Return a pair only if they are both defined</summary>
        <description>Moose classes (and some other classes) distinguish between an attribute
being unset and the attribute being set to undef. Supplying a constructor
arguments like this:

 my $bob = Person-&gt;new(
    name =&gt; $name,
    age =&gt; $age,
 );

Will result in the 'name' and 'age' attributes possibly being set to undef
(if the corresponding '$name' and '$age' variables are not defined), which
may violate the Person class' type constraints.

(Note: if you are the _author_ of the class in question, you can solve this
using MooseX::UndefTolerant. However, some of us are stuck using
non-UndefTolerant classes written by third parties.)

To ensure that the Person constructor does not try to set a name or age at
all when they are undefined, ugly looking code like this is often used:

 my $bob = Person-&gt;new(
    defined $name ? (name =&gt; $name) : (),
    defined $age ? (age =&gt; $age) : (),
 );

or:

 my $bob = Person-&gt;new(
    (name =&gt; $name) x!!(defined $name),
    (age  =&gt; $age)  x!!(defined $age),
 );

A slightly more elegant solution is the 'maybe' function.</description>
      </item>
    </software>
  </group>
</metapackage>
