diff options
author | Fabian Affolter <fabian@affolter-engineering.ch> | 2011-07-03 13:22:24 -0500 |
---|---|---|
committer | William Pitcock <nenolod@dereferenced.org> | 2011-07-03 13:22:24 -0500 |
commit | 7a953043a9dd59d4a9303ea73fba68ef72014d06 (patch) | |
tree | be3488d4bd400231cac723a001a600cad1514238 /testing | |
parent | 981187305e31ebf67a52b0d3e10a1be040a42be4 (diff) | |
download | aports-7a953043a9dd59d4a9303ea73fba68ef72014d06.tar.bz2 aports-7a953043a9dd59d4a9303ea73fba68ef72014d06.tar.xz |
Initial APKBUILD for mr
Package description:
The mr command can checkout, update, or perform other actions on
a set of repositories as if they were one combined respository.
It supports any combination of subversion, git, cvs, mercurial,
bzr, darcs, cvs, and fossil repositories, and support for other
revision control systems can easily be added.
It is extremely configurable via simple shell scripting. Some
examples of things it can do include:
- Update a repository no more frequently than once every twelve hours.
- Run an arbitrary command before committing to a repository.
- When updating a git repository, pull from two different upstreams
and merge the two together.
- Run several repository updates in parallel, greatly speeding up the
update process.
- Remember actions that failed due to a laptop being offline, so they
can be retried when it comes back online.
Diffstat (limited to 'testing')
-rw-r--r-- | testing/mr/APKBUILD | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/testing/mr/APKBUILD b/testing/mr/APKBUILD new file mode 100644 index 000000000..393d13e83 --- /dev/null +++ b/testing/mr/APKBUILD @@ -0,0 +1,45 @@ +# Contributor: Fabian Affolter <fabian@affolter-engineering.ch> +# Maintainer: +pkgname=mr +pkgver=1.04 +pkgrel=0 +pkgdesc="A multiple repository management tool" +url="http://kitenet.net/~joey/code/mr/" +arch="noarch" +license="GPL2+" +depends="perl" +depends_dev="" +makedepends="" +install="" +subpackages="$pkgname-doc" +source="http://ftp.de.debian.org/debian/pool/main/m/mr/"$pkgname"_"$pkgver".tar.gz" + +_builddir="$srcdir"/$pkgname + +build() { + cd "$_builddir" + make || return 1 +} + +package() { + cd "$_builddir" + install -Dm755 $pkgname "$pkgdir"/usr/bin/$pkgname || return 1 + cd "$_builddir"/lib + for file in git-fake-bare git-svn unison; do + install -Dpm 0644 $file \ + "$pkgdir"/usr/share/$pkgname/$file || return 1 + done +} + +doc() { + cd "$_builddir" + mkdir -p "$subpkgdir"/usr/share/man || return 1 + mv "$_builddir"/*.1 "$subpkgdir"/usr/share/man/ || return 1 + # Sample configuration files + for file in mrconfig mrconfig.complex; do + install -Dpm 0644 $file \ + "$subpkgdir"/usr/share/doc/$pkgname/$file || return 1 + done +} + +md5sums="9ddd9e5b3a90bcb08ac773ddb1cea512 mr_1.04.tar.gz" |