added my Recipes
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
From 588bb5cb248aaeaf0fea33084229c99ad1574291 Mon Sep 17 00:00:00 2001
|
||||
From: Khem Raj <raj.khem@gmail.com>
|
||||
Date: Wed, 7 Sep 2022 11:12:28 -0700
|
||||
Subject: [PATCH] Warn not error if xsltproc is not found
|
||||
|
||||
Upstream-Status: Inappropriate [oe-core specific]
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
---
|
||||
configure.ac | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/configure.ac b/configure.ac
|
||||
index 7659f41..537203e 100644
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -177,7 +177,7 @@ AC_SUBST([systemdunitdir], [$systemdunitdir])
|
||||
# package as xgettext, and we find them by PATH, so just check for the one.
|
||||
AC_PATH_PROG([XGETTEXT], [xsltproc], [no])
|
||||
if test "$XGETTEXT" = "no"; then
|
||||
- AC_MSG_ERROR([Please install gettext tools])
|
||||
+ AC_MSG_WARN([Please install gettext tools])
|
||||
fi
|
||||
|
||||
# ssh-add
|
||||
--
|
||||
2.37.3
|
||||
|
||||
@@ -0,0 +1,60 @@
|
||||
From 788aace494f79e8201b18ebcdf1592b5030c5295 Mon Sep 17 00:00:00 2001
|
||||
From: Adrian Freihofer <adrian.freihofer@siemens.com>
|
||||
Date: Wed, 4 Dec 2019 17:23:46 +0100
|
||||
Subject: [PATCH] remove tests dep on gobject-intro
|
||||
|
||||
Upstream-Status: Pending
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
---
|
||||
src/ws/Makefile-ws.am | 54 ---------------------------------------------------
|
||||
1 file changed, 54 deletions(-)
|
||||
|
||||
--- a/src/ws/Makefile-ws.am
|
||||
+++ b/src/ws/Makefile-ws.am
|
||||
@@ -58,46 +58,6 @@ pam_cockpit_cert_so_LDFLAGS = -shared
|
||||
pam_cockpit_cert_so_SOURCES = src/ws/pam_cockpit_cert.c
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
-# test-server: server for running the html/browser unit tests against
|
||||
-
|
||||
-check_PROGRAMS += test-server
|
||||
-
|
||||
-test_server_CPPFLAGS = $(libcockpit_ws_a_CPPFLAGS) $(TEST_CPP)
|
||||
-test_server_LDADD = $(libcockpit_ws_a_LIBS) $(TEST_LIBS)
|
||||
-
|
||||
-test_server_SOURCES = \
|
||||
- src/ws/mock-service.c \
|
||||
- src/ws/mock-service.h \
|
||||
- src/ws/test-server.c \
|
||||
- $(NULL)
|
||||
-
|
||||
-test_server_CPPFLAGS += -I$(top_builddir)/src/ws
|
||||
-nodist_test_server_SOURCES = $(GDBUS_CODEGEN_GENERATED)
|
||||
-
|
||||
-BUILT_SOURCES += $(GDBUS_CODEGEN_GENERATED)
|
||||
-CLEANFILES += $(GDBUS_CODEGEN_GENERATED)
|
||||
-GDBUS_CODEGEN_GENERATED = \
|
||||
- src/ws/mock-dbus-tests.h \
|
||||
- src/ws/mock-dbus-tests.c \
|
||||
- $(NULL)
|
||||
-
|
||||
-EXTRA_DIST += $(GDBUS_CODEGEN_XML)
|
||||
-GDBUS_CODEGEN_XML = $(srcdir)/src/ws/com.redhat.Cockpit.DBusTests.xml
|
||||
-
|
||||
-GDBUS_CODEGEN_INVOCATION = \
|
||||
- $(AM_V_GEN) gdbus-codegen \
|
||||
- --interface-prefix com.redhat.Cockpit.DBusTests \
|
||||
- --c-namespace Test \
|
||||
- --c-generate-object-manager \
|
||||
- $(NULL)
|
||||
-
|
||||
-src/ws/mock-dbus-tests.h: $(GDBUS_CODEGEN_XML)
|
||||
- $(GDBUS_CODEGEN_INVOCATION) --header --output $@ $<
|
||||
-
|
||||
-src/ws/mock-dbus-tests.c: $(GDBUS_CODEGEN_XML)
|
||||
- $(GDBUS_CODEGEN_INVOCATION) --body --output $@ $<
|
||||
-
|
||||
-# -----------------------------------------------------------------------------
|
||||
# Unit tests
|
||||
|
||||
check_SCRIPTS += src/ws/mock-cat-with-init
|
||||
@@ -0,0 +1,47 @@
|
||||
From 1edf0756bf4fd002f5b60cf2b86d4b97a00aff20 Mon Sep 17 00:00:00 2001
|
||||
From: Michael Haener <michael.haener@siemens.com>
|
||||
Date: Wed, 25 Mar 2020 08:32:07 +0100
|
||||
Subject: [PATCH] fix(makefile): use copy rule for unmodified files
|
||||
|
||||
Upstream-Status: Pending
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
---
|
||||
pkg/Makefile.am | 27 +++++++++++++++++++++++++++
|
||||
1 file changed, 27 insertions(+)
|
||||
|
||||
--- a/pkg/Makefile.am
|
||||
+++ b/pkg/Makefile.am
|
||||
@@ -7,6 +7,33 @@ TESTS += $(pkg_TESTS)
|
||||
%.metainfo.xml: %.metainfo.xml.in
|
||||
$(AM_V_GEN) mkdir -p $(dir $@) && msgfmt --xml -d $(top_srcdir)/po --template $< --output $@
|
||||
|
||||
+dist/playground/hammer.gif: pkg/playground/hammer.gif
|
||||
+ $(COPY_RULE)
|
||||
+
|
||||
+dist/sosreport/sosreport.png: pkg/sosreport/sosreport.png
|
||||
+ $(COPY_RULE)
|
||||
+
|
||||
+dist/apps/default.png: pkg/apps/default.png
|
||||
+ $(COPY_RULE)
|
||||
+
|
||||
+dist/storaged/images/storage-array.png: pkg/storaged/images/storage-array.png
|
||||
+ $(COPY_RULE)
|
||||
+
|
||||
+dist/storaged/images/storage-disk.png: pkg/storaged/images/storage-disk.png
|
||||
+ $(COPY_RULE)
|
||||
+
|
||||
+dist/shell/images/server-error.png: pkg/shell/images/server-error.png
|
||||
+ $(COPY_RULE)
|
||||
+
|
||||
+dist/shell/images/server-large.png: pkg/shell/images/server-large.png
|
||||
+ $(COPY_RULE)
|
||||
+
|
||||
+dist/shell/images/server-small.png: pkg/shell/images/server-small.png
|
||||
+ $(COPY_RULE)
|
||||
+
|
||||
+dist/shell/index.html: pkg/shell/index.html
|
||||
+ $(COPY_RULE)
|
||||
+
|
||||
metainfodir = ${datarootdir}/metainfo
|
||||
nodist_metainfo_DATA = \
|
||||
pkg/sosreport/org.cockpit-project.cockpit-sosreport.metainfo.xml \
|
||||
@@ -0,0 +1,8 @@
|
||||
#%PAM-1.0
|
||||
auth required pam_unix.so nullok
|
||||
|
||||
account required pam_unix.so
|
||||
|
||||
-session optional pam_systemd.so
|
||||
session required pam_unix.so
|
||||
session optional pam_keyinit.so force revoke
|
||||
Reference in New Issue
Block a user