diff --git a/.fmf/version b/.fmf/version deleted file mode 100644 index d00491f..0000000 --- a/.fmf/version +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/libyaml.spec b/libyaml.spec index 5bf1f66..44720e2 100644 --- a/libyaml.spec +++ b/libyaml.spec @@ -6,10 +6,9 @@ Name: libyaml Version: 0.2.5 -Release: 17%{?dist} +Release: 14%{?dist} Summary: YAML 1.1 parser and emitter written in C -# SPDX License: MIT URL: https://github.com/yaml/libyaml Source0: https://github.com/yaml/libyaml/releases/download/%{version}/yaml-%{version}.tar.gz @@ -141,15 +140,6 @@ popd %changelog -* Thu Jul 24 2025 Fedora Release Engineering - 0.2.5-17 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild - -* Fri Jan 17 2025 Fedora Release Engineering - 0.2.5-16 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild - -* Thu Jul 18 2024 Fedora Release Engineering - 0.2.5-15 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild - * Thu Jan 25 2024 Fedora Release Engineering - 0.2.5-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild diff --git a/plan.fmf b/plan.fmf deleted file mode 100644 index e6427de..0000000 --- a/plan.fmf +++ /dev/null @@ -1,4 +0,0 @@ -discover: - how: fmf -execute: - how: tmt diff --git a/tests/smoke/main.fmf b/tests/smoke/main.fmf deleted file mode 100644 index 0331d09..0000000 --- a/tests/smoke/main.fmf +++ /dev/null @@ -1,12 +0,0 @@ -summary: Run examples -description: | - Runs simple examples which already caused problems while fixing CVE. - run-parser is taken from the source -component: - - libyaml -test: ./runtest.sh -framework: beakerlib -require: - - libyaml-devel - - gcc -duration: 5m diff --git a/tests/smoke/regression_1033990.yaml b/tests/smoke/regression_1033990.yaml deleted file mode 100644 index 6f25454..0000000 --- a/tests/smoke/regression_1033990.yaml +++ /dev/null @@ -1,4 +0,0 @@ -%YAML 1.1 ---- -{Backoff: 1} -... diff --git a/tests/smoke/regression_1063866.yaml b/tests/smoke/regression_1063866.yaml deleted file mode 100644 index 68f23a0..0000000 --- a/tests/smoke/regression_1063866.yaml +++ /dev/null @@ -1,6 +0,0 @@ -%YAML 1.1 ---- # Indented Block - name: John Smith - age: 33 ---- # Inline Block -{name: John Smith, age: 33} diff --git a/tests/smoke/run-parser.c b/tests/smoke/run-parser.c deleted file mode 100644 index 1303112..0000000 --- a/tests/smoke/run-parser.c +++ /dev/null @@ -1,63 +0,0 @@ -#include - -#include -#include - -#ifdef NDEBUG -#undef NDEBUG -#endif -#include - -int -main(int argc, char *argv[]) -{ - int number; - - if (argc < 2) { - printf("Usage: %s file1.yaml ...\n", argv[0]); - return 0; - } - - for (number = 1; number < argc; number ++) - { - FILE *file; - yaml_parser_t parser; - yaml_event_t event; - int done = 0; - int count = 0; - int error = 0; - - printf("[%d] Parsing '%s': ", number, argv[number]); - fflush(stdout); - - file = fopen(argv[number], "rb"); - assert(file); - - assert(yaml_parser_initialize(&parser)); - - yaml_parser_set_input_file(&parser, file); - - while (!done) - { - if (!yaml_parser_parse(&parser, &event)) { - error = 1; - break; - } - - done = (event.type == YAML_STREAM_END_EVENT); - - yaml_event_delete(&event); - - count ++; - } - - yaml_parser_delete(&parser); - - assert(!fclose(file)); - - printf("%s (%d events)\n", (error ? "FAILURE" : "SUCCESS"), count); - } - - return 0; -} - diff --git a/tests/smoke/runtest.sh b/tests/smoke/runtest.sh deleted file mode 100755 index e1540ed..0000000 --- a/tests/smoke/runtest.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/bash -# vim: dict=/usr/share/beakerlib/dictionary.vim cpt=.,w,b,u,t,i,k -# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -# -# runtest.sh of /CoreOS/libyaml/Sanity/smoke -# Description: What the test does -# Author: Lukas Zachar -# -# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -# -# Copyright (c) 2014 Red Hat, Inc. -# -# This copyrighted material is made available to anyone wishing -# to use, modify, copy, or redistribute it subject to the terms -# and conditions of the GNU General Public License version 2. -# -# This program is distributed in the hope that it will be -# useful, but WITHOUT ANY WARRANTY; without even the implied -# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR -# PURPOSE. See the GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public -# License along with this program; if not, write to the Free -# Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -# Boston, MA 02110-1301, USA. -# -# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -# Include Beaker environment -. /usr/share/beakerlib/beakerlib.sh || exit 1 - -rlJournalStart - rlPhaseStartTest - rlRun "gcc -O2 -Wall -W -g run-parser.c -lyaml -o run-parser" - rlRun "./run-parser regression_1063866.yaml" - rlRun "./run-parser regression_1033990.yaml" - rlPhaseEnd -rlJournalPrintText -rlJournalEnd