Hi, please have a look at the imported KTechLab source code on the KDE infrastructure. The web-based repository browser is here:
https://quickgit.kde.org/?p=scratch%2Fpadrah%2Fktechlab.git The git URLs for the repository are the following: git://anongit.kde.org/scratch/padrah/ktechlab (fetch) g...@git.kde.org:scratch/padrah/ktechlab (push) Some branches should be actually tags (ktechlab-*, v-*), but it was easier for me to have them as branches. Adding tags should be trivial. For the reference, I'm pasting below the script I've used for fixing-up the repository. Have fun, Zoltan -----8<---- #!/bin/sh set -e set -x ( cd ktechlab git filter-branch -f \ --env-filter ' n=$GIT_AUTHOR_NAME m=$GIT_AUTHOR_EMAIL case ${GIT_AUTHOR_NAME} in "AlonzoTG") n="Alan Grimes" ; m="alonz...@users.sf.net" ;; "jason_lucas") n="Jason Lucas" ; m="jason_lu...@users.sf.net" ;; "jb-good") n="Julian Bäume" ; m="jul...@svg4all.de" ;; "johnyb") n="Julian Bäume" ; m="jul...@svg4all.de" ;; "Julian Baeume") n="Julian Bäume" ; m="jul...@svg4all.de" ;; "zoltan_padrah") n="Zoltan Padrah" ; m="zoltan_pad...@users.sf.net" ;; "Zoltan Padrah") n="Zoltan Padrah" ; m="zoltan_pad...@users.sf.net" ;; "Zoltan P") n="Zoltan Padrah" ; m="zoltan_pad...@users.sf.net" ;; "zoltanp") n="Zoltan Padrah" ; m="zoltan_pad...@users.sf.net" ;; esac export GIT_AUTHOR_NAME="$n" export GIT_AUTHOR_EMAIL="$m" export GIT_COMMITTER_NAME="$n" export GIT_COMMITTER_EMAIL="$m" ' \ --tree-filter ' if [ -f src/electronics/models/transistors.lib ] ; then mv src/electronics/models/transistors.lib src/electronics/models/transistors_lib.txt fi rm -f matrixtest/*.o rm -f matrixtest/*.pro~ rm -f matrixtest/*.cpp~ rm -f matrixtest/*.moc rm -f matrixtest/*.h~ rm -f matrixtest/tested/*.*~ rm -f po/*.gmo if [ -f po/sk.po ] ; then dos2unix po/sk.po fi find . -type f -not -path "*/\.*" -exec sed -i "s/transistors.lib/transitors_lib.txt/g" {} + ' #' ) --->8---- ------------------------------------------------------------------------------ Check out the vibrant tech community on one of the world's most engaging tech sites, SlashDot.org! http://sdm.link/slashdot _______________________________________________ Ktechlab-devel mailing list Ktechlab-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/ktechlab-devel