Skip to Content.
Sympa Menu

perfsonar-dev - perfsonar: r3795 - trunk/packaging/deb/perfsonar-exist/debian

Subject: perfsonar development work

List archive

perfsonar: r3795 - trunk/packaging/deb/perfsonar-exist/debian


Chronological Thread 
  • From:
  • To:
  • Subject: perfsonar: r3795 - trunk/packaging/deb/perfsonar-exist/debian
  • Date: Fri, 25 Apr 2008 08:53:17 -0400

Author: gijs
Date: 2008-04-25 08:53:17 -0400 (Fri, 25 Apr 2008)
New Revision: 3795

Modified:
trunk/packaging/deb/perfsonar-exist/debian/README
trunk/packaging/deb/perfsonar-exist/debian/changelog
trunk/packaging/deb/perfsonar-exist/debian/control
trunk/packaging/deb/perfsonar-exist/debian/copyright
trunk/packaging/deb/perfsonar-exist/debian/files
trunk/packaging/deb/perfsonar-exist/debian/postinst
trunk/packaging/deb/perfsonar-exist/debian/postrm
trunk/packaging/deb/perfsonar-exist/debian/watch
Log:


Modified: trunk/packaging/deb/perfsonar-exist/debian/README
===================================================================
--- trunk/packaging/deb/perfsonar-exist/debian/README 2008-04-25 12:52:50
UTC (rev 3794)
+++ trunk/packaging/deb/perfsonar-exist/debian/README 2008-04-25 12:53:17
UTC (rev 3795)
@@ -1,6 +1,8 @@
The Debian Package perfsonar-exist
----------------------------

-Comments regarding the Package
+This is the exist perfSONAR package, installed in
/opt/perfsonar/services/exist.
+A symlink is created from /opt/perfsonar/tomcat/webapps/exist to this
install folder
+so exist is available for tomcat servlets.

-- Gijs Molenaar
<>
Thu, 24 Apr 2008 16:52:00 +0200

Modified: trunk/packaging/deb/perfsonar-exist/debian/changelog
===================================================================
--- trunk/packaging/deb/perfsonar-exist/debian/changelog 2008-04-25
12:52:50 UTC (rev 3794)
+++ trunk/packaging/deb/perfsonar-exist/debian/changelog 2008-04-25
12:53:17 UTC (rev 3795)
@@ -1,4 +1,4 @@
-perfsonar-exist (1.1.1) unstable; urgency=low
+perfsonar-exist (1.1.1-1) unstable; urgency=low

* Initial Release.


Modified: trunk/packaging/deb/perfsonar-exist/debian/control
===================================================================
--- trunk/packaging/deb/perfsonar-exist/debian/control 2008-04-25 12:52:50
UTC (rev 3794)
+++ trunk/packaging/deb/perfsonar-exist/debian/control 2008-04-25 12:53:17
UTC (rev 3795)
@@ -3,10 +3,10 @@
Priority: extra
Maintainer: Gijs Molenaar
<>
Build-Depends: debhelper (>= 5)
-Standards-Version: 3.7.2
+Standards-Version: 3.7.3

Package: perfsonar-exist
Architecture: all
Depends: ${shlibs:Depends}, ${misc:Depends}, perfsonar-tomcat
-Description: <insert up to 60 chars description>
- <insert long description, indented with spaces>
+Description: tomcat exist perfSONAR edition
+ Open Source Native XML Database for Java

Modified: trunk/packaging/deb/perfsonar-exist/debian/copyright
===================================================================
--- trunk/packaging/deb/perfsonar-exist/debian/copyright 2008-04-25
12:52:50 UTC (rev 3794)
+++ trunk/packaging/deb/perfsonar-exist/debian/copyright 2008-04-25
12:53:17 UTC (rev 3795)
@@ -1,40 +1,11 @@
This package was debianized by Gijs Molenaar
<>
on
Thu, 24 Apr 2008 16:52:00 +0200.

-It was downloaded from <url://example.com>
+It was downloaded from http://exist.sourceforge.net/

-Upstream Author(s):
-
- <put author's name and email here>
- <likewise for another author>
-
-Copyright:
-
- <Copyright (C) YYYY Name OfAuthor>
- <likewise for another author>
-
License:

- This package is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
-
- This package is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this package; if not, write to the Free Software
- Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ GNU LGPL

On Debian systems, the complete text of the GNU General
Public License can be found in `/usr/share/common-licenses/GPL'.
-
-The Debian packaging is (C) 2008, Gijs Molenaar
<>
and
-is licensed under the GPL, see above.
-
-
-# Please also look if there are files or directories which have a
-# different copyright/license attached and list them here.

Modified: trunk/packaging/deb/perfsonar-exist/debian/files
===================================================================
--- trunk/packaging/deb/perfsonar-exist/debian/files 2008-04-25 12:52:50
UTC (rev 3794)
+++ trunk/packaging/deb/perfsonar-exist/debian/files 2008-04-25 12:53:17
UTC (rev 3795)
@@ -1 +1 @@
-perfsonar-exist_1.1.1_all.deb web extra
+perfsonar-exist_1.1.1-1_all.deb web extra

Modified: trunk/packaging/deb/perfsonar-exist/debian/postinst
===================================================================
--- trunk/packaging/deb/perfsonar-exist/debian/postinst 2008-04-25 12:52:50
UTC (rev 3794)
+++ trunk/packaging/deb/perfsonar-exist/debian/postinst 2008-04-25 12:53:17
UTC (rev 3795)
@@ -20,6 +20,7 @@

case "$1" in
configure)
+ ln -sf /opt/perfsonar/services/exist /opt/perfsonar/tomcat/webapps/exist
|| true
;;

abort-upgrade|abort-remove|abort-deconfigure)

Modified: trunk/packaging/deb/perfsonar-exist/debian/postrm
===================================================================
--- trunk/packaging/deb/perfsonar-exist/debian/postrm 2008-04-25 12:52:50
UTC (rev 3794)
+++ trunk/packaging/deb/perfsonar-exist/debian/postrm 2008-04-25 12:53:17
UTC (rev 3795)
@@ -20,8 +20,13 @@


case "$1" in
-
purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
+ purge)
+ rm -rf /opt/perfsonar/tomcat/webapps/exist
;;
+
+
+ remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
+ ;;

*)
echo "postrm called with unknown argument \`$1'" >&2

Modified: trunk/packaging/deb/perfsonar-exist/debian/watch
===================================================================
--- trunk/packaging/deb/perfsonar-exist/debian/watch 2008-04-25 12:52:50
UTC (rev 3794)
+++ trunk/packaging/deb/perfsonar-exist/debian/watch 2008-04-25 12:53:17
UTC (rev 3795)
@@ -17,6 +17,6 @@
#ftp://ftp.example.com/pub/perfsonar-exist-(.*)\.tar\.gz debian uupdate

# Uncomment to find new files on sourceforge, for debscripts >= 2.9
-# http://sf.net/perfsonar-exist/perfsonar-exist-(.*)\.tar\.gz
+http://sf.net/exist/ exist-(.*)-newcore\.war





  • perfsonar: r3795 - trunk/packaging/deb/perfsonar-exist/debian, svnlog, 04/25/2008

Archive powered by MHonArc 2.6.16.

Top of Page