summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2017-09-28 17:48:00 +0200
committerMatthias Beyer <mail@beyermatthias.de>2017-09-28 17:54:03 +0200
commit250fd0c8bc1b754baabf432286f30c82924c9dd8 (patch)
treee8840c1a7193d793ec6cdb0ebe2a862354988d1a
parent046eb5eca33a2e8e4d77cc73aa0e59bc5743d2f1 (diff)
Remove .imag-documentation, adapt travis config
-rw-r--r--.imag-documentation/Cargo.toml43
-rw-r--r--.imag-documentation/src/lib.rs59
-rw-r--r--.travis.yml7
-rw-r--r--Cargo.toml1
4 files changed, 0 insertions, 110 deletions
diff --git a/.imag-documentation/Cargo.toml b/.imag-documentation/Cargo.toml
deleted file mode 100644
index 712803cb..00000000
--- a/.imag-documentation/Cargo.toml
+++ /dev/null
@@ -1,43 +0,0 @@
-[package]
-name = "imag-documentation"
-version = "0.5.0"
-authors = ["Matthias Beyer <mail@beyermatthias.de>"]
-
-description = "Documentation crate of the imag distribution. Does not contain functionality"
-
-keywords = ["imag", "PIM", "personal", "information", "management"]
-readme = "../../../README.md"
-license = "LGPL-2.1"
-
-documentation = "https://matthiasbeyer.github.io/imag/imag_documentation/index.html"
-repository = "https://github.com/matthiasbeyer/imag"
-homepage = "http://imag-pim.org"
-
-[dependencies]
-
-libimagbookmark = { version = "0.5.0", path = "../lib/domain/libimagbookmark" }
-libimagcounter = { version = "0.5.0", path = "../lib/domain/libimagcounter" }
-libimagdiary = { version = "0.5.0", path = "../lib/domain/libimagdiary" }
-libimagentryannotation = { version = "0.5.0", path = "../lib/entry/libimagentryannotation" }
-libimagentrycategory = { version = "0.5.0", path = "../lib/entry/libimagentrycategory" }
-libimagentrydatetime = { version = "0.5.0", path = "../lib/entry/libimagentrydatetime" }
-libimagentryedit = { version = "0.5.0", path = "../lib/entry/libimagentryedit" }
-libimagentryfilter = { version = "0.5.0", path = "../lib/entry/libimagentryfilter" }
-libimagentrygps = { version = "0.5.0", path = "../lib/entry/libimagentrygps" }
-libimagentrylink = { version = "0.5.0", path = "../lib/entry/libimagentrylink" }
-libimagentrylist = { version = "0.5.0", path = "../lib/entry/libimagentrylist" }
-libimagentrymarkdown = { version = "0.5.0", path = "../lib/entry/libimagentrymarkdown" }
-libimagentryref = { version = "0.5.0", path = "../lib/entry/libimagentryref" }
-libimagentrytag = { version = "0.5.0", path = "../lib/entry/libimagentrytag" }
-libimagentryview = { version = "0.5.0", path = "../lib/entry/libimagentryview" }
-libimagerror = { version = "0.5.0", path = "../lib/core/libimagerror" }
-libimaginteraction = { version = "0.5.0", path = "../lib/etc/libimaginteraction" }
-libimagmail = { version = "0.5.0", path = "../lib/domain/libimagmail" }
-libimagnotes = { version = "0.5.0", path = "../lib/domain/libimagnotes" }
-libimagrt = { version = "0.5.0", path = "../lib/core/libimagrt" }
-libimagstore = { version = "0.5.0", path = "../lib/core/libimagstore" }
-libimagtimetrack = { version = "0.5.0", path = "../lib/domain/libimagtimetrack" }
-libimagtimeui = { version = "0.5.0", path = "../lib/etc/libimagtimeui" }
-libimagtodo = { version = "0.5.0", path = "../lib/domain/libimagtodo" }
-libimagutil = { version = "0.5.0", path = "../lib/etc/libimagutil" }
-
diff --git a/.imag-documentation/src/lib.rs b/.imag-documentation/src/lib.rs
deleted file mode 100644
index 63eafb5f..00000000
--- a/.imag-documentation/src/lib.rs
+++ /dev/null
@@ -1,59 +0,0 @@
-//
-// imag - the personal information management suite for the commandline
-// Copyright (C) 2015, 2016 Matthias Beyer <mail@beyermatthias.de> and contributors
-//
-// This library is free software; you can redistribute it and/or
-// modify it under the terms of the GNU Lesser General Public
-// License as published by the Free Software Foundation; version
-// 2.1 of the License.
-//
-// This library is distributed in the hope that it will be useful,
-// but WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-// Lesser General Public License for more details.
-//
-// You should have received a copy of the GNU Lesser General Public
-// License along with this library; if not, write to the Free Software
-// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
-//
-
-//! # imag
-//!
-//! This is the _developer_ documentation for the imag personal information management suite for the
-//! commandline.
-//!
-//! For the user documentation, have a look
-//! [at the 'doc' subtree in the repository](http://git.imag-pim.org/imag/tree/doc)
-//! which can be compiled to HTML or PDF using [pandoc](pandoc.org) (and might be a bit outdated as
-//! imag is not yet released for use).
-//!
-//! ## General
-//!
-//! _Some_ things from the user documentation might be helpful for developers as well, so make sure
-//! to at least skim over it if you want to contribute to the imag source.
-//!
-//! Also make sure you had a look at
-//! [the CONTRIBUTING](http://git.imag-pim.org/imag/tree/CONTRIBUTING.md)
-//! file and [the developers certificate of origin](http://developercertificate.org/), which we also
-//! have in the `CONTRIBUTING` file, by the way.
-//!
-//! ## Contributing
-//!
-//! All things relevant for contributing are descripbed in
-//! [the CONTRIBUTING file](http://git.imag-pim.org/imag/tree/CONTRIBUTING.md),
-//! but here are some additional notes:
-//!
-//! * We have a `editorconfig` file in the repository. Would be nice if you'd
-//! [use it](http://editorconfig.org/)
-//! * We have [default.nix](http://git.imag-pim.org/imag/tree/default.nix) file, which can be used
-//! to install dependencies in `nix-shell` environments. If you have a installation of the nix
-//! package manager, feel free to use this opportunity to be _pure_.
-//! * If you want to play around with imag, use the
-//! [imagrc.toml](http://git.imag-pim.org/imag/tree/imagrc.toml)
-//! file from the repository, we try to keep it up to date.
-//! * You can use [the Makefile](http://git.imag-pim.org/imag/tree/Makefile) to build things (if you
-//! have all dependencies and cargo/rustc installed, of course).
-//! * It is a real advantage to use `cargo-check` when developing things - it speeds you up, beleive
-//! me!
-//!
-
diff --git a/.travis.yml b/.travis.yml
index 8cd2c429..c6bf473d 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -42,13 +42,6 @@ addons:
sources:
- kalakris-cmake
-after_success:
-- |
- pushd .imag-documentation &&
- travis-cargo --only stable doc &&
- travis-cargo --only stable doc-upload
- popd
-
notifications:
email:
on_success: never
diff --git a/Cargo.toml b/Cargo.toml
index 1f2b6dee..cfa4595f 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,5 @@
[workspace]
members = [
- ".imag-documentation",
"bin/core/imag",
"bin/core/imag-gps",
"bin/core/imag-grep",