Skip to content

Commit

Permalink
Updated pkgbuild and todo for next release.
Browse files Browse the repository at this point in the history
  • Loading branch information
FedeDP committed Jun 16, 2019
1 parent 0a20a30 commit 38af195
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 12 deletions.
4 changes: 2 additions & 2 deletions Extra/Arch/PKGBUILD
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Maintainer: Federico Di Pierro <nierro92@gmail.com>

pkgname=libmodule
pkgver=4.1.0
pkgver=4.2.0
pkgrel=1
pkgdesc="C linux library to build simple and modular projects"
arch=(any)
Expand All @@ -10,7 +10,7 @@ license=(MIT)
depends=()
makedepends=(git cmake)
source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
sha256sums=("14294e63e3ff26ddbf80ca359e3d78ea3a1207692fc137a8020ec1fbe0ec47bd")
sha256sums=("8bab8e23e324df7ffec6377a966ff71ced2c7de1bc59dfd806748fd9fcf5c51f")

prepare() {
cd "${srcdir}/${pkgname}-${pkgver}"
Expand Down
13 changes: 3 additions & 10 deletions TODO.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,8 @@
## 4.2.0

### Generic
- [x] Avoid calling evaluate_module when registering a new module. Call evaluate_module on each module when loop_start() is called.
- [x] Fix default values for pubsub_fd[] for each module
- [x] Update tests (module_start should now be called upon registering)
- [x] Fix MultiCtx sample (signalfd multithread crazyness)
- [x] Update doc (changed behaviours!)
- [x] Drop mcontext -> num_fds

## 4.3.0

### Generic
- [ ] Add some diagnostic API, eg: modules_dump() (to dump each module's state), module_info() ... ??

### Submodules
- [ ] SUBMODULE(B, A) calls module_register(B) and module_binds_to(A);
- [ ] SUBMODULE SHOULD BE STARTED later (after all MODULES) -> ctor3 (this way it'll support only level 1 submodules though (ie: a submodule cannot have submodules))
Expand Down

0 comments on commit 38af195

Please sign in to comment.