Skip to content

Commit 7d7131a

Browse files
author
Rolf
committed
- prepared release v1.0.8
- bumped copyright dates - added xcshareddata to .gitignore
1 parent 81405bd commit 7d7131a

File tree

11 files changed

+25
-12
lines changed

11 files changed

+25
-12
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
.DS_Store
2+
xcshareddata
23
xcuserdata
34
*.xcworkspace

ChangeLog

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,21 @@
11
This is the ChangeLog of the clone project
22

33
Created by Dr. Rolf Jansen on 2013-02-19.
4-
Copyright (c) 2013-2019. All rights reserved.
4+
Copyright (c) 2013-2020. All rights reserved.
55

66
Note: Milestones are embraced with ••••
77

88

9+
•••• 2020-04-20 -- Created a snapshot of r83 for release as v1.0.8, and submitted it to FreeBSD Ports ••••
10+
11+
12+
2020-04-20 22:35 rj - r83
13+
14+
* all files
15+
- prepared release v1.0.8
16+
- bumped copyright dates
17+
- added xcshareddata to .gitignore
18+
919
2019-08-03 09:40 rj - r82
1020

1121
* utils.h, clone.c, clone.1

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
BSD 2-Clause License
22

3-
Copyright (c) 2018, Dr. Rolf Jansen
3+
Copyright (c) 2013-2020, Dr. Rolf Jansen
44
All rights reserved.
55

66
Redistribution and use in source and binary forms, with or without

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Makefile for clone(1)
22
#
33
# Created by Dr. Rolf Jansen on 2013-01-13.
4-
# Copyright (c) 2013-2018. All rights reserved.
4+
# Copyright (c) 2013-2020. All rights reserved.
55
#
66
# Redistribution and use in source and binary forms, with or without modification,
77
# are permitted provided that the following conditions are met:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ attributes and access control lists.
1010
clone is useful for cloning (thus backing-up) live file systems, and it can
1111
also be used in incremental and synchronization mode.
1212

13-
clone works on FreeBSD and Mac OS X.
13+
clone works on FreeBSD and macOS.
1414

1515
clone is very fast, for example, cloning a whole UFS2 file hierarchy on
1616
FreeBSD 9.1 of in total 2.3 TBytes of data from one hard disk to another

clone.1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.\" man file clone(1)
22
.\"
33
.\" Created by Dr. Rolf Jansen on 2013-01-13.
4-
.\" Copyright (c) 2013-2019. All rights reserved.
4+
.\" Copyright (c) 2013-2020. All rights reserved.
55
.\"
66
.\" Redistribution and use in source and binary forms, with or without modification,
77
.\" are permitted provided that the following conditions are met:
@@ -22,7 +22,7 @@
2222
.\" IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
2323
.\" THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2424
.\"
25-
.Dd 2019-08-03
25+
.Dd 2020-04-20
2626
.Dt clone 1 URM \" Program name and manual section number
2727
.Os FreeBSD, Darwin
2828
.Sh NAME \" Section Header - required - don't modify
@@ -52,7 +52,7 @@ Cloning includes the whole directory hierarchy, i.e. sub-directories, files, har
5252
is useful for cloning (thus backing-up) live file systems, and it can also be used in incremental and synchronization mode.
5353
.Pp
5454
.Nm
55-
works on FreeBSD and Mac OS X.
55+
works on FreeBSD and macOS.
5656
.Pp
5757
.Nm
5858
is very fast, for example, cloning a whole UFS2 file hierarchy on FreeBSD 9.1 of in total 2.3 TBytes of data from one hard disk to another took 7.5 h, so the average transfer rate for all kind of files (very small up to very big ones) was about 89 MByte/s.

clone.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// clone
33
//
44
// Created by Dr. Rolf Jansen on 2013-01-13.
5-
// Copyright (c) 2013-2019. All rights reserved.
5+
// Copyright (c) 2013-2020. All rights reserved.
66
//
77
// Redistribution and use in source and binary forms, with or without modification,
88
// are permitted provided that the following conditions are met:
@@ -51,7 +51,7 @@
5151
#include "utils.h"
5252

5353

54-
static const char *version = "Version 1.0.8b (r"STRINGIFY(SVNREV)")";
54+
static const char *version = "Version 1.0.8 (r"STRINGIFY(SVNREV)")";
5555

5656
// Device and file system informations
5757
int *gSourceFSType;

clone.xcodeproj/project.pbxproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
/* End PBXCopyFilesBuildPhase section */
2525

2626
/* Begin PBXFileReference section */
27+
7E363D0524291A3A007AE640 /* .gitignore */ = {isa = PBXFileReference; lastKnownFileType = text; path = .gitignore; sourceTree = "<group>"; };
2728
7E48626F16A345CA008E0F01 /* clone */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = clone; sourceTree = BUILT_PRODUCTS_DIR; };
2829
7E48627316A345CA008E0F01 /* clone.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = clone.c; sourceTree = "<group>"; };
2930
7E48628416A376FD008E0F01 /* utils.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = utils.c; sourceTree = "<group>"; };
@@ -59,6 +60,7 @@
5960
7EDC0F1216D3885F00B6DB4A /* ChangeLog */,
6061
7EFCA776216A55FA001A2F07 /* README.md */,
6162
7EFCA775216A5550001A2F07 /* LICENSE */,
63+
7E363D0524291A3A007AE640 /* .gitignore */,
6264
7E48627016A345CA008E0F01 /* Products */,
6365
);
6466
indentWidth = 3;

svnrev.xcconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
SVNREV="82"
1+
SVNREV="83"

utils.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// clone
33
//
44
// Created by Dr. Rolf Jansen on 2013-01-13.
5-
// Copyright (c) 2013-2018. All rights reserved.
5+
// Copyright (c) 2013-2020. All rights reserved.
66
//
77
// Redistribution and use in source and binary forms, with or without modification,
88
// are permitted provided that the following conditions are met:

0 commit comments

Comments
 (0)