From ced40a0c63327d3d8ae269dd3b9023f5e54488a0 Mon Sep 17 00:00:00 2001 From: Max Rees Date: Tue, 6 Aug 2019 12:04:01 -0500 Subject: experimental/py3-toml: new package --- experimental/py3-toml/APKBUILD | 47 +++++++++++++++++++++++++++++ experimental/py3-toml/test.toml | 65 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 112 insertions(+) create mode 100644 experimental/py3-toml/APKBUILD create mode 100644 experimental/py3-toml/test.toml (limited to 'experimental') diff --git a/experimental/py3-toml/APKBUILD b/experimental/py3-toml/APKBUILD new file mode 100644 index 000000000..71bed3556 --- /dev/null +++ b/experimental/py3-toml/APKBUILD @@ -0,0 +1,47 @@ +# Contributor: Max Rees +# Maintainer: +pkgname=py3-toml +_pkgname=toml +_p="${_pkgname#?}" +_p="${_pkgname%"$_p"}" +pkgver=0.10.0 +pkgrel=0 +pkgdesc="Python Library for Tom's Obvious, Minimal Language" +url="https://pypi.python.org/pypi/toml" +arch="noarch" +# Certified net clean +license="MIT" +depends="python3" +makedepends="" +checkdepends="py3-pytest" +_testver="df90d31" +source="$pkgname-$pkgver.tar.gz::https://files.pythonhosted.org/packages/source/$_p/$_pkgname/$_pkgname-$pkgver.tar.gz + https://dev.sick.bike/dist/$pkgname-test-$_testver.tar.gz + test.toml" +builddir="$srcdir/$_pkgname-$pkgver" + +unpack() { + default_unpack + cd "$builddir" + tar -zxf "$srcdir/$pkgname-test-$_testver.tar.gz" + mv toml-test-* toml-test + + # This should be included in the next release + cp "$srcdir/test.toml" "$builddir" +} + +build() { + python3 setup.py build +} + +check() { + PYTHONPATH="$builddir" pytest +} + +package() { + python3 setup.py install --prefix=/usr --root="$pkgdir" +} + +sha512sums="26f26c38ce9cd48305218c2c34c5a5407b00aefc25a933f044bb7be22c23cfdfa3b8cf2da952d17760c4b9038df62e405fa039cc7b63dd3e94c9c312f04f9182 py3-toml-0.10.0.tar.gz +5c52dd75e75dd1f7ba787eaaadfebf28161aba056730b9b75e5e88745fa773195ae01c0b588d70b30f97b3c4e07e8108803ebba564f05f1f027315ff0f2ac401 py3-toml-test-df90d31.tar.gz +47510e59f9e0bdaaf4052fc5edb570a36b8b173ed7b8e5fac52804f6619f409e545ae3c91f838dbaeefe3c7cfd1a835b699164ac631feaa61de971d2381ac246 test.toml" diff --git a/experimental/py3-toml/test.toml b/experimental/py3-toml/test.toml new file mode 100644 index 000000000..f0e44a89a --- /dev/null +++ b/experimental/py3-toml/test.toml @@ -0,0 +1,65 @@ +# This is a TOML document. Boom. + +a = "C:\\Users\\n" + +title = "TOML Example" +the-void = [[[[[]]]]] +mixed = [[1, +2], ["a", "b"], [1.0, 2.0]] +avogadro = 6.23e23 + +[owner] +name = "Tom \\ / Preston-Werner" +organization = "GitHub" +bio = "GitHub Cofounder & CEO\nLikes tater tots and beer." +dob = 1979-05-27T07:32:00Z # First class dates? Why not? + +[database] +server = "192.168.1.1" +ports = [ 8001, 8001, 8002 ] +connection_max = 5000 +enabled = true +test = [["a"], ["b"], ["c"]] + +[servers] + + # You can indent as you please. Tabs or spaces. TOML don't care. + [servers.alpha] + ip = "10.0.0.1" + dc = "eqdc10" + + [servers.beta] + ip = "\u000a\u1000\u1000\u0002" + dc = "eqdc10" + +[clients] +data = [ ["gamma", "delta"], [1, 2] ] # just an update to make sure parsers support it + +# Line breaks are OK when inside arrays +hosts = [ + "alpha", + "omega" +] + +[[fruit]] + name = "apple" + + [fruit.physical] + color = "red" + shape = "round" + + [[fruit.variety]] + name = "red delicious" + + #[fruit.variety] + # name = "granny smith" + +[[fruit]] + name = "banana" + + [[fruit.variety]] + name = "plantain" + + [[fruit.variety]] + name = "whatever" + thing=34 + "l.mao" = 42 -- cgit v1.2.3-60-g2f50