This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
aalib | http://aa-project.sourceforge.net/aalib/ | |
---|---|---|
abseil | https://abseil.io/ | |
accountsservice | https://www.freedesktop.org/wiki/Software/AccountsService/ | |
acct | https://www.gnu.org/software/acct/ | |
acl | https://savannah.nongnu.org/projects/acl/ | |
acpid | http://sourceforge.net/projects/acpid2/ | |
adcli | https://www.freedesktop.org/software/realmd/ | |
adsys | https://github.com/ubuntu/adsys | |
advancecomp | http://www.advancemame.it/ | |
aide | https://aide.github.io |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2048-qt/0.1.6-2build4 | |
abgate/1.2.0-2build3 | |
acct/6.6.4-5build1 | |
acl/2.3.2-1build1 | |
acpid/1:2.0.34-1ubuntu2 | |
adcli/0.9.2-1ubuntu2 | |
advancecomp/2.5-1build1 | |
amd64-microcode/3.20231019.1ubuntu2 | |
anacron/2.3-39ubuntu2 | |
apertium-lex-tools/0.4.2-2build3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import datetime | |
import sqlite3 | |
import urllib.request | |
import json | |
import sys | |
pending = set() | |
with urllib.request.urlopen( | |
"https://autopkgtest.ubuntu.com/queued.json" | |
) as queued_json: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# coding: utf-8 | |
import argparse | |
import apt_pkg | |
import urllib.request | |
import urllib.parse | |
import itertools | |
import glob | |
import json | |
import os | |
import sys |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Description: Require 3072 bits for RSA keys if HACK_REQUIRE_3072R | |
If the environment variable is set, require 3072 bit RSA keys. | |
Author: Julian Andres Klode <[email protected]> | |
Forwarded: no | |
--- a/g10/sig-check.c | |
+++ b/g10/sig-check.c | |
@@ -515,6 +515,27 @@ check_signature_end_simple (PKT_public_k | |
return rc; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/sbat.c b/sbat.c | |
index b9f228b..408bb1a 100644 | |
--- a/sbat.c | |
+++ b/sbat.c | |
@@ -183,6 +183,10 @@ verify_sbat_helper(list_t *local_sbat_var, size_t n, struct sbat_section_entry * | |
list_t *pos = NULL; | |
EFI_STATUS efi_status = EFI_SUCCESS; | |
struct sbat_var_entry *sbat_var_entry; | |
+ struct sbat_var_entry temporary_grub_sbat_entry = { | |
+ "grub", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/sbat.c b/sbat.c | |
index b9f228b..408bb1a 100644 | |
--- a/sbat.c | |
+++ b/sbat.c | |
@@ -183,6 +183,10 @@ verify_sbat_helper(list_t *local_sbat_var, size_t n, struct sbat_section_entry * | |
list_t *pos = NULL; | |
EFI_STATUS efi_status = EFI_SUCCESS; | |
struct sbat_var_entry *sbat_var_entry; | |
+ struct sbat_var_entry temporary_grub_sbat_entry = { | |
+ "grub", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From 258fafeb3fb0317ab3b65b01737291d858487441 Mon Sep 17 00:00:00 2001 | |
From: Julian Andres Klode <[email protected]> | |
Date: Mon, 15 Jan 2024 11:48:04 +0100 | |
Subject: [PATCH] recovery fixup | |
--- | |
util/grub.d/10_linux.in | 11 +++++------ | |
1 file changed, 5 insertions(+), 6 deletions(-) | |
diff --git a/util/grub.d/10_linux.in b/util/grub.d/10_linux.in |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
blueprint: | |
domain: automation | |
name: Controlling lights using Philips Hue Dimmer Switch (RWL021) | |
description: Take the swith fast into use with pre-set configuration. | |
input: | |
zha_device: | |
name: Philips Hue Dimmer Switch (RWL021 only) | |
description: The swith to be taken into use. | |
selector: | |
device: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
import email | |
import sys | |
import base64 | |
preserve=["from", "subject", "date"] | |
msg = email.message_from_file(sys.stdin) |