Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New Package: iwgtk 0.4
@ 2021-05-04 22:30 caughtquick
  2021-05-04 22:39 ` [PR PATCH] [Closed]: " abenson
  0 siblings, 1 reply; 2+ messages in thread
From: caughtquick @ 2021-05-04 22:30 UTC (permalink / raw)
  To: ml

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

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

https://github.com/caughtquick/void-packages caughtquick-iwgtk
https://github.com/void-linux/void-packages/pull/30686

New Package: iwgtk 0.4
<!-- Mark items with [x] where applicable -->

#### General
- [ ] 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?
- [ ] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [x] 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.)
- [x] 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/30686.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-caughtquick-iwgtk-30686.patch --]
[-- Type: text/x-diff, Size: 2107 bytes --]

From 6066e4e41b92382db9b9bdc801310256aaf5dfe6 Mon Sep 17 00:00:00 2001
From: Abhijit <abhijitsipahimalani@gmail.com>
Date: Tue, 4 May 2021 15:27:28 -0700
Subject: [PATCH] New Package: iwgtk 0.4

---
 srcpkgs/iwgtk/patches/fix-makefile.patch | 27 ++++++++++++++++++++++++
 srcpkgs/iwgtk/template                   | 14 ++++++++++++
 2 files changed, 41 insertions(+)
 create mode 100644 srcpkgs/iwgtk/patches/fix-makefile.patch
 create mode 100644 srcpkgs/iwgtk/template

diff --git a/srcpkgs/iwgtk/patches/fix-makefile.patch b/srcpkgs/iwgtk/patches/fix-makefile.patch
new file mode 100644
index 000000000000..c0e04d07e988
--- /dev/null
+++ b/srcpkgs/iwgtk/patches/fix-makefile.patch
@@ -0,0 +1,27 @@
+--- Makefile.orig
++++ Makefile
+@@ -1,8 +1,8 @@
+-CC=gcc
+-CFLAGS=`pkg-config --cflags gtk+-3.0`
++CC?=gcc
++CCINCS=`pkg-config --cflags gtk+-3.0`
+ LDLIBS=`pkg-config --libs gtk+-3.0`
+ 
+-prefix=/usr/local
++prefix?=$(PREFIX)
+ exec_prefix=$(prefix)
+ bindir=$(exec_prefix)/bin
+ datarootdir=$(prefix)/share
+@@ -23,10 +23,10 @@
+ .PHONY : clean install uninstall
+ 
+ iwgtk : $(objects)
+-	$(CC) $(CFLAGS) -o $@ $^ $(LDLIBS)
++	$(CC) $(CCINCS) $(CFLAGS) -o $@ $^ $(LDLIBS)
+ 
+ %.o : $(srcdir)/%.c $(headers)
+-	$(CC) -c $(CFLAGS) -o $@ $<
++	$(CC) -c $(CCINCS) $(CFLAGS) -o $@ $<
+ 
+ $(srcdir)/icons.c : icons.gresource.xml $(icons)
+ 	glib-compile-resources --target=$@ --sourcedir=icons --generate-source $<
diff --git a/srcpkgs/iwgtk/template b/srcpkgs/iwgtk/template
new file mode 100644
index 000000000000..a9b23b80f0ca
--- /dev/null
+++ b/srcpkgs/iwgtk/template
@@ -0,0 +1,14 @@
+# Template file for 'iwgtk'
+pkgname=iwgtk
+version=0.4
+revision=1
+build_style=gnu-makefile
+hostmakedepends="glib-devel pkg-config"
+makedepends="gtk+3-devel"
+depends="iwd"
+short_desc="GUI WiFi management utility to control iwd"
+maintainer="caughtquick <me@caughtquick.tech>"
+license="GPL-3.0-or-later"
+homepage="https://github.com/J-Lentz/iwgtk/"
+distfiles="https://github.com/J-Lentz/iwgtk/archive/refs/tags/v${version}.tar.gz"
+checksum=71bb85546a55bf710052d4947f6be5f5a01033d04d2d14a85a7e734dd570657d

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

* Re: [PR PATCH] [Closed]: New Package: iwgtk 0.4
  2021-05-04 22:30 [PR PATCH] New Package: iwgtk 0.4 caughtquick
@ 2021-05-04 22:39 ` abenson
  0 siblings, 0 replies; 2+ messages in thread
From: abenson @ 2021-05-04 22:39 UTC (permalink / raw)
  To: ml

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

There's a closed pull request on the void-packages repository

New Package: iwgtk 0.4
https://github.com/void-linux/void-packages/pull/30686

Description:
<!-- 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?
- [ ] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [x] 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.)
- [x] 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
-->


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

end of thread, other threads:[~2021-05-04 22:39 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-04 22:30 [PR PATCH] New Package: iwgtk 0.4 caughtquick
2021-05-04 22:39 ` [PR PATCH] [Closed]: " abenson

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).