Merge pull request #11625 from 4fury-c3440d8/new

guile-3.0.9
This commit is contained in:
Rmys
2023-03-25 11:10:54 +03:00
committed by GitHub
6 changed files with 178 additions and 19 deletions
@@ -0,0 +1,22 @@
diff --git a/gmusicbrowser_layout.pm b/gmusicbrowser_layout.pm
index e3683ab..c556ace 100644
--- a/gmusicbrowser_layout.pm
+++ b/gmusicbrowser_layout.pm
@@ -1823,7 +1823,7 @@ sub SaveWindowOptions
$wstate{fullscreen}=1 if $self->{fullscreen};
$wstate{ontop}=1 if $self->{ontop};
$wstate{below}=1 if $self->{below};
- $wstate{nodecoration}=1 unless $self->get_decorated;
+ #$wstate{nodecoration}=1 unless $self->get_decorated;
$wstate{skippager}=1 if $self->get_skip_pager_hint;
if ($self->{saved_position})
{ $wstate{pos}=$self->{saved_position};
@@ -1852,7 +1852,7 @@ sub SetWindowOptions
$self->stick if $opt->{sticky};
$self->set_keep_above(1) if $opt->{ontop};
$self->set_keep_below(1) if $opt->{below};
- $self->set_decorated(0) if $opt->{nodecoration};
+ #$self->set_decorated(0) if $opt->{nodecoration};
$self->set_skip_pager_hint(1) if $opt->{skippager};
$self->set_skip_taskbar_hint(1) if $opt->{skiptaskbar};
$self->{opacity}=$opt->{opacity} if defined $opt->{opacity};
+2 -1
View File
@@ -23,6 +23,7 @@
</BuildDependencies>
<Patches>
<Patch level="1">fix_show_hide_option_of_window_in_pekwm.patch</Patch>
<Patch level="1">prevent_writing_nodecoration_parameter.patch</Patch>
</Patches>
</Source>
@@ -55,7 +56,7 @@
<History>
<Update release="1">
<Date>2023-01-07</Date>
<Date>2023-03-25</Date>
<Version>1.1.16</Version>
<Comment>First build.</Comment>
<Name>fury</Name>
+8 -13
View File
@@ -1,26 +1,21 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import get
from pisi.actionsapi import autotools, pisitools, get
def setup():
#shelltools.unlink("m4/libtool.m4")
#shelltools.unlink("acinclude.m4")
#autotools.autoreconf("-vif")
autotools.configure("--enable-nls \
--without-included-gettext \
--disable-static")
autotools.configure("--disable-static")
def build():
autotools.make()
def check():
autotools.make("check")
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "ChangeLog", "NEWS", "README", "THANKS", "TODO")
pisitools.dodoc("AUTHORS", "NEWS", "THANKS")
+22 -5
View File
@@ -1,27 +1,37 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>recode</Name>
<Homepage>http://www.gnu.org/software/recode/</Homepage>
<Homepage>https://github.com/rrthomas/recode/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<License>GPL-3/LGPL-3</License>
<IsA>app:console</IsA>
<PartOf>office.misc</PartOf>
<Summary>File character set converter</Summary>
<Description>Recode can convert files to various character sets (e.g. utf8, iso-8859-1, koi8r..).</Description>
<Archive sha1sum="8c02c0c892f7f67909e993771e18f9a391b07ba1" type="targz">https://github.com/rrthomas/recode/releases/download/v3.7.6/recode-3.7.6.tar.gz</Archive>
<Archive sha1sum="43a291ddc3baeb3679b3803efa6e1c0b67e2bd53" type="targz">
https://github.com/rrthomas/recode/releases/download/v3.7.14/recode-3.7.14.tar.gz
</Archive>
<BuildDependencies>
<Dependency>texinfo</Dependency>
<Dependency>cython3</Dependency>
<Dependency>python3-devel</Dependency>
<Dependency>gettext-devel</Dependency>
</BuildDependencies>
<Patches>
<!-- <Patch level="1">missing.patch</Patch> -->
</Patches>
</Source>
<Package>
<Name>recode</Name>
<RuntimeDependencies>
<!-- <Dependency></Dependency> -->
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="executable">/usr/bin</Path>
@@ -44,6 +54,13 @@
</Package>
<History>
<Update release="7">
<Date>2023-03-25</Date>
<Version>3.7.14</Version>
<Comment>Version bump.</Comment>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Update>
<Update release="6">
<Date>2020-01-22</Date>
<Version>3.7.6</Version>
@@ -87,4 +104,4 @@
<Email>groni@pisilinux.org</Email>
</Update>
</History>
</PISI>
</PISI>
+46
View File
@@ -0,0 +1,46 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import shelltools, autotools, pisitools, get
i = ''.join([
' --enable-nls',
' --enable-posix',
' --enable-regex',
' --with-threads',
' --with-modules',
' --disable-rpath',
' --disable-static',
' --enable-networking',
' --program-suffix=3.0',
' --disable-error-on-warning '
])
def setup():
autotools.configure(i)
# fix unused direct dependency analysis
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
def build():
autotools.make()
def check():
autotools.make("check")
#pass
def install():
autotools.install()
# remove scm file
pisitools.remove("/usr/lib/libguile-3.0.so.*.scm")
# rename some info files to avoid conflicts
pisitools.remove("/usr/share/info/r5rs.info")
for t in shelltools.ls("%s/usr/share/info" % get.installDIR()):
pisitools.rename("/usr/share/info/%s" % t, t.replace("guile", "guile3"))
pisitools.dodoc("AUTHORS", "NEWS", "THANKS")
+78
View File
@@ -0,0 +1,78 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>guile3</Name>
<Homepage>https://www.gnu.org/software/guile/</Homepage>
<Packager>
<Name>Pisi Linux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<PartOf>programming.language</PartOf>
<License>GPL-3/LGPL-3</License>
<IsA>app:console</IsA>
<IsA>library</IsA>
<PartOf>programming.language</PartOf>
<Summary>GNU Scheme interpreter and library</Summary>
<Description>GUILE (GNU's Ubiquitous Intelligent Language for Extension) is a library implementation of the Scheme programming language, written in C. GUILE provides a machine-independent execution platform that can be linked in as a library during the building of extensible programs.</Description>
<Archive sha1sum="bf6af1aac320a56233d4d8c0fbeb2c0dca474eab" type="tarxz">
https://ftp.gnu.org/gnu/guile/guile-3.0.9.tar.xz
</Archive>
<BuildDependencies>
<Dependency>gc-devel</Dependency>
<Dependency>gmp-devel</Dependency>
<Dependency>libffi-devel</Dependency>
<Dependency>gettext-devel</Dependency>
<Dependency>readline-devel</Dependency>
<Dependency>libunistring-devel</Dependency>
</BuildDependencies>
<Patches>
</Patches>
</Source>
<Package>
<Name>guile3</Name>
<Summary>GNU Scheme interpreter and library</Summary>
<RuntimeDependencies>
<Dependency>gc</Dependency>
<Dependency>gmp</Dependency>
<Dependency>libffi</Dependency>
<Dependency>readline</Dependency>
<Dependency>libunistring</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="library">/usr/lib/guile/3.0</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="data">/usr/share/guile/3.0</Path>
<Path fileType="man">/usr/share/man/man1</Path>
</Files>
</Package>
<Package>
<Name>guile3-devel</Name>
<RuntimeDependencies>
<Dependency>gc-devel</Dependency>
<Dependency>gmp-devel</Dependency>
<Dependency release="current">guile3</Dependency>
<Dependency>libunistring-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include/guile/3.0</Path>
<Path fileType="header">/usr/include/guile/3.0/libguile</Path>
<Path fileType="data">/usr/lib/pkgconfig/guile-3.0.pc</Path>
<Path fileType="data">/usr/share/aclocal</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2023-03-25</Date>
<Version>3.0.9</Version>
<Comment>First 3.x build.</Comment>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Update>
</History>
</PISI>