summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Orgis2007-10-07 15:58:16 +0200
committerEric Sandall2007-10-12 22:16:51 -0700
commit90853d1e5305a370f295124cde5dec591febfd56 (patch)
treecdaf8ea6dbc1d9396a0e679031e34fcb3bd52f77
parent87b86acb22b65275002d1e1964593ac452d9f681 (diff)
unsermake: switch to a mirrored tarball; SVN is dead
-rwxr-xr-xdevel/unsermake/DEPENDS1
-rwxr-xr-xdevel/unsermake/DETAILS21
-rwxr-xr-xdevel/unsermake/DOWNLOAD43
-rw-r--r--devel/unsermake/HISTORY7
-rwxr-xr-xdevel/unsermake/PREPARE1
5 files changed, 16 insertions, 57 deletions
diff --git a/devel/unsermake/DEPENDS b/devel/unsermake/DEPENDS
index 144cba7ef2..867b4d4bb0 100755
--- a/devel/unsermake/DEPENDS
+++ b/devel/unsermake/DEPENDS
@@ -1,2 +1 @@
-depends subversion &&
depends python
diff --git a/devel/unsermake/DETAILS b/devel/unsermake/DETAILS
index 706895d3b1..2de8485de1 100755
--- a/devel/unsermake/DETAILS
+++ b/devel/unsermake/DETAILS
@@ -1,20 +1,17 @@
SPELL=unsermake
-if [[ $SVN_AUTOUPDATE = y ]]; then
- VERSION=$(date +%Y%m%d)
-else
- VERSION=svn
-fi
- SOURCE=$SPELL-$VERSION.tar.bz2
- SOURCE_IGNORE=volatile
-SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL
- SOURCE_URL[0]=svn://anonsvn.kde.org/home/kde/trunk/kdenonbeta/$SPELL:$SPELL
- FORCE_DOWNLOAD=on
+ VERSION=20051117
+ SOURCE=$SPELL-$VERSION.tar.gz
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
+ SOURCE_HASH=sha512:9535178e2383d0aa0d9410d501f4f2a01d3f072aa2a85340cf730616e683004dcccf689520d272cd21cfe689196ae5033832a937ac680af690741e275aa080a0
+ SOURCE_URL[0]=http://sobukus.de/smgl/$SOURCE
WEB_SITE=http://wiki.kde.org/unsermake
LICENSE[0]=GPL
DOCS="doc/*.{txt,pdf,sxi}"
ENTERED=20050730
KEYWORDS="kde devel"
- SHORT="a replacement for automake, used by the KDE project"
+ SHORT="a replacement for automake, (been) used by the KDE project"
cat << EOF
-a replacement for automake, used by the KDE project
+Unsermake is a replacement for automake, written for use by the KDE project.
+Please note that it is unmaintained and just here to support build of spells
+still needing it.
EOF
diff --git a/devel/unsermake/DOWNLOAD b/devel/unsermake/DOWNLOAD
deleted file mode 100755
index b21c9822f6..0000000000
--- a/devel/unsermake/DOWNLOAD
+++ /dev/null
@@ -1,43 +0,0 @@
-function url_r_svn_crack() {
-
- URL=`url_strip_prefix "$1" svn`
- R_SVN_ROOT=`echo $URL | sed "s#\(^[^/]*[^:]*\):.*#\1#"`
- local R_SVN_MODULE_TAG=`echo $URL | sed "s#^[^/]*[^:]*\(.*\)#\1#"`
- R_SVN_MODULE=`echo $R_SVN_MODULE_TAG | cut -d : -f2`
- local R_SVN_TAGNAME=`echo $R_SVN_MODULE_TAG | cut -d : -f3`
- R_SVN_TAG=${R_SVN_TAGNAME:-HEAD}
-
-}
-
-url_r_svn_crack ${SOURCE_URL} &&
-message "${MESSAGE_COLOR}Starting SVN checkout of" \
- "${FILE_COLOR}${SOURCE}${MESSAGE_COLOR}...${DEFAULT_COLOR}" &&
-if [[ -f $SOURCE_CACHE/${SOURCE} ]]
-then
- message "${MESSAGE_COLOR}Previous source found unpacking...${DEFAULT_COLOR}" &&
- tar -jxf $SOURCE_CACHE/${SOURCE} &&
- cd $R_SVN_MODULE &&
- message "${MESSAGE_COLOR}Running SVN update...${DEFAULT_COLOR}" &&
- svn \
- --non-interactive \
- update \
- -r${R_SVN_TAG} &&
- cd .. &&
- message "${MESSAGE_COLOR}Done...${DEFAULT_COLOR}"
-else
- message "${MESSAGE_COLOR}Running initial SVN checkout...${DEFAULT_COLOR}" &&
- svn \
- --non-interactive \
- checkout \
- -r${R_SVN_TAG} \
- svn://${R_SVN_ROOT} \
- ${R_SVN_MODULE} &&
- message "${MESSAGE_COLOR}Done...${DEFAULT_COLOR}"
-fi &&
-message "${MESSAGE_COLOR}Generating tarball...${DEFAULT_COLOR}" &&
-tar -jcf \
- ${SOURCE} \
- ${R_SVN_MODULE} &&
-cp ${SOURCE} ${SOURCE_CACHE}/${SOURCE} &&
-rm ${SOURCE} &&
-message "${MESSAGE_COLOR}SVN Checkout complete...${DEFAULT_COLOR}"
diff --git a/devel/unsermake/HISTORY b/devel/unsermake/HISTORY
index 0065a8589d..7c3f66be75 100644
--- a/devel/unsermake/HISTORY
+++ b/devel/unsermake/HISTORY
@@ -1,3 +1,10 @@
+2007-10-07 Thomas Orgis <sobukus@sourcemage.org>
+ * DETAILS, DOWNLOAD, DEPENDS, PREPARE: switch to a mirrored tarball
+ (initially pulled from http://ftp.de.debian.org/debian/pool/main/
+ u/unsermake/unsermake_20051117.dfsg.orig.tar.gz) since svn repo is dead.
+ Unsermake seems to be dead, but there is at least one spell (kdenlive)
+ needing unsermake, so let's keep it.
+
2006-07-09 Juuso Alasuutari <iuso@sourcemage.org>
* DETAILS: Switched entirely to use svn, removed BUILD_API &
UPDATED, fixed WEB_SITE.
diff --git a/devel/unsermake/PREPARE b/devel/unsermake/PREPARE
deleted file mode 100755
index f17a48d84f..0000000000
--- a/devel/unsermake/PREPARE
+++ /dev/null
@@ -1 +0,0 @@
-config_query SVN_AUTOUPDATE "Update to the latest version on every cast?" n