-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathREADME
111 lines (80 loc) · 3.05 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
Bindle Binaries Admin Tools
===========================
Bindle Binaries Admin Tools is a collection of scripts and files which aid
in the management of projects.
Contents
--------
1. Disclaimer
2. Software Requirements
3. Tested Platforms
4. Maintainers
5. Community
6. Source Code
7. Package Maintence Notes
Disclaimer
==========
This software is provided by the copyright holders and contributors "as
is" and any express or implied warranties, including, but not limited to,
the implied warranties of merchantability and fitness for a particular
purpose are disclaimed. In no event shall Bindle Binaries be liable for
any direct, indirect, incidental, special, exemplary, or consequential
damages (including, but not limited to, procurement of substitute goods or
services; loss of use, data, or profits; or business interruption) however
caused and on any theory of liability, whether in contract, strict
liability, or tort (including negligence or otherwise) arising in any way
out of the use of this software, even if advised of the possibility of
such damage.
Software Requirements
=====================
GNU GCC 4.2.1
GNU Libtool 2.4
GNU Autoconf 2.65
GNU Automake 1.11.1
Git 1.7.2.3
Bash Shell
Maintainers
===========
David M. Syzdek
Bindle Binaries
syzdek@bindlebinaries.com
Source Code
===========
The source code for this project is maintained using git
(http://git-scm.com). The following contains information to checkout the
source code from the git repository.
Browse Source:
https://github.com/bindle/bindleadmin
http://scm.bindlebinaries.com/scm/com.bindlebinaries/bindleadmin.git
Git URLs:
git://github.com/bindle/bindleadmin.git
git://git.scm.bindlebinaries.com/pub/scm/com.bindlebinaries/bindleadmin.git
http://http.scm.bindlebinaries.com/pub/scm/com.bindlebinaries/bindleadmin.git
ssh://ssh.scm.bindlebinaries.com/pub/scm/com.bindlebinaries/bindleadmin.git
Downloading Source:
$ git clone git://github.com/bindle/bindleadmin.git
Preparing Source:
$ cd bindleadmin
$ ./build-aux/autogen.sh
Git Branches:
master - Current release of packages.
next - changes staged for next release
pu - proposed updates for next release
xx/yy+ - branch for testing new changes before merging to 'pu' branch
Package Maintence Notes
=======================
This is a collection of notes for developers to use when maintaining this
package.
New Release Checklist:
- Switch to 'master' branch in Git repository.
- Update version in configure.ac.
- Update date and version in ChangeLog.
- Commit configure.ac and ChangeLog changes to repository.
- Create tag in git repository:
$ git tag -s v${MAJOR}.${MINOR}
- Push repository to publishing server:
$ git push --tags origin master:master next:next pu:pu
Creating Source Distribution Archives:
$ ./configure
$ make update
$ make distcheck
$ make dist-bzip2