Matthias Beyer
2e6df0e458
This patch adds a imag-calendar command which features only a "import" command by now. This can be used to import calendar entries (events) to imag. Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
81 lines
2.2 KiB
Bash
81 lines
2.2 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
echo "Are you sure that the files"
|
|
echo " * 'lib/core/libimagrt/src/version.rs'"
|
|
echo " * 'scripts/version-updated'"
|
|
echo "contain the right version setting?"
|
|
echo "If yes, pass '--I-AM-SURE-VERSION-IS-UPDATED' as parameter"
|
|
|
|
[[ "--I-AM-SURE-VERSION-IS-UPDATED" == $1 ]] || exit 1
|
|
|
|
CRATES=(
|
|
./lib/etc/libimagutil
|
|
./lib/etc/libimagtimeui
|
|
./lib/core/libimagerror
|
|
./lib/core/libimagstore
|
|
./lib/etc/libimaginteraction
|
|
./lib/core/libimagrt
|
|
./lib/entry/libimagentrylink
|
|
./lib/entry/libimagentryurl
|
|
./lib/entry/libimagentrytag
|
|
./lib/entry/libimagentryfilter
|
|
./lib/entry/libimagentrygps
|
|
./lib/entry/libimagentryedit
|
|
./lib/entry/libimagentryview
|
|
./lib/entry/libimagentrydatetime
|
|
./lib/entry/libimagentryutil
|
|
./lib/entry/libimagentrycategory
|
|
./lib/entry/libimagentryref
|
|
./lib/entry/libimagentrymarkdown
|
|
./lib/entry/libimagentryannotation
|
|
./lib/domain/libimagbookmark
|
|
./lib/domain/libimagcalendar
|
|
./lib/domain/libimaghabit
|
|
./lib/domain/libimagnotes
|
|
./lib/domain/libimagcontact
|
|
./lib/domain/libimagdiary
|
|
./lib/domain/libimaglog
|
|
./lib/domain/libimagtimetrack
|
|
./lib/domain/libimagtodo
|
|
./lib/domain/libimagmail
|
|
./lib/domain/libimagwiki
|
|
./bin/domain/imag-habit
|
|
./bin/domain/imag-diary
|
|
./bin/domain/imag-calendar
|
|
./bin/domain/imag-contact
|
|
./bin/domain/imag-notes
|
|
./bin/domain/imag-bookmark
|
|
./bin/domain/imag-timetrack
|
|
./bin/domain/imag-mail
|
|
./bin/domain/imag-todo
|
|
./bin/domain/imag-log
|
|
./bin/domain/imag-wiki
|
|
./bin/core/imag-markdown
|
|
./bin/core/imag-ref
|
|
./bin/core/imag-gps
|
|
./bin/core/imag-diagnostics
|
|
./bin/core/imag-mv
|
|
./bin/core/imag-store
|
|
./bin/core/imag-tag
|
|
./bin/core/imag-grep
|
|
./bin/core/imag-annotate
|
|
./bin/core/imag-link
|
|
./bin/core/imag-view
|
|
./bin/core/imag-init
|
|
./bin/core/imag-edit
|
|
./bin/core/imag-ids
|
|
./bin/core/imag-id-in-collection
|
|
./bin/core/imag-git
|
|
./bin/core/imag-category
|
|
./bin/core/imag-header
|
|
./bin/core/imag-create
|
|
./bin/core/imag
|
|
)
|
|
|
|
for crate in ${CRATES[*]}; do
|
|
echo -e "\t[CARGO][CHECK ]\t$crate"
|
|
RUST_BACKTRACE=1 cargo publish --manifest-path $crate/Cargo.toml || exit 1
|
|
echo -e "\t[Waiting...]"
|
|
sleep 15
|
|
done
|
|
|