Skip to content

Commit

Permalink
Merge branch 'release/1.4.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
djha-skin committed Jun 20, 2017
2 parents 5209e08 + 6ef98f6 commit e7b25ea
Show file tree
Hide file tree
Showing 28 changed files with 174,023 additions and 435 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
/docs/_build/
/.nrepl-history
/test-data/
/test/resources/data/grill/
/test/resources/test-data/
/buildutils/boot
/*.dscard
/*.dsrepo
Expand All @@ -26,6 +28,7 @@ pom.xml.asc
.hgignore
.hg/
/.ve/
foo.edn

*.zip
cmake/
Expand Down
10 changes: 8 additions & 2 deletions TODO
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
- [ ] add tests to grill for different repo merge strategies for both resolve-locations and query-repo
- [ ] Add docs URL to help page.
- [ ] Term hoisting tests both for found packages and present packages
- [ ] Add test for validation checking of present packages in config files
- [ ] Do something about `:any` in APT pkgsystem
- [ ] Docs for `--present-package`
- [ ] Docs for `--package-system`
- [ ] Add tree returned value when `fast` is used.
- [ ] Add option to print said tree when fast is used.
- [ ] Add option to print said tree when fast is used.
- [ ] package systems for query repo.
1 change: 1 addition & 0 deletions apt-depends-strings
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
bash-completion (<< 20060301-0), bash-doc (<= 2.05-1),base-files (>= 2.1.12), debianutils (>= 2.15), dash (>= 0.5.5.1-2.2), libc6 (>= 2.15), libtinfo5 (>= 6), bash-completion (>= 20060301-0)
266 changes: 179 additions & 87 deletions docs/command-reference.rst

Large diffs are not rendered by default.

190 changes: 0 additions & 190 deletions grill

This file was deleted.

17 changes: 12 additions & 5 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
(defproject degasolv/degasolv "1.3.0"
(defproject degasolv/degasolv "1.4.0"
:description "Dependency tracker with an eye toward building and shipping software."
:url "http://github.com/djhaskin987/degasolv"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:main degasolv.cli
:dependencies [
[org.clojure/clojure "1.9.0-alpha14"]
[version-clj "0.1.2"]
[serovers "1.1.0"]
[org.clojure/tools.cli "0.3.5"]
[me.raynes/fs "1.4.6"]
[com.velisco/tagged "0.5.0"]
[tupelo "0.9.31"]
]
:plugins [[lein-print "0.1.0"]]
:test-selectors
Expand All @@ -22,10 +23,16 @@
}
:profiles {
:dev {:dependencies [
[org.clojure/core.match "0.3.0-alpha4"]
[version-clj "0.1.2"
[tupelo "0.9.31"]
[serovers "1.1.0"
:exclusions [org.clojure/clojure]]
]}
:uberjar {:aot [degasolv.cli degasolv.resolver]}
:uberjar {:aot [
degasolv.pkgsys.core
degasolv.pkgsys.apt
degasolv.util
degasolv.resolver
degasolv.cli
]}
}
:target-path "target/%s")
Loading

0 comments on commit e7b25ea

Please sign in to comment.