Github messages for voidlinux
 help / color / mirror / Atom feed
From: LinArcX <LinArcX@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: Re: [PR PATCH] [Updated] New package: pantheon-session-20200331
Date: Fri, 03 Apr 2020 09:20:41 +0200	[thread overview]
Message-ID: <20200403072041.XOv42C1MMPA8eRXZiYP0Cv8gBkSZ_znqPb4wlC3XjHM@z> (raw)
In-Reply-To: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-20538@inbox.vuxu.org>

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

There is an updated pull request by LinArcX against master on the void-packages repository

https://github.com/LinArcX/void-packages pantheon
https://github.com/void-linux/void-packages/pull/20538

New package: pantheon-session-20200331
[Finally](https://github.com/void-linux/void-packages/issues/13243) pantheon desktop is ready for void users!

To use it, install lightdm or gdm.

Or if you want a minimal approach, use `startx`. Edit your `.xinitrc` file like this:
```
export XDG_SESSION_TYPE=X11
export DESKTOP_SESSION=Pantheon

wingpanel &
plank &
session=${1:-i3}

case $session in
  dwm             ) exec dwm;;
  i3|i3wm         ) exec i3;;
  pantheon        ) exex gnome-session --session=pantheon;;
  *               ) exec $1;;
esac
```

And run this command:
`sh -c "/usr/bin/startx /home/linarcx/.xinitrc pantheon; killall -9 wingpanel; killall -9 plank; killall -9 gala"`

**Bonus**: To make life even easier, make an alias in your `.zshrc` or `.bashrc` file:
`alias startp='sh -c "/usr/bin/startx ~/.xinitrc pantheon"'`


<img src="https://gist.githubusercontent.com/LinArcX/c8e9bc4eec041116639293abb011a9b0/raw/b47f124d98986b352b8f699eef5d9bc610a7f42b/pantheon-neofetch.png"></img>

<img src="https://gist.githubusercontent.com/LinArcX/c8e9bc4eec041116639293abb011a9b0/raw/b47f124d98986b352b8f699eef5d9bc610a7f42b/pantheon_applications_menu.png"></img>

<img src="https://gist.githubusercontent.com/LinArcX/c8e9bc4eec041116639293abb011a9b0/raw/b47f124d98986b352b8f699eef5d9bc610a7f42b/pantheon.png"></img>

<img src="https://gist.githubusercontent.com/LinArcX/c8e9bc4eec041116639293abb011a9b0/raw/543d1a6aef213b5b2af0cb702d1498ee5fb9485f/pantheon-file-manager.png"></img>

Please notice that I've intentionally didn't include any [switchboard-plugins](https://github.com/elementary/switchboard). Instead I've created most of them as extra packages and you can install them as you want:(I'm going to send them as separate pull requests after this PR merged)

- [ ] switchboard-plug-about
- [ ] switchboard-plug-applications
- [ ] switchboard-plug-datetime
- [ ] switchboard-plug-desktop
- [ ] switchboard-plug-display
- [ ] switchboard-plug-keyboard
- [ ] switchboard-plug-locale
- [ ] switchboard-plug-mouse-touchpad
- [ ] switchboard-plug-notifications
- [ ] switchboard-plug-online-accounts
- [ ] switchboard-plug-parental-controls
- [ ] switchboard-plug-power 
- [ ] switchboard-plug-security-privacy
- [ ] switchboard-plug-sharing
- [ ] switchboard-plug-sound
- [X] [switchboard-plug-printers](https://github.com/void-linux/void-packages/blob/870889733bb8b79f8fa045bc1a1854ebf45a241c/srcpkgs/switchboard-plug-printers/template)
- [x] [switchboard-plug-network](https://github.com/void-linux/void-packages/blob/870889733bb8b79f8fa045bc1a1854ebf45a241c/srcpkgs/switchboard-plug-network/template)
- [x] [switchboard-plug-bluetooth](https://github.com/void-linux/void-packages/blob/c1188f1caecf3eedfde4b68110647c2719092b2c/srcpkgs/switchboard-plug-bluetooth/template)

Also there are lots of [wingpanel](https://github.com/elementary/wingpanel) plugins. I've created some of them and they are ready to publish(like switchboard-plugin, i'm going to send them as separate PRs):
- [ ] wingpanel-indicator-a11y
- [ ] wingpanel-indicator-bluetooth
- [ ] wingpanel-indicator-datetime
- [ ] wingpanel-indicator-keyboard
- [ ] wingpanel-indicator-namarupa
- [ ] wingpanel-indicator-network
- [ ] wingpanel-indicator-nightlight
- [ ] wingpanel-indicator-notifications
- [ ] wingpanel-indicator-power
- [ ] wingpanel-indicator-privacy
- [ ] wingpanel-indicator-session
- [ ] wingpanel-indicator-sound
- [ ] wingpanel-indicator-sys-monitor
- [ ] wingpanel-indicator-weather

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

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

From 13beeca7d76b746f91bb4b576544d102acabdee4 Mon Sep 17 00:00:00 2001
From: linarcx <linarcx@riseup.net>
Date: Wed, 1 Apr 2020 20:17:11 +0430
Subject: [PATCH 1/7] AppStream: Add gobject-introspection and vala
 dependencies

---
 srcpkgs/AppStream/template | 21 +++++++++++++++++----
 1 file changed, 17 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/AppStream/template b/srcpkgs/AppStream/template
index c61e54c5f7c..9fdd7ddbae5 100644
--- a/srcpkgs/AppStream/template
+++ b/srcpkgs/AppStream/template
@@ -1,13 +1,16 @@
 # Template file for 'AppStream'
 pkgname=AppStream
 version=0.12.10
-revision=1
+revision=2
 wrksrc="appstream-${version}"
 build_style=meson
-configure_args="-Dgir=false -Dstemming=false -Dapidocs=false -Dqt=true"
+build_helper="gir"
+configure_args="-Dvapi=$(vopt_if vala true false) -Dgir=$(vopt_if gir true false)
+ -Dstemming=false -Dapidocs=false -Dqt=true"
 hostmakedepends="docbook-xsl glib-devel gperf libxslt pkg-config
- qt5-host-tools"
-makedepends="libglib-devel libxml2-devel libyaml-devel qt5-devel lmdb-devel libsoup-devel"
+ qt5-host-tools $(vopt_if gir gobject-introspection) $(vopt_if vala vala)"
+makedepends="libglib-devel libxml2-devel libyaml-devel qt5-devel lmdb-devel
+ libsoup-devel $(vopt_if gir libgirepository-devel)"
 short_desc="Tools and libraries to work with AppStream metadata"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="GPL-2.0-or-later"
@@ -18,6 +21,9 @@ checksum=f79de39dc8eacff817cbda10b3d6a878d0d59aac23130aa436f0d3c66dd9280a
 conf_files="/etc/appstream.conf"
 triggers="appstream-cache"
 
+build_options="gir vala"
+build_options_default="gir vala"
+
 nocross="https://api.travis-ci.org/v3/job/592923595/log.txt"
 
 AppStream-devel_package() {
@@ -27,6 +33,13 @@ AppStream-devel_package() {
 		vmove usr/include
 		vmove usr/lib/pkgconfig
 		vmove "usr/lib/*.so"
+		if [ "$build_option_gir" ]; then
+			vmove usr/share/gir-1.0
+			vmove usr/lib/girepository-1.0
+		fi
+		if [ "$build_option_vala" ]; then
+			vmove usr/share/vala
+		fi
 	}
 }
 

From b208e06ca1258ced288f55a02e7f0519e9a21288 Mon Sep 17 00:00:00 2001
From: linarcx <linarcx@riseup.net>
Date: Wed, 1 Apr 2020 20:00:13 +0430
Subject: [PATCH 2/7] New package: gala-3.2.0

---
 srcpkgs/gala-devel    |  1 +
 srcpkgs/gala/template | 25 +++++++++++++++++++++++++
 2 files changed, 26 insertions(+)
 create mode 120000 srcpkgs/gala-devel
 create mode 100644 srcpkgs/gala/template

diff --git a/srcpkgs/gala-devel b/srcpkgs/gala-devel
new file mode 120000
index 00000000000..37c48ffba5e
--- /dev/null
+++ b/srcpkgs/gala-devel
@@ -0,0 +1 @@
+gala
\ No newline at end of file
diff --git a/srcpkgs/gala/template b/srcpkgs/gala/template
new file mode 100644
index 00000000000..a728ca652ec
--- /dev/null
+++ b/srcpkgs/gala/template
@@ -0,0 +1,25 @@
+# Template file for 'gala'
+pkgname=gala
+version=3.2.0
+revision=1
+build_style=meson
+hostmakedepends="pkg-config gettext glib-devel vala"
+makedepends="gnome-desktop-devel gnome-settings-daemon-devel bamf-devel
+ plank-devel granite-devel mutter-devel libcanberra-devel"
+short_desc="Gala Window Manager"
+maintainer="linarcx <linarcx@riseup.net>"
+license="GPL-3.0-or-later"
+homepage="https://github.com/elementary/gala"
+distfiles="${homepage}/archive/${version}.tar.gz"
+checksum=137ceb10f9649defd30c27606fb63eb82c3622eb8aa45339747c135b03d723a8
+
+gala-devel_package() {
+	short_desc+=" - development files"
+	depends="${makedepends} ${sourcepkg}-${version}_${revision}"
+	pkg_install() {
+		vmove usr/include
+		vmove usr/lib/pkgconfig
+		vmove usr/share/vala
+		vmove "usr/lib/*.so"
+	}
+}

From a9879853fa0e492cb6cb2c5a87e1e5d721ec04c3 Mon Sep 17 00:00:00 2001
From: linarcx <linarcx@riseup.net>
Date: Wed, 1 Apr 2020 20:01:37 +0430
Subject: [PATCH 3/7] New package: wingpanel-2.3.0

---
 srcpkgs/wingpanel-devel    |  1 +
 srcpkgs/wingpanel/template | 24 ++++++++++++++++++++++++
 2 files changed, 25 insertions(+)
 create mode 120000 srcpkgs/wingpanel-devel
 create mode 100644 srcpkgs/wingpanel/template

diff --git a/srcpkgs/wingpanel-devel b/srcpkgs/wingpanel-devel
new file mode 120000
index 00000000000..ceb48fbf171
--- /dev/null
+++ b/srcpkgs/wingpanel-devel
@@ -0,0 +1 @@
+wingpanel
\ No newline at end of file
diff --git a/srcpkgs/wingpanel/template b/srcpkgs/wingpanel/template
new file mode 100644
index 00000000000..335d86a3cc1
--- /dev/null
+++ b/srcpkgs/wingpanel/template
@@ -0,0 +1,24 @@
+# Template file for 'wingpanel'
+pkgname=wingpanel
+version=2.3.0
+revision=1
+build_style=meson
+hostmakedepends="pkg-config glib-devel vala"
+makedepends="gala-devel"
+short_desc="Stylish top panel that spawns an application launcher"
+maintainer="linarcx <linarcx@riseup.net>"
+license="GPL-3.0-or-later"
+homepage="https://github.com/elementary/wingpanel"
+distfiles="${homepage}/archive/${version}.tar.gz"
+checksum=4a50af8012bc5bdfe74e33f3e61a8182268760a71df3f50d8449ce5fbf3283d7
+
+wingpanel-devel_package() {
+	short_desc+=" - development files"
+	depends="${makedepends} ${sourcepkg}-${version}_${revision}"
+	pkg_install() {
+		vmove usr/include
+		vmove usr/lib/pkgconfig
+		vmove usr/share/vala
+		vmove "usr/lib/*.so"
+	}
+}

From 482408a3544bd2057a4ec5bdb4b152fbee00b19a Mon Sep 17 00:00:00 2001
From: linarcx <linarcx@riseup.net>
Date: Wed, 1 Apr 2020 20:02:29 +0430
Subject: [PATCH 4/7] New package: pantheon-default-settings-5.1.2

---
 srcpkgs/pantheon-default-settings/template | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)
 create mode 100644 srcpkgs/pantheon-default-settings/template

diff --git a/srcpkgs/pantheon-default-settings/template b/srcpkgs/pantheon-default-settings/template
new file mode 100644
index 00000000000..21a9fd00dd5
--- /dev/null
+++ b/srcpkgs/pantheon-default-settings/template
@@ -0,0 +1,20 @@
+# Template file for 'pantheon-default-settings'
+pkgname=pantheon-default-settings
+version=5.1.2
+revision=1
+wrksrc="default-settings-${version}"
+depends="io.elementary.icons io.elementary.stylesheet fonts-droid-ttf"
+short_desc="Default settings for elementary OS"
+maintainer="linarcx <linarcx@riseup.net>"
+license="GPL-3.0-or-later"
+homepage="https://github.com/elementary/default-settings"
+distfiles="${homepage}/archive/${version}.tar.gz"
+checksum=7e488ed4c3599af574e4337b0ed0da68246ac5e65b0b022d72ed569415feebfa
+
+do_install() {
+	mkdir -p ${PKGDESTDIR}/etc/skel/.config
+	vinstall overrides/default-settings.gschema.override 644 /usr/share/glib-2.0/schemas/25_pantheon-default-settings.gschema.override
+	vinstall settings.ini 644 etc/gtk-3.0/
+	vcopy plank etc/skel/.config/
+	vcopy profile.d /etc/
+}

From 441b8b00d4737fb61fb5b89d97ba1c75c46099b2 Mon Sep 17 00:00:00 2001
From: linarcx <linarcx@riseup.net>
Date: Wed, 1 Apr 2020 20:03:17 +0430
Subject: [PATCH 5/7] New package: pantheon-dpms-helper-1.0

---
 srcpkgs/pantheon-dpms-helper/template | 14 ++++++++++++++
 1 file changed, 14 insertions(+)
 create mode 100644 srcpkgs/pantheon-dpms-helper/template

diff --git a/srcpkgs/pantheon-dpms-helper/template b/srcpkgs/pantheon-dpms-helper/template
new file mode 100644
index 00000000000..13b25ddae1d
--- /dev/null
+++ b/srcpkgs/pantheon-dpms-helper/template
@@ -0,0 +1,14 @@
+# Template file for 'pantheon-dpms-helper'
+pkgname=pantheon-dpms-helper
+version=1.0
+revision=1
+wrksrc="dpms-helper-${version}"
+build_style=meson
+hostmakedepends="pkg-config glib-devel desktop-file-utils"
+depends="gnome-settings-daemon"
+short_desc="Sets DPMS settings found in org.pantheon.dpms"
+maintainer="linarcx <linarcx@riseup.net>"
+license="GPL-2.0-or-later"
+homepage="https://github.com/elementary/dpms-helper"
+distfiles="${homepage}/archive/${version}.tar.gz"
+checksum=68133d463a2c75b38b6bee93ad9338744fb792cef0c1248af50a969208876f4d

From fca9b6f856142b90f50310021f361a9a843b155b Mon Sep 17 00:00:00 2001
From: linarcx <linarcx@riseup.net>
Date: Wed, 1 Apr 2020 20:04:03 +0430
Subject: [PATCH 6/7] New package: pantheon-applications-menu-2.5.0

---
 srcpkgs/pantheon-applications-menu/template | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)
 create mode 100644 srcpkgs/pantheon-applications-menu/template

diff --git a/srcpkgs/pantheon-applications-menu/template b/srcpkgs/pantheon-applications-menu/template
new file mode 100644
index 00000000000..5955ff6291a
--- /dev/null
+++ b/srcpkgs/pantheon-applications-menu/template
@@ -0,0 +1,16 @@
+# Template file for 'pantheon-applications-menu'
+pkgname=pantheon-applications-menu
+version=2.5.0
+revision=1
+wrksrc="applications-menu-${version}"
+build_style=meson
+configure_args="-Dwith-unity=false"
+hostmakedepends="pkg-config glib-devel vala"
+makedepends="wingpanel-devel libsoup-devel AppStream-devel json-glib-devel
+ zeitgeist-devel gnome-menus-devel switchboard-devel"
+short_desc="Pantheon applications menu"
+maintainer="linarcx <linarcx@riseup.net>"
+license="GPL-3.0-or-later"
+homepage="https://github.com/elementary/applications-menu"
+distfiles="${homepage}/archive/${version}.tar.gz"
+checksum=209e05f3d149d204eddaa5742bb5b6bf15636929fe69965e7652200e0571f014

From b7dbe7a67023994b6a36566e6ccd2cb2e5d101df Mon Sep 17 00:00:00 2001
From: linarcx <linarcx@riseup.net>
Date: Wed, 1 Apr 2020 20:07:11 +0430
Subject: [PATCH 7/7] New package: pantheon-session-20200331

---
 common/shlibs                                    |  2 ++
 .../files/io.elementary.gala.desktop             | 13 +++++++++++++
 .../files/io.elementary.plank.desktop            | 10 ++++++++++
 srcpkgs/pantheon-session/files/pantheon.desktop  |  7 +++++++
 srcpkgs/pantheon-session/files/pantheon.session  |  5 +++++
 srcpkgs/pantheon-session/template                | 16 ++++++++++++++++
 6 files changed, 53 insertions(+)
 create mode 100755 srcpkgs/pantheon-session/files/io.elementary.gala.desktop
 create mode 100755 srcpkgs/pantheon-session/files/io.elementary.plank.desktop
 create mode 100755 srcpkgs/pantheon-session/files/pantheon.desktop
 create mode 100755 srcpkgs/pantheon-session/files/pantheon.session
 create mode 100644 srcpkgs/pantheon-session/template

diff --git a/common/shlibs b/common/shlibs
index 6d9745f8467..cf47e31f4a0 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -3855,3 +3855,5 @@ libraven.so.0 budgie-desktop-10.5.1_1
 libbudgie-private.so.0 budgie-desktop-10.5.1_1
 libbudgietheme.so.0 budgie-desktop-10.5.1_1
 libbudgie-plugin.so.0 budgie-desktop-10.5.1_1
+libgala.so.0 gala-3.2.0_1
+libwingpanel-2.0.so.0 wingpanel-2.3.0_1
diff --git a/srcpkgs/pantheon-session/files/io.elementary.gala.desktop b/srcpkgs/pantheon-session/files/io.elementary.gala.desktop
new file mode 100755
index 00000000000..6242663c90c
--- /dev/null
+++ b/srcpkgs/pantheon-session/files/io.elementary.gala.desktop
@@ -0,0 +1,13 @@
+[Desktop Entry]
+Name=gala
+Comment=Gala Window Manager
+Exec=gala --replace
+Terminal=false
+Type=Application
+Categories=System;
+OnlyShowIn=Pantheon;
+NoDisplay=true
+X-GNOME-Autostart-Phase=Initialization
+X-GNOME-AutoRestart=true
+X-GNOME-Autostart-Notify=true
+X-GNOME-Autostart-enabled=true
diff --git a/srcpkgs/pantheon-session/files/io.elementary.plank.desktop b/srcpkgs/pantheon-session/files/io.elementary.plank.desktop
new file mode 100755
index 00000000000..f5a6a4529e5
--- /dev/null
+++ b/srcpkgs/pantheon-session/files/io.elementary.plank.desktop
@@ -0,0 +1,10 @@
+[Desktop Entry]
+Name=plank
+Comment=Elegant, simple, clean dock
+Exec=plank
+Terminal=false
+OnlyShowIn=Pantheon;
+Type=Application
+X-GNOME-Autostart-Phase=Panel
+X-GNOME-Autostart-Notify=true
+X-GNOME-AutoRestart=true
diff --git a/srcpkgs/pantheon-session/files/pantheon.desktop b/srcpkgs/pantheon-session/files/pantheon.desktop
new file mode 100755
index 00000000000..856f62abea0
--- /dev/null
+++ b/srcpkgs/pantheon-session/files/pantheon.desktop
@@ -0,0 +1,7 @@
+[Desktop Entry]
+Name=Pantheon
+Comment=This session provides elementary experience
+Exec=gnome-session --session=pantheon
+TryExec=wingpanel
+DesktopNames=Pantheon
+Type=Application
diff --git a/srcpkgs/pantheon-session/files/pantheon.session b/srcpkgs/pantheon-session/files/pantheon.session
new file mode 100755
index 00000000000..7dc69158568
--- /dev/null
+++ b/srcpkgs/pantheon-session/files/pantheon.session
@@ -0,0 +1,5 @@
+[GNOME Session]
+Name=Pantheon
+RequiredComponents=gala;gala-daemon;org.gnome.SettingsDaemon.A11ySettings;org.gnome.SettingsDaemon.Color;org.gnome.SettingsDaemon.Datetime;org.gnome.SettingsDaemon.Housekeeping;org.gnome.SettingsDaemon.Keyboard;org.gnome.SettingsDaemon.MediaKeys;org.gnome.SettingsDaemon.Power;org.gnome.SettingsDaemon.PrintNotifications;org.gnome.SettingsDaemon.Rfkill;org.gnome.SettingsDaemon.Sharing;org.gnome.SettingsDaemon.Smartcard;org.gnome.SettingsDaemon.Sound;org.gnome.SettingsDaemon.Wacom;org.gnome.SettingsDaemon.XSettings;
+FallbackSession=gnome
+DesktopName=Pantheon
diff --git a/srcpkgs/pantheon-session/template b/srcpkgs/pantheon-session/template
new file mode 100644
index 00000000000..fa94c115b0a
--- /dev/null
+++ b/srcpkgs/pantheon-session/template
@@ -0,0 +1,16 @@
+# Template file for 'pantheon-session'
+pkgname=pantheon-session
+version=20200331
+revision=1
+depends="gnome-session pantheon-default-settings pantheon-dpms-helper pantheon-applications-menu"
+short_desc="Pantheon session settings for Void Linux"
+maintainer="linarcx <linarcx@riseup.net>"
+license="GPL-3.0-or-later"
+homepage="https://elementary.io/"
+
+do_install() {
+	vinstall ${FILESDIR}/io.elementary.gala.desktop 644 etc/xdg/autostart
+	vinstall ${FILESDIR}/io.elementary.plank.desktop 644 etc/xdg/autostart
+	vinstall ${FILESDIR}/pantheon.desktop 644 usr/share/xsessions
+	vinstall ${FILESDIR}/pantheon.session 644 usr/share/gnome-session/sessions
+}

  parent reply	other threads:[~2020-04-03  7:20 UTC|newest]

Thread overview: 178+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-20538@inbox.vuxu.org>
2020-04-01  8:21 ` pantheon-session-20200331 xtraeme
2020-04-01  8:26 ` pantheon-session-20200331 LinArcX
2020-04-01  8:27 ` pantheon-session-20200331 xtraeme
2020-04-01  8:28 ` pantheon-session-20200331 LinArcX
2020-04-01  8:29 ` pantheon-session-20200331 LinArcX
2020-04-01  8:30 ` pantheon-session-20200331 LinArcX
2020-04-01  8:30 ` pantheon-session-20200331 LinArcX
2020-04-01  9:41 ` pantheon-session-20200331 Anachron
2020-04-01  9:59 ` pantheon-session-20200331 Anachron
2020-04-01  9:59 ` pantheon-session-20200331 Anachron
2020-04-01 10:08 ` pantheon-session-20200331 Anachron
2020-04-01 10:20 ` pantheon-session-20200331 LinArcX
2020-04-01 15:38 ` [PR PATCH] [Updated] pantheon-session-20200331 LinArcX
2020-04-01 15:42 ` LinArcX
2020-04-01 15:54 ` LinArcX
2020-04-01 18:46 ` pantheon-session-20200331 LinArcX
2020-04-01 18:47 ` pantheon-session-20200331 LinArcX
2020-04-01 18:47 ` pantheon-session-20200331 LinArcX
2020-04-01 19:44 ` New package: pantheon-session-20200331 CameronNemo
2020-04-02 11:08 ` LinArcX
2020-04-03  7:15 ` [PR PATCH] [Updated] " LinArcX
2020-04-03  7:20 ` LinArcX [this message]
2020-04-03  7:22 ` LinArcX
2020-04-03  8:38 ` CameronNemo
2020-04-03  8:57 ` [PR PATCH] [Updated] " LinArcX
2020-04-06  5:45 ` Anachron
2020-04-06  6:15 ` LinArcX
2020-04-06  6:15 ` LinArcX
2020-04-06  6:18 ` LinArcX
2020-04-06  6:19 ` LinArcX
2020-04-06  6:19 ` LinArcX
2020-04-06  6:21 ` Anachron
2020-04-06  8:55 ` Anachron
2020-04-06  9:37 ` Anachron
2020-04-06  9:50 ` Anachron
2020-04-06 10:32 ` Anachron
2020-04-06 10:35 ` LinArcX
2020-04-06 10:35 ` LinArcX
2020-04-06 10:49 ` LinArcX
2020-04-06 10:54 ` Anachron
2020-04-06 10:55 ` LinArcX
2020-04-06 10:56 ` Duncaen
2020-04-06 10:58 ` xtraeme
2020-04-06 11:07 ` Anachron
2020-04-06 11:07 ` Anachron
2020-04-06 11:09 ` Anachron
2020-04-06 11:10 ` Anachron
2020-04-06 11:29 ` Anachron
2020-04-06 11:32 ` Anachron
2020-04-06 11:49 ` Anachron
2020-04-06 11:53 ` Anachron
2020-04-06 12:11 ` LinArcX
2020-04-06 12:11 ` LinArcX
2020-04-06 12:11 ` LinArcX
2020-04-06 12:11 ` LinArcX
2020-04-06 12:17 ` LinArcX
2020-04-06 12:17 ` Anachron
2020-04-06 12:18 ` Anachron
2020-04-06 12:19 ` LinArcX
2020-04-06 12:42 ` Anachron
2020-04-06 12:53 ` Anachron
2020-04-06 13:59 ` Anachron
2020-04-06 14:46 ` LinArcX
2020-04-06 14:47 ` LinArcX
2020-04-06 14:47 ` LinArcX
2020-04-06 14:48 ` LinArcX
2020-04-06 14:48 ` LinArcX
2020-04-06 14:49 ` LinArcX
2020-04-06 14:53 ` LinArcX
2020-04-06 14:53 ` LinArcX
2020-04-06 14:54 ` LinArcX
2020-04-06 14:59 ` LinArcX
2020-04-06 14:59 ` LinArcX
2020-04-06 15:02 ` LinArcX
2020-04-06 15:05 ` LinArcX
2020-04-06 15:58 ` [PR PATCH] [Updated] " LinArcX
2020-04-06 16:11 ` LinArcX
2020-04-06 16:11 ` LinArcX
2020-04-06 16:11 ` LinArcX
2020-04-06 16:13 ` LinArcX
2020-04-06 18:02 ` Anachron
2020-04-06 19:15 ` CameronNemo
2020-04-06 20:00 ` [PR PATCH] [Updated] " LinArcX
2020-04-06 20:23 ` LinArcX
2020-04-07  5:37 ` Anachron
2020-04-07  6:44 ` Anachron
2020-04-07  6:45 ` Anachron
2020-04-07  6:48 ` [PR PATCH] [Updated] " LinArcX
2020-04-07  7:17 ` LinArcX
2020-04-07  7:20 ` LinArcX
2020-04-07  9:28 ` Anachron
2020-04-07  9:40 ` Anachron
2020-04-07  9:41 ` Anachron
2020-04-07 10:09 ` Anachron
2020-04-07 10:16 ` Anachron
2020-04-07 10:17 ` LinArcX
2020-04-07 10:18 ` LinArcX
2020-04-07 10:22 ` Anachron
2020-04-07 10:25 ` Anachron
2020-04-07 10:31 ` Anachron
2020-04-07 10:58 ` Anachron
2020-04-07 11:17 ` Anachron
2020-04-07 11:19 ` Anachron
2020-04-07 11:21 ` Anachron
2020-04-07 11:21 ` Anachron
2020-04-07 11:23 ` Anachron
2020-04-07 11:43 ` Anachron
2020-04-07 11:56 ` Anachron
2020-04-07 14:22 ` LinArcX
2020-04-07 14:24 ` LinArcX
2020-04-07 14:25 ` LinArcX
2020-04-07 14:26 ` LinArcX
2020-04-07 14:31 ` Anachron
2020-04-07 14:32 ` LinArcX
2020-04-07 14:57 ` LinArcX
2020-04-07 18:20 ` [PR PATCH] [Updated] " LinArcX
2020-04-07 19:30 ` LinArcX
2020-04-07 20:05 ` Anachron
2020-04-07 20:08 ` LinArcX
2020-04-07 20:09 ` LinArcX
2020-04-07 20:11 ` LinArcX
2020-04-07 20:12 ` LinArcX
2020-04-08 13:12 ` Anachron
2020-04-08 14:33 ` LinArcX
2020-04-08 15:42 ` Anachron
2020-04-08 15:47 ` Anachron
2020-04-08 15:48 ` Anachron
2020-04-08 15:56 ` Anachron
2020-04-08 15:58 ` Anachron
2020-04-08 16:13 ` Anachron
2020-04-09  6:29 ` Anachron
2020-04-09  6:30 ` Anachron
2020-04-09  8:52 ` Anachron
2020-04-09 11:42 ` Anachron
2020-04-09 11:43 ` Anachron
2020-04-09 11:43 ` xtraeme
2020-04-09 13:24 ` Anachron
2020-04-09 13:30 ` Anachron
2020-04-09 16:35 ` [PR PATCH] [Updated] " LinArcX
2020-04-09 16:44 ` LinArcX
2020-04-11 12:35 ` ahesford
2020-04-11 15:02 ` Anachron
2020-04-11 15:10 ` LinArcX
2020-04-11 15:20 ` LinArcX
2020-04-11 15:21 ` LinArcX
2020-04-11 17:21 ` Anachron
2020-04-11 17:40 ` Anachron
2020-04-11 17:44 ` Anachron
2020-04-11 18:31 ` Anachron
2020-04-11 18:34 ` LinArcX
2020-04-11 18:36 ` LinArcX
2020-04-11 18:44 ` LinArcX
2020-04-11 18:45 ` Anachron
2020-04-11 18:46 ` Anachron
2020-04-11 18:49 ` LinArcX
2020-04-11 18:49 ` LinArcX
2020-04-11 18:51 ` Anachron
2020-04-11 19:04 ` Anachron
2020-04-11 19:09 ` Anachron
2020-04-11 19:17 ` LinArcX
2020-04-12 10:27 ` Anachron
2020-04-19 19:52 ` [PR PATCH] [Updated] " LinArcX
2020-04-19 20:00 ` LinArcX
2020-04-19 20:00 ` LinArcX
2020-04-19 20:01 ` LinArcX
2020-04-19 20:01 ` LinArcX
2020-04-19 20:01 ` LinArcX
2020-04-23 10:58 ` Anachron
2020-04-24  9:36 ` Anachron
2020-07-23 18:52 ` Chocimier
2020-07-24  8:51 ` LinArcX
2020-07-24  8:52 ` LinArcX
2020-09-08  6:35 ` Anachron
2021-02-13 17:11 ` LinArcX
2021-02-14  0:47 ` CameronNemo
2021-02-14  6:01 ` [PR PATCH] [Closed]: " LinArcX
2021-02-15  5:35 ` ericonr
2021-02-15  5:35 ` ericonr

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20200403072041.XOv42C1MMPA8eRXZiYP0Cv8gBkSZ_znqPb4wlC3XjHM@z \
    --to=linarcx@users.noreply.github.com \
    --cc=ml@inbox.vuxu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).