pyreposync 0.0.12__tar.gz → 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pyreposync-0.1.0/.gitignore +6 -0
- pyreposync-0.1.0/PKG-INFO +31 -0
- pyreposync-0.1.0/contrib/reposync.ini +422 -0
- pyreposync-0.1.0/pyproject.toml +31 -0
- {pyreposync-0.0.12 → pyreposync-0.1.0}/pyreposync/__init__.py +184 -88
- {pyreposync-0.0.12 → pyreposync-0.1.0}/pyreposync/downloader.py +16 -15
- {pyreposync-0.0.12 → pyreposync-0.1.0}/pyreposync/rpm_sync.py +139 -77
- pyreposync-0.0.12/MANIFEST.in +0 -3
- pyreposync-0.0.12/PKG-INFO +0 -22
- pyreposync-0.0.12/contrib/pyreposync +0 -6
- pyreposync-0.0.12/pyreposync.egg-info/PKG-INFO +0 -22
- pyreposync-0.0.12/pyreposync.egg-info/SOURCES.txt +0 -15
- pyreposync-0.0.12/pyreposync.egg-info/dependency_links.txt +0 -1
- pyreposync-0.0.12/pyreposync.egg-info/top_level.txt +0 -1
- pyreposync-0.0.12/setup.cfg +0 -7
- pyreposync-0.0.12/setup.py +0 -37
- {pyreposync-0.0.12 → pyreposync-0.1.0}/LICENSE.txt +0 -0
- {pyreposync-0.0.12 → pyreposync-0.1.0}/README.rst +0 -0
- {pyreposync-0.0.12 → pyreposync-0.1.0}/pyreposync/exceptions.py +0 -0
- /pyreposync-0.0.12/pyreposync.egg-info/requires.txt → /pyreposync-0.1.0/requirements.txt +0 -0
@@ -0,0 +1,31 @@
|
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: pyreposync
|
3
|
+
Version: 0.1.0
|
4
|
+
Summary: Orbit Api
|
5
|
+
Project-URL: Source, https://github.com/schlitzered/pyreposync
|
6
|
+
Author-email: "Stephan.Schultchen" <sschultchen@gmail.com>
|
7
|
+
License: The MIT License (MIT)
|
8
|
+
|
9
|
+
Copyright (c) 2015 Stephan Schultchen
|
10
|
+
|
11
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
12
|
+
of this software and associated documentation files (the "Software"), to deal
|
13
|
+
in the Software without restriction, including without limitation the rights
|
14
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
15
|
+
copies of the Software, and to permit persons to whom the Software is
|
16
|
+
furnished to do so, subject to the following conditions:
|
17
|
+
|
18
|
+
The above copyright notice and this permission notice shall be included in
|
19
|
+
all copies or substantial portions of the Software.
|
20
|
+
|
21
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
22
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
23
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
24
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
25
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
26
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
27
|
+
THE SOFTWARE.
|
28
|
+
License-File: LICENSE.txt
|
29
|
+
Classifier: Programming Language :: Python
|
30
|
+
Requires-Python: >=3.9
|
31
|
+
Requires-Dist: requests
|
@@ -0,0 +1,422 @@
|
|
1
|
+
[main]
|
2
|
+
destination = /mnt/sdb/rpm_repos/reposync
|
3
|
+
downloaders = 10
|
4
|
+
log = /mnt/sdb/rpm_repos/reposync/pyreposync.log
|
5
|
+
logretention = 7
|
6
|
+
loglevel = DEBUG
|
7
|
+
#proxy = http://proxy.example.com:3128
|
8
|
+
|
9
|
+
[CentOS/5.11/centosplus/i386:rpm]
|
10
|
+
baseurl = http://vault.centos.org/5.11/centosplus/i386/
|
11
|
+
syncdir = CentOS/5/centosplus/i386
|
12
|
+
tags = EXTERNAL,OS:CentOS5,BASE,I386
|
13
|
+
|
14
|
+
[CentOS/5.11/extras/i386:rpm]
|
15
|
+
baseurl = http://vault.centos.org/5.11/extras/i386/
|
16
|
+
syncdir = CentOS/5/extras/i386
|
17
|
+
tags = EXTERNAL,OS:CentOS5,BASE,I386
|
18
|
+
|
19
|
+
[CentOS/5.11/os/i386:rpm]
|
20
|
+
baseurl = http://vault.centos.org/5.11/os/i386/
|
21
|
+
syncdir = CentOS/5/os/i386
|
22
|
+
tags = EXTERNAL,OS:CentOS5,BASE,I386
|
23
|
+
|
24
|
+
[CentOS/5.11/updates/i386:rpm]
|
25
|
+
baseurl = http://vault.centos.org/5.11/updates/i386/
|
26
|
+
syncdir = CentOS/5/updates/i386
|
27
|
+
tags = EXTERNAL,OS:CentOS5,BASE,I386
|
28
|
+
|
29
|
+
[CentOS/5.11/centosplus/x86_64:rpm]
|
30
|
+
baseurl = http://vault.centos.org/5.11/centosplus/x86_64/
|
31
|
+
syncdir = CentOS/5/centosplus/x86_64
|
32
|
+
tags = EXTERNAL,OS:CentOS5,BASE
|
33
|
+
|
34
|
+
[CentOS/5.11/extras/x86_64:rpm]
|
35
|
+
baseurl = http://vault.centos.org/5.11/extras/x86_64/
|
36
|
+
syncdir = CentOS/5/extras/x86_64
|
37
|
+
tags = EXTERNAL,OS:CentOS5,BASE
|
38
|
+
|
39
|
+
[CentOS/5.11/os/x86_64:rpm]
|
40
|
+
baseurl = http://vault.centos.org/5.11/os/x86_64/
|
41
|
+
syncdir = CentOS/5/os/x86_64
|
42
|
+
tags = EXTERNAL,OS:CentOS5,BASE
|
43
|
+
|
44
|
+
[CentOS/5.11/updates/x86_64:rpm]
|
45
|
+
baseurl = http://vault.centos.org/5.11/updates/x86_64/
|
46
|
+
syncdir = CentOS/5/updates/x86_64
|
47
|
+
tags = EXTERNAL,OS:CentOS5,BASE
|
48
|
+
|
49
|
+
[CentOS/6.9/centosplus/x86_64:rpm]
|
50
|
+
baseurl = http://mirror.23media.de/centos/6.9/centosplus/x86_64/
|
51
|
+
syncdir = CentOS/6/centosplus/x86_64
|
52
|
+
tags = EXTERNAL,OS:CentOS6,BASE,CENTOSPLUS
|
53
|
+
|
54
|
+
[CentOS/6.9/cr/x86_64:rpm]
|
55
|
+
baseurl = http://mirror.23media.de/centos/6.9/cr/x86_64/
|
56
|
+
syncdir = CentOS/6/cr/x86_64
|
57
|
+
tags = EXTERNAL,OS:CentOS6,BASE
|
58
|
+
|
59
|
+
[CentOS/6.9/extras/x86_64:rpm]
|
60
|
+
baseurl = http://mirror.23media.de/centos/6.9/extras/x86_64/
|
61
|
+
syncdir = CentOS/6/extras/x86_64
|
62
|
+
tags = EXTERNAL,OS:CentOS6,BASE
|
63
|
+
|
64
|
+
[CentOS/6.9/fasttrack/x86_64:rpm]
|
65
|
+
baseurl = http://mirror.23media.de/centos/6.9/fasttrack/x86_64/
|
66
|
+
syncdir = CentOS/6/fasttrack/x86_64
|
67
|
+
tags = EXTERNAL,OS:CentOS6,BASE
|
68
|
+
|
69
|
+
[CentOS/6.9/os/x86_64:rpm]
|
70
|
+
baseurl = http://mirror.23media.de/centos/6.9/os/x86_64/
|
71
|
+
syncdir = CentOS/6/os/x86_64
|
72
|
+
tags = EXTERNAL,OS:CentOS6,BASE
|
73
|
+
|
74
|
+
[CentOS/6.9/sclo/rh/x86_64:rpm]
|
75
|
+
baseurl = http://mirror.23media.de/centos/6.9/sclo/x86_64/rh/
|
76
|
+
syncdir = CentOS/6/sclo/x86_64
|
77
|
+
tags = EXTERNAL,OS:CentOS6,BASE
|
78
|
+
|
79
|
+
[CentOS/6.9/sclo/sclo/x86_64:rpm]
|
80
|
+
baseurl = http://mirror.23media.de/centos/6.9/sclo/x86_64/sclo/
|
81
|
+
syncdir = CentOS/6/sclo/x86_64
|
82
|
+
tags = EXTERNAL,OS:CentOS6,BASE
|
83
|
+
|
84
|
+
[CentOS/6.9/updates/x86_64:rpm]
|
85
|
+
baseurl = http://mirror.23media.de/centos/6.9/updates/x86_64/
|
86
|
+
syncdir = CentOS/6/updates/x86_64
|
87
|
+
tags = EXTERNAL,OS:CentOS6,BASE
|
88
|
+
|
89
|
+
[CentOS/7.4.1708/centosplus/x86_64:rpm]
|
90
|
+
baseurl = http://mirror.23media.de/centos/7.4.1708/centosplus/x86_64/
|
91
|
+
syncdir = CentOS/7/centosplus/x86_64
|
92
|
+
tags = EXTERNAL,OS:CentOS7,BASE,CENTOSPLUS
|
93
|
+
|
94
|
+
[CentOS/7.4.1708/cr/x86_64:rpm]
|
95
|
+
baseurl = http://mirror.23media.de/centos/7.4.1708/cr/x86_64/
|
96
|
+
syncdir = CentOS/7/cr/x86_64
|
97
|
+
tags = EXTERNAL,OS:CentOS7,BASE
|
98
|
+
|
99
|
+
[CentOS/7.4.1708/extras/x86_64:rpm]
|
100
|
+
baseurl = http://mirror.23media.de/centos/7.4.1708/extras/x86_64/
|
101
|
+
syncdir = CentOS/7/extras/x86_64
|
102
|
+
tags = EXTERNAL,OS:CentOS7,BASE
|
103
|
+
|
104
|
+
[CentOS/7.4.1708/fasttrack/x86_64:rpm]
|
105
|
+
baseurl = http://mirror.23media.de/centos/7.4.1708/fasttrack/x86_64/
|
106
|
+
syncdir = CentOS/7/fasttrack/x86_64
|
107
|
+
tags = EXTERNAL,OS:CentOS7,BASE
|
108
|
+
|
109
|
+
[CentOS/7.4.1708/os/x86_64:rpm]
|
110
|
+
baseurl = http://mirror.23media.de/centos/7.4.1708/os/x86_64/
|
111
|
+
syncdir = CentOS/7/os/x86_64
|
112
|
+
tags = EXTERNAL,OS:CentOS7,BASE
|
113
|
+
|
114
|
+
[CentOS/7.4.1708/sclo/rh/x86_64:rpm]
|
115
|
+
baseurl = http://mirror.23media.de/centos/7.4.1708/sclo/x86_64/rh/
|
116
|
+
syncdir = CentOS/7/sclo/x86_64
|
117
|
+
tags = EXTERNAL,OS:CentOS7,BASE
|
118
|
+
|
119
|
+
[CentOS/7.4.1708/sclo/sclo/x86_64:rpm]
|
120
|
+
baseurl = http://mirror.23media.de/centos/7.4.1708/sclo/x86_64/sclo/
|
121
|
+
syncdir = CentOS/7/sclo/x86_64
|
122
|
+
tags = EXTERNAL,OS:CentOS7,BASE
|
123
|
+
|
124
|
+
[CentOS/7.4.1708/updates/x86_64:rpm]
|
125
|
+
baseurl = http://mirror.23media.de/centos/7.4.1708/updates/x86_64/
|
126
|
+
syncdir = CentOS/7/updates/x86_64
|
127
|
+
tags = EXTERNAL,OS:CentOS7,BASE
|
128
|
+
|
129
|
+
[EL/5/epel/epel/i386:rpm]
|
130
|
+
baseurl = http://archives.fedoraproject.org/pub/archive/epel/5/i386/
|
131
|
+
tags = EXTERNAL,OS:EL5,EPEL,BASE,I386
|
132
|
+
|
133
|
+
[EL/5/epel/epel/x86_64:rpm]
|
134
|
+
baseurl = http://archives.fedoraproject.org/pub/archive/epel/5/x86_64/
|
135
|
+
tags = EXTERNAL,OS:EL5,EPEL,BASE
|
136
|
+
|
137
|
+
[EL/6/elrepo/elrepoextras/x86_64:rpm]
|
138
|
+
baseurl = http://dfw.mirror.rackspace.com/elrepo/extras/el6/x86_64/
|
139
|
+
tags = EXTERNAL,OS:EL6,ELREPO,BASE
|
140
|
+
|
141
|
+
[EL/6/elrepo/elrepokernel/x86_64:rpm]
|
142
|
+
baseurl = http://dfw.mirror.rackspace.com/elrepo/kernel/el6/x86_64/
|
143
|
+
tags = EXTERNAL,OS:EL6,ELREPO,BASE
|
144
|
+
|
145
|
+
[EL/6/elrepo/elrepo/x86_64:rpm]
|
146
|
+
baseurl = http://dfw.mirror.rackspace.com/elrepo/elrepo/el6/x86_64/
|
147
|
+
tags = EXTERNAL,OS:EL6,ELREPO,BASE
|
148
|
+
|
149
|
+
[EL/6/epel/epel/x86_64:rpm]
|
150
|
+
baseurl = http://mirror.23media.de/epel/6/x86_64/
|
151
|
+
tags = EXTERNAL,OS:EL6,EPEL,BASE
|
152
|
+
|
153
|
+
[EL/6/ius/x86_64:rpm]
|
154
|
+
baseurl = http://mirror.ehv.weppel.nl/ius/stable/CentOS/6/x86_64/
|
155
|
+
tags = EXTERNAL,OS:EL6,IUS
|
156
|
+
|
157
|
+
[EL/6/gluster/:VERSION:/x86_64:rpm]
|
158
|
+
baseurl = http://buildlogs.centos.org/centos/6/storage/x86_64/gluster-:VERSION:/
|
159
|
+
tags = EXTERNAL,OS:EL6,GLUSTER
|
160
|
+
versions = 3.6,3.7,3.8,3.13
|
161
|
+
|
162
|
+
[EL/6/mariadb/:VERSION:/x86_64:rpm]
|
163
|
+
baseurl = http://yum.mariadb.org/:VERSION:/centos6-amd64/
|
164
|
+
tags = EXTERNAL,OS:EL6,MARIADB
|
165
|
+
versions = 10.0,10.1,10.2,10.3
|
166
|
+
|
167
|
+
[EL/6/mongodb/:VERSION:/x86_64:rpm]
|
168
|
+
baseurl = https://repo.mongodb.org/yum/redhat/6Server/mongodb-org/:VERSION:/x86_64/
|
169
|
+
tags = EXTERNAL,OS:EL6,MONGODB
|
170
|
+
versions = 3.2,3.4,3.6
|
171
|
+
|
172
|
+
[EL/6/puppet/:VERSION:/x86_64:rpm]
|
173
|
+
baseurl = https://yum.puppetlabs.com/puppet:VERSION:/el/6/x86_64/
|
174
|
+
tags = EXTERNAL,OS:EL6,PUPPET
|
175
|
+
versions = 5
|
176
|
+
|
177
|
+
[EL/6/remi/:VERSION:/x86_64:rpm]
|
178
|
+
baseurl = http://mirror.23media.de/remi/enterprise/6/:VERSION:/x86_64/
|
179
|
+
tags = EXTERNAL,OS:EL6,REMI
|
180
|
+
versions = php54,php55,php56,php70,php71,php72,remi,safe
|
181
|
+
|
182
|
+
[EL/6/rsyslog/:VERSION:/x86_64:rpm]
|
183
|
+
baseurl = http://rpms.adiscon.com/v:VERSION:-stable/epel-6/x86_64/
|
184
|
+
tags = EXTERNAL,OS:EL6,RSYSLOG
|
185
|
+
versions = 8
|
186
|
+
|
187
|
+
[EL/6/zabbix/:VERSION:/x86_64:rpm]
|
188
|
+
baseurl = https://repo.zabbix.com/zabbix/:VERSION:/rhel/6/x86_64/
|
189
|
+
tags = EXTERNAL,OS:EL6,ZABBIX
|
190
|
+
versions = 3.2,3.4,3.5
|
191
|
+
|
192
|
+
[EL/7/ceph/:VERSION:/noarch:rpm]
|
193
|
+
baseurl = https://download.ceph.com/rpm-:VERSION:/el7/noarch/
|
194
|
+
tags = EXTERNAL,OS:EL7,CEPH
|
195
|
+
versions = luminous
|
196
|
+
|
197
|
+
[EL/7/ceph/:VERSION:/x86_64:rpm]
|
198
|
+
baseurl = https://download.ceph.com/rpm-:VERSION:/el7/x86_64/
|
199
|
+
tags = EXTERNAL,OS:EL7,CEPH
|
200
|
+
versions = luminous
|
201
|
+
|
202
|
+
[EL/7/elrepo/elrepoextras/x86_64:rpm]
|
203
|
+
baseurl = http://dfw.mirror.rackspace.com/elrepo/extras/el7/x86_64/
|
204
|
+
tags = EXTERNAL,OS:EL7,ELREPO,BASE
|
205
|
+
|
206
|
+
[EL/7/elrepo/elrepokernel/x86_64:rpm]
|
207
|
+
baseurl = http://dfw.mirror.rackspace.com/elrepo/kernel/el7/x86_64/
|
208
|
+
tags = EXTERNAL,OS:EL7,ELREPO,BASE
|
209
|
+
|
210
|
+
[EL/7/elrepo/elrepo/x86_64:rpm]
|
211
|
+
baseurl = http://dfw.mirror.rackspace.com/elrepo/elrepo/el7/x86_64/
|
212
|
+
tags = EXTERNAL,OS:EL7,ELREPO,BASE
|
213
|
+
|
214
|
+
[EL/7/epel/epel/x86_64:rpm]
|
215
|
+
baseurl = http://mirror.23media.de/epel/7/x86_64/
|
216
|
+
tags = EXTERNAL,OS:EL7,EPEL,BASE
|
217
|
+
|
218
|
+
[EL/7/ius/x86_64:rpm]
|
219
|
+
baseurl = http://mirror.ehv.weppel.nl/ius/stable/CentOS/7/x86_64/
|
220
|
+
tags = EXTERNAL,OS:EL7,IUS
|
221
|
+
|
222
|
+
[EL/7/mariadb/:VERSION:/x86_64:rpm]
|
223
|
+
baseurl = http://yum.mariadb.org/:VERSION:/centos7-amd64/
|
224
|
+
tags = EXTERNAL,OS:EL7,MARIADB
|
225
|
+
versions = 10.0,10.1,10.2,10.3
|
226
|
+
|
227
|
+
[EL/7/mongodb/:VERSION:/x86_64:rpm]
|
228
|
+
baseurl = https://repo.mongodb.org/yum/redhat/7Server/mongodb-org/:VERSION:/x86_64/
|
229
|
+
tags = EXTERNAL,OS:EL7,MONGODB
|
230
|
+
versions = 3.2,3.4,3.6
|
231
|
+
|
232
|
+
[EL/7/percona/x86_64:rpm]
|
233
|
+
baseurl = http://repo.percona.com/centos/7Server/RPMS/x86_64/
|
234
|
+
tags = EXTERNAL,OS:EL7,PERCONA
|
235
|
+
versions = 5
|
236
|
+
|
237
|
+
[EL/7/puppet/:VERSION:/x86_64:rpm]
|
238
|
+
baseurl = https://yum.puppetlabs.com/puppet:VERSION:/el/7/x86_64/
|
239
|
+
tags = EXTERNAL,OS:EL7,PUPPET
|
240
|
+
versions = 5
|
241
|
+
|
242
|
+
[EL/7/remi/:VERSION:/x86_64:rpm]
|
243
|
+
baseurl = http://mirror.23media.de/remi/enterprise/7/:VERSION:/x86_64/
|
244
|
+
tags = EXTERNAL,OS:EL7,REMI
|
245
|
+
versions = php54,php55,php56,php70,php71,php72,remi,safe
|
246
|
+
|
247
|
+
[EL/7/rsyslog/:VERSION:/x86_64:rpm]
|
248
|
+
baseurl = http://rpms.adiscon.com/v:VERSION:-stable/epel-7/x86_64/
|
249
|
+
tags = EXTERNAL,OS:EL7,RSYSLOG
|
250
|
+
versions = 8
|
251
|
+
|
252
|
+
[EL/7/zabbix/:VERSION:/x86_64:rpm]
|
253
|
+
baseurl = https://repo.zabbix.com/zabbix/:VERSION:/rhel/7/x86_64/
|
254
|
+
tags = EXTERNAL,OS:EL7,ZABBIX
|
255
|
+
versions = 3.2,3.4,3.5
|
256
|
+
|
257
|
+
[EL/elastic/:VERSION:/noarch:rpm]
|
258
|
+
baseurl = https://artifacts.elastic.co/packages/:VERSION:/yum/
|
259
|
+
tags = EXTERNAL,ELASTIC
|
260
|
+
versions = 5.x,6.x
|
261
|
+
|
262
|
+
[EL/graylog/:VERSION:/noarch:rpm]
|
263
|
+
baseurl = https://packages.graylog2.org/repo/el/stable/:VERSION:/x86_64/
|
264
|
+
tags = EXTERNAL,GRAYLOG
|
265
|
+
versions = 2.3,2.4
|
266
|
+
|
267
|
+
[EL/jenkins/noarch:rpm]
|
268
|
+
baseurl = https://pkg.jenkins.io/redhat/
|
269
|
+
tags = EXTERNAL,JENKINS
|
270
|
+
|
271
|
+
[RHEL/5.:VERSION:/oraclejava/x86_64:rpm]
|
272
|
+
baseurl = https://cdn.redhat.com/content/dist/rhel/server/5/5.:VERSION:/x86_64/oracle-java/os/
|
273
|
+
sslcacert = /etc/pyreposync/redhat-uep.pem
|
274
|
+
sslclientcert = /etc/pyreposync/redhat.pem
|
275
|
+
sslclientkey = /etc/pyreposync/redhat.pem
|
276
|
+
syncdir = RHEL/5/oraclejava/x86_64
|
277
|
+
tags = EXTERNAL,OS:RHEL5,BASE
|
278
|
+
versions = 11
|
279
|
+
|
280
|
+
[RHEL/5.:VERSION:/os/x86_64:rpm]
|
281
|
+
baseurl = https://cdn.redhat.com/content/dist/rhel/server/5/5.:VERSION:/x86_64/os/
|
282
|
+
sslcacert = /etc/pyreposync/redhat-uep.pem
|
283
|
+
sslclientcert = /etc/pyreposync/redhat.pem
|
284
|
+
sslclientkey = /etc/pyreposync/redhat.pem
|
285
|
+
syncdir = RHEL/5/os/x86_64
|
286
|
+
tags = EXTERNAL,OS:RHEL5,BASE
|
287
|
+
versions = 11
|
288
|
+
|
289
|
+
[RHEL/5.:VERSION:/rhcommon/x86_64:rpm]
|
290
|
+
baseurl = https://cdn.redhat.com/content/dist/rhel/server/5/5.:VERSION:/x86_64/rh-common/os/
|
291
|
+
sslcacert = /etc/pyreposync/redhat-uep.pem
|
292
|
+
sslclientcert = /etc/pyreposync/redhat.pem
|
293
|
+
sslclientkey = /etc/pyreposync/redhat.pem
|
294
|
+
syncdir = RHEL/5/rhcommon/x86_64
|
295
|
+
tags = EXTERNAL,OS:RHEL5,BASE
|
296
|
+
versions = 11
|
297
|
+
|
298
|
+
[RHEL/5.:VERSION:/rhntools/x86_64:rpm]
|
299
|
+
baseurl = https://cdn.redhat.com/content/dist/rhel/server/5/5.:VERSION:/x86_64/rhn-tools/os/
|
300
|
+
sslcacert = /etc/pyreposync/redhat-uep.pem
|
301
|
+
sslclientcert = /etc/pyreposync/redhat.pem
|
302
|
+
sslclientkey = /etc/pyreposync/redhat.pem
|
303
|
+
syncdir = RHEL/5/rhntools/x86_64
|
304
|
+
tags = EXTERNAL,OS:RHEL5,BASE
|
305
|
+
versions = 11
|
306
|
+
|
307
|
+
[RHEL/5.:VERSION:/supplementary/x86_64:rpm]
|
308
|
+
baseurl = https://cdn.redhat.com/content/dist/rhel/server/5/5.:VERSION:/x86_64/supplementary/os/
|
309
|
+
sslcacert = /etc/pyreposync/redhat-uep.pem
|
310
|
+
sslclientcert = /etc/pyreposync/redhat.pem
|
311
|
+
sslclientkey = /etc/pyreposync/redhat.pem
|
312
|
+
syncdir = RHEL/5/supplementary/x86_64
|
313
|
+
tags = EXTERNAL,OS:RHEL5,BASE
|
314
|
+
versions = 11
|
315
|
+
|
316
|
+
[RHEL/6.:VERSION:/optional/x86_64:rpm]
|
317
|
+
baseurl = https://cdn.redhat.com/content/dist/rhel/server/6/6.:VERSION:/x86_64/optional/os/
|
318
|
+
sslcacert = /etc/pyreposync/redhat-uep.pem
|
319
|
+
sslclientcert = /etc/pyreposync/redhat.pem
|
320
|
+
sslclientkey = /etc/pyreposync/redhat.pem
|
321
|
+
syncdir = RHEL/6/optional/x86_64
|
322
|
+
tags = EXTERNAL,OS:RHEL6,BASE
|
323
|
+
versions = 9
|
324
|
+
|
325
|
+
[RHEL/6.:VERSION:/oraclejava/x86_64:rpm]
|
326
|
+
baseurl = https://cdn.redhat.com/content/dist/rhel/server/6/6.:VERSION:/x86_64/oracle-java/os/
|
327
|
+
sslcacert = /etc/pyreposync/redhat-uep.pem
|
328
|
+
sslclientcert = /etc/pyreposync/redhat.pem
|
329
|
+
sslclientkey = /etc/pyreposync/redhat.pem
|
330
|
+
syncdir = RHEL/6/oraclejava/x86_64
|
331
|
+
tags = EXTERNAL,OS:RHEL6,BASE
|
332
|
+
versions = 9
|
333
|
+
|
334
|
+
[RHEL/6.:VERSION:/os/x86_64:rpm]
|
335
|
+
baseurl = https://cdn.redhat.com/content/dist/rhel/server/6/6.:VERSION:/x86_64/os/
|
336
|
+
sslcacert = /etc/pyreposync/redhat-uep.pem
|
337
|
+
sslclientcert = /etc/pyreposync/redhat.pem
|
338
|
+
sslclientkey = /etc/pyreposync/redhat.pem
|
339
|
+
syncdir = RHEL/6/os/x86_64
|
340
|
+
tags = EXTERNAL,OS:RHEL6,BASE
|
341
|
+
versions = 9
|
342
|
+
|
343
|
+
[RHEL/6.:VERSION:/rhcommon/x86_64:rpm]
|
344
|
+
baseurl = https://cdn.redhat.com/content/dist/rhel/server/6/6.:VERSION:/x86_64/rh-common/os/
|
345
|
+
sslcacert = /etc/pyreposync/redhat-uep.pem
|
346
|
+
sslclientcert = /etc/pyreposync/redhat.pem
|
347
|
+
sslclientkey = /etc/pyreposync/redhat.pem
|
348
|
+
syncdir = RHEL/6/rhcommon/x86_64
|
349
|
+
tags = EXTERNAL,OS:RHEL6,BASE
|
350
|
+
versions = 9
|
351
|
+
|
352
|
+
[RHEL/6.:VERSION:/rhntools/x86_64:rpm]
|
353
|
+
baseurl = https://cdn.redhat.com/content/dist/rhel/server/6/6.:VERSION:/x86_64/rhn-tools/os/
|
354
|
+
sslcacert = /etc/pyreposync/redhat-uep.pem
|
355
|
+
sslclientcert = /etc/pyreposync/redhat.pem
|
356
|
+
sslclientkey = /etc/pyreposync/redhat.pem
|
357
|
+
syncdir = RHEL/6/rhntools/x86_64
|
358
|
+
tags = EXTERNAL,OS:RHEL6,BASE
|
359
|
+
versions = 9
|
360
|
+
|
361
|
+
[RHEL/6.:VERSION:/supplementary/x86_64:rpm]
|
362
|
+
baseurl = https://cdn.redhat.com/content/dist/rhel/server/6/6.:VERSION:/x86_64/supplementary/os/
|
363
|
+
sslcacert = /etc/pyreposync/redhat-uep.pem
|
364
|
+
sslclientcert = /etc/pyreposync/redhat.pem
|
365
|
+
sslclientkey = /etc/pyreposync/redhat.pem
|
366
|
+
syncdir = RHEL/6/supplementary/x86_64
|
367
|
+
tags = EXTERNAL,OS:RHEL6,BASE
|
368
|
+
versions = 9
|
369
|
+
|
370
|
+
[RHEL/7.:VERSION:/optional/x86_64:rpm]
|
371
|
+
baseurl = https://cdn.redhat.com/content/dist/rhel/server/7/7.:VERSION:/x86_64/optional/os/
|
372
|
+
sslcacert = /etc/pyreposync/redhat-uep.pem
|
373
|
+
sslclientcert = /etc/pyreposync/redhat.pem
|
374
|
+
sslclientkey = /etc/pyreposync/redhat.pem
|
375
|
+
syncdir = RHEL/7/optional/x86_64
|
376
|
+
tags = EXTERNAL,OS:RHEL7,BASE
|
377
|
+
versions = 4
|
378
|
+
|
379
|
+
[RHEL/7.:VERSION:/oraclejava/x86_64:rpm]
|
380
|
+
baseurl = https://cdn.redhat.com/content/dist/rhel/server/7/7.:VERSION:/x86_64/oracle-java/os/
|
381
|
+
sslcacert = /etc/pyreposync/redhat-uep.pem
|
382
|
+
sslclientcert = /etc/pyreposync/redhat.pem
|
383
|
+
sslclientkey = /etc/pyreposync/redhat.pem
|
384
|
+
syncdir = RHEL/7/oraclejava/x86_64
|
385
|
+
tags = EXTERNAL,OS:RHEL7,BASE
|
386
|
+
versions = 4
|
387
|
+
|
388
|
+
[RHEL/7.:VERSION:/os/x86_64:rpm]
|
389
|
+
baseurl = https://cdn.redhat.com/content/dist/rhel/server/7/7.:VERSION:/x86_64/os/
|
390
|
+
sslcacert = /etc/pyreposync/redhat-uep.pem
|
391
|
+
sslclientcert = /etc/pyreposync/redhat.pem
|
392
|
+
sslclientkey = /etc/pyreposync/redhat.pem
|
393
|
+
syncdir = RHEL/7/os/x86_64
|
394
|
+
tags = EXTERNAL,OS:RHEL7,BASE
|
395
|
+
versions = 4
|
396
|
+
|
397
|
+
[RHEL/7.:VERSION:/rhcommon/x86_64:rpm]
|
398
|
+
baseurl = https://cdn.redhat.com/content/dist/rhel/server/7/7.:VERSION:/x86_64/rh-common/os/
|
399
|
+
sslcacert = /etc/pyreposync/redhat-uep.pem
|
400
|
+
sslclientcert = /etc/pyreposync/redhat.pem
|
401
|
+
sslclientkey = /etc/pyreposync/redhat.pem
|
402
|
+
syncdir = RHEL/7/rhcommon/x86_64
|
403
|
+
tags = EXTERNAL,OS:RHEL7,BASE
|
404
|
+
versions = 4
|
405
|
+
|
406
|
+
[RHEL/7.:VERSION:/rhntools/x86_64:rpm]
|
407
|
+
baseurl = https://cdn.redhat.com/content/dist/rhel/server/7/7.:VERSION:/x86_64/rhn-tools/os/
|
408
|
+
sslcacert = /etc/pyreposync/redhat-uep.pem
|
409
|
+
sslclientcert = /etc/pyreposync/redhat.pem
|
410
|
+
sslclientkey = /etc/pyreposync/redhat.pem
|
411
|
+
syncdir = RHEL/7/rhntools/x86_64
|
412
|
+
tags = EXTERNAL,OS:RHEL7,BASE
|
413
|
+
versions = 4
|
414
|
+
|
415
|
+
[RHEL/7.:VERSION:/supplementary/x86_64:rpm]
|
416
|
+
baseurl = https://cdn.redhat.com/content/dist/rhel/server/7/7.:VERSION:/x86_64/supplementary/os/
|
417
|
+
sslcacert = /etc/pyreposync/redhat-uep.pem
|
418
|
+
sslclientcert = /etc/pyreposync/redhat.pem
|
419
|
+
sslclientkey = /etc/pyreposync/redhat.pem
|
420
|
+
syncdir = RHEL/7/supplementary/x86_64
|
421
|
+
tags = EXTERNAL,OS:RHEL7,BASE
|
422
|
+
versions = 4
|
@@ -0,0 +1,31 @@
|
|
1
|
+
[build-system]
|
2
|
+
requires = ["hatchling", "hatch-requirements-txt"]
|
3
|
+
build-backend = "hatchling.build"
|
4
|
+
|
5
|
+
[project]
|
6
|
+
name = "pyreposync"
|
7
|
+
version = "0.1.0"
|
8
|
+
requires-python = ">=3.9"
|
9
|
+
authors = [
|
10
|
+
{name = "Stephan.Schultchen", email = "sschultchen@gmail.com"},
|
11
|
+
]
|
12
|
+
description = "Orbit Api"
|
13
|
+
dynamic = ["dependencies"]
|
14
|
+
license = {file = "LICENSE.txt"}
|
15
|
+
keywords = []
|
16
|
+
classifiers = [
|
17
|
+
"Programming Language :: Python"
|
18
|
+
]
|
19
|
+
|
20
|
+
[project.scripts]
|
21
|
+
pyreposync = "pyreposync:main"
|
22
|
+
|
23
|
+
[project.urls]
|
24
|
+
Source = "https://github.com/schlitzered/pyreposync"
|
25
|
+
|
26
|
+
[tool.hatch.build.targets.wheel]
|
27
|
+
packages = ["pyreposync"]
|
28
|
+
|
29
|
+
[tool.hatch.metadata.hooks.requirements_txt]
|
30
|
+
files = ["requirements.txt"]
|
31
|
+
|