[ANN] deps-ancient - are your deps outdated?

2018-11-01 Thread Erik Assum
I’m happy to announce deps-ancient https://github.com/slipset/deps-ancient 
.

It will report if your deps.edn file contains outdated deps.

Usage:
Merge 
```
{:ancient {:main-opts ["-m" "deps-ancient.deps-ancient"]
:extra-deps {deps-ancient {:mvn/version "RELEASE"
```
into your deps.edn and run

`clj -A:ancient`

PRs welcome!

Happy hacking with up-to-date deps


Erik.

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [ANN] tools.deps.alpha 0.5.452 and clj 1.9.0.394

2018-11-01 Thread Alex Miller


On Wednesday, October 31, 2018 at 1:02:50 PM UTC-5, Sean Corfield wrote:
>
> Is there anything any of us can do to help speed up work on the Powershell 
> version of clj/clojure? I’m feeling the lack of it more and more…
>

Not really, the hold-up is primarily in figuring out the build packaging 
parts
 

>  
>
> Also, is there anything any of us can do to help get add-lib into a 
> finalized state and merged in? (I went to use it the other day via a SHA 
> and realized that branch is now _*way*_ behind the released version and a 
> lot of stuff I needed wasn’t in the add-lib branch ☹)
>

I merged master and 5140fe0b510f6aeda517711bc6433bef978d6cf6 is latest sha 
on that branch if that helps. Not sure when it will get in.
 

>  
>
> Sean Corfield -- (970) FOR-SEAN -- (904) 302-SEAN
> An Architect's View -- http://corfield.org/
>
> "If you're not annoying somebody, you're not really alive."
> -- Margaret Atwood
>
>  
>

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


RE: [ANN] deps-ancient - are your deps outdated?

2018-11-01 Thread Sean Corfield
Great to see more deps.edn tooling!

I ran this in one of our projects and it produced no output, so I took a look 
at the source and it only reads the current deps.edn file so no default or 
override deps are considered, and it doesn’t seem to support aliases?

We’ve been using https://github.com/Olical/depot which allows you to specify 
aliases and also uses the merged deps environment so it matches the actual 
dependencies that your project would use.

Sean Corfield -- (970) FOR-SEAN -- (904) 302-SEAN
An Architect's View -- http://corfield.org/

"If you're not annoying somebody, you're not really alive."
-- Margaret Atwood


From: clojure@googlegroups.com  on behalf of Erik 
Assum 
Sent: Thursday, November 1, 2018 4:07:01 AM
To: clojure@googlegroups.com
Subject: [ANN] deps-ancient - are your deps outdated?

I’m happy to announce deps-ancient https://github.com/slipset/deps-ancient.

It will report if your deps.edn file contains outdated deps.

Usage:
Merge
```
{:ancient {:main-opts ["-m" "deps-ancient.deps-ancient"]
:extra-deps {deps-ancient {:mvn/version "RELEASE"
```
into your deps.edn and run

`clj -A:ancient`

PRs welcome!

Happy hacking with up-to-date deps


Erik.

--
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
---
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to 
clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


RE: [ANN] tools.deps.alpha 0.5.452 and clj 1.9.0.394

2018-11-01 Thread Sean Corfield
Not really, the hold-up is primarily in figuring out the build packaging parts

Fair enough.

I merged master and 5140fe0b510f6aeda517711bc6433bef978d6cf6 is latest sha on 
that branch if that helps. Not sure when it will get in.

Thank you!

Sean Corfield -- (970) FOR-SEAN -- (904) 302-SEAN
An Architect's View -- http://corfield.org/

"If you're not annoying somebody, you're not really alive."
-- Margaret Atwood


From: clojure@googlegroups.com  on behalf of Alex 
Miller 
Sent: Thursday, November 1, 2018 6:00:46 AM
To: Clojure
Subject: Re: [ANN] tools.deps.alpha 0.5.452 and clj 1.9.0.394



On Wednesday, October 31, 2018 at 1:02:50 PM UTC-5, Sean Corfield wrote:
Is there anything any of us can do to help speed up work on the Powershell 
version of clj/clojure? I’m feeling the lack of it more and more…

Not really, the hold-up is primarily in figuring out the build packaging parts


Also, is there anything any of us can do to help get add-lib into a finalized 
state and merged in? (I went to use it the other day via a SHA and realized 
that branch is now _way_ behind the released version and a lot of stuff I 
needed wasn’t in the add-lib branch ☹)

I merged master and 5140fe0b510f6aeda517711bc6433bef978d6cf6 is latest sha on 
that branch if that helps. Not sure when it will get in.


Sean Corfield -- (970) FOR-SEAN -- (904) 302-SEAN
An Architect's View -- http://corfield.org/

"If you're not annoying somebody, you're not really alive."
-- Margaret Atwood


--
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
---
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to 
clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [ANN] deps-ancient - are your deps outdated?

2018-11-01 Thread Erik Assum
Unfortunately I wasn’t aware of Depot when I wrote deps-ancient, otherwise I 
wouldn’t have made deps-ancient. 

As to fully resolving the deps, I think there is an issue for that :)

Erik. 
-- 
i farta

> 1. nov. 2018 kl. 18:38 skrev Sean Corfield :
> 
> Great to see more deps.edn tooling!
>  
> I ran this in one of our projects and it produced no output, so I took a look 
> at the source and it only reads the current deps.edn file so no default or 
> override deps are considered, and it doesn’t seem to support aliases?
>  
> We’ve been using https://github.com/Olical/depot which allows you to specify 
> aliases and also uses the merged deps environment so it matches the actual 
> dependencies that your project would use.
>  
> Sean Corfield -- (970) FOR-SEAN -- (904) 302-SEAN
> An Architect's View -- http://corfield.org/
> 
> "If you're not annoying somebody, you're not really alive."
> -- Margaret Atwood
>  
> From: clojure@googlegroups.com  on behalf of Erik 
> Assum 
> Sent: Thursday, November 1, 2018 4:07:01 AM
> To: clojure@googlegroups.com
> Subject: [ANN] deps-ancient - are your deps outdated?
>  
> I’m happy to announce deps-ancient https://github.com/slipset/deps-ancient.
> 
> It will report if your deps.edn file contains outdated deps.
> 
> Usage:
> Merge 
> ```
> {:ancient {:main-opts ["-m" "deps-ancient.deps-ancient"]
> :extra-deps {deps-ancient {:mvn/version "RELEASE"
> ```
> into your deps.edn and run
> 
> `clj -A:ancient`
> 
> PRs welcome!
> 
> Happy hacking with up-to-date deps
> 
> 
> Erik.
> -- 
> You received this message because you are subscribed to the Google
> Groups "Clojure" group.
> To post to this group, send email to clojure@googlegroups.com
> Note that posts from new members are moderated - please be patient with your 
> first post.
> To unsubscribe from this group, send email to
> clojure+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/clojure?hl=en
> --- 
> You received this message because you are subscribed to the Google Groups 
> "Clojure" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to clojure+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
> -- 
> You received this message because you are subscribed to the Google
> Groups "Clojure" group.
> To post to this group, send email to clojure@googlegroups.com
> Note that posts from new members are moderated - please be patient with your 
> first post.
> To unsubscribe from this group, send email to
> clojure+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/clojure?hl=en
> --- 
> You received this message because you are subscribed to the Google Groups 
> "Clojure" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to clojure+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.