diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-10-10 11:17:08 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-10-10 11:17:08 -0400 |
commit | 071bbc44de401cd264fe44a6ab330657b56ca329 (patch) | |
tree | f2c56084bd323a7094a8166884354368f6cd1b1b | |
parent | 5d829ccfcc8e051397a0fe6d273f7cda258198db (diff) |
Tidy up.
-rw-r--r-- | PKGBUILD | 16 | ||||
-rw-r--r-- | README.md | 4 | ||||
-rwxr-xr-x | paraboley | 9 | ||||
-rw-r--r-- | setup.py | 6 |
4 files changed, 18 insertions, 17 deletions
@@ -1,11 +1,13 @@ +# Maintainer (Archey): Laurie Clark-Michalek <bluepeppers@archlinux.us> +# Contributer (Archey): graysky <graysky AT archlinux DOR us> # Maintainer (Parabola) : Aurélien DESBRIÈRES <aurelien@hackers.camp> pkgname=paraboley -pkgver=0.2 +pkgver=0.3 pkgrel=1 -pkgdesc="Python script to display system infomation alongside the Parabola GNU / Linux-libre logo." +pkgdesc="Python script to display system infomation alongside the Parabola logo." arch=('any') -url="https://projects.parabola.nu/paraboley.git" +url="https://git.parabola.nu/packages/paraboley.git" license=('GPL') depends=('python') makedepends=('git' 'python-distribute') @@ -14,9 +16,9 @@ optdepends=( 'python-logbook-git: for logging' 'imagemagick: for default screenshot command' ) -conflicts=() -provides=('paraboley') -source="git://projects.parabola.nu/paraboley.git" +replaces=('archey' 'archey3') +source=("git://git.parabola.nu/packages/paraboley.git") +md5sums=('SKIP') pkgver() { cd ${pkgname} @@ -26,5 +28,5 @@ pkgver() { package() { cd "$srcdir/$pkgname" python setup.py install --root=${pkgdir} - install -D -m644 COPYING ${pkgdir}/usr/share/licenses/paraboley/COPYING + install -D -m644 COPYING ${pkgdir}/usr/share/licenses/$pkgname/COPYING } @@ -1,4 +1,4 @@ Paraboley -======== +========= -Paraboley is a system infomation printer, designed to be used when taking screenshots of computer desktops to provide additional infomation about the operating system setup. Paraboley is designed to be used for Parabola GNU / Linux-libre, and it acordingly prints out the Parabola GNU / Linux-libre logo along side the system infomation.
\ No newline at end of file +Paraboley is a system infomation printer, designed to be used when taking screenshots of computer desktops to provide additional infomation about the operating system setup. Paraboley is designed to be used for Parabola GNU/Linux-libre, and it acordingly prints out the Parabola GNU/Linux-libre logo along side the system infomation. @@ -1,20 +1,18 @@ #!/usr/bin/env python # -# Paraboley is a forked made by Aurélien DESBIRÈRES <aurelien@hackers.camp> -# of archey3 to present the Parabola GNU / Linux-libre logo and informations +# Paraboley is a fork of Archey3 made by Aurélien DESBIRÈRES <aurelien@hackers.camp> # # paraboley # # Distributed under the terms of the GNU General Public License v3. # See http://www.gnu.org/licenses/gpl.txt for the full license text. # -# Simple python script to display an Parabola logo in ASCII art +# Simple python script to display a Parabola logo in ASCII art # Along with basic system information. __version__ = "0.3" # Import libraries - import collections import subprocess, optparse, re, sys, configparser from subprocess import Popen, PIPE @@ -99,6 +97,7 @@ WM_DICT = collections.OrderedDict([ ('awesome', 'Awesome'), ('beryl', 'Beryl'), ('blackbox', 'Blackbox'), + ('bspwm', 'bspwm'), ('dwm', 'DWM'), ('enlightenment', 'Enlightenment'), ('fluxbox', 'Fluxbox'), @@ -246,7 +245,7 @@ class fsDisplay(display): def format_output(self, instring): try: decimal_point = self.call_command( - 'locale -ck decimal_point').split('\n')[1].split('=')[1] + 'locale -ck decimal_point').split('\n')[1].split('=')[1].strip('\"') except Exception as e: self.state.logger.warning('Could not determine locale decimal point,' + 'defaulting to \'.\', failed with error {0}'.format(e)) @@ -6,12 +6,12 @@ def read(fname): setup( name="Paraboley", - version="0.2", + version="0.3", author="Aurélien DESBRIÈRES", author_email="aurelien@hackers.camp", - description="A simple python scrip to display an Parabola GNU / Linux-libre logo in ASCII art along with basic system information.", + description="A simple python script to display a Parabola GNU/Linux-libre logo in ASCII art along with basic system information.", license="GPL", - url="https://projects.parabola.nu/paraboley.git", + url="https://git.parabola.nu/packages/paraboley.git", long_description=read("README.md"), scripts=["paraboley"] ) |