Saving my work

master
Drew Bednar 4 years ago
parent ea98366812
commit e94561ebfa

62
.gitignore vendored

@ -1,60 +1,2 @@
# ---> Python
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
# C extensions
*.so
# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg
# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec
# Installer logs
pip-log.txt
pip-delete-this-directory.txt
# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*,cover
# Translations
*.mo
*.pot
# Django stuff:
*.log
# Sphinx documentation
docs/_build/
# PyBuilder
target/
my_message-1.0_amd64.deb
my_message/usr/*

@ -1,3 +1,8 @@
# learn_deb
Learn Deb Archive Packaging
Learn Deb Archive Packaging.
## References
- [Source tutorial](https://linuxconfig.org/easy-way-to-create-a-debian-package-and-local-package-repository)
- - [Nexus Apt repo setup](https://help.sonatype.com/repomanager3/formats/apt-repositories)

@ -0,0 +1,5 @@
#include <iostream>
int main() {
using namespace std;
cout << "Hello dirp\n";
}

@ -0,0 +1,9 @@
Package: my-message
Version: 1.0
Section: custom
Priority: optional
Architecture: all
Essential: no
Installed-size: 1024
Maintainer: drew@runcible.io
Description: Prints a message to stdout
Loading…
Cancel
Save