public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/security:ajak-cvetool commit in: /
@ 2021-07-05 20:24 John Helmert III
  0 siblings, 0 replies; 4+ messages in thread
From: John Helmert III @ 2021-07-05 20:24 UTC (permalink / raw
  To: gentoo-commits

commit:     a97df842cf12aae9bfa705028d535c8124268793
Author:     John Helmert III <ajak <AT> gentoo <DOT> org>
AuthorDate: Mon Jul  5 20:11:03 2021 +0000
Commit:     John Helmert III <ajak <AT> gentoo <DOT> org>
CommitDate: Mon Jul  5 20:20:44 2021 +0000
URL:        https://gitweb.gentoo.org/proj/security.git/commit/?id=a97df842

gitignore: ignore egg-info

Signed-off-by: John Helmert III <ajak <AT> gentoo.org>

 .gitignore | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..62508e8
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+*egg-info
\ No newline at end of file


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] proj/security:ajak-cvetool commit in: /
@ 2021-07-05 20:24 John Helmert III
  0 siblings, 0 replies; 4+ messages in thread
From: John Helmert III @ 2021-07-05 20:24 UTC (permalink / raw
  To: gentoo-commits

commit:     841a091e8601c354be5a4c3f715a9e96d4d5fd9d
Author:     John Helmert III <ajak <AT> gentoo <DOT> org>
AuthorDate: Mon Jul  5 20:12:50 2021 +0000
Commit:     John Helmert III <ajak <AT> gentoo <DOT> org>
CommitDate: Mon Jul  5 20:20:47 2021 +0000
URL:        https://gitweb.gentoo.org/proj/security.git/commit/?id=841a091e

Introduce setuptools boilerplate

Currently only installing a cvetool script

Signed-off-by: John Helmert III <ajak <AT> gentoo.org>

 pyproject.toml |  3 +++
 setup.cfg      | 15 +++++++++++++++
 2 files changed, 18 insertions(+)

diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644
index 0000000..07de284
--- /dev/null
+++ b/pyproject.toml
@@ -0,0 +1,3 @@
+[build-system]
+requires = ["setuptools", "wheel"]
+build-backend = "setuptools.build_meta"
\ No newline at end of file

diff --git a/setup.cfg b/setup.cfg
new file mode 100644
index 0000000..e5bf5dd
--- /dev/null
+++ b/setup.cfg
@@ -0,0 +1,15 @@
+[metadata]
+name = gentoo-sectools
+version = 0.0.0
+
+[options]
+packages = bin
+install_requires =
+    bracex
+    pkgcore
+    requests
+    urllib3
+
+[options.entry_points]
+console_scripts =
+	cvetool = bin.CVETool:cvetool
\ No newline at end of file


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] proj/security:ajak-cvetool commit in: /
@ 2021-07-07  1:06 John Helmert III
  0 siblings, 0 replies; 4+ messages in thread
From: John Helmert III @ 2021-07-07  1:06 UTC (permalink / raw
  To: gentoo-commits

commit:     d5469c3696d949413da1798e8dbb99a2c015a148
Author:     John Helmert III <ajak <AT> gentoo <DOT> org>
AuthorDate: Wed Jul  7 01:05:28 2021 +0000
Commit:     John Helmert III <ajak <AT> gentoo <DOT> org>
CommitDate: Wed Jul  7 01:06:22 2021 +0000
URL:        https://gitweb.gentoo.org/proj/security.git/commit/?id=d5469c36

Install glsatool

Signed-off-by: John Helmert III <ajak <AT> gentoo.org>

 setup.cfg | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/setup.cfg b/setup.cfg
index e5bf5dd..67f1c4f 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -5,6 +5,8 @@ version = 0.0.0
 [options]
 packages = bin
 install_requires =
+    beautifulsoup4
+    bugzilla
     bracex
     pkgcore
     requests
@@ -12,4 +14,5 @@ install_requires =
 
 [options.entry_points]
 console_scripts =
-	cvetool = bin.CVETool:cvetool
\ No newline at end of file
+	cvetool = bin.CVETool:cvetool
+	glsatool = bin.GLSATool:glsatool
\ No newline at end of file


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] proj/security:ajak-cvetool commit in: /
@ 2021-07-19  2:55 John Helmert III
  0 siblings, 0 replies; 4+ messages in thread
From: John Helmert III @ 2021-07-19  2:55 UTC (permalink / raw
  To: gentoo-commits

commit:     5aa7f5108e6ecfd81db2aaea4c41cb6601d7a317
Author:     John Helmert III <ajak <AT> gentoo <DOT> org>
AuthorDate: Thu Jul  8 01:17:44 2021 +0000
Commit:     John Helmert III <ajak <AT> gentoo <DOT> org>
CommitDate: Mon Jul 19 02:54:34 2021 +0000
URL:        https://gitweb.gentoo.org/proj/security.git/commit/?id=5aa7f510

dependencies: bugzilla -> python-bugzilla

Signed-off-by: John Helmert III <ajak <AT> gentoo.org>

 setup.cfg | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/setup.cfg b/setup.cfg
index 67f1c4f..ecb7514 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -6,9 +6,9 @@ version = 0.0.0
 packages = bin
 install_requires =
     beautifulsoup4
-    bugzilla
     bracex
     pkgcore
+    python-bugzilla
     requests
     urllib3
 


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-07-19  2:55 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-07-19  2:55 [gentoo-commits] proj/security:ajak-cvetool commit in: / John Helmert III
  -- strict thread matches above, loose matches on Subject: below --
2021-07-07  1:06 John Helmert III
2021-07-05 20:24 John Helmert III
2021-07-05 20:24 John Helmert III

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox