* [gentoo-commits] repo/gentoo:master commit in: app-admin/xstow/
@ 2016-04-04 9:00 Ian Delaney
0 siblings, 0 replies; 16+ messages in thread
From: Ian Delaney @ 2016-04-04 9:00 UTC (permalink / raw
To: gentoo-commits
commit: 5fcd1c465621582ae3a37aabd0f2d462d260d9df
Author: Ian Delaney <idella4 <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 4 08:58:18 2016 +0000
Commit: Ian Delaney <idella4 <AT> gentoo <DOT> org>
CommitDate: Mon Apr 4 09:00:30 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5fcd1c46
app-admin/xstow: Add description attribute for user maintainer in metadata.xml
Package-Manager: portage-2.2.28
app-admin/xstow/metadata.xml | 1 +
1 file changed, 1 insertion(+)
diff --git a/app-admin/xstow/metadata.xml b/app-admin/xstow/metadata.xml
index b3d90cf..402abfd 100644
--- a/app-admin/xstow/metadata.xml
+++ b/app-admin/xstow/metadata.xml
@@ -4,6 +4,7 @@
<maintainer type="person">
<email>ewfalor@gmail.com</email>
<name>Erik Falor</name>
+ <description>Proxied maintainer; set to assignee in all bugs</description>
</maintainer>
<maintainer type="person">
<email>maksbotan@gentoo.org</email>
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/xstow/
@ 2017-12-10 14:16 David Seifert
0 siblings, 0 replies; 16+ messages in thread
From: David Seifert @ 2017-12-10 14:16 UTC (permalink / raw
To: gentoo-commits
commit: 0bbd78953ce073bfdc718972bfc474210fda2920
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 10 14:10:45 2017 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Dec 10 14:14:19 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0bbd7895
app-admin/xstow: [QA] Fix dependency.missingslot
Package-Manager: Portage-2.3.16, Repoman-2.3.6
app-admin/xstow/xstow-1.0.1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/app-admin/xstow/xstow-1.0.1.ebuild b/app-admin/xstow/xstow-1.0.1.ebuild
index 34a6c3f8144..de7357598a6 100644
--- a/app-admin/xstow/xstow-1.0.1.ebuild
+++ b/app-admin/xstow/xstow-1.0.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
@@ -14,7 +14,7 @@ SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE="ncurses"
-DEPEND="ncurses? ( sys-libs/ncurses )"
+DEPEND="ncurses? ( sys-libs/ncurses:0= )"
RDEPEND="${DEPEND}"
src_prepare() {
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/xstow/
@ 2021-04-01 23:12 Sam James
0 siblings, 0 replies; 16+ messages in thread
From: Sam James @ 2021-04-01 23:12 UTC (permalink / raw
To: gentoo-commits
commit: a6d45d93e4220fecbf1c4c01feff2797dc062b9b
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 1 02:36:20 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Apr 1 23:11:40 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6d45d93
app-admin/xstow: port to EAPI 7, fix Prefix
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-admin/xstow/xstow-1.0.1.ebuild | 18 +++++++++++-------
1 file changed, 11 insertions(+), 7 deletions(-)
diff --git a/app-admin/xstow/xstow-1.0.1.ebuild b/app-admin/xstow/xstow-1.0.1.ebuild
index 8bc68e8c451..5625fbef705 100644
--- a/app-admin/xstow/xstow-1.0.1.ebuild
+++ b/app-admin/xstow/xstow-1.0.1.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=5
+EAPI=7
-inherit autotools eutils
+inherit autotools
-DESCRIPTION="replacement for GNU stow with extensions"
+DESCRIPTION="Replacement for GNU stow with extensions"
HOMEPAGE="http://xstow.sourceforge.net/"
SRC_URI="mirror://sourceforge/xstow/${P}.tar.bz2"
@@ -17,8 +17,12 @@ IUSE="ncurses"
DEPEND="ncurses? ( sys-libs/ncurses:0= )"
RDEPEND="${DEPEND}"
+PATCHES=(
+ "${FILESDIR}"/${P}-ncurses.patch
+)
+
src_prepare() {
- epatch "${FILESDIR}"/${P}-ncurses.patch
+ default
eautoreconf
}
@@ -27,11 +31,11 @@ src_configure() {
}
src_install() {
- emake DESTDIR="${D}" docdir="/usr/share/doc/${PF}/html" install
+ emake DESTDIR="${D}" docdir="${EPREFIX}/usr/share/doc/${PF}/html" install
dodoc AUTHORS ChangeLog NEWS README TODO
# create new STOWDIR
- dodir /var/lib/xstow
+ keepdir /var/lib/xstow
# install env.d file to add STOWDIR to PATH and LDPATH
doenvd "${FILESDIR}/99xstow"
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/xstow/
@ 2021-04-05 15:08 Sam James
0 siblings, 0 replies; 16+ messages in thread
From: Sam James @ 2021-04-05 15:08 UTC (permalink / raw
To: gentoo-commits
commit: d4dbc6a089a47f7cbc18c284e9723bf68c622c6a
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 5 15:07:24 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Apr 5 15:07:24 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4dbc6a0
app-admin/xstow: Capitalise DESCRIPTION, change 'default' usage
* DESCRTPTION is usually captalised at the beginning
* Add 'default' in src_prepare before eautoreconf to allow people to apply
patches in e.g. /etc/portage/patches to any part of the code
* Remove 'default' in src_configure because it just calls econf without the
ncurses argument (USE flag)
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-admin/xstow/xstow-1.0.2.ebuild | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/app-admin/xstow/xstow-1.0.2.ebuild b/app-admin/xstow/xstow-1.0.2.ebuild
index 3e326516724..d041f7daf68 100644
--- a/app-admin/xstow/xstow-1.0.2.ebuild
+++ b/app-admin/xstow/xstow-1.0.2.ebuild
@@ -5,7 +5,7 @@ EAPI=7
inherit autotools
-DESCRIPTION="replacement for GNU stow with extensions"
+DESCRIPTION="Replacement for GNU stow with extensions"
HOMEPAGE="http://xstow.sourceforge.net/"
SRC_URI="mirror://sourceforge/xstow/${P}.tar.bz2"
@@ -22,13 +22,12 @@ PATCHES=(
)
src_prepare() {
- eautoreconf
default
+ eautoreconf
}
src_configure() {
econf $(use_with ncurses curses)
- default
}
src_install() {
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/xstow/
@ 2021-05-16 6:46 Joonas Niilola
0 siblings, 0 replies; 16+ messages in thread
From: Joonas Niilola @ 2021-05-16 6:46 UTC (permalink / raw
To: gentoo-commits
commit: 4946a80460f854676de1828694832d584291bd4a
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Sun May 16 06:46:11 2021 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sun May 16 06:46:11 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4946a804
app-admin/xstow: drop to maintainer-needed
- the previous author doesn't have a bugzilla account, at least matching
this address, and thus bugs couldn't be assigned.
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
app-admin/xstow/metadata.xml | 9 +--------
1 file changed, 1 insertion(+), 8 deletions(-)
diff --git a/app-admin/xstow/metadata.xml b/app-admin/xstow/metadata.xml
index 4d31fca9f3f..96081f5fce1 100644
--- a/app-admin/xstow/metadata.xml
+++ b/app-admin/xstow/metadata.xml
@@ -1,14 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <maintainer type="person" proxied="yes">
- <email>kingleo@gmx.at</email>
- <name>Martin Oberzalek</name>
- </maintainer>
- <maintainer type="project" proxied="proxy">
- <email>proxy-maint@gentoo.org</email>
- <name>Proxy Maintainers</name>
- </maintainer>
+ <!-- maintainer-needed -->
<upstream>
<remote-id type="sourceforge">xstow</remote-id>
</upstream>
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/xstow/
@ 2021-05-17 2:37 Sam James
0 siblings, 0 replies; 16+ messages in thread
From: Sam James @ 2021-05-17 2:37 UTC (permalink / raw
To: gentoo-commits
commit: 7b1b7b91d623200b5d4621f85de4f8d5c5fcc3d4
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon May 17 02:36:43 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon May 17 02:36:43 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b1b7b91
app-admin/xstow: Stabilize 1.0.2 amd64, #790065
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-admin/xstow/xstow-1.0.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/xstow/xstow-1.0.2.ebuild b/app-admin/xstow/xstow-1.0.2.ebuild
index 30abbbbc0dd..d29c2e32a3f 100644
--- a/app-admin/xstow/xstow-1.0.2.ebuild
+++ b/app-admin/xstow/xstow-1.0.2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/xstow/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc ~x86"
IUSE="ncurses"
DEPEND="ncurses? ( sys-libs/ncurses:0= )"
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/xstow/
@ 2021-05-17 3:03 Sam James
0 siblings, 0 replies; 16+ messages in thread
From: Sam James @ 2021-05-17 3:03 UTC (permalink / raw
To: gentoo-commits
commit: 1f128f4afe1f8bb17e3d0d71528021c3c20b063f
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon May 17 03:03:20 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon May 17 03:03:20 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f128f4a
app-admin/xstow: Stabilize 1.0.2 ppc, #790065
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-admin/xstow/xstow-1.0.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/xstow/xstow-1.0.2.ebuild b/app-admin/xstow/xstow-1.0.2.ebuild
index d29c2e32a3f..f416bcdeb23 100644
--- a/app-admin/xstow/xstow-1.0.2.ebuild
+++ b/app-admin/xstow/xstow-1.0.2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/xstow/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="amd64 ~ppc ~x86"
+KEYWORDS="amd64 ppc ~x86"
IUSE="ncurses"
DEPEND="ncurses? ( sys-libs/ncurses:0= )"
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/xstow/
@ 2021-05-17 7:49 Agostino Sarubbo
0 siblings, 0 replies; 16+ messages in thread
From: Agostino Sarubbo @ 2021-05-17 7:49 UTC (permalink / raw
To: gentoo-commits
commit: a988f63e4b05658f873204a1e11b29723e730bdf
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Mon May 17 07:47:32 2021 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Mon May 17 07:49:01 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a988f63e
app-admin/xstow: x86 stable wrt bug #790065
Package-Manager: Portage-3.0.13, Repoman-3.0.2
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
app-admin/xstow/xstow-1.0.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/xstow/xstow-1.0.2.ebuild b/app-admin/xstow/xstow-1.0.2.ebuild
index f416bcdeb23..879bda8dfba 100644
--- a/app-admin/xstow/xstow-1.0.2.ebuild
+++ b/app-admin/xstow/xstow-1.0.2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/xstow/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="amd64 ppc ~x86"
+KEYWORDS="amd64 ppc x86"
IUSE="ncurses"
DEPEND="ncurses? ( sys-libs/ncurses:0= )"
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/xstow/
@ 2022-07-27 8:18 Sam James
0 siblings, 0 replies; 16+ messages in thread
From: Sam James @ 2022-07-27 8:18 UTC (permalink / raw
To: gentoo-commits
commit: fafae39ad219833b7588e07b03c854eaf8b698c8
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 27 08:16:49 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Jul 27 08:18:12 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fafae39a
app-admin/xstow: style tweaks
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-admin/xstow/xstow-1.1.0.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/app-admin/xstow/xstow-1.1.0.ebuild b/app-admin/xstow/xstow-1.1.0.ebuild
index 99fc63fb1425..5a06f7a62ad8 100644
--- a/app-admin/xstow/xstow-1.1.0.ebuild
+++ b/app-admin/xstow/xstow-1.1.0.ebuild
@@ -14,11 +14,11 @@ SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="ncurses"
-DEPEND="ncurses? ( sys-libs/ncurses:0= )"
+DEPEND="ncurses? ( sys-libs/ncurses:= )"
RDEPEND="${DEPEND}"
PATCHES=(
- "${FILESDIR}"/xstow-1.1.0-clang.patch
+ "${FILESDIR}"/${P}-clang.patch
)
src_prepare() {
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/xstow/
@ 2022-07-27 8:18 Sam James
0 siblings, 0 replies; 16+ messages in thread
From: Sam James @ 2022-07-27 8:18 UTC (permalink / raw
To: gentoo-commits
commit: 2992b5de480e59cdda11db36c7d75dddc09467e8
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 27 08:17:11 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Jul 27 08:18:12 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2992b5de
app-admin/xstow: add github upstream metadata
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-admin/xstow/metadata.xml | 1 +
1 file changed, 1 insertion(+)
diff --git a/app-admin/xstow/metadata.xml b/app-admin/xstow/metadata.xml
index 8915e8ac0ac4..22daf571c552 100644
--- a/app-admin/xstow/metadata.xml
+++ b/app-admin/xstow/metadata.xml
@@ -3,6 +3,7 @@
<pkgmetadata>
<!-- maintainer-needed -->
<upstream>
+ <remote-id type="github">majorkingleo/xstow</remote-id>
<remote-id type="sourceforge">xstow</remote-id>
</upstream>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/xstow/
@ 2022-12-18 11:49 Sam James
0 siblings, 0 replies; 16+ messages in thread
From: Sam James @ 2022-12-18 11:49 UTC (permalink / raw
To: gentoo-commits
commit: 52ed29b89c7eec5763a6990d3c557c263f5ddf1b
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 18 11:49:08 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Dec 18 11:49:08 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52ed29b8
app-admin/xstow: Stabilize 1.1.0 ppc, #886655
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-admin/xstow/xstow-1.1.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/xstow/xstow-1.1.0.ebuild b/app-admin/xstow/xstow-1.1.0.ebuild
index 5a06f7a62ad8..aeaf6e0168ec 100644
--- a/app-admin/xstow/xstow-1.1.0.ebuild
+++ b/app-admin/xstow/xstow-1.1.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/xstow/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="~amd64 ppc ~x86"
IUSE="ncurses"
DEPEND="ncurses? ( sys-libs/ncurses:= )"
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/xstow/
@ 2022-12-18 12:13 Sam James
0 siblings, 0 replies; 16+ messages in thread
From: Sam James @ 2022-12-18 12:13 UTC (permalink / raw
To: gentoo-commits
commit: b1f2debccf3e6b1e119a0084586d9e8280960787
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 18 12:12:42 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Dec 18 12:12:42 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1f2debc
app-admin/xstow: Stabilize 1.1.0 x86, #886655
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-admin/xstow/xstow-1.1.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/xstow/xstow-1.1.0.ebuild b/app-admin/xstow/xstow-1.1.0.ebuild
index aeaf6e0168ec..e0d50e3710a2 100644
--- a/app-admin/xstow/xstow-1.1.0.ebuild
+++ b/app-admin/xstow/xstow-1.1.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/xstow/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ppc ~x86"
+KEYWORDS="~amd64 ppc x86"
IUSE="ncurses"
DEPEND="ncurses? ( sys-libs/ncurses:= )"
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/xstow/
@ 2024-06-20 13:59 Florian Schmaus
0 siblings, 0 replies; 16+ messages in thread
From: Florian Schmaus @ 2024-06-20 13:59 UTC (permalink / raw
To: gentoo-commits
commit: 27b87428a89f8e58a83a751fef88098b217d5752
Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Sun Jun 2 09:27:59 2024 +0000
Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Thu Jun 20 13:59:19 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27b87428
app-admin/xstow: add 1.1.1
Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/36967
Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>
app-admin/xstow/Manifest | 1 +
app-admin/xstow/xstow-1.1.1.ebuild | 41 ++++++++++++++++++++++++++++++++++++++
2 files changed, 42 insertions(+)
diff --git a/app-admin/xstow/Manifest b/app-admin/xstow/Manifest
index 2f92a34ddb06..21811777c9b8 100644
--- a/app-admin/xstow/Manifest
+++ b/app-admin/xstow/Manifest
@@ -1 +1,2 @@
DIST xstow-1.1.0.tar.bz2 187761 BLAKE2B ed3822e638aedf8900a3baba62a5af9de9d7b98dcdf27ca81a6898353b9f5c7f767ec7d8e68ead4d5ef318af5a6eda2b1cc68a5c80a6a8ad2b9c8adf03ae3377 SHA512 30f2e0be0c2aba668b4cc781fe69ac74c2460cc681c6b47a55ee66af5c0f2ac14dee9fe2e95a288ce06059378407a2b99d2156430a5a6dcbf06def793f579015
+DIST xstow-1.1.1.tar.bz2 188334 BLAKE2B 13b079b4c0bdfc68837d3674eb64852d6c8bd341541c927703eed7e302ce36328bc814c618972365b60bd7562a4a2398c6a881a0a42c5778523197e41cfde7df SHA512 86154bd562e1dcb068a2c766a849975a4e6c9c343d89d47f8dd339a03b73aceb2dfb8523e2bc40df3ceb673a1a9f7991737e982c0c1a2cc0bd9fcdf8fd7c3113
diff --git a/app-admin/xstow/xstow-1.1.1.ebuild b/app-admin/xstow/xstow-1.1.1.ebuild
new file mode 100644
index 000000000000..d6dcfa3ad50d
--- /dev/null
+++ b/app-admin/xstow/xstow-1.1.1.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="Replacement for GNU stow with extensions"
+HOMEPAGE="https://github.com/majorkingleo/xstow"
+SRC_URI="https://github.com/majorkingleo/${PN}/releases/download/${PV}/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="ncurses"
+
+DEPEND="ncurses? ( sys-libs/ncurses:= )"
+RDEPEND="${DEPEND}"
+
+src_configure() {
+ econf $(use_with ncurses curses)
+}
+
+src_install() {
+ emake DESTDIR="${D}" docdir="${EPREFIX}/usr/share/doc/${PF}/html" install
+ einstalldocs
+
+ # Create new STOWDIR
+ keepdir /var/lib/xstow
+
+ # Install env.d file to add STOWDIR to PATH and LDPATH
+ doenvd "${FILESDIR}"/99xstow
+}
+
+pkg_postinst() {
+ elog "We now recommend that you use /var/lib/xstow as your STOWDIR"
+ elog "instead of /usr/local in order to avoid conflicts with the"
+ elog "symlink from /usr/lib64 -> /usr/lib. See Bug 246264"
+ elog "(regarding app-admin/stow, equally applicable to XStow) for"
+ elog "more details on this change."
+ elog "For your convenience, PATH has been updated to include"
+ elog "/var/lib/bin."
+}
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/xstow/
@ 2024-11-23 12:28 Arthur Zamarin
0 siblings, 0 replies; 16+ messages in thread
From: Arthur Zamarin @ 2024-11-23 12:28 UTC (permalink / raw
To: gentoo-commits
commit: cc7de9b28461e861d744803bfa5b455f926a6888
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 23 12:28:43 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Nov 23 12:28:43 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc7de9b2
app-admin/xstow: Stabilize 1.1.1 ppc, #944595
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
app-admin/xstow/xstow-1.1.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/xstow/xstow-1.1.1.ebuild b/app-admin/xstow/xstow-1.1.1.ebuild
index d6dcfa3ad50d..76aeccc381e5 100644
--- a/app-admin/xstow/xstow-1.1.1.ebuild
+++ b/app-admin/xstow/xstow-1.1.1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://github.com/majorkingleo/${PN}/releases/download/${PV}/${P}.tar.
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="~amd64 ppc ~x86"
IUSE="ncurses"
DEPEND="ncurses? ( sys-libs/ncurses:= )"
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/xstow/
@ 2024-11-23 16:55 Michał Górny
0 siblings, 0 replies; 16+ messages in thread
From: Michał Górny @ 2024-11-23 16:55 UTC (permalink / raw
To: gentoo-commits
commit: 39f0a70c30756e31b61f8873e33b573c50083435
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 23 16:55:07 2024 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Nov 23 16:55:07 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39f0a70c
app-admin/xstow: Stabilize 1.1.1 x86, #944595
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
app-admin/xstow/xstow-1.1.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/xstow/xstow-1.1.1.ebuild b/app-admin/xstow/xstow-1.1.1.ebuild
index 76aeccc381e5..cdfb5d511cef 100644
--- a/app-admin/xstow/xstow-1.1.1.ebuild
+++ b/app-admin/xstow/xstow-1.1.1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://github.com/majorkingleo/${PN}/releases/download/${PV}/${P}.tar.
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ppc ~x86"
+KEYWORDS="~amd64 ppc x86"
IUSE="ncurses"
DEPEND="ncurses? ( sys-libs/ncurses:= )"
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/xstow/
@ 2024-11-23 17:21 Michał Górny
0 siblings, 0 replies; 16+ messages in thread
From: Michał Górny @ 2024-11-23 17:21 UTC (permalink / raw
To: gentoo-commits
commit: 02551c997f29a92b7f90f507a8f2ff22cb398876
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 23 17:21:11 2024 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Nov 23 17:21:11 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02551c99
app-admin/xstow: Stabilize 1.1.1 amd64, #944595
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
app-admin/xstow/xstow-1.1.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/xstow/xstow-1.1.1.ebuild b/app-admin/xstow/xstow-1.1.1.ebuild
index cdfb5d511cef..9dea751cbf2c 100644
--- a/app-admin/xstow/xstow-1.1.1.ebuild
+++ b/app-admin/xstow/xstow-1.1.1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://github.com/majorkingleo/${PN}/releases/download/${PV}/${P}.tar.
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ppc x86"
+KEYWORDS="amd64 ppc x86"
IUSE="ncurses"
DEPEND="ncurses? ( sys-libs/ncurses:= )"
^ permalink raw reply related [flat|nested] 16+ messages in thread
end of thread, other threads:[~2024-11-23 17:21 UTC | newest]
Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-12-10 14:16 [gentoo-commits] repo/gentoo:master commit in: app-admin/xstow/ David Seifert
-- strict thread matches above, loose matches on Subject: below --
2024-11-23 17:21 Michał Górny
2024-11-23 16:55 Michał Górny
2024-11-23 12:28 Arthur Zamarin
2024-06-20 13:59 Florian Schmaus
2022-12-18 12:13 Sam James
2022-12-18 11:49 Sam James
2022-07-27 8:18 Sam James
2022-07-27 8:18 Sam James
2021-05-17 7:49 Agostino Sarubbo
2021-05-17 3:03 Sam James
2021-05-17 2:37 Sam James
2021-05-16 6:46 Joonas Niilola
2021-04-05 15:08 Sam James
2021-04-01 23:12 Sam James
2016-04-04 9:00 Ian Delaney
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox