Compare commits
10 Commits
f030b107ed
...
d49aeae23f
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d49aeae23f | ||
|
|
74892ca065 | ||
|
|
dfe4951a16 | ||
|
|
8d7ac30597 | ||
|
|
329cd0d117 | ||
|
|
6a8135bfc4 | ||
|
|
1adfc199a5 | ||
|
|
b772fa921a | ||
|
|
5616619894 | ||
|
|
b8e5d63286 |
@ -1,28 +0,0 @@
|
|||||||
diff -Naurp libiec61883-1.2.0.orig/examples/Makefile.am libiec61883-1.2.0/examples/Makefile.am
|
|
||||||
--- libiec61883-1.2.0.orig/examples/Makefile.am 2006-09-24 15:34:12.000000000 -0400
|
|
||||||
+++ libiec61883-1.2.0/examples/Makefile.am 2009-01-15 10:29:02.265594991 -0500
|
|
||||||
@@ -1,6 +1,6 @@
|
|
||||||
|
|
||||||
-noinst_PROGRAMS = test-amdtp test-dv test-mpeg2 test-plugs
|
|
||||||
-bin_PROGRAMS = plugreport plugctl
|
|
||||||
+noinst_PROGRAMS =
|
|
||||||
+bin_PROGRAMS = plugreport plugctl test-amdtp test-dv test-mpeg2 test-plugs
|
|
||||||
man_MANS = plugreport.1 plugctl.1
|
|
||||||
EXTRA_DIST = plugreport.1 plugctl.1
|
|
||||||
|
|
||||||
diff -Naurp libiec61883-1.2.0.orig/examples/Makefile.in libiec61883-1.2.0/examples/Makefile.in
|
|
||||||
--- libiec61883-1.2.0.orig/examples/Makefile.in 2009-01-15 01:33:33.000000000 -0500
|
|
||||||
+++ libiec61883-1.2.0/examples/Makefile.in 2009-01-15 10:28:57.088402078 -0500
|
|
||||||
@@ -32,9 +32,10 @@ PRE_UNINSTALL = :
|
|
||||||
POST_UNINSTALL = :
|
|
||||||
build_triplet = @build@
|
|
||||||
host_triplet = @host@
|
|
||||||
-noinst_PROGRAMS = test-amdtp$(EXEEXT) test-dv$(EXEEXT) \
|
|
||||||
+noinst_PROGRAMS =
|
|
||||||
+bin_PROGRAMS = plugreport$(EXEEXT) plugctl$(EXEEXT) \
|
|
||||||
+ test-amdtp$(EXEEXT) test-dv$(EXEEXT) \
|
|
||||||
test-mpeg2$(EXEEXT) test-plugs$(EXEEXT)
|
|
||||||
-bin_PROGRAMS = plugreport$(EXEEXT) plugctl$(EXEEXT)
|
|
||||||
subdir = examples
|
|
||||||
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
|
|
||||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
|
||||||
Binary file not shown.
@ -1,12 +1,12 @@
|
|||||||
Name: libiec61883
|
Name: libiec61883
|
||||||
Version: 1.2.0
|
Version: 1.2.0
|
||||||
Release: 21
|
Release: 24
|
||||||
Summary: Streaming library for IEEE1394
|
Summary: Streaming library for IEEE1394
|
||||||
License: LGPLv2+
|
License: LGPLv2+
|
||||||
URL: http://ieee1394.wiki.kernel.org/index.php/Libraries#libiec61883
|
URL: http://ieee1394.wiki.kernel.org/index.php/Libraries#libiec61883
|
||||||
Source: http://www.kernel.org/pub/linux/libs/ieee1394/%{name}-%{version}.tar.gz
|
Source: https://mirrors.edge.kernel.org/pub/linux/libs/ieee1394/%{name}-%{version}.tar.gz
|
||||||
Patch0001: libiec61883-1.2.0-installtests.patch
|
Patch0001: libiec61883-channel-allocation-without-local-node-rw.patch
|
||||||
Patch0002: libiec61883-channel-allocation-without-local-node-rw.patch
|
Recommends: %{name}-help = %{version}-%{release}
|
||||||
BuildRequires: gcc libraw1394-devel
|
BuildRequires: gcc libraw1394-devel
|
||||||
Provides: libiec61883-utils
|
Provides: libiec61883-utils
|
||||||
Obsoletes: libiec61883-utils
|
Obsoletes: libiec61883-utils
|
||||||
@ -23,11 +23,8 @@ Requires: %{name} = %{version}-%{release}
|
|||||||
%description devel
|
%description devel
|
||||||
Libiec61883-devel contains development files for libiec61883.
|
Libiec61883-devel contains development files for libiec61883.
|
||||||
|
|
||||||
%package help
|
%package_help
|
||||||
Summary: Help documents for libiec61883
|
|
||||||
|
|
||||||
%description help
|
|
||||||
Man pages and other related help documents for libiec61883.
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -n %{name}-%{version} -p1
|
%autosetup -n %{name}-%{version} -p1
|
||||||
@ -62,5 +59,14 @@ sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
|
|||||||
%{_mandir}/man1/*.1*
|
%{_mandir}/man1/*.1*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Aug 19 2024 wangbowen <wangbowen@cqsoftware.com.cn> - 1.2.0-24
|
||||||
|
- Replace declaration of help subpackage with the 'package_help' macro
|
||||||
|
|
||||||
|
* Thu Nov 12 2020 xinghe <xinghe1@huawei.com> - 1.2.0-23
|
||||||
|
- add help for Recommends
|
||||||
|
|
||||||
|
* Sun Jan 19 2020 yangjian<yangjian79@huawei.com> - 1.2.0-22
|
||||||
|
- Change the Source to valid address
|
||||||
|
|
||||||
* Wed Oct 23 2019 yanzhihua <yanzhihua4@huawei.com> - 1.2.0-21
|
* Wed Oct 23 2019 yanzhihua <yanzhihua4@huawei.com> - 1.2.0-21
|
||||||
- Package init
|
- Package init
|
||||||
|
|||||||
4
libiec61883.yaml
Normal file
4
libiec61883.yaml
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
version_control: github
|
||||||
|
src_repo: Distrotech/libiec61883
|
||||||
|
tag_prefix: ^v
|
||||||
|
seperator: .
|
||||||
Loading…
x
Reference in New Issue
Block a user