Skip to content
Snippets Groups Projects
Verified Commit 34fee069 authored by me5na7qbjqbrp's avatar me5na7qbjqbrp
Browse files

Initial Debian packaging

parent 33305cca
No related branches found
No related tags found
No related merge requests found
Pipeline #2907 passed with warnings with stage
in 39 seconds
...@@ -6,6 +6,8 @@ __pycache__ ...@@ -6,6 +6,8 @@ __pycache__
*.egg-info *.egg-info
_build _build
*.mo *.mo
.pybuild
*.debhelper
# Virtualenvs # Virtualenvs
.tox .tox
......
include MANIFEST.in
include LICENSE
cranspasswords for Debian
Install cpasswords client and server as "cranspasswords".
-- Alexandre Iooss <erdnaxe@crans.org> Wed, 15 Apr 2020 13:00:11 +0200
cranspasswords (0.2.0) unstable; urgency=low
* Initial release.
-- Alexandre Iooss <erdnaxe@crans.org> Wed, 15 Apr 2020 13:00:11 +0200
11
Source: cranspasswords
Section: devel
Priority: optional
Maintainer: Les Nounous <roots@crans.org>
Build-Depends: debhelper (>=11~), dh-python, python3-all, python3-setuptools
Standards-Version: 4.1.4
Homepage: https://gitlab.crans.org/nounous/cranspasswords
X-Python3-Version: >= 3.4
Package: cranspasswords
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}, ${python3:Depends}
Description: group password manager based on GnuPG
This is a group password manager that collects encrypted files on a remote
server and decrypt them using GnuPG.
#!/usr/bin/make -f
export DH_VERBOSE = 1
%:
dh $@ --with python3 --buildsystem=pybuild
version=3
setup.py 100644 → 100755
#!/usr/bin/env python3
from setuptools import setup from setuptools import setup
from os import getenv, path from os import getenv, path
from subprocess import call from subprocess import call
...@@ -27,7 +29,8 @@ setup( ...@@ -27,7 +29,8 @@ setup(
version="0.2.0", version="0.2.0",
description="Group password manager based on GPG", description="Group password manager based on GPG",
long_description=open('README.rst').read(), long_description=open('README.rst').read(),
maintainer="CRANS <roots@crans.org>", author="CRANS",
author_email="roots@crans.org",
license='GPLv3', license='GPLv3',
keywords=['crans', 'passwords', 'gpg', 'ssh', 'group'], keywords=['crans', 'passwords', 'gpg', 'ssh', 'group'],
url="https://gitlab.crans.org/nounous/cranspasswords", url="https://gitlab.crans.org/nounous/cranspasswords",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment