Github messages for voidlinux
 help / color / mirror / Atom feed
From: Mellowchan <Mellowchan@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: Re: [PR PATCH] [Updated] Added package athena-jot
Date: Fri, 25 Feb 2022 19:24:09 +0100	[thread overview]
Message-ID: <20220225182409.KvTABrzOuVO2Xsb7EyniVLZNNBu5P5hrjtCyz8x2jk0@z> (raw)
In-Reply-To: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-35844@inbox.vuxu.org>

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

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

https://github.com/Mellowchan/void-packages master
https://github.com/void-linux/void-packages/pull/35844

Added package athena-jot
#### Testing the changes
- I tested the changes in this PR: YES

#### Local build testing
- I built this PR locally for my native architecture, (x86_64)


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

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

From 75fd655ee0be5831015eab0dc5e34b4dccb775ff Mon Sep 17 00:00:00 2001
From: Mellowlink <mail@malisek.org>
Date: Fri, 25 Feb 2022 17:58:28 +0100
Subject: [PATCH 1/9] New package: athena-jot-9.0

---
 srcpkgs/athena-jot/template | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)
 create mode 100644 srcpkgs/athena-jot/template

diff --git a/srcpkgs/athena-jot/template b/srcpkgs/athena-jot/template
new file mode 100644
index 000000000000..7373b84b3d94
--- /dev/null
+++ b/srcpkgs/athena-jot/template
@@ -0,0 +1,19 @@
+# Template file for 'jot'
+pkgname=athena-jot
+version=9.0
+revision=1
+short_desc="BSD sequencing tool"
+maintainer="Mellowlink <mail@malisek.org>"
+license="BSD-4-clause"
+homepage="https://packages.debian.org/source/stable/athena-jot"
+distfiles="http://deb.debian.org/debian/pool/main/a/athena-jot/athena-jot_${version}.orig.tar.gz"
+checksum=22ca01f5856d3792aed8fb3ca7d742901d9c43bf4e928dfffd6e7b81abba71fb
+
+do_build() {
+	sh configure
+	make
+}
+
+do_install() {
+	make PREFIX=/usr DESTDIR=$DESTDIR install
+}

From 3d1f18898d0c678f2f2831876d19002d9a6e8449 Mon Sep 17 00:00:00 2001
From: Mellowlink <mail@malisek.org>
Date: Fri, 25 Feb 2022 18:00:25 +0100
Subject: [PATCH 2/9] athena-jot: update to 9.0.

---
 srcpkgs/athena-jot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/athena-jot/template b/srcpkgs/athena-jot/template
index 7373b84b3d94..2035d6e74903 100644
--- a/srcpkgs/athena-jot/template
+++ b/srcpkgs/athena-jot/template
@@ -15,5 +15,5 @@ do_build() {
 }
 
 do_install() {
-	make PREFIX=/usr DESTDIR=$DESTDIR install
+	make install
 }

From b8220b7625a05ff7b6f58b848451ac3e3875552d Mon Sep 17 00:00:00 2001
From: Mellowlink <mail@malisek.org>
Date: Fri, 25 Feb 2022 18:11:10 +0100
Subject: [PATCH 3/9] athena-jot: update to 9.0.

---
 srcpkgs/athena-jot/template | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/srcpkgs/athena-jot/template b/srcpkgs/athena-jot/template
index 2035d6e74903..655cd66db549 100644
--- a/srcpkgs/athena-jot/template
+++ b/srcpkgs/athena-jot/template
@@ -10,7 +10,8 @@ distfiles="http://deb.debian.org/debian/pool/main/a/athena-jot/athena-jot_${vers
 checksum=22ca01f5856d3792aed8fb3ca7d742901d9c43bf4e928dfffd6e7b81abba71fb
 
 do_build() {
-	sh configure
+	./configure
+	sed -i 's/prefix=\/usr\/local/prefix=\/usr/' Makefile
 	make
 }
 

From b7fdd21df6fa638d429ec42388cd23636898d31d Mon Sep 17 00:00:00 2001
From: Mellowlink <mail@malisek.org>
Date: Fri, 25 Feb 2022 18:19:52 +0100
Subject: [PATCH 4/9] athena-jot: update to 9.0.

---
 srcpkgs/athena-jot/template | 20 +++++++++++---------
 1 file changed, 11 insertions(+), 9 deletions(-)

diff --git a/srcpkgs/athena-jot/template b/srcpkgs/athena-jot/template
index 655cd66db549..14e8ebb72ad6 100644
--- a/srcpkgs/athena-jot/template
+++ b/srcpkgs/athena-jot/template
@@ -2,6 +2,8 @@
 pkgname=athena-jot
 version=9.0
 revision=1
+build_style=configure
+configure_args="--prefix=/usr"
 short_desc="BSD sequencing tool"
 maintainer="Mellowlink <mail@malisek.org>"
 license="BSD-4-clause"
@@ -9,12 +11,12 @@ homepage="https://packages.debian.org/source/stable/athena-jot"
 distfiles="http://deb.debian.org/debian/pool/main/a/athena-jot/athena-jot_${version}.orig.tar.gz"
 checksum=22ca01f5856d3792aed8fb3ca7d742901d9c43bf4e928dfffd6e7b81abba71fb
 
-do_build() {
-	./configure
-	sed -i 's/prefix=\/usr\/local/prefix=\/usr/' Makefile
-	make
-}
-
-do_install() {
-	make install
-}
+#do_build() {
+#	#./configure
+#	#sed -i 's/prefix=\/usr\/local/prefix=\/usr/' Makefile
+#	make
+#}
+#
+#do_install() {
+#	make install
+#}

From 1fb3ed3697d154a766179a97a6d107b19a56c8b2 Mon Sep 17 00:00:00 2001
From: Mellowlink <mail@malisek.org>
Date: Fri, 25 Feb 2022 18:21:15 +0100
Subject: [PATCH 5/9] athena-jot: update to 9.0.

---
 srcpkgs/athena-jot/template | 10 ----------
 1 file changed, 10 deletions(-)

diff --git a/srcpkgs/athena-jot/template b/srcpkgs/athena-jot/template
index 14e8ebb72ad6..76730b6893c5 100644
--- a/srcpkgs/athena-jot/template
+++ b/srcpkgs/athena-jot/template
@@ -10,13 +10,3 @@ license="BSD-4-clause"
 homepage="https://packages.debian.org/source/stable/athena-jot"
 distfiles="http://deb.debian.org/debian/pool/main/a/athena-jot/athena-jot_${version}.orig.tar.gz"
 checksum=22ca01f5856d3792aed8fb3ca7d742901d9c43bf4e928dfffd6e7b81abba71fb
-
-#do_build() {
-#	#./configure
-#	#sed -i 's/prefix=\/usr\/local/prefix=\/usr/' Makefile
-#	make
-#}
-#
-#do_install() {
-#	make install
-#}

From b9ffdd94f067f6e1fe319a2d3fba57ad534af1cc Mon Sep 17 00:00:00 2001
From: Mellowlink <mail@malisek.org>
Date: Fri, 25 Feb 2022 18:23:13 +0100
Subject: [PATCH 6/9] athena-jot: update to 9.0.

---
 srcpkgs/athena-jot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/athena-jot/template b/srcpkgs/athena-jot/template
index 76730b6893c5..7f867c31a052 100644
--- a/srcpkgs/athena-jot/template
+++ b/srcpkgs/athena-jot/template
@@ -3,7 +3,7 @@ pkgname=athena-jot
 version=9.0
 revision=1
 build_style=configure
-configure_args="--prefix=/usr"
+configure_args=--prefix=/usr
 short_desc="BSD sequencing tool"
 maintainer="Mellowlink <mail@malisek.org>"
 license="BSD-4-clause"

From e0cece0b249db6cb3f94bc372e25e48f55649f1a Mon Sep 17 00:00:00 2001
From: Mellowlink <mail@malisek.org>
Date: Fri, 25 Feb 2022 18:32:37 +0100
Subject: [PATCH 7/9] athena-jot: update to 9.0.

---
 srcpkgs/athena-jot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/athena-jot/template b/srcpkgs/athena-jot/template
index 7f867c31a052..76730b6893c5 100644
--- a/srcpkgs/athena-jot/template
+++ b/srcpkgs/athena-jot/template
@@ -3,7 +3,7 @@ pkgname=athena-jot
 version=9.0
 revision=1
 build_style=configure
-configure_args=--prefix=/usr
+configure_args="--prefix=/usr"
 short_desc="BSD sequencing tool"
 maintainer="Mellowlink <mail@malisek.org>"
 license="BSD-4-clause"

From 48f59da5682bf7597b608079680aecec8712fc4d Mon Sep 17 00:00:00 2001
From: Mellowlink <mail@malisek.org>
Date: Fri, 25 Feb 2022 18:45:52 +0100
Subject: [PATCH 8/9] athena-jot: update to 9.0.

---
 srcpkgs/athena-jot/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/athena-jot/template b/srcpkgs/athena-jot/template
index 76730b6893c5..719e1c0d46f3 100644
--- a/srcpkgs/athena-jot/template
+++ b/srcpkgs/athena-jot/template
@@ -3,7 +3,7 @@ pkgname=athena-jot
 version=9.0
 revision=1
 build_style=configure
-configure_args="--prefix=/usr"
+configure_args="--prefix=/usr --mandir=/usr/share/man"
 short_desc="BSD sequencing tool"
 maintainer="Mellowlink <mail@malisek.org>"
 license="BSD-4-clause"

From 58b87277174255ecd7851dd184bd88349594e35f Mon Sep 17 00:00:00 2001
From: Mellowlink <mail@malisek.org>
Date: Fri, 25 Feb 2022 19:23:25 +0100
Subject: [PATCH 9/9] athena-jot: update to 9.0.

---
 srcpkgs/athena-jot/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/athena-jot/template b/srcpkgs/athena-jot/template
index 719e1c0d46f3..f2e99f5ab8b0 100644
--- a/srcpkgs/athena-jot/template
+++ b/srcpkgs/athena-jot/template
@@ -1,4 +1,4 @@
-# Template file for 'jot'
+# Template file for 'athena-jot'
 pkgname=athena-jot
 version=9.0
 revision=1
@@ -6,7 +6,7 @@ build_style=configure
 configure_args="--prefix=/usr --mandir=/usr/share/man"
 short_desc="BSD sequencing tool"
 maintainer="Mellowlink <mail@malisek.org>"
-license="BSD-4-clause"
+license="BSD-4-Clause"
 homepage="https://packages.debian.org/source/stable/athena-jot"
 distfiles="http://deb.debian.org/debian/pool/main/a/athena-jot/athena-jot_${version}.orig.tar.gz"
 checksum=22ca01f5856d3792aed8fb3ca7d742901d9c43bf4e928dfffd6e7b81abba71fb

  parent reply	other threads:[~2022-02-25 18:24 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-02-25 18:08 [PR PATCH] " Mellowchan
2022-02-25 18:17 ` classabbyamp
2022-02-25 18:24 ` Mellowchan [this message]
2022-02-25 18:34 ` Mellowchan
2022-02-25 18:35 ` [PR PATCH] [Closed]: " Mellowchan

Reply instructions:

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

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

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

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

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

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

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).