Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: rofi-wayland-1.7.0
@ 2021-10-15 19:46 ram02z
  2021-10-15 19:54 ` [PR PATCH] [Updated] " ram02z
                   ` (24 more replies)
  0 siblings, 25 replies; 26+ messages in thread
From: ram02z @ 2021-10-15 19:46 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1596 bytes --]

There is a new pull request by ram02z against master on the void-packages repository

https://github.com/ram02z/void-packages rofi-wayland
https://github.com/void-linux/void-packages/pull/33578

New package: rofi-wayland-1.7.0
<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->


A patch file from https://github.com/void-linux/void-packages/pull/33578.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-rofi-wayland-33578.patch --]
[-- Type: text/x-diff, Size: 2778 bytes --]

From 1acd735c1e15be88c64026afb641b4424e6e7076 Mon Sep 17 00:00:00 2001
From: Omar Zeghouani <omarzeghouanii@gmail.com>
Date: Fri, 15 Oct 2021 20:11:35 +0100
Subject: [PATCH] New package: rofi-wayland-1.7.0

---
 ...1-meson-fix-version-in-rofi.pc-again.patch | 24 +++++++++++++++++++
 srcpkgs/rofi-wayland/template                 | 23 ++++++++++++++++++
 2 files changed, 47 insertions(+)
 create mode 100644 srcpkgs/rofi-wayland/patches/01-meson-fix-version-in-rofi.pc-again.patch
 create mode 100644 srcpkgs/rofi-wayland/template

diff --git a/srcpkgs/rofi-wayland/patches/01-meson-fix-version-in-rofi.pc-again.patch b/srcpkgs/rofi-wayland/patches/01-meson-fix-version-in-rofi.pc-again.patch
new file mode 100644
index 000000000000..70119411a816
--- /dev/null
+++ b/srcpkgs/rofi-wayland/patches/01-meson-fix-version-in-rofi.pc-again.patch
@@ -0,0 +1,24 @@
+From de28766ce014d9cd09c460d520a8a28fbe41fa0d Mon Sep 17 00:00:00 2001
+From: Jakub Jirutka <jakub@jirutka.cz>
+Date: Mon, 4 Oct 2021 00:59:51 +0200
+Subject: [PATCH] [Meson] Fix version in rofi.pc again
+Patch-Source: https://github.com/lbonn/rofi/pull/37
+
+rofi.pc: pkgconf version 1.7.0+wayland1 is invalid
+---
+ meson.build | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/meson.build b/meson.build
+index 604956f11..dfb1af847 100644
+--- a/meson.build
++++ b/meson.build
+@@ -339,7 +339,7 @@ pkg = import('pkgconfig')
+ pkg.generate(
+     filebase: 'rofi',
+     name: 'rofi',
+-    version: meson.project_version().split('-')[0],
++    version: meson.project_version().split('+')[0],
+     description: 'Header files for rofi plugins',
+     variables: [
+         'pluginsdir=@0@'.format(join_paths('${libdir}', meson.project_name())),
diff --git a/srcpkgs/rofi-wayland/template b/srcpkgs/rofi-wayland/template
new file mode 100644
index 000000000000..71b9302d9583
--- /dev/null
+++ b/srcpkgs/rofi-wayland/template
@@ -0,0 +1,23 @@
+# Template file for 'rofi-wayland'
+pkgname=rofi-wayland
+version=1.7.0
+revision=1
+_ver=${version}+wayland1
+wrksrc=rofi-${_ver}
+build_style=meson
+configure_args="-Dxcb=disabled -Dcheck=disabled"
+hostmakedepends="ninja flex bison glib-devel pkg-config wayland-devel wayland-protocols"
+makedepends="libXinerama-devel librsvg-devel libxkbcommon-devel
+ pango-devel startup-notification-devel"
+checkdepends="check-devel cppcheck xkeyboard-config"
+short_desc="Window switcher, run dialog and dmenu replacement"
+maintainer="Omar Zeghouani <omarzeghouanii@gmail.com>"
+license="MIT"
+homepage="https://github.com/lbonn/rofi"
+distfiles="https://github.com/lbonn/rofi/releases/download/${_ver}/rofi-${_ver}.tar.gz"
+checksum=07892f3f993de3ccc5e3e7705c58a88498216d2a7aaaabb14e29dd2837701691
+replaces="rofi>=0"
+
+post_install() {
+	vlicense COPYING
+}

^ permalink raw reply	[flat|nested] 26+ messages in thread

end of thread, other threads:[~2022-07-18 14:50 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-15 19:46 [PR PATCH] New package: rofi-wayland-1.7.0 ram02z
2021-10-15 19:54 ` [PR PATCH] [Updated] " ram02z
2021-10-15 19:59 ` ram02z
2021-10-15 20:08 ` ram02z
2021-10-15 22:34 ` ram02z
2021-10-15 22:40 ` ram02z
2021-10-17 10:41 ` ram02z
2021-10-17 10:42 ` ram02z
2021-10-17 11:20 ` ram02z
2021-10-17 11:20 ` [PR PATCH] [Updated] " ram02z
2021-11-03 18:58 ` [PR REVIEW] " TinfoilSubmarine
2021-11-03 19:01 ` ram02z
2021-11-03 19:14 ` TinfoilSubmarine
2021-12-21 23:21 ` [PR PATCH] [Updated] " ram02z
2021-12-22 13:21 ` [PR PATCH] [Updated] New package: rofi-wayland-1.7.2 ram02z
2021-12-22 14:37 ` ram02z
2022-01-30 23:12 ` ram02z
2022-02-01 23:44 ` [PR PATCH] [Updated] New package: rofi-wayland-1.7.3 ram02z
2022-03-03 15:14 ` ram02z
2022-06-08  2:12 ` github-actions
2022-06-08  7:51 ` ram02z
2022-07-18 14:15 ` ahesford
2022-07-18 14:15 ` [PR PATCH] [Closed]: " ahesford
2022-07-18 14:25 ` ram02z
2022-07-18 14:35 ` paper42
2022-07-18 14:50 ` ram02z

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).