OpenSDE Framework (without history before r20070)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

72 lines
2.2 KiB

  1. #!/bin/sh
  2. # --- SDE-COPYRIGHT-NOTE-BEGIN ---
  3. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  4. #
  5. # Filename: bin/sde-package
  6. # Copyright (C) 2006 - 2007 The OpenSDE Project
  7. #
  8. # More information can be found in the files COPYING and README.
  9. #
  10. # This program is free software; you can redistribute it and/or modify
  11. # it under the terms of the GNU General Public License as published by
  12. # the Free Software Foundation; version 2 of the License. A copy of the
  13. # GNU General Public License can be found in the file COPYING.
  14. # --- SDE-COPYRIGHT-NOTE-END ---
  15. #Alias: pkg
  16. #Description: Package related tasks
  17. set -e
  18. [ -n "$SDEROOT" ] ||
  19. export SDEROOT=$( cd "${0%/*}/.."; pwd -P )
  20. . $SDEROOT/lib/libsde.in
  21. . $SDEROOT/lib/sde-package.in
  22. package_usage() {
  23. cat <<EOT
  24. Usage: sde package <action> <arguments> (Alias: pkg)
  25. update [--location <url>] [<package>] [<version>] (Alias: up)
  26. Updates a package (which is autodetected if you are on it) to a
  27. given version, or simply download and regenerate checksums.
  28. Using --location you are able to specify which will be the new
  29. download location for this update.
  30. update [--no-location] --md5 <url> (Alias: up)
  31. Updates a set of packages based on a remote .md5 file
  32. Using --no-location you tell the tool to not assume the download
  33. location of the md5 file for the updates but keep their individual
  34. download locations.
  35. new [<repository>/]<package> <download> [...]
  36. Creates a new package based on a template and the given download
  37. locations.
  38. new -fm [<repository>/]<package> [<name_at_freshmeat>]
  39. Creates a new package based on the information available at
  40. freshmeat <http://freshmeat.net> from it.
  41. new -deb [options] [repo/]<package>
  42. Creates a pkg from packages.debian.org. For more details:
  43. sde pkg new -deb --help
  44. EOT
  45. }
  46. # what action was requested?
  47. if [ $# -eq 0 ]; then
  48. action="help"
  49. else
  50. action="$1"; shift
  51. fi
  52. case "$action" in
  53. help|--help) package_usage ;;
  54. up|update) . $SDEROOT/lib/sde-package/update.in
  55. package_update "$@" ;;
  56. new) . $SDEROOT/lib/sde-package/new.in
  57. package_new "$@" ;;
  58. *) echo_warning "'$COLOR_MESSAGE$action$COLOR_NORMAL' not understood by the" \
  59. "$COLOR_MESSAGE$module$COLOR_NORMAL module"
  60. package_usage
  61. exit 1 ;;
  62. esac