You are not logged in.

#1 2014-09-10 13:23:07

DarkSpiritAK47
Member
From: Grand Rapids, MI, USA
Registered: 2014-08-17
Posts: 39

unable to build indicator-messages from the aur

i am unable to get indicator-messages from the aur... i am almost certain it is because of some program that is attached to it called translations.

here is the output i am referring to where i believe the issue resides when i try to build indicator-messages from the aur:

-> Downloading translations-20130419-indicator-messages.tar.gz...
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0      0 --:--:--  0:00:01 --:--:--     0curl: (22) The requested URL returned error: 404 Not Found
==> ERROR: Failure while downloading translations-20130419-indicator-messages.tar.gz
    Aborting...
==> ERROR: Makepkg was unable to build indicator-messages.
==> Restart building indicator-messages ? [y/N]
==> -------------------------------------------
==> 


any ideas or suggestions would be greatly appreciated!

someone suggested removing it (translations) from the pkgbuild. i was a little worried about doing that as i am not very good at editing the pkgbuild. though they said to remove translations from it so what i did was control f and deleted anything relating to translations.

this is what i got...

Retrieving sources...
  -> Downloading indicator-messages_13.10.1+14.04.20140207.orig.tar.gz...
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0      0 --:--:--  0:01:05 --:--:--     0
100  100k  100  100k    0     0   1515      0  0:01:08  0:01:08 --:--:-- 94514
==> ERROR:  was not found in the build directory and is not a URL.
==> ERROR: Makepkg was unable to build indicator-messages.
==> Restart building indicator-messages ? [y/N]
==> -------------------------------------------
==> 

argh i just don't know what to do...

Last edited by DarkSpiritAK47 (2014-09-26 01:02:28)

Offline

#2 2014-09-10 18:54:03

karol
Archivist
Registered: 2009-05-06
Posts: 25,440

Re: unable to build indicator-messages from the aur

Post your edited PKGBUILD.

Offline

#3 2014-09-10 21:43:10

DarkSpiritAK47
Member
From: Grand Rapids, MI, USA
Registered: 2014-08-17
Posts: 39

Re: unable to build indicator-messages from the aur

okay i will do that right after i get out of my college class tonight... right now i have to get ready. currently i am just kind of in a hurry but thankx dude!

Last edited by DarkSpiritAK47 (2014-09-10 21:44:01)

Offline

#4 2014-09-11 01:59:40

DarkSpiritAK47
Member
From: Grand Rapids, MI, USA
Registered: 2014-08-17
Posts: 39

Re: unable to build indicator-messages from the aur

# Maintainer: Charles Bos <charlesbos1 AT gmail>
# Contributor: Xiao-Long Chen <chenxiaolong@cxl.epac.to>
# Contributor: György Balló <ballogy@freestart.hu>
# Contributor: thn81 <root@scrat>

pkgname=indicator-messages
_actual_ver=13.10.1
_extra_ver=+14.04.20140207
_source_date=20140207

pkgver=${_actual_ver}.${_source_date}
pkgrel=3
pkgdesc="A place on the user's desktop that collects messages that need a response"
arch=('i686' 'x86_64')
url="https://launchpad.net/indicator-messages"
license=('GPL')
depends=('hicolor-icon-theme' 'libindicator-bzr')
makedepends=('gobject-introspection' 'gtk-doc' 'intltool' 'vala')
groups=('unity')
options=('!libtool')
install=indicator-messages.install
source=("https://launchpad.net/ubuntu/+archive/primary/+files/indicator-messages_${_actual_ver}${_extra_ver}.orig.tar.gz"
        ""
        '0001_autoconf.patch')
sha512sums=('2c7795f412200c992ebc435b0d3ac3ab3c602030fa91c9b3a79a2f6323bed82c3852992d4707e1d4e7faf5c2dda6e314a6f6a7d5545d05322ffba8fa8d7ecabf'
            'c880b0873651a0e995d273fe989afad3435cac75fbdf4b1d26fa3b48c718d06c57d5f196093f5989a9d3c697d5c45b7239d3d464ac071a945a87efed7142af57'
            '75c5f0c2381b76b053ad980bc371772cbb6626ef5c7e01a3b212d42460ed8a5ea17c82ab8b6146992aca098c3a465b0b1075e460d2d5333ef6de193e5cf73e8a')

prepare() {
  cd "${srcdir}/${pkgname}-${_actual_ver}${_extra_ver}"

  patch -p1 -i "${srcdir}/0001_autoconf.patch"

  msg "Merging translations from ${_translations}"
  rm -f po/LINGUAS po/*.pot
  mv "${srcdir}"/po/*.pot po/
  for i in "${srcdir}"/po/*.po; do
    FILE=$(sed -n "s|.*/${pkgname}-||p" <<< ${i})
    mv ${i} po/${FILE}
    echo ${FILE%.*} >> po/LINGUAS
  done
}

build() {
  cd "${srcdir}/${pkgname}-${_actual_ver}${_extra_ver}"

  export CFLAGS="${CFLAGS} -Wno-error=deprecated-declarations -Wno-error=return-type"

  gtkdocize
  intltoolize -f
  autoreconf -vfi
  ./configure --prefix=/usr --libexecdir=/usr/lib/${pkgname} --disable-static
  make
}

package() {
  cd "${srcdir}/${pkgname}-${_actual_ver}${_extra_ver}"

  make DESTDIR="${pkgdir}/" install
}

# vim:set ts=2 sw=2 et:

Last edited by DarkSpiritAK47 (2014-09-11 02:01:23)

Offline

#5 2014-09-11 02:04:56

Trilby
Inspector Parrot
Registered: 2011-11-29
Posts: 30,517
Website

Re: unable to build indicator-messages from the aur

You removed the url, but you need to remove the empty quotes and the checksum for that file to:

source=("https://launchpad.net/ubuntu/+archive/primary/+files/indicator-messages_${_actual_ver}${_extra_ver}.orig.tar.gz"
        '0001_autoconf.patch')
sha512sums=('2c7795f412200c992ebc435b0d3ac3ab3c602030fa91c9b3a79a2f6323bed82c3852992d4707e1d4e7faf5c2dda6e314a6f6a7d5545d05322ffba8fa8d7ecabf'
            '75c5f0c2381b76b053ad980bc371772cbb6626ef5c7e01a3b212d42460ed8a5ea17c82ab8b6146992aca098c3a465b0b1075e460d2d5333ef6de193e5cf73e8a')

"UNIX is simple and coherent" - Dennis Ritchie; "GNU's Not Unix" - Richard Stallman

Offline

#6 2014-09-11 02:17:47

DarkSpiritAK47
Member
From: Grand Rapids, MI, USA
Registered: 2014-08-17
Posts: 39

Re: unable to build indicator-messages from the aur

THANK U 4 your help! i did as you said and removed exactly (outlined in the post above) what you told me... unfortunately now i get this message...


==> Continue building indicator-messages ? [Y/n]
==> --------------------------------------------
==> 
==> Building and installing package
==> Making package: indicator-messages 13.10.1.20140207-3 (Wed Sep 10 22:16:40 EDT 2014)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
==> Extracting sources...
==> Starting prepare()...
/tmp/yaourt-tmp-john/aur-indicator-messages/./PKGBUILD: line 25: cd: /tmp/yaourt-tmp-john/aur-indicator-messages/src/indicator-messages-13.10.1+14.04.20140207: No such file or directory
==> ERROR: A failure occurred in prepare().
    Aborting...
==> ERROR: Makepkg was unable to build indicator-messages.
==> Restart building indicator-messages ? [y/N]
==> -------------------------------------------
==> 
[john@DarkSpiritAK47 ~]$ 

personally i figure it is progress :-) but idk

anything at this point anything is progress...

Last edited by DarkSpiritAK47 (2014-09-11 02:25:15)

Offline

#7 2014-09-11 02:29:52

Trilby
Inspector Parrot
Registered: 2011-11-29
Posts: 30,517
Website

Re: unable to build indicator-messages from the aur

Yeah, I just looked closer at the PKGBUILD.  I don't have all the dependencies to keep testing - but that PKGBUILD needs a bit of work.  I can't even make sense of what the author intended to do with that block of code.  They remove a whole set of files, then try to replace them with files that don't exist, and only after attempting to replace them with those non-existent files do they modify the non-existing files in their original location.  That's three flavors of odd all mixed together.

I assume you've flagged this on the AUR page, right?  You should contact the maintainer.


"UNIX is simple and coherent" - Dennis Ritchie; "GNU's Not Unix" - Richard Stallman

Offline

#8 2014-09-11 09:05:37

DarkSpiritAK47
Member
From: Grand Rapids, MI, USA
Registered: 2014-08-17
Posts: 39

Re: unable to build indicator-messages from the aur

okay i understand... lol sounds like the author/creator did not exactly know what they where doing (or was confused or something). thank you VERY, VERY much!

Last edited by DarkSpiritAK47 (2014-09-11 09:09:53)

Offline

#9 2014-09-11 10:42:08

Trilby
Inspector Parrot
Registered: 2011-11-29
Posts: 30,517
Website

Re: unable to build indicator-messages from the aur

I might not go that far (yet).  Maybe they knew exactly what they were doing - but their intent is not clear to me from their code, so it is hard to work with.


"UNIX is simple and coherent" - Dennis Ritchie; "GNU's Not Unix" - Richard Stallman

Offline

#10 2014-09-11 16:37:14

DarkSpiritAK47
Member
From: Grand Rapids, MI, USA
Registered: 2014-08-17
Posts: 39

Re: unable to build indicator-messages from the aur

understood friend... and thankx for the help again! you really are a huge help. other than my bro (who is inaccessible to me currently) you guys are the only other place i can go for questions like this. without you and this forum i would be at a dead end.

Last edited by DarkSpiritAK47 (2014-09-12 14:41:41)

Offline

#11 2014-09-11 20:20:36

DarkSpiritAK47
Member
From: Grand Rapids, MI, USA
Registered: 2014-08-17
Posts: 39

Re: unable to build indicator-messages from the aur

you know what is really weird i was actually trying to get super-wingpanel-bzr, so i apologize for wasting your time. i looked right on the wiki and it says that there are known issues with it. as for myself i get this message:


[john@DarkSpiritAK47 ~]$ yaourt -S super-wingpanel-bzr

==> Downloading super-wingpanel-bzr PKGBUILD from AUR...
x PKGBUILD
x super-wingpanel.install
Comment by ksj  (2014-02-18 20:34)
You should add dependency "libwnck3", otherwise build fails

Comment by ernest21  (2014-02-19 13:35)
Thanks Ksj, update the PGKBUILD.

Comment by cuvora  (2014-06-12 15:48)
--- CMakeLists.txt	2014-03-04 07:40:09 +0000
PATCH^^
==================================================
+++ CMakeLists.txt	2014-06-12 13:02:52 +0000
@@ -37,7 +37,7 @@
gobject-2.0
glib-2.0
gio-2.0
-    gee-1.0
+    gee-0.8
gdk-x11-3.0
x11
gtk+-3.0

super-wingpanel-bzr 183-1  (Fri Jan 17 10:07:22 EST 2014)
( Unsupported package: Potentially dangerous ! )
==> Edit PKGBUILD ? [Y/n] ("A" to abort)
==> ------------------------------------
==> n

==> super-wingpanel-bzr dependencies:
 - granite-bzr (already installed)
 - libindicator-gtk3 (already installed)
 - libwnck3 (already installed)
 - bzr (already installed)
 - cmake (already installed)
 - vala (already installed)


==> Edit super-wingpanel.install ? [Y/n] ("A" to abort)
==> ---------------------------------------------------
==> n

==> Continue building super-wingpanel-bzr ? [Y/n]
==> ---------------------------------------------
==> 
==> Building and installing package
==> Making package: super-wingpanel-bzr 183-1 (Thu Sep 11 16:23:21 EDT 2014)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
  -> Branching lp:/~heathbar/super-wingpanel/stable ...
You have not informed bzr of your Launchpad ID, and you must do this to
write to Launchpad or access private data.  See "bzr help launchpad-login".
Branched 184 revisions.                                                        
==> Validating source files with sha256sums...
    stable ... Skipped
==> Extracting sources...
  -> Creating working copy of stable bzr repo...
==> Starting pkgver()...                                                       
==> Updated version: super-wingpanel-bzr 184-1
==> Starting build()...
-- The C compiler identification is GNU 4.9.1
-- The CXX compiler identification is GNU 4.9.1
-- Check for working C compiler: /usr/bin/cc
-- Check for working C compiler: /usr/bin/cc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Found PkgConfig: /usr/bin/pkg-config (found version "0.28") 
-- checking for modules 'gobject-2.0;glib-2.0;gio-2.0;gee-1.0;gdk-x11-3.0;x11;gtk+-3.0;granite;libwnck-3.0'
--   found gobject-2.0, version 2.40.0
--   found glib-2.0, version 2.40.0
--   found gio-2.0, version 2.40.0
--   found gee-1.0, version 0.6.8
--   found gdk-x11-3.0, version 3.12.2
--   found x11, version 1.6.2
--   found gtk+-3.0, version 3.12.2
--   found granite, version 0.3.0
--   found libwnck-3.0, version 3.4.9
-- checking for modules 'gthread-2.0;indicator3-0.4'
--   found gthread-2.0, version 2.40.0
--   found indicator3-0.4, version 12.10.2
-- Found Vala: /usr/bin/valac  
-- checking for a minimum Vala version of 0.16
--   found Vala, version 0.24.0
-- GSettings schemas will be installed locally.
-- GSettings schemas will be installed into /usr/share/glib-2.0/schemas/
-- Configuring done
-- Generating done
-- Build files have been written to: /tmp/yaourt-tmp-john/aur-super-wingpanel-bzr/src/stable/build
[  3%] Generating src/WingpanelApp.c;src/PanelController.c;src/WindowManager.c;src/HideManager.c;src/PositionManager.c;src/Drawing/AnimatedRenderer.c;src/Drawing/PanelRenderer.c;src/Indicator/IndicatorIface.c;src/Indicator/IndicatorLoader.c;src/Indicator/IndicatorFileModel.c;src/Indicator/IndicatorObjectEntry.c;src/Indicator/IndicatorObject.c;src/Indicator/IndicatorFactory.c;src/Services/Settings.c;src/Services/WMSettings.c;src/Services/IndicatorSorter.c;src/Services/AppLauncherService.c;src/Services/LauncherRunner.c;src/Widgets/WindowIface.c;src/Widgets/PrimaryWindow.c;src/Widgets/AppButtonWindow.c;src/Widgets/AppsButton.c;src/Widgets/PanelShadow.c;src/Widgets/MenuBar.c;src/Widgets/IndicatorButton.c;src/Widgets/IndicatorMenubar.c;src/Widgets/IndicatorWidget.c;src/Widgets/StyleClass.c
gee-0.8.vapi:7.3-7.57: error: `Gee.Functions' already contains a definition for `get_compare_func_for'
		public static GLib.CompareDataFunc get_compare_func_for (GLib.Type t);
		^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-1.0.vapi:7.3-7.53: note: previous definition of `get_compare_func_for' was here
		public static GLib.CompareFunc get_compare_func_for (GLib.Type t);
		^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-0.8.vapi:9.3-9.52: error: `Gee.Functions' already contains a definition for `get_equal_func_for'
		public static Gee.EqualDataFunc get_equal_func_for (GLib.Type t);
		^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-1.0.vapi:9.3-9.49: note: previous definition of `get_equal_func_for' was here
		public static GLib.EqualFunc get_equal_func_for (GLib.Type t);
		^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-0.8.vapi:11.3-11.50: error: `Gee.Functions' already contains a definition for `get_hash_func_for'
		public static Gee.HashDataFunc get_hash_func_for (GLib.Type t);
		^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-1.0.vapi:11.3-11.47: note: previous definition of `get_hash_func_for' was here
		public static GLib.HashFunc get_hash_func_for (GLib.Type t);
		^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-0.8.vapi:32.2-32.114: error: `Gee' already contains a definition for `AbstractCollection'
	public abstract class AbstractCollection<G> : GLib.Object, Gee.Traversable<G>, Gee.Iterable<G>, Gee.Collection<G> {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-1.0.vapi:14.2-14.94: note: previous definition of `AbstractCollection' was here
	public abstract class AbstractCollection<G> : GLib.Object, Gee.Iterable<G>, Gee.Collection<G> {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-0.8.vapi:45.2-45.79: error: `Gee' already contains a definition for `AbstractList'
	public abstract class AbstractList<G> : Gee.AbstractCollection<G>, Gee.List<G> {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-1.0.vapi:31.2-31.79: note: previous definition of `AbstractList' was here
	public abstract class AbstractList<G> : Gee.AbstractCollection<G>, Gee.List<G> {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-0.8.vapi:57.2-57.138: error: `Gee' already contains a definition for `AbstractMap'
	public abstract class AbstractMap<K,V> : GLib.Object, Gee.Traversable<Gee.Map.Entry<K,V>>, Gee.Iterable<Gee.Map.Entry<K,V>>, Gee.Map<K,V> {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-1.0.vapi:46.2-46.101: note: previous definition of `AbstractMap' was here
	public abstract class AbstractMap<K,V> : GLib.Object, Gee.Iterable<Gee.Map.Entry<K,V>>, Gee.Map<K,V> {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-0.8.vapi:76.2-76.77: error: `Gee' already contains a definition for `AbstractMultiMap'
	public abstract class AbstractMultiMap<K,V> : GLib.Object, Gee.MultiMap<K,V> {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-1.0.vapi:66.2-66.77: note: previous definition of `AbstractMultiMap' was here
	public abstract class AbstractMultiMap<K,V> : GLib.Object, Gee.MultiMap<K,V> {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-0.8.vapi:85.2-85.87: error: `Gee' already contains a definition for `AbstractMultiSet'
	public abstract class AbstractMultiSet<G> : Gee.AbstractCollection<G>, Gee.MultiSet<G> {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-1.0.vapi:74.2-74.87: note: previous definition of `AbstractMultiSet' was here
	public abstract class AbstractMultiSet<G> : Gee.AbstractCollection<G>, Gee.MultiSet<G> {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-0.8.vapi:98.2-98.81: error: `Gee' already contains a definition for `AbstractQueue'
	public abstract class AbstractQueue<G> : Gee.AbstractCollection<G>, Gee.Queue<G> {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-1.0.vapi:85.2-85.81: note: previous definition of `AbstractQueue' was here
	public abstract class AbstractQueue<G> : Gee.AbstractCollection<G>, Gee.Queue<G> {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-0.8.vapi:107.2-107.77: error: `Gee' already contains a definition for `AbstractSet'
	public abstract class AbstractSet<G> : Gee.AbstractCollection<G>, Gee.Set<G> {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-1.0.vapi:96.2-96.77: note: previous definition of `AbstractSet' was here
	public abstract class AbstractSet<G> : Gee.AbstractCollection<G>, Gee.Set<G> {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-0.8.vapi:136.2-136.53: error: `Gee' already contains a definition for `ArrayList'
	public class ArrayList<G> : Gee.AbstractBidirList<G> {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-1.0.vapi:101.2-101.48: note: previous definition of `ArrayList' was here
	public class ArrayList<G> : Gee.AbstractList<G> {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-0.8.vapi:228.2-228.49: error: `Gee' already contains a definition for `HashMap'
	public class HashMap<K,V> : Gee.AbstractMap<K,V> {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-1.0.vapi:121.2-121.49: note: previous definition of `HashMap' was here
	public class HashMap<K,V> : Gee.AbstractMap<K,V> {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-0.8.vapi:250.2-250.59: error: `Gee' already contains a definition for `HashMultiMap'
	public class HashMultiMap<K,V> : Gee.AbstractMultiMap<K,V> {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-1.0.vapi:139.2-139.59: note: previous definition of `HashMultiMap' was here
	public class HashMultiMap<K,V> : Gee.AbstractMultiMap<K,V> {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-0.8.vapi:263.2-263.55: error: `Gee' already contains a definition for `HashMultiSet'
	public class HashMultiSet<G> : Gee.AbstractMultiSet<G> {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-1.0.vapi:150.2-150.55: note: previous definition of `HashMultiSet' was here
	public class HashMultiSet<G> : Gee.AbstractMultiSet<G> {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-0.8.vapi:273.2-273.45: error: `Gee' already contains a definition for `HashSet'
	public class HashSet<G> : Gee.AbstractSet<G> {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-1.0.vapi:156.2-156.45: note: previous definition of `HashSet' was here
	public class HashSet<G> : Gee.AbstractSet<G> {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-0.8.vapi:338.2-338.82: error: `Gee' already contains a definition for `LinkedList'
	public class LinkedList<G> : Gee.AbstractBidirList<G>, Gee.Queue<G>, Gee.Deque<G> {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-1.0.vapi:168.2-168.77: note: previous definition of `LinkedList' was here
	public class LinkedList<G> : Gee.AbstractList<G>, Gee.Queue<G>, Gee.Deque<G> {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-0.8.vapi:362.2-362.53: error: `Gee' already contains a definition for `PriorityQueue'
	public class PriorityQueue<G> : Gee.AbstractQueue<G> {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-1.0.vapi:188.2-188.53: note: previous definition of `PriorityQueue' was here
	public class PriorityQueue<G> : Gee.AbstractQueue<G> {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-0.8.vapi:390.2-390.60: error: `Gee' already contains a definition for `TreeMap'
	public class TreeMap<K,V> : Gee.AbstractBidirSortedMap<K,V> {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-1.0.vapi:206.2-206.49: note: previous definition of `TreeMap' was here
	public class TreeMap<K,V> : Gee.AbstractMap<K,V> {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-0.8.vapi:416.2-416.59: error: `Gee' already contains a definition for `TreeMultiMap'
	public class TreeMultiMap<K,V> : Gee.AbstractMultiMap<K,V> {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-1.0.vapi:223.2-223.59: note: previous definition of `TreeMultiMap' was here
	public class TreeMultiMap<K,V> : Gee.AbstractMultiMap<K,V> {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-0.8.vapi:426.2-426.55: error: `Gee' already contains a definition for `TreeMultiSet'
	public class TreeMultiSet<G> : Gee.AbstractMultiSet<G> {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-1.0.vapi:232.2-232.55: note: previous definition of `TreeMultiSet' was here
	public class TreeMultiSet<G> : Gee.AbstractMultiSet<G> {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-0.8.vapi:431.2-431.56: error: `Gee' already contains a definition for `TreeSet'
	public class TreeSet<G> : Gee.AbstractBidirSortedSet<G> {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-1.0.vapi:237.2-237.63: note: previous definition of `TreeSet' was here
	public class TreeSet<G> : Gee.AbstractSet<G>, Gee.SortedSet<G> {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-0.8.vapi:457.2-457.52: error: `Gee' already contains a definition for `BidirIterator'
	public interface BidirIterator<G> : Gee.Iterator<G> {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-1.0.vapi:248.2-248.52: note: previous definition of `BidirIterator' was here
	public interface BidirIterator<G> : Gee.Iterator<G> {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-0.8.vapi:498.2-498.49: error: `Gee' already contains a definition for `Collection'
	public interface Collection<G> : Gee.Iterable<G> {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-1.0.vapi:254.2-254.49: note: previous definition of `Collection' was here
	public interface Collection<G> : Gee.Iterable<G> {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-0.8.vapi:540.2-540.45: error: `Gee' already contains a definition for `Comparable'
	public interface Comparable<G> : GLib.Object {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-1.0.vapi:270.2-270.45: note: previous definition of `Comparable' was here
	public interface Comparable<G> : GLib.Object {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-0.8.vapi:545.2-545.41: error: `Gee' already contains a definition for `Deque'
	public interface Deque<G> : Gee.Queue<G> {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-1.0.vapi:274.2-274.41: note: previous definition of `Deque' was here
	public interface Deque<G> : Gee.Queue<G> {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-0.8.vapi:593.2-593.63: error: `Gee' already contains a definition for `Iterable'
	public interface Iterable<G> : GLib.Object, Gee.Traversable<G> {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-1.0.vapi:285.2-285.43: note: previous definition of `Iterable' was here
	public interface Iterable<G> : GLib.Object {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-0.8.vapi:597.2-597.63: error: `Gee' already contains a definition for `Iterator'
	public interface Iterator<G> : GLib.Object, Gee.Traversable<G> {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-1.0.vapi:290.2-290.43: note: previous definition of `Iterator' was here
	public interface Iterator<G> : GLib.Object {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-0.8.vapi:609.2-609.45: error: `Gee' already contains a definition for `List'
	public interface List<G> : Gee.Collection<G> {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-1.0.vapi:298.2-298.45: note: previous definition of `List' was here
	public interface List<G> : Gee.Collection<G> {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-0.8.vapi:625.2-625.51: error: `Gee' already contains a definition for `ListIterator'
	public interface ListIterator<G> : Gee.Iterator<G> {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-1.0.vapi:314.2-314.56: note: previous definition of `ListIterator' was here
	public interface ListIterator<G> : Gee.BidirIterator<G> {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-0.8.vapi:632.2-632.74: error: `Gee' already contains a definition for `Map'
	public interface Map<K,V> : GLib.Object, Gee.Iterable<Gee.Map.Entry<K,V>> {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-1.0.vapi:321.2-321.74: note: previous definition of `Map' was here
	public interface Map<K,V> : GLib.Object, Gee.Iterable<Gee.Map.Entry<K,V>> {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-0.8.vapi:670.2-670.48: error: `Gee' already contains a definition for `MapIterator'
	public interface MapIterator<K,V> : GLib.Object {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-1.0.vapi:356.2-356.48: note: previous definition of `MapIterator' was here
	public interface MapIterator<K,V> : GLib.Object {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-0.8.vapi:685.2-685.45: error: `Gee' already contains a definition for `MultiMap'
	public interface MultiMap<K,V> : GLib.Object {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-1.0.vapi:366.2-366.45: note: previous definition of `MultiMap' was here
	public interface MultiMap<K,V> : GLib.Object {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-0.8.vapi:704.2-704.49: error: `Gee' already contains a definition for `MultiSet'
	public interface MultiSet<G> : Gee.Collection<G> {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-1.0.vapi:379.2-379.49: note: previous definition of `MultiSet' was here
	public interface MultiSet<G> : Gee.Collection<G> {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-0.8.vapi:711.2-711.46: error: `Gee' already contains a definition for `Queue'
	public interface Queue<G> : Gee.Collection<G> {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-1.0.vapi:383.2-383.46: note: previous definition of `Queue' was here
	public interface Queue<G> : Gee.Collection<G> {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-0.8.vapi:723.2-723.44: error: `Gee' already contains a definition for `Set'
	public interface Set<G> : Gee.Collection<G> {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-1.0.vapi:394.2-394.44: note: previous definition of `Set' was here
	public interface Set<G> : Gee.Collection<G> {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-0.8.vapi:739.2-739.43: error: `Gee' already contains a definition for `SortedSet'
	public interface SortedSet<G> : Gee.Set<G> {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
gee-1.0.vapi:399.2-399.43: note: previous definition of `SortedSet' was here
	public interface SortedSet<G> : Gee.Set<G> {
	^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Compilation failed: 36 error(s), 0 warning(s)
CMakeFiles/super-wingpanel.dir/build.make:138: recipe for target 'super-wingpanel_valac.stamp' failed
make[2]: *** [super-wingpanel_valac.stamp] Error 1
CMakeFiles/Makefile2:91: recipe for target 'CMakeFiles/super-wingpanel.dir/all' failed
make[1]: *** [CMakeFiles/super-wingpanel.dir/all] Error 2
Makefile:147: recipe for target 'all' failed
make: *** [all] Error 2
==> ERROR: A failure occurred in build().
    Aborting...
==> ERROR: Makepkg was unable to build super-wingpanel-bzr.
==> Restart building super-wingpanel-bzr ? [y/N]
==> --------------------------------------------
==> 
[john@DarkSpiritAK47 ~]$

when i tried to unpacking it from the aur. which i also believe i read in the comments was a common issue as well.

i mean i knew what i wanted from elementary os but did not know what it was called in pantheon arch. i thought that was what i wanted but i now know it is called super-wingpanel-bzr.

here is what i am referencing: https://wiki.archlinux.org/index.php/Pa … _wingpanel

Last edited by DarkSpiritAK47 (2014-09-12 11:16:12)

Offline

Board footer

Powered by FluxBB