notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine
This referral link gives you 10% off a Fastmail.com account and gives me a discount on my Fastmail account.

Get notified when packages are built

A new feature has been added. FreshPorts already tracks package built by the FreeBSD project. This information is displayed on each port page. You can now get an email when FreshPorts notices a new package is available for something on one of your watch lists. However, you must opt into that. Click on Report Subscriptions on the right, and New Package Notification box, and click on Update.

Finally, under Watch Lists, click on ABI Package Subscriptions to select your ABI (e.g. FreeBSD:14:amd64) & package set (latest/quarterly) combination for a given watch list. This is what FreshPorts will look for.

Port details
py-netbox-secretstore Secret store for NetBox
1.4.1_2 security Deleted on this many watch lists=0 search for ports that depend on this port Find issues related to this port Report an issue related to this port View this port on Repology. pkg-fallout 1.4.1_2Version of this port present on the latest quarterly branch.
Deprecated DEPRECATED: No longer maintained by upstream, not compatible with NetBox 3.5, please migrate to security/py-netbox-secrets
Expired This port expired on: 2023-08-15
Maintainer: kai@FreeBSD.org search for ports maintained by this maintainer
Port Added: 2021-10-04 17:30:41
Last Update: 2023-08-22 18:58:59
Commit Hash: fb156d6
Also Listed In: python
License: APACHE20
WWW:
https://github.com/dansheps/netbox-secretstore
Description:
With NetBox 3.0 the secrets are no longer managed by NetBox itself. This is the continuation of the secrets app.
Homepage    cgit ¦ Codeberg ¦ GitHub ¦ GitLab ¦ SVNWeb - no subversion history for this port

Manual pages:
FreshPorts has no man page information for this port.
pkg-plist: as obtained via: make generate-plist
There is no configure plist information for this port.
Dependency lines:
  • ${PYTHON_PKGNAMEPREFIX}netbox-secretstore>0:security/py-netbox-secretstore@${PY_FLAVOR}
No installation instructions:
This port has been deleted.
PKGNAME: py39-netbox-secretstore
Package flavors (<flavor>: <package>)
  • py39: py39-netbox-secretstore
distinfo:
TIMESTAMP = 1676976590 SHA256 (netbox-secretstore-1.4.1.tar.gz) = fb0a81cfddc38d1b3d9793ec7013fd97c7945d54c4b0989ac32f5a92920c4eaf SIZE (netbox-secretstore-1.4.1.tar.gz) = 46819

Packages (timestamps in pop-ups are UTC):
py39-netbox-secretstore
ABIaarch64amd64armv6armv7i386powerpcpowerpc64powerpc64le
FreeBSD:13:latest--------
FreeBSD:13:quarterly--1.4.1_2-----
FreeBSD:14:latest--1.3.0_1--1.4.1_2-1.4.1_2
FreeBSD:14:quarterly--------
FreeBSD:15:latest--n/a-n/a---
FreeBSD:15:quarterly--n/a-n/a---
Dependencies
NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
Build dependencies:
  1. py39-setuptools>=63.1.0 : devel/py-setuptools@py39
  2. python3.9 : lang/python39
Test dependencies:
  1. python3.9 : lang/python39
Runtime dependencies:
  1. py39-importlib-metadata>0 : devel/py-importlib-metadata@py39
  2. py39-pycryptodome>0 : security/py-pycryptodome@py39
  3. py39-setuptools>=63.1.0 : devel/py-setuptools@py39
  4. python3.9 : lang/python39
There are no ports dependent upon this port

Configuration Options:
No options to configure
Options name:
security_py-netbox-secretstore
USES:
python
pkg-message:
For install:
To enable the plugin please do the following steps: 1. Add/update the following line in the netbox configuration (usually /usr/local/share/netbox/netbox/configuration.py): PLUGINS = ['netbox_secretstore'] 2. Run NetBox migrations and collect static files: # cd /usr/local/share/netbox # python3.9 manage.py migrate # python3.9 manage.py collectstatic --no-input 3. Restart WSGI/httpd environment (supervisord/apache/nginx/etc.)
If upgrading from < 1.0.14:
Due to some changes of net-mgmt/py-netbox-plugin-extensions, which is required by security/py-netbox-secretstore, the NetBox configuration must therefore be adjusted accordingly: 1. Add/update the following line in the netbox configuration (usually /usr/local/share/netbox/netbox/configuration.py): PLUGINS = ['netbox_plugin_extensions','netbox_secretstore'] 2. Run NetBox migrations and collect static files: # cd /usr/local/share/netbox # python3.9 manage.py migrate # python3.9 manage.py collectstatic --no-input 3. Restart WSGI/httpd environment (supervisord/apache/nginx/etc.)
If upgrading from < 1.2.0:
1. The plugin 'netbox_plugin_extensions' is no longer required since the 1.2.0 release. Please remove it from the PLUGINS section in the nextbox configuration. 2. Run NetBox migrations and collect static files: # cd /usr/local/share/netbox # python3.9 manage.py migrate # python3.9 manage.py collectstatic --no-input 3. Restart WSGI/httpd environment (supervisord/apache/nginx/etc.)
If upgrading from < 1.4.2_2:
Upstream no longer maintains py-netbox-secretstore which it is not compatible with NetBox 3.5 or newer. To ensure compatibility with newer releases of NetBox, the py-netbox-secrets plugin should be used instead. To migrate from security/py-netbox-secretstore to security/py-netbox-secrets please do following steps: 1. Make a backup. 2. Install security/py-netbox-secrets 3. Enable both plugins by updating the following line in the netbox configuration (usually /usr/local/share/netbox/netbox/configuration.py): PLUGINS = ['netbox_secretstore', 'netbox_secrets'] 4. Run NetBox migrations: # cd /usr/local/share/netbox # python3.9 manage.py migrate 5. Re-adjust the indices for the netbox-secrets plugin: # python3.9 manage.py sqlsequencereset netbox_secrets > output.sql 6. Run the output of the previous command in the database, e.g.: # psql -d NETBOXDB < output.sql 7. You can now remove netbox-secretstore from the application by removing it from the PLUGINS line in the netbox configuration: PLUGINS = ['netbox_secrets'] 8. Collect static files of the netbox-secrets plugin: # python3.9 manage.py collectstatic --no-input 9. Restart WSGI/httpd environment (supervisord/apache/nginx/etc.). 10. You may have clean up your database of the old tables manually, e.g.: DROP TABLE netbox_secretstore_secret; DROP TABLE netbox_secretstore_secretrole; DROP TABLE netbox_secretstore_sessionkey; DROP TABLE netbox_secretstore_userkey; 11. Uninstall security/py-netbox-secretstore.
Master Sites:
Expand this list (2 items)
Collapse this list.
  1. https://files.pythonhosted.org/packages/source/n/netbox-secretstore/
  2. https://pypi.org/packages/source/n/netbox-secretstore/
Collapse this list.
Port Moves
  • port moved to security/py-netbox-secrets on 2023-08-22
    REASON: Has expired: No longer maintained by upstream, not compatible with NetBox 3.5, please migrate to security/py-netbox-secrets

Number of commits found: 14

Commit History - (may be incomplete: for full details, see links to repositories near top of page)
CommitCreditsLog message
1.4.1_2
22 Aug 2023 18:58:59
commit hash: fb156d6624b37b4e37b67bfe3db2c16471c14df0commit hash: fb156d6624b37b4e37b67bfe3db2c16471c14df0commit hash: fb156d6624b37b4e37b67bfe3db2c16471c14df0commit hash: fb156d6624b37b4e37b67bfe3db2c16471c14df0 files touched by this commit
Rene Ladan (rene) search for other commits by this committer
security/py-netbox-secretstore: Remove expired port

2023-08-15 security/py-netbox-secretstore: No longer maintained by upstream, not
compatible with NetBox 3.5, please migrate to security/py-netbox-secrets
1.4.1_2
27 Jun 2023 19:34:34
commit hash: 3d9a815d9c5acbb71f4bb07738bdeab4879feacbcommit hash: 3d9a815d9c5acbb71f4bb07738bdeab4879feacbcommit hash: 3d9a815d9c5acbb71f4bb07738bdeab4879feacbcommit hash: 3d9a815d9c5acbb71f4bb07738bdeab4879feacb files touched by this commit
Rene Ladan (rene) search for other commits by this committer
all: remove explicit versions in USES=python for "3.x+"

The logic in USES=python will automatically convert this to 3.8+ by
itself.

Adjust two ports that only had Python 3.7 mentioned but build fine
on Python 3.8 too.

finance/quickfix: mark BROKEN with PYTHON

libtool: compile:  c++ -DHAVE_CONFIG_H -I. -I../.. -I -I. -I.. -I../.. -I../C++
-DLIBICONV_PLUG -DPYTHON_MAJOR_VERSION=3 -Wno-unused-variable
-Wno-maybe-uninitialized -O2 -pipe -DLIBICONV_PLUG -fstack-protector-strong
-fno-strict-aliasing -DLIBICONV_PLUG -Wall -ansi
-Wno-unused-command-line-argument -Wpointer-arith -Wwrite-strings
-Wno-overloaded-virtual -Wno-deprecated-declarations -Wno-deprecated -std=c++0x
-MT _quickfix_la-QuickfixPython.lo -MD -MP -MF
.deps/_quickfix_la-QuickfixPython.Tpo -c QuickfixPython.cpp  -fPIC -DPIC -o
.libs/_quickfix_la-QuickfixPython.o
warning: unknown warning option '-Wno-maybe-uninitialized'; did you mean
'-Wno-uninitialized'? [-Wunknown-warning-option]
QuickfixPython.cpp:175:11: fatal error: 'Python.h' file not found
          ^~~~~~~~~~
1 warning and 1 error generated.

Reviewed by:	portmgr, vishwin, yuri
Differential Revision:	<https://reviews.freebsd.org/D40568>
1.4.1_2
11 May 2023 03:42:04
commit hash: 53edd11f9dac25ba3053108406373e6a0550f551commit hash: 53edd11f9dac25ba3053108406373e6a0550f551commit hash: 53edd11f9dac25ba3053108406373e6a0550f551commit hash: 53edd11f9dac25ba3053108406373e6a0550f551 files touched by this commit
Kai Knoblich (kai) search for other commits by this committer
security/py-netbox-secretstore: Backport patches and deprecate

* Backport a patch of the upstream repository that fixes an issue with
  bulk updates for M2M (= many-to-many) operations.

* Add patches from the py-netbox-secrets repository as well which are
  required to migrate to the py-netbox-secrets plugin.

* Also give some advice how to migrate to the py-netbox-secrets plugin.

* Deprecate and set and an expiration date because upstream no longer
  maintains py-netbox-secretstore which is in its current state not
  compatible with newer releases of NetBox.

* Bump PORTREVISION due package change and to give users a heads-up that
  the plugin is deprecated.

MFH:		2023Q2 (in 3 weeks)
1.4.1_1
17 Mar 2023 06:37:07
commit hash: 98a406d77e3a56c54ac51e1d128ad375e2a2d133commit hash: 98a406d77e3a56c54ac51e1d128ad375e2a2d133commit hash: 98a406d77e3a56c54ac51e1d128ad375e2a2d133commit hash: 98a406d77e3a56c54ac51e1d128ad375e2a2d133 files touched by this commit
Kai Knoblich (kai) search for other commits by this committer
security/py-netbox-secretstore: Fix missing database migrations

* Backport a patch that fixes missing database migrations.

* Bump PORTREVISION due changed package.

MFH:		No (not applicable for netbox-secretstore < 1.4.0)
1.4.1
22 Feb 2023 07:07:05
commit hash: 6269f0e5c58e1c23e96fbdb94e064149e59e198ecommit hash: 6269f0e5c58e1c23e96fbdb94e064149e59e198ecommit hash: 6269f0e5c58e1c23e96fbdb94e064149e59e198ecommit hash: 6269f0e5c58e1c23e96fbdb94e064149e59e198e files touched by this commit
Kai Knoblich (kai) search for other commits by this committer
security/py-netbox-secretstore: Update to 1.4.1

* Remove no longer required patch.

Changelog since 1.3.0:

https://github.com/DanSheps/netbox-secretstore/compare/v1.3.0...v1.4.1

MFH:		No (not compatible with NetBox 3.3.x)
1.3.0_1
11 Jan 2023 15:58:34
commit hash: 77d68471aded6907dbbcb5ef50d557e4c69db656commit hash: 77d68471aded6907dbbcb5ef50d557e4c69db656commit hash: 77d68471aded6907dbbcb5ef50d557e4c69db656commit hash: 77d68471aded6907dbbcb5ef50d557e4c69db656 files touched by this commit
Dmitry Marakasov (amdmi3) search for other commits by this committer
*/*: rename CHEESESHOP to PYPI in MASTER_SITES

PR:			267994
Differential revision:	D37518
Approved by:		bapt
1.3.0_1
18 Dec 2022 16:13:13
commit hash: c38f09a2f97478ff4ab5910776b6a4ed407a3239commit hash: c38f09a2f97478ff4ab5910776b6a4ed407a3239commit hash: c38f09a2f97478ff4ab5910776b6a4ed407a3239commit hash: c38f09a2f97478ff4ab5910776b6a4ed407a3239 files touched by this commit
Kai Knoblich (kai) search for other commits by this committer
security/py-netbox-secretstore: Fix runtime with NetBox 3.3.10

* The plugin has a version check that allows versions of NetBox up
  to 3.3.9. Adjust this check to allow NetBox 3.3.10 as well.

* Bump PORTREVISION due changed package.

MFH:		2022Q4
1.3.0
17 Sep 2022 10:48:07
commit hash: 51bf7c5d96c0c1492a40657253e3acb22d3004cfcommit hash: 51bf7c5d96c0c1492a40657253e3acb22d3004cfcommit hash: 51bf7c5d96c0c1492a40657253e3acb22d3004cfcommit hash: 51bf7c5d96c0c1492a40657253e3acb22d3004cf files touched by this commit
Kai Knoblich (kai) search for other commits by this committer
security/py-netbox-secretstore: Update to 1.3.0

Changelog:

https://github.com/DanSheps/netbox-secretstore/releases/tag/v1.3.0
07 Sep 2022 21:58:51
commit hash: fb16dfecae4a6efac9f3a78e0b759fb7a3c53de4commit hash: fb16dfecae4a6efac9f3a78e0b759fb7a3c53de4commit hash: fb16dfecae4a6efac9f3a78e0b759fb7a3c53de4commit hash: fb16dfecae4a6efac9f3a78e0b759fb7a3c53de4 files touched by this commit
Stefan Eßer (se) search for other commits by this committer
Remove WWW entries moved into port Makefiles

Commit b7f05445c00f has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.

This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.

Approved by:		portmgr (tcberner)
1.2.0
07 Sep 2022 21:10:59
commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 files touched by this commit
Stefan Eßer (se) search for other commits by this committer
Add WWW entries to port Makefiles

It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.

Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.

There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.
(Only the first 15 lines of the commit message are shown above View all of this commit message)
1.2.0
16 Jun 2022 16:28:34
commit hash: b34658d1636f487451331d30d1c8c986df46922fcommit hash: b34658d1636f487451331d30d1c8c986df46922fcommit hash: b34658d1636f487451331d30d1c8c986df46922fcommit hash: b34658d1636f487451331d30d1c8c986df46922f files touched by this commit
Kai Knoblich (kai) search for other commits by this committer
security/py-netbox-secretstore: Update to 1.2.0

Changelog since 1.0.14:

https://github.com/DanSheps/netbox-secretstore/compare/v1.0.14...v1.2.0
1.0.14
18 Jan 2022 18:18:12
commit hash: 8220602ab5a0ef8dd559ea77771051677b650b42commit hash: 8220602ab5a0ef8dd559ea77771051677b650b42commit hash: 8220602ab5a0ef8dd559ea77771051677b650b42commit hash: 8220602ab5a0ef8dd559ea77771051677b650b42 files touched by this commit
Kai Knoblich (kai) search for other commits by this committer
security/py-netbox-secretstore: Update to 1.0.14

Changelog since 1.0.10:

https://github.com/DanSheps/netbox-secretstore/compare/v1.0.10...v1.0.14

MFH:		No (contain backwards incompatible changes)
1.0.10
01 Dec 2021 09:06:50
commit hash: 779ab46088e81a6799e85915b70370c8433954f6commit hash: 779ab46088e81a6799e85915b70370c8433954f6commit hash: 779ab46088e81a6799e85915b70370c8433954f6commit hash: 779ab46088e81a6799e85915b70370c8433954f6 files touched by this commit
Kai Knoblich (kai) search for other commits by this committer
security/py-netbox-secretstore: Update to 1.0.10

Changelog since 1.0.8:

https://github.com/DanSheps/netbox-secretstore/compare/v1.0.8...v1.0.10
1.0.8
04 Oct 2021 17:22:59
commit hash: ee7505c37fb104cb87243002f42fa9505d42924ecommit hash: ee7505c37fb104cb87243002f42fa9505d42924ecommit hash: ee7505c37fb104cb87243002f42fa9505d42924ecommit hash: ee7505c37fb104cb87243002f42fa9505d42924e files touched by this commit
Kai Knoblich (kai) search for other commits by this committer
security/py-netbox-secretstore: Add new port

With NetBox 3.0 the secrets are no longer managed by NetBox itself.
This is the continuation of the secrets app.

WWW: https://github.com/dansheps/netbox-secretstore

Number of commits found: 14