diff options
author | Petr Vaněk <arkamar@gentoo.org> | 2024-09-18 21:40:47 +0200 |
---|---|---|
committer | Petr Vaněk <arkamar@gentoo.org> | 2024-09-18 22:25:07 +0200 |
commit | 181d4543ce1f2b1fd68d74adf1b4ddcdb30685ba (patch) | |
tree | 41a9dc1a9be8d1fe57abee14673882f4d2e957ed /www-servers | |
parent | www-servers/xsp: remove unused file (diff) | |
download | gentoo-181d4543ce1f2b1fd68d74adf1b4ddcdb30685ba.tar.gz gentoo-181d4543ce1f2b1fd68d74adf1b4ddcdb30685ba.tar.bz2 gentoo-181d4543ce1f2b1fd68d74adf1b4ddcdb30685ba.zip |
www-servers/xsp: drop 3.8_p2014120900-r1
Signed-off-by: Petr Vaněk <arkamar@gentoo.org>
Diffstat (limited to 'www-servers')
-rw-r--r-- | www-servers/xsp/Manifest | 1 | ||||
-rw-r--r-- | www-servers/xsp/xsp-3.8_p2014120900-r1.ebuild | 95 |
2 files changed, 0 insertions, 96 deletions
diff --git a/www-servers/xsp/Manifest b/www-servers/xsp/Manifest index 14d54fe58540..02afb57cad8a 100644 --- a/www-servers/xsp/Manifest +++ b/www-servers/xsp/Manifest @@ -1,2 +1 @@ -DIST xsp-3.8_p2014120900.tar.gz 307722 BLAKE2B a6c7723e41490022ea969961f93fa3cb5b5eb583edd6ad1ef40dc38adc29cc9c0de16b7da5e98074b0848cdb7cce1e4c5e0298dc6f7f71d6a5c5e542a662005e SHA512 bf7a8cbeda330be98eb6fb1942ca9d6d8107ceabfb47db36d4b9b1f9d99afb329bad7737a4c9bfbf3ac205e9499dd58b2aa1cf7dfd83e41ee50b3820b05d4596 DIST xsp-4.7.1.tar.gz 307143 BLAKE2B f8a3a09d644d567728e6462df553ff52fdbd17e974dc25aeebd011e7b6c22ef76be69cc49acfd1cdd9edbd30728ce6b7ef5f33ecda50653db219863b17442b36 SHA512 f106b073bc17ae8fafcffdf2f0db7284f36b62b648fd79321a0de7f5ed15085a9116deccf464e72b3e6f5daf8d65d0a6a3d55c1b275546a4762fa3236bd58e2b diff --git a/www-servers/xsp/xsp-3.8_p2014120900-r1.ebuild b/www-servers/xsp/xsp-3.8_p2014120900-r1.ebuild deleted file mode 100644 index 5a2a1649d828..000000000000 --- a/www-servers/xsp/xsp-3.8_p2014120900-r1.ebuild +++ /dev/null @@ -1,95 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -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" -inherit autotools dotnet systemd - -EGIT_COMMIT="e272a2c006211b6b03be2ef5bbb9e3f8fefd0768" -DESCRIPTION="XSP is a small web server that can host ASP.NET pages" -HOMEPAGE="https://www.mono-project.com/ASP.NET" -SRC_URI="https://github.com/mono/xsp/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz" -S="${WORKDIR}/xsp-${EGIT_COMMIT}" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="developer doc test" -RESTRICT="!test? ( test )" - -DEPEND="dev-db/sqlite:3" -RDEPEND=" - ${DEPEND} - acct-group/aspnet - acct-user/aspnet -" - -PATCHES=( - "${FILESDIR}/aclocal-fix.patch" -) - -METAFILETOBUILD=xsp.sln - -src_prepare() { - default - - eaclocal -I build/m4/shamrock -I build/m4/shave ${ACLOCAL_FLAGS} - if test -z "${NO_LIBTOOLIZE}" ; then - _elibtoolize --force --copy - fi - - eautoconf - eautomake --gnu --add-missing --force --copy -} - -src_configure() { - local myeconfargs=( - "--enable-maintainer-mode" - ) - - use test && myeconfargs+=( "--with_unit_tests" ) - use doc || myeconfargs+=( "--disable-docs" ) - - econf "${myeconfargs[@]}" -} - -#src_compile() { -# exbuild xsp.sln - -# if use developer ; then -# exbuild /p:DebugSymbols=True ${METAFILETOBUILD} -# else -# exbuild /p:DebugSymbols=False ${METAFILETOBUILD} -# fi -#} - -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 - newconfd "${PATCHDIR}"/mod-mono-server.confd mod-mono-server - - insinto /etc/xsp4 - doins "${FILESDIR}"/systemd/mono.webapp - insinto /etc/xsp4/conf.d - - # mono-xsp4.service was original name from - # https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=770458;filename=mono-xsp4.service;att=1;msg=5 - # I think that using the same commands as in debian - # systemctl start mono-xsp4.service - # systemctl start mono-xsp4 - # is better than to have shorter command - # systemctl start xsp - # - # insinto /usr/lib/systemd/system - systemd_dounit "${FILESDIR}"/systemd/mono-xsp4.service - - keepdir /var/run/aspnet -} |