Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: textadept-10.6
@ 2019-10-09 17:48 voidlinux-github
  2019-10-12 15:45 ` voidlinux-github
                   ` (31 more replies)
  0 siblings, 32 replies; 40+ messages in thread
From: voidlinux-github @ 2019-10-09 17:48 UTC (permalink / raw)
  To: ml

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

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

https://github.com/reback00/void-packages textadept-branch
https://github.com/void-linux/void-packages/pull/15278

New package: textadept-10.6
[Textadept](https://foicica.com/textadept/) is a very lightweight and fast text editor written in C. It is extensible with Lua. The project aims to keep the C code within 2000 lines but has standard functionalities of other text editors.
Hope it is useful.

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

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

From f11ca7f8483b01e0fccd580fd5d3a18ce834bb0c Mon Sep 17 00:00:00 2001
From: reback00 <reback00@protonmail.com>
Date: Mon, 7 Oct 2019 14:17:56 +0600
Subject: [PATCH 1/2] New package: lbry-desktop-0.36.0

---
 .../update-install-command-change.patch       |  6 +++
 srcpkgs/lbry-desktop/template                 | 39 +++++++++++++++++++
 2 files changed, 45 insertions(+)
 create mode 100644 srcpkgs/lbry-desktop/patches/update-install-command-change.patch
 create mode 100644 srcpkgs/lbry-desktop/template

diff --git a/srcpkgs/lbry-desktop/patches/update-install-command-change.patch b/srcpkgs/lbry-desktop/patches/update-install-command-change.patch
new file mode 100644
index 00000000000..15c71435ed1
--- /dev/null
+++ b/srcpkgs/lbry-desktop/patches/update-install-command-change.patch
@@ -0,0 +1,6 @@
+diff -Naurp0 a/src/ui/modal/modalDownloading/view.jsx b/src/ui/modal/modalDownloading/view.jsx
+--- a/src/ui/modal/modalDownloading/view.jsx	2019-07-27 01:37:50.000000000 +0600
++++ b/src/ui/modal/modalDownloading/view.jsx	2019-07-31 05:53:37.602429661 +0600
+@@ -28 +28 @@ class ModalDownloading extends React.Pur
+-            <blockquote>sudo dpkg -i {downloadItem}</blockquote>
++            <blockquote>ar p {downloadItem} data.tar.xz | sudo tar xJ -C /</blockquote>
diff --git a/srcpkgs/lbry-desktop/template b/srcpkgs/lbry-desktop/template
new file mode 100644
index 00000000000..facc858905f
--- /dev/null
+++ b/srcpkgs/lbry-desktop/template
@@ -0,0 +1,39 @@
+# Template file for 'lbry-desktop'
+pkgname=lbry-desktop
+version=0.36.0
+revision=1
+archs="x86_64"
+hostmakedepends="nodejs yarn-bin binutils tar xz git python libsecret"
+depends="nodejs gnome-keyring GConf"
+short_desc="Browser for decentralized videos and content available on LBRY protocol"
+maintainer="reback00 <reback00@protonmail.com>"
+license="MIT"
+homepage="https://lbry.com/"
+distfiles="https://github.com/lbryio/lbry-desktop/archive/v${version}.tar.gz"
+checksum=8d0cefff2165772224e4b44f9bb91bb035ee6bf81f0da07997ccdf649c9005d6
+patch_args="-Np1"
+
+nopie=yes
+nodebug=yes
+nostrip=yes
+noverifyrdeps=yes
+noshlibprovides=yes
+preserve=yes
+
+pre_build() {
+	npm install --save core-js@2
+	yarn add core-js@2
+}
+
+do_build() {
+	yarn build
+}
+
+do_install() {
+	ar x dist/electron/LBRY_${version}.deb data.tar.xz
+	tar xf data.tar.xz -C ${DESTDIR}
+}
+
+post_install() {
+	vlicense LICENSE
+}

From c9009b962bff06282694431c68b928c6b40870f0 Mon Sep 17 00:00:00 2001
From: reback00 <reback00@protonmail.com>
Date: Wed, 9 Oct 2019 23:39:40 +0600
Subject: [PATCH 2/2] New package: textadept-10.6

---
 srcpkgs/textadept/template | 49 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 49 insertions(+)
 create mode 100644 srcpkgs/textadept/template

diff --git a/srcpkgs/textadept/template b/srcpkgs/textadept/template
new file mode 100644
index 00000000000..11e58cf7da9
--- /dev/null
+++ b/srcpkgs/textadept/template
@@ -0,0 +1,49 @@
+# Template file for 'textadept'
+pkgname=textadept
+version=10.6
+revision=1
+archs="i686 x86_64"
+wrksrc=textadept-textadept_${version}
+hostmakedepends="autoconf automake gettext libtool clang wget unzip darcs pkg-config glib-devel ncurses"
+makedepends="gtk+-devel ncurses-devel"
+depends="gtk+ lua52"
+short_desc="Fast, minimalist, and extensible text editor for programmers"
+maintainer="reback00 <reback00@protonmail.com>"
+license="MIT"
+homepage="https://foicica.com/textadept/"
+distfiles="https://github.com/rgieseke/textadept/archive/textadept_${version}.tar.gz"
+checksum=2cb2aa8266c166ed4a3f534843aa75cec0dc1ced09c007aaef540e3a7999870b
+
+pre_configure() {
+	cd src
+	make deps
+}
+
+do_build() {
+	cd src
+	make
+	make curses
+}
+
+do_install() {
+	cd src
+	make PREFIX=/usr DESTDIR="${DESTDIR}" install
+	make curses PREFIX=/usr DESTDIR="${DESTDIR}" install
+
+	# Binaries in /usr/share/textadept are not allowed
+	# So we relocate to /usr/lib/textadept
+	mkdir -p "${DESTDIR}/usr/lib/"
+	mv "${DESTDIR}/usr/share/textadept" "${DESTDIR}/usr/lib/textadept"
+	ln -sf "/usr/lib/textadept/textadept" "${DESTDIR}/usr/bin/textadept"
+	ln -sf "/usr/lib/textadept/textadept-curses" "${DESTDIR}/usr/bin/textadept-curses"
+
+	# For icons
+	mkdir -p "${DESTDIR}/usr/share/pixmaps"
+	ln -s "/usr/lib/textadept/core/images/textadept.svg" "${DESTDIR}/usr/share/pixmaps/textadept.svg"
+	ln -s "/usr/lib/textadept/core/images/ta_48x48.png" \
+		"${DESTDIR}/usr/share/pixmaps/textadept.png"
+}
+
+post_install() {
+	vlicense LICENSE
+}

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

* Re: New package: textadept-10.6
  2019-10-09 17:48 [PR PATCH] New package: textadept-10.6 voidlinux-github
@ 2019-10-12 15:45 ` voidlinux-github
  2019-10-13  6:08 ` voidlinux-github
                   ` (30 subsequent siblings)
  31 siblings, 0 replies; 40+ messages in thread
From: voidlinux-github @ 2019-10-12 15:45 UTC (permalink / raw)
  To: ml

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

New comment by mobinmob on void-packages repository

https://github.com/void-linux/void-packages/pull/15278#issuecomment-541336527

Comment:
Thank you for taking the time to package textadept!
Please include only the  patch for textadept in the PR, not the patch for lbry-desktop ;)


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

* Re: New package: textadept-10.6
  2019-10-09 17:48 [PR PATCH] New package: textadept-10.6 voidlinux-github
  2019-10-12 15:45 ` voidlinux-github
@ 2019-10-13  6:08 ` voidlinux-github
  2019-10-13  6:08 ` voidlinux-github
                   ` (29 subsequent siblings)
  31 siblings, 0 replies; 40+ messages in thread
From: voidlinux-github @ 2019-10-13  6:08 UTC (permalink / raw)
  To: ml

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

New comment by reback00 on void-packages repository

https://github.com/void-linux/void-packages/pull/15278#issuecomment-541389587

Comment:
@mobinmob Well, this seems like an uncommon issue. You see, I have submitted 2 PRs. One for [`lbry-desktop`](https://github.com/void-linux/void-packages/pull/15206) and one for `textadept` (this one). The problem is that 2 commits are both showing up in this PR for some reason. I have created separate branches, but still. Maybe `lbry-desktop` has not yet been merged, that's why. I'm not sure. I haven't done multiple PRs before within short period of time.

If you check the [New package: textadept-10.6](https://github.com/void-linux/void-packages/pull/15278/commits/c9009b962bff06282694431c68b928c6b40870f0) commit, it does not have any patches.

The patch is in the [New package: lbry-desktop-0.36.0](https://github.com/void-linux/void-packages/pull/15278/commits/f11ca7f8483b01e0fccd580fd5d3a18ce834bb0c) commit as it should be. But for some reason they are both showing up in the __Commits__ and __Files changed__ tabs in this page.

I was trying for [#Hacktoberfest](https://hacktoberfest.digitalocean.com/). Hence the hurry. Please let me know if I can do anything to not cause this in future.

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

* Re: New package: textadept-10.6
  2019-10-09 17:48 [PR PATCH] New package: textadept-10.6 voidlinux-github
  2019-10-12 15:45 ` voidlinux-github
  2019-10-13  6:08 ` voidlinux-github
@ 2019-10-13  6:08 ` voidlinux-github
  2019-10-13 11:57 ` voidlinux-github
                   ` (28 subsequent siblings)
  31 siblings, 0 replies; 40+ messages in thread
From: voidlinux-github @ 2019-10-13  6:08 UTC (permalink / raw)
  To: ml

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

New comment by reback00 on void-packages repository

https://github.com/void-linux/void-packages/pull/15278#issuecomment-541389587

Comment:
@mobinmob Well, this seems like an uncommon issue for me. You see, I have submitted 2 PRs. One for [`lbry-desktop`](https://github.com/void-linux/void-packages/pull/15206) and one for `textadept` (this one). The problem is that 2 commits are both showing up in this PR for some reason. I have created separate branches, but still. Maybe `lbry-desktop` has not yet been merged, that's why. I'm not sure. I haven't done multiple PRs before within short period of time.

If you check the [New package: textadept-10.6](https://github.com/void-linux/void-packages/pull/15278/commits/c9009b962bff06282694431c68b928c6b40870f0) commit, it does not have any patches.

The patch is in the [New package: lbry-desktop-0.36.0](https://github.com/void-linux/void-packages/pull/15278/commits/f11ca7f8483b01e0fccd580fd5d3a18ce834bb0c) commit as it should be. But for some reason they are both showing up in the __Commits__ and __Files changed__ tabs in this page.

I was trying for [#Hacktoberfest](https://hacktoberfest.digitalocean.com/). Hence the hurry. Please let me know if I can do anything to not cause this in future.

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

* Re: New package: textadept-10.6
  2019-10-09 17:48 [PR PATCH] New package: textadept-10.6 voidlinux-github
                   ` (2 preceding siblings ...)
  2019-10-13  6:08 ` voidlinux-github
@ 2019-10-13 11:57 ` voidlinux-github
  2019-10-13 17:05 ` [PR PATCH] [Updated] " voidlinux-github
                   ` (27 subsequent siblings)
  31 siblings, 0 replies; 40+ messages in thread
From: voidlinux-github @ 2019-10-13 11:57 UTC (permalink / raw)
  To: ml

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

New comment by mobinmob on void-packages repository

https://github.com/void-linux/void-packages/pull/15278#issuecomment-541412251

Comment:
If you created the textadept branch while you were in the ibry-dekstop branch, the textadept one contains the commits of both branches.
Before creating a branch for a PR and committing to it, make sure you are on master.
You can still fix it :)


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

* Re: [PR PATCH] [Updated] New package: textadept-10.6
  2019-10-09 17:48 [PR PATCH] New package: textadept-10.6 voidlinux-github
                   ` (3 preceding siblings ...)
  2019-10-13 11:57 ` voidlinux-github
@ 2019-10-13 17:05 ` voidlinux-github
  2019-10-13 17:05 ` voidlinux-github
                   ` (26 subsequent siblings)
  31 siblings, 0 replies; 40+ messages in thread
From: voidlinux-github @ 2019-10-13 17:05 UTC (permalink / raw)
  To: ml

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

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

https://github.com/reback00/void-packages textadept-branch
https://github.com/void-linux/void-packages/pull/15278

New package: textadept-10.6
[Textadept](https://foicica.com/textadept/) is a very lightweight and fast text editor written in C. It is extensible with Lua. The project aims to keep the C code within 2000 lines but has standard functionalities of other text editors.
Hope it is useful.

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

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

From f11ca7f8483b01e0fccd580fd5d3a18ce834bb0c Mon Sep 17 00:00:00 2001
From: reback00 <reback00@protonmail.com>
Date: Mon, 7 Oct 2019 14:17:56 +0600
Subject: [PATCH 1/2] New package: lbry-desktop-0.36.0

---
 .../update-install-command-change.patch       |  6 +++
 srcpkgs/lbry-desktop/template                 | 39 +++++++++++++++++++
 2 files changed, 45 insertions(+)
 create mode 100644 srcpkgs/lbry-desktop/patches/update-install-command-change.patch
 create mode 100644 srcpkgs/lbry-desktop/template

diff --git a/srcpkgs/lbry-desktop/patches/update-install-command-change.patch b/srcpkgs/lbry-desktop/patches/update-install-command-change.patch
new file mode 100644
index 00000000000..15c71435ed1
--- /dev/null
+++ b/srcpkgs/lbry-desktop/patches/update-install-command-change.patch
@@ -0,0 +1,6 @@
+diff -Naurp0 a/src/ui/modal/modalDownloading/view.jsx b/src/ui/modal/modalDownloading/view.jsx
+--- a/src/ui/modal/modalDownloading/view.jsx	2019-07-27 01:37:50.000000000 +0600
++++ b/src/ui/modal/modalDownloading/view.jsx	2019-07-31 05:53:37.602429661 +0600
+@@ -28 +28 @@ class ModalDownloading extends React.Pur
+-            <blockquote>sudo dpkg -i {downloadItem}</blockquote>
++            <blockquote>ar p {downloadItem} data.tar.xz | sudo tar xJ -C /</blockquote>
diff --git a/srcpkgs/lbry-desktop/template b/srcpkgs/lbry-desktop/template
new file mode 100644
index 00000000000..facc858905f
--- /dev/null
+++ b/srcpkgs/lbry-desktop/template
@@ -0,0 +1,39 @@
+# Template file for 'lbry-desktop'
+pkgname=lbry-desktop
+version=0.36.0
+revision=1
+archs="x86_64"
+hostmakedepends="nodejs yarn-bin binutils tar xz git python libsecret"
+depends="nodejs gnome-keyring GConf"
+short_desc="Browser for decentralized videos and content available on LBRY protocol"
+maintainer="reback00 <reback00@protonmail.com>"
+license="MIT"
+homepage="https://lbry.com/"
+distfiles="https://github.com/lbryio/lbry-desktop/archive/v${version}.tar.gz"
+checksum=8d0cefff2165772224e4b44f9bb91bb035ee6bf81f0da07997ccdf649c9005d6
+patch_args="-Np1"
+
+nopie=yes
+nodebug=yes
+nostrip=yes
+noverifyrdeps=yes
+noshlibprovides=yes
+preserve=yes
+
+pre_build() {
+	npm install --save core-js@2
+	yarn add core-js@2
+}
+
+do_build() {
+	yarn build
+}
+
+do_install() {
+	ar x dist/electron/LBRY_${version}.deb data.tar.xz
+	tar xf data.tar.xz -C ${DESTDIR}
+}
+
+post_install() {
+	vlicense LICENSE
+}

From 97fbbe5e05be2643f328ce78f4d635437998a267 Mon Sep 17 00:00:00 2001
From: reback00 <reback00@protonmail.com>
Date: Wed, 9 Oct 2019 23:39:40 +0600
Subject: [PATCH 2/2] New package: textadept-10.6

---
 srcpkgs/textadept/template | 49 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 49 insertions(+)
 create mode 100644 srcpkgs/textadept/template

diff --git a/srcpkgs/textadept/template b/srcpkgs/textadept/template
new file mode 100644
index 00000000000..11e58cf7da9
--- /dev/null
+++ b/srcpkgs/textadept/template
@@ -0,0 +1,49 @@
+# Template file for 'textadept'
+pkgname=textadept
+version=10.6
+revision=1
+archs="i686 x86_64"
+wrksrc=textadept-textadept_${version}
+hostmakedepends="autoconf automake gettext libtool clang wget unzip darcs pkg-config glib-devel ncurses"
+makedepends="gtk+-devel ncurses-devel"
+depends="gtk+ lua52"
+short_desc="Fast, minimalist, and extensible text editor for programmers"
+maintainer="reback00 <reback00@protonmail.com>"
+license="MIT"
+homepage="https://foicica.com/textadept/"
+distfiles="https://github.com/rgieseke/textadept/archive/textadept_${version}.tar.gz"
+checksum=2cb2aa8266c166ed4a3f534843aa75cec0dc1ced09c007aaef540e3a7999870b
+
+pre_configure() {
+	cd src
+	make deps
+}
+
+do_build() {
+	cd src
+	make
+	make curses
+}
+
+do_install() {
+	cd src
+	make PREFIX=/usr DESTDIR="${DESTDIR}" install
+	make curses PREFIX=/usr DESTDIR="${DESTDIR}" install
+
+	# Binaries in /usr/share/textadept are not allowed
+	# So we relocate to /usr/lib/textadept
+	mkdir -p "${DESTDIR}/usr/lib/"
+	mv "${DESTDIR}/usr/share/textadept" "${DESTDIR}/usr/lib/textadept"
+	ln -sf "/usr/lib/textadept/textadept" "${DESTDIR}/usr/bin/textadept"
+	ln -sf "/usr/lib/textadept/textadept-curses" "${DESTDIR}/usr/bin/textadept-curses"
+
+	# For icons
+	mkdir -p "${DESTDIR}/usr/share/pixmaps"
+	ln -s "/usr/lib/textadept/core/images/textadept.svg" "${DESTDIR}/usr/share/pixmaps/textadept.svg"
+	ln -s "/usr/lib/textadept/core/images/ta_48x48.png" \
+		"${DESTDIR}/usr/share/pixmaps/textadept.png"
+}
+
+post_install() {
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: textadept-10.6
  2019-10-09 17:48 [PR PATCH] New package: textadept-10.6 voidlinux-github
                   ` (4 preceding siblings ...)
  2019-10-13 17:05 ` [PR PATCH] [Updated] " voidlinux-github
@ 2019-10-13 17:05 ` voidlinux-github
  2019-10-13 17:17 ` voidlinux-github
                   ` (25 subsequent siblings)
  31 siblings, 0 replies; 40+ messages in thread
From: voidlinux-github @ 2019-10-13 17:05 UTC (permalink / raw)
  To: ml

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

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

https://github.com/reback00/void-packages textadept-branch
https://github.com/void-linux/void-packages/pull/15278

New package: textadept-10.6
[Textadept](https://foicica.com/textadept/) is a very lightweight and fast text editor written in C. It is extensible with Lua. The project aims to keep the C code within 2000 lines but has standard functionalities of other text editors.
Hope it is useful.

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

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

From f11ca7f8483b01e0fccd580fd5d3a18ce834bb0c Mon Sep 17 00:00:00 2001
From: reback00 <reback00@protonmail.com>
Date: Mon, 7 Oct 2019 14:17:56 +0600
Subject: [PATCH 1/2] New package: lbry-desktop-0.36.0

---
 .../update-install-command-change.patch       |  6 +++
 srcpkgs/lbry-desktop/template                 | 39 +++++++++++++++++++
 2 files changed, 45 insertions(+)
 create mode 100644 srcpkgs/lbry-desktop/patches/update-install-command-change.patch
 create mode 100644 srcpkgs/lbry-desktop/template

diff --git a/srcpkgs/lbry-desktop/patches/update-install-command-change.patch b/srcpkgs/lbry-desktop/patches/update-install-command-change.patch
new file mode 100644
index 00000000000..15c71435ed1
--- /dev/null
+++ b/srcpkgs/lbry-desktop/patches/update-install-command-change.patch
@@ -0,0 +1,6 @@
+diff -Naurp0 a/src/ui/modal/modalDownloading/view.jsx b/src/ui/modal/modalDownloading/view.jsx
+--- a/src/ui/modal/modalDownloading/view.jsx	2019-07-27 01:37:50.000000000 +0600
++++ b/src/ui/modal/modalDownloading/view.jsx	2019-07-31 05:53:37.602429661 +0600
+@@ -28 +28 @@ class ModalDownloading extends React.Pur
+-            <blockquote>sudo dpkg -i {downloadItem}</blockquote>
++            <blockquote>ar p {downloadItem} data.tar.xz | sudo tar xJ -C /</blockquote>
diff --git a/srcpkgs/lbry-desktop/template b/srcpkgs/lbry-desktop/template
new file mode 100644
index 00000000000..facc858905f
--- /dev/null
+++ b/srcpkgs/lbry-desktop/template
@@ -0,0 +1,39 @@
+# Template file for 'lbry-desktop'
+pkgname=lbry-desktop
+version=0.36.0
+revision=1
+archs="x86_64"
+hostmakedepends="nodejs yarn-bin binutils tar xz git python libsecret"
+depends="nodejs gnome-keyring GConf"
+short_desc="Browser for decentralized videos and content available on LBRY protocol"
+maintainer="reback00 <reback00@protonmail.com>"
+license="MIT"
+homepage="https://lbry.com/"
+distfiles="https://github.com/lbryio/lbry-desktop/archive/v${version}.tar.gz"
+checksum=8d0cefff2165772224e4b44f9bb91bb035ee6bf81f0da07997ccdf649c9005d6
+patch_args="-Np1"
+
+nopie=yes
+nodebug=yes
+nostrip=yes
+noverifyrdeps=yes
+noshlibprovides=yes
+preserve=yes
+
+pre_build() {
+	npm install --save core-js@2
+	yarn add core-js@2
+}
+
+do_build() {
+	yarn build
+}
+
+do_install() {
+	ar x dist/electron/LBRY_${version}.deb data.tar.xz
+	tar xf data.tar.xz -C ${DESTDIR}
+}
+
+post_install() {
+	vlicense LICENSE
+}

From 97fbbe5e05be2643f328ce78f4d635437998a267 Mon Sep 17 00:00:00 2001
From: reback00 <reback00@protonmail.com>
Date: Wed, 9 Oct 2019 23:39:40 +0600
Subject: [PATCH 2/2] New package: textadept-10.6

---
 srcpkgs/textadept/template | 49 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 49 insertions(+)
 create mode 100644 srcpkgs/textadept/template

diff --git a/srcpkgs/textadept/template b/srcpkgs/textadept/template
new file mode 100644
index 00000000000..11e58cf7da9
--- /dev/null
+++ b/srcpkgs/textadept/template
@@ -0,0 +1,49 @@
+# Template file for 'textadept'
+pkgname=textadept
+version=10.6
+revision=1
+archs="i686 x86_64"
+wrksrc=textadept-textadept_${version}
+hostmakedepends="autoconf automake gettext libtool clang wget unzip darcs pkg-config glib-devel ncurses"
+makedepends="gtk+-devel ncurses-devel"
+depends="gtk+ lua52"
+short_desc="Fast, minimalist, and extensible text editor for programmers"
+maintainer="reback00 <reback00@protonmail.com>"
+license="MIT"
+homepage="https://foicica.com/textadept/"
+distfiles="https://github.com/rgieseke/textadept/archive/textadept_${version}.tar.gz"
+checksum=2cb2aa8266c166ed4a3f534843aa75cec0dc1ced09c007aaef540e3a7999870b
+
+pre_configure() {
+	cd src
+	make deps
+}
+
+do_build() {
+	cd src
+	make
+	make curses
+}
+
+do_install() {
+	cd src
+	make PREFIX=/usr DESTDIR="${DESTDIR}" install
+	make curses PREFIX=/usr DESTDIR="${DESTDIR}" install
+
+	# Binaries in /usr/share/textadept are not allowed
+	# So we relocate to /usr/lib/textadept
+	mkdir -p "${DESTDIR}/usr/lib/"
+	mv "${DESTDIR}/usr/share/textadept" "${DESTDIR}/usr/lib/textadept"
+	ln -sf "/usr/lib/textadept/textadept" "${DESTDIR}/usr/bin/textadept"
+	ln -sf "/usr/lib/textadept/textadept-curses" "${DESTDIR}/usr/bin/textadept-curses"
+
+	# For icons
+	mkdir -p "${DESTDIR}/usr/share/pixmaps"
+	ln -s "/usr/lib/textadept/core/images/textadept.svg" "${DESTDIR}/usr/share/pixmaps/textadept.svg"
+	ln -s "/usr/lib/textadept/core/images/ta_48x48.png" \
+		"${DESTDIR}/usr/share/pixmaps/textadept.png"
+}
+
+post_install() {
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: textadept-10.6
  2019-10-09 17:48 [PR PATCH] New package: textadept-10.6 voidlinux-github
                   ` (5 preceding siblings ...)
  2019-10-13 17:05 ` voidlinux-github
@ 2019-10-13 17:17 ` voidlinux-github
  2019-10-13 17:17 ` voidlinux-github
                   ` (24 subsequent siblings)
  31 siblings, 0 replies; 40+ messages in thread
From: voidlinux-github @ 2019-10-13 17:17 UTC (permalink / raw)
  To: ml

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

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

https://github.com/reback00/void-packages textadept-branch
https://github.com/void-linux/void-packages/pull/15278

New package: textadept-10.6
[Textadept](https://foicica.com/textadept/) is a very lightweight and fast text editor written in C. It is extensible with Lua. The project aims to keep the C code within 2000 lines but has standard functionalities of other text editors.
Hope it is useful.

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

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

From ee6fb76718b972664ebe589462f4decdcf84099e Mon Sep 17 00:00:00 2001
From: reback00 <reback00@protonmail.com>
Date: Wed, 9 Oct 2019 23:39:40 +0600
Subject: [PATCH] New package: textadept-10.6

---
 srcpkgs/textadept/template | 49 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 49 insertions(+)
 create mode 100644 srcpkgs/textadept/template

diff --git a/srcpkgs/textadept/template b/srcpkgs/textadept/template
new file mode 100644
index 00000000000..11e58cf7da9
--- /dev/null
+++ b/srcpkgs/textadept/template
@@ -0,0 +1,49 @@
+# Template file for 'textadept'
+pkgname=textadept
+version=10.6
+revision=1
+archs="i686 x86_64"
+wrksrc=textadept-textadept_${version}
+hostmakedepends="autoconf automake gettext libtool clang wget unzip darcs pkg-config glib-devel ncurses"
+makedepends="gtk+-devel ncurses-devel"
+depends="gtk+ lua52"
+short_desc="Fast, minimalist, and extensible text editor for programmers"
+maintainer="reback00 <reback00@protonmail.com>"
+license="MIT"
+homepage="https://foicica.com/textadept/"
+distfiles="https://github.com/rgieseke/textadept/archive/textadept_${version}.tar.gz"
+checksum=2cb2aa8266c166ed4a3f534843aa75cec0dc1ced09c007aaef540e3a7999870b
+
+pre_configure() {
+	cd src
+	make deps
+}
+
+do_build() {
+	cd src
+	make
+	make curses
+}
+
+do_install() {
+	cd src
+	make PREFIX=/usr DESTDIR="${DESTDIR}" install
+	make curses PREFIX=/usr DESTDIR="${DESTDIR}" install
+
+	# Binaries in /usr/share/textadept are not allowed
+	# So we relocate to /usr/lib/textadept
+	mkdir -p "${DESTDIR}/usr/lib/"
+	mv "${DESTDIR}/usr/share/textadept" "${DESTDIR}/usr/lib/textadept"
+	ln -sf "/usr/lib/textadept/textadept" "${DESTDIR}/usr/bin/textadept"
+	ln -sf "/usr/lib/textadept/textadept-curses" "${DESTDIR}/usr/bin/textadept-curses"
+
+	# For icons
+	mkdir -p "${DESTDIR}/usr/share/pixmaps"
+	ln -s "/usr/lib/textadept/core/images/textadept.svg" "${DESTDIR}/usr/share/pixmaps/textadept.svg"
+	ln -s "/usr/lib/textadept/core/images/ta_48x48.png" \
+		"${DESTDIR}/usr/share/pixmaps/textadept.png"
+}
+
+post_install() {
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: textadept-10.6
  2019-10-09 17:48 [PR PATCH] New package: textadept-10.6 voidlinux-github
                   ` (6 preceding siblings ...)
  2019-10-13 17:17 ` voidlinux-github
@ 2019-10-13 17:17 ` voidlinux-github
  2019-10-13 17:22 ` voidlinux-github
                   ` (23 subsequent siblings)
  31 siblings, 0 replies; 40+ messages in thread
From: voidlinux-github @ 2019-10-13 17:17 UTC (permalink / raw)
  To: ml

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

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

https://github.com/reback00/void-packages textadept-branch
https://github.com/void-linux/void-packages/pull/15278

New package: textadept-10.6
[Textadept](https://foicica.com/textadept/) is a very lightweight and fast text editor written in C. It is extensible with Lua. The project aims to keep the C code within 2000 lines but has standard functionalities of other text editors.
Hope it is useful.

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

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

From ee6fb76718b972664ebe589462f4decdcf84099e Mon Sep 17 00:00:00 2001
From: reback00 <reback00@protonmail.com>
Date: Wed, 9 Oct 2019 23:39:40 +0600
Subject: [PATCH] New package: textadept-10.6

---
 srcpkgs/textadept/template | 49 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 49 insertions(+)
 create mode 100644 srcpkgs/textadept/template

diff --git a/srcpkgs/textadept/template b/srcpkgs/textadept/template
new file mode 100644
index 00000000000..11e58cf7da9
--- /dev/null
+++ b/srcpkgs/textadept/template
@@ -0,0 +1,49 @@
+# Template file for 'textadept'
+pkgname=textadept
+version=10.6
+revision=1
+archs="i686 x86_64"
+wrksrc=textadept-textadept_${version}
+hostmakedepends="autoconf automake gettext libtool clang wget unzip darcs pkg-config glib-devel ncurses"
+makedepends="gtk+-devel ncurses-devel"
+depends="gtk+ lua52"
+short_desc="Fast, minimalist, and extensible text editor for programmers"
+maintainer="reback00 <reback00@protonmail.com>"
+license="MIT"
+homepage="https://foicica.com/textadept/"
+distfiles="https://github.com/rgieseke/textadept/archive/textadept_${version}.tar.gz"
+checksum=2cb2aa8266c166ed4a3f534843aa75cec0dc1ced09c007aaef540e3a7999870b
+
+pre_configure() {
+	cd src
+	make deps
+}
+
+do_build() {
+	cd src
+	make
+	make curses
+}
+
+do_install() {
+	cd src
+	make PREFIX=/usr DESTDIR="${DESTDIR}" install
+	make curses PREFIX=/usr DESTDIR="${DESTDIR}" install
+
+	# Binaries in /usr/share/textadept are not allowed
+	# So we relocate to /usr/lib/textadept
+	mkdir -p "${DESTDIR}/usr/lib/"
+	mv "${DESTDIR}/usr/share/textadept" "${DESTDIR}/usr/lib/textadept"
+	ln -sf "/usr/lib/textadept/textadept" "${DESTDIR}/usr/bin/textadept"
+	ln -sf "/usr/lib/textadept/textadept-curses" "${DESTDIR}/usr/bin/textadept-curses"
+
+	# For icons
+	mkdir -p "${DESTDIR}/usr/share/pixmaps"
+	ln -s "/usr/lib/textadept/core/images/textadept.svg" "${DESTDIR}/usr/share/pixmaps/textadept.svg"
+	ln -s "/usr/lib/textadept/core/images/ta_48x48.png" \
+		"${DESTDIR}/usr/share/pixmaps/textadept.png"
+}
+
+post_install() {
+	vlicense LICENSE
+}

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

* Re: New package: textadept-10.6
  2019-10-09 17:48 [PR PATCH] New package: textadept-10.6 voidlinux-github
                   ` (7 preceding siblings ...)
  2019-10-13 17:17 ` voidlinux-github
@ 2019-10-13 17:22 ` voidlinux-github
  2019-10-15  8:08 ` [PR PATCH] [Updated] " voidlinux-github
                   ` (22 subsequent siblings)
  31 siblings, 0 replies; 40+ messages in thread
From: voidlinux-github @ 2019-10-13 17:22 UTC (permalink / raw)
  To: ml

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

New comment by reback00 on void-packages repository

https://github.com/void-linux/void-packages/pull/15278#issuecomment-541437988

Comment:
Yes, this is exactly what I've done! Thanks for pointing that out.

I have deleted the extra lbry commit and force pushed. Now it should be ok.

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

* Re: [PR PATCH] [Updated] New package: textadept-10.6
  2019-10-09 17:48 [PR PATCH] New package: textadept-10.6 voidlinux-github
                   ` (9 preceding siblings ...)
  2019-10-15  8:08 ` [PR PATCH] [Updated] " voidlinux-github
@ 2019-10-15  8:08 ` voidlinux-github
  2019-10-15  8:37 ` voidlinux-github
                   ` (20 subsequent siblings)
  31 siblings, 0 replies; 40+ messages in thread
From: voidlinux-github @ 2019-10-15  8:08 UTC (permalink / raw)
  To: ml

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

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

https://github.com/reback00/void-packages textadept-branch
https://github.com/void-linux/void-packages/pull/15278

New package: textadept-10.6
[Textadept](https://foicica.com/textadept/) is a very lightweight and fast text editor written in C. It is extensible with Lua. The project aims to keep the C code within 2000 lines but has standard functionalities of other text editors.
Hope it is useful.

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

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

From c589def879f41851bf9137d320e7dcc22e08eefd Mon Sep 17 00:00:00 2001
From: reback00 <reback00@protonmail.com>
Date: Wed, 9 Oct 2019 23:39:40 +0600
Subject: [PATCH] New package: textadept-10.6

---
 srcpkgs/textadept/template | 51 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 51 insertions(+)
 create mode 100644 srcpkgs/textadept/template

diff --git a/srcpkgs/textadept/template b/srcpkgs/textadept/template
new file mode 100644
index 00000000000..042aa12c11c
--- /dev/null
+++ b/srcpkgs/textadept/template
@@ -0,0 +1,51 @@
+# Template file for 'textadept'
+pkgname=textadept
+version=10.6
+revision=1
+wrksrc=textadept-textadept_${version}/src
+hostmakedepends="autoconf automake libtool wget unzip pkg-config glib-devel ncurses"
+makedepends="gtk+-devel ncurses-devel"
+short_desc="Fast, minimalist, and extensible text editor for programmers"
+maintainer="reback00 <reback00@protonmail.com>"
+license="MIT"
+homepage="https://foicica.com/textadept/"
+distfiles="https://github.com/rgieseke/textadept/archive/textadept_${version}.tar.gz http://www.lua.org/ftp/lua-5.3.5.tar.gz http://www.inf.puc-rio.br/~roberto/lpeg/lpeg-1.0.2.tar.gz http://github.com/keplerproject/luafilesystem/archive/v1_7_0_2.zip http://invisible-mirror.net/archives/cdk/cdk-5.0-20150928.tgz http://www.leonerd.org.uk/code/libtermkey/libtermkey-0.20.tar.gz http://www.lua.org/ftp/lua-5.3.5.tar.gz http://www.inf.puc-rio.br/~roberto/lpeg/lpeg-1.0.2.tar.gz http://www.leonerd.org.uk/code/libtermkey/libtermkey-0.20.tar.gz"
+checksum="2cb2aa8266c166ed4a3f534843aa75cec0dc1ced09c007aaef540e3a7999870b
+ 0c2eed3f960446e1a3e4b9a1ca2f3ff893b6ce41942cf54d5dd59ab4b3b058ac
+ 48d66576051b6c78388faad09b70493093264588fcd0f258ddaab1cdd4a15ffe
+ 9174ab891f1d392b42a587b2afb737f9565ecf8a860d2e5a2bff457858f58478
+ 028da75d5f777a1c4184f88e34918bd273bd83bbe3c959bc11710c4f0ea2e448
+ 6c0d87c94ab9915e76ecd313baec08dedf3bd56de83743d9aa923a081935d2f5
+ 0c2eed3f960446e1a3e4b9a1ca2f3ff893b6ce41942cf54d5dd59ab4b3b058ac
+ 48d66576051b6c78388faad09b70493093264588fcd0f258ddaab1cdd4a15ffe
+ 6c0d87c94ab9915e76ecd313baec08dedf3bd56de83743d9aa923a081935d2f5"
+
+pre_configure() {
+	make deps
+}
+
+do_build() {
+	make ${makejobs}
+	make ${makejobs} curses
+}
+
+do_install() {
+	make PREFIX=/usr DESTDIR="${DESTDIR}" install
+	make curses PREFIX=/usr DESTDIR="${DESTDIR}" install
+
+	# Binaries in /usr/share/textadept are not allowed
+	# So we relocate to /usr/lib/textadept
+	mkdir -p "${DESTDIR}/usr/lib/"
+	mv "${DESTDIR}/usr/share/textadept" "${DESTDIR}/usr/lib/textadept"
+	ln -sf "/usr/lib/textadept/textadept" "${DESTDIR}/usr/bin/textadept"
+	ln -sf "/usr/lib/textadept/textadept-curses" "${DESTDIR}/usr/bin/textadept-curses"
+
+	# For icons
+	mkdir -p "${DESTDIR}/usr/share/pixmaps"
+	ln -s "/usr/lib/textadept/core/images/textadept.svg" "${DESTDIR}/usr/share/pixmaps/textadept.svg"
+	ln -s "/usr/lib/textadept/core/images/ta_48x48.png" \
+		"${DESTDIR}/usr/share/pixmaps/textadept.png"
+
+	cd ..
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: textadept-10.6
  2019-10-09 17:48 [PR PATCH] New package: textadept-10.6 voidlinux-github
                   ` (8 preceding siblings ...)
  2019-10-13 17:22 ` voidlinux-github
@ 2019-10-15  8:08 ` voidlinux-github
  2019-10-15  8:08 ` voidlinux-github
                   ` (21 subsequent siblings)
  31 siblings, 0 replies; 40+ messages in thread
From: voidlinux-github @ 2019-10-15  8:08 UTC (permalink / raw)
  To: ml

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

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

https://github.com/reback00/void-packages textadept-branch
https://github.com/void-linux/void-packages/pull/15278

New package: textadept-10.6
[Textadept](https://foicica.com/textadept/) is a very lightweight and fast text editor written in C. It is extensible with Lua. The project aims to keep the C code within 2000 lines but has standard functionalities of other text editors.
Hope it is useful.

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

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

From c589def879f41851bf9137d320e7dcc22e08eefd Mon Sep 17 00:00:00 2001
From: reback00 <reback00@protonmail.com>
Date: Wed, 9 Oct 2019 23:39:40 +0600
Subject: [PATCH] New package: textadept-10.6

---
 srcpkgs/textadept/template | 51 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 51 insertions(+)
 create mode 100644 srcpkgs/textadept/template

diff --git a/srcpkgs/textadept/template b/srcpkgs/textadept/template
new file mode 100644
index 00000000000..042aa12c11c
--- /dev/null
+++ b/srcpkgs/textadept/template
@@ -0,0 +1,51 @@
+# Template file for 'textadept'
+pkgname=textadept
+version=10.6
+revision=1
+wrksrc=textadept-textadept_${version}/src
+hostmakedepends="autoconf automake libtool wget unzip pkg-config glib-devel ncurses"
+makedepends="gtk+-devel ncurses-devel"
+short_desc="Fast, minimalist, and extensible text editor for programmers"
+maintainer="reback00 <reback00@protonmail.com>"
+license="MIT"
+homepage="https://foicica.com/textadept/"
+distfiles="https://github.com/rgieseke/textadept/archive/textadept_${version}.tar.gz http://www.lua.org/ftp/lua-5.3.5.tar.gz http://www.inf.puc-rio.br/~roberto/lpeg/lpeg-1.0.2.tar.gz http://github.com/keplerproject/luafilesystem/archive/v1_7_0_2.zip http://invisible-mirror.net/archives/cdk/cdk-5.0-20150928.tgz http://www.leonerd.org.uk/code/libtermkey/libtermkey-0.20.tar.gz http://www.lua.org/ftp/lua-5.3.5.tar.gz http://www.inf.puc-rio.br/~roberto/lpeg/lpeg-1.0.2.tar.gz http://www.leonerd.org.uk/code/libtermkey/libtermkey-0.20.tar.gz"
+checksum="2cb2aa8266c166ed4a3f534843aa75cec0dc1ced09c007aaef540e3a7999870b
+ 0c2eed3f960446e1a3e4b9a1ca2f3ff893b6ce41942cf54d5dd59ab4b3b058ac
+ 48d66576051b6c78388faad09b70493093264588fcd0f258ddaab1cdd4a15ffe
+ 9174ab891f1d392b42a587b2afb737f9565ecf8a860d2e5a2bff457858f58478
+ 028da75d5f777a1c4184f88e34918bd273bd83bbe3c959bc11710c4f0ea2e448
+ 6c0d87c94ab9915e76ecd313baec08dedf3bd56de83743d9aa923a081935d2f5
+ 0c2eed3f960446e1a3e4b9a1ca2f3ff893b6ce41942cf54d5dd59ab4b3b058ac
+ 48d66576051b6c78388faad09b70493093264588fcd0f258ddaab1cdd4a15ffe
+ 6c0d87c94ab9915e76ecd313baec08dedf3bd56de83743d9aa923a081935d2f5"
+
+pre_configure() {
+	make deps
+}
+
+do_build() {
+	make ${makejobs}
+	make ${makejobs} curses
+}
+
+do_install() {
+	make PREFIX=/usr DESTDIR="${DESTDIR}" install
+	make curses PREFIX=/usr DESTDIR="${DESTDIR}" install
+
+	# Binaries in /usr/share/textadept are not allowed
+	# So we relocate to /usr/lib/textadept
+	mkdir -p "${DESTDIR}/usr/lib/"
+	mv "${DESTDIR}/usr/share/textadept" "${DESTDIR}/usr/lib/textadept"
+	ln -sf "/usr/lib/textadept/textadept" "${DESTDIR}/usr/bin/textadept"
+	ln -sf "/usr/lib/textadept/textadept-curses" "${DESTDIR}/usr/bin/textadept-curses"
+
+	# For icons
+	mkdir -p "${DESTDIR}/usr/share/pixmaps"
+	ln -s "/usr/lib/textadept/core/images/textadept.svg" "${DESTDIR}/usr/share/pixmaps/textadept.svg"
+	ln -s "/usr/lib/textadept/core/images/ta_48x48.png" \
+		"${DESTDIR}/usr/share/pixmaps/textadept.png"
+
+	cd ..
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: textadept-10.6
  2019-10-09 17:48 [PR PATCH] New package: textadept-10.6 voidlinux-github
                   ` (11 preceding siblings ...)
  2019-10-15  8:37 ` voidlinux-github
@ 2019-10-15  8:37 ` voidlinux-github
  2019-10-15  8:39 ` voidlinux-github
                   ` (18 subsequent siblings)
  31 siblings, 0 replies; 40+ messages in thread
From: voidlinux-github @ 2019-10-15  8:37 UTC (permalink / raw)
  To: ml

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

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

https://github.com/reback00/void-packages textadept-branch
https://github.com/void-linux/void-packages/pull/15278

New package: textadept-10.6
[Textadept](https://foicica.com/textadept/) is a very lightweight and fast text editor written in C. It is extensible with Lua. The project aims to keep the C code within 2000 lines but has standard functionalities of other text editors.
Hope it is useful.

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

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

From 89de3c857618bcce864eb5b96a5ee11990c77fc1 Mon Sep 17 00:00:00 2001
From: reback00 <reback00@protonmail.com>
Date: Wed, 9 Oct 2019 23:39:40 +0600
Subject: [PATCH] New package: textadept-10.6

---
 srcpkgs/textadept/template | 52 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 52 insertions(+)
 create mode 100644 srcpkgs/textadept/template

diff --git a/srcpkgs/textadept/template b/srcpkgs/textadept/template
new file mode 100644
index 00000000000..eafaeb7a02e
--- /dev/null
+++ b/srcpkgs/textadept/template
@@ -0,0 +1,52 @@
+# Template file for 'textadept'
+pkgname=textadept
+version=10.6
+revision=1
+nocross="https://travis-ci.org/void-linux/void-packages/jobs/598024294"
+wrksrc=textadept-textadept_${version}/src
+hostmakedepends="autoconf automake libtool wget unzip pkg-config glib-devel ncurses"
+makedepends="gtk+-devel ncurses-devel"
+short_desc="Fast, minimalist, and extensible text editor for programmers"
+maintainer="reback00 <reback00@protonmail.com>"
+license="MIT"
+homepage="https://foicica.com/textadept/"
+distfiles="https://github.com/rgieseke/textadept/archive/textadept_${version}.tar.gz http://www.lua.org/ftp/lua-5.3.5.tar.gz http://www.inf.puc-rio.br/~roberto/lpeg/lpeg-1.0.2.tar.gz http://github.com/keplerproject/luafilesystem/archive/v1_7_0_2.zip http://invisible-mirror.net/archives/cdk/cdk-5.0-20150928.tgz http://www.leonerd.org.uk/code/libtermkey/libtermkey-0.20.tar.gz http://www.lua.org/ftp/lua-5.3.5.tar.gz http://www.inf.puc-rio.br/~roberto/lpeg/lpeg-1.0.2.tar.gz http://www.leonerd.org.uk/code/libtermkey/libtermkey-0.20.tar.gz"
+checksum="2cb2aa8266c166ed4a3f534843aa75cec0dc1ced09c007aaef540e3a7999870b
+ 0c2eed3f960446e1a3e4b9a1ca2f3ff893b6ce41942cf54d5dd59ab4b3b058ac
+ 48d66576051b6c78388faad09b70493093264588fcd0f258ddaab1cdd4a15ffe
+ 9174ab891f1d392b42a587b2afb737f9565ecf8a860d2e5a2bff457858f58478
+ 028da75d5f777a1c4184f88e34918bd273bd83bbe3c959bc11710c4f0ea2e448
+ 6c0d87c94ab9915e76ecd313baec08dedf3bd56de83743d9aa923a081935d2f5
+ 0c2eed3f960446e1a3e4b9a1ca2f3ff893b6ce41942cf54d5dd59ab4b3b058ac
+ 48d66576051b6c78388faad09b70493093264588fcd0f258ddaab1cdd4a15ffe
+ 6c0d87c94ab9915e76ecd313baec08dedf3bd56de83743d9aa923a081935d2f5"
+
+pre_configure() {
+	make deps
+}
+
+do_build() {
+	make ${makejobs}
+	make ${makejobs} curses
+}
+
+do_install() {
+	make PREFIX=/usr DESTDIR="${DESTDIR}" install
+	make curses PREFIX=/usr DESTDIR="${DESTDIR}" install
+
+	# Binaries in /usr/share/textadept are not allowed
+	# So we relocate to /usr/lib/textadept
+	mkdir -p "${DESTDIR}/usr/lib/"
+	mv "${DESTDIR}/usr/share/textadept" "${DESTDIR}/usr/lib/textadept"
+	ln -sf "/usr/lib/textadept/textadept" "${DESTDIR}/usr/bin/textadept"
+	ln -sf "/usr/lib/textadept/textadept-curses" "${DESTDIR}/usr/bin/textadept-curses"
+
+	# For icons
+	mkdir -p "${DESTDIR}/usr/share/pixmaps"
+	ln -s "/usr/lib/textadept/core/images/textadept.svg" "${DESTDIR}/usr/share/pixmaps/textadept.svg"
+	ln -s "/usr/lib/textadept/core/images/ta_48x48.png" \
+		"${DESTDIR}/usr/share/pixmaps/textadept.png"
+
+	cd ..
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: textadept-10.6
  2019-10-09 17:48 [PR PATCH] New package: textadept-10.6 voidlinux-github
                   ` (10 preceding siblings ...)
  2019-10-15  8:08 ` voidlinux-github
@ 2019-10-15  8:37 ` voidlinux-github
  2019-10-15  8:37 ` voidlinux-github
                   ` (19 subsequent siblings)
  31 siblings, 0 replies; 40+ messages in thread
From: voidlinux-github @ 2019-10-15  8:37 UTC (permalink / raw)
  To: ml

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

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

https://github.com/reback00/void-packages textadept-branch
https://github.com/void-linux/void-packages/pull/15278

New package: textadept-10.6
[Textadept](https://foicica.com/textadept/) is a very lightweight and fast text editor written in C. It is extensible with Lua. The project aims to keep the C code within 2000 lines but has standard functionalities of other text editors.
Hope it is useful.

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

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

From 89de3c857618bcce864eb5b96a5ee11990c77fc1 Mon Sep 17 00:00:00 2001
From: reback00 <reback00@protonmail.com>
Date: Wed, 9 Oct 2019 23:39:40 +0600
Subject: [PATCH] New package: textadept-10.6

---
 srcpkgs/textadept/template | 52 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 52 insertions(+)
 create mode 100644 srcpkgs/textadept/template

diff --git a/srcpkgs/textadept/template b/srcpkgs/textadept/template
new file mode 100644
index 00000000000..eafaeb7a02e
--- /dev/null
+++ b/srcpkgs/textadept/template
@@ -0,0 +1,52 @@
+# Template file for 'textadept'
+pkgname=textadept
+version=10.6
+revision=1
+nocross="https://travis-ci.org/void-linux/void-packages/jobs/598024294"
+wrksrc=textadept-textadept_${version}/src
+hostmakedepends="autoconf automake libtool wget unzip pkg-config glib-devel ncurses"
+makedepends="gtk+-devel ncurses-devel"
+short_desc="Fast, minimalist, and extensible text editor for programmers"
+maintainer="reback00 <reback00@protonmail.com>"
+license="MIT"
+homepage="https://foicica.com/textadept/"
+distfiles="https://github.com/rgieseke/textadept/archive/textadept_${version}.tar.gz http://www.lua.org/ftp/lua-5.3.5.tar.gz http://www.inf.puc-rio.br/~roberto/lpeg/lpeg-1.0.2.tar.gz http://github.com/keplerproject/luafilesystem/archive/v1_7_0_2.zip http://invisible-mirror.net/archives/cdk/cdk-5.0-20150928.tgz http://www.leonerd.org.uk/code/libtermkey/libtermkey-0.20.tar.gz http://www.lua.org/ftp/lua-5.3.5.tar.gz http://www.inf.puc-rio.br/~roberto/lpeg/lpeg-1.0.2.tar.gz http://www.leonerd.org.uk/code/libtermkey/libtermkey-0.20.tar.gz"
+checksum="2cb2aa8266c166ed4a3f534843aa75cec0dc1ced09c007aaef540e3a7999870b
+ 0c2eed3f960446e1a3e4b9a1ca2f3ff893b6ce41942cf54d5dd59ab4b3b058ac
+ 48d66576051b6c78388faad09b70493093264588fcd0f258ddaab1cdd4a15ffe
+ 9174ab891f1d392b42a587b2afb737f9565ecf8a860d2e5a2bff457858f58478
+ 028da75d5f777a1c4184f88e34918bd273bd83bbe3c959bc11710c4f0ea2e448
+ 6c0d87c94ab9915e76ecd313baec08dedf3bd56de83743d9aa923a081935d2f5
+ 0c2eed3f960446e1a3e4b9a1ca2f3ff893b6ce41942cf54d5dd59ab4b3b058ac
+ 48d66576051b6c78388faad09b70493093264588fcd0f258ddaab1cdd4a15ffe
+ 6c0d87c94ab9915e76ecd313baec08dedf3bd56de83743d9aa923a081935d2f5"
+
+pre_configure() {
+	make deps
+}
+
+do_build() {
+	make ${makejobs}
+	make ${makejobs} curses
+}
+
+do_install() {
+	make PREFIX=/usr DESTDIR="${DESTDIR}" install
+	make curses PREFIX=/usr DESTDIR="${DESTDIR}" install
+
+	# Binaries in /usr/share/textadept are not allowed
+	# So we relocate to /usr/lib/textadept
+	mkdir -p "${DESTDIR}/usr/lib/"
+	mv "${DESTDIR}/usr/share/textadept" "${DESTDIR}/usr/lib/textadept"
+	ln -sf "/usr/lib/textadept/textadept" "${DESTDIR}/usr/bin/textadept"
+	ln -sf "/usr/lib/textadept/textadept-curses" "${DESTDIR}/usr/bin/textadept-curses"
+
+	# For icons
+	mkdir -p "${DESTDIR}/usr/share/pixmaps"
+	ln -s "/usr/lib/textadept/core/images/textadept.svg" "${DESTDIR}/usr/share/pixmaps/textadept.svg"
+	ln -s "/usr/lib/textadept/core/images/ta_48x48.png" \
+		"${DESTDIR}/usr/share/pixmaps/textadept.png"
+
+	cd ..
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: textadept-10.6
  2019-10-09 17:48 [PR PATCH] New package: textadept-10.6 voidlinux-github
                   ` (13 preceding siblings ...)
  2019-10-15  8:39 ` voidlinux-github
@ 2019-10-15  8:39 ` voidlinux-github
  2019-10-17 17:43 ` voidlinux-github
                   ` (16 subsequent siblings)
  31 siblings, 0 replies; 40+ messages in thread
From: voidlinux-github @ 2019-10-15  8:39 UTC (permalink / raw)
  To: ml

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

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

https://github.com/reback00/void-packages textadept-branch
https://github.com/void-linux/void-packages/pull/15278

New package: textadept-10.6
[Textadept](https://foicica.com/textadept/) is a very lightweight and fast text editor written in C. It is extensible with Lua. The project aims to keep the C code within 2000 lines but has standard functionalities of other text editors.
Hope it is useful.

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

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

From 7841ba6ba4b19b549f3f2fb724155f3bba241ee8 Mon Sep 17 00:00:00 2001
From: reback00 <reback00@protonmail.com>
Date: Wed, 9 Oct 2019 23:39:40 +0600
Subject: [PATCH] New package: textadept-10.6

---
 srcpkgs/textadept/template | 52 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 52 insertions(+)
 create mode 100644 srcpkgs/textadept/template

diff --git a/srcpkgs/textadept/template b/srcpkgs/textadept/template
new file mode 100644
index 00000000000..8da832fdf67
--- /dev/null
+++ b/srcpkgs/textadept/template
@@ -0,0 +1,52 @@
+# Template file for 'textadept'
+pkgname=textadept
+version=10.6
+revision=1
+wrksrc=textadept-textadept_${version}/src
+hostmakedepends="autoconf automake libtool wget unzip pkg-config glib-devel ncurses"
+makedepends="gtk+-devel ncurses-devel"
+short_desc="Fast, minimalist, and extensible text editor for programmers"
+maintainer="reback00 <reback00@protonmail.com>"
+license="MIT"
+homepage="https://foicica.com/textadept/"
+distfiles="https://github.com/rgieseke/textadept/archive/textadept_${version}.tar.gz http://www.lua.org/ftp/lua-5.3.5.tar.gz http://www.inf.puc-rio.br/~roberto/lpeg/lpeg-1.0.2.tar.gz http://github.com/keplerproject/luafilesystem/archive/v1_7_0_2.zip http://invisible-mirror.net/archives/cdk/cdk-5.0-20150928.tgz http://www.leonerd.org.uk/code/libtermkey/libtermkey-0.20.tar.gz http://www.lua.org/ftp/lua-5.3.5.tar.gz http://www.inf.puc-rio.br/~roberto/lpeg/lpeg-1.0.2.tar.gz http://www.leonerd.org.uk/code/libtermkey/libtermkey-0.20.tar.gz"
+checksum="2cb2aa8266c166ed4a3f534843aa75cec0dc1ced09c007aaef540e3a7999870b
+ 0c2eed3f960446e1a3e4b9a1ca2f3ff893b6ce41942cf54d5dd59ab4b3b058ac
+ 48d66576051b6c78388faad09b70493093264588fcd0f258ddaab1cdd4a15ffe
+ 9174ab891f1d392b42a587b2afb737f9565ecf8a860d2e5a2bff457858f58478
+ 028da75d5f777a1c4184f88e34918bd273bd83bbe3c959bc11710c4f0ea2e448
+ 6c0d87c94ab9915e76ecd313baec08dedf3bd56de83743d9aa923a081935d2f5
+ 0c2eed3f960446e1a3e4b9a1ca2f3ff893b6ce41942cf54d5dd59ab4b3b058ac
+ 48d66576051b6c78388faad09b70493093264588fcd0f258ddaab1cdd4a15ffe
+ 6c0d87c94ab9915e76ecd313baec08dedf3bd56de83743d9aa923a081935d2f5"
+nocross="https://travis-ci.org/void-linux/void-packages/jobs/598024294"
+
+pre_configure() {
+	make deps
+}
+
+do_build() {
+	make ${makejobs}
+	make ${makejobs} curses
+}
+
+do_install() {
+	make PREFIX=/usr DESTDIR="${DESTDIR}" install
+	make curses PREFIX=/usr DESTDIR="${DESTDIR}" install
+
+	# Binaries in /usr/share/textadept are not allowed
+	# So we relocate to /usr/lib/textadept
+	mkdir -p "${DESTDIR}/usr/lib/"
+	mv "${DESTDIR}/usr/share/textadept" "${DESTDIR}/usr/lib/textadept"
+	ln -sf "/usr/lib/textadept/textadept" "${DESTDIR}/usr/bin/textadept"
+	ln -sf "/usr/lib/textadept/textadept-curses" "${DESTDIR}/usr/bin/textadept-curses"
+
+	# For icons
+	mkdir -p "${DESTDIR}/usr/share/pixmaps"
+	ln -s "/usr/lib/textadept/core/images/textadept.svg" "${DESTDIR}/usr/share/pixmaps/textadept.svg"
+	ln -s "/usr/lib/textadept/core/images/ta_48x48.png" \
+		"${DESTDIR}/usr/share/pixmaps/textadept.png"
+
+	cd ..
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: textadept-10.6
  2019-10-09 17:48 [PR PATCH] New package: textadept-10.6 voidlinux-github
                   ` (12 preceding siblings ...)
  2019-10-15  8:37 ` voidlinux-github
@ 2019-10-15  8:39 ` voidlinux-github
  2019-10-15  8:39 ` voidlinux-github
                   ` (17 subsequent siblings)
  31 siblings, 0 replies; 40+ messages in thread
From: voidlinux-github @ 2019-10-15  8:39 UTC (permalink / raw)
  To: ml

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

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

https://github.com/reback00/void-packages textadept-branch
https://github.com/void-linux/void-packages/pull/15278

New package: textadept-10.6
[Textadept](https://foicica.com/textadept/) is a very lightweight and fast text editor written in C. It is extensible with Lua. The project aims to keep the C code within 2000 lines but has standard functionalities of other text editors.
Hope it is useful.

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

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

From 7841ba6ba4b19b549f3f2fb724155f3bba241ee8 Mon Sep 17 00:00:00 2001
From: reback00 <reback00@protonmail.com>
Date: Wed, 9 Oct 2019 23:39:40 +0600
Subject: [PATCH] New package: textadept-10.6

---
 srcpkgs/textadept/template | 52 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 52 insertions(+)
 create mode 100644 srcpkgs/textadept/template

diff --git a/srcpkgs/textadept/template b/srcpkgs/textadept/template
new file mode 100644
index 00000000000..8da832fdf67
--- /dev/null
+++ b/srcpkgs/textadept/template
@@ -0,0 +1,52 @@
+# Template file for 'textadept'
+pkgname=textadept
+version=10.6
+revision=1
+wrksrc=textadept-textadept_${version}/src
+hostmakedepends="autoconf automake libtool wget unzip pkg-config glib-devel ncurses"
+makedepends="gtk+-devel ncurses-devel"
+short_desc="Fast, minimalist, and extensible text editor for programmers"
+maintainer="reback00 <reback00@protonmail.com>"
+license="MIT"
+homepage="https://foicica.com/textadept/"
+distfiles="https://github.com/rgieseke/textadept/archive/textadept_${version}.tar.gz http://www.lua.org/ftp/lua-5.3.5.tar.gz http://www.inf.puc-rio.br/~roberto/lpeg/lpeg-1.0.2.tar.gz http://github.com/keplerproject/luafilesystem/archive/v1_7_0_2.zip http://invisible-mirror.net/archives/cdk/cdk-5.0-20150928.tgz http://www.leonerd.org.uk/code/libtermkey/libtermkey-0.20.tar.gz http://www.lua.org/ftp/lua-5.3.5.tar.gz http://www.inf.puc-rio.br/~roberto/lpeg/lpeg-1.0.2.tar.gz http://www.leonerd.org.uk/code/libtermkey/libtermkey-0.20.tar.gz"
+checksum="2cb2aa8266c166ed4a3f534843aa75cec0dc1ced09c007aaef540e3a7999870b
+ 0c2eed3f960446e1a3e4b9a1ca2f3ff893b6ce41942cf54d5dd59ab4b3b058ac
+ 48d66576051b6c78388faad09b70493093264588fcd0f258ddaab1cdd4a15ffe
+ 9174ab891f1d392b42a587b2afb737f9565ecf8a860d2e5a2bff457858f58478
+ 028da75d5f777a1c4184f88e34918bd273bd83bbe3c959bc11710c4f0ea2e448
+ 6c0d87c94ab9915e76ecd313baec08dedf3bd56de83743d9aa923a081935d2f5
+ 0c2eed3f960446e1a3e4b9a1ca2f3ff893b6ce41942cf54d5dd59ab4b3b058ac
+ 48d66576051b6c78388faad09b70493093264588fcd0f258ddaab1cdd4a15ffe
+ 6c0d87c94ab9915e76ecd313baec08dedf3bd56de83743d9aa923a081935d2f5"
+nocross="https://travis-ci.org/void-linux/void-packages/jobs/598024294"
+
+pre_configure() {
+	make deps
+}
+
+do_build() {
+	make ${makejobs}
+	make ${makejobs} curses
+}
+
+do_install() {
+	make PREFIX=/usr DESTDIR="${DESTDIR}" install
+	make curses PREFIX=/usr DESTDIR="${DESTDIR}" install
+
+	# Binaries in /usr/share/textadept are not allowed
+	# So we relocate to /usr/lib/textadept
+	mkdir -p "${DESTDIR}/usr/lib/"
+	mv "${DESTDIR}/usr/share/textadept" "${DESTDIR}/usr/lib/textadept"
+	ln -sf "/usr/lib/textadept/textadept" "${DESTDIR}/usr/bin/textadept"
+	ln -sf "/usr/lib/textadept/textadept-curses" "${DESTDIR}/usr/bin/textadept-curses"
+
+	# For icons
+	mkdir -p "${DESTDIR}/usr/share/pixmaps"
+	ln -s "/usr/lib/textadept/core/images/textadept.svg" "${DESTDIR}/usr/share/pixmaps/textadept.svg"
+	ln -s "/usr/lib/textadept/core/images/ta_48x48.png" \
+		"${DESTDIR}/usr/share/pixmaps/textadept.png"
+
+	cd ..
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: textadept-10.6
  2019-10-09 17:48 [PR PATCH] New package: textadept-10.6 voidlinux-github
                   ` (14 preceding siblings ...)
  2019-10-15  8:39 ` voidlinux-github
@ 2019-10-17 17:43 ` voidlinux-github
  2019-10-17 17:43 ` voidlinux-github
                   ` (15 subsequent siblings)
  31 siblings, 0 replies; 40+ messages in thread
From: voidlinux-github @ 2019-10-17 17:43 UTC (permalink / raw)
  To: ml

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

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

https://github.com/reback00/void-packages textadept-branch
https://github.com/void-linux/void-packages/pull/15278

New package: textadept-10.6
[Textadept](https://foicica.com/textadept/) is a very lightweight and fast text editor written in C. It is extensible with Lua. The project aims to keep the C code within 2000 lines but has standard functionalities of other text editors.
Hope it is useful.

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

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

From cc965b4e20bc618a83be7d34dd96d05fe57f8699 Mon Sep 17 00:00:00 2001
From: reback00 <reback00@protonmail.com>
Date: Wed, 9 Oct 2019 23:39:40 +0600
Subject: [PATCH] New package: textadept-10.6

---
 srcpkgs/textadept/template | 60 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 60 insertions(+)
 create mode 100644 srcpkgs/textadept/template

diff --git a/srcpkgs/textadept/template b/srcpkgs/textadept/template
new file mode 100644
index 00000000000..b14a43e063a
--- /dev/null
+++ b/srcpkgs/textadept/template
@@ -0,0 +1,60 @@
+# Template file for 'textadept'
+pkgname=textadept
+version=10.6
+revision=1
+wrksrc=textadept-textadept_${version}/src
+hostmakedepends="autoconf automake libtool wget unzip pkg-config glib-devel ncurses"
+makedepends="gtk+-devel ncurses-devel"
+short_desc="Fast, minimalist, and extensible text editor for programmers"
+maintainer="reback00 <reback00@protonmail.com>"
+license="MIT"
+homepage="https://foicica.com/textadept/"
+distfiles="https://github.com/rgieseke/textadept/archive/textadept_${version}.tar.gz
+ http://www.lua.org/ftp/lua-5.3.5.tar.gz
+ http://www.inf.puc-rio.br/~roberto/lpeg/lpeg-1.0.2.tar.gz
+ http://github.com/keplerproject/luafilesystem/archive/v1_7_0_2.zip
+ http://invisible-mirror.net/archives/cdk/cdk-5.0-20150928.tgz
+ http://www.leonerd.org.uk/code/libtermkey/libtermkey-0.20.tar.gz
+ http://www.lua.org/ftp/lua-5.3.5.tar.gz
+ http://www.inf.puc-rio.br/~roberto/lpeg/lpeg-1.0.2.tar.gz
+ http://www.leonerd.org.uk/code/libtermkey/libtermkey-0.20.tar.gz"
+checksum="2cb2aa8266c166ed4a3f534843aa75cec0dc1ced09c007aaef540e3a7999870b
+ 0c2eed3f960446e1a3e4b9a1ca2f3ff893b6ce41942cf54d5dd59ab4b3b058ac
+ 48d66576051b6c78388faad09b70493093264588fcd0f258ddaab1cdd4a15ffe
+ 9174ab891f1d392b42a587b2afb737f9565ecf8a860d2e5a2bff457858f58478
+ 028da75d5f777a1c4184f88e34918bd273bd83bbe3c959bc11710c4f0ea2e448
+ 6c0d87c94ab9915e76ecd313baec08dedf3bd56de83743d9aa923a081935d2f5
+ 0c2eed3f960446e1a3e4b9a1ca2f3ff893b6ce41942cf54d5dd59ab4b3b058ac
+ 48d66576051b6c78388faad09b70493093264588fcd0f258ddaab1cdd4a15ffe
+ 6c0d87c94ab9915e76ecd313baec08dedf3bd56de83743d9aa923a081935d2f5"
+nocross="https://travis-ci.org/void-linux/void-packages/jobs/598024294"
+
+pre_configure() {
+	make deps
+}
+
+do_build() {
+	make ${makejobs}
+	make ${makejobs} curses
+}
+
+do_install() {
+	make PREFIX=/usr DESTDIR="${DESTDIR}" install
+	make curses PREFIX=/usr DESTDIR="${DESTDIR}" install
+
+	# Binaries in /usr/share/textadept are not allowed
+	# So we relocate to /usr/lib/textadept
+	mkdir -p "${DESTDIR}/usr/lib/"
+	mv "${DESTDIR}/usr/share/textadept" "${DESTDIR}/usr/lib/textadept"
+	ln -sf "/usr/lib/textadept/textadept" "${DESTDIR}/usr/bin/textadept"
+	ln -sf "/usr/lib/textadept/textadept-curses" "${DESTDIR}/usr/bin/textadept-curses"
+
+	# For icons
+	mkdir -p "${DESTDIR}/usr/share/pixmaps"
+	ln -s "/usr/lib/textadept/core/images/textadept.svg" "${DESTDIR}/usr/share/pixmaps/textadept.svg"
+	ln -s "/usr/lib/textadept/core/images/ta_48x48.png" \
+		"${DESTDIR}/usr/share/pixmaps/textadept.png"
+
+	cd ..
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: textadept-10.6
  2019-10-09 17:48 [PR PATCH] New package: textadept-10.6 voidlinux-github
                   ` (15 preceding siblings ...)
  2019-10-17 17:43 ` voidlinux-github
@ 2019-10-17 17:43 ` voidlinux-github
  2019-10-17 18:04 ` voidlinux-github
                   ` (14 subsequent siblings)
  31 siblings, 0 replies; 40+ messages in thread
From: voidlinux-github @ 2019-10-17 17:43 UTC (permalink / raw)
  To: ml

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

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

https://github.com/reback00/void-packages textadept-branch
https://github.com/void-linux/void-packages/pull/15278

New package: textadept-10.6
[Textadept](https://foicica.com/textadept/) is a very lightweight and fast text editor written in C. It is extensible with Lua. The project aims to keep the C code within 2000 lines but has standard functionalities of other text editors.
Hope it is useful.

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

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

From cc965b4e20bc618a83be7d34dd96d05fe57f8699 Mon Sep 17 00:00:00 2001
From: reback00 <reback00@protonmail.com>
Date: Wed, 9 Oct 2019 23:39:40 +0600
Subject: [PATCH] New package: textadept-10.6

---
 srcpkgs/textadept/template | 60 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 60 insertions(+)
 create mode 100644 srcpkgs/textadept/template

diff --git a/srcpkgs/textadept/template b/srcpkgs/textadept/template
new file mode 100644
index 00000000000..b14a43e063a
--- /dev/null
+++ b/srcpkgs/textadept/template
@@ -0,0 +1,60 @@
+# Template file for 'textadept'
+pkgname=textadept
+version=10.6
+revision=1
+wrksrc=textadept-textadept_${version}/src
+hostmakedepends="autoconf automake libtool wget unzip pkg-config glib-devel ncurses"
+makedepends="gtk+-devel ncurses-devel"
+short_desc="Fast, minimalist, and extensible text editor for programmers"
+maintainer="reback00 <reback00@protonmail.com>"
+license="MIT"
+homepage="https://foicica.com/textadept/"
+distfiles="https://github.com/rgieseke/textadept/archive/textadept_${version}.tar.gz
+ http://www.lua.org/ftp/lua-5.3.5.tar.gz
+ http://www.inf.puc-rio.br/~roberto/lpeg/lpeg-1.0.2.tar.gz
+ http://github.com/keplerproject/luafilesystem/archive/v1_7_0_2.zip
+ http://invisible-mirror.net/archives/cdk/cdk-5.0-20150928.tgz
+ http://www.leonerd.org.uk/code/libtermkey/libtermkey-0.20.tar.gz
+ http://www.lua.org/ftp/lua-5.3.5.tar.gz
+ http://www.inf.puc-rio.br/~roberto/lpeg/lpeg-1.0.2.tar.gz
+ http://www.leonerd.org.uk/code/libtermkey/libtermkey-0.20.tar.gz"
+checksum="2cb2aa8266c166ed4a3f534843aa75cec0dc1ced09c007aaef540e3a7999870b
+ 0c2eed3f960446e1a3e4b9a1ca2f3ff893b6ce41942cf54d5dd59ab4b3b058ac
+ 48d66576051b6c78388faad09b70493093264588fcd0f258ddaab1cdd4a15ffe
+ 9174ab891f1d392b42a587b2afb737f9565ecf8a860d2e5a2bff457858f58478
+ 028da75d5f777a1c4184f88e34918bd273bd83bbe3c959bc11710c4f0ea2e448
+ 6c0d87c94ab9915e76ecd313baec08dedf3bd56de83743d9aa923a081935d2f5
+ 0c2eed3f960446e1a3e4b9a1ca2f3ff893b6ce41942cf54d5dd59ab4b3b058ac
+ 48d66576051b6c78388faad09b70493093264588fcd0f258ddaab1cdd4a15ffe
+ 6c0d87c94ab9915e76ecd313baec08dedf3bd56de83743d9aa923a081935d2f5"
+nocross="https://travis-ci.org/void-linux/void-packages/jobs/598024294"
+
+pre_configure() {
+	make deps
+}
+
+do_build() {
+	make ${makejobs}
+	make ${makejobs} curses
+}
+
+do_install() {
+	make PREFIX=/usr DESTDIR="${DESTDIR}" install
+	make curses PREFIX=/usr DESTDIR="${DESTDIR}" install
+
+	# Binaries in /usr/share/textadept are not allowed
+	# So we relocate to /usr/lib/textadept
+	mkdir -p "${DESTDIR}/usr/lib/"
+	mv "${DESTDIR}/usr/share/textadept" "${DESTDIR}/usr/lib/textadept"
+	ln -sf "/usr/lib/textadept/textadept" "${DESTDIR}/usr/bin/textadept"
+	ln -sf "/usr/lib/textadept/textadept-curses" "${DESTDIR}/usr/bin/textadept-curses"
+
+	# For icons
+	mkdir -p "${DESTDIR}/usr/share/pixmaps"
+	ln -s "/usr/lib/textadept/core/images/textadept.svg" "${DESTDIR}/usr/share/pixmaps/textadept.svg"
+	ln -s "/usr/lib/textadept/core/images/ta_48x48.png" \
+		"${DESTDIR}/usr/share/pixmaps/textadept.png"
+
+	cd ..
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: textadept-10.6
  2019-10-09 17:48 [PR PATCH] New package: textadept-10.6 voidlinux-github
                   ` (16 preceding siblings ...)
  2019-10-17 17:43 ` voidlinux-github
@ 2019-10-17 18:04 ` voidlinux-github
  2019-10-17 18:04 ` voidlinux-github
                   ` (13 subsequent siblings)
  31 siblings, 0 replies; 40+ messages in thread
From: voidlinux-github @ 2019-10-17 18:04 UTC (permalink / raw)
  To: ml

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

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

https://github.com/reback00/void-packages textadept-branch
https://github.com/void-linux/void-packages/pull/15278

New package: textadept-10.6
[Textadept](https://foicica.com/textadept/) is a very lightweight and fast text editor written in C. It is extensible with Lua. The project aims to keep the C code within 2000 lines but has standard functionalities of other text editors.
Hope it is useful.

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

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

From 6f9263782ea67db81e73efe07e229b1e8b4613f0 Mon Sep 17 00:00:00 2001
From: reback00 <reback00@protonmail.com>
Date: Wed, 9 Oct 2019 23:39:40 +0600
Subject: [PATCH] New package: textadept-10.6

---
 srcpkgs/textadept/template | 61 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 61 insertions(+)
 create mode 100644 srcpkgs/textadept/template

diff --git a/srcpkgs/textadept/template b/srcpkgs/textadept/template
new file mode 100644
index 00000000000..845a9ed8b4c
--- /dev/null
+++ b/srcpkgs/textadept/template
@@ -0,0 +1,61 @@
+# Template file for 'textadept'
+pkgname=textadept
+version=10.6
+revision=1
+wrksrc=textadept-textadept_${version}
+build_wrksrc=src
+hostmakedepends="autoconf automake libtool wget unzip pkg-config glib-devel ncurses"
+makedepends="gtk+-devel ncurses-devel"
+short_desc="Fast, minimalist, and extensible text editor for programmers"
+maintainer="reback00 <reback00@protonmail.com>"
+license="MIT"
+homepage="https://foicica.com/textadept/"
+distfiles="https://github.com/rgieseke/textadept/archive/textadept_${version}.tar.gz
+ http://www.lua.org/ftp/lua-5.3.5.tar.gz
+ http://www.inf.puc-rio.br/~roberto/lpeg/lpeg-1.0.2.tar.gz
+ http://github.com/keplerproject/luafilesystem/archive/v1_7_0_2.zip
+ http://invisible-mirror.net/archives/cdk/cdk-5.0-20150928.tgz
+ http://www.leonerd.org.uk/code/libtermkey/libtermkey-0.20.tar.gz
+ http://www.lua.org/ftp/lua-5.3.5.tar.gz
+ http://www.inf.puc-rio.br/~roberto/lpeg/lpeg-1.0.2.tar.gz
+ http://www.leonerd.org.uk/code/libtermkey/libtermkey-0.20.tar.gz"
+checksum="2cb2aa8266c166ed4a3f534843aa75cec0dc1ced09c007aaef540e3a7999870b
+ 0c2eed3f960446e1a3e4b9a1ca2f3ff893b6ce41942cf54d5dd59ab4b3b058ac
+ 48d66576051b6c78388faad09b70493093264588fcd0f258ddaab1cdd4a15ffe
+ 9174ab891f1d392b42a587b2afb737f9565ecf8a860d2e5a2bff457858f58478
+ 028da75d5f777a1c4184f88e34918bd273bd83bbe3c959bc11710c4f0ea2e448
+ 6c0d87c94ab9915e76ecd313baec08dedf3bd56de83743d9aa923a081935d2f5
+ 0c2eed3f960446e1a3e4b9a1ca2f3ff893b6ce41942cf54d5dd59ab4b3b058ac
+ 48d66576051b6c78388faad09b70493093264588fcd0f258ddaab1cdd4a15ffe
+ 6c0d87c94ab9915e76ecd313baec08dedf3bd56de83743d9aa923a081935d2f5"
+nocross="https://travis-ci.org/void-linux/void-packages/jobs/598024294"
+
+pre_configure() {
+	make deps
+}
+
+do_build() {
+	make ${makejobs}
+	make ${makejobs} curses
+}
+
+do_install() {
+	make PREFIX=/usr DESTDIR="${DESTDIR}" install
+	make curses PREFIX=/usr DESTDIR="${DESTDIR}" install
+
+	# Binaries in /usr/share/textadept are not allowed
+	# So we relocate to /usr/lib/textadept
+	mkdir -p "${DESTDIR}/usr/lib/"
+	mv "${DESTDIR}/usr/share/textadept" "${DESTDIR}/usr/lib/textadept"
+	ln -sf "/usr/lib/textadept/textadept" "${DESTDIR}/usr/bin/textadept"
+	ln -sf "/usr/lib/textadept/textadept-curses" "${DESTDIR}/usr/bin/textadept-curses"
+
+	# For icons
+	mkdir -p "${DESTDIR}/usr/share/pixmaps"
+	ln -s "/usr/lib/textadept/core/images/textadept.svg" "${DESTDIR}/usr/share/pixmaps/textadept.svg"
+	ln -s "/usr/lib/textadept/core/images/ta_48x48.png" \
+		"${DESTDIR}/usr/share/pixmaps/textadept.png"
+
+	cd ..
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: textadept-10.6
  2019-10-09 17:48 [PR PATCH] New package: textadept-10.6 voidlinux-github
                   ` (17 preceding siblings ...)
  2019-10-17 18:04 ` voidlinux-github
@ 2019-10-17 18:04 ` voidlinux-github
  2019-10-17 18:18 ` voidlinux-github
                   ` (12 subsequent siblings)
  31 siblings, 0 replies; 40+ messages in thread
From: voidlinux-github @ 2019-10-17 18:04 UTC (permalink / raw)
  To: ml

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

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

https://github.com/reback00/void-packages textadept-branch
https://github.com/void-linux/void-packages/pull/15278

New package: textadept-10.6
[Textadept](https://foicica.com/textadept/) is a very lightweight and fast text editor written in C. It is extensible with Lua. The project aims to keep the C code within 2000 lines but has standard functionalities of other text editors.
Hope it is useful.

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

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

From 6f9263782ea67db81e73efe07e229b1e8b4613f0 Mon Sep 17 00:00:00 2001
From: reback00 <reback00@protonmail.com>
Date: Wed, 9 Oct 2019 23:39:40 +0600
Subject: [PATCH] New package: textadept-10.6

---
 srcpkgs/textadept/template | 61 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 61 insertions(+)
 create mode 100644 srcpkgs/textadept/template

diff --git a/srcpkgs/textadept/template b/srcpkgs/textadept/template
new file mode 100644
index 00000000000..845a9ed8b4c
--- /dev/null
+++ b/srcpkgs/textadept/template
@@ -0,0 +1,61 @@
+# Template file for 'textadept'
+pkgname=textadept
+version=10.6
+revision=1
+wrksrc=textadept-textadept_${version}
+build_wrksrc=src
+hostmakedepends="autoconf automake libtool wget unzip pkg-config glib-devel ncurses"
+makedepends="gtk+-devel ncurses-devel"
+short_desc="Fast, minimalist, and extensible text editor for programmers"
+maintainer="reback00 <reback00@protonmail.com>"
+license="MIT"
+homepage="https://foicica.com/textadept/"
+distfiles="https://github.com/rgieseke/textadept/archive/textadept_${version}.tar.gz
+ http://www.lua.org/ftp/lua-5.3.5.tar.gz
+ http://www.inf.puc-rio.br/~roberto/lpeg/lpeg-1.0.2.tar.gz
+ http://github.com/keplerproject/luafilesystem/archive/v1_7_0_2.zip
+ http://invisible-mirror.net/archives/cdk/cdk-5.0-20150928.tgz
+ http://www.leonerd.org.uk/code/libtermkey/libtermkey-0.20.tar.gz
+ http://www.lua.org/ftp/lua-5.3.5.tar.gz
+ http://www.inf.puc-rio.br/~roberto/lpeg/lpeg-1.0.2.tar.gz
+ http://www.leonerd.org.uk/code/libtermkey/libtermkey-0.20.tar.gz"
+checksum="2cb2aa8266c166ed4a3f534843aa75cec0dc1ced09c007aaef540e3a7999870b
+ 0c2eed3f960446e1a3e4b9a1ca2f3ff893b6ce41942cf54d5dd59ab4b3b058ac
+ 48d66576051b6c78388faad09b70493093264588fcd0f258ddaab1cdd4a15ffe
+ 9174ab891f1d392b42a587b2afb737f9565ecf8a860d2e5a2bff457858f58478
+ 028da75d5f777a1c4184f88e34918bd273bd83bbe3c959bc11710c4f0ea2e448
+ 6c0d87c94ab9915e76ecd313baec08dedf3bd56de83743d9aa923a081935d2f5
+ 0c2eed3f960446e1a3e4b9a1ca2f3ff893b6ce41942cf54d5dd59ab4b3b058ac
+ 48d66576051b6c78388faad09b70493093264588fcd0f258ddaab1cdd4a15ffe
+ 6c0d87c94ab9915e76ecd313baec08dedf3bd56de83743d9aa923a081935d2f5"
+nocross="https://travis-ci.org/void-linux/void-packages/jobs/598024294"
+
+pre_configure() {
+	make deps
+}
+
+do_build() {
+	make ${makejobs}
+	make ${makejobs} curses
+}
+
+do_install() {
+	make PREFIX=/usr DESTDIR="${DESTDIR}" install
+	make curses PREFIX=/usr DESTDIR="${DESTDIR}" install
+
+	# Binaries in /usr/share/textadept are not allowed
+	# So we relocate to /usr/lib/textadept
+	mkdir -p "${DESTDIR}/usr/lib/"
+	mv "${DESTDIR}/usr/share/textadept" "${DESTDIR}/usr/lib/textadept"
+	ln -sf "/usr/lib/textadept/textadept" "${DESTDIR}/usr/bin/textadept"
+	ln -sf "/usr/lib/textadept/textadept-curses" "${DESTDIR}/usr/bin/textadept-curses"
+
+	# For icons
+	mkdir -p "${DESTDIR}/usr/share/pixmaps"
+	ln -s "/usr/lib/textadept/core/images/textadept.svg" "${DESTDIR}/usr/share/pixmaps/textadept.svg"
+	ln -s "/usr/lib/textadept/core/images/ta_48x48.png" \
+		"${DESTDIR}/usr/share/pixmaps/textadept.png"
+
+	cd ..
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: textadept-10.6
  2019-10-09 17:48 [PR PATCH] New package: textadept-10.6 voidlinux-github
                   ` (19 preceding siblings ...)
  2019-10-17 18:18 ` voidlinux-github
@ 2019-10-17 18:18 ` voidlinux-github
  2019-10-17 18:55 ` voidlinux-github
                   ` (10 subsequent siblings)
  31 siblings, 0 replies; 40+ messages in thread
From: voidlinux-github @ 2019-10-17 18:18 UTC (permalink / raw)
  To: ml

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

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

https://github.com/reback00/void-packages textadept-branch
https://github.com/void-linux/void-packages/pull/15278

New package: textadept-10.6
[Textadept](https://foicica.com/textadept/) is a very lightweight and fast text editor written in C. It is extensible with Lua. The project aims to keep the C code within 2000 lines but has standard functionalities of other text editors.
Hope it is useful.

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

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

From 1f9369b8c6433ca504ca9771bcf756197b2394a9 Mon Sep 17 00:00:00 2001
From: reback00 <reback00@protonmail.com>
Date: Wed, 9 Oct 2019 23:39:40 +0600
Subject: [PATCH] New package: textadept-10.6

---
 srcpkgs/textadept/template | 62 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 62 insertions(+)
 create mode 100644 srcpkgs/textadept/template

diff --git a/srcpkgs/textadept/template b/srcpkgs/textadept/template
new file mode 100644
index 00000000000..708b38ff9d9
--- /dev/null
+++ b/srcpkgs/textadept/template
@@ -0,0 +1,62 @@
+# Template file for 'textadept'
+pkgname=textadept
+version=10.6
+revision=1
+wrksrc=textadept-textadept_${version}
+create_wrksrc=yes
+build_wrksrc=src
+hostmakedepends="autoconf automake libtool wget unzip pkg-config glib-devel ncurses"
+makedepends="gtk+-devel ncurses-devel"
+short_desc="Fast, minimalist, and extensible text editor for programmers"
+maintainer="reback00 <reback00@protonmail.com>"
+license="MIT"
+homepage="https://foicica.com/textadept/"
+distfiles="https://github.com/rgieseke/textadept/archive/textadept_${version}.tar.gz
+ http://www.lua.org/ftp/lua-5.3.5.tar.gz
+ http://www.inf.puc-rio.br/~roberto/lpeg/lpeg-1.0.2.tar.gz
+ http://github.com/keplerproject/luafilesystem/archive/v1_7_0_2.zip
+ http://invisible-mirror.net/archives/cdk/cdk-5.0-20150928.tgz
+ http://www.leonerd.org.uk/code/libtermkey/libtermkey-0.20.tar.gz
+ http://www.lua.org/ftp/lua-5.3.5.tar.gz
+ http://www.inf.puc-rio.br/~roberto/lpeg/lpeg-1.0.2.tar.gz
+ http://www.leonerd.org.uk/code/libtermkey/libtermkey-0.20.tar.gz"
+checksum="2cb2aa8266c166ed4a3f534843aa75cec0dc1ced09c007aaef540e3a7999870b
+ 0c2eed3f960446e1a3e4b9a1ca2f3ff893b6ce41942cf54d5dd59ab4b3b058ac
+ 48d66576051b6c78388faad09b70493093264588fcd0f258ddaab1cdd4a15ffe
+ 9174ab891f1d392b42a587b2afb737f9565ecf8a860d2e5a2bff457858f58478
+ 028da75d5f777a1c4184f88e34918bd273bd83bbe3c959bc11710c4f0ea2e448
+ 6c0d87c94ab9915e76ecd313baec08dedf3bd56de83743d9aa923a081935d2f5
+ 0c2eed3f960446e1a3e4b9a1ca2f3ff893b6ce41942cf54d5dd59ab4b3b058ac
+ 48d66576051b6c78388faad09b70493093264588fcd0f258ddaab1cdd4a15ffe
+ 6c0d87c94ab9915e76ecd313baec08dedf3bd56de83743d9aa923a081935d2f5"
+nocross="https://travis-ci.org/void-linux/void-packages/jobs/598024294"
+
+pre_configure() {
+	make deps
+}
+
+do_build() {
+	make ${makejobs}
+	make ${makejobs} curses
+}
+
+do_install() {
+	make PREFIX=/usr DESTDIR="${DESTDIR}" install
+	make curses PREFIX=/usr DESTDIR="${DESTDIR}" install
+
+	# Binaries in /usr/share/textadept are not allowed
+	# So we relocate to /usr/lib/textadept
+	mkdir -p "${DESTDIR}/usr/lib/"
+	mv "${DESTDIR}/usr/share/textadept" "${DESTDIR}/usr/lib/textadept"
+	ln -sf "/usr/lib/textadept/textadept" "${DESTDIR}/usr/bin/textadept"
+	ln -sf "/usr/lib/textadept/textadept-curses" "${DESTDIR}/usr/bin/textadept-curses"
+
+	# For icons
+	mkdir -p "${DESTDIR}/usr/share/pixmaps"
+	ln -s "/usr/lib/textadept/core/images/textadept.svg" "${DESTDIR}/usr/share/pixmaps/textadept.svg"
+	ln -s "/usr/lib/textadept/core/images/ta_48x48.png" \
+		"${DESTDIR}/usr/share/pixmaps/textadept.png"
+
+	cd ..
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: textadept-10.6
  2019-10-09 17:48 [PR PATCH] New package: textadept-10.6 voidlinux-github
                   ` (18 preceding siblings ...)
  2019-10-17 18:04 ` voidlinux-github
@ 2019-10-17 18:18 ` voidlinux-github
  2019-10-17 18:18 ` voidlinux-github
                   ` (11 subsequent siblings)
  31 siblings, 0 replies; 40+ messages in thread
From: voidlinux-github @ 2019-10-17 18:18 UTC (permalink / raw)
  To: ml

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

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

https://github.com/reback00/void-packages textadept-branch
https://github.com/void-linux/void-packages/pull/15278

New package: textadept-10.6
[Textadept](https://foicica.com/textadept/) is a very lightweight and fast text editor written in C. It is extensible with Lua. The project aims to keep the C code within 2000 lines but has standard functionalities of other text editors.
Hope it is useful.

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

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

From 1f9369b8c6433ca504ca9771bcf756197b2394a9 Mon Sep 17 00:00:00 2001
From: reback00 <reback00@protonmail.com>
Date: Wed, 9 Oct 2019 23:39:40 +0600
Subject: [PATCH] New package: textadept-10.6

---
 srcpkgs/textadept/template | 62 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 62 insertions(+)
 create mode 100644 srcpkgs/textadept/template

diff --git a/srcpkgs/textadept/template b/srcpkgs/textadept/template
new file mode 100644
index 00000000000..708b38ff9d9
--- /dev/null
+++ b/srcpkgs/textadept/template
@@ -0,0 +1,62 @@
+# Template file for 'textadept'
+pkgname=textadept
+version=10.6
+revision=1
+wrksrc=textadept-textadept_${version}
+create_wrksrc=yes
+build_wrksrc=src
+hostmakedepends="autoconf automake libtool wget unzip pkg-config glib-devel ncurses"
+makedepends="gtk+-devel ncurses-devel"
+short_desc="Fast, minimalist, and extensible text editor for programmers"
+maintainer="reback00 <reback00@protonmail.com>"
+license="MIT"
+homepage="https://foicica.com/textadept/"
+distfiles="https://github.com/rgieseke/textadept/archive/textadept_${version}.tar.gz
+ http://www.lua.org/ftp/lua-5.3.5.tar.gz
+ http://www.inf.puc-rio.br/~roberto/lpeg/lpeg-1.0.2.tar.gz
+ http://github.com/keplerproject/luafilesystem/archive/v1_7_0_2.zip
+ http://invisible-mirror.net/archives/cdk/cdk-5.0-20150928.tgz
+ http://www.leonerd.org.uk/code/libtermkey/libtermkey-0.20.tar.gz
+ http://www.lua.org/ftp/lua-5.3.5.tar.gz
+ http://www.inf.puc-rio.br/~roberto/lpeg/lpeg-1.0.2.tar.gz
+ http://www.leonerd.org.uk/code/libtermkey/libtermkey-0.20.tar.gz"
+checksum="2cb2aa8266c166ed4a3f534843aa75cec0dc1ced09c007aaef540e3a7999870b
+ 0c2eed3f960446e1a3e4b9a1ca2f3ff893b6ce41942cf54d5dd59ab4b3b058ac
+ 48d66576051b6c78388faad09b70493093264588fcd0f258ddaab1cdd4a15ffe
+ 9174ab891f1d392b42a587b2afb737f9565ecf8a860d2e5a2bff457858f58478
+ 028da75d5f777a1c4184f88e34918bd273bd83bbe3c959bc11710c4f0ea2e448
+ 6c0d87c94ab9915e76ecd313baec08dedf3bd56de83743d9aa923a081935d2f5
+ 0c2eed3f960446e1a3e4b9a1ca2f3ff893b6ce41942cf54d5dd59ab4b3b058ac
+ 48d66576051b6c78388faad09b70493093264588fcd0f258ddaab1cdd4a15ffe
+ 6c0d87c94ab9915e76ecd313baec08dedf3bd56de83743d9aa923a081935d2f5"
+nocross="https://travis-ci.org/void-linux/void-packages/jobs/598024294"
+
+pre_configure() {
+	make deps
+}
+
+do_build() {
+	make ${makejobs}
+	make ${makejobs} curses
+}
+
+do_install() {
+	make PREFIX=/usr DESTDIR="${DESTDIR}" install
+	make curses PREFIX=/usr DESTDIR="${DESTDIR}" install
+
+	# Binaries in /usr/share/textadept are not allowed
+	# So we relocate to /usr/lib/textadept
+	mkdir -p "${DESTDIR}/usr/lib/"
+	mv "${DESTDIR}/usr/share/textadept" "${DESTDIR}/usr/lib/textadept"
+	ln -sf "/usr/lib/textadept/textadept" "${DESTDIR}/usr/bin/textadept"
+	ln -sf "/usr/lib/textadept/textadept-curses" "${DESTDIR}/usr/bin/textadept-curses"
+
+	# For icons
+	mkdir -p "${DESTDIR}/usr/share/pixmaps"
+	ln -s "/usr/lib/textadept/core/images/textadept.svg" "${DESTDIR}/usr/share/pixmaps/textadept.svg"
+	ln -s "/usr/lib/textadept/core/images/ta_48x48.png" \
+		"${DESTDIR}/usr/share/pixmaps/textadept.png"
+
+	cd ..
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: textadept-10.6
  2019-10-09 17:48 [PR PATCH] New package: textadept-10.6 voidlinux-github
                   ` (20 preceding siblings ...)
  2019-10-17 18:18 ` voidlinux-github
@ 2019-10-17 18:55 ` voidlinux-github
  2019-10-17 18:55 ` voidlinux-github
                   ` (9 subsequent siblings)
  31 siblings, 0 replies; 40+ messages in thread
From: voidlinux-github @ 2019-10-17 18:55 UTC (permalink / raw)
  To: ml

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

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

https://github.com/reback00/void-packages textadept-branch
https://github.com/void-linux/void-packages/pull/15278

New package: textadept-10.6
[Textadept](https://foicica.com/textadept/) is a very lightweight and fast text editor written in C. It is extensible with Lua. The project aims to keep the C code within 2000 lines but has standard functionalities of other text editors.
Hope it is useful.

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

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

From 540a8136c2cb7bb80ae96620b3404908823f1c11 Mon Sep 17 00:00:00 2001
From: reback00 <reback00@protonmail.com>
Date: Wed, 9 Oct 2019 23:39:40 +0600
Subject: [PATCH] New package: textadept-10.6

---
 srcpkgs/textadept/template | 63 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 63 insertions(+)
 create mode 100644 srcpkgs/textadept/template

diff --git a/srcpkgs/textadept/template b/srcpkgs/textadept/template
new file mode 100644
index 00000000000..7d614839adf
--- /dev/null
+++ b/srcpkgs/textadept/template
@@ -0,0 +1,63 @@
+# Template file for 'textadept'
+pkgname=textadept
+version=10.6
+revision=1
+wrksrc=textadept-textadept_${version}
+#create_wrksrc=yes
+build_wrksrc=src
+hostmakedepends="autoconf automake libtool wget unzip pkg-config glib-devel ncurses"
+makedepends="gtk+-devel ncurses-devel"
+short_desc="Fast, minimalist, and extensible text editor for programmers"
+maintainer="reback00 <reback00@protonmail.com>"
+license="MIT"
+homepage="https://foicica.com/textadept/"
+distfiles="https://github.com/rgieseke/textadept/archive/textadept_${version}.tar.gz
+ http://www.lua.org/ftp/lua-5.3.5.tar.gz
+ http://www.inf.puc-rio.br/~roberto/lpeg/lpeg-1.0.2.tar.gz
+ http://github.com/keplerproject/luafilesystem/archive/v1_7_0_2.zip
+ http://invisible-mirror.net/archives/cdk/cdk-5.0-20150928.tgz
+ http://www.leonerd.org.uk/code/libtermkey/libtermkey-0.20.tar.gz
+ http://www.lua.org/ftp/lua-5.3.5.tar.gz
+ http://www.inf.puc-rio.br/~roberto/lpeg/lpeg-1.0.2.tar.gz
+ http://www.leonerd.org.uk/code/libtermkey/libtermkey-0.20.tar.gz"
+checksum="2cb2aa8266c166ed4a3f534843aa75cec0dc1ced09c007aaef540e3a7999870b
+ 0c2eed3f960446e1a3e4b9a1ca2f3ff893b6ce41942cf54d5dd59ab4b3b058ac
+ 48d66576051b6c78388faad09b70493093264588fcd0f258ddaab1cdd4a15ffe
+ 9174ab891f1d392b42a587b2afb737f9565ecf8a860d2e5a2bff457858f58478
+ 028da75d5f777a1c4184f88e34918bd273bd83bbe3c959bc11710c4f0ea2e448
+ 6c0d87c94ab9915e76ecd313baec08dedf3bd56de83743d9aa923a081935d2f5
+ 0c2eed3f960446e1a3e4b9a1ca2f3ff893b6ce41942cf54d5dd59ab4b3b058ac
+ 48d66576051b6c78388faad09b70493093264588fcd0f258ddaab1cdd4a15ffe
+ 6c0d87c94ab9915e76ecd313baec08dedf3bd56de83743d9aa923a081935d2f5"
+#nocross="https://travis-ci.org/void-linux/void-packages/jobs/598024294"
+
+pre_configure() {
+	vsed -i -e 's/CC = /CC ?= /' -e 's/CFLAGS = /CFLAGS ?= /' -e 's/CXX = /CXX ?= /' -e 's/CXXFLAGS = /CXXFLAGS ?= /' Makefile
+	make deps
+}
+
+do_build() {
+	make ${makejobs}
+	make ${makejobs} curses
+}
+
+do_install() {
+	make PREFIX=/usr DESTDIR="${DESTDIR}" install
+	make curses PREFIX=/usr DESTDIR="${DESTDIR}" install
+
+	# Binaries in /usr/share/textadept are not allowed
+	# So we relocate to /usr/lib/textadept
+	mkdir -p "${DESTDIR}/usr/lib/"
+	mv "${DESTDIR}/usr/share/textadept" "${DESTDIR}/usr/lib/textadept"
+	ln -sf "/usr/lib/textadept/textadept" "${DESTDIR}/usr/bin/textadept"
+	ln -sf "/usr/lib/textadept/textadept-curses" "${DESTDIR}/usr/bin/textadept-curses"
+
+	# For icons
+	mkdir -p "${DESTDIR}/usr/share/pixmaps"
+	ln -s "/usr/lib/textadept/core/images/textadept.svg" "${DESTDIR}/usr/share/pixmaps/textadept.svg"
+	ln -s "/usr/lib/textadept/core/images/ta_48x48.png" \
+		"${DESTDIR}/usr/share/pixmaps/textadept.png"
+
+	cd ..
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: textadept-10.6
  2019-10-09 17:48 [PR PATCH] New package: textadept-10.6 voidlinux-github
                   ` (21 preceding siblings ...)
  2019-10-17 18:55 ` voidlinux-github
@ 2019-10-17 18:55 ` voidlinux-github
  2019-10-18  6:34 ` [PR PATCH] [Closed]: " voidlinux-github
                   ` (8 subsequent siblings)
  31 siblings, 0 replies; 40+ messages in thread
From: voidlinux-github @ 2019-10-17 18:55 UTC (permalink / raw)
  To: ml

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

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

https://github.com/reback00/void-packages textadept-branch
https://github.com/void-linux/void-packages/pull/15278

New package: textadept-10.6
[Textadept](https://foicica.com/textadept/) is a very lightweight and fast text editor written in C. It is extensible with Lua. The project aims to keep the C code within 2000 lines but has standard functionalities of other text editors.
Hope it is useful.

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

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

From 540a8136c2cb7bb80ae96620b3404908823f1c11 Mon Sep 17 00:00:00 2001
From: reback00 <reback00@protonmail.com>
Date: Wed, 9 Oct 2019 23:39:40 +0600
Subject: [PATCH] New package: textadept-10.6

---
 srcpkgs/textadept/template | 63 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 63 insertions(+)
 create mode 100644 srcpkgs/textadept/template

diff --git a/srcpkgs/textadept/template b/srcpkgs/textadept/template
new file mode 100644
index 00000000000..7d614839adf
--- /dev/null
+++ b/srcpkgs/textadept/template
@@ -0,0 +1,63 @@
+# Template file for 'textadept'
+pkgname=textadept
+version=10.6
+revision=1
+wrksrc=textadept-textadept_${version}
+#create_wrksrc=yes
+build_wrksrc=src
+hostmakedepends="autoconf automake libtool wget unzip pkg-config glib-devel ncurses"
+makedepends="gtk+-devel ncurses-devel"
+short_desc="Fast, minimalist, and extensible text editor for programmers"
+maintainer="reback00 <reback00@protonmail.com>"
+license="MIT"
+homepage="https://foicica.com/textadept/"
+distfiles="https://github.com/rgieseke/textadept/archive/textadept_${version}.tar.gz
+ http://www.lua.org/ftp/lua-5.3.5.tar.gz
+ http://www.inf.puc-rio.br/~roberto/lpeg/lpeg-1.0.2.tar.gz
+ http://github.com/keplerproject/luafilesystem/archive/v1_7_0_2.zip
+ http://invisible-mirror.net/archives/cdk/cdk-5.0-20150928.tgz
+ http://www.leonerd.org.uk/code/libtermkey/libtermkey-0.20.tar.gz
+ http://www.lua.org/ftp/lua-5.3.5.tar.gz
+ http://www.inf.puc-rio.br/~roberto/lpeg/lpeg-1.0.2.tar.gz
+ http://www.leonerd.org.uk/code/libtermkey/libtermkey-0.20.tar.gz"
+checksum="2cb2aa8266c166ed4a3f534843aa75cec0dc1ced09c007aaef540e3a7999870b
+ 0c2eed3f960446e1a3e4b9a1ca2f3ff893b6ce41942cf54d5dd59ab4b3b058ac
+ 48d66576051b6c78388faad09b70493093264588fcd0f258ddaab1cdd4a15ffe
+ 9174ab891f1d392b42a587b2afb737f9565ecf8a860d2e5a2bff457858f58478
+ 028da75d5f777a1c4184f88e34918bd273bd83bbe3c959bc11710c4f0ea2e448
+ 6c0d87c94ab9915e76ecd313baec08dedf3bd56de83743d9aa923a081935d2f5
+ 0c2eed3f960446e1a3e4b9a1ca2f3ff893b6ce41942cf54d5dd59ab4b3b058ac
+ 48d66576051b6c78388faad09b70493093264588fcd0f258ddaab1cdd4a15ffe
+ 6c0d87c94ab9915e76ecd313baec08dedf3bd56de83743d9aa923a081935d2f5"
+#nocross="https://travis-ci.org/void-linux/void-packages/jobs/598024294"
+
+pre_configure() {
+	vsed -i -e 's/CC = /CC ?= /' -e 's/CFLAGS = /CFLAGS ?= /' -e 's/CXX = /CXX ?= /' -e 's/CXXFLAGS = /CXXFLAGS ?= /' Makefile
+	make deps
+}
+
+do_build() {
+	make ${makejobs}
+	make ${makejobs} curses
+}
+
+do_install() {
+	make PREFIX=/usr DESTDIR="${DESTDIR}" install
+	make curses PREFIX=/usr DESTDIR="${DESTDIR}" install
+
+	# Binaries in /usr/share/textadept are not allowed
+	# So we relocate to /usr/lib/textadept
+	mkdir -p "${DESTDIR}/usr/lib/"
+	mv "${DESTDIR}/usr/share/textadept" "${DESTDIR}/usr/lib/textadept"
+	ln -sf "/usr/lib/textadept/textadept" "${DESTDIR}/usr/bin/textadept"
+	ln -sf "/usr/lib/textadept/textadept-curses" "${DESTDIR}/usr/bin/textadept-curses"
+
+	# For icons
+	mkdir -p "${DESTDIR}/usr/share/pixmaps"
+	ln -s "/usr/lib/textadept/core/images/textadept.svg" "${DESTDIR}/usr/share/pixmaps/textadept.svg"
+	ln -s "/usr/lib/textadept/core/images/ta_48x48.png" \
+		"${DESTDIR}/usr/share/pixmaps/textadept.png"
+
+	cd ..
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Closed]: New package: textadept-10.6
  2019-10-09 17:48 [PR PATCH] New package: textadept-10.6 voidlinux-github
                   ` (22 preceding siblings ...)
  2019-10-17 18:55 ` voidlinux-github
@ 2019-10-18  6:34 ` voidlinux-github
  2019-10-18  6:42 ` voidlinux-github
                   ` (7 subsequent siblings)
  31 siblings, 0 replies; 40+ messages in thread
From: voidlinux-github @ 2019-10-18  6:34 UTC (permalink / raw)
  To: ml

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

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

New package: textadept-10.6
https://github.com/void-linux/void-packages/pull/15278

Description:
[Textadept](https://foicica.com/textadept/) is a very lightweight and fast text editor written in C. It is extensible with Lua. The project aims to keep the C code within 2000 lines but has standard functionalities of other text editors.
Hope it is useful.

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

* Re: New package: textadept-10.6
  2019-10-09 17:48 [PR PATCH] New package: textadept-10.6 voidlinux-github
                   ` (23 preceding siblings ...)
  2019-10-18  6:34 ` [PR PATCH] [Closed]: " voidlinux-github
@ 2019-10-18  6:42 ` voidlinux-github
  2019-10-18  6:44 ` voidlinux-github
                   ` (6 subsequent siblings)
  31 siblings, 0 replies; 40+ messages in thread
From: voidlinux-github @ 2019-10-18  6:42 UTC (permalink / raw)
  To: ml

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

New comment by reback00 on void-packages repository

https://github.com/void-linux/void-packages/pull/15278#issuecomment-543545924

Comment:
I had a corruption of my local git repo, because my machine hanged in the middle. I managed to do a commit, but now ~17k are included in the commit! Can anyone help me solve that?

I did the `git add srcpkgs/textadept` and `git commit --amend` and then `git push -f`, but there are some other files now in the commit. Furthermore, the PR is closed automatically.

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

* Re: New package: textadept-10.6
  2019-10-09 17:48 [PR PATCH] New package: textadept-10.6 voidlinux-github
                   ` (24 preceding siblings ...)
  2019-10-18  6:42 ` voidlinux-github
@ 2019-10-18  6:44 ` voidlinux-github
  2019-10-18 16:36 ` voidlinux-github
                   ` (5 subsequent siblings)
  31 siblings, 0 replies; 40+ messages in thread
From: voidlinux-github @ 2019-10-18  6:44 UTC (permalink / raw)
  To: ml

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

New comment by reback00 on void-packages repository

https://github.com/void-linux/void-packages/pull/15278#issuecomment-543545924

Comment:
I had a corruption of my local git repo, because my machine hanged in the middle. I managed to do a commit, but now ~17k files are included in the commit! Can anyone help me solve that?

I did the `git add srcpkgs/textadept` and `git commit --amend` and then `git push -f`, but there are some other files now in the commit. Furthermore, the PR is closed automatically.

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

* Re: New package: textadept-10.6
  2019-10-09 17:48 [PR PATCH] New package: textadept-10.6 voidlinux-github
                   ` (25 preceding siblings ...)
  2019-10-18  6:44 ` voidlinux-github
@ 2019-10-18 16:36 ` voidlinux-github
  2019-10-19 16:33 ` voidlinux-github
                   ` (4 subsequent siblings)
  31 siblings, 0 replies; 40+ messages in thread
From: voidlinux-github @ 2019-10-18 16:36 UTC (permalink / raw)
  To: ml

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

New comment by Chocimier on void-packages repository

https://github.com/void-linux/void-packages/pull/15278#issuecomment-543826559

Comment:
If you have no other local changes to recover, i guess it easiest to clone your fork again and recreate commit from 540a813 link here.

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

* Re: New package: textadept-10.6
  2019-10-09 17:48 [PR PATCH] New package: textadept-10.6 voidlinux-github
                   ` (26 preceding siblings ...)
  2019-10-18 16:36 ` voidlinux-github
@ 2019-10-19 16:33 ` voidlinux-github
  2019-10-19 16:33 ` voidlinux-github
                   ` (3 subsequent siblings)
  31 siblings, 0 replies; 40+ messages in thread
From: voidlinux-github @ 2019-10-19 16:33 UTC (permalink / raw)
  To: ml

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

New comment by reback00 on void-packages repository

https://github.com/void-linux/void-packages/pull/15278#issuecomment-544169172

Comment:
I think I'm done. I have applied the changes you suggested and have a backup of the last one locally. As this PR is closed, should I create a new PR with a new commit?

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

* Re: New package: textadept-10.6
  2019-10-09 17:48 [PR PATCH] New package: textadept-10.6 voidlinux-github
                   ` (27 preceding siblings ...)
  2019-10-19 16:33 ` voidlinux-github
@ 2019-10-19 16:33 ` voidlinux-github
  2019-10-19 16:41 ` voidlinux-github
                   ` (2 subsequent siblings)
  31 siblings, 0 replies; 40+ messages in thread
From: voidlinux-github @ 2019-10-19 16:33 UTC (permalink / raw)
  To: ml

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

New comment by reback00 on void-packages repository

https://github.com/void-linux/void-packages/pull/15278#issuecomment-544169172

Comment:
I think I'm done. I have applied the changes you suggested and have a backup of the last one locally. As this PR is closed, should I create a new PR?

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

* Re: New package: textadept-10.6
  2019-10-09 17:48 [PR PATCH] New package: textadept-10.6 voidlinux-github
                   ` (28 preceding siblings ...)
  2019-10-19 16:33 ` voidlinux-github
@ 2019-10-19 16:41 ` voidlinux-github
  2019-10-19 17:15 ` voidlinux-github
  2019-10-19 19:01 ` New package: textadept-10.6 [Deprecated] voidlinux-github
  31 siblings, 0 replies; 40+ messages in thread
From: voidlinux-github @ 2019-10-19 16:41 UTC (permalink / raw)
  To: ml

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

New comment by Chocimier on void-packages repository

https://github.com/void-linux/void-packages/pull/15278#issuecomment-544170217

Comment:
if possible reopen

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

* Re: New package: textadept-10.6
  2019-10-09 17:48 [PR PATCH] New package: textadept-10.6 voidlinux-github
                   ` (29 preceding siblings ...)
  2019-10-19 16:41 ` voidlinux-github
@ 2019-10-19 17:15 ` voidlinux-github
  2019-10-19 19:01 ` New package: textadept-10.6 [Deprecated] voidlinux-github
  31 siblings, 0 replies; 40+ messages in thread
From: voidlinux-github @ 2019-10-19 17:15 UTC (permalink / raw)
  To: ml

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

New comment by reback00 on void-packages repository

https://github.com/void-linux/void-packages/pull/15278#issuecomment-544174653

Comment:
The "Reopen and comment" button is disabled when I try to post a comment. So I guess I'll have to post a new PR.

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

* Re: New package: textadept-10.6 [Deprecated]
  2019-10-09 17:48 [PR PATCH] New package: textadept-10.6 voidlinux-github
                   ` (30 preceding siblings ...)
  2019-10-19 17:15 ` voidlinux-github
@ 2019-10-19 19:01 ` voidlinux-github
  31 siblings, 0 replies; 40+ messages in thread
From: voidlinux-github @ 2019-10-19 19:01 UTC (permalink / raw)
  To: ml

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

New comment by reback00 on void-packages repository

https://github.com/void-linux/void-packages/pull/15278#issuecomment-544174653

Comment:
The "Reopen and comment" button is disabled when I try to post a comment. So I guess I'll have to post a new PR.

**UPDATE**: Opened a new PR [here](https://github.com/void-linux/void-packages/pull/15627) with a clean commit.

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

* Re: [PR PATCH] [Updated] New package: textadept-10.6
  2019-10-19 18:53 [PR PATCH] New package: textadept-10.6 voidlinux-github
                   ` (5 preceding siblings ...)
  2020-07-17  8:17 ` reback00
@ 2020-07-17  8:23 ` reback00
  6 siblings, 0 replies; 40+ messages in thread
From: reback00 @ 2020-07-17  8:23 UTC (permalink / raw)
  To: ml

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

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

https://github.com/reback00/void-packages textadept-resubmit-branch
https://github.com/void-linux/void-packages/pull/15627

New package: textadept-10.6
This is a resubmission of Textadept package. I [messed up](https://github.com/void-linux/void-packages/pull/15278#issuecomment-543545924) the old PR and it got closed automatically, so had to open a new one.

[Textadept](https://foicica.com/textadept/) is a very lightweight and fast text editor written in C. It is extensible with Lua. The project aims to keep the C code within 2000 lines but has standard functionalities of other text editors.
Hope it is useful.

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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-textadept-resubmit-branch-15627.patch --]
[-- Type: text/x-diff, Size: 2321 bytes --]

From cf1e4830a0234407a7fcfec38394640003fa7e35 Mon Sep 17 00:00:00 2001
From: reback00 <reback00@protonmail.com>
Date: Sun, 20 Oct 2019 00:45:15 +0600
Subject: [PATCH] New package: textadept-10.8

---
 srcpkgs/textadept/template | 51 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 51 insertions(+)
 create mode 100644 srcpkgs/textadept/template

diff --git a/srcpkgs/textadept/template b/srcpkgs/textadept/template
new file mode 100644
index 00000000000..491be18f591
--- /dev/null
+++ b/srcpkgs/textadept/template
@@ -0,0 +1,51 @@
+# Template file for 'textadept'
+pkgname=textadept
+version=10.8
+revision=1
+wrksrc="textadept-textadept_${version}"
+build_wrksrc="src"
+hostmakedepends="autoconf automake libtool wget unzip pkg-config glib-devel ncurses"
+makedepends="gtk+-devel ncurses-devel"
+short_desc="Fast, minimalist, and extensible text editor for programmers"
+maintainer="reback00 <reback00@protonmail.com>"
+license="MIT"
+homepage="https://foicica.com/textadept/"
+distfiles="https://github.com/rgieseke/textadept/archive/textadept_${version}.tar.gz
+ https://foicica.com/textadept/download/textadept_${version}.modules.zip"
+checksum="33d5c2eb36c93f48af2fa9fe6ae81ab2592b95af2fbe4f45144cd5b6d8a34ce0
+ 2b2a94f43129ca81d67fde0b206fcd96e352b09a7f687833baa4ee8c5e46b32c"
+
+pre_configure() {
+	# For cross builds
+	vsed -i \
+		-e 's/CC = /CC ?= /' \
+		-e 's/CFLAGS = /CFLAGS ?= /' \
+		-e 's/CXX = /CXX ?= /' \
+		-e 's/CXXFLAGS = /CXXFLAGS ?= /' Makefile
+	make deps
+}
+
+do_build() {
+	make ${makejobs}
+	make ${makejobs} curses
+}
+
+do_install() {
+	make PREFIX=/usr DESTDIR="${DESTDIR}" install
+	make curses PREFIX=/usr DESTDIR="${DESTDIR}" install
+
+	# Binaries in /usr/share/textadept are not allowed
+	# So we relocate to /usr/lib/textadept
+	mkdir -p "${DESTDIR}/usr/lib/"
+	mv "${DESTDIR}/usr/share/textadept" "${DESTDIR}/usr/lib/textadept"
+	ln -sf "/usr/lib/textadept/textadept" "${DESTDIR}/usr/bin/textadept"
+	ln -sf "/usr/lib/textadept/textadept-curses" "${DESTDIR}/usr/bin/textadept-curses"
+
+	# For icons
+	mkdir -p "${DESTDIR}/usr/share/pixmaps"
+	ln -s "/usr/lib/textadept/core/images/textadept.svg" "${DESTDIR}/usr/share/pixmaps/textadept.svg"
+	ln -s "/usr/lib/textadept/core/images/ta_48x48.png" \
+		"${DESTDIR}/usr/share/pixmaps/textadept.png"
+
+	vlicense ../LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: textadept-10.6
  2019-10-19 18:53 [PR PATCH] New package: textadept-10.6 voidlinux-github
                   ` (4 preceding siblings ...)
  2019-11-06  3:20 ` voidlinux-github
@ 2020-07-17  8:17 ` reback00
  2020-07-17  8:23 ` reback00
  6 siblings, 0 replies; 40+ messages in thread
From: reback00 @ 2020-07-17  8:17 UTC (permalink / raw)
  To: ml

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

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

https://github.com/reback00/void-packages textadept-resubmit-branch
https://github.com/void-linux/void-packages/pull/15627

New package: textadept-10.6
This is a resubmission of Textadept package. I [messed up](https://github.com/void-linux/void-packages/pull/15278#issuecomment-543545924) the old PR and it got closed automatically, so had to open a new one.

[Textadept](https://foicica.com/textadept/) is a very lightweight and fast text editor written in C. It is extensible with Lua. The project aims to keep the C code within 2000 lines but has standard functionalities of other text editors.
Hope it is useful.

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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-textadept-resubmit-branch-15627.patch --]
[-- Type: text/x-diff, Size: 2337 bytes --]

From e202f5b1ead25a44cacc44a2244df778f2b628fe Mon Sep 17 00:00:00 2001
From: reback00 <reback00@protonmail.com>
Date: Sun, 20 Oct 2019 00:45:15 +0600
Subject: [PATCH] New package: textadept-10.8

---
 srcpkgs/textadept/template | 52 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 52 insertions(+)
 create mode 100644 srcpkgs/textadept/template

diff --git a/srcpkgs/textadept/template b/srcpkgs/textadept/template
new file mode 100644
index 00000000000..5f3cdbda4ba
--- /dev/null
+++ b/srcpkgs/textadept/template
@@ -0,0 +1,52 @@
+# Template file for 'textadept'
+pkgname=textadept
+version=10.8
+revision=1
+wrksrc="textadept-textadept_${version}"
+build_wrksrc="src"
+hostmakedepends="autoconf automake libtool wget unzip pkg-config glib-devel ncurses"
+makedepends="gtk+-devel ncurses-devel"
+short_desc="Fast, minimalist, and extensible text editor for programmers"
+maintainer="reback00 <reback00@protonmail.com>"
+license="MIT"
+homepage="https://foicica.com/textadept/"
+distfiles="https://github.com/rgieseke/textadept/archive/textadept_${version}.tar.gz
+ https://foicica.com/textadept/download/textadept_${version}.modules.zip"
+checksum="33d5c2eb36c93f48af2fa9fe6ae81ab2592b95af2fbe4f45144cd5b6d8a34ce0
+ 2b2a94f43129ca81d67fde0b206fcd96e352b09a7f687833baa4ee8c5e46b32c"
+
+pre_configure() {
+	# For cross builds
+	vsed -i \
+		-e 's/CC = /CC ?= /' \
+		-e 's/CFLAGS = /CFLAGS ?= /' \
+		-e 's/CXX = /CXX ?= /' \
+		-e 's/CXXFLAGS = /CXXFLAGS ?= /' Makefile
+	make deps
+}
+
+do_build() {
+	make ${makejobs}
+	make ${makejobs} curses
+}
+
+do_install() {
+	make PREFIX=/usr DESTDIR="${DESTDIR}" install
+	make curses PREFIX=/usr DESTDIR="${DESTDIR}" install
+
+	# Binaries in /usr/share/textadept are not allowed
+	# So we relocate to /usr/lib/textadept
+	mkdir -p "${DESTDIR}/usr/lib/"
+	mv "${DESTDIR}/usr/share/textadept" "${DESTDIR}/usr/lib/textadept"
+	ln -sf "/usr/lib/textadept/textadept" "${DESTDIR}/usr/bin/textadept"
+	ln -sf "/usr/lib/textadept/textadept-curses" "${DESTDIR}/usr/bin/textadept-curses"
+
+	# For icons
+	mkdir -p "${DESTDIR}/usr/share/pixmaps"
+	ln -s "/usr/lib/textadept/core/images/textadept.svg" "${DESTDIR}/usr/share/pixmaps/textadept.svg"
+	ln -s "/usr/lib/textadept/core/images/ta_48x48.png" \
+		"${DESTDIR}/usr/share/pixmaps/textadept.png"
+
+	# For license
+	vlicense ../LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: textadept-10.6
  2019-10-19 18:53 [PR PATCH] New package: textadept-10.6 voidlinux-github
                   ` (3 preceding siblings ...)
  2019-11-04 12:41 ` voidlinux-github
@ 2019-11-06  3:20 ` voidlinux-github
  2020-07-17  8:17 ` reback00
  2020-07-17  8:23 ` reback00
  6 siblings, 0 replies; 40+ messages in thread
From: voidlinux-github @ 2019-11-06  3:20 UTC (permalink / raw)
  To: ml

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

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

https://github.com/reback00/void-packages textadept-resubmit-branch
https://github.com/void-linux/void-packages/pull/15627

New package: textadept-10.6
This is a resubmission of Textadept package. I [messed up](https://github.com/void-linux/void-packages/pull/15278#issuecomment-543545924) the old PR and it got closed automatically, so had to open a new one.

[Textadept](https://foicica.com/textadept/) is a very lightweight and fast text editor written in C. It is extensible with Lua. The project aims to keep the C code within 2000 lines but has standard functionalities of other text editors.
Hope it is useful.

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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-textadept-resubmit-branch-15627.patch --]
[-- Type: text/x-diff, Size: 3623 bytes --]

From 3f941bd8872a3104d2a3a6570ceae68964c04daf Mon Sep 17 00:00:00 2001
From: reback00 <reback00@protonmail.com>
Date: Sun, 20 Oct 2019 00:45:15 +0600
Subject: [PATCH] New package: textadept-10.6

---
 srcpkgs/textadept/template | 82 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 82 insertions(+)
 create mode 100644 srcpkgs/textadept/template

diff --git a/srcpkgs/textadept/template b/srcpkgs/textadept/template
new file mode 100644
index 00000000000..7cfc207dcca
--- /dev/null
+++ b/srcpkgs/textadept/template
@@ -0,0 +1,82 @@
+# Template file for 'textadept'
+pkgname=textadept
+version=10.6
+revision=1
+wrksrc="textadept-textadept_${version}"
+build_wrksrc="src"
+hostmakedepends="autoconf automake libtool wget unzip pkg-config glib-devel ncurses"
+makedepends="gtk+-devel ncurses-devel"
+short_desc="Fast, minimalist, and extensible text editor for programmers"
+maintainer="reback00 <reback00@protonmail.com>"
+license="MIT"
+homepage="https://foicica.com/textadept/"
+distfiles="https://github.com/rgieseke/textadept/archive/textadept_${version}.tar.gz
+ http://www.lua.org/ftp/lua-5.3.5.tar.gz
+ http://www.inf.puc-rio.br/~roberto/lpeg/lpeg-1.0.2.tar.gz
+ http://github.com/keplerproject/luafilesystem/archive/v1_7_0_2.zip
+ http://invisible-mirror.net/archives/cdk/cdk-5.0-20150928.tgz
+ http://www.leonerd.org.uk/code/libtermkey/libtermkey-0.20.tar.gz
+ http://www.inf.puc-rio.br/~roberto/lpeg/lpeg-1.0.2.tar.gz
+ http://www.leonerd.org.uk/code/libtermkey/libtermkey-0.20.tar.gz"
+checksum="2cb2aa8266c166ed4a3f534843aa75cec0dc1ced09c007aaef540e3a7999870b
+ 0c2eed3f960446e1a3e4b9a1ca2f3ff893b6ce41942cf54d5dd59ab4b3b058ac
+ 48d66576051b6c78388faad09b70493093264588fcd0f258ddaab1cdd4a15ffe
+ 9174ab891f1d392b42a587b2afb737f9565ecf8a860d2e5a2bff457858f58478
+ 028da75d5f777a1c4184f88e34918bd273bd83bbe3c959bc11710c4f0ea2e448
+ 6c0d87c94ab9915e76ecd313baec08dedf3bd56de83743d9aa923a081935d2f5
+ 48d66576051b6c78388faad09b70493093264588fcd0f258ddaab1cdd4a15ffe
+ 6c0d87c94ab9915e76ecd313baec08dedf3bd56de83743d9aa923a081935d2f5"
+skip_extraction="
+ lua-5.3.5.tar.gz
+ lpeg-1.0.2.tar.gz
+ v1_7_0_2.zip
+ cdk-5.0-20150928.tgz
+ libtermkey-0.20.tar.gz
+ lpeg-1.0.2.tar.gz
+ libtermkey-0.20.tar.gz
+"
+
+# Take cached dependency files so that they are not downloaded by build
+# script again. Adapted from "libreoffice" template.
+post_fetch() {
+	local srcdistdir=${XBPS_SRCDISTDIR}/${pkgname}-${version} pkg
+	mkdir -p ${wrksrc}/src
+	for pkg in ${skip_extraction}; do
+		if [ "${pkg%.dll}" == "${pkg}" ]; then
+			ln -svf ${srcdistdir}/${pkg} ${wrksrc}/src
+		fi
+	done
+}
+
+pre_configure() {
+	# For cross builds
+	vsed -i -e 's/CC = /CC ?= /' -e 's/CFLAGS = /CFLAGS ?= /' -e 's/CXX = /CXX ?= /' -e 's/CXXFLAGS = /CXXFLAGS ?= /' Makefile
+	make deps
+}
+
+do_build() {
+	make ${makejobs}
+	make ${makejobs} curses
+}
+
+do_install() {
+	make PREFIX=/usr DESTDIR="${DESTDIR}" install
+	make curses PREFIX=/usr DESTDIR="${DESTDIR}" install
+
+	# Binaries in /usr/share/textadept are not allowed
+	# So we relocate to /usr/lib/textadept
+	mkdir -p "${DESTDIR}/usr/lib/"
+	mv "${DESTDIR}/usr/share/textadept" "${DESTDIR}/usr/lib/textadept"
+	ln -sf "/usr/lib/textadept/textadept" "${DESTDIR}/usr/bin/textadept"
+	ln -sf "/usr/lib/textadept/textadept-curses" "${DESTDIR}/usr/bin/textadept-curses"
+
+	# For icons
+	mkdir -p "${DESTDIR}/usr/share/pixmaps"
+	ln -s "/usr/lib/textadept/core/images/textadept.svg" "${DESTDIR}/usr/share/pixmaps/textadept.svg"
+	ln -s "/usr/lib/textadept/core/images/ta_48x48.png" \
+		"${DESTDIR}/usr/share/pixmaps/textadept.png"
+
+	# For license
+	cd ..
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: textadept-10.6
  2019-10-19 18:53 [PR PATCH] New package: textadept-10.6 voidlinux-github
                   ` (2 preceding siblings ...)
  2019-11-04 11:41 ` voidlinux-github
@ 2019-11-04 12:41 ` voidlinux-github
  2019-11-06  3:20 ` voidlinux-github
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 40+ messages in thread
From: voidlinux-github @ 2019-11-04 12:41 UTC (permalink / raw)
  To: ml

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

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

https://github.com/reback00/void-packages textadept-resubmit-branch
https://github.com/void-linux/void-packages/pull/15627

New package: textadept-10.6
This is a resubmission of Textadept package. I [messed up](https://github.com/void-linux/void-packages/pull/15278#issuecomment-543545924) the old PR and it got closed automatically, so had to open a new one.

[Textadept](https://foicica.com/textadept/) is a very lightweight and fast text editor written in C. It is extensible with Lua. The project aims to keep the C code within 2000 lines but has standard functionalities of other text editors.
Hope it is useful.

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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-textadept-resubmit-branch-15627.patch --]
[-- Type: text/x-diff, Size: 3623 bytes --]

From 7ee69afb7ac8c8581ddb6e3a8519847087c1cfbc Mon Sep 17 00:00:00 2001
From: reback00 <reback00@protonmail.com>
Date: Sun, 20 Oct 2019 00:45:15 +0600
Subject: [PATCH] New package: textadept-10.6

---
 srcpkgs/textadept/template | 82 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 82 insertions(+)
 create mode 100644 srcpkgs/textadept/template

diff --git a/srcpkgs/textadept/template b/srcpkgs/textadept/template
new file mode 100644
index 00000000000..7cfc207dcca
--- /dev/null
+++ b/srcpkgs/textadept/template
@@ -0,0 +1,82 @@
+# Template file for 'textadept'
+pkgname=textadept
+version=10.6
+revision=1
+wrksrc="textadept-textadept_${version}"
+build_wrksrc="src"
+hostmakedepends="autoconf automake libtool wget unzip pkg-config glib-devel ncurses"
+makedepends="gtk+-devel ncurses-devel"
+short_desc="Fast, minimalist, and extensible text editor for programmers"
+maintainer="reback00 <reback00@protonmail.com>"
+license="MIT"
+homepage="https://foicica.com/textadept/"
+distfiles="https://github.com/rgieseke/textadept/archive/textadept_${version}.tar.gz
+ http://www.lua.org/ftp/lua-5.3.5.tar.gz
+ http://www.inf.puc-rio.br/~roberto/lpeg/lpeg-1.0.2.tar.gz
+ http://github.com/keplerproject/luafilesystem/archive/v1_7_0_2.zip
+ http://invisible-mirror.net/archives/cdk/cdk-5.0-20150928.tgz
+ http://www.leonerd.org.uk/code/libtermkey/libtermkey-0.20.tar.gz
+ http://www.inf.puc-rio.br/~roberto/lpeg/lpeg-1.0.2.tar.gz
+ http://www.leonerd.org.uk/code/libtermkey/libtermkey-0.20.tar.gz"
+checksum="2cb2aa8266c166ed4a3f534843aa75cec0dc1ced09c007aaef540e3a7999870b
+ 0c2eed3f960446e1a3e4b9a1ca2f3ff893b6ce41942cf54d5dd59ab4b3b058ac
+ 48d66576051b6c78388faad09b70493093264588fcd0f258ddaab1cdd4a15ffe
+ 9174ab891f1d392b42a587b2afb737f9565ecf8a860d2e5a2bff457858f58478
+ 028da75d5f777a1c4184f88e34918bd273bd83bbe3c959bc11710c4f0ea2e448
+ 6c0d87c94ab9915e76ecd313baec08dedf3bd56de83743d9aa923a081935d2f5
+ 48d66576051b6c78388faad09b70493093264588fcd0f258ddaab1cdd4a15ffe
+ 6c0d87c94ab9915e76ecd313baec08dedf3bd56de83743d9aa923a081935d2f5"
+skip_extraction="
+ lua-5.3.5.tar.gz
+ lpeg-1.0.2.tar.gz
+ v1_7_0_2.zip
+ cdk-5.0-20150928.tgz
+ libtermkey-0.20.tar.gz
+ lpeg-1.0.2.tar.gz
+ libtermkey-0.20.tar.gz
+"
+
+# Take cached dependency files so that they are not downloaded by build
+# script again. Adapted from "libreoffice" template.
+post_fetch() {
+	local srcdistdir=${XBPS_SRCDISTDIR}/${pkgname}-${version} pkg
+	mkdir -p ${wrksrc}/src
+	for pkg in ${skip_extraction}; do
+		if [ "${pkg%.dll}" == "${pkg}" ]; then
+			ln -svf ${srcdistdir}/${pkg} ${wrksrc}/src
+		fi
+	done
+}
+
+pre_configure() {
+	# For cross builds
+	vsed -i -e 's/CC = /CC ?= /' -e 's/CFLAGS = /CFLAGS ?= /' -e 's/CXX = /CXX ?= /' -e 's/CXXFLAGS = /CXXFLAGS ?= /' Makefile
+	make deps
+}
+
+do_build() {
+	make ${makejobs}
+	make ${makejobs} curses
+}
+
+do_install() {
+	make PREFIX=/usr DESTDIR="${DESTDIR}" install
+	make curses PREFIX=/usr DESTDIR="${DESTDIR}" install
+
+	# Binaries in /usr/share/textadept are not allowed
+	# So we relocate to /usr/lib/textadept
+	mkdir -p "${DESTDIR}/usr/lib/"
+	mv "${DESTDIR}/usr/share/textadept" "${DESTDIR}/usr/lib/textadept"
+	ln -sf "/usr/lib/textadept/textadept" "${DESTDIR}/usr/bin/textadept"
+	ln -sf "/usr/lib/textadept/textadept-curses" "${DESTDIR}/usr/bin/textadept-curses"
+
+	# For icons
+	mkdir -p "${DESTDIR}/usr/share/pixmaps"
+	ln -s "/usr/lib/textadept/core/images/textadept.svg" "${DESTDIR}/usr/share/pixmaps/textadept.svg"
+	ln -s "/usr/lib/textadept/core/images/ta_48x48.png" \
+		"${DESTDIR}/usr/share/pixmaps/textadept.png"
+
+	# For license
+	cd ..
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: textadept-10.6
  2019-10-19 18:53 [PR PATCH] New package: textadept-10.6 voidlinux-github
  2019-11-04  4:23 ` [PR PATCH] [Updated] " voidlinux-github
  2019-11-04  5:15 ` voidlinux-github
@ 2019-11-04 11:41 ` voidlinux-github
  2019-11-04 12:41 ` voidlinux-github
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 40+ messages in thread
From: voidlinux-github @ 2019-11-04 11:41 UTC (permalink / raw)
  To: ml

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

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

https://github.com/reback00/void-packages textadept-resubmit-branch
https://github.com/void-linux/void-packages/pull/15627

New package: textadept-10.6
This is a resubmission of Textadept package. I [messed up](https://github.com/void-linux/void-packages/pull/15278#issuecomment-543545924) the old PR and it got closed automatically, so had to open a new one.

[Textadept](https://foicica.com/textadept/) is a very lightweight and fast text editor written in C. It is extensible with Lua. The project aims to keep the C code within 2000 lines but has standard functionalities of other text editors.
Hope it is useful.

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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-textadept-resubmit-branch-15627.patch --]
[-- Type: text/x-diff, Size: 3623 bytes --]

From dba4bcbcea16052e674145e465370dcafaed423f Mon Sep 17 00:00:00 2001
From: reback00 <reback00@protonmail.com>
Date: Sun, 20 Oct 2019 00:45:15 +0600
Subject: [PATCH] New package: textadept-10.6

---
 srcpkgs/textadept/template | 82 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 82 insertions(+)
 create mode 100644 srcpkgs/textadept/template

diff --git a/srcpkgs/textadept/template b/srcpkgs/textadept/template
new file mode 100644
index 00000000000..7cfc207dcca
--- /dev/null
+++ b/srcpkgs/textadept/template
@@ -0,0 +1,82 @@
+# Template file for 'textadept'
+pkgname=textadept
+version=10.6
+revision=1
+wrksrc="textadept-textadept_${version}"
+build_wrksrc="src"
+hostmakedepends="autoconf automake libtool wget unzip pkg-config glib-devel ncurses"
+makedepends="gtk+-devel ncurses-devel"
+short_desc="Fast, minimalist, and extensible text editor for programmers"
+maintainer="reback00 <reback00@protonmail.com>"
+license="MIT"
+homepage="https://foicica.com/textadept/"
+distfiles="https://github.com/rgieseke/textadept/archive/textadept_${version}.tar.gz
+ http://www.lua.org/ftp/lua-5.3.5.tar.gz
+ http://www.inf.puc-rio.br/~roberto/lpeg/lpeg-1.0.2.tar.gz
+ http://github.com/keplerproject/luafilesystem/archive/v1_7_0_2.zip
+ http://invisible-mirror.net/archives/cdk/cdk-5.0-20150928.tgz
+ http://www.leonerd.org.uk/code/libtermkey/libtermkey-0.20.tar.gz
+ http://www.inf.puc-rio.br/~roberto/lpeg/lpeg-1.0.2.tar.gz
+ http://www.leonerd.org.uk/code/libtermkey/libtermkey-0.20.tar.gz"
+checksum="2cb2aa8266c166ed4a3f534843aa75cec0dc1ced09c007aaef540e3a7999870b
+ 0c2eed3f960446e1a3e4b9a1ca2f3ff893b6ce41942cf54d5dd59ab4b3b058ac
+ 48d66576051b6c78388faad09b70493093264588fcd0f258ddaab1cdd4a15ffe
+ 9174ab891f1d392b42a587b2afb737f9565ecf8a860d2e5a2bff457858f58478
+ 028da75d5f777a1c4184f88e34918bd273bd83bbe3c959bc11710c4f0ea2e448
+ 6c0d87c94ab9915e76ecd313baec08dedf3bd56de83743d9aa923a081935d2f5
+ 48d66576051b6c78388faad09b70493093264588fcd0f258ddaab1cdd4a15ffe
+ 6c0d87c94ab9915e76ecd313baec08dedf3bd56de83743d9aa923a081935d2f5"
+skip_extraction="
+ lua-5.3.5.tar.gz
+ lpeg-1.0.2.tar.gz
+ v1_7_0_2.zip
+ cdk-5.0-20150928.tgz
+ libtermkey-0.20.tar.gz
+ lpeg-1.0.2.tar.gz
+ libtermkey-0.20.tar.gz
+"
+
+# Take cached dependency files so that they are not downloaded by build
+# script again. Adapted from "libreoffice" template.
+post_fetch() {
+	local srcdistdir=${XBPS_SRCDISTDIR}/${pkgname}-${version} pkg
+	mkdir -p ${wrksrc}/src
+	for pkg in ${skip_extraction}; do
+		if [ "${pkg%.dll}" == "${pkg}" ]; then
+			ln -svf ${srcdistdir}/${pkg} ${wrksrc}/src
+		fi
+	done
+}
+
+pre_configure() {
+	# For cross builds
+	vsed -i -e 's/CC = /CC ?= /' -e 's/CFLAGS = /CFLAGS ?= /' -e 's/CXX = /CXX ?= /' -e 's/CXXFLAGS = /CXXFLAGS ?= /' Makefile
+	make deps
+}
+
+do_build() {
+	make ${makejobs}
+	make ${makejobs} curses
+}
+
+do_install() {
+	make PREFIX=/usr DESTDIR="${DESTDIR}" install
+	make curses PREFIX=/usr DESTDIR="${DESTDIR}" install
+
+	# Binaries in /usr/share/textadept are not allowed
+	# So we relocate to /usr/lib/textadept
+	mkdir -p "${DESTDIR}/usr/lib/"
+	mv "${DESTDIR}/usr/share/textadept" "${DESTDIR}/usr/lib/textadept"
+	ln -sf "/usr/lib/textadept/textadept" "${DESTDIR}/usr/bin/textadept"
+	ln -sf "/usr/lib/textadept/textadept-curses" "${DESTDIR}/usr/bin/textadept-curses"
+
+	# For icons
+	mkdir -p "${DESTDIR}/usr/share/pixmaps"
+	ln -s "/usr/lib/textadept/core/images/textadept.svg" "${DESTDIR}/usr/share/pixmaps/textadept.svg"
+	ln -s "/usr/lib/textadept/core/images/ta_48x48.png" \
+		"${DESTDIR}/usr/share/pixmaps/textadept.png"
+
+	# For license
+	cd ..
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: textadept-10.6
  2019-10-19 18:53 [PR PATCH] New package: textadept-10.6 voidlinux-github
  2019-11-04  4:23 ` [PR PATCH] [Updated] " voidlinux-github
@ 2019-11-04  5:15 ` voidlinux-github
  2019-11-04 11:41 ` voidlinux-github
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 40+ messages in thread
From: voidlinux-github @ 2019-11-04  5:15 UTC (permalink / raw)
  To: ml

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

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

https://github.com/reback00/void-packages textadept-resubmit-branch
https://github.com/void-linux/void-packages/pull/15627

New package: textadept-10.6
This is a resubmission of Textadept package. I [messed up](https://github.com/void-linux/void-packages/pull/15278#issuecomment-543545924) the old PR and it got closed automatically, so had to open a new one.

[Textadept](https://foicica.com/textadept/) is a very lightweight and fast text editor written in C. It is extensible with Lua. The project aims to keep the C code within 2000 lines but has standard functionalities of other text editors.
Hope it is useful.

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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-textadept-resubmit-branch-15627.patch --]
[-- Type: text/x-diff, Size: 3623 bytes --]

From 0bd58664c37c0ce0517f4e031d2924b3c46dca11 Mon Sep 17 00:00:00 2001
From: reback00 <reback00@protonmail.com>
Date: Sun, 20 Oct 2019 00:45:15 +0600
Subject: [PATCH] New package: textadept-10.6

---
 srcpkgs/textadept/template | 82 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 82 insertions(+)
 create mode 100644 srcpkgs/textadept/template

diff --git a/srcpkgs/textadept/template b/srcpkgs/textadept/template
new file mode 100644
index 00000000000..7cfc207dcca
--- /dev/null
+++ b/srcpkgs/textadept/template
@@ -0,0 +1,82 @@
+# Template file for 'textadept'
+pkgname=textadept
+version=10.6
+revision=1
+wrksrc="textadept-textadept_${version}"
+build_wrksrc="src"
+hostmakedepends="autoconf automake libtool wget unzip pkg-config glib-devel ncurses"
+makedepends="gtk+-devel ncurses-devel"
+short_desc="Fast, minimalist, and extensible text editor for programmers"
+maintainer="reback00 <reback00@protonmail.com>"
+license="MIT"
+homepage="https://foicica.com/textadept/"
+distfiles="https://github.com/rgieseke/textadept/archive/textadept_${version}.tar.gz
+ http://www.lua.org/ftp/lua-5.3.5.tar.gz
+ http://www.inf.puc-rio.br/~roberto/lpeg/lpeg-1.0.2.tar.gz
+ http://github.com/keplerproject/luafilesystem/archive/v1_7_0_2.zip
+ http://invisible-mirror.net/archives/cdk/cdk-5.0-20150928.tgz
+ http://www.leonerd.org.uk/code/libtermkey/libtermkey-0.20.tar.gz
+ http://www.inf.puc-rio.br/~roberto/lpeg/lpeg-1.0.2.tar.gz
+ http://www.leonerd.org.uk/code/libtermkey/libtermkey-0.20.tar.gz"
+checksum="2cb2aa8266c166ed4a3f534843aa75cec0dc1ced09c007aaef540e3a7999870b
+ 0c2eed3f960446e1a3e4b9a1ca2f3ff893b6ce41942cf54d5dd59ab4b3b058ac
+ 48d66576051b6c78388faad09b70493093264588fcd0f258ddaab1cdd4a15ffe
+ 9174ab891f1d392b42a587b2afb737f9565ecf8a860d2e5a2bff457858f58478
+ 028da75d5f777a1c4184f88e34918bd273bd83bbe3c959bc11710c4f0ea2e448
+ 6c0d87c94ab9915e76ecd313baec08dedf3bd56de83743d9aa923a081935d2f5
+ 48d66576051b6c78388faad09b70493093264588fcd0f258ddaab1cdd4a15ffe
+ 6c0d87c94ab9915e76ecd313baec08dedf3bd56de83743d9aa923a081935d2f5"
+skip_extraction="
+ lua-5.3.5.tar.gz
+ lpeg-1.0.2.tar.gz
+ v1_7_0_2.zip
+ cdk-5.0-20150928.tgz
+ libtermkey-0.20.tar.gz
+ lpeg-1.0.2.tar.gz
+ libtermkey-0.20.tar.gz
+"
+
+# Take cached dependency files so that they are not downloaded by build
+# script again. Adapted from "libreoffice" template.
+post_fetch() {
+	local srcdistdir=${XBPS_SRCDISTDIR}/${pkgname}-${version} pkg
+	mkdir -p ${wrksrc}/src
+	for pkg in ${skip_extraction}; do
+		if [ "${pkg%.dll}" == "${pkg}" ]; then
+			ln -svf ${srcdistdir}/${pkg} ${wrksrc}/src
+		fi
+	done
+}
+
+pre_configure() {
+	# For cross builds
+	vsed -i -e 's/CC = /CC ?= /' -e 's/CFLAGS = /CFLAGS ?= /' -e 's/CXX = /CXX ?= /' -e 's/CXXFLAGS = /CXXFLAGS ?= /' Makefile
+	make deps
+}
+
+do_build() {
+	make ${makejobs}
+	make ${makejobs} curses
+}
+
+do_install() {
+	make PREFIX=/usr DESTDIR="${DESTDIR}" install
+	make curses PREFIX=/usr DESTDIR="${DESTDIR}" install
+
+	# Binaries in /usr/share/textadept are not allowed
+	# So we relocate to /usr/lib/textadept
+	mkdir -p "${DESTDIR}/usr/lib/"
+	mv "${DESTDIR}/usr/share/textadept" "${DESTDIR}/usr/lib/textadept"
+	ln -sf "/usr/lib/textadept/textadept" "${DESTDIR}/usr/bin/textadept"
+	ln -sf "/usr/lib/textadept/textadept-curses" "${DESTDIR}/usr/bin/textadept-curses"
+
+	# For icons
+	mkdir -p "${DESTDIR}/usr/share/pixmaps"
+	ln -s "/usr/lib/textadept/core/images/textadept.svg" "${DESTDIR}/usr/share/pixmaps/textadept.svg"
+	ln -s "/usr/lib/textadept/core/images/ta_48x48.png" \
+		"${DESTDIR}/usr/share/pixmaps/textadept.png"
+
+	# For license
+	cd ..
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: textadept-10.6
  2019-10-19 18:53 [PR PATCH] New package: textadept-10.6 voidlinux-github
@ 2019-11-04  4:23 ` voidlinux-github
  2019-11-04  5:15 ` voidlinux-github
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 40+ messages in thread
From: voidlinux-github @ 2019-11-04  4:23 UTC (permalink / raw)
  To: ml

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

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

https://github.com/reback00/void-packages textadept-resubmit-branch
https://github.com/void-linux/void-packages/pull/15627

New package: textadept-10.6
This is a resubmission of Textadept package. I [messed up](https://github.com/void-linux/void-packages/pull/15278#issuecomment-543545924) the old PR and it got closed automatically, so had to open a new one.

[Textadept](https://foicica.com/textadept/) is a very lightweight and fast text editor written in C. It is extensible with Lua. The project aims to keep the C code within 2000 lines but has standard functionalities of other text editors.
Hope it is useful.

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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-textadept-resubmit-branch-15627.patch --]
[-- Type: text/x-diff, Size: 3623 bytes --]

From 8c7366e1b7b04cdc6f01ffaa71e6df45d34227a8 Mon Sep 17 00:00:00 2001
From: reback00 <reback00@protonmail.com>
Date: Sun, 20 Oct 2019 00:45:15 +0600
Subject: [PATCH] New package: textadept-10.6

---
 srcpkgs/textadept/template | 82 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 82 insertions(+)
 create mode 100644 srcpkgs/textadept/template

diff --git a/srcpkgs/textadept/template b/srcpkgs/textadept/template
new file mode 100644
index 00000000000..7cfc207dcca
--- /dev/null
+++ b/srcpkgs/textadept/template
@@ -0,0 +1,82 @@
+# Template file for 'textadept'
+pkgname=textadept
+version=10.6
+revision=1
+wrksrc="textadept-textadept_${version}"
+build_wrksrc="src"
+hostmakedepends="autoconf automake libtool wget unzip pkg-config glib-devel ncurses"
+makedepends="gtk+-devel ncurses-devel"
+short_desc="Fast, minimalist, and extensible text editor for programmers"
+maintainer="reback00 <reback00@protonmail.com>"
+license="MIT"
+homepage="https://foicica.com/textadept/"
+distfiles="https://github.com/rgieseke/textadept/archive/textadept_${version}.tar.gz
+ http://www.lua.org/ftp/lua-5.3.5.tar.gz
+ http://www.inf.puc-rio.br/~roberto/lpeg/lpeg-1.0.2.tar.gz
+ http://github.com/keplerproject/luafilesystem/archive/v1_7_0_2.zip
+ http://invisible-mirror.net/archives/cdk/cdk-5.0-20150928.tgz
+ http://www.leonerd.org.uk/code/libtermkey/libtermkey-0.20.tar.gz
+ http://www.inf.puc-rio.br/~roberto/lpeg/lpeg-1.0.2.tar.gz
+ http://www.leonerd.org.uk/code/libtermkey/libtermkey-0.20.tar.gz"
+checksum="2cb2aa8266c166ed4a3f534843aa75cec0dc1ced09c007aaef540e3a7999870b
+ 0c2eed3f960446e1a3e4b9a1ca2f3ff893b6ce41942cf54d5dd59ab4b3b058ac
+ 48d66576051b6c78388faad09b70493093264588fcd0f258ddaab1cdd4a15ffe
+ 9174ab891f1d392b42a587b2afb737f9565ecf8a860d2e5a2bff457858f58478
+ 028da75d5f777a1c4184f88e34918bd273bd83bbe3c959bc11710c4f0ea2e448
+ 6c0d87c94ab9915e76ecd313baec08dedf3bd56de83743d9aa923a081935d2f5
+ 48d66576051b6c78388faad09b70493093264588fcd0f258ddaab1cdd4a15ffe
+ 6c0d87c94ab9915e76ecd313baec08dedf3bd56de83743d9aa923a081935d2f5"
+skip_extraction="
+ lua-5.3.5.tar.gz
+ lpeg-1.0.2.tar.gz
+ v1_7_0_2.zip
+ cdk-5.0-20150928.tgz
+ libtermkey-0.20.tar.gz
+ lpeg-1.0.2.tar.gz
+ libtermkey-0.20.tar.gz
+"
+
+# Take cached dependency files so that they are not downloaded by build
+# script again. Adapted from "libreoffice" template.
+post_fetch() {
+	local srcdistdir=${XBPS_SRCDISTDIR}/${pkgname}-${version} pkg
+	mkdir -p ${wrksrc}/src
+	for pkg in ${skip_extraction}; do
+		if [ "${pkg%.dll}" == "${pkg}" ]; then
+			ln -svf ${srcdistdir}/${pkg} ${wrksrc}/src
+		fi
+	done
+}
+
+pre_configure() {
+	# For cross builds
+	vsed -i -e 's/CC = /CC ?= /' -e 's/CFLAGS = /CFLAGS ?= /' -e 's/CXX = /CXX ?= /' -e 's/CXXFLAGS = /CXXFLAGS ?= /' Makefile
+	make deps
+}
+
+do_build() {
+	make ${makejobs}
+	make ${makejobs} curses
+}
+
+do_install() {
+	make PREFIX=/usr DESTDIR="${DESTDIR}" install
+	make curses PREFIX=/usr DESTDIR="${DESTDIR}" install
+
+	# Binaries in /usr/share/textadept are not allowed
+	# So we relocate to /usr/lib/textadept
+	mkdir -p "${DESTDIR}/usr/lib/"
+	mv "${DESTDIR}/usr/share/textadept" "${DESTDIR}/usr/lib/textadept"
+	ln -sf "/usr/lib/textadept/textadept" "${DESTDIR}/usr/bin/textadept"
+	ln -sf "/usr/lib/textadept/textadept-curses" "${DESTDIR}/usr/bin/textadept-curses"
+
+	# For icons
+	mkdir -p "${DESTDIR}/usr/share/pixmaps"
+	ln -s "/usr/lib/textadept/core/images/textadept.svg" "${DESTDIR}/usr/share/pixmaps/textadept.svg"
+	ln -s "/usr/lib/textadept/core/images/ta_48x48.png" \
+		"${DESTDIR}/usr/share/pixmaps/textadept.png"
+
+	# For license
+	cd ..
+	vlicense LICENSE
+}

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

end of thread, other threads:[~2020-07-17  8:23 UTC | newest]

Thread overview: 40+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-09 17:48 [PR PATCH] New package: textadept-10.6 voidlinux-github
2019-10-12 15:45 ` voidlinux-github
2019-10-13  6:08 ` voidlinux-github
2019-10-13  6:08 ` voidlinux-github
2019-10-13 11:57 ` voidlinux-github
2019-10-13 17:05 ` [PR PATCH] [Updated] " voidlinux-github
2019-10-13 17:05 ` voidlinux-github
2019-10-13 17:17 ` voidlinux-github
2019-10-13 17:17 ` voidlinux-github
2019-10-13 17:22 ` voidlinux-github
2019-10-15  8:08 ` [PR PATCH] [Updated] " voidlinux-github
2019-10-15  8:08 ` voidlinux-github
2019-10-15  8:37 ` voidlinux-github
2019-10-15  8:37 ` voidlinux-github
2019-10-15  8:39 ` voidlinux-github
2019-10-15  8:39 ` voidlinux-github
2019-10-17 17:43 ` voidlinux-github
2019-10-17 17:43 ` voidlinux-github
2019-10-17 18:04 ` voidlinux-github
2019-10-17 18:04 ` voidlinux-github
2019-10-17 18:18 ` voidlinux-github
2019-10-17 18:18 ` voidlinux-github
2019-10-17 18:55 ` voidlinux-github
2019-10-17 18:55 ` voidlinux-github
2019-10-18  6:34 ` [PR PATCH] [Closed]: " voidlinux-github
2019-10-18  6:42 ` voidlinux-github
2019-10-18  6:44 ` voidlinux-github
2019-10-18 16:36 ` voidlinux-github
2019-10-19 16:33 ` voidlinux-github
2019-10-19 16:33 ` voidlinux-github
2019-10-19 16:41 ` voidlinux-github
2019-10-19 17:15 ` voidlinux-github
2019-10-19 19:01 ` New package: textadept-10.6 [Deprecated] voidlinux-github
2019-10-19 18:53 [PR PATCH] New package: textadept-10.6 voidlinux-github
2019-11-04  4:23 ` [PR PATCH] [Updated] " voidlinux-github
2019-11-04  5:15 ` voidlinux-github
2019-11-04 11:41 ` voidlinux-github
2019-11-04 12:41 ` voidlinux-github
2019-11-06  3:20 ` voidlinux-github
2020-07-17  8:17 ` reback00
2020-07-17  8:23 ` reback00

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