Initial packaging.

HEAD
Simon Quigley 6 years ago
parent 2be6a2e63b
commit 43097f8526

5
debian/changelog vendored

@ -0,0 +1,5 @@
lubuntu-about (1.0.0) UNRELEASED; urgency=medium
* Initial release.
-- Simon Quigley <tsimonq2@ubuntu.com> Sat, 27 Jan 2018 22:52:50 -0600

1
debian/compat vendored

@ -0,0 +1 @@
11

32
debian/control vendored

@ -0,0 +1,32 @@
Source: lubuntu-about
Section: x11
Priority: optional
Maintainer: Lubuntu Developers <lubuntu-devel@lists.ubuntu.com>
Uploaders: Simon Quigley <tsimonq2@ubuntu.com>,
Julien Lavergne <gilir@ubuntu.com>
Build-Depends: debhelper (>= 11), dh-python, python3-all, python3-setuptools
Standards-Version: 4.1.3
Homepage: https://github.com/lubuntu-team/lubuntu-about
X-Python3-Version: >= 3.6
Vcs-Git: https://github.com/lubuntu-team/lubuntu-about
Vcs-Browser: https://github.com/lubuntu-team/lubuntu-about
Package: lubuntu-about
Architecture: all
Depends: python3-lubuntu-about, ${python3:Depends}, ${misc:Depends}
Description: Program showing information about a Lubuntu system - libraries
A simple entry in Lubuntu's main menu with a command showing some basic
hardware and software information, like free memory, processor, OS version,
kernel, etc.
.
This package installs the main executable.
Package: python3-lubuntu-about
Architecture: all
Depends: ${python3:Depends}, ${misc:Depends}
Description: Program showing information about a Lubuntu system - libraries
A simple entry in Lubuntu's main menu with a command showing some basic
hardware and software information, like free memory, processor, OS version,
kernel, etc.
.
This package installs the Python 3 libraries.

22
debian/copyright vendored

@ -0,0 +1,22 @@
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: lubuntu-about
Source: https://github.com/lubuntu-team/lubuntu-about
Files: *
Copyright: 2018 Lubuntu Developers <lubuntu-devel@lists.ubuntu.com>
License: GPL-3+
This package is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
.
This package is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>
.
On Debian systems, the complete text of the GNU General
Public License version 3 can be found in "/usr/share/common-licenses/GPL-3".

11
debian/rules vendored

@ -0,0 +1,11 @@
#!/usr/bin/make -f
export DH_VERBOSE = 1
export PYBUILD_NAME=lubuntu-about
%:
dh $@ --with python2,python3 --buildsystem=pybuild
override_dh_python3:
dh_python3 --no-shebang-rewrite

@ -0,0 +1 @@
3.0 (native)

@ -0,0 +1 @@
extend-diff-ignore = "^[^/]*[.]egg-info/"

@ -7,7 +7,7 @@ import os
from DistUtilsExtra.command import *
setup(name='lubuntu-about',
version='1.0',
version='1.0.0',
packages=['src'],
scripts=['src/lubuntu-about'],
cmdclass = { "build" : build_extra.build_extra }

Loading…
Cancel
Save