From 121b55eb0c055b12a272bf36bbf4dc8286375536 Mon Sep 17 00:00:00 2001 From: tiwai <> Date: Aug 24 2021 09:18:25 +0000 Subject: Update alevt to version 1.8.1 / rev 23 via SR 913857 https://build.opensuse.org/request/show/913857 by user tiwai + dimstar_suse --- diff --git a/.files b/.files index a989dc9..ddb4064 100644 Binary files a/.files and b/.files differ diff --git a/.rev b/.rev index ae31cce..e93f7ed 100644 --- a/.rev +++ b/.rev @@ -172,4 +172,12 @@ - Add use-pkgconfig.patch 886640 + + efc92bf273e236d86146c0804204a3f0 + 1.8.1 + + dimstar_suse + + 913857 + diff --git a/alevt-v1.8.0.tar.bz2 b/alevt-v1.8.0.tar.bz2 deleted file mode 120000 index f594e0a..0000000 --- a/alevt-v1.8.0.tar.bz2 +++ /dev/null @@ -1 +0,0 @@ -/ipfs/bafkreihy4mjq72jolwznite2yg5jfkodepotrgvo2cnucfszie6bli3zmu \ No newline at end of file diff --git a/alevt-v1.8.1.tar.bz2 b/alevt-v1.8.1.tar.bz2 new file mode 120000 index 0000000..5672604 --- /dev/null +++ b/alevt-v1.8.1.tar.bz2 @@ -0,0 +1 @@ +/ipfs/bafkreid6uaxp6kqlhe36qrtbmw2tnhocmvedubr7caatrc6vfw5yvrishq \ No newline at end of file diff --git a/alevt.changes b/alevt.changes index e30ad79..b61a055 100644 --- a/alevt.changes +++ b/alevt.changes @@ -1,4 +1,11 @@ ------------------------------------------------------------------- +Mon Aug 23 10:49:31 UTC 2021 - Ferdinand Thiessen + +- Update to 1.8.1 + * Some SI fixes + * Use pkg-config to find libraries, obsoletes use-pkgconfig.patch + +------------------------------------------------------------------- Mon Apr 19 10:16:55 UTC 2021 - Martin Pluskal - Fix previous changelog entry diff --git a/alevt.spec b/alevt.spec index d59c70d..329f61c 100644 --- a/alevt.spec +++ b/alevt.spec @@ -17,7 +17,7 @@ Name: alevt -Version: 1.8.0 +Version: 1.8.1 Release: 0 Summary: Teletext and Videotext Decoder for the BTTV Driver License: GPL-2.0-or-later @@ -25,8 +25,6 @@ Group: Hardware/TV URL: https://gitlab.com/alevt/alevt Source0: %{URL}/-/archive/v%{version}/alevt-v%{version}.tar.bz2 Source1: alevt.desktop -# PATCH-FEATURE-UPSTREAM use-pkgconfig.patch -- https://gitlab.com/alevt/alevt/-/issues/1 -Patch0: use-pkgconfig.patch BuildRequires: pkgconfig BuildRequires: update-desktop-files BuildRequires: pkgconfig(libpng) diff --git a/use-pkgconfig.patch b/use-pkgconfig.patch deleted file mode 100644 index 6c8d3e9..0000000 --- a/use-pkgconfig.patch +++ /dev/null @@ -1,39 +0,0 @@ -diff -Nur alevt-v1.8.0/Makefile new/Makefile ---- alevt-v1.8.0/Makefile 2019-04-02 22:12:06.000000000 +0200 -+++ new/Makefile 2021-04-17 19:40:45.296304899 +0200 -@@ -16,26 +16,30 @@ - - CFLAGS=$(OPT) -DVERSION=\"$(VER)\" $(DEFS) -I$(USR_X11R6)/include - -+PKGS="x11" -+ - EXPOBJS=export.o exp-txt.o exp-html.o exp-gfx.o font.o - OBJS=main.o ui.o xio.o fdset.o vbi.o cache.o help.o edline.o search.o edit.o misc.o hamm.o lang.o $(EXPOBJS) - TOBJS=alevt-date.o vbi.o fdset.o misc.o hamm.o lang.o - COBJS=alevt-cap.o vbi.o fdset.o misc.o hamm.o lang.o $(EXPOBJS) - - ifneq ($(findstring WITH_PNG,$(DEFS)),) --EXPLIBS=-lpng -+PKGS+="libpng" - endif - ifneq ($(findstring USE_LIBZVBI,$(DEFS)),) --ZVBILIB=-lzvbi -lpthread --EXPLIBS+=$(ZVBILIB) -+PKGS+="zvbi-0.2" - endif -+CFLAGS+=$(shell pkg-config --cflags $(PKGS)) -+EXPLIBS=$(shell pkg-config --libs $(PKGS)) -+ - - all: alevt alevt-date alevt-cap alevt.1x alevt-date.1 alevt-cap.1 - - alevt: $(OBJS) -- $(CC) $(OPT) $(OBJS) -o alevt -L$(USR_X11R6)/lib -L$(USR_X11R6)/lib64 -lX11 $(EXPLIBS) -+ $(CC) $(OPT) $(OBJS) -o alevt $(EXPLIBS) - - alevt-date: $(TOBJS) -- $(CC) $(OPT) $(TOBJS) -o alevt-date $(ZVBILIB) -+ $(CC) $(OPT) $(TOBJS) -o alevt-date $(EXPLIBS) - - alevt-cap: $(COBJS) - $(CC) $(OPT) $(COBJS) -o alevt-cap $(EXPLIBS)