summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/support/ctan-o-mat/README.md
blob: 964d1690ac29e0749e89cf65c5eb2792a3393acb (plain)
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
# ctan-o-mat - Upload or validate a package for CTAN

## SYNOPSIS

```
ctan-o-mat [options] [<package configuration>]
```

## DESCRIPTION

This program can be used to automate the upload of a package to CTAN
(https://www.ctan.org). The description of the package is contained in
a configuration file. Thus it can be updated easily without the need
to fill a Web form with the same old information.

The provided information is validated in any case. If the validation
succeeds and not only the validation is requested then the provided
archive file is placed in the incoming area of the CTAN for further
processing by the CTAN team.

In any case any finding during the validation is reported at the end
of the processing. Note that the validation is the default and a
official submission has to be requested by the an appropriate command
line option.

*ctan-o-mat* requires an Internet connection to the CTAN server. Even the
validation retrieves the known attributes and the basic constraints
from the server.


## CONFIGURATION

The default configuration is read from a file with the same name as
the current directory an the extension `.pkg`. This file name can be
overwritten on the command line.

The configuration depends on the features supported by the CTAN server.
Since these features can change over time the configuration is not
hard-coded in *ctan-o-mat*. You can request a template of the
configuration via the command line parameter `-init`.


## OPTIONS

<dl>
  <dt><code>-h</code></dt>
  <dt><code>--help</code></dt>
  <dd>
    Print this short summary about the usage and exit the program.
  </dd>

  <dt><code>--validate</code></dt>
  <dt><code>-n</code></dt>
  <dt><code>--noaction</code></dt>
  <dd>
    Do not perform the final upload. The package is validated and the
    resulting messages are printed.
  </dd> 

  <dt><code>-i</code></dt>
  <dt><code>--init</code></dt>
  <dd>
    Create an empty template for a configuration.
  </dd>
  
  <dt><code>-s</code></dt>
  <dt><code>--submit</code></dt>
  <dd>
    Upload the submission, validate it and officially submit it to
    CTAN it the validation succeeds.
  </dd>
  
  <dt><code>-v</code></dt>
  <dt><code>--verbose</code></dt>
  <dd>
    Print some more information during the processing (verbose mode).
  </dd>

  <dt><code>--version</code></dt>
  <dd>
    Print the version number of this program and exit.
  </dd>

  <dt><code>--validate</code></dt>
  <dd>
    Print some additional debugging information.
  </dd>

  <dt>&lt;package&gt;</dt>
  <dd>
    This parameter is the name of a package configuration
    (see section CONFIGURATION) contained in a file.
  </dd>
</dl>

## CONNECTING VIA PROXIES

If you need to connect to the Internet via a proxy then this can be achieved
by setting some environment variables before running *ctan-o-mat*.
To redirect the request via the proxy simply define an environment variable
`http_proxy` to point to the proxy host -- including protocol and port as
required. Note that the name of the environment variable is supposed to be in *lower* case.


## INSTALLATION

### PREREQUISITE: PERL

*ctan-o-mat* is written in Perl. Thus a Perl interpreter has to be installed,
at least in version 5. It is assumed that the Perl interpreter is reachable
under the name `perl` on the program path.


### PREREQUISITE: LWP

*ctan-o-mat* uses the LWP bundle to connect to the remote server and such.
Thus it has to be installed. With the help of Perl you can install it with
the following command line: 

```
perl -MCPAN -e 'install Bundle::LWP'
```

You might want to check whether LWP can be installed with your package manager. In this case this is the preferred way.

### INSTALLATION STEPS

The installation is straight forward. Just put the file `ctan-o-mat.pl` and one of `ctan-o-mat` or `ctan-o-mat.bat` on your path.

Make sure that these files are executable (if required). Now you are done.


## AUTHOR

[Gerd Neugebauer](mailto:gene@gerd-neugebauer.de)