summaryrefslogtreecommitdiff
path: root/libre
diff options
context:
space:
mode:
authorOmar Vega Ramos <ovruni@gnu.org.pe>2017-07-21 22:52:31 -0500
committerOmar Vega Ramos <ovruni@gnu.org.pe>2017-07-21 22:52:31 -0500
commitd0e73664aca008efc41fb1c569195eb42bd7ba30 (patch)
tree71e532fd2bbc5d9f7b5be9dbe406a059586f0d26 /libre
parent0761c47267038b567c2446623d37b2618ca2ce41 (diff)
downloadabslibre-d0e73664aca008efc41fb1c569195eb42bd7ba30.tar.gz
abslibre-d0e73664aca008efc41fb1c569195eb42bd7ba30.tar.bz2
abslibre-d0e73664aca008efc41fb1c569195eb42bd7ba30.zip
xsp-4.4-1.parabola1: updating version
Diffstat (limited to 'libre')
-rw-r--r--libre/xsp/PKGBUILD13
-rw-r--r--libre/xsp/xsp.conf.d10
-rw-r--r--libre/xsp/xsp.rc.d40
3 files changed, 7 insertions, 56 deletions
diff --git a/libre/xsp/PKGBUILD b/libre/xsp/PKGBUILD
index 2550ba414..6a525e0a8 100644
--- a/libre/xsp/PKGBUILD
+++ b/libre/xsp/PKGBUILD
@@ -1,12 +1,13 @@
# $Id: PKGBUILD 188153 2013-06-10 16:36:32Z daniel $
# Maintainer (Arch): Daniel Isenmann <daniel@archlinux.org>
# Contributor (Arch): Tobias Kieslich <tobias@justdreams.de>
+# Maintainer: Omar Vega Ramos <ovruni@gnu.org.pe>
pkgname=xsp
-pkgver=3.0.11
+pkgver=4.4
pkgrel=1.parabola1
pkgdesc="A simple webserver based on mono - provides ASP.NET support (Parabola rebranded)"
-arch=('i686' 'x86_64' 'mips64el' 'armv7h')
+arch=('i686' 'x86_64' 'armv7h')
license=('custom')
url="http://www.go-mono.com"
depends=('mono' 'sqlite')
@@ -14,12 +15,12 @@ options=(!makeflags)
replaces=(${pkgname}-parabola)
conflicts=(${pkgname}-parabola)
install=${pkgname}.install
-source=(https://github.com/mono/xsp/archive/${pkgver}.tar.gz
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/mono/xsp/archive/${pkgver}.tar.gz
${pkgname}.webapp
${pkgname}.service)
-md5sums=('6a694d5e87ebe57e532ec80a16b6966d'
- 'c917c07f68b945691506c29750db482f'
- '9d83bd36d209f8d36a11dfbc4fa50819')
+sha256sums=('231d05550311a47b805331326078f156aa673ae542d2edeb14cc5ab8c34eb1a2'
+ 'bcb208c3946ef49ae431a7be50c8effeb61228574b56d36e2c3c1cd9fe04fe02'
+ '4760b3fa782e62890291c7d31e393ee51d18015f91a6fc21b4a928bae4f22f66')
build() {
# get rid of that .wapi errors; thanks to brice
diff --git a/libre/xsp/xsp.conf.d b/libre/xsp/xsp.conf.d
deleted file mode 100644
index b100baef1..000000000
--- a/libre/xsp/xsp.conf.d
+++ /dev/null
@@ -1,10 +0,0 @@
-# xsp options
-
-
-# note that is just the helping app for mod_mono if you like production like
-# quality
-# xsp is for ASP testing mainly -- read the manpage for xsp to know what
-# options are available. Parabola will provide xsp configured by a .webapp
-# configuration file which rests in /etc/xsp
-
-XSP_PARAMS="--appconfigdir /etc/xsp"
diff --git a/libre/xsp/xsp.rc.d b/libre/xsp/xsp.rc.d
deleted file mode 100644
index b4fcda15c..000000000
--- a/libre/xsp/xsp.rc.d
+++ /dev/null
@@ -1,40 +0,0 @@
-#!/bin/bash
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-
-# source application-specific settings
-[ -f /etc/conf.d/xsp ] && . /etc/conf.d/xsp
-
-PID=`pidof -o %PPID /usr/bin/mono`
-case "$1" in
- start)
- stat_busy "Starting Xsp Daemon"
- if [ -z "$PID" ]; then
- /usr/bin/xsp $XSP_PARAMS --nonstop &> /dev/null &
- fi
- if [ ! -z "$PID" -o $? -gt 0 ]; then
- stat_fail
- else
- add_daemon xsp
- stat_done
- fi
- ;;
- stop)
- stat_busy "Stopping Xsp Daemon"
- [ ! -z "$PID" ] && kill $PID &> /dev/null
- if [ $? -gt 0 ]; then
- stat_fail
- else
- rm_daemon xsp
- stat_done
- fi
- ;;
- restart)
- $0 stop
- sleep 1
- $0 start
- ;;
- *)
- echo "usage: $0 {start|stop|restart}"
-esac