[GitHub] incubator-rya issue #282: RYA-443 Fixed Rya Streams Query Manager RPM versio...

2018-04-25 Thread kchilton2
Github user kchilton2 commented on the issue:

https://github.com/apache/incubator-rya/pull/282
  
Eric, please close this.


---


[GitHub] incubator-rya issue #282: RYA-443 Fixed Rya Streams Query Manager RPM versio...

2018-04-18 Thread kchilton2
Github user kchilton2 commented on the issue:

https://github.com/apache/incubator-rya/pull/282
  
This can be declined.


---


[GitHub] incubator-rya issue #282: RYA-443 Fixed Rya Streams Query Manager RPM versio...

2018-04-06 Thread ejwhite922
Github user ejwhite922 commented on the issue:

https://github.com/apache/incubator-rya/pull/282
  
That one can't be built by Jenkins so the rpm would need to be built 
locally.


---


[GitHub] incubator-rya issue #282: RYA-443 Fixed Rya Streams Query Manager RPM versio...

2018-04-06 Thread pujav65
Github user pujav65 commented on the issue:

https://github.com/apache/incubator-rya/pull/282
  
@ejwhite922 my understanding is that @kchilton2 pr makes this one obe.  So 
I will close it when I pull in that one.


---


[GitHub] incubator-rya issue #282: RYA-443 Fixed Rya Streams Query Manager RPM versio...

2018-04-05 Thread asfgit
Github user asfgit commented on the issue:

https://github.com/apache/incubator-rya/pull/282
  

Refer to this link for build results (access rights to CI server needed): 

https://builds.apache.org/job/incubator-rya-master-with-optionals-pull-requests/723/



---


[GitHub] incubator-rya issue #282: RYA-443 Fixed Rya Streams Query Manager RPM versio...

2018-04-05 Thread asfgit
Github user asfgit commented on the issue:

https://github.com/apache/incubator-rya/pull/282
  

Refer to this link for build results (access rights to CI server needed): 

https://builds.apache.org/job/incubator-rya-master-with-optionals-pull-requests/722/



---


[GitHub] incubator-rya issue #282: RYA-443 Fixed Rya Streams Query Manager RPM versio...

2018-04-05 Thread ejwhite922
Github user ejwhite922 commented on the issue:

https://github.com/apache/incubator-rya/pull/282
  
I fixed the issue with `rpm -e` not working with the version number.  The 
plugin's version property was including "-incubating" which RPM's don't like 
"-" in that property.  The version and release properties are appropriate now; 
taken from what the rpm-maven-plugin produces.

The new commit generates an RPM file with a name like:

`rya.streams.query-manager-3.2.13-incubating_SNAPSHOT20180404214440-noarch.rpm`
With `3.2.13` being assigned to the version property and 
`incubating_SNAPSHOT20180404214440` to the release property.

Using `rpm -qa | grep rya` returns:
`rya.streams.query-manager-3.2.13-incubating_SNAPSHOT20180404214440.noarch`

I confirmed that all the following work for uninstall:
```
sudo yum remove 
rya.streams.query-manager-3.2.13-incubating_SNAPSHOT20180404214440.noarch
sudo yum remove 
rya.streams.query-manager-3.2.13-incubating_SNAPSHOT20180404214440
sudo yum remove rya.streams.query-manager-3.2.13
sudo yum remove rya.streams.query-manager
sudo rpm -e 
rya.streams.query-manager-3.2.13-incubating_SNAPSHOT20180404214440.noarch
sudo rpm -e 
rya.streams.query-manager-3.2.13-incubating_SNAPSHOT20180404214440
sudo rpm -e rya.streams.query-manager-3.2.13
sudo rpm -e rya.streams.query-manager
```


---


[GitHub] incubator-rya issue #282: RYA-443 Fixed Rya Streams Query Manager RPM versio...

2018-03-16 Thread isper3at
Github user isper3at commented on the issue:

https://github.com/apache/incubator-rya/pull/282
  
rpm -e does not work when you supply a version number.  Not sure if I trust 
that >..> 


---


[GitHub] incubator-rya issue #282: RYA-443 Fixed Rya Streams Query Manager RPM versio...

2018-03-16 Thread ejwhite922
Github user ejwhite922 commented on the issue:

https://github.com/apache/incubator-rya/pull/282
  
What error is it giving?

I am able to run `sudo rpm -e rya.streams.query-manager` without issue.

I'll upload the rpm that is working for me to my share.  Sorry I was in a 
rush yesterday so I only built the query-manager project and it looks like it 
didn't include everything (judging from the size difference).  The rpm from 
today comes from a full build.


---


[GitHub] incubator-rya issue #282: RYA-443 Fixed Rya Streams Query Manager RPM versio...

2018-03-16 Thread kchilton2
Github user kchilton2 commented on the issue:

https://github.com/apache/incubator-rya/pull/282
  
Also, to uninstall it I was using
rpm -qa | grep rya

Then whatever that reported as the installed package I used 
rpm -e 

That is what is not working.


---


[GitHub] incubator-rya issue #282: RYA-443 Fixed Rya Streams Query Manager RPM versio...

2018-03-16 Thread kchilton2
Github user kchilton2 commented on the issue:

https://github.com/apache/incubator-rya/pull/282
  
I used the RPM you gave me built using this patch when it did not work. I 
had never installed the bad state RPM.


---


[GitHub] incubator-rya issue #282: RYA-443 Fixed Rya Streams Query Manager RPM versio...

2018-03-16 Thread ejwhite922
Github user ejwhite922 commented on the issue:

https://github.com/apache/incubator-rya/pull/282
  
@jdasch Yep, `sudo yum remove rya.streams.query-manager` works as well.


---


[GitHub] incubator-rya issue #282: RYA-443 Fixed Rya Streams Query Manager RPM versio...

2018-03-16 Thread jdasch
Github user jdasch commented on the issue:

https://github.com/apache/incubator-rya/pull/282
  
Interesting that you included the architecture type as part of the package 
name.  Can you confirm the following command also works?   
```
sudo yum install -y 
rya.streams.query-manager-3.2.13-incubating-0.201803161404-noarch.rpm
sudo yum remove rya.streams.query-manager
```

Sigh, I'm looking forward to the day this package is called 
`rya-streams-query-manager`.


---


[GitHub] incubator-rya issue #282: RYA-443 Fixed Rya Streams Query Manager RPM versio...

2018-03-16 Thread ejwhite922
Github user ejwhite922 commented on the issue:

https://github.com/apache/incubator-rya/pull/282
  
I just tested today and this patch works on my CentOS 7 VM.  I did an 
install -> uninstall -> install -> uninstall of the rpm which all completed 
successfully.  I used the following:

```
sudo yum install -y 
rya.streams.query-manager-3.2.13-incubating-0.201803161404-noarch.rpm
sudo yum remove rya.streams.query-manager.noarch
```

I suspect uninstall issues came from using the rpm from master and then 
trying to use this patch on a VM that had its rya.streams.query-manager rpm 
version in a bad state.

I would recommend this patch over 
[#284](https://github.com/apache/incubator-rya/pull/284) since it will allow 
Jenkins to build and distribute the rpm, doesn't require an undocumented 
profile flag, and is build-able on all platforms.


---


[GitHub] incubator-rya issue #282: RYA-443 Fixed Rya Streams Query Manager RPM versio...

2018-03-15 Thread kchilton2
Github user kchilton2 commented on the issue:

https://github.com/apache/incubator-rya/pull/282
  
https://github.com/apache/incubator-rya/pull/284


---


[GitHub] incubator-rya issue #282: RYA-443 Fixed Rya Streams Query Manager RPM versio...

2018-03-15 Thread kchilton2
Github user kchilton2 commented on the issue:

https://github.com/apache/incubator-rya/pull/282
  
This patch does not create an RPM that can be uninstalled. I'm going to 
revert all of these changes that Eric made to how we build RPMs out, and put my 
stuff back in. I'll make the RPM build a profile so Windows users can still 
build our app.


---


[GitHub] incubator-rya issue #282: RYA-443 Fixed Rya Streams Query Manager RPM versio...

2018-03-15 Thread asfgit
Github user asfgit commented on the issue:

https://github.com/apache/incubator-rya/pull/282
  

Refer to this link for build results (access rights to CI server needed): 

https://builds.apache.org/job/incubator-rya-master-with-optionals-pull-requests/708/



---


[GitHub] incubator-rya issue #282: RYA-443 Fixed Rya Streams Query Manager RPM versio...

2018-03-15 Thread ejwhite922
Github user ejwhite922 commented on the issue:

https://github.com/apache/incubator-rya/pull/282
  
asfbot build


---


[GitHub] incubator-rya issue #282: RYA-443 Fixed Rya Streams Query Manager RPM versio...

2018-03-13 Thread asfgit
Github user asfgit commented on the issue:

https://github.com/apache/incubator-rya/pull/282
  

Refer to this link for build results (access rights to CI server needed): 

https://builds.apache.org/job/incubator-rya-master-with-optionals-pull-requests/705/



---