From bb4bfeb360017e52fd56d999d7c519de86678701 Mon Sep 17 00:00:00 2001 From: Adam Samalik Date: Wed, 21 Jun 2023 14:54:15 +0200 Subject: [PATCH] import sources --- gating.yaml | 6 ++++++ ucpp-rpm.patch | 39 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 45 insertions(+) create mode 100644 gating.yaml create mode 100644 ucpp-rpm.patch diff --git a/gating.yaml b/gating.yaml new file mode 100644 index 0000000..ea86f9d --- /dev/null +++ b/gating.yaml @@ -0,0 +1,6 @@ +--- !Policy +product_versions: + - rhel-8 +decision_context: osci_compose_gate +rules: + - !PassingTestCaseRule {test_case_name: desktop-qe.desktop-ci.tier1-gating.functional} diff --git a/ucpp-rpm.patch b/ucpp-rpm.patch new file mode 100644 index 0000000..9b9d90a --- /dev/null +++ b/ucpp-rpm.patch @@ -0,0 +1,39 @@ +diff -up ucpp/Makefile.r ucpp/Makefile +--- ucpp/Makefile.r 2011-08-09 07:13:15.000000000 +0200 ++++ ucpp/Makefile 2013-05-02 01:36:23.659241707 +0200 +@@ -91,25 +91,25 @@ COBJ = mem.o nhash.o cpp.o lexer.o asser + CFLAGS = $(FLAGS) + + all: ucpp +- @ar cq libucpp.a *.o ++ ar cq libucpp.a *.o + + clean: +- @rm -f *.o ucpp core *.a ++ rm -f *.o ucpp core *.a + + ucpp: $(COBJ) +- @$(FINAL_STEP) ++ $(FINAL_STEP) + + assert.o: tune.h ucppi.h cpp.h nhash.h mem.h +- @$(CC) $(CFLAGS) -c assert.c ++ $(CC) $(CFLAGS) -c assert.c + cpp.o: tune.h ucppi.h cpp.h nhash.h mem.h +- @$(CC) $(CFLAGS) -c cpp.c ++ $(CC) $(CFLAGS) -c cpp.c + eval.o: tune.h ucppi.h cpp.h nhash.h mem.h arith.c arith.h +- @$(CC) $(CFLAGS) -c eval.c ++ $(CC) $(CFLAGS) -c eval.c + lexer.o: tune.h ucppi.h cpp.h nhash.h mem.h +- @$(CC) $(CFLAGS) -c lexer.c ++ $(CC) $(CFLAGS) -c lexer.c + macro.o: tune.h ucppi.h cpp.h nhash.h mem.h +- @$(CC) $(CFLAGS) -c macro.c ++ $(CC) $(CFLAGS) -c macro.c + mem.o: mem.h +- @$(CC) $(CFLAGS) -c mem.c ++ $(CC) $(CFLAGS) -c mem.c + nhash.o: nhash.h mem.h +- @$(CC) $(CFLAGS) -c nhash.c ++ $(CC) $(CFLAGS) -c nhash.c