Unverified Commit 13016a24 authored by Gergő Gutyina's avatar Gergő Gutyina Committed by GitHub
Browse files

radiotray-ng: 0.2.9 -> 0.2.10.1; adopt as maintainer (#476505)

parents f3605309 957dad69
Loading
Loading
Loading
Loading
+9 −9
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@
  libappindicator-gtk3,
  libnotify,
  libxdg_basedir,
  wxGTK,
  wxGTK32,
  # GStreamer
  glib-networking,
  gst_all_1,
@@ -48,15 +48,15 @@ let
    lxml
  ];
in
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
  pname = "radiotray-ng";
  version = "0.2.9";
  version = "0.2.10.1";

  src = fetchFromGitHub {
    owner = "ebruck";
    repo = "radiotray-ng";
    tag = "v${version}";
    hash = "sha256-rRD/IfVnOxowr2mO2BB2hcHK5ByZSmTbcgYdULogYUs=";
    tag = "v${finalAttrs.version}";
    hash = "sha256-GYSacYKS0az5sqPqZhnuTZOT9NSzW+P9o5r5p0RhTtI=";
  };

  nativeBuildInputs = [
@@ -78,7 +78,7 @@ stdenv.mkDerivation rec {
    libnotify
    libxdg_basedir
    lsb-release
    wxGTK
    wxGTK32
    # for https gstreamer / libsoup
    glib-networking
  ]
@@ -104,7 +104,7 @@ stdenv.mkDerivation rec {
  '';

  cmakeFlags = [
    "-DBUILD_TESTS=${if doCheck then "ON" else "OFF"}"
    (lib.cmakeBool "BUILD_TESTS" finalAttrs.doCheck)
  ];

  # 'wxFont::wxFont(int, int, int, int, bool, const wxString&, wxFontEncoding)' is deprecated
@@ -122,7 +122,7 @@ stdenv.mkDerivation rec {
    description = "Internet radio player for linux";
    homepage = "https://github.com/ebruck/radiotray-ng";
    license = lib.licenses.gpl3;
    maintainers = [ ];
    maintainers = [ lib.maintainers.somasis ];
    platforms = lib.platforms.linux;
  };
}
})
+12 −0
Original line number Diff line number Diff line
@@ -10,16 +10,3 @@ index 58ab5c2..4f56a25 100644
 function(add_gmock_test target)
     add_executable(${target} ${ARGN})
     target_link_libraries(${target} config playlist bookmarks event_bus ${GMOCK_BOTH_LIBRARIES} ${XDG_BASEDIR_LIBRARIES} ${Boost_LIBRARIES} ${CURL_LIBRARIES} ${JSONCPP_LIBRARIES} pthread)
diff --git a/tests/bookmarks_test.cpp b/tests/bookmarks_test.cpp
index 2d72356..97f898a 100644
--- a/tests/bookmarks_test.cpp
+++ b/tests/bookmarks_test.cpp
@@ -215,7 +215,7 @@ TEST(Bookmarks, test_that_stations_are_added_and_removed_from_a_group_and_moved)
 	ASSERT_FALSE(bm[0].stations[0].notifications);
 
 	// vector only throws when using at()
-	EXPECT_THROW(bm[0].stations.at(100), std::out_of_range);
+	EXPECT_THROW(static_cast<void>(bm[0].stations.at(100)), std::out_of_range);
 	EXPECT_THROW(bm[1], std::out_of_range);
 }
 
+0 −4
Original line number Diff line number Diff line
@@ -11683,10 +11683,6 @@ with pkgs;
    fltk = fltk13;
  };

  radiotray-ng = callPackage ../applications/audio/radiotray-ng {
    wxGTK = wxGTK32;
  };

  rawtherapee = callPackage ../applications/graphics/rawtherapee {
    fftw = fftwSinglePrec;
  };