Last active
February 20, 2025 13:38
Revisions
-
jsnjack revised this gist
Feb 20, 2025 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,5 @@ #!/bin/bash sudo dnf install python3-devel python3-xmlsec xmlsec1-devel libtool-ltdl-devel cmake dbus-devel glib2-devel find . -name '.venv' -prune -o -name '*requirements*.txt' -print0 | xargs -0 cat | grep -oE '^[^~=]+' | grep -vE '^dnf|^functools32|^gpg|^libdnf|^psycopg|^systemd-python|saml|xmlsec' | sort | uniq > /tmp/combined_requirements.txt invenv init -r /tmp/combined_requirements.txt -d rm -f /tmp/combined_requirements.txt -
jsnjack revised this gist
Nov 13, 2024 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,5 @@ #!/bin/bash sudo dnf install python3-xmlsec xmlsec1-devel libtool-ltdl-devel cmake dbus-devel glib2-devel find . -name '.venv' -prune -o -name '*requirements*.txt' -print0 | xargs -0 cat | grep -oE '^[^~=]+' | grep -vE '^dnf|^functools32|^gpg|^libdnf|^psycopg|^systemd-python|saml|xmlsec' | sort | uniq > /tmp/combined_requirements.txt invenv init -r /tmp/combined_requirements.txt -d rm -f /tmp/combined_requirements.txt -
jsnjack revised this gist
Nov 13, 2024 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,5 @@ #!/bin/bash sudo dnf install python3-xmlsec xmlsec1-devel libtool-ltdl-devel cmake dbus-devel glib2-devel find . -name '.venv' -prune -o -name '*requirements*.txt' -print0 | xargs -0 cat | grep -oE '^[^~=]+' | grep -vE '^dnf|^functools32|^gpg|^libdnf|^psycopg|^systemd-python|saml' | sort | uniq > /tmp/combined_requirements.txt invenv init -r /tmp/combined_requirements.txt -d rm -f /tmp/combined_requirements.txt -
jsnjack revised this gist
Mar 28, 2024 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,5 @@ #!/bin/bash sudo dnf install python3-xmlsec xmlsec1-devel libtool-ltdl-devel cmake dbus-devel glib2-devel find . -name '.venv' -prune -o -name '*requirements*.txt' -print0 | xargs -0 cat | grep -oE '^[^~=]+' | grep -vE '^dnf|^functools32|^gpg|^libdnf|^psycopg|^systemd-python' | sort | uniq > /tmp/combined_requirements.txt invenv init -r /tmp/combined_requirements.txt -d rm -f /tmp/combined_requirements.txt -
jsnjack revised this gist
Mar 28, 2024 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,5 @@ #!/bin/bash sudo dnf install python3-xmlsec xmlsec1-devel libtool-ltdl-devel cmake dbus-devel find . -name '.venv' -prune -o -name '*requirements*.txt' -print0 | xargs -0 cat | grep -oE '^[^~=]+' | grep -vE '^dnf|^functools32|^gpg|^libdnf|^psycopg|^systemd-python' | sort | uniq > /tmp/combined_requirements.txt invenv init -r /tmp/combined_requirements.txt -d rm -f /tmp/combined_requirements.txt -
jsnjack created this gist
Mar 27, 2024 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,5 @@ #!/bin/bash sudo dnf install python3-xmlsec xmlsec1-devel libtool-ltdl-devel find . -name '.venv' -prune -o -name '*requirements*.txt' -print0 | xargs -0 cat | grep -oE '^[^~=]+' | grep -vE '^dnf|^functools32|^gpg|^libdnf|^psycopg|^systemd-python' | sort | uniq > /tmp/combined_requirements.txt invenv init -r /tmp/combined_requirements.txt -d rm -f /tmp/combined_requirements.txt