Skip to content

Commit

Permalink
update URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
mdavidsaver committed Aug 1, 2024
1 parent 70b030d commit 31c666b
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .ci/build-deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ fi

if [ "$BRPVXS" ]
then
git clone --quiet --recursive --depth 5 --branch "$BRPVXS" https://github.com/mdavidsaver/pvxs.git pvxs
git clone --quiet --recursive --depth 5 --branch "$BRPVXS" https://github.com/epics-base/pvxs.git pvxs
(cd pvxs && git log -n1 )
cat << EOF >> $CURDIR/configure/RELEASE.local
PVXS=$HOME/.source/pvxs
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -422,15 +422,15 @@ jobs:
run: python -m twine check dist/p4p*.tar.*

- name: Upload wheels
if: github.event_name=='push' && github.repository=='mdavidsaver/p4p' && github.ref=='refs/heads/master' && !matrix.base && !matrix.source
if: github.event_name=='push' && github.repository=='epics-base/p4p' && github.ref=='refs/heads/master' && !matrix.base && !matrix.source
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python -m twine upload --skip-existing dist/p4p*.whl
- name: Upload source
if: github.event_name=='push' && github.repository=='mdavidsaver/p4p' && github.ref=='refs/heads/master' && matrix.source && !matrix.base
if: github.event_name=='push' && github.repository=='epics-base/p4p' && github.ref=='refs/heads/master' && matrix.source && !matrix.base
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ Python bindings for the PVAccess network client and server.

See documentation

https://mdavidsaver.github.io/p4p/
https://epics-base.github.io/p4p/

Source

https://github.com/mdavidsaver/p4p/
https://github.com/epics-base/p4p/

CI results

![Github Actions](https://github.com/mdavidsaver/p4p/workflows/P4P/badge.svg)
![Github Actions](https://github.com/epics-base/p4p/workflows/P4P/badge.svg)
6 changes: 3 additions & 3 deletions documentation/building.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Building
========

Release tars available from https://github.com/mdavidsaver/p4p/releases
Release tars available from https://github.com/epics-base/p4p/releases

The P4P modules requires:

Expand Down Expand Up @@ -104,7 +104,7 @@ or with PIP::

From from versioned source. (may replace "master" with release version number)::

git clone --branch master https://github.com/mdavidsaver/p4p.git
git clone --branch master https://github.com/epics-base/p4p.git
cd p4p

Set location of EPICS modules. With EPICS >= 7.0.2::
Expand Down Expand Up @@ -152,7 +152,7 @@ If the necessary EPICS modules are not present, then they may be built from sour

sudo apt-get install libreadline6-dev libncurses5-dev perl
git clone https://github.com/epics-base/epics-base.git
git clone https://github.com/mdavidsaver/pvxs.git
git clone https://github.com/epics-base/pvxs.git
cat <<EOF > pvxs/configure/RELEASE.local
EPICS_BASE=$PWD/epics-base
EOF
Expand Down
4 changes: 2 additions & 2 deletions documentation/gw.rst
Original file line number Diff line number Diff line change
Expand Up @@ -231,9 +231,9 @@ Configuration is provided as a file using JSON syntax with C-style comments. ::

See also PVXS client_ and server_ configuration references.

.. _client: https://mdavidsaver.github.io/pvxs/client.html#configuration
.. _client: https://epics-base.github.io/pvxs/client.html#configuration

.. _server: https://mdavidsaver.github.io/pvxs/server.html#configuration
.. _server: https://epics-base.github.io/pvxs/server.html#configuration

Run ``pvagw --example-config -`` to see another example configuration.

Expand Down
4 changes: 2 additions & 2 deletions documentation/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ The recommended starting point is to install from pypi.org. ::
python -m pip install p4p nose2
python -m nose2 p4p # Optional: runs automatic tests

- VCS: https://github.com/mdavidsaver/p4p
- Docs: https://mdavidsaver.github.io/p4p/
- VCS: https://github.com/epics-base/p4p
- Docs: https://epics-base.github.io/p4p/

Contents:

Expand Down
2 changes: 1 addition & 1 deletion documentation/values.rst
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,6 @@ API Reference
Relation to C++ API
-------------------

For those familiar with the `PVXS <https://mdavidsaver.github.io/pvxs/>` API.
For those familiar with the `PVXS <https://epics-base.github.io/pvxs/>` API.
A :py:class:`Type` wraps a TypeDef.
:py:class:`Value` wraps a Value.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def get_numpy_include_dirs():
description="Python interface to PVAccess protocol client",
long_description=long_description,
long_description_content_type='text/markdown',
url='https://mdavidsaver.github.io/p4p',
url='https://epics-base.github.io/p4p',
author='Michael Davidsaver',
author_email='[email protected]',
license='BSD',
Expand Down

0 comments on commit 31c666b

Please sign in to comment.