[PATCH clr-bundles] desktop: make themes + extensions a soft dependency
by Simental Magana
Allow the user to remove 3rd party themes and extensions
in order to get a vanilla desktop experience.
This should be safe now that we have a format bump in the
middle.
Signed-off-by: Simental Magana, Marcos <marcos.simental.magana(a)intel.com >
---
bundles/desktop | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bundles/desktop b/bundles/desktop
index a2736354..bd4c7cb0 100644
--- a/bundles/desktop
+++ b/bundles/desktop
@@ -13,7 +13,7 @@ include(desktop-locales)
include(lib-imageformat)
# themes + extensions
-include(desktop-assets-extras)
+also-add(desktop-assets-extras)
# the UI should provide a basic sysadmin experience
include(openssl)
--
2.25.1
3 years
[PATCH clr-bundles] Add more packages to perl-extras
by Brett T. Warden
B::Debug
GD
Log::Dispatch::FileRotate
Object::Remote
Parse::Yapp
Proc::ProcessTable
Storable
String::ShellQuote
Test::Command
Test::Fork
YAML::PP
---
bundles/perl-extras | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/bundles/perl-extras b/bundles/perl-extras
index 013a6fcc..b6b15552 100644
--- a/bundles/perl-extras
+++ b/bundles/perl-extras
@@ -42,6 +42,7 @@ perl-Audio-Wav
perl-Authen-NTLM
perl-Authen-SASL
perl-B-COW
+perl-B-Debug
perl-B-Hooks-EndOfScope
perl-B-Hooks-OP-Check
perl-B-Keywords
@@ -291,6 +292,7 @@ perl-FreezeThaw
perl-Frontier-RPC
perl-Future
perl-Future-IO-ImplBase
+perl-GD
perl-GD-Barcode
perl-GIS-Distance
perl-GSSAPI
@@ -402,6 +404,7 @@ perl-Log-Any
perl-Log-Contextual
perl-Log-Dispatch
perl-Log-Dispatch-Array
+perl-Log-Dispatch-FileRotate
perl-Log-Log4perl
perl-Log-Message
perl-Log-Message-Simple
@@ -503,6 +506,7 @@ perl-Number-Format
perl-Number-Misc
perl-Number-WithError
perl-Object-Accessor
+perl-Object-Remote
perl-Object-Signature
perl-PDF-API2
perl-PDF-Table
@@ -531,6 +535,7 @@ perl-Params-ValidationCompiler
perl-Parse-EDID
perl-Parse-ExuberantCTags
perl-Parse-RecDescent
+perl-Parse-Yapp
perl-Path-Class
perl-Path-Tiny
perl-Pegex
@@ -553,6 +558,7 @@ perl-Pod-Spell
perl-Pod-Strip
perl-PostScript-File
perl-Proc-InvokeEditor
+perl-Proc-ProcessTable
perl-Proc-Wait3
perl-Protocol-OSC
perl-Quota
@@ -593,6 +599,7 @@ perl-Specio
perl-Spiffy
perl-Statistics-Basic
perl-Statistics-CaseResampling
+perl-Storable
perl-Stream-Buffered
perl-String-Approx
perl-String-CamelCase
@@ -600,6 +607,7 @@ perl-String-Escape
perl-String-Expand
perl-String-Format
perl-String-Random
+perl-String-ShellQuote
perl-String-Similarity
perl-String-Util
perl-Struct-Dumb
@@ -637,6 +645,7 @@ perl-Term-UI
perl-Test-Assertions
perl-Test-Base
perl-Test-CleanNamespaces
+perl-Test-Command
perl-Test-Compile
perl-Test-Deep
perl-Test-Differences
@@ -645,6 +654,7 @@ perl-Test-FailWarnings
perl-Test-Fatal
perl-Test-File
perl-Test-File-ShareDir-Dist
+perl-Test-Fork
perl-Test-Identity
perl-Test-Inter
perl-Test-LeakTrace
@@ -768,6 +778,7 @@ perl-XML-XPathEngine
perl-XString
perl-YAML
perl-YAML-LibYAML
+perl-YAML-PP
perl-YAML-Syck
perl-YAML-Tiny
perl-accessors
--
2.25.1
3 years
[PATCH e2fsprogs] e2fsprogs: fix build with gettext 0.20
by Ross Burton
gettext 0.20 introduced some incompatible changes that break e2fsprogs
as we autoreconf during the build.
Signed-off-by: Ross Burton <ross.burton(a)intel.com >
---
...-configure.ac-correct-AM_GNU_GETTEXT.patch | 59 +++++++++++++++++++
configure_misses | 3 +
e2fsprogs.spec | 10 ++--
release | 2 +-
series | 1 +
5 files changed, 69 insertions(+), 6 deletions(-)
create mode 100644 0001-configure.ac-correct-AM_GNU_GETTEXT.patch
diff --git a/0001-configure.ac-correct-AM_GNU_GETTEXT.patch b/0001-configure.ac-correct-AM_GNU_GETTEXT.patch
new file mode 100644
index 0000000..92ed2a2
--- /dev/null
+++ b/0001-configure.ac-correct-AM_GNU_GETTEXT.patch
@@ -0,0 +1,59 @@
+Apply some patches from OpenEmbedded to fix the e2fsprogs configure when
+autoreconfing against gettext 0.20:
+
+ERROR: Use of AM_GNU_GETTEXT without [external] argument is no longer supported.
+
+From f907fea9ea053d5433b5199ce74008664141f753 Mon Sep 17 00:00:00 2001
+From: Alexander Kanavin <alex.kanavin(a)gmail.com >
+Date: Tue, 19 Nov 2019 17:32:33 +0100
+Subject: [PATCH] configure.ac: correct AM_GNU_GETTEXT
+
+New version of gettext require the 'external' argument.
+
+Upstream-Status: Pending
+Signed-off-by: Alexander Kanavin <alex.kanavin(a)gmail.com >
+---
+ configure.ac | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/configure.ac b/configure.ac
+index cf03444..e4773a1 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -873,7 +873,7 @@ AC_SUBST(GETTEXT_PACKAGE)
+ AC_SUBST(PACKAGE)
+ AC_SUBST(VERSION)
+
+-AM_GNU_GETTEXT
++AM_GNU_GETTEXT([external])
+ dnl
+ dnl End of configuration options
+ dnl
+
+From d034239f05cfba849f6ad16eb3f1ea37efbe4f95 Mon Sep 17 00:00:00 2001
+From: Alexander Kanavin <alex.kanavin(a)gmail.com >
+Date: Tue, 19 Nov 2019 18:34:00 +0100
+Subject: [PATCH] intl: do not try to use gettext defines that no longer exist
+
+Newer version of gettext no longer define this in m4 files,
+so patch it out until e2fsprogs upstream sorts the situation.
+
+Upstream-Status: Inappropriate [hardcodes a choice]
+Signed-off-by: Alexander Kanavin <alex.kanavin(a)gmail.com >
+---
+ intl/Makefile.in | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/intl/Makefile.in b/intl/Makefile.in
+index e037e23c..89a876b8 100644
+--- a/intl/Makefile.in
++++ b/intl/Makefile.in
+@@ -175,7 +175,7 @@ libgnuintl.h.msvc-static libgnuintl.h.msvc-shared README.woe32 Makefile.msvc
+ DISTFILES.obsolete = xopen-msg.sed linux-msg.sed po2tbl.sed.in cat-compat.c \
+ COPYING.LIB-2 gettext.h libgettext.h plural-eval.c libgnuintl.h
+
+-all: all-(a)USE_INCLUDED_LIBINTL@
++all:
+ all-yes: libintl.$la libintl.h charset.alias ref-add.sed ref-del.sed
+ all-no: all-no-(a)BUILD_INCLUDED_LIBINTL@
+ all-no-yes: libgnuintl.$la
diff --git a/configure_misses b/configure_misses
index 115698e..1f209db 100644
--- a/configure_misses
+++ b/configure_misses
@@ -1,3 +1,5 @@
+Configure miss: 32-bit host C ABI
+Configure miss: CFLocaleCopyPreferredLanguages
Configure miss: attr/xattr.h usability
Configure miss: attr/xattr.h presence
Configure miss: attr/xattr.h
@@ -9,6 +11,7 @@ Configure miss: keyctl
Configure miss: llseek
Configure miss: fuse.h
Configure miss: system crontab dir
+Configure miss: CFLocaleCopyPreferredLanguages
Configure miss: attr/xattr.h usability
Configure miss: attr/xattr.h presence
Configure miss: attr/xattr.h
diff --git a/e2fsprogs.spec b/e2fsprogs.spec
index 0cdb689..22063f9 100644
--- a/e2fsprogs.spec
+++ b/e2fsprogs.spec
@@ -54,6 +54,7 @@ BuildRequires : util-linux-dev
BuildRequires : util-linux-dev32
Patch1: stateless.patch
Patch2: build.patch
+Patch3: 0001-configure.ac-correct-AM_GNU_GETTEXT.patch
%description
The e2fsprogs package contains a number of utilities for creating,
@@ -202,6 +202,7 @@ services components for the e2fsprogs package.
cd %{_builddir}/e2fsprogs-1.45.5
%patch1 -p1
%patch2 -p1
+%patch3 -p1
pushd ..
cp -a e2fsprogs-1.45.5 build32
popd
diff --git a/series b/series
index 0522eff..55e133b 100644
--- a/series
+++ b/series
@@ -1,3 +1,4 @@
stateless.patch
#0001-Skip-certain-tests-due-to-failure-on-XFS-build-hosts.patch
build.patch
+0001-configure.ac-correct-AM_GNU_GETTEXT.patch
--
2.25.1
3 years
[PATCH libgnomekbd] libgnomekbd: use upstream tarball and fix build failure with new gettext
by Ross Burton
Use the official tarball on download.gnome.org instead of a git
snapshot. This has several benefits:
* doesn't need to autogen, which is failing now that gettext 0.20 is
part of Clear
* build-depends on buildreq-gnome instead of buildreq-qmake
Signed-off-by: Ross Burton <ross.burton(a)intel.com >
---
.gitignore | 6 ++++++
Makefile | 2 +-
libgnomekbd.spec | 29 ++++++++++++++++++-----------
options.conf | 6 ++++--
release | 2 +-
upstream | 2 +-
used_libs | 1 +
versions | 1 +
8 files changed, 33 insertions(+), 16 deletions(-)
create mode 100644 versions
diff --git a/libgnomekbd.spec b/libgnomekbd.spec
index a81bb31..d2ff847 100644
--- a/libgnomekbd.spec
+++ b/libgnomekbd.spec
@@ -15,7 +15,7 @@ Requires: libgnomekbd-data = %{version}-%{release}
Requires: libgnomekbd-lib = %{version}-%{release}
Requires: libgnomekbd-license = %{version}-%{release}
Requires: libgnomekbd-locales = %{version}-%{release}
-BuildRequires : buildreq-qmake
+BuildRequires : buildreq-gnome
BuildRequires : gettext
BuildRequires : glibc-bin
BuildRequires : gobject-introspection-dev
@@ -54,6 +54,7 @@ Requires: libgnomekbd-lib = %{version}-%{release}
Requires: libgnomekbd-bin = %{version}-%{release}
Requires: libgnomekbd-data = %{version}-%{release}
Provides: libgnomekbd-devel = %{version}-%{release}
+Requires: libgnomekbd = %{version}-%{release}
%description dev
dev components for the libgnomekbd package.
@@ -87,28 +88,34 @@ locales components for the libgnomekbd package.
%prep
%setup -q -n libgnomekbd-3.26.1
%build
export http_proxy=http://127.0.0.1:9/
export https_proxy=http://127.0.0.1:9/
export no_proxy=localhost,127.0.0.1,0.0.0.0
-%autogen --disable-static
+export CFLAGS="$CFLAGS -fno-lto "
+export FCFLAGS="$CFLAGS -fno-lto "
+export FFLAGS="$CFLAGS -fno-lto "
+export CXXFLAGS="$CXXFLAGS -fno-lto "
+%configure --disable-static
make %{?_smp_mflags}
%check
export http_proxy=http://127.0.0.1:9/
export https_proxy=http://127.0.0.1:9/
export no_proxy=localhost,127.0.0.1,0.0.0.0
make VERBOSE=1 V=1 %{?_smp_mflags} check
%install
rm -rf %{buildroot}
mkdir -p %{buildroot}/usr/share/package-licenses/libgnomekbd
-cp COPYING.LIB %{buildroot}/usr/share/package-licenses/libgnomekbd/COPYING.LIB
+cp %{_builddir}/libgnomekbd-3.26.1/COPYING.LIB %{buildroot}/usr/share/package-licenses/libgnomekbd/b256632dcce76559734ff0a23330d2898b7d3a3b
%make_install
%find_lang libgnomekbd
@@ -157,7 +164,7 @@ cp COPYING.LIB %{buildroot}/usr/share/package-licenses/libgnomekbd/COPYING.LIB
%files license
%defattr(0644,root,root,0755)
-/usr/share/package-licenses/libgnomekbd/COPYING.LIB
+/usr/share/package-licenses/libgnomekbd/b256632dcce76559734ff0a23330d2898b7d3a3b
%files locales -f libgnomekbd.lang
%defattr(-,root,root,-)
diff --git a/options.conf b/options.conf
index 5176861..9ed6722 100644
--- a/options.conf
+++ b/options.conf
@@ -1,6 +1,6 @@
[package]
name = libgnomekbd
-url = https://github.com/GNOME/libgnomekbd/archive/3.26.1.tar.gz
+url = https://download.gnome.org/sources/libgnomekbd/3.26/libgnomekbd-3.26.1.tar.…
archives =
giturl = https://github.com/GNOME/libgnomekbd.git
domain = GNOME
diff --git a/used_libs b/used_libs
index 4d1d07d..6017cfa 100644
--- a/used_libs
+++ b/used_libs
@@ -9,6 +9,7 @@ libgio-2.0.so.0
libglib-2.0.so.0
libgobject-2.0.so.0
libgtk-3.so.0
+libharfbuzz.so.0
libm.so.6
libpango-1.0.so.0
libpangocairo-1.0.so.0
3 years
[PATCH libgnomekbd] libgnomekbd: use upstream tarball and fix build failure with new gettext
by Ross Burton
Use the official tarball on download.gnome.org instead of a git
snapshot. This has several benefits:
* doesn't need to autogen, which is failing now that gettext 0.20 is
part of Clear
* build-depends on buildreq-gnome instead of buildreq-qmake
Signed-off-by: Ross Burton <ross.burton(a)intel.com >
---
.gitignore | 6 ++++++
Makefile | 2 +-
libgnomekbd.spec | 29 ++++++++++++++++++-----------
options.conf | 6 ++++--
release | 2 +-
upstream | 2 +-
used_libs | 1 +
versions | 1 +
8 files changed, 33 insertions(+), 16 deletions(-)
create mode 100644 versions
diff --git a/libgnomekbd.spec b/libgnomekbd.spec
index a81bb31..d2ff847 100644
--- a/libgnomekbd.spec
+++ b/libgnomekbd.spec
@@ -15,7 +15,7 @@ Requires: libgnomekbd-data = %{version}-%{release}
Requires: libgnomekbd-lib = %{version}-%{release}
Requires: libgnomekbd-license = %{version}-%{release}
Requires: libgnomekbd-locales = %{version}-%{release}
-BuildRequires : buildreq-qmake
+BuildRequires : buildreq-gnome
BuildRequires : gettext
BuildRequires : glibc-bin
BuildRequires : gobject-introspection-dev
@@ -54,6 +54,7 @@ Requires: libgnomekbd-lib = %{version}-%{release}
Requires: libgnomekbd-bin = %{version}-%{release}
Requires: libgnomekbd-data = %{version}-%{release}
Provides: libgnomekbd-devel = %{version}-%{release}
+Requires: libgnomekbd = %{version}-%{release}
%description dev
dev components for the libgnomekbd package.
@@ -87,28 +88,34 @@ locales components for the libgnomekbd package.
%prep
%setup -q -n libgnomekbd-3.26.1
%build
export http_proxy=http://127.0.0.1:9/
export https_proxy=http://127.0.0.1:9/
export no_proxy=localhost,127.0.0.1,0.0.0.0
-%autogen --disable-static
+export CFLAGS="$CFLAGS -fno-lto "
+export FCFLAGS="$CFLAGS -fno-lto "
+export FFLAGS="$CFLAGS -fno-lto "
+export CXXFLAGS="$CXXFLAGS -fno-lto "
+%configure --disable-static
make %{?_smp_mflags}
%check
export http_proxy=http://127.0.0.1:9/
export https_proxy=http://127.0.0.1:9/
export no_proxy=localhost,127.0.0.1,0.0.0.0
make VERBOSE=1 V=1 %{?_smp_mflags} check
%install
rm -rf %{buildroot}
mkdir -p %{buildroot}/usr/share/package-licenses/libgnomekbd
-cp COPYING.LIB %{buildroot}/usr/share/package-licenses/libgnomekbd/COPYING.LIB
+cp %{_builddir}/libgnomekbd-3.26.1/COPYING.LIB %{buildroot}/usr/share/package-licenses/libgnomekbd/b256632dcce76559734ff0a23330d2898b7d3a3b
%make_install
%find_lang libgnomekbd
@@ -157,7 +164,7 @@ cp COPYING.LIB %{buildroot}/usr/share/package-licenses/libgnomekbd/COPYING.LIB
%files license
%defattr(0644,root,root,0755)
-/usr/share/package-licenses/libgnomekbd/COPYING.LIB
+/usr/share/package-licenses/libgnomekbd/b256632dcce76559734ff0a23330d2898b7d3a3b
%files locales -f libgnomekbd.lang
%defattr(-,root,root,-)
diff --git a/options.conf b/options.conf
index 5176861..9ed6722 100644
--- a/options.conf
+++ b/options.conf
@@ -1,6 +1,6 @@
[package]
name = libgnomekbd
-url = https://github.com/GNOME/libgnomekbd/archive/3.26.1.tar.gz
+url = https://download.gnome.org/sources/libgnomekbd/3.26/libgnomekbd-3.26.1.tar.…
archives =
giturl = https://github.com/GNOME/libgnomekbd.git
domain = GNOME
diff --git a/used_libs b/used_libs
index 4d1d07d..6017cfa 100644
--- a/used_libs
+++ b/used_libs
@@ -9,6 +9,7 @@ libgio-2.0.so.0
libglib-2.0.so.0
libgobject-2.0.so.0
libgtk-3.so.0
+libharfbuzz.so.0
libm.so.6
libpango-1.0.so.0
libpangocairo-1.0.so.0
3 years
[PATCH glibc] Stop putting things in sbin paths
by William Douglas
/usr/sbin and /sbin are symlinks to /usr/bin so put files there
directly to avoid confusing metadata.
---
glibc.spec | 22 +++++++++++++++-------
release | 2 +-
2 files changed, 16 insertions(+), 8 deletions(-)
diff --git a/glibc.spec b/glibc.spec
index 6952aaa..81995e0 100644
--- a/glibc.spec
+++ b/glibc.spec
@@ -3,7 +3,7 @@
Name: glibc
Version: 2.31
-Release: 313
+Release: 314
License: GPL-2.0
Summary: GNU C library
Url: http://www.gnu.org/software/libc/libc.html
@@ -515,6 +515,14 @@ ln -s ../lib32/ld-linux.so.2 %{buildroot}/usr/lib/ld-linux.so.2
# for oracle db installer (compat link)
ln -sf libpthread.a %{buildroot}/usr/lib64/libpthread_nonshared.a
+# Get things out of /sbin and /usr/sbin
+mv %{buildroot}/sbin/sln %{buildroot}/usr/bin/sln
+mv %{buildroot}/sbin/ldconfig %{buildroot}/usr/bin/ldconfig
+mv %{buildroot}/usr/sbin/nscd %{buildroot}/usr/bin/nscd
+mv %{buildroot}/usr/sbin/iconvconfig %{buildroot}/usr/bin/iconvconfig
+mv %{buildroot}/usr/sbin/zdump %{buildroot}/usr/bin/zdump
+mv %{buildroot}/usr/sbin/zic %{buildroot}/usr/bin/zic
+
%check
pushd ../glibc-buildroot
@@ -523,10 +531,10 @@ popd
%files bin
/usr/bin/catchsegv
-/sbin/sln
+/usr/bin/sln
%files nscd
-/usr/sbin/nscd
+/usr/bin/nscd
%files utils
%exclude /usr/bin/mtrace
@@ -543,9 +551,9 @@ popd
/usr/bin/sprof
/usr/bin/tzselect
/usr/bin/xtrace
-/usr/sbin/iconvconfig
-/usr/sbin/zdump
-/usr/sbin/zic
+/usr/bin/iconvconfig
+/usr/bin/zdump
+/usr/bin/zic
%files bench
/usr/bin/bench-*
@@ -724,7 +732,7 @@ popd
/usr/lib64/haswell/libm-2.31.so
/usr/lib64/haswell/libm.so.6
-/sbin/ldconfig
+/usr/bin/ldconfig
%exclude /var/cache/ldconfig
%files lib-avx2
diff --git a/release b/release
index 5478c71..9346fab 100644
--- a/release
+++ b/release
@@ -1 +1 @@
-313
+314
--
2.25.1
3 years
[PATCH xrandr v2] xrandr: remove xkeystone
by Ross Burton
This needs the Nickle scripting language, which we don't package.
Closes #1034
---
excludes | 1 +
release | 2 +-
xrandr.spec | 9 +++++----
3 files changed, 7 insertions(+), 5 deletions(-)
diff --git a/excludes b/excludes
index f075ede..32b2a1a 100644
--- a/excludes
+++ b/excludes
@@ -1,2 +1,3 @@
# This file contains the output files that need %exclude. Full path
# names, one per line.
+/usr/bin/xkeystone
diff --git a/release b/release
index 45a4fb7..ec63514 100644
--- a/release
+++ b/release
@@ -1 +1 @@
-8
+9
diff --git a/xrandr.spec b/xrandr.spec
index 8b37bf4..767b8f7 100644
--- a/xrandr.spec
+++ b/xrandr.spec
@@ -6,7 +6,7 @@
#
Name : xrandr
Version : 1.5.1
-Release : 8
+Release : 9
URL : http://xorg.freedesktop.org/releases/individual/app/xrandr-1.5.1.tar.gz
Source0 : http://xorg.freedesktop.org/releases/individual/app/xrandr-1.5.1.tar.gz
Source1 : http://xorg.freedesktop.org/releases/individual/app/xrandr-1.5.1.tar.gz.sig
@@ -60,7 +60,7 @@ export http_proxy=http://127.0.0.1:9/
export https_proxy=http://127.0.0.1:9/
export no_proxy=localhost,127.0.0.1,0.0.0.0
export LANG=C.UTF-8
-export SOURCE_DATE_EPOCH=1579286116
+export SOURCE_DATE_EPOCH=1583335273
export GCC_IGNORE_WERROR=1
export CFLAGS="$CFLAGS -fno-lto "
export FCFLAGS="$CFLAGS -fno-lto "
@@ -77,18 +77,19 @@ export no_proxy=localhost,127.0.0.1,0.0.0.0
make VERBOSE=1 V=1 %{?_smp_mflags} check
%install
-export SOURCE_DATE_EPOCH=1579286116
+export SOURCE_DATE_EPOCH=1583335273
rm -rf %{buildroot}
mkdir -p %{buildroot}/usr/share/package-licenses/xrandr
cp %{_builddir}/xrandr-1.5.1/COPYING %{buildroot}/usr/share/package-licenses/xrandr/b55b6493b790dc1291794a6b4f04064ce06bf435
%make_install
+## Remove excluded files
+rm -f %{buildroot}/usr/bin/xkeystone
%files
%defattr(-,root,root,-)
%files bin
%defattr(-,root,root,-)
-/usr/bin/xkeystone
/usr/bin/xrandr
%files license
--
2.25.1
3 years
[PATCH xrandr] xrandr: remove xkeystone
by Ross Burton
This needs the Nickle scripting language, which we don't package.
Closes #1034
---
install_append | 2 ++
release | 2 +-
xrandr.spec | 11 +++++++----
3 files changed, 10 insertions(+), 5 deletions(-)
create mode 100644 install_append
diff --git a/install_append b/install_append
new file mode 100644
index 0000000..e771e14
--- /dev/null
+++ b/install_append
@@ -0,0 +1,2 @@
+# This is a Nickle script and we don't package Nickle
+rm -f %{buildroot}/usr/bin/xkeystone
diff --git a/xrandr.spec b/xrandr.spec
index 8b37bf4..9c694b6 100644
--- a/xrandr.spec
+++ b/xrandr.spec
@@ -77,18 +77,21 @@ export no_proxy=localhost,127.0.0.1,0.0.0.0
make VERBOSE=1 V=1 %{?_smp_mflags} check
%install
rm -rf %{buildroot}
mkdir -p %{buildroot}/usr/share/package-licenses/xrandr
cp %{_builddir}/xrandr-1.5.1/COPYING %{buildroot}/usr/share/package-licenses/xrandr/b55b6493b790dc1291794a6b4f04064ce06bf435
%make_install
+## install_append content
+# This is a Nickle script and we don't package Nickle
+rm -f %{buildroot}/usr/bin/xkeystone
+## install_append end
%files
%defattr(-,root,root,-)
%files bin
%defattr(-,root,root,-)
-/usr/bin/xkeystone
/usr/bin/xrandr
%files license
--
2.25.1
3 years
about secure boot support
by Chen
Hi, there
May I know if clearlinux already supported secure boot based on EFI FW? If yes, what's the whole mechanism, it's Microsoft-style (using db/dbx) or Ubuntu-style (using shim), any online document or wiki talk about it?
Thanks & Best Regards,
Jason Chen
3 years
About secure boot support
by Chen
Hi, there
May I know if clearlinux already supported secure boot based on EFI FW? If yes, what's the whole mechanism, it's Microsoft-style (using db/dbx) or Ubuntu-style (using shim), any online document or wiki talk about it?
Thanks & Best Regards,
Jason Chen
SSP -> Intel ACRN Hypervisor Team
No. 880 Zi Xing Road,
Zizhu Science Park,
Minhang, SH 200241
[chart_small]
3 years