Merge pull request #1252 from ayhanyalcinsoy/master

dejavu-fonts and its dep
This commit is contained in:
Ertuğrul Erata
2016-03-17 11:13:09 +02:00
13 changed files with 114478 additions and 113943 deletions
+30
View File
@@ -0,0 +1,30 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import shelltools
from pisi.actionsapi import pisitools
from pisi.actionsapi import autotools
from pisi.actionsapi import get
def build():
autotools.make('FC-LANG="" BLOCKS="/usr/share/unicode/ucd/Blocks.txt" UNICODEDATA="/usr/share/unicode/ucd/UnicodeData.txt"')
def check():
autotools.make("check")
def install():
pisitools.insinto("/usr/share/fonts/dejavu", "build/*.ttf")
# Create symlinks for fontconfig files
for conf in shelltools.ls("fontconfig"):
pisitools.insinto("/etc/fonts/conf.avail", "fontconfig/%s" % conf)
pisitools.dosym("/etc/fonts/conf.avail/%s" % conf, "/etc/fonts/conf.d/%s" % conf)
pisitools.dosym("/usr/share/fonts/dejavu" , "/etc/X11/fontpath.d/dejavu")
pisitools.dodoc("AUTHORS", "LICENSE", "NEWS", "README")
+56
View File
@@ -0,0 +1,56 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>dejavu-fonts</Name>
<Homepage>http://www.dejavu-fonts.org</Homepage>
<Packager>
<Name>Sezai Yeniay</Name>
<Email>sezaiyeniay@pisilinux.org</Email>
</Packager>
<License>as-is</License>
<IsA>data:font</IsA>
<Summary>DejaVu fonts</Summary>
<Description>Contains DejaVu fonts that are based on Bitstream fonts, with improvements.</Description>
<Archive sha1sum="27e428fc723934c050cfcfc86d1b1ff2273d146e" type="tarbz2">mirrors://sourceforge/dejavu/dejavu-fonts-2.34.tar.bz2</Archive>
<BuildDependencies>
<Dependency>fontforge</Dependency>
<Dependency>perl-Font-TTF</Dependency>
<Dependency>unicode-ucd</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>dejavu-fonts</Name>
<Files>
<Path fileType="config">/etc/fonts</Path>
<Path fileType="data">/etc/X11/fontpath.d/dejavu</Path>
<Path fileType="data">/usr/share/fonts</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<History>
<Update release="3">
<Date>2014-01-27</Date>
<Version>2.34</Version>
<Comment>Version bump.</Comment>
<Name>Serdar Soytetir</Name>
<Email>kaptan@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2012-05-24</Date>
<Version>2.33.2514</Version>
<Comment>First release</Comment>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2012-05-24</Date>
<Version>2.33</Version>
<Comment>First release</Comment>
<Name>Sezai Yeniay</Name>
<Email>sezaiyeniay@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,11 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>dejavu-fonts</Name>
<Summary xml:lang="tr">DejaVu yazıtipleri</Summary>
<Description xml:lang="tr">DejaVu yazıtipleri</Description>
<Description xml:lang="fr">Les fontes DejaVu basées sur des fontes Bitstream avec des améliorations.</Description>
<Summary xml:lang="nl">DejaVu fonts</Summary>
<Description xml:lang="nl">Bevat de DejaVu fonts die zijn gebasserd op de Bitstream fonts, met verbeteringen.</Description>
</Source>
</PISI>
+114203 -113941
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -1 +1 @@
e3d682256ed25ded2c3e42f94be54c52374c4370
d3146f92d2bf5e4cef51ad624eef6665906c08b8
BIN
View File
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
6f854c652daa9f61d32260e4a92d6159080ffb43
cafe1698e88c24dd560459660d1c18a62b74ed34
@@ -0,0 +1,30 @@
#!/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
from pisi.actionsapi import perlmodules
from pisi.actionsapi import shelltools
from pisi.actionsapi import pisitools
from pisi.actionsapi import autotools
from pisi.actionsapi import get
WorkDir="Font-TTF-%s" % get.srcVERSION()
def setup():
for d in ("README.TXT", "TODO", "Changes"):
shelltools.chmod(d, 0644)
perlmodules.configure()
def build():
perlmodules.make()
def check():
perlmodules.make("test")
def install():
perlmodules.install()
pisitools.dodoc("README*", "TODO", "Changes")
@@ -0,0 +1,43 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>perl-Font-TTF</Name>
<Homepage>http://search.cpan.org/dist/Font-TTF</Homepage>
<Packager>
<Name>Pisi Linux Admins</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<IsA>library</IsA>
<Summary>Perl module for TrueType Font hacking</Summary>
<Description>perl-Font-TTF is a Perl module that allows you to do almost anything to a TrueType/OpenType Font including modifying and inspecting nearly all tables.</Description>
<Archive sha1sum="2cd694692305c514335c345a4ecf12c4e3eb4dd4" type="targz">http://search.cpan.org/CPAN/authors/id/M/MH/MHOSKEN/Font-TTF-1.05.tar.gz</Archive>
<BuildDependencies>
<Dependency>perl</Dependency>
<Dependency>perl-IO-String</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>perl-Font-TTF</Name>
<RuntimeDependencies>
<Dependency>perl</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<History>
<Update release="5">
<Date>2016-03-17</Date>
<Version>1.05</Version>
<Comment>version bump</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinoys@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,9 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>perl-Font-TTF</Name>
<Summary xml:lang="tr">TrueType yazıtipleri için Perl modülü</Summary>
<Description xml:lang="tr">perl-Font-TTF, çok sayıda dosya biçimini TrueType/OpenType yazıtipine dönüştürmenizi sağlayan bir Perl modülüdür.</Description>
</Source>
</PISI>
@@ -0,0 +1,23 @@
#!/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
from pisi.actionsapi import perlmodules
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
WorkDir = "%s-%s" % (get.srcNAME()[5:], get.srcVERSION())
def setup():
perlmodules.configure()
def build():
perlmodules.make()
def check():
perlmodules.make("test")
def install():
perlmodules.install()
@@ -0,0 +1,62 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>perl-IO-String</Name>
<Homepage>http://search.cpan.org/dist/IO-String/</Homepage>
<Packager>
<Name>Pisi Linux Admins</Name>
<Email>admin@pisilinux.org</Email>
</Packager>
<License>Artistic</License>
<License>GPLv2</License>
<IsA>library</IsA>
<Summary>IO::File interface for in-core strings in Perl</Summary>
<Description>perl-IO-String is an IO::File interface for in-core strings in Perl.</Description>
<Archive sha1sum="1a8cea5b19b6abb7f3731d6804073c0dd911d944" type="targz">http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/IO-String-1.08.tar.gz</Archive>
<BuildDependencies>
<Dependency>perl</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>perl-IO-String</Name>
<RuntimeDependencies>
<Dependency>perl</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="man">/usr/share/man</Path>
</Files>
</Package>
<History>
<Update release="4">
<Date>2014-09-10</Date>
<Version>1.08</Version>
<Comment>Release bump.</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2014-05-28</Date>
<Version>1.08</Version>
<Comment>Release bump.</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2013-10-31</Date>
<Version>1.08</Version>
<Comment>Rebuild</Comment>
<Name>Pisi Linux Admins</Name>
<Email>admins@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2012-09-06</Date>
<Version>1.08</Version>
<Comment>First release</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,9 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>perl-IO-String</Name>
<Summary xml:lang="tr">Perl için çekirdek içi metinler için bir G/Ç Dosya arayüzü</Summary>
<Description xml:lang="tr">perl-IO-String, Perl dili için çekirdek içi metinlere yönelik bir G/Ç Dosya arayüzüdür.</Description>
</Source>
</PISI>