Skip to content

Commit 2a42107

Browse files
committed
Release version 1.1
Remove also old version numbers, contains, etc... and update doc
1 parent 921f013 commit 2a42107

File tree

15 files changed

+32
-43
lines changed

15 files changed

+32
-43
lines changed

AUTHORS

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
libudffs
22
Ben Fennema <bfennema@falcon.csc.calpoly.edu>
3+
Pali Rohár <pali.rohar@gmail.com>
34

45
mkudffs
56
Ben Fennema <bfennema@falcon.csc.calpoly.edu>
7+
Pali Rohár <pali.rohar@gmail.com>
8+
Steve Kenton <skenton@ou.edu>
69

710
cdrwtool
811
Jens Axboe <axboe@suse.de>
@@ -14,3 +17,5 @@ pktsetup
1417
doc
1518
Paul Thompson <set@pobox.com>
1619
Ben Fennema <bfennema@falcon.csc.calpoly.edu>
20+
Pali Rohár <pali.rohar@gmail.com>
21+
Steve Kenton <skenton@ou.edu>

cdrwtool/options.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,12 @@ void usage(void)
5555
{
5656
int i;
5757

58+
printf("cdrwtool from " PACKAGE_NAME " " PACKAGE_VERSION "\nUsage:\n\tcdrwtool [options]\nOptions:\n");
5859
for (i = 0; long_options[i].name != NULL; i++)
5960
if (long_options[i].val >= 0xFF)
60-
printf("\t--%s\n", long_options[i].name);
61+
printf("\t--%s\t%s\n", long_options[i].name, long_options[i].name);
6162
else
62-
printf("\t%c\t%s\n", long_options[i].val, long_options[i].name);
63+
printf("\t-%c\t%s\n", long_options[i].val, long_options[i].name);
6364
exit(1);
6465
}
6566

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
dnl Process this file with autoconf to produce a configure script.
2-
AC_INIT(mkudffs, 1.0.0b3)
2+
AC_INIT(udftools, 1.1, , , [https://github.com/pali/udftools/])
33
AC_CONFIG_AUX_DIR(config)
44
AM_CONFIG_HEADER(include/config.h:include/config.in)
55
AM_INIT_AUTOMAKE

doc/HOWTO.udf

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,9 @@ filesystem will not increase if you delete files.
1616
In order to do packet writing under Linux, your kernel needs
1717
both support for UDF (Universal Disc Format) filesystems and for
1818
packet writing. This is the case for kernels later than about 2.6.10.
19-
For earlier kernels, you may have to apply patches from Peter
20-
Osterlund <http://web.telia.com/~u89404340/packet.html>. That site
21-
also has patches for udftools to make them work with recent kernels -
22-
they have been applied to this package. This package tries to support
23-
both old-style packet writing (kernel <2.6.8), and the newer variant
24-
(>=2.6.10), with and without udev. Use a recent 2.6 kernel for optimum
25-
results!
19+
This package tries to support both old-style packet writing
20+
(kernel <2.6.8), and the newer variant (>=2.6.10), with and without
21+
udev. Use a recent 2.6 kernel for optimum results!
2622

2723

2824
Formatting and using a UDF DVD-RW or CD-RW for packet writing

doc/cdrwtool.1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
.\" udf-0.9.5 source
2525
.\"
2626
.\"
27-
.TH CDRWTOOL 1 "2002-02-09" "udftools-1.0.0b2" "Commands"
27+
.TH CDRWTOOL 1 "udftools" "Commands"
2828

2929
.SH NAME
3030
cdrwtool \- perform various actions on a CD-R, CD-RW, and DVD-R
@@ -145,7 +145,7 @@ Some additions by Richard Atterer <atterer@debian.org>
145145
.SH AVAILABILITY
146146
.B cdrwtool
147147
is part of the udftools package and is available from
148-
http://sourceforge.net/projects/linux-udf/.
148+
https://github.com/pali/udftools/.
149149

150150
.SH "SEE ALSO"
151151
.BR pktsetup (8)

doc/mkudffs.8

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
.\" References consulted:
2525
.\" udftools src
2626
.\"
27-
.TH MKUDFFS 8 "2002-02-09" "udftools-1.0.0b2" "System Management Commands"
27+
.TH MKUDFFS 8 "udftools" "System Management Commands"
2828

2929
.SH NAME
3030
mkudffs \- create an UDF filesystem
@@ -224,9 +224,10 @@ returns 0 if successful, non-zero if there are problems.
224224
.SH AUTHOR
225225
.nf
226226
Ben Fennema <bfennema@falcon.csc.calpoly.edu>
227+
Pali Rohár <pali.rohar@gmail.com>
227228
.fi
228229

229230
.SH AVAILABILITY
230231
.B mkudffs
231232
is part of the udftools package and is available from
232-
http://sourceforge.net/projects/linux-udf/.
233+
https://github.com/pali/udftools/.

doc/pktsetup.8

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
.\" losetup.8
2525
.\" udftools src
2626
.\"
27-
.TH PKTSETUP 8 "2002-02-09" "udftools-1.0.0b2" "System Management Commands"
27+
.TH PKTSETUP 8 "udftools" "System Management Commands"
2828

2929
.SH NAME
3030
pktsetup \- set up and tear down packet device associations
@@ -95,7 +95,7 @@ Some additions by Richard Atterer <atterer@debian.org>
9595
.SH AVAILABILITY
9696
.B pktsetup
9797
is part of the udftools package and is available from
98-
http://sourceforge.net/projects/linux-udf/
98+
https://github.com/pali/udftools/.
9999

100100
.SH "SEE ALSO"
101101
.BR cdrwtool (1)

doc/wrudf.1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.\" Text automatically generated by txt2man
2-
.TH wrudf 1 "16 April 2013" "udftools" "Linux Reference Manual"
2+
.TH wrudf 1 "udftools" "Linux Reference Manual"
33
.SH NAME
44
\fBwrudf \fP- Maintain an UDF filesystem.
55
.SH SYNOPSIS
@@ -55,6 +55,6 @@ quit \fBwrudf\fP
5555
exit
5656
quit \fBwrudf\fP
5757
.SH AVAILABILITY
58-
\fBwrudf\fP is part of the udftools package and is available from http://linux-udf.sourceforge.net.
58+
\fBwrudf\fP is part of the udftools package and is available from https://github.com/pali/udftools/.
5959
.SH SEE ALSO
6060
\fBcdrwtool\fP(1), \fBmkudffs\fP(8), \fBpktsetup\fP(8)

libudffs/crc.c

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,6 @@
1414
*
1515
* AT&T gives permission for the free use of the CRC source code.
1616
*
17-
* CONTACTS
18-
* E-mail regarding any portion of the Linux UDF file system should be
19-
* directed to the development team mailing list (run by majordomo):
20-
* linux_udf@hootie.lvld.hp.com
21-
*
2217
* COPYRIGHT
2318
* This file is distributed under the terms of the GNU General Public
2419
* License (GPL). Copies of the GPL can be obtained from:

mkudffs/defaults.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,8 +176,8 @@ struct impUseVolDescImpUse default_iuvdiu =
176176
},
177177
logicalVolIdent : "\x08" "LinuxUDF",
178178
LVInfo1 : "\x08" "Linux mkudffs " PACKAGE_VERSION,
179-
LVInfo2 : "\x08" "Linux UDF " UDFFS_VERSION " (" UDFFS_DATE ")",
180-
LVInfo3 : "\x08" EMAIL_STRING,
179+
LVInfo2 : "\x08" "Linux udftools " PACKAGE_VERSION,
180+
LVInfo3 : "\x08" PACKAGE_URL,
181181
impIdent :
182182
{
183183
ident : UDF_ID_DEVELOPER,

0 commit comments

Comments
 (0)