commit 6f971e944ff43daa4252f56d439e39a367ca0560
Author: Charles R. Anderson <cra(a)alum.wpi.edu>
Date: Thu Jul 8 09:37:31 2021 -0400
Remove dist tag from Obsoletes:
.gitignore | 1 +
sources | 1 +
tivodecode-ng.spec | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
3 files changed, 66 insertions(+)
---
diff --git a/.gitignore b/.gitignore
index e69de29..163d8f4 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/tivodecode-ng-0.5.tar.gz
diff --git a/sources b/sources
index e69de29..33f6cae 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+SHA512 (tivodecode-ng-0.5.tar.gz) =
9aa28f5482652aa05a13a4bde170ea3c855d6b4fd0f0b072fd400b71f76f1e501c2e9a4fd4a8644cecf339dbd3f7e828b9292ba43c9b23718125da9539113612
diff --git a/tivodecode-ng.spec b/tivodecode-ng.spec
new file mode 100644
index 0000000..539974b
--- /dev/null
+++ b/tivodecode-ng.spec
@@ -0,0 +1,64 @@
+%global gittag 0.5
+
+Name: tivodecode-ng
+Version: %{gittag}
+Release: 4%{?dist}
+Summary: Convert a .TiVo file from TiVoToGo to a normal MPEG
+
+# sha1.c is public domain. The QUALCOMM license is just the SSLeay
+# BSD 4-clause "Original" or "Old" License with the 4th clause
+# removed, leaving it equivalent to the BSD license plus a patent
+# grant. The resulting package is therefore just BSD licensed.
+License: BSD
+URL:
https://github.com/wmcbrine/tivodecode-ng
+Source0: %{url}/archive/%{gittag}/%{name}-%{version}.tar.gz
+
+BuildRequires: gcc-c++
+BuildRequires: make
+
+Provides: tivodecode = %{version}-%{release}
+Obsoletes: tivodecode < 0.2-0.17.pre4
+
+%description
+tivodecode-ng ("ng" for "next generation") is a portable
command-line
+tool for decrypting .TiVo video files into program streams or
+transport streams, depending on the source. It also will decrypt the
+metadata (title, description, etc.). It's based on tivodecode by
+Jeremy Drake, with enhancements by several contributors. tivodecode-ng
+adds support for transport streams, although that's a work in
+progress. (Note that support for program streams is as complete as
+ever.)
+
+
+%prep
+%autosetup -n %{name}-%{gittag}
+
+
+%build
+#autoreconf -i -f
+%configure
+%{make_build}
+
+
+%install
+%{make_install}
+
+
+%files
+%{_bindir}/*
+%license COPYING.md
+%doc AUTHORS.md README.md NEWS.md
+
+
+%changelog
+* Mon Jul 05 2021 Charles R. Anderson <cra(a)alum.wpi.edu> - 0.5-4
+- Remove dist tag from Obsoletes:
+
+* Sun Jul 04 2021 Charles R. Anderson <cra(a)alum.wpi.edu> - 0.5-3
+- Remove QUALCOMM from license field and use url macro in Source0
+
+* Sat Jul 03 2021 Charles R. Anderson <cra(a)alum.wpi.edu> - 0.5-2
+- Remove Group and BR make
+
+* Thu Jul 01 2021 Charles R. Anderson <cra(a)alum.wpi.edu> - 0.5-1
+- initial release