From 357a8e0c1567325c4aa049e295b1fe12b59d1263 Mon Sep 17 00:00:00 2001 From: Thomas Limoncelli Date: Wed, 5 Nov 2025 10:41:48 -0500 Subject: [PATCH 1/2] feat(all) abandon all hope ye who enter here --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 7d5afc2..a551a10 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,12 @@ BlackBox [![CircleCI](https://circleci.com/gh/StackExchange/blackbox.svg?style=shield)](https://circleci.com/gh/StackExchange/workflows/blackbox) [![Build Status](https://github.com/StackExchange/blackbox/workflows/build/badge.svg)](https://github.com/StackExchange/blackbox/actions?query=workflow%3Abuild+branch%3Amaster) ======== +THIS PROJECT IS ABANDONED. DO NOT USE. DO NOT SUBMIT BUG REPORTS OR PRs. + +There are plenty of other, better, projects. A partial list is listed under "Alternatives" below. + +======== + Safely store secrets in a VCS repo (i.e. Git, Mercurial, Subversion or Perforce). These commands make it easy for you to Gnu Privacy Guard (GPG) encrypt specific files in a repo so they are "encrypted at rest" in your repository. However, the scripts make it easy to decrypt them when you need to view or edit them, and decrypt them for use in production. Originally written for Puppet, BlackBox now works with any Git or Mercurial repository. From f2ec1facecc7f729d30c485e4bf723389d25e9ef Mon Sep 17 00:00:00 2001 From: Thomas Limoncelli Date: Wed, 5 Nov 2025 10:43:11 -0500 Subject: [PATCH 2/2] remove circleci --- .circleci/config.yml | 112 +++++++++++++++++++++---------------------- 1 file changed, 56 insertions(+), 56 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 6552ddc..89e3edc 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,56 +1,56 @@ -version: 2 - -workflows: - version: 2 - build_and_test: - jobs: - - debian - - ubuntu - -jobs: - - debian: - docker: - - image: debian:9.1 - steps: - - checkout - - run: - name: 'Installing' - command: | - apt-get update -y - apt-get install -y build-essential expect git gnupg2 pinentry-tty procps rpm ruby-dev libffi-dev - gem install fpm - - run: - name: 'Cleaning' - command: | - rm -rf ~/.gpnupg - make clean - - run: - name: 'Testing' - command: | - GPG=gpg2 make test - make packages-deb - make packages-rpm - - ubuntu: - docker: - - image: ubuntu:16.04 - steps: - - checkout - - run: - name: 'Installing' - command: | - apt-get update -y - apt-get install -y build-essential expect git gnupg2 pinentry-tty procps rpm ruby-dev libffi-dev - gem install fpm - - run: - name: 'Cleaning' - command: | - rm -rf ~/.gpnupg - make clean - - run: - name: 'Testing' - command: | - GPG=gpg2 make test - make packages-deb - make packages-rpm +#version: 2 +# +#workflows: +# version: 2 +# build_and_test: +# jobs: +# - debian +# - ubuntu +# +#jobs: +# +# debian: +# docker: +# - image: debian:9.1 +# steps: +# - checkout +# - run: +# name: 'Installing' +# command: | +# apt-get update -y +# apt-get install -y build-essential expect git gnupg2 pinentry-tty procps rpm ruby-dev libffi-dev +# gem install fpm +# - run: +# name: 'Cleaning' +# command: | +# rm -rf ~/.gpnupg +# make clean +# - run: +# name: 'Testing' +# command: | +# GPG=gpg2 make test +# make packages-deb +# make packages-rpm +# +# ubuntu: +# docker: +# - image: ubuntu:16.04 +# steps: +# - checkout +# - run: +# name: 'Installing' +# command: | +# apt-get update -y +# apt-get install -y build-essential expect git gnupg2 pinentry-tty procps rpm ruby-dev libffi-dev +# gem install fpm +# - run: +# name: 'Cleaning' +# command: | +# rm -rf ~/.gpnupg +# make clean +# - run: +# name: 'Testing' +# command: | +# GPG=gpg2 make test +# make packages-deb +# make packages-rpm