diff --git a/.dbxtool.metadata b/.dbxtool.metadata new file mode 100644 index 0000000..b5676b7 --- /dev/null +++ b/.dbxtool.metadata @@ -0,0 +1 @@ +76e98c4e996be7b8f7c1320cc5e2bed99ec51879 SOURCES/dbxtool-7.tar.bz2 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f1555ef --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/dbxtool-7.tar.bz2 diff --git a/README.md b/README.md deleted file mode 100644 index 98f42b4..0000000 --- a/README.md +++ /dev/null @@ -1,4 +0,0 @@ -The master branch has no content - -Look at the c7 branch if you are working with CentOS-7, or the c4/c5/c6 branch for CentOS-4, 5 or 6 -If you find this file in a distro specific branch, it means that no content has been checked in yet diff --git a/SPECS/dbxtool.spec b/SPECS/dbxtool.spec new file mode 100644 index 0000000..92c8345 --- /dev/null +++ b/SPECS/dbxtool.spec @@ -0,0 +1,57 @@ +Name: dbxtool +Version: 7 +Release: 1%{?dist} +Summary: Secure Boot DBX updater +License: GPLv2 +URL: https://github.com/vathpela/dbxtool +ExclusiveArch: i386 x86_64 aarch64 +BuildRequires: popt-devel git systemd +BuildRequires: efivar-devel >= 26-1 +Requires: efivar >= 26-1 +Requires(post): systemd +Requires(preun):systemd +Source0: https://github.com/vathpela/dbxtool/releases/download/dbxtool-%{version}/dbxtool-%{version}.tar.bz2 + +%description +This package contains DBX updates for UEFI Secure Boot. + +%prep +%setup -q -n %{name}-%{version} +git init +git config user.email "%{name}-owner@fedoraproject.org" +git config user.name "Fedora Ninjas" +git add . +git commit -a -q -m "%{version} baseline." +git am %{patches} - 7-1 +- Initial import for RHEL + Resolves: rhbz#1078990