diff options
author | Florian Pritz <bluewind@xinu.at> | 2012-08-22 14:04:08 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2012-08-22 15:40:18 +0200 |
commit | 996c0b124b4fdcdf4ded71fb1c4a5bb8e8784f8f (patch) | |
tree | 1fc90018372dd501f155e4b48609a8e613087d8a /db-update | |
parent | 801f7742004139229866b911634679143f2c9404 (diff) | |
download | dbscripts-gitpackages.tar.gz dbscripts-gitpackages.tar.xz |
WIP: switch from svn to gitgitpackages
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'db-update')
-rwxr-xr-x | db-update | 21 |
1 files changed, 18 insertions, 3 deletions
@@ -38,9 +38,6 @@ for repo in ${repos[@]}; do if ${REQUIRE_SIGNATURE} && ! check_pkgsig "${pkg}.sig"; then die "Package ${repo}/${pkg##*/} does not have a valid signature" fi - if ! check_pkgsvn "${pkg}" "${repo}"; then - die "Package ${repo}/${pkg##*/} is not consistent with svn repository" - fi if ! check_pkgrepos "${pkg}"; then die "Package ${repo}/${pkg##*/} already exists in another repository" fi @@ -53,6 +50,9 @@ for repo in ${repos[@]}; do fi done +# TODO: FIXME: check if package has switched between i686/x86_64 and any +# and remove the older one if it did (commitpkg did this) + for repo in ${repos[@]}; do msg "Updating [${repo}]..." any_pkgs=($(getpkgfiles "${STAGING}/${repo}/"*-any${PKGEXT} 2>/dev/null)) @@ -61,6 +61,10 @@ for repo in ${repos[@]}; do arch_pkgs=($(getpkgfiles "${STAGING}/${repo}/"*-${pkgarch}${PKGEXT} 2>/dev/null)) for pkg in ${arch_pkgs[@]} ${any_pkgs[@]}; do pkgfile="${pkg##*/}" + pkgver="$(getpkgver "$pkg")" + pkgbase="$(getpkgbase "$pkg")" + pkgname="$(getpkgname "$pkg")" + msg2 "${pkgfile} (${pkgarch})" # any packages might have been moved by the previous run if [ -f "${pkg}" ]; then @@ -75,6 +79,17 @@ for repo in ${repos[@]}; do ln -s "../../../${PKGPOOL}/${pkgfile}.sig" "$FTP_BASE/$repo/os/${pkgarch}" fi add_pkgs[${#add_pkgs[*]}]=${pkgfile} + + cd "${GITREPO}" + versionfile="${GITREPO}/${pkgarch}/${repo}/${pkgbase}" + mkdir -p "${versionfile%/*}" + echo "${pkgver}" > "${versionfile}" + git add "${versionfile}" + if [[ "${pkgbase}" == "${pkgname}" ]]; then + git commit -m "$repo/$pkgbase $pkgver $pkgarch" + else + git commit -m "$repo/$pkgbase/$pkgname $pkgver $pkgarch" + fi done if [ ${#add_pkgs[@]} -ge 1 ]; then arch_repo_add "${repo}" "${pkgarch}" ${add_pkgs[@]} |