Package Details: shortwave-git 3.2.0.r111.g0513ea6-1

Git Clone URL: https://aur.archlinux.org/shortwave-git.git (read-only, click to copy)
Package Base: shortwave-git
Description: Find and listen to internet radio stations
Upstream URL: https://apps.gnome.org/Shortwave
Licenses: GPL3
Conflicts: shortwave
Provides: shortwave
Submitter: flipflop97
Maintainer: None
Last Packager: yochananmarqos
Votes: 10
Popularity: 0.000000
First Submitted: 2019-01-30 20:00 (UTC)
Last Updated: 2023-10-08 21:20 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4 Next › Last »

Tio commented on 2019-11-12 01:56 (UTC) (edited on 2019-11-12 01:57 (UTC) by Tio)

Error:

error[E0658]: async fn is unstable
  --> src/api/client.rs:29:5
   |
29 | /     pub async fn send_station_request(self, request: StationRequest) -> Result<Vec<Station>, Error> {
30 | |         let url = self.build_url(STATION_SEARCH, Some(&request.url_encode()))?;
31 | |         debug!("Station request URL: {}", url);
32 | |         let data = self.send_message(url).await?;
...  |
38 | |         Ok(stations)
39 | |     }
   | |_____^
   |
   = note: for more information, see https://github.com/rust-lang/rust/issues/50547

error[E0658]: async/await is unstable
  --> src/api/client.rs:32:20
   |
32 |         let data = self.send_message(url).await?;
   |                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: for more information, see https://github.com/rust-lang/rust/issues/50547

error[E0658]: async fn is unstable
  --> src/api/client.rs:41:5
   |
41 | /     pub async fn get_stations_by_identifiers(self, identifiers: Vec<StationIdentifier>) -> Result<Vec<Station>, Error> {
42 | |         let mut stations = Vec::new();
43 | |
44 | |         for identifier in identifiers {
...  |
55 | |         Ok(stations)
56 | |     }
   | |_____^
   |
   = note: for more information, see https://github.com/rust-lang/rust/issues/50547

error[E0658]: async/await is unstable
  --> src/api/client.rs:47:24
   |
47 |             let data = self.send_message(url).await?;
   |                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: for more information, see https://github.com/rust-lang/rust/issues/50547

error[E0658]: async fn is unstable
  --> src/api/client.rs:58:5
   |
58 | /     pub async fn get_stream_url(self, station: Station) -> Result<StationUrl, Error> {
59 | |         let url = self.build_url(&format!("{}{}", PLAYABLE_STATION_URL, station.id), None)?;
60 | |         debug!("Request playable URL: {}", url);
61 | |         let data = self.send_message(url).await?;
...  |
66 | |         Ok(result[0].clone())
67 | |     }
   | |_____^
   |
   = note: for more information, see https://github.com/rust-lang/rust/issues/50547

error[E0658]: async/await is unstable
  --> src/api/client.rs:61:20
   |
61 |         let data = self.send_message(url).await?;
   |                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: for more information, see https://github.com/rust-lang/rust/issues/50547

error[E0658]: async fn is unstable
  --> src/api/client.rs:70:5
   |
70 | /     async fn send_message(&self, url: Url) -> std::result::Result<GString, Error> {
71 | |         // Create SOUP message
72 | |         match soup::Message::new("GET", &url.to_string()) {
73 | |             Some(message) => {
...  |
86 | |         }
87 | |     }
   | |_____^
   |
   = note: for more information, see https://github.com/rust-lang/rust/issues/50547

error[E0658]: async/await is unstable
  --> src/api/client.rs:75:36
   |
75 |                 let input_stream = self.session.send_async_future(&message).await?;
   |                                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: for more information, see https://github.com/rust-lang/rust/issues/50547

error[E0658]: async/await is unstable
  --> src/api/client.rs:80:30
   |
80 |                 let result = data_input_stream.read_upto_async_future("", glib::PRIORITY_LOW).await?;
   |                              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: for more information, see https://github.com/rust-lang/rust/issues/50547

error[E0658]: async fn is unstable
  --> src/api/favicon_downloader.rs:33:5
   |
33 | /     pub async fn download(self, url: Url, size: i32) -> Result<Pixbuf, Error> {
34 | |         match self.get_cached_pixbuf(&url, &size).await {
35 | |             Ok(pixbuf) => return Ok(pixbuf),
36 | |             Err(_) => debug!("No cached favicon available for {:?}", url),
...  |
64 | |         Ok(self.get_cached_pixbuf(&url, &size).await?)
65 | |     }
   | |_____^
   |
   = note: for more information, see https://github.com/rust-lang/rust/issues/50547

error[E0658]: async/await is unstable
  --> src/api/favicon_downloader.rs:34:15
   |
34 |         match self.get_cached_pixbuf(&url, &size).await {
   |               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: for more information, see https://github.com/rust-lang/rust/issues/50547

error[E0658]: async/await is unstable
  --> src/api/favicon_downloader.rs:43:36
   |
43 |                 let input_stream = self.session.send_async_future(&message).await?;
   |                                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: for more information, see https://github.com/rust-lang/rust/issues/50547

error[E0658]: async/await is unstable
  --> src/api/favicon_downloader.rs:50:30
   |
50 |                 let pixbuf = Pixbuf::new_from_stream_at_scale_async_future(&data_input_stream, 192, 192, true).await?;
   |                              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: for more information, see https://github.com/rust-lang/rust/issues/50547

error[E0658]: async/await is unstable
  --> src/api/favicon_downloader.rs:55:31
   |
55 |                     let ios = file.create_readwrite_async_future(gio::FileCreateFlags::REPLACE_DESTINATION, glib::PRIORITY_DEFAULT).await?;
   |                               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: for more information, see https://github.com/rust-lang/rust/issues/50547

error[E0658]: async/await is unstable
  --> src/api/favicon_downloader.rs:57:21
   |
57 |                     pixbuf.save_to_streamv_async_future(&data_output_stream, "png", &[]).await?;
   |                     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: for more information, see https://github.com/rust-lang/rust/issues/50547

error[E0658]: async/await is unstable
  --> src/api/favicon_downloader.rs:64:12
   |
64 |         Ok(self.get_cached_pixbuf(&url, &size).await?)
   |            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: for more information, see https://github.com/rust-lang/rust/issues/50547

error[E0658]: async fn is unstable
  --> src/api/favicon_downloader.rs:67:5
   |
67 | /     async fn get_cached_pixbuf(&self, url: &Url, size: &i32) -> Result<Pixbuf, Error> {
68 | |         let file = Self::get_file(&url)?;
69 | |         if Self::exists(&file) {
70 | |             let ios = file.open_readwrite_async_future(glib::PRIORITY_DEFAULT).await.expect("Could not open file");
...  |
76 | |         }
77 | |     }
   | |_____^
   |
   = note: for more information, see https://github.com/rust-lang/rust/issues/50547

error[E0658]: async/await is unstable
  --> src/api/favicon_downloader.rs:70:23
   |
70 |             let ios = file.open_readwrite_async_future(glib::PRIORITY_DEFAULT).await.expect("Could not open file");
   |                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: for more information, see https://github.com/rust-lang/rust/issues/50547

error[E0658]: async/await is unstable
  --> src/api/favicon_downloader.rs:73:16
   |
73 |             Ok(Pixbuf::new_from_stream_at_scale_async_future(&data_input_stream, *size, *size, true).await?)
   |                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: for more information, see https://github.com/rust-lang/rust/issues/50547

error: aborting due to 19 previous errors

For more information about this error, try `rustc --explain E0658`.
error: Could not compile `shortwave`.

To learn more, run the command again with --verbose.
[3/4] Generating de.haeckerfelix.Shortwave.appdata.xml_data_merge with a custom command.
FAILED: src/shortwave 
/var/tmp/pamac-build-tio/shortwave-git/src/Shortwave/build-aux/cargo.sh /var/tmp/pamac-build-tio/shortwave-git/src/build /var/tmp/pamac-build-tio/shortwave-git/src/Shortwave src/shortwave /usr/share/locale beta
ninja: build stopped: subcommand failed.
==> ERROR: A failure occurred in build().
    Aborting...

yochananmarqos commented on 2019-11-11 17:04 (UTC) (edited on 2019-11-11 17:05 (UTC) by yochananmarqos)

Tags are now available:

pkgver() {
    cd "$srcdir/Shortwave"
    printf "%s" "$(git describe --long | sed 's/\([^-]*-\)g/r\1/;s/-/./g')"
}
0.0.1.r0.cd80fc2

Also, appstream-glib is required to build:

Program appstream-util found: YES (/usr/sbin/appstream-util)

Listing both cargo and rust is redundant, just use one or the other. The project page specifies rust.

gradio should be added to provides() and conflicts().

flipflop97 commented on 2019-03-30 16:27 (UTC)

@nicoulaj

Thanks, added!

nicoulaj commented on 2019-03-29 19:49 (UTC) (edited on 2019-03-29 19:49 (UTC) by nicoulaj)

I think a makedepends on gst-plugins-base-libs is needed, this is what happens when building in a chroot:

Package gstreamer-audio-1.0 was not found in the pkg-config search path.
Perhaps you should add the directory containing `gstreamer-audio-1.0.pc'
to the PKG_CONFIG_PATH environment variable
Package 'gstreamer-audio-1.0', required by 'virtual:world', not found


warning: build failed, waiting for other jobs to finish...
error: failed to run custom build command for `gstreamer-video-sys v0.7.0`
process didn't exit successfully: `/build/shortwave-git/src/build/target/release/build/gstreamer-video-sys-287deda3e527dbee/build-script-bu
ild` (exit code: 1)

Tio commented on 2019-02-06 13:05 (UTC)

@flipflop97 I see thank you very much

flipflop97 commented on 2019-02-06 12:30 (UTC) (edited on 2019-02-06 12:31 (UTC) by flipflop97)

@teoretic

The same applies to your error as with @kouros17.

The last line of your error shows what's wrong:
libhandy 0.0.7 is needed while 0.0.6 is installed. Since the repo version is out of date you'll have to fall back and install libhandy-git for now.

Tio commented on 2019-02-05 14:18 (UTC)

I get this error on Manjaro Gnome:

Preparing... Cloning shortwave-git build files... Checking shortwave-git dependencies... Resolving dependencies... Checking inter-conflicts... Downloading libhandy (0.0.6-1-x86_64)... Checking keyring... Checking integrity... Loading packages files... Checking file conflicts... Checking available disk space... Installing libhandy (0.0.6-1)... Building shortwave-git... ==> Making package: shortwave-git r215.b28ab0d-1 (mar 05 feb 2019 15:11:18 CET) ==> Checking runtime dependencies... ==> Checking buildtime dependencies... ==> Retrieving sources... -> Cloning Shortwave git repo... Cloning into bare repository '/tmp/pamac-build/shortwave-git/Shortwave'... ==> Validating source files with sha256sums... Shortwave ... Skipped ==> Removing existing $srcdir/ directory... ==> Extracting sources... -> Creating working copy of Shortwave git repo... Cloning into 'Shortwave'... done. ==> Starting pkgver()... ==> Updated version: shortwave-git r218.6fd90a5-1 ==> Starting build()... + exec meson setup --prefix /usr --libdir /usr/lib --libexecdir /usr/lib --bindir /usr/bin --sbindir /usr/bin --includedir /usr/include --datadir /usr/share --mandir /usr/share/man --infodir /usr/share/info --localedir /usr/share/locale --sysconfdir /etc --localstatedir /var --sharedstatedir /var/lib --buildtype release --auto-features enabled --wrap-mode nofallback -D b_lto=true -D b_pie=true Shortwave build The Meson build system Version: 0.49.0 Source dir: /tmp/pamac-build/shortwave-git/src/Shortwave Build dir: /tmp/pamac-build/shortwave-git/src/build Build type: native build Project name: shortwave Project version: 7.99.0 Appending LDFLAGS from environment: '-Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now' Native Rust compiler: rustc (rustc 1.32.0) Build machine cpu family: x86_64 Build machine cpu: x86_64 Configuring de.haeckerfelix.Shortwave.desktop.in using configuration Program desktop-file-validate found: YES (/usr/bin/desktop-file-validate) Configuring de.haeckerfelix.Shortwave.appdata.xml.in using configuration Program appstream-util found: YES (/usr/bin/appstream-util) Configuring de.haeckerfelix.Shortwave.service using configuration Program cargo found: YES (/usr/bin/cargo) Program glib-compile-resources found: YES (/usr/bin/glib-compile-resources) Program cargo-vendor found: NO Program build-aux/cargo.sh found: YES (/tmp/pamac-build/shortwave-git/src/Shortwave/build-aux/cargo.sh) Program build-aux/grabber.sh found: YES (/tmp/pamac-build/shortwave-git/src/Shortwave/build-aux/grabber.sh) Program build-aux/release.sh found: YES (/tmp/pamac-build/shortwave-git/src/Shortwave/build-aux/release.sh) WARNING: Custom target input '['src', 'src/window.rs', 'src/widgets', 'src/widgets/station_row.rs', 'src/widgets/station_listbox.rs', 'src/widgets/song_row.rs', 'src/widgets/song_listbox.rs', 'src/widgets/notification.rs', 'src/widgets/mod.rs', 'src/station_model.rs', 'src/static_resource.rs', 'src/song.rs', 'src/search.rs', 'src/player.rs', 'src/main.rs', 'src/library.rs', 'src/gstreamer_backend.rs', 'src/app.rs', 'src/widgets', 'src/widgets/station_row.rs', 'src/widgets/station_listbox.rs', 'src/widgets/song_row.rs', 'src/widgets/song_listbox.rs', 'src/widgets/notification.rs', 'src/widgets/mod.rs', 'data/gtk', 'data/gtk/window.ui', 'data/gtk/style.css', 'data/gtk/station_row.ui', 'data/gtk/station_listbox.ui', 'data/gtk/song_listbox.ui', 'data/gtk/shortcuts.ui', 'data/gtk/search.ui', 'data/gtk/recorder.ui', 'data/gtk/player.ui', 'data/gtk/notification.ui', 'data/gtk/menu.ui', 'data/gtk/library.ui', 'data', 'data/resources.xml', 'data/meson.build', 'data/icons', 'data/icons/meson.build', 'data/icons/hicolor', 'data/icons/hicolor/symbolic', 'data/icons/hicolor/symbolic/apps', 'data/icons/hicolor/symbolic/apps/de.haeckerfelix.Shortwave-symbolic.svg', 'data/icons/hicolor/scalable', 'data/icons/hicolor/scalable/apps', 'data/icons/hicolor/scalable/apps/de.haeckerfelix.Shortwave.svg', 'data/gtk', 'data/gtk/window.ui', 'data/gtk/style.css', 'data/gtk/station_row.ui', 'data/gtk/station_listbox.ui', 'data/gtk/song_listbox.ui', 'data/gtk/shortcuts.ui', 'data/gtk/search.ui', 'data/gtk/recorder.ui', 'data/gtk/player.ui', 'data/gtk/notification.ui', 'data/gtk/menu.ui', 'data/gtk/library.ui', 'data/de.haeckerfelix.Shortwave.service.in', 'data/de.haeckerfelix.Shortwave.gschema.xml', 'data/de.haeckerfelix.Shortwave.desktop.in.in', 'data/de.haeckerfelix.Shortwave.appdata.xml.in.in']' can't be converted to File object(s). This will become a hard error in the future. Program build-aux/meson_post_install.py found: YES (/tmp/pamac-build/shortwave-git/src/Shortwave/build-aux/meson_post_install.py) Build targets in project: 4 Found ninja-1.8.2 at /usr/bin/ninja ninja: Entering directory build' [0/3] Generating cargo-build with a custom command. RELEASE MODE Updating crates.io index Updating git repositoryhttps://gitlab.gnome.org/World/Rust/libhandy-rsUpdating git repositoryhttps://gitlab.gnome.org/haecker-felix/Rustio.gitDownloading crates ... Downloaded stopwatch v0.0.7 Downloaded uuid v0.7.2 Downloaded serde v1.0.87 Downloaded gstreamer v0.12.2 Downloaded libc v0.2.48 Downloaded gobject-sys v0.7.0 Downloaded log v0.4.6 Downloaded indexmap v1.0.2 Downloaded gdk-sys v0.7.0 Downloaded gio v0.5.1 Downloaded simplelog v0.5.3 Downloaded glib-sys v0.7.0 Downloaded rusqlite v0.13.0 Downloaded glib v0.6.1 Downloaded gtk v0.5.0 Downloaded gtk-sys v0.7.0 Downloaded bitflags v1.0.4 Downloaded gdk v0.9.0 Downloaded gstreamer-pbutils v0.12.2 Downloaded pkg-config v0.3.14 Downloaded serde_derive v1.0.87 Downloaded gio-sys v0.7.0 Downloaded quick-error v1.2.2 Downloaded lazy_static v1.2.0 Downloaded mpris-player v0.1.0 Downloaded restson v0.4.1 Downloaded cfg-if v0.1.6 Downloaded num v0.1.42 Downloaded lru-cache v0.1.1 Downloaded time v0.1.42 Downloaded chrono v0.4.6 Downloaded rand v0.6.5 Downloaded gstreamer-sys v0.6.2 Downloaded pango-sys v0.7.0 Downloaded cairo-rs v0.5.0 Downloaded muldiv v0.2.0 Downloaded syn v0.15.26 Downloaded gstreamer-pbutils-sys v0.6.2 Downloaded pango v0.5.0 Downloaded term v0.5.1 Downloaded gdk-pixbuf-sys v0.7.0 Downloaded atk-sys v0.7.0 Downloaded gdk-pixbuf v0.5.0 Downloaded proc-macro2 v0.4.27 Downloaded num-rational v0.2.1 Downloaded fragile v0.3.0 Downloaded cairo-sys-rs v0.7.0 Downloaded num-complex v0.1.43 Downloaded num-traits v0.2.6 Downloaded serde_json v1.0.38 Downloaded hyper v0.12.23 Downloaded rand_xorshift v0.1.1 Downloaded rand_os v0.1.2 Downloaded rand_core v0.4.0 Downloaded num-integer v0.1.39 Downloaded hyper-tls v0.3.1 Downloaded futures v0.1.25 Downloaded rand_hc v0.1.0 Downloaded dbus v0.6.4 Downloaded linked-hash-map v0.4.2 Downloaded gstreamer-audio-sys v0.6.2 Downloaded url v1.7.2 Downloaded rand_chacha v0.1.1 Downloaded byteorder v1.3.1 Downloaded num-rational v0.1.42 Downloaded rand_jitter v0.1.2 Downloaded rand_pcg v0.1.1 Downloaded base64 v0.10.1 Downloaded unicode-xid v0.1.0 Downloaded tokio-core v0.1.17 Downloaded rand_isaac v0.1.1 Downloaded autocfg v0.1.2 Downloaded quote v0.6.11 Downloaded num-iter v0.1.37 Downloaded tokio-io v0.1.11 Downloaded itoa v0.4.3 Downloaded tokio-executor v0.1.6 Downloaded tokio-threadpool v0.1.11 Downloaded iovec v0.1.2 Downloaded idna v0.1.5 Downloaded gstreamer-video-sys v0.6.2 Downloaded rustc_version v0.2.3 Downloaded rustc-serialize v0.3.24 Downloaded bytes v0.4.11 Downloaded http v0.1.15 Downloaded tokio v0.1.15 Downloaded httparse v1.3.3 Downloaded rand_core v0.3.1 Downloaded native-tls v0.2.2 Downloaded tokio-tcp v0.1.3 Downloaded mio v0.6.16 Downloaded gstreamer-base-sys v0.6.2 Downloaded futures-cpupool v0.1.8 Downloaded ryu v0.2.7 Downloaded percent-encoding v1.0.1 Downloaded h2 v0.1.16 Downloaded tokio-reactor v0.1.8 Downloaded tokio-timer v0.2.10 Downloaded scoped-tls v0.1.2 Downloaded matches v0.1.8 Downloaded num-bigint v0.1.44 Downloaded want v0.0.6 Downloaded net2 v0.2.33 Downloaded rand v0.4.6 Downloaded tokio-codec v0.1.1 Downloaded tokio-udp v0.1.3 Downloaded libdbus-sys v0.1.5 Downloaded slab v0.4.2 Downloaded parking_lot v0.7.1 Downloaded unicode-normalization v0.1.8 Downloaded openssl-sys v0.9.40 Downloaded lazycell v1.2.1 Downloaded crossbeam-deque v0.6.3 Downloaded string v0.1.3 Downloaded tokio-sync v0.1.1 Downloaded tokio-fs v0.1.5 Downloaded crossbeam-channel v0.3.8 Downloaded openssl v0.10.16 Downloaded crossbeam v0.6.0 Downloaded semver v0.9.0 Downloaded tokio-current-thread v0.1.4 Downloaded unicode-bidi v0.3.4 Downloaded openssl-probe v0.1.2 Downloaded tokio-uds v0.2.5 Downloaded fnv v1.0.6 Downloaded num_cpus v1.9.0 Downloaded crossbeam-utils v0.6.5 Downloaded mio-uds v0.6.7 Downloaded smallvec v0.6.8 Downloaded lock_api v0.1.5 Downloaded semver-parser v0.7.0 Downloaded cc v1.0.29 Downloaded libsqlite3-sys v0.9.3 Downloaded try-lock v0.2.2 Downloaded parking_lot_core v0.4.0 Downloaded scopeguard v0.3.3 Downloaded crossbeam-epoch v0.7.1 Downloaded owning_ref v0.4.0 Downloaded unreachable v1.0.0 Downloaded arrayvec v0.4.10 Downloaded memoffset v0.2.1 Downloaded stable_deref_trait v1.1.1 Downloaded void v1.0.2 Downloaded foreign-types v0.3.2 Downloaded foreign-types-shared v0.1.1 Downloaded nodrop v0.1.13 Compiling semver-parser v0.7.0 Compiling autocfg v0.1.2 Compiling libc v0.2.48 Compiling rand_core v0.4.0 Compiling void v1.0.2 Compiling arrayvec v0.4.10 Compiling lazy_static v1.2.0 Compiling cfg-if v0.1.6 Compiling byteorder v1.3.1 Compiling stable_deref_trait v1.1.1 Compiling nodrop v0.1.13 Compiling memoffset v0.2.1 Compiling pkg-config v0.3.14 Compiling scopeguard v0.3.3 Compiling lazycell v1.2.1 Compiling slab v0.4.2 Compiling cc v1.0.29 Compiling futures v0.1.25 Compiling num-traits v0.2.6 Compiling proc-macro2 v0.4.27 Compiling foreign-types-shared v0.1.1 Compiling fnv v1.0.6 Compiling httparse v1.3.3 Compiling itoa v0.4.3 Compiling gio v0.5.1 Compiling bitflags v1.0.4 Compiling num-integer v0.1.39 Compiling openssl v0.10.16 Compiling unicode-xid v0.1.0 Compiling gdk-pixbuf v0.5.0 Compiling indexmap v1.0.2 Compiling native-tls v0.2.2 Compiling string v0.1.3 Compiling ryu v0.2.7 Compiling fragile v0.3.0 Compiling matches v0.1.8 Compiling try-lock v0.2.2 Compiling serde v1.0.87 Compiling cairo-rs v0.5.0 Compiling num-iter v0.1.37 Compiling gdk v0.9.0 Compiling num-rational v0.2.1 Compiling rustc-serialize v0.3.24 Compiling openssl-probe v0.1.2 Compiling scoped-tls v0.1.2 Compiling gstreamer v0.12.2 Compiling gtk v0.5.0 Compiling percent-encoding v1.0.1 Compiling gstreamer-pbutils v0.12.2 Compiling linked-hash-map v0.4.2 Compiling muldiv v0.2.0 Compiling shortwave v0.1.0 (/tmp/pamac-build/shortwave-git/src/Shortwave) Compiling quick-error v1.2.2 Compiling log v0.4.6 Compiling unreachable v1.0.0 Compiling crossbeam-utils v0.6.5 Compiling owning_ref v0.4.0 Compiling rand_core v0.3.1 Compiling rand_jitter v0.1.2 Compiling rand_chacha v0.1.1 Compiling rand v0.6.5 Compiling semver v0.9.0 Compiling foreign-types v0.3.2 Compiling glib-sys v0.7.0 Compiling gobject-sys v0.7.0 Compiling gio-sys v0.7.0 Compiling gdk-pixbuf-sys v0.7.0 Compiling gstreamer-sys v0.6.2 Compiling cairo-sys-rs v0.7.0 Compiling pango-sys v0.7.0 Compiling gdk-sys v0.7.0 Compiling gstreamer-base-sys v0.6.2 Compiling atk-sys v0.7.0 Compiling gstreamer-audio-sys v0.6.2 Compiling gstreamer-video-sys v0.6.2 Compiling gtk-sys v0.7.0 Compiling libdbus-sys v0.1.5 Compiling libsqlite3-sys v0.9.3 Compiling gstreamer-pbutils-sys v0.6.2 Compiling libhandy-sys v0.2.0 (<https://gitlab.gnome.org/World/Rust/libhandy-rs#c63cc611>) Compiling unicode-bidi v0.3.4 Compiling tokio-sync v0.1.1 Compiling lru-cache v0.1.1 Compiling smallvec v0.6.8 Compiling rand_isaac v0.1.1 Compiling rand_xorshift v0.1.1 Compiling rand_hc v0.1.0 Compiling lock_api v0.1.5 Compiling want v0.0.6 Compiling tokio-executor v0.1.6 Compiling openssl-sys v0.9.40 Compiling rustc_version v0.2.3 Compiling crossbeam-channel v0.3.8 Compiling unicode-normalization v0.1.8 Compiling base64 v0.10.1 Compiling term v0.5.1 Compiling crossbeam-epoch v0.7.1 Compiling rand_os v0.1.2 Compiling iovec v0.1.2 Compiling num_cpus v1.9.0 Compiling net2 v0.2.33 Compiling time v0.1.42 Compiling rand v0.4.6 Compiling tokio-timer v0.2.10 Compiling tokio-current-thread v0.1.4 Compiling num-complex v0.1.43 Compiling rand_pcg v0.1.1 Compiling parking_lot_core v0.4.0 Compiling crossbeam-deque v0.6.3 Compiling quote v0.6.11 Compiling bytes v0.4.11 Compiling futures-cpupool v0.1.8 Compiling mio v0.6.16 Compiling dbus v0.6.4 Compiling rusqlite v0.13.0 Compiling num-bigint v0.1.44 Compiling chrono v0.4.6 Compiling serde_json v1.0.38 Compiling tokio-io v0.1.11 Compiling http v0.1.15 Compiling syn v0.15.26 Compiling glib v0.6.1 Compiling mio-uds v0.6.7 Compiling num-rational v0.1.42 Compiling simplelog v0.5.3 Compiling tokio-codec v0.1.1 Compiling idna v0.1.5 Compiling h2 v0.1.16 Compiling num v0.1.42 Compiling stopwatch v0.0.7 error: failed to run custom build command forlibhandy-sys v0.2.0 (https://gitlab.gnome.org/World/Rust/libhandy-rs#c63cc611)process didn't exit successfully:/tmp/pamac-build/shortwave-git/src/Shortwave/target/release/build/libhandy-sys-ff396523c0a0db4d/build-script-build(exit code: 1) --- stderr"pkg-config" "--libs" "--cflags" "libhandy-0.0 >= 0.0.7"` did not exit successfully: exit code: 1 --- stderr Package dependency requirement 'libhandy-0.0 >= 0.0.7' could not be satisfied. Package 'libhandy-0.0' has version '0.0.6', required version is '>= 0.0.7'

warning: build failed, waiting for other jobs to finish... error: build failed [2/3] Generating de.haeckerfelix.Shortwave.appdata.xml_data_merge with a custom command. FAILED: shortwave /tmp/pamac-build/shortwave-git/src/Shortwave/build-aux/cargo.sh ../Shortwave shortwave /usr/share/locale de.haeckerfelix.Shortwave '' 7.99.0 '' ninja: build stopped: subcommand failed. ==> ERROR: A failure occurred in build(). Aborting...

kouros17 commented on 2019-02-01 21:53 (UTC) (edited on 2019-02-01 21:53 (UTC) by kouros17)

@flipflop97

You 're right, I changed the theme to default and everything worked correctly! Thanks a lot! :)

flipflop97 commented on 2019-02-01 11:26 (UTC)

@kouros17

Do you have any custom styles in ~/.config/gtk-3.0/gtk.css? It seems like there is an error in that file (something with gtkalpha on line 12), so you can try fixing/removing that.

If that's not it it might be a problem with your GTK theme, so try compiling again with the default theme.