summaryrefslogtreecommitdiffstats
path: root/recipes/python/python-simplejson_2.0.7.bb
blob: d258f6a200a8f7f71b99c1122999c6485e68ad37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
DESCRIPTION = "Simple, fast, extensible JSON encoder/decoder for Python"
HOMEPAGE = "http://cheeseshop.python.org/pypi/simplejson"
SECTION = "devel/python"
PRIORITY = "optional"
LICENSE = "MIT"
SRCNAME = "simplejson"
PR = "ml1"

SRC_URI = "http://cheeseshop.python.org/packages/source/s/simplejson/${SRCNAME}-${PV}.tar.gz"
S = "${WORKDIR}/${SRCNAME}-${PV}"

inherit setuptools

RDEPENDS_${PN} = "\
  python-core \
  python-re \
  python-io \
  python-netserver \
"


SRC_URI[md5sum] = "9d02273f8615b8e3fceda891ffff10d1"
SRC_URI[sha256sum] = "2b349ed73540f8ce68bdfa29e08e3dff9d885027bfa06d6a871a09fe381ddbbe"
tdefaulttune OpenEmbedded Core user contribution treesGrokmirror user
summaryrefslogtreecommitdiffstats
path: root/scripts/rootfs_rpm-extract-postinst.awk
blob: 8f2836b32cb49cc70f4a029a9a0d3e91e9d02933 (plain)
1
2
3
4
5
6
7
8
9
10
11
/Name:.*/ {
  package = substr($0, 7)
  next
}
/postinstall.*scriptlet .*/ {
  next
}
{
  print $0 >> ENVIRON["D"] "/etc/rpm-postinsts/" package ".sh"
}