CINXE.COM

Packages in “lp2033007” : lp2033007 : Kevin Becker

<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr"> <head> <meta charset="UTF-8" /> <title>Packages in “lp2033007” : lp2033007 : Kevin Becker</title> <link rel="apple-touch-icon" sizes="180x180" href="/@@/apple-touch-icon.png?v=2022" /> <link rel="icon" type="image/png" sizes="32x32" href="/@@/favicon-32x32.png?v=2022" /> <link rel="icon" type="image/png" sizes="16x16" href="/@@/favicon-16x16.png?v=2022" /> <link rel="manifest" href="/@@/site.webmanifest?v=2022" /> <link rel="mask-icon" href="/@@/safari-pinned-tab.svg?v=2022" color="#e9531f" /> <link rel="shortcut icon" href="/@@/favicon.ico?v=2022" /> <meta name="msapplication-TileColor" content="#da532c" /> <meta name="msapplication-config" content="/@@/browserconfig.xml?v=2022" /> <meta name="theme-color" content="#ffffff" /> <link type="text/css" rel="stylesheet" media="screen, print" href="/+icing/revaa29ae0fff49e4e804b39147c9f259d2fb023199/combo.css" /> <meta name="description" content="LP Bug 2033007 Fixes for Kdump" /> <meta property="og:description" content="LP Bug 2033007 Fixes for Kdump" /> <meta property="og:title" content="Packages in “lp2033007” : lp2033007 : Kevin Becker" /> <meta property="og:type" content="website" /> <meta property="og:image" content="/@@/launchpad-og-image.png" /> <meta property="og:url" content="https://launchpad.net/~kevinbecker/+archive/ubuntu/lp2033007/+packages" /> <meta property="og:site_name" content="Launchpad" /> <script type="text/javascript"> var LP = { cache: {}, links: {} }; </script> <script type="text/javascript">var cookie_scope = '; Path=/; Secure; Domain=.launchpad.net';</script> <script type="text/javascript" src="/+combo/revaa29ae0fff49e4e804b39147c9f259d2fb023199/?yui/yui/yui-min.js&amp;lp/meta.js&amp;yui/loader/loader-min.js"></script> <script type="text/javascript"> var raw = null; if (LP.devmode) { raw = 'raw'; } YUI.GlobalConfig = { combine: true, comboBase: '/+combo/revaa29ae0fff49e4e804b39147c9f259d2fb023199/?', root: 'yui/', filter: raw, debug: false, fetchCSS: false, maxURLLength: 2000, groups: { lp: { combine: true, base: '/+combo/revaa29ae0fff49e4e804b39147c9f259d2fb023199/?lp/', comboBase: '/+combo/revaa29ae0fff49e4e804b39147c9f259d2fb023199/?', root: 'lp/', // comes from including lp/meta.js modules: LP_MODULES, fetchCSS: false } } }</script> <script type="text/javascript"> // we need this to create a single YUI instance all events and code // talks across. All instances of YUI().use should be based off of // LPJS instead. var LPJS = new YUI(); </script> <script id="base-layout-load-scripts" type="text/javascript"> //<![CDATA[ LPJS.use('base', 'node', 'console', 'event', 'oop', 'lp', 'lp.app.foldables','lp.app.sorttable', 'lp.app.inlinehelp', 'lp.app.links', 'lp.bugs.bugtask_index', 'lp.bugs.subscribers', 'lp.app.ellipsis', 'lp.code.branchmergeproposal.diff', 'lp.views.global', function(Y) { Y.on("domready", function () { var global_view = new Y.lp.views.Global(); global_view.render(); Y.lp.app.sorttable.SortTable.init(); Y.lp.app.inlinehelp.init_help(); Y.lp.activate_collapsibles(); Y.lp.app.foldables.activate(); Y.lp.app.links.check_valid_lp_links(); }); Y.on('lp:context:web_link:changed', function(e) { window.location = e.new_value; }); }); //]]> </script> <script id="base-helper-functions" type="text/javascript"> //<![CDATA[ // This code is pulled from lp.js that needs to be available on every // request. Pulling here to get it outside the scope of the YUI block. function setFocusByName(name) { // Focus the first element matching the given name which can be focused. var nodes = document.getElementsByName(name); var i, node; for (i = 0; i < nodes.length; i++) { node = nodes[i]; if (node.focus) { try { // Trying to focus a hidden element throws an error in IE8. if (node.offsetHeight !== 0) { node.focus(); } } catch (e) { LPJS.use('console', function(Y) { Y.log('In setFocusByName(<' + node.tagName + ' type=' + node.type + '>): ' + e); }); } break; } } } function selectWidget(widget_name, event) { if (event && (event.keyCode === 9 || event.keyCode === 13)) { // Avoid firing if user is tabbing through or simply pressing // enter to submit the form. return; } document.getElementById(widget_name).checked = true; } //]]> </script> <style type="text/css"> .failed {color: red; font-weight: bold;} .non-failed {color: green; font-weight: bold;} .copy-job-message { border-radius: 5px; background: url("/+icing/blue-fade-to-grey") repeat scroll 0 0 #D4E8FF; border-color: #666666; border-style: solid; border-width: 1px 2px 2px 1px; padding: 5px; width: 60em; } </style> <script type="text/javascript" id="repository-size-update"> LPJS.use('io-base', 'lp.anim', 'node', 'lp.soyuz.base', 'lp.soyuz.update_archive_build_statuses', function(Y) { /* * Update the page based on the XHR response. */ function doUpdate(transaction_id, response, args) { args.container.set('innerHTML', response.responseText); } /* * Communicate the update has failed and allow the user to retry * the operation. */ function informFailure(transaction_id, response, args) { function retry_handler (e) { e.preventDefault(); dispatchUpdate(); }; var failure_message = Y.lp.soyuz.base.makeFailureNode( 'Failed to fetch repository size ...', retry_handler); args.container.set('innerHTML', ''); args.container.appendChild(failure_message); var anim = Y.lp.anim.red_flash({ node: failure_message }); anim.run(); } /* * Communicate an update is in progress and fire the XHR. */ function dispatchUpdate () { var in_progress_message = Y.lp.soyuz.base.makeInProgressNode( 'Fetching repository size ...') var container = Y.one('#package-counters'); container.set('innerHTML', ''); container.appendChild(in_progress_message); var uri = '+repository-size'; var xhr_config = { on: { success: doUpdate, failure: informFailure }, arguments: { 'container': container } }; Y.io(uri, xhr_config); } Y.on("domready", dispatchUpdate); }); </script> <script type="text/javascript" id="repository-size-update"> LPJS.use('lp.soyuz.archive_packages', 'lp.app.widgets.expander.Expander', function(Y) { Y.on('domready', function() { Y.all('.pending-job').each(function(node) { var widget = new Y.lp.soyuz.archive_packages.PendingCopyJobWidget( {srcNode: node, archive_uri: LP.cache['context'].self_link }); widget.render(); var expander = new Y.lp.app.widgets.expander.Expander( node.one('.job-summary'), node.one('.job-details')); expander.setUp(); }); }); }); </script> <style type="text/css" media="screen, print"> tr#package-counters p{ margin-bottom: 3.4em; } </style> </head> <body id="document" itemscope="" itemtype="http://schema.org/WebPage" class="tab-overview main_only public yui3-skin-sam"> <div class="yui-d0"> <div id="locationbar" class="login-logout"> <div id="logincontrol"><a href="https://launchpad.net/~kevinbecker/+archive/ubuntu/lp2033007/+packages/+login">Log in / Register</a></div> </div><!--id="locationbar"--> <div id="watermark" class="watermark-apps-portlet"> <div> <a href="https://launchpad.net/~kevinbecker"><img alt="" width="64" height="64" src="/@@/person-logo" /></a> </div> <div class="wide"> <h2 id="watermark-heading"><a href="https://launchpad.net/~kevinbecker">Kevin Becker</a></h2> </div> <!-- Application Menu --> <ul class="facetmenu"> <li class="overview active"><a href="https://launchpad.net/~kevinbecker">Overview</a></li> <li class="branches"><a href="https://code.launchpad.net/~kevinbecker">Code</a></li> <li class="bugs"><a href="https://bugs.launchpad.net/~kevinbecker">Bugs</a></li> <li class="specifications"><a href="https://blueprints.launchpad.net/~kevinbecker">Blueprints</a></li> <li class="translations"><a href="https://translations.launchpad.net/~kevinbecker">Translations</a></li> <li class="answers"><a href="https://answers.launchpad.net/~kevinbecker">Answers</a></li> </ul> </div> <div id="maincontent" class="yui-main"> <div class="yui-b" dir="ltr"> <div class="context-publication"> <h1>Packages in “lp2033007”</h1> <ol itemprop="breadcrumb" class="breadcrumbs"> <li> <a href="https://launchpad.net/~kevinbecker/+archive/ubuntu/lp2033007">lp2033007</a> </li> <li> Packages in “lp2033007” </li> </ol> <div id="registration" class="registering"> </div> </div> <div id="request-notifications"> </div> <div class="archive"> <div class="top-portlet"> <div class="ppa-packaging-tmp-actions"></div> <br /> <p>This PPA currently publishes packages for Noble. </p> </div> <div class="yui-g"> <div class="first yui-u"><div class="portlet"> <h2>Package totals</h2> <p>The following information is related to the total published packages in the repository (not on your system).</p> <div id="package-counters"> <p> Package counters and estimated archive size temporarily unavailable. </p> </div> </div></div> <!-- portlet, yui-u --> <div class="yui-u"> <div id="build-status-summary" class="portlet"> <h2> <span class="see-all"><a class="menu-link-builds sprite info" href="https://launchpad.net/~kevinbecker/+archive/ubuntu/lp2033007/+builds">View all builds</a> </span> Package build summary </h2> <div id="build-count-summary"> <p>A total of <span class="build-count total">2</span> builds have been created for this PPA.</p> <dl> <dt>Completed builds</dt> <dd> <a href="https://launchpad.net/~kevinbecker/+archive/ubuntu/lp2033007/+builds?build_state=built"> <span class="build-count succeeded">2</span> successful</a></dd> <dd> <span class="build-count failed">0</span> failed</dd> </dl> </div> </div> </div> </div> <!-- yui-g --> <div class="portlet"> <h2>Packages</h2> <form class="package-search-filter" action="" method="GET"> <label for="name">Package name contains:</label> <input id="field.name_filter" title="Package Name" size="20" type="text" name="field.name_filter" /> <select id="field.status_filter" name="field.status_filter" size="1" > <option value="">Any status</option> <option selected="selected" value="published">Published</option> <option value="superseded">Superseded</option> </select> in <select id="field.series_filter" name="field.series_filter" size="1" > <option value="">Any series</option> <option value="noble">Noble</option> </select> <input type="submit" value="Filter" /> </form> <div style="padding-top: 1em;"> <table style="width: 100%;" class="upper-batch-nav"> <tbody> <tr> <td style="white-space: nowrap" class="batch-navigation-index"> <strong>1</strong> &rarr; <strong>1</strong> of 1 result </td> <td style="text-align: right; white-space: nowrap" class="batch-navigation-links"> <span class="first inactive">First</span> &bull; <span class="previous inactive">Previous</span> &bull; <span class="next inactive"><strong>Next</strong></span> &bull; <span class="last inactive">Last</span> </td> </tr> </tbody> </table> <table class="listing" id="packages_list"> <thead> <tr class="archive_package_row"> <th colspan="2">Source</th> <th>Published</th> <th>Status</th> <th>Series</th> <th>Section</th> <th>Build Status</th> </tr> </thead> <tbody> <tr class="archive_package_row superseded"> <td style="white-space: nowrap"> <a class="sprite expander" href="+sourcepub/16251383/+listing-archive-extra" id="pub16251383-expander"> <img src="/@@/package-source" /> linux - 6.8.0-38.38~kdumptest </a> (<a href="/ubuntu/+source/linux/6.8.0-54.56">Newer version</a> available) </td> <td> <a href="https://launchpad.net/~kevinbecker/+archive/ubuntu/lp2033007/+files/linux_6.8.0-38.38~kdumptest_source.changes" title="linux_6.8.0-38.38~kdumptest_source.changes">(changes file)</a> </td> <td><time title="2024-07-03 20:10:44 UTC" datetime="2024-07-03T20:10:44.733971+00:00">2024-07-03</time></td> <td>Published</td> <td>Noble</td> <td>Devel</td> <td class="build_status FULLYBUILT" id="pubstatus16251383"> <img alt="All builds were built successfully." src="/@@/yes" title="All builds were built successfully." /> </td> </tr> <tr id="pub16251383"> <td colspan="7" style="padding: 0px;"> <div class="package-details" id="pub16251383-container" /> </td> </tr> </tbody> </table> <table style="width: 100%;" class="lower-batch-nav"> <tbody> <tr> <td style="white-space: nowrap" class="batch-navigation-index"> <strong>1</strong> &rarr; <strong>1</strong> of 1 result </td> <td style="text-align: right; white-space: nowrap" class="batch-navigation-links"> <span class="first inactive">First</span> &bull; <span class="previous inactive">Previous</span> &bull; <span class="next inactive"><strong>Next</strong></span> &bull; <span class="last inactive">Last</span> </td> </tr> </tbody> </table> <script type="text/javascript"> LPJS.use('node', 'io-base', 'lp.anim', 'lp.soyuz.base', 'lp.app.widgets.expander', function(Y) { /* * Communicate the update has failed and allow the user to retry * the operation. */ function informFailure(transaction_id, response, args) { var failure_message = Y.lp.soyuz.base.makeFailureNode( 'Failed to fetch package details.'); args.expander.receive(failure_message); var anim = Y.lp.anim.red_flash({ node: args.expander.content_node }); anim.run(); } /* * Update the row with the XHR response. */ function doUpdate(transaction_id, response, args) { var node = Y.Node.create('<div />') .set('innerHTML', response.responseText); args.expander.receive(node); } /** * Dispatch a XHR to load the given container. */ function loadDetails(expander) { var config = { on: { 'success': doUpdate, 'failure': informFailure }, arguments: { 'expander': expander } }; Y.io(expander.icon_node.get('href'), config); } /** * Setup expander handlers. */ function setupPackageListExpanders() { var expanders = Y.all('#packages_list a.expander'); var widget; if (expanders !== null) { function setupExpander(expander) { var base_id = expander.get('id').replace('-expander', ''); var container = Y.one('#' + base_id); var content = container.one('td div.package-details'); var in_progress_message = Y.lp.soyuz.base.makeInProgressNode( 'Fetching package details ...'); content.empty(); content.appendChild(in_progress_message); widget = new Y.lp.app.widgets.expander.Expander( expander, container, { loader: loadDetails, animate_node: content }); widget.setUp(); }; expanders.each(setupExpander); } } Y.on('domready', setupPackageListExpanders); }); </script> <style type="text/css" media="screen, print"> div.package-details { padding-left: 4em; padding-bottom: 1em; } </style> </div> </div> <!-- portlet --> </div> </div><!-- yui-b --> </div><!-- yui-main --> <!-- yui-b side --> <!-- yui-t4 --> <div id="footer" class="footer"> <div class="lp-arcana"> <div class="lp-branding"> <a href="https://launchpad.net/"><img src="/@@/launchpad-footer-logo.svg" alt="Launchpad" width="65" height="18" /></a> &nbsp;&bull;&nbsp; <a href="https://launchpad.net/+tour">Take the tour</a> &nbsp;&bull;&nbsp; <a href="https://help.launchpad.net/">Read the guide</a> &nbsp; <form id="globalsearch" method="get" accept-charset="UTF-8" action="https://launchpad.net/+search"> <input type="search" id="search-text" name="field.text" /> <input type="image" src="/@@/search" style="vertical-align:5%" alt="Search Launchpad" /> </form> </div> </div> <div class="colophon"> &copy; 2004 <a href="http://canonical.com/">Canonical&nbsp;Ltd.</a> &nbsp;&bull;&nbsp; <a href="https://launchpad.net/legal">Terms of use</a> &nbsp;&bull;&nbsp; <a href="https://www.ubuntu.com/legal/dataprivacy">Data privacy</a> &nbsp;&bull;&nbsp; <a href="/feedback">Contact Launchpad Support</a> &nbsp;&bull;&nbsp; <a href="http://blog.launchpad.net/">Blog</a> &nbsp;&bull;&nbsp; <a href="https://canonical.com/careers">Careers</a> &nbsp;&bull;&nbsp; <a href="https://ubuntu.social/@launchpadstatus">System status</a> <span id="lp-version"> &nbsp;&bull;&nbsp; aa29ae0 (<a href="https://dev.launchpad.net/">Get the code!</a>) </span> </div> </div> </div><!-- yui-d0--> <script id="json-cache-script">LP.cache = {"related_features": {}, "context": {"self_link": "https://launchpad.net/api/devel/~kevinbecker/+archive/ubuntu/lp2033007", "web_link": "https://launchpad.net/~kevinbecker/+archive/ubuntu/lp2033007", "resource_type_link": "https://launchpad.net/api/devel/#archive", "owner_link": "https://launchpad.net/api/devel/~kevinbecker", "name": "lp2033007", "displayname": "lp2033007", "reference": "~kevinbecker/ubuntu/lp2033007", "distribution_link": "https://launchpad.net/api/devel/ubuntu", "private": false, "suppress_subscription_notifications": false, "dependencies_collection_link": "https://launchpad.net/api/devel/~kevinbecker/+archive/ubuntu/lp2033007/dependencies", "description": "LP Bug 2033007 Fixes for Kdump", "signing_key_fingerprint": "59AB4EE20A9AE89EE7E5F116C90307578AB0C6F6", "require_virtualized": true, "build_debug_symbols": false, "publish_debug_symbols": false, "permit_obsolete_series_uploads": false, "authorized_size": 8192, "status": "Active", "external_dependencies": null, "metadata_overrides": null, "processors_collection_link": "https://launchpad.net/api/devel/~kevinbecker/+archive/ubuntu/lp2033007/processors", "enabled_restricted_processors_collection_link": "https://launchpad.net/api/devel/~kevinbecker/+archive/ubuntu/lp2033007/enabled_restricted_processors", "publishing_method": "Local", "repository_format": "Debian", "publish": true, "relative_build_score": 0, "http_etag": "\"35932ff8d602fb150556d958e8d2fde0fc6a248a-51f050770f8ef707655f4af36a27e7c63d7259b3\""}};</script> </body> <!-- Facet name: overview Page type: main_only Has global search: True Has application tabs: True Has side portlets: False At least 27 queries/external actions issued in 0.45 seconds Features: {'profiling.enabled': None, 'hard_timeout': '9000 ', 'js.yui_version': None, 'app.mainsite_only.canonical_url': None, 'app.maintenance_message': None, 'baselayout.careers_link.disabled': None, 'visible_render_time': None} raa29ae0 --> </html>

Pages: 1 2 3 4 5 6 7 8 9 10