~ubuntu-branches/ubuntu/precise/virtinst/precise-updates

« back to all changes in this revision

Viewing changes to .pc/9005_ubuntu_precise.patch/virtinst/osdict.py

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2012-02-11 11:47:53 UTC
  • mfrom: (1.6.6 sid)
  • Revision ID: package-import@ubuntu.com-20120211114753-sq9f3xayrma8px2h
Tags: 0.600.1-1ubuntu1
* Merge from debian unstable. Remaining changes:
  - debian/patches/9003-fix-path-to-hvmloader-in-testsuite.patch: adjust
    testsuite for 0001-fix-path-to-hvmloader.patch and
    0002-Fix-path-to-pygrub.patch.
  - debian/patches/9004_ubuntu_fix_tree_support.patch: Fix tree detection
    for all ISO/HTTP source, to not longer fail with cobbler/koan.
  - debian/patches/9005_ubuntu_precise.patch: Add Ubuntu precise as a
    supported distro.
  - debian/{control,rules,pyversions}: Build using dh_python2, use
    debhelper v8 instead of cdbs; for some reason the package build an
    empty binary package when using dh_python2.
  - debian/control: added acl package to depends.
  - debian/control: added libvirt-bin to recommends

Show diffs side-by-side

added added

removed removed

Lines of Context:
364
364
        }
365
365
    },
366
366
 
 
367
    "opensuse11": {
 
368
        "label": "openSuse 11",
 
369
        "distro": "suse",
 
370
        "supported": True,
 
371
        "devices" : {
 
372
            DISK : VIRTIO_DISK,
 
373
            NET  : VIRTIO_NET,
 
374
        },
 
375
    },
 
376
    "opensuse12": {
 
377
        "label": "openSuse 12",
 
378
        "distro": "suse",
 
379
        "supported": True,
 
380
        "devices" : {
 
381
            DISK : VIRTIO_DISK,
 
382
            NET  : VIRTIO_NET,
 
383
        },
 
384
    },
 
385
 
367
386
    "sles10": {
368
387
        "label": "Suse Linux Enterprise Server",
369
388
        "distro": "suse",
407
426
        },
408
427
    },
409
428
 
 
429
    "mageia1": {
 
430
        "label": "Mageia 1 and later",
 
431
        "distro": "mageia",
 
432
        "supported": True,
 
433
        "devices" : {
 
434
            DISK : VIRTIO_DISK,
 
435
            NET  : VIRTIO_NET,
 
436
            INPUT: USB_TABLET,
 
437
        },
 
438
    },
 
439
 
 
440
 
410
441
    "debianetch": {
411
442
        "label": "Debian Etch",
412
443
        "distro": "debian",
433
464
            INPUT: USB_TABLET,
434
465
        }
435
466
    },
 
467
    "debianwheezy": {
 
468
        "label": "Debian Wheezy",
 
469
        "distro": "debian",
 
470
        "sortby": "debian7",
 
471
        "supported": True,
 
472
        "devices" : {
 
473
                   DISK : VIRTIO_DISK,
 
474
                   NET  : VIRTIO_NET,
 
475
                   INPUT: USB_TABLET,
 
476
        }
 
477
    },
436
478
 
437
479
    "ubuntuhardy": {
438
480
        "label": "Ubuntu 8.04 LTS (Hardy Heron)",