[gentoo-commits] repo/gentoo:master commit in: dev-lisp/roswell/

2024-05-01 Thread Sam James
commit: 2343f3907d70a08674be77218f76ede6cb91f7ff
Author: Eli Schwartz  gmail  com>
AuthorDate: Thu May  2 04:21:39 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Thu May  2 04:31:31 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2343f390

dev-lisp/roswell: mark as LTO-unsafe

Listen, I definitely know it's LTO-unsafe.

I can't actually get it to compile, but either way, it's definitely
LTO-unsafe...

The next compilation error is:

```
/usr/lib/gcc/x86_64-pc-linux-gnu/13/../../../../x86_64-pc-linux-gnu/bin/ld: 
warning: resources.o: missing .note.GNU-stack section implies executable stack
/usr/lib/gcc/x86_64-pc-linux-gnu/13/../../../../x86_64-pc-linux-gnu/bin/ld: 
NOTE: This behaviour is deprecated and will be removed in a future version of 
the linker
resources.o:(.rsrc$01+0x80): dangerous relocation: R_AMD64_IMAGEBASE with 
__ImageBase undefined
resources.o:(.rsrc$01+0x90): dangerous relocation: R_AMD64_IMAGEBASE with 
__ImageBase undefined
collect2: error: ld returned 1 exit status
make[2]: *** [Makefile:436: ros] Error 1
```

As you can tell from the linker error, it appears to be lisp code... if
anyone can figure out why it happens you're welcome to it but I am not
spending more time on lisp so this is me backing away now that the LTO
bug can be closed. So long!

Closes: https://bugs.gentoo.org/856106
Signed-off-by: Eli Schwartz  gmail.com>
Signed-off-by: Sam James  gentoo.org>

 dev-lisp/roswell/roswell-20.05.14.106.ebuild | 13 +++--
 dev-lisp/roswell/roswell-21.10.14.111.ebuild | 13 +++--
 dev-lisp/roswell/roswell-22.12.14.113.ebuild | 11 ++-
 3 files changed, 32 insertions(+), 5 deletions(-)

diff --git a/dev-lisp/roswell/roswell-20.05.14.106.ebuild 
b/dev-lisp/roswell/roswell-20.05.14.106.ebuild
index 76c9e1152f1d..e7f55bcbac23 100644
--- a/dev-lisp/roswell/roswell-20.05.14.106.ebuild
+++ b/dev-lisp/roswell/roswell-20.05.14.106.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
-inherit autotools
+inherit autotools flag-o-matic
 
 DESCRIPTION="A lisp installer and launcher for major environment"
 HOMEPAGE="https://github.com/roswell/roswell;
@@ -20,3 +20,12 @@ src_prepare() {
default
eautoreconf
 }
+
+src_configure() {
+   # -Werror=lto-type-mismatch
+   # https://bugs.gentoo.org/856106
+   # https://github.com/roswell/roswell/issues/584
+   filter-lto
+
+   default
+}

diff --git a/dev-lisp/roswell/roswell-21.10.14.111.ebuild 
b/dev-lisp/roswell/roswell-21.10.14.111.ebuild
index 8dc066c33326..de8998f15f2a 100644
--- a/dev-lisp/roswell/roswell-21.10.14.111.ebuild
+++ b/dev-lisp/roswell/roswell-21.10.14.111.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
-inherit autotools
+inherit autotools flag-o-matic
 
 DESCRIPTION="A lisp installer and launcher for major environment"
 HOMEPAGE="https://github.com/roswell/roswell;
@@ -23,3 +23,12 @@ src_prepare() {
default
eautoreconf
 }
+
+src_configure() {
+   # -Werror=lto-type-mismatch
+   # https://bugs.gentoo.org/856106
+   # https://github.com/roswell/roswell/issues/584
+   filter-lto
+
+   default
+}

diff --git a/dev-lisp/roswell/roswell-22.12.14.113.ebuild 
b/dev-lisp/roswell/roswell-22.12.14.113.ebuild
index e287f778cad6..de8998f15f2a 100644
--- a/dev-lisp/roswell/roswell-22.12.14.113.ebuild
+++ b/dev-lisp/roswell/roswell-22.12.14.113.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-inherit autotools
+inherit autotools flag-o-matic
 
 DESCRIPTION="A lisp installer and launcher for major environment"
 HOMEPAGE="https://github.com/roswell/roswell;
@@ -23,3 +23,12 @@ src_prepare() {
default
eautoreconf
 }
+
+src_configure() {
+   # -Werror=lto-type-mismatch
+   # https://bugs.gentoo.org/856106
+   # https://github.com/roswell/roswell/issues/584
+   filter-lto
+
+   default
+}



[gentoo-commits] repo/gentoo:master commit in: dev-lisp/roswell/

2024-04-20 Thread Joonas Niilola
commit: 797f369db04d2f894cf59b21034ad8bb4cb36874
Author: YUE Daian  gmail  com>
AuthorDate: Thu Feb 22 07:29:41 2024 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sat Apr 20 07:02:11 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=797f369d

dev-lisp/roswell: add 22.12.14.113

Signed-off-by: YUE Daian  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/35485
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-lisp/roswell/Manifest|  3 ++-
 dev-lisp/roswell/roswell-22.12.14.113.ebuild | 25 +
 2 files changed, 27 insertions(+), 1 deletion(-)

diff --git a/dev-lisp/roswell/Manifest b/dev-lisp/roswell/Manifest
index 8731e41fcf97..c903d88e30f5 100644
--- a/dev-lisp/roswell/Manifest
+++ b/dev-lisp/roswell/Manifest
@@ -1,2 +1,3 @@
 DIST roswell-20.05.14.106.tar.gz 164302 BLAKE2B 
bd2387bea78a746d5cfedc27e9d636ef7bc0f5118036ae2270c49a4361268527fafe2683850a2dcaeb1bf3f14db6a24fecd98f395081fdc1b4db620838d2936f
 SHA512 
03a923accc4d6ac9a3a3e0fd1853441bf4be0268571e8b6c122170befad6b1dcda6f062a566b54229bb325efb6a5d39459ce22a89355e927e3fea1e08cee
-DIST roswell-21.10.14.111.tar.gz 172464 BLAKE2B 
816f2fbbf99be21f7416456fb724faf5e290090ad2130bdd6feb03573cb059bf21bd5419cbf5928c84d2a977c123b31597df6676f65a11ded0121acc37c589aa
 SHA512 
d6979974807385e1e7be993610b5ed6ef5297ded21727162b6bc3240d402168cfe32b6b243f535c69b91620d0af4a3b7e046080be2881610ffbe0d3babfa3b23
\ No newline at end of file
+DIST roswell-21.10.14.111.tar.gz 172464 BLAKE2B 
816f2fbbf99be21f7416456fb724faf5e290090ad2130bdd6feb03573cb059bf21bd5419cbf5928c84d2a977c123b31597df6676f65a11ded0121acc37c589aa
 SHA512 
d6979974807385e1e7be993610b5ed6ef5297ded21727162b6bc3240d402168cfe32b6b243f535c69b91620d0af4a3b7e046080be2881610ffbe0d3babfa3b23
+DIST roswell-22.12.14.113.tar.gz 170253 BLAKE2B 
ddb59d1778b0d0becfc8914edec850203aea979357ac8f33988053afaaa21c8302800af0b44a3e00e694b5deedf1c5d3306f47f8bce5d5f5b4aa5f8c8961e173
 SHA512 
f102297af67b5d5414f853fc428f39347cb09a604bff95ad50c7f5249582a053e00fa3bb59a52846e3afc8244b8de1a7ee4667847b829f7d176121c496fd038f

diff --git a/dev-lisp/roswell/roswell-22.12.14.113.ebuild 
b/dev-lisp/roswell/roswell-22.12.14.113.ebuild
new file mode 100644
index ..e287f778cad6
--- /dev/null
+++ b/dev-lisp/roswell/roswell-22.12.14.113.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+DESCRIPTION="A lisp installer and launcher for major environment"
+HOMEPAGE="https://github.com/roswell/roswell;
+SRC_URI="https://github.com/roswell/roswell/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+SLOT="0"
+LICENSE="MIT"
+
+KEYWORDS="~amd64 ~x86"
+
+# File collision with librouteros (#691754)
+RDEPEND="!net-libs/librouteros
+   net-misc/curl"
+DEPEND="${RDEPEND}"
+
+src_prepare() {
+   default
+   eautoreconf
+}



[gentoo-commits] repo/gentoo:master commit in: dev-lisp/roswell/

2021-10-31 Thread Joonas Niilola
commit: e938defbb916907f4f5cd77e60a06e0d8e3fb625
Author: YUE Daian  gmail  com>
AuthorDate: Sun Oct 17 02:21:17 2021 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sun Oct 31 06:51:04 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e938defb

dev-lisp/roswell: Bump to version 21.10.14.111

Signed-off-by: YUE Daian  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/22610
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-lisp/roswell/Manifest|  1 +
 dev-lisp/roswell/roswell-21.10.14.111.ebuild | 23 +++
 2 files changed, 24 insertions(+)

diff --git a/dev-lisp/roswell/Manifest b/dev-lisp/roswell/Manifest
index cb3bb0effe0..8731e41fcf9 100644
--- a/dev-lisp/roswell/Manifest
+++ b/dev-lisp/roswell/Manifest
@@ -1 +1,2 @@
 DIST roswell-20.05.14.106.tar.gz 164302 BLAKE2B 
bd2387bea78a746d5cfedc27e9d636ef7bc0f5118036ae2270c49a4361268527fafe2683850a2dcaeb1bf3f14db6a24fecd98f395081fdc1b4db620838d2936f
 SHA512 
03a923accc4d6ac9a3a3e0fd1853441bf4be0268571e8b6c122170befad6b1dcda6f062a566b54229bb325efb6a5d39459ce22a89355e927e3fea1e08cee
+DIST roswell-21.10.14.111.tar.gz 172464 BLAKE2B 
816f2fbbf99be21f7416456fb724faf5e290090ad2130bdd6feb03573cb059bf21bd5419cbf5928c84d2a977c123b31597df6676f65a11ded0121acc37c589aa
 SHA512 
d6979974807385e1e7be993610b5ed6ef5297ded21727162b6bc3240d402168cfe32b6b243f535c69b91620d0af4a3b7e046080be2881610ffbe0d3babfa3b23
\ No newline at end of file

diff --git a/dev-lisp/roswell/roswell-21.10.14.111.ebuild 
b/dev-lisp/roswell/roswell-21.10.14.111.ebuild
new file mode 100644
index 000..26c7a2e2605
--- /dev/null
+++ b/dev-lisp/roswell/roswell-21.10.14.111.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools
+
+DESCRIPTION="A lisp installer and launcher for major environment"
+HOMEPAGE="https://github.com/roswell/roswell;
+SRC_URI="https://github.com/roswell/roswell/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+SLOT="0"
+LICENSE="MIT"
+
+KEYWORDS="~amd64 ~x86"
+
+# File collision with librouteros (#691754)
+RDEPEND="!net-libs/librouteros"
+
+src_prepare() {
+   default
+   eautoreconf
+}



[gentoo-commits] repo/gentoo:master commit in: dev-lisp/roswell/

2021-10-31 Thread Joonas Niilola
commit: d7c8bc76969d5c702d237b0302c5e2fe62a4baf0
Author: Joonas Niilola  gentoo  org>
AuthorDate: Sun Oct 31 06:51:44 2021 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sun Oct 31 06:51:44 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7c8bc76

dev-lisp/roswell: update EAPI 7 -> 8, adjust deps for 21.10.14.111

Signed-off-by: Joonas Niilola  gentoo.org>

 dev-lisp/roswell/roswell-21.10.14.111.ebuild | 8 +---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/dev-lisp/roswell/roswell-21.10.14.111.ebuild 
b/dev-lisp/roswell/roswell-21.10.14.111.ebuild
index 26c7a2e2605..8dc066c3332 100644
--- a/dev-lisp/roswell/roswell-21.10.14.111.ebuild
+++ b/dev-lisp/roswell/roswell-21.10.14.111.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 inherit autotools
 
@@ -15,7 +15,9 @@ LICENSE="MIT"
 KEYWORDS="~amd64 ~x86"
 
 # File collision with librouteros (#691754)
-RDEPEND="!net-libs/librouteros"
+RDEPEND="!net-libs/librouteros
+   net-misc/curl"
+DEPEND="${RDEPEND}"
 
 src_prepare() {
default



[gentoo-commits] repo/gentoo:master commit in: dev-lisp/roswell/

2020-08-15 Thread Joonas Niilola
commit: 2baf1823a74eadc9ebcfd8af6d7ad799d259aea9
Author: YUE Daian  gmail  com>
AuthorDate: Mon Aug  3 05:25:27 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sat Aug 15 09:29:45 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2baf1823

dev-lisp/roswell: purge outdated versions

Signed-off-by: YUE Daian  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/16968
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-lisp/roswell/Manifest|  3 ---
 dev-lisp/roswell/roswell-19.08.10.101.ebuild | 22 --
 dev-lisp/roswell/roswell-19.09.12.102.ebuild | 22 --
 dev-lisp/roswell/roswell-19.12.13.103.ebuild | 23 ---
 4 files changed, 70 deletions(-)

diff --git a/dev-lisp/roswell/Manifest b/dev-lisp/roswell/Manifest
index 2f2ce27fb6b..7fd282c39d5 100644
--- a/dev-lisp/roswell/Manifest
+++ b/dev-lisp/roswell/Manifest
@@ -1,6 +1,3 @@
-DIST roswell-19.08.10.101.tar.gz 163259 BLAKE2B 
80080a7d2665fd674281ae8af7ac735e8ebfa142cb2beac93e9536ab0251d654ce6f18e329b06bb1e8bb3a233ab15b42c35e544b4d2b9c87229d9290403cec31
 SHA512 
6a7dde53ba5f0793e3f5dac780265e1a88d35a0d4a2388fec6ecafde0904a36db222a3cfe867ae5bd90f38f08a5da09941182e72f81184bfd7f084d927e63ce3
-DIST roswell-19.09.12.102.tar.gz 164475 BLAKE2B 
432a9aae8a2f2caa4b7c996829daff1e6a8807cccf936bf7d9aefc69e8842b73b355aede1213ed8ad3e2f3ed093fbb33f0d4f48c991ad4ae5dc3f919d5ea7c38
 SHA512 
04f6db828c81b7e6310c612e4a3fcd0d0abe6e9dbac794f78f9830902c8b8ad02bda7ff313edfebfd31fa299b2553f258dc82307ccdaf025b9eef2a13e93de54
-DIST roswell-19.12.13.103.tar.gz 165717 BLAKE2B 
9d38deab38154146ebba80ce4efdcc99c2d4ced312cad5a04ba44bc1bf5f10cb3c83bbbccdbdb842f0ef92e7d20b7073973d4f7f3438e732987cfcff8ec4386a
 SHA512 
3f7180843e81108ff026df6ead5541325dc622027483c2a33069020bdc90916c263a73ec40ead5ab0af2566967aa2a4cb8db2ece962465e7b0a41e4a6809335a
 DIST roswell-20.01.14.104.tar.gz 164384 BLAKE2B 
905bb54081da137c588b911f1aa6ef4957e9d860c9d42b72bcda37b084d4049c4234a757514170e2a857de40c4970d70e53e98d72bbeb037e5c35930fbd9286b
 SHA512 
8eac3ada8afb9f2ee82004e46fcee72e45cfd2ed4e86dea8892ff6fa0bb5339bca7e3d1d4a7e2930d6848ef1bf1ef4b63aa576382bee1e66e98cf50441c81c7e
 DIST roswell-20.04.14.105.tar.gz 165121 BLAKE2B 
f7f0e651768aa2a0d8ccd648b511eaae8d9c18e64941b0ce1a155017e53bd5b6552b129afa35ca1132765d1f03ed91c26d9d83f52799704857f1c3f1475f581d
 SHA512 
3e63b206253c0922877beb0c5091fc42052cb6a711b47333c3d6553cd22eb509f6fb09a0e073465bfb45225b46aa4041d760df17c8e781d3b815c583e9578c3e
 DIST roswell-20.05.14.106.tar.gz 164302 BLAKE2B 
bd2387bea78a746d5cfedc27e9d636ef7bc0f5118036ae2270c49a4361268527fafe2683850a2dcaeb1bf3f14db6a24fecd98f395081fdc1b4db620838d2936f
 SHA512 
03a923accc4d6ac9a3a3e0fd1853441bf4be0268571e8b6c122170befad6b1dcda6f062a566b54229bb325efb6a5d39459ce22a89355e927e3fea1e08cee

diff --git a/dev-lisp/roswell/roswell-19.08.10.101.ebuild 
b/dev-lisp/roswell/roswell-19.08.10.101.ebuild
deleted file mode 100644
index 11cdfe7deea..000
--- a/dev-lisp/roswell/roswell-19.08.10.101.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools
-
-DESCRIPTION="A lisp installer and launcher for major environment"
-HOMEPAGE="https://github.com/roswell/roswell;
-SRC_URI="https://github.com/roswell/roswell/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-SLOT="0"
-LICENSE="MIT"
-
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="!net-libs/librouteros"
-
-src_prepare() {
-   default
-   eautoreconf
-}

diff --git a/dev-lisp/roswell/roswell-19.09.12.102.ebuild 
b/dev-lisp/roswell/roswell-19.09.12.102.ebuild
deleted file mode 100644
index 11cdfe7deea..000
--- a/dev-lisp/roswell/roswell-19.09.12.102.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools
-
-DESCRIPTION="A lisp installer and launcher for major environment"
-HOMEPAGE="https://github.com/roswell/roswell;
-SRC_URI="https://github.com/roswell/roswell/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-SLOT="0"
-LICENSE="MIT"
-
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="!net-libs/librouteros"
-
-src_prepare() {
-   default
-   eautoreconf
-}

diff --git a/dev-lisp/roswell/roswell-19.12.13.103.ebuild 
b/dev-lisp/roswell/roswell-19.12.13.103.ebuild
deleted file mode 100644
index 5e5d2416212..000
--- a/dev-lisp/roswell/roswell-19.12.13.103.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools
-
-DESCRIPTION="A lisp installer and launcher for major environment"
-HOMEPAGE="https://github.com/roswell/roswell;
-SRC_URI="https://github.com/roswell/roswell/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-SLOT="0"
-LICENSE="MIT"
-
-KEYWORDS="~amd64 ~x86"
-
-# File collision, #691754

[gentoo-commits] repo/gentoo:master commit in: dev-lisp/roswell/

2020-07-16 Thread Joonas Niilola
commit: 881a044140118dd0811f737c3e42bab408d3cf3b
Author: Joonas Niilola  gentoo  org>
AuthorDate: Thu Jul 16 14:14:30 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Jul 16 14:38:43 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=881a0441

dev-lisp/roswell: bump copyright years

Signed-off-by: Joonas Niilola  gentoo.org>

 dev-lisp/roswell/roswell-20.04.14.105.ebuild | 2 +-
 dev-lisp/roswell/roswell-20.05.14.106.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-lisp/roswell/roswell-20.04.14.105.ebuild 
b/dev-lisp/roswell/roswell-20.04.14.105.ebuild
index 11cdfe7deea..76c9e1152f1 100644
--- a/dev-lisp/roswell/roswell-20.04.14.105.ebuild
+++ b/dev-lisp/roswell/roswell-20.04.14.105.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7

diff --git a/dev-lisp/roswell/roswell-20.05.14.106.ebuild 
b/dev-lisp/roswell/roswell-20.05.14.106.ebuild
index 11cdfe7deea..76c9e1152f1 100644
--- a/dev-lisp/roswell/roswell-20.05.14.106.ebuild
+++ b/dev-lisp/roswell/roswell-20.05.14.106.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7



[gentoo-commits] repo/gentoo:master commit in: dev-lisp/roswell/

2020-07-16 Thread Joonas Niilola
commit: 7200de40e976d0c3386e519dc230065c20fa6edc
Author: YUE Daian  gmail  com>
AuthorDate: Sun Jun 21 06:28:19 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Jul 16 14:38:40 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7200de40

dev-lisp/roswell: bump version to 20.04.14.105

Signed-off-by: YUE Daian  gmail.com>
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-lisp/roswell/Manifest|  1 +
 dev-lisp/roswell/roswell-20.04.14.105.ebuild | 22 ++
 2 files changed, 23 insertions(+)

diff --git a/dev-lisp/roswell/Manifest b/dev-lisp/roswell/Manifest
index eab908fe853..3c998a13a2b 100644
--- a/dev-lisp/roswell/Manifest
+++ b/dev-lisp/roswell/Manifest
@@ -2,3 +2,4 @@ DIST roswell-19.08.10.101.tar.gz 163259 BLAKE2B 
80080a7d2665fd674281ae8af7ac735e
 DIST roswell-19.09.12.102.tar.gz 164475 BLAKE2B 
432a9aae8a2f2caa4b7c996829daff1e6a8807cccf936bf7d9aefc69e8842b73b355aede1213ed8ad3e2f3ed093fbb33f0d4f48c991ad4ae5dc3f919d5ea7c38
 SHA512 
04f6db828c81b7e6310c612e4a3fcd0d0abe6e9dbac794f78f9830902c8b8ad02bda7ff313edfebfd31fa299b2553f258dc82307ccdaf025b9eef2a13e93de54
 DIST roswell-19.12.13.103.tar.gz 165717 BLAKE2B 
9d38deab38154146ebba80ce4efdcc99c2d4ced312cad5a04ba44bc1bf5f10cb3c83bbbccdbdb842f0ef92e7d20b7073973d4f7f3438e732987cfcff8ec4386a
 SHA512 
3f7180843e81108ff026df6ead5541325dc622027483c2a33069020bdc90916c263a73ec40ead5ab0af2566967aa2a4cb8db2ece962465e7b0a41e4a6809335a
 DIST roswell-20.01.14.104.tar.gz 164384 BLAKE2B 
905bb54081da137c588b911f1aa6ef4957e9d860c9d42b72bcda37b084d4049c4234a757514170e2a857de40c4970d70e53e98d72bbeb037e5c35930fbd9286b
 SHA512 
8eac3ada8afb9f2ee82004e46fcee72e45cfd2ed4e86dea8892ff6fa0bb5339bca7e3d1d4a7e2930d6848ef1bf1ef4b63aa576382bee1e66e98cf50441c81c7e
+DIST roswell-20.04.14.105.tar.gz 165121 BLAKE2B 
f7f0e651768aa2a0d8ccd648b511eaae8d9c18e64941b0ce1a155017e53bd5b6552b129afa35ca1132765d1f03ed91c26d9d83f52799704857f1c3f1475f581d
 SHA512 
3e63b206253c0922877beb0c5091fc42052cb6a711b47333c3d6553cd22eb509f6fb09a0e073465bfb45225b46aa4041d760df17c8e781d3b815c583e9578c3e

diff --git a/dev-lisp/roswell/roswell-20.04.14.105.ebuild 
b/dev-lisp/roswell/roswell-20.04.14.105.ebuild
new file mode 100644
index 000..11cdfe7deea
--- /dev/null
+++ b/dev-lisp/roswell/roswell-20.04.14.105.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools
+
+DESCRIPTION="A lisp installer and launcher for major environment"
+HOMEPAGE="https://github.com/roswell/roswell;
+SRC_URI="https://github.com/roswell/roswell/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+SLOT="0"
+LICENSE="MIT"
+
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="!net-libs/librouteros"
+
+src_prepare() {
+   default
+   eautoreconf
+}



[gentoo-commits] repo/gentoo:master commit in: dev-lisp/roswell/

2020-07-16 Thread Joonas Niilola
commit: 14327cbd5c20291c05f6a30cc7b1c25b6a4c074f
Author: YUE Daian  gmail  com>
AuthorDate: Sun Jun 21 06:29:18 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Jul 16 14:38:40 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14327cbd

dev-lisp/roswell: bump version to 20.04.14.106

Signed-off-by: YUE Daian  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/15802
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-lisp/roswell/Manifest|  1 +
 dev-lisp/roswell/roswell-20.05.14.106.ebuild | 22 ++
 2 files changed, 23 insertions(+)

diff --git a/dev-lisp/roswell/Manifest b/dev-lisp/roswell/Manifest
index 3c998a13a2b..2f2ce27fb6b 100644
--- a/dev-lisp/roswell/Manifest
+++ b/dev-lisp/roswell/Manifest
@@ -3,3 +3,4 @@ DIST roswell-19.09.12.102.tar.gz 164475 BLAKE2B 
432a9aae8a2f2caa4b7c996829daff1e
 DIST roswell-19.12.13.103.tar.gz 165717 BLAKE2B 
9d38deab38154146ebba80ce4efdcc99c2d4ced312cad5a04ba44bc1bf5f10cb3c83bbbccdbdb842f0ef92e7d20b7073973d4f7f3438e732987cfcff8ec4386a
 SHA512 
3f7180843e81108ff026df6ead5541325dc622027483c2a33069020bdc90916c263a73ec40ead5ab0af2566967aa2a4cb8db2ece962465e7b0a41e4a6809335a
 DIST roswell-20.01.14.104.tar.gz 164384 BLAKE2B 
905bb54081da137c588b911f1aa6ef4957e9d860c9d42b72bcda37b084d4049c4234a757514170e2a857de40c4970d70e53e98d72bbeb037e5c35930fbd9286b
 SHA512 
8eac3ada8afb9f2ee82004e46fcee72e45cfd2ed4e86dea8892ff6fa0bb5339bca7e3d1d4a7e2930d6848ef1bf1ef4b63aa576382bee1e66e98cf50441c81c7e
 DIST roswell-20.04.14.105.tar.gz 165121 BLAKE2B 
f7f0e651768aa2a0d8ccd648b511eaae8d9c18e64941b0ce1a155017e53bd5b6552b129afa35ca1132765d1f03ed91c26d9d83f52799704857f1c3f1475f581d
 SHA512 
3e63b206253c0922877beb0c5091fc42052cb6a711b47333c3d6553cd22eb509f6fb09a0e073465bfb45225b46aa4041d760df17c8e781d3b815c583e9578c3e
+DIST roswell-20.05.14.106.tar.gz 164302 BLAKE2B 
bd2387bea78a746d5cfedc27e9d636ef7bc0f5118036ae2270c49a4361268527fafe2683850a2dcaeb1bf3f14db6a24fecd98f395081fdc1b4db620838d2936f
 SHA512 
03a923accc4d6ac9a3a3e0fd1853441bf4be0268571e8b6c122170befad6b1dcda6f062a566b54229bb325efb6a5d39459ce22a89355e927e3fea1e08cee

diff --git a/dev-lisp/roswell/roswell-20.05.14.106.ebuild 
b/dev-lisp/roswell/roswell-20.05.14.106.ebuild
new file mode 100644
index 000..11cdfe7deea
--- /dev/null
+++ b/dev-lisp/roswell/roswell-20.05.14.106.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools
+
+DESCRIPTION="A lisp installer and launcher for major environment"
+HOMEPAGE="https://github.com/roswell/roswell;
+SRC_URI="https://github.com/roswell/roswell/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+SLOT="0"
+LICENSE="MIT"
+
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="!net-libs/librouteros"
+
+src_prepare() {
+   default
+   eautoreconf
+}



[gentoo-commits] repo/gentoo:master commit in: dev-lisp/roswell/

2020-02-23 Thread Joonas Niilola
commit: 010848453b0e671ee41e481c1c2e89d95e715312
Author: YUE Daian  gmail  com>
AuthorDate: Sat Feb 22 07:55:49 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Mon Feb 24 05:47:16 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01084845

dev-lisp/roswell: bump version to 20.01.14.104

Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: YUE Daian  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/14736
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-lisp/roswell/Manifest|  1 +
 dev-lisp/roswell/roswell-20.01.14.104.ebuild | 22 ++
 2 files changed, 23 insertions(+)

diff --git a/dev-lisp/roswell/Manifest b/dev-lisp/roswell/Manifest
index 45351edc625..eab908fe853 100644
--- a/dev-lisp/roswell/Manifest
+++ b/dev-lisp/roswell/Manifest
@@ -1,3 +1,4 @@
 DIST roswell-19.08.10.101.tar.gz 163259 BLAKE2B 
80080a7d2665fd674281ae8af7ac735e8ebfa142cb2beac93e9536ab0251d654ce6f18e329b06bb1e8bb3a233ab15b42c35e544b4d2b9c87229d9290403cec31
 SHA512 
6a7dde53ba5f0793e3f5dac780265e1a88d35a0d4a2388fec6ecafde0904a36db222a3cfe867ae5bd90f38f08a5da09941182e72f81184bfd7f084d927e63ce3
 DIST roswell-19.09.12.102.tar.gz 164475 BLAKE2B 
432a9aae8a2f2caa4b7c996829daff1e6a8807cccf936bf7d9aefc69e8842b73b355aede1213ed8ad3e2f3ed093fbb33f0d4f48c991ad4ae5dc3f919d5ea7c38
 SHA512 
04f6db828c81b7e6310c612e4a3fcd0d0abe6e9dbac794f78f9830902c8b8ad02bda7ff313edfebfd31fa299b2553f258dc82307ccdaf025b9eef2a13e93de54
 DIST roswell-19.12.13.103.tar.gz 165717 BLAKE2B 
9d38deab38154146ebba80ce4efdcc99c2d4ced312cad5a04ba44bc1bf5f10cb3c83bbbccdbdb842f0ef92e7d20b7073973d4f7f3438e732987cfcff8ec4386a
 SHA512 
3f7180843e81108ff026df6ead5541325dc622027483c2a33069020bdc90916c263a73ec40ead5ab0af2566967aa2a4cb8db2ece962465e7b0a41e4a6809335a
+DIST roswell-20.01.14.104.tar.gz 164384 BLAKE2B 
905bb54081da137c588b911f1aa6ef4957e9d860c9d42b72bcda37b084d4049c4234a757514170e2a857de40c4970d70e53e98d72bbeb037e5c35930fbd9286b
 SHA512 
8eac3ada8afb9f2ee82004e46fcee72e45cfd2ed4e86dea8892ff6fa0bb5339bca7e3d1d4a7e2930d6848ef1bf1ef4b63aa576382bee1e66e98cf50441c81c7e

diff --git a/dev-lisp/roswell/roswell-20.01.14.104.ebuild 
b/dev-lisp/roswell/roswell-20.01.14.104.ebuild
new file mode 100644
index 000..76c9e1152f1
--- /dev/null
+++ b/dev-lisp/roswell/roswell-20.01.14.104.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools
+
+DESCRIPTION="A lisp installer and launcher for major environment"
+HOMEPAGE="https://github.com/roswell/roswell;
+SRC_URI="https://github.com/roswell/roswell/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+SLOT="0"
+LICENSE="MIT"
+
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="!net-libs/librouteros"
+
+src_prepare() {
+   default
+   eautoreconf
+}



[gentoo-commits] repo/gentoo:master commit in: dev-lisp/roswell/

2020-02-23 Thread Joonas Niilola
commit: 725bfb6fc29af83f9135af065876192c3ef5324f
Author: Joonas Niilola  gentoo  org>
AuthorDate: Mon Feb 24 05:48:26 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Mon Feb 24 05:48:26 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=725bfb6f

dev-lisp/roswell: add bug # to explain file collision blocker

Signed-off-by: Joonas Niilola  gentoo.org>

 dev-lisp/roswell/roswell-20.01.14.104.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-lisp/roswell/roswell-20.01.14.104.ebuild 
b/dev-lisp/roswell/roswell-20.01.14.104.ebuild
index 76c9e1152f1..26c7a2e2605 100644
--- a/dev-lisp/roswell/roswell-20.01.14.104.ebuild
+++ b/dev-lisp/roswell/roswell-20.01.14.104.ebuild
@@ -14,6 +14,7 @@ LICENSE="MIT"
 
 KEYWORDS="~amd64 ~x86"
 
+# File collision with librouteros (#691754)
 RDEPEND="!net-libs/librouteros"
 
 src_prepare() {



[gentoo-commits] repo/gentoo:master commit in: dev-lisp/roswell/

2020-01-06 Thread Joonas Niilola
commit: c064f1cb4b456830ec808d8655463473559e8a81
Author: Joonas Niilola  gentoo  org>
AuthorDate: Mon Jan  6 10:08:10 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Mon Jan  6 10:39:22 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c064f1cb

dev-lisp/roswell: add bug# for soft blocker

Signed-off-by: Joonas Niilola  gentoo.org>

 dev-lisp/roswell/roswell-19.12.13.103.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-lisp/roswell/roswell-19.12.13.103.ebuild 
b/dev-lisp/roswell/roswell-19.12.13.103.ebuild
index 76c9e1152f1..5e5d2416212 100644
--- a/dev-lisp/roswell/roswell-19.12.13.103.ebuild
+++ b/dev-lisp/roswell/roswell-19.12.13.103.ebuild
@@ -14,6 +14,7 @@ LICENSE="MIT"
 
 KEYWORDS="~amd64 ~x86"
 
+# File collision, #691754
 RDEPEND="!net-libs/librouteros"
 
 src_prepare() {



[gentoo-commits] repo/gentoo:master commit in: dev-lisp/roswell/

2020-01-06 Thread Joonas Niilola
commit: 1e3be727f4826d0f8836416b89c85c427ea45935
Author: YUE Daian  gmail  com>
AuthorDate: Mon Dec 30 03:11:06 2019 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Mon Jan  6 10:39:22 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e3be727

dev-lisp/roswell: bump version to 19.12.13.103

Package-Manager: Portage-2.3.82, Repoman-2.3.20
Signed-off-by: YUE Daian  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/14176
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-lisp/roswell/Manifest|  1 +
 dev-lisp/roswell/roswell-19.12.13.103.ebuild | 22 ++
 2 files changed, 23 insertions(+)

diff --git a/dev-lisp/roswell/Manifest b/dev-lisp/roswell/Manifest
index 9f5afd42b1d..45351edc625 100644
--- a/dev-lisp/roswell/Manifest
+++ b/dev-lisp/roswell/Manifest
@@ -1,2 +1,3 @@
 DIST roswell-19.08.10.101.tar.gz 163259 BLAKE2B 
80080a7d2665fd674281ae8af7ac735e8ebfa142cb2beac93e9536ab0251d654ce6f18e329b06bb1e8bb3a233ab15b42c35e544b4d2b9c87229d9290403cec31
 SHA512 
6a7dde53ba5f0793e3f5dac780265e1a88d35a0d4a2388fec6ecafde0904a36db222a3cfe867ae5bd90f38f08a5da09941182e72f81184bfd7f084d927e63ce3
 DIST roswell-19.09.12.102.tar.gz 164475 BLAKE2B 
432a9aae8a2f2caa4b7c996829daff1e6a8807cccf936bf7d9aefc69e8842b73b355aede1213ed8ad3e2f3ed093fbb33f0d4f48c991ad4ae5dc3f919d5ea7c38
 SHA512 
04f6db828c81b7e6310c612e4a3fcd0d0abe6e9dbac794f78f9830902c8b8ad02bda7ff313edfebfd31fa299b2553f258dc82307ccdaf025b9eef2a13e93de54
+DIST roswell-19.12.13.103.tar.gz 165717 BLAKE2B 
9d38deab38154146ebba80ce4efdcc99c2d4ced312cad5a04ba44bc1bf5f10cb3c83bbbccdbdb842f0ef92e7d20b7073973d4f7f3438e732987cfcff8ec4386a
 SHA512 
3f7180843e81108ff026df6ead5541325dc622027483c2a33069020bdc90916c263a73ec40ead5ab0af2566967aa2a4cb8db2ece962465e7b0a41e4a6809335a

diff --git a/dev-lisp/roswell/roswell-19.12.13.103.ebuild 
b/dev-lisp/roswell/roswell-19.12.13.103.ebuild
new file mode 100644
index 000..76c9e1152f1
--- /dev/null
+++ b/dev-lisp/roswell/roswell-19.12.13.103.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools
+
+DESCRIPTION="A lisp installer and launcher for major environment"
+HOMEPAGE="https://github.com/roswell/roswell;
+SRC_URI="https://github.com/roswell/roswell/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+SLOT="0"
+LICENSE="MIT"
+
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="!net-libs/librouteros"
+
+src_prepare() {
+   default
+   eautoreconf
+}



[gentoo-commits] repo/gentoo:master commit in: dev-lisp/roswell/

2019-10-09 Thread Joonas Niilola
commit: 38483737ae63522731f8bd4b212f92f6009e09e0
Author: YUE Daian  gmail  com>
AuthorDate: Mon Oct  7 15:04:23 2019 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Oct 10 05:21:59 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38483737

dev-lisp/roswell: bump version to 19.09.12.102

Closes: https://bugs.gentoo.org/696698

Signed-off-by: YUE Daian  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/13198
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-lisp/roswell/Manifest|  1 +
 dev-lisp/roswell/roswell-19.09.12.102.ebuild | 22 ++
 2 files changed, 23 insertions(+)

diff --git a/dev-lisp/roswell/Manifest b/dev-lisp/roswell/Manifest
index 5bf4ffbf0c8..9f5afd42b1d 100644
--- a/dev-lisp/roswell/Manifest
+++ b/dev-lisp/roswell/Manifest
@@ -1 +1,2 @@
 DIST roswell-19.08.10.101.tar.gz 163259 BLAKE2B 
80080a7d2665fd674281ae8af7ac735e8ebfa142cb2beac93e9536ab0251d654ce6f18e329b06bb1e8bb3a233ab15b42c35e544b4d2b9c87229d9290403cec31
 SHA512 
6a7dde53ba5f0793e3f5dac780265e1a88d35a0d4a2388fec6ecafde0904a36db222a3cfe867ae5bd90f38f08a5da09941182e72f81184bfd7f084d927e63ce3
+DIST roswell-19.09.12.102.tar.gz 164475 BLAKE2B 
432a9aae8a2f2caa4b7c996829daff1e6a8807cccf936bf7d9aefc69e8842b73b355aede1213ed8ad3e2f3ed093fbb33f0d4f48c991ad4ae5dc3f919d5ea7c38
 SHA512 
04f6db828c81b7e6310c612e4a3fcd0d0abe6e9dbac794f78f9830902c8b8ad02bda7ff313edfebfd31fa299b2553f258dc82307ccdaf025b9eef2a13e93de54

diff --git a/dev-lisp/roswell/roswell-19.09.12.102.ebuild 
b/dev-lisp/roswell/roswell-19.09.12.102.ebuild
new file mode 100644
index 000..11cdfe7deea
--- /dev/null
+++ b/dev-lisp/roswell/roswell-19.09.12.102.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools
+
+DESCRIPTION="A lisp installer and launcher for major environment"
+HOMEPAGE="https://github.com/roswell/roswell;
+SRC_URI="https://github.com/roswell/roswell/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+SLOT="0"
+LICENSE="MIT"
+
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="!net-libs/librouteros"
+
+src_prepare() {
+   default
+   eautoreconf
+}



[gentoo-commits] repo/gentoo:master commit in: dev-lisp/roswell/

2019-09-24 Thread Joonas Niilola
commit: 6618673c5b63ed61cbfcc6f81c9120808c244acc
Author: YUE Daian  gmail  com>
AuthorDate: Tue Sep 24 15:31:36 2019 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Tue Sep 24 15:42:59 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6618673c

dev-lisp/roswell: delete version 19.3.10.97

Signed-off-by: YUE Daian  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/12897
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-lisp/roswell/Manifest  |  1 -
 dev-lisp/roswell/roswell-19.3.10.97.ebuild | 34 --
 2 files changed, 35 deletions(-)

diff --git a/dev-lisp/roswell/Manifest b/dev-lisp/roswell/Manifest
index 593e45e85af..5bf4ffbf0c8 100644
--- a/dev-lisp/roswell/Manifest
+++ b/dev-lisp/roswell/Manifest
@@ -1,2 +1 @@
 DIST roswell-19.08.10.101.tar.gz 163259 BLAKE2B 
80080a7d2665fd674281ae8af7ac735e8ebfa142cb2beac93e9536ab0251d654ce6f18e329b06bb1e8bb3a233ab15b42c35e544b4d2b9c87229d9290403cec31
 SHA512 
6a7dde53ba5f0793e3f5dac780265e1a88d35a0d4a2388fec6ecafde0904a36db222a3cfe867ae5bd90f38f08a5da09941182e72f81184bfd7f084d927e63ce3
-DIST roswell-19.3.10.97.tar.gz 159870 BLAKE2B 
3a39f2606da3e45e752490eaba2b44f2dfc369c073e65d7556d078e6b6e4e1e620b24b5ef50375d01d5cd88a68c08825bf84b953965d1409f07ed2ba92ccf64c
 SHA512 
53265610715dcc8d5b23d10e6dff18bf7e69fd4884e45741f9165647b6003f219e0a4b3ab21c9a5bb5dd3c72240aa6e0f091a4379c792d5ed40787fa382a71af

diff --git a/dev-lisp/roswell/roswell-19.3.10.97.ebuild 
b/dev-lisp/roswell/roswell-19.3.10.97.ebuild
deleted file mode 100644
index 8caf020ab8e..000
--- a/dev-lisp/roswell/roswell-19.3.10.97.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools
-
-DESCRIPTION="A lisp installer and launcher for major environment"
-HOMEPAGE="https://github.com/roswell/roswell;
-SRC_URI="https://github.com/roswell/roswell/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-SLOT="0"
-LICENSE="MIT"
-
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="!net-libs/librouteros"
-
-src_prepare() {
-   default
-   eautoreconf
-}
-
-src_compile() {
-   emake -j1
-}
-
-src_test() {
-   emake -j1 check
-}
-
-src_install() {
-   emake DESTDIR="${D}" -j1 install
-}



[gentoo-commits] repo/gentoo:master commit in: dev-lisp/roswell/

2019-09-24 Thread Joonas Niilola
commit: 63308222e23990d36702e3ca275b68b0bb173796
Author: YUE Daian  gmail  com>
AuthorDate: Tue Sep 24 15:30:27 2019 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Tue Sep 24 15:42:59 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63308222

dev-lisp/roswell: bump version to 19.08.10.101

Signed-off-by: YUE Daian  gmail.com>
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-lisp/roswell/Manifest|  1 +
 dev-lisp/roswell/roswell-19.08.10.101.ebuild | 22 ++
 2 files changed, 23 insertions(+)

diff --git a/dev-lisp/roswell/Manifest b/dev-lisp/roswell/Manifest
index 8544f975e32..593e45e85af 100644
--- a/dev-lisp/roswell/Manifest
+++ b/dev-lisp/roswell/Manifest
@@ -1 +1,2 @@
+DIST roswell-19.08.10.101.tar.gz 163259 BLAKE2B 
80080a7d2665fd674281ae8af7ac735e8ebfa142cb2beac93e9536ab0251d654ce6f18e329b06bb1e8bb3a233ab15b42c35e544b4d2b9c87229d9290403cec31
 SHA512 
6a7dde53ba5f0793e3f5dac780265e1a88d35a0d4a2388fec6ecafde0904a36db222a3cfe867ae5bd90f38f08a5da09941182e72f81184bfd7f084d927e63ce3
 DIST roswell-19.3.10.97.tar.gz 159870 BLAKE2B 
3a39f2606da3e45e752490eaba2b44f2dfc369c073e65d7556d078e6b6e4e1e620b24b5ef50375d01d5cd88a68c08825bf84b953965d1409f07ed2ba92ccf64c
 SHA512 
53265610715dcc8d5b23d10e6dff18bf7e69fd4884e45741f9165647b6003f219e0a4b3ab21c9a5bb5dd3c72240aa6e0f091a4379c792d5ed40787fa382a71af

diff --git a/dev-lisp/roswell/roswell-19.08.10.101.ebuild 
b/dev-lisp/roswell/roswell-19.08.10.101.ebuild
new file mode 100644
index 000..11cdfe7deea
--- /dev/null
+++ b/dev-lisp/roswell/roswell-19.08.10.101.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools
+
+DESCRIPTION="A lisp installer and launcher for major environment"
+HOMEPAGE="https://github.com/roswell/roswell;
+SRC_URI="https://github.com/roswell/roswell/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+SLOT="0"
+LICENSE="MIT"
+
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="!net-libs/librouteros"
+
+src_prepare() {
+   default
+   eautoreconf
+}



[gentoo-commits] repo/gentoo:master commit in: dev-lisp/roswell/

2019-08-10 Thread Joonas Niilola
commit: f67e0f91e4a5ab3114a19fd1a26cd5683f23361b
Author: YUE Daian  gmail  com>
AuthorDate: Sat Aug 10 03:21:52 2019 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sat Aug 10 12:14:55 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f67e0f91

dev-lisp/roswell: fix fill collision with libroutersos

Bug: https://bugs.gentoo.org/691754
Signed-off-by: YUE Daian  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/12664
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-lisp/roswell/roswell-19.3.10.97.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/dev-lisp/roswell/roswell-19.3.10.97.ebuild 
b/dev-lisp/roswell/roswell-19.3.10.97.ebuild
index 7c7198c265e..8caf020ab8e 100644
--- a/dev-lisp/roswell/roswell-19.3.10.97.ebuild
+++ b/dev-lisp/roswell/roswell-19.3.10.97.ebuild
@@ -14,6 +14,8 @@ LICENSE="MIT"
 
 KEYWORDS="~amd64 ~x86"
 
+RDEPEND="!net-libs/librouteros"
+
 src_prepare() {
default
eautoreconf



[gentoo-commits] repo/gentoo:master commit in: dev-lisp/roswell/

2019-08-01 Thread Joonas Niilola
commit: 6b2e4dfcd97fc8d18a7796bfd44682c7235d7122
Author: Danny YUE  gmail  com>
AuthorDate: Thu Mar 14 14:51:26 2019 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Aug  1 13:13:19 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b2e4dfc

dev-lisp/roswell: Add roswell ebuild

Signed-off-by: YUE Daian  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/10684
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-lisp/roswell/Manifest  |  1 +
 dev-lisp/roswell/metadata.xml  | 20 +++
 dev-lisp/roswell/roswell-19.3.10.97.ebuild | 32 ++
 3 files changed, 53 insertions(+)

diff --git a/dev-lisp/roswell/Manifest b/dev-lisp/roswell/Manifest
new file mode 100644
index 000..8544f975e32
--- /dev/null
+++ b/dev-lisp/roswell/Manifest
@@ -0,0 +1 @@
+DIST roswell-19.3.10.97.tar.gz 159870 BLAKE2B 
3a39f2606da3e45e752490eaba2b44f2dfc369c073e65d7556d078e6b6e4e1e620b24b5ef50375d01d5cd88a68c08825bf84b953965d1409f07ed2ba92ccf64c
 SHA512 
53265610715dcc8d5b23d10e6dff18bf7e69fd4884e45741f9165647b6003f219e0a4b3ab21c9a5bb5dd3c72240aa6e0f091a4379c792d5ed40787fa382a71af

diff --git a/dev-lisp/roswell/metadata.xml b/dev-lisp/roswell/metadata.xml
new file mode 100644
index 000..020c3a63528
--- /dev/null
+++ b/dev-lisp/roswell/metadata.xml
@@ -0,0 +1,20 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+sheepd...@gmail.com
+YUE Daian
+  
+  
+proxy-ma...@gentoo.org
+Proxy Maintainers
+  
+  
+Roswell is the de facto full-stack environment for Common Lisp
+development. It serves as a Lisp implementation installer, manager,
+launcher etc.
+  
+  
+roswell/roswell
+  
+

diff --git a/dev-lisp/roswell/roswell-19.3.10.97.ebuild 
b/dev-lisp/roswell/roswell-19.3.10.97.ebuild
new file mode 100644
index 000..7c7198c265e
--- /dev/null
+++ b/dev-lisp/roswell/roswell-19.3.10.97.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools
+
+DESCRIPTION="A lisp installer and launcher for major environment"
+HOMEPAGE="https://github.com/roswell/roswell;
+SRC_URI="https://github.com/roswell/roswell/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+SLOT="0"
+LICENSE="MIT"
+
+KEYWORDS="~amd64 ~x86"
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+src_compile() {
+   emake -j1
+}
+
+src_test() {
+   emake -j1 check
+}
+
+src_install() {
+   emake DESTDIR="${D}" -j1 install
+}