View | Details | Raw Unified | Return to bug 263941
Collapse All | Expand All

(-)b/MOVED (+1 lines)
Lines 17148-17150 graphics/drm-devel-kmod||2022-05-01|Switched to a Linux version based naming sch Link Here
17148
math/rkward-kde|math/rkward|2022-05-06|Switched to the name used by upstream
17148
math/rkward-kde|math/rkward|2022-05-06|Switched to the name used by upstream
17149
graphics/photoflow||2022-05-06|Unmaintainer upstream, has been broken for months, particularly this issue isn't answered: https://github.com/aferrero2707/PhotoFlow/issues/220
17149
graphics/photoflow||2022-05-06|Unmaintainer upstream, has been broken for months, particularly this issue isn't answered: https://github.com/aferrero2707/PhotoFlow/issues/220
17150
textproc/redisearch16||2022-05-09|Has expired. Use textproc/redisearch or textproc/redisearch20
17150
textproc/redisearch16||2022-05-09|Has expired. Use textproc/redisearch or textproc/redisearch20
17151
math/pantheon-calculator|math/elementary-calculator|2022-05-12|Switch to reverse domain name notation
(-)b/math/Makefile (-1 / +1 lines)
Lines 289-294 Link Here
289
    SUBDIR += eigen3
289
    SUBDIR += eigen3
290
    SUBDIR += eispack
290
    SUBDIR += eispack
291
    SUBDIR += elemental
291
    SUBDIR += elemental
292
    SUBDIR += elementary-calculator
292
    SUBDIR += elpa
293
    SUBDIR += elpa
293
    SUBDIR += emc2
294
    SUBDIR += emc2
294
    SUBDIR += ensmallen
295
    SUBDIR += ensmallen
Lines 764-770 Link Here
764
    SUBDIR += p5-Text-AsciiTeX
765
    SUBDIR += p5-Text-AsciiTeX
765
    SUBDIR += p5-bignum
766
    SUBDIR += p5-bignum
766
    SUBDIR += palp
767
    SUBDIR += palp
767
    SUBDIR += pantheon-calculator
768
    SUBDIR += pari
768
    SUBDIR += pari
769
    SUBDIR += pari_elldata
769
    SUBDIR += pari_elldata
770
    SUBDIR += pari_galdata
770
    SUBDIR += pari_galdata
(-)b/math/elementary-calculator/Makefile (-5 / +4 lines)
Lines 1-8 Link Here
1
PORTNAME=	calculator
1
PORTNAME=	calculator
2
PORTVERSION=	1.7.2
2
PORTVERSION=	2.0.0
3
CATEGORIES=	math
3
CATEGORIES=	math
4
PKGNAMEPREFIX=	pantheon-
4
PKGNAMEPREFIX=	elementary-
5
DIST_SUBDIR=	pantheon
6
5
7
MAINTAINER=	duchateau.olivier@gmail.com
6
MAINTAINER=	duchateau.olivier@gmail.com
8
COMMENT=	Simple calculator written in Vala
7
COMMENT=	Simple calculator written in Vala
Lines 12-22 LICENSE_FILE= ${WRKSRC}/COPYING Link Here
12
11
13
BUILD_DEPENDS=	valac:lang/vala
12
BUILD_DEPENDS=	valac:lang/vala
14
LIB_DEPENDS=	libgee-0.8.so:devel/libgee \
13
LIB_DEPENDS=	libgee-0.8.so:devel/libgee \
15
		libgranite.so:x11-toolkits/granite \
14
		libgranite-7.so:x11-toolkits/granite7 \
16
		libhandy-1.so:x11-toolkits/libhandy
15
		libhandy-1.so:x11-toolkits/libhandy
17
16
18
USES=		gettext gnome meson pkgconfig python:3.6+,build
17
USES=		gettext gnome meson pkgconfig python:3.6+,build
19
USE_GNOME=	cairo gdkpixbuf2 glib20 gtk30
18
USE_GNOME=	cairo gdkpixbuf2 glib20 gtk40
20
19
21
USE_GITHUB=	yes
20
USE_GITHUB=	yes
22
GH_ACCOUNT=	elementary
21
GH_ACCOUNT=	elementary
(-)b/math/elementary-calculator/distinfo (+3 lines)
Added Link Here
1
TIMESTAMP = 1652373931
2
SHA256 (elementary-calculator-2.0.0_GH0.tar.gz) = bf4fefc9a526ad9e7c546374e764473e75aed77822bd0d3f7b706017181a4f1d
3
SIZE (elementary-calculator-2.0.0_GH0.tar.gz) = 232133
(-)b/math/elementary-calculator/files/patch-src_MainWindow.vala (+28 lines)
Added Link Here
1
Replace missing icons (Adwaita)
2
3
--- src/MainWindow.vala.orig	2022-05-10 20:12:35 UTC
4
+++ src/MainWindow.vala
5
@@ -78,7 +78,7 @@ public class PantheonCalculator.MainWindow : Gtk.Appli
6
         history = new List<History?> ();
7
         position = 0;
8
         button_extended = new Gtk.ToggleButton () {
9
-            icon_name = "pane-hide-symbolic",
10
+            icon_name = "pan-end-symbolic",
11
             tooltip_text = _("Show extended functionality")
12
         };
13
         button_extended.toggled.connect (toggle_grid);
14
@@ -731,12 +731,12 @@ public class PantheonCalculator.MainWindow : Gtk.Appli
15
         position = entry.get_position ();
16
         if (button.get_active ()) {
17
             /* Show extended functionality */
18
-            button.icon_name = "pane-show-symbolic";
19
+            button.icon_name = "pan-start-symbolic";
20
             button.tooltip_text = _("Hide extended functionality");
21
             extended_revealer.reveal_child = true;
22
         } else {
23
             /* Hide extended functionality */
24
-            button.icon_name = "pane-hide-symbolic";
25
+            button.icon_name = "pan-end-symbolic";
26
             button.tooltip_text = _("Show extended functionality");
27
             extended_revealer.reveal_child = false;
28
         }
(-)a/math/pantheon-calculator/distinfo (-3 lines)
Removed Link Here
1
TIMESTAMP = 1639672237
2
SHA256 (pantheon/elementary-calculator-1.7.2_GH0.tar.gz) = d296d06b36a0c7dd84e7e91e9801989e83312612d6ee6f0479030c1b340d397b
3
SIZE (pantheon/elementary-calculator-1.7.2_GH0.tar.gz) = 229144
(-)a/math/pantheon-calculator/files/patch-src_MainWindow.vala (-15 lines)
Removed Link Here
1
Replace missing icons (Adwaita)
2
3
--- src/MainWindow.vala.orig	2016-08-10 05:29:30 UTC
4
+++ src/MainWindow.vala
5
@@ -73,8 +73,8 @@ namespace PantheonCalculator {
6
             headerbar.set_title (_("Calculator"));
7
             set_titlebar (headerbar); 
8
 
9
-            extended_img_1 = new Gtk.Image.from_icon_name ("pane-hide-symbolic", Gtk.IconSize.MENU);
10
-            extended_img_2 = new Gtk.Image.from_icon_name ("pane-show-symbolic", Gtk.IconSize.MENU);
11
+            extended_img_1 = new Gtk.Image.from_icon_name ("pan-end-symbolic", Gtk.IconSize.MENU);
12
+            extended_img_2 = new Gtk.Image.from_icon_name ("pan-start-symbolic", Gtk.IconSize.MENU);
13
 
14
             button_extended = new Gtk.ToggleButton ();
15
             button_extended.image = extended_img_1;

Return to bug 263941