autopkg-wrapper 2024.3.1__tar.gz → 2024.5.1__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: autopkg-wrapper
3
- Version: 2024.3.1
3
+ Version: 2024.5.1
4
4
  Summary: A package used to execute some autopkg functions, primarily within the context of a GitHub Actions runner.
5
5
  Home-page: https://github.com/smithjw/autopkg-wrapper
6
6
  License: BSD-3-Clause
@@ -11,8 +11,8 @@ Classifier: License :: OSI Approved :: BSD License
11
11
  Classifier: Programming Language :: Python :: 3
12
12
  Classifier: Programming Language :: Python :: 3.12
13
13
  Requires-Dist: chardet (==5.2.0)
14
- Requires-Dist: idna (==3.6)
15
- Requires-Dist: pygithub (==2.2.0)
14
+ Requires-Dist: idna (==3.7)
15
+ Requires-Dist: pygithub (==2.3.0)
16
16
  Requires-Dist: requests (==2.31.0)
17
17
  Requires-Dist: ruamel-yaml (==0.18.6)
18
18
  Requires-Dist: toml (==0.10.2)
@@ -0,0 +1 @@
1
+ __version__ = "2024.5.1"
@@ -33,7 +33,7 @@ class Recipe(object):
33
33
  return name
34
34
 
35
35
  def verify_trust_info(self):
36
- cmd = ["/usr/local/bin/autopkg", "verify-trust-info", self.filename, "-vv"]
36
+ cmd = ["/usr/local/bin/autopkg", "verify-trust-info", self.filename, "-v"]
37
37
  cmd = " ".join(cmd)
38
38
  logging.debug(f"cmd: {str(cmd)}")
39
39
 
@@ -92,7 +92,7 @@ class Recipe(object):
92
92
  "/usr/local/bin/autopkg",
93
93
  "run",
94
94
  self.filename,
95
- "-vv",
95
+ "-v",
96
96
  "--report-plist",
97
97
  str(report),
98
98
  ]
@@ -267,6 +267,7 @@ def process_recipe(recipe, disable_recipe_trust_check):
267
267
 
268
268
 
269
269
  def main():
270
+ print("Hello World")
270
271
  args = setup_args()
271
272
  setup_logger(args.debug if args.debug else False)
272
273
  logging.info("Running autopkg_wrapper")
@@ -5,7 +5,7 @@
5
5
  name = "autopkg-wrapper"
6
6
  readme = "README.md"
7
7
  repository = "https://github.com/smithjw/autopkg-wrapper"
8
- version = "2024.3.1"
8
+ version = "2024.5.1"
9
9
 
10
10
  [tool.poetry.scripts]
11
11
  # When built and installed by pip, the command autopkg_wrapper will be availble in to run within that environment
@@ -14,8 +14,8 @@
14
14
 
15
15
  [tool.poetry.dependencies]
16
16
  chardet = "5.2.0"
17
- idna = "3.6"
18
- pygithub = "2.2.0"
17
+ idna = "3.7"
18
+ pygithub = "2.3.0"
19
19
  python = "^3.12"
20
20
  requests = "2.31.0"
21
21
  ruamel-yaml = "0.18.6"
@@ -1 +0,0 @@
1
- __version__ = "2024.3.1"