changed debian/source/format to native

This commit is contained in:
openKylinBot 2022-05-14 00:34:59 +08:00
parent bc9eb9b461
commit 7621261f9f
5 changed files with 1 additions and 152 deletions

View File

@ -1,46 +0,0 @@
From: Daniel Kobras <kobras@debian.org>
Date: Sat, 14 May 2022 00:34:59 +0800
Subject: Update documentation to clarify that pluginfo option is not meant
to be understood by non-developers.
---
test/dvcont.1 | 5 +++--
test/dvcont.c | 2 +-
2 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/test/dvcont.1 b/test/dvcont.1
index bca3de6..1740a17 100644
--- a/test/dvcont.1
+++ b/test/dvcont.1
@@ -18,7 +18,7 @@
.\" This manual page was written especially for Debian Linux. It is based
.\" on dvcont's help output using help2man and manual hacking.
.\"
-.TH DVCONT 1 "September 2002"
+.TH DVCONT 1 "October 2002" "dvcont"
.SH NAME
dvcont \- send control commands to DV cameras
.SH SYNOPSIS
@@ -95,7 +95,8 @@ given in format HH:MM:SS:FF as above.
Report the status of the device.
.TP
.B pluginfo
-Report available plugs.
+Report available plugs. (This option is mainly intended for internal
+development.)
.TP
.B verbose
Tell the program to tell you debug info.
diff --git a/test/dvcont.c b/test/dvcont.c
index a2cb0ee..669a291 100755
--- a/test/dvcont.c
+++ b/test/dvcont.c
@@ -65,7 +65,7 @@ printf("\neject - Tell the camera to eject the tape (awe your friends!)");
printf("\ntimecode - Report the timecode from the tape (HH:MM:SS:FF)");
printf("\nseek - Tell the camera to go to the <timecode> (HH:MM:SS:FF)");
printf("\nstatus - Report the status of the device");
-printf("\npluginfo - Report available plugs");
+printf("\npluginfo - Report available plugs (developers only)");
printf("\nverbose - Tell the program to tell you debug info.");
printf("\nversion - Tell the program to tell you the program version.");
printf("\nhelp - Tell the program to show you this screen");

View File

@ -1,38 +0,0 @@
From: Alessio Treglia <alessio@debian.org>
Date: Sat, 14 May 2022 00:34:59 +0800
Subject: Several improvements to the manpages.
- Set an useful whatis-entry to panelctl's manpage.
- Fix use of hyphen as minus sign.
Forwarded: no
---
test/dvcont.1 | 2 +-
test/panelctl.1 | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/test/dvcont.1 b/test/dvcont.1
index 1740a17..f00eb3f 100644
--- a/test/dvcont.1
+++ b/test/dvcont.1
@@ -48,7 +48,7 @@ Tell the camera to play in reverse. If already playing, it toggles slow-motion.
.TP
.B trickplay < -14 to +14 >
Tell the camera to play at various speeds.
-0 = forward play, -14 = fastest reverse, -8 = 1X reverse, -1 = slowest reverse,
+0 = forward play, \-14 = fastest reverse, \-8 = 1X reverse, \-1 = slowest reverse,
1 = slowest forward, 8 = 1X forward, 14 = fastest forward.
(Not supported by all cameras.)
.TP
diff --git a/test/panelctl.1 b/test/panelctl.1
index 4c41f4c..27c0ed1 100644
--- a/test/panelctl.1
+++ b/test/panelctl.1
@@ -1,7 +1,7 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.36.
.TH PANELCTL "1" "November 2009" "panelctl 0.2" "User Commands"
.SH NAME
-panelctl \- manual page for panelctl 0.2
+panelctl \- remote control for set-top boxes
.SH SYNOPSIS
.B panelctl
[\fIOPTION\fR...] \fI<channel|command>\fR

View File

@ -1,64 +0,0 @@
From: Alessio Treglia <alessio@debian.org>
Date: Sat, 14 May 2022 00:34:59 +0800
Subject: Fix various misspellings.
Forwarded: no
---
libavc1394/avc1394_internal.c | 2 +-
test/dvcont.c | 2 +-
test/panelctl.c | 2 +-
test/romtest.c | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/libavc1394/avc1394_internal.c b/libavc1394/avc1394_internal.c
index a101a5c..df21338 100644
--- a/libavc1394/avc1394_internal.c
+++ b/libavc1394/avc1394_internal.c
@@ -76,7 +76,7 @@ char *decode_ctype(quadlet_t command)
return "NOTIFY";
if (resp == AVC1394_CTYPE_GENERAL_INQUIRY)
return "GENERAL INQUIRY";
- return "UNKOWN CTYPE";
+ return "UNKNOWN CTYPE";
}
int avc_fcp_handler(raw1394handle_t handle, nodeid_t nodeid, int response,
diff --git a/test/dvcont.c b/test/dvcont.c
index 669a291..b57f530 100755
--- a/test/dvcont.c
+++ b/test/dvcont.c
@@ -100,7 +100,7 @@ int main (int argc, char *argv[])
{
if (!errno)
{
- fprintf(stderr, "Not Compatable!\n");
+ fprintf(stderr, "Not Compatible!\n");
} else {
perror("Couldn't get 1394 handle");
fprintf(stderr, "Is ieee1394, driver, and raw1394 loaded?\n");
diff --git a/test/panelctl.c b/test/panelctl.c
index 3964729..85340bc 100644
--- a/test/panelctl.c
+++ b/test/panelctl.c
@@ -282,7 +282,7 @@ int main (int argc, char *argv[])
if (!handle) {
if (!errno) {
- fprintf(stderr, "Not Compatable!\n");
+ fprintf(stderr, "Not Compatible!\n");
} else {
perror("Could not get 1394 handle");
fprintf(stderr, "Is ieee1394, driver, and raw1394 loaded?\n");
diff --git a/test/romtest.c b/test/romtest.c
index 2c367f3..a294162 100644
--- a/test/romtest.c
+++ b/test/romtest.c
@@ -43,7 +43,7 @@ int main (int argc, char *argv[])
#endif
if (!handle) {
if (!errno) {
- printf("Not Compatable!\n");
+ printf("Not Compatible!\n");
} else {
printf("\ncouldn't get handle\n");
printf("Not Loaded!\n");

View File

@ -1,3 +0,0 @@
0001-plugs_are_devel_only.patch
0002-manpages_improvements.patch
0003-misspellings.patch

View File

@ -1 +1 @@
3.0 (quilt)
3.0 (native)