debian: update packaging, add changelog entries
This commit is contained in:
parent
18c4513b2a
commit
986536e28f
15
debian/changelog
vendored
15
debian/changelog
vendored
@ -1,3 +1,18 @@
|
||||
i3status (2.3-1) unstable; urgency=low
|
||||
|
||||
* config search order is now ~/.i3status.conf, ~/.config/i3status/config,
|
||||
/etc/i3status/config, then /etc/xdg/i3status/config
|
||||
* battery: use POWER_NOW if CURRENT_NOW is not available (linux >= 2.6.36)
|
||||
* use kill(0, pid) instead of /proc to check if a process is alive
|
||||
* cache DNS query results also if there is no IPv6 connectivity
|
||||
* implement the 'path' option for cpu_temperature
|
||||
* add cpu_usage module
|
||||
* automatically detect the output format unless configured specifically
|
||||
* Bugfix: get time at the beginning of the loop
|
||||
* Bugfix: respect locale settings (for %c in date format)
|
||||
|
||||
-- Michael Stapelberg <michael@stapelberg.de> Wed, 13 Jul 2011 16:25:53 +0200
|
||||
|
||||
i3status (2.2-1) unstable; urgency=low
|
||||
|
||||
* Implement a discordian date module (like ddate(1))
|
||||
|
12
debian/control
vendored
12
debian/control
vendored
@ -4,8 +4,8 @@ Priority: extra
|
||||
Maintainer: Michael Stapelberg <michael@stapelberg.de>
|
||||
DM-Upload-Allowed: yes
|
||||
Build-Depends: debhelper (>= 5), libiw-dev [!kfreebsd-i386 !kfreebsd-amd64 !hurd-i386], libconfuse-dev, asciidoc, xmlto, libcap2-bin, libasound2-dev
|
||||
Standards-Version: 3.9.1
|
||||
Homepage: http://i3.zekjur.net/i3status
|
||||
Standards-Version: 3.9.2
|
||||
Homepage: http://i3wm.org/i3status
|
||||
|
||||
Package: i3status
|
||||
Architecture: any
|
||||
@ -13,7 +13,7 @@ Depends: ${shlibs:Depends}, ${misc:Depends}
|
||||
Recommends: dzen2 | xmobar, libcap2-bin
|
||||
Enhances: dzen2, xmobar
|
||||
Description: Generates a status line for dzen2 or xmobar
|
||||
i3status is a small program (less than 1000 SLOC) for generating a status bar
|
||||
for dzen2, xmobar or similar programs by combining several information about
|
||||
your system (IP addresses of your interfaces, load, current date/time, ESSID
|
||||
of the network you are associated to, disk status, and so on).
|
||||
i3status is a small (about 1500 SLOC) and light-weight program for generating
|
||||
a status bar for i3bar, dzen2, xmobar or similar programs by combining several
|
||||
information about your system (IP addresses of your interfaces, load, current
|
||||
date/time, ESSID of the network you are associated to, disk status, and so on).
|
||||
|
4
debian/i3status.postinst
vendored
4
debian/i3status.postinst
vendored
@ -6,3 +6,7 @@ set -e
|
||||
# issue as i3status only queries the speed, it does not change any
|
||||
# configuration.
|
||||
setcap cap_net_admin=ep /usr/bin/i3status || true
|
||||
|
||||
#DEBHELPER#
|
||||
|
||||
exit 0
|
||||
|
5
debian/rules
vendored
5
debian/rules
vendored
@ -9,7 +9,10 @@
|
||||
# Uncomment this to turn on verbose mode.
|
||||
#export DH_VERBOSE=1
|
||||
|
||||
build: build-stamp
|
||||
build: build-arch build-indep
|
||||
|
||||
build-arch: build-stamp
|
||||
build-indep: build-stamp
|
||||
|
||||
build-stamp:
|
||||
dh_testdir
|
||||
|
Loading…
Reference in New Issue
Block a user