Skip to content

Commit

Permalink
add readme
Browse files Browse the repository at this point in the history
  • Loading branch information
yne committed Apr 6, 2023
1 parent 9e39e95 commit c018935
Show file tree
Hide file tree
Showing 8 changed files with 75,588 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Deploy Pages
on: { push: { branches: [master] } }
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/configure-pages@v3
- name: build
run: make
- uses: actions/upload-pages-artifact@v1
with: { path: '.' }
- uses: actions/deploy-pages@v2
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
all: config.txt pkgi_games.csv pkgi_dlcs.csv pkgi_themes.csv pkgi_avatars.csv pkgi_demos.csv pkgi_updates.csv pkgi_emulators.csv pkgi_apps.csv pkgi_tools.csv
config.txt:; echo "games dlcs themes avatars demos updates emulators apps tools" | tr ' ' '\n' |awk '{print "url_"$$1" https://yne.fr/psndl/pkgi_"$$1".csv"}' > $@
pkgi_%.csv: db.csv; awk -F "," 'BEGIN {type="$@";sub(/pkgi_/,"",type);sub(/.csv/,"",type);print "contentid,type,name,description,rap,url,size,checksum"} type == $$4 {print $$1"-"$$2"_00-0000112223333000,"$$4","$$6",-,"$$5",http://zeus.dl.playstation.net/cdn/"$$2"/"$$1"_00/"$$3".pkg,0,"}' $^ > $@
%.url: %.csv; awk -F "," '{print "http://zeus.dl.playstation.net/cdn/"$$2"/"$$1"_00/"$$3".pkg"}' $^ > $@
%.dup: %.csv; awk -F "," '{print $$1"/"$$2"/"$$3}' $^ | sort | uniq -d
10,810 changes: 10,810 additions & 0 deletions NPS.pend.csv

Large diffs are not rendered by default.

19,527 changes: 19,527 additions & 0 deletions NPS.tsv

Large diffs are not rendered by default.

13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# PSNDL

Playstation Network Package [Search engine](http://yne.github.io/psndl)
and [PKGi-PS3](https://github.com/bucanero/pkgi-ps3) databases at https://yne.fr/psndl/config.txt

Current dataset was aggragated from

- [Repo_Hub](https://github.com/romjacket/Repo_Hub),
- [psndl.net](https://psndl.net/packages/database)
- [nopaystation](https://nopaystation.com/)

With [user submission](https://github.com/yne/psndl/issues/new/choose) support

9 changes: 9 additions & 0 deletions config.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
url_games https://yne.fr/psndl/pkgi_games.csv
url_dlcs https://yne.fr/psndl/pkgi_dlcs.csv
url_themes https://yne.fr/psndl/pkgi_themes.csv
url_avatars https://yne.fr/psndl/pkgi_avatars.csv
url_demos https://yne.fr/psndl/pkgi_demos.csv
url_updates https://yne.fr/psndl/pkgi_updates.csv
url_emulators https://yne.fr/psndl/pkgi_emulators.csv
url_apps https://yne.fr/psndl/pkgi_apps.csv
url_tools https://yne.fr/psndl/pkgi_tools.csv
21,890 changes: 21,890 additions & 0 deletions psndl-2189.csv

Large diffs are not rendered by default.

23,311 changes: 23,311 additions & 0 deletions psndl.csv

Large diffs are not rendered by default.

0 comments on commit c018935

Please sign in to comment.