-
Notifications
You must be signed in to change notification settings - Fork 3
/
makedist.py
37 lines (31 loc) · 971 Bytes
/
makedist.py
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
# Template makedist.py file
# Set WEBSITE to the name of the web site that this package will be
# deposited in. The URL will always be:
# http://$WEBSITE/$PACKAGE/
WEBSITE = 'untroubled.org'
# If LISTSUB is set, makedist will add a note regarding mailing list
# subscription.
LISTSUB = '[email protected]'
LISTURL = 'http://lists.untroubled.org/?list=bgware'
# Set EXTRAS to a list of any extra files that should go into the
# base directory in the destination site.
EXTRAS = [
'ANNOUNCEMENT',
'ChangeLog',
'NEWS',
'README',
'TODO',
'*.html',
'plugin-template.c',
]
# Set RPMUPLOAD to a list of additional hostname/path destinations to
# which to upload the source and binary RPMs.
RPMUPLOAD = [
#( 'incoming.redhat.com', 'libc6' ),
]
# Set LISTS to the mailing list(s) to send the announcement to
LISTS = [
]
# Run any extra commands to prepare the source tree (such as making
# documentation) here.