Compare commits
No commits in common. "master" and "ctemplate" have entirely different histories.
@ -1,25 +0,0 @@
|
|||||||
Upstream: Yes
|
|
||||||
|
|
||||||
From 08c503bdd1e128118e45fa50be256e27415bbd41 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Adrian Georgescu <ag@ag-projects.com>
|
|
||||||
Date: Sat, 1 Jan 2022 15:19:37 +0000
|
|
||||||
Subject: [PATCH] collections.MutableMapping was deprecated since Python 3.3
|
|
||||||
|
|
||||||
---
|
|
||||||
application/python/weakref.py | 3 ++-
|
|
||||||
1 file changed, 2 insertions(+), 1 deletion(-)
|
|
||||||
|
|
||||||
diff --git a/application/python/weakref.py b/application/python/weakref.py
|
|
||||||
index a785a7e..38fd664 100644
|
|
||||||
--- a/application/python/weakref.py
|
|
||||||
+++ b/application/python/weakref.py
|
|
||||||
@@ -1,7 +1,8 @@
|
|
||||||
|
|
||||||
import weakref
|
|
||||||
|
|
||||||
-from collections import MutableMapping, deque
|
|
||||||
+from collections.abc import MutableMapping
|
|
||||||
+from collections import deque
|
|
||||||
from copy import deepcopy
|
|
||||||
from threading import local
|
|
||||||
|
|
@ -15,7 +15,4 @@ MYOPTIONS=""
|
|||||||
DEPENDENCIES="
|
DEPENDENCIES="
|
||||||
dev-python/zopeinterface[python_abis:*(-)?]
|
dev-python/zopeinterface[python_abis:*(-)?]
|
||||||
"
|
"
|
||||||
DEFAULT_SRC_PREPARE_PATCHES=(
|
|
||||||
"${FILES}"/08c503bdd1e128118e45fa50be256e27415bbd41.patch
|
|
||||||
)
|
|
||||||
|
|
||||||
|
@ -0,0 +1,46 @@
|
|||||||
|
# Copyright 2016 Julian Ospald <hasufell@posteo.de>
|
||||||
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
|
require scons
|
||||||
|
|
||||||
|
SUMMARY="A simple converter to create Ogg Theora files"
|
||||||
|
HOMEPAGE="http://www.v2v.cc/~j/ffmpeg2theora/"
|
||||||
|
DOWNLOADS="http://www.v2v.cc/~j/${PN}/downloads/${PNV}.tar.bz2"
|
||||||
|
|
||||||
|
LICENCES="GPL-3"
|
||||||
|
SLOT="0"
|
||||||
|
PLATFORMS="~amd64 ~x86"
|
||||||
|
MYOPTIONS="
|
||||||
|
( providers: ffmpeg libav ) [[ number-selected = exactly-one ]]
|
||||||
|
"
|
||||||
|
|
||||||
|
DEPENDENCIES="
|
||||||
|
build:
|
||||||
|
virtual/pkg-config
|
||||||
|
build+run:
|
||||||
|
media-libs/libvorbis
|
||||||
|
media-libs/libogg
|
||||||
|
media-libs/libtheora
|
||||||
|
providers:ffmpeg? ( media/ffmpeg )
|
||||||
|
providers:libav? ( media/libav )
|
||||||
|
"
|
||||||
|
|
||||||
|
DEFAULT_SRC_PREPARE_PATCHES=(
|
||||||
|
-p0 "${FILES}"/${PN}-0.30-underlinking.patch
|
||||||
|
-p1 "${FILES}"/${PN}-0.30-build.patch
|
||||||
|
)
|
||||||
|
|
||||||
|
SCONS_SRC_CONFIGURE_PARAMS=(
|
||||||
|
libkate=0
|
||||||
|
bindir="${IMAGE}/usr/$(exhost --target)/bin"
|
||||||
|
destdir=${IMAGE}
|
||||||
|
prefix=/usr
|
||||||
|
)
|
||||||
|
SCONS_SRC_COMPILE_PARAMS=( "${SCONS_SRC_CONFIGURE_PARAMS[@]}" )
|
||||||
|
SCONS_SRC_INSTALL_PARAMS=( "${SCONS_SRC_CONFIGURE_PARAMS[@]}" )
|
||||||
|
|
||||||
|
src_install() {
|
||||||
|
scons_src_install
|
||||||
|
dodoc AUTHORS ChangeLog README subtitles.txt TODO
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,76 @@
|
|||||||
|
Source: Julian Ospald <hasufell@posteo.de>
|
||||||
|
Upstream: no
|
||||||
|
Reason: fix build by respecting pkg-config, CC etc
|
||||||
|
|
||||||
|
diff --git a/SConstruct b/SConstruct
|
||||||
|
index 2458096..eda1c41 100644
|
||||||
|
--- a/SConstruct
|
||||||
|
+++ b/SConstruct
|
||||||
|
@@ -4,6 +4,7 @@ from glob import glob
|
||||||
|
import os
|
||||||
|
|
||||||
|
import SCons
|
||||||
|
+import SCons.Util
|
||||||
|
|
||||||
|
def version():
|
||||||
|
#return "0.29"
|
||||||
|
@@ -41,6 +42,27 @@ opts.AddVariables(
|
||||||
|
env = Environment(options = opts)
|
||||||
|
Help(opts.GenerateHelpText(env))
|
||||||
|
|
||||||
|
+if os.environ.has_key('AR'):
|
||||||
|
+ env['AR'] = os.environ['AR']
|
||||||
|
+if os.environ.has_key('RANLIB'):
|
||||||
|
+ env['RANLIB'] = os.environ['RANLIB']
|
||||||
|
+if os.environ.has_key('CC'):
|
||||||
|
+ env['CC'] = os.environ['CC']
|
||||||
|
+if os.environ.has_key('CFLAGS'):
|
||||||
|
+ env['CCFLAGS'] += SCons.Util.CLVar(os.environ['CFLAGS'])
|
||||||
|
+if os.environ.has_key('CXX'):
|
||||||
|
+ env['CXX'] = os.environ['CXX']
|
||||||
|
+if os.environ.has_key('CXXFLAGS'):
|
||||||
|
+ env['CXXFLAGS'] += SCons.Util.CLVar(os.environ['CXXFLAGS'])
|
||||||
|
+if os.environ.has_key('CPPFLAGS'):
|
||||||
|
+ env['CCFLAGS'] += SCons.Util.CLVar(os.environ['CPPFLAGS'])
|
||||||
|
+if os.environ.has_key('LDFLAGS'):
|
||||||
|
+ env['LINKFLAGS'] += SCons.Util.CLVar(os.environ['LDFLAGS'])
|
||||||
|
+if os.environ.has_key('PKG_CONFIG'):
|
||||||
|
+ env['PKG_CONFIG'] = os.environ['PKG_CONFIG']
|
||||||
|
+else:
|
||||||
|
+ env['PKG_CONFIG'] = 'pkg-config'
|
||||||
|
+
|
||||||
|
pkg_flags="--cflags --libs"
|
||||||
|
if env['static']:
|
||||||
|
pkg_flags+=" --static"
|
||||||
|
@@ -75,9 +97,9 @@ if GetOption("help"):
|
||||||
|
|
||||||
|
def ParsePKGConfig(env, name):
|
||||||
|
if os.environ.get('PKG_CONFIG_PATH', ''):
|
||||||
|
- action = 'PKG_CONFIG_PATH=%s pkg-config %s "%s"' % (os.environ['PKG_CONFIG_PATH'], pkg_flags, name)
|
||||||
|
+ action = 'PKG_CONFIG_PATH=%s %s %s "%s"' % (os.environ['PKG_CONFIG_PATH'], env['PKG_CONFIG'], pkg_flags, name)
|
||||||
|
else:
|
||||||
|
- action = 'pkg-config %s "%s"' % (pkg_flags, name)
|
||||||
|
+ action = '%s %s "%s"' % (env['PKG_CONFIG'], pkg_flags, name)
|
||||||
|
return env.ParseConfig(action)
|
||||||
|
|
||||||
|
def TryAction(action):
|
||||||
|
@@ -89,16 +111,16 @@ def TryAction(action):
|
||||||
|
|
||||||
|
def CheckPKGConfig(context, version):
|
||||||
|
context.Message( 'Checking for pkg-config... ' )
|
||||||
|
- ret = TryAction('pkg-config --atleast-pkgconfig-version=%s' % version)[0]
|
||||||
|
+ ret = TryAction('%s --atleast-pkgconfig-version=%s' % (env['PKG_CONFIG'], version))[0]
|
||||||
|
context.Result( ret )
|
||||||
|
return ret
|
||||||
|
|
||||||
|
def CheckPKG(context, name):
|
||||||
|
context.Message( 'Checking for %s... ' % name )
|
||||||
|
if os.environ.get('PKG_CONFIG_PATH', ''):
|
||||||
|
- action = 'PKG_CONFIG_PATH=%s pkg-config --exists "%s"' % (os.environ['PKG_CONFIG_PATH'], name)
|
||||||
|
+ action = 'PKG_CONFIG_PATH=%s %s --exists "%s"' % (os.environ['PKG_CONFIG_PATH'], env['PKG_CONFIG'], name)
|
||||||
|
else:
|
||||||
|
- action = 'pkg-config --exists "%s"' % name
|
||||||
|
+ action = '%s --exists "%s"' % (env['PKG_CONFIG'], name)
|
||||||
|
ret = TryAction(action)[0]
|
||||||
|
context.Result( ret )
|
||||||
|
return ret
|
@ -0,0 +1,17 @@
|
|||||||
|
Source: Gentoo
|
||||||
|
Upstream: unknown
|
||||||
|
Reason: fix underlinking
|
||||||
|
|
||||||
|
--- SConstruct
|
||||||
|
+++ SConstruct
|
||||||
|
@@ -206,9 +206,8 @@
|
||||||
|
if env['crossmingw']:
|
||||||
|
env.Append(CCFLAGS=['-Wl,-subsystem,windows'])
|
||||||
|
env.Append(LIBS=['m'])
|
||||||
|
- elif env['static']:
|
||||||
|
- env.Append(LIBS=['m', 'dl'])
|
||||||
|
|
||||||
|
+ env.Append(LIBS=['m', 'dl'])
|
||||||
|
|
||||||
|
env = conf.Finish()
|
||||||
|
|
@ -70,7 +70,6 @@ src_install() {
|
|||||||
insinto /opt/slack
|
insinto /opt/slack
|
||||||
doins -r usr/lib/slack/.
|
doins -r usr/lib/slack/.
|
||||||
edo chmod +x "${IMAGE}"/opt/slack/slack
|
edo chmod +x "${IMAGE}"/opt/slack/slack
|
||||||
edo chmod +x "${IMAGE}"/opt/slack/chrome_crashpad_handler
|
|
||||||
dodir /usr/$(exhost --target)/bin
|
dodir /usr/$(exhost --target)/bin
|
||||||
dosym ../../../opt/slack/slack /usr/$(exhost --target)/bin/slack
|
dosym ../../../opt/slack/slack /usr/$(exhost --target)/bin/slack
|
||||||
}
|
}
|
@ -32,7 +32,6 @@ DEPENDENCIES="
|
|||||||
|
|
||||||
DEFAULT_SRC_PREPARE_PATCHES=(
|
DEFAULT_SRC_PREPARE_PATCHES=(
|
||||||
"${FILES}/${PN}-data-path.patch"
|
"${FILES}/${PN}-data-path.patch"
|
||||||
"${FILES}/33c7f377d173d27b4611d061ca36077805250e78.patch"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
src_install() {
|
src_install() {
|
@ -1,122 +0,0 @@
|
|||||||
Upstream: Yes
|
|
||||||
|
|
||||||
From 33c7f377d173d27b4611d061ca36077805250e78 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Jose Lopes <josemslopes@gmail.com>
|
|
||||||
Date: Tue, 8 Feb 2022 08:11:57 +0000
|
|
||||||
Subject: [PATCH] Solve issues with python 3.10
|
|
||||||
|
|
||||||
GH-3
|
|
||||||
---
|
|
||||||
blink/chatwindow.py | 3 ++-
|
|
||||||
blink/sessions.py | 6 +++---
|
|
||||||
blink/widgets/buttons.py | 4 ++--
|
|
||||||
blink/widgets/lineedit.py | 14 +++++++-------
|
|
||||||
blink/widgets/video.py | 2 +-
|
|
||||||
5 files changed, 15 insertions(+), 14 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/blink/chatwindow.py b/blink/chatwindow.py
|
|
||||||
index e55f590..40da6de 100644
|
|
||||||
--- a/blink/chatwindow.py
|
|
||||||
+++ b/blink/chatwindow.py
|
|
||||||
@@ -18,7 +18,8 @@
|
|
||||||
from application.python.descriptor import WriteOnceAttribute
|
|
||||||
from application.python.types import MarkerType
|
|
||||||
from application.system import makedirs
|
|
||||||
-from collections import MutableSet, deque
|
|
||||||
+from collections.abc import MutableSet
|
|
||||||
+from collections import deque
|
|
||||||
from datetime import datetime, timedelta
|
|
||||||
from itertools import count
|
|
||||||
from lxml import etree, html
|
|
||||||
diff --git a/blink/sessions.py b/blink/sessions.py
|
|
||||||
index 9805515..9928831 100644
|
|
||||||
--- a/blink/sessions.py
|
|
||||||
+++ b/blink/sessions.py
|
|
||||||
@@ -5094,13 +5094,13 @@ def showEvent(self, event):
|
|
||||||
total_width = width + window_frame_size.width()
|
|
||||||
total_height = height + window_frame_size.height()
|
|
||||||
|
|
||||||
- x = limit(screen_geometry.center().x() - total_width/2, min=available_geometry.left(), max=available_geometry.right()-total_width)
|
|
||||||
+ x = int(limit(screen_geometry.center().x() - total_width/2, min=available_geometry.left(), max=available_geometry.right()-total_width))
|
|
||||||
if slot is None:
|
|
||||||
y = -1
|
|
||||||
elif slot % 2 == 0:
|
|
||||||
- y = screen_geometry.center().y() + (slot-1)*total_height/2
|
|
||||||
+ y = int(screen_geometry.center().y() + (slot-1)*total_height/2)
|
|
||||||
else:
|
|
||||||
- y = screen_geometry.center().y() - slot*total_height/2
|
|
||||||
+ y = int(screen_geometry.center().y() - slot*total_height/2)
|
|
||||||
|
|
||||||
if available_geometry.top() <= y <= available_geometry.bottom() - total_height:
|
|
||||||
self.setGeometry(x, y, width, height)
|
|
||||||
diff --git a/blink/widgets/buttons.py b/blink/widgets/buttons.py
|
|
||||||
index c3b18bf..72aefd5 100644
|
|
||||||
--- a/blink/widgets/buttons.py
|
|
||||||
+++ b/blink/widgets/buttons.py
|
|
||||||
@@ -620,8 +620,8 @@ def pixmap(self, mode=QIcon.Normal, state=QIcon.Off):
|
|
||||||
return pixmap
|
|
||||||
|
|
||||||
size = max(pixmap.width(), pixmap.height())
|
|
||||||
- offset_x = (size - pixmap.width())/2
|
|
||||||
- offset_y = (size - pixmap.height())/2
|
|
||||||
+ offset_x = int((size - pixmap.width())/2)
|
|
||||||
+ offset_y = int((size - pixmap.height())/2)
|
|
||||||
|
|
||||||
new_pixmap = QPixmap(size, size)
|
|
||||||
new_pixmap.fill(Qt.transparent)
|
|
||||||
diff --git a/blink/widgets/lineedit.py b/blink/widgets/lineedit.py
|
|
||||||
index ee63e81..f03ac54 100644
|
|
||||||
--- a/blink/widgets/lineedit.py
|
|
||||||
+++ b/blink/widgets/lineedit.py
|
|
||||||
@@ -68,13 +68,13 @@ def _update_side_widget_locations(self):
|
|
||||||
text_rect.adjust(spacing, 0, -spacing, 0)
|
|
||||||
mid_height = text_rect.center().y() + 1 - (text_rect.height() % 2) # need -1 correction for odd heights -Dan
|
|
||||||
if self.left_layout.count() > 0:
|
|
||||||
- left_height = mid_height - self.left_widget.height()/2
|
|
||||||
+ left_height = int(mid_height - self.left_widget.height()/2)
|
|
||||||
left_width = self.left_widget.width()
|
|
||||||
if left_width == 0:
|
|
||||||
- left_height = mid_height - self.left_widget.sizeHint().height()/2
|
|
||||||
+ left_height = int(mid_height - self.left_widget.sizeHint().height()/2)
|
|
||||||
self.left_widget.move(text_rect.x(), left_height)
|
|
||||||
text_rect.setX(self.left_margin)
|
|
||||||
- text_rect.setY(mid_height - self.right_widget.sizeHint().height()/2.0)
|
|
||||||
+ text_rect.setY(int(mid_height - self.right_widget.sizeHint().height()/2.0))
|
|
||||||
text_rect.setHeight(self.right_widget.sizeHint().height())
|
|
||||||
self.right_widget.setGeometry(text_rect)
|
|
||||||
|
|
||||||
@@ -201,8 +201,8 @@ def __init__(self, parent=None, size=16):
|
|
||||||
def paintEvent(self, event):
|
|
||||||
painter = QPainter(self)
|
|
||||||
if self.icon is not None:
|
|
||||||
- x = (self.width() - self.icon.width()) / 2
|
|
||||||
- y = (self.height() - self.icon.height()) / 2
|
|
||||||
+ x = int((self.width() - self.icon.width()) / 2)
|
|
||||||
+ y = int((self.height() - self.icon.height()) / 2)
|
|
||||||
painter.drawPixmap(x, y, self.icon)
|
|
||||||
|
|
||||||
|
|
||||||
@@ -232,8 +232,8 @@ def paintEvent(self, event):
|
|
||||||
painter = QPainter(self)
|
|
||||||
icon = self.icon_pressed if self.isDown() else self.icon
|
|
||||||
if icon is not None:
|
|
||||||
- x = (self.width() - icon.width()) / 2
|
|
||||||
- y = (self.height() - icon.height()) / 2
|
|
||||||
+ x = int((self.width() - icon.width()) / 2)
|
|
||||||
+ y = int((self.height() - icon.height()) / 2)
|
|
||||||
painter.drawPixmap(x, y, icon)
|
|
||||||
else:
|
|
||||||
width = self.width()
|
|
||||||
diff --git a/blink/widgets/video.py b/blink/widgets/video.py
|
|
||||||
index eff4f7c..5ecab6a 100644
|
|
||||||
--- a/blink/widgets/video.py
|
|
||||||
+++ b/blink/widgets/video.py
|
|
||||||
@@ -56,7 +56,7 @@ def __init__(self, parent=None, framerate=None):
|
|
||||||
self.cursors.resize_bottom = QCursor(QIcon(Resources.get('icons/resize-bottom.svg')).pixmap(16), hotX=8, hotY=16)
|
|
||||||
if framerate is not None:
|
|
||||||
self._clock = QTimer()
|
|
||||||
- self._clock.setInterval(1000/framerate)
|
|
||||||
+ self._clock.setInterval(int(1000/framerate))
|
|
||||||
self._clock.timeout.connect(self.update)
|
|
||||||
else:
|
|
||||||
self._clock = None
|
|
@ -40,6 +40,7 @@ DEPENDENCIES="
|
|||||||
x11-dri/mesa
|
x11-dri/mesa
|
||||||
)
|
)
|
||||||
run:
|
run:
|
||||||
|
dev-lang/python:*[>3.5] [[ note = [ bin/compton-convgen.py ] ]]
|
||||||
x11-apps/xprop
|
x11-apps/xprop
|
||||||
x11-apps/xwininfo
|
x11-apps/xwininfo
|
||||||
"
|
"
|
||||||
@ -49,7 +50,6 @@ DEFAULT_SRC_INSTALL_EXTRA_DOCS=(
|
|||||||
)
|
)
|
||||||
|
|
||||||
MESON_SRC_CONFIGURE_PARAMS=(
|
MESON_SRC_CONFIGURE_PARAMS=(
|
||||||
"-Dcompton=false"
|
|
||||||
"-Dunittest=true"
|
"-Dunittest=true"
|
||||||
"-Dwith_docs=true"
|
"-Dwith_docs=true"
|
||||||
)
|
)
|
||||||
@ -59,6 +59,13 @@ MESON_SRC_CONFIGURE_OPTION_SWITCHES=(
|
|||||||
"opengl"
|
"opengl"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
src_prepare() {
|
||||||
|
meson_src_prepare
|
||||||
|
# don't install compat symlink
|
||||||
|
# this script is also broken
|
||||||
|
echo "#!/bin/sh" > meson/install.sh
|
||||||
|
}
|
||||||
|
|
||||||
src_install() {
|
src_install() {
|
||||||
meson_src_install
|
meson_src_install
|
||||||
option dbus && dodoc -r dbus-examples
|
option dbus && dodoc -r dbus-examples
|
@ -27,6 +27,7 @@ DEPENDENCIES="
|
|||||||
suggestion:
|
suggestion:
|
||||||
app-text/dvipng [[ note = [ equation plugin ] ]]
|
app-text/dvipng [[ note = [ equation plugin ] ]]
|
||||||
app-text/texlive-core [[ note = [ equation plugin ] ]]
|
app-text/texlive-core [[ note = [ equation plugin ] ]]
|
||||||
|
dev-libs/zeitgeist:2.0
|
||||||
dev-scm/bzr [[ note = [ version control plugin ] ]]
|
dev-scm/bzr [[ note = [ version control plugin ] ]]
|
||||||
media-gfx/graphviz [[ note = [ diagram editor plugin ] ]]
|
media-gfx/graphviz [[ note = [ diagram editor plugin ] ]]
|
||||||
media-gfx/ImageMagick [[ note = [ screenshot plugin ] ]]
|
media-gfx/ImageMagick [[ note = [ screenshot plugin ] ]]
|
Loading…
Reference in New Issue
Block a user