public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: www-servers/xsp/
Date: Sun, 28 Mar 2021 04:21:21 +0000 (UTC)	[thread overview]
Message-ID: <1616905268.402a3b36a5f58622b18e6a8fa827dde2d2669e14.sam@gentoo> (raw)

commit:     402a3b36a5f58622b18e6a8fa827dde2d2669e14
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 28 04:14:03 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Mar 28 04:21:08 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=402a3b36

www-servers/xsp: tidy variable declarations

Signed-off-by: Sam James <sam <AT> gentoo.org>

 www-servers/xsp/xsp-3.8_p2014120900.ebuild | 13 ++++++++-----
 www-servers/xsp/xsp-4.7.1.ebuild           | 12 ++++++------
 2 files changed, 14 insertions(+), 11 deletions(-)

diff --git a/www-servers/xsp/xsp-3.8_p2014120900.ebuild b/www-servers/xsp/xsp-3.8_p2014120900.ebuild
index 33c34864ddf..803e6c8bd9c 100644
--- a/www-servers/xsp/xsp-3.8_p2014120900.ebuild
+++ b/www-servers/xsp/xsp-3.8_p2014120900.ebuild
@@ -3,9 +3,9 @@
 
 EAPI=7
 
+# TODO: We can probably yank the USE_DOTNET/dotnet.eclass stuff
+# but let's be conservative for now
 USE_DOTNET="net35 net40 net45"
-PATCHDIR="${FILESDIR}/2.2/"
-
 inherit autotools dotnet systemd user
 
 EGIT_COMMIT="e272a2c006211b6b03be2ef5bbb9e3f8fefd0768"
@@ -17,19 +17,20 @@ S="${WORKDIR}/xsp-${EGIT_COMMIT}"
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="doc test developer"
+IUSE="developer doc test"
 RESTRICT="!test? ( test )"
 
 BDEPEND="app-arch/unzip"
 RDEPEND="dev-db/sqlite:3"
 DEPEND="${RDEPEND}"
 
-METAFILETOBUILD=xsp.sln
-
 PATCHES=(
 	"${FILESDIR}/aclocal-fix.patch"
 )
 
+
+METAFILETOBUILD=xsp.sln
+
 src_prepare() {
 	default
 
@@ -74,6 +75,8 @@ pkg_preinst() {
 src_install() {
 	default
 
+	local PATCHDIR="${FILESDIR}/2.2/"
+
 	newinitd "${PATCHDIR}"/xsp.initd xsp
 	newinitd "${PATCHDIR}"/mod-mono-server-r1.initd mod-mono-server
 	newconfd "${PATCHDIR}"/xsp.confd xsp

diff --git a/www-servers/xsp/xsp-4.7.1.ebuild b/www-servers/xsp/xsp-4.7.1.ebuild
index 8bbb25acfcf..e5cd0168007 100644
--- a/www-servers/xsp/xsp-4.7.1.ebuild
+++ b/www-servers/xsp/xsp-4.7.1.ebuild
@@ -4,8 +4,6 @@
 EAPI=7
 
 USE_DOTNET="net35 net40 net45"
-PATCHDIR="${FILESDIR}/2.2/"
-
 inherit autotools dotnet systemd user
 
 DESCRIPTION="XSP is a small web server that can host ASP.NET pages"
@@ -15,18 +13,18 @@ SRC_URI="https://github.com/mono/xsp/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="doc test developer"
+IUSE="developer doc test"
 RESTRICT="!test? ( test )"
 
 RDEPEND="dev-db/sqlite:3"
 DEPEND="${RDEPEND}"
 
-METAFILETOBUILD=xsp.sln
-
 PATCHES=(
 	"${FILESDIR}/aclocal-fix.patch"
 )
 
+METAFILETOBUILD=xsp.sln
+
 src_prepare() {
 	default
 
@@ -69,7 +67,9 @@ pkg_preinst() {
 }
 
 src_install() {
-	mv_command="cp -ar" default
+	default
+
+	local PATCHDIR="${FILESDIR}/2.2/"
 
 	newinitd "${PATCHDIR}"/xsp.initd xsp
 	newinitd "${PATCHDIR}"/mod-mono-server-r1.initd mod-mono-server


             reply	other threads:[~2021-03-28  4:21 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-03-28  4:21 Sam James [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-09-18 20:25 [gentoo-commits] repo/gentoo:master commit in: www-servers/xsp/ Petr Vaněk
2024-09-18 20:25 Petr Vaněk
2021-07-07 20:04 Conrad Kostecki
2021-07-07 20:04 Conrad Kostecki
2021-03-28  4:21 Sam James
2021-03-28  4:21 Sam James
2021-03-28  3:05 Sam James
2021-03-28  3:05 Sam James
2021-03-28  3:02 Sam James
2021-03-28  3:02 Sam James
2017-11-26 23:26 David Seifert
2016-06-02 14:21 Michael Palimaka
2015-10-25 18:29 Heather Cynede

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=1616905268.402a3b36a5f58622b18e6a8fa827dde2d2669e14.sam@gentoo \
    --to=sam@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.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