-
Notifications
You must be signed in to change notification settings - Fork 31
/
README
157 lines (103 loc) · 3.92 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
metastore
=========
metastore is a tool to store the metadata of files/directories/links in
a file tree to a separate file and to later compare and apply the stored
metadata to said file tree.
It was originally written as a supplement to git, which does not store
all metadata, making it unsuitable for e.g. storing /etc in a
repository.
metastore can also be helpful if you want to create a tarball of a file
tree and make sure that "everything" (e.g. xattrs, mtime, owner, group)
is stored along with the files.
Stored metadata
---------------
metastore stores following metadata in its files:
- owner,
- group,
- permissions,
- xattrs,
- mtime - optionally.
Usage
-----
See metastore.txt file, which is plain-text version of the manual page.
If you want to use metastore within git repository, then consider
copying exemplary scripts from examples/hooks/ directory to hooks
subdirectory in your git directory, and make them executable.
You can also tune them if it's necessary. But.
Before using, please read the warning in the comments of pre-commit hook.
Mind that merge conflicts can only be solved manually, because metastore
file is binary in its current form (there's a plan to fix it in future).
Dump action can be really helpful in such cases.
File format
-----------
See FILEFORMAT file, which describes internals of metastore file.
Requirements
------------
- Linux
- GNU make
- C99 compiler, like gcc or clang
- libbsd
Download
--------
You can obtain any released version (tarball and signature) from:
ftp://ftp.przemoc.net/pub/software/utils/metastore/
http://ftp.przemoc.net/pub/software/utils/metastore/
Signer should be the current maintainer, see AUTHORS file.
Alternatively, you can get it from:
https://github.com/przemoc/metastore/releases/
If you want to see the latest source code, then git clone following URL:
https://github.com/przemoc/metastore
Building
--------
Simply run `make` from project's root directory.
Building out-of-tree is supported out-of-the-box. Go to your chosen
build directory and run there:
$ make -f path/to/metastore/Makefile
Installation
------------
Run `make install`. Default settings for installation are:
PREFIX = /usr/local
EXECPREFIX = ${PREFIX}
(/usr/local)
BINDIR = ${EXECPREFIX}/bin
(/usr/local/bin)
DATAROOTDIR = ${PREFIX}/share
(/usr/local/share)
DOCDIR = ${DATAROOTDIR}/doc/metastore
(/usr/local/share/doc/metastore)
MANDIR = ${DATAROOTDIR}/man
(/usr/local/share/man)
You can always change them, e.g.:
$ make install PREFIX=/usr
DESTDIR is also supported.
Reporting issues
----------------
Please use the issue tracker provided by GitHub to send bug reports
or feature requests.
https://github.com/przemoc/metastore/issues
If you're sending a bug report, then please provide some basic info:
- What system do you have?
(`uname -a`, `lsb_release -drc`)
- What gcc version have you used for building metastore?
(`gcc -v`)
- Do you use any custom FLAGS during build?
(`set | grep FLAGS=`)
- What libc implementation and version are you using?
- What metastore version are you using?
(`metastore -V`)
- What filesystem do you use and how it is mounted?
(`mount | grep $(df . | awk 'NR==2{print$1}')`)
Mailing list
------------
metastore has one official read-only mailing list dedicated to
announcements like new version releases or other important updates.
You can subscribe it using following web page:
https://www.freelists.org/list/metastore-announce
or by sending email to [email protected]
with `subscribe` in the Subject field.
Archive for metastore-announce mailing list is available at:
https://www.freelists.org/archive/metastore-announce
License
-------
The project is licensed under the terms of the GNU GPL v2 only license.
See LICENSE.GPLv2 file for the full license text.