pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/x11/rofi



Module Name:    pkgsrc
Committed By:   nia
Date:           Mon Oct 18 11:42:35 UTC 2021

Modified Files:
        pkgsrc/x11/rofi: Makefile PLIST distinfo

Log Message:
rofi: update to 1.7.0

v1.7.0: Iggy 2024
   - ADD: -steal-focus option.
   - ADD: [Config] Add nested configuration option support.
   - ADD: [Config] Support for handling dynamic config options.
   - ADD: [IconFetcher] Find images shipped with the theme.
   - ADD: [DRun] Add support for passing file (using file-browser) completer for desktop files that support his.
   - ADD: [DRun] Support for service files.
   - ADD: [FileBrowser] Allow setting startup directory (#1325)
   - ADD: [FileBrowser]: Add sorting-method. (#1340)
   - ADD: [FileBrowser] Add option to group directories ahead of files. (#1352)
   - ADD: [Filtering] Add prefix matching method. (#1237)
   - ADD: [Icon] Add option to square the widget.
   - ADD: [Icon|Button] Make action available on icon, button and keybinding name.
   - ADD: [KeyBinding] Add Ctrl-Shift-Enter option. (#874)
   - ADD: [ListView]-hover-select option. (#1234)
   - ADD: [Run] Add support for passing file (using file-browser) completer.
   - ADD: [Textbox] Allow theme to force markup on text widget.
   - ADD: [Theme] theme validation option. (`-rasi-validate`)
   - ADD: [View] Add support for user timeout and keybinding action.
   - ADD: [Widget] Add cursor property (#1313)
   - ADD: [Widget] Add scaling option to background-image.
   - ADD: [Widget] Add support background-image and lineair gradient option.
   - ADD: [Window] Add pango markup for window format (#1288)
   - ADD: [Window] Allow rofi to stay open after closing window.
   - FIX: [DSL] Move theme reset into grammar parser from lexer.
   - FIX: [Drun]: fix sorting on broken desktop files. (thanks to nick87720z)
   - FIX: [File Browser]: Fix escaping of paths.
   - FIX: [ListView] Fix wrong subwidget name.
   - FIX: [Script] Don't enable custom keybindings by default.
   - FIX: [TextBox] Fix height estimation.
   - FIX: [Theme] widget state and inherited properties. This should help fixing some old themes with changes from 1.6.1.
   - FIX: [Widget] Fix rendering of border and dashes. (Thanks to nick87720z)
   - FIX: [Build] Fix CI.
   - FIX: [Theme] Discard old theme, when explicitly passing one on command line.
   - REMOVE: -dump-xresources
   - REMOVE: -fullscreen
   - REMOVE: -show-match
   - REMOVE: Old xresources based configuration file.
   - REMOVE: fake transparency/background option, part of theme now.
   - REMOVE: xresources parsing via Xserver
   - Remove: [Theme] Remove backwards compatiblity hack.
   - DOC: Update changes to manpages


To generate a diff of this commit:
cvs rdiff -u -r1.23 -r1.24 pkgsrc/x11/rofi/Makefile
cvs rdiff -u -r1.4 -r1.5 pkgsrc/x11/rofi/PLIST
cvs rdiff -u -r1.5 -r1.6 pkgsrc/x11/rofi/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/x11/rofi/Makefile
diff -u pkgsrc/x11/rofi/Makefile:1.23 pkgsrc/x11/rofi/Makefile:1.24
--- pkgsrc/x11/rofi/Makefile:1.23       Fri May 14 10:21:24 2021
+++ pkgsrc/x11/rofi/Makefile    Mon Oct 18 11:42:35 2021
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.23 2021/05/14 10:21:24 nia Exp $
+# $NetBSD: Makefile,v 1.24 2021/10/18 11:42:35 nia Exp $
 
-DISTNAME=      rofi-1.6.1
-PKGREVISION=   1
+DISTNAME=      rofi-1.7.0
 CATEGORIES=    x11
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=DaveDavenport/}
 # We need to specify this way to get submodules fetched
@@ -27,6 +26,7 @@ REPLACE_BASH+=        script/rofi-theme-selecto
 .include "../../graphics/librsvg/buildlink3.mk"
 .include "../../x11/libxkbcommon/buildlink3.mk"
 .include "../../x11/startup-notification/buildlink3.mk"
+.include "../../x11/xcb-util-cursor/buildlink3.mk"
 .include "../../x11/xcb-util-wm/buildlink3.mk"
 .include "../../x11/xcb-util-xrm/buildlink3.mk"
 .include "../../x11/xcb-util/buildlink3.mk"

Index: pkgsrc/x11/rofi/PLIST
diff -u pkgsrc/x11/rofi/PLIST:1.4 pkgsrc/x11/rofi/PLIST:1.5
--- pkgsrc/x11/rofi/PLIST:1.4   Tue Nov 24 17:22:00 2020
+++ pkgsrc/x11/rofi/PLIST       Mon Oct 18 11:42:35 2021
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.4 2020/11/24 17:22:00 nia Exp $
+@comment $NetBSD: PLIST,v 1.5 2021/10/18 11:42:35 nia Exp $
 bin/rofi
 bin/rofi-sensible-terminal
 bin/rofi-theme-selector
@@ -26,6 +26,7 @@ share/rofi/themes/arthur.rasi
 share/rofi/themes/blue.rasi
 share/rofi/themes/c64.rasi
 share/rofi/themes/dmenu.rasi
+share/rofi/themes/docu.rasi
 share/rofi/themes/fancy.rasi
 share/rofi/themes/glue_pro_blue.rasi
 share/rofi/themes/gruvbox-common.rasi
@@ -35,6 +36,8 @@ share/rofi/themes/gruvbox-dark.rasi
 share/rofi/themes/gruvbox-light-hard.rasi
 share/rofi/themes/gruvbox-light-soft.rasi
 share/rofi/themes/gruvbox-light.rasi
+share/rofi/themes/iggy.jpg
+share/rofi/themes/iggy.rasi
 share/rofi/themes/lb.rasi
 share/rofi/themes/paper-float.rasi
 share/rofi/themes/purple.rasi

Index: pkgsrc/x11/rofi/distinfo
diff -u pkgsrc/x11/rofi/distinfo:1.5 pkgsrc/x11/rofi/distinfo:1.6
--- pkgsrc/x11/rofi/distinfo:1.5        Thu Oct  7 15:14:11 2021
+++ pkgsrc/x11/rofi/distinfo    Mon Oct 18 11:42:35 2021
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.5 2021/10/07 15:14:11 nia Exp $
+$NetBSD: distinfo,v 1.6 2021/10/18 11:42:35 nia Exp $
 
-RMD160 (rofi-1.6.1.tar.xz) = 0dcc774313346422b5c91d008b305fd908f94b1f
-SHA512 (rofi-1.6.1.tar.xz) = c9794a7e4921e58ecc5fc7096218203f548efe2a49ffa6971accc12e9172248bda856ad06f8c11ada9abb62b9a43c7fffce1c1be9a3fe1365c94561b170a8b73
-Size (rofi-1.6.1.tar.xz) = 404372 bytes
+RMD160 (rofi-1.7.0.tar.xz) = e7812cb3d6fdc12569f9a268db87d8bc0f80e194
+SHA512 (rofi-1.7.0.tar.xz) = a2745962430bedcfd772399917c0afef2047b601168e13ef473a86689ee2e82922c7247cc7ab0205f8fbca5b88b44feac9f8469b055ab10953546b78d64adbb2
+Size (rofi-1.7.0.tar.xz) = 733632 bytes



Home | Main Index | Thread Index | Old Index