[Bug 1238322] Re: gradle not working: symbol lookup error

2017-04-18 Thread Andreas Schildbach
I filed the regression in zesty as a new bug, since this one is old and
was apparently fixed. See
https://bugs.launchpad.net/ubuntu/+source/gradle/+bug/1683761

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1238322

Title:
  gradle not working:  symbol lookup error

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gradle/+bug/1238322/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1238322] Re: gradle not working: symbol lookup error

2017-04-07 Thread Yusuke Endoh
I think that there is an regression.  I have just experienced this issue
with the latest version of libnative-platform-jni (0.11-5).


$ gradle
java: symbol lookup error: /usr/lib/jni/libnative-platform-curses.so: undefined 
symbol: tgetent


FYI, gradle works with the previous version (0.10+dfsg-2), and also works in 
debian stretch with the latest version (0.11-5).  So I believe that there is an 
regression of this ubuntu package.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1238322

Title:
  gradle not working:  symbol lookup error

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gradle/+bug/1238322/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1238322] Re: gradle not working: symbol lookup error

2014-01-21 Thread Alberto Salvia Novella
** Changed in: libnative-platform-java (Ubuntu)
   Importance: Undecided = High

** Changed in: gradle (Ubuntu)
   Importance: Undecided = High

** Changed in: gradle (Ubuntu)
   Status: Confirmed = Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1238322

Title:
  gradle not working:  symbol lookup error

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gradle/+bug/1238322/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1238322] Re: gradle not working: symbol lookup error

2014-01-12 Thread Launchpad Bug Tracker
** Branch linked: lp:~ubuntu-branches/ubuntu/trusty/libnative-platform-
java/trusty-proposed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1238322

Title:
  gradle not working:  symbol lookup error

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gradle/+bug/1238322/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1238322] Re: gradle not working: symbol lookup error

2014-01-12 Thread Launchpad Bug Tracker
This bug was fixed in the package libnative-platform-java -
0.3~rc2-2ubuntu1

---
libnative-platform-java (0.3~rc2-2ubuntu1) trusty; urgency=low

  * debian/patches/make_buildsystem.diff: move ld libs to end of linking
command (LP: #1238322)
 -- ALEFHAHMEEMDAL ALEFLAMMEEMHAHMEEMWAWDALYEH (Ahmed El-Mahmoudy) 
aelmahmo...@sabily.org   Sun, 12 Jan 2014 20:33:29 +0200

** Changed in: libnative-platform-java (Ubuntu)
   Status: Confirmed = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1238322

Title:
  gradle not working:  symbol lookup error

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gradle/+bug/1238322/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1238322] Re: gradle not working: symbol lookup error

2014-01-08 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: libnative-platform-java (Ubuntu)
   Status: New = Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1238322

Title:
  gradle not working:  symbol lookup error

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gradle/+bug/1238322/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1238322] Re: gradle not working: symbol lookup error

2013-12-30 Thread Hans Joachim Desserud
It seems like the underlying cause is in libnative-platform-java, so I
marked that package as also affected.

In addition, I added the patch tag, due to the patch included in the
comment above.

** Also affects: libnative-platform-java (Ubuntu)
   Importance: Undecided
   Status: New

** Tags added: patch saucy

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1238322

Title:
  gradle not working:  symbol lookup error

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gradle/+bug/1238322/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1238322] Re: gradle not working: symbol lookup error

2013-11-20 Thread Eric
I found the bug in the Makefile for libnative-platform-java. Here's how
to workaround it:

   sudo apt-get build-dep libnative-platform-java
   apt-get source libnative-platform-java
   cd libnative-platform-java-0.3~rc2/

Apply this patch:
--- Makefile.orig   2013-11-20 10:42:54.599476939 -0800
+++ Makefile2013-11-20 10:43:04.879476606 -0800
@@ -28,7 +28,7 @@
$(CXX) $(CFLAGS) $(CXXFLAGS) $(CPPFLAGS) $(LDFLAGS) -shared -o $@ $^
 
 $(ODIR)/libnative-platform-curses.so: $(OBJ_CURSES)
-   $(CXX) $(CFLAGS) $(CXXFLAGS) $(CPPFLAGS) $(LDFLAGS) -lcurses -shared -o 
$@ $^
+   $(CXX) $(CFLAGS) $(CXXFLAGS) $(CPPFLAGS) $(LDFLAGS) -shared -o $@ $^ 
-lcurses
 
 $(JCLASSESDIR)/%.class: javafiles-list
mkdir -p $(JCLASSESDIR)

Run:
   dpkg-source --commit
   dpkg-buildpackage
   cd ..
   sudo dpkg -i libnative-platform-jni_0.3~rc2-2_amd64.deb

Test with
   gradle -v

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1238322

Title:
  gradle not working:  symbol lookup error

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gradle/+bug/1238322/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1238322] Re: gradle not working: symbol lookup error

2013-10-25 Thread Richard Merren
I am having the same problem with oracle java 7.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1238322

Title:
  gradle not working:  symbol lookup error

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gradle/+bug/1238322/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1238322] Re: gradle not working: symbol lookup error

2013-10-25 Thread Richard Merren
Also: If I download the gradle 1.8 zip from the gradle website, unzip it
into a directory, move to the bin directory, then type ./gradle, then
gradle works without problems.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1238322

Title:
  gradle not working:  symbol lookup error

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gradle/+bug/1238322/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1238322] Re: gradle not working: symbol lookup error

2013-10-14 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: gradle (Ubuntu)
   Status: New = Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1238322

Title:
  gradle not working:  symbol lookup error

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gradle/+bug/1238322/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs