Skip to content

Commit b8e5ae2

Browse files
committed
papki -> fsif
1 parent 522ac56 commit b8e5ae2

File tree

19 files changed

+38
-38
lines changed

19 files changed

+38
-38
lines changed

build/android/svgdom-$(version).pom.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
</dependency>
1717
<dependency>
1818
<groupId>io.github.cppfw</groupId>
19-
<artifactId>papki</artifactId>
19+
<artifactId>fsif</artifactId>
2020
<version>[1.0.93,)</version>
2121
<type>aar</type>
2222
<scope>compile</scope>

build/android/svgdom/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ repositories {
5050
}
5151
dependencies {
5252
implementation 'io.github.cppfw:utki:+'
53-
implementation 'io.github.cppfw:papki:+'
53+
implementation 'io.github.cppfw:fsif:+'
5454
implementation 'io.github.cppfw:mikroxml:+'
5555
implementation 'io.github.cppfw:cssom:+'
5656
implementation 'io.github.cppfw:r4:+'

build/cmake/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ myci_declare_library(${name}
2323
../../src/${name}
2424
DEPENDENCIES
2525
utki
26-
papki
26+
fsif
2727
r4
2828
mikroxml
2929
cssom

build/debian/control.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Build-Depends:
1111
clang-format,
1212
libc6-dev,
1313
libutki-dev (>= 1.1.150),
14-
libpapki-dev,
14+
libfsif-dev,
1515
libmikroxml-dev,
1616
libcssom-dev (>= 0.1.19),
1717
libr4-dev,
@@ -54,7 +54,7 @@ Depends:
5454
libsvgdom-dbg$(soname) (= ${binary:Version}),
5555
${misc:Depends},
5656
libutki-dev,
57-
libpapki-dev,
57+
libfsif-dev,
5858
libcssom-dev,
5959
libr4-dev
6060
Suggests: libsvgdom-doc

build/homebrew/libsvgdom.rb.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class Libsvgdom < Formula
1111
depends_on "libtst" => :build
1212
depends_on "libmikroxml"
1313
depends_on "libcssom"
14-
depends_on "libpapki"
14+
depends_on "libfsif"
1515
depends_on "libutki"
1616
depends_on "libr4"
1717

build/vcpkg/test/vcpkg-configuration.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"packages": [
1414
"myci",
1515
"utki",
16-
"papki",
16+
"fsif",
1717
"mikroxml",
1818
"cssom",
1919
"r4"

build/vcpkg/vcpkg.json.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"host" : false
1919
},
2020
"utki",
21-
"papki",
21+
"fsif",
2222
"mikroxml",
2323
"cssom",
2424
"r4"

src/makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ this_soname := $(shell cat $(d)soname.txt)
1414
this_srcs := $(call prorab-src-dir, $(this_src_dir))
1515

1616
this_ldlibs += -l cssom$(this_dbg)
17-
this_ldlibs += -l papki$(this_dbg)
17+
this_ldlibs += -l fsif$(this_dbg)
1818
this_ldlibs += -l mikroxml$(this_dbg)
1919
this_ldlibs += -l utki$(this_dbg)
2020
this_ldlibs += -l m

src/svgdom/dom.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@ SOFTWARE.
3232

3333
using namespace svgdom;
3434

35-
std::unique_ptr<svg_element> svgdom::load(const papki::file& f)
35+
std::unique_ptr<svg_element> svgdom::load(const fsif::file& f)
3636
{
3737
svgdom::parser parser;
3838

3939
{
40-
papki::file::guard file_guard(f);
40+
fsif::file::guard file_guard(f);
4141

4242
// NOLINTNEXTLINE(cppcoreguidelines-pro-type-member-init)
4343
std::array<uint8_t, size_t(utki::kilobyte) * 4> buf;

src/svgdom/dom.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ SOFTWARE.
2727

2828
#pragma once
2929

30-
#include <papki/file.hpp>
30+
#include <fsif/file.hpp>
3131
#include <utki/config.hpp>
3232

3333
#include "elements/structurals.hpp"
@@ -40,7 +40,7 @@ namespace svgdom {
4040
* @param f - file interface to load SVG from.
4141
* @return unique pointer to the root of SVG document tree.
4242
*/
43-
std::unique_ptr<svg_element> load(const papki::file& f);
43+
std::unique_ptr<svg_element> load(const fsif::file& f);
4444

4545
/**
4646
* @brief Load SVG document.

0 commit comments

Comments
 (0)