jenkinsctl 0.0.5__tar.gz → 0.0.7__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.

Potentially problematic release.


This version of jenkinsctl might be problematic. Click here for more details.

Files changed (30) hide show
  1. {jenkinsctl-0.0.5/jenkinsctl.egg-info → jenkinsctl-0.0.7}/PKG-INFO +1 -1
  2. {jenkinsctl-0.0.5 → jenkinsctl-0.0.7/jenkinsctl.egg-info}/PKG-INFO +1 -1
  3. {jenkinsctl-0.0.5 → jenkinsctl-0.0.7}/jenkinsctl.egg-info/SOURCES.txt +0 -13
  4. jenkinsctl-0.0.7/jenkinsctl.egg-info/top_level.txt +2 -0
  5. {jenkinsctl-0.0.5 → jenkinsctl-0.0.7}/pyproject.toml +1 -1
  6. jenkinsctl-0.0.5/bin/activate_this.py +0 -31
  7. jenkinsctl-0.0.5/bin/rst2html.py +0 -23
  8. jenkinsctl-0.0.5/bin/rst2html4.py +0 -26
  9. jenkinsctl-0.0.5/bin/rst2html5.py +0 -33
  10. jenkinsctl-0.0.5/bin/rst2latex.py +0 -26
  11. jenkinsctl-0.0.5/bin/rst2man.py +0 -27
  12. jenkinsctl-0.0.5/bin/rst2odt.py +0 -28
  13. jenkinsctl-0.0.5/bin/rst2odt_prepstyles.py +0 -20
  14. jenkinsctl-0.0.5/bin/rst2pseudoxml.py +0 -23
  15. jenkinsctl-0.0.5/bin/rst2s5.py +0 -24
  16. jenkinsctl-0.0.5/bin/rst2xetex.py +0 -27
  17. jenkinsctl-0.0.5/bin/rst2xml.py +0 -23
  18. jenkinsctl-0.0.5/bin/rstpep2html.py +0 -25
  19. jenkinsctl-0.0.5/jenkinsctl.egg-info/top_level.txt +0 -6
  20. {jenkinsctl-0.0.5 → jenkinsctl-0.0.7}/LICENSE +0 -0
  21. {jenkinsctl-0.0.5 → jenkinsctl-0.0.7}/README.md +0 -0
  22. {jenkinsctl-0.0.5 → jenkinsctl-0.0.7}/jenkinsctl/__init__.py +0 -0
  23. {jenkinsctl-0.0.5 → jenkinsctl-0.0.7}/jenkinsctl/config.py +0 -0
  24. {jenkinsctl-0.0.5 → jenkinsctl-0.0.7}/jenkinsctl/jbuild.py +0 -0
  25. {jenkinsctl-0.0.5 → jenkinsctl-0.0.7}/jenkinsctl/jenkins.py +0 -0
  26. {jenkinsctl-0.0.5 → jenkinsctl-0.0.7}/jenkinsctl/jget_config.py +0 -0
  27. {jenkinsctl-0.0.5 → jenkinsctl-0.0.7}/jenkinsctl.egg-info/dependency_links.txt +0 -0
  28. {jenkinsctl-0.0.5 → jenkinsctl-0.0.7}/jenkinsctl.egg-info/entry_points.txt +0 -0
  29. {jenkinsctl-0.0.5 → jenkinsctl-0.0.7}/jenkinsctl.egg-info/requires.txt +0 -0
  30. {jenkinsctl-0.0.5 → jenkinsctl-0.0.7}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: jenkinsctl
3
- Version: 0.0.5
3
+ Version: 0.0.7
4
4
  Summary: Build Jenkins jobs effortlessly using a single command. 🚀
5
5
  Author-email: Aman Shaw <amanshaw4511@protonmail.com>
6
6
  Project-URL: Homepage, https://github.com/amanshaw4511/jenkinsctl
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: jenkinsctl
3
- Version: 0.0.5
3
+ Version: 0.0.7
4
4
  Summary: Build Jenkins jobs effortlessly using a single command. 🚀
5
5
  Author-email: Aman Shaw <amanshaw4511@protonmail.com>
6
6
  Project-URL: Homepage, https://github.com/amanshaw4511/jenkinsctl
@@ -1,19 +1,6 @@
1
1
  LICENSE
2
2
  README.md
3
3
  pyproject.toml
4
- bin/activate_this.py
5
- bin/rst2html.py
6
- bin/rst2html4.py
7
- bin/rst2html5.py
8
- bin/rst2latex.py
9
- bin/rst2man.py
10
- bin/rst2odt.py
11
- bin/rst2odt_prepstyles.py
12
- bin/rst2pseudoxml.py
13
- bin/rst2s5.py
14
- bin/rst2xetex.py
15
- bin/rst2xml.py
16
- bin/rstpep2html.py
17
4
  jenkinsctl/__init__.py
18
5
  jenkinsctl/config.py
19
6
  jenkinsctl/jbuild.py
@@ -0,0 +1,2 @@
1
+ dist
2
+ jenkinsctl
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "jenkinsctl"
7
- version = "0.0.5"
7
+ version = "v0.0.7"
8
8
  dependencies = ["api4jenkins", "dynaconf", "pyyaml", "argcomplete"]
9
9
  authors = [{ name = "Aman Shaw", email = "amanshaw4511@protonmail.com" }]
10
10
  description = "Build Jenkins jobs effortlessly using a single command. 🚀"
@@ -1,31 +0,0 @@
1
- """Activate virtualenv for current interpreter:
2
-
3
- Use exec(open(this_file).read(), {'__file__': this_file}).
4
-
5
- This can be used when you must use an existing Python interpreter, not the virtualenv bin/python.
6
- """
7
- import os
8
- import site
9
- import sys
10
-
11
- try:
12
- abs_file = os.path.abspath(__file__)
13
- except NameError:
14
- raise AssertionError("You must use exec(open(this_file).read(), {'__file__': this_file}))")
15
-
16
- bin_dir = os.path.dirname(abs_file)
17
- base = bin_dir[: -len("bin") - 1] # strip away the bin part from the __file__, plus the path separator
18
-
19
- # prepend bin to PATH (this file is inside the bin directory)
20
- os.environ["PATH"] = os.pathsep.join([bin_dir] + os.environ.get("PATH", "").split(os.pathsep))
21
- os.environ["VIRTUAL_ENV"] = base # virtual env is right above bin directory
22
-
23
- # add the virtual environments libraries to the host python import mechanism
24
- prev_length = len(sys.path)
25
- for lib in "../lib64/python3.12/site-packages:../lib/python3.12/site-packages".split(os.pathsep):
26
- path = os.path.realpath(os.path.join(bin_dir, lib))
27
- site.addsitedir(path.decode("utf-8") if "" else path)
28
- sys.path[:] = sys.path[prev_length:] + sys.path[0:prev_length]
29
-
30
- sys.real_prefix = sys.prefix
31
- sys.prefix = base
@@ -1,23 +0,0 @@
1
- #!/home/aman/git/my/jenkinsctl/bin/python
2
-
3
- # $Id: rst2html.py 9115 2022-07-28 17:06:24Z milde $
4
- # Author: David Goodger <goodger@python.org>
5
- # Copyright: This module has been placed in the public domain.
6
-
7
- """
8
- A minimal front end to the Docutils Publisher, producing HTML.
9
- """
10
-
11
- try:
12
- import locale
13
- locale.setlocale(locale.LC_ALL, '')
14
- except Exception:
15
- pass
16
-
17
- from docutils.core import publish_cmdline, default_description
18
-
19
-
20
- description = ('Generates (X)HTML documents from standalone reStructuredText '
21
- 'sources. ' + default_description)
22
-
23
- publish_cmdline(writer_name='html', description=description)
@@ -1,26 +0,0 @@
1
- #!/home/aman/git/my/jenkinsctl/bin/python
2
-
3
- # $Id: rst2html4.py 9115 2022-07-28 17:06:24Z milde $
4
- # Author: David Goodger <goodger@python.org>
5
- # Copyright: This module has been placed in the public domain.
6
-
7
- """
8
- A minimal front end to the Docutils Publisher, producing (X)HTML.
9
-
10
- The output conforms to XHTML 1.0 transitional
11
- and almost to HTML 4.01 transitional (except for closing empty tags).
12
- """
13
-
14
- try:
15
- import locale
16
- locale.setlocale(locale.LC_ALL, '')
17
- except Exception:
18
- pass
19
-
20
- from docutils.core import publish_cmdline, default_description
21
-
22
-
23
- description = ('Generates (X)HTML documents from standalone reStructuredText '
24
- 'sources. ' + default_description)
25
-
26
- publish_cmdline(writer_name='html4', description=description)
@@ -1,33 +0,0 @@
1
- #!/home/aman/git/my/jenkinsctl/bin/python
2
- # :Copyright: © 2015 Günter Milde.
3
- # :License: Released under the terms of the `2-Clause BSD license`_, in short:
4
- #
5
- # Copying and distribution of this file, with or without modification,
6
- # are permitted in any medium without royalty provided the copyright
7
- # notice and this notice are preserved.
8
- # This file is offered as-is, without any warranty.
9
- #
10
- # .. _2-Clause BSD license: https://opensource.org/licenses/BSD-2-Clause
11
- #
12
- # Revision: $Revision: 9021 $
13
- # Date: $Date: 2022-03-04 16:54:22 +0100 (Fr, 04. Mär 2022) $
14
-
15
- """
16
- A minimal front end to the Docutils Publisher, producing HTML 5 documents.
17
-
18
- The output is also valid XML.
19
- """
20
-
21
- try:
22
- import locale # module missing in Jython
23
- locale.setlocale(locale.LC_ALL, '')
24
- except locale.Error:
25
- pass
26
-
27
- from docutils.core import publish_cmdline, default_description
28
-
29
- description = ('Generates HTML5 documents from standalone '
30
- 'reStructuredText sources.\n'
31
- + default_description)
32
-
33
- publish_cmdline(writer_name='html5', description=description)
@@ -1,26 +0,0 @@
1
- #!/home/aman/git/my/jenkinsctl/bin/python
2
-
3
- # $Id: rst2latex.py 9115 2022-07-28 17:06:24Z milde $
4
- # Author: David Goodger <goodger@python.org>
5
- # Copyright: This module has been placed in the public domain.
6
-
7
- """
8
- A minimal front end to the Docutils Publisher, producing LaTeX.
9
- """
10
-
11
- try:
12
- import locale
13
- locale.setlocale(locale.LC_ALL, '')
14
- except Exception:
15
- pass
16
-
17
- from docutils.core import publish_cmdline
18
-
19
- description = ('Generates LaTeX documents from standalone reStructuredText '
20
- 'sources. '
21
- 'Reads from <source> (default is stdin) and writes to '
22
- '<destination> (default is stdout). See '
23
- '<https://docutils.sourceforge.io/docs/user/latex.html> for '
24
- 'the full reference.')
25
-
26
- publish_cmdline(writer_name='latex', description=description)
@@ -1,27 +0,0 @@
1
- #!/home/aman/git/my/jenkinsctl/bin/python
2
-
3
- # Author:
4
- # Contact: grubert@users.sf.net
5
- # Copyright: This module has been placed in the public domain.
6
-
7
- """
8
- man.py
9
- ======
10
-
11
- This module provides a simple command line interface that uses the
12
- man page writer to output from ReStructuredText source.
13
- """
14
-
15
- import locale
16
- try:
17
- locale.setlocale(locale.LC_ALL, '')
18
- except Exception:
19
- pass
20
-
21
- from docutils.core import publish_cmdline, default_description
22
- from docutils.writers import manpage
23
-
24
- description = ("Generates plain unix manual documents. "
25
- + default_description)
26
-
27
- publish_cmdline(writer=manpage.Writer(), description=description)
@@ -1,28 +0,0 @@
1
- #!/home/aman/git/my/jenkinsctl/bin/python
2
-
3
- # $Id: rst2odt.py 9115 2022-07-28 17:06:24Z milde $
4
- # Author: Dave Kuhlman <dkuhlman@rexx.com>
5
- # Copyright: This module has been placed in the public domain.
6
-
7
- """
8
- A front end to the Docutils Publisher, producing OpenOffice documents.
9
- """
10
-
11
- try:
12
- import locale
13
- locale.setlocale(locale.LC_ALL, '')
14
- except Exception:
15
- pass
16
-
17
- from docutils.core import publish_cmdline_to_binary, default_description
18
- from docutils.writers.odf_odt import Writer, Reader
19
-
20
-
21
- description = ('Generates OpenDocument/OpenOffice/ODF documents from '
22
- 'standalone reStructuredText sources. ' + default_description)
23
-
24
-
25
- writer = Writer()
26
- reader = Reader()
27
- output = publish_cmdline_to_binary(reader=reader, writer=writer,
28
- description=description)
@@ -1,20 +0,0 @@
1
- #!/home/aman/git/my/jenkinsctl/bin/python
2
-
3
- # Copyright: This module has been placed in the public domain.
4
-
5
- """
6
- Adapt a word-processor-generated styles.odt for odtwriter use:
7
-
8
- Drop page size specifications from styles.xml in STYLE_FILE.odt.
9
- See https://docutils.sourceforge.io/docs/user/odt.html#page-size
10
-
11
- Provisional backwards compatibility stub (to be removed in Docutils >= 0.21).
12
-
13
- The actual code moved to the "docutils" library package and can be started
14
- with ``python -m docutils.writers.odf_odt.prepstyles``.
15
- """
16
-
17
- from docutils.writers.odf_odt import prepstyles
18
-
19
- if __name__ == '__main__':
20
- prepstyles.main()
@@ -1,23 +0,0 @@
1
- #!/home/aman/git/my/jenkinsctl/bin/python
2
-
3
- # $Id: rst2pseudoxml.py 9115 2022-07-28 17:06:24Z milde $
4
- # Author: David Goodger <goodger@python.org>
5
- # Copyright: This module has been placed in the public domain.
6
-
7
- """
8
- A minimal front end to the Docutils Publisher, producing pseudo-XML.
9
- """
10
-
11
- try:
12
- import locale
13
- locale.setlocale(locale.LC_ALL, '')
14
- except Exception:
15
- pass
16
-
17
- from docutils.core import publish_cmdline, default_description
18
-
19
-
20
- description = ('Generates pseudo-XML from standalone reStructuredText '
21
- 'sources (for testing purposes). ' + default_description)
22
-
23
- publish_cmdline(description=description)
@@ -1,24 +0,0 @@
1
- #!/home/aman/git/my/jenkinsctl/bin/python
2
-
3
- # $Id: rst2s5.py 9115 2022-07-28 17:06:24Z milde $
4
- # Author: Chris Liechti <cliechti@gmx.net>
5
- # Copyright: This module has been placed in the public domain.
6
-
7
- """
8
- A minimal front end to the Docutils Publisher, producing HTML slides using
9
- the S5 template system.
10
- """
11
-
12
- try:
13
- import locale
14
- locale.setlocale(locale.LC_ALL, '')
15
- except Exception:
16
- pass
17
-
18
- from docutils.core import publish_cmdline, default_description
19
-
20
-
21
- description = ('Generates S5 (X)HTML slideshow documents from standalone '
22
- 'reStructuredText sources. ' + default_description)
23
-
24
- publish_cmdline(writer_name='s5', description=description)
@@ -1,27 +0,0 @@
1
- #!/home/aman/git/my/jenkinsctl/bin/python
2
-
3
- # $Id: rst2xetex.py 9115 2022-07-28 17:06:24Z milde $
4
- # Author: Guenter Milde
5
- # Copyright: This module has been placed in the public domain.
6
-
7
- """
8
- A minimal front end to the Docutils Publisher, producing Lua/XeLaTeX code.
9
- """
10
-
11
- try:
12
- import locale
13
- locale.setlocale(locale.LC_ALL, '')
14
- except Exception:
15
- pass
16
-
17
- from docutils.core import publish_cmdline
18
-
19
- description = ('Generates LaTeX documents from standalone reStructuredText '
20
- 'sources for compilation with the Unicode-aware TeX variants '
21
- 'XeLaTeX or LuaLaTeX. '
22
- 'Reads from <source> (default is stdin) and writes to '
23
- '<destination> (default is stdout). See '
24
- '<https://docutils.sourceforge.io/docs/user/latex.html> for '
25
- 'the full reference.')
26
-
27
- publish_cmdline(writer_name='xetex', description=description)
@@ -1,23 +0,0 @@
1
- #!/home/aman/git/my/jenkinsctl/bin/python
2
-
3
- # $Id: rst2xml.py 9115 2022-07-28 17:06:24Z milde $
4
- # Author: David Goodger <goodger@python.org>
5
- # Copyright: This module has been placed in the public domain.
6
-
7
- """
8
- A minimal front end to the Docutils Publisher, producing Docutils XML.
9
- """
10
-
11
- try:
12
- import locale
13
- locale.setlocale(locale.LC_ALL, '')
14
- except Exception:
15
- pass
16
-
17
- from docutils.core import publish_cmdline, default_description
18
-
19
-
20
- description = ('Generates Docutils-native XML from standalone '
21
- 'reStructuredText sources. ' + default_description)
22
-
23
- publish_cmdline(writer_name='xml', description=description)
@@ -1,25 +0,0 @@
1
- #!/home/aman/git/my/jenkinsctl/bin/python
2
-
3
- # $Id: rstpep2html.py 9115 2022-07-28 17:06:24Z milde $
4
- # Author: David Goodger <goodger@python.org>
5
- # Copyright: This module has been placed in the public domain.
6
-
7
- """
8
- A minimal front end to the Docutils Publisher, producing HTML from PEP
9
- (Python Enhancement Proposal) documents.
10
- """
11
-
12
- try:
13
- import locale
14
- locale.setlocale(locale.LC_ALL, '')
15
- except Exception:
16
- pass
17
-
18
- from docutils.core import publish_cmdline, default_description
19
-
20
-
21
- description = ('Generates (X)HTML from reStructuredText-format PEP files. '
22
- + default_description)
23
-
24
- publish_cmdline(reader_name='pep', writer_name='pep_html',
25
- description=description)
@@ -1,6 +0,0 @@
1
- bin
2
- dist
3
- jenkinsctl
4
- lib
5
- lib64
6
- tests
File without changes
File without changes
File without changes