summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author4ur3l13n <aurelien@hackers.camp>2015-08-06 17:22:49 +0200
committer4ur3l13n <aurelien@hackers.camp>2015-08-06 17:22:49 +0200
commit28af3d42e0ea56a9fd0efe53a435bb5d5d5d0cbf (patch)
tree5b6a3659b393bae05538d34c77080375f07f2f03
parent80ae452a4792014e203418cdf9efadbb2181b32c (diff)
upgrade to version 2
-rw-r--r--PKGBUILD6
-rwxr-xr-xparaboley10
-rw-r--r--setup.py4
3 files changed, 10 insertions, 10 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 0767b86..20666ee 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,11 +1,11 @@
# Maintainer (Parabola) : Aurélien DESBRIÈRES <aurelien@hackers.camp>
pkgname=paraboley
-pkgver=0.1
+pkgver=0.2
pkgrel=1
pkgdesc="Python script to display system infomation alongside the Parabola GNU / Linux-libre logo."
arch=('any')
-url="http://XL04D.github.com/paraboley"
+url="https://projects.parabola.nu/paraboley.git"
license=('GPL')
depends=('python')
makedepends=('git' 'python-distribute')
@@ -16,7 +16,7 @@ optdepends=(
)
conflicts=()
provides=('paraboley')
-source="git://github.com/XL04D/paraboley.git"
+source="git://projects.parabola.nu/paraboley.git"
pkgver() {
cd ${pkgname}
diff --git a/paraboley b/paraboley
index 122b3cb..bef2eea 100755
--- a/paraboley
+++ b/paraboley
@@ -3,14 +3,12 @@
# 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
#
-# archey3 [version 0.5]
+# paraboley [version 0.2]
#
-# Copyright 2010 Melik Manukyan <melik@archlinux.us>
-# Copyright 2010-2012 Laurie Clark-Michalek <bluepeppers@archlinux.us>
# 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 Archlinux logo in ASCII art
+# Simple python script to display an Parabola logo in ASCII art
# Along with basic system information.
# Import libraries
@@ -88,6 +86,7 @@ DE_DICT = collections.OrderedDict([
('cinnamon', 'Cinnamon'),
('gnome-session', 'GNOME'),
('ksmserver', 'KDE'),
+ ('mate-session', 'MATE'),
('xfce4-session', 'Xfce'),
('lxsession', 'LXDE'),
('', 'None'),
@@ -101,9 +100,10 @@ WM_DICT = collections.OrderedDict([
('enlightenment', 'Enlightenment'),
('fluxbox', 'Fluxbox'),
('fvwm', 'FVWM'),
+ ('herbstluftwm', 'herbstluftwm'),
('i3', 'i3'),
('icewm', 'IceWM'),
- ('kwin', 'KWin'),
+ (re.compile('kwin(_x11|_wayland)?'), 'KWin'),
('metacity', 'Metacity'),
('musca', 'Musca'),
('openbox', 'Openbox'),
diff --git a/setup.py b/setup.py
index 9844d10..84e752e 100644
--- a/setup.py
+++ b/setup.py
@@ -6,12 +6,12 @@ def read(fname):
setup(
name="Paraboley",
- version="0.1",
+ version="0.2",
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.",
license="GPL",
- url="http://XL04D.github.com/paraboley",
+ url="https://projects.parabola.nu/paraboley.git",
long_description=read("README.md"),
scripts=["paraboley"]
)