version, if PYTHON3_DEFAULT is set to anything but 3.6. Since the MOVED
file sets the new origin and flavor such that a Python-3.6 compatible
package is built, the original Python version for this port is ignored.
Reported by: lev
Approved by: antoine (implicit)
- Use option helper target, deobfuscate installation commands, mute
MKDIR's, wrap overly long lines, use INSTAL_DATA when appropriate
instead of INSTALL_MAN
do not have /usr/X11R6 for quite a long time)
- Move the options block lower within the Makefile
- Add missing USE_XORG as reported by `stage-qa'
- Provide sensible description for LIBNOVA option
- Remove MONOCHROME option: the program does not run
properly with it ("Fatal Error! No visuals that we
can use") and monochrome mode can be enabled by
launching it with `-m' switch
- Convert to option helpers, use INSTALL_DATA for
installing documentation files, not INSTALL_MAN
The main purpose of Polybar is to help users create awesome status
bars. It has built-in functionality to display information about the
most commonly used services. Some of the services included so far:
Systray icons
Window title
Playback controls and status display for MPD using libmpdclient
ALSA volume controls
Workspace and desktop panel for bspwm and i3
Workspace module for EWMH compliant window managers
Keyboard layout and indicator status
CPU and memory load indicator
Battery display
Network connection details
Backlight level
Date and time label
Time-based shell script execution
Command output tailing
User-defined menu tree
Inter-process messaging
And more...
WWW: https://github.com/jaagr/polybarhttps://forums.freebsd.org/threads/62494/
Submitted by: capt_redbeard@protonmail.com
Reviewed by: 6yearold_gmail.com, adridg, mat, lbdm@privacychain.ch, tobik
Differential Revision: https://reviews.freebsd.org/D13634
Changelog:
* new : added an icon for closed accounts
* new : rewritten partially the charts and removed the treeview for legend
* new : chart line have now a vertical line on active item
* new : chart now display the 0 scale text
* new : rewritten the dateentry widget to use a popover
* new : reports enable to copy to clipboard in addition to export as CSV
* change: chart bar/line now span automatically
* change: chart donut hole do not trigger overlay anymore
* change: preferences, txn column list removed, as there is a now a context menu
* change: top spending is now display top 10 items
* change: fixer.io is now used to get currencies exchange rate (replace yahoo)
* change: changes and new entries into the help menu
* wish : #1741339 transaction quicksearch into amounts
* wish : #1709374 enable to export detail list from reports
* wish : #1697241 allow custom currencies for cryptocurrency and discontinued
* wish : #1674018 usability and UX improvements for the reports dialog's toolbars
* wish : #1661986 separate view of out of budget categories in budget report
* wish : #1656589 add highlighting on legend text for report graph
* wish : #300380 beta: add pdf export for transaction (in testing menu)
* bugfix: chart x-scale labels were sometime overriding each others
* bugfix: balance report: overdrawn was not displayed if the threshold was 0
* bugfix: balance report: the amount scale was faulty offset to left at first draw
* bugfix: budget report: chart bar was not showing over state
* bugfix: report: fixed a bad empty detail list problem
* bugfix: fixed some minor memory leak
* bugfix: #1734449 date range in Trend Time Report
* bugfix: #1734210 date/calendar popup registers keyboard bindings (Gnome asks)
* bugfix: #1730527 currencies update fail due to yahoo discontinued service
* bugfix: #1721980 group internal xfer when sort by payee
* bugfix: #1720377 title bar close do not backup a new file
* bugfix: #1688744 euro minor converts Euro to Euro wrong
#######################################################################
Reminder for package maintainers of ircd-hybrid: ircd-hybrid now has
GnuTLS support as of version 8.2.13
#######################################################################
Bug report from robertames@hotmail.com
When shutting down ircd-hybrid, a confusing error is displayed
stating the pid file does not exist:
# /usr/local/etc/rc.d/ircd-hybrid stop
Stopping ircd_hybrid.
Waiting for PIDS: 14504.
rm: /var/run/ircd/ircd.pid: No such file or directory
This is because after ircd correctly cleans up it's pid file, the
rc script tries to delete the non existing file. In the rc script,
stop_postcmd is not needed.
PR: ports/224977
Submitted by: robertames@hotmail.com
Add a local distfile backup while LLVM sorts out mirror issues.
Correct shared linkage with llvm-config50.[0]
PR: 223191 [0]
Submitted by: greg@unrelenting.technology [0]
MFH: 2018Q1
src/mp4.cpp:679:20: error: cannot initialize return object of type 'mp4v2_ismacrypParams *' (aka 'mp4v2_ismacryp_session_params *') with an rvalue of type 'MP4TrackId' (aka 'unsigned int')
return MP4_INVALID_TRACK_ID;
^~~~~~~~~~~~~~~~~~~~
./include/mp4v2/general.h:45:33: note: expanded from macro 'MP4_INVALID_TRACK_ID'
#define MP4_INVALID_TRACK_ID ((MP4TrackId)0) /**< Constant: invalid MP4TrackId. */
^~~~~~~~~~~~~~~
src/rtphint.cpp:348:32: error: comparison between pointer and integer ('const char *' and 'int')
if (pSlash != '\0') {
~~~~~~ ^ ~~~~
util/mp4chaps.cpp:712:14: error: case value evaluates to 4026531855, which cannot be narrowed to type 'int'
[-Wc++11-narrowing]
case LC_CHP_REMOVE:
^
util/mp4file.cpp:206:14: error: case value evaluates to 4026531848, which cannot be narrowed to type 'int'
[-Wc++11-narrowing]
case LC_DUMP:
^
util/mp4art.cpp:413:14: error: case value evaluates to 4026531852, which cannot be narrowed to type 'int'
[-Wc++11-narrowing]
case LC_EXTRACT:
^
libutil/Utility.cpp:544:18: error: case value evaluates to 4026531842, which cannot be narrowed to type 'int'
[-Wc++11-narrowing]
case LC_VERBOSE:
^
Reported by: antoine (via bug 224669)
Console.cpp:36:3: error: cannot initialize a member subobject of type 'int' with an rvalue of type 'nullptr_t'
NULL
^~~~
/usr/include/sys/_null.h:37:14: note: expanded from macro 'NULL'
#define NULL nullptr
^~~~~~~
Console.cpp:36:3: warning: suggest braces around initialization of subobject [-Wmissing-braces]
NULL
^~~~
{ }
/usr/include/sys/_null.h:37:14: note: expanded from macro 'NULL'
#define NULL nullptr
^~~~~~~
Console.cpp:36:3: warning: suggest braces around initialization of subobject [-Wmissing-braces]
NULL
^~~~
{ }
/usr/include/sys/_null.h:37:14: note: expanded from macro 'NULL'
#define NULL nullptr
^~~~~~~
Reported by: antoine (via bug 224669)