From 8609f42975acf89dc90fcfa81f85cb6bd4a57963 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Fri, 10 Apr 2009 22:04:48 +0000 Subject: [PATCH 01/52] Setup of module libkate --- .cvsignore | 0 Makefile | 21 +++++++++++++++++++++ sources | 0 3 files changed, 21 insertions(+) create mode 100644 .cvsignore create mode 100644 Makefile create mode 100644 sources diff --git a/.cvsignore b/.cvsignore new file mode 100644 index 0000000..e69de29 diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..dfe500b --- /dev/null +++ b/Makefile @@ -0,0 +1,21 @@ +# Makefile for source rpm: libkate +# $Id$ +NAME := libkate +SPECFILE = $(firstword $(wildcard *.spec)) + +define find-makefile-common +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +endef + +MAKEFILE_COMMON := $(shell $(find-makefile-common)) + +ifeq ($(MAKEFILE_COMMON),) +# attept a checkout +define checkout-makefile-common +test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 +endef + +MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) +endif + +include $(MAKEFILE_COMMON) diff --git a/sources b/sources new file mode 100644 index 0000000..e69de29 From 227f0c44446344ac24cdc79144876cca3abeb818 Mon Sep 17 00:00:00 2001 From: Nicolas Chauvet Date: Fri, 10 Apr 2009 23:05:40 +0000 Subject: [PATCH 02/52] Initial import for Rawhide --- .cvsignore | 1 + import.log | 1 + libkate-0.3.1-noredef.patch | 30 +++++ libkate-0.3.1-python_no_shebang.patch | 90 +++++++++++++ libkate.spec | 174 ++++++++++++++++++++++++++ sources | 1 + 6 files changed, 297 insertions(+) create mode 100644 import.log create mode 100644 libkate-0.3.1-noredef.patch create mode 100644 libkate-0.3.1-python_no_shebang.patch create mode 100644 libkate.spec diff --git a/.cvsignore b/.cvsignore index e69de29..55f6ed1 100644 --- a/.cvsignore +++ b/.cvsignore @@ -0,0 +1 @@ +libkate-0.3.1.tar.gz diff --git a/import.log b/import.log new file mode 100644 index 0000000..162eb42 --- /dev/null +++ b/import.log @@ -0,0 +1 @@ +libkate-0_3_1-3_fc11:HEAD:libkate-0.3.1-3.fc11.src.rpm:1239404342 diff --git a/libkate-0.3.1-noredef.patch b/libkate-0.3.1-noredef.patch new file mode 100644 index 0000000..d741801 --- /dev/null +++ b/libkate-0.3.1-noredef.patch @@ -0,0 +1,30 @@ +diff -up libkate-0.3.1/tools/kate_parser.y.noredef libkate-0.3.1/tools/kate_parser.y +--- libkate-0.3.1/tools/kate_parser.y.noredef 2009-01-29 00:26:44.000000000 +0100 ++++ libkate-0.3.1/tools/kate_parser.y 2009-04-04 00:59:29.000000000 +0200 +@@ -1012,7 +1012,7 @@ static char *expand_numeric_entities(con + return newtext; + } + +-static char *getline(const char **text) ++static char *getrawline(const char **text) + { + size_t rlen0; + int newline,in_newline=0; +@@ -1020,7 +1020,7 @@ static char *getline(const char **text) + int c; + + if (!text || !*text) { +- yyerror("error: getline passed invalid text pointer"); ++ yyerror("error: getrawline passed invalid text pointer"); + exit(-1); + } + +@@ -1126,7 +1126,7 @@ static char *trimtext(const char *text) + char *newtext=(char*)kate_malloc(1); + *newtext=0; + while (text && *text) { +- char *line=getline(&text); ++ char *line=getrawline(&text); + char *trimmed=trimline(line); + kate_free(line); + if (*trimmed && strcmp(trimmed,"\n")) { diff --git a/libkate-0.3.1-python_no_shebang.patch b/libkate-0.3.1-python_no_shebang.patch new file mode 100644 index 0000000..6a1df35 --- /dev/null +++ b/libkate-0.3.1-python_no_shebang.patch @@ -0,0 +1,90 @@ +diff -up libkate-0.3.1/tools/KateDJ/kdj/constants.py~ libkate-0.3.1/tools/KateDJ/kdj/constants.py +--- libkate-0.3.1/tools/KateDJ/kdj/constants.py~ 2009-03-15 00:25:09.000000000 +0100 ++++ libkate-0.3.1/tools/KateDJ/kdj/constants.py 2009-04-10 12:58:10.000000000 +0200 +@@ -1,5 +1,3 @@ +-#!/usr/bin/env python +- + kdj_name='KateDJ' + kdj_version='0.3.1' + kdj_name_version=kdj_name+' '+kdj_version +diff -up libkate-0.3.1/tools/KateDJ/kdj/constants.py.in~ libkate-0.3.1/tools/KateDJ/kdj/constants.py.in +--- libkate-0.3.1/tools/KateDJ/kdj/constants.py.in~ 2009-01-02 19:58:46.000000000 +0100 ++++ libkate-0.3.1/tools/KateDJ/kdj/constants.py.in 2009-04-10 12:58:16.000000000 +0200 +@@ -1,5 +1,3 @@ +-#!/usr/bin/env python +- + kdj_name='KateDJ' + kdj_version='@VERSION@' + kdj_name_version=kdj_name+' '+kdj_version +diff -up libkate-0.3.1/tools/KateDJ/kdj/demuxer.py~ libkate-0.3.1/tools/KateDJ/kdj/demuxer.py +--- libkate-0.3.1/tools/KateDJ/kdj/demuxer.py~ 2009-01-02 19:58:46.000000000 +0100 ++++ libkate-0.3.1/tools/KateDJ/kdj/demuxer.py 2009-04-10 12:57:35.000000000 +0200 +@@ -1,5 +1,3 @@ +-#!/usr/bin/env python +- + import sys + import os + import tempfile +diff -up libkate-0.3.1/tools/KateDJ/kdj/finder.py~ libkate-0.3.1/tools/KateDJ/kdj/finder.py +--- libkate-0.3.1/tools/KateDJ/kdj/finder.py~ 2009-01-02 19:58:46.000000000 +0100 ++++ libkate-0.3.1/tools/KateDJ/kdj/finder.py 2009-04-10 12:57:20.000000000 +0200 +@@ -1,5 +1,3 @@ +-#!/usr/bin/env python +- + import sys + import os + +diff -up libkate-0.3.1/tools/KateDJ/kdj/muxer.py~ libkate-0.3.1/tools/KateDJ/kdj/muxer.py +--- libkate-0.3.1/tools/KateDJ/kdj/muxer.py~ 2009-01-02 19:58:46.000000000 +0100 ++++ libkate-0.3.1/tools/KateDJ/kdj/muxer.py 2009-04-10 12:57:16.000000000 +0200 +@@ -1,5 +1,3 @@ +-#!/usr/bin/env python +- + import sys + import os + +diff -up libkate-0.3.1/tools/KateDJ/kdj/options.py~ libkate-0.3.1/tools/KateDJ/kdj/options.py +--- libkate-0.3.1/tools/KateDJ/kdj/options.py~ 2009-01-02 22:13:25.000000000 +0100 ++++ libkate-0.3.1/tools/KateDJ/kdj/options.py 2009-04-10 12:57:07.000000000 +0200 +@@ -1,5 +1,3 @@ +-#!/usr/bin/env python +- + import os + + class Options: +diff -up libkate-0.3.1/tools/KateDJ/kdj/tools.py~ libkate-0.3.1/tools/KateDJ/kdj/tools.py +--- libkate-0.3.1/tools/KateDJ/kdj/tools.py~ 2009-01-29 00:43:20.000000000 +0100 ++++ libkate-0.3.1/tools/KateDJ/kdj/tools.py 2009-04-10 12:57:27.000000000 +0200 +@@ -1,5 +1,3 @@ +-#!/usr/bin/env python +- + import sys + import os + import subprocess +diff -up libkate-0.3.1/tools/KateDJ/kdj/ui_editor.py~ libkate-0.3.1/tools/KateDJ/kdj/ui_editor.py +--- libkate-0.3.1/tools/KateDJ/kdj/ui_editor.py~ 2009-01-02 19:58:46.000000000 +0100 ++++ libkate-0.3.1/tools/KateDJ/kdj/ui_editor.py 2009-04-10 12:57:40.000000000 +0200 +@@ -1,5 +1,3 @@ +-#!/usr/bin/env python +- + import sys + import wx + #import wx.py.editor as editor +diff -up libkate-0.3.1/tools/KateDJ/kdj/ui_main.py~ libkate-0.3.1/tools/KateDJ/kdj/ui_main.py +--- libkate-0.3.1/tools/KateDJ/kdj/ui_main.py~ 2009-01-02 19:58:46.000000000 +0100 ++++ libkate-0.3.1/tools/KateDJ/kdj/ui_main.py 2009-04-10 12:57:47.000000000 +0200 +@@ -1,5 +1,3 @@ +-#!/usr/bin/env python +- + import sys + import os + import wx +diff -up libkate-0.3.1/tools/KateDJ/kdj/ui_options.py~ libkate-0.3.1/tools/KateDJ/kdj/ui_options.py +--- libkate-0.3.1/tools/KateDJ/kdj/ui_options.py~ 2009-01-02 19:58:46.000000000 +0100 ++++ libkate-0.3.1/tools/KateDJ/kdj/ui_options.py 2009-04-10 12:57:52.000000000 +0200 +@@ -1,5 +1,3 @@ +-#!/usr/bin/env python +- + import sys + import wx + from constants import * diff --git a/libkate.spec b/libkate.spec new file mode 100644 index 0000000..ae85cfe --- /dev/null +++ b/libkate.spec @@ -0,0 +1,174 @@ +%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} + +Name: libkate +Version: 0.3.1 +Release: 3%{?dist} +Summary: Libraries to handle the Kate bitstream format + +Group: System Environment/Libraries +License: BSD +URL: http://code.google.com/p/libkate/ +Source0: http://libkate.googlecode.com/files/libkate-%{version}.tar.gz +Patch0: libkate-0.3.1-noredef.patch +Patch1: libkate-0.3.1-python_no_shebang.patch +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +BuildRequires: python-devel +BuildRequires: libogg-devel +BuildRequires: liboggz +BuildRequires: libpng-devel +BuildRequires: bison +BuildRequires: flex +BuildRequires: valgrind +BuildRequires: doxygen + + +%description +This is libkate, the reference implementation of a codec for the Kate bitstream +format. +Kate is a karaoke and text codec meant for encapsulation in an Ogg container. +It can carry text, images, and animate them. + +Kate is meant to be used for karaoke alongside audio/video streams (typically +Vorbis and Theora), movie subtitles, song lyrics, and anything that needs text +data at arbitrary time intervals. + + +%package devel +Summary: Development files for %{name} +Group: Development/Libraries +Requires: %{name} = %{version}-%{release} +Requires: libogg-devel + +%description devel +The %{name}-devel package contains libraries and header files for +developing applications that use %{name}. + +%package utils +Summary: Encoder/Decoder utilities for %{name} +Group: Applications/Multimedia +Requires: %{name} = %{version}-%{release} +Requires: liboggz + +%description utils +The %{name}-utils package contains the katedec/kateenc binaries for %{name}. + + +%prep +%setup -q +#Prevent conflict with GNU getline() in recent rawhide +%patch0 -p1 -b .noredef +#Remove shebangs +%patch1 -p1 -b .noshebangs + +# We regenerate theses files at built step +rm tools/kate_parser.{c,h} +rm tools/kate_lexer.c + + +%build +%configure --disable-static \ + --docdir=%{_docdir}/%{name}-%{version} + +# Remove rpath +sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool +sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool + +make %{?_smp_mflags} + + +%install +rm -rf $RPM_BUILD_ROOT +make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p" +find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' + +# Fix for header timestramps +touch -r $RPM_BUILD_ROOT%{_includedir}/kate/kate_config.h \ + $RPM_BUILD_ROOT%{_includedir}/kate/kate.h + + +%check +make check + + +%clean +rm -rf $RPM_BUILD_ROOT + + +%post -p /sbin/ldconfig + +%postun -p /sbin/ldconfig + + +%files +%defattr(-,root,root,-) +%exclude %{_docdir}/libkate-%{version}/html +%doc %{_docdir}/libkate-%{version} +%{_libdir}/*.so.* + +%files devel +%defattr(-,root,root,-) +%doc examples/ +%doc %{_docdir}/libkate-%{version}/html +%{_includedir}/kate/ +%{_libdir}/*.so +%{_libdir}/pkgconfig/*.pc + +%files utils +%defattr(-,root,root,-) +%{python_sitelib}/kdj/ +%{_bindir}/KateDJ +%{_bindir}/katalyzer +%{_bindir}/katedec +%{_bindir}/kateenc +%{_mandir}/man1/KateDJ.* +%{_mandir}/man1/katalyzer.* +%{_mandir}/man1/katedec.* +%{_mandir}/man1/kateenc.* + + +%changelog +* Fri Apr 10 2009 kwizart < kwizart at gmail.com > - 0.3.1-3 +- Use Fedora compliant (using version) _docdir directory. +- Remove shebangs when not needed. +- Bundle examples within -devel +- Use global instead of define + +* Sat Apr 4 2009 kwizart < kwizart at gmail.com > - 0.3.1-2 +- Prevent conflict with GNU getline() in recent rawhide + +* Tue Mar 17 2009 kwizart < kwizart at gmail.com > - 0.3.1-1 +- Update to 0.3.1 + +* Tue Jan 13 2009 kwizart < kwizart at gmail.com > - 0.3.0-1 +- Update to 0.3.0 +- Add KateDJ and katalyzer in -utils +- Add BR liboggz and -utils Requires liboggz + +* Wed Nov 27 2008 kwizart < kwizart at gmail.com > - 0.2.7-1 +- Update to 0.2.7 + +* Mon Oct 20 2008 kwizart < kwizart at gmail.com > - 0.2.5-1 +- Update to 0.2.5 + +* Mon Sep 29 2008 kwizart < kwizart at gmail.com > - 0.2.1-1 +- Update to 0.2.1 + +* Thu Sep 11 2008 kwizart < kwizart at gmail.com > - 0.1.12-1 +- Update to 0.1.12 + +* Thu Sep 4 2008 kwizart < kwizart at gmail.com > - 0.1.11-1 +- Update to 0.1.11 + +* Wed Sep 3 2008 kwizart < kwizart at gmail.com > - 0.1.10-1 +- Update to 0.1.10 + +* Tue Sep 2 2008 kwizart < kwizart at gmail.com > - 0.1.9-1 +- Update to 0.1.9 + +* Fri Aug 29 2008 kwizart < kwizart at gmail.com > - 0.1.8-1 +- Update to 0.1.8 + +* Mon Aug 11 2008 kwizart < kwizart at gmail.com > - 0.1.7-1 +- Initial spec file + diff --git a/sources b/sources index e69de29..da92b01 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +d94894c5b6f12c0a5fed34307a32bb9d libkate-0.3.1.tar.gz From 2b921674412689e9b3cbe685267e807f7586101b Mon Sep 17 00:00:00 2001 From: Nicolas Chauvet Date: Mon, 11 May 2009 11:22:09 +0000 Subject: [PATCH 03/52] Update to 0.3.3 --- .cvsignore | 2 +- libkate-0.3.1-noredef.patch | 30 --------- libkate-0.3.1-python_no_shebang.patch | 90 --------------------------- libkate.spec | 13 ++-- sources | 2 +- 5 files changed, 7 insertions(+), 130 deletions(-) delete mode 100644 libkate-0.3.1-noredef.patch delete mode 100644 libkate-0.3.1-python_no_shebang.patch diff --git a/.cvsignore b/.cvsignore index 55f6ed1..d85b5c1 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -libkate-0.3.1.tar.gz +libkate-0.3.3.tar.gz diff --git a/libkate-0.3.1-noredef.patch b/libkate-0.3.1-noredef.patch deleted file mode 100644 index d741801..0000000 --- a/libkate-0.3.1-noredef.patch +++ /dev/null @@ -1,30 +0,0 @@ -diff -up libkate-0.3.1/tools/kate_parser.y.noredef libkate-0.3.1/tools/kate_parser.y ---- libkate-0.3.1/tools/kate_parser.y.noredef 2009-01-29 00:26:44.000000000 +0100 -+++ libkate-0.3.1/tools/kate_parser.y 2009-04-04 00:59:29.000000000 +0200 -@@ -1012,7 +1012,7 @@ static char *expand_numeric_entities(con - return newtext; - } - --static char *getline(const char **text) -+static char *getrawline(const char **text) - { - size_t rlen0; - int newline,in_newline=0; -@@ -1020,7 +1020,7 @@ static char *getline(const char **text) - int c; - - if (!text || !*text) { -- yyerror("error: getline passed invalid text pointer"); -+ yyerror("error: getrawline passed invalid text pointer"); - exit(-1); - } - -@@ -1126,7 +1126,7 @@ static char *trimtext(const char *text) - char *newtext=(char*)kate_malloc(1); - *newtext=0; - while (text && *text) { -- char *line=getline(&text); -+ char *line=getrawline(&text); - char *trimmed=trimline(line); - kate_free(line); - if (*trimmed && strcmp(trimmed,"\n")) { diff --git a/libkate-0.3.1-python_no_shebang.patch b/libkate-0.3.1-python_no_shebang.patch deleted file mode 100644 index 6a1df35..0000000 --- a/libkate-0.3.1-python_no_shebang.patch +++ /dev/null @@ -1,90 +0,0 @@ -diff -up libkate-0.3.1/tools/KateDJ/kdj/constants.py~ libkate-0.3.1/tools/KateDJ/kdj/constants.py ---- libkate-0.3.1/tools/KateDJ/kdj/constants.py~ 2009-03-15 00:25:09.000000000 +0100 -+++ libkate-0.3.1/tools/KateDJ/kdj/constants.py 2009-04-10 12:58:10.000000000 +0200 -@@ -1,5 +1,3 @@ --#!/usr/bin/env python -- - kdj_name='KateDJ' - kdj_version='0.3.1' - kdj_name_version=kdj_name+' '+kdj_version -diff -up libkate-0.3.1/tools/KateDJ/kdj/constants.py.in~ libkate-0.3.1/tools/KateDJ/kdj/constants.py.in ---- libkate-0.3.1/tools/KateDJ/kdj/constants.py.in~ 2009-01-02 19:58:46.000000000 +0100 -+++ libkate-0.3.1/tools/KateDJ/kdj/constants.py.in 2009-04-10 12:58:16.000000000 +0200 -@@ -1,5 +1,3 @@ --#!/usr/bin/env python -- - kdj_name='KateDJ' - kdj_version='@VERSION@' - kdj_name_version=kdj_name+' '+kdj_version -diff -up libkate-0.3.1/tools/KateDJ/kdj/demuxer.py~ libkate-0.3.1/tools/KateDJ/kdj/demuxer.py ---- libkate-0.3.1/tools/KateDJ/kdj/demuxer.py~ 2009-01-02 19:58:46.000000000 +0100 -+++ libkate-0.3.1/tools/KateDJ/kdj/demuxer.py 2009-04-10 12:57:35.000000000 +0200 -@@ -1,5 +1,3 @@ --#!/usr/bin/env python -- - import sys - import os - import tempfile -diff -up libkate-0.3.1/tools/KateDJ/kdj/finder.py~ libkate-0.3.1/tools/KateDJ/kdj/finder.py ---- libkate-0.3.1/tools/KateDJ/kdj/finder.py~ 2009-01-02 19:58:46.000000000 +0100 -+++ libkate-0.3.1/tools/KateDJ/kdj/finder.py 2009-04-10 12:57:20.000000000 +0200 -@@ -1,5 +1,3 @@ --#!/usr/bin/env python -- - import sys - import os - -diff -up libkate-0.3.1/tools/KateDJ/kdj/muxer.py~ libkate-0.3.1/tools/KateDJ/kdj/muxer.py ---- libkate-0.3.1/tools/KateDJ/kdj/muxer.py~ 2009-01-02 19:58:46.000000000 +0100 -+++ libkate-0.3.1/tools/KateDJ/kdj/muxer.py 2009-04-10 12:57:16.000000000 +0200 -@@ -1,5 +1,3 @@ --#!/usr/bin/env python -- - import sys - import os - -diff -up libkate-0.3.1/tools/KateDJ/kdj/options.py~ libkate-0.3.1/tools/KateDJ/kdj/options.py ---- libkate-0.3.1/tools/KateDJ/kdj/options.py~ 2009-01-02 22:13:25.000000000 +0100 -+++ libkate-0.3.1/tools/KateDJ/kdj/options.py 2009-04-10 12:57:07.000000000 +0200 -@@ -1,5 +1,3 @@ --#!/usr/bin/env python -- - import os - - class Options: -diff -up libkate-0.3.1/tools/KateDJ/kdj/tools.py~ libkate-0.3.1/tools/KateDJ/kdj/tools.py ---- libkate-0.3.1/tools/KateDJ/kdj/tools.py~ 2009-01-29 00:43:20.000000000 +0100 -+++ libkate-0.3.1/tools/KateDJ/kdj/tools.py 2009-04-10 12:57:27.000000000 +0200 -@@ -1,5 +1,3 @@ --#!/usr/bin/env python -- - import sys - import os - import subprocess -diff -up libkate-0.3.1/tools/KateDJ/kdj/ui_editor.py~ libkate-0.3.1/tools/KateDJ/kdj/ui_editor.py ---- libkate-0.3.1/tools/KateDJ/kdj/ui_editor.py~ 2009-01-02 19:58:46.000000000 +0100 -+++ libkate-0.3.1/tools/KateDJ/kdj/ui_editor.py 2009-04-10 12:57:40.000000000 +0200 -@@ -1,5 +1,3 @@ --#!/usr/bin/env python -- - import sys - import wx - #import wx.py.editor as editor -diff -up libkate-0.3.1/tools/KateDJ/kdj/ui_main.py~ libkate-0.3.1/tools/KateDJ/kdj/ui_main.py ---- libkate-0.3.1/tools/KateDJ/kdj/ui_main.py~ 2009-01-02 19:58:46.000000000 +0100 -+++ libkate-0.3.1/tools/KateDJ/kdj/ui_main.py 2009-04-10 12:57:47.000000000 +0200 -@@ -1,5 +1,3 @@ --#!/usr/bin/env python -- - import sys - import os - import wx -diff -up libkate-0.3.1/tools/KateDJ/kdj/ui_options.py~ libkate-0.3.1/tools/KateDJ/kdj/ui_options.py ---- libkate-0.3.1/tools/KateDJ/kdj/ui_options.py~ 2009-01-02 19:58:46.000000000 +0100 -+++ libkate-0.3.1/tools/KateDJ/kdj/ui_options.py 2009-04-10 12:57:52.000000000 +0200 -@@ -1,5 +1,3 @@ --#!/usr/bin/env python -- - import sys - import wx - from constants import * diff --git a/libkate.spec b/libkate.spec index ae85cfe..5af7796 100644 --- a/libkate.spec +++ b/libkate.spec @@ -1,16 +1,14 @@ %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: libkate -Version: 0.3.1 -Release: 3%{?dist} +Version: 0.3.3 +Release: 1%{?dist} Summary: Libraries to handle the Kate bitstream format Group: System Environment/Libraries License: BSD URL: http://code.google.com/p/libkate/ Source0: http://libkate.googlecode.com/files/libkate-%{version}.tar.gz -Patch0: libkate-0.3.1-noredef.patch -Patch1: libkate-0.3.1-python_no_shebang.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: python-devel @@ -56,10 +54,6 @@ The %{name}-utils package contains the katedec/kateenc binaries for %{name}. %prep %setup -q -#Prevent conflict with GNU getline() in recent rawhide -%patch0 -p1 -b .noredef -#Remove shebangs -%patch1 -p1 -b .noshebangs # We regenerate theses files at built step rm tools/kate_parser.{c,h} @@ -128,6 +122,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon May 11 2009 kwizart < kwizart at gmail.com > - 0.3.3-1 +- Update to 0.3.3 + * Fri Apr 10 2009 kwizart < kwizart at gmail.com > - 0.3.1-3 - Use Fedora compliant (using version) _docdir directory. - Remove shebangs when not needed. diff --git a/sources b/sources index da92b01..d0f6ac8 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -d94894c5b6f12c0a5fed34307a32bb9d libkate-0.3.1.tar.gz +328ea1eb451f460514a096668d3bf076 libkate-0.3.3.tar.gz From a56f014566cd95d819649bf55181f7cd8ceb5d9f Mon Sep 17 00:00:00 2001 From: Nicolas Chauvet Date: Mon, 29 Jun 2009 17:14:12 +0000 Subject: [PATCH 04/52] - Split -docs - Fix #508589 --- libkate.spec | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/libkate.spec b/libkate.spec index 5af7796..c30d114 100644 --- a/libkate.spec +++ b/libkate.spec @@ -2,7 +2,7 @@ Name: libkate Version: 0.3.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Libraries to handle the Kate bitstream format Group: System Environment/Libraries @@ -51,6 +51,14 @@ Requires: liboggz %description utils The %{name}-utils package contains the katedec/kateenc binaries for %{name}. +%package docs +Summary: Documentation for %{name} +Group: Documentation +BuildArch: noarch + +%description docs +The %{name}-docs package contains the docs for %{name}. + %prep %setup -q @@ -103,7 +111,6 @@ rm -rf $RPM_BUILD_ROOT %files devel %defattr(-,root,root,-) %doc examples/ -%doc %{_docdir}/libkate-%{version}/html %{_includedir}/kate/ %{_libdir}/*.so %{_libdir}/pkgconfig/*.pc @@ -120,8 +127,15 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/katedec.* %{_mandir}/man1/kateenc.* +%files docs +%defattr(-,root,root,-) +%doc %{_docdir}/libkate-%{version}/html + %changelog +* Mon Jun 29 2009 kwizart < kwizart at gmail.com > - 0.3.3-2 +- Split -docs - Fix #508589 + * Mon May 11 2009 kwizart < kwizart at gmail.com > - 0.3.3-1 - Update to 0.3.3 From b73ef39902fff09acc7f8c9f22e8bcc042dd348b Mon Sep 17 00:00:00 2001 From: Nicolas Chauvet Date: Wed, 8 Jul 2009 12:17:44 +0000 Subject: [PATCH 05/52] Update to 0.3.4 --- .cvsignore | 2 +- libkate.spec | 10 +++++++--- sources | 2 +- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/.cvsignore b/.cvsignore index d85b5c1..cf54f0a 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -libkate-0.3.3.tar.gz +libkate-0.3.4.tar.gz diff --git a/libkate.spec b/libkate.spec index c30d114..8abd19f 100644 --- a/libkate.spec +++ b/libkate.spec @@ -1,8 +1,8 @@ %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: libkate -Version: 0.3.3 -Release: 2%{?dist} +Version: 0.3.4 +Release: 1%{?dist} Summary: Libraries to handle the Kate bitstream format Group: System Environment/Libraries @@ -53,7 +53,8 @@ The %{name}-utils package contains the katedec/kateenc binaries for %{name}. %package docs Summary: Documentation for %{name} -Group: Documentation +Group: Applications/d +Requires: %{name} = %{version}-%{release} BuildArch: noarch %description docs @@ -133,6 +134,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 8 2009 kwizart < kwizart at gmail.com > - 0.3.4-1 +- Update to 0.3.4 + * Mon Jun 29 2009 kwizart < kwizart at gmail.com > - 0.3.3-2 - Split -docs - Fix #508589 diff --git a/sources b/sources index d0f6ac8..afeb788 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -328ea1eb451f460514a096668d3bf076 libkate-0.3.3.tar.gz +ab2bdef452fd2bd415a30ee8269b63ce libkate-0.3.4.tar.gz From 47c6953bc0cf23bbcc96fa4f74d940624aaef268 Mon Sep 17 00:00:00 2001 From: Nicolas Chauvet Date: Wed, 8 Jul 2009 12:20:02 +0000 Subject: [PATCH 06/52] Commit --- libkate.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libkate.spec b/libkate.spec index 8abd19f..77fd48f 100644 --- a/libkate.spec +++ b/libkate.spec @@ -53,8 +53,8 @@ The %{name}-utils package contains the katedec/kateenc binaries for %{name}. %package docs Summary: Documentation for %{name} -Group: Applications/d -Requires: %{name} = %{version}-%{release} +Group: Documentation + BuildArch: noarch %description docs From d66fec49ea27782f1a461bc7f7090436462a0327 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Sat, 25 Jul 2009 06:01:12 +0000 Subject: [PATCH 07/52] - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild --- libkate.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libkate.spec b/libkate.spec index 77fd48f..457c451 100644 --- a/libkate.spec +++ b/libkate.spec @@ -2,7 +2,7 @@ Name: libkate Version: 0.3.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Libraries to handle the Kate bitstream format Group: System Environment/Libraries @@ -134,6 +134,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 0.3.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Jul 8 2009 kwizart < kwizart at gmail.com > - 0.3.4-1 - Update to 0.3.4 From 57c4334d947479296135ba26de9c0c6de91f3253 Mon Sep 17 00:00:00 2001 From: Nicolas Chauvet Date: Fri, 16 Oct 2009 21:28:03 +0000 Subject: [PATCH 08/52] Update to 0.3.6 --- .cvsignore | 2 +- libkate.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.cvsignore b/.cvsignore index cf54f0a..18e47c9 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -libkate-0.3.4.tar.gz +libkate-0.3.6.tar.gz diff --git a/libkate.spec b/libkate.spec index 457c451..e8a0e89 100644 --- a/libkate.spec +++ b/libkate.spec @@ -1,8 +1,8 @@ %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: libkate -Version: 0.3.4 -Release: 2%{?dist} +Version: 0.3.6 +Release: 1%{?dist} Summary: Libraries to handle the Kate bitstream format Group: System Environment/Libraries @@ -134,6 +134,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Oct 16 2009 kwizart < kwizart at gmail.com > - 0.3.6-1 +- Update to 0.3.6 + * Fri Jul 24 2009 Fedora Release Engineering - 0.3.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild diff --git a/sources b/sources index afeb788..adf53ef 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -ab2bdef452fd2bd415a30ee8269b63ce libkate-0.3.4.tar.gz +f4fb4cf0e568a96a4b2db417c924bc27 libkate-0.3.6.tar.gz From f10e8152c42692d9d3f5515b08f57861b726aa67 Mon Sep 17 00:00:00 2001 From: Nicolas Chauvet Date: Wed, 25 Nov 2009 22:18:23 +0000 Subject: [PATCH 09/52] Update to 0.3.7 --- .cvsignore | 2 +- libkate.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.cvsignore b/.cvsignore index 18e47c9..16fa36d 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -libkate-0.3.6.tar.gz +libkate-0.3.7.tar.gz diff --git a/libkate.spec b/libkate.spec index e8a0e89..2e48b5d 100644 --- a/libkate.spec +++ b/libkate.spec @@ -1,7 +1,7 @@ %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: libkate -Version: 0.3.6 +Version: 0.3.7 Release: 1%{?dist} Summary: Libraries to handle the Kate bitstream format @@ -134,6 +134,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Nov 25 2009 Nicolas Chauvet - 0.3.7-1 +- Update to 0.3.7 + * Fri Oct 16 2009 kwizart < kwizart at gmail.com > - 0.3.6-1 - Update to 0.3.6 diff --git a/sources b/sources index adf53ef..b2c1a77 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -f4fb4cf0e568a96a4b2db417c924bc27 libkate-0.3.6.tar.gz +e5c287b4f40498e5bde48c0a52225292 libkate-0.3.7.tar.gz From 894e4fe7d683246dfa7a2194b952f0770dea4838 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Wed, 25 Nov 2009 23:51:02 +0000 Subject: [PATCH 10/52] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index dfe500b..296e2e3 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Makefile for source rpm: libkate -# $Id$ +# $Id: Makefile,v 1.1 2009/04/10 22:04:48 kevin Exp $ NAME := libkate SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) From 1974651659f521fe394771393b9f7904d7d44ad2 Mon Sep 17 00:00:00 2001 From: dmalcolm Date: Thu, 22 Jul 2010 02:14:37 +0000 Subject: [PATCH 11/52] - Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild --- libkate.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libkate.spec b/libkate.spec index 2e48b5d..f2535ef 100644 --- a/libkate.spec +++ b/libkate.spec @@ -2,7 +2,7 @@ Name: libkate Version: 0.3.7 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Libraries to handle the Kate bitstream format Group: System Environment/Libraries @@ -134,6 +134,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 21 2010 David Malcolm - 0.3.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild + * Wed Nov 25 2009 Nicolas Chauvet - 0.3.7-1 - Update to 0.3.7 From 91aefc45f70ab535d5ea05d87aba42ace9fa21af Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 28 Jul 2010 21:14:25 +0000 Subject: [PATCH 12/52] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- import.log | 1 - 3 files changed, 22 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 import.log diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index 296e2e3..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: libkate -# $Id: Makefile,v 1.1 2009/04/10 22:04:48 kevin Exp $ -NAME := libkate -SPECFILE = $(firstword $(wildcard *.spec)) - -define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done -endef - -MAKEFILE_COMMON := $(shell $(find-makefile-common)) - -ifeq ($(MAKEFILE_COMMON),) -# attept a checkout -define checkout-makefile-common -test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 -endef - -MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) -endif - -include $(MAKEFILE_COMMON) diff --git a/import.log b/import.log deleted file mode 100644 index 162eb42..0000000 --- a/import.log +++ /dev/null @@ -1 +0,0 @@ -libkate-0_3_1-3_fc11:HEAD:libkate-0.3.1-3.fc11.src.rpm:1239404342 From d38182aa8e279c6642e0f0a003b3a1e4c5080911 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Hor=C3=A1k?= Date: Sat, 28 Aug 2010 12:16:53 +0200 Subject: [PATCH 13/52] - no valgrind on s390(x) --- libkate.spec | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/libkate.spec b/libkate.spec index f2535ef..6b378e5 100644 --- a/libkate.spec +++ b/libkate.spec @@ -2,7 +2,7 @@ Name: libkate Version: 0.3.7 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Libraries to handle the Kate bitstream format Group: System Environment/Libraries @@ -17,7 +17,9 @@ BuildRequires: liboggz BuildRequires: libpng-devel BuildRequires: bison BuildRequires: flex +%ifnarch s390 s390x BuildRequires: valgrind +%endif BuildRequires: doxygen @@ -134,6 +136,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Aug 28 2010 Dan Horák - 0.3.7-3 +- no valgrind on s390(x) + * Wed Jul 21 2010 David Malcolm - 0.3.7-2 - Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild From f956521656ef896bc69720d3d9caadfbf30cb156 Mon Sep 17 00:00:00 2001 From: Nicolas Chauvet Date: Fri, 10 Dec 2010 17:27:28 +0100 Subject: [PATCH 14/52] Update to 0.3.8 --- .gitignore | 1 + libkate.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 16fa36d..f43ae4a 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ libkate-0.3.7.tar.gz +/libkate-0.3.8.tar.gz diff --git a/libkate.spec b/libkate.spec index 6b378e5..3a4865b 100644 --- a/libkate.spec +++ b/libkate.spec @@ -1,8 +1,8 @@ %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: libkate -Version: 0.3.7 -Release: 3%{?dist} +Version: 0.3.8 +Release: 1%{?dist} Summary: Libraries to handle the Kate bitstream format Group: System Environment/Libraries @@ -136,6 +136,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Dec 10 2010 Nicolas Chauvet - 0.3.8-1 +- Update to 0.3.8 + * Sat Aug 28 2010 Dan Horák - 0.3.7-3 - no valgrind on s390(x) diff --git a/sources b/sources index b2c1a77..feb1764 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -e5c287b4f40498e5bde48c0a52225292 libkate-0.3.7.tar.gz +7489ddebedf8d9888a05496dedf83c71 libkate-0.3.8.tar.gz From e8fc4b6d46c1528675d904840289d1c62531dfcd Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Tue, 8 Feb 2011 01:24:49 -0600 Subject: [PATCH 15/52] - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild --- libkate.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libkate.spec b/libkate.spec index 3a4865b..8303b6d 100644 --- a/libkate.spec +++ b/libkate.spec @@ -2,7 +2,7 @@ Name: libkate Version: 0.3.8 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Libraries to handle the Kate bitstream format Group: System Environment/Libraries @@ -136,6 +136,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Feb 08 2011 Fedora Release Engineering - 0.3.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + * Fri Dec 10 2010 Nicolas Chauvet - 0.3.8-1 - Update to 0.3.8 From 82501f06177b2efc52b1989fd642fd4f9f73343b Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Tue, 8 Mar 2011 00:42:24 -0600 Subject: [PATCH 16/52] no valgrind on sparc or arm arches --- libkate.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/libkate.spec b/libkate.spec index 8303b6d..573cc3b 100644 --- a/libkate.spec +++ b/libkate.spec @@ -2,7 +2,7 @@ Name: libkate Version: 0.3.8 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Libraries to handle the Kate bitstream format Group: System Environment/Libraries @@ -17,7 +17,7 @@ BuildRequires: liboggz BuildRequires: libpng-devel BuildRequires: bison BuildRequires: flex -%ifnarch s390 s390x +%ifnarch s390 s390x %{sparc} %{arm} BuildRequires: valgrind %endif BuildRequires: doxygen @@ -136,6 +136,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Mar 08 2011 Dennis Gilmore - 0.3.8-3 +- no valgrind on sparc or arm arches + * Tue Feb 08 2011 Fedora Release Engineering - 0.3.8-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild From ed27497e907124a077af9a152de7c6b588be2fdf Mon Sep 17 00:00:00 2001 From: Adam Jackson Date: Tue, 6 Dec 2011 00:07:33 -0500 Subject: [PATCH 17/52] Rebuild for new libpng --- libkate.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libkate.spec b/libkate.spec index 573cc3b..de49b7a 100644 --- a/libkate.spec +++ b/libkate.spec @@ -2,7 +2,7 @@ Name: libkate Version: 0.3.8 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Libraries to handle the Kate bitstream format Group: System Environment/Libraries @@ -136,6 +136,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Dec 06 2011 Adam Jackson - 0.3.8-4 +- Rebuild for new libpng + * Tue Mar 08 2011 Dennis Gilmore - 0.3.8-3 - no valgrind on sparc or arm arches From f7262c59d98fa33cb302e321c1211f2562219dfb Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 13 Jan 2012 01:56:26 -0600 Subject: [PATCH 18/52] - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild --- libkate.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libkate.spec b/libkate.spec index de49b7a..c994a59 100644 --- a/libkate.spec +++ b/libkate.spec @@ -2,7 +2,7 @@ Name: libkate Version: 0.3.8 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Libraries to handle the Kate bitstream format Group: System Environment/Libraries @@ -136,6 +136,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jan 13 2012 Fedora Release Engineering - 0.3.8-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + * Tue Dec 06 2011 Adam Jackson - 0.3.8-4 - Rebuild for new libpng From dd86aef5d733e34eacda1d32d4faebdcab96d9ac Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 19 Jul 2012 15:15:25 -0500 Subject: [PATCH 19/52] - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild --- libkate.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libkate.spec b/libkate.spec index c994a59..8d4f57b 100644 --- a/libkate.spec +++ b/libkate.spec @@ -2,7 +2,7 @@ Name: libkate Version: 0.3.8 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Libraries to handle the Kate bitstream format Group: System Environment/Libraries @@ -136,6 +136,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 19 2012 Fedora Release Engineering - 0.3.8-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + * Fri Jan 13 2012 Fedora Release Engineering - 0.3.8-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild From bcd854aace22d995cbf24bbc30809e65e8de85a3 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 13 Feb 2013 22:37:33 -0600 Subject: [PATCH 20/52] - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild --- libkate.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libkate.spec b/libkate.spec index 8d4f57b..a9a5cc8 100644 --- a/libkate.spec +++ b/libkate.spec @@ -2,7 +2,7 @@ Name: libkate Version: 0.3.8 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Libraries to handle the Kate bitstream format Group: System Environment/Libraries @@ -136,6 +136,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Feb 14 2013 Fedora Release Engineering - 0.3.8-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + * Thu Jul 19 2012 Fedora Release Engineering - 0.3.8-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild From 5d0dd97cc379ad9f59a49a5b6ccae93fe8248b12 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 3 Aug 2013 00:58:04 -0500 Subject: [PATCH 21/52] - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild --- libkate.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libkate.spec b/libkate.spec index a9a5cc8..0a13fd8 100644 --- a/libkate.spec +++ b/libkate.spec @@ -2,7 +2,7 @@ Name: libkate Version: 0.3.8 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Libraries to handle the Kate bitstream format Group: System Environment/Libraries @@ -136,6 +136,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Aug 03 2013 Fedora Release Engineering - 0.3.8-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + * Thu Feb 14 2013 Fedora Release Engineering - 0.3.8-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild From a02fa4f05bf1e7f835eef89253e87c02558f1a9e Mon Sep 17 00:00:00 2001 From: Nicolas Chauvet Date: Mon, 12 Aug 2013 11:51:05 +0200 Subject: [PATCH 22/52] Update to 0.4.1 --- .gitignore | 1 + libkate.spec | 32 +++++++++++++------------------- sources | 2 +- 3 files changed, 15 insertions(+), 20 deletions(-) diff --git a/.gitignore b/.gitignore index f43ae4a..0c74e22 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ libkate-0.3.7.tar.gz /libkate-0.3.8.tar.gz +/libkate-0.4.1.tar.gz diff --git a/libkate.spec b/libkate.spec index 0a13fd8..0f41d1f 100644 --- a/libkate.spec +++ b/libkate.spec @@ -1,15 +1,12 @@ -%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} - Name: libkate -Version: 0.3.8 -Release: 8%{?dist} +Version: 0.4.1 +Release: 1%{?dist} Summary: Libraries to handle the Kate bitstream format Group: System Environment/Libraries License: BSD URL: http://code.google.com/p/libkate/ Source0: http://libkate.googlecode.com/files/libkate-%{version}.tar.gz -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: python-devel BuildRequires: libogg-devel @@ -17,7 +14,7 @@ BuildRequires: liboggz BuildRequires: libpng-devel BuildRequires: bison BuildRequires: flex -%ifnarch s390 s390x %{sparc} %{arm} +%ifnarch s390 %{sparc} BuildRequires: valgrind %endif BuildRequires: doxygen @@ -72,8 +69,7 @@ rm tools/kate_lexer.c %build -%configure --disable-static \ - --docdir=%{_docdir}/%{name}-%{version} +%configure --disable-static # Remove rpath sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool @@ -83,7 +79,6 @@ make %{?_smp_mflags} %install -rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p" find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' @@ -96,9 +91,6 @@ touch -r $RPM_BUILD_ROOT%{_includedir}/kate/kate_config.h \ make check -%clean -rm -rf $RPM_BUILD_ROOT - %post -p /sbin/ldconfig @@ -106,20 +98,17 @@ rm -rf $RPM_BUILD_ROOT %files -%defattr(-,root,root,-) -%exclude %{_docdir}/libkate-%{version}/html -%doc %{_docdir}/libkate-%{version} +%exclude %{_docdir}/libkate/html +%doc %{_docdir}/libkate %{_libdir}/*.so.* %files devel -%defattr(-,root,root,-) %doc examples/ %{_includedir}/kate/ %{_libdir}/*.so %{_libdir}/pkgconfig/*.pc %files utils -%defattr(-,root,root,-) %{python_sitelib}/kdj/ %{_bindir}/KateDJ %{_bindir}/katalyzer @@ -131,11 +120,16 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/kateenc.* %files docs -%defattr(-,root,root,-) -%doc %{_docdir}/libkate-%{version}/html +%doc %{_docdir}/libkate/html %changelog +* Mon Aug 12 2013 Nicolas Chauvet - 0.4.1-1 +- Update to 0.4.1 +- Spec file clean-up +- Avoid valgrind restriction on certain arches +- Use unversioned docdir - rhbz#993818 + * Sat Aug 03 2013 Fedora Release Engineering - 0.3.8-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild diff --git a/sources b/sources index feb1764..600c148 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -7489ddebedf8d9888a05496dedf83c71 libkate-0.3.8.tar.gz +1dfdbdeb2fa5d07063cf5b8261111fca libkate-0.4.1.tar.gz From 6ea40efdd878444547f575d90a602c9de3b34c4f Mon Sep 17 00:00:00 2001 From: Nicolas Chauvet Date: Mon, 12 Aug 2013 13:31:32 +0200 Subject: [PATCH 23/52] Fix valgrind arches --- libkate.spec | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libkate.spec b/libkate.spec index 0f41d1f..19bac76 100644 --- a/libkate.spec +++ b/libkate.spec @@ -1,6 +1,6 @@ Name: libkate Version: 0.4.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Libraries to handle the Kate bitstream format Group: System Environment/Libraries @@ -14,7 +14,7 @@ BuildRequires: liboggz BuildRequires: libpng-devel BuildRequires: bison BuildRequires: flex -%ifnarch s390 %{sparc} +%ifarch %{ix86} x86_64 ppc ppc64 s390x %{arm} BuildRequires: valgrind %endif BuildRequires: doxygen @@ -124,10 +124,10 @@ make check %changelog -* Mon Aug 12 2013 Nicolas Chauvet - 0.4.1-1 +* Mon Aug 12 2013 Nicolas Chauvet - 0.4.1-2 - Update to 0.4.1 - Spec file clean-up -- Avoid valgrind restriction on certain arches +- Set the current valgrind arches - Use unversioned docdir - rhbz#993818 * Sat Aug 03 2013 Fedora Release Engineering - 0.3.8-8 From b5970154a5ad3c00cf24fbfd0aa18193aec434af Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 6 Jun 2014 23:01:56 -0500 Subject: [PATCH 24/52] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild --- libkate.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libkate.spec b/libkate.spec index 19bac76..35b06c2 100644 --- a/libkate.spec +++ b/libkate.spec @@ -1,6 +1,6 @@ Name: libkate Version: 0.4.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Libraries to handle the Kate bitstream format Group: System Environment/Libraries @@ -124,6 +124,9 @@ make check %changelog +* Sat Jun 07 2014 Fedora Release Engineering - 0.4.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + * Mon Aug 12 2013 Nicolas Chauvet - 0.4.1-2 - Update to 0.4.1 - Spec file clean-up From 5599e5256d8a832098775c7a73b1ff63debc2802 Mon Sep 17 00:00:00 2001 From: Nicolas Chauvet Date: Fri, 25 Jul 2014 11:55:58 +0200 Subject: [PATCH 25/52] Update valgrind arches --- libkate.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/libkate.spec b/libkate.spec index 35b06c2..847df81 100644 --- a/libkate.spec +++ b/libkate.spec @@ -1,6 +1,6 @@ Name: libkate Version: 0.4.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Libraries to handle the Kate bitstream format Group: System Environment/Libraries @@ -14,7 +14,7 @@ BuildRequires: liboggz BuildRequires: libpng-devel BuildRequires: bison BuildRequires: flex -%ifarch %{ix86} x86_64 ppc ppc64 s390x %{arm} +%ifarch %{ix86} x86_64 ppc ppc64 s390x BuildRequires: valgrind %endif BuildRequires: doxygen @@ -124,6 +124,9 @@ make check %changelog +* Fri Jul 25 2014 Nicolas Chauvet - 0.4.1-4 +- Update valgrind arches + * Sat Jun 07 2014 Fedora Release Engineering - 0.4.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild From 5ec4c33d2e341ceeb1a124482b595f406c10e529 Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Sun, 17 Aug 2014 04:08:15 +0000 Subject: [PATCH 26/52] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild --- libkate.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libkate.spec b/libkate.spec index 847df81..84f3cbd 100644 --- a/libkate.spec +++ b/libkate.spec @@ -1,6 +1,6 @@ Name: libkate Version: 0.4.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Libraries to handle the Kate bitstream format Group: System Environment/Libraries @@ -124,6 +124,9 @@ make check %changelog +* Sun Aug 17 2014 Fedora Release Engineering - 0.4.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + * Fri Jul 25 2014 Nicolas Chauvet - 0.4.1-4 - Update valgrind arches From 9068e5f3abd152e2dd5f823bf376c91e6a9fbf65 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 17 Jun 2015 15:54:23 +0000 Subject: [PATCH 27/52] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- libkate.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libkate.spec b/libkate.spec index 84f3cbd..642a997 100644 --- a/libkate.spec +++ b/libkate.spec @@ -1,6 +1,6 @@ Name: libkate Version: 0.4.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Libraries to handle the Kate bitstream format Group: System Environment/Libraries @@ -124,6 +124,9 @@ make check %changelog +* Wed Jun 17 2015 Fedora Release Engineering - 0.4.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Sun Aug 17 2014 Fedora Release Engineering - 0.4.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild From 575e9e59c09aa9836bd48d11373b5c913bc4e855 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 4 Feb 2016 03:23:13 +0000 Subject: [PATCH 28/52] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- libkate.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libkate.spec b/libkate.spec index 642a997..b9401af 100644 --- a/libkate.spec +++ b/libkate.spec @@ -1,6 +1,6 @@ Name: libkate Version: 0.4.1 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Libraries to handle the Kate bitstream format Group: System Environment/Libraries @@ -124,6 +124,9 @@ make check %changelog +* Thu Feb 04 2016 Fedora Release Engineering - 0.4.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + * Wed Jun 17 2015 Fedora Release Engineering - 0.4.1-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild From 2ce8e19c2e46a4391a09648446686b8def14ffe6 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 19 Jul 2016 07:40:52 +0000 Subject: [PATCH 29/52] - https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages --- libkate.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libkate.spec b/libkate.spec index b9401af..025697f 100644 --- a/libkate.spec +++ b/libkate.spec @@ -1,6 +1,6 @@ Name: libkate Version: 0.4.1 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Libraries to handle the Kate bitstream format Group: System Environment/Libraries @@ -124,6 +124,9 @@ make check %changelog +* Tue Jul 19 2016 Fedora Release Engineering - 0.4.1-8 +- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages + * Thu Feb 04 2016 Fedora Release Engineering - 0.4.1-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild From 505013f4eb722e28301fbb055df6f05ed13c844d Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 10 Feb 2017 18:54:13 +0000 Subject: [PATCH 30/52] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild --- libkate.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libkate.spec b/libkate.spec index 025697f..08243e3 100644 --- a/libkate.spec +++ b/libkate.spec @@ -1,6 +1,6 @@ Name: libkate Version: 0.4.1 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Libraries to handle the Kate bitstream format Group: System Environment/Libraries @@ -124,6 +124,9 @@ make check %changelog +* Fri Feb 10 2017 Fedora Release Engineering - 0.4.1-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + * Tue Jul 19 2016 Fedora Release Engineering - 0.4.1-8 - https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages From 1651987b679484b8a40382e15280eb1a01e61610 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 26 Jul 2017 19:06:58 +0000 Subject: [PATCH 31/52] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- libkate.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libkate.spec b/libkate.spec index 08243e3..615f9b2 100644 --- a/libkate.spec +++ b/libkate.spec @@ -1,6 +1,6 @@ Name: libkate Version: 0.4.1 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Libraries to handle the Kate bitstream format Group: System Environment/Libraries @@ -124,6 +124,9 @@ make check %changelog +* Wed Jul 26 2017 Fedora Release Engineering - 0.4.1-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Fri Feb 10 2017 Fedora Release Engineering - 0.4.1-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild From 689990108b122734d3ac3dee2e4dfaa41cd74913 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 3 Aug 2017 01:42:35 +0000 Subject: [PATCH 32/52] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild --- libkate.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libkate.spec b/libkate.spec index 615f9b2..c5425f4 100644 --- a/libkate.spec +++ b/libkate.spec @@ -1,6 +1,6 @@ Name: libkate Version: 0.4.1 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Libraries to handle the Kate bitstream format Group: System Environment/Libraries @@ -124,6 +124,9 @@ make check %changelog +* Thu Aug 03 2017 Fedora Release Engineering - 0.4.1-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + * Wed Jul 26 2017 Fedora Release Engineering - 0.4.1-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild From a59cbdd4bfd797eb3a007a56c33572bc883fea31 Mon Sep 17 00:00:00 2001 From: Iryna Shcherbina Date: Wed, 7 Feb 2018 05:31:12 +0100 Subject: [PATCH 33/52] Update Python 2 dependency declarations to new packaging standards --- libkate.spec | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/libkate.spec b/libkate.spec index c5425f4..385319c 100644 --- a/libkate.spec +++ b/libkate.spec @@ -1,6 +1,6 @@ Name: libkate Version: 0.4.1 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Libraries to handle the Kate bitstream format Group: System Environment/Libraries @@ -8,7 +8,7 @@ License: BSD URL: http://code.google.com/p/libkate/ Source0: http://libkate.googlecode.com/files/libkate-%{version}.tar.gz -BuildRequires: python-devel +BuildRequires: python2-devel BuildRequires: libogg-devel BuildRequires: liboggz BuildRequires: libpng-devel @@ -124,6 +124,10 @@ make check %changelog +* Wed Feb 07 2018 Iryna Shcherbina - 0.4.1-12 +- Update Python 2 dependency declarations to new packaging standards + (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3) + * Thu Aug 03 2017 Fedora Release Engineering - 0.4.1-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild From 92ceeeb701a2ef93734acf391e21a02bee496260 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 7 Feb 2018 22:01:39 +0000 Subject: [PATCH 34/52] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- libkate.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libkate.spec b/libkate.spec index 385319c..9d445b1 100644 --- a/libkate.spec +++ b/libkate.spec @@ -1,6 +1,6 @@ Name: libkate Version: 0.4.1 -Release: 12%{?dist} +Release: 13%{?dist} Summary: Libraries to handle the Kate bitstream format Group: System Environment/Libraries @@ -124,6 +124,9 @@ make check %changelog +* Wed Feb 07 2018 Fedora Release Engineering - 0.4.1-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Wed Feb 07 2018 Iryna Shcherbina - 0.4.1-12 - Update Python 2 dependency declarations to new packaging standards (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3) From 1a6201e9b3185ecb7cad83df9dcad4bbe68a2566 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Mon, 9 Jul 2018 19:06:47 +0200 Subject: [PATCH 35/52] add BuildRequires: gcc Reference: https://fedoraproject.org/wiki/Changes/Remove_GCC_from_BuildRoot --- libkate.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/libkate.spec b/libkate.spec index 9d445b1..379df55 100644 --- a/libkate.spec +++ b/libkate.spec @@ -8,6 +8,7 @@ License: BSD URL: http://code.google.com/p/libkate/ Source0: http://libkate.googlecode.com/files/libkate-%{version}.tar.gz +BuildRequires: gcc BuildRequires: python2-devel BuildRequires: libogg-devel BuildRequires: liboggz From 852361e182ad90df2a132dc4d289a11609715d24 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 13 Jul 2018 08:18:30 +0000 Subject: [PATCH 36/52] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- libkate.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libkate.spec b/libkate.spec index 379df55..e3c346b 100644 --- a/libkate.spec +++ b/libkate.spec @@ -1,6 +1,6 @@ Name: libkate Version: 0.4.1 -Release: 13%{?dist} +Release: 14%{?dist} Summary: Libraries to handle the Kate bitstream format Group: System Environment/Libraries @@ -125,6 +125,9 @@ make check %changelog +* Fri Jul 13 2018 Fedora Release Engineering - 0.4.1-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Wed Feb 07 2018 Fedora Release Engineering - 0.4.1-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild From c0c5ba93967551869b53834d4fd19f52cdcd77ba Mon Sep 17 00:00:00 2001 From: Nicolas Chauvet Date: Tue, 17 Jul 2018 12:58:29 +0200 Subject: [PATCH 37/52] Few clean-up --- libkate.spec | 27 ++++++++++++--------------- 1 file changed, 12 insertions(+), 15 deletions(-) diff --git a/libkate.spec b/libkate.spec index e3c346b..8c3b4ef 100644 --- a/libkate.spec +++ b/libkate.spec @@ -1,11 +1,10 @@ Name: libkate Version: 0.4.1 -Release: 14%{?dist} +Release: 15%{?dist} Summary: Libraries to handle the Kate bitstream format -Group: System Environment/Libraries License: BSD -URL: http://code.google.com/p/libkate/ +URL: http://git.xiph.org/?p=users/oggk/kate.git;a=summary Source0: http://libkate.googlecode.com/files/libkate-%{version}.tar.gz BuildRequires: gcc @@ -15,7 +14,7 @@ BuildRequires: liboggz BuildRequires: libpng-devel BuildRequires: bison BuildRequires: flex -%ifarch %{ix86} x86_64 ppc ppc64 s390x +%ifarch %{valgrind_arches} BuildRequires: valgrind %endif BuildRequires: doxygen @@ -34,8 +33,7 @@ data at arbitrary time intervals. %package devel Summary: Development files for %{name} -Group: Development/Libraries -Requires: %{name} = %{version}-%{release} +Requires: %{name}%{?_isa} = %{version}-%{release} Requires: libogg-devel %description devel @@ -44,8 +42,7 @@ developing applications that use %{name}. %package utils Summary: Encoder/Decoder utilities for %{name} -Group: Applications/Multimedia -Requires: %{name} = %{version}-%{release} +Requires: %{name}%{?_isa} = %{version}-%{release} Requires: liboggz %description utils @@ -76,11 +73,11 @@ rm tools/kate_lexer.c sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool -make %{?_smp_mflags} +%make_build %install -make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p" +%make_install find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' # Fix for header timestramps @@ -92,10 +89,7 @@ touch -r $RPM_BUILD_ROOT%{_includedir}/kate/kate_config.h \ make check - -%post -p /sbin/ldconfig - -%postun -p /sbin/ldconfig +%ldconfig_scriptlets %files @@ -125,6 +119,9 @@ make check %changelog +* Tue Jul 17 2018 Nicolas Chauvet - 0.4.1-15 +- Few clean-up + * Fri Jul 13 2018 Fedora Release Engineering - 0.4.1-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild @@ -233,7 +230,7 @@ make check - Add KateDJ and katalyzer in -utils - Add BR liboggz and -utils Requires liboggz -* Wed Nov 27 2008 kwizart < kwizart at gmail.com > - 0.2.7-1 +* Thu Nov 27 2008 kwizart < kwizart at gmail.com > - 0.2.7-1 - Update to 0.2.7 * Mon Oct 20 2008 kwizart < kwizart at gmail.com > - 0.2.5-1 From 97c64698008ce62c96017a4f9cf8b8587258cd70 Mon Sep 17 00:00:00 2001 From: Nicolas Chauvet Date: Tue, 17 Jul 2018 21:18:56 +0200 Subject: [PATCH 38/52] Enforce python usage in scripts --- libkate.spec | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libkate.spec b/libkate.spec index 8c3b4ef..ad8ccbd 100644 --- a/libkate.spec +++ b/libkate.spec @@ -67,6 +67,7 @@ rm tools/kate_lexer.c %build +export PYTHON=python2 %configure --disable-static # Remove rpath @@ -77,6 +78,7 @@ sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool %install +export PYTHON=python2 %make_install find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' From 2a4d38455e32f746f7a2d1d73c8dd5cacb27ab53 Mon Sep 17 00:00:00 2001 From: Nicolas Chauvet Date: Tue, 17 Jul 2018 21:32:58 +0200 Subject: [PATCH 39/52] Fixup --- libkate.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libkate.spec b/libkate.spec index ad8ccbd..b408f9e 100644 --- a/libkate.spec +++ b/libkate.spec @@ -106,7 +106,7 @@ make check %{_libdir}/pkgconfig/*.pc %files utils -%{python_sitelib}/kdj/ +%{python2_sitelib}/kdj/ %{_bindir}/KateDJ %{_bindir}/katalyzer %{_bindir}/katedec From 6afc3a303e80572d06d2764c32a7dd4bbe1ceb81 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Mon, 28 Jan 2019 20:17:51 +0100 Subject: [PATCH 40/52] Remove obsolete Group tag References: https://fedoraproject.org/wiki/Changes/Remove_Group_Tag --- libkate.spec | 1 - 1 file changed, 1 deletion(-) diff --git a/libkate.spec b/libkate.spec index b408f9e..06d9a6f 100644 --- a/libkate.spec +++ b/libkate.spec @@ -50,7 +50,6 @@ The %{name}-utils package contains the katedec/kateenc binaries for %{name}. %package docs Summary: Documentation for %{name} -Group: Documentation BuildArch: noarch From de5b6a7c5812bb171d4f1aa0743612fdfa5489b6 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 1 Feb 2019 07:26:30 +0000 Subject: [PATCH 41/52] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- libkate.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libkate.spec b/libkate.spec index 06d9a6f..4f71e64 100644 --- a/libkate.spec +++ b/libkate.spec @@ -1,6 +1,6 @@ Name: libkate Version: 0.4.1 -Release: 15%{?dist} +Release: 16%{?dist} Summary: Libraries to handle the Kate bitstream format License: BSD @@ -120,6 +120,9 @@ make check %changelog +* Fri Feb 01 2019 Fedora Release Engineering - 0.4.1-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Tue Jul 17 2018 Nicolas Chauvet - 0.4.1-15 - Few clean-up From 933f55dfc7c62d4bd4f9d1ee8e249ef8bdd552ef Mon Sep 17 00:00:00 2001 From: Nicolas Chauvet Date: Tue, 2 Jul 2019 16:01:06 +0200 Subject: [PATCH 42/52] Disable python2 with f31+ --- libkate.spec | 29 ++++++++++++++++++++++++----- 1 file changed, 24 insertions(+), 5 deletions(-) diff --git a/libkate.spec b/libkate.spec index 4f71e64..54bbf7c 100644 --- a/libkate.spec +++ b/libkate.spec @@ -1,6 +1,10 @@ +%if 0%{?fedora} || 0%{?rhel} >= 8 +%global _without_python2 1 +%endif + Name: libkate Version: 0.4.1 -Release: 16%{?dist} +Release: 17%{?dist} Summary: Libraries to handle the Kate bitstream format License: BSD @@ -8,7 +12,9 @@ URL: http://git.xiph.org/?p=users/oggk/kate.git;a=summary Source0: http://libkate.googlecode.com/files/libkate-%{version}.tar.gz BuildRequires: gcc +%if 0%{!?_without_python2} BuildRequires: python2-devel +%endif BuildRequires: libogg-devel BuildRequires: liboggz BuildRequires: libpng-devel @@ -66,7 +72,9 @@ rm tools/kate_lexer.c %build +%if 0%{!?_without_python2} export PYTHON=python2 +%endif %configure --disable-static # Remove rpath @@ -77,13 +85,19 @@ sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool %install +%if 0%{!?_without_python2} export PYTHON=python2 +%endif %make_install -find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' +find %{buildroot} -name '*.la' -exec rm -f {} ';' # Fix for header timestramps -touch -r $RPM_BUILD_ROOT%{_includedir}/kate/kate_config.h \ - $RPM_BUILD_ROOT%{_includedir}/kate/kate.h +touch -r %{buildroot}%{_includedir}/kate/kate_config.h \ + %{buildroot}%{_includedir}/kate/kate.h + +%if 0%{!?_without_python2} +rm -rf %{buildroot}%{_mandir}/man1/KateDJ.1* +%endif %check @@ -105,12 +119,14 @@ make check %{_libdir}/pkgconfig/*.pc %files utils +%if 0%{!?_without_python2} %{python2_sitelib}/kdj/ %{_bindir}/KateDJ +%{_mandir}/man1/KateDJ.* +%endif %{_bindir}/katalyzer %{_bindir}/katedec %{_bindir}/kateenc -%{_mandir}/man1/KateDJ.* %{_mandir}/man1/katalyzer.* %{_mandir}/man1/katedec.* %{_mandir}/man1/kateenc.* @@ -120,6 +136,9 @@ make check %changelog +* Tue Jul 02 2019 Nicolas Chauvet - 0.4.1-17 +- Disable python2 for f31+ + * Fri Feb 01 2019 Fedora Release Engineering - 0.4.1-16 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild From cf604ae2d06ef084e7e032e8a919a8439088c19b Mon Sep 17 00:00:00 2001 From: Nicolas Chauvet Date: Tue, 2 Jul 2019 16:10:40 +0200 Subject: [PATCH 43/52] fixup reversed condition --- libkate.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libkate.spec b/libkate.spec index 54bbf7c..34690ee 100644 --- a/libkate.spec +++ b/libkate.spec @@ -95,7 +95,7 @@ find %{buildroot} -name '*.la' -exec rm -f {} ';' touch -r %{buildroot}%{_includedir}/kate/kate_config.h \ %{buildroot}%{_includedir}/kate/kate.h -%if 0%{!?_without_python2} +%if 0%{?_without_python2} rm -rf %{buildroot}%{_mandir}/man1/KateDJ.1* %endif From af8ebbbcf95a44f058279951447c9ed3936e9edc Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 25 Jul 2019 13:35:24 +0000 Subject: [PATCH 44/52] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- libkate.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libkate.spec b/libkate.spec index 34690ee..e298dca 100644 --- a/libkate.spec +++ b/libkate.spec @@ -4,7 +4,7 @@ Name: libkate Version: 0.4.1 -Release: 17%{?dist} +Release: 18%{?dist} Summary: Libraries to handle the Kate bitstream format License: BSD @@ -136,6 +136,9 @@ make check %changelog +* Thu Jul 25 2019 Fedora Release Engineering - 0.4.1-18 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Tue Jul 02 2019 Nicolas Chauvet - 0.4.1-17 - Disable python2 for f31+ From 608441da18fc794029cb74c4bf9f057539111a1b Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 29 Jan 2020 09:29:20 +0000 Subject: [PATCH 45/52] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- libkate.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libkate.spec b/libkate.spec index e298dca..e794366 100644 --- a/libkate.spec +++ b/libkate.spec @@ -4,7 +4,7 @@ Name: libkate Version: 0.4.1 -Release: 18%{?dist} +Release: 19%{?dist} Summary: Libraries to handle the Kate bitstream format License: BSD @@ -136,6 +136,9 @@ make check %changelog +* Wed Jan 29 2020 Fedora Release Engineering - 0.4.1-19 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Thu Jul 25 2019 Fedora Release Engineering - 0.4.1-18 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild From cbdf695063afc0bb6a64062f00fac6724c4a85b2 Mon Sep 17 00:00:00 2001 From: Merlin Mathesius Date: Thu, 16 Jul 2020 15:33:39 -0500 Subject: [PATCH 46/52] Explicitly disable python when building without python2 Signed-off-by: Merlin Mathesius --- libkate.spec | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/libkate.spec b/libkate.spec index e794366..a7cfa0b 100644 --- a/libkate.spec +++ b/libkate.spec @@ -4,7 +4,7 @@ Name: libkate Version: 0.4.1 -Release: 19%{?dist} +Release: 20%{?dist} Summary: Libraries to handle the Kate bitstream format License: BSD @@ -74,6 +74,8 @@ rm tools/kate_lexer.c %build %if 0%{!?_without_python2} export PYTHON=python2 +%else +export PYTHON=: %endif %configure --disable-static @@ -87,6 +89,8 @@ sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool %install %if 0%{!?_without_python2} export PYTHON=python2 +%else +export PYTHON=: %endif %make_install find %{buildroot} -name '*.la' -exec rm -f {} ';' @@ -136,6 +140,9 @@ make check %changelog +* Thu Jul 16 2020 Merlin Mathesius - 0.4.1-20 +- Explicitly disable python when building without python2 + * Wed Jan 29 2020 Fedora Release Engineering - 0.4.1-19 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild From 00f5982762f8f9606491b33b611f73be1c492345 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 28 Jul 2020 04:56:17 +0000 Subject: [PATCH 47/52] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- libkate.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libkate.spec b/libkate.spec index a7cfa0b..da49a17 100644 --- a/libkate.spec +++ b/libkate.spec @@ -4,7 +4,7 @@ Name: libkate Version: 0.4.1 -Release: 20%{?dist} +Release: 21%{?dist} Summary: Libraries to handle the Kate bitstream format License: BSD @@ -140,6 +140,9 @@ make check %changelog +* Tue Jul 28 2020 Fedora Release Engineering - 0.4.1-21 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Thu Jul 16 2020 Merlin Mathesius - 0.4.1-20 - Explicitly disable python when building without python2 From 1e8ee87e85d7d3d1e25f85060ca9e3e1639d386e Mon Sep 17 00:00:00 2001 From: Tom Stellard Date: Wed, 6 Jan 2021 19:35:57 +0000 Subject: [PATCH 48/52] Add BuildRequires: make https://fedoraproject.org/wiki/Changes/Remove_make_from_BuildRoot --- libkate.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/libkate.spec b/libkate.spec index da49a17..f58c230 100644 --- a/libkate.spec +++ b/libkate.spec @@ -11,6 +11,7 @@ License: BSD URL: http://git.xiph.org/?p=users/oggk/kate.git;a=summary Source0: http://libkate.googlecode.com/files/libkate-%{version}.tar.gz +BuildRequires: make BuildRequires: gcc %if 0%{!?_without_python2} BuildRequires: python2-devel From fd14090b290a928524b04d811eabdfffd40fcae5 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 26 Jan 2021 17:21:04 +0000 Subject: [PATCH 49/52] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- libkate.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libkate.spec b/libkate.spec index f58c230..3371450 100644 --- a/libkate.spec +++ b/libkate.spec @@ -4,7 +4,7 @@ Name: libkate Version: 0.4.1 -Release: 21%{?dist} +Release: 22%{?dist} Summary: Libraries to handle the Kate bitstream format License: BSD @@ -141,6 +141,9 @@ make check %changelog +* Tue Jan 26 2021 Fedora Release Engineering - 0.4.1-22 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Tue Jul 28 2020 Fedora Release Engineering - 0.4.1-21 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From 920064c8a3cd295c142c40a0bc8f2809c9a7fff5 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 22 Jul 2021 11:40:38 +0000 Subject: [PATCH 50/52] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- libkate.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libkate.spec b/libkate.spec index 3371450..98c6593 100644 --- a/libkate.spec +++ b/libkate.spec @@ -4,7 +4,7 @@ Name: libkate Version: 0.4.1 -Release: 22%{?dist} +Release: 23%{?dist} Summary: Libraries to handle the Kate bitstream format License: BSD @@ -141,6 +141,9 @@ make check %changelog +* Thu Jul 22 2021 Fedora Release Engineering - 0.4.1-23 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Tue Jan 26 2021 Fedora Release Engineering - 0.4.1-22 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From cf84a5524f582aa6b5b95078f70d1c2b326a63e5 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 20 Jan 2022 16:31:45 +0000 Subject: [PATCH 51/52] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- libkate.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libkate.spec b/libkate.spec index 98c6593..a482314 100644 --- a/libkate.spec +++ b/libkate.spec @@ -4,7 +4,7 @@ Name: libkate Version: 0.4.1 -Release: 23%{?dist} +Release: 24%{?dist} Summary: Libraries to handle the Kate bitstream format License: BSD @@ -141,6 +141,9 @@ make check %changelog +* Thu Jan 20 2022 Fedora Release Engineering - 0.4.1-24 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Thu Jul 22 2021 Fedora Release Engineering - 0.4.1-23 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild From 698c5af27d5f3bbe92244258cf1a43222bb0a80b Mon Sep 17 00:00:00 2001 From: MSVSphere Packaging Team Date: Mon, 30 Oct 2023 23:09:35 +0300 Subject: [PATCH 52/52] Remove unnecessary files --- sources | 1 - 1 file changed, 1 deletion(-) delete mode 100644 sources diff --git a/sources b/sources deleted file mode 100644 index 600c148..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -1dfdbdeb2fa5d07063cf5b8261111fca libkate-0.4.1.tar.gz